From e65625ce1ed593e6f15545e61b97c1d1c88ad92a Mon Sep 17 00:00:00 2001 From: Barry Leslie Date: Mon, 12 Jul 2010 15:31:11 -0700 Subject: [PATCH 001/212] Update blob streaming to match the current API and use the PBMS PHP extension. --- libraries/engines/pbms.lib.php | 113 +++++++++++++++++++++++++++++++++ 1 file changed, 113 insertions(+) create mode 100644 libraries/engines/pbms.lib.php diff --git a/libraries/engines/pbms.lib.php b/libraries/engines/pbms.lib.php new file mode 100644 index 000000000..af403ca6e --- /dev/null +++ b/libraries/engines/pbms.lib.php @@ -0,0 +1,113 @@ +engine = "PBMS"; + $this->title = "PrimeBase Media Streaming Daemon"; + $this->comment = "Provides BLOB streaming service for storage engines,"; + $this->support = PMA_ENGINE_SUPPORT_YES; + } + + function getVariables() + { + return array( + 'pbms_garbage_threshold' => array( + 'title' => __('Garbage Threshold'), + 'desc' => __('The percentage of garbage in a repository file before it is compacted.'), + 'type' => PMA_ENGINE_DETAILS_TYPE_PLAINTEXT + ), + 'pbms_port' => array( + 'title' => __('Port'), + 'desc' => __('The port for the PBMS stream-based communications. Setting this value to 0 will disable HTTP communication with the daemon.'), + 'type' => PMA_ENGINE_DETAILS_TYPE_PLAINTEXT + ), + 'pbms_repository_threshold' => array( + 'title' => __('Repository Threshold'), + 'desc' => __('The maximum size of a BLOB repository file. You may use Kb, MB or GB to indicate the unit of the value. A value in bytes is assumed when no unit is specified.'), + 'type' => PMA_ENGINE_DETAILS_TYPE_PLAINTEXT + ), + 'pbms_temp_blob_timeout' => array( + 'title' => __('Temp Blob Timeout'), + 'desc' => __('The timeout, in seconds, for temporary BLOBs. Uploaded BLOB data is removed after this time, unless they are referenced by a record in the database.'), + 'type' => PMA_ENGINE_DETAILS_TYPE_PLAINTEXT + ), + 'pbms_temp_log_threshold' => array( + 'title' => __('Temp Log Threshold'), + 'desc' => __('The maximum size of a temporary BLOB log file. You may use Kb, MB or GB to indicate the unit of the value. A value in bytes is assumed when no unit is specified.'), + 'type' => PMA_ENGINE_DETAILS_TYPE_PLAINTEXT + ), + 'pbms_max_keep_alive' => array( + 'title' => __('Max Keep Alive'), + 'desc' => __('The timeout for inactive connection with the keep-alive flag set. After this time the connection will be closed. The time-out is in milliseconds (1/1000).'), + 'type' => PMA_ENGINE_DETAILS_TYPE_PLAINTEXT + ), + 'pbms_http_metadata_headers' => array( + 'title' => __('Metadata Headers'), + 'desc' => __('A ":" delimited list of metadata headers to be used to initialize the pbms_metadata_header table when a database is created.'), + 'type' => PMA_ENGINE_DETAILS_TYPE_PLAINTEXT + ), + ); + } + + //-------------------- + function getInfoPages() + { + $pages = array(); + $pages['Documentation'] = __('Documentation'); + return $pages; + } + + //-------------------- + function getPage($id) + { + if (! array_key_exists($id, $this->getInfoPages())) { + return false; + } + + $id = 'getPage' . $id; + + return $this->$id(); + } + + function getPageConfigure() + { + } + + function getPageDocumentation() + { + $output = '

Documentation and furtther information about PBMS can be found on ' . "\n" + . 'The PrimeBase Media Streaming home page.

' . "\n" + . '' . "\n" + . '' . "\n" + . '' . "\n" + . '' . "\n" + . '' . "\n"; + + return $output; + } +} + +?> From f8653e58038e578569a49083e5470b6c278ac70a Mon Sep 17 00:00:00 2001 From: Barry Leslie Date: Mon, 12 Jul 2010 15:39:06 -0700 Subject: [PATCH 002/212] Update blob streaming to match the current API and use the PBMS PHP extension. --- bs_change_mime_type.php | 75 +-- bs_disp_as_mime_type.php | 11 +- bs_play_media.php | 19 +- db_operations.php | 62 --- db_structure.php | 21 +- libraries/File.class.php | 404 +++------------- libraries/StorageEngine.class.php | 15 +- libraries/blobstreaming.lib.php | 770 ++++++++++-------------------- libraries/common.inc.php | 12 +- libraries/common.lib.php | 14 +- libraries/core.lib.php | 32 +- libraries/display_tbl.lib.php | 44 +- libraries/engines/pbxt.lib.php | 40 ++ server_engines.php | 13 +- tbl_change.php | 108 +---- tbl_replace.php | 4 - 16 files changed, 428 insertions(+), 1216 deletions(-) diff --git a/bs_change_mime_type.php b/bs_change_mime_type.php index 8ad8d1abc..51cf6cb3e 100644 --- a/bs_change_mime_type.php +++ b/bs_change_mime_type.php @@ -30,70 +30,21 @@ $bsNewMIMEType = isset($_REQUEST['bs_new_mime_type']) ? urldecode($_REQUEST['bs_new_mime_type']) : NULL; // necessary variables exist - if ($bsDB && $bsTable && $bsReference && $bsNewMIMEType) + if ($bsDB && $bsTable && $bsReference && $bsNewMIMEType) { - // load PMA configuration - $PMA_Config = $GLOBALS['PMA_Config']; + if (PMA_BS_SetContentType($bsDB, $bsTable, $bsReference, $bsNewMIMEType)) + { + // determine redirector page + $newLoc = $cfg['PmaAbsoluteUri'] . 'sql.php?' . PMA_generate_common_url ('','', '&') . (isset($bsDB) ? '&db=' . urlencode($bsDB) : '') . (isset($bsTable) ? '&table=' . urlencode($bsTable) : '') . (isset($token) ? '&token=' . urlencode($token) : '') . (isset($goto) ? '&goto=' . urlencode($goto) : '') . '&reload=1&purge=1'; - // if PMA configuration exists - if (!empty($PMA_Config)) - { - // if BS plugins exist - if ($PMA_Config->get('BLOBSTREAMING_PLUGINS_EXIST')) - { - $pbms_ref_tbl = $PMA_Config->get('PBMS_NAME') . '_reference'; - $pbms_cust_content_type_tbl = $PMA_Config->get('PBMS_NAME') . '_custom_content_type'; - - // if specified DB is selected - if (PMA_DBI_select_db($bsDB)) - { - $query = "SELECT * FROM " . PMA_backquote($pbms_ref_tbl); - $query .= " WHERE Blob_url='" . PMA_sqlAddslashes($bsReference) . "'"; - - $result = PMA_DBI_query($query); - - // if record exists - if ($data = PMA_DBI_fetch_assoc($result)) - { - $query = "SELECT count(*) FROM " . PMA_backquote($pbms_cust_content_type_tbl); - $query .= " WHERE Blob_url='" . PMA_sqlAddslashes($bsReference) . "'"; - - $result = PMA_DBI_query($query); - - // if record exists - if ($data = PMA_DBI_fetch_assoc($result)) - { - if (1 == $data['count(*)']) - { - $query = "UPDATE " . PMA_backquote($pbms_cust_content_type_tbl) . " SET Content_type='"; - $query .= PMA_sqlAddslashes($bsNewMIMEType) . "' WHERE Blob_url='" . PMA_sqlAddslashes($bsReference) . "'"; - } - else - { - $query = "INSERT INTO " . PMA_backquote($pbms_cust_content_type_tbl) . " (Blob_url, Content_type)"; - $query .= " VALUES('" . PMA_sqlAddslashes($bsReference) . "', '" . PMA_sqlAddslashes($bsNewMIMEType) . "')"; - } - - $result = PMA_DBI_query($query); - - // if query execution succeeded - if ($result) - { - // determine redirector page - $newLoc = $cfg['PmaAbsoluteUri'] . 'sql.php?' . PMA_generate_common_url ('','', '&') . (isset($bsDB) ? '&db=' . urlencode($bsDB) : '') . (isset($bsTable) ? '&table=' . urlencode($bsTable) : '') . (isset($token) ? '&token=' . urlencode($token) : '') . (isset($goto) ? '&goto=' . urlencode($goto) : '') . '&reload=1&purge=1'; - - // redirect to specified page - ?> - - get('BLOBSTREAMING_PLUGINS_EXIST')) - } // end if (!empty($PMA_Config)) + // redirect to specified page + ?> + + diff --git a/bs_disp_as_mime_type.php b/bs_disp_as_mime_type.php index 9b26a59ac..18fc20169 100644 --- a/bs_disp_as_mime_type.php +++ b/bs_disp_as_mime_type.php @@ -9,13 +9,6 @@ */ require_once './libraries/common.inc.php'; -// load PMA configuration -$PMA_Config = $GLOBALS['PMA_Config']; - -// retrieve BS server variables from PMA configuration -$bs_server = $PMA_Config->get('BLOBSTREAMING_SERVER'); -if (empty($bs_server)) die('No blob streaming server configured!'); - // Check URL parameters PMA_checkParameters(array('reference', 'c_type')); @@ -30,7 +23,9 @@ $reference = $_REQUEST['reference']; */ $c_type = preg_replace('/[^A-Za-z0-9/_-]/', '_', $_REQUEST['c_type']); -$filename = 'http://' . $bs_server . '/' . $reference; +// Get the blob streaming URL +$filename = PMA_BS_getURL($reference); +if (empty($filename)) die('No blob streaming server configured!'); $hdrs = get_headers($filename, 1); diff --git a/bs_play_media.php b/bs_play_media.php index ad3c9af51..e1081f9e0 100644 --- a/bs_play_media.php +++ b/bs_play_media.php @@ -27,21 +27,13 @@ // if media type and BS reference are specified if (isset($mediaType) && isset($bsReference)) { - // load PMA configuration - $PMA_Config = $GLOBALS['PMA_Config']; - - // if PMA configuration exists - if (!empty($PMA_Config)) - { - // retrieve BS server variables from PMA configuration - $bs_server = $PMA_Config->get('BLOBSTREAMING_SERVER'); - if (empty($bs_server)) die('No blob streaming server configured!'); - - $bs_file_path = "http://" . $bs_server . '/' . $bsReference; - if (isset($customType) && $customType) - $bs_file_path = 'bs_disp_as_mime_type.php' . PMA_generate_common_url(array('reference' => $bsReference, 'c_type' => $mediaType)); + else { + // Get the BLOB streaming URL + $bs_file_path = PMA_BS_getURL($bsReference); + if (empty($bs_file_path)) die('No blob streaming server configured!'); + } ?> @@ -69,7 +61,6 @@ diff --git a/db_operations.php b/db_operations.php index e4e6992e7..5850a9e55 100644 --- a/db_operations.php +++ b/db_operations.php @@ -19,9 +19,6 @@ require_once './libraries/common.inc.php'; require_once './libraries/Table.class.php'; require_once './libraries/mysql_charsets.lib.php'; -// add blobstreaming library functions -require_once "./libraries/blobstreaming.lib.php"; - /** * Rename/move or copy database */ @@ -260,65 +257,6 @@ if (strlen($db) && (! empty($db_rename) || ! empty($db_copy))) { } } -/* - * Enable/Disable/Repair BLOB Repository Monitoring for current database -*/ -if (strlen($db) > 0 && !empty($db_blob_streaming_op)) -{ - // load PMA_Config - $PMA_Config = $GLOBALS['PMA_Config']; - - if (!empty($PMA_Config)) - { - if ($PMA_Config->get('PBXT_NAME') !== strtolower($db)) - { - // if Blobstreaming plugins exist, begin checking for Blobstreaming tables - if ($PMA_Config->get('BLOBSTREAMING_PLUGINS_EXIST')) - { - $bs_tables = $PMA_Config->get('BLOBSTREAMABLE_DATABASES'); - $bs_tables = $bs_tables[$db]; - - $oneBSTableExists = FALSE; - - // check if at least one blobstreaming table exists - foreach ($bs_tables as $table_key=>$tbl) - if ($bs_tables[$table_key]['Exists']) - { - $oneBSTableExists = TRUE; - break; - } - - switch ($db_blob_streaming_op) - { - // enable BLOB repository monitoring - case "enable": - // if blobstreaming tables do not exist, create them - if (!$oneBSTableExists) - PMA_BS_CreateTables($db); - break; - // disable BLOB repository monitoring - case "disable": - // if at least one blobstreaming table exists, execute drop - if ($oneBSTableExists) - PMA_BS_DropTables($db); - break; - // repair BLOB repository - case "repair": - // check if a blobstreaming table is missing - foreach ($bs_tables as $table_key=>$tbl) - if (!$bs_tables[$table_key]['Exists']) - { - PMA_DBI_select_db($db); - PMA_DBI_query(PMA_BS_GetTableStruct($table_key)); - } - } - - // refresh side menu - PMA_sendHeaderLocation($cfg['PmaAbsoluteUri'] . 'db_operations.php?' . PMA_generate_common_url ('','', '&') . (isset($db) ? '&db=' . urlencode($db) : '') . (isset($token) ? '&token=' . urlencode($token) : '') . (isset($goto) ? '&goto=' . urlencode($goto) : '') . 'reload=1&purge=1'); - } // end if ($PMA_Config->get('BLOBSTREAMING_PLUGINS_EXIST')) - } // end if ($PMA_Config->get('PBXT_NAME') !== strtolower($db)) - } -} /** * Settings for relations stuff diff --git a/db_structure.php b/db_structure.php index 9a6ee24ec..e73c02763 100644 --- a/db_structure.php +++ b/db_structure.php @@ -150,27 +150,18 @@ $hidden_fields = array(); $odd_row = true; $sum_row_count_pre = ''; -// for blobstreaming +// added by rajk - for blobstreaming $PMA_Config = $GLOBALS['PMA_Config']; -if (!empty($PMA_Config)) - $session_bs_tables = $PMA_Config->get('BLOBSTREAMING_TABLES'); // list of blobstreaming tables - $tableReductionCount = 0; // the amount to reduce the table count by foreach ($tables as $keyname => $each_table) { - if (isset($session_bs_tables)) - { - // compare table name against blobstreaming tables - foreach ($session_bs_tables as $table_key=>$table_val) - // if the table is a blobstreaming table, reduce table count and skip outer foreach loop - if ($table_key == $keyname) - { - $tableReductionCount++; - continue 2; - } - } + if (PMA_BS_IsHiddenTable($keyname)) { + $tableReductionCount++; + continue; + } + // Get valid statistics whatever is the table type $table_is_view = false; diff --git a/libraries/File.class.php b/libraries/File.class.php index a6a515f44..4aec35c70 100644 --- a/libraries/File.class.php +++ b/libraries/File.class.php @@ -285,112 +285,24 @@ class PMA_File // if request is an upload to the BLOB repository if ($is_bs_upload) { - // load PMA configuration - $PMA_Config = $GLOBALS['PMA_Config']; + $bs_db = $_REQUEST['db']; + $bs_table = $_REQUEST['table']; + $tmp_filename = $file['tmp_name']; + $tmp_file_type = $file['type']; - // if PMA configuration is loaded - if (!empty($PMA_Config)) - { - // load BS variables from PMA configuration - $pluginsExist = $PMA_Config->get('BLOBSTREAMING_PLUGINS_EXIST'); - $curlExists = $PMA_Config->get('CURL_EXISTS'); - $bs_database = $PMA_Config->get('BLOBSTREAMABLE_DATABASES'); - $bs_database = $bs_database[$_REQUEST['db']]; + if (!$tmp_file_type) + $tmp_file_type = NULL; - $allBSTablesExist = TRUE; - // determine if plugins and curl exist - if ($pluginsExist && $curlExists) - { - foreach ($bs_database as $table_key=>$table) - { - if (!$bs_database[$table_key]['Exists']) - { - $allBSTablesExist = FALSE; - break; - } - } - } - else - $allBSTablesExist = FALSE; + if (!$bs_db || !$bs_table) + { + $this->_error_message = $GLOBALS['strUploadErrorUnknown']; + return FALSE; + } + $blob_url = PMA_BS_UpLoadFile($bs_db, $bs_table, $tmp_file_type, $tmp_filename); + PMA_File::setRecentBLOBReference($blob_url); - // if necessary BS tables exist - if ($allBSTablesExist) - { - // setup bs variables for uploading - $bs_server = $PMA_Config->get('BLOBSTREAMING_SERVER'); - $bs_db = $_REQUEST['db']; - $bs_table = $_REQUEST['table']; - - // setup file handle and related variables - $tmp_file = fopen($file['tmp_name'], 'r'); - $tmp_file_type = $file['type']; - $tmp_file_size = $file['size']; - - if (!$tmp_file_type) - $tmp_file_type = NULL; - - // if none of the required variables contain data, return with an unknown error message - if (!$bs_server || !$bs_db || !$bs_table || !$tmp_file || !$tmp_file_size) - { - $this->_error_message = __('Unknown error in file upload.'); - return FALSE; - } - else - $bs_server_path = 'http://' . $bs_server . '/' . $bs_db . '/' . $bs_table; - - // init curl handle - $curlHnd = curl_init ($bs_server_path); - - // if curl handle init successful - if ($curlHnd) - { - // specify custom header - $customHeader = array( - "Accept-Language: en-us;en;q=0;5", - "Accept-Charset: ISO-8859-1;utf-8;q=0.7,*;q=0.7", - "Content-type: $tmp_file_type" - ); - - // specify CURL options in array - $curlOptArr = array( - CURLOPT_PUT => TRUE, - CURLOPT_HEADER => TRUE, - CURLOPT_HTTPHEADER => $customHeader, - CURLOPT_INFILESIZE => $tmp_file_size, - CURLOPT_INFILE => $tmp_file, - CURLOPT_RETURNTRANSFER => TRUE - ); - - // pass array of options to curl handle setup function - curl_setopt_array($curlHnd, $curlOptArr); - - // execute curl request and retrieve error message(s) (if any) - $ret = curl_exec($curlHnd); - $errRet = curl_error($curlHnd); - - // close curl handle - curl_close($curlHnd); - - // split entire string into array of lines - $retArr = explode("\r\n", $ret); - - // check each line as a valid string of a BLOB reference - foreach ($retArr as $value) - if (strlen($value) > strlen("~*$bs_db/~") && "~*$bs_db/~" == substr($value, 0, strlen($bs_db) + 4)) - { - // is a valid reference, so set as current and break - PMA_File::setRecentBLOBReference($value); - break; - } - - // close file handle - if ($tmp_file) - fclose($tmp_file); - } // end if ($curlHnd) - } // end if ($allBSTablesExist) - } // end if ($PMA_Config) - } // end if ($is_bs_upload) + } // end if ($is_bs_upload) // check for file upload errors switch ($file['error']) { @@ -493,129 +405,40 @@ class PMA_File // is a request to upload file to BLOB repository using uploadDir mechanism if ($is_bs_upload) { - // load PMA configuration - $PMA_Config = $GLOBALS['PMA_Config']; + $bs_db = $_REQUEST['db']; + $bs_table = $_REQUEST['table']; + $tmp_filename = $GLOBALS['cfg']['UploadDir'] . '/' . $_REQUEST['fields_uploadlocal_' . $key]['multi_edit'][$primary]; - // if the PMA configuration was loaded - if (!empty($PMA_Config)) - { - // load BS variables from PMA configuration - $pluginsExist = $PMA_Config->get('BLOBSTREAMING_PLUGINS_EXIST'); - $curlExists = $PMA_Config->get('CURL_EXISTS'); - $bs_database = $PMA_Config->get('BLOBSTREAMABLE_DATABASES'); - $bs_database = $bs_database[$_REQUEST['db']]; + // check if fileinfo library exists + if ($PMA_Config->get('FILEINFO_EXISTS')) + { + // attempt to init fileinfo + $finfo = finfo_open(FILEINFO_MIME); - $allBSTablesExist = TRUE; + // fileinfo exists + if ($finfo) + { + // pass in filename to fileinfo and close fileinfo handle after + $tmp_file_type = finfo_file($finfo, $tmp_filename); + finfo_close($finfo); + } + } + else // no fileinfo library exists, use file command + $tmp_file_type = exec("file -bi " . escapeshellarg($tmp_filename)); - // if plugins and curl exist - if ($pluginsExist && $curlExists) - { - foreach ($bs_database as $table_key=>$table) - { - if (!$bs_database[$table_key]['Exists']) - { - $allBSTablesExist = FALSE; - break; - } - } - } - else - $allBSTablesExist = FALSE; + if (!$tmp_file_type) + $tmp_file_type = NULL; - // if necessary BS tables exist - if ($allBSTablesExist) - { - // load BS variables - $bs_server = $PMA_Config->get('BLOBSTREAMING_SERVER'); - $bs_db = $_REQUEST['db']; - $bs_table = $_REQUEST['table']; - // setup uploadDir mechanism and file variables - $tmp_filename = $GLOBALS['cfg']['UploadDir'] . '/' . $_REQUEST['fields_uploadlocal_' . $key]['multi_edit'][$primary]; - $tmp_file = fopen($tmp_filename, 'r'); - $tmp_file_size = filesize($tmp_filename); + if (!$bs_db || !$bs_table) + { + $this->_error_message = $GLOBALS['strUploadErrorUnknown']; + return FALSE; + } + $blob_url = PMA_BS_UpLoadFile($bs_db, $bs_table, $tmp_file_type, $tmp_filename); + PMA_File::setRecentBLOBReference($blob_url); - // check if fileinfo library exists - if ($PMA_Config->get('FILEINFO_EXISTS')) - { - // attempt to init fileinfo - $finfo = finfo_open(FILEINFO_MIME); - - // fileinfo exists - if ($finfo) - { - // pass in filename to fileinfo and close fileinfo handle after - $tmp_file_type = finfo_file($finfo, $tmp_filename); - finfo_close($finfo); - } - } - else // no fileinfo library exists, use file command - $tmp_file_type = exec("file -bi " . escapeshellarg($tmp_filename)); - - if (!$tmp_file_type) - $tmp_file_type = NULL; - - // necessary variables aren't loaded, return error message (unknown error) - if (!$bs_server || !$bs_db || !$bs_table || !$tmp_file || !$tmp_file_size) - { - $this->_error_message = __('Unknown error in file upload.'); - return FALSE; - } - else - $bs_server_path = 'http://' . $bs_server . '/' . $bs_db . '/' . $bs_table; - - // init curl handle - $curlHnd = curl_init ($bs_server_path); - - // curl handle exists - if ($curlHnd) - { - // specify custom header - $customHeader = array( - "Accept-Language: en-us;en;q=0;5", - "Accept-Charset: ISO-8859-1;utf-8;q=0.7,*;q=0.7", - "Content-type: $tmp_file_type" - ); - - // specify custom curl options - $curlOptArr = array( - CURLOPT_PUT => TRUE, - CURLOPT_HEADER => TRUE, - CURLOPT_HTTPHEADER => $customHeader, - CURLOPT_INFILESIZE => $tmp_file_size, - CURLOPT_INFILE => $tmp_file, - CURLOPT_RETURNTRANSFER => TRUE - ); - - // setup custom curl options (as specified in above array) - curl_setopt_array($curlHnd, $curlOptArr); - - // execute curl request and retrieve error message(s) (if any) - $ret = curl_exec($curlHnd); - $errRet = curl_error($curlHnd); - - // close curl handle - curl_close($curlHnd); - - // split return string into lines - $retArr = explode("\r\n", $ret); - - // check subsequent lines for valid BLOB reference string - foreach ($retArr as $value) - if (strlen($value) > strlen("~*$bs_db/~") && "~*$bs_db/~" == substr($value, 0, strlen($bs_db) + 4)) - { - // is a valid reference, so set as current and break - PMA_File::setRecentBLOBReference($value); - break; - } - - // close file handle - if ($tmp_file) - fclose($tmp_file); - } // end if ($curlHnd) - } // end if ($allBSTablesExist) - } // end if ($PMA_Config) - } // end if ($is_bs_upload) + } // end if ($is_bs_upload) return $this->setLocalSelectedFile($_REQUEST['fields_uploadlocal_' . $key]['multi_edit'][$primary]); } else { @@ -633,127 +456,36 @@ class PMA_File // is a request to upload file to BLOB repository using uploadDir mechanism if ($is_bs_upload) { - // load PMA configuration - $PMA_Config = $GLOBALS['PMA_Config']; + // check if fileinfo library exists + if ($PMA_Config->get('FILEINFO_EXISTS')) + { + // attempt to init fileinfo + $finfo = finfo_open(FILEINFO_MIME); - // if the PMA configuration was loaded - if (!empty($PMA_Config)) - { - // load BS variables from PMA configuration - $pluginsExist = $PMA_Config->get('BLOBSTREAMING_PLUGINS_EXIST'); - $curlExists = $PMA_Config->get('CURL_EXISTS'); - $bs_database = $PMA_Config->get('BLOBSTREAMABLE_DATABASES'); - $bs_database = $bs_database[$_REQUEST['db']]; + // if fileinfo exists + if ($finfo) + { + // pass in filename to fileinfo and close fileinfo handle after + $tmp_file_type = finfo_file($finfo, $tmp_filename); + finfo_close($finfo); + } + } + else // no fileinfo library exists, use file command + $tmp_file_type = exec("file -bi " . escapeshellarg($tmp_filename)); - $allBSTablesExist = TRUE; + if (!$tmp_file_type) + $tmp_file_type = NULL; - // if plugins and curl exist - if ($pluginsExist && $curlExists) - { - foreach ($bs_database as $table_key=>$table) - { - if (!$bs_database[$table_key]['Exists']) - { - $allBSTablesExist = FALSE; - break; - } - } - } - else - $allBSTablesExist = FALSE; + $bs_db = $_REQUEST['db']; + $bs_table = $_REQUEST['table']; + if (!$bs_db || !$bs_table) + { + $this->_error_message = $GLOBALS['strUploadErrorUnknown']; + return FALSE; + } + $blob_url = PMA_BS_UpLoadFile($bs_db, $bs_table, $tmp_file_type, $tmp_filename); + PMA_File::setRecentBLOBReference($blob_url); - if ($allBSTablesExist) - { - // load BS variables - $bs_server = $PMA_Config->get('BLOBSTREAMING_SERVER'); - $bs_db = $_REQUEST['db']; - $bs_table = $_REQUEST['table']; - - // setup uploadDir mechanism and file variables - $tmp_filename = $GLOBALS['cfg']['UploadDir'] . '/' . $_REQUEST['fields_uploadlocal_' . $key]['multi_edit'][$primary]; - $tmp_file = fopen($tmp_filename, 'r'); - $tmp_file_size = filesize($tmp_filename); - - // check if fileinfo library exists - if ($PMA_Config->get('FILEINFO_EXISTS')) - { - // attempt to init fileinfo - $finfo = finfo_open(FILEINFO_MIME); - - // if fileinfo exists - if ($finfo) - { - // pass in filename to fileinfo and close fileinfo handle after - $tmp_file_type = finfo_file($finfo, $tmp_filename); - finfo_close($finfo); - } - } - else // no fileinfo library exists, use file command - $tmp_file_type = exec("file -bi " . escapeshellarg($tmp_filename)); - - if (!$tmp_file_type) - $tmp_file_type = NULL; - - // necessary variables aren't loaded, return error message (unknown error) - if (!$bs_server || !$bs_db || !$bs_table || !$tmp_file || !$tmp_file_size) - { - $this->_error_message = __('Unknown error in file upload.'); - return FALSE; - } - else - $bs_server_path = 'http://' . $bs_server . '/' . $bs_db . '/' . $bs_table; - - // init curl handle - $curlHnd = curl_init ($bs_server_path); - - // if curl handle exists - if ($curlHnd) - { - // specify custom header - $customHeader = array( - "Accept-Language: en-us;en;q=0;5", - "Accept-Charset: ISO-8859-1;utf-8;q=0.7,*;q=0.7", - "Content-type: $tmp_file_type" - ); - - // specify custom curl options - $curlOptArr = array( - CURLOPT_PUT => TRUE, - CURLOPT_HEADER => TRUE, - CURLOPT_HTTPHEADER => $customHeader, - CURLOPT_INFILESIZE => $tmp_file_size, - CURLOPT_INFILE => $tmp_file, - CURLOPT_RETURNTRANSFER => TRUE - ); - - // setup custom curl options (as specified in above array) - curl_setopt_array($curlHnd, $curlOptArr); - - // execute curl request and retrieve error message(s) (if any) - $ret = curl_exec($curlHnd); - $errRet = curl_error($curlHnd); - - // close curl handle - curl_close($curlHnd); - - // split return string into lines - $retArr = explode("\r\n", $ret); - - // check subsequent lines for valid BLOB reference string - foreach ($retArr as $value) - if (strlen($value) > strlen("~*$bs_db/~") && "~*$bs_db/~" == substr($value, 0, strlen($bs_db) + 4)) - { - // is a valid reference, so set as current and break - PMA_File::setRecentBLOBReference($value); - break; - } - - // close file handle - if ($tmp_file) - fclose($tmp_file); - } // end if ($curlHnd) - } // end if ($allBSTablesExist) - } // end if ($PMA_Config) } // end if ($is_bs_upload) return $this->setLocalSelectedFile($_REQUEST['fields_uploadlocal_' . $key]); diff --git a/libraries/StorageEngine.class.php b/libraries/StorageEngine.class.php index 2ae125a3e..675528c04 100644 --- a/libraries/StorageEngine.class.php +++ b/libraries/StorageEngine.class.php @@ -91,12 +91,7 @@ class PMA_StorageEngine && ($details['Support'] == 'NO' || $details['Support'] == 'DISABLED')) { continue; } - // currently (MySQL 5.1.26) there is no way we can be informed - // that PBMS does not support normal table creation so - // we use an exception here - if ('PBMS' == $details['Engine']) { - continue; - } + $output .= '

Documentation and furtther information about PBXT can be found on the ' . "\n" + . 'PrimeBase XT Home Page.

' . "\n" + . '' . "\n" + . '' . "\n" + . '' . "\n" + . '' . "\n" + . '' . "\n"; + + return $output; + } } ?> diff --git a/server_engines.php b/server_engines.php index f9664ca02..eab5e63ce 100644 --- a/server_engines.php +++ b/server_engines.php @@ -80,7 +80,18 @@ if (empty($_REQUEST['engine']) . '' . "\n"; $odd_row = !$odd_row; } - unset($odd_row, $engine, $details); + // Special case for PBMS daemon which is not listed as an engine + echo '' . "\n" + . ' ' . "\n" + . ' ' . "PBMS\n" + . ' ' . "\n" + . ' ' . htmlspecialchars("PrimeBase BLOB streaming daemon") . '' . "\n" + . '' . "\n"; + + unset($odd_row, $engine, $details); echo '' . "\n" . '' . "\n"; diff --git a/tbl_change.php b/tbl_change.php index f8734904a..8cde1b2c9 100644 --- a/tbl_change.php +++ b/tbl_change.php @@ -834,51 +834,7 @@ foreach ($rows as $row_id => $vrow) { || ($cfg['ProtectBinary'] == 'all' && $field['is_binary'])) { echo "\n"; // for blobstreaming - $bs_reference_exists = FALSE; - - if (isset ($tbl_type) && strlen ($tbl_type) > 0) - { - // load PMA_Config - $PMA_Config = $GLOBALS['PMA_Config']; - - if (!empty($PMA_Config)) - { - $requiredTblType = $PMA_Config->get('PBXT_NAME'); - - if ($requiredTblType == strtolower ($tbl_type)) - { - $pluginsExist = $PMA_Config->get('BLOBSTREAMING_PLUGINS_EXIST'); - - // check if blobstreaming plugins exist - if ($pluginsExist) - { - $bs_tables = $PMA_Config->get('BLOBSTREAMABLE_DATABASES'); - - if (!empty($bs_tables) && strlen($db) > 0) - { - $bs_tables = $bs_tables[$db]; - - if (isset($bs_tables)) - { - $allBSTablesExist = TRUE; - - foreach ($bs_tables as $table_key=>$bs_tbl) - if (!$bs_tables[$table_key]['Exists']) - { - $allBSTablesExist = FALSE; - break; - } - - if ($allBSTablesExist) - $bs_reference_exists = PMA_BS_ReferenceExists($data, $db); - } // end if (isset($bs_tables)) - } // end if (!empty($bs_tables) && strlen($db) > 0) - } // end if ($pluginsExist) - } // end if ($requiredTblType == strtolower ($tbl_type)) - } // end if (!empty($PMA_Config)) - } // end if (isset ($tbl_type) && strlen ($tbl_type) > 0) - - if ($bs_reference_exists) + if (PMA_BS_IsTablePBMSEnabled($db, $table, $tbl_type) && PMA_BS_IsPBMSReference($data, $db)) { echo ''; echo ' ' . __('Remove BLOB Repository Reference') . "
"; @@ -894,7 +850,7 @@ foreach ($rows as $row_id => $vrow) { unset($data_size); } echo "\n"; - } // end if ($bs_reference_exists) + } // end if (PMA_BS_IsTablePBMSEnabled($db, $table, $tbl_type) && PMA_BS_IsPBMSReference($data, $db)) ?> @@ -932,63 +888,11 @@ foreach ($rows as $row_id => $vrow) { // (displayed whatever value the ProtectBinary has) if ($is_upload && $field['is_blob']) { - // check if field type is of longblob - if ($field['pma_type'] == "longblob") + // check if field type is of longblob and if the table is PBMS enabled. + if (($field['pma_type'] == "longblob") && PMA_BS_IsTablePBMSEnabled($db_name, $tbl_name, $tbl_type)) { - if (isset ($tbl_type) && strlen ($tbl_type) > 0) - { - // load PMA Config - $PMA_Config = $GLOBALS['PMA_Config']; - - // is PMA_Config's data loaded? continue only if it is - if (!empty($PMA_Config)) - { - $requiredTblType = $PMA_Config->get('PBXT_NAME'); - - if ($requiredTblType == strtolower ($tbl_type)) - { - $pluginsExist = $PMA_Config->get('BLOBSTREAMING_PLUGINS_EXIST'); - - // check if blobstreaming plugins exist - if ($pluginsExist) - { - $curlExists = $PMA_Config->get('CURL_EXISTS'); - - // check if CURL exists - if ($curlExists) - { - $bs_tables = $PMA_Config->get('BLOBSTREAMABLE_DATABASES'); - - // check for BLOBStreamable databases and if current database name is provided - if (!empty($bs_tables) && strlen($db) > 0) - { - $bs_tables = $bs_tables[$db]; - - // check if reference to BLOBStreaming tables exists - if (isset($bs_tables)) - { - $allBSTablesExist = TRUE; - - foreach ($bs_tables as $table_key=>$bs_tbl) - if (!$bs_tables[$table_key]['Exists']) - { - $allBSTablesExist = FALSE; - break; - } - - // check if necessary BLOBStreaming tables exist - if ($allBSTablesExist) - { - echo '
'; - echo ' ' . __('Upload to BLOB repository'); - } // end if ($allBSTablesExist) - } // end if (isset($bs_tables) - } // end if (!empty($bs_tables) && strlen ($db) > 0) - } // end if ($curlExists) - } // end if ($pluginsExist) - } // end if ($requiredTblType == strtolower ($tbl_type)) - } // end if (!empty($PMA_Config)) - } // end if (isset ($tbl_type) && strlen ($tbl_type) > 0) + echo '
'; + echo ' ' . __('Upload to BLOB repository'); } echo '
'; diff --git a/tbl_replace.php b/tbl_replace.php index d3271acb1..48b98c155 100644 --- a/tbl_replace.php +++ b/tbl_replace.php @@ -210,10 +210,6 @@ foreach ($loop_array as $rowcount => $where_clause) { ? $_REQUEST['auto_increment']['multi_edit'][$rowcount] : null; - if ($blob_streaming_active) { - $primary_field = PMA_BS_GetPrimaryField($GLOBALS['db'], $GLOBALS['table']); - } - // Fetch the current values of a row to use in case we have a protected field // @todo possibly move to ./libraries/tbl_replace_fields.inc.php if ($is_insert && $using_key && isset($me_fields_type) && is_array($me_fields_type) && isset($where_clause)) { From a8e5b0f275b566a5eb1c9e0966f6d272c73bde2d Mon Sep 17 00:00:00 2001 From: Barry Leslie Date: Thu, 15 Jul 2010 12:35:52 -0700 Subject: [PATCH 003/212] Fix problem where PBMS daemon is not loaded or the 'pbms' database doesn't exist. --- libraries/blobstreaming.lib.php | 12 ++++++++---- server_engines.php | 26 +++++++++++++++----------- 2 files changed, 23 insertions(+), 15 deletions(-) diff --git a/libraries/blobstreaming.lib.php b/libraries/blobstreaming.lib.php index 5bfb8683a..a1419ebdd 100644 --- a/libraries/blobstreaming.lib.php +++ b/libraries/blobstreaming.lib.php @@ -109,10 +109,11 @@ function checkBLOBStreamingPlugins() $PMA_Config->set('PHP_PBMS_EXISTS', FALSE); $PMA_Config->set('FILEINFO_EXISTS', FALSE); - // Check to see if the BLOB Streaming PHP extension is loaded - if (extension_loaded("PBMS")) { - $PMA_Config->set('PHP_PBMS_EXISTS', TRUE); - } + // Create the 'pbms' database if it doesn't exist. + // PBMS creates this database automaticly as soon as + // a PBMS enabled table is accessed but we may need it earlier + // when a select is done on pbms.pbms_enabled. + PMA_DBI_query("create database IF NOT EXISTS pbms;" ); // check if PECL's fileinfo library exist $finfo = NULL; @@ -324,6 +325,9 @@ function PMA_BS_IsTablePBMSEnabled($db_name, $tbl_name, $tbl_type) // return if unable to load PMA configuration if (empty($PMA_Config)) return FALSE; + + if (!$PMA_Config->get('BLOBSTREAMING_PLUGINS_EXIST') ) + return FALSE; // This information should be cached rather than selecting it each time. //$query = "SELECT count(*) FROM information_schema.TABLES T, pbms.pbms_enabled E where T.table_schema = ". PMA_backquote($db_name) . " and T.table_name = ". PMA_backquote($tbl_name) . " and T.engine = E.name"; diff --git a/server_engines.php b/server_engines.php index eab5e63ce..2179f5fe8 100644 --- a/server_engines.php +++ b/server_engines.php @@ -80,17 +80,21 @@ if (empty($_REQUEST['engine']) . '' . "\n"; $odd_row = !$odd_row; } - // Special case for PBMS daemon which is not listed as an engine - echo '' . "\n" - . ' ' . "\n" - . ' ' . "PBMS\n" - . ' ' . "\n" - . ' ' . htmlspecialchars("PrimeBase BLOB streaming daemon") . '' . "\n" - . '' . "\n"; - + + $PMA_Config = $GLOBALS['PMA_Config']; + if ($PMA_Config->get('BLOBSTREAMING_PLUGINS_EXIST')) { + // Special case for PBMS daemon which is not listed as an engine + echo '' . "\n" + . ' ' . "\n" + . ' ' . "PBMS\n" + . ' ' . "\n" + . ' ' . htmlspecialchars("PrimeBase MediaStream (PBMS) daemon") . '' . "\n" + . '' . "\n"; + } + unset($odd_row, $engine, $details); echo '' . "\n" . '' . "\n"; From b6349cd626d6b443e50f0d8506f30ca5f339bd9a Mon Sep 17 00:00:00 2001 From: Leslie Date: Fri, 16 Jul 2010 10:33:53 -0700 Subject: [PATCH 004/212] Removed unused code from db_operations.php. Changed blobstreaming.lib.php so that it check to see if blob streaming is enabled before doing anything and also uses an indirect method to create the 'pbms' database if it doesn't exist. --- db_operations.php | 86 --------------------------------- libraries/blobstreaming.lib.php | 61 +++++++++++++++++------ 2 files changed, 47 insertions(+), 100 deletions(-) diff --git a/db_operations.php b/db_operations.php index 5850a9e55..773213173 100644 --- a/db_operations.php +++ b/db_operations.php @@ -438,92 +438,6 @@ if (!$is_information_schema) { get('PBXT_NAME') !== strtolower($db)) - { - if ($PMA_Config->get('BLOBSTREAMING_PLUGINS_EXIST')) - { - $bs_tables = $PMA_Config->get('BLOBSTREAMABLE_DATABASES'); - $bs_tables = $bs_tables[$db]; - - $oneBSTableExists = FALSE; - $allBSTablesExist = TRUE; - - // first check that all blobstreaming tables do not exist - foreach ($bs_tables as $table_key=>$tbl) - if ($bs_tables[$table_key]['Exists']) - $oneBSTableExists = TRUE; - else - $allBSTablesExist = FALSE; - - ?> - -

- -
- - - - - : - - - -
-
- - -
- - - -
- - -
- - - -
- - -
- -
- get('BLOBSTREAMING_PLUGINS_EXIST')) - } // end if ($PMA_Config->get('PBXT_NAME') !== strtolower($db)) - } /** * Change database charset diff --git a/libraries/blobstreaming.lib.php b/libraries/blobstreaming.lib.php index a1419ebdd..e6c59738c 100644 --- a/libraries/blobstreaming.lib.php +++ b/libraries/blobstreaming.lib.php @@ -4,6 +4,39 @@ * @package BLOBStreaming */ +function initPBMSDatabase() +{ + $query = "create database IF NOT EXISTS pbms;"; // If no other choice then try this. + /* + * The user may not have privileges to create the 'pbms' database + * so if it doesn't exist then we perform a select on a pbms system + * table in an already existing database which will cause the PBMS + * daemon to create the 'pbms' database. + */ + $db_array =PMA_DBI_fetch_result('SHOW DATABASES;'); + if (!empty($db_array)) { + $target = ""; + foreach ($db_array as $current_db) { + if ($current_db == 'pbms') + return TRUE; + + if ($target == "") { + if (($current_db != 'pbxt') && ($current_db != 'mysql') && ($current_db != 'information_schema')) + $target = $current_db; + } + } + + if ($target != "") + $query = "select * from $target.pbms_metadata_header"; // If it exists this table will not contain much + } + + $result = PMA_DBI_query($query ); + if (!$result) + return FALSE; + + return TRUE; + } + /** * checks whether the necessary plugins for BLOBStreaming exist * @@ -27,12 +60,6 @@ function checkBLOBStreamingPlugins() return FALSE; } - // At this point we might already know that plugins do not exist - // because this was recorded in the session (cache). - if (PMA_cacheGet('skip_blobstreaming', true)) { - return false; - } - // If we don't know that we can skip blobstreaming, we continue // verifications; anyway, in case we won't skip blobstreaming, // we still need to set some variables in non-persistent settings, @@ -95,8 +122,8 @@ function checkBLOBStreamingPlugins() // get BS server port $BS_PORT = $bs_variables['pbms_port']; - // if no BS server port exists, set plugin existance to false and return - if (! $BS_PORT) { + // if no BS server port or 'pbms' database exists, set plugin existance to false and return + if ((! $BS_PORT) || (! initPBMSDatabase())) { $PMA_Config->set('BLOBSTREAMING_PLUGINS_EXIST', FALSE); PMA_cacheSet('skip_blobstreaming', true, true); return FALSE; @@ -109,12 +136,6 @@ function checkBLOBStreamingPlugins() $PMA_Config->set('PHP_PBMS_EXISTS', FALSE); $PMA_Config->set('FILEINFO_EXISTS', FALSE); - // Create the 'pbms' database if it doesn't exist. - // PBMS creates this database automaticly as soon as - // a PBMS enabled table is accessed but we may need it earlier - // when a select is done on pbms.pbms_enabled. - PMA_DBI_query("create database IF NOT EXISTS pbms;" ); - // check if PECL's fileinfo library exist $finfo = NULL; @@ -240,6 +261,9 @@ function PMA_do_disconnect() */ function PMA_BS_IsPBMSReference($bs_reference, $db_name) { + if (PMA_cacheGet('skip_blobstreaming', true)) + return FALSE; + if (PMA_do_connect($db_name, TRUE) == FALSE) { return FALSE; } @@ -316,6 +340,9 @@ function PMA_BS_CreateReferenceLink($bs_reference, $db_name) // they are not currently needed. function PMA_BS_IsTablePBMSEnabled($db_name, $tbl_name, $tbl_type) { + if (PMA_cacheGet('skip_blobstreaming', true)) + return FALSE; + if ((isset($tbl_type) == FALSE) || (strlen($tbl_type) == 0)) return FALSE; @@ -345,6 +372,9 @@ function PMA_BS_IsTablePBMSEnabled($db_name, $tbl_name, $tbl_type) function PMA_BS_UpLoadFile($db_name, $tbl_name, $file_type, $file_name) { + if (PMA_cacheGet('skip_blobstreaming', true)) + return FALSE; + if (PMA_do_connect($db_name, FALSE) == FALSE) { return FALSE; } @@ -372,6 +402,9 @@ function PMA_BS_UpLoadFile($db_name, $tbl_name, $file_type, $file_name) //------------ function PMA_BS_SetContentType($db_name, $bsTable, $blobReference, $contentType) { + if (PMA_cacheGet('skip_blobstreaming', true)) + return FALSE; + // This is a really ugly way to do this but currently there is nothing better. // In a future version of PBMS the system tables will be redesigned to make this // more eficient. From 56ebe05af73115e9c6928beb49db846fbbda460a Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Thu, 22 Jul 2010 13:15:27 -0400 Subject: [PATCH 005/212] blob streaming code cleanup (work in progress) --- bs_change_mime_type.php | 22 +- bs_disp_as_mime_type.php | 15 +- bs_play_media.php | 22 +- db_structure.php | 12 +- libraries/File.class.php | 96 ++++---- libraries/StorageEngine.class.php | 7 +- libraries/blobstreaming.lib.php | 392 +++++++++++++++--------------- libraries/common.inc.php | 4 +- libraries/common.lib.php | 21 +- libraries/core.lib.php | 9 +- libraries/display_tbl.lib.php | 14 +- libraries/engines/pbms.lib.php | 54 ++-- libraries/engines/pbxt.lib.php | 42 ++-- server_engines.php | 31 ++- tbl_change.php | 31 ++- 15 files changed, 381 insertions(+), 391 deletions(-) diff --git a/bs_change_mime_type.php b/bs_change_mime_type.php index 51cf6cb3e..edefae144 100644 --- a/bs_change_mime_type.php +++ b/bs_change_mime_type.php @@ -32,19 +32,17 @@ // necessary variables exist if ($bsDB && $bsTable && $bsReference && $bsNewMIMEType) { - if (PMA_BS_SetContentType($bsDB, $bsTable, $bsReference, $bsNewMIMEType)) - { - // determine redirector page - $newLoc = $cfg['PmaAbsoluteUri'] . 'sql.php?' . PMA_generate_common_url ('','', '&') . (isset($bsDB) ? '&db=' . urlencode($bsDB) : '') . (isset($bsTable) ? '&table=' . urlencode($bsTable) : '') . (isset($token) ? '&token=' . urlencode($token) : '') . (isset($goto) ? '&goto=' . urlencode($goto) : '') . '&reload=1&purge=1'; + if (PMA_BS_SetContentType($bsDB, $bsTable, $bsReference, $bsNewMIMEType)) { + // determine redirector page + $newLoc = $cfg['PmaAbsoluteUri'] . 'sql.php?' . PMA_generate_common_url ('','', '&') . (isset($bsDB) ? '&db=' . urlencode($bsDB) : '') . (isset($bsTable) ? '&table=' . urlencode($bsTable) : '') . (isset($token) ? '&token=' . urlencode($token) : '') . (isset($goto) ? '&goto=' . urlencode($goto) : '') . '&reload=1&purge=1'; - // redirect to specified page - ?> - - + + diff --git a/bs_disp_as_mime_type.php b/bs_disp_as_mime_type.php index 18fc20169..085d88823 100644 --- a/bs_disp_as_mime_type.php +++ b/bs_disp_as_mime_type.php @@ -25,15 +25,21 @@ $c_type = preg_replace('/[^A-Za-z0-9/_-]/', '_', $_REQUEST['c_type']); // Get the blob streaming URL $filename = PMA_BS_getURL($reference); -if (empty($filename)) die('No blob streaming server configured!'); +if (empty($filename)) { + die(__('No blob streaming server configured!')); +} $hdrs = get_headers($filename, 1); -if ($hdrs === FALSE) die('Failed to fetch headers'); +if ($hdrs === FALSE) { + die(__('Failed to fetch headers')); +} $fHnd = fopen($filename, "rb"); -if ($fHnd === FALSE) die('Failed to open remote URL'); +if ($fHnd === FALSE) { + die(__('Failed to open remote URL')); +} $f_size = $hdrs['Content-Length']; @@ -53,8 +59,9 @@ while (!feof($fHnd)) { $content .= fread($fHnd, $f_size); $pos = strlen($content); - if ($pos >= $f_size) + if ($pos >= $f_size) { break; + } } echo $content; diff --git a/bs_play_media.php b/bs_play_media.php index e1081f9e0..fe6f57425 100644 --- a/bs_play_media.php +++ b/bs_play_media.php @@ -15,7 +15,7 @@ $mediaType = isset($_REQUEST['media_type']) ? $_REQUEST['media_type'] : NULL; /* - * @var string indicates whether media type is of custom type + * @var string indicates whether media type is of custom type */ $customType = isset($_REQUEST['custom_type']) ? $_REQUEST['custom_type'] : false; @@ -25,16 +25,16 @@ $bsReference = isset($_REQUEST['bs_reference']) ? $_REQUEST['bs_reference'] : NULL; // if media type and BS reference are specified - if (isset($mediaType) && isset($bsReference)) - { - if (isset($customType) && $customType) - $bs_file_path = 'bs_disp_as_mime_type.php' . PMA_generate_common_url(array('reference' => $bsReference, 'c_type' => $mediaType)); - else { - // Get the BLOB streaming URL - $bs_file_path = PMA_BS_getURL($bsReference); - if (empty($bs_file_path)) die('No blob streaming server configured!'); - } - + if (isset($mediaType) && isset($bsReference)) { + if (isset($customType) && $customType) { + $bs_file_path = 'bs_disp_as_mime_type.php' . PMA_generate_common_url(array('reference' => $bsReference, 'c_type' => $mediaType)); + } else { + // Get the BLOB streaming URL + $bs_file_path = PMA_BS_getURL($bsReference); + if (empty($bs_file_path)) { + die(__('No blob streaming server configured!')); + } + } ?> diff --git a/db_structure.php b/db_structure.php index e73c02763..077dcab45 100644 --- a/db_structure.php +++ b/db_structure.php @@ -150,17 +150,13 @@ $hidden_fields = array(); $odd_row = true; $sum_row_count_pre = ''; -// added by rajk - for blobstreaming -$PMA_Config = $GLOBALS['PMA_Config']; - $tableReductionCount = 0; // the amount to reduce the table count by foreach ($tables as $keyname => $each_table) { - - if (PMA_BS_IsHiddenTable($keyname)) { - $tableReductionCount++; - continue; - } + if (PMA_BS_IsHiddenTable($keyname)) { + $tableReductionCount++; + continue; + } // Get valid statistics whatever is the table type diff --git a/libraries/File.class.php b/libraries/File.class.php index 4aec35c70..83f5d14de 100644 --- a/libraries/File.class.php +++ b/libraries/File.class.php @@ -279,29 +279,26 @@ class PMA_File $is_bs_upload = FALSE; // check if this field requires a repository upload - if (isset($_REQUEST['upload_blob_repo_' . $key])) + if (isset($_REQUEST['upload_blob_repo_' . $key])) { $is_bs_upload = ($_REQUEST['upload_blob_repo_' . $key]['multi_edit'][0] == "on") ? TRUE : FALSE; - + } // if request is an upload to the BLOB repository - if ($is_bs_upload) - { - $bs_db = $_REQUEST['db']; - $bs_table = $_REQUEST['table']; - $tmp_filename = $file['tmp_name']; - $tmp_file_type = $file['type']; + if ($is_bs_upload) { + $bs_db = $_REQUEST['db']; + $bs_table = $_REQUEST['table']; + $tmp_filename = $file['tmp_name']; + $tmp_file_type = $file['type']; - if (!$tmp_file_type) - $tmp_file_type = NULL; - - - if (!$bs_db || !$bs_table) - { - $this->_error_message = $GLOBALS['strUploadErrorUnknown']; - return FALSE; - } - $blob_url = PMA_BS_UpLoadFile($bs_db, $bs_table, $tmp_file_type, $tmp_filename); - PMA_File::setRecentBLOBReference($blob_url); + if (! $tmp_file_type) { + $tmp_file_type = NULL; + } + if (! $bs_db || ! $bs_table) { + $this->_error_message = $GLOBALS['strUploadErrorUnknown']; + return FALSE; + } + $blob_url = PMA_BS_UpLoadFile($bs_db, $bs_table, $tmp_file_type, $tmp_filename); + PMA_File::setRecentBLOBReference($blob_url); } // end if ($is_bs_upload) // check for file upload errors @@ -399,45 +396,42 @@ class PMA_File $is_bs_upload = FALSE; // check if this field requires a repository upload - if (isset($_REQUEST['upload_blob_repo_' . $key])) + if (isset($_REQUEST['upload_blob_repo_' . $key])) { $is_bs_upload = ($_REQUEST['upload_blob_repo_' . $key]['multi_edit'][0] == "on") ? TRUE : FALSE; + } // is a request to upload file to BLOB repository using uploadDir mechanism - if ($is_bs_upload) - { - $bs_db = $_REQUEST['db']; - $bs_table = $_REQUEST['table']; - $tmp_filename = $GLOBALS['cfg']['UploadDir'] . '/' . $_REQUEST['fields_uploadlocal_' . $key]['multi_edit'][$primary]; + if ($is_bs_upload) { + $bs_db = $_REQUEST['db']; + $bs_table = $_REQUEST['table']; + $tmp_filename = $GLOBALS['cfg']['UploadDir'] . '/' . $_REQUEST['fields_uploadlocal_' . $key]['multi_edit'][$primary]; - // check if fileinfo library exists - if ($PMA_Config->get('FILEINFO_EXISTS')) - { - // attempt to init fileinfo - $finfo = finfo_open(FILEINFO_MIME); + // check if fileinfo library exists + if ($PMA_Config->get('FILEINFO_EXISTS')) { + // attempt to init fileinfo + $finfo = finfo_open(FILEINFO_MIME); - // fileinfo exists - if ($finfo) - { - // pass in filename to fileinfo and close fileinfo handle after - $tmp_file_type = finfo_file($finfo, $tmp_filename); - finfo_close($finfo); - } - } - else // no fileinfo library exists, use file command - $tmp_file_type = exec("file -bi " . escapeshellarg($tmp_filename)); + // fileinfo exists + if ($finfo) { + // pass in filename to fileinfo and close fileinfo handle after + $tmp_file_type = finfo_file($finfo, $tmp_filename); + finfo_close($finfo); + } + } else { + // no fileinfo library exists, use file command + $tmp_file_type = exec("file -bi " . escapeshellarg($tmp_filename)); + } - if (!$tmp_file_type) - $tmp_file_type = NULL; - - - if (!$bs_db || !$bs_table) - { - $this->_error_message = $GLOBALS['strUploadErrorUnknown']; - return FALSE; - } - $blob_url = PMA_BS_UpLoadFile($bs_db, $bs_table, $tmp_file_type, $tmp_filename); - PMA_File::setRecentBLOBReference($blob_url); + if (! $tmp_file_type) { + $tmp_file_type = NULL; + } + if (! $bs_db || !$bs_table) { + $this->_error_message = $GLOBALS['strUploadErrorUnknown']; + return FALSE; + } + $blob_url = PMA_BS_UpLoadFile($bs_db, $bs_table, $tmp_file_type, $tmp_filename); + PMA_File::setRecentBLOBReference($blob_url); } // end if ($is_bs_upload) return $this->setLocalSelectedFile($_REQUEST['fields_uploadlocal_' . $key]['multi_edit'][$primary]); diff --git a/libraries/StorageEngine.class.php b/libraries/StorageEngine.class.php index 675528c04..71b363625 100644 --- a/libraries/StorageEngine.class.php +++ b/libraries/StorageEngine.class.php @@ -139,8 +139,9 @@ class PMA_StorageEngine */ static public function isValid($engine) { - if ($engine == "PBMS") - return TRUE; + if ($engine == "PBMS") { + return TRUE; + } $storage_engines = PMA_StorageEngine::getStorageEngines(); return isset($storage_engines[$engine]); } @@ -303,7 +304,7 @@ class PMA_StorageEngine $this->support = PMA_ENGINE_SUPPORT_NO; } } else { - $this->engine_init(); + $this->engine_init(); } } diff --git a/libraries/blobstreaming.lib.php b/libraries/blobstreaming.lib.php index e6c59738c..abbe04735 100644 --- a/libraries/blobstreaming.lib.php +++ b/libraries/blobstreaming.lib.php @@ -6,36 +6,38 @@ function initPBMSDatabase() { - $query = "create database IF NOT EXISTS pbms;"; // If no other choice then try this. - /* - * The user may not have privileges to create the 'pbms' database - * so if it doesn't exist then we perform a select on a pbms system - * table in an already existing database which will cause the PBMS - * daemon to create the 'pbms' database. - */ - $db_array =PMA_DBI_fetch_result('SHOW DATABASES;'); - if (!empty($db_array)) { - $target = ""; - foreach ($db_array as $current_db) { - if ($current_db == 'pbms') - return TRUE; - - if ($target == "") { - if (($current_db != 'pbxt') && ($current_db != 'mysql') && ($current_db != 'information_schema')) - $target = $current_db; - } - } + $query = "create database IF NOT EXISTS pbms;"; // If no other choice then try this. + /* + * The user may not have privileges to create the 'pbms' database + * so if it doesn't exist then we perform a select on a pbms system + * table in an already existing database which will cause the PBMS + * daemon to create the 'pbms' database. + */ + $db_array = PMA_DBI_fetch_result('SHOW DATABASES;'); + if (! empty($db_array)) { + $target = ""; + foreach ($db_array as $current_db) { + if ($current_db == 'pbms') { + return TRUE; + } + if ($target == "") { + if (($current_db != 'pbxt') && ($current_db != 'mysql') && ($current_db != 'information_schema')) { + $target = $current_db; + } + } + } - if ($target != "") - $query = "select * from $target.pbms_metadata_header"; // If it exists this table will not contain much - } + if ($target != "") { + $query = "select * from $target.pbms_metadata_header"; // If it exists this table will not contain much + } + } - $result = PMA_DBI_query($query ); - if (!$result) - return FALSE; - - return TRUE; - } + $result = PMA_DBI_query($query ); + if (! $result) { + return FALSE; + } + return TRUE; +} /** * checks whether the necessary plugins for BLOBStreaming exist @@ -95,23 +97,23 @@ function checkBLOBStreamingPlugins() // Retrieve MySQL plugins $existing_plugins = PMA_DBI_fetch_result('SHOW PLUGINS'); - foreach ($existing_plugins as $one_existing_plugin) { + foreach ($existing_plugins as $one_existing_plugin) { // check if required plugins exist - if ( strtolower($one_existing_plugin['Library']) == 'libpbms.so' + if ( strtolower($one_existing_plugin['Library']) == 'libpbms.so' && $one_existing_plugin['Status'] == "ACTIVE") { - $has_blobstreaming = true; - break; - } + $has_blobstreaming = true; + break; + } } - unset($existing_plugins, $one_existing_plugin); + unset($existing_plugins, $one_existing_plugin); } // set variable indicating BS plugin existence $PMA_Config->set('BLOBSTREAMING_PLUGINS_EXIST', $has_blobstreaming); if ($has_blobstreaming) { - $bs_variables = PMA_BS_GetVariables(); - + $bs_variables = PMA_BS_GetVariables(); + // if no BS variables exist, set plugin existence to false and return if (count($bs_variables) <= 0) { $PMA_Config->set('BLOBSTREAMING_PLUGINS_EXIST', FALSE); @@ -136,7 +138,7 @@ function checkBLOBStreamingPlugins() $PMA_Config->set('PHP_PBMS_EXISTS', FALSE); $PMA_Config->set('FILEINFO_EXISTS', FALSE); - // check if PECL's fileinfo library exist + // check if PECL's fileinfo library exist $finfo = NULL; if (function_exists("finfo_open")) { @@ -148,7 +150,7 @@ function checkBLOBStreamingPlugins() $PMA_Config->set('FILEINFO_EXISTS', TRUE); finfo_close($finfo); } // end if (!empty($finfo)) - + } else { PMA_cacheSet('skip_blobstreaming', true, true); return FALSE; @@ -223,8 +225,8 @@ function PMA_BS_GetVariables() //======================== function PMA_BS_ReportPBMSError($msg) { - $tmp_err = pbms_error(); - PMA_showMessage("PBMS error, $msg $tmp_err"); + $tmp_err = pbms_error(); + PMA_showMessage("PBMS error, $msg $tmp_err"); } //------------ @@ -238,20 +240,21 @@ function PMA_do_connect($db_name, $quiet) // generate bs reference link $pbms_host = $PMA_Config->get('BLOBSTREAMING_HOST'); - $pbms_port = $PMA_Config->get('BLOBSTREAMING_PORT'); + $pbms_port = $PMA_Config->get('BLOBSTREAMING_PORT'); - if (pbms_connect($pbms_host, $pbms_port, $db_name) == FALSE) { - if ($quiet == FALSE) - PMA_BS_ReportPBMSError("PBMS Connectiuon failed: pbms_connect($pbms_host, $pbms_port, $db_name)"); - return FALSE; - } - return TRUE; + if (pbms_connect($pbms_host, $pbms_port, $db_name) == FALSE) { + if ($quiet == FALSE) { + PMA_BS_ReportPBMSError("PBMS Connectiuon failed: pbms_connect($pbms_host, $pbms_port, $db_name)"); + } + return FALSE; + } + return TRUE; } //------------ function PMA_do_disconnect() { - pbms_close(); + pbms_close(); } //------------ @@ -261,76 +264,76 @@ function PMA_do_disconnect() */ function PMA_BS_IsPBMSReference($bs_reference, $db_name) { - if (PMA_cacheGet('skip_blobstreaming', true)) - return FALSE; - - if (PMA_do_connect($db_name, TRUE) == FALSE) { - return FALSE; - } + if (PMA_cacheGet('skip_blobstreaming', true)) { + return FALSE; + } + + if (PMA_do_connect($db_name, TRUE) == FALSE) { + return FALSE; + } $ok = pbms_is_blob_reference($bs_reference); - PMA_do_disconnect(); - return $ok ; + PMA_do_disconnect(); + return $ok ; } //------------ function PMA_BS_CreateReferenceLink($bs_reference, $db_name) { - if (PMA_do_connect($db_name, FALSE) == FALSE) { - return 'Error'; - } - - if (pbms_get_info($bs_reference) == FALSE) { - PMA_BS_ReportPBMSError("PBMS get BLOB info failed: pbms_get_info($bs_reference)"); - PMA_do_disconnect(); - return 'Error'; - } + if (PMA_do_connect($db_name, FALSE) == FALSE) { + return 'Error'; + } + + if (pbms_get_info($bs_reference) == FALSE) { + PMA_BS_ReportPBMSError("PBMS get BLOB info failed: pbms_get_info($bs_reference)"); + PMA_do_disconnect(); + return 'Error'; + } $content_type = pbms_get_metadata_value("Content-type"); if ($content_type == FALSE) { PMA_BS_ReportPBMSError("PMA_BS_CreateReferenceLink($bs_reference, $db_name): get BLOB Content-type failed: "); } - - PMA_do_disconnect(); - - if (!$content_type) - $content_type = "image/jpeg"; - $bs_url = PMA_BS_getURL($bs_reference); - if (empty($bs_url)) { - PMA_BS_ReportPBMSError("No blob streaming server configured!"); - return 'Error'; + PMA_do_disconnect(); + + if (! $content_type) { + $content_type = "image/jpeg"; + } + + $bs_url = PMA_BS_getURL($bs_reference); + if (empty($bs_url)) { + PMA_BS_ReportPBMSError("No blob streaming server configured!"); + return 'Error'; } - - $output = "$content_type"; - // specify custom HTML for various content types - switch ($content_type) - { - // no content specified - case NULL: - $output = "NULL"; - break; - // image content - case 'image/jpeg': - case 'image/png': - $output .= ' (' . __('View image') . ')'; - break; + $output = "$content_type"; + + // specify custom HTML for various content types + switch ($content_type) { + // no content specified + case NULL: + $output = "NULL"; + break; + // image content + case 'image/jpeg': + case 'image/png': + $output .= ' (' . __('View image') . ')'; + break; // audio content - case 'audio/mpeg': - $output .= ' (' . __('Play audio'). ')'; - break; - // video content - case 'application/x-flash-video': - case 'video/mpeg': - $output .= ' (' . __('View video') . ')'; - break; - // unsupported content. specify download - default: - $output .= ' (' . __('Download file'). ')'; - } + case 'audio/mpeg': + $output .= ' (' . __('Play audio'). ')'; + break; + // video content + case 'application/x-flash-video': + case 'video/mpeg': + $output .= ' (' . __('View video') . ')'; + break; + // unsupported content. specify download + default: + $output .= ' (' . __('Download file'). ')'; + } -//PMA_showMessage("PMA_BS_CreateReferenceLink($bs_reference, $db_name): $output"); - return $output; + return $output; } //------------ @@ -340,31 +343,36 @@ function PMA_BS_CreateReferenceLink($bs_reference, $db_name) // they are not currently needed. function PMA_BS_IsTablePBMSEnabled($db_name, $tbl_name, $tbl_type) { - if (PMA_cacheGet('skip_blobstreaming', true)) - return FALSE; - - if ((isset($tbl_type) == FALSE) || (strlen($tbl_type) == 0)) - return FALSE; - + if (PMA_cacheGet('skip_blobstreaming', true)) { + return FALSE; + } + + if ((isset($tbl_type) == FALSE) || (strlen($tbl_type) == 0)) { + return FALSE; + } + // load PMA configuration $PMA_Config = $GLOBALS['PMA_Config']; // return if unable to load PMA configuration - if (empty($PMA_Config)) + if (empty($PMA_Config)) { return FALSE; - - if (!$PMA_Config->get('BLOBSTREAMING_PLUGINS_EXIST') ) + } + + if (! $PMA_Config->get('BLOBSTREAMING_PLUGINS_EXIST')) { return FALSE; + } - // This information should be cached rather than selecting it each time. - //$query = "SELECT count(*) FROM information_schema.TABLES T, pbms.pbms_enabled E where T.table_schema = ". PMA_backquote($db_name) . " and T.table_name = ". PMA_backquote($tbl_name) . " and T.engine = E.name"; - $query = "SELECT count(*) FROM pbms.pbms_enabled E where E.name = '". PMA_sqlAddslashes($tbl_type) . "'" ; - $result = PMA_DBI_query($query); + // This information should be cached rather than selecting it each time. + //$query = "SELECT count(*) FROM information_schema.TABLES T, pbms.pbms_enabled E where T.table_schema = ". PMA_backquote($db_name) . " and T.table_name = ". PMA_backquote($tbl_name) . " and T.engine = E.name"; + $query = "SELECT count(*) FROM pbms.pbms_enabled E where E.name = '" . PMA_sqlAddslashes($tbl_type) . "'"; + $result = PMA_DBI_query($query); + + $data = PMA_DBI_fetch_row($result); + if ($data[0] == 1) { + return TRUE; + } - $data = PMA_DBI_fetch_row($result); - if ($data[0] == 1) - return TRUE; - return FALSE; } @@ -372,107 +380,97 @@ function PMA_BS_IsTablePBMSEnabled($db_name, $tbl_name, $tbl_type) function PMA_BS_UpLoadFile($db_name, $tbl_name, $file_type, $file_name) { - if (PMA_cacheGet('skip_blobstreaming', true)) - return FALSE; + if (PMA_cacheGet('skip_blobstreaming', true)) { + return FALSE; + } - if (PMA_do_connect($db_name, FALSE) == FALSE) { - return FALSE; - } - - $fh = fopen($file_name, 'r'); - if (!$fh) { - PMA_do_disconnect(); - PMA_showMessage("Could not open file: $file_name"); - return FALSE; - } - - pbms_add_metadata("Content-type", $file_type); - - $pbms_blob_url = pbms_read_stream($fh, filesize($file_name), $tbl_name); - if (!$pbms_blob_url) { - PMA_BS_ReportPBMSError("pbms_read_stream() Failed"); + if (PMA_do_connect($db_name, FALSE) == FALSE) { + return FALSE; + } + + $fh = fopen($file_name, 'r'); + if (! $fh) { + PMA_do_disconnect(); + PMA_showMessage("Could not open file: $file_name"); + return FALSE; } - //PMA_showMessage(" PMA_BS_UpLoadFile($db_name, $tbl_name, $file_type, $file_name): $pbms_blob_url"); - fclose($fh); - PMA_do_disconnect(); - return $pbms_blob_url; + pbms_add_metadata("Content-type", $file_type); + + $pbms_blob_url = pbms_read_stream($fh, filesize($file_name), $tbl_name); + if (! $pbms_blob_url) { + PMA_BS_ReportPBMSError("pbms_read_stream() Failed"); + } + + fclose($fh); + PMA_do_disconnect(); + return $pbms_blob_url; } //------------ function PMA_BS_SetContentType($db_name, $bsTable, $blobReference, $contentType) { - if (PMA_cacheGet('skip_blobstreaming', true)) - return FALSE; + if (PMA_cacheGet('skip_blobstreaming', true)) { + return FALSE; + } - // This is a really ugly way to do this but currently there is nothing better. - // In a future version of PBMS the system tables will be redesigned to make this - // more eficient. - $query = "SELECT Repository_id, Repo_blob_offset FROM pbms_reference WHERE Blob_url='" . PMA_sqlAddslashes($blobReference) . "'"; -//error_log(" PMA_BS_SetContentType: $query\n", 3, "/tmp/mylog"); - $result = PMA_DBI_query($query); -//error_log(" $query\n", 3, "/tmp/mylog"); + // This is a really ugly way to do this but currently there is nothing better. + // In a future version of PBMS the system tables will be redesigned to make this + // more eficient. + $query = "SELECT Repository_id, Repo_blob_offset FROM pbms_reference WHERE Blob_url='" . PMA_sqlAddslashes($blobReference) . "'"; + //error_log(" PMA_BS_SetContentType: $query\n", 3, "/tmp/mylog"); + $result = PMA_DBI_query($query); + //error_log(" $query\n", 3, "/tmp/mylog"); - // if record exists - if ($data = PMA_DBI_fetch_assoc($result)) - { - $where = "WHERE Repository_id=" . $data['Repository_id'] . " AND Repo_blob_offset=" . $data['Repo_blob_offset'] ; - $query = "SELECT name from pbms_metadata $where"; - $result = PMA_DBI_query($query); +// if record exists + if ($data = PMA_DBI_fetch_assoc($result)) { + $where = "WHERE Repository_id=" . $data['Repository_id'] . " AND Repo_blob_offset=" . $data['Repo_blob_offset'] ; + $query = "SELECT name from pbms_metadata $where"; + $result = PMA_DBI_query($query); - if (PMA_DBI_num_rows($result) == 0) - $query = "INSERT into pbms_metadata Values( ". $data['Repository_id'] . ", " . $data['Repo_blob_offset'] . ", 'Content_type', '" . PMA_sqlAddslashes($contentType) . "')"; - else - $query = "UPDATE pbms_metadata SET name = 'Content_type', Value = '" . PMA_sqlAddslashes($contentType) . "' $where"; - + if (PMA_DBI_num_rows($result) == 0) { + $query = "INSERT into pbms_metadata Values( ". $data['Repository_id'] . ", " . $data['Repo_blob_offset'] . ", 'Content_type', '" . PMA_sqlAddslashes($contentType) . "')"; + } else { + $query = "UPDATE pbms_metadata SET name = 'Content_type', Value = '" . PMA_sqlAddslashes($contentType) . "' $where"; + } //error_log("$query\n", 3, "/tmp/mylog"); - PMA_DBI_query($query); - - - } else { -// if ($result == FALSE) { -// $err = PMA_DBI_getError(); -// error_log("MySQL ERROR: $err\n", 3, "/tmp/mylog"); -// } else -// error_log("No results: $query\n", 3, "/tmp/mylog"); - return FALSE; - } - - return TRUE; + PMA_DBI_query($query); + } else { + return FALSE; + } + return TRUE; } //------------ function PMA_BS_IsHiddenTable($table) { - switch ($table) { - case 'pbms_repository' : - case 'pbms_reference' : - case 'pbms_metadata' : - case 'pbms_metadata_header' : - case 'pbms_dump' : - return TRUE; - } - - return FALSE; + switch ($table) { + case 'pbms_repository' : + case 'pbms_reference' : + case 'pbms_metadata' : + case 'pbms_metadata_header' : + case 'pbms_dump' : + return TRUE; + } + return FALSE; } //------------ function PMA_BS_getURL($reference) { - // load PMA configuration - $PMA_Config = $GLOBALS['PMA_Config']; - if (empty($PMA_Config)) - return FALSE; + // load PMA configuration + $PMA_Config = $GLOBALS['PMA_Config']; + if (empty($PMA_Config)) { + return FALSE; + } - // retrieve BS server variables from PMA configuration - $bs_server = $PMA_Config->get('BLOBSTREAMING_SERVER'); - if (empty($bs_server)) - return FALSE; + // retrieve BS server variables from PMA configuration + $bs_server = $PMA_Config->get('BLOBSTREAMING_SERVER'); + if (empty($bs_server)) { + return FALSE; + } - $bs_url = 'http://' . $bs_server . '/' . rtrim($reference); -//PMA_showMessage(" PMA_BS_getURL($reference): $bs_url"); - return $bs_url; - + $bs_url = 'http://' . $bs_server . '/' . rtrim($reference); + return $bs_url; } - ?> diff --git a/libraries/common.inc.php b/libraries/common.inc.php index 971619850..d1a6d948f 100644 --- a/libraries/common.inc.php +++ b/libraries/common.inc.php @@ -788,7 +788,7 @@ if (! defined('PMA_MINIMUM_COMMON')) { $_SESSION['PMA_Theme_Manager']->setThemeCookie(); - if (! empty($cfg['Server'])) { + if (! empty($cfg['Server'])) { /** * Loads the proper database interface for this server @@ -953,7 +953,7 @@ if (! defined('PMA_MINIMUM_COMMON')) { // checks for blobstreaming plugins and databases that support // blobstreaming (by having the necessary tables for blobstreaming) checkBLOBStreamingPlugins(); - + } // end if !defined('PMA_MINIMUM_COMMON') // remove sensitive values from session diff --git a/libraries/common.lib.php b/libraries/common.lib.php index 672afc34d..1010b2c8c 100644 --- a/libraries/common.lib.php +++ b/libraries/common.lib.php @@ -654,19 +654,19 @@ function PMA_mysqlDie($error_message = '', $the_query = '', $back_url .= '?no_history=true'; } - $_SESSION['Import_message']['go_back_url'] = $back_url; + $_SESSION['Import_message']['go_back_url'] = $back_url; $error_msg_output .= '
'; $error_msg_output .= '[ ' . __('Back') . ' ]'; $error_msg_output .= '
' . "\n\n"; - } + } - echo $error_msg_output; - /** - * display footer and exit - */ + echo $error_msg_output; + /** + * display footer and exit + */ - require_once './libraries/footer.inc.php'; + require_once './libraries/footer.inc.php'; } else { echo $error_msg_output; } @@ -793,10 +793,9 @@ function PMA_getTableList($db, $tables = null, $limit_offset = 0, $limit_count = foreach ($tables as $table_name => $table) { // if BS tables exist - if (PMA_BS_IsHiddenTable($table_name)) { - continue; - } - + if (PMA_BS_IsHiddenTable($table_name)) { + continue; + } // check for correct row count if (null === $table['Rows']) { diff --git a/libraries/core.lib.php b/libraries/core.lib.php index c2cdc5ff0..dcbf1778b 100644 --- a/libraries/core.lib.php +++ b/libraries/core.lib.php @@ -311,10 +311,11 @@ function PMA_getTableCount($db) $num_tables = PMA_DBI_num_rows($tables); // do not count hidden blobstreaming tables - while ((($num_tables > 0)) && $data = PMA_DBI_fetch_assoc($tables)) { - if (PMA_BS_IsHiddenTable($data['Tables_in_' . $db])) - $num_tables--; - } + while ((($num_tables > 0)) && $data = PMA_DBI_fetch_assoc($tables)) { + if (PMA_BS_IsHiddenTable($data['Tables_in_' . $db])) { + $num_tables--; + } + } PMA_DBI_free_result($tables); } else { diff --git a/libraries/display_tbl.lib.php b/libraries/display_tbl.lib.php index 2df652f13..a435e3b90 100644 --- a/libraries/display_tbl.lib.php +++ b/libraries/display_tbl.lib.php @@ -1285,10 +1285,9 @@ function PMA_displayTableBody(&$dt_result, &$is_display, $map, $analyzed_sql) { $vertical_display['data'][$row_no][$i] = ' NULL' . "\n"; } else { // for blobstreaming - - // if valid BS reference exists - if (PMA_BS_IsPBMSReference($row[$i], $db)) { - $blobtext = PMA_BS_CreateReferenceLink($row[$i], $db); + // if valid BS reference exists + if (PMA_BS_IsPBMSReference($row[$i], $db)) { + $blobtext = PMA_BS_CreateReferenceLink($row[$i], $db); } else { $blobtext = PMA_handle_non_printable_contents('BLOB', (isset($row[$i]) ? $row[$i] : ''), $transform_function, $transform_options, $default_function, $meta, $_url_params); } @@ -1340,9 +1339,8 @@ function PMA_displayTableBody(&$dt_result, &$is_display, $map, $analyzed_sql) { // user asked to see the real contents of BINARY // fields if ($_SESSION['tmp_user_values']['display_binary_as_hex'] && PMA_contains_nonprintable_ascii($row[$i])) { - $row[$i] = bin2hex($row[$i]); - } - else { + $row[$i] = bin2hex($row[$i]); + } else { $row[$i] = htmlspecialchars(PMA_replace_binary_contents($row[$i])); } } else { @@ -1696,7 +1694,7 @@ function PMA_displayTable_checkConfigParams() } else { // display_binary_as_hex config option if (isset($GLOBALS['cfg']['DisplayBinaryAsHex']) && true === $GLOBALS['cfg']['DisplayBinaryAsHex']) { - $_SESSION['tmp_user_values']['query'][$sql_md5]['display_binary_as_hex'] = true; + $_SESSION['tmp_user_values']['query'][$sql_md5]['display_binary_as_hex'] = true; } } diff --git a/libraries/engines/pbms.lib.php b/libraries/engines/pbms.lib.php index af403ca6e..2a51c92d4 100644 --- a/libraries/engines/pbms.lib.php +++ b/libraries/engines/pbms.lib.php @@ -18,12 +18,12 @@ class PMA_StorageEngine_pbms extends PMA_StorageEngine */ function engine_init() { - $this->engine = "PBMS"; - $this->title = "PrimeBase Media Streaming Daemon"; - $this->comment = "Provides BLOB streaming service for storage engines,"; - $this->support = PMA_ENGINE_SUPPORT_YES; - } - + $this->engine = "PBMS"; + $this->title = "PrimeBase Media Streaming Daemon"; + $this->comment = "Provides BLOB streaming service for storage engines,"; + $this->support = PMA_ENGINE_SUPPORT_YES; + } + function getVariables() { return array( @@ -64,16 +64,16 @@ class PMA_StorageEngine_pbms extends PMA_StorageEngine ), ); } - - //-------------------- - function getInfoPages() + + //-------------------- + function getInfoPages() { $pages = array(); - $pages['Documentation'] = __('Documentation'); + $pages['Documentation'] = __('Documentation'); return $pages; } - //-------------------- + //-------------------- function getPage($id) { if (! array_key_exists($id, $this->getInfoPages())) { @@ -87,27 +87,27 @@ class PMA_StorageEngine_pbms extends PMA_StorageEngine function getPageConfigure() { - } + } function getPageDocumentation() { - $output = '

Documentation and furtther information about PBMS can be found on ' . "\n" - . 'The PrimeBase Media Streaming home page.

' . "\n" - . '' . "\n" + $output = '

Documentation and further information about PBMS can be found on ' . "\n" + . 'The PrimeBase Media Streaming home page.

' . "\n" + . '

' . "\n" . '' . "\n" - . '' . "\n" - . '' . "\n" - . '' . "\n"; + . '' . "\n" + . '

' . "\n" + . 'Related Links' . "\n" + . '
' . "\n" + . 'The PrimeBase Media Streaming Blog by Barry Leslie

' . "\n" + . 'PrimeBase XT Home Page

' . "\n" + . '' . "\n" + . '' . "\n" + . '' . "\n" + . '' . "\n"; - return $output; - } + return $output; + } } ?> diff --git a/libraries/engines/pbxt.lib.php b/libraries/engines/pbxt.lib.php index 724369936..fbc6ce68a 100644 --- a/libraries/engines/pbxt.lib.php +++ b/libraries/engines/pbxt.lib.php @@ -98,16 +98,16 @@ class PMA_StorageEngine_pbxt extends PMA_StorageEngine } return PMA_formatByteDown($value); } - - //-------------------- - function getInfoPages() + + //-------------------- + function getInfoPages() { $pages = array(); - $pages['Documentation'] = __('Documentation'); + $pages['Documentation'] = __('Documentation'); return $pages; } - //-------------------- + //-------------------- function getPage($id) { if (! array_key_exists($id, $this->getInfoPages())) { @@ -121,23 +121,23 @@ class PMA_StorageEngine_pbxt extends PMA_StorageEngine function getPageDocumentation() { - $output = '

Documentation and furtther information about PBXT can be found on the ' . "\n" - . 'PrimeBase XT Home Page.

' . "\n" - . '' . "\n" - . '' . "\n" - . '' . "\n" - . '' . "\n" - . '' . "\n"; + $output = '

Documentation and further information about PBXT can be found on the ' . "\n" + . 'PrimeBase XT Home Page.

' . "\n" + . '' . "\n" + . '' . "\n" + . '' . "\n" + . '' . "\n" + . '' . "\n"; - return $output; - } + return $output; + } } ?> diff --git a/server_engines.php b/server_engines.php index 2179f5fe8..5ef4e6fbe 100644 --- a/server_engines.php +++ b/server_engines.php @@ -1,9 +1,8 @@ get('BLOBSTREAMING_PLUGINS_EXIST')) { - // Special case for PBMS daemon which is not listed as an engine - echo '' . "\n" - . ' ' . "\n" - . ' ' . "PBMS\n" - . ' ' . "\n" - . ' ' . htmlspecialchars("PrimeBase MediaStream (PBMS) daemon") . '' . "\n" - . '' . "\n"; - } - + $PMA_Config = $GLOBALS['PMA_Config']; + if ($PMA_Config->get('BLOBSTREAMING_PLUGINS_EXIST')) { + // Special case for PBMS daemon which is not listed as an engine + echo '' . "\n" + . ' ' . "\n" + . ' ' . "PBMS\n" + . ' ' . "\n" + . ' ' . htmlspecialchars("PrimeBase MediaStream (PBMS) daemon") . '' . "\n" + . '' . "\n"; + } + unset($odd_row, $engine, $details); echo '' . "\n" . '' . "\n"; diff --git a/tbl_change.php b/tbl_change.php index 8cde1b2c9..d8486ba3c 100644 --- a/tbl_change.php +++ b/tbl_change.php @@ -456,17 +456,17 @@ foreach ($rows as $row_id => $vrow) { } else { // special binary "characters" if ($field['is_binary'] || ($field['is_blob'] && ! $cfg['ProtectBinary'])) { - if ($_SESSION['tmp_user_values']['display_binary_as_hex'] && $cfg['ShowFunctionFields']) { - $vrow[$field['Field']] = bin2hex($vrow[$field['Field']]); - $field['display_binary_as_hex'] = true; - } else { - $vrow[$field['Field']] = PMA_replace_binary_contents($vrow[$field['Field']]); - } + if ($_SESSION['tmp_user_values']['display_binary_as_hex'] && $cfg['ShowFunctionFields']) { + $vrow[$field['Field']] = bin2hex($vrow[$field['Field']]); + $field['display_binary_as_hex'] = true; + } else { + $vrow[$field['Field']] = PMA_replace_binary_contents($vrow[$field['Field']]); + } } // end if $special_chars = htmlspecialchars($vrow[$field['Field']]); - //We need to duplicate the first \n or otherwise we will lose the first newline entered in a VARCHAR or TEXT column - $special_chars_encoded = PMA_duplicateFirstNewline($special_chars); + //We need to duplicate the first \n or otherwise we will lose the first newline entered in a VARCHAR or TEXT column + $special_chars_encoded = PMA_duplicateFirstNewline($special_chars); $data = $vrow[$field['Field']]; } // end if... else... @@ -562,9 +562,9 @@ foreach ($rows as $row_id => $vrow) { } // this is set only when appropriate and is always true - if (isset($field['display_binary_as_hex'])) { - $default_function = 'UNHEX'; - } + if (isset($field['display_binary_as_hex'])) { + $default_function = 'UNHEX'; + } // loop on the dropdown array and print all available options for that field. foreach ($dropdown as $each_dropdown){ @@ -834,7 +834,7 @@ foreach ($rows as $row_id => $vrow) { || ($cfg['ProtectBinary'] == 'all' && $field['is_binary'])) { echo "\n"; // for blobstreaming - if (PMA_BS_IsTablePBMSEnabled($db, $table, $tbl_type) && PMA_BS_IsPBMSReference($data, $db)) + if (PMA_BS_IsTablePBMSEnabled($db, $table, $tbl_type) && PMA_BS_IsPBMSReference($data, $db)) { echo ''; echo ' ' . __('Remove BLOB Repository Reference') . "
"; @@ -889,10 +889,9 @@ foreach ($rows as $row_id => $vrow) { if ($is_upload && $field['is_blob']) { // check if field type is of longblob and if the table is PBMS enabled. - if (($field['pma_type'] == "longblob") && PMA_BS_IsTablePBMSEnabled($db_name, $tbl_name, $tbl_type)) - { - echo '
'; - echo ' ' . __('Upload to BLOB repository'); + if (($field['pma_type'] == "longblob") && PMA_BS_IsTablePBMSEnabled($db_name, $tbl_name, $tbl_type)) { + echo '
'; + echo ' ' . __('Upload to BLOB repository'); } echo '
'; From ec9a60f8e09463ea34cdd11849b4c2357c4351e5 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Thu, 22 Jul 2010 13:22:30 -0400 Subject: [PATCH 006/212] undefined variables; unneeded config variables --- config.sample.inc.php | 6 ------ libraries/config.default.php | 6 ------ tbl_change.php | 2 +- 3 files changed, 1 insertion(+), 13 deletions(-) diff --git a/config.sample.inc.php b/config.sample.inc.php index 575e96562..679555bca 100644 --- a/config.sample.inc.php +++ b/config.sample.inc.php @@ -35,12 +35,6 @@ $cfg['Servers'][$i]['compress'] = false; $cfg['Servers'][$i]['extension'] = 'mysql'; $cfg['Servers'][$i]['AllowNoPassword'] = false; -/* for blobstreaming */ -$cfg['Servers'][$i]['bs_garbage_threshold'] = 50; -$cfg['Servers'][$i]['bs_repository_threshold'] = '32M'; -$cfg['Servers'][$i]['bs_temp_blob_timeout'] = 600; -$cfg['Servers'][$i]['bs_temp_log_threshold'] = '32M'; - /* User for advanced features */ // $cfg['Servers'][$i]['controluser'] = 'pma'; // $cfg['Servers'][$i]['controlpass'] = 'pmapass'; diff --git a/libraries/config.default.php b/libraries/config.default.php index 7ec7c5dc5..28aa85e3b 100644 --- a/libraries/config.default.php +++ b/libraries/config.default.php @@ -137,12 +137,6 @@ $cfg['Servers'][$i]['connect_type'] = 'tcp'; */ $cfg['Servers'][$i]['extension'] = 'mysql'; -/* added for blobstreaming */ -$cfg['Servers'][$i]['bs_garbage_threshold'] = ''; -$cfg['Servers'][$i]['bs_repository_threshold'] = ''; -$cfg['Servers'][$i]['bs_temp_blob_timeout'] = ''; -$cfg['Servers'][$i]['bs_temp_log_threshold'] = ''; - /** * Use compressed protocol for the MySQL connection (requires PHP >= 4.3.0) * diff --git a/tbl_change.php b/tbl_change.php index d8486ba3c..704cdc13a 100644 --- a/tbl_change.php +++ b/tbl_change.php @@ -889,7 +889,7 @@ foreach ($rows as $row_id => $vrow) { if ($is_upload && $field['is_blob']) { // check if field type is of longblob and if the table is PBMS enabled. - if (($field['pma_type'] == "longblob") && PMA_BS_IsTablePBMSEnabled($db_name, $tbl_name, $tbl_type)) { + if (($field['pma_type'] == "longblob") && PMA_BS_IsTablePBMSEnabled($db, $table, $tbl_type)) { echo '
'; echo ' ' . __('Upload to BLOB repository'); } From 362aa516ac7b4b384e9cfb5d7aa7683b6b38515d Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Thu, 22 Jul 2010 14:10:58 -0400 Subject: [PATCH 007/212] undefined $primary_field --- libraries/blobstreaming.lib.php | 31 +++++++++++++++++++++++++++++++ tbl_replace.php | 4 ++++ 2 files changed, 35 insertions(+) diff --git a/libraries/blobstreaming.lib.php b/libraries/blobstreaming.lib.php index abbe04735..5403e7699 100644 --- a/libraries/blobstreaming.lib.php +++ b/libraries/blobstreaming.lib.php @@ -473,4 +473,35 @@ function PMA_BS_getURL($reference) $bs_url = 'http://' . $bs_server . '/' . rtrim($reference); return $bs_url; } + +/** + * returns the field name for a primary key of a given table in a given database + * + * @access public + * @param string - database name + * @param string - table name + * @uses PMA_DBI_select_db() + * @uses PMA_backquote() + * @uses PMA_DBI_query() + * @uses PMA_DBI_fetch_assoc() + * @return string - field name for primary key +*/ +function PMA_BS_GetPrimaryField($db_name, $tbl_name) +{ + // select specified database + PMA_DBI_select_db($db_name); + + // retrieve table fields + $query = "SHOW FULL FIELDS FROM " . PMA_backquote($tbl_name); + $result = PMA_DBI_query($query); + + // while there are records to parse + while ($data = PMA_DBI_fetch_assoc($result)) { + if ("PRI" == $data['Key']) { + return $data['Field']; + } + } + // return NULL on no primary key + return NULL; +} ?> diff --git a/tbl_replace.php b/tbl_replace.php index 48b98c155..d3271acb1 100644 --- a/tbl_replace.php +++ b/tbl_replace.php @@ -210,6 +210,10 @@ foreach ($loop_array as $rowcount => $where_clause) { ? $_REQUEST['auto_increment']['multi_edit'][$rowcount] : null; + if ($blob_streaming_active) { + $primary_field = PMA_BS_GetPrimaryField($GLOBALS['db'], $GLOBALS['table']); + } + // Fetch the current values of a row to use in case we have a protected field // @todo possibly move to ./libraries/tbl_replace_fields.inc.php if ($is_insert && $using_key && isset($me_fields_type) && is_array($me_fields_type) && isset($where_clause)) { From ab2e4e925ed3a5245d3c9d89462831bd735bd3c9 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Thu, 22 Jul 2010 14:37:42 -0400 Subject: [PATCH 008/212] correct insertion of BLOB field reference --- tbl_replace.php | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/tbl_replace.php b/tbl_replace.php index d3271acb1..bcf64af89 100644 --- a/tbl_replace.php +++ b/tbl_replace.php @@ -231,21 +231,21 @@ foreach ($loop_array as $rowcount => $where_clause) { $upload_blob_repo = isset($_REQUEST['upload_blob_repo_' . $key]) ? $_REQUEST['upload_blob_repo_' . $key] : NULL; // checks if an existing blob repository reference should be removed - if (isset($remove_blob_repo) && !isset($upload_blob_repo)) { + if (isset($remove_blob_repo) && ! isset($upload_blob_repo)) { $remove_blob_reference = $_REQUEST['remove_blob_ref_' . $key]; if (isset($remove_blob_reference)) { $val = "''"; } + } - // checks if this field requires a bs reference attached to it - if (isset($upload_blob_repo)) { - // get the most recent BLOB reference - $bs_reference = PMA_File::getRecentBLOBReference(); + // checks if this field requires a bs reference attached to it + if (isset($upload_blob_repo)) { + // get the most recent BLOB reference + $bs_reference = PMA_File::getRecentBLOBReference(); - // if the most recent BLOB reference exists, set it as a field value - if (!is_null($bs_reference)) { - $val = "'" . PMA_sqlAddslashes($bs_reference) . "'"; - } + // if the most recent BLOB reference exists, set it as a field value + if (!is_null($bs_reference)) { + $val = "'" . PMA_sqlAddslashes($bs_reference) . "'"; } } } From 74e7c4342a8691b16278145addb7e5216bd4a5e3 Mon Sep 17 00:00:00 2001 From: gheni Date: Fri, 23 Jul 2010 07:18:04 +0200 Subject: [PATCH 009/212] Translation update done using Pootle. --- po/ug.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/ug.po b/po/ug.po index 1e12f2baa..02217cc72 100644 --- a/po/ug.po +++ b/po/ug.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-21 13:53+0200\n" -"PO-Revision-Date: 2010-07-22 12:44+0200\n" +"PO-Revision-Date: 2010-07-23 07:18+0200\n" "Last-Translator: \n" "Language-Team: Uyghur \n" "Language: ug\n" @@ -823,6 +823,8 @@ msgid "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." msgstr "" +"You attempted to load file with unsupported compression (%s). Either support " +"for it is not implemented or disabled by your configuration." #: import.php:336 msgid "" From 0c6c2bf4cb4d41fda71950272bb6ea09b000f3dc Mon Sep 17 00:00:00 2001 From: gheni Date: Fri, 23 Jul 2010 07:19:13 +0200 Subject: [PATCH 010/212] Translation update done using Pootle. --- po/ug.po | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/po/ug.po b/po/ug.po index 02217cc72..280e0348d 100644 --- a/po/ug.po +++ b/po/ug.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-21 13:53+0200\n" -"PO-Revision-Date: 2010-07-23 07:18+0200\n" +"PO-Revision-Date: 2010-07-23 07:19+0200\n" "Last-Translator: \n" "Language-Team: Uyghur \n" "Language: ug\n" @@ -832,6 +832,9 @@ msgid "" "file size exceeded the maximum size permitted by your PHP configuration. See " "[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." msgstr "" +"No data was received to import. Either no file name was submitted, or the " +"file size exceeded the maximum size permitted by your PHP configuration. See " +"[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." #: import.php:371 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" From f5eacc549ab98c49735e03e792fd14b87f54084d Mon Sep 17 00:00:00 2001 From: gheni Date: Fri, 23 Jul 2010 07:20:14 +0200 Subject: [PATCH 011/212] Translation update done using Pootle. --- po/ug.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/ug.po b/po/ug.po index 280e0348d..c0e15575a 100644 --- a/po/ug.po +++ b/po/ug.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-21 13:53+0200\n" -"PO-Revision-Date: 2010-07-23 07:19+0200\n" +"PO-Revision-Date: 2010-07-23 07:20+0200\n" "Last-Translator: \n" "Language-Team: Uyghur \n" "Language: ug\n" @@ -863,6 +863,8 @@ msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" +"Script timeout passed, if you want to finish import, please resubmit same " +"file and import will resume." #: import.php:425 msgid "" From 47f2564ca498304a68e4c4fc1bcb18424f7afe17 Mon Sep 17 00:00:00 2001 From: gheni Date: Fri, 23 Jul 2010 07:20:37 +0200 Subject: [PATCH 012/212] Translation update done using Pootle. --- po/ug.po | 2 ++ 1 file changed, 2 insertions(+) diff --git a/po/ug.po b/po/ug.po index c0e15575a..b30dbc2ea 100644 --- a/po/ug.po +++ b/po/ug.po @@ -871,6 +871,8 @@ msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." msgstr "" +"However on last run no data has been parsed, this usually means phpMyAdmin " +"won't be able to finish this import unless you increase php time limits." #: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:240 #: user_password.php:110 From c6609cb6af4a04466783a097be2499db0713fefd Mon Sep 17 00:00:00 2001 From: gheni Date: Fri, 23 Jul 2010 07:23:55 +0200 Subject: [PATCH 013/212] Translation update done using Pootle. --- po/ug.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ug.po b/po/ug.po index b30dbc2ea..408194cce 100644 --- a/po/ug.po +++ b/po/ug.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-21 13:53+0200\n" -"PO-Revision-Date: 2010-07-23 07:20+0200\n" +"PO-Revision-Date: 2010-07-23 07:23+0200\n" "Last-Translator: \n" "Language-Team: Uyghur \n" "Language: ug\n" @@ -881,7 +881,7 @@ msgstr "قايتىش" #: index.php:188 msgid "phpMyAdmin is more friendly with a frames-capable browser." -msgstr "" +msgstr "phpMyAdmin دەستەك توركۆرگۈچلەردە ياخشى ئىشلەيدۇ." #: js/messages.php:25 server_synchronize.php:344 server_synchronize.php:356 #: server_synchronize.php:372 server_synchronize.php:379 From 97d85e9068c9c2d4f3474c91150a760e6d5c1d6e Mon Sep 17 00:00:00 2001 From: gheni Date: Fri, 23 Jul 2010 07:25:25 +0200 Subject: [PATCH 014/212] Translation update done using Pootle. --- po/ug.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ug.po b/po/ug.po index 408194cce..2f5d6338a 100644 --- a/po/ug.po +++ b/po/ug.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-21 13:53+0200\n" -"PO-Revision-Date: 2010-07-23 07:23+0200\n" +"PO-Revision-Date: 2010-07-23 07:25+0200\n" "Last-Translator: \n" "Language-Team: Uyghur \n" "Language: ug\n" @@ -913,7 +913,7 @@ msgstr "سىز BLOB ئامبىرنى توقتاتماقچى!" #: js/messages.php:35 #, php-format msgid "Are you sure you want to disable all BLOB references for database %s?" -msgstr "" +msgstr "سىز ھەقىقەتەن %s ئۈستىدىكى BLOB ئىقتىدارىنى تاقىماقچىمۇ؟" #: js/messages.php:38 msgid "Missing value in the form!" From 9272636d4bc5bf69a10f21b358061ac1e6cd26a5 Mon Sep 17 00:00:00 2001 From: gheni Date: Fri, 23 Jul 2010 07:26:14 +0200 Subject: [PATCH 015/212] Translation update done using Pootle. --- po/ug.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ug.po b/po/ug.po index 2f5d6338a..b05c3b1e9 100644 --- a/po/ug.po +++ b/po/ug.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-21 13:53+0200\n" -"PO-Revision-Date: 2010-07-23 07:25+0200\n" +"PO-Revision-Date: 2010-07-23 07:26+0200\n" "Last-Translator: \n" "Language-Team: Uyghur \n" "Language: ug\n" @@ -969,7 +969,7 @@ msgstr "!خاتالىق:بۇناسىۋەت ئاللىقاچان مەۋجۈت" #: js/messages.php:58 msgid "Error saving coordinates for Designer." -msgstr "" +msgstr "ساقلاشتا خاتالىق كۆرۈلدى." #: js/messages.php:59 libraries/relation.lib.php:94 #: libraries/relation.lib.php:106 From 7b7fbc8c2940d1ee90700b81059751e3a9a0b472 Mon Sep 17 00:00:00 2001 From: gheni Date: Fri, 23 Jul 2010 07:27:33 +0200 Subject: [PATCH 016/212] Translation update done using Pootle. --- po/ug.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/ug.po b/po/ug.po index b05c3b1e9..26df70dbb 100644 --- a/po/ug.po +++ b/po/ug.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-21 13:53+0200\n" -"PO-Revision-Date: 2010-07-23 07:26+0200\n" +"PO-Revision-Date: 2010-07-23 07:27+0200\n" "Last-Translator: \n" "Language-Team: Uyghur \n" "Language: ug\n" @@ -1265,6 +1265,8 @@ msgstr "ھۆججەت يۈكلەشتە ئېنىقسىز خاتالىق كۆرۈل #: libraries/File.class.php:406 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" +"سىز يۈكلىگەن ھۆججەت php.ini نىڭ ئىچىدىكى upload_max_filesize چەكلىمىسىدىن " +"ئېشىپ كەتتى." #: libraries/File.class.php:409 msgid "" From 575242f812f9f0b10298ecd522a787dc18cb5c5f Mon Sep 17 00:00:00 2001 From: gheni Date: Fri, 23 Jul 2010 07:30:19 +0200 Subject: [PATCH 017/212] Translation update done using Pootle. --- po/ug.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ug.po b/po/ug.po index 26df70dbb..58f1c0485 100644 --- a/po/ug.po +++ b/po/ug.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-21 13:53+0200\n" -"PO-Revision-Date: 2010-07-23 07:27+0200\n" +"PO-Revision-Date: 2010-07-23 07:30+0200\n" "Last-Translator: \n" "Language-Team: Uyghur \n" "Language: ug\n" @@ -1272,7 +1272,7 @@ msgstr "" msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." -msgstr "" +msgstr "سز يۈكلىگەن ھۆججەت HTML نىڭ MAX_FILE_SIZE چېكىدىن ئېشىپ كەتتى." #: libraries/File.class.php:412 msgid "The uploaded file was only partially uploaded." From b7d3df431de015fede89790575bfa68dbeb93e61 Mon Sep 17 00:00:00 2001 From: gheni Date: Fri, 23 Jul 2010 07:31:27 +0200 Subject: [PATCH 018/212] Translation update done using Pootle. --- po/ug.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ug.po b/po/ug.po index 58f1c0485..2c3c7426b 100644 --- a/po/ug.po +++ b/po/ug.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-21 13:53+0200\n" -"PO-Revision-Date: 2010-07-23 07:30+0200\n" +"PO-Revision-Date: 2010-07-23 07:31+0200\n" "Last-Translator: \n" "Language-Team: Uyghur \n" "Language: ug\n" @@ -1276,7 +1276,7 @@ msgstr "سز يۈكلىگەن ھۆججەت HTML نىڭ MAX_FILE_SIZE چېكىد #: libraries/File.class.php:412 msgid "The uploaded file was only partially uploaded." -msgstr "" +msgstr "سىز يۈكلىگەن ھۆججەتنىڭ پەقەت بىر قىسىمىلا يۈكلەندى." #: libraries/File.class.php:415 msgid "Missing a temporary folder." From 9e5215ec07d4fda7f4d445f4878eac958dfeb3b8 Mon Sep 17 00:00:00 2001 From: gheni Date: Fri, 23 Jul 2010 07:34:26 +0200 Subject: [PATCH 019/212] Translation update done using Pootle. --- po/ug.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ug.po b/po/ug.po index 2c3c7426b..9bd0558df 100644 --- a/po/ug.po +++ b/po/ug.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-21 13:53+0200\n" -"PO-Revision-Date: 2010-07-23 07:31+0200\n" +"PO-Revision-Date: 2010-07-23 07:34+0200\n" "Last-Translator: \n" "Language-Team: Uyghur \n" "Language: ug\n" @@ -1288,7 +1288,7 @@ msgstr "ھۆججەتنى دېسكىغا يىزىشتا خاتالىق كۆرۈل #: libraries/File.class.php:421 msgid "File upload stopped by extension." -msgstr "" +msgstr "كېڭەيتىلمە ئىسمى بۇنداق ھۆججەتلەرنى يوللاشقا بولمايدۇ." #: libraries/File.class.php:898 msgid "" From 6f7556f8b30c7a0bb5946986e462d9ca5989569f Mon Sep 17 00:00:00 2001 From: gheni Date: Fri, 23 Jul 2010 07:35:38 +0200 Subject: [PATCH 020/212] Translation update done using Pootle. --- po/ug.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/ug.po b/po/ug.po index 9bd0558df..7e0b3087c 100644 --- a/po/ug.po +++ b/po/ug.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-21 13:53+0200\n" -"PO-Revision-Date: 2010-07-23 07:34+0200\n" +"PO-Revision-Date: 2010-07-23 07:35+0200\n" "Last-Translator: \n" "Language-Team: Uyghur \n" "Language: ug\n" @@ -1295,6 +1295,8 @@ 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:427 tbl_relation.php:528 msgid "No index defined!" From 7741f1c0a88a43aebaf684b8027958690c6226d5 Mon Sep 17 00:00:00 2001 From: gheni Date: Fri, 23 Jul 2010 07:41:09 +0200 Subject: [PATCH 021/212] Translation update done using Pootle. --- po/ug.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ug.po b/po/ug.po index 7e0b3087c..168b7545b 100644 --- a/po/ug.po +++ b/po/ug.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-21 13:53+0200\n" -"PO-Revision-Date: 2010-07-23 07:35+0200\n" +"PO-Revision-Date: 2010-07-23 07:41+0200\n" "Last-Translator: \n" "Language-Team: Uyghur \n" "Language: ug\n" @@ -1386,7 +1386,7 @@ msgstr[1] "" #: libraries/StorageEngine.class.php:196 msgid "" "There is no detailed status information available for this storage engine." -msgstr "" +msgstr "بۇ ساقلىغۇچقا مۇناسىۋەتلىك باشقا ئۇچۇرلار مەۋجۇت ئەمەس." #: libraries/StorageEngine.class.php:352 #, php-format From 9cdc5b804ca2f64d85a32fc3301796c7a2357740 Mon Sep 17 00:00:00 2001 From: gheni Date: Fri, 23 Jul 2010 07:43:23 +0200 Subject: [PATCH 022/212] Translation update done using Pootle. --- po/ug.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ug.po b/po/ug.po index 168b7545b..eeb9611e0 100644 --- a/po/ug.po +++ b/po/ug.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-21 13:53+0200\n" -"PO-Revision-Date: 2010-07-23 07:41+0200\n" +"PO-Revision-Date: 2010-07-23 07:43+0200\n" "Last-Translator: \n" "Language-Team: Uyghur \n" "Language: ug\n" @@ -1391,7 +1391,7 @@ msgstr "بۇ ساقلىغۇچقا مۇناسىۋەتلىك باشقا ئۇچۇر #: libraries/StorageEngine.class.php:352 #, php-format msgid "%s is available on this MySQL server." -msgstr "" +msgstr "%s نى بۇ MySQL مۇلازىمىتېرىدا ئىشلىتىشكە بولىدۇ." #: libraries/StorageEngine.class.php:355 #, php-format From 22f3952b5717e6cc6cd54bf9ef58236052adf308 Mon Sep 17 00:00:00 2001 From: gheni Date: Fri, 23 Jul 2010 07:56:38 +0200 Subject: [PATCH 023/212] Translation update done using Pootle. --- po/ug.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ug.po b/po/ug.po index eeb9611e0..c4bd35248 100644 --- a/po/ug.po +++ b/po/ug.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-21 13:53+0200\n" -"PO-Revision-Date: 2010-07-23 07:43+0200\n" +"PO-Revision-Date: 2010-07-23 07:56+0200\n" "Last-Translator: \n" "Language-Team: Uyghur \n" "Language: ug\n" @@ -1396,7 +1396,7 @@ msgstr "%s نى بۇ MySQL مۇلازىمىتېرىدا ئىشلىتىشكە ب #: libraries/StorageEngine.class.php:355 #, php-format msgid "%s has been disabled for this MySQL server." -msgstr "" +msgstr "%s نى بۇ MySQL مۇلازىمىتېرىدا ئىشلىتىشكە بولمايدۇ." #: libraries/StorageEngine.class.php:359 #, php-format From bffcffc3fde04da000229f399288c68da15de27a Mon Sep 17 00:00:00 2001 From: gheni Date: Fri, 23 Jul 2010 07:59:18 +0200 Subject: [PATCH 024/212] Translation update done using Pootle. --- po/ug.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ug.po b/po/ug.po index c4bd35248..e4478a748 100644 --- a/po/ug.po +++ b/po/ug.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-21 13:53+0200\n" -"PO-Revision-Date: 2010-07-23 07:56+0200\n" +"PO-Revision-Date: 2010-07-23 07:59+0200\n" "Last-Translator: \n" "Language-Team: Uyghur \n" "Language: ug\n" @@ -1401,7 +1401,7 @@ msgstr "%s نى بۇ MySQL مۇلازىمىتېرىدا ئىشلىتىشكە ب #: libraries/StorageEngine.class.php:359 #, php-format msgid "This MySQL server does not support the %s storage engine." -msgstr "" +msgstr "بۇ MySQL مۇلازىمىتېرى %s نى قوللىمايدۇ." #: libraries/Table.class.php:1018 msgid "Invalid database" From 2b7d0f2ed7d8fca6b29783dfa1aa264318b29ea3 Mon Sep 17 00:00:00 2001 From: gheni Date: Fri, 23 Jul 2010 08:00:13 +0200 Subject: [PATCH 025/212] Translation update done using Pootle. --- po/ug.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ug.po b/po/ug.po index e4478a748..1e24821b6 100644 --- a/po/ug.po +++ b/po/ug.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-21 13:53+0200\n" -"PO-Revision-Date: 2010-07-23 07:59+0200\n" +"PO-Revision-Date: 2010-07-23 08:00+0200\n" "Last-Translator: \n" "Language-Team: Uyghur \n" "Language: ug\n" @@ -1414,7 +1414,7 @@ msgstr "ئۈنۈمسىز جەدۋەل ئىسمى" #: libraries/Table.class.php:1047 #, php-format msgid "Error renaming table %1$s to %2$s" -msgstr "" +msgstr "%1$s بۇ جەدۋەل ئىسمىنى %2$s غا ئۆزگەرتىشتە خاتالىق كۆرۈلدى." #: libraries/Table.class.php:1131 #, php-format From e02935a1d5ad5090434ff6a258d367814832a1df Mon Sep 17 00:00:00 2001 From: gheni Date: Fri, 23 Jul 2010 08:08:12 +0200 Subject: [PATCH 026/212] Translation update done using Pootle. --- po/ug.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ug.po b/po/ug.po index 1e24821b6..db747c548 100644 --- a/po/ug.po +++ b/po/ug.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-21 13:53+0200\n" -"PO-Revision-Date: 2010-07-23 08:00+0200\n" +"PO-Revision-Date: 2010-07-23 08:08+0200\n" "Last-Translator: \n" "Language-Team: Uyghur \n" "Language: ug\n" @@ -1419,7 +1419,7 @@ msgstr "%1$s بۇ جەدۋەل ئىسمىنى %2$s غا ئۆزگەرتىشتە #: libraries/Table.class.php:1131 #, php-format msgid "Table %s has been renamed to %s" -msgstr "" +msgstr "%1$s بۇ جەدۋەل ئىسمىنى %2$s غا ئۆزگەرتىش غەلبىلىك بولدى." #: libraries/Theme.class.php:160 #, php-format From 36402785de6e5d93779a8e84c5d5d40692bbc82b Mon Sep 17 00:00:00 2001 From: Barry Leslie Date: Fri, 23 Jul 2010 08:32:16 -0400 Subject: [PATCH 027/212] Use PBMS pool connections --- libraries/blobstreaming.lib.php | 42 ++++++++++++++++++++++++--------- 1 file changed, 31 insertions(+), 11 deletions(-) diff --git a/libraries/blobstreaming.lib.php b/libraries/blobstreaming.lib.php index 5403e7699..3c614e6fd 100644 --- a/libraries/blobstreaming.lib.php +++ b/libraries/blobstreaming.lib.php @@ -131,6 +131,20 @@ function checkBLOBStreamingPlugins() return FALSE; } // end if (!$BS_PORT) + // Ping PBMS: the database doesn't need to exist for this to work. + if (pbms_connect($serverCfg['host'], $BS_PORT, "anydb") == FALSE) { + $PMA_Config->set('BLOBSTREAMING_PLUGINS_EXIST', FALSE); + PMA_cacheSet('skip_blobstreaming', true, true); + return FALSE; + } + pbms_close(); + + if (function_exists("pbms_pconnect")) { + $PMA_Config->set('PBMS_PCONNECT_EXISTS', TRUE); + } else { + $PMA_Config->set('PBMS_PCONNECT_EXISTS', FALSE); + } + // add selected BS, CURL and fileinfo library variables to PMA configuration $PMA_Config->set('BLOBSTREAMING_PORT', $BS_PORT); $PMA_Config->set('BLOBSTREAMING_HOST', $serverCfg['host']); @@ -242,9 +256,16 @@ function PMA_do_connect($db_name, $quiet) $pbms_host = $PMA_Config->get('BLOBSTREAMING_HOST'); $pbms_port = $PMA_Config->get('BLOBSTREAMING_PORT'); - if (pbms_connect($pbms_host, $pbms_port, $db_name) == FALSE) { + if ($PMA_Config->get('PBMS_PCONNECT_EXISTS')) { + // Open a persistent connection. + $ok = pbms_pconnect($pbms_host, $pbms_port, $db_name); + } else { + $ok = pbms_connect($pbms_host, $pbms_port, $db_name); + } + + if ($ok == FALSE) { if ($quiet == FALSE) { - PMA_BS_ReportPBMSError("PBMS Connectiuon failed: pbms_connect($pbms_host, $pbms_port, $db_name)"); + PMA_BS_ReportPBMSError("PBMS Connection failed: pbms_connect($pbms_host, $pbms_port, $db_name)"); } return FALSE; } @@ -268,11 +289,9 @@ function PMA_BS_IsPBMSReference($bs_reference, $db_name) return FALSE; } - if (PMA_do_connect($db_name, TRUE) == FALSE) { - return FALSE; - } + // You do not really need a connection to the PBMS Daemon + // to check if a reference looks valid. $ok = pbms_is_blob_reference($bs_reference); - PMA_do_disconnect(); return $ok ; } @@ -283,15 +302,16 @@ function PMA_BS_CreateReferenceLink($bs_reference, $db_name) return 'Error'; } - if (pbms_get_info($bs_reference) == FALSE) { + if (pbms_get_info(trim($bs_reference)) == FALSE) { PMA_BS_ReportPBMSError("PBMS get BLOB info failed: pbms_get_info($bs_reference)"); PMA_do_disconnect(); return 'Error'; } - $content_type = pbms_get_metadata_value("Content-type"); - if ($content_type == FALSE) { - PMA_BS_ReportPBMSError("PMA_BS_CreateReferenceLink($bs_reference, $db_name): get BLOB Content-type failed: "); + $content_type = pbms_get_metadata_value("Content-Type"); + if ($content_type == FALSE) { + $br = trim($bs_reference); + PMA_BS_ReportPBMSError("'$content_type' PMA_BS_CreateReferenceLink('$br', '$db_name'): get BLOB Content-Type failed: "); } PMA_do_disconnect(); @@ -395,7 +415,7 @@ function PMA_BS_UpLoadFile($db_name, $tbl_name, $file_type, $file_name) return FALSE; } - pbms_add_metadata("Content-type", $file_type); + pbms_add_metadata("Content-Type", $file_type); $pbms_blob_url = pbms_read_stream($fh, filesize($file_name), $tbl_name); if (! $pbms_blob_url) { From 9232e0237244556102c494b0779fc7ebfd30a204 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 23 Jul 2010 09:10:24 -0400 Subject: [PATCH 028/212] BLOB streaming doc --- Documentation.html | 22 ++++++++++++++++------ 1 file changed, 16 insertions(+), 6 deletions(-) diff --git a/Documentation.html b/Documentation.html index c35cfae27..a62413fda 100644 --- a/Documentation.html +++ b/Documentation.html @@ -69,7 +69,7 @@ vim: expandtab ts=4 sw=4 sts=4 tw=78

  • To support uploading of ZIP files, you need the PHP zip extension.
  • For proper support of multibyte strings (eg. UTF-8, which is - currently default), you should install mbstring and ctype + currently the default), you should install the mbstring and ctype extensions.
  • You need GD2 support in PHP to display inline @@ -84,6 +84,9 @@ vim: expandtab ts=4 sw=4 sts=4 tw=78
  • To support upload progress bars, see FAQ 2.9.
  • +
  • To support BLOB streaming, see PHP and MySQL requirements + in + FAQ 6.25.
  • MySQL 5.0 or newer (details);
  • @@ -4306,13 +4309,20 @@ chmod o+rwx tmp

    6.25 How does BLOB streaming work in phpMyAdmin?

    -

    First, for general information about BLOB streaming on MySQL, visit blobstreaming.org. We currently support streaming if you are running MySQL 5.1 with the PBXT and PBMS storage engines. Moreover, only PBMS 0.5.04 is supported.

    +

    For general information about BLOB streaming on MySQL, visit blobstreaming.org. You need the following components:

    + + +

    Here are details about configuration and operation:

      -
    1. In config.inc.php your host should be defined with a FQDN (fully qualified domain name) instead of something like "localhost".
    2. -
    3. A current limitation is that your first login via phpMyAdmin to a freshly-started server must be done with an account that has the SUPER privilege.
    4. -
    5. On your target database, go to Operations and in the "BLOB Repository" section, click "Enable". This creates the PBMS system tables inside your database.
    6. -
    7. Ensure that your target table is under the PBXT storage engine and has a LONGBLOB column.
    8. +
    9. In config.inc.php your host should be defined with a FQDN (fully qualified domain name) instead of "localhost".
    10. +
    11. Ensure that your target table is under the PBXT storage engine and has a LONGBLOB column and a primary key.
    12. When you insert or update a row in this table, put a checkmark on the "Upload to BLOB repository" optional choice; otherwise, the upload will be done directly in your column instead of the repository.
    13. Finally when you browse your table, you'll see in your column a link to stream your data, for example "View image". A header containing the correct MIME-type will be sent to your browser; this MIME-type was stored at upload time but in case it's incorrect, it's possible to edit it by clicking on the displayed MIME-type.
    From 790b52857d269aac40282c85e24845e1fd27b924 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 23 Jul 2010 09:20:51 -0400 Subject: [PATCH 029/212] remove tabs --- libraries/blobstreaming.lib.php | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/libraries/blobstreaming.lib.php b/libraries/blobstreaming.lib.php index 3c614e6fd..17a05e08f 100644 --- a/libraries/blobstreaming.lib.php +++ b/libraries/blobstreaming.lib.php @@ -13,7 +13,7 @@ function initPBMSDatabase() * table in an already existing database which will cause the PBMS * daemon to create the 'pbms' database. */ - $db_array = PMA_DBI_fetch_result('SHOW DATABASES;'); + $db_array = PMA_DBI_fetch_result('SHOW DATABASES;'); if (! empty($db_array)) { $target = ""; foreach ($db_array as $current_db) { @@ -26,7 +26,7 @@ function initPBMSDatabase() } } } - + if ($target != "") { $query = "select * from $target.pbms_metadata_header"; // If it exists this table will not contain much } @@ -100,7 +100,7 @@ function checkBLOBStreamingPlugins() foreach ($existing_plugins as $one_existing_plugin) { // check if required plugins exist if ( strtolower($one_existing_plugin['Library']) == 'libpbms.so' - && $one_existing_plugin['Status'] == "ACTIVE") { + && $one_existing_plugin['Status'] == "ACTIVE") { $has_blobstreaming = true; break; } @@ -303,16 +303,16 @@ function PMA_BS_CreateReferenceLink($bs_reference, $db_name) } if (pbms_get_info(trim($bs_reference)) == FALSE) { - PMA_BS_ReportPBMSError("PBMS get BLOB info failed: pbms_get_info($bs_reference)"); + PMA_BS_ReportPBMSError("PBMS get BLOB info failed: pbms_get_info($bs_reference)"); PMA_do_disconnect(); return 'Error'; } - $content_type = pbms_get_metadata_value("Content-Type"); + $content_type = pbms_get_metadata_value("Content-Type"); if ($content_type == FALSE) { $br = trim($bs_reference); PMA_BS_ReportPBMSError("'$content_type' PMA_BS_CreateReferenceLink('$br', '$db_name'): get BLOB Content-Type failed: "); - } + } PMA_do_disconnect(); @@ -322,9 +322,9 @@ function PMA_BS_CreateReferenceLink($bs_reference, $db_name) $bs_url = PMA_BS_getURL($bs_reference); if (empty($bs_url)) { - PMA_BS_ReportPBMSError("No blob streaming server configured!"); + PMA_BS_ReportPBMSError("No blob streaming server configured!"); return 'Error'; - } + } $output = "$content_type"; @@ -339,7 +339,7 @@ function PMA_BS_CreateReferenceLink($bs_reference, $db_name) case 'image/png': $output .= ' (' . __('View image') . ')'; break; - // audio content + // audio content case 'audio/mpeg': $output .= ' (' . __('Play audio'). ')'; break; @@ -379,7 +379,7 @@ function PMA_BS_IsTablePBMSEnabled($db_name, $tbl_name, $tbl_type) return FALSE; } - if (! $PMA_Config->get('BLOBSTREAMING_PLUGINS_EXIST')) { + if (! $PMA_Config->get('BLOBSTREAMING_PLUGINS_EXIST')) { return FALSE; } @@ -403,7 +403,7 @@ function PMA_BS_UpLoadFile($db_name, $tbl_name, $file_type, $file_name) if (PMA_cacheGet('skip_blobstreaming', true)) { return FALSE; } - + if (PMA_do_connect($db_name, FALSE) == FALSE) { return FALSE; } @@ -411,9 +411,9 @@ function PMA_BS_UpLoadFile($db_name, $tbl_name, $file_type, $file_name) $fh = fopen($file_name, 'r'); if (! $fh) { PMA_do_disconnect(); - PMA_showMessage("Could not open file: $file_name"); + PMA_showMessage("Could not open file: $file_name"); return FALSE; - } + } pbms_add_metadata("Content-Type", $file_type); @@ -433,7 +433,7 @@ function PMA_BS_SetContentType($db_name, $bsTable, $blobReference, $contentType) if (PMA_cacheGet('skip_blobstreaming', true)) { return FALSE; } - + // This is a really ugly way to do this but currently there is nothing better. // In a future version of PBMS the system tables will be redesigned to make this // more eficient. @@ -447,7 +447,7 @@ function PMA_BS_SetContentType($db_name, $bsTable, $blobReference, $contentType) $where = "WHERE Repository_id=" . $data['Repository_id'] . " AND Repo_blob_offset=" . $data['Repo_blob_offset'] ; $query = "SELECT name from pbms_metadata $where"; $result = PMA_DBI_query($query); - + if (PMA_DBI_num_rows($result) == 0) { $query = "INSERT into pbms_metadata Values( ". $data['Repository_id'] . ", " . $data['Repo_blob_offset'] . ", 'Content_type', '" . PMA_sqlAddslashes($contentType) . "')"; } else { @@ -489,7 +489,7 @@ function PMA_BS_getURL($reference) if (empty($bs_server)) { return FALSE; } - + $bs_url = 'http://' . $bs_server . '/' . rtrim($reference); return $bs_url; } From aec1adb0e077f2a9521bfa9ed367e9d5b6911042 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 23 Jul 2010 10:13:49 -0400 Subject: [PATCH 030/212] credit for new BLOB streaming support --- Documentation.html | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Documentation.html b/Documentation.html index a62413fda..3e5edeea3 100644 --- a/Documentation.html +++ b/Documentation.html @@ -4855,6 +4855,11 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
  • Replication support
  • +
  • Barrie Leslie +
      +
    • BLOBstreaming support with PBMS PHP extension
    • +
  • +

    From 084c0dbcf51dea488d99b7bfffffa23832ace4f3 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Sat, 24 Jul 2010 08:11:48 -0400 Subject: [PATCH 031/212] functions.js included automatically --- chk_rel.php | 1 - db_create.php | 1 - export.php | 5 ----- import.php | 1 - libraries/db_common.inc.php | 1 - libraries/header_scripts.inc.php | 1 + libraries/mult_submits.inc.php | 1 - libraries/tbl_links.inc.php | 1 - querywindow.php | 1 - server_databases.php | 2 -- server_export.php | 2 -- server_privileges.php | 1 - server_replication.php | 1 - server_sql.php | 1 - server_synchronize.php | 1 - sql.php | 5 ----- tbl_addfield.php | 1 - tbl_alter.php | 1 - tbl_create.php | 1 - tbl_indexes.php | 1 - tbl_replace.php | 2 -- tbl_row_action.php | 1 - tbl_tracking.php | 1 - 23 files changed, 1 insertion(+), 33 deletions(-) diff --git a/chk_rel.php b/chk_rel.php index 38ca5c1b0..323befda7 100644 --- a/chk_rel.php +++ b/chk_rel.php @@ -9,7 +9,6 @@ * Gets some core libraries */ require_once './libraries/common.inc.php'; -$GLOBALS['js_include'][] = 'functions.js'; require_once './libraries/header.inc.php'; require_once './libraries/relation.lib.php'; diff --git a/db_create.php b/db_create.php index 9b1959a54..50e4cf67d 100644 --- a/db_create.php +++ b/db_create.php @@ -9,7 +9,6 @@ * Gets some core libraries */ require_once './libraries/common.inc.php'; -$GLOBALS['js_include'][] = 'functions.js'; require_once './libraries/mysql_charsets.lib.php'; PMA_checkParameters(array('new_db')); diff --git a/export.php b/export.php index 2db992dee..64ae7d303 100644 --- a/export.php +++ b/export.php @@ -59,7 +59,6 @@ if (empty($_REQUEST['asfile'])) { // Does export require to be into file? if (isset($export_list[$type]['force_file']) && ! $asfile) { $message = PMA_Message::error(__('Selected export type has to be saved in file!')); - $GLOBALS['js_include'][] = 'functions.js'; require_once './libraries/header.inc.php'; if ($export_type == 'server') { $active_page = 'server_export.php'; @@ -298,7 +297,6 @@ if ($save_on_server) { } } if (isset($message)) { - $GLOBALS['js_include'][] = 'functions.js'; require_once './libraries/header.inc.php'; if ($export_type == 'server') { $active_page = 'server_export.php'; @@ -350,7 +348,6 @@ if (!$save_on_server) { $num_tables = count($tables); if ($num_tables == 0) { $message = PMA_Message::error(__('No tables found in database.')); - $GLOBALS['js_include'][] = 'functions.js'; require_once './libraries/header.inc.php'; $active_page = 'db_export.php'; require './db_export.php'; @@ -565,7 +562,6 @@ if (!PMA_exportFooter()) { // End of fake loop if ($save_on_server && isset($message)) { - $GLOBALS['js_include'][] = 'functions.js'; require_once './libraries/header.inc.php'; if ($export_type == 'server') { $active_page = 'server_export.php'; @@ -622,7 +618,6 @@ if (!empty($asfile)) { $message = new PMA_Message(__('Dump has been saved to file %s.'), PMA_Message::SUCCESS, $save_filename); } - $GLOBALS['js_include'][] = 'functions.js'; require_once './libraries/header.inc.php'; if ($export_type == 'server') { $active_page = 'server_export.php'; diff --git a/import.php b/import.php index b12306419..dbc4d56ad 100644 --- a/import.php +++ b/import.php @@ -12,7 +12,6 @@ */ require_once './libraries/common.inc.php'; //require_once './libraries/display_import_functions.lib.php'; -$GLOBALS['js_include'][] = 'functions.js'; // reset import messages for ajax request $_SESSION['Import_message']['message'] = null; diff --git a/libraries/db_common.inc.php b/libraries/db_common.inc.php index b9a4a97d4..ea019cbae 100644 --- a/libraries/db_common.inc.php +++ b/libraries/db_common.inc.php @@ -65,7 +65,6 @@ if (isset($submitcollation) && !empty($db_collation)) { unset($db_charset, $db_collation); } -$GLOBALS['js_include'][] = 'functions.js'; require_once './libraries/header.inc.php'; /** diff --git a/libraries/header_scripts.inc.php b/libraries/header_scripts.inc.php index a292d0f2f..8021c3454 100644 --- a/libraries/header_scripts.inc.php +++ b/libraries/header_scripts.inc.php @@ -30,6 +30,7 @@ $title = PMA_expandUserString( // here, the function does not exist with this configuration: $cfg['ServerDefault'] = 0; $is_superuser = function_exists('PMA_isSuperuser') && PMA_isSuperuser(); +$GLOBALS['js_include'][] = 'functions.js'; $GLOBALS['js_include'][] = 'tooltip.js'; $params = array('lang' => $GLOBALS['lang']); if (isset($GLOBALS['db'])) { diff --git a/libraries/mult_submits.inc.php b/libraries/mult_submits.inc.php index 0b3413b39..2fab680e5 100644 --- a/libraries/mult_submits.inc.php +++ b/libraries/mult_submits.inc.php @@ -127,7 +127,6 @@ if (! empty($submit_mult) * Displays the confirmation form if required */ if (!empty($submit_mult) && !empty($what)) { - $GLOBALS['js_include'][] = 'functions.js'; unset($message); require_once './libraries/header.inc.php'; diff --git a/libraries/tbl_links.inc.php b/libraries/tbl_links.inc.php index 1f695a529..ef612933c 100644 --- a/libraries/tbl_links.inc.php +++ b/libraries/tbl_links.inc.php @@ -37,7 +37,6 @@ $err_url = $cfg['DefaultTabTable'] . PMA_generate_common_url($url_params); /** * Displays headers */ -$GLOBALS['js_include'][] = 'functions.js'; require_once './libraries/header.inc.php'; /** diff --git a/querywindow.php b/querywindow.php index 7b2b08d1b..84b0e8238 100644 --- a/querywindow.php +++ b/querywindow.php @@ -155,7 +155,6 @@ $sql_query = ''; * prepare JavaScript functionality */ $js_include[] = 'common.js'; -$js_include[] = 'functions.js'; $js_include[] = 'querywindow.js'; if (PMA_isValid($_REQUEST['auto_commit'], 'identical', 'true')) { diff --git a/server_databases.php b/server_databases.php index 0c7d598e5..16b2cdc33 100644 --- a/server_databases.php +++ b/server_databases.php @@ -10,8 +10,6 @@ */ require_once './libraries/common.inc.php'; - -$GLOBALS['js_include'][] = 'functions.js'; require './libraries/server_common.inc.php'; require './libraries/replication.inc.php'; diff --git a/server_export.php b/server_export.php index 9d78ce7bf..f9808d8e5 100644 --- a/server_export.php +++ b/server_export.php @@ -10,8 +10,6 @@ */ require_once './libraries/common.inc.php'; -$GLOBALS['js_include'][] = 'functions.js'; - /** * Displays the links */ diff --git a/server_privileges.php b/server_privileges.php index a909ef588..bd2ddb37c 100644 --- a/server_privileges.php +++ b/server_privileges.php @@ -14,7 +14,6 @@ require_once './libraries/common.inc.php'; * Does the common work */ $GLOBALS['js_include'][] = 'server_privileges.js'; -$GLOBALS['js_include'][] = 'functions.js'; $GLOBALS['js_include'][] = 'password_generation.js'; require './libraries/server_common.inc.php'; diff --git a/server_replication.php b/server_replication.php index 1dbd42e3c..9ac18164f 100644 --- a/server_replication.php +++ b/server_replication.php @@ -14,7 +14,6 @@ require_once './libraries/common.inc.php'; * Does the common work */ $GLOBALS['js_include'][] = 'server_privileges.js'; -$GLOBALS['js_include'][] = 'functions.js'; $GLOBALS['js_include'][] = 'replication.js'; require './libraries/server_common.inc.php'; diff --git a/server_sql.php b/server_sql.php index 1b8027c33..73c137975 100644 --- a/server_sql.php +++ b/server_sql.php @@ -13,7 +13,6 @@ require_once './libraries/common.inc.php'; /** * Does the common work */ -$GLOBALS['js_include'][] = 'functions.js'; require_once './libraries/server_common.inc.php'; require_once './libraries/sql_query_form.lib.php'; diff --git a/server_synchronize.php b/server_synchronize.php index 1272dda97..6f0941b28 100644 --- a/server_synchronize.php +++ b/server_synchronize.php @@ -14,7 +14,6 @@ require_once './libraries/common.inc.php'; /** * Does the common work */ -$GLOBALS['js_include'][] = 'functions.js'; $GLOBALS['js_include'][] = 'server_synchronize.js'; require_once './libraries/server_common.inc.php'; diff --git a/sql.php b/sql.php index c4ae9ff6e..917553213 100644 --- a/sql.php +++ b/sql.php @@ -545,10 +545,6 @@ if (0 == $num_rows || $is_affected) { $goto = 'main.php'; } // Loads to target script - if (strpos($goto, 'db_') === 0 - || strpos($goto, 'tbl_') === 0) { - $GLOBALS['js_include'][] = 'functions.js'; - } if ($goto != 'main.php') { require_once './libraries/header.inc.php'; } @@ -573,7 +569,6 @@ else { if (isset($printview) && $printview == '1') { require_once './libraries/header_printview.inc.php'; } else { - $GLOBALS['js_include'][] = 'functions.js'; unset($message); if (strlen($table)) { require './libraries/tbl_common.php'; diff --git a/tbl_addfield.php b/tbl_addfield.php index b61327fb4..6d6c14ab4 100644 --- a/tbl_addfield.php +++ b/tbl_addfield.php @@ -11,7 +11,6 @@ require_once './libraries/common.inc.php'; require_once './libraries/Table.class.php'; -$GLOBALS['js_include'][] = 'functions.js'; require_once './libraries/header.inc.php'; // Check parameters diff --git a/tbl_alter.php b/tbl_alter.php index 7f81c4179..423156e05 100644 --- a/tbl_alter.php +++ b/tbl_alter.php @@ -15,7 +15,6 @@ require_once './libraries/common.inc.php'; require_once './libraries/Table.class.php'; -$GLOBALS['js_include'][] = 'functions.js'; require_once './libraries/header.inc.php'; // Check parameters diff --git a/tbl_create.php b/tbl_create.php index 8f77bb354..fc1119bb0 100644 --- a/tbl_create.php +++ b/tbl_create.php @@ -36,7 +36,6 @@ require_once './libraries/common.inc.php'; require_once './libraries/Table.class.php'; -$GLOBALS['js_include'][] = 'functions.js'; $action = 'tbl_create.php'; require_once './libraries/header.inc.php'; diff --git a/tbl_indexes.php b/tbl_indexes.php index 172191ac3..eb6deb9bd 100644 --- a/tbl_indexes.php +++ b/tbl_indexes.php @@ -111,7 +111,6 @@ if (isset($_REQUEST['do_save_data'])) { */ // Displays headers (if needed) -$GLOBALS['js_include'][] = 'functions.js'; $GLOBALS['js_include'][] = 'indexes.js'; require_once './libraries/tbl_info.inc.php'; diff --git a/tbl_replace.php b/tbl_replace.php index bcf64af89..92331b9c3 100644 --- a/tbl_replace.php +++ b/tbl_replace.php @@ -328,7 +328,6 @@ if ($is_insert && count($value_sets) > 0) { } elseif (empty($query)) { // No change -> move back to the calling script $message = PMA_Message::success(__('No change')); - $GLOBALS['js_include'][] = 'functions.js'; $active_page = $goto_include; require_once './libraries/header.inc.php'; require './' . PMA_securePath($goto_include); @@ -428,7 +427,6 @@ if (isset($return_to_sql_query)) { } $GLOBALS['js_include'][] = 'tbl_change.js'; -$GLOBALS['js_include'][] = 'functions.js'; // in case we call sql.php which needs those: $GLOBALS['js_include'][] = 'jquery/jquery-ui-1.8.custom.js'; diff --git a/tbl_row_action.php b/tbl_row_action.php index 356ad57d9..62fc2044a 100644 --- a/tbl_row_action.php +++ b/tbl_row_action.php @@ -71,7 +71,6 @@ switch($submit_mult) { } $GLOBALS['js_include'][] = 'tbl_change.js'; -$GLOBALS['js_include'][] = 'functions.js'; require_once './libraries/header.inc.php'; diff --git a/tbl_tracking.php b/tbl_tracking.php index 698076a14..6312262c0 100644 --- a/tbl_tracking.php +++ b/tbl_tracking.php @@ -233,7 +233,6 @@ if (isset($_REQUEST['report_export']) && $_REQUEST['export_type'] == 'sqldump') $table_temp = $table; $db = $table = ''; - $GLOBALS['js_include'][] = 'functions.js'; require_once './libraries/sql_query_form.lib.php'; PMA_sqlQueryForm($new_query, 'sql'); From 58021a8e6c5c9fe7963864480c365f8f49f390b4 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Sun, 25 Jul 2010 07:53:07 -0400 Subject: [PATCH 032/212] bug [scripts] MySQL 5.5.5 does not accept TIMESTAMP(14) in create_tables.sql --- ChangeLog | 1 + scripts/create_tables.sql | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 2b0c93fbc..555c6f219 100644 --- a/ChangeLog +++ b/ChangeLog @@ -20,6 +20,7 @@ $HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyA - bug [export] CSV for MS Excel (Windows) should have semi-colon as separator - [core] Update library PHPExcel to version 1.7.3c - bug #2994885, bug #3029168 [import] Convert Excel column name correctly +- bug [scripts] MySQL 5.5.5 does not accept TIMESTAMP(14) in create_tables.sql 3.3.4.0 (2010-06-28) - bug #2996161 [import] properly escape import value diff --git a/scripts/create_tables.sql b/scripts/create_tables.sql index bcb8b357c..e4d0fc811 100644 --- a/scripts/create_tables.sql +++ b/scripts/create_tables.sql @@ -80,7 +80,7 @@ CREATE TABLE IF NOT EXISTS `pma_history` ( `username` varchar(64) NOT NULL default '', `db` varchar(64) NOT NULL default '', `table` varchar(64) NOT NULL default '', - `timevalue` timestamp(14) NOT NULL, + `timevalue` timestamp NOT NULL, `sqlquery` text NOT NULL, PRIMARY KEY (`id`), KEY `username` (`username`,`db`,`table`,`timevalue`) From 053d6ca88e1a72a839f517b22f3389f59575baf7 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Sun, 25 Jul 2010 13:32:35 -0400 Subject: [PATCH 033/212] bug #3033063 [core] Navi gets wrong db name --- ChangeLog | 1 + server_privileges.php | 5 +++++ 2 files changed, 6 insertions(+) diff --git a/ChangeLog b/ChangeLog index fc317e937..d7cb453b0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -7,6 +7,7 @@ $HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyA 3.3.6.0 (not yet released) - bug #3031705 [core] Do not use CONCAT for DECIMAL fields. +- bug #3033063 [core] Navi gets wrong db name 3.3.5.0 (not yet released) - patch #2932113 [information_schema] Slow export when having lots of diff --git a/server_privileges.php b/server_privileges.php index fd2796f2d..3f14c3f93 100644 --- a/server_privileges.php +++ b/server_privileges.php @@ -942,6 +942,8 @@ if (isset($_REQUEST['adduser_submit']) || isset($_REQUEST['change_copy'])) { $message = PMA_Message::rawError(PMA_DBI_getError()); break; } + // this is needed in case tracking is on: + $GLOBALS['db'] = $username; $GLOBALS['reload'] = TRUE; PMA_reloadNavigation(); @@ -1255,6 +1257,9 @@ if (isset($_REQUEST['delete']) || (isset($_REQUEST['change_copy']) && $_REQUEST[ } } } + // tracking sets this, causing the deleted db to be shown in navi + unset($GLOBALS['db']); + $sql_query = join("\n", $queries); if (! empty($drop_user_error)) { $message = PMA_Message::rawError($drop_user_error); From 16d651fa09a00323d09c24734126903eba0b53b5 Mon Sep 17 00:00:00 2001 From: gheni Date: Mon, 26 Jul 2010 04:49:38 +0200 Subject: [PATCH 034/212] Translation update done using Pootle. --- po/ug.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/ug.po b/po/ug.po index db747c548..3044ef849 100644 --- a/po/ug.po +++ b/po/ug.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-21 13:53+0200\n" -"PO-Revision-Date: 2010-07-23 08:08+0200\n" +"PO-Revision-Date: 2010-07-26 04:49+0200\n" "Last-Translator: \n" "Language-Team: Uyghur \n" "Language: ug\n" From 21d4df09ba520cefa0a9b202734d11e7800d2408 Mon Sep 17 00:00:00 2001 From: gheni Date: Mon, 26 Jul 2010 04:50:04 +0200 Subject: [PATCH 035/212] Translation update done using Pootle. --- po/ug.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/ug.po b/po/ug.po index 3044ef849..abd27b46f 100644 --- a/po/ug.po +++ b/po/ug.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-21 13:53+0200\n" -"PO-Revision-Date: 2010-07-26 04:49+0200\n" +"PO-Revision-Date: 2010-07-26 04:50+0200\n" "Last-Translator: \n" "Language-Team: Uyghur \n" "Language: ug\n" From 629af6d8cec049860bc79d403abde036e35b1b48 Mon Sep 17 00:00:00 2001 From: gheni Date: Mon, 26 Jul 2010 04:51:03 +0200 Subject: [PATCH 036/212] Translation update done using Pootle. --- po/ug.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/ug.po b/po/ug.po index abd27b46f..7c1133fad 100644 --- a/po/ug.po +++ b/po/ug.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-21 13:53+0200\n" -"PO-Revision-Date: 2010-07-26 04:50+0200\n" +"PO-Revision-Date: 2010-07-26 04:51+0200\n" "Last-Translator: \n" "Language-Team: Uyghur \n" "Language: ug\n" From e491ab718de9d6cc8828e041881bd79bae7bf9c1 Mon Sep 17 00:00:00 2001 From: gheni Date: Mon, 26 Jul 2010 04:52:02 +0200 Subject: [PATCH 037/212] Translation update done using Pootle. --- po/ug.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/ug.po b/po/ug.po index 7c1133fad..9f3a38919 100644 --- a/po/ug.po +++ b/po/ug.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-21 13:53+0200\n" -"PO-Revision-Date: 2010-07-26 04:51+0200\n" +"PO-Revision-Date: 2010-07-26 04:52+0200\n" "Last-Translator: \n" "Language-Team: Uyghur \n" "Language: ug\n" From c0560b64f5b28c35d5597fb4fc7e8fb4238dfdc0 Mon Sep 17 00:00:00 2001 From: gheni Date: Mon, 26 Jul 2010 04:52:29 +0200 Subject: [PATCH 038/212] Translation update done using Pootle. --- po/ug.po | 2 ++ 1 file changed, 2 insertions(+) diff --git a/po/ug.po b/po/ug.po index 9f3a38919..19cab1631 100644 --- a/po/ug.po +++ b/po/ug.po @@ -1348,6 +1348,8 @@ 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/server_links.inc.php:40 #: server_databases.php:87 server_privileges.php:1652 From 0a11d949cb603a07f4b9aee9ed2dfe37ddbfeaa1 Mon Sep 17 00:00:00 2001 From: gheni Date: Mon, 26 Jul 2010 04:52:34 +0200 Subject: [PATCH 039/212] Translation update done using Pootle. --- po/ug.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/ug.po b/po/ug.po index 19cab1631..94d6e4e62 100644 --- a/po/ug.po +++ b/po/ug.po @@ -1368,8 +1368,7 @@ msgstr "خاتالىق" #, php-format msgid "%1$d row affected." msgid_plural "%1$d rows affected." -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%1$d row affected." #: libraries/Message.class.php:300 #, php-format From f37c7cb55cecbf9b7c68ff3c93b135b9d23afbc5 Mon Sep 17 00:00:00 2001 From: gheni Date: Mon, 26 Jul 2010 04:53:15 +0200 Subject: [PATCH 040/212] Translation update done using Pootle. --- po/ug.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/ug.po b/po/ug.po index 94d6e4e62..0e7c7d5cf 100644 --- a/po/ug.po +++ b/po/ug.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-21 13:53+0200\n" -"PO-Revision-Date: 2010-07-26 04:52+0200\n" +"PO-Revision-Date: 2010-07-26 04:53+0200\n" "Last-Translator: \n" "Language-Team: Uyghur \n" "Language: ug\n" @@ -1374,8 +1374,7 @@ msgstr[0] "%1$d row affected." #, php-format msgid "%1$d row deleted." msgid_plural "%1$d rows deleted." -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%1$d row deleted." #: libraries/Message.class.php:319 #, php-format From 0617cdb0c564bcb52858f34c5977316f4a07c47b Mon Sep 17 00:00:00 2001 From: gheni Date: Mon, 26 Jul 2010 04:53:44 +0200 Subject: [PATCH 041/212] Translation update done using Pootle. --- po/ug.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/ug.po b/po/ug.po index 0e7c7d5cf..74e0b09ed 100644 --- a/po/ug.po +++ b/po/ug.po @@ -1380,8 +1380,7 @@ msgstr[0] "%1$d row deleted." #, php-format msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%1$d قۇر قوشۇلدى." #: libraries/StorageEngine.class.php:196 msgid "" From 73eaafe0c6bc40f4c6746ad28d4017cc464c33ec Mon Sep 17 00:00:00 2001 From: gheni Date: Mon, 26 Jul 2010 04:54:47 +0200 Subject: [PATCH 042/212] Translation update done using Pootle. --- po/ug.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ug.po b/po/ug.po index 74e0b09ed..b864e45e8 100644 --- a/po/ug.po +++ b/po/ug.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-21 13:53+0200\n" -"PO-Revision-Date: 2010-07-26 04:53+0200\n" +"PO-Revision-Date: 2010-07-26 04:54+0200\n" "Last-Translator: \n" "Language-Team: Uyghur \n" "Language: ug\n" @@ -1423,7 +1423,7 @@ msgstr "%1$s بۇ جەدۋەل ئىسمىنى %2$s غا ئۆزگەرتىش غە #: libraries/Theme.class.php:160 #, php-format msgid "No valid image path for theme %s found!" -msgstr "" +msgstr "No valid image path for theme %s found!" #: libraries/Theme.class.php:380 msgid "No preview available." From e1e57f4a0d127221faa223e2c2b4b83246ea62d6 Mon Sep 17 00:00:00 2001 From: gheni Date: Mon, 26 Jul 2010 04:56:36 +0200 Subject: [PATCH 043/212] Translation update done using Pootle. --- po/ug.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ug.po b/po/ug.po index b864e45e8..d53e79f0f 100644 --- a/po/ug.po +++ b/po/ug.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-21 13:53+0200\n" -"PO-Revision-Date: 2010-07-26 04:54+0200\n" +"PO-Revision-Date: 2010-07-26 04:56+0200\n" "Last-Translator: \n" "Language-Team: Uyghur \n" "Language: ug\n" @@ -1446,7 +1446,7 @@ msgstr "تېما %s تېپىلمىدى!" #: libraries/Theme_Manager.class.php:220 #, php-format msgid "Theme path not found for theme %s!" -msgstr "" +msgstr "ماۋزۇ %s تېپىلمىدى." #: libraries/Theme_Manager.class.php:296 test/theme.php:160 themes.php:20 #: themes.php:40 From 35171f4c887bbc06818b8f68d7682b3a165805bc Mon Sep 17 00:00:00 2001 From: gheni Date: Mon, 26 Jul 2010 04:58:23 +0200 Subject: [PATCH 044/212] Translation update done using Pootle. --- po/ug.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ug.po b/po/ug.po index d53e79f0f..c52b1b221 100644 --- a/po/ug.po +++ b/po/ug.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-21 13:53+0200\n" -"PO-Revision-Date: 2010-07-26 04:56+0200\n" +"PO-Revision-Date: 2010-07-26 04:58+0200\n" "Last-Translator: \n" "Language-Team: Uyghur \n" "Language: ug\n" @@ -1455,7 +1455,7 @@ msgstr "تېما \\ ئۇسلۇب" #: libraries/auth/config.auth.lib.php:76 msgid "Cannot connect: invalid settings." -msgstr "" +msgstr "ئۇلىنالمىدى: ئۈنۈمسىز تەڭشەك." #: libraries/auth/config.auth.lib.php:91 #: libraries/auth/cookie.auth.lib.php:205 libraries/auth/http.auth.lib.php:64 From d18869b2c93272efe86a693df5fddc3c43a23882 Mon Sep 17 00:00:00 2001 From: gheni Date: Mon, 26 Jul 2010 04:59:54 +0200 Subject: [PATCH 045/212] Translation update done using Pootle. --- po/ug.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/ug.po b/po/ug.po index c52b1b221..6fb155348 100644 --- a/po/ug.po +++ b/po/ug.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-21 13:53+0200\n" -"PO-Revision-Date: 2010-07-26 04:58+0200\n" +"PO-Revision-Date: 2010-07-26 04:59+0200\n" "Last-Translator: \n" "Language-Team: Uyghur \n" "Language: ug\n" @@ -1470,6 +1470,8 @@ msgid "" "You probably did not create a configuration file. You might want to use the " "%1$ssetup script%2$s to create one." msgstr "" +"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 "" From 3954599b68df96ac017abb26213ff11e97e593a9 Mon Sep 17 00:00:00 2001 From: gheni Date: Mon, 26 Jul 2010 04:59:59 +0200 Subject: [PATCH 046/212] Translation update done using Pootle. --- po/ug.po | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/po/ug.po b/po/ug.po index 6fb155348..06dd41634 100644 --- a/po/ug.po +++ b/po/ug.po @@ -1480,6 +1480,10 @@ msgid "" "configuration and make sure that they correspond to the information given by " "the administrator of the MySQL server." msgstr "" +"phpMyAdmin tried to connect to the MySQL server, and the server rejected the " +"connection. You should check the host, username and password in your " +"configuration and make sure that they correspond to the information given by " +"the administrator of the MySQL server." #: libraries/auth/cookie.auth.lib.php:230 msgid "Log in" From 815aceda7b01a36423d205cc12332e26204ede25 Mon Sep 17 00:00:00 2001 From: gheni Date: Mon, 26 Jul 2010 05:00:08 +0200 Subject: [PATCH 047/212] Translation update done using Pootle. --- po/ug.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ug.po b/po/ug.po index 06dd41634..24f5944c4 100644 --- a/po/ug.po +++ b/po/ug.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-21 13:53+0200\n" -"PO-Revision-Date: 2010-07-26 04:59+0200\n" +"PO-Revision-Date: 2010-07-26 05:00+0200\n" "Last-Translator: \n" "Language-Team: Uyghur \n" "Language: ug\n" @@ -1499,7 +1499,7 @@ msgstr "phpMyAdmin ھۆججىتى" #: libraries/auth/cookie.auth.lib.php:244 #: libraries/auth/cookie.auth.lib.php:245 msgid "You can enter hostname/IP address and port separated by space." -msgstr "" +msgstr "You can enter hostname/IP address and port separated by space." #: libraries/auth/cookie.auth.lib.php:244 msgid "Server:" From 412bdd6515420d7410c8265e7ce4a99a0787d438 Mon Sep 17 00:00:00 2001 From: gheni Date: Mon, 26 Jul 2010 05:01:31 +0200 Subject: [PATCH 048/212] Translation update done using Pootle. --- po/ug.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ug.po b/po/ug.po index 24f5944c4..be7308d29 100644 --- a/po/ug.po +++ b/po/ug.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-21 13:53+0200\n" -"PO-Revision-Date: 2010-07-26 05:00+0200\n" +"PO-Revision-Date: 2010-07-26 05:01+0200\n" "Last-Translator: \n" "Language-Team: Uyghur \n" "Language: ug\n" @@ -1519,7 +1519,7 @@ msgstr "مۇلازىمىتېر تاللاش" #: libraries/auth/cookie.auth.lib.php:306 libraries/header.inc.php:58 msgid "Cookies must be enabled past this point." -msgstr "" +msgstr "Cookies نى قوزغاتقاندىن كېيىن ئاندىن كېرىڭ." #: libraries/auth/cookie.auth.lib.php:638 #: libraries/auth/signon.auth.lib.php:180 From 15dfc4879ec8f8273bdec711597e118bd938653c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Mon, 26 Jul 2010 13:29:29 +0200 Subject: [PATCH 049/212] Drop collation description cache. It really does not improve performance much and it just consumes memory. Anyway on most pages this function is called just once for each collation, so all it does is filling up the cache but never using it. --- libraries/mysql_charsets.lib.php | 8 -------- 1 file changed, 8 deletions(-) diff --git a/libraries/mysql_charsets.lib.php b/libraries/mysql_charsets.lib.php index 303c63770..db31ece2c 100644 --- a/libraries/mysql_charsets.lib.php +++ b/libraries/mysql_charsets.lib.php @@ -198,14 +198,6 @@ function PMA_getServerCollation() { * @return string collation description */ function PMA_getCollationDescr($collation) { - static $collation_cache; - - if (!is_array($collation_cache)) { - $collation_cache = array(); - } elseif (isset($collation_cache[$collation])) { - return $collation_cache[$collation]; - } - if ($collation == 'binary') { return __('Binary'); } From 83d458aa05286397198bcd0674eeeb610849ef5a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Mon, 26 Jul 2010 15:45:36 +0200 Subject: [PATCH 050/212] Revert "bug #3031705 [core] Do not use CONCAT for DECIMAL fields." This reverts commit ef500cd23fd863e62bf810537776b45a4ed76c34. We probably need to use CONCAT still, just the other side should be converted to string as well. --- ChangeLog | 1 - libraries/dbi/mysqli.dbi.lib.php | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index d7cb453b0..5d318214a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -6,7 +6,6 @@ $Id$ $HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyAdmin/ChangeLog $ 3.3.6.0 (not yet released) -- bug #3031705 [core] Do not use CONCAT for DECIMAL fields. - bug #3033063 [core] Navi gets wrong db name 3.3.5.0 (not yet released) diff --git a/libraries/dbi/mysqli.dbi.lib.php b/libraries/dbi/mysqli.dbi.lib.php index fd35eb4a9..913bce627 100644 --- a/libraries/dbi/mysqli.dbi.lib.php +++ b/libraries/dbi/mysqli.dbi.lib.php @@ -493,8 +493,8 @@ function PMA_DBI_get_fields_meta($result) { // Build an associative array for a type look up $typeAr = array(); - $typeAr[MYSQLI_TYPE_DECIMAL] = 'decimal'; - $typeAr[MYSQLI_TYPE_NEWDECIMAL] = 'decimal'; + $typeAr[MYSQLI_TYPE_DECIMAL] = 'real'; + $typeAr[MYSQLI_TYPE_NEWDECIMAL] = 'real'; $typeAr[MYSQLI_TYPE_BIT] = 'int'; $typeAr[MYSQLI_TYPE_TINY] = 'int'; $typeAr[MYSQLI_TYPE_SHORT] = 'int'; From 049fc7fef7548c2ba603196937c6dcaf9ff9bf00 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Mon, 26 Jul 2010 15:51:26 +0200 Subject: [PATCH 051/212] bug #3031705 [core] Fix generating condition for real numbers by comparing them to string. --- ChangeLog | 2 ++ libraries/common.lib.php | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 5d318214a..748e243d9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -7,6 +7,8 @@ $HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyA 3.3.6.0 (not yet released) - bug #3033063 [core] Navi gets wrong db name +- bug #3031705 [core] Fix generating condition for real numbers by comparing + them to string. 3.3.5.0 (not yet released) - patch #2932113 [information_schema] Slow export when having lots of diff --git a/libraries/common.lib.php b/libraries/common.lib.php index c62d51885..811859829 100644 --- a/libraries/common.lib.php +++ b/libraries/common.lib.php @@ -2025,7 +2025,8 @@ function PMA_getUniqueCondition($handle, $fields_cnt, $fields_meta, $row, $force $condition .= 'IS NULL AND'; } else { // timestamp is numeric on some MySQL 4.1 - if ($meta->numeric && $meta->type != 'timestamp') { + // for real we use CONCAT above and it should compare to string + if ($meta->numeric && $meta->type != 'timestamp' && $meta->type != 'real') { $condition .= '= ' . $row[$i] . ' AND'; } elseif (($meta->type == 'blob' || $meta->type == 'string') // hexify only if this is a true not empty BLOB or a BINARY From ee767e2d3d10fff9f8bf1b9cc3bf448690dbcfa0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Mon, 26 Jul 2010 16:17:59 +0200 Subject: [PATCH 052/212] No need to explicitely include relation.lib its anyway included in common.inc --- browse_foreigners.php | 1 - chk_rel.php | 1 - db_datadict.php | 4 ++-- db_operations.php | 1 - db_printview.php | 1 - db_qbe.php | 1 - db_tracking.php | 3 --- export.php | 1 - index.php | 5 ----- libraries/Table.class.php | 2 -- libraries/Tracker.class.php | 5 ----- libraries/bookmark.lib.php | 5 ----- libraries/db_links.inc.php | 1 - libraries/display_export.lib.php | 1 - libraries/footer.inc.php | 2 -- libraries/header.inc.php | 1 - libraries/import/docsql.php | 1 - libraries/relation_cleanup.lib.php | 5 ----- libraries/tbl_properties.inc.php | 1 - main.php | 1 - navigation.php | 3 +-- pdf_pages.php | 1 - pdf_schema.php | 1 - pmd_common.php | 1 - pmd_display_field.php | 1 - pmd_pdf.php | 2 -- pmd_relation_new.php | 1 - pmd_relation_upd.php | 1 - pmd_save_pos.php | 1 - querywindow.php | 3 +-- sql.php | 1 - tbl_addfield.php | 1 - tbl_alter.php | 1 - tbl_change.php | 5 ----- tbl_create.php | 1 - tbl_operations.php | 1 - tbl_printview.php | 1 - tbl_relation.php | 2 -- tbl_select.php | 1 - tbl_structure.php | 2 -- tbl_tracking.php | 3 --- transformation_wrapper.php | 1 - 42 files changed, 4 insertions(+), 74 deletions(-) diff --git a/browse_foreigners.php b/browse_foreigners.php index 0f39cb4fe..4cfa543e8 100644 --- a/browse_foreigners.php +++ b/browse_foreigners.php @@ -22,7 +22,6 @@ require_once './libraries/header_http.inc.php'; * Displays the frame */ $per_page = 200; -require_once './libraries/relation.lib.php'; // foreign keys require_once './libraries/transformations.lib.php'; // Transformations $cfgRelation = PMA_getRelationsParam(); $foreigners = ($cfgRelation['relwork'] ? PMA_getForeigners($db, $table) : FALSE); diff --git a/chk_rel.php b/chk_rel.php index 323befda7..0f965ac59 100644 --- a/chk_rel.php +++ b/chk_rel.php @@ -10,7 +10,6 @@ */ require_once './libraries/common.inc.php'; require_once './libraries/header.inc.php'; -require_once './libraries/relation.lib.php'; /** diff --git a/db_datadict.php b/db_datadict.php index 6a9c04c5e..b20011387 100644 --- a/db_datadict.php +++ b/db_datadict.php @@ -18,10 +18,10 @@ if (!isset($selected_tbl)) { /** * Gets the relations settings */ -require_once './libraries/relation.lib.php'; +$cfgRelation = PMA_getRelationsParam(); + require_once './libraries/transformations.lib.php'; -$cfgRelation = PMA_getRelationsParam(); /** * Check parameters diff --git a/db_operations.php b/db_operations.php index 773213173..f235de983 100644 --- a/db_operations.php +++ b/db_operations.php @@ -262,7 +262,6 @@ if (strlen($db) && (! empty($db_rename) || ! empty($db_copy))) { * Settings for relations stuff */ -require_once './libraries/relation.lib.php'; $cfgRelation = PMA_getRelationsParam(); /** diff --git a/db_printview.php b/db_printview.php index 15801a904..97f8a77fd 100644 --- a/db_printview.php +++ b/db_printview.php @@ -26,7 +26,6 @@ $err_url = 'db_sql.php?' . PMA_generate_common_url($db); /** * Settings for relations stuff */ -require_once './libraries/relation.lib.php'; $cfgRelation = PMA_getRelationsParam(); /** diff --git a/db_qbe.php b/db_qbe.php index 7a08f07bc..2156683a5 100644 --- a/db_qbe.php +++ b/db_qbe.php @@ -11,7 +11,6 @@ */ require_once './libraries/common.inc.php'; require_once './libraries/Table.class.php'; -require_once './libraries/relation.lib.php'; /** diff --git a/db_tracking.php b/db_tracking.php index f18b9b821..aa0d9e457 100644 --- a/db_tracking.php +++ b/db_tracking.php @@ -17,9 +17,6 @@ $url_query .= '&goto=tbl_tracking.php&back=db_tracking.php'; $sub_part = '_structure'; require './libraries/db_info.inc.php'; -// Get relation settings -require_once './libraries/relation.lib.php'; - // Work to do? // (here, do not use $_REQUEST['db] as it can be crafted) if (isset($_REQUEST['delete_tracking']) && isset($_REQUEST['table'])) { diff --git a/export.php b/export.php index 64ae7d303..b1208bf77 100644 --- a/export.php +++ b/export.php @@ -383,7 +383,6 @@ $do_relation = isset($GLOBALS[$what . '_relation']); $do_comments = isset($GLOBALS[$what . '_comments']); $do_mime = isset($GLOBALS[$what . '_mime']); if ($do_relation || $do_comments || $do_mime) { - require_once './libraries/relation.lib.php'; $cfgRelation = PMA_getRelationsParam(); } if ($do_mime) { diff --git a/index.php b/index.php index 3b16ec7d2..16e13d028 100644 --- a/index.php +++ b/index.php @@ -32,11 +32,6 @@ */ require_once './libraries/common.inc.php'; -/** - * Includes the ThemeManager if it hasn't been included yet - */ -require_once './libraries/relation.lib.php'; - // free the session file, for the other frames to be loaded session_write_close(); diff --git a/libraries/Table.class.php b/libraries/Table.class.php index 7839107e8..a29900e7b 100644 --- a/libraries/Table.class.php +++ b/libraries/Table.class.php @@ -781,7 +781,6 @@ class PMA_Table $GLOBALS['sql_query'] .= "\n\n" . $sql_insert_data . ';'; } - require_once './libraries/relation.lib.php'; $GLOBALS['cfgRelation'] = PMA_getRelationsParam(); // Drops old table if the user has requested to move it @@ -1057,7 +1056,6 @@ class PMA_Table * @todo move into extra function PMA_Relation::renameTable($new_name, $old_name, $new_db, $old_db) */ // Move old entries from comments to new table - require_once './libraries/relation.lib.php'; $GLOBALS['cfgRelation'] = PMA_getRelationsParam(); if ($GLOBALS['cfgRelation']['commwork']) { $remove_query = ' diff --git a/libraries/Tracker.class.php b/libraries/Tracker.class.php index 82deb43fe..4f5c52f6c 100644 --- a/libraries/Tracker.class.php +++ b/libraries/Tracker.class.php @@ -5,11 +5,6 @@ * @package phpMyAdmin */ -/** - * Gets relation settings - */ -require_once './libraries/relation.lib.php'; - /** * This class tracks changes on databases, tables and views. * For more information please see phpMyAdmin/Documentation.html diff --git a/libraries/bookmark.lib.php b/libraries/bookmark.lib.php index fa6b4bfcd..dba279d9c 100644 --- a/libraries/bookmark.lib.php +++ b/libraries/bookmark.lib.php @@ -6,11 +6,6 @@ * @package phpMyAdmin */ -/** - * - */ -require_once './libraries/relation.lib.php'; - /** * Defines the bookmark parameters for the current user * diff --git a/libraries/db_links.inc.php b/libraries/db_links.inc.php index a86bcf559..860d3d805 100644 --- a/libraries/db_links.inc.php +++ b/libraries/db_links.inc.php @@ -13,7 +13,6 @@ if (! defined('PHPMYADMIN')) { */ require_once './libraries/common.inc.php'; -require_once './libraries/relation.lib.php'; /** * Gets the relation settings */ diff --git a/libraries/display_export.lib.php b/libraries/display_export.lib.php index afa6435d6..5f52d1869 100644 --- a/libraries/display_export.lib.php +++ b/libraries/display_export.lib.php @@ -14,7 +14,6 @@ if (! defined('PHPMYADMIN')) { require_once './libraries/Table.class.php'; // Get relations & co. status -require_once './libraries/relation.lib.php'; $cfgRelation = PMA_getRelationsParam(); diff --git a/libraries/footer.inc.php b/libraries/footer.inc.php index b018549bc..ee76e917a 100644 --- a/libraries/footer.inc.php +++ b/libraries/footer.inc.php @@ -49,8 +49,6 @@ if (! defined('PHPMYADMIN')) { /** * for PMA_setHistory() */ -require_once './libraries/relation.lib.php'; - if (! PMA_isValid($_REQUEST['no_history']) && empty($GLOBALS['error_message']) && ! empty($GLOBALS['sql_query'])) { PMA_setHistory(PMA_ifSetOr($GLOBALS['db'], ''), diff --git a/libraries/header.inc.php b/libraries/header.inc.php index 9182f1539..56385836b 100644 --- a/libraries/header.inc.php +++ b/libraries/header.inc.php @@ -143,7 +143,6 @@ if (empty($GLOBALS['is_header_sent'])) { /** * Settings for relations stuff */ - require_once './libraries/relation.lib.php'; $cfgRelation = PMA_getRelationsParam(); // Get additional information about tables for tooltip is done diff --git a/libraries/import/docsql.php b/libraries/import/docsql.php index 7f93f9b78..7a5e1db1c 100644 --- a/libraries/import/docsql.php +++ b/libraries/import/docsql.php @@ -12,7 +12,6 @@ if (! defined('PHPMYADMIN')) { /** * Load relations. */ -require_once './libraries/relation.lib.php'; $cfgRelation = PMA_getRelationsParam(); /** diff --git a/libraries/relation_cleanup.lib.php b/libraries/relation_cleanup.lib.php index 313e0b22e..476d46c68 100644 --- a/libraries/relation_cleanup.lib.php +++ b/libraries/relation_cleanup.lib.php @@ -9,11 +9,6 @@ if (! defined('PHPMYADMIN')) { exit; } -/** - * - */ -require_once './libraries/relation.lib.php'; - /** * Cleanu column related relation stuff * diff --git a/libraries/tbl_properties.inc.php b/libraries/tbl_properties.inc.php index 4b10f513d..cc34157cd 100644 --- a/libraries/tbl_properties.inc.php +++ b/libraries/tbl_properties.inc.php @@ -117,7 +117,6 @@ if (!$is_backup) { $header_cells[] = '' . ($display_type == 'horizontal' ? 'A_I' : 'AUTO_INCREMENT') . ''; -require_once './libraries/relation.lib.php'; require_once './libraries/transformations.lib.php'; $cfgRelation = PMA_getRelationsParam(); diff --git a/main.php b/main.php index ba6faa151..c09fd623b 100644 --- a/main.php +++ b/main.php @@ -309,7 +309,6 @@ if (file_exists('./config')) { * Check whether relations are supported. */ if ($server > 0) { - require_once './libraries/relation.lib.php'; $cfgRelation = PMA_getRelationsParam(); if(!$cfgRelation['allworks'] && $cfg['PmaNoRelation_DisableWarning'] == false) { $message = PMA_Message::notice(__('The additional features for working with linked tables have been deactivated. To find out why click %shere%s.')); diff --git a/navigation.php b/navigation.php index 17cb58709..cd9ca7d31 100644 --- a/navigation.php +++ b/navigation.php @@ -110,9 +110,8 @@ if ($GLOBALS['server'] && ! strlen($GLOBALS['db'])) { $db_start = $GLOBALS['db']; /** - * the relation library + * the relation settings */ -require_once './libraries/relation.lib.php'; $cfgRelation = PMA_getRelationsParam(); /** diff --git a/pdf_pages.php b/pdf_pages.php index a26420f04..f026ca651 100644 --- a/pdf_pages.php +++ b/pdf_pages.php @@ -20,7 +20,6 @@ require_once './libraries/db_info.inc.php'; /** * Settings for relation stuff */ -require_once './libraries/relation.lib.php'; $cfgRelation = PMA_getRelationsParam(); // This is to avoid "Command out of sync" errors. Before switching this to diff --git a/pdf_schema.php b/pdf_schema.php index 097979209..0142512b4 100644 --- a/pdf_schema.php +++ b/pdf_schema.php @@ -13,7 +13,6 @@ require_once './libraries/common.inc.php'; /** * Settings for relation stuff */ -require_once './libraries/relation.lib.php'; require_once './libraries/transformations.lib.php'; require_once './libraries/Index.class.php'; diff --git a/pmd_common.php b/pmd_common.php index bf2351493..2cb2213ce 100644 --- a/pmd_common.php +++ b/pmd_common.php @@ -13,7 +13,6 @@ require_once './libraries/header_http.inc.php'; $GLOBALS['PMD']['STYLE'] = 'default'; -require_once './libraries/relation.lib.php'; $cfgRelation = PMA_getRelationsParam(); $GLOBALS['script_display_field'] = diff --git a/pmd_display_field.php b/pmd_display_field.php index acfa162c8..21ef7f26c 100644 --- a/pmd_display_field.php +++ b/pmd_display_field.php @@ -8,7 +8,6 @@ * */ include_once 'pmd_common.php'; -require_once './libraries/relation.lib.php'; $table = $T; diff --git a/pmd_pdf.php b/pmd_pdf.php index 069f6f1a9..beec1e022 100644 --- a/pmd_pdf.php +++ b/pmd_pdf.php @@ -15,8 +15,6 @@ if (! isset($scale)) { include_once 'pmd_save_pos.php'; } -require_once './libraries/relation.lib.php'; - if (isset($scale) && ! isset($createpage)) { if (empty($pdf_page_number)) { die(""); diff --git a/pmd_relation_new.php b/pmd_relation_new.php index 307304a21..32d42efc1 100644 --- a/pmd_relation_new.php +++ b/pmd_relation_new.php @@ -11,7 +11,6 @@ include_once 'pmd_common.php'; $die_save_pos = 0; include_once 'pmd_save_pos.php'; -require_once './libraries/relation.lib.php'; extract($_POST, EXTR_SKIP); $tables = PMA_DBI_get_tables_full($db, $T1); diff --git a/pmd_relation_upd.php b/pmd_relation_upd.php index a4ee7f938..f05ffbd92 100644 --- a/pmd_relation_upd.php +++ b/pmd_relation_upd.php @@ -9,7 +9,6 @@ * */ include_once 'pmd_common.php'; -require_once './libraries/relation.lib.php'; extract($_POST, EXTR_SKIP); extract($_GET, EXTR_SKIP); $die_save_pos = 0; diff --git a/pmd_save_pos.php b/pmd_save_pos.php index 7f6179ae6..cea100165 100644 --- a/pmd_save_pos.php +++ b/pmd_save_pos.php @@ -9,7 +9,6 @@ * */ include_once 'pmd_common.php'; -require_once './libraries/relation.lib.php'; $cfgRelation = PMA_getRelationsParam(); diff --git a/querywindow.php b/querywindow.php index 84b0e8238..86af6c01b 100644 --- a/querywindow.php +++ b/querywindow.php @@ -50,9 +50,8 @@ require_once './libraries/ob.lib.php'; PMA_outBufferPre(); /** - * load relations + * load relation params */ -require_once './libraries/relation.lib.php'; $cfgRelation = PMA_getRelationsParam(); /** diff --git a/sql.php b/sql.php index 917553213..703cc291e 100644 --- a/sql.php +++ b/sql.php @@ -585,7 +585,6 @@ else { } if (strlen($db)) { - require_once './libraries/relation.lib.php'; $cfgRelation = PMA_getRelationsParam(); } diff --git a/tbl_addfield.php b/tbl_addfield.php index 6d6c14ab4..40b9ab2d8 100644 --- a/tbl_addfield.php +++ b/tbl_addfield.php @@ -164,7 +164,6 @@ if (isset($_REQUEST['do_save_data'])) { if ($result === true) { // If comments were sent, enable relation stuff - require_once './libraries/relation.lib.php'; require_once './libraries/transformations.lib.php'; // Update comment table for mime types [MIME] diff --git a/tbl_alter.php b/tbl_alter.php index 423156e05..e4a12b53a 100644 --- a/tbl_alter.php +++ b/tbl_alter.php @@ -105,7 +105,6 @@ if (isset($_REQUEST['do_save_data'])) { /** * If comments were sent, enable relation stuff */ - require_once './libraries/relation.lib.php'; require_once './libraries/transformations.lib.php'; // updaet field names in relation diff --git a/tbl_change.php b/tbl_change.php index 704cdc13a..150e73bc4 100644 --- a/tbl_change.php +++ b/tbl_change.php @@ -44,11 +44,6 @@ if (isset($_REQUEST['ShowFieldTypesInDataEditView'])) { $cfg['ShowFieldTypesInDataEditView'] = $_REQUEST['ShowFieldTypesInDataEditView']; } -/** - * load relation data, foreign keys - */ -require_once './libraries/relation.lib.php'; - /** * file listing */ diff --git a/tbl_create.php b/tbl_create.php index fc1119bb0..fc3fe655c 100644 --- a/tbl_create.php +++ b/tbl_create.php @@ -223,7 +223,6 @@ if (isset($_REQUEST['do_save_data'])) { if ($result) { // If comments were sent, enable relation stuff - require_once './libraries/relation.lib.php'; require_once './libraries/transformations.lib.php'; // Update comment table for mime types [MIME] diff --git a/tbl_operations.php b/tbl_operations.php index fa89491ee..5e0e66b4a 100644 --- a/tbl_operations.php +++ b/tbl_operations.php @@ -23,7 +23,6 @@ $url_params['goto'] = $url_params['back'] = 'tbl_operations.php'; /** * Gets relation settings */ -require_once './libraries/relation.lib.php'; $cfgRelation = PMA_getRelationsParam(); /** diff --git a/tbl_printview.php b/tbl_printview.php index 1b625f99e..4fd966d4c 100644 --- a/tbl_printview.php +++ b/tbl_printview.php @@ -29,7 +29,6 @@ if (! isset($the_tables) || ! is_array($the_tables)) { /** * Gets the relations settings */ -require_once './libraries/relation.lib.php'; require_once './libraries/transformations.lib.php'; require_once './libraries/Index.class.php'; diff --git a/tbl_relation.php b/tbl_relation.php index ab5851177..c05787614 100644 --- a/tbl_relation.php +++ b/tbl_relation.php @@ -38,8 +38,6 @@ $avoid_show_comment = TRUE; */ require_once './libraries/tbl_links.inc.php'; -require_once './libraries/relation.lib.php'; - $options_array = array( 'CASCADE' => 'CASCADE', 'SET_NULL' => 'SET NULL', diff --git a/tbl_select.php b/tbl_select.php index d9e8a4662..31c25cb68 100644 --- a/tbl_select.php +++ b/tbl_select.php @@ -14,7 +14,6 @@ * Gets some core libraries */ require_once './libraries/common.inc.php'; -require_once './libraries/relation.lib.php'; // foreign keys require_once './libraries/mysql_charsets.lib.php'; $GLOBALS['js_include'][] = 'tbl_change.js'; diff --git a/tbl_structure.php b/tbl_structure.php index b0263a39c..82893ac87 100644 --- a/tbl_structure.php +++ b/tbl_structure.php @@ -11,7 +11,6 @@ */ require_once './libraries/common.inc.php'; require_once './libraries/mysql_charsets.lib.php'; -require_once './libraries/relation.lib.php'; $GLOBALS['js_include'][] = 'jquery/jquery-ui-1.8.custom.js'; @@ -199,7 +198,6 @@ $comments_map = array(); $mime_map = array(); if ($GLOBALS['cfg']['ShowPropertyComments']) { - require_once './libraries/relation.lib.php'; require_once './libraries/transformations.lib.php'; //$cfgRelation = PMA_getRelationsParam(); diff --git a/tbl_tracking.php b/tbl_tracking.php index 6312262c0..f7765b1c8 100644 --- a/tbl_tracking.php +++ b/tbl_tracking.php @@ -15,9 +15,6 @@ $url_query .= '&goto=tbl_tracking.php&back=tbl_tracking.php'; $url_params['goto'] = 'tbl_tracking.php';; $url_params['back'] = 'tbl_tracking.php'; -// Get relation settings -require_once './libraries/relation.lib.php'; - // Init vars for tracking report if (isset($_REQUEST['report']) || isset($_REQUEST['report_export'])) { $data = PMA_Tracker::getTrackedData($_REQUEST['db'], $_REQUEST['table'], $_REQUEST['version']); diff --git a/transformation_wrapper.php b/transformation_wrapper.php index 3dd9c3123..3699dd091 100644 --- a/transformation_wrapper.php +++ b/transformation_wrapper.php @@ -14,7 +14,6 @@ define('IS_TRANSFORMATION_WRAPPER', true); * Gets a core script and starts output buffering work */ require_once './libraries/common.inc.php'; -require_once './libraries/relation.lib.php'; // foreign keys require_once './libraries/transformations.lib.php'; // Transformations $cfgRelation = PMA_getRelationsParam(); From d291827444206eeaf25399020ad6a3d98a5e2766 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Mon, 26 Jul 2010 16:20:24 +0200 Subject: [PATCH 053/212] No need to require_once footer It is the last thing executed anyway (ends with exit). --- chk_rel.php | 2 +- db_datadict.php | 2 +- db_export.php | 2 +- db_operations.php | 2 +- db_printview.php | 2 +- db_qbe.php | 4 ++-- db_search.php | 2 +- db_sql.php | 2 +- db_structure.php | 4 ++-- db_tracking.php | 4 ++-- export.php | 2 +- libraries/auth/config.auth.lib.php | 2 +- libraries/common.lib.php | 2 +- libraries/mult_submits.inc.php | 2 +- main.php | 2 +- pdf_pages.php | 10 +++++----- pdf_schema.php | 2 +- server_binlog.php | 2 +- server_collations.php | 2 +- server_databases.php | 2 +- server_engines.php | 2 +- server_export.php | 2 +- server_privileges.php | 6 +++--- server_processlist.php | 2 +- server_replication.php | 6 +++--- server_sql.php | 2 +- server_status.php | 2 +- server_synchronize.php | 2 +- server_variables.php | 2 +- sql.php | 4 ++-- tbl_addfield.php | 2 +- tbl_alter.php | 2 +- tbl_change.php | 4 ++-- tbl_create.php | 2 +- tbl_export.php | 2 +- tbl_import.php | 2 +- tbl_indexes.php | 2 +- tbl_operations.php | 2 +- tbl_printview.php | 2 +- tbl_relation.php | 2 +- tbl_row_action.php | 4 ++-- tbl_select.php | 2 +- tbl_sql.php | 2 +- tbl_structure.php | 2 +- tbl_tracking.php | 2 +- transformation_overview.php | 2 +- user_password.php | 6 +++--- view_create.php | 2 +- view_operations.php | 2 +- 49 files changed, 65 insertions(+), 65 deletions(-) diff --git a/chk_rel.php b/chk_rel.php index 0f965ac59..8955350b0 100644 --- a/chk_rel.php +++ b/chk_rel.php @@ -21,5 +21,5 @@ $cfgRelation = PMA_getRelationsParam(TRUE); /** * Displays the footer */ -require_once './libraries/footer.inc.php'; +require './libraries/footer.inc.php'; ?> diff --git a/db_datadict.php b/db_datadict.php index b20011387..7666b567a 100644 --- a/db_datadict.php +++ b/db_datadict.php @@ -320,5 +320,5 @@ function printPage()
    '; -require_once './libraries/footer.inc.php'; +require './libraries/footer.inc.php'; ?> diff --git a/db_export.php b/db_export.php index dce374a4b..a44469ef2 100644 --- a/db_export.php +++ b/db_export.php @@ -72,5 +72,5 @@ require_once './libraries/display_export.lib.php'; /** * Displays the footer */ -require_once './libraries/footer.inc.php'; +require './libraries/footer.inc.php'; ?> diff --git a/db_operations.php b/db_operations.php index f235de983..5d4844051 100644 --- a/db_operations.php +++ b/db_operations.php @@ -501,5 +501,5 @@ if ($cfgRelation['pdfwork'] && $num_tables > 0) { ?> /** * Displays the footer */ -require_once './libraries/footer.inc.php'; +require './libraries/footer.inc.php'; ?> diff --git a/db_printview.php b/db_printview.php index 97f8a77fd..36f297c99 100644 --- a/db_printview.php +++ b/db_printview.php @@ -264,5 +264,5 @@ function printPage() id="print" value="" onclick="printPage()" /> diff --git a/db_qbe.php b/db_qbe.php index 2156683a5..5599bad5d 100644 --- a/db_qbe.php +++ b/db_qbe.php @@ -98,7 +98,7 @@ $tbl_result = PMA_DBI_query('SHOW TABLES FROM ' . PMA_backquote($db) . ';', $tbl_result_cnt = PMA_DBI_num_rows($tbl_result); if (0 == $tbl_result_cnt) { PMA_Message::error(__('No tables found in database.'))->display(); - require_once './libraries/footer.inc.php'; + require './libraries/footer.inc.php'; exit; } @@ -939,5 +939,5 @@ if (!empty($qry_orderby)) { /** * Displays the footer */ -require_once './libraries/footer.inc.php'; +require './libraries/footer.inc.php'; ?> diff --git a/db_search.php b/db_search.php index e57c16106..0b68ba3d4 100644 --- a/db_search.php +++ b/db_search.php @@ -350,5 +350,5 @@ $alter_select = /** * Displays the footer */ -require_once './libraries/footer.inc.php'; +require './libraries/footer.inc.php'; ?> diff --git a/db_sql.php b/db_sql.php index 27194b08d..986fb3417 100644 --- a/db_sql.php +++ b/db_sql.php @@ -41,5 +41,5 @@ PMA_sqlQueryForm(true, false, isset($_REQUEST['delimiter']) ? $_REQUEST['delimit /** * Displays the footer */ -require_once './libraries/footer.inc.php'; +require './libraries/footer.inc.php'; ?> diff --git a/db_structure.php b/db_structure.php index 077dcab45..899fa9515 100644 --- a/db_structure.php +++ b/db_structure.php @@ -56,7 +56,7 @@ if ($num_tables == 0) { /** * Displays the footer */ - require_once './libraries/footer.inc.php'; + require './libraries/footer.inc.php'; exit; } @@ -599,5 +599,5 @@ if (empty($db_is_information_schema)) { /** * Displays the footer */ -require_once './libraries/footer.inc.php'; +require './libraries/footer.inc.php'; ?> diff --git a/db_tracking.php b/db_tracking.php index aa0d9e457..2ff54f0ef 100644 --- a/db_tracking.php +++ b/db_tracking.php @@ -35,7 +35,7 @@ if ($num_tables == 0 && count($data['ddlog']) == 0) { } // Display the footer - require_once './libraries/footer.inc.php'; + require './libraries/footer.inc.php'; exit; } @@ -199,5 +199,5 @@ if (count($data['ddlog']) > 0) { /** * Display the footer */ -require_once './libraries/footer.inc.php'; +require './libraries/footer.inc.php'; ?> diff --git a/export.php b/export.php index b1208bf77..00639e22a 100644 --- a/export.php +++ b/export.php @@ -667,6 +667,6 @@ else { //]]> diff --git a/libraries/auth/config.auth.lib.php b/libraries/auth/config.auth.lib.php index e16d1894f..3a9f82b8f 100644 --- a/libraries/auth/config.auth.lib.php +++ b/libraries/auth/config.auth.lib.php @@ -131,7 +131,7 @@ function PMA_auth_fails() echo '' . "\n"; } echo '' . "\n"; - require_once './libraries/footer.inc.php'; + require './libraries/footer.inc.php'; return TRUE; } // end of the 'PMA_auth_fails()' function diff --git a/libraries/common.lib.php b/libraries/common.lib.php index 86e49a901..c9a0f1153 100644 --- a/libraries/common.lib.php +++ b/libraries/common.lib.php @@ -666,7 +666,7 @@ function PMA_mysqlDie($error_message = '', $the_query = '', * display footer and exit */ - require_once './libraries/footer.inc.php'; + require './libraries/footer.inc.php'; } else { echo $error_msg_output; } diff --git a/libraries/mult_submits.inc.php b/libraries/mult_submits.inc.php index 2fab680e5..fe614e7a6 100644 --- a/libraries/mult_submits.inc.php +++ b/libraries/mult_submits.inc.php @@ -261,7 +261,7 @@ if (!empty($submit_mult) && !empty($what)) { diff --git a/pdf_pages.php b/pdf_pages.php index f026ca651..75d4622fd 100644 --- a/pdf_pages.php +++ b/pdf_pages.php @@ -38,24 +38,24 @@ $query_default_option = PMA_DBI_QUERY_STORE; if (!$cfgRelation['relwork']) { echo sprintf(__('%s table not found or not set in %s'), 'relation', 'config.inc.php') . '
    ' . "\n" . PMA_showDocu('relation') . "\n"; - require_once './libraries/footer.inc.php'; + require './libraries/footer.inc.php'; } if (!$cfgRelation['displaywork']) { echo sprintf(__('%s table not found or not set in %s'), 'table_info', 'config.inc.php') . '
    ' . "\n" . PMA_showDocu('table_info') . "\n"; - require_once './libraries/footer.inc.php'; + require './libraries/footer.inc.php'; } if (!isset($cfgRelation['table_coords'])){ echo sprintf(__('%s table not found or not set in %s'), 'table_coords', 'config.inc.php') . '
    ' . "\n" . PMA_showDocu('table_coords') . "\n"; - require_once './libraries/footer.inc.php'; + require './libraries/footer.inc.php'; } if (!isset($cfgRelation['pdf_pages'])) { echo sprintf(__('%s table not found or not set in %s'), 'pdf_page', 'config.inc.php') . '
    ' . "\n" . PMA_showDocu('pdf_pages') . "\n"; - require_once './libraries/footer.inc.php'; + require './libraries/footer.inc.php'; } if ($cfgRelation['pdfwork']) { @@ -555,5 +555,5 @@ ToggleDragDrop('pdflayout'); * Displays the footer */ echo "\n"; -require_once './libraries/footer.inc.php'; +require './libraries/footer.inc.php'; ?> diff --git a/pdf_schema.php b/pdf_schema.php index 0142512b4..a1c16e6bb 100644 --- a/pdf_schema.php +++ b/pdf_schema.php @@ -239,7 +239,7 @@ class PMA_PDF extends TCPDF { . '">' . __('Back') . ''; echo "\n"; - require_once './libraries/footer.inc.php'; + require './libraries/footer.inc.php'; } // end of the "PMA_PDF_die()" function /** * Aliases the "Error()" function from the FPDF class to the diff --git a/server_binlog.php b/server_binlog.php index bfa4e0701..60a5b57af 100644 --- a/server_binlog.php +++ b/server_binlog.php @@ -234,6 +234,6 @@ while ($value = PMA_DBI_fetch_assoc($result)) { /** * Sends the footer */ -require_once './libraries/footer.inc.php'; +require './libraries/footer.inc.php'; ?> diff --git a/server_collations.php b/server_collations.php index b6482cd84..27fec06b4 100644 --- a/server_collations.php +++ b/server_collations.php @@ -95,6 +95,6 @@ unset($table_row_count); echo '' . "\n" . '' . "\n"; -require_once './libraries/footer.inc.php'; +require './libraries/footer.inc.php'; ?> diff --git a/server_databases.php b/server_databases.php index 16b2cdc33..7aeee672c 100644 --- a/server_databases.php +++ b/server_databases.php @@ -382,6 +382,6 @@ if ($cfg['ShowCreateDb']) { /** * Sends the footer */ -require_once './libraries/footer.inc.php'; +require './libraries/footer.inc.php'; ?> diff --git a/server_engines.php b/server_engines.php index 5ef4e6fbe..7bdccc8a9 100644 --- a/server_engines.php +++ b/server_engines.php @@ -159,6 +159,6 @@ if (empty($_REQUEST['engine']) /** * Sends the footer */ -require_once './libraries/footer.inc.php'; +require './libraries/footer.inc.php'; ?> diff --git a/server_export.php b/server_export.php index f9808d8e5..7b568fd49 100644 --- a/server_export.php +++ b/server_export.php @@ -47,5 +47,5 @@ require_once './libraries/display_export.lib.php'; /** * Displays the footer */ -require_once './libraries/footer.inc.php'; +require './libraries/footer.inc.php'; ?> diff --git a/server_privileges.php b/server_privileges.php index 9577d77c8..cd5afe75a 100644 --- a/server_privileges.php +++ b/server_privileges.php @@ -110,7 +110,7 @@ if (!$is_superuser) { . __('Privileges') . "\n" . '' . "\n"; PMA_Message::error(__('No Privileges'))->display(); - require_once './libraries/footer.inc.php'; + require './libraries/footer.inc.php'; } /** @@ -1679,7 +1679,7 @@ if (empty($_REQUEST['adduser']) && (! isset($checkprivs) || ! strlen($checkprivs if ($user_does_not_exists) { PMA_Message::warning(__('The selected user was not found in the privilege table.'))->display(); PMA_displayLoginInformationFields(); - //require_once './libraries/footer.inc.php'; + //require './libraries/footer.inc.php'; } echo '

    ' . "\n"; @@ -2219,6 +2219,6 @@ if (empty($_REQUEST['adduser']) && (! isset($checkprivs) || ! strlen($checkprivs * Displays the footer */ echo "\n\n"; -require_once './libraries/footer.inc.php'; +require './libraries/footer.inc.php'; ?> diff --git a/server_processlist.php b/server_processlist.php index 58f4813fa..337d917d3 100644 --- a/server_processlist.php +++ b/server_processlist.php @@ -88,5 +88,5 @@ while($process = PMA_DBI_fetch_assoc($result)) { /** * Sends the footer */ -require_once './libraries/footer.inc.php'; +require './libraries/footer.inc.php'; ?> diff --git a/server_replication.php b/server_replication.php index 9ac18164f..6c410fadf 100644 --- a/server_replication.php +++ b/server_replication.php @@ -31,7 +31,7 @@ if (! $is_superuser) { . __('Replication') . "\n" . '' . "\n"; PMA_Message::error(__('No Privileges'))->display(); - require_once './libraries/footer.inc.php'; + require './libraries/footer.inc.php'; } /** @@ -234,7 +234,7 @@ if (isset($GLOBALS['mr_configure'])) { echo '
    '; echo ''; - require_once './libraries/footer.inc.php'; + require './libraries/footer.inc.php'; exit; } @@ -358,5 +358,5 @@ if (! isset($GLOBALS['repl_clear_scr'])) { if (isset($GLOBALS['sl_configure'])) { PMA_replication_gui_changemaster("slave_changemaster"); } -require_once './libraries/footer.inc.php'; +require './libraries/footer.inc.php'; ?> diff --git a/server_sql.php b/server_sql.php index 73c137975..6a4fc6832 100644 --- a/server_sql.php +++ b/server_sql.php @@ -31,5 +31,5 @@ PMA_sqlQueryForm(); /** * Displays the footer */ -require_once './libraries/footer.inc.php'; +require './libraries/footer.inc.php'; ?> diff --git a/server_status.php b/server_status.php index 30edca2c8..bcbfe06d0 100644 --- a/server_status.php +++ b/server_status.php @@ -847,5 +847,5 @@ if ($server_master_status || $server_slave_status) /** * Sends the footer */ -require_once './libraries/footer.inc.php'; +require './libraries/footer.inc.php'; ?> diff --git a/server_synchronize.php b/server_synchronize.php index 6f0941b28..32a6cb533 100644 --- a/server_synchronize.php +++ b/server_synchronize.php @@ -1214,5 +1214,5 @@ if (isset($_REQUEST['synchronize_db'])) { /** * Displays the footer */ -require_once './libraries/footer.inc.php'; +require './libraries/footer.inc.php'; ?> diff --git a/server_variables.php b/server_variables.php index db156a212..4616395ac 100644 --- a/server_variables.php +++ b/server_variables.php @@ -107,6 +107,6 @@ foreach ($serverVars as $name => $value) { /** * Sends the footer */ -require_once './libraries/footer.inc.php'; +require './libraries/footer.inc.php'; ?> diff --git a/sql.php b/sql.php index 703cc291e..28c645810 100644 --- a/sql.php +++ b/sql.php @@ -198,7 +198,7 @@ if ($do_confirm) { /** * Displays the footer and exit */ - require_once './libraries/footer.inc.php'; + require './libraries/footer.inc.php'; } // end if $do_confirm @@ -700,5 +700,5 @@ window.onload = function() /** * Displays the footer */ -require_once './libraries/footer.inc.php'; +require './libraries/footer.inc.php'; ?> diff --git a/tbl_addfield.php b/tbl_addfield.php index 40b9ab2d8..e32ba3085 100644 --- a/tbl_addfield.php +++ b/tbl_addfield.php @@ -224,7 +224,7 @@ if ($abort == false) { require_once './libraries/tbl_properties.inc.php'; // Diplays the footer - require_once './libraries/footer.inc.php'; + require './libraries/footer.inc.php'; } ?> diff --git a/tbl_alter.php b/tbl_alter.php index e4a12b53a..d990f0386 100644 --- a/tbl_alter.php +++ b/tbl_alter.php @@ -200,5 +200,5 @@ if ($abort == false) { /** * Displays the footer */ -require_once './libraries/footer.inc.php'; +require './libraries/footer.inc.php'; ?> diff --git a/tbl_change.php b/tbl_change.php index 150e73bc4..8ec78f544 100644 --- a/tbl_change.php +++ b/tbl_change.php @@ -174,7 +174,7 @@ if (isset($where_clause)) { unset($rows[$key_id], $where_clause_array[$key_id]); PMA_showMessage(__('MySQL returned an empty result set (i.e. zero rows).'), $local_query); echo "\n"; - require_once './libraries/footer.inc.php'; + require './libraries/footer.inc.php'; } else { // end if (no row returned) $meta = PMA_DBI_get_fields_meta($result[$key_id]); list($unique_condition, $tmp_clause_is_unique) = PMA_getUniqueCondition($result[$key_id], count($meta), $meta, $rows[$key_id], true); @@ -1111,5 +1111,5 @@ if ($insert_mode) { /** * Displays the footer */ -require_once './libraries/footer.inc.php'; +require './libraries/footer.inc.php'; ?> diff --git a/tbl_create.php b/tbl_create.php index fc3fe655c..bffc93497 100644 --- a/tbl_create.php +++ b/tbl_create.php @@ -272,5 +272,5 @@ if (isset($_REQUEST['do_save_data'])) { */ require './libraries/tbl_properties.inc.php'; // Displays the footer -require_once './libraries/footer.inc.php'; +require './libraries/footer.inc.php'; ?> diff --git a/tbl_export.php b/tbl_export.php index eeaf24815..959a95dc9 100644 --- a/tbl_export.php +++ b/tbl_export.php @@ -88,5 +88,5 @@ require_once './libraries/display_export.lib.php'; /** * Displays the footer */ -require_once './libraries/footer.inc.php'; +require './libraries/footer.inc.php'; ?> diff --git a/tbl_import.php b/tbl_import.php index ead8ff0e7..6fb74cd2a 100644 --- a/tbl_import.php +++ b/tbl_import.php @@ -28,6 +28,6 @@ require_once './libraries/display_import.lib.php'; /** * Displays the footer */ -require_once './libraries/footer.inc.php'; +require './libraries/footer.inc.php'; ?> diff --git a/tbl_indexes.php b/tbl_indexes.php index eb6deb9bd..166c6aa6c 100644 --- a/tbl_indexes.php +++ b/tbl_indexes.php @@ -261,5 +261,5 @@ echo ' diff --git a/tbl_operations.php b/tbl_operations.php index 5e0e66b4a..829ed1316 100644 --- a/tbl_operations.php +++ b/tbl_operations.php @@ -743,7 +743,7 @@ if ($cfgRelation['relwork'] && ! $is_innodb) { /** * Displays the footer */ -require_once './libraries/footer.inc.php'; +require './libraries/footer.inc.php'; function PMA_set_global_variables_for_engine($tbl_type) diff --git a/tbl_printview.php b/tbl_printview.php index 4fd966d4c..74b6818e4 100644 --- a/tbl_printview.php +++ b/tbl_printview.php @@ -496,5 +496,5 @@ function printPage() onclick="printPage()" />

    diff --git a/tbl_relation.php b/tbl_relation.php index c05787614..68288e11a 100644 --- a/tbl_relation.php +++ b/tbl_relation.php @@ -569,5 +569,5 @@ if ($col_rs && PMA_DBI_num_rows($col_rs) > 0) { /** * Displays the footer */ -require_once './libraries/footer.inc.php'; +require './libraries/footer.inc.php'; ?> diff --git a/tbl_row_action.php b/tbl_row_action.php index 62fc2044a..8a9db7a58 100644 --- a/tbl_row_action.php +++ b/tbl_row_action.php @@ -28,7 +28,7 @@ if (! PMA_isValid($_REQUEST['rows_to_delete'], 'array') $disp_message = __('No rows selected'); $disp_query = ''; require './sql.php'; - require_once './libraries/footer.inc.php'; + require './libraries/footer.inc.php'; } if (isset($_REQUEST['submit_mult'])) { @@ -148,7 +148,7 @@ if (!empty($submit_mult)) { /** * Displays the footer */ - require_once './libraries/footer.inc.php'; + require './libraries/footer.inc.php'; break; } } diff --git a/tbl_select.php b/tbl_select.php index 31c25cb68..d47baf791 100644 --- a/tbl_select.php +++ b/tbl_select.php @@ -324,7 +324,7 @@ $(function() { diff --git a/tbl_structure.php b/tbl_structure.php index 82893ac87..e78fd85c5 100644 --- a/tbl_structure.php +++ b/tbl_structure.php @@ -842,5 +842,5 @@ echo '
    ' . "\n"; /** * Displays the footer */ -require_once './libraries/footer.inc.php'; +require './libraries/footer.inc.php'; ?> diff --git a/tbl_tracking.php b/tbl_tracking.php index f7765b1c8..6ba754310 100644 --- a/tbl_tracking.php +++ b/tbl_tracking.php @@ -691,5 +691,5 @@ if ($last_version > 0) { /** * Displays the footer */ -require_once './libraries/footer.inc.php'; +require './libraries/footer.inc.php'; ?> diff --git a/transformation_overview.php b/transformation_overview.php index acf2ca489..81211d564 100644 --- a/transformation_overview.php +++ b/transformation_overview.php @@ -77,5 +77,5 @@ foreach ($types['transformation'] as $key => $transform) { /** * Displays the footer */ -require_once './libraries/footer.inc.php'; +require './libraries/footer.inc.php'; ?> diff --git a/user_password.php b/user_password.php index 89bc1385f..cd84b790a 100644 --- a/user_password.php +++ b/user_password.php @@ -47,7 +47,7 @@ if (!$cfg['ShowChgPassword']) { if ($cfg['Server']['auth_type'] == 'config' || !$cfg['ShowChgPassword']) { require_once './libraries/header.inc.php'; PMA_Message::error(__('You don\'t have sufficient privileges to be here right now!'))->display(); - require_once './libraries/footer.inc.php'; + require './libraries/footer.inc.php'; } // end if @@ -109,7 +109,7 @@ if (isset($_REQUEST['nopass'])) { diff --git a/view_create.php b/view_create.php index a1de4cc5b..c7d63cef7 100644 --- a/view_create.php +++ b/view_create.php @@ -186,6 +186,6 @@ $url_params['reload'] = 1; /** * Displays the footer */ -require_once './libraries/footer.inc.php'; +require './libraries/footer.inc.php'; ?> diff --git a/view_operations.php b/view_operations.php index 08c26d6e1..aabb7d1aa 100644 --- a/view_operations.php +++ b/view_operations.php @@ -106,5 +106,5 @@ $url_params['back'] = 'view_operations.php'; /** * Displays the footer */ -require_once './libraries/footer.inc.php'; +require './libraries/footer.inc.php'; ?> From 2dffa21b0c3679020a23e6e3b6e6fa59fd55a361 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Mon, 26 Jul 2010 16:28:23 +0200 Subject: [PATCH 054/212] Loaded by common. --- libraries/Theme_Manager.class.php | 5 ----- 1 file changed, 5 deletions(-) diff --git a/libraries/Theme_Manager.class.php b/libraries/Theme_Manager.class.php index c5298f378..4ca8517da 100644 --- a/libraries/Theme_Manager.class.php +++ b/libraries/Theme_Manager.class.php @@ -5,11 +5,6 @@ * @package phpMyAdmin */ -/** - * - */ -require_once './libraries/Theme.class.php'; - /** * * @package phpMyAdmin From c1f076000be6ce5fa1f72b0a3ae44db69eb110ea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Mon, 26 Jul 2010 16:28:56 +0200 Subject: [PATCH 055/212] No need to require_once here. --- error.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/error.php b/error.php index 040da492d..117d070a2 100644 --- a/error.php +++ b/error.php @@ -9,7 +9,7 @@ /** * Input sanitizing. */ -require_once './libraries/sanitizing.lib.php'; +require './libraries/sanitizing.lib.php'; /* Get variables */ if (! empty($_REQUEST['lang']) && is_string($_REQUEST['lang'])) { From 81a4fdf0c9567f981807684a8083e5789b112b07 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Mon, 26 Jul 2010 16:35:24 +0200 Subject: [PATCH 056/212] No need for require_once for once included code. --- libraries/common.inc.php | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/libraries/common.inc.php b/libraries/common.inc.php index d1a6d948f..80866fffa 100644 --- a/libraries/common.inc.php +++ b/libraries/common.inc.php @@ -49,7 +49,7 @@ if (!defined('E_DEPRECATED')) { /** * the error handler */ -require_once './libraries/Error_Handler.class.php'; +require './libraries/Error_Handler.class.php'; /** * initialize the error handler @@ -78,42 +78,42 @@ define('PHPMYADMIN', true); /** * core functions */ -require_once './libraries/core.lib.php'; +require './libraries/core.lib.php'; /** * Input sanitizing */ -require_once './libraries/sanitizing.lib.php'; +require './libraries/sanitizing.lib.php'; /** * the PMA_Theme class */ -require_once './libraries/Theme.class.php'; +require './libraries/Theme.class.php'; /** * the PMA_Theme_Manager class */ -require_once './libraries/Theme_Manager.class.php'; +require './libraries/Theme_Manager.class.php'; /** * the PMA_Config class */ -require_once './libraries/Config.class.php'; +require './libraries/Config.class.php'; /** * the relation lib, tracker needs it */ -require_once './libraries/relation.lib.php'; +require './libraries/relation.lib.php'; /** * the PMA_Tracker class */ -require_once './libraries/Tracker.class.php'; +require './libraries/Tracker.class.php'; /** * the PMA_Table class */ -require_once './libraries/Table.class.php'; +require './libraries/Table.class.php'; if (!defined('PMA_MINIMUM_COMMON')) { /** @@ -334,7 +334,7 @@ if ($GLOBALS['PMA_Config']->get('ForceSSL') /** * include session handling after the globals, to prevent overwriting */ -require_once './libraries/session.inc.php'; +require './libraries/session.inc.php'; /** * init some variables LABEL_variables_init @@ -478,7 +478,7 @@ if (! PMA_isValid($_REQUEST['token']) || $_SESSION[' PMA_token '] != $_REQUEST[' /** * Require cleanup functions */ - require_once './libraries/cleanup.lib.php'; + require './libraries/cleanup.lib.php'; /** * Do actual cleanup */ From 3910ce61212e44d944ccbd924fd50d69419af548 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Mon, 26 Jul 2010 16:35:52 +0200 Subject: [PATCH 057/212] Remove explicit inclusion of Table.class.php as it is included in common.inc anyway. --- db_operations.php | 1 - db_qbe.php | 2 -- db_structure.php | 3 +-- db_tracking.php | 1 - libraries/database_interface.lib.php | 2 -- libraries/db_table_exists.lib.php | 5 ----- libraries/display_export.lib.php | 5 ----- libraries/display_tbl.lib.php | 1 - libraries/relation.lib.php | 5 ----- libraries/tbl_info.inc.php | 5 ----- sql.php | 1 - tbl_addfield.php | 1 - tbl_alter.php | 1 - tbl_create.php | 1 - tbl_move_copy.php | 1 - tbl_operations.php | 1 - tbl_tracking.php | 1 - view_operations.php | 1 - 18 files changed, 1 insertion(+), 37 deletions(-) diff --git a/db_operations.php b/db_operations.php index 5d4844051..c2464b030 100644 --- a/db_operations.php +++ b/db_operations.php @@ -16,7 +16,6 @@ * requirements */ require_once './libraries/common.inc.php'; -require_once './libraries/Table.class.php'; require_once './libraries/mysql_charsets.lib.php'; /** diff --git a/db_qbe.php b/db_qbe.php index 5599bad5d..2475065fc 100644 --- a/db_qbe.php +++ b/db_qbe.php @@ -10,8 +10,6 @@ * requirements */ require_once './libraries/common.inc.php'; -require_once './libraries/Table.class.php'; - /** * Gets the relation settings diff --git a/db_structure.php b/db_structure.php index 899fa9515..9e118210b 100644 --- a/db_structure.php +++ b/db_structure.php @@ -9,7 +9,6 @@ * */ require_once './libraries/common.inc.php'; -require_once './libraries/Table.class.php'; $GLOBALS['js_include'][] = 'jquery/jquery-ui-1.8.custom.js'; @@ -157,7 +156,7 @@ foreach ($tables as $keyname => $each_table) { $tableReductionCount++; continue; } - + // Get valid statistics whatever is the table type $table_is_view = false; diff --git a/db_tracking.php b/db_tracking.php index 2ff54f0ef..1c8c5cece 100644 --- a/db_tracking.php +++ b/db_tracking.php @@ -8,7 +8,6 @@ * Run common work */ require_once './libraries/common.inc.php'; -require_once './libraries/Table.class.php'; require './libraries/db_common.inc.php'; $url_query .= '&goto=tbl_tracking.php&back=db_tracking.php'; diff --git a/libraries/database_interface.lib.php b/libraries/database_interface.lib.php index 2f24e4fb7..c5b3ca450 100644 --- a/libraries/database_interface.lib.php +++ b/libraries/database_interface.lib.php @@ -237,8 +237,6 @@ function PMA_usort_comparison_callback($a, $b) function PMA_DBI_get_tables_full($database, $table = false, $tbl_is_group = false, $link = null, $limit_offset = 0, $limit_count = false, $sort_by = 'Name', $sort_order = 'ASC') { - require_once './libraries/Table.class.php'; - if (true === $limit_count) { $limit_count = $GLOBALS['cfg']['MaxTableList']; } diff --git a/libraries/db_table_exists.lib.php b/libraries/db_table_exists.lib.php index 1110dc52d..af7599177 100644 --- a/libraries/db_table_exists.lib.php +++ b/libraries/db_table_exists.lib.php @@ -10,11 +10,6 @@ if (! defined('PHPMYADMIN')) { exit; } -/** - * - */ -require_once './libraries/Table.class.php'; - if (empty($is_db)) { if (strlen($db)) { $is_db = @PMA_DBI_select_db($db); diff --git a/libraries/display_export.lib.php b/libraries/display_export.lib.php index 5f52d1869..c7952812f 100644 --- a/libraries/display_export.lib.php +++ b/libraries/display_export.lib.php @@ -8,11 +8,6 @@ if (! defined('PHPMYADMIN')) { exit; } -/** - * - */ -require_once './libraries/Table.class.php'; - // Get relations & co. status $cfgRelation = PMA_getRelationsParam(); diff --git a/libraries/display_tbl.lib.php b/libraries/display_tbl.lib.php index a435e3b90..747c5b501 100644 --- a/libraries/display_tbl.lib.php +++ b/libraries/display_tbl.lib.php @@ -9,7 +9,6 @@ /** * */ -require_once './libraries/Table.class.php'; require_once './libraries/Index.class.php'; /** diff --git a/libraries/relation.lib.php b/libraries/relation.lib.php index cb8a23e6f..e6ebdc5f9 100644 --- a/libraries/relation.lib.php +++ b/libraries/relation.lib.php @@ -9,11 +9,6 @@ if (! defined('PHPMYADMIN')) { exit; } -/** - * - */ -require_once './libraries/Table.class.php'; - /** * Executes a query as controluser if possible, otherwise as normal user * diff --git a/libraries/tbl_info.inc.php b/libraries/tbl_info.inc.php index e97c2fb7d..00c990413 100644 --- a/libraries/tbl_info.inc.php +++ b/libraries/tbl_info.inc.php @@ -12,11 +12,6 @@ if (! defined('PHPMYADMIN')) { exit; } -/** - * - */ -require_once './libraries/Table.class.php'; - /** * requirements */ diff --git a/sql.php b/sql.php index 28c645810..ed6f7d447 100644 --- a/sql.php +++ b/sql.php @@ -10,7 +10,6 @@ * Gets some core libraries */ require_once './libraries/common.inc.php'; -require_once './libraries/Table.class.php'; require_once './libraries/check_user_privileges.lib.php'; require_once './libraries/bookmark.lib.php'; diff --git a/tbl_addfield.php b/tbl_addfield.php index e32ba3085..ec910fdf4 100644 --- a/tbl_addfield.php +++ b/tbl_addfield.php @@ -9,7 +9,6 @@ * Get some core libraries */ require_once './libraries/common.inc.php'; -require_once './libraries/Table.class.php'; require_once './libraries/header.inc.php'; diff --git a/tbl_alter.php b/tbl_alter.php index d990f0386..4c00acd5e 100644 --- a/tbl_alter.php +++ b/tbl_alter.php @@ -13,7 +13,6 @@ * Gets some core libraries */ require_once './libraries/common.inc.php'; -require_once './libraries/Table.class.php'; require_once './libraries/header.inc.php'; diff --git a/tbl_create.php b/tbl_create.php index bffc93497..4f6b56f63 100644 --- a/tbl_create.php +++ b/tbl_create.php @@ -34,7 +34,6 @@ * Get some core libraries */ require_once './libraries/common.inc.php'; -require_once './libraries/Table.class.php'; $action = 'tbl_create.php'; diff --git a/tbl_move_copy.php b/tbl_move_copy.php index fa8a11e4f..9f0e229b4 100644 --- a/tbl_move_copy.php +++ b/tbl_move_copy.php @@ -9,7 +9,6 @@ * Gets some core libraries */ require_once './libraries/common.inc.php'; -require_once './libraries/Table.class.php'; // Check parameters diff --git a/tbl_operations.php b/tbl_operations.php index 829ed1316..493a17ff4 100644 --- a/tbl_operations.php +++ b/tbl_operations.php @@ -9,7 +9,6 @@ * */ require_once './libraries/common.inc.php'; -require_once './libraries/Table.class.php'; $pma_table = new PMA_Table($GLOBALS['table'], $GLOBALS['db']); diff --git a/tbl_tracking.php b/tbl_tracking.php index 6ba754310..9b9dbcfe0 100644 --- a/tbl_tracking.php +++ b/tbl_tracking.php @@ -7,7 +7,6 @@ // Run common work require_once './libraries/common.inc.php'; -require_once './libraries/Table.class.php'; define('TABLE_MAY_BE_ABSENT', true); require './libraries/tbl_common.php'; diff --git a/view_operations.php b/view_operations.php index aabb7d1aa..2149e15eb 100644 --- a/view_operations.php +++ b/view_operations.php @@ -9,7 +9,6 @@ * */ require_once './libraries/common.inc.php'; -require_once './libraries/Table.class.php'; $pma_table = new PMA_Table($GLOBALS['table'], $GLOBALS['db']); From 180018d4dc071a5b9a14de740be2242eab66e051 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Mon, 26 Jul 2010 16:38:31 +0200 Subject: [PATCH 058/212] Drop suppor from PMA_fatalError for str* variables. It is not used anywhere now. --- libraries/core.lib.php | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/libraries/core.lib.php b/libraries/core.lib.php index dcbf1778b..40c7e569f 100644 --- a/libraries/core.lib.php +++ b/libraries/core.lib.php @@ -235,15 +235,6 @@ function PMA_fatalError($error_message, $message_args = null) } } - // $error_message could be a language string identifier: strString - if (substr($error_message, 0, 3) === 'str') { - if (isset($$error_message)) { - $error_message = $$error_message; - } elseif (isset($GLOBALS[$error_message])) { - $error_message = $GLOBALS[$error_message]; - } - } - if (is_string($message_args)) { $error_message = sprintf($error_message, $message_args); } elseif (is_array($message_args)) { @@ -316,7 +307,7 @@ function PMA_getTableCount($db) $num_tables--; } } - + PMA_DBI_free_result($tables); } else { $num_tables = 0; From 9da795245ef207897bbb4ddb6b0706535549b753 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Mon, 26 Jul 2010 16:39:04 +0200 Subject: [PATCH 059/212] It makes no sense load translations here Either the message is translated or not, but we can not do much about it. --- libraries/core.lib.php | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/libraries/core.lib.php b/libraries/core.lib.php index 40c7e569f..cdc3b664b 100644 --- a/libraries/core.lib.php +++ b/libraries/core.lib.php @@ -220,21 +220,6 @@ function PMA_securePath($path) */ function PMA_fatalError($error_message, $message_args = null) { - // it could happen PMA_fatalError() is called before language file is loaded - if (! isset($GLOBALS['available_languages'])) { - $GLOBALS['cfg'] = array( - 'DefaultLang' => 'en', - ); - - // Loads the language file - require_once './libraries/select_lang.lib.php'; - - // $text_dir is set in po file - if (isset($text_dir)) { - $GLOBALS['text_dir'] = $text_dir; - } - } - if (is_string($message_args)) { $error_message = sprintf($error_message, $message_args); } elseif (is_array($message_args)) { From 5684d400593e4b7f57038c91e18c8f89c4cf9de0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Mon, 26 Jul 2010 16:39:55 +0200 Subject: [PATCH 060/212] Documentation. --- libraries/core.lib.php | 1 + 1 file changed, 1 insertion(+) diff --git a/libraries/core.lib.php b/libraries/core.lib.php index cdc3b664b..c1a0b4be4 100644 --- a/libraries/core.lib.php +++ b/libraries/core.lib.php @@ -220,6 +220,7 @@ function PMA_securePath($path) */ function PMA_fatalError($error_message, $message_args = null) { + /* Use format string if applicable */ if (is_string($message_args)) { $error_message = sprintf($error_message, $message_args); } elseif (is_array($message_args)) { From 5f88219d18cc76bae06757806be85fb662604bcf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Mon, 26 Jul 2010 16:40:43 +0200 Subject: [PATCH 061/212] Included only from single place, no need for require_once. --- libraries/common.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/common.inc.php b/libraries/common.inc.php index 80866fffa..a728c5a81 100644 --- a/libraries/common.inc.php +++ b/libraries/common.inc.php @@ -557,7 +557,7 @@ $GLOBALS['footnotes'] = array(); /** * lang detection is done here */ -require_once './libraries/select_lang.lib.php'; +require './libraries/select_lang.lib.php'; /** * check for errors occurred while loading configuration From ed34bb905448199dc317734bd4c9547b9aaa3a3f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Mon, 26 Jul 2010 16:41:49 +0200 Subject: [PATCH 062/212] Adjust documentation to gettext. --- config.sample.inc.php | 2 +- libraries/config.default.php | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/config.sample.inc.php b/config.sample.inc.php index 679555bca..da403fd2b 100644 --- a/config.sample.inc.php +++ b/config.sample.inc.php @@ -94,7 +94,7 @@ $cfg['SaveDir'] = ''; /** * Default language to use, if not browser-defined or user-defined - * (you find all languages in the file libraries/select_lang.lib.php) + * (you find all languages in the locale folder) * uncomment the desired line: * default = 'en' */ diff --git a/libraries/config.default.php b/libraries/config.default.php index 28aa85e3b..4f71e5610 100644 --- a/libraries/config.default.php +++ b/libraries/config.default.php @@ -1932,8 +1932,7 @@ $cfg['DefaultLang'] = 'en'; $cfg['DefaultConnectionCollation'] = 'utf8_general_ci'; /** - * Force: always use this language - must be defined in - * libraries/select_lang.lib.php + * Force: always use this language * $cfg['Lang'] = 'en'; * * Regular expression to limit listed languages, e.g. '^(cs|en)' for Czech and From ebc3f1b3c6a8966fbaee4f6880319d7920ec31dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Mon, 26 Jul 2010 16:43:26 +0200 Subject: [PATCH 063/212] Included just once. --- libraries/select_lang.lib.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/select_lang.lib.php b/libraries/select_lang.lib.php index ca8c7cc06..06b35f49d 100644 --- a/libraries/select_lang.lib.php +++ b/libraries/select_lang.lib.php @@ -367,7 +367,7 @@ $GLOBALS['lang_path'] = './locale/'; /** * Load gettext functions. */ -require_once './libraries/php-gettext/gettext.inc'; +require './libraries/php-gettext/gettext.inc'; /** * @global string interface language From f700a73c81668adcc59d0ccc24ca89ab87bd3663 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Mon, 26 Jul 2010 16:44:47 +0200 Subject: [PATCH 064/212] No need for require_once in these files. --- themes.php | 4 ++-- webapp.php | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/themes.php b/themes.php index a996030f4..e58933fa4 100644 --- a/themes.php +++ b/themes.php @@ -8,13 +8,13 @@ /** * get some globals */ -require_once './libraries/common.inc.php'; +require './libraries/common.inc.php'; /* Theme Select */ $path_to_themes = $cfg['ThemePath'] . '/'; /* set language and charset */ -require_once './libraries/header_http.inc.php'; +require './libraries/header_http.inc.php'; /* HTML header */ $page_title = 'phpMyAdmin - ' . __('Theme / Style'); diff --git a/webapp.php b/webapp.php index 1bae366f1..86d6bf1c2 100644 --- a/webapp.php +++ b/webapp.php @@ -13,11 +13,11 @@ define('PMA_MINIMUM_COMMON', true); /** * Gets core libraries and defines some variables */ -require_once './libraries/common.inc.php'; +require './libraries/common.inc.php'; /** * ZIP file handler. */ -require_once './libraries/zip.lib.php'; +require './libraries/zip.lib.php'; // ini file $parameters = array( From 639dc7fcf67b1277f6a0ee4d707d90daefbb975e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Mon, 26 Jul 2010 16:46:37 +0200 Subject: [PATCH 065/212] Simplify inclusions of vendor_config. --- libraries/Config.class.php | 2 +- setup/lib/config_info.inc.php | 5 ----- setup/lib/index.lib.php | 5 ----- 3 files changed, 1 insertion(+), 11 deletions(-) diff --git a/libraries/Config.class.php b/libraries/Config.class.php index 225977bef..7389b9f76 100644 --- a/libraries/Config.class.php +++ b/libraries/Config.class.php @@ -9,7 +9,7 @@ /** * Load vendor configuration. */ -require_once('./libraries/vendor_config.php'); +require('./libraries/vendor_config.php'); /** * Configuration class diff --git a/setup/lib/config_info.inc.php b/setup/lib/config_info.inc.php index afc124ac6..b48cb5d47 100644 --- a/setup/lib/config_info.inc.php +++ b/setup/lib/config_info.inc.php @@ -15,11 +15,6 @@ if (!defined('PHPMYADMIN')) { exit; } -/** - * Load paths. - */ -require_once('./libraries/vendor_config.php'); - $cfg_db = array(); // path to config file, relative to phpMyAdmin's root path diff --git a/setup/lib/index.lib.php b/setup/lib/index.lib.php index 8cb2ed1c2..115cc9fd6 100644 --- a/setup/lib/index.lib.php +++ b/setup/lib/index.lib.php @@ -15,11 +15,6 @@ if (!defined('PHPMYADMIN')) { exit; } -/** - * Load vendor config. - */ -require_once('./libraries/vendor_config.php'); - /** * Initializes message list */ From 232ebc3c8c4c961526c9cc79a5f2605eb273fc10 Mon Sep 17 00:00:00 2001 From: Robert Readman Date: Mon, 26 Jul 2010 16:53:54 +0200 Subject: [PATCH 066/212] Translation update done using Pootle. --- po/en_GB.po | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/po/en_GB.po b/po/en_GB.po index 2348e4fab..54590d3c4 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -4,8 +4,8 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-21 13:53+0200\n" -"PO-Revision-Date: 2010-07-21 14:43+0200\n" -"Last-Translator: Marc Delisle \n" +"PO-Revision-Date: 2010-07-26 16:53+0200\n" +"Last-Translator: Robert Readman \n" "Language-Team: english-gb \n" "Language: en_GB\n" "MIME-Version: 1.0\n" @@ -1674,10 +1674,9 @@ msgid "MySQL said: " msgstr "MySQL said: " #: libraries/common.lib.php:1136 -#, fuzzy #| msgid "Could not connect to MySQL server" msgid "Failed to connect to SQL validator!" -msgstr "Could not connect to MySQL server" +msgstr "Failed to connect to SQL validator!" #: libraries/common.lib.php:1174 setup/lib/messages.inc.php:350 msgid "Explain SQL" From 3d6e28865133b6ba1029b5cc3e82f1dd7b5d5b25 Mon Sep 17 00:00:00 2001 From: Robert Readman Date: Mon, 26 Jul 2010 16:54:15 +0200 Subject: [PATCH 067/212] Translation update done using Pootle. --- po/en_GB.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/en_GB.po b/po/en_GB.po index 54590d3c4..a1a3b9a46 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-21 13:53+0200\n" -"PO-Revision-Date: 2010-07-26 16:53+0200\n" +"PO-Revision-Date: 2010-07-26 16:54+0200\n" "Last-Translator: Robert Readman \n" "Language-Team: english-gb \n" "Language: en_GB\n" @@ -7735,10 +7735,9 @@ msgid "Showing SQL query" msgstr "Showing SQL query" #: sql.php:517 -#, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" -msgstr "Validate SQL" +msgstr "Validated SQL" #: sql.php:638 #, php-format From cfc7fd7a2dda8ce07647369593da3040c3603c72 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Mon, 26 Jul 2010 17:16:55 +0200 Subject: [PATCH 068/212] The linked-tables infrastructure is now called phpMyAdmin configuration storage. --- ChangeLog | 2 ++ Documentation.html | 41 ++++++++++++++++++-------------------- db_operations.php | 2 +- pdf_schema.php | 2 +- setup/lib/messages.inc.php | 2 +- 5 files changed, 24 insertions(+), 25 deletions(-) diff --git a/ChangeLog b/ChangeLog index 3adda532e..b75e9c818 100644 --- a/ChangeLog +++ b/ChangeLog @@ -95,6 +95,8 @@ $Id$ now. + [validator] SQL validator works also with SOAP PHP extension. - [interface] Better formatting for SQL validator results. +- [doc] The linked-tables infrastructure is now called phpMyAdmin + configuration storage. 3.3.6.0 (not yet released) - bug #3033063 [core] Navi gets wrong db name diff --git a/Documentation.html b/Documentation.html index 3e5edeea3..d5c5d4516 100644 --- a/Documentation.html +++ b/Documentation.html @@ -170,7 +170,7 @@ vim: expandtab ts=4 sw=4 sts=4 tw=78
    1. Quick Install
    2. Setup script usage
    3. -
    4. Linked-tables infrastructure
    5. +
    6. phpMyAdmin configuration storage
    7. Upgrading from an older version
    8. Using authentication modes
    @@ -326,7 +326,7 @@ rm -rf config # remove not needed directory -

    Linked-tables infrastructure

    +

    phpMyAdmin configuration storage

    For a whole set of new features (bookmarks, comments, SQL-history, @@ -373,7 +373,7 @@ rm -rf config # remove not needed directory is version-specific.

    If you have upgraded your MySQL server from a version previous to 4.1.2 to - version 4.1.2 or newer and if you use the pmadb/linked table infrastructure, + version 4.1.2 or newer and if you use the phpMyAdmin configuration storage, you should run the SQL script found in scripts/upgrade_tables_mysql_4_1_2+.sql.

    @@ -443,8 +443,9 @@ GRANT SELECT (Host, Db, User, Table_name, Table_priv, Column_priv) GRANT SELECT, INSERT, UPDATE, DELETE ON <pma_db>.* TO 'pma'@'localhost'; - (this of course requires that your linked-tables - infrastructure be set up).
    + (this of course requires that your phpMyAdmin + configuration storage be set up). +
  • Then each of the true users should be granted a set of privileges on a set of particular databases. Normally you shouldn't give global @@ -865,11 +866,11 @@ since this link provides funding for phpMyAdmin.
    $cfg['Servers'][$i]['pmadb'] string
    -
    The name of the database containing the linked-tables infrastructure. +
    The name of the database containing the phpMyAdmin configuration storage.

    - See the Linked-tables infrastructure - section in this document to see the benefits of this infrastructure, + See the phpMyAdmin configuration storage + section in this document to see the benefits of this feature, and for a quick way of creating this database and the needed tables.

    @@ -878,7 +879,7 @@ since this link provides funding for phpMyAdmin. case, just put your current database name in $cfg['Servers'][$i]['pmadb']. For a multi-user installation, set this parameter to the name of your central database containing - the linked-tables infrastructure.
    + the phpMyAdmin configuration storage.
    $cfg['Servers'][$i]['bookmarktable'] string @@ -887,7 +888,7 @@ since this link provides funding for phpMyAdmin. useful for queries you often run.

    To allow the usage of this functionality: -
    • set up pmadb and the linked-tables infrastructure
    • +
      • set up pmadb and the phpMyAdmin configuration storage
      • enter the table name in $cfg['Servers'][$i]['bookmarktable']
      @@ -923,8 +924,8 @@ since this link provides funding for phpMyAdmin. To allow the usage of this functionality: -
      • set up pmadb and the linked-tables - infrastructure
      • +
        • set up pmadb and the phpMyAdmin + configuration storage
        • put the relation table name in $cfg['Servers'][$i]['relation']
        • now as normal user open phpMyAdmin and for each one of your @@ -948,7 +949,7 @@ since this link provides funding for phpMyAdmin. cursor over the corresponding key.
          This configuration variable will hold the name of this special table. To allow the usage of this functionality: -
          • set up pmadb and the linked-tables infrastructure
          • +
            • set up pmadb and the phpMyAdmin configuration storage
            • put the table name in $cfg['Servers'][$i]['table_info'] (e.g. 'pma_table_info')
            • @@ -975,8 +976,7 @@ since this link provides funding for phpMyAdmin. To allow the usage of this functionality: -
              • set up pmadb and the linked-tables - infrastructure
              • +
                • set up pmadb and the phpMyAdmin configuration storage
                • put the correct table names in $cfg['Servers'][$i]['table_coords'] and $cfg['Servers'][$i]['pdf_pages']
                • @@ -1007,8 +1007,7 @@ since this link provides funding for phpMyAdmin.

                  To allow the usage of this functionality: -
                  • set up pmadb and the linked-tables - infrastructure
                  • +
                    • set up pmadb and the phpMyAdmin configuration storage
                    • put the table name in $cfg['Servers'][$i]['column_info'] (e.g. 'pma_column_info')
                    • @@ -1048,8 +1047,7 @@ ALTER TABLE `pma_column_comments` To allow the usage of this functionality: -
                      • set up pmadb and the linked-tables - infrastructure
                      • +
                        • set up pmadb and the phpMyAdmin configuration storage
                        • put the table name in $cfg['Servers'][$i]['history'] (e.g. 'pma_history')
                        • @@ -1081,7 +1079,7 @@ ALTER TABLE `pma_column_comments` To allow the usage of this functionality:
                            -
                          • set up pmadb and the linked-tables infrastructure
                          • +
                          • set up pmadb and the phpMyAdmin configuration storage
                          • put the table name in $cfg['Servers'][$i]['tracking'] (e.g. 'pma_tracking')
                          @@ -1152,8 +1150,7 @@ CREATE DATABASE,ALTER DATABASE,DROP DATABASE To allow the usage of this functionality: -
                          • set up pmadb and the linked-tables - infrastructure
                          • +
                            • set up pmadb and the phpMyAdmin configuration storage
                            • put the table name in $cfg['Servers'][$i]['designer_coords'] (e.g. 'pma_designer_coords')
                            diff --git a/db_operations.php b/db_operations.php index c2464b030..eb8c6a2f2 100644 --- a/db_operations.php +++ b/db_operations.php @@ -461,7 +461,7 @@ if (!$is_information_schema) { if ($num_tables > 0 && !$cfgRelation['allworks'] && $cfg['PmaNoRelation_DisableWarning'] == false) { - $message = PMA_Message::notice(__('The additional features for working with linked tables have been deactivated. To find out why click %shere%s.')); + $message = PMA_Message::notice(__('The phpMyAdmin configuration storage has been deactivated. To find out why click %shere%s.')); $message->addParam('', false); $message->addParam('', false); /* Show error if user has configured something, notice elsewhere */ diff --git a/pdf_schema.php b/pdf_schema.php index a1c16e6bb..dd7426f1b 100644 --- a/pdf_schema.php +++ b/pdf_schema.php @@ -29,7 +29,7 @@ $cfgRelation = PMA_getRelationsParam(); if (!$cfgRelation['pdfwork']) { echo '' . __('Error') . '
                            ' . "\n"; $url_to_goto = ''; - echo sprintf(__('The additional features for working with linked tables have been deactivated. To find out why click %shere%s.'), $url_to_goto, '') . "\n"; + echo sprintf(__('The phpMyAdmin configuration storage has been deactivated. To find out why click %shere%s.'), $url_to_goto, '') . "\n"; } /** diff --git a/setup/lib/messages.inc.php b/setup/lib/messages.inc.php index ef1f42b84..d1ceb05ed 100644 --- a/setup/lib/messages.inc.php +++ b/setup/lib/messages.inc.php @@ -125,7 +125,7 @@ $strSetupForm_Server_config = __('Server configuration'); $strSetupForm_Server_desc = __('Enter server connection parameters'); $strSetupForm_Server_login_options_desc = __('Enter login options for signon authentication'); $strSetupForm_Server_login_options = __('Signon login options'); -$strSetupForm_Server_pmadb_desc = __('Configure phpMyAdmin database to gain access to additional features, see [a@../Documentation.html#linked-tables]linked-tables infrastructure[/a] in documentation'); +$strSetupForm_Server_pmadb_desc = __('Configure phpMyAdmin database to gain access to additional features, see [a@../Documentation.html#linked-tables]phpMyAdmin configuration storage[/a] in documentation'); $strSetupForm_Server_pmadb = __('PMA database'); $strSetupForm_Server_tracking_desc = __('Tracking of changes made in database. Requires configured PMA database.'); $strSetupForm_Server_tracking = __('Changes tracking'); From d8324ec67aa51acf7eb53aae2dc2c36114434ea8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Mon, 26 Jul 2010 17:18:45 +0200 Subject: [PATCH 069/212] Update po files. --- po/af.po | 2150 +++++++++++++++++++++++--------------------- po/ar.po | 2146 +++++++++++++++++++++++--------------------- po/az.po | 2150 +++++++++++++++++++++++--------------------- po/be.po | 2165 +++++++++++++++++++++++--------------------- po/be@latin.po | 2153 +++++++++++++++++++++++--------------------- po/bg.po | 2153 +++++++++++++++++++++++--------------------- po/bn.po | 2150 +++++++++++++++++++++++--------------------- po/bs.po | 2150 +++++++++++++++++++++++--------------------- po/ca.po | 2169 +++++++++++++++++++++++--------------------- po/cs.po | 2159 +++++++++++++++++++++++--------------------- po/cy.po | 2146 +++++++++++++++++++++++--------------------- po/da.po | 2145 +++++++++++++++++++++++--------------------- po/de.po | 2159 +++++++++++++++++++++++--------------------- po/el.po | 2163 +++++++++++++++++++++++--------------------- po/en_GB.po | 2161 +++++++++++++++++++++++--------------------- po/es.po | 2171 +++++++++++++++++++++++--------------------- po/et.po | 2150 +++++++++++++++++++++++--------------------- po/eu.po | 2152 +++++++++++++++++++++++--------------------- po/fa.po | 2146 +++++++++++++++++++++++--------------------- po/fi.po | 2169 +++++++++++++++++++++++--------------------- po/fr.po | 2163 +++++++++++++++++++++++--------------------- po/gl.po | 2171 +++++++++++++++++++++++--------------------- po/he.po | 2149 +++++++++++++++++++++++--------------------- po/hi.po | 2142 +++++++++++++++++++++++--------------------- po/hr.po | 2170 ++++++++++++++++++++++---------------------- po/hu.po | 2173 +++++++++++++++++++++++--------------------- po/id.po | 2144 +++++++++++++++++++++++--------------------- po/it.po | 2155 +++++++++++++++++++++++--------------------- po/ja.po | 2152 +++++++++++++++++++++++--------------------- po/ka.po | 2171 +++++++++++++++++++++++--------------------- po/ko.po | 2144 +++++++++++++++++++++++--------------------- po/lt.po | 2152 +++++++++++++++++++++++--------------------- po/lv.po | 2150 +++++++++++++++++++++++--------------------- po/mk.po | 2150 +++++++++++++++++++++++--------------------- po/mn.po | 2140 +++++++++++++++++++++++--------------------- po/ms.po | 2150 +++++++++++++++++++++++--------------------- po/nb.po | 2164 +++++++++++++++++++++++--------------------- po/nl.po | 2165 +++++++++++++++++++++++--------------------- po/phpmyadmin.pot | 2109 ++++++++++++++++++++++--------------------- po/pl.po | 2168 +++++++++++++++++++++++--------------------- po/pt.po | 2152 +++++++++++++++++++++++--------------------- po/pt_BR.po | 2148 +++++++++++++++++++++++--------------------- po/ro.po | 2160 +++++++++++++++++++++++--------------------- po/ru.po | 2175 ++++++++++++++++++++++++--------------------- po/si.po | 2152 +++++++++++++++++++++++--------------------- po/sk.po | 2155 +++++++++++++++++++++++--------------------- po/sl.po | 2157 +++++++++++++++++++++++--------------------- po/sq.po | 2144 +++++++++++++++++++++++--------------------- po/sr.po | 2152 +++++++++++++++++++++++--------------------- po/sr@latin.po | 2158 ++++++++++++++++++++++---------------------- po/sv.po | 2173 +++++++++++++++++++++++--------------------- po/ta.po | 2109 ++++++++++++++++++++++--------------------- po/te.po | 2117 ++++++++++++++++++++++--------------------- po/th.po | 2149 +++++++++++++++++++++++--------------------- po/tr.po | 2157 +++++++++++++++++++++++--------------------- po/tt.po | 2152 +++++++++++++++++++++++--------------------- po/ug.po | 2146 +++++++++++++++++++++++--------------------- po/uk.po | 2140 +++++++++++++++++++++++--------------------- po/ur.po | 2140 +++++++++++++++++++++++--------------------- po/uz.po | 2171 +++++++++++++++++++++++--------------------- po/uz@latin.po | 2171 +++++++++++++++++++++++--------------------- po/zh_CN.po | 2153 +++++++++++++++++++++++--------------------- po/zh_TW.po | 2148 +++++++++++++++++++++++--------------------- 63 files changed, 70534 insertions(+), 65134 deletions(-) diff --git a/po/af.po b/po/af.po index 84b5f2ab7..3052f80fc 100644 --- a/po/af.po +++ b/po/af.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-21 13:53+0200\n" +"POT-Creation-Date: 2010-07-26 17:18+0200\n" "PO-Revision-Date: 2010-03-30 23:04+0200\n" "Last-Translator: Michal \n" "Language-Team: afrikaans \n" @@ -14,160 +14,172 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.1\n" -#: browse_foreigners.php:37 browse_foreigners.php:58 -#: libraries/display_tbl.lib.php:416 server_privileges.php:1506 +#: browse_foreigners.php:36 browse_foreigners.php:57 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1510 msgid "Show all" msgstr "Wys alles" -#: browse_foreigners.php:81 libraries/common.lib.php:2313 -#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:393 -#: libraries/export/pdf.php:146 pdf_schema.php:282 pdf_schema.php:1122 -#: pdf_schema.php:1138 +#: browse_foreigners.php:80 libraries/common.lib.php:2318 +#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:392 +#: libraries/export/pdf.php:146 pdf_schema.php:281 pdf_schema.php:1121 +#: pdf_schema.php:1137 msgid "Page number:" msgstr "Bladsy nommer:" -#: browse_foreigners.php:131 +#: browse_foreigners.php:130 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " "cross-window updates." msgstr "" -#: browse_foreigners.php:149 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2829 -#: libraries/common.lib.php:2836 libraries/db_links.inc.php:74 -#: libraries/tbl_links.inc.php:62 +#: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 +#: db_structure.php:89 db_structure.php:91 db_structure.php:102 +#: db_structure.php:104 libraries/common.lib.php:2834 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Soek" -#: browse_foreigners.php:152 db_operations.php:384 db_operations.php:428 -#: db_operations.php:498 db_operations.php:608 db_search.php:344 -#: db_structure.php:566 js/messages.php:48 libraries/Config.class.php:1043 -#: libraries/Theme_Manager.class.php:310 +#: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 +#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 +#: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 -#: libraries/common.lib.php:1340 libraries/common.lib.php:2289 +#: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 -#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:275 -#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:531 -#: libraries/display_tbl.lib.php:613 libraries/replication_gui.lib.php:75 +#: libraries/display_export.lib.php:269 libraries/display_import.lib.php:275 +#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 +#: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 #: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:781 -#: main.php:127 navigation.php:231 pdf_pages.php:291 pdf_pages.php:327 -#: pdf_pages.php:529 pmd_pdf.php:115 server_binlog.php:128 -#: server_privileges.php:664 server_privileges.php:1616 -#: server_privileges.php:1963 server_privileges.php:2010 -#: server_privileges.php:2049 server_replication.php:234 -#: server_replication.php:317 server_replication.php:340 -#: server_synchronize.php:1208 tbl_change.php:328 tbl_change.php:1172 -#: tbl_change.php:1209 tbl_indexes.php:253 tbl_operations.php:264 -#: tbl_operations.php:301 tbl_operations.php:498 tbl_operations.php:560 -#: tbl_operations.php:680 tbl_select.php:324 tbl_structure.php:561 -#: tbl_structure.php:596 tbl_tracking.php:394 tbl_tracking.php:511 -#: view_create.php:181 view_operations.php:100 +#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 +#: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 +#: server_privileges.php:663 server_privileges.php:1620 +#: server_privileges.php:1967 server_privileges.php:2014 +#: server_privileges.php:2053 server_replication.php:233 +#: server_replication.php:316 server_replication.php:339 +#: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 +#: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 +#: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 +#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "Gaan" -#: browse_foreigners.php:167 browse_foreigners.php:171 -#: libraries/Index.class.php:441 tbl_tracking.php:319 +#: browse_foreigners.php:166 browse_foreigners.php:170 +#: libraries/Index.class.php:441 tbl_tracking.php:314 msgid "Keyname" msgstr "Sleutelnaam" -#: browse_foreigners.php:168 browse_foreigners.php:170 -#: server_collations.php:54 server_collations.php:66 server_engines.php:58 +#: browse_foreigners.php:167 browse_foreigners.php:169 +#: server_collations.php:54 server_collations.php:66 server_engines.php:57 #: server_status.php:738 #, fuzzy msgid "Description" msgstr "geen Beskrywing" -#: browse_foreigners.php:246 browse_foreigners.php:255 -#: browse_foreigners.php:267 browse_foreigners.php:275 +#: browse_foreigners.php:245 browse_foreigners.php:254 +#: browse_foreigners.php:266 browse_foreigners.php:274 msgid "Use this value" msgstr "" -#: db_create.php:45 +#: bs_disp_as_mime_type.php:29 bs_play_media.php:35 +msgid "No blob streaming server configured!" +msgstr "" + +#: bs_disp_as_mime_type.php:35 +msgid "Failed to fetch headers" +msgstr "" + +#: bs_disp_as_mime_type.php:41 +msgid "Failed to open remote URL" +msgstr "" + +#: db_create.php:44 #, fuzzy, php-format msgid "Database %1$s has been created." msgstr "Databasis %s is verwyder." -#: db_datadict.php:48 db_operations.php:377 +#: db_datadict.php:48 db_operations.php:313 #, fuzzy msgid "Database comment: " msgstr "Tabel kommentaar" -#: db_datadict.php:164 libraries/tbl_properties.inc.php:723 -#: pdf_schema.php:1235 tbl_operations.php:346 tbl_printview.php:128 +#: db_datadict.php:164 libraries/tbl_properties.inc.php:722 +#: pdf_schema.php:1234 tbl_operations.php:344 tbl_printview.php:127 msgid "Table comments" msgstr "Tabel kommentaar" -#: db_datadict.php:173 db_qbe.php:173 libraries/Index.class.php:445 +#: db_datadict.php:173 db_qbe.php:170 libraries/Index.class.php:445 #: libraries/export/htmlword.php:243 libraries/export/latex.php:364 #: libraries/export/odt.php:293 libraries/export/texytext.php:233 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:274 -#: pdf_schema.php:1261 pdf_schema.php:1282 tbl_change.php:306 -#: tbl_indexes.php:188 tbl_printview.php:140 tbl_relation.php:401 -#: tbl_select.php:133 tbl_structure.php:176 tbl_tracking.php:272 -#: tbl_tracking.php:323 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 +#: pdf_schema.php:1260 pdf_schema.php:1281 tbl_change.php:301 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:132 tbl_structure.php:175 tbl_tracking.php:267 +#: tbl_tracking.php:318 #, fuzzy #| msgid "Column names" msgid "Column" msgstr "Kolom name" -#: db_datadict.php:174 db_printview.php:105 libraries/Index.class.php:442 +#: db_datadict.php:174 db_printview.php:104 libraries/Index.class.php:442 #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 #: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:244 #: libraries/export/latex.php:364 libraries/export/odt.php:296 #: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:99 -#: pdf_schema.php:1262 pdf_schema.php:1283 server_privileges.php:2062 -#: tbl_change.php:285 tbl_change.php:312 tbl_printview.php:141 -#: tbl_printview.php:311 tbl_select.php:134 tbl_structure.php:177 -#: tbl_structure.php:658 tbl_tracking.php:273 tbl_tracking.php:320 +#: pdf_schema.php:1261 pdf_schema.php:1282 server_privileges.php:2066 +#: tbl_change.php:280 tbl_change.php:307 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:133 tbl_structure.php:176 +#: tbl_structure.php:656 tbl_tracking.php:268 tbl_tracking.php:315 msgid "Type" msgstr "Tipe" #: db_datadict.php:176 libraries/Index.class.php:448 #: libraries/export/htmlword.php:245 libraries/export/latex.php:364 #: libraries/export/odt.php:299 libraries/export/texytext.php:235 -#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1264 -#: pdf_schema.php:1285 tbl_change.php:321 tbl_printview.php:143 -#: tbl_structure.php:180 tbl_tracking.php:275 tbl_tracking.php:326 +#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1263 +#: pdf_schema.php:1284 tbl_change.php:316 tbl_printview.php:142 +#: tbl_structure.php:179 tbl_tracking.php:270 tbl_tracking.php:321 msgid "Null" msgstr "Null" -#: db_datadict.php:177 db_structure.php:500 libraries/export/htmlword.php:246 +#: db_datadict.php:177 db_structure.php:486 libraries/export/htmlword.php:246 #: libraries/export/latex.php:364 libraries/export/odt.php:302 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:105 -#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 -#: tbl_structure.php:181 tbl_tracking.php:276 +#: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:143 +#: tbl_structure.php:180 tbl_tracking.php:271 msgid "Default" msgstr "Verstekwaarde (default)" #: db_datadict.php:181 libraries/export/htmlword.php:248 #: libraries/export/latex.php:366 libraries/export/odt.php:306 -#: libraries/export/texytext.php:238 pdf_schema.php:1267 pdf_schema.php:1288 -#: tbl_printview.php:148 +#: libraries/export/texytext.php:238 pdf_schema.php:1266 pdf_schema.php:1287 +#: tbl_printview.php:147 msgid "Links to" msgstr "Skakels na" -#: db_datadict.php:183 db_printview.php:111 libraries/export/htmlword.php:251 +#: db_datadict.php:183 db_printview.php:110 libraries/export/htmlword.php:251 #: libraries/export/latex.php:49 libraries/export/latex.php:369 #: libraries/export/odt.php:37 libraries/export/odt.php:311 #: libraries/export/sql.php:29 libraries/export/texytext.php:241 -#: libraries/tbl_properties.inc.php:129 pdf_schema.php:1278 -#: pdf_schema.php:1289 tbl_printview.php:150 +#: libraries/tbl_properties.inc.php:128 pdf_schema.php:1277 +#: pdf_schema.php:1288 tbl_printview.php:149 msgid "Comments" msgstr "Kommentaar" #: db_datadict.php:266 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/export/htmlword.php:321 #: libraries/export/latex.php:434 libraries/export/odt.php:367 -#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:262 -#: pdf_schema.php:1343 server_privileges.php:1560 server_privileges.php:1571 -#: server_privileges.php:1881 server_privileges.php:1886 -#: server_privileges.php:2179 sql.php:131 sql.php:193 tbl_printview.php:227 -#: tbl_structure.php:349 tbl_tracking.php:336 tbl_tracking.php:341 +#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:261 +#: pdf_schema.php:1342 server_privileges.php:1564 server_privileges.php:1575 +#: server_privileges.php:1885 server_privileges.php:1890 +#: server_privileges.php:2183 sql.php:130 sql.php:192 tbl_printview.php:226 +#: tbl_structure.php:347 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "Nee" @@ -178,17 +190,17 @@ msgstr "Nee" #: libraries/mult_submits.inc.php:49 libraries/mult_submits.inc.php:54 #: libraries/mult_submits.inc.php:59 libraries/mult_submits.inc.php:91 #: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:105 -#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:261 -#: libraries/mult_submits.inc.php:272 pdf_schema.php:1343 -#: server_databases.php:63 server_privileges.php:1557 -#: server_privileges.php:1571 server_privileges.php:1881 -#: server_privileges.php:1884 server_privileges.php:2179 sql.php:192 -#: tbl_printview.php:227 tbl_structure.php:39 tbl_structure.php:349 -#: tbl_tracking.php:334 tbl_tracking.php:339 +#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:260 +#: libraries/mult_submits.inc.php:271 pdf_schema.php:1342 +#: server_databases.php:61 server_privileges.php:1561 +#: server_privileges.php:1575 server_privileges.php:1885 +#: server_privileges.php:1888 server_privileges.php:2183 sql.php:191 +#: tbl_printview.php:226 tbl_structure.php:38 tbl_structure.php:347 +#: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" msgstr "Ja" -#: db_datadict.php:321 db_printview.php:265 tbl_printview.php:496 +#: db_datadict.php:321 db_printview.php:264 tbl_printview.php:495 msgid "Print" msgstr "" @@ -196,200 +208,159 @@ msgstr "" msgid "View dump (schema) of database" msgstr "Sien die storting (skema) van die databasis" -#: db_export.php:32 db_printview.php:95 db_qbe.php:101 db_structure.php:50 -#: db_tracking.php:34 export.php:352 navigation.php:326 +#: db_export.php:32 db_printview.php:94 db_qbe.php:98 db_structure.php:49 +#: db_tracking.php:30 export.php:350 navigation.php:325 msgid "No tables found in database." msgstr "Geen tabelle in databasis gevind nie." -#: db_export.php:42 db_search.php:326 server_export.php:26 +#: db_export.php:42 db_search.php:326 server_export.php:24 msgid "Select All" msgstr "Kies Alles" -#: db_export.php:44 db_search.php:329 server_export.php:28 +#: db_export.php:44 db_search.php:329 server_export.php:26 msgid "Unselect All" msgstr "Selekteer Niks" -#: db_operations.php:37 tbl_create.php:49 +#: db_operations.php:33 tbl_create.php:47 #, fuzzy msgid "The database name is empty!" msgstr "Die tabel naam is leeg!" -#: db_operations.php:235 +#: db_operations.php:231 #, fuzzy, php-format msgid "Database %s has been renamed to %s" msgstr "Tabel %s is vernoem na %s" -#: db_operations.php:239 +#: db_operations.php:235 #, fuzzy, php-format msgid "Database %s has been copied to %s" msgstr "Tabel %s is gekopieer na %s." -#: db_operations.php:411 +#: db_operations.php:347 #, fuzzy msgid "Rename database to" msgstr "Hernoem tabel na" -#: db_operations.php:416 server_processlist.php:56 +#: db_operations.php:352 server_processlist.php:56 #, fuzzy msgid "Command" msgstr "Kommentaar" -#: db_operations.php:428 tbl_change.php:1141 +#: db_operations.php:364 tbl_change.php:1039 msgid "and then" msgstr "" -#: db_operations.php:454 +#: db_operations.php:390 #, fuzzy msgid "Copy database to" msgstr "Geen databasisse" -#: db_operations.php:461 tbl_operations.php:527 tbl_tracking.php:387 +#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Slegs struktuur" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:389 +#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Struktuur en data" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:388 +#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Slegs Data" -#: db_operations.php:471 +#: db_operations.php:407 msgid "CREATE DATABASE before copying" msgstr "" -#: db_operations.php:474 libraries/export/sql.php:51 +#: db_operations.php:410 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 -#: libraries/export/sql.php:81 tbl_operations.php:535 +#: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "" -#: db_operations.php:478 libraries/export/sql.php:77 tbl_operations.php:298 -#: tbl_operations.php:537 +#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "" -#: db_operations.php:482 tbl_operations.php:544 +#: db_operations.php:418 tbl_operations.php:542 msgid "Add constraints" msgstr "" -#: db_operations.php:495 +#: db_operations.php:431 msgid "Switch to copied database" msgstr "" -#: db_operations.php:536 -msgid "BLOB Repository" -msgstr "" - -#: db_operations.php:539 db_tracking.php:75 libraries/common.lib.php:1357 -#: libraries/server_links.inc.php:48 server_processlist.php:58 -#: tbl_tracking.php:595 test/theme.php:100 -msgid "Status" -msgstr "" - -#: db_operations.php:547 -#, fuzzy -#| msgid "Enabled" -msgctxt "BLOB repository" -msgid "Enabled" -msgstr "Beskikbaar" - -#: db_operations.php:551 -#, fuzzy -msgid "Disable" -msgstr "Onbeskikbaar" - -#: db_operations.php:561 -msgid "Damaged" -msgstr "" - -#: db_operations.php:565 -#, fuzzy -msgctxt "BLOB repository" -msgid "Repair" -msgstr "Herstel tabel" - -#: db_operations.php:573 -#, fuzzy -#| msgid "Disabled" -msgctxt "BLOB repository" -msgid "Disabled" -msgstr "Onbeskikbaar" - -#: db_operations.php:577 -#, fuzzy -msgid "Enable" -msgstr "Beskikbaar" - -#: db_operations.php:601 libraries/Index.class.php:447 +#: db_operations.php:451 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 -#: server_collations.php:53 server_collations.php:65 server_databases.php:110 -#: tbl_operations.php:362 tbl_select.php:135 tbl_structure.php:178 -#: tbl_structure.php:766 tbl_tracking.php:274 tbl_tracking.php:325 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 +#: server_collations.php:53 server_collations.php:65 server_databases.php:108 +#: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:177 +#: tbl_structure.php:764 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "" -#: db_operations.php:614 main.php:315 pdf_schema.php:33 -#, php-format +#: db_operations.php:464 pdf_schema.php:32 +#, fuzzy, php-format +#| msgid "" +#| "The additional features for working with linked tables have been " +#| "deactivated. To find out why click %shere%s." msgid "" -"The additional features for working with linked tables have been " -"deactivated. To find out why click %shere%s." +"The phpMyAdmin configuration storage has been deactivated. To find out why " +"click %shere%s." msgstr "" "Die addisionele funksies om met geskakelde tabelle te werk is ge deaktiveer. " "Om uit te vind hoekom kliek %shier%s." -#: db_operations.php:647 +#: db_operations.php:497 msgid "Edit PDF Pages" msgstr "Verander PDF Bladsye" -#: db_printview.php:103 db_tracking.php:71 db_tracking.php:156 +#: db_printview.php:102 db_tracking.php:67 db_tracking.php:152 #: libraries/db_structure.lib.php:37 libraries/export/xml.php:327 -#: libraries/header.inc.php:125 pdf_pages.php:423 server_privileges.php:1657 -#: server_privileges.php:1713 server_privileges.php:1977 -#: server_synchronize.php:422 server_synchronize.php:865 tbl_tracking.php:591 +#: libraries/header.inc.php:125 pdf_pages.php:422 server_privileges.php:1661 +#: server_privileges.php:1717 server_privileges.php:1981 +#: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "Tabel" -#: db_printview.php:104 libraries/db_structure.lib.php:47 +#: db_printview.php:103 libraries/db_structure.lib.php:47 #: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 -#: navigation.php:629 navigation.php:651 server_databases.php:121 -#: tbl_printview.php:392 tbl_structure.php:364 tbl_structure.php:776 +#: navigation.php:628 navigation.php:650 server_databases.php:119 +#: tbl_printview.php:391 tbl_structure.php:362 tbl_structure.php:774 msgid "Rows" msgstr "Rye" -#: db_printview.php:108 libraries/db_structure.lib.php:58 tbl_indexes.php:189 +#: db_printview.php:107 libraries/db_structure.lib.php:58 tbl_indexes.php:188 msgid "Size" msgstr "Grootte" -#: db_printview.php:161 db_structure.php:456 libraries/export/sql.php:556 +#: db_printview.php:160 db_structure.php:442 libraries/export/sql.php:556 #: libraries/export/sql.php:896 msgid "in use" msgstr "in gebruik" -#: db_printview.php:186 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:511 pdf_schema.php:1240 tbl_printview.php:432 -#: tbl_structure.php:808 +#: db_printview.php:185 libraries/db_info.inc.php:86 +#: libraries/export/sql.php:511 pdf_schema.php:1239 tbl_printview.php:431 +#: tbl_structure.php:806 #, fuzzy msgid "Creation" msgstr "Skep" -#: db_printview.php:195 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:516 pdf_schema.php:1245 tbl_printview.php:442 -#: tbl_structure.php:816 +#: db_printview.php:194 libraries/db_info.inc.php:91 +#: libraries/export/sql.php:516 pdf_schema.php:1244 tbl_printview.php:441 +#: tbl_structure.php:814 msgid "Last update" msgstr "" -#: db_printview.php:204 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:521 pdf_schema.php:1250 tbl_printview.php:452 -#: tbl_structure.php:824 +#: db_printview.php:203 libraries/db_info.inc.php:96 +#: libraries/export/sql.php:521 pdf_schema.php:1249 tbl_printview.php:451 +#: tbl_structure.php:822 msgid "Last check" msgstr "" -#: db_printview.php:221 db_structure.php:479 +#: db_printview.php:220 db_structure.php:465 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -397,94 +368,94 @@ msgid_plural "%s tables" msgstr[0] "%s tabel(le)" msgstr[1] "%s tabel(le)" -#: db_qbe.php:28 import.php:453 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1980 libraries/sql_query_form.lib.php:138 -#: tbl_operations.php:212 tbl_relation.php:291 tbl_row_action.php:130 -#: view_operations.php:61 +#: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 +#: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "Jou SQL-navraag is suksesvol uitgevoer" -#: db_qbe.php:41 +#: db_qbe.php:38 msgid "You have to choose at least one column to display" msgstr "Jy moet ten minste een Kolom kies om te vertoon" -#: db_qbe.php:199 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:865 +#: db_qbe.php:196 libraries/db_structure.lib.php:95 +#: libraries/display_tbl.lib.php:864 msgid "Sort" msgstr "Sorteer" -#: db_qbe.php:208 db_qbe.php:242 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:522 libraries/display_tbl.lib.php:827 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:259 -#: tbl_select.php:311 +#: db_qbe.php:205 db_qbe.php:239 libraries/db_structure.lib.php:102 +#: libraries/display_tbl.lib.php:521 libraries/display_tbl.lib.php:826 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:257 +#: tbl_select.php:310 msgid "Ascending" msgstr "Dalend" -#: db_qbe.php:209 db_qbe.php:250 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:527 libraries/display_tbl.lib.php:824 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:260 -#: tbl_select.php:312 +#: db_qbe.php:206 db_qbe.php:247 libraries/db_structure.lib.php:110 +#: libraries/display_tbl.lib.php:526 libraries/display_tbl.lib.php:823 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:258 +#: tbl_select.php:311 msgid "Descending" msgstr "Dalend" -#: db_qbe.php:263 db_tracking.php:77 libraries/display_tbl.lib.php:307 -#: tbl_change.php:275 tbl_tracking.php:596 +#: db_qbe.php:260 db_tracking.php:73 libraries/display_tbl.lib.php:306 +#: tbl_change.php:270 tbl_tracking.php:591 msgid "Show" msgstr "Wys" -#: db_qbe.php:299 +#: db_qbe.php:296 msgid "Criteria" msgstr "Kriteria" -#: db_qbe.php:352 db_qbe.php:434 db_qbe.php:526 db_qbe.php:557 +#: db_qbe.php:349 db_qbe.php:431 db_qbe.php:523 db_qbe.php:554 msgid "Ins" msgstr "Ins" -#: db_qbe.php:356 db_qbe.php:438 db_qbe.php:523 db_qbe.php:554 +#: db_qbe.php:353 db_qbe.php:435 db_qbe.php:520 db_qbe.php:551 msgid "And" msgstr "En" -#: db_qbe.php:365 db_qbe.php:446 db_qbe.php:528 db_qbe.php:559 +#: db_qbe.php:362 db_qbe.php:443 db_qbe.php:525 db_qbe.php:556 msgid "Del" msgstr "Del" -#: db_qbe.php:369 db_qbe.php:450 db_qbe.php:521 db_qbe.php:552 -#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:778 -#: server_privileges.php:297 tbl_change.php:1027 tbl_indexes.php:249 -#: tbl_select.php:285 +#: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 +#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:777 +#: server_privileges.php:296 tbl_change.php:925 tbl_indexes.php:248 +#: tbl_select.php:284 msgid "Or" msgstr "Of" -#: db_qbe.php:506 +#: db_qbe.php:503 msgid "Modify" msgstr "Verander" -#: db_qbe.php:583 +#: db_qbe.php:580 #, fuzzy #| msgid "Add/Delete Criteria Row" msgid "Add/Delete criteria rows" msgstr "Voeg By/Verwyder Kriteria Ry" -#: db_qbe.php:595 +#: db_qbe.php:592 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Add/Delete columns" msgstr "Voeg By/Verwyder Veld Kolomme" -#: db_qbe.php:608 db_qbe.php:633 +#: db_qbe.php:605 db_qbe.php:630 msgid "Update Query" msgstr "Verander Navraag" -#: db_qbe.php:616 +#: db_qbe.php:613 msgid "Use Tables" msgstr "Gebruik Tabelle" -#: db_qbe.php:639 +#: db_qbe.php:636 #, php-format msgid "SQL query on database %s:" msgstr "SQL-navraag op databasis %s:" -#: db_qbe.php:933 libraries/common.lib.php:1222 +#: db_qbe.php:930 libraries/common.lib.php:1215 msgid "Submit Query" msgstr "Doen Navraag" @@ -524,17 +495,17 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s resultate binne tabel %s" msgstr[1] "%s resultate binne tabel %s" -#: db_search.php:249 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2831 -#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:49 -#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:466 +#: db_search.php:249 db_structure.php:75 db_structure.php:76 +#: db_structure.php:88 db_structure.php:90 db_structure.php:101 +#: db_structure.php:103 libraries/common.lib.php:2836 +#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 +#: tbl_structure.php:35 tbl_structure.php:47 tbl_structure.php:464 msgid "Browse" msgstr "Beloer Data" -#: db_search.php:254 libraries/display_tbl.lib.php:1164 -#: libraries/display_tbl.lib.php:2055 libraries/sql_query_form.lib.php:453 -#: pdf_pages.php:285 pdf_pages.php:424 pdf_pages.php:460 pdf_pages.php:488 +#: db_search.php:254 libraries/display_tbl.lib.php:1163 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 msgid "Delete" @@ -574,230 +545,236 @@ msgstr "Binne tabel(le):" msgid "Inside column:" msgstr "Binne tabel(le):" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2830 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:75 +#: db_structure.php:79 db_structure.php:80 db_structure.php:92 +#: db_structure.php:93 db_structure.php:105 db_structure.php:106 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 +#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Voeg by" -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2827 libraries/common.lib.php:2834 -#: libraries/db_links.inc.php:62 libraries/export/htmlword.php:22 +#: db_structure.php:81 db_structure.php:94 db_structure.php:107 +#: libraries/common.lib.php:2832 libraries/common.lib.php:2839 +#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 -#: libraries/tbl_links.inc.php:55 pmd_general.php:133 -#: server_privileges.php:593 server_replication.php:314 tbl_tracking.php:268 +#: libraries/tbl_links.inc.php:54 pmd_general.php:133 +#: server_privileges.php:592 server_replication.php:313 tbl_tracking.php:263 msgid "Structure" msgstr "Struktuur" -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:544 db_structure.php:545 db_tracking.php:90 -#: libraries/Index.class.php:482 libraries/common.lib.php:1659 -#: libraries/db_links.inc.php:99 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:126 -#: server_databases.php:351 tbl_structure.php:26 tbl_structure.php:150 -#: tbl_structure.php:151 tbl_structure.php:470 +#: db_structure.php:82 db_structure.php:83 db_structure.php:95 +#: db_structure.php:96 db_structure.php:108 db_structure.php:109 +#: db_structure.php:530 db_structure.php:531 db_tracking.php:86 +#: libraries/Index.class.php:482 libraries/common.lib.php:1663 +#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 +#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 +#: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" msgstr "Verwyder" -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:542 db_structure.php:543 libraries/common.lib.php:1658 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:104 +#: db_structure.php:84 db_structure.php:85 db_structure.php:97 +#: db_structure.php:98 db_structure.php:110 db_structure.php:111 +#: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 +#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 msgid "Empty" msgstr "Maak Leeg" -#: db_structure.php:315 libraries/tbl_links.inc.php:99 +#: db_structure.php:301 libraries/tbl_links.inc.php:98 #, php-format msgid "Table %s has been emptied" msgstr "Tabel %s is leeg gemaak" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, fuzzy, php-format msgid "View %s has been dropped" msgstr "Veld %s is verwyder" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "Table %s has been dropped" msgstr "Tabel %s is verwyder" -#: db_structure.php:332 +#: db_structure.php:318 msgid "Tracking is active." msgstr "" -#: db_structure.php:334 +#: db_structure.php:320 msgid "Tracking is not active." msgstr "" -#: db_structure.php:419 libraries/display_tbl.lib.php:1943 +#: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -#: db_structure.php:433 db_structure.php:447 libraries/header.inc.php:125 -#: libraries/tbl_info.inc.php:65 tbl_structure.php:184 test/theme.php:73 +#: db_structure.php:419 db_structure.php:433 libraries/header.inc.php:125 +#: libraries/tbl_info.inc.php:60 tbl_structure.php:183 test/theme.php:73 msgid "View" msgstr "" -#: db_structure.php:484 libraries/db_structure.lib.php:40 -#: libraries/server_links.inc.php:69 server_replication.php:32 -#: server_replication.php:163 server_status.php:368 +#: db_structure.php:470 libraries/db_structure.lib.php:40 +#: libraries/server_links.inc.php:69 server_replication.php:31 +#: server_replication.php:162 server_status.php:368 msgid "Replication" msgstr "" -#: db_structure.php:488 +#: db_structure.php:474 msgid "Sum" msgstr "Som" -#: db_structure.php:495 libraries/StorageEngine.class.php:349 +#: db_structure.php:481 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: db_structure.php:523 db_structure.php:540 db_structure.php:541 -#: libraries/display_tbl.lib.php:2080 libraries/display_tbl.lib.php:2085 -#: libraries/mult_submits.inc.php:15 server_databases.php:345 -#: server_databases.php:350 server_privileges.php:1588 tbl_structure.php:454 -#: tbl_structure.php:463 +#: db_structure.php:509 db_structure.php:526 db_structure.php:527 +#: libraries/display_tbl.lib.php:2039 libraries/display_tbl.lib.php:2044 +#: libraries/mult_submits.inc.php:15 server_databases.php:343 +#: server_databases.php:348 server_privileges.php:1592 tbl_structure.php:452 +#: tbl_structure.php:461 msgid "With selected:" msgstr "Met gekose:" -#: db_structure.php:526 libraries/display_tbl.lib.php:2075 -#: server_databases.php:347 server_privileges.php:569 -#: server_privileges.php:1591 tbl_structure.php:457 +#: db_structure.php:512 libraries/display_tbl.lib.php:2034 +#: server_databases.php:345 server_privileges.php:568 +#: server_privileges.php:1595 tbl_structure.php:455 msgid "Check All" msgstr "Kies Alles" -#: db_structure.php:530 libraries/display_tbl.lib.php:2076 -#: libraries/replication_gui.lib.php:35 server_databases.php:349 -#: server_privileges.php:572 server_privileges.php:1595 tbl_structure.php:461 +#: db_structure.php:516 libraries/display_tbl.lib.php:2035 +#: libraries/replication_gui.lib.php:35 server_databases.php:347 +#: server_privileges.php:571 server_privileges.php:1599 tbl_structure.php:459 msgid "Uncheck All" msgstr "Kies Niks" -#: db_structure.php:535 +#: db_structure.php:521 msgid "Check tables having overhead" msgstr "" -#: db_structure.php:546 db_structure.php:547 db_structure.php:598 -#: libraries/display_tbl.lib.php:2179 libraries/mult_submits.inc.php:27 -#: tbl_structure.php:491 tbl_structure.php:493 +#: db_structure.php:532 db_structure.php:533 db_structure.php:584 +#: libraries/display_tbl.lib.php:2138 libraries/mult_submits.inc.php:27 +#: tbl_structure.php:489 tbl_structure.php:491 msgid "Print view" msgstr "Drukker mooi (print view)" -#: db_structure.php:548 db_structure.php:549 libraries/mult_submits.inc.php:41 -#: tbl_operations.php:580 +#: db_structure.php:534 db_structure.php:535 libraries/mult_submits.inc.php:41 +#: tbl_operations.php:578 msgid "Check table" msgstr "Kontroleer tabel" -#: db_structure.php:550 db_structure.php:551 libraries/mult_submits.inc.php:46 -#: tbl_operations.php:620 tbl_structure.php:708 tbl_structure.php:710 +#: db_structure.php:536 db_structure.php:537 libraries/mult_submits.inc.php:46 +#: tbl_operations.php:618 tbl_structure.php:706 tbl_structure.php:708 msgid "Optimize table" msgstr "Optimaliseer tabel" -#: db_structure.php:552 db_structure.php:553 libraries/mult_submits.inc.php:51 -#: tbl_operations.php:610 +#: db_structure.php:538 db_structure.php:539 libraries/mult_submits.inc.php:51 +#: tbl_operations.php:608 msgid "Repair table" msgstr "Herstel tabel" -#: db_structure.php:554 db_structure.php:555 libraries/mult_submits.inc.php:56 -#: tbl_operations.php:600 +#: db_structure.php:540 db_structure.php:541 libraries/mult_submits.inc.php:56 +#: tbl_operations.php:598 msgid "Analyze table" msgstr "Analiseer tabel" -#: db_structure.php:556 db_structure.php:557 libraries/db_links.inc.php:70 -#: libraries/display_export.lib.php:82 libraries/display_tbl.lib.php:2093 -#: libraries/display_tbl.lib.php:2224 libraries/mult_submits.inc.php:61 -#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:81 -#: pmd_pdf.php:83 pmd_pdf.php:108 server_privileges.php:1372 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 +#: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 +#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 +#: pmd_pdf.php:81 pmd_pdf.php:106 server_privileges.php:1376 #: setup/frames/menu.inc.php:22 tbl_row_action.php:58 msgid "Export" msgstr "Export" -#: db_structure.php:605 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:591 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "" -#: db_tracking.php:65 +#: db_tracking.php:61 msgid "Tracked tables" msgstr "" -#: db_tracking.php:70 libraries/export/htmlword.php:85 +#: db_tracking.php:66 libraries/export/htmlword.php:85 #: libraries/export/latex.php:152 libraries/export/odt.php:112 #: libraries/export/sql.php:339 libraries/export/texytext.php:84 #: libraries/export/xml.php:254 libraries/header.inc.php:105 -#: libraries/header_printview.inc.php:57 server_databases.php:168 -#: server_privileges.php:1652 server_privileges.php:1713 -#: server_privileges.php:1971 server_processlist.php:55 -#: server_synchronize.php:1178 server_synchronize.php:1182 -#: tbl_tracking.php:590 test/theme.php:64 +#: libraries/header_printview.inc.php:57 server_databases.php:166 +#: server_privileges.php:1656 server_privileges.php:1717 +#: server_privileges.php:1975 server_processlist.php:55 +#: server_synchronize.php:1177 server_synchronize.php:1181 +#: tbl_tracking.php:585 test/theme.php:64 msgid "Database" msgstr "Databasis" -#: db_tracking.php:72 +#: db_tracking.php:68 msgid "Last version" msgstr "" -#: db_tracking.php:73 tbl_tracking.php:593 +#: db_tracking.php:69 tbl_tracking.php:588 #, fuzzy msgid "Created" msgstr "Skep" -#: db_tracking.php:74 tbl_tracking.php:594 +#: db_tracking.php:70 tbl_tracking.php:589 msgid "Updated" msgstr "" -#: db_tracking.php:76 libraries/Index.class.php:439 -#: libraries/db_structure.lib.php:44 server_databases.php:202 -#: server_privileges.php:1534 server_privileges.php:1717 -#: server_privileges.php:2065 tbl_structure.php:186 +#: db_tracking.php:71 libraries/common.lib.php:1361 +#: libraries/server_links.inc.php:48 server_processlist.php:58 +#: tbl_tracking.php:590 test/theme.php:100 +msgid "Status" +msgstr "" + +#: db_tracking.php:72 libraries/Index.class.php:439 +#: libraries/db_structure.lib.php:44 server_databases.php:200 +#: server_privileges.php:1538 server_privileges.php:1721 +#: server_privileges.php:2069 tbl_structure.php:185 msgid "Action" msgstr "Aksie" -#: db_tracking.php:87 db_tracking.php:119 +#: db_tracking.php:83 db_tracking.php:115 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:105 tbl_tracking.php:547 tbl_tracking.php:605 -#: tbl_tracking.php:612 +#: db_tracking.php:101 tbl_tracking.php:542 tbl_tracking.php:600 +#: tbl_tracking.php:607 msgid "active" msgstr "" -#: db_tracking.php:107 tbl_tracking.php:549 tbl_tracking.php:607 -#: tbl_tracking.php:609 +#: db_tracking.php:103 tbl_tracking.php:544 tbl_tracking.php:602 +#: tbl_tracking.php:604 msgid "not active" msgstr "" -#: db_tracking.php:120 +#: db_tracking.php:116 #, fuzzy msgid "Versions" msgstr "Operasies" -#: db_tracking.php:121 tbl_tracking.php:378 tbl_tracking.php:623 +#: db_tracking.php:117 tbl_tracking.php:373 tbl_tracking.php:618 msgid "Tracking report" msgstr "" -#: db_tracking.php:122 tbl_tracking.php:250 tbl_tracking.php:623 +#: db_tracking.php:118 tbl_tracking.php:245 tbl_tracking.php:618 #, fuzzy msgid "Structure snapshot" msgstr "Slegs struktuur" -#: db_tracking.php:151 +#: db_tracking.php:147 msgid "Untracked tables" msgstr "" -#: db_tracking.php:171 db_tracking.php:173 tbl_structure.php:527 -#: tbl_structure.php:529 +#: db_tracking.php:167 db_tracking.php:169 tbl_structure.php:525 +#: tbl_structure.php:527 #, fuzzy msgid "Track table" msgstr "Kontroleer tabel" -#: db_tracking.php:199 +#: db_tracking.php:195 #, fuzzy msgid "Database Log" msgstr "Databasis" @@ -806,102 +783,102 @@ msgstr "Databasis" msgid "Selected export type has to be saved in file!" msgstr "" -#: export.php:153 export.php:178 export.php:620 +#: export.php:152 export.php:177 export.php:615 #, php-format msgid "Insufficient space to save the file %s." msgstr "" -#: export.php:287 +#: export.php:286 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "" -#: export.php:291 export.php:295 +#: export.php:290 export.php:294 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "" -#: export.php:622 +#: export.php:617 #, php-format msgid "Dump has been saved to file %s." msgstr "" -#: import.php:59 +#: 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." msgstr "" -#: import.php:278 import.php:331 libraries/File.class.php:840 -#: libraries/File.class.php:950 +#: import.php:277 import.php:330 libraries/File.class.php:566 +#: libraries/File.class.php:676 msgid "File could not be read" msgstr "" -#: import.php:286 import.php:295 import.php:314 import.php:323 -#: libraries/File.class.php:1020 libraries/File.class.php:1028 -#: libraries/File.class.php:1044 libraries/File.class.php:1052 +#: import.php:285 import.php:294 import.php:313 import.php:322 +#: libraries/File.class.php:746 libraries/File.class.php:754 +#: libraries/File.class.php:770 libraries/File.class.php:778 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." msgstr "" -#: import.php:336 +#: import.php:335 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " "[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." msgstr "" -#: import.php:371 libraries/display_import.lib.php:23 +#: import.php:370 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:396 +#: import.php:395 msgid "The bookmark has been deleted." msgstr "Die boekmerk is verwyder." -#: import.php:400 +#: import.php:399 msgid "Showing bookmark" msgstr "" -#: import.php:402 sql.php:625 +#: import.php:401 sql.php:618 #, php-format msgid "Bookmark %s created" msgstr "" -#: import.php:408 import.php:414 +#: import.php:407 import.php:413 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" -#: import.php:423 +#: import.php:422 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: import.php:425 +#: import.php:424 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." msgstr "" -#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:240 +#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:239 #: user_password.php:110 msgid "Back" msgstr "Terug" -#: index.php:188 +#: index.php:183 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin verkies 'n frames-kapabele blaaier." -#: js/messages.php:25 server_synchronize.php:344 server_synchronize.php:356 -#: server_synchronize.php:372 server_synchronize.php:379 -#: server_synchronize.php:738 server_synchronize.php:766 -#: server_synchronize.php:794 server_synchronize.php:806 +#: js/messages.php:25 server_synchronize.php:343 server_synchronize.php:355 +#: server_synchronize.php:371 server_synchronize.php:378 +#: server_synchronize.php:737 server_synchronize.php:765 +#: server_synchronize.php:793 server_synchronize.php:805 msgid "Click to select" msgstr "" @@ -909,15 +886,15 @@ msgstr "" msgid "Click to unselect" msgstr "" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:88 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:87 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" stellings word nie toegelaat nie." -#: js/messages.php:30 libraries/mult_submits.inc.php:257 sql.php:187 +#: js/messages.php:30 libraries/mult_submits.inc.php:256 sql.php:186 msgid "Do you really want to " msgstr "Wil jy regtig " -#: js/messages.php:31 libraries/mult_submits.inc.php:257 sql.php:171 +#: js/messages.php:31 libraries/mult_submits.inc.php:256 sql.php:170 msgid "You are about to DESTROY a complete database!" msgstr "" @@ -946,11 +923,11 @@ msgstr "Die gasheer naam is leeg!" msgid "The user name is empty!" msgstr "Die gebruiker naam ontbreek!" -#: js/messages.php:44 server_privileges.php:1228 user_password.php:65 +#: js/messages.php:44 server_privileges.php:1229 user_password.php:65 msgid "The password is empty!" msgstr "Die wagwoord is leeg!" -#: js/messages.php:45 server_privileges.php:1226 user_password.php:68 +#: js/messages.php:45 server_privileges.php:1227 user_password.php:68 msgid "The passwords aren't the same!" msgstr "Die wagwoorde is verskillend!" @@ -958,29 +935,29 @@ msgstr "Die wagwoorde is verskillend!" msgid "Cancel" msgstr "" -#: js/messages.php:52 pmd_save_pos.php:53 +#: js/messages.php:52 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "Veranderinge is gestoor" -#: js/messages.php:53 pmd_relation_upd.php:48 +#: js/messages.php:53 pmd_relation_upd.php:47 #, fuzzy msgid "Relation deleted" msgstr "Relasie uitsig" -#: js/messages.php:54 pmd_relation_new.php:63 +#: js/messages.php:54 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:55 pmd_relation_new.php:85 +#: js/messages.php:55 pmd_relation_new.php:84 #, fuzzy msgid "Internal relation added" msgstr "Algemene verwantskap funksies" -#: js/messages.php:56 pmd_relation_new.php:62 pmd_relation_new.php:87 +#: js/messages.php:56 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:57 pmd_relation_new.php:30 +#: js/messages.php:57 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "" @@ -988,13 +965,13 @@ msgstr "" msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:59 libraries/relation.lib.php:94 -#: libraries/relation.lib.php:106 +#: js/messages.php:59 libraries/relation.lib.php:89 +#: libraries/relation.lib.php:101 msgid "General relation features" msgstr "Algemene verwantskap funksies" -#: js/messages.php:59 libraries/relation.lib.php:88 -#: libraries/relation.lib.php:95 +#: js/messages.php:59 libraries/relation.lib.php:83 +#: libraries/relation.lib.php:90 msgid "Disabled" msgstr "Onbeskikbaar" @@ -1010,7 +987,7 @@ msgstr "" msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:547 +#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" @@ -1042,10 +1019,10 @@ msgid "Prev" msgstr "Vorige" #. l10n: Display text for next month link in calendar -#: js/messages.php:81 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:337 -#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:422 -#: tbl_structure.php:800 +#: js/messages.php:81 libraries/common.lib.php:2358 +#: libraries/common.lib.php:2361 libraries/display_tbl.lib.php:336 +#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 +#: tbl_structure.php:798 msgid "Next" msgstr "Volgende" @@ -1118,27 +1095,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1562 +#: js/messages.php:101 libraries/common.lib.php:1566 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1564 +#: js/messages.php:103 libraries/common.lib.php:1568 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1566 +#: js/messages.php:105 libraries/common.lib.php:1570 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1568 +#: js/messages.php:107 libraries/common.lib.php:1572 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1570 +#: js/messages.php:109 libraries/common.lib.php:1574 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1146,37 +1123,37 @@ msgid "May" msgstr "Mei" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1572 +#: js/messages.php:111 libraries/common.lib.php:1576 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1574 +#: js/messages.php:113 libraries/common.lib.php:1578 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1576 +#: js/messages.php:115 libraries/common.lib.php:1580 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1578 +#: js/messages.php:117 libraries/common.lib.php:1582 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1580 +#: js/messages.php:119 libraries/common.lib.php:1584 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:121 libraries/common.lib.php:1582 +#: js/messages.php:121 libraries/common.lib.php:1586 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:123 libraries/common.lib.php:1584 +#: js/messages.php:123 libraries/common.lib.php:1588 msgid "Dec" msgstr "Des" @@ -1217,37 +1194,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1587 +#: js/messages.php:136 libraries/common.lib.php:1591 msgid "Sun" msgstr "So" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1589 +#: js/messages.php:138 libraries/common.lib.php:1593 msgid "Mon" msgstr "Ma" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1591 +#: js/messages.php:140 libraries/common.lib.php:1595 msgid "Tue" msgstr "Di" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1593 +#: js/messages.php:142 libraries/common.lib.php:1597 msgid "Wed" msgstr "Wo" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1595 +#: js/messages.php:144 libraries/common.lib.php:1599 msgid "Thu" msgstr "Do" #. l10n: Short week day name -#: js/messages.php:146 libraries/common.lib.php:1597 +#: js/messages.php:146 libraries/common.lib.php:1601 msgid "Fri" msgstr "Fr" #. l10n: Short week day name -#: js/messages.php:148 libraries/common.lib.php:1599 +#: js/messages.php:148 libraries/common.lib.php:1603 msgid "Sat" msgstr "Sa" @@ -1325,75 +1302,74 @@ msgstr "Rekords" msgid "Font size" msgstr "" -#: libraries/File.class.php:336 libraries/File.class.php:424 -#: libraries/File.class.php:561 libraries/File.class.php:700 -msgid "Unknown error in file upload." -msgstr "" - -#: libraries/File.class.php:406 +#: libraries/File.class.php:315 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:409 +#: libraries/File.class.php:318 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:412 +#: libraries/File.class.php:321 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:415 +#: libraries/File.class.php:324 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:418 +#: libraries/File.class.php:327 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:421 +#: libraries/File.class.php:330 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:898 +#: libraries/File.class.php:333 +msgid "Unknown error in file upload." +msgstr "" + +#: libraries/File.class.php:624 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "" -#: libraries/Index.class.php:427 tbl_relation.php:528 +#: libraries/Index.class.php:427 tbl_relation.php:526 msgid "No index defined!" msgstr "Geen indeks gedefinieer!" -#: libraries/Index.class.php:432 server_databases.php:131 tbl_tracking.php:315 +#: libraries/Index.class.php:432 server_databases.php:129 tbl_tracking.php:310 msgid "Indexes" msgstr "Indekse" #: libraries/Index.class.php:443 libraries/mult_submits.inc.php:102 -#: libraries/tbl_properties.inc.php:518 tbl_structure.php:32 -#: tbl_structure.php:154 tbl_structure.php:158 tbl_structure.php:473 -#: tbl_tracking.php:321 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:31 +#: tbl_structure.php:153 tbl_structure.php:157 tbl_structure.php:471 +#: tbl_tracking.php:316 msgid "Unique" msgstr "Uniek" -#: libraries/Index.class.php:444 tbl_tracking.php:322 +#: libraries/Index.class.php:444 tbl_tracking.php:317 msgid "Packed" msgstr "" -#: libraries/Index.class.php:446 tbl_tracking.php:324 +#: libraries/Index.class.php:446 tbl_tracking.php:319 msgid "Cardinality" msgstr "Cardinality" -#: libraries/Index.class.php:449 tbl_tracking.php:278 tbl_tracking.php:327 +#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322 #, fuzzy msgid "Comment" msgstr "Kommentaar" #: libraries/Index.class.php:465 libraries/common.lib.php:609 -#: libraries/common.lib.php:1198 libraries/display_tbl.lib.php:1116 +#: libraries/common.lib.php:1191 libraries/display_tbl.lib.php:1115 #: libraries/import.lib.php:1119 libraries/import.lib.php:1143 -#: pdf_pages.php:284 setup/frames/index.inc.php:124 +#: pdf_pages.php:283 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:349 tbl_row_action.php:68 msgid "Edit" msgstr "Verander" @@ -1415,15 +1391,15 @@ msgid "" msgstr "" #: libraries/List_Database.class.php:430 libraries/server_links.inc.php:40 -#: server_databases.php:87 server_privileges.php:1652 +#: server_databases.php:85 server_privileges.php:1656 #: setup/lib/messages.inc.php:107 test/theme.php:92 msgid "Databases" msgstr "databasisse" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:259 libraries/import.lib.php:134 pdf_schema.php:31 -#: pdf_schema.php:231 tbl_change.php:1023 tbl_operations.php:212 -#: tbl_relation.php:289 view_operations.php:61 +#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 +#: tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Fout" @@ -1448,40 +1424,40 @@ msgid_plural "%1$d rows inserted." msgstr[0] "" msgstr[1] "" -#: libraries/StorageEngine.class.php:196 +#: libraries/StorageEngine.class.php:194 msgid "" "There is no detailed status information available for this storage engine." msgstr "" -#: libraries/StorageEngine.class.php:352 +#: libraries/StorageEngine.class.php:354 #, php-format msgid "%s is available on this MySQL server." msgstr "" -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:357 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "" -#: libraries/StorageEngine.class.php:359 +#: libraries/StorageEngine.class.php:361 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "" -#: libraries/Table.class.php:1018 +#: libraries/Table.class.php:1017 msgid "Invalid database" msgstr "" -#: libraries/Table.class.php:1032 tbl_get_field.php:25 +#: libraries/Table.class.php:1031 tbl_get_field.php:25 msgid "Invalid table name" msgstr "" -#: libraries/Table.class.php:1047 +#: libraries/Table.class.php:1046 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "" -#: libraries/Table.class.php:1131 +#: libraries/Table.class.php:1129 #, php-format msgid "Table %s has been renamed to %s" msgstr "Tabel %s is vernoem na %s" @@ -1499,22 +1475,22 @@ msgstr "" msgid "take it" msgstr "" -#: libraries/Theme_Manager.class.php:114 +#: libraries/Theme_Manager.class.php:109 #, php-format msgid "Default theme %s not found!" msgstr "" -#: libraries/Theme_Manager.class.php:152 +#: libraries/Theme_Manager.class.php:147 #, php-format msgid "Theme %s not found!" msgstr "" -#: libraries/Theme_Manager.class.php:220 +#: libraries/Theme_Manager.class.php:215 #, php-format msgid "Theme path not found for theme %s!" msgstr "" -#: libraries/Theme_Manager.class.php:296 test/theme.php:160 themes.php:20 +#: libraries/Theme_Manager.class.php:291 test/theme.php:160 themes.php:20 #: themes.php:40 msgid "Theme / Style" msgstr "" @@ -1621,19 +1597,19 @@ msgstr "" msgid "Authenticating..." msgstr "" -#: libraries/blobstreaming.lib.php:689 +#: libraries/blobstreaming.lib.php:340 msgid "View image" msgstr "" -#: libraries/blobstreaming.lib.php:693 +#: libraries/blobstreaming.lib.php:344 msgid "Play audio" msgstr "" -#: libraries/blobstreaming.lib.php:698 +#: libraries/blobstreaming.lib.php:349 msgid "View video" msgstr "" -#: libraries/blobstreaming.lib.php:702 +#: libraries/blobstreaming.lib.php:353 msgid "Download file" msgstr "" @@ -1686,7 +1662,7 @@ msgstr "" msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:909 +#: libraries/common.inc.php:908 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" @@ -1711,7 +1687,8 @@ msgstr "en" #: libraries/common.lib.php:425 libraries/common.lib.php:427 #: libraries/common.lib.php:429 libraries/common.lib.php:445 #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 -#: libraries/display_export.lib.php:163 libraries/relation.lib.php:84 +#: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 +#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 #: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" @@ -1726,146 +1703,146 @@ msgstr "SQL-stelling" msgid "MySQL said: " msgstr "MySQL het gepraat: " -#: libraries/common.lib.php:1136 +#: libraries/common.lib.php:1129 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1174 setup/lib/messages.inc.php:350 +#: libraries/common.lib.php:1167 setup/lib/messages.inc.php:350 msgid "Explain SQL" msgstr "Verduidelik SQL" -#: libraries/common.lib.php:1177 +#: libraries/common.lib.php:1170 msgid "Skip Explain SQL" msgstr "Ignoreer SQL Verduideliking" -#: libraries/common.lib.php:1211 +#: libraries/common.lib.php:1204 msgid "Without PHP Code" msgstr "Sonder PHP Kode" -#: libraries/common.lib.php:1214 setup/lib/messages.inc.php:352 +#: libraries/common.lib.php:1207 setup/lib/messages.inc.php:352 msgid "Create PHP Code" msgstr "Skep PHP Kode" -#: libraries/common.lib.php:1232 server_status.php:451 +#: libraries/common.lib.php:1225 server_status.php:451 #: setup/lib/messages.inc.php:351 msgid "Refresh" msgstr "" -#: libraries/common.lib.php:1241 +#: libraries/common.lib.php:1234 msgid "Skip Validate SQL" msgstr "Ignoreer SQL Validasie" -#: libraries/common.lib.php:1244 setup/lib/messages.inc.php:353 +#: libraries/common.lib.php:1237 setup/lib/messages.inc.php:353 msgid "Validate SQL" msgstr "Valideer SQL" -#: libraries/common.lib.php:1283 +#: libraries/common.lib.php:1287 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1285 +#: libraries/common.lib.php:1289 msgid "Inline" msgstr "" -#: libraries/common.lib.php:1339 libraries/common.lib.php:1354 +#: libraries/common.lib.php:1343 libraries/common.lib.php:1358 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1358 libraries/tbl_triggers.lib.php:27 +#: libraries/common.lib.php:1362 libraries/tbl_triggers.lib.php:27 #: server_processlist.php:57 msgid "Time" msgstr "" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "B" msgstr "Bytes" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "KiB" msgstr "KB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "MiB" msgstr "MB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "GiB" msgstr "GB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "TiB" msgstr "TB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "PiB" msgstr "PB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "EiB" msgstr "EB" #. l10n: Thousands separator -#: libraries/common.lib.php:1424 +#: libraries/common.lib.php:1428 msgid "," msgstr "," #. l10n: Decimal separator -#: libraries/common.lib.php:1426 +#: libraries/common.lib.php:1430 msgid "." msgstr "." #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1603 +#: libraries/common.lib.php:1607 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y at %I:%M %p" -#: libraries/common.lib.php:1909 +#: libraries/common.lib.php:1913 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s days, %s hours, %s minutes and %s seconds" -#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 -#: libraries/display_tbl.lib.php:289 server_status.php:718 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 +#: libraries/display_tbl.lib.php:288 server_status.php:718 msgid "Begin" msgstr "Begin" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 -#: libraries/display_tbl.lib.php:290 server_binlog.php:154 +#: libraries/common.lib.php:2328 libraries/common.lib.php:2331 +#: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "Vorige" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 -#: libraries/display_tbl.lib.php:352 +#: libraries/common.lib.php:2359 libraries/common.lib.php:2362 +#: libraries/display_tbl.lib.php:351 msgid "End" msgstr "Einde" -#: libraries/common.lib.php:2429 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "" -#: libraries/common.lib.php:2448 +#: libraries/common.lib.php:2453 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2828 libraries/common.lib.php:2835 -#: libraries/db_links.inc.php:67 libraries/export/sql.php:24 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 +#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 -#: libraries/tbl_links.inc.php:59 querywindow.php:89 test/theme.php:96 +#: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2837 libraries/db_links.inc.php:103 -#: libraries/tbl_links.inc.php:94 libraries/tbl_links.inc.php:116 -#: view_operations.php:88 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: view_operations.php:87 msgid "Operations" msgstr "Operasies" -#: libraries/core.lib.php:282 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1881,39 +1858,39 @@ msgstr "" msgid "Name" msgstr "Naam" -#: libraries/db_links.inc.php:44 +#: libraries/db_links.inc.php:43 #, php-format msgid "Database %s has been dropped." msgstr "Databasis %s is verwyder." -#: libraries/db_links.inc.php:56 libraries/db_links.inc.php:57 -#: libraries/db_links.inc.php:58 +#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 +#: libraries/db_links.inc.php:57 msgid "Database seems to be empty!" msgstr "" -#: libraries/db_links.inc.php:80 libraries/relation.lib.php:142 -#: libraries/tbl_links.inc.php:68 +#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:85 +#: libraries/db_links.inc.php:84 msgid "Query" msgstr "Navraag dmv Voorbeeld" -#: libraries/db_links.inc.php:90 libraries/relation.lib.php:138 +#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:97 libraries/server_links.inc.php:87 -#: libraries/tbl_links.inc.php:90 pmd_pdf.php:83 pmd_pdf.php:109 +#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 #, fuzzy msgid "Import" msgstr "Export" -#: libraries/db_links.inc.php:110 libraries/server_links.inc.php:65 -#: server_privileges.php:111 server_privileges.php:1714 -#: server_privileges.php:2063 test/theme.php:116 +#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: server_privileges.php:110 server_privileges.php:1718 +#: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" msgstr "Regte" @@ -1925,14 +1902,14 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1847 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1806 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "" -#: libraries/db_structure.lib.php:60 server_databases.php:141 -#: tbl_printview.php:334 tbl_structure.php:681 +#: libraries/db_structure.lib.php:60 server_databases.php:139 +#: tbl_printview.php:333 tbl_structure.php:679 msgid "Overhead" msgstr "Overhead" @@ -1949,7 +1926,7 @@ msgstr "" msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "" -#: libraries/dbi/mysql.dbi.lib.php:358 tbl_structure.php:607 +#: libraries/dbi/mysql.dbi.lib.php:358 tbl_structure.php:605 msgid "Details..." msgstr "" @@ -1959,22 +1936,22 @@ msgid "Change password" msgstr "Verander wagwoord" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:807 +#: libraries/replication_gui.lib.php:347 server_privileges.php:806 msgid "No Password" msgstr "Geen Wagwoord" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1530 server_synchronize.php:1174 +#: libraries/replication_gui.lib.php:351 server_privileges.php:795 +#: server_privileges.php:799 server_privileges.php:810 +#: server_privileges.php:1534 server_synchronize.php:1173 msgid "Password" msgstr "Wagwoord" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:815 server_privileges.php:818 +#: server_privileges.php:814 server_privileges.php:817 msgid "Re-type" msgstr "Tik weer" @@ -1995,8 +1972,8 @@ msgstr "Skep 'n nuwe databasis" msgid "Create" msgstr "Skep" -#: libraries/display_create_database.lib.php:39 server_privileges.php:113 -#: server_privileges.php:1419 server_replication.php:34 +#: libraries/display_create_database.lib.php:39 server_privileges.php:112 +#: server_privileges.php:1423 server_replication.php:33 msgid "No Privileges" msgstr "Geen Regte" @@ -2017,51 +1994,51 @@ msgstr "Skep 'n nuwe tabel op databasis %s" msgid "Number of columns" msgstr "Hoeveelheid rye per bladsy" -#: libraries/display_export.lib.php:41 +#: libraries/display_export.lib.php:35 msgid "Could not load export plugins, please check your installation!" msgstr "" -#: libraries/display_export.lib.php:106 +#: libraries/display_export.lib.php:100 #, fuzzy, php-format #| msgid "Dump %s row(s) starting at record # %s" msgid "Dump %s row(s) starting at row # %s" msgstr "Stort %s rye beginnende by rekord # %s." -#: libraries/display_export.lib.php:114 +#: libraries/display_export.lib.php:108 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:124 setup/lib/messages.inc.php:79 +#: libraries/display_export.lib.php:118 setup/lib/messages.inc.php:79 msgid "Save as file" msgstr "Stoor as leer (file)" -#: libraries/display_export.lib.php:133 +#: libraries/display_export.lib.php:127 #, php-format msgid "Save on server in %s directory" msgstr "" -#: libraries/display_export.lib.php:141 setup/lib/messages.inc.php:87 +#: libraries/display_export.lib.php:135 setup/lib/messages.inc.php:87 msgid "Overwrite existing file(s)" msgstr "" -#: libraries/display_export.lib.php:147 +#: libraries/display_export.lib.php:141 msgid "File name template" msgstr "" -#: libraries/display_export.lib.php:151 +#: libraries/display_export.lib.php:145 #, fuzzy msgid "server name" msgstr "Gebruiker naam" -#: libraries/display_export.lib.php:154 +#: libraries/display_export.lib.php:148 msgid "database name" msgstr "" -#: libraries/display_export.lib.php:157 +#: libraries/display_export.lib.php:151 msgid "table name" msgstr "" -#: libraries/display_export.lib.php:161 +#: libraries/display_export.lib.php:155 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2069,39 +2046,39 @@ msgid "" "%3$s. Other text will be kept as is." msgstr "" -#: libraries/display_export.lib.php:202 +#: libraries/display_export.lib.php:196 msgid "remember template" msgstr "" -#: libraries/display_export.lib.php:210 libraries/display_import.lib.php:177 +#: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 #: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 msgid "Character set of the file:" msgstr "Karakterstel van die leer:" -#: libraries/display_export.lib.php:235 setup/lib/messages.inc.php:81 +#: libraries/display_export.lib.php:229 setup/lib/messages.inc.php:81 msgid "Compression" msgstr "" -#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:196 -#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:529 -#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:574 -#: server_privileges.php:1867 server_processlist.php:74 +#: libraries/display_export.lib.php:234 libraries/display_import.lib.php:196 +#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:528 +#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:573 +#: server_privileges.php:1871 server_processlist.php:74 msgid "None" msgstr "Geen" -#: libraries/display_export.lib.php:247 +#: libraries/display_export.lib.php:241 msgid "\"zipped\"" msgstr "\"ge-zip\"" -#: libraries/display_export.lib.php:253 +#: libraries/display_export.lib.php:247 msgid "\"gzipped\"" msgstr "\"ge-gzip\"" -#: libraries/display_export.lib.php:259 +#: libraries/display_export.lib.php:253 msgid "\"bzipped\"" msgstr "\"ge-bzip\"" -#: libraries/display_export.lib.php:274 libraries/export/sql.php:42 +#: libraries/display_export.lib.php:268 libraries/export/sql.php:42 #: libraries/import/sql.php:31 msgid "SQL compatibility mode" msgstr "" @@ -2136,12 +2113,12 @@ msgid "File uploads are not allowed on this server." msgstr "" #: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 -#: tbl_change.php:1024 +#: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "" #: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 -#: tbl_change.php:1027 +#: tbl_change.php:925 msgid "web server upload directory" msgstr "" @@ -2220,43 +2197,43 @@ msgstr "" msgid "Language" msgstr "" -#: libraries/display_tbl.lib.php:303 +#: libraries/display_tbl.lib.php:302 #, php-format msgid "%d is not valid row number." msgstr "" -#: libraries/display_tbl.lib.php:309 +#: libraries/display_tbl.lib.php:308 #, fuzzy #| msgid "row(s) starting from record #" msgid "row(s) starting from row #" msgstr "ry(e) beginnende vanaf rekord #" -#: libraries/display_tbl.lib.php:315 +#: libraries/display_tbl.lib.php:314 msgid "horizontal" msgstr "horisontale" -#: libraries/display_tbl.lib.php:316 +#: libraries/display_tbl.lib.php:315 msgid "horizontal (rotated headers)" msgstr "" -#: libraries/display_tbl.lib.php:317 +#: libraries/display_tbl.lib.php:316 msgid "vertical" msgstr "vertikale" -#: libraries/display_tbl.lib.php:323 +#: libraries/display_tbl.lib.php:322 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "in %s formaat en herhaal opskrifte na %s selle" -#: libraries/display_tbl.lib.php:345 +#: libraries/display_tbl.lib.php:344 msgid "This operation could take a long time. Proceed anyway?" msgstr "" -#: libraries/display_tbl.lib.php:511 +#: libraries/display_tbl.lib.php:510 msgid "Sort by key" msgstr "" -#: libraries/display_tbl.lib.php:554 libraries/export/codegen.php:38 +#: libraries/display_tbl.lib.php:553 libraries/export/codegen.php:38 #: libraries/export/csv.php:29 libraries/export/excel.php:34 #: libraries/export/htmlword.php:28 libraries/export/latex.php:32 #: libraries/export/mediawiki.php:21 libraries/export/ods.php:26 @@ -2266,100 +2243,100 @@ msgstr "" #: libraries/export/xlsx.php:26 libraries/export/xml.php:23 #: libraries/export/yaml.php:27 libraries/import.lib.php:1114 #: libraries/import.lib.php:1136 libraries/import/csv.php:31 -#: libraries/import/docsql.php:33 libraries/import/ldi.php:46 +#: libraries/import/docsql.php:32 libraries/import/ldi.php:46 #: libraries/import/ods.php:30 libraries/import/sql.php:19 #: libraries/import/xls.php:25 libraries/import/xlsx.php:25 -#: libraries/import/xml.php:25 tbl_select.php:264 tbl_structure.php:752 +#: libraries/import/xml.php:25 tbl_select.php:263 tbl_structure.php:750 #, fuzzy msgid "Options" msgstr "Operasies" -#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:569 +#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:568 msgid "Partial Texts" msgstr "Gedeeltelike Tekste" -#: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:573 +#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:572 msgid "Full Texts" msgstr "Volle Tekste" -#: libraries/display_tbl.lib.php:586 +#: libraries/display_tbl.lib.php:585 #, fuzzy msgid "Relational key" msgstr "Relasie uitsig" -#: libraries/display_tbl.lib.php:587 +#: libraries/display_tbl.lib.php:586 #, fuzzy msgid "Relational display column" msgstr "Relasie uitsig" -#: libraries/display_tbl.lib.php:594 +#: libraries/display_tbl.lib.php:593 msgid "Show binary contents" msgstr "" -#: libraries/display_tbl.lib.php:596 +#: libraries/display_tbl.lib.php:595 msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:598 +#: libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "" -#: libraries/display_tbl.lib.php:606 pmd_general.php:140 tbl_change.php:312 -#: tbl_change.php:318 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:307 +#: tbl_change.php:313 msgid "Hide" msgstr "" -#: libraries/display_tbl.lib.php:606 libraries/relation.lib.php:122 -#: libraries/tbl_properties.inc.php:143 transformation_overview.php:46 +#: libraries/display_tbl.lib.php:605 libraries/relation.lib.php:117 +#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46 msgid "Browser transformation" msgstr "" -#: libraries/display_tbl.lib.php:1125 libraries/display_tbl.lib.php:1129 -#: libraries/display_tbl.lib.php:1131 +#: libraries/display_tbl.lib.php:1124 libraries/display_tbl.lib.php:1128 +#: libraries/display_tbl.lib.php:1130 msgid "Execute bookmarked query" msgstr "" -#: libraries/display_tbl.lib.php:1144 libraries/display_tbl.lib.php:1156 +#: libraries/display_tbl.lib.php:1143 libraries/display_tbl.lib.php:1155 msgid "The row has been deleted" msgstr "Die ry is verwyder" -#: libraries/display_tbl.lib.php:1183 libraries/display_tbl.lib.php:2055 +#: libraries/display_tbl.lib.php:1182 libraries/display_tbl.lib.php:2014 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "Vermoor" -#: libraries/display_tbl.lib.php:1933 +#: libraries/display_tbl.lib.php:1892 msgid "in query" msgstr "in navraag" -#: libraries/display_tbl.lib.php:1951 +#: libraries/display_tbl.lib.php:1910 msgid "Showing rows" msgstr "Vertoon rye" -#: libraries/display_tbl.lib.php:1961 +#: libraries/display_tbl.lib.php:1920 msgid "total" msgstr "totaal" -#: libraries/display_tbl.lib.php:1969 sql.php:523 +#: libraries/display_tbl.lib.php:1928 sql.php:522 #, php-format msgid "Query took %01.4f sec" msgstr "" -#: libraries/display_tbl.lib.php:2088 libraries/mult_submits.inc.php:112 -#: querywindow.php:115 querywindow.php:119 querywindow.php:122 -#: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:469 +#: libraries/display_tbl.lib.php:2047 libraries/mult_submits.inc.php:112 +#: querywindow.php:114 querywindow.php:118 querywindow.php:121 +#: tbl_structure.php:23 tbl_structure.php:148 tbl_structure.php:467 msgid "Change" msgstr "Verander" -#: libraries/display_tbl.lib.php:2158 +#: libraries/display_tbl.lib.php:2117 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2186 +#: libraries/display_tbl.lib.php:2145 msgid "Print view (with full texts)" msgstr "" -#: libraries/display_tbl.lib.php:2359 +#: libraries/display_tbl.lib.php:2318 msgid "Link not found" msgstr "Skakel nie gevind nie" @@ -2413,9 +2390,9 @@ msgstr "" msgid "Buffer Pool Usage" msgstr "" -#: libraries/engines/innodb.lib.php:168 server_databases.php:136 -#: server_databases.php:304 server_status.php:524 server_status.php:585 -#: server_status.php:606 tbl_printview.php:349 tbl_structure.php:695 +#: libraries/engines/innodb.lib.php:168 server_databases.php:134 +#: server_databases.php:302 server_status.php:524 server_status.php:585 +#: server_status.php:606 tbl_printview.php:348 tbl_structure.php:693 #, fuzzy msgid "Total" msgstr "totaal" @@ -2539,6 +2516,78 @@ msgid "" "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." msgstr "" +#: libraries/engines/pbms.lib.php:31 +msgid "Garbage Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:32 +msgid "The percentage of garbage in a repository file before it is compacted." +msgstr "" + +#: libraries/engines/pbms.lib.php:36 libraries/replication_gui.lib.php:69 +#: server_synchronize.php:1161 +#, fuzzy +msgid "Port" +msgstr "Sorteer" + +#: libraries/engines/pbms.lib.php:37 +msgid "" +"The port for the PBMS stream-based communications. Setting this value to 0 " +"will disable HTTP communication with the daemon." +msgstr "" + +#: libraries/engines/pbms.lib.php:41 +msgid "Repository Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:42 +msgid "" +"The maximum size of a BLOB repository file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:46 +msgid "Temp Blob Timeout" +msgstr "" + +#: libraries/engines/pbms.lib.php:47 +msgid "" +"The timeout, in seconds, for temporary BLOBs. Uploaded BLOB data is removed " +"after this time, unless they are referenced by a record in the database." +msgstr "" + +#: libraries/engines/pbms.lib.php:51 +msgid "Temp Log Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:52 +msgid "" +"The maximum size of a temporary BLOB log file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:56 +msgid "Max Keep Alive" +msgstr "" + +#: libraries/engines/pbms.lib.php:57 +msgid "" +"The timeout for inactive connection with the keep-alive flag set. After this " +"time the connection will be closed. The time-out is in milliseconds (1/1000)." +msgstr "" + +#: libraries/engines/pbms.lib.php:61 +msgid "Metadata Headers" +msgstr "" + +#: libraries/engines/pbms.lib.php:62 +msgid "" +"A \":\" delimited list of metadata headers to be used to initialize the " +"pbms_metadata_header table when a database is created." +msgstr "" + #: libraries/engines/pbxt.lib.php:22 msgid "Index cache size" msgstr "" @@ -2662,7 +2711,7 @@ msgid "" msgstr "" #: libraries/export/codegen.php:36 setup/lib/messages.inc.php:85 -#: tbl_printview.php:374 tbl_structure.php:736 +#: tbl_printview.php:373 tbl_structure.php:734 msgid "Format" msgstr "Formaat" @@ -2731,9 +2780,9 @@ msgstr "" #: libraries/export/htmlword.php:23 libraries/export/latex.php:59 #: libraries/export/latex.php:205 libraries/export/odt.php:47 #: libraries/export/sql.php:105 libraries/export/sql.php:865 -#: libraries/export/texytext.php:27 server_databases.php:126 -#: server_privileges.php:576 server_replication.php:315 tbl_printview.php:315 -#: tbl_structure.php:664 +#: libraries/export/texytext.php:27 server_databases.php:124 +#: server_privileges.php:575 server_replication.php:314 tbl_printview.php:314 +#: tbl_structure.php:662 msgid "Data" msgstr "Data" @@ -2783,14 +2832,14 @@ msgid "Label key" msgstr "" #: libraries/export/latex.php:46 libraries/export/odt.php:34 -#: libraries/export/sql.php:90 tbl_relation.php:398 +#: libraries/export/sql.php:90 tbl_relation.php:396 #, fuzzy msgid "Relations" msgstr "Operasies" #: libraries/export/latex.php:52 libraries/export/odt.php:40 #: libraries/export/odt.php:317 libraries/export/sql.php:94 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "" @@ -2798,10 +2847,10 @@ msgstr "" #: libraries/export/xml.php:101 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1529 server_privileges.php:2061 -#: server_processlist.php:54 server_synchronize.php:1158 +#: libraries/replication_gui.lib.php:331 server_privileges.php:730 +#: server_privileges.php:733 server_privileges.php:789 +#: server_privileges.php:1533 server_privileges.php:2065 +#: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "Gasheer (host)" @@ -2993,8 +3042,8 @@ msgstr "" msgid "Export contents" msgstr "" -#: libraries/footer.inc.php:182 libraries/footer.inc.php:193 -#: libraries/footer.inc.php:196 +#: libraries/footer.inc.php:180 libraries/footer.inc.php:191 +#: libraries/footer.inc.php:194 msgid "Open new phpMyAdmin window" msgstr "" @@ -3011,7 +3060,7 @@ msgstr "SQL resultaat" msgid "Generated by" msgstr "Voortgebring deur" -#: libraries/import.lib.php:151 sql.php:519 tbl_change.php:180 +#: libraries/import.lib.php:151 sql.php:518 tbl_change.php:175 #: 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)." @@ -3069,7 +3118,7 @@ msgstr "" msgid "Column names in first row" msgstr "" -#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:501 +#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:500 #: view_create.php:147 msgid "Column names" msgstr "Kolom name" @@ -3095,12 +3144,12 @@ msgstr "" msgid "Invalid column count in CSV input on line %d." msgstr "" -#: libraries/import/docsql.php:28 +#: libraries/import/docsql.php:27 msgid "DocSQL" msgstr "" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 -#: server_synchronize.php:427 server_synchronize.php:870 +#: libraries/import/docsql.php:30 libraries/tbl_properties.inc.php:616 +#: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "" @@ -3156,26 +3205,26 @@ msgstr "Geen" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:512 -#: tbl_structure.php:28 tbl_structure.php:152 tbl_structure.php:156 -#: tbl_structure.php:472 +#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:511 +#: tbl_structure.php:27 tbl_structure.php:151 tbl_structure.php:155 +#: tbl_structure.php:470 msgid "Primary" msgstr "Primere" #: libraries/mult_submits.inc.php:97 libraries/tbl_properties.inc.php:115 -#: libraries/tbl_properties.inc.php:524 tbl_printview.php:324 -#: tbl_structure.php:30 tbl_structure.php:153 tbl_structure.php:157 -#: tbl_structure.php:474 tbl_structure.php:672 +#: libraries/tbl_properties.inc.php:523 tbl_printview.php:323 +#: tbl_structure.php:29 tbl_structure.php:152 tbl_structure.php:156 +#: tbl_structure.php:472 tbl_structure.php:670 msgid "Index" msgstr "Indeks" -#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:530 -#: tbl_structure.php:34 tbl_structure.php:155 tbl_structure.php:159 -#: tbl_structure.php:477 +#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:529 +#: tbl_structure.php:33 tbl_structure.php:154 tbl_structure.php:158 +#: tbl_structure.php:475 msgid "Fulltext" msgstr "Volteks" -#: libraries/mult_submits.inc.php:434 tbl_replace.php:330 +#: libraries/mult_submits.inc.php:433 tbl_replace.php:330 msgid "No change" msgstr "Geen verandering" @@ -3183,190 +3232,190 @@ msgstr "Geen verandering" msgid "Charset" msgstr "" -#: libraries/mysql_charsets.lib.php:210 libraries/mysql_charsets.lib.php:411 -#: tbl_change.php:515 +#: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 +#: tbl_change.php:510 msgid "Binary" msgstr "Biner" -#: libraries/mysql_charsets.lib.php:222 +#: libraries/mysql_charsets.lib.php:214 msgid "Bulgarian" msgstr "" -#: libraries/mysql_charsets.lib.php:226 libraries/mysql_charsets.lib.php:351 +#: libraries/mysql_charsets.lib.php:218 libraries/mysql_charsets.lib.php:343 msgid "Simplified Chinese" msgstr "" -#: libraries/mysql_charsets.lib.php:228 libraries/mysql_charsets.lib.php:371 +#: libraries/mysql_charsets.lib.php:220 libraries/mysql_charsets.lib.php:363 msgid "Traditional Chinese" msgstr "" -#: libraries/mysql_charsets.lib.php:232 libraries/mysql_charsets.lib.php:418 +#: libraries/mysql_charsets.lib.php:224 libraries/mysql_charsets.lib.php:410 msgid "case-insensitive" msgstr "" -#: libraries/mysql_charsets.lib.php:235 libraries/mysql_charsets.lib.php:420 +#: libraries/mysql_charsets.lib.php:227 libraries/mysql_charsets.lib.php:412 msgid "case-sensitive" msgstr "" -#: libraries/mysql_charsets.lib.php:238 +#: libraries/mysql_charsets.lib.php:230 msgid "Croatian" msgstr "" -#: libraries/mysql_charsets.lib.php:241 +#: libraries/mysql_charsets.lib.php:233 msgid "Czech" msgstr "" -#: libraries/mysql_charsets.lib.php:244 +#: libraries/mysql_charsets.lib.php:236 msgid "Danish" msgstr "" -#: libraries/mysql_charsets.lib.php:247 +#: libraries/mysql_charsets.lib.php:239 msgid "English" msgstr "" -#: libraries/mysql_charsets.lib.php:250 +#: libraries/mysql_charsets.lib.php:242 msgid "Esperanto" msgstr "" -#: libraries/mysql_charsets.lib.php:253 +#: libraries/mysql_charsets.lib.php:245 msgid "Estonian" msgstr "" -#: libraries/mysql_charsets.lib.php:256 libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:248 libraries/mysql_charsets.lib.php:251 msgid "German" msgstr "" -#: libraries/mysql_charsets.lib.php:256 +#: libraries/mysql_charsets.lib.php:248 msgid "dictionary" msgstr "" -#: libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:251 msgid "phone book" msgstr "" -#: libraries/mysql_charsets.lib.php:262 +#: libraries/mysql_charsets.lib.php:254 msgid "Hungarian" msgstr "" -#: libraries/mysql_charsets.lib.php:265 +#: libraries/mysql_charsets.lib.php:257 msgid "Icelandic" msgstr "" -#: libraries/mysql_charsets.lib.php:268 libraries/mysql_charsets.lib.php:358 +#: libraries/mysql_charsets.lib.php:260 libraries/mysql_charsets.lib.php:350 msgid "Japanese" msgstr "" -#: libraries/mysql_charsets.lib.php:271 +#: libraries/mysql_charsets.lib.php:263 msgid "Latvian" msgstr "" -#: libraries/mysql_charsets.lib.php:274 +#: libraries/mysql_charsets.lib.php:266 msgid "Lithuanian" msgstr "" -#: libraries/mysql_charsets.lib.php:277 libraries/mysql_charsets.lib.php:380 +#: libraries/mysql_charsets.lib.php:269 libraries/mysql_charsets.lib.php:372 msgid "Korean" msgstr "" -#: libraries/mysql_charsets.lib.php:280 +#: libraries/mysql_charsets.lib.php:272 msgid "Persian" msgstr "" -#: libraries/mysql_charsets.lib.php:283 +#: libraries/mysql_charsets.lib.php:275 msgid "Polish" msgstr "" -#: libraries/mysql_charsets.lib.php:286 libraries/mysql_charsets.lib.php:334 +#: libraries/mysql_charsets.lib.php:278 libraries/mysql_charsets.lib.php:326 msgid "West European" msgstr "" -#: libraries/mysql_charsets.lib.php:289 +#: libraries/mysql_charsets.lib.php:281 msgid "Romanian" msgstr "" -#: libraries/mysql_charsets.lib.php:292 +#: libraries/mysql_charsets.lib.php:284 msgid "Slovak" msgstr "" -#: libraries/mysql_charsets.lib.php:295 +#: libraries/mysql_charsets.lib.php:287 msgid "Slovenian" msgstr "" -#: libraries/mysql_charsets.lib.php:298 +#: libraries/mysql_charsets.lib.php:290 msgid "Spanish" msgstr "" -#: libraries/mysql_charsets.lib.php:301 +#: libraries/mysql_charsets.lib.php:293 msgid "Traditional Spanish" msgstr "" -#: libraries/mysql_charsets.lib.php:304 libraries/mysql_charsets.lib.php:401 +#: libraries/mysql_charsets.lib.php:296 libraries/mysql_charsets.lib.php:393 msgid "Swedish" msgstr "" -#: libraries/mysql_charsets.lib.php:307 libraries/mysql_charsets.lib.php:404 +#: libraries/mysql_charsets.lib.php:299 libraries/mysql_charsets.lib.php:396 msgid "Thai" msgstr "" -#: libraries/mysql_charsets.lib.php:310 libraries/mysql_charsets.lib.php:398 +#: libraries/mysql_charsets.lib.php:302 libraries/mysql_charsets.lib.php:390 msgid "Turkish" msgstr "" -#: libraries/mysql_charsets.lib.php:313 libraries/mysql_charsets.lib.php:395 +#: libraries/mysql_charsets.lib.php:305 libraries/mysql_charsets.lib.php:387 msgid "Ukrainian" msgstr "" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 msgid "Unicode" msgstr "" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 -#: libraries/mysql_charsets.lib.php:334 libraries/mysql_charsets.lib.php:341 -#: libraries/mysql_charsets.lib.php:363 libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 +#: libraries/mysql_charsets.lib.php:326 libraries/mysql_charsets.lib.php:333 +#: libraries/mysql_charsets.lib.php:355 libraries/mysql_charsets.lib.php:366 msgid "multilingual" msgstr "" -#: libraries/mysql_charsets.lib.php:341 +#: libraries/mysql_charsets.lib.php:333 msgid "Central European" msgstr "" -#: libraries/mysql_charsets.lib.php:346 +#: libraries/mysql_charsets.lib.php:338 msgid "Russian" msgstr "" -#: libraries/mysql_charsets.lib.php:363 +#: libraries/mysql_charsets.lib.php:355 msgid "Baltic" msgstr "" -#: libraries/mysql_charsets.lib.php:368 +#: libraries/mysql_charsets.lib.php:360 msgid "Armenian" msgstr "" -#: libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:366 msgid "Cyrillic" msgstr "" -#: libraries/mysql_charsets.lib.php:377 +#: libraries/mysql_charsets.lib.php:369 msgid "Arabic" msgstr "" -#: libraries/mysql_charsets.lib.php:383 +#: libraries/mysql_charsets.lib.php:375 msgid "Hebrew" msgstr "" -#: libraries/mysql_charsets.lib.php:386 +#: libraries/mysql_charsets.lib.php:378 msgid "Georgian" msgstr "" -#: libraries/mysql_charsets.lib.php:389 +#: libraries/mysql_charsets.lib.php:381 msgid "Greek" msgstr "" -#: libraries/mysql_charsets.lib.php:392 +#: libraries/mysql_charsets.lib.php:384 msgid "Czech-Slovak" msgstr "" -#: libraries/mysql_charsets.lib.php:407 libraries/mysql_charsets.lib.php:414 +#: libraries/mysql_charsets.lib.php:399 libraries/mysql_charsets.lib.php:406 msgid "unknown" msgstr "" @@ -3392,67 +3441,67 @@ msgstr "" msgid "This format has no options" msgstr "" -#: libraries/relation.lib.php:82 +#: libraries/relation.lib.php:77 msgid "not OK" msgstr "nie OK" -#: libraries/relation.lib.php:86 pmd_general.php:339 +#: libraries/relation.lib.php:81 pmd_general.php:339 msgid "OK" msgstr "OK" -#: libraries/relation.lib.php:87 +#: libraries/relation.lib.php:82 msgid "Enabled" msgstr "Beskikbaar" -#: libraries/relation.lib.php:110 +#: libraries/relation.lib.php:105 msgid "Display Features" msgstr "Vertoon Funksies" -#: libraries/relation.lib.php:116 +#: libraries/relation.lib.php:111 msgid "Creation of PDFs" msgstr "Skepping van PDF's" -#: libraries/relation.lib.php:120 +#: libraries/relation.lib.php:115 msgid "Displaying Column Comments" msgstr "Kolom Kommentaar word vertoon" -#: libraries/relation.lib.php:125 +#: libraries/relation.lib.php:120 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" -#: libraries/relation.lib.php:130 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 msgid "Bookmarked SQL query" msgstr "Geboekmerkde SQL-stelling" -#: libraries/relation.lib.php:134 querywindow.php:99 querywindow.php:207 +#: libraries/relation.lib.php:129 querywindow.php:98 querywindow.php:205 msgid "SQL history" msgstr "" -#: libraries/relation.lib.php:146 +#: libraries/relation.lib.php:141 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:148 +#: libraries/relation.lib.php:143 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" -#: libraries/relation.lib.php:149 +#: libraries/relation.lib.php:144 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:150 +#: libraries/relation.lib.php:145 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:151 +#: libraries/relation.lib.php:146 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1158 +#: libraries/relation.lib.php:1153 msgid "no description" msgstr "geen Beskrywing" @@ -3460,7 +3509,7 @@ msgstr "geen Beskrywing" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:53 server_replication.php:346 +#: libraries/replication_gui.lib.php:53 server_replication.php:345 msgid "Change or reconfigure master server" msgstr "" @@ -3472,17 +3521,12 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:711 -#: server_privileges.php:714 server_privileges.php:721 -#: server_synchronize.php:1170 +#: libraries/replication_gui.lib.php:261 server_privileges.php:710 +#: server_privileges.php:713 server_privileges.php:720 +#: server_synchronize.php:1169 msgid "User name" msgstr "Gebruiker naam" -#: libraries/replication_gui.lib.php:69 server_synchronize.php:1162 -#, fuzzy -msgid "Port" -msgstr "Sorteer" - #: libraries/replication_gui.lib.php:105 msgid "Master status" msgstr "" @@ -3497,8 +3541,8 @@ msgid "Variable" msgstr "" #: libraries/replication_gui.lib.php:117 server_status.php:737 -#: tbl_change.php:322 tbl_printview.php:368 tbl_select.php:137 -#: tbl_structure.php:728 +#: tbl_change.php:317 tbl_printview.php:367 tbl_select.php:136 +#: tbl_structure.php:726 msgid "Value" msgstr "Waarde" @@ -3512,38 +3556,38 @@ msgid "" "this list." msgstr "" -#: libraries/replication_gui.lib.php:242 server_replication.php:193 +#: libraries/replication_gui.lib.php:242 server_replication.php:192 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:256 server_privileges.php:716 +#: libraries/replication_gui.lib.php:256 server_privileges.php:715 msgid "Any user" msgstr "Enige gebruiker" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1920 server_privileges.php:1950 +#: libraries/replication_gui.lib.php:348 server_privileges.php:716 +#: server_privileges.php:783 server_privileges.php:807 +#: server_privileges.php:1924 server_privileges.php:1954 msgid "Use text field" msgstr "" -#: libraries/replication_gui.lib.php:304 server_privileges.php:764 +#: libraries/replication_gui.lib.php:304 server_privileges.php:763 msgid "Any host" msgstr "Enige gasheer (host)" -#: libraries/replication_gui.lib.php:308 server_privileges.php:768 +#: libraries/replication_gui.lib.php:308 server_privileges.php:767 msgid "Local" msgstr "Local" -#: libraries/replication_gui.lib.php:314 server_privileges.php:773 +#: libraries/replication_gui.lib.php:314 server_privileges.php:772 msgid "This Host" msgstr "" -#: libraries/replication_gui.lib.php:320 server_privileges.php:779 +#: libraries/replication_gui.lib.php:320 server_privileges.php:778 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:333 server_privileges.php:792 +#: libraries/replication_gui.lib.php:333 server_privileges.php:791 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3569,8 +3613,8 @@ msgstr "" msgid "Servers" msgstr "" -#: libraries/server_links.inc.php:52 server_engines.php:111 -#: server_engines.php:115 server_status.php:414 test/theme.php:104 +#: libraries/server_links.inc.php:52 server_engines.php:125 +#: server_engines.php:129 server_status.php:414 test/theme.php:104 msgid "Variables" msgstr "" @@ -3592,12 +3636,12 @@ msgstr "Biner" msgid "Processes" msgstr "" -#: libraries/server_links.inc.php:91 server_synchronize.php:1091 -#: server_synchronize.php:1099 +#: libraries/server_links.inc.php:91 server_synchronize.php:1090 +#: server_synchronize.php:1098 msgid "Synchronize" msgstr "" -#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1109 +#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1108 #, fuzzy msgid "Source database" msgstr "Soek in databasis" @@ -3616,7 +3660,7 @@ msgstr "" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1111 +#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1110 #, fuzzy msgid "Target database" msgstr "Soek in databasis" @@ -3637,11 +3681,11 @@ msgstr "Hardloop SQL stellings op databasis %s" msgid "Columns" msgstr "Kolom name" -#: libraries/sql_query_form.lib.php:342 sql.php:664 sql.php:665 sql.php:682 +#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "Boekmerk hierdie SQL-stelling" -#: libraries/sql_query_form.lib.php:349 sql.php:676 +#: libraries/sql_query_form.lib.php:349 sql.php:669 msgid "Let every user access this bookmark" msgstr "" @@ -3737,12 +3781,12 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" -#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:139 -#: libraries/tbl_links.inc.php:140 +#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 +#: libraries/tbl_links.inc.php:139 msgid "Table seems to be empty!" msgstr "" -#: libraries/tbl_links.inc.php:148 +#: libraries/tbl_links.inc.php:147 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" @@ -3775,23 +3819,23 @@ msgid "" "escaping or quotes, using this format: a" msgstr "" -#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1263 -#: pdf_schema.php:1284 tbl_printview.php:142 tbl_structure.php:179 +#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1262 +#: pdf_schema.php:1283 tbl_printview.php:141 tbl_structure.php:178 msgid "Attributes" msgstr "Kenmerke" -#: libraries/tbl_properties.inc.php:136 +#: libraries/tbl_properties.inc.php:135 #, php-format msgid "" "For a list of available transformation options and their MIME type " "transformations, click on %stransformation descriptions%s" msgstr "" -#: libraries/tbl_properties.inc.php:144 +#: libraries/tbl_properties.inc.php:143 msgid "Transformation options" msgstr "" -#: libraries/tbl_properties.inc.php:145 +#: libraries/tbl_properties.inc.php:144 #, fuzzy msgid "" "Please enter the values for transformation options using this format: 'a', " @@ -3804,46 +3848,46 @@ msgstr "" "a single quote (\"'\") amongst those values, backslashes it (for example '\\" "\\xyz' or 'a\\'b')." -#: libraries/tbl_properties.inc.php:392 +#: libraries/tbl_properties.inc.php:391 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "Geen" -#: libraries/tbl_properties.inc.php:393 +#: libraries/tbl_properties.inc.php:392 msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:579 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:578 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
                            Please ask the " "author what %s does." msgstr "" -#: libraries/tbl_properties.inc.php:725 server_engines.php:57 -#: tbl_operations.php:354 +#: libraries/tbl_properties.inc.php:724 server_engines.php:56 +#: tbl_operations.php:352 msgid "Storage Engine" msgstr "" -#: libraries/tbl_properties.inc.php:754 +#: libraries/tbl_properties.inc.php:753 msgid "PARTITION definition" msgstr "" -#: libraries/tbl_properties.inc.php:775 pdf_pages.php:502 +#: libraries/tbl_properties.inc.php:774 pdf_pages.php:501 #: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214 -#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1124 tbl_indexes.php:247 -#: tbl_relation.php:565 +#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1022 tbl_indexes.php:246 +#: tbl_relation.php:563 msgid "Save" msgstr "Stoor" -#: libraries/tbl_properties.inc.php:779 tbl_structure.php:541 +#: libraries/tbl_properties.inc.php:778 tbl_structure.php:539 #, fuzzy, php-format msgid "Add %s column(s)" msgstr "Voeg 'n nuwe veld by" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:535 +#: libraries/tbl_properties.inc.php:782 tbl_structure.php:533 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." @@ -3969,8 +4013,8 @@ msgstr "" msgid "Custom color" msgstr "" -#: main.php:162 pdf_pages.php:362 setup/lib/FormDisplay.tpl.php:216 -#: tbl_change.php:1173 +#: main.php:162 pdf_pages.php:361 setup/lib/FormDisplay.tpl.php:216 +#: tbl_change.php:1071 msgid "Reset" msgstr "Herstel" @@ -3978,8 +4022,8 @@ msgstr "Herstel" msgid "Protocol version" msgstr "" -#: main.php:188 server_privileges.php:1381 server_privileges.php:1528 -#: server_privileges.php:1642 server_privileges.php:2060 +#: main.php:188 server_privileges.php:1385 server_privileges.php:1532 +#: server_privileges.php:1646 server_privileges.php:2064 #: server_processlist.php:53 msgid "User" msgstr "Gebruiker" @@ -4054,21 +4098,30 @@ msgid "" "has been configured." msgstr "" -#: main.php:330 +#: main.php:314 +#, php-format +msgid "" +"The additional features for working with linked tables have been " +"deactivated. To find out why click %shere%s." +msgstr "" +"Die addisionele funksies om met geskakelde tabelle te werk is ge deaktiveer. " +"Om uit te vind hoekom kliek %shier%s." + +#: main.php:329 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:345 +#: main.php:344 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: main.php:357 +#: main.php:356 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -4079,103 +4132,103 @@ msgstr "" msgid "Reload navigation frame" msgstr "" -#: navigation.php:204 server_databases.php:370 server_synchronize.php:1190 +#: navigation.php:203 server_databases.php:368 server_synchronize.php:1189 msgid "No databases" msgstr "Geen databasisse" -#: navigation.php:298 +#: navigation.php:297 msgid "Filter" msgstr "" -#: navigation.php:299 setup/frames/index.inc.php:218 +#: navigation.php:298 setup/frames/index.inc.php:218 #: setup/lib/messages.inc.php:41 msgid "Clear" msgstr "" -#: navigation.php:330 navigation.php:331 +#: navigation.php:329 navigation.php:330 #, fuzzy msgctxt "short form" msgid "Create table" msgstr "Skep 'n nuwe bladsy" -#: navigation.php:333 navigation.php:495 +#: navigation.php:332 navigation.php:494 msgid "Please select a database" msgstr "Kies asb. 'n databasis" -#: pdf_pages.php:40 pdf_pages.php:46 pdf_pages.php:52 pdf_pages.php:57 +#: pdf_pages.php:39 pdf_pages.php:45 pdf_pages.php:51 pdf_pages.php:56 #, php-format msgid "%s table not found or not set in %s" msgstr "%s tabel nie gevind nie of nie gesetel in %s" -#: pdf_pages.php:265 +#: pdf_pages.php:264 msgid "Please choose a page to edit" msgstr "Kies asb. 'n bladsy om te verander" -#: pdf_pages.php:303 pmd_pdf.php:113 +#: pdf_pages.php:302 pmd_pdf.php:111 msgid "Create a page" msgstr "Skep 'n nuwe bladsy" -#: pdf_pages.php:309 +#: pdf_pages.php:308 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Bladsy nommer:" -#: pdf_pages.php:313 +#: pdf_pages.php:312 #, fuzzy msgid "Automatic layout based on" msgstr "Bediener weergawe" -#: pdf_pages.php:315 +#: pdf_pages.php:314 msgid "Internal relations" msgstr "" -#: pdf_pages.php:338 +#: pdf_pages.php:337 msgid "Select Tables" msgstr "Kies Tabelle" -#: pdf_pages.php:361 +#: pdf_pages.php:360 msgid "Toggle scratchboard" msgstr "" -#: pdf_pages.php:524 +#: pdf_pages.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" msgstr "" -#: pdf_schema.php:635 +#: pdf_schema.php:634 #, fuzzy, php-format #| msgid "The \"%s\" table doesn't exist!" msgid "The %s table doesn't exist!" msgstr "Die \"%s\" databasis bestaan nie!" -#: pdf_schema.php:671 +#: pdf_schema.php:670 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Stel asb. die koordinate op van tabel %s" -#: pdf_schema.php:994 +#: pdf_schema.php:993 #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" msgstr "Skema van die \"%s\" databasis - Bladsy %s" -#: pdf_schema.php:1012 +#: pdf_schema.php:1011 msgid "No tables" msgstr "Geen tabelle" -#: pdf_schema.php:1031 pdf_schema.php:1140 +#: pdf_schema.php:1030 pdf_schema.php:1139 msgid "Relational schema" msgstr "" -#: pdf_schema.php:1115 +#: pdf_schema.php:1114 #, fuzzy msgid "Table of contents" msgstr "Tabel kommentaar" -#: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:145 -#: tbl_structure.php:182 tbl_tracking.php:277 +#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 +#: tbl_structure.php:181 tbl_tracking.php:272 msgid "Extra" msgstr "Ekstra" @@ -4187,7 +4240,7 @@ msgstr "" msgid "Save position" msgstr "" -#: pmd_general.php:70 server_synchronize.php:428 server_synchronize.php:871 +#: pmd_general.php:70 server_synchronize.php:427 server_synchronize.php:870 #, fuzzy msgid "Create table" msgstr "Skep 'n nuwe bladsy" @@ -4260,32 +4313,32 @@ msgid "" "appropriate column name." msgstr "" -#: pmd_pdf.php:62 +#: pmd_pdf.php:60 #, fuzzy msgid "Page has been created" msgstr "Tabel %s is verwyder" -#: pmd_pdf.php:64 +#: pmd_pdf.php:62 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:84 +#: pmd_pdf.php:82 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:88 +#: pmd_pdf.php:86 msgid "recommended" msgstr "" -#: pmd_pdf.php:93 +#: pmd_pdf.php:91 msgid "to/from page" msgstr "" -#: querywindow.php:94 +#: querywindow.php:93 msgid "Import files" msgstr "" -#: querywindow.php:105 +#: querywindow.php:104 msgid "All" msgstr "Alle" @@ -4332,187 +4385,187 @@ msgstr "" msgid "Character Sets and Collations" msgstr "" -#: server_databases.php:51 +#: server_databases.php:49 msgid "No databases selected." msgstr "" -#: server_databases.php:62 +#: server_databases.php:60 #, php-format msgid "%s databases have been dropped successfully." msgstr "" -#: server_databases.php:87 +#: server_databases.php:85 msgid "Databases statistics" msgstr "Databasis statistieke" -#: server_databases.php:116 server_status.php:370 +#: server_databases.php:114 server_status.php:370 #: setup/lib/messages.inc.php:114 #, fuzzy msgid "Tables" msgstr "Tabel" -#: server_databases.php:194 server_replication.php:180 -#: server_replication.php:208 +#: server_databases.php:192 server_replication.php:179 +#: server_replication.php:207 msgid "Master replication" msgstr "" -#: server_databases.php:196 server_replication.php:247 +#: server_databases.php:194 server_replication.php:246 msgid "Slave replication" msgstr "" -#: server_databases.php:229 +#: server_databases.php:227 #, fuzzy msgid "Jump to database" msgstr "Geen databasisse" -#: server_databases.php:266 +#: server_databases.php:264 msgid "Not replicated" msgstr "" -#: server_databases.php:272 +#: server_databases.php:270 msgid "Replicated" msgstr "" -#: server_databases.php:288 +#: server_databases.php:286 #, php-format msgid "Check privileges for database "%s"." msgstr "" -#: server_databases.php:292 server_databases.php:293 +#: server_databases.php:290 server_databases.php:291 #, fuzzy msgid "Check Privileges" msgstr "Geen Regte" -#: server_databases.php:357 server_databases.php:358 +#: server_databases.php:355 server_databases.php:356 #, fuzzy msgid "Enable Statistics" msgstr "Databasis statistieke" -#: server_databases.php:361 server_databases.php:362 +#: server_databases.php:359 server_databases.php:360 #, fuzzy msgid "Disable Statistics" msgstr "Databasis statistieke" -#: server_databases.php:365 +#: server_databases.php:363 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." msgstr "" -#: server_engines.php:48 +#: server_engines.php:47 msgid "Storage Engines" msgstr "" -#: server_export.php:20 +#: server_export.php:18 #, fuzzy msgid "View dump (schema) of databases" msgstr "Sien die storting (skema) van die databasis" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:23 server_privileges.php:265 msgid "Includes all privileges except GRANT." msgstr "" -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:24 server_privileges.php:191 +#: server_privileges.php:514 msgid "Allows altering the structure of existing tables." msgstr "" -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:25 server_privileges.php:207 +#: server_privileges.php:520 msgid "Allows altering and dropping stored routines." msgstr "" -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:26 server_privileges.php:183 +#: server_privileges.php:513 msgid "Allows creating new databases and tables." msgstr "" -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:27 server_privileges.php:206 +#: server_privileges.php:519 msgid "Allows creating stored routines." msgstr "" -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:513 msgid "Allows creating new tables." msgstr "" -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:29 server_privileges.php:194 +#: server_privileges.php:517 msgid "Allows creating temporary tables." msgstr "" -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:30 server_privileges.php:208 +#: server_privileges.php:553 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: server_privileges.php:32 server_privileges.php:199 -#: server_privileges.php:203 server_privileges.php:526 -#: server_privileges.php:530 +#: server_privileges.php:31 server_privileges.php:198 +#: server_privileges.php:202 server_privileges.php:525 +#: server_privileges.php:529 msgid "Allows creating new views." msgstr "" -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:32 server_privileges.php:182 +#: server_privileges.php:505 msgid "Allows deleting data." msgstr "" -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:33 server_privileges.php:184 +#: server_privileges.php:516 msgid "Allows dropping databases and tables." msgstr "" -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:34 server_privileges.php:516 msgid "Allows dropping tables." msgstr "" -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:35 server_privileges.php:199 +#: server_privileges.php:533 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:36 server_privileges.php:209 +#: server_privileges.php:521 msgid "Allows executing stored routines." msgstr "" -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:37 server_privileges.php:188 +#: server_privileges.php:508 msgid "Allows importing data from and exporting data into files." msgstr "" -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:38 server_privileges.php:539 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:515 msgid "Allows creating and dropping indexes." msgstr "" -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:40 server_privileges.php:180 +#: server_privileges.php:441 server_privileges.php:503 msgid "Allows inserting and replacing data." msgstr "" -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:41 server_privileges.php:195 +#: server_privileges.php:548 msgid "Allows locking tables for the current thread." msgstr "" -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:42 server_privileges.php:645 +#: server_privileges.php:647 msgid "Limits the number of new connections the user may open per hour." msgstr "Limits the number of new connections the user may open per hour." -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:43 server_privileges.php:633 +#: server_privileges.php:635 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Limits the number of queries the user may send to the server per hour." -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:44 server_privileges.php:639 +#: server_privileges.php:641 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -4520,218 +4573,218 @@ msgstr "" "Limits the number of commands that change any table or database the user may " "execute per hour." -#: server_privileges.php:46 server_privileges.php:652 -#: server_privileges.php:654 +#: server_privileges.php:45 server_privileges.php:651 +#: server_privileges.php:653 #, fuzzy msgid "Limits the number of simultaneous connections the user may have." msgstr "Limits the number of new connections the user may open per hour." -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:46 server_privileges.php:187 +#: server_privileges.php:543 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:47 server_privileges.php:189 +#: server_privileges.php:447 server_privileges.php:549 msgid "Has no effect in this MySQL version." msgstr "" -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:48 server_privileges.php:185 +#: server_privileges.php:544 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:197 +#: server_privileges.php:551 msgid "Allows the user to ask where the slaves / masters are." msgstr "" -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:50 server_privileges.php:196 +#: server_privileges.php:552 msgid "Needed for the replication slaves." msgstr "" -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:51 server_privileges.php:179 +#: server_privileges.php:438 server_privileges.php:502 msgid "Allows reading data." msgstr "" -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:52 server_privileges.php:192 +#: server_privileges.php:546 msgid "Gives access to the complete list of databases." msgstr "" -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:53 server_privileges.php:203 +#: server_privileges.php:205 server_privileges.php:518 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:54 server_privileges.php:186 +#: server_privileges.php:545 msgid "Allows shutting down the server." msgstr "" -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:55 server_privileges.php:193 +#: server_privileges.php:542 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " "killing threads of other users." msgstr "" -#: server_privileges.php:57 server_privileges.php:201 -#: server_privileges.php:535 +#: server_privileges.php:56 server_privileges.php:200 +#: server_privileges.php:534 msgid "Allows creating and dropping triggers" msgstr "" -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:57 server_privileges.php:181 +#: server_privileges.php:444 server_privileges.php:504 msgid "Allows changing data." msgstr "" -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:58 server_privileges.php:259 #, fuzzy msgid "No privileges." msgstr "Geen Regte" -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:301 server_privileges.php:302 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Geen" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1710 server_privileges.php:1716 +#: server_privileges.php:430 server_privileges.php:565 +#: server_privileges.php:1714 server_privileges.php:1720 msgid "Table-specific privileges" msgstr "" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1532 +#: server_privileges.php:431 server_privileges.php:573 +#: server_privileges.php:1536 msgid " Note: MySQL privilege names are expressed in English " msgstr " Nota: MySQL regte name word in Engels vertoon " -#: server_privileges.php:563 server_privileges.php:1531 +#: server_privileges.php:562 server_privileges.php:1535 #, fuzzy msgid "Global privileges" msgstr "Geen Regte" -#: server_privileges.php:565 server_privileges.php:1710 +#: server_privileges.php:564 server_privileges.php:1714 msgid "Database-specific privileges" msgstr "" -#: server_privileges.php:610 +#: server_privileges.php:609 msgid "Administration" msgstr "" -#: server_privileges.php:630 +#: server_privileges.php:629 msgid "Resource limits" msgstr "" -#: server_privileges.php:631 +#: server_privileges.php:630 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" -#: server_privileges.php:708 +#: server_privileges.php:707 #, fuzzy msgid "Login Information" msgstr "Wys PHP informasie" -#: server_privileges.php:802 +#: server_privileges.php:801 msgid "Do not change the password" msgstr "Moenie die wagwoord verander nie" -#: server_privileges.php:835 server_privileges.php:2197 +#: server_privileges.php:834 server_privileges.php:2201 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Geen gebruiker(s) gevind nie." -#: server_privileges.php:879 +#: server_privileges.php:878 #, php-format msgid "The user %s already exists!" msgstr "" -#: server_privileges.php:962 +#: server_privileges.php:961 msgid "You have added a new user." msgstr "Jy het 'n nuwe gebruiker bygevoeg." -#: server_privileges.php:1183 +#: server_privileges.php:1184 #, php-format msgid "You have updated the privileges for %s." msgstr "Jy het die regte opgedateer vir %s." -#: server_privileges.php:1207 +#: server_privileges.php:1208 #, php-format msgid "You have revoked the privileges for %s" msgstr "Jy het die regte herroep vir %s" -#: server_privileges.php:1243 +#: server_privileges.php:1244 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: server_privileges.php:1263 +#: server_privileges.php:1264 #, php-format msgid "Deleting %s" msgstr "" -#: server_privileges.php:1274 +#: server_privileges.php:1275 msgid "No users selected for deleting!" msgstr "" -#: server_privileges.php:1277 +#: server_privileges.php:1278 msgid "Reloading the privileges" msgstr "" -#: server_privileges.php:1292 +#: server_privileges.php:1296 msgid "The selected users have been deleted successfully." msgstr "" -#: server_privileges.php:1327 +#: server_privileges.php:1331 msgid "The privileges were reloaded successfully." msgstr "" -#: server_privileges.php:1355 server_privileges.php:1641 +#: server_privileges.php:1359 server_privileges.php:1645 msgid "Edit Privileges" msgstr "Verander Regte" -#: server_privileges.php:1364 +#: server_privileges.php:1368 msgid "Revoke" msgstr "Herroep" -#: server_privileges.php:1396 +#: server_privileges.php:1400 msgid "User overview" msgstr "" -#: server_privileges.php:1533 server_privileges.php:1715 -#: server_privileges.php:2064 +#: server_privileges.php:1537 server_privileges.php:1719 +#: server_privileges.php:2068 msgid "Grant" msgstr "" -#: server_privileges.php:1552 server_privileges.php:2154 +#: server_privileges.php:1556 server_privileges.php:2158 msgid "Any" msgstr "Enige" -#: server_privileges.php:1601 server_privileges.php:1625 -#: server_privileges.php:2019 server_privileges.php:2208 +#: server_privileges.php:1605 server_privileges.php:1629 +#: server_privileges.php:2023 server_privileges.php:2212 msgid "Add a new User" msgstr "Voeg 'n nuwe gebruiker by" -#: server_privileges.php:1606 +#: server_privileges.php:1610 msgid "Remove selected users" msgstr "" -#: server_privileges.php:1609 +#: server_privileges.php:1613 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: server_privileges.php:1610 server_privileges.php:1611 -#: server_privileges.php:1612 +#: server_privileges.php:1614 server_privileges.php:1615 +#: server_privileges.php:1616 msgid "Drop the databases that have the same names as the users." msgstr "" -#: server_privileges.php:1628 +#: server_privileges.php:1632 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4740,91 +4793,91 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: server_privileges.php:1676 +#: server_privileges.php:1680 msgid "The selected user was not found in the privilege table." msgstr "" -#: server_privileges.php:1716 +#: server_privileges.php:1720 msgid "Column-specific privileges" msgstr "" -#: server_privileges.php:1917 +#: server_privileges.php:1921 msgid "Add privileges on the following database" msgstr "" -#: server_privileges.php:1935 +#: server_privileges.php:1939 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:1938 +#: server_privileges.php:1942 msgid "Add privileges on the following table" msgstr "" -#: server_privileges.php:1995 +#: server_privileges.php:1999 msgid "Change Login Information / Copy User" msgstr "" -#: server_privileges.php:1998 +#: server_privileges.php:2002 msgid "Create a new user with the same privileges and ..." msgstr "" -#: server_privileges.php:2000 +#: server_privileges.php:2004 msgid "... keep the old one." msgstr "" -#: server_privileges.php:2001 +#: server_privileges.php:2005 msgid " ... delete the old one from the user tables." msgstr "" -#: server_privileges.php:2002 +#: server_privileges.php:2006 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: server_privileges.php:2003 +#: server_privileges.php:2007 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: server_privileges.php:2025 +#: server_privileges.php:2029 msgid "Database for user" msgstr "" -#: server_privileges.php:2029 +#: server_privileges.php:2033 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Geen" -#: server_privileges.php:2030 +#: server_privileges.php:2034 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2031 +#: server_privileges.php:2035 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2034 +#: server_privileges.php:2038 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: server_privileges.php:2057 +#: server_privileges.php:2061 #, php-format msgid "Users having access to "%s"" msgstr "" -#: server_privileges.php:2165 +#: server_privileges.php:2169 msgid "global" msgstr "" -#: server_privileges.php:2167 +#: server_privileges.php:2171 msgid "database-specific" msgstr "" -#: server_privileges.php:2169 +#: server_privileges.php:2173 msgid "wildcard" msgstr "" @@ -4843,53 +4896,53 @@ msgstr "" msgid "ID" msgstr "" -#: server_replication.php:50 +#: server_replication.php:49 msgid "Unknown error" msgstr "" -#: server_replication.php:57 +#: server_replication.php:56 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:64 +#: server_replication.php:63 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:70 +#: server_replication.php:69 msgid "Unable to change master" msgstr "" -#: server_replication.php:73 +#: server_replication.php:72 #, php-format msgid "Master server changed succesfully to %s" msgstr "" -#: server_replication.php:181 +#: server_replication.php:180 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:183 server_status.php:391 +#: server_replication.php:182 server_status.php:391 msgid "Show master status" msgstr "" -#: server_replication.php:186 +#: server_replication.php:185 msgid "Show connected slaves" msgstr "" -#: server_replication.php:209 +#: server_replication.php:208 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:216 +#: server_replication.php:215 msgid "Master configuration" msgstr "" -#: server_replication.php:217 +#: server_replication.php:216 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -4898,110 +4951,110 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:220 +#: server_replication.php:219 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:221 +#: server_replication.php:220 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:224 +#: server_replication.php:223 #, fuzzy msgid "Please select databases:" msgstr "Kies asb. 'n databasis" -#: server_replication.php:227 +#: server_replication.php:226 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: server_replication.php:229 +#: server_replication.php:228 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: server_replication.php:292 +#: server_replication.php:291 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:295 +#: server_replication.php:294 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:304 +#: server_replication.php:303 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:307 +#: server_replication.php:306 msgid "See slave status table" msgstr "" -#: server_replication.php:310 +#: server_replication.php:309 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:321 +#: server_replication.php:320 msgid "Control slave:" msgstr "" -#: server_replication.php:324 +#: server_replication.php:323 #, fuzzy msgid "Full start" msgstr "Volteks" -#: server_replication.php:324 +#: server_replication.php:323 msgid "Full stop" msgstr "" -#: server_replication.php:325 +#: server_replication.php:324 msgid "Reset slave" msgstr "" -#: server_replication.php:326 +#: server_replication.php:325 #, php-format msgid "SQL Thread %s only" msgstr "" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 #, fuzzy msgid "Start" msgstr "Sa" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 msgid "Stop" msgstr "" -#: server_replication.php:327 +#: server_replication.php:326 #, php-format msgid "IO Thread %s only" msgstr "" -#: server_replication.php:331 +#: server_replication.php:330 msgid "Error management:" msgstr "" -#: server_replication.php:333 +#: server_replication.php:332 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:335 +#: server_replication.php:334 msgid "Skip current error" msgstr "" -#: server_replication.php:336 +#: server_replication.php:335 msgid "Skip next" msgstr "" -#: server_replication.php:339 +#: server_replication.php:338 msgid "errors." msgstr "" -#: server_replication.php:354 +#: server_replication.php:353 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -5710,110 +5763,110 @@ msgstr "" msgid "Replication status" msgstr "" -#: server_synchronize.php:93 +#: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:96 +#: server_synchronize.php:95 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:121 server_synchronize.php:124 tbl_create.php:77 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:264 +#: server_synchronize.php:263 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:271 +#: server_synchronize.php:270 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:399 server_synchronize.php:838 +#: server_synchronize.php:398 server_synchronize.php:837 msgid "not present" msgstr "" -#: server_synchronize.php:423 server_synchronize.php:866 +#: server_synchronize.php:422 server_synchronize.php:865 msgid "Structure Difference" msgstr "" -#: server_synchronize.php:424 server_synchronize.php:867 +#: server_synchronize.php:423 server_synchronize.php:866 msgid "Data Difference" msgstr "" -#: server_synchronize.php:429 server_synchronize.php:872 +#: server_synchronize.php:428 server_synchronize.php:871 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:430 server_synchronize.php:873 +#: server_synchronize.php:429 server_synchronize.php:872 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:431 server_synchronize.php:874 +#: server_synchronize.php:430 server_synchronize.php:873 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:432 server_synchronize.php:875 +#: server_synchronize.php:431 server_synchronize.php:874 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:433 server_synchronize.php:876 +#: server_synchronize.php:432 server_synchronize.php:875 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:434 server_synchronize.php:877 +#: server_synchronize.php:433 server_synchronize.php:876 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:435 server_synchronize.php:878 +#: server_synchronize.php:434 server_synchronize.php:877 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:445 server_synchronize.php:889 +#: server_synchronize.php:444 server_synchronize.php:888 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:448 server_synchronize.php:893 +#: server_synchronize.php:447 server_synchronize.php:892 msgid "Apply Selected Changes" msgstr "" -#: server_synchronize.php:450 server_synchronize.php:895 +#: server_synchronize.php:449 server_synchronize.php:894 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:463 +#: server_synchronize.php:462 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:941 +#: server_synchronize.php:940 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:1002 +#: server_synchronize.php:1001 msgid "The following queries have been executed:" msgstr "" -#: server_synchronize.php:1121 +#: server_synchronize.php:1120 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1122 +#: server_synchronize.php:1121 msgid "Current connection" msgstr "" -#: server_synchronize.php:1151 +#: server_synchronize.php:1150 #, php-format msgid "Configuration: %s" msgstr "" -#: server_synchronize.php:1166 +#: server_synchronize.php:1165 msgid "Socket" msgstr "" -#: server_synchronize.php:1212 +#: server_synchronize.php:1211 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -6363,8 +6416,8 @@ msgstr "" #: setup/lib/messages.inc.php:128 msgid "" "Configure phpMyAdmin database to gain access to additional features, see " -"[a@../Documentation.html#linked-tables]linked-tables infrastructure[/a] in " -"documentation" +"[a@../Documentation.html#linked-tables]phpMyAdmin configuration storage[/a] " +"in documentation" msgstr "" #: setup/lib/messages.inc.php:129 setup/lib/messages.inc.php:290 @@ -7417,116 +7470,116 @@ msgstr "" msgid "ZIP" msgstr "" -#: sql.php:495 tbl_replace.php:385 +#: sql.php:494 tbl_replace.php:384 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: sql.php:512 +#: sql.php:511 msgid "Showing as PHP code" msgstr "" -#: sql.php:515 tbl_replace.php:359 +#: sql.php:514 tbl_replace.php:358 msgid "Showing SQL query" msgstr "" -#: sql.php:517 +#: sql.php:516 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Valideer SQL" -#: sql.php:638 +#: sql.php:631 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:670 +#: sql.php:663 msgid "Label" msgstr "Etiket" -#: tbl_addfield.php:188 tbl_alter.php:102 tbl_indexes.php:97 +#: tbl_addfield.php:185 tbl_alter.php:100 tbl_indexes.php:97 #, php-format msgid "Table %1$s has been altered successfully" msgstr "" -#: tbl_change.php:250 tbl_select.php:26 tbl_select.php:27 tbl_select.php:30 -#: tbl_select.php:33 +#: tbl_change.php:245 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_select.php:32 msgid "Browse foreign values" msgstr "" -#: tbl_change.php:280 tbl_change.php:318 +#: tbl_change.php:275 tbl_change.php:313 msgid "Function" msgstr "Funksie" -#: tbl_change.php:300 tbl_indexes.php:199 tbl_indexes.php:224 +#: tbl_change.php:295 tbl_indexes.php:198 tbl_indexes.php:223 msgid "Ignore" msgstr "Ignoreer" -#: tbl_change.php:725 +#: tbl_change.php:720 #, fuzzy #| msgid " Because of its length,
                            this field might not be editable " msgid " Because of its length,
                            this column might not be editable " msgstr "" " Omrede sy lengte,
                            is hierdie veld moontlik nie veranderbaar nie " -#: tbl_change.php:884 +#: tbl_change.php:835 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:890 +#: tbl_change.php:841 msgid "Binary - do not edit" msgstr "Biner - moenie verander nie" -#: tbl_change.php:983 +#: tbl_change.php:889 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:1128 +#: tbl_change.php:1026 msgid "Insert as new row" msgstr "Voeg by as 'n nuwe ry" -#: tbl_change.php:1129 +#: tbl_change.php:1027 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:1130 +#: tbl_change.php:1028 msgid "Show insert query" msgstr "" -#: tbl_change.php:1145 +#: tbl_change.php:1043 msgid "Go back to previous page" msgstr "Terug na vorige bladsy" -#: tbl_change.php:1146 +#: tbl_change.php:1044 msgid "Insert another new row" msgstr "Voeg 'n nuwe ry by" -#: tbl_change.php:1150 +#: tbl_change.php:1048 #, fuzzy msgid "Go back to this page" msgstr "Terug na vorige bladsy" -#: tbl_change.php:1158 +#: tbl_change.php:1056 msgid "Edit next row" msgstr "" -#: tbl_change.php:1169 +#: tbl_change.php:1067 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: tbl_change.php:1207 +#: tbl_change.php:1105 #, php-format msgid "Restart insertion with %s rows" msgstr "" -#: tbl_create.php:57 +#: tbl_create.php:55 #, php-format msgid "Table %s already exists!" msgstr "" -#: tbl_create.php:244 +#: tbl_create.php:241 #, fuzzy, php-format msgid "Table %1$s has been created." msgstr "Tabel %s is verwyder" @@ -7547,203 +7600,203 @@ msgstr "Kannie die indeks hernoem na PRIMARY!" msgid "No index parts defined!" msgstr "Geen indeks dele gedefinieer!" -#: tbl_indexes.php:159 +#: tbl_indexes.php:158 msgid "Create a new index" msgstr "Skep 'n nuwe indeks" -#: tbl_indexes.php:161 +#: tbl_indexes.php:160 msgid "Modify an index" msgstr "Verander 'n indeks" -#: tbl_indexes.php:167 +#: tbl_indexes.php:166 msgid "Index name:" msgstr "Indeks naam :" -#: tbl_indexes.php:173 +#: tbl_indexes.php:172 msgid "Index type:" msgstr "Indeks tipe :" -#: tbl_indexes.php:183 +#: tbl_indexes.php:182 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" "(\"PRIMARY\" moet die naam wees van die primere sleutel, en slegs van die primere sleutel!)" -#: tbl_indexes.php:250 +#: tbl_indexes.php:249 #, php-format msgid "Add to index  %s column(s)" msgstr "Voeg by indeks  %s kolom(me)" -#: tbl_indexes.php:255 tbl_structure.php:588 tbl_structure.php:599 +#: tbl_indexes.php:254 tbl_structure.php:586 tbl_structure.php:597 msgid "Column count has to be larger than zero." msgstr "" -#: tbl_move_copy.php:45 +#: tbl_move_copy.php:44 msgid "Can't move table to same one!" msgstr "" -#: tbl_move_copy.php:47 +#: tbl_move_copy.php:46 msgid "Can't copy table to same one!" msgstr "" -#: tbl_move_copy.php:55 +#: tbl_move_copy.php:54 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabel %s is geskuif na %s." -#: tbl_move_copy.php:57 +#: tbl_move_copy.php:56 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabel %s is gekopieer na %s." -#: tbl_move_copy.php:81 +#: tbl_move_copy.php:80 msgid "The table name is empty!" msgstr "Die tabel naam is leeg!" -#: tbl_operations.php:248 +#: tbl_operations.php:246 msgid "Alter table order by" msgstr "Verander tabel sorteer volgens" -#: tbl_operations.php:257 +#: tbl_operations.php:255 msgid "(singly)" msgstr "(afsonderlik)" -#: tbl_operations.php:277 +#: tbl_operations.php:275 msgid "Move table to (database.table):" msgstr "Skuif tabel na (databasis.tabel):" -#: tbl_operations.php:335 +#: tbl_operations.php:333 msgid "Table options" msgstr "" -#: tbl_operations.php:339 +#: tbl_operations.php:337 msgid "Rename table to" msgstr "Hernoem tabel na" -#: tbl_operations.php:510 +#: tbl_operations.php:508 msgid "Copy table to (database.table):" msgstr "Kopieer tabel na (databasis.tabel):" -#: tbl_operations.php:557 +#: tbl_operations.php:555 msgid "Switch to copied table" msgstr "" -#: tbl_operations.php:569 +#: tbl_operations.php:567 msgid "Table maintenance" msgstr "Tabel instandhouding" -#: tbl_operations.php:590 +#: tbl_operations.php:588 msgid "Defragment table" msgstr "" -#: tbl_operations.php:629 +#: tbl_operations.php:627 #, php-format msgid "Table %s has been flushed" msgstr "Tabel %s is geflush" -#: tbl_operations.php:635 +#: tbl_operations.php:633 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Spoel die tabel (\"FLUSH\")" -#: tbl_operations.php:650 +#: tbl_operations.php:648 #, fuzzy msgid "Partition maintenance" msgstr "Tabel instandhouding" -#: tbl_operations.php:658 +#: tbl_operations.php:656 #, php-format msgid "Partition %s" msgstr "" -#: tbl_operations.php:661 +#: tbl_operations.php:659 msgid "Analyze" msgstr "" -#: tbl_operations.php:662 +#: tbl_operations.php:660 msgid "Check" msgstr "" -#: tbl_operations.php:663 +#: tbl_operations.php:661 msgid "Optimize" msgstr "" -#: tbl_operations.php:664 +#: tbl_operations.php:662 msgid "Rebuild" msgstr "" -#: tbl_operations.php:665 +#: tbl_operations.php:663 #, fuzzy msgid "Repair" msgstr "Herstel tabel" -#: tbl_operations.php:677 +#: tbl_operations.php:675 msgid "Remove partitioning" msgstr "" -#: tbl_operations.php:703 +#: tbl_operations.php:701 msgid "Check referential integrity:" msgstr "Toets referential integrity:" -#: tbl_printview.php:73 +#: tbl_printview.php:72 msgid "Show tables" msgstr "Wys tabelle" -#: tbl_printview.php:308 tbl_structure.php:655 +#: tbl_printview.php:307 tbl_structure.php:653 msgid "Space usage" msgstr "Spasie verbruik" -#: tbl_printview.php:312 tbl_structure.php:659 +#: tbl_printview.php:311 tbl_structure.php:657 msgid "Usage" msgstr "Gebruik" -#: tbl_printview.php:339 tbl_structure.php:686 +#: tbl_printview.php:338 tbl_structure.php:684 msgid "Effective" msgstr "Effektief" -#: tbl_printview.php:364 tbl_structure.php:724 +#: tbl_printview.php:363 tbl_structure.php:722 msgid "Row Statistics" msgstr "Ry Statistiek" -#: tbl_printview.php:367 tbl_structure.php:727 +#: tbl_printview.php:366 tbl_structure.php:725 msgid "Statements" msgstr "Stellings" -#: tbl_printview.php:378 tbl_structure.php:739 +#: tbl_printview.php:377 tbl_structure.php:737 msgid "static" msgstr "" -#: tbl_printview.php:380 tbl_structure.php:741 +#: tbl_printview.php:379 tbl_structure.php:739 msgid "dynamic" msgstr "dinamies" -#: tbl_printview.php:402 tbl_structure.php:784 +#: tbl_printview.php:401 tbl_structure.php:782 msgid "Row length" msgstr "Ry lengte" -#: tbl_printview.php:412 tbl_structure.php:792 +#: tbl_printview.php:411 tbl_structure.php:790 msgid " Row size " msgstr " Ry grootte " -#: tbl_relation.php:278 +#: tbl_relation.php:276 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" -#: tbl_relation.php:404 +#: tbl_relation.php:402 #, fuzzy msgid "Internal relation" msgstr "Algemene verwantskap funksies" -#: tbl_relation.php:406 +#: tbl_relation.php:404 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: tbl_relation.php:412 +#: tbl_relation.php:410 msgid "Foreign key constraint" msgstr "" @@ -7751,232 +7804,232 @@ msgstr "" msgid "No rows selected" msgstr "" -#: tbl_select.php:130 +#: tbl_select.php:129 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Doen 'n \"Navraag dmv Voorbeeld\" (wildcard: \"%\")" -#: tbl_select.php:136 +#: tbl_select.php:135 #, fuzzy msgid "Operator" msgstr "Operasies" -#: tbl_select.php:267 +#: tbl_select.php:266 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "Kies Velde (ten minste een):" -#: tbl_select.php:285 +#: tbl_select.php:284 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Voeg soek kriteria by (laaste deel van die \"where\" in SQL SELECT):" -#: tbl_select.php:292 +#: tbl_select.php:291 msgid "Number of rows per page" msgstr "Hoeveelheid rye per bladsy" -#: tbl_select.php:298 +#: tbl_select.php:297 msgid "Display order:" msgstr "Vertoon volgorde:" -#: tbl_structure.php:160 +#: tbl_structure.php:159 msgid "Browse distinct values" msgstr "" -#: tbl_structure.php:360 +#: tbl_structure.php:358 #, fuzzy #| msgid "None" msgctxt "None for default" msgid "None" msgstr "Geen" -#: tbl_structure.php:373 +#: tbl_structure.php:371 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Column %s has been dropped" msgstr "Tabel %s is verwyder" -#: tbl_structure.php:384 +#: tbl_structure.php:382 #, php-format msgid "A primary key has been added on %s" msgstr "'n primere sleutel is bygevoeg op %s" -#: tbl_structure.php:399 tbl_structure.php:413 tbl_structure.php:427 +#: tbl_structure.php:397 tbl_structure.php:411 tbl_structure.php:425 #, php-format msgid "An index has been added on %s" msgstr "'n Indeks is bygevoeg op %s" -#: tbl_structure.php:505 tbl_structure.php:507 +#: tbl_structure.php:503 tbl_structure.php:505 msgid "Relation view" msgstr "Relasie uitsig" -#: tbl_structure.php:514 tbl_structure.php:516 +#: tbl_structure.php:512 tbl_structure.php:514 msgid "Propose table structure" msgstr "Stel tabel struktuur voor" -#: tbl_structure.php:539 +#: tbl_structure.php:537 #, fuzzy msgid "Add column" msgstr "Voeg 'n nuwe veld by" -#: tbl_structure.php:553 +#: tbl_structure.php:551 msgid "At End of Table" msgstr "By Einde van Tabel" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At Beginning of Table" msgstr "By Begin van Tabel" -#: tbl_structure.php:555 +#: tbl_structure.php:553 #, php-format msgid "After %s" msgstr "Na %s" -#: tbl_structure.php:593 +#: tbl_structure.php:591 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "Skep 'n indeks op %s kolomme" -#: tbl_structure.php:755 +#: tbl_structure.php:753 msgid "partitioned" msgstr "" -#: tbl_tracking.php:113 +#: tbl_tracking.php:109 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:186 +#: tbl_tracking.php:182 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "" -#: tbl_tracking.php:194 +#: tbl_tracking.php:190 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "" -#: tbl_tracking.php:202 +#: tbl_tracking.php:198 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "" -#: tbl_tracking.php:212 +#: tbl_tracking.php:208 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:219 +#: tbl_tracking.php:215 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:220 +#: tbl_tracking.php:216 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:229 +#: tbl_tracking.php:225 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:250 tbl_tracking.php:378 +#: tbl_tracking.php:245 tbl_tracking.php:373 msgid "Close" msgstr "" -#: tbl_tracking.php:261 +#: tbl_tracking.php:256 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:380 +#: tbl_tracking.php:375 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:396 tbl_tracking.php:503 +#: tbl_tracking.php:391 tbl_tracking.php:498 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "" -#: tbl_tracking.php:409 tbl_tracking.php:460 +#: tbl_tracking.php:404 tbl_tracking.php:455 #, fuzzy msgid "Date" msgstr "Data" -#: tbl_tracking.php:410 tbl_tracking.php:461 +#: tbl_tracking.php:405 tbl_tracking.php:456 #, fuzzy msgid "Username" msgstr "Gebruiker Naam:" -#: tbl_tracking.php:411 +#: tbl_tracking.php:406 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:462 +#: tbl_tracking.php:457 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:506 +#: tbl_tracking.php:501 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:507 +#: tbl_tracking.php:502 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:520 +#: tbl_tracking.php:515 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:560 +#: tbl_tracking.php:555 msgid "Show versions" msgstr "" -#: tbl_tracking.php:592 +#: tbl_tracking.php:587 #, fuzzy msgid "Version" msgstr "PHP Version" -#: tbl_tracking.php:639 +#: tbl_tracking.php:634 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "" -#: tbl_tracking.php:641 +#: tbl_tracking.php:636 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:652 +#: tbl_tracking.php:647 #, php-format msgid "Activate tracking for %s.%s" msgstr "" -#: tbl_tracking.php:654 +#: tbl_tracking.php:649 msgid "Activate now" msgstr "" -#: tbl_tracking.php:667 +#: tbl_tracking.php:662 #, php-format msgid "Create version %s of %s.%s" msgstr "" -#: tbl_tracking.php:671 +#: tbl_tracking.php:666 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:679 +#: tbl_tracking.php:674 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:687 +#: tbl_tracking.php:682 #, fuzzy msgid "Create version" msgstr "Bediener weergawe" @@ -8023,11 +8076,36 @@ msgstr "Die profiel is opgedateer." msgid "VIEW name" msgstr "" -#: view_operations.php:92 +#: view_operations.php:91 #, fuzzy msgid "Rename view to" msgstr "Hernoem tabel na" +#, fuzzy +#~| msgid "Enabled" +#~ msgctxt "BLOB repository" +#~ msgid "Enabled" +#~ msgstr "Beskikbaar" + +#, fuzzy +#~ msgid "Disable" +#~ msgstr "Onbeskikbaar" + +#, fuzzy +#~ msgctxt "BLOB repository" +#~ msgid "Repair" +#~ msgstr "Herstel tabel" + +#, fuzzy +#~| msgid "Disabled" +#~ msgctxt "BLOB repository" +#~ msgid "Disabled" +#~ msgstr "Onbeskikbaar" + +#, fuzzy +#~ msgid "Enable" +#~ msgstr "Beskikbaar" + #~ msgid "" #~ "Couldn't load the iconv or recode extension needed for charset " #~ "conversion. Either configure PHP to enable these extensions or disable " diff --git a/po/ar.po b/po/ar.po index ec41e99bb..57930192d 100644 --- a/po/ar.po +++ b/po/ar.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-21 13:53+0200\n" +"POT-Creation-Date: 2010-07-26 17:18+0200\n" "PO-Revision-Date: 2010-05-29 14:16+0200\n" "Last-Translator: Ahmed \n" "Language-Team: arabic \n" @@ -15,19 +15,19 @@ msgstr "" "&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" "X-Generator: Pootle 2.0.1\n" -#: browse_foreigners.php:37 browse_foreigners.php:58 -#: libraries/display_tbl.lib.php:416 server_privileges.php:1506 +#: browse_foreigners.php:36 browse_foreigners.php:57 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1510 msgid "Show all" msgstr "شاهد الكل" -#: browse_foreigners.php:81 libraries/common.lib.php:2313 -#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:393 -#: libraries/export/pdf.php:146 pdf_schema.php:282 pdf_schema.php:1122 -#: pdf_schema.php:1138 +#: browse_foreigners.php:80 libraries/common.lib.php:2318 +#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:392 +#: libraries/export/pdf.php:146 pdf_schema.php:281 pdf_schema.php:1121 +#: pdf_schema.php:1137 msgid "Page number:" msgstr "صفحة رقم:" -#: browse_foreigners.php:131 +#: browse_foreigners.php:130 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -36,139 +36,151 @@ msgstr "" "لم يمكن تحديث نافذة المتصفح المستهدفة. يبدو أنك أغلقت الرئيسية أو أن مستعرضك " "يمنع التحديث عبر النوافذ بسبب إعدادات الأمان." -#: browse_foreigners.php:149 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2829 -#: libraries/common.lib.php:2836 libraries/db_links.inc.php:74 -#: libraries/tbl_links.inc.php:62 +#: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 +#: db_structure.php:89 db_structure.php:91 db_structure.php:102 +#: db_structure.php:104 libraries/common.lib.php:2834 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "ابحث" -#: browse_foreigners.php:152 db_operations.php:384 db_operations.php:428 -#: db_operations.php:498 db_operations.php:608 db_search.php:344 -#: db_structure.php:566 js/messages.php:48 libraries/Config.class.php:1043 -#: libraries/Theme_Manager.class.php:310 +#: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 +#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 +#: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 -#: libraries/common.lib.php:1340 libraries/common.lib.php:2289 +#: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 -#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:275 -#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:531 -#: libraries/display_tbl.lib.php:613 libraries/replication_gui.lib.php:75 +#: libraries/display_export.lib.php:269 libraries/display_import.lib.php:275 +#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 +#: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 #: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:781 -#: main.php:127 navigation.php:231 pdf_pages.php:291 pdf_pages.php:327 -#: pdf_pages.php:529 pmd_pdf.php:115 server_binlog.php:128 -#: server_privileges.php:664 server_privileges.php:1616 -#: server_privileges.php:1963 server_privileges.php:2010 -#: server_privileges.php:2049 server_replication.php:234 -#: server_replication.php:317 server_replication.php:340 -#: server_synchronize.php:1208 tbl_change.php:328 tbl_change.php:1172 -#: tbl_change.php:1209 tbl_indexes.php:253 tbl_operations.php:264 -#: tbl_operations.php:301 tbl_operations.php:498 tbl_operations.php:560 -#: tbl_operations.php:680 tbl_select.php:324 tbl_structure.php:561 -#: tbl_structure.php:596 tbl_tracking.php:394 tbl_tracking.php:511 -#: view_create.php:181 view_operations.php:100 +#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 +#: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 +#: server_privileges.php:663 server_privileges.php:1620 +#: server_privileges.php:1967 server_privileges.php:2014 +#: server_privileges.php:2053 server_replication.php:233 +#: server_replication.php:316 server_replication.php:339 +#: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 +#: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 +#: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 +#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr " تنفيذ " -#: browse_foreigners.php:167 browse_foreigners.php:171 -#: libraries/Index.class.php:441 tbl_tracking.php:319 +#: browse_foreigners.php:166 browse_foreigners.php:170 +#: libraries/Index.class.php:441 tbl_tracking.php:314 msgid "Keyname" msgstr "اسم المفتاح" -#: browse_foreigners.php:168 browse_foreigners.php:170 -#: server_collations.php:54 server_collations.php:66 server_engines.php:58 +#: browse_foreigners.php:167 browse_foreigners.php:169 +#: server_collations.php:54 server_collations.php:66 server_engines.php:57 #: server_status.php:738 msgid "Description" msgstr "الوصف" -#: browse_foreigners.php:246 browse_foreigners.php:255 -#: browse_foreigners.php:267 browse_foreigners.php:275 +#: browse_foreigners.php:245 browse_foreigners.php:254 +#: browse_foreigners.php:266 browse_foreigners.php:274 msgid "Use this value" msgstr "استخدم هذه القيمة" -#: db_create.php:45 +#: bs_disp_as_mime_type.php:29 bs_play_media.php:35 +msgid "No blob streaming server configured!" +msgstr "" + +#: bs_disp_as_mime_type.php:35 +msgid "Failed to fetch headers" +msgstr "" + +#: bs_disp_as_mime_type.php:41 +msgid "Failed to open remote URL" +msgstr "" + +#: db_create.php:44 #, php-format msgid "Database %1$s has been created." msgstr "" -#: db_datadict.php:48 db_operations.php:377 +#: db_datadict.php:48 db_operations.php:313 msgid "Database comment: " msgstr "ملاحظة قاعدة البيانات: " -#: db_datadict.php:164 libraries/tbl_properties.inc.php:723 -#: pdf_schema.php:1235 tbl_operations.php:346 tbl_printview.php:128 +#: db_datadict.php:164 libraries/tbl_properties.inc.php:722 +#: pdf_schema.php:1234 tbl_operations.php:344 tbl_printview.php:127 msgid "Table comments" msgstr "تعليقات على الجدول" -#: db_datadict.php:173 db_qbe.php:173 libraries/Index.class.php:445 +#: db_datadict.php:173 db_qbe.php:170 libraries/Index.class.php:445 #: libraries/export/htmlword.php:243 libraries/export/latex.php:364 #: libraries/export/odt.php:293 libraries/export/texytext.php:233 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:274 -#: pdf_schema.php:1261 pdf_schema.php:1282 tbl_change.php:306 -#: tbl_indexes.php:188 tbl_printview.php:140 tbl_relation.php:401 -#: tbl_select.php:133 tbl_structure.php:176 tbl_tracking.php:272 -#: tbl_tracking.php:323 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 +#: pdf_schema.php:1260 pdf_schema.php:1281 tbl_change.php:301 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:132 tbl_structure.php:175 tbl_tracking.php:267 +#: tbl_tracking.php:318 #, fuzzy #| msgid "Column names" msgid "Column" msgstr "اسم العمود" -#: db_datadict.php:174 db_printview.php:105 libraries/Index.class.php:442 +#: db_datadict.php:174 db_printview.php:104 libraries/Index.class.php:442 #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 #: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:244 #: libraries/export/latex.php:364 libraries/export/odt.php:296 #: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:99 -#: pdf_schema.php:1262 pdf_schema.php:1283 server_privileges.php:2062 -#: tbl_change.php:285 tbl_change.php:312 tbl_printview.php:141 -#: tbl_printview.php:311 tbl_select.php:134 tbl_structure.php:177 -#: tbl_structure.php:658 tbl_tracking.php:273 tbl_tracking.php:320 +#: pdf_schema.php:1261 pdf_schema.php:1282 server_privileges.php:2066 +#: tbl_change.php:280 tbl_change.php:307 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:133 tbl_structure.php:176 +#: tbl_structure.php:656 tbl_tracking.php:268 tbl_tracking.php:315 msgid "Type" msgstr "النوع" #: db_datadict.php:176 libraries/Index.class.php:448 #: libraries/export/htmlword.php:245 libraries/export/latex.php:364 #: libraries/export/odt.php:299 libraries/export/texytext.php:235 -#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1264 -#: pdf_schema.php:1285 tbl_change.php:321 tbl_printview.php:143 -#: tbl_structure.php:180 tbl_tracking.php:275 tbl_tracking.php:326 +#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1263 +#: pdf_schema.php:1284 tbl_change.php:316 tbl_printview.php:142 +#: tbl_structure.php:179 tbl_tracking.php:270 tbl_tracking.php:321 msgid "Null" msgstr "خالي" -#: db_datadict.php:177 db_structure.php:500 libraries/export/htmlword.php:246 +#: db_datadict.php:177 db_structure.php:486 libraries/export/htmlword.php:246 #: libraries/export/latex.php:364 libraries/export/odt.php:302 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:105 -#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 -#: tbl_structure.php:181 tbl_tracking.php:276 +#: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:143 +#: tbl_structure.php:180 tbl_tracking.php:271 msgid "Default" msgstr "افتراضي" #: db_datadict.php:181 libraries/export/htmlword.php:248 #: libraries/export/latex.php:366 libraries/export/odt.php:306 -#: libraries/export/texytext.php:238 pdf_schema.php:1267 pdf_schema.php:1288 -#: tbl_printview.php:148 +#: libraries/export/texytext.php:238 pdf_schema.php:1266 pdf_schema.php:1287 +#: tbl_printview.php:147 msgid "Links to" msgstr "مرتبط بـ" -#: db_datadict.php:183 db_printview.php:111 libraries/export/htmlword.php:251 +#: db_datadict.php:183 db_printview.php:110 libraries/export/htmlword.php:251 #: libraries/export/latex.php:49 libraries/export/latex.php:369 #: libraries/export/odt.php:37 libraries/export/odt.php:311 #: libraries/export/sql.php:29 libraries/export/texytext.php:241 -#: libraries/tbl_properties.inc.php:129 pdf_schema.php:1278 -#: pdf_schema.php:1289 tbl_printview.php:150 +#: libraries/tbl_properties.inc.php:128 pdf_schema.php:1277 +#: pdf_schema.php:1288 tbl_printview.php:149 msgid "Comments" msgstr "تعليقات" #: db_datadict.php:266 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/export/htmlword.php:321 #: libraries/export/latex.php:434 libraries/export/odt.php:367 -#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:262 -#: pdf_schema.php:1343 server_privileges.php:1560 server_privileges.php:1571 -#: server_privileges.php:1881 server_privileges.php:1886 -#: server_privileges.php:2179 sql.php:131 sql.php:193 tbl_printview.php:227 -#: tbl_structure.php:349 tbl_tracking.php:336 tbl_tracking.php:341 +#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:261 +#: pdf_schema.php:1342 server_privileges.php:1564 server_privileges.php:1575 +#: server_privileges.php:1885 server_privileges.php:1890 +#: server_privileges.php:2183 sql.php:130 sql.php:192 tbl_printview.php:226 +#: tbl_structure.php:347 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "لا" @@ -179,17 +191,17 @@ msgstr "لا" #: libraries/mult_submits.inc.php:49 libraries/mult_submits.inc.php:54 #: libraries/mult_submits.inc.php:59 libraries/mult_submits.inc.php:91 #: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:105 -#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:261 -#: libraries/mult_submits.inc.php:272 pdf_schema.php:1343 -#: server_databases.php:63 server_privileges.php:1557 -#: server_privileges.php:1571 server_privileges.php:1881 -#: server_privileges.php:1884 server_privileges.php:2179 sql.php:192 -#: tbl_printview.php:227 tbl_structure.php:39 tbl_structure.php:349 -#: tbl_tracking.php:334 tbl_tracking.php:339 +#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:260 +#: libraries/mult_submits.inc.php:271 pdf_schema.php:1342 +#: server_databases.php:61 server_privileges.php:1561 +#: server_privileges.php:1575 server_privileges.php:1885 +#: server_privileges.php:1888 server_privileges.php:2183 sql.php:191 +#: tbl_printview.php:226 tbl_structure.php:38 tbl_structure.php:347 +#: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" msgstr "نعم" -#: db_datadict.php:321 db_printview.php:265 tbl_printview.php:496 +#: db_datadict.php:321 db_printview.php:264 tbl_printview.php:495 msgid "Print" msgstr "اطبع" @@ -197,194 +209,154 @@ msgstr "اطبع" msgid "View dump (schema) of database" msgstr "عرض بنية قاعدة البيانات" -#: db_export.php:32 db_printview.php:95 db_qbe.php:101 db_structure.php:50 -#: db_tracking.php:34 export.php:352 navigation.php:326 +#: db_export.php:32 db_printview.php:94 db_qbe.php:98 db_structure.php:49 +#: db_tracking.php:30 export.php:350 navigation.php:325 msgid "No tables found in database." msgstr "لا توجد جداول متوفره في قاعدة البيانات هذه!." -#: db_export.php:42 db_search.php:326 server_export.php:26 +#: db_export.php:42 db_search.php:326 server_export.php:24 msgid "Select All" msgstr "تحديد الكل" -#: db_export.php:44 db_search.php:329 server_export.php:28 +#: db_export.php:44 db_search.php:329 server_export.php:26 msgid "Unselect All" msgstr "إلغاء تحديد الكل" -#: db_operations.php:37 tbl_create.php:49 +#: db_operations.php:33 tbl_create.php:47 msgid "The database name is empty!" msgstr "إسم قاعدة البيانات خالي!" -#: db_operations.php:235 +#: db_operations.php:231 #, php-format msgid "Database %s has been renamed to %s" msgstr "تم إعادة تسمية قاعدة البيانات %s إلى %s" -#: db_operations.php:239 +#: db_operations.php:235 #, php-format msgid "Database %s has been copied to %s" msgstr "تم نسخ قاعدة البيانات %s إلى %s" -#: db_operations.php:411 +#: db_operations.php:347 msgid "Rename database to" msgstr "أعد تسمية قاعدة البيانات ﺇﻠﻰ" -#: db_operations.php:416 server_processlist.php:56 +#: db_operations.php:352 server_processlist.php:56 msgid "Command" msgstr "أمر" -#: db_operations.php:428 tbl_change.php:1141 +#: db_operations.php:364 tbl_change.php:1039 msgid "and then" msgstr "وبعدها" -#: db_operations.php:454 +#: db_operations.php:390 msgid "Copy database to" msgstr "إنسخ قاعدة البيانات إلى" -#: db_operations.php:461 tbl_operations.php:527 tbl_tracking.php:387 +#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "البنية فقط" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:389 +#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "البنية والبيانات" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:388 +#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "بيانات فقط" -#: db_operations.php:471 +#: db_operations.php:407 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE قبل النسخ" -#: db_operations.php:474 libraries/export/sql.php:51 +#: db_operations.php:410 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 -#: libraries/export/sql.php:81 tbl_operations.php:535 +#: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "أضف %s" -#: db_operations.php:478 libraries/export/sql.php:77 tbl_operations.php:298 -#: tbl_operations.php:537 +#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "أضف قيمة AUTO_INCREMENT" -#: db_operations.php:482 tbl_operations.php:544 +#: db_operations.php:418 tbl_operations.php:542 msgid "Add constraints" msgstr "أضف قيودا" -#: db_operations.php:495 +#: db_operations.php:431 msgid "Switch to copied database" msgstr "" -#: db_operations.php:536 -msgid "BLOB Repository" -msgstr "" - -#: db_operations.php:539 db_tracking.php:75 libraries/common.lib.php:1357 -#: libraries/server_links.inc.php:48 server_processlist.php:58 -#: tbl_tracking.php:595 test/theme.php:100 -msgid "Status" -msgstr "وضع" - -#: db_operations.php:547 -#, fuzzy -#| msgid "Enabled" -msgctxt "BLOB repository" -msgid "Enabled" -msgstr "مفعل" - -#: db_operations.php:551 -msgid "Disable" -msgstr "عطل" - -#: db_operations.php:561 -msgid "Damaged" -msgstr "" - -#: db_operations.php:565 -#, fuzzy -#| msgid "Repair" -msgctxt "BLOB repository" -msgid "Repair" -msgstr "صلح" - -#: db_operations.php:573 -#, fuzzy -#| msgid "Disabled" -msgctxt "BLOB repository" -msgid "Disabled" -msgstr "معطل" - -#: db_operations.php:577 -msgid "Enable" -msgstr "فعل" - -#: db_operations.php:601 libraries/Index.class.php:447 +#: db_operations.php:451 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 -#: server_collations.php:53 server_collations.php:65 server_databases.php:110 -#: tbl_operations.php:362 tbl_select.php:135 tbl_structure.php:178 -#: tbl_structure.php:766 tbl_tracking.php:274 tbl_tracking.php:325 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 +#: server_collations.php:53 server_collations.php:65 server_databases.php:108 +#: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:177 +#: tbl_structure.php:764 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "Collation" -#: db_operations.php:614 main.php:315 pdf_schema.php:33 -#, php-format +#: db_operations.php:464 pdf_schema.php:32 +#, fuzzy, php-format +#| msgid "" +#| "The additional features for working with linked tables have been " +#| "deactivated. To find out why click %shere%s." msgid "" -"The additional features for working with linked tables have been " -"deactivated. To find out why click %shere%s." +"The phpMyAdmin configuration storage has been deactivated. To find out why " +"click %shere%s." msgstr "" "تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %sهنا" "%s." -#: db_operations.php:647 +#: db_operations.php:497 msgid "Edit PDF Pages" msgstr "عدل صفحات PDF" -#: db_printview.php:103 db_tracking.php:71 db_tracking.php:156 +#: db_printview.php:102 db_tracking.php:67 db_tracking.php:152 #: libraries/db_structure.lib.php:37 libraries/export/xml.php:327 -#: libraries/header.inc.php:125 pdf_pages.php:423 server_privileges.php:1657 -#: server_privileges.php:1713 server_privileges.php:1977 -#: server_synchronize.php:422 server_synchronize.php:865 tbl_tracking.php:591 +#: libraries/header.inc.php:125 pdf_pages.php:422 server_privileges.php:1661 +#: server_privileges.php:1717 server_privileges.php:1981 +#: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "الجدول" -#: db_printview.php:104 libraries/db_structure.lib.php:47 +#: db_printview.php:103 libraries/db_structure.lib.php:47 #: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 -#: navigation.php:629 navigation.php:651 server_databases.php:121 -#: tbl_printview.php:392 tbl_structure.php:364 tbl_structure.php:776 +#: navigation.php:628 navigation.php:650 server_databases.php:119 +#: tbl_printview.php:391 tbl_structure.php:362 tbl_structure.php:774 msgid "Rows" msgstr "صفوف" -#: db_printview.php:108 libraries/db_structure.lib.php:58 tbl_indexes.php:189 +#: db_printview.php:107 libraries/db_structure.lib.php:58 tbl_indexes.php:188 msgid "Size" msgstr "الحجم" -#: db_printview.php:161 db_structure.php:456 libraries/export/sql.php:556 +#: db_printview.php:160 db_structure.php:442 libraries/export/sql.php:556 #: libraries/export/sql.php:896 msgid "in use" msgstr "قيد الإستعمال" -#: db_printview.php:186 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:511 pdf_schema.php:1240 tbl_printview.php:432 -#: tbl_structure.php:808 +#: db_printview.php:185 libraries/db_info.inc.php:86 +#: libraries/export/sql.php:511 pdf_schema.php:1239 tbl_printview.php:431 +#: tbl_structure.php:806 msgid "Creation" msgstr "الإنشاء" -#: db_printview.php:195 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:516 pdf_schema.php:1245 tbl_printview.php:442 -#: tbl_structure.php:816 +#: db_printview.php:194 libraries/db_info.inc.php:91 +#: libraries/export/sql.php:516 pdf_schema.php:1244 tbl_printview.php:441 +#: tbl_structure.php:814 msgid "Last update" msgstr "التحديث الأخير" -#: db_printview.php:204 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:521 pdf_schema.php:1250 tbl_printview.php:452 -#: tbl_structure.php:824 +#: db_printview.php:203 libraries/db_info.inc.php:96 +#: libraries/export/sql.php:521 pdf_schema.php:1249 tbl_printview.php:451 +#: tbl_structure.php:822 msgid "Last check" msgstr "التحقق الأخير" -#: db_printview.php:221 db_structure.php:479 +#: db_printview.php:220 db_structure.php:465 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -392,94 +364,94 @@ msgid_plural "%s tables" msgstr[0] "%s جدول (جداول)" msgstr[1] "%s جدول (جداول)" -#: db_qbe.php:28 import.php:453 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1980 libraries/sql_query_form.lib.php:138 -#: tbl_operations.php:212 tbl_relation.php:291 tbl_row_action.php:130 -#: view_operations.php:61 +#: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 +#: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "الخاص بك تم تنفيذه بنجاح SQL-استعلام" -#: db_qbe.php:41 +#: db_qbe.php:38 msgid "You have to choose at least one column to display" msgstr "عليك اختيار عمود واحد على الأقل للعرض" -#: db_qbe.php:199 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:865 +#: db_qbe.php:196 libraries/db_structure.lib.php:95 +#: libraries/display_tbl.lib.php:864 msgid "Sort" msgstr "تصنيف" -#: db_qbe.php:208 db_qbe.php:242 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:522 libraries/display_tbl.lib.php:827 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:259 -#: tbl_select.php:311 +#: db_qbe.php:205 db_qbe.php:239 libraries/db_structure.lib.php:102 +#: libraries/display_tbl.lib.php:521 libraries/display_tbl.lib.php:826 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:257 +#: tbl_select.php:310 msgid "Ascending" msgstr "تصاعديا" -#: db_qbe.php:209 db_qbe.php:250 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:527 libraries/display_tbl.lib.php:824 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:260 -#: tbl_select.php:312 +#: db_qbe.php:206 db_qbe.php:247 libraries/db_structure.lib.php:110 +#: libraries/display_tbl.lib.php:526 libraries/display_tbl.lib.php:823 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:258 +#: tbl_select.php:311 msgid "Descending" msgstr "تنازليا" -#: db_qbe.php:263 db_tracking.php:77 libraries/display_tbl.lib.php:307 -#: tbl_change.php:275 tbl_tracking.php:596 +#: db_qbe.php:260 db_tracking.php:73 libraries/display_tbl.lib.php:306 +#: tbl_change.php:270 tbl_tracking.php:591 msgid "Show" msgstr "عرض" -#: db_qbe.php:299 +#: db_qbe.php:296 msgid "Criteria" msgstr "المعايير" -#: db_qbe.php:352 db_qbe.php:434 db_qbe.php:526 db_qbe.php:557 +#: db_qbe.php:349 db_qbe.php:431 db_qbe.php:523 db_qbe.php:554 msgid "Ins" msgstr "Ins" -#: db_qbe.php:356 db_qbe.php:438 db_qbe.php:523 db_qbe.php:554 +#: db_qbe.php:353 db_qbe.php:435 db_qbe.php:520 db_qbe.php:551 msgid "And" msgstr "و" -#: db_qbe.php:365 db_qbe.php:446 db_qbe.php:528 db_qbe.php:559 +#: db_qbe.php:362 db_qbe.php:443 db_qbe.php:525 db_qbe.php:556 msgid "Del" msgstr "Del" -#: db_qbe.php:369 db_qbe.php:450 db_qbe.php:521 db_qbe.php:552 -#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:778 -#: server_privileges.php:297 tbl_change.php:1027 tbl_indexes.php:249 -#: tbl_select.php:285 +#: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 +#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:777 +#: server_privileges.php:296 tbl_change.php:925 tbl_indexes.php:248 +#: tbl_select.php:284 msgid "Or" msgstr "أو" -#: db_qbe.php:506 +#: db_qbe.php:503 msgid "Modify" msgstr "تعديل" -#: db_qbe.php:583 +#: db_qbe.php:580 #, fuzzy #| msgid "Add/Delete Criteria Row" msgid "Add/Delete criteria rows" msgstr "إضافه/حذف صف سجل" -#: db_qbe.php:595 +#: db_qbe.php:592 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Add/Delete columns" msgstr "إضافه/حذف عمود حقل" -#: db_qbe.php:608 db_qbe.php:633 +#: db_qbe.php:605 db_qbe.php:630 msgid "Update Query" msgstr "تجديد استعلام" -#: db_qbe.php:616 +#: db_qbe.php:613 msgid "Use Tables" msgstr "استخدم الجدول" -#: db_qbe.php:639 +#: db_qbe.php:636 #, php-format msgid "SQL query on database %s:" msgstr "في قاعدة البيانات SQL-إستعلام %s:" -#: db_qbe.php:933 libraries/common.lib.php:1222 +#: db_qbe.php:930 libraries/common.lib.php:1215 msgid "Submit Query" msgstr "إرسال الاستعلام" @@ -523,17 +495,17 @@ msgstr[3] "%s مطابقة في الجدول %s" msgstr[4] "%s مطابقة في الجدول %s" msgstr[5] "%s مطابقة في الجدول %s" -#: db_search.php:249 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2831 -#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:49 -#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:466 +#: db_search.php:249 db_structure.php:75 db_structure.php:76 +#: db_structure.php:88 db_structure.php:90 db_structure.php:101 +#: db_structure.php:103 libraries/common.lib.php:2836 +#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 +#: tbl_structure.php:35 tbl_structure.php:47 tbl_structure.php:464 msgid "Browse" msgstr "استعراض" -#: db_search.php:254 libraries/display_tbl.lib.php:1164 -#: libraries/display_tbl.lib.php:2055 libraries/sql_query_form.lib.php:453 -#: pdf_pages.php:285 pdf_pages.php:424 pdf_pages.php:460 pdf_pages.php:488 +#: db_search.php:254 libraries/display_tbl.lib.php:1163 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 msgid "Delete" @@ -577,226 +549,232 @@ msgstr "داخل الجدول)الجداول(:" msgid "Inside column:" msgstr "داخل الجدول)الجداول(:" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2830 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:75 +#: db_structure.php:79 db_structure.php:80 db_structure.php:92 +#: db_structure.php:93 db_structure.php:105 db_structure.php:106 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 +#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "إدخال" -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2827 libraries/common.lib.php:2834 -#: libraries/db_links.inc.php:62 libraries/export/htmlword.php:22 +#: db_structure.php:81 db_structure.php:94 db_structure.php:107 +#: libraries/common.lib.php:2832 libraries/common.lib.php:2839 +#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 -#: libraries/tbl_links.inc.php:55 pmd_general.php:133 -#: server_privileges.php:593 server_replication.php:314 tbl_tracking.php:268 +#: libraries/tbl_links.inc.php:54 pmd_general.php:133 +#: server_privileges.php:592 server_replication.php:313 tbl_tracking.php:263 msgid "Structure" msgstr "بناء" -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:544 db_structure.php:545 db_tracking.php:90 -#: libraries/Index.class.php:482 libraries/common.lib.php:1659 -#: libraries/db_links.inc.php:99 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:126 -#: server_databases.php:351 tbl_structure.php:26 tbl_structure.php:150 -#: tbl_structure.php:151 tbl_structure.php:470 +#: db_structure.php:82 db_structure.php:83 db_structure.php:95 +#: db_structure.php:96 db_structure.php:108 db_structure.php:109 +#: db_structure.php:530 db_structure.php:531 db_tracking.php:86 +#: libraries/Index.class.php:482 libraries/common.lib.php:1663 +#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 +#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 +#: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" msgstr "حذف" -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:542 db_structure.php:543 libraries/common.lib.php:1658 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:104 +#: db_structure.php:84 db_structure.php:85 db_structure.php:97 +#: db_structure.php:98 db_structure.php:110 db_structure.php:111 +#: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 +#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 msgid "Empty" msgstr "إفراغ محتوى" -#: db_structure.php:315 libraries/tbl_links.inc.php:99 +#: db_structure.php:301 libraries/tbl_links.inc.php:98 #, php-format msgid "Table %s has been emptied" msgstr "جدول %s أفرغت محتوياتها" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "View %s has been dropped" msgstr "" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "Table %s has been dropped" msgstr "جدول %s حذفت" -#: db_structure.php:332 +#: db_structure.php:318 msgid "Tracking is active." msgstr "" -#: db_structure.php:334 +#: db_structure.php:320 msgid "Tracking is not active." msgstr "" -#: db_structure.php:419 libraries/display_tbl.lib.php:1943 +#: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -#: db_structure.php:433 db_structure.php:447 libraries/header.inc.php:125 -#: libraries/tbl_info.inc.php:65 tbl_structure.php:184 test/theme.php:73 +#: db_structure.php:419 db_structure.php:433 libraries/header.inc.php:125 +#: libraries/tbl_info.inc.php:60 tbl_structure.php:183 test/theme.php:73 msgid "View" msgstr "" -#: db_structure.php:484 libraries/db_structure.lib.php:40 -#: libraries/server_links.inc.php:69 server_replication.php:32 -#: server_replication.php:163 server_status.php:368 +#: db_structure.php:470 libraries/db_structure.lib.php:40 +#: libraries/server_links.inc.php:69 server_replication.php:31 +#: server_replication.php:162 server_status.php:368 msgid "Replication" msgstr "" -#: db_structure.php:488 +#: db_structure.php:474 msgid "Sum" msgstr "المجموع" -#: db_structure.php:495 libraries/StorageEngine.class.php:349 +#: db_structure.php:481 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: db_structure.php:523 db_structure.php:540 db_structure.php:541 -#: libraries/display_tbl.lib.php:2080 libraries/display_tbl.lib.php:2085 -#: libraries/mult_submits.inc.php:15 server_databases.php:345 -#: server_databases.php:350 server_privileges.php:1588 tbl_structure.php:454 -#: tbl_structure.php:463 +#: db_structure.php:509 db_structure.php:526 db_structure.php:527 +#: libraries/display_tbl.lib.php:2039 libraries/display_tbl.lib.php:2044 +#: libraries/mult_submits.inc.php:15 server_databases.php:343 +#: server_databases.php:348 server_privileges.php:1592 tbl_structure.php:452 +#: tbl_structure.php:461 msgid "With selected:" msgstr ": على المحدد" -#: db_structure.php:526 libraries/display_tbl.lib.php:2075 -#: server_databases.php:347 server_privileges.php:569 -#: server_privileges.php:1591 tbl_structure.php:457 +#: db_structure.php:512 libraries/display_tbl.lib.php:2034 +#: server_databases.php:345 server_privileges.php:568 +#: server_privileges.php:1595 tbl_structure.php:455 msgid "Check All" msgstr "اختر الكل" -#: db_structure.php:530 libraries/display_tbl.lib.php:2076 -#: libraries/replication_gui.lib.php:35 server_databases.php:349 -#: server_privileges.php:572 server_privileges.php:1595 tbl_structure.php:461 +#: db_structure.php:516 libraries/display_tbl.lib.php:2035 +#: libraries/replication_gui.lib.php:35 server_databases.php:347 +#: server_privileges.php:571 server_privileges.php:1599 tbl_structure.php:459 msgid "Uncheck All" msgstr "إلغاء تحديد الكل" -#: db_structure.php:535 +#: db_structure.php:521 msgid "Check tables having overhead" msgstr "تحقق من overhead" -#: db_structure.php:546 db_structure.php:547 db_structure.php:598 -#: libraries/display_tbl.lib.php:2179 libraries/mult_submits.inc.php:27 -#: tbl_structure.php:491 tbl_structure.php:493 +#: db_structure.php:532 db_structure.php:533 db_structure.php:584 +#: libraries/display_tbl.lib.php:2138 libraries/mult_submits.inc.php:27 +#: tbl_structure.php:489 tbl_structure.php:491 msgid "Print view" msgstr "عرض نسخة للطباعة" -#: db_structure.php:548 db_structure.php:549 libraries/mult_submits.inc.php:41 -#: tbl_operations.php:580 +#: db_structure.php:534 db_structure.php:535 libraries/mult_submits.inc.php:41 +#: tbl_operations.php:578 msgid "Check table" msgstr "التحقق من الجدول" -#: db_structure.php:550 db_structure.php:551 libraries/mult_submits.inc.php:46 -#: tbl_operations.php:620 tbl_structure.php:708 tbl_structure.php:710 +#: db_structure.php:536 db_structure.php:537 libraries/mult_submits.inc.php:46 +#: tbl_operations.php:618 tbl_structure.php:706 tbl_structure.php:708 msgid "Optimize table" msgstr "ضغط الجدول" -#: db_structure.php:552 db_structure.php:553 libraries/mult_submits.inc.php:51 -#: tbl_operations.php:610 +#: db_structure.php:538 db_structure.php:539 libraries/mult_submits.inc.php:51 +#: tbl_operations.php:608 msgid "Repair table" msgstr "إصلاح الجدول" -#: db_structure.php:554 db_structure.php:555 libraries/mult_submits.inc.php:56 -#: tbl_operations.php:600 +#: db_structure.php:540 db_structure.php:541 libraries/mult_submits.inc.php:56 +#: tbl_operations.php:598 msgid "Analyze table" msgstr "تحليل الجدول" -#: db_structure.php:556 db_structure.php:557 libraries/db_links.inc.php:70 -#: libraries/display_export.lib.php:82 libraries/display_tbl.lib.php:2093 -#: libraries/display_tbl.lib.php:2224 libraries/mult_submits.inc.php:61 -#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:81 -#: pmd_pdf.php:83 pmd_pdf.php:108 server_privileges.php:1372 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 +#: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 +#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 +#: pmd_pdf.php:81 pmd_pdf.php:106 server_privileges.php:1376 #: setup/frames/menu.inc.php:22 tbl_row_action.php:58 msgid "Export" msgstr "تصدير" -#: db_structure.php:605 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:591 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "قاموس البيانات" -#: db_tracking.php:65 +#: db_tracking.php:61 msgid "Tracked tables" msgstr "" -#: db_tracking.php:70 libraries/export/htmlword.php:85 +#: db_tracking.php:66 libraries/export/htmlword.php:85 #: libraries/export/latex.php:152 libraries/export/odt.php:112 #: libraries/export/sql.php:339 libraries/export/texytext.php:84 #: libraries/export/xml.php:254 libraries/header.inc.php:105 -#: libraries/header_printview.inc.php:57 server_databases.php:168 -#: server_privileges.php:1652 server_privileges.php:1713 -#: server_privileges.php:1971 server_processlist.php:55 -#: server_synchronize.php:1178 server_synchronize.php:1182 -#: tbl_tracking.php:590 test/theme.php:64 +#: libraries/header_printview.inc.php:57 server_databases.php:166 +#: server_privileges.php:1656 server_privileges.php:1717 +#: server_privileges.php:1975 server_processlist.php:55 +#: server_synchronize.php:1177 server_synchronize.php:1181 +#: tbl_tracking.php:585 test/theme.php:64 msgid "Database" msgstr "قاعدة البيانات" -#: db_tracking.php:72 +#: db_tracking.php:68 msgid "Last version" msgstr "" -#: db_tracking.php:73 tbl_tracking.php:593 +#: db_tracking.php:69 tbl_tracking.php:588 msgid "Created" msgstr "أنشئ" -#: db_tracking.php:74 tbl_tracking.php:594 +#: db_tracking.php:70 tbl_tracking.php:589 msgid "Updated" msgstr "محدث" -#: db_tracking.php:76 libraries/Index.class.php:439 -#: libraries/db_structure.lib.php:44 server_databases.php:202 -#: server_privileges.php:1534 server_privileges.php:1717 -#: server_privileges.php:2065 tbl_structure.php:186 +#: db_tracking.php:71 libraries/common.lib.php:1361 +#: libraries/server_links.inc.php:48 server_processlist.php:58 +#: tbl_tracking.php:590 test/theme.php:100 +msgid "Status" +msgstr "وضع" + +#: db_tracking.php:72 libraries/Index.class.php:439 +#: libraries/db_structure.lib.php:44 server_databases.php:200 +#: server_privileges.php:1538 server_privileges.php:1721 +#: server_privileges.php:2069 tbl_structure.php:185 msgid "Action" msgstr "العملية" -#: db_tracking.php:87 db_tracking.php:119 +#: db_tracking.php:83 db_tracking.php:115 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:105 tbl_tracking.php:547 tbl_tracking.php:605 -#: tbl_tracking.php:612 +#: db_tracking.php:101 tbl_tracking.php:542 tbl_tracking.php:600 +#: tbl_tracking.php:607 msgid "active" msgstr "نشط" -#: db_tracking.php:107 tbl_tracking.php:549 tbl_tracking.php:607 -#: tbl_tracking.php:609 +#: db_tracking.php:103 tbl_tracking.php:544 tbl_tracking.php:602 +#: tbl_tracking.php:604 msgid "not active" msgstr "غير نشط" -#: db_tracking.php:120 +#: db_tracking.php:116 msgid "Versions" msgstr "نسخ" -#: db_tracking.php:121 tbl_tracking.php:378 tbl_tracking.php:623 +#: db_tracking.php:117 tbl_tracking.php:373 tbl_tracking.php:618 msgid "Tracking report" msgstr "" -#: db_tracking.php:122 tbl_tracking.php:250 tbl_tracking.php:623 +#: db_tracking.php:118 tbl_tracking.php:245 tbl_tracking.php:618 msgid "Structure snapshot" msgstr "" -#: db_tracking.php:151 +#: db_tracking.php:147 msgid "Untracked tables" msgstr "" -#: db_tracking.php:171 db_tracking.php:173 tbl_structure.php:527 -#: tbl_structure.php:529 +#: db_tracking.php:167 db_tracking.php:169 tbl_structure.php:525 +#: tbl_structure.php:527 msgid "Track table" msgstr "" -#: db_tracking.php:199 +#: db_tracking.php:195 msgid "Database Log" msgstr "" @@ -804,12 +782,12 @@ msgstr "" msgid "Selected export type has to be saved in file!" msgstr "" -#: export.php:153 export.php:178 export.php:620 +#: export.php:152 export.php:177 export.php:615 #, php-format msgid "Insufficient space to save the file %s." msgstr "لا توجد مساحة كافية لحفظ الملف %s." -#: export.php:287 +#: export.php:286 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -817,91 +795,91 @@ msgstr "" "المف %s موجود أصلا على الخادم. غير الاسم أو حدد خيار التسجيل على الملف " "الموجود." -#: export.php:291 export.php:295 +#: export.php:290 export.php:294 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "خادم الويب ليس لديه صلاحية لحفظ الملف %s." -#: export.php:622 +#: export.php:617 #, php-format msgid "Dump has been saved to file %s." msgstr "تم حفظ الـDump إلى الملف %s." -#: import.php:59 +#: 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." msgstr "" -#: import.php:278 import.php:331 libraries/File.class.php:840 -#: libraries/File.class.php:950 +#: import.php:277 import.php:330 libraries/File.class.php:566 +#: libraries/File.class.php:676 msgid "File could not be read" msgstr "لم يمكن قراءة الملف" -#: import.php:286 import.php:295 import.php:314 import.php:323 -#: libraries/File.class.php:1020 libraries/File.class.php:1028 -#: libraries/File.class.php:1044 libraries/File.class.php:1052 +#: import.php:285 import.php:294 import.php:313 import.php:322 +#: libraries/File.class.php:746 libraries/File.class.php:754 +#: libraries/File.class.php:770 libraries/File.class.php:778 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." msgstr "" -#: import.php:336 +#: import.php:335 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " "[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." msgstr "" -#: import.php:371 libraries/display_import.lib.php:23 +#: import.php:370 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:396 +#: import.php:395 msgid "The bookmark has been deleted." msgstr "لقد حذفت العلامة المرجعية." -#: import.php:400 +#: import.php:399 msgid "Showing bookmark" msgstr "" -#: import.php:402 sql.php:625 +#: import.php:401 sql.php:618 #, php-format msgid "Bookmark %s created" msgstr "تم إنشاء العلامة المرجعية %s" -#: import.php:408 import.php:414 +#: import.php:407 import.php:413 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" -#: import.php:423 +#: import.php:422 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: import.php:425 +#: import.php:424 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." msgstr "" -#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:240 +#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:239 #: user_password.php:110 msgid "Back" msgstr "رجوع" -#: index.php:188 +#: index.php:183 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin أكثر تفهما مع مستعرض الإطارات." -#: js/messages.php:25 server_synchronize.php:344 server_synchronize.php:356 -#: server_synchronize.php:372 server_synchronize.php:379 -#: server_synchronize.php:738 server_synchronize.php:766 -#: server_synchronize.php:794 server_synchronize.php:806 +#: js/messages.php:25 server_synchronize.php:343 server_synchronize.php:355 +#: server_synchronize.php:371 server_synchronize.php:378 +#: server_synchronize.php:737 server_synchronize.php:765 +#: server_synchronize.php:793 server_synchronize.php:805 msgid "Click to select" msgstr "اضغط للاختيار" @@ -909,15 +887,15 @@ msgstr "اضغط للاختيار" msgid "Click to unselect" msgstr "" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:88 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:87 msgid "\"DROP DATABASE\" statements are disabled." msgstr "معطل \"حذف قاعدة بيانات\"الأمر " -#: js/messages.php:30 libraries/mult_submits.inc.php:257 sql.php:187 +#: js/messages.php:30 libraries/mult_submits.inc.php:256 sql.php:186 msgid "Do you really want to " msgstr "هل تريد حقا " -#: js/messages.php:31 libraries/mult_submits.inc.php:257 sql.php:171 +#: js/messages.php:31 libraries/mult_submits.inc.php:256 sql.php:170 msgid "You are about to DESTROY a complete database!" msgstr "" @@ -946,11 +924,11 @@ msgstr "اسم المستضيف فارغ!" msgid "The user name is empty!" msgstr "اسم المستخدم فارغ!" -#: js/messages.php:44 server_privileges.php:1228 user_password.php:65 +#: js/messages.php:44 server_privileges.php:1229 user_password.php:65 msgid "The password is empty!" msgstr "كلمة السر فارغة !" -#: js/messages.php:45 server_privileges.php:1226 user_password.php:68 +#: js/messages.php:45 server_privileges.php:1227 user_password.php:68 msgid "The passwords aren't the same!" msgstr "كلمتا السر غير متشابهتان !" @@ -958,27 +936,27 @@ msgstr "كلمتا السر غير متشابهتان !" msgid "Cancel" msgstr "ألغ" -#: js/messages.php:52 pmd_save_pos.php:53 +#: js/messages.php:52 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "تمت التعديلات" -#: js/messages.php:53 pmd_relation_upd.php:48 +#: js/messages.php:53 pmd_relation_upd.php:47 msgid "Relation deleted" msgstr "" -#: js/messages.php:54 pmd_relation_new.php:63 +#: js/messages.php:54 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:55 pmd_relation_new.php:85 +#: js/messages.php:55 pmd_relation_new.php:84 msgid "Internal relation added" msgstr "" -#: js/messages.php:56 pmd_relation_new.php:62 pmd_relation_new.php:87 +#: js/messages.php:56 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:57 pmd_relation_new.php:30 +#: js/messages.php:57 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "" @@ -986,13 +964,13 @@ msgstr "" msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:59 libraries/relation.lib.php:94 -#: libraries/relation.lib.php:106 +#: js/messages.php:59 libraries/relation.lib.php:89 +#: libraries/relation.lib.php:101 msgid "General relation features" msgstr "المزايا العامّة للرابط" -#: js/messages.php:59 libraries/relation.lib.php:88 -#: libraries/relation.lib.php:95 +#: js/messages.php:59 libraries/relation.lib.php:83 +#: libraries/relation.lib.php:90 msgid "Disabled" msgstr "معطل" @@ -1008,7 +986,7 @@ msgstr "" msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:547 +#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" @@ -1039,10 +1017,10 @@ msgid "Prev" msgstr "سابق" #. l10n: Display text for next month link in calendar -#: js/messages.php:81 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:337 -#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:422 -#: tbl_structure.php:800 +#: js/messages.php:81 libraries/common.lib.php:2358 +#: libraries/common.lib.php:2361 libraries/display_tbl.lib.php:336 +#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 +#: tbl_structure.php:798 msgid "Next" msgstr "التالي" @@ -1114,27 +1092,27 @@ msgid "December" msgstr "ديسمبر" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1562 +#: js/messages.php:101 libraries/common.lib.php:1566 msgid "Jan" msgstr "يناير" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1564 +#: js/messages.php:103 libraries/common.lib.php:1568 msgid "Feb" msgstr "فبراير" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1566 +#: js/messages.php:105 libraries/common.lib.php:1570 msgid "Mar" msgstr "مارس" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1568 +#: js/messages.php:107 libraries/common.lib.php:1572 msgid "Apr" msgstr "أبريل" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1570 +#: js/messages.php:109 libraries/common.lib.php:1574 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1142,37 +1120,37 @@ msgid "May" msgstr "مايو" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1572 +#: js/messages.php:111 libraries/common.lib.php:1576 msgid "Jun" msgstr "يونيو" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1574 +#: js/messages.php:113 libraries/common.lib.php:1578 msgid "Jul" msgstr "يوليو" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1576 +#: js/messages.php:115 libraries/common.lib.php:1580 msgid "Aug" msgstr "أغسطس" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1578 +#: js/messages.php:117 libraries/common.lib.php:1582 msgid "Sep" msgstr "سبتمبر" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1580 +#: js/messages.php:119 libraries/common.lib.php:1584 msgid "Oct" msgstr "أكتوبر" #. l10n: Short month name -#: js/messages.php:121 libraries/common.lib.php:1582 +#: js/messages.php:121 libraries/common.lib.php:1586 msgid "Nov" msgstr "نوفمبر" #. l10n: Short month name -#: js/messages.php:123 libraries/common.lib.php:1584 +#: js/messages.php:123 libraries/common.lib.php:1588 msgid "Dec" msgstr "ديسمبر" @@ -1213,37 +1191,37 @@ msgid "Saturday" msgstr "السبت" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1587 +#: js/messages.php:136 libraries/common.lib.php:1591 msgid "Sun" msgstr "الأحد" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1589 +#: js/messages.php:138 libraries/common.lib.php:1593 msgid "Mon" msgstr "الإثنين" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1591 +#: js/messages.php:140 libraries/common.lib.php:1595 msgid "Tue" msgstr "الثلاثاء" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1593 +#: js/messages.php:142 libraries/common.lib.php:1597 msgid "Wed" msgstr "الأربعاء" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1595 +#: js/messages.php:144 libraries/common.lib.php:1599 msgid "Thu" msgstr "الخميس" #. l10n: Short week day name -#: js/messages.php:146 libraries/common.lib.php:1597 +#: js/messages.php:146 libraries/common.lib.php:1601 msgid "Fri" msgstr "الجمعة" #. l10n: Short week day name -#: js/messages.php:148 libraries/common.lib.php:1599 +#: js/messages.php:148 libraries/common.lib.php:1603 msgid "Sat" msgstr "السبت" @@ -1317,74 +1295,73 @@ msgstr "الثانية" msgid "Font size" msgstr "حجم الخط" -#: libraries/File.class.php:336 libraries/File.class.php:424 -#: libraries/File.class.php:561 libraries/File.class.php:700 -msgid "Unknown error in file upload." -msgstr "" - -#: libraries/File.class.php:406 +#: libraries/File.class.php:315 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:409 +#: libraries/File.class.php:318 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:412 +#: libraries/File.class.php:321 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:415 +#: libraries/File.class.php:324 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:418 +#: libraries/File.class.php:327 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:421 +#: libraries/File.class.php:330 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:898 +#: libraries/File.class.php:333 +msgid "Unknown error in file upload." +msgstr "" + +#: libraries/File.class.php:624 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "" -#: libraries/Index.class.php:427 tbl_relation.php:528 +#: libraries/Index.class.php:427 tbl_relation.php:526 msgid "No index defined!" msgstr "فهرس غير معرف!" -#: libraries/Index.class.php:432 server_databases.php:131 tbl_tracking.php:315 +#: libraries/Index.class.php:432 server_databases.php:129 tbl_tracking.php:310 msgid "Indexes" msgstr "فهارس" #: libraries/Index.class.php:443 libraries/mult_submits.inc.php:102 -#: libraries/tbl_properties.inc.php:518 tbl_structure.php:32 -#: tbl_structure.php:154 tbl_structure.php:158 tbl_structure.php:473 -#: tbl_tracking.php:321 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:31 +#: tbl_structure.php:153 tbl_structure.php:157 tbl_structure.php:471 +#: tbl_tracking.php:316 msgid "Unique" msgstr "مميز" -#: libraries/Index.class.php:444 tbl_tracking.php:322 +#: libraries/Index.class.php:444 tbl_tracking.php:317 msgid "Packed" msgstr "" -#: libraries/Index.class.php:446 tbl_tracking.php:324 +#: libraries/Index.class.php:446 tbl_tracking.php:319 msgid "Cardinality" msgstr "Cardinality" -#: libraries/Index.class.php:449 tbl_tracking.php:278 tbl_tracking.php:327 +#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322 msgid "Comment" msgstr "تعليق" #: libraries/Index.class.php:465 libraries/common.lib.php:609 -#: libraries/common.lib.php:1198 libraries/display_tbl.lib.php:1116 +#: libraries/common.lib.php:1191 libraries/display_tbl.lib.php:1115 #: libraries/import.lib.php:1119 libraries/import.lib.php:1143 -#: pdf_pages.php:284 setup/frames/index.inc.php:124 +#: pdf_pages.php:283 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:349 tbl_row_action.php:68 msgid "Edit" msgstr "تحرير" @@ -1406,15 +1383,15 @@ msgid "" msgstr "الفهارس %1$s و %2$s متساويان ويمكن حذف أحدهما." #: libraries/List_Database.class.php:430 libraries/server_links.inc.php:40 -#: server_databases.php:87 server_privileges.php:1652 +#: server_databases.php:85 server_privileges.php:1656 #: setup/lib/messages.inc.php:107 test/theme.php:92 msgid "Databases" msgstr "قاعدة بيانات" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:259 libraries/import.lib.php:134 pdf_schema.php:31 -#: pdf_schema.php:231 tbl_change.php:1023 tbl_operations.php:212 -#: tbl_relation.php:289 view_operations.php:61 +#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 +#: tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "خطأ" @@ -1439,40 +1416,40 @@ msgid_plural "%1$d rows inserted." msgstr[0] "" msgstr[1] "" -#: libraries/StorageEngine.class.php:196 +#: libraries/StorageEngine.class.php:194 msgid "" "There is no detailed status information available for this storage engine." msgstr "" -#: libraries/StorageEngine.class.php:352 +#: libraries/StorageEngine.class.php:354 #, php-format msgid "%s is available on this MySQL server." msgstr "" -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:357 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "" -#: libraries/StorageEngine.class.php:359 +#: libraries/StorageEngine.class.php:361 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "" -#: libraries/Table.class.php:1018 +#: libraries/Table.class.php:1017 msgid "Invalid database" msgstr "قاعدة البيانات غير صالحة" -#: libraries/Table.class.php:1032 tbl_get_field.php:25 +#: libraries/Table.class.php:1031 tbl_get_field.php:25 msgid "Invalid table name" msgstr "اسم الجدول غير صالح" -#: libraries/Table.class.php:1047 +#: libraries/Table.class.php:1046 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "خطأ في إعادة تسمية الجدول %1$s إلى %2$s" -#: libraries/Table.class.php:1131 +#: libraries/Table.class.php:1129 #, php-format msgid "Table %s has been renamed to %s" msgstr "تم إعادة تسمية الجدول %s إلى %s" @@ -1490,22 +1467,22 @@ msgstr "" msgid "take it" msgstr "" -#: libraries/Theme_Manager.class.php:114 +#: libraries/Theme_Manager.class.php:109 #, php-format msgid "Default theme %s not found!" msgstr "" -#: libraries/Theme_Manager.class.php:152 +#: libraries/Theme_Manager.class.php:147 #, php-format msgid "Theme %s not found!" msgstr "" -#: libraries/Theme_Manager.class.php:220 +#: libraries/Theme_Manager.class.php:215 #, php-format msgid "Theme path not found for theme %s!" msgstr "" -#: libraries/Theme_Manager.class.php:296 test/theme.php:160 themes.php:20 +#: libraries/Theme_Manager.class.php:291 test/theme.php:160 themes.php:20 #: themes.php:40 msgid "Theme / Style" msgstr "" @@ -1615,19 +1592,19 @@ msgstr "" msgid "Authenticating..." msgstr "" -#: libraries/blobstreaming.lib.php:689 +#: libraries/blobstreaming.lib.php:340 msgid "View image" msgstr "اعرض الصورة" -#: libraries/blobstreaming.lib.php:693 +#: libraries/blobstreaming.lib.php:344 msgid "Play audio" msgstr "شغل الصوت" -#: libraries/blobstreaming.lib.php:698 +#: libraries/blobstreaming.lib.php:349 msgid "View video" msgstr "اعرض الفيديو" -#: libraries/blobstreaming.lib.php:702 +#: libraries/blobstreaming.lib.php:353 msgid "Download file" msgstr "نزل الملف" @@ -1679,7 +1656,7 @@ msgstr "خادم" msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:909 +#: libraries/common.inc.php:908 #, php-format msgid "You should upgrade to %s %s or later." msgstr "عليك التحديث إلى %s %s أو لاحقا." @@ -1704,7 +1681,8 @@ msgstr "" #: libraries/common.lib.php:425 libraries/common.lib.php:427 #: libraries/common.lib.php:429 libraries/common.lib.php:445 #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 -#: libraries/display_export.lib.php:163 libraries/relation.lib.php:84 +#: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 +#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 #: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" @@ -1719,146 +1697,146 @@ msgstr "استعلام-SQL" msgid "MySQL said: " msgstr "MySQL قال: " -#: libraries/common.lib.php:1136 +#: libraries/common.lib.php:1129 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1174 setup/lib/messages.inc.php:350 +#: libraries/common.lib.php:1167 setup/lib/messages.inc.php:350 msgid "Explain SQL" msgstr "اشرح SQL" -#: libraries/common.lib.php:1177 +#: libraries/common.lib.php:1170 msgid "Skip Explain SQL" msgstr "تخطي شرح SQL" -#: libraries/common.lib.php:1211 +#: libraries/common.lib.php:1204 msgid "Without PHP Code" msgstr "بدون كود PHP" -#: libraries/common.lib.php:1214 setup/lib/messages.inc.php:352 +#: libraries/common.lib.php:1207 setup/lib/messages.inc.php:352 msgid "Create PHP Code" msgstr "أنشئ كود PHP" -#: libraries/common.lib.php:1232 server_status.php:451 +#: libraries/common.lib.php:1225 server_status.php:451 #: setup/lib/messages.inc.php:351 msgid "Refresh" msgstr "حدث" -#: libraries/common.lib.php:1241 +#: libraries/common.lib.php:1234 msgid "Skip Validate SQL" msgstr "تخطي التأكد من SQL" -#: libraries/common.lib.php:1244 setup/lib/messages.inc.php:353 +#: libraries/common.lib.php:1237 setup/lib/messages.inc.php:353 msgid "Validate SQL" msgstr "التحقق من استعلام SQL" -#: libraries/common.lib.php:1283 +#: libraries/common.lib.php:1287 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1285 +#: libraries/common.lib.php:1289 msgid "Inline" msgstr "" -#: libraries/common.lib.php:1339 libraries/common.lib.php:1354 +#: libraries/common.lib.php:1343 libraries/common.lib.php:1358 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1358 libraries/tbl_triggers.lib.php:27 +#: libraries/common.lib.php:1362 libraries/tbl_triggers.lib.php:27 #: server_processlist.php:57 msgid "Time" msgstr "وقت" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "B" msgstr "بايت" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "KiB" msgstr "كيلوبايت" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "MiB" msgstr "ميجابايت" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "GiB" msgstr "جيجابايت" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "TiB" msgstr "تيرابايت" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "PiB" msgstr "بيتابايت" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "EiB" msgstr "إكسابايت" #. l10n: Thousands separator -#: libraries/common.lib.php:1424 +#: libraries/common.lib.php:1428 msgid "," msgstr "," #. l10n: Decimal separator -#: libraries/common.lib.php:1426 +#: libraries/common.lib.php:1430 msgid "." msgstr "." #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1603 +#: libraries/common.lib.php:1607 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y الساعة %H:%M" -#: libraries/common.lib.php:1909 +#: libraries/common.lib.php:1913 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s يوم، %s ساعة، %s دقيقة و%s ثانية" -#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 -#: libraries/display_tbl.lib.php:289 server_status.php:718 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 +#: libraries/display_tbl.lib.php:288 server_status.php:718 msgid "Begin" msgstr "بداية" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 -#: libraries/display_tbl.lib.php:290 server_binlog.php:154 +#: libraries/common.lib.php:2328 libraries/common.lib.php:2331 +#: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "سابق" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 -#: libraries/display_tbl.lib.php:352 +#: libraries/common.lib.php:2359 libraries/common.lib.php:2362 +#: libraries/display_tbl.lib.php:351 msgid "End" msgstr "نهاية" -#: libraries/common.lib.php:2429 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "إذهب إلى قاعدة بيانات "%s"." -#: libraries/common.lib.php:2448 +#: libraries/common.lib.php:2453 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2828 libraries/common.lib.php:2835 -#: libraries/db_links.inc.php:67 libraries/export/sql.php:24 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 +#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 -#: libraries/tbl_links.inc.php:59 querywindow.php:89 test/theme.php:96 +#: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2837 libraries/db_links.inc.php:103 -#: libraries/tbl_links.inc.php:94 libraries/tbl_links.inc.php:116 -#: view_operations.php:88 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: view_operations.php:87 msgid "Operations" msgstr "عمليات" -#: libraries/core.lib.php:282 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1874,38 +1852,38 @@ msgstr "أحداث" msgid "Name" msgstr "الاسم" -#: libraries/db_links.inc.php:44 +#: libraries/db_links.inc.php:43 #, php-format msgid "Database %s has been dropped." msgstr "قاعدة بيانات %s محذوفه." -#: libraries/db_links.inc.php:56 libraries/db_links.inc.php:57 -#: libraries/db_links.inc.php:58 +#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 +#: libraries/db_links.inc.php:57 msgid "Database seems to be empty!" msgstr "قاعدة البيانات فارغة!" -#: libraries/db_links.inc.php:80 libraries/relation.lib.php:142 -#: libraries/tbl_links.inc.php:68 +#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "تتبع" -#: libraries/db_links.inc.php:85 +#: libraries/db_links.inc.php:84 msgid "Query" msgstr "استعلام بواسطة مثال" -#: libraries/db_links.inc.php:90 libraries/relation.lib.php:138 +#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:97 libraries/server_links.inc.php:87 -#: libraries/tbl_links.inc.php:90 pmd_pdf.php:83 pmd_pdf.php:109 +#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "استورد" -#: libraries/db_links.inc.php:110 libraries/server_links.inc.php:65 -#: server_privileges.php:111 server_privileges.php:1714 -#: server_privileges.php:2063 test/theme.php:116 +#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: server_privileges.php:110 server_privileges.php:1718 +#: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" msgstr "الإمتيازات" @@ -1917,14 +1895,14 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1847 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1806 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "" -#: libraries/db_structure.lib.php:60 server_databases.php:141 -#: tbl_printview.php:334 tbl_structure.php:681 +#: libraries/db_structure.lib.php:60 server_databases.php:139 +#: tbl_printview.php:333 tbl_structure.php:679 msgid "Overhead" msgstr "الفوقي" @@ -1941,7 +1919,7 @@ msgstr "" msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "" -#: libraries/dbi/mysql.dbi.lib.php:358 tbl_structure.php:607 +#: libraries/dbi/mysql.dbi.lib.php:358 tbl_structure.php:605 msgid "Details..." msgstr "" @@ -1951,22 +1929,22 @@ msgid "Change password" msgstr "تغيير كلمة السر" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:807 +#: libraries/replication_gui.lib.php:347 server_privileges.php:806 msgid "No Password" msgstr "لا كلمة سر" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1530 server_synchronize.php:1174 +#: libraries/replication_gui.lib.php:351 server_privileges.php:795 +#: server_privileges.php:799 server_privileges.php:810 +#: server_privileges.php:1534 server_synchronize.php:1173 msgid "Password" msgstr "كلمة السر" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:815 server_privileges.php:818 +#: server_privileges.php:814 server_privileges.php:817 msgid "Re-type" msgstr "أعد كتابة" @@ -1987,8 +1965,8 @@ msgstr "تكوين قاعدة بيانات جديدة" msgid "Create" msgstr "تكوين" -#: libraries/display_create_database.lib.php:39 server_privileges.php:113 -#: server_privileges.php:1419 server_replication.php:34 +#: libraries/display_create_database.lib.php:39 server_privileges.php:112 +#: server_privileges.php:1423 server_replication.php:33 msgid "No Privileges" msgstr "امتياز غير موجود" @@ -2009,50 +1987,50 @@ msgstr "تكوين جدول جديد في قاعدة البيانات %s" msgid "Number of columns" msgstr "عدد الجداول" -#: libraries/display_export.lib.php:41 +#: libraries/display_export.lib.php:35 msgid "Could not load export plugins, please check your installation!" msgstr "" -#: libraries/display_export.lib.php:106 +#: libraries/display_export.lib.php:100 #, fuzzy, php-format #| msgid "Dump %s row(s) starting at record # %s" msgid "Dump %s row(s) starting at row # %s" msgstr "احدف %s سطر بدء من السطر %s." -#: libraries/display_export.lib.php:114 +#: libraries/display_export.lib.php:108 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:124 setup/lib/messages.inc.php:79 +#: libraries/display_export.lib.php:118 setup/lib/messages.inc.php:79 msgid "Save as file" msgstr "حفظ كملف" -#: libraries/display_export.lib.php:133 +#: libraries/display_export.lib.php:127 #, php-format msgid "Save on server in %s directory" msgstr "احفظ على الخادم في الدليل %s" -#: libraries/display_export.lib.php:141 setup/lib/messages.inc.php:87 +#: libraries/display_export.lib.php:135 setup/lib/messages.inc.php:87 msgid "Overwrite existing file(s)" msgstr "خزن على الملفات الموجودة أصلا" -#: libraries/display_export.lib.php:147 +#: libraries/display_export.lib.php:141 msgid "File name template" msgstr "قالب اسم الملف" -#: libraries/display_export.lib.php:151 +#: libraries/display_export.lib.php:145 msgid "server name" msgstr "اسم الخادم" -#: libraries/display_export.lib.php:154 +#: libraries/display_export.lib.php:148 msgid "database name" msgstr "اسم قاعدة البيانات" -#: libraries/display_export.lib.php:157 +#: libraries/display_export.lib.php:151 msgid "table name" msgstr "اسم الجدول" -#: libraries/display_export.lib.php:161 +#: libraries/display_export.lib.php:155 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2060,39 +2038,39 @@ msgid "" "%3$s. Other text will be kept as is." msgstr "" -#: libraries/display_export.lib.php:202 +#: libraries/display_export.lib.php:196 msgid "remember template" msgstr "تذكر القالب" -#: libraries/display_export.lib.php:210 libraries/display_import.lib.php:177 +#: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 #: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 msgid "Character set of the file:" msgstr "شيفرة أحرف الملف:" -#: libraries/display_export.lib.php:235 setup/lib/messages.inc.php:81 +#: libraries/display_export.lib.php:229 setup/lib/messages.inc.php:81 msgid "Compression" msgstr "الضغط" -#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:196 -#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:529 -#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:574 -#: server_privileges.php:1867 server_processlist.php:74 +#: libraries/display_export.lib.php:234 libraries/display_import.lib.php:196 +#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:528 +#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:573 +#: server_privileges.php:1871 server_processlist.php:74 msgid "None" msgstr "لا شيء" -#: libraries/display_export.lib.php:247 +#: libraries/display_export.lib.php:241 msgid "\"zipped\"" msgstr "\"مضغوط\"" -#: libraries/display_export.lib.php:253 +#: libraries/display_export.lib.php:247 msgid "\"gzipped\"" msgstr "\"gzipped\"" -#: libraries/display_export.lib.php:259 +#: libraries/display_export.lib.php:253 msgid "\"bzipped\"" msgstr "\"bzipped\"" -#: libraries/display_export.lib.php:274 libraries/export/sql.php:42 +#: libraries/display_export.lib.php:268 libraries/export/sql.php:42 #: libraries/import/sql.php:31 msgid "SQL compatibility mode" msgstr "" @@ -2127,12 +2105,12 @@ msgid "File uploads are not allowed on this server." msgstr "" #: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 -#: tbl_change.php:1024 +#: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "الدليل الذي حددته لتحميل عملك لا يمكن الوصول إليه." #: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 -#: tbl_change.php:1027 +#: tbl_change.php:925 msgid "web server upload directory" msgstr "دليل تحميل الملفات على خادم الشبكة" @@ -2211,43 +2189,43 @@ msgstr "حجم الورق" msgid "Language" msgstr "اللغة" -#: libraries/display_tbl.lib.php:303 +#: libraries/display_tbl.lib.php:302 #, php-format msgid "%d is not valid row number." msgstr "" -#: libraries/display_tbl.lib.php:309 +#: libraries/display_tbl.lib.php:308 #, fuzzy #| msgid "row(s) starting from record #" msgid "row(s) starting from row #" msgstr "صفوف تبدأ من" -#: libraries/display_tbl.lib.php:315 +#: libraries/display_tbl.lib.php:314 msgid "horizontal" msgstr "أفقي" -#: libraries/display_tbl.lib.php:316 +#: libraries/display_tbl.lib.php:315 msgid "horizontal (rotated headers)" msgstr ")عناوين ملتفة( أفقيا" -#: libraries/display_tbl.lib.php:317 +#: libraries/display_tbl.lib.php:316 msgid "vertical" msgstr "عمودي" -#: libraries/display_tbl.lib.php:323 +#: libraries/display_tbl.lib.php:322 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr " %s و إعادة الرؤوس بعد %s حقل" -#: libraries/display_tbl.lib.php:345 +#: libraries/display_tbl.lib.php:344 msgid "This operation could take a long time. Proceed anyway?" msgstr "" -#: libraries/display_tbl.lib.php:511 +#: libraries/display_tbl.lib.php:510 msgid "Sort by key" msgstr "رتب حسب المفتاح" -#: libraries/display_tbl.lib.php:554 libraries/export/codegen.php:38 +#: libraries/display_tbl.lib.php:553 libraries/export/codegen.php:38 #: libraries/export/csv.php:29 libraries/export/excel.php:34 #: libraries/export/htmlword.php:28 libraries/export/latex.php:32 #: libraries/export/mediawiki.php:21 libraries/export/ods.php:26 @@ -2257,99 +2235,99 @@ msgstr "رتب حسب المفتاح" #: libraries/export/xlsx.php:26 libraries/export/xml.php:23 #: libraries/export/yaml.php:27 libraries/import.lib.php:1114 #: libraries/import.lib.php:1136 libraries/import/csv.php:31 -#: libraries/import/docsql.php:33 libraries/import/ldi.php:46 +#: libraries/import/docsql.php:32 libraries/import/ldi.php:46 #: libraries/import/ods.php:30 libraries/import/sql.php:19 #: libraries/import/xls.php:25 libraries/import/xlsx.php:25 -#: libraries/import/xml.php:25 tbl_select.php:264 tbl_structure.php:752 +#: libraries/import/xml.php:25 tbl_select.php:263 tbl_structure.php:750 msgid "Options" msgstr "خيارات" -#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:569 +#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:568 msgid "Partial Texts" msgstr "نصوص جزئية" -#: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:573 +#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:572 msgid "Full Texts" msgstr "نصوص كاملة" -#: libraries/display_tbl.lib.php:586 +#: libraries/display_tbl.lib.php:585 msgid "Relational key" msgstr "" -#: libraries/display_tbl.lib.php:587 +#: libraries/display_tbl.lib.php:586 #, fuzzy #| msgid "Relational schema" msgid "Relational display column" msgstr "بناء الارتباطات" -#: libraries/display_tbl.lib.php:594 +#: libraries/display_tbl.lib.php:593 msgid "Show binary contents" msgstr "" -#: libraries/display_tbl.lib.php:596 +#: libraries/display_tbl.lib.php:595 msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:598 +#: libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "" -#: libraries/display_tbl.lib.php:606 pmd_general.php:140 tbl_change.php:312 -#: tbl_change.php:318 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:307 +#: tbl_change.php:313 msgid "Hide" msgstr "أخف" -#: libraries/display_tbl.lib.php:606 libraries/relation.lib.php:122 -#: libraries/tbl_properties.inc.php:143 transformation_overview.php:46 +#: libraries/display_tbl.lib.php:605 libraries/relation.lib.php:117 +#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46 msgid "Browser transformation" msgstr "تحويل المتصفح" -#: libraries/display_tbl.lib.php:1125 libraries/display_tbl.lib.php:1129 -#: libraries/display_tbl.lib.php:1131 +#: libraries/display_tbl.lib.php:1124 libraries/display_tbl.lib.php:1128 +#: libraries/display_tbl.lib.php:1130 msgid "Execute bookmarked query" msgstr "نفذ استعلام محفوظ بعلامة مرجعية" -#: libraries/display_tbl.lib.php:1144 libraries/display_tbl.lib.php:1156 +#: libraries/display_tbl.lib.php:1143 libraries/display_tbl.lib.php:1155 msgid "The row has been deleted" msgstr "لقد تم حذف الصف" -#: libraries/display_tbl.lib.php:1183 libraries/display_tbl.lib.php:2055 +#: libraries/display_tbl.lib.php:1182 libraries/display_tbl.lib.php:2014 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "إبطال" -#: libraries/display_tbl.lib.php:1933 +#: libraries/display_tbl.lib.php:1892 msgid "in query" msgstr "في الاستعلام" -#: libraries/display_tbl.lib.php:1951 +#: libraries/display_tbl.lib.php:1910 msgid "Showing rows" msgstr "مشاهدة السجلات " -#: libraries/display_tbl.lib.php:1961 +#: libraries/display_tbl.lib.php:1920 msgid "total" msgstr "المجموع" -#: libraries/display_tbl.lib.php:1969 sql.php:523 +#: libraries/display_tbl.lib.php:1928 sql.php:522 #, php-format msgid "Query took %01.4f sec" msgstr "استغرق الاستعلام %01.4f ثانية" -#: libraries/display_tbl.lib.php:2088 libraries/mult_submits.inc.php:112 -#: querywindow.php:115 querywindow.php:119 querywindow.php:122 -#: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:469 +#: libraries/display_tbl.lib.php:2047 libraries/mult_submits.inc.php:112 +#: querywindow.php:114 querywindow.php:118 querywindow.php:121 +#: tbl_structure.php:23 tbl_structure.php:148 tbl_structure.php:467 msgid "Change" msgstr "تغيير" -#: libraries/display_tbl.lib.php:2158 +#: libraries/display_tbl.lib.php:2117 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2186 +#: libraries/display_tbl.lib.php:2145 msgid "Print view (with full texts)" msgstr "عرض الطباعة (مع النصوص الكاملة)." -#: libraries/display_tbl.lib.php:2359 +#: libraries/display_tbl.lib.php:2318 msgid "Link not found" msgstr "لم يمكن إيجاد الوصلة" @@ -2401,9 +2379,9 @@ msgstr "وضع InnoDB" msgid "Buffer Pool Usage" msgstr "" -#: libraries/engines/innodb.lib.php:168 server_databases.php:136 -#: server_databases.php:304 server_status.php:524 server_status.php:585 -#: server_status.php:606 tbl_printview.php:349 tbl_structure.php:695 +#: libraries/engines/innodb.lib.php:168 server_databases.php:134 +#: server_databases.php:302 server_status.php:524 server_status.php:585 +#: server_status.php:606 tbl_printview.php:348 tbl_structure.php:693 msgid "Total" msgstr "مجموع كلي" @@ -2525,6 +2503,77 @@ msgid "" "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." msgstr "" +#: libraries/engines/pbms.lib.php:31 +msgid "Garbage Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:32 +msgid "The percentage of garbage in a repository file before it is compacted." +msgstr "" + +#: libraries/engines/pbms.lib.php:36 libraries/replication_gui.lib.php:69 +#: server_synchronize.php:1161 +msgid "Port" +msgstr "" + +#: libraries/engines/pbms.lib.php:37 +msgid "" +"The port for the PBMS stream-based communications. Setting this value to 0 " +"will disable HTTP communication with the daemon." +msgstr "" + +#: libraries/engines/pbms.lib.php:41 +msgid "Repository Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:42 +msgid "" +"The maximum size of a BLOB repository file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:46 +msgid "Temp Blob Timeout" +msgstr "" + +#: libraries/engines/pbms.lib.php:47 +msgid "" +"The timeout, in seconds, for temporary BLOBs. Uploaded BLOB data is removed " +"after this time, unless they are referenced by a record in the database." +msgstr "" + +#: libraries/engines/pbms.lib.php:51 +msgid "Temp Log Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:52 +msgid "" +"The maximum size of a temporary BLOB log file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:56 +msgid "Max Keep Alive" +msgstr "" + +#: libraries/engines/pbms.lib.php:57 +msgid "" +"The timeout for inactive connection with the keep-alive flag set. After this " +"time the connection will be closed. The time-out is in milliseconds (1/1000)." +msgstr "" + +#: libraries/engines/pbms.lib.php:61 +msgid "Metadata Headers" +msgstr "" + +#: libraries/engines/pbms.lib.php:62 +msgid "" +"A \":\" delimited list of metadata headers to be used to initialize the " +"pbms_metadata_header table when a database is created." +msgstr "" + #: libraries/engines/pbxt.lib.php:22 msgid "Index cache size" msgstr "" @@ -2648,7 +2697,7 @@ msgid "" msgstr "" #: libraries/export/codegen.php:36 setup/lib/messages.inc.php:85 -#: tbl_printview.php:374 tbl_structure.php:736 +#: tbl_printview.php:373 tbl_structure.php:734 msgid "Format" msgstr "صيغة" @@ -2719,9 +2768,9 @@ msgstr "" #: libraries/export/htmlword.php:23 libraries/export/latex.php:59 #: libraries/export/latex.php:205 libraries/export/odt.php:47 #: libraries/export/sql.php:105 libraries/export/sql.php:865 -#: libraries/export/texytext.php:27 server_databases.php:126 -#: server_privileges.php:576 server_replication.php:315 tbl_printview.php:315 -#: tbl_structure.php:664 +#: libraries/export/texytext.php:27 server_databases.php:124 +#: server_privileges.php:575 server_replication.php:314 tbl_printview.php:314 +#: tbl_structure.php:662 msgid "Data" msgstr "بيانات" @@ -2772,13 +2821,13 @@ msgid "Label key" msgstr "Label key" #: libraries/export/latex.php:46 libraries/export/odt.php:34 -#: libraries/export/sql.php:90 tbl_relation.php:398 +#: libraries/export/sql.php:90 tbl_relation.php:396 msgid "Relations" msgstr "الروابط" #: libraries/export/latex.php:52 libraries/export/odt.php:40 #: libraries/export/odt.php:317 libraries/export/sql.php:94 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "نوع MIME" @@ -2786,10 +2835,10 @@ msgstr "نوع MIME" #: libraries/export/xml.php:101 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1529 server_privileges.php:2061 -#: server_processlist.php:54 server_synchronize.php:1158 +#: libraries/replication_gui.lib.php:331 server_privileges.php:730 +#: server_privileges.php:733 server_privileges.php:789 +#: server_privileges.php:1533 server_privileges.php:2065 +#: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "المزود" @@ -2978,8 +3027,8 @@ msgstr "" msgid "Export contents" msgstr "" -#: libraries/footer.inc.php:182 libraries/footer.inc.php:193 -#: libraries/footer.inc.php:196 +#: libraries/footer.inc.php:180 libraries/footer.inc.php:191 +#: libraries/footer.inc.php:194 msgid "Open new phpMyAdmin window" msgstr "" @@ -2995,7 +3044,7 @@ msgstr "ناتج استعلام SQL" msgid "Generated by" msgstr "أنشئ بواسطة" -#: libraries/import.lib.php:151 sql.php:519 tbl_change.php:180 +#: libraries/import.lib.php:151 sql.php:518 tbl_change.php:175 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL قام بإرجاع نتيجة إعداد فارغه (مثلا صف صفري)." @@ -3051,7 +3100,7 @@ msgstr "" msgid "Column names in first row" msgstr "" -#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:501 +#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:500 #: view_create.php:147 msgid "Column names" msgstr "اسم العمود" @@ -3077,12 +3126,12 @@ msgstr "" msgid "Invalid column count in CSV input on line %d." msgstr "" -#: libraries/import/docsql.php:28 +#: libraries/import/docsql.php:27 msgid "DocSQL" msgstr "" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 -#: server_synchronize.php:427 server_synchronize.php:870 +#: libraries/import/docsql.php:30 libraries/tbl_properties.inc.php:616 +#: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "اسم الجدول" @@ -3138,26 +3187,26 @@ msgstr "لا شيء" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:512 -#: tbl_structure.php:28 tbl_structure.php:152 tbl_structure.php:156 -#: tbl_structure.php:472 +#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:511 +#: tbl_structure.php:27 tbl_structure.php:151 tbl_structure.php:155 +#: tbl_structure.php:470 msgid "Primary" msgstr "أساسي" #: libraries/mult_submits.inc.php:97 libraries/tbl_properties.inc.php:115 -#: libraries/tbl_properties.inc.php:524 tbl_printview.php:324 -#: tbl_structure.php:30 tbl_structure.php:153 tbl_structure.php:157 -#: tbl_structure.php:474 tbl_structure.php:672 +#: libraries/tbl_properties.inc.php:523 tbl_printview.php:323 +#: tbl_structure.php:29 tbl_structure.php:152 tbl_structure.php:156 +#: tbl_structure.php:472 tbl_structure.php:670 msgid "Index" msgstr "فهرست" -#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:530 -#: tbl_structure.php:34 tbl_structure.php:155 tbl_structure.php:159 -#: tbl_structure.php:477 +#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:529 +#: tbl_structure.php:33 tbl_structure.php:154 tbl_structure.php:158 +#: tbl_structure.php:475 msgid "Fulltext" msgstr "النص كاملا" -#: libraries/mult_submits.inc.php:434 tbl_replace.php:330 +#: libraries/mult_submits.inc.php:433 tbl_replace.php:330 msgid "No change" msgstr "لا تغييرات" @@ -3165,190 +3214,190 @@ msgstr "لا تغييرات" msgid "Charset" msgstr "مجموعة المحارف" -#: libraries/mysql_charsets.lib.php:210 libraries/mysql_charsets.lib.php:411 -#: tbl_change.php:515 +#: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 +#: tbl_change.php:510 msgid "Binary" msgstr "ثنائي" -#: libraries/mysql_charsets.lib.php:222 +#: libraries/mysql_charsets.lib.php:214 msgid "Bulgarian" msgstr "البلغارية" -#: libraries/mysql_charsets.lib.php:226 libraries/mysql_charsets.lib.php:351 +#: libraries/mysql_charsets.lib.php:218 libraries/mysql_charsets.lib.php:343 msgid "Simplified Chinese" msgstr "الصينية المبسطة" -#: libraries/mysql_charsets.lib.php:228 libraries/mysql_charsets.lib.php:371 +#: libraries/mysql_charsets.lib.php:220 libraries/mysql_charsets.lib.php:363 msgid "Traditional Chinese" msgstr "الصينية التقليدية" -#: libraries/mysql_charsets.lib.php:232 libraries/mysql_charsets.lib.php:418 +#: libraries/mysql_charsets.lib.php:224 libraries/mysql_charsets.lib.php:410 msgid "case-insensitive" msgstr "غير حساس لحالة الأحرف" -#: libraries/mysql_charsets.lib.php:235 libraries/mysql_charsets.lib.php:420 +#: libraries/mysql_charsets.lib.php:227 libraries/mysql_charsets.lib.php:412 msgid "case-sensitive" msgstr "حساس لحالة الأحرف" -#: libraries/mysql_charsets.lib.php:238 +#: libraries/mysql_charsets.lib.php:230 msgid "Croatian" msgstr "الكرواتية" -#: libraries/mysql_charsets.lib.php:241 +#: libraries/mysql_charsets.lib.php:233 msgid "Czech" msgstr "التشيكية" -#: libraries/mysql_charsets.lib.php:244 +#: libraries/mysql_charsets.lib.php:236 msgid "Danish" msgstr "الدنمركية" -#: libraries/mysql_charsets.lib.php:247 +#: libraries/mysql_charsets.lib.php:239 msgid "English" msgstr "الإنجليزية" -#: libraries/mysql_charsets.lib.php:250 +#: libraries/mysql_charsets.lib.php:242 msgid "Esperanto" msgstr "إسبرانتو" -#: libraries/mysql_charsets.lib.php:253 +#: libraries/mysql_charsets.lib.php:245 msgid "Estonian" msgstr "الإستونية" -#: libraries/mysql_charsets.lib.php:256 libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:248 libraries/mysql_charsets.lib.php:251 msgid "German" msgstr "الألمانية" -#: libraries/mysql_charsets.lib.php:256 +#: libraries/mysql_charsets.lib.php:248 msgid "dictionary" msgstr "قاموس" -#: libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:251 msgid "phone book" msgstr "دفتر الهاتف" -#: libraries/mysql_charsets.lib.php:262 +#: libraries/mysql_charsets.lib.php:254 msgid "Hungarian" msgstr "الهنجارية" -#: libraries/mysql_charsets.lib.php:265 +#: libraries/mysql_charsets.lib.php:257 msgid "Icelandic" msgstr "الأيسلندية" -#: libraries/mysql_charsets.lib.php:268 libraries/mysql_charsets.lib.php:358 +#: libraries/mysql_charsets.lib.php:260 libraries/mysql_charsets.lib.php:350 msgid "Japanese" msgstr "اليابانية" -#: libraries/mysql_charsets.lib.php:271 +#: libraries/mysql_charsets.lib.php:263 msgid "Latvian" msgstr "اللاتفية" -#: libraries/mysql_charsets.lib.php:274 +#: libraries/mysql_charsets.lib.php:266 msgid "Lithuanian" msgstr "الليتوانية" -#: libraries/mysql_charsets.lib.php:277 libraries/mysql_charsets.lib.php:380 +#: libraries/mysql_charsets.lib.php:269 libraries/mysql_charsets.lib.php:372 msgid "Korean" msgstr "الكورية" -#: libraries/mysql_charsets.lib.php:280 +#: libraries/mysql_charsets.lib.php:272 msgid "Persian" msgstr "فارسية" -#: libraries/mysql_charsets.lib.php:283 +#: libraries/mysql_charsets.lib.php:275 msgid "Polish" msgstr "البولندية" -#: libraries/mysql_charsets.lib.php:286 libraries/mysql_charsets.lib.php:334 +#: libraries/mysql_charsets.lib.php:278 libraries/mysql_charsets.lib.php:326 msgid "West European" msgstr "أوروبا الغربية" -#: libraries/mysql_charsets.lib.php:289 +#: libraries/mysql_charsets.lib.php:281 msgid "Romanian" msgstr "الرومانية" -#: libraries/mysql_charsets.lib.php:292 +#: libraries/mysql_charsets.lib.php:284 msgid "Slovak" msgstr "السلوفاكية" -#: libraries/mysql_charsets.lib.php:295 +#: libraries/mysql_charsets.lib.php:287 msgid "Slovenian" msgstr "السلوفينية" -#: libraries/mysql_charsets.lib.php:298 +#: libraries/mysql_charsets.lib.php:290 msgid "Spanish" msgstr "أسبانية" -#: libraries/mysql_charsets.lib.php:301 +#: libraries/mysql_charsets.lib.php:293 msgid "Traditional Spanish" msgstr "" -#: libraries/mysql_charsets.lib.php:304 libraries/mysql_charsets.lib.php:401 +#: libraries/mysql_charsets.lib.php:296 libraries/mysql_charsets.lib.php:393 msgid "Swedish" msgstr "السويدية" -#: libraries/mysql_charsets.lib.php:307 libraries/mysql_charsets.lib.php:404 +#: libraries/mysql_charsets.lib.php:299 libraries/mysql_charsets.lib.php:396 msgid "Thai" msgstr "التايلندية" -#: libraries/mysql_charsets.lib.php:310 libraries/mysql_charsets.lib.php:398 +#: libraries/mysql_charsets.lib.php:302 libraries/mysql_charsets.lib.php:390 msgid "Turkish" msgstr "التركية" -#: libraries/mysql_charsets.lib.php:313 libraries/mysql_charsets.lib.php:395 +#: libraries/mysql_charsets.lib.php:305 libraries/mysql_charsets.lib.php:387 msgid "Ukrainian" msgstr "الأكرانية" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 msgid "Unicode" msgstr "يونيكود" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 -#: libraries/mysql_charsets.lib.php:334 libraries/mysql_charsets.lib.php:341 -#: libraries/mysql_charsets.lib.php:363 libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 +#: libraries/mysql_charsets.lib.php:326 libraries/mysql_charsets.lib.php:333 +#: libraries/mysql_charsets.lib.php:355 libraries/mysql_charsets.lib.php:366 msgid "multilingual" msgstr "متعدد اللغات" -#: libraries/mysql_charsets.lib.php:341 +#: libraries/mysql_charsets.lib.php:333 msgid "Central European" msgstr "أوروبا الوسطى" -#: libraries/mysql_charsets.lib.php:346 +#: libraries/mysql_charsets.lib.php:338 msgid "Russian" msgstr "الروسية" -#: libraries/mysql_charsets.lib.php:363 +#: libraries/mysql_charsets.lib.php:355 msgid "Baltic" msgstr "البلطيق" -#: libraries/mysql_charsets.lib.php:368 +#: libraries/mysql_charsets.lib.php:360 msgid "Armenian" msgstr "الأرمنية" -#: libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:366 msgid "Cyrillic" msgstr "السيريلية" -#: libraries/mysql_charsets.lib.php:377 +#: libraries/mysql_charsets.lib.php:369 msgid "Arabic" msgstr "العربية" -#: libraries/mysql_charsets.lib.php:383 +#: libraries/mysql_charsets.lib.php:375 msgid "Hebrew" msgstr "العبرية" -#: libraries/mysql_charsets.lib.php:386 +#: libraries/mysql_charsets.lib.php:378 msgid "Georgian" msgstr "الجورجية" -#: libraries/mysql_charsets.lib.php:389 +#: libraries/mysql_charsets.lib.php:381 msgid "Greek" msgstr "اليونانية" -#: libraries/mysql_charsets.lib.php:392 +#: libraries/mysql_charsets.lib.php:384 msgid "Czech-Slovak" msgstr "" -#: libraries/mysql_charsets.lib.php:407 libraries/mysql_charsets.lib.php:414 +#: libraries/mysql_charsets.lib.php:399 libraries/mysql_charsets.lib.php:406 msgid "unknown" msgstr "غير معروفة" @@ -3374,67 +3423,67 @@ msgstr "نافذة الاستعلام" msgid "This format has no options" msgstr "هذا التنسيق ليس له أي خيارات" -#: libraries/relation.lib.php:82 +#: libraries/relation.lib.php:77 msgid "not OK" msgstr "ليس صالحا" -#: libraries/relation.lib.php:86 pmd_general.php:339 +#: libraries/relation.lib.php:81 pmd_general.php:339 msgid "OK" msgstr "موافق" -#: libraries/relation.lib.php:87 +#: libraries/relation.lib.php:82 msgid "Enabled" msgstr "مفعل" -#: libraries/relation.lib.php:110 +#: libraries/relation.lib.php:105 msgid "Display Features" msgstr "إظهار المزايا" -#: libraries/relation.lib.php:116 +#: libraries/relation.lib.php:111 msgid "Creation of PDFs" msgstr "إنشاء ملفات PDF" -#: libraries/relation.lib.php:120 +#: libraries/relation.lib.php:115 msgid "Displaying Column Comments" msgstr "إظهار تعليقات العمود" -#: libraries/relation.lib.php:125 +#: libraries/relation.lib.php:120 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "رجاء راجع التوثيق لكيفية تحديث جدول Column_comments." -#: libraries/relation.lib.php:130 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 msgid "Bookmarked SQL query" msgstr "علامة مرجعية SQL-استعلام" -#: libraries/relation.lib.php:134 querywindow.php:99 querywindow.php:207 +#: libraries/relation.lib.php:129 querywindow.php:98 querywindow.php:205 msgid "SQL history" msgstr "نصوص SQL سابقة" -#: libraries/relation.lib.php:146 +#: libraries/relation.lib.php:141 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:148 +#: libraries/relation.lib.php:143 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" -#: libraries/relation.lib.php:149 +#: libraries/relation.lib.php:144 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:150 +#: libraries/relation.lib.php:145 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:151 +#: libraries/relation.lib.php:146 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1158 +#: libraries/relation.lib.php:1153 msgid "no description" msgstr "بدون وصف" @@ -3442,7 +3491,7 @@ msgstr "بدون وصف" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:53 server_replication.php:346 +#: libraries/replication_gui.lib.php:53 server_replication.php:345 msgid "Change or reconfigure master server" msgstr "" @@ -3454,16 +3503,12 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:711 -#: server_privileges.php:714 server_privileges.php:721 -#: server_synchronize.php:1170 +#: libraries/replication_gui.lib.php:261 server_privileges.php:710 +#: server_privileges.php:713 server_privileges.php:720 +#: server_synchronize.php:1169 msgid "User name" msgstr "اسم المستخدم" -#: libraries/replication_gui.lib.php:69 server_synchronize.php:1162 -msgid "Port" -msgstr "" - #: libraries/replication_gui.lib.php:105 msgid "Master status" msgstr "" @@ -3478,8 +3523,8 @@ msgid "Variable" msgstr "متغير" #: libraries/replication_gui.lib.php:117 server_status.php:737 -#: tbl_change.php:322 tbl_printview.php:368 tbl_select.php:137 -#: tbl_structure.php:728 +#: tbl_change.php:317 tbl_printview.php:367 tbl_select.php:136 +#: tbl_structure.php:726 msgid "Value" msgstr "القيمة" @@ -3493,38 +3538,38 @@ msgid "" "this list." msgstr "" -#: libraries/replication_gui.lib.php:242 server_replication.php:193 +#: libraries/replication_gui.lib.php:242 server_replication.php:192 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:256 server_privileges.php:716 +#: libraries/replication_gui.lib.php:256 server_privileges.php:715 msgid "Any user" msgstr "أي مستخدم" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1920 server_privileges.php:1950 +#: libraries/replication_gui.lib.php:348 server_privileges.php:716 +#: server_privileges.php:783 server_privileges.php:807 +#: server_privileges.php:1924 server_privileges.php:1954 msgid "Use text field" msgstr "استخدم حقل نص" -#: libraries/replication_gui.lib.php:304 server_privileges.php:764 +#: libraries/replication_gui.lib.php:304 server_privileges.php:763 msgid "Any host" msgstr "أي مزود" -#: libraries/replication_gui.lib.php:308 server_privileges.php:768 +#: libraries/replication_gui.lib.php:308 server_privileges.php:767 msgid "Local" msgstr "محلي" -#: libraries/replication_gui.lib.php:314 server_privileges.php:773 +#: libraries/replication_gui.lib.php:314 server_privileges.php:772 msgid "This Host" msgstr "هذا المضيف" -#: libraries/replication_gui.lib.php:320 server_privileges.php:779 +#: libraries/replication_gui.lib.php:320 server_privileges.php:778 msgid "Use Host Table" msgstr "استخدم الجدول المضيف" -#: libraries/replication_gui.lib.php:333 server_privileges.php:792 +#: libraries/replication_gui.lib.php:333 server_privileges.php:791 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3550,8 +3595,8 @@ msgstr "" msgid "Servers" msgstr "خوادم" -#: libraries/server_links.inc.php:52 server_engines.php:111 -#: server_engines.php:115 server_status.php:414 test/theme.php:104 +#: libraries/server_links.inc.php:52 server_engines.php:125 +#: server_engines.php:129 server_status.php:414 test/theme.php:104 msgid "Variables" msgstr "متغيرات" @@ -3572,12 +3617,12 @@ msgstr "سجل ثنائي" msgid "Processes" msgstr "معالَجات" -#: libraries/server_links.inc.php:91 server_synchronize.php:1091 -#: server_synchronize.php:1099 +#: libraries/server_links.inc.php:91 server_synchronize.php:1090 +#: server_synchronize.php:1098 msgid "Synchronize" msgstr "" -#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1109 +#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1108 msgid "Source database" msgstr "" @@ -3595,7 +3640,7 @@ msgstr "" msgid "Difference" msgstr "فرق" -#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1111 +#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1110 msgid "Target database" msgstr "" @@ -3615,11 +3660,11 @@ msgstr "تنفيذ استعلام/استعلامات SQL على قاعدة بي msgid "Columns" msgstr "اسم العمود" -#: libraries/sql_query_form.lib.php:342 sql.php:664 sql.php:665 sql.php:682 +#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "اجعل علامة مرجعية SQL-استعلام" -#: libraries/sql_query_form.lib.php:349 sql.php:676 +#: libraries/sql_query_form.lib.php:349 sql.php:669 msgid "Let every user access this bookmark" msgstr "اسمح لكل المستخدمين الوصول إلى هذه العلامة المرجعية" @@ -3712,12 +3757,12 @@ msgstr "" "لم يمكن تشغيل محقق SQL. الرجاء التأكد مما إذا كنت ثبتت إضافات PHP كما هو " "مشروح في %sالتوثيق%s." -#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:139 -#: libraries/tbl_links.inc.php:140 +#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 +#: libraries/tbl_links.inc.php:139 msgid "Table seems to be empty!" msgstr "" -#: libraries/tbl_links.inc.php:148 +#: libraries/tbl_links.inc.php:147 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" @@ -3752,12 +3797,12 @@ msgstr "" "للقيم الافتراضية، الرجاء أدخل قيمة مفردة، دون علامات هروب أو تنصيص، باستخدام " "التنسيق: a" -#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1263 -#: pdf_schema.php:1284 tbl_printview.php:142 tbl_structure.php:179 +#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1262 +#: pdf_schema.php:1283 tbl_printview.php:141 tbl_structure.php:178 msgid "Attributes" msgstr "الخواص" -#: libraries/tbl_properties.inc.php:136 +#: libraries/tbl_properties.inc.php:135 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -3766,11 +3811,11 @@ msgstr "" "لعرض قائمة بخيارات التحويل المتوفرة وأنواع تحويلات MIME الخاصة بها، اضغط على " "%sخيارات التحويل%s" -#: libraries/tbl_properties.inc.php:144 +#: libraries/tbl_properties.inc.php:143 msgid "Transformation options" msgstr "خيارات التحويل" -#: libraries/tbl_properties.inc.php:145 +#: libraries/tbl_properties.inc.php:144 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
                            If you ever need to put a backslash (\"\\\") or a single " @@ -3781,47 +3826,47 @@ msgstr "" ">إذا احتجت أن تضع شرطة مائلة (\"\\\") أو علامة تنصيص (\"'\") بين هذه القيم، " "اسبقها بشرطة مائلة )على سبيل المثال '\\\\xyz' أو 'a\\'b'(." -#: libraries/tbl_properties.inc.php:392 +#: libraries/tbl_properties.inc.php:391 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "لا شيء" -#: libraries/tbl_properties.inc.php:393 +#: libraries/tbl_properties.inc.php:392 msgid "As defined:" msgstr "كما هو معرف:" -#: libraries/tbl_properties.inc.php:579 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:578 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
                            Please ask the " "author what %s does." msgstr "ليس هناك وصف متوفر لهذا التحويل.
                            رجاء اسأل الناشر، ما يفعله %s." -#: libraries/tbl_properties.inc.php:725 server_engines.php:57 -#: tbl_operations.php:354 +#: libraries/tbl_properties.inc.php:724 server_engines.php:56 +#: tbl_operations.php:352 msgid "Storage Engine" msgstr "" -#: libraries/tbl_properties.inc.php:754 +#: libraries/tbl_properties.inc.php:753 msgid "PARTITION definition" msgstr "" -#: libraries/tbl_properties.inc.php:775 pdf_pages.php:502 +#: libraries/tbl_properties.inc.php:774 pdf_pages.php:501 #: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214 -#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1124 tbl_indexes.php:247 -#: tbl_relation.php:565 +#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1022 tbl_indexes.php:246 +#: tbl_relation.php:563 msgid "Save" msgstr "حفظ" -#: libraries/tbl_properties.inc.php:779 tbl_structure.php:541 +#: libraries/tbl_properties.inc.php:778 tbl_structure.php:539 #, fuzzy, php-format #| msgid "Add into comments" msgid "Add %s column(s)" msgstr "أضف إلى الملاحظات" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:535 +#: libraries/tbl_properties.inc.php:782 tbl_structure.php:533 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." @@ -3991,8 +4036,8 @@ msgstr "" msgid "Custom color" msgstr "" -#: main.php:162 pdf_pages.php:362 setup/lib/FormDisplay.tpl.php:216 -#: tbl_change.php:1173 +#: main.php:162 pdf_pages.php:361 setup/lib/FormDisplay.tpl.php:216 +#: tbl_change.php:1071 msgid "Reset" msgstr "إلغاء" @@ -4000,8 +4045,8 @@ msgstr "إلغاء" msgid "Protocol version" msgstr "" -#: main.php:188 server_privileges.php:1381 server_privileges.php:1528 -#: server_privileges.php:1642 server_privileges.php:2060 +#: main.php:188 server_privileges.php:1385 server_privileges.php:1532 +#: server_privileges.php:1646 server_privileges.php:2064 #: server_processlist.php:53 msgid "User" msgstr "المستخدم" @@ -4079,21 +4124,30 @@ msgid "" "has been configured." msgstr "" -#: main.php:330 +#: main.php:314 +#, php-format +msgid "" +"The additional features for working with linked tables have been " +"deactivated. To find out why click %shere%s." +msgstr "" +"تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %sهنا" +"%s." + +#: main.php:329 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:345 +#: main.php:344 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: main.php:357 +#: main.php:356 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -4104,105 +4158,105 @@ msgstr "" msgid "Reload navigation frame" msgstr "" -#: navigation.php:204 server_databases.php:370 server_synchronize.php:1190 +#: navigation.php:203 server_databases.php:368 server_synchronize.php:1189 msgid "No databases" msgstr "لايوجد قواعد بيانات" -#: navigation.php:298 +#: navigation.php:297 msgid "Filter" msgstr "" -#: navigation.php:299 setup/frames/index.inc.php:218 +#: navigation.php:298 setup/frames/index.inc.php:218 #: setup/lib/messages.inc.php:41 msgid "Clear" msgstr "" -#: navigation.php:330 navigation.php:331 +#: navigation.php:329 navigation.php:330 #, fuzzy #| msgid "Create table" msgctxt "short form" msgid "Create table" msgstr "أنشئ الجدول" -#: navigation.php:333 navigation.php:495 +#: navigation.php:332 navigation.php:494 msgid "Please select a database" msgstr "اختر قاعدة بيانات من القائمة" -#: pdf_pages.php:40 pdf_pages.php:46 pdf_pages.php:52 pdf_pages.php:57 +#: pdf_pages.php:39 pdf_pages.php:45 pdf_pages.php:51 pdf_pages.php:56 #, php-format msgid "%s table not found or not set in %s" msgstr "الجدول %s غير موجود أو محدد في %s" -#: pdf_pages.php:265 +#: pdf_pages.php:264 msgid "Please choose a page to edit" msgstr "رجاء اختر صفحة لتعديلها" -#: pdf_pages.php:303 pmd_pdf.php:113 +#: pdf_pages.php:302 pmd_pdf.php:111 msgid "Create a page" msgstr "أنشئ صفحة جديدة" -#: pdf_pages.php:309 +#: pdf_pages.php:308 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "صفحة رقم:" -#: pdf_pages.php:313 +#: pdf_pages.php:312 #, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "مظهر تلقائي" -#: pdf_pages.php:315 +#: pdf_pages.php:314 msgid "Internal relations" msgstr "العلاقات الداخلية" -#: pdf_pages.php:338 +#: pdf_pages.php:337 msgid "Select Tables" msgstr "اختر الجداول" -#: pdf_pages.php:361 +#: pdf_pages.php:360 msgid "Toggle scratchboard" msgstr "toggle scratchboard" -#: pdf_pages.php:524 +#: pdf_pages.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" msgstr "" "تحتوي الصفحة الحالية مراجع لجداول لم تعد موجودة. هل تود حذف هذه المراجع؟" -#: pdf_schema.php:635 +#: pdf_schema.php:634 #, fuzzy, php-format #| msgid "The \"%s\" table doesn't exist!" msgid "The %s table doesn't exist!" msgstr "الجدول \"%s\" غير موجود!" -#: pdf_schema.php:671 +#: pdf_schema.php:670 #, php-format msgid "Please configure the coordinates for table %s" msgstr "رجاء إعداد الموقع للجدول %s" -#: pdf_schema.php:994 +#: pdf_schema.php:993 #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" msgstr "بناء قاعدة البيانات \"%s\" - الصفحة %s" -#: pdf_schema.php:1012 +#: pdf_schema.php:1011 msgid "No tables" msgstr "لا يوجد جداول" -#: pdf_schema.php:1031 pdf_schema.php:1140 +#: pdf_schema.php:1030 pdf_schema.php:1139 msgid "Relational schema" msgstr "بناء الارتباطات" -#: pdf_schema.php:1115 +#: pdf_schema.php:1114 msgid "Table of contents" msgstr "جدول المحتويات" -#: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:145 -#: tbl_structure.php:182 tbl_tracking.php:277 +#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 +#: tbl_structure.php:181 tbl_tracking.php:272 msgid "Extra" msgstr "إضافي" @@ -4214,7 +4268,7 @@ msgstr "" msgid "Save position" msgstr "" -#: pmd_general.php:70 server_synchronize.php:428 server_synchronize.php:871 +#: pmd_general.php:70 server_synchronize.php:427 server_synchronize.php:870 msgid "Create table" msgstr "أنشئ الجدول" @@ -4285,31 +4339,31 @@ msgid "" "appropriate column name." msgstr "" -#: pmd_pdf.php:62 +#: pmd_pdf.php:60 msgid "Page has been created" msgstr "" -#: pmd_pdf.php:64 +#: pmd_pdf.php:62 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:84 +#: pmd_pdf.php:82 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:88 +#: pmd_pdf.php:86 msgid "recommended" msgstr "" -#: pmd_pdf.php:93 +#: pmd_pdf.php:91 msgid "to/from page" msgstr "" -#: querywindow.php:94 +#: querywindow.php:93 msgid "Import files" msgstr "استورد الملفات" -#: querywindow.php:105 +#: querywindow.php:104 msgid "All" msgstr "الكل" @@ -4355,65 +4409,65 @@ msgstr "معلومات" msgid "Character Sets and Collations" msgstr "مجموعات المحارف وCollations" -#: server_databases.php:51 +#: server_databases.php:49 msgid "No databases selected." msgstr "لا قواعد بيانات محددة" -#: server_databases.php:62 +#: server_databases.php:60 #, php-format msgid "%s databases have been dropped successfully." msgstr "تم حذف قواعد البيانات %s بنجاح." -#: server_databases.php:87 +#: server_databases.php:85 msgid "Databases statistics" msgstr "إحصائيات قواعد البيانات" -#: server_databases.php:116 server_status.php:370 +#: server_databases.php:114 server_status.php:370 #: setup/lib/messages.inc.php:114 msgid "Tables" msgstr "جداول" -#: server_databases.php:194 server_replication.php:180 -#: server_replication.php:208 +#: server_databases.php:192 server_replication.php:179 +#: server_replication.php:207 msgid "Master replication" msgstr "" -#: server_databases.php:196 server_replication.php:247 +#: server_databases.php:194 server_replication.php:246 msgid "Slave replication" msgstr "" -#: server_databases.php:229 +#: server_databases.php:227 #, fuzzy #| msgid "No databases" msgid "Jump to database" msgstr "لايوجد قواعد بيانات" -#: server_databases.php:266 +#: server_databases.php:264 msgid "Not replicated" msgstr "" -#: server_databases.php:272 +#: server_databases.php:270 msgid "Replicated" msgstr "" -#: server_databases.php:288 +#: server_databases.php:286 #, php-format msgid "Check privileges for database "%s"." msgstr "تحقق من الصلاحيات لقاعدة بيانات "%s"." -#: server_databases.php:292 server_databases.php:293 +#: server_databases.php:290 server_databases.php:291 msgid "Check Privileges" msgstr "تحقق من الصلاحيات" -#: server_databases.php:357 server_databases.php:358 +#: server_databases.php:355 server_databases.php:356 msgid "Enable Statistics" msgstr "مكن الإحصائيات" -#: server_databases.php:361 server_databases.php:362 +#: server_databases.php:359 server_databases.php:360 msgid "Disable Statistics" msgstr "أوقف الإحصائيات" -#: server_databases.php:365 +#: server_databases.php:363 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -4421,119 +4475,119 @@ msgstr "" "ملاحظة: تمكين إحصائيات قواعد البيانات هنا قد يسبب تدفق بيانات ثقيل بين خادم " "الويب وخادم MySQL." -#: server_engines.php:48 +#: server_engines.php:47 msgid "Storage Engines" msgstr "" -#: server_export.php:20 +#: server_export.php:18 msgid "View dump (schema) of databases" msgstr "اعرض أو احفظ بناء قواعد البيانات." -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:23 server_privileges.php:265 msgid "Includes all privileges except GRANT." msgstr "يتضمن كل الصلاحيات عدا GRANT." -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:24 server_privileges.php:191 +#: server_privileges.php:514 msgid "Allows altering the structure of existing tables." msgstr "يسمح بتعديل بناء الجداول الموجودة مسبقا." -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:25 server_privileges.php:207 +#: server_privileges.php:520 msgid "Allows altering and dropping stored routines." msgstr "" -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:26 server_privileges.php:183 +#: server_privileges.php:513 msgid "Allows creating new databases and tables." msgstr "يسمح بإنشاء قواعد بيانات وجداول جديدة." -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:27 server_privileges.php:206 +#: server_privileges.php:519 msgid "Allows creating stored routines." msgstr "" -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:513 msgid "Allows creating new tables." msgstr "يسمح بإنشاء جداول جديدة." -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:29 server_privileges.php:194 +#: server_privileges.php:517 msgid "Allows creating temporary tables." msgstr "يسمح بإنشاء جداول مؤقتة." -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:30 server_privileges.php:208 +#: server_privileges.php:553 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: server_privileges.php:32 server_privileges.php:199 -#: server_privileges.php:203 server_privileges.php:526 -#: server_privileges.php:530 +#: server_privileges.php:31 server_privileges.php:198 +#: server_privileges.php:202 server_privileges.php:525 +#: server_privileges.php:529 msgid "Allows creating new views." msgstr "" -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:32 server_privileges.php:182 +#: server_privileges.php:505 msgid "Allows deleting data." msgstr "يسمح بحذف البيانات." -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:33 server_privileges.php:184 +#: server_privileges.php:516 msgid "Allows dropping databases and tables." msgstr "يسمح بحذف قواعد البيانات." -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:34 server_privileges.php:516 msgid "Allows dropping tables." msgstr "يسمح بحذف الجداول." -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:35 server_privileges.php:199 +#: server_privileges.php:533 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:36 server_privileges.php:209 +#: server_privileges.php:521 msgid "Allows executing stored routines." msgstr "" -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:37 server_privileges.php:188 +#: server_privileges.php:508 msgid "Allows importing data from and exporting data into files." msgstr "يسمح باستيراد وتصدير البيانات من وإلى الملفّات." -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:38 server_privileges.php:539 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "يسمح بإضافة المستخدمين والصلاحيات دون إعادة قراءة جداول الصلاحيات." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:515 msgid "Allows creating and dropping indexes." msgstr "يسمح بإنشاء وحذف الفهارس." -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:40 server_privileges.php:180 +#: server_privileges.php:441 server_privileges.php:503 msgid "Allows inserting and replacing data." msgstr "يسمح بإضافة واستبدال البيانات." -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:41 server_privileges.php:195 +#: server_privileges.php:548 msgid "Allows locking tables for the current thread." msgstr "يسمح بقفل الجداول للعملية الحالية." -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:42 server_privileges.php:645 +#: server_privileges.php:647 msgid "Limits the number of new connections the user may open per hour." msgstr "يحد من عدد الاتصالات الجديدة التي يمكن للمستخدم فتحها بكل ساعة." -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:43 server_privileges.php:633 +#: server_privileges.php:635 msgid "Limits the number of queries the user may send to the server per hour." msgstr "يحد عدد الاستعلامات التي يستطيع المستخدم إرسالها إلى الخادم بكل ساعة." -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:44 server_privileges.php:639 +#: server_privileges.php:641 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -4541,58 +4595,58 @@ msgstr "" "يحد عدد الأوامر التي ينفذها المستخدم بكل ساعة، والتي تغير أي جدول أو قاعدة " "بيانات." -#: server_privileges.php:46 server_privileges.php:652 -#: server_privileges.php:654 +#: server_privileges.php:45 server_privileges.php:651 +#: server_privileges.php:653 msgid "Limits the number of simultaneous connections the user may have." msgstr "" -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:46 server_privileges.php:187 +#: server_privileges.php:543 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:47 server_privileges.php:189 +#: server_privileges.php:447 server_privileges.php:549 msgid "Has no effect in this MySQL version." msgstr "ليس له أي تأثير في نسخة MySQL الحالية." -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:48 server_privileges.php:185 +#: server_privileges.php:544 msgid "Allows reloading server settings and flushing the server's caches." msgstr "يسمح بإعادة تحميل إعدادات الخادم وتفريغ كاش الخادم." -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:197 +#: server_privileges.php:551 msgid "Allows the user to ask where the slaves / masters are." msgstr "يعطي الحق للمستخدم بالسؤال عن مكان وجود slaves/masters." -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:50 server_privileges.php:196 +#: server_privileges.php:552 msgid "Needed for the replication slaves." msgstr "مطلوب لتوابع لاستنساخ." -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:51 server_privileges.php:179 +#: server_privileges.php:438 server_privileges.php:502 msgid "Allows reading data." msgstr "يسمح بقراءة البيانات." -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:52 server_privileges.php:192 +#: server_privileges.php:546 msgid "Gives access to the complete list of databases." msgstr "يسمح بالوصول لقائمة أسماء جميع قواعد البيانات." -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:53 server_privileges.php:203 +#: server_privileges.php:205 server_privileges.php:518 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:54 server_privileges.php:186 +#: server_privileges.php:545 msgid "Allows shutting down the server." msgstr "يسمح بإيقاف عمل الخادم." -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:55 server_privileges.php:193 +#: server_privileges.php:542 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -4601,156 +4655,156 @@ msgstr "" "يسمح بالاتصال، حتى لو وصل حد عدد الاتصالات للأقصى.، مطلوب للمهام الإدارية " "كضبط الإعدادات العامة other users." -#: server_privileges.php:57 server_privileges.php:201 -#: server_privileges.php:535 +#: server_privileges.php:56 server_privileges.php:200 +#: server_privileges.php:534 msgid "Allows creating and dropping triggers" msgstr "" -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:57 server_privileges.php:181 +#: server_privileges.php:444 server_privileges.php:504 msgid "Allows changing data." msgstr "يسمح بتعديل البيانات." -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:58 server_privileges.php:259 msgid "No privileges." msgstr "لا صلاحيات." -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:301 server_privileges.php:302 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "لا شيء" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1710 server_privileges.php:1716 +#: server_privileges.php:430 server_privileges.php:565 +#: server_privileges.php:1714 server_privileges.php:1720 msgid "Table-specific privileges" msgstr "صلاحيات خاصة بالجدول" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1532 +#: server_privileges.php:431 server_privileges.php:573 +#: server_privileges.php:1536 msgid " Note: MySQL privilege names are expressed in English " msgstr " ملاحظه: اسم الامتياز لـMySQL يظهر ويقرأ باللغة الإنجليزية فقط " -#: server_privileges.php:563 server_privileges.php:1531 +#: server_privileges.php:562 server_privileges.php:1535 msgid "Global privileges" msgstr "صلاحيات عامة" -#: server_privileges.php:565 server_privileges.php:1710 +#: server_privileges.php:564 server_privileges.php:1714 msgid "Database-specific privileges" msgstr "صلاحيات خاصة بقاعدة البيانات" -#: server_privileges.php:610 +#: server_privileges.php:609 msgid "Administration" msgstr "إدارة" -#: server_privileges.php:630 +#: server_privileges.php:629 msgid "Resource limits" msgstr "حدود المصادر" -#: server_privileges.php:631 +#: server_privileges.php:630 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "ملاحظة: تغيير هذه الخيارات للرقم 0 )صفر( يلغي الحد." -#: server_privileges.php:708 +#: server_privileges.php:707 msgid "Login Information" msgstr "بيانات الدخول" -#: server_privileges.php:802 +#: server_privileges.php:801 msgid "Do not change the password" msgstr "لاتغير كلمة السر" -#: server_privileges.php:835 server_privileges.php:2197 +#: server_privileges.php:834 server_privileges.php:2201 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "المستخدم(ون) لم يتم إيجادهم." -#: server_privileges.php:879 +#: server_privileges.php:878 #, php-format msgid "The user %s already exists!" msgstr "اسم المستخدم %s موجود مسبقاً!" -#: server_privileges.php:962 +#: server_privileges.php:961 msgid "You have added a new user." msgstr "لقد أضفت مستخدم جديد." -#: server_privileges.php:1183 +#: server_privileges.php:1184 #, php-format msgid "You have updated the privileges for %s." msgstr "لقد جددت وحدثت الإمتيازات لـ %s." -#: server_privileges.php:1207 +#: server_privileges.php:1208 #, php-format msgid "You have revoked the privileges for %s" msgstr "لقد أبطلت الامتيازات لـ %s" -#: server_privileges.php:1243 +#: server_privileges.php:1244 #, php-format msgid "The password for %s was changed successfully." msgstr "تم تغيير كلمة المرور لـ %s بنجاح." -#: server_privileges.php:1263 +#: server_privileges.php:1264 #, php-format msgid "Deleting %s" msgstr "قيد حذف %s" -#: server_privileges.php:1274 +#: server_privileges.php:1275 msgid "No users selected for deleting!" msgstr "" -#: server_privileges.php:1277 +#: server_privileges.php:1278 msgid "Reloading the privileges" msgstr "قيد إعادة قراءة الصلاحيات." -#: server_privileges.php:1292 +#: server_privileges.php:1296 msgid "The selected users have been deleted successfully." msgstr "تم حذف المستخدمين المحددين بنجاح." -#: server_privileges.php:1327 +#: server_privileges.php:1331 msgid "The privileges were reloaded successfully." msgstr "تم إعادة قراءة الصلاحيات بنجاح." -#: server_privileges.php:1355 server_privileges.php:1641 +#: server_privileges.php:1359 server_privileges.php:1645 msgid "Edit Privileges" msgstr "تحرير الامتيازات" -#: server_privileges.php:1364 +#: server_privileges.php:1368 msgid "Revoke" msgstr "إبطال" -#: server_privileges.php:1396 +#: server_privileges.php:1400 msgid "User overview" msgstr "معلومات المستخدم" -#: server_privileges.php:1533 server_privileges.php:1715 -#: server_privileges.php:2064 +#: server_privileges.php:1537 server_privileges.php:1719 +#: server_privileges.php:2068 msgid "Grant" msgstr "منح" -#: server_privileges.php:1552 server_privileges.php:2154 +#: server_privileges.php:1556 server_privileges.php:2158 msgid "Any" msgstr "أي" -#: server_privileges.php:1601 server_privileges.php:1625 -#: server_privileges.php:2019 server_privileges.php:2208 +#: server_privileges.php:1605 server_privileges.php:1629 +#: server_privileges.php:2023 server_privileges.php:2212 msgid "Add a new User" msgstr "أضف مستخدم جديد" -#: server_privileges.php:1606 +#: server_privileges.php:1610 msgid "Remove selected users" msgstr "احذف المستخدمين المحددين" -#: server_privileges.php:1609 +#: server_privileges.php:1613 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "استرجع كل الصلاحيات الفعالة من المستخدمين ثم احذفهم بعد ذلك." -#: server_privileges.php:1610 server_privileges.php:1611 -#: server_privileges.php:1612 +#: server_privileges.php:1614 server_privileges.php:1615 +#: server_privileges.php:1616 msgid "Drop the databases that have the same names as the users." msgstr "احذف قواعد البيانات التي لها نفس أسماء المستخدمين." -#: server_privileges.php:1628 +#: server_privileges.php:1632 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4763,91 +4817,91 @@ msgstr "" "ما تم التعديل عليها يدويا. في هذه الحالة، عليك %s بإعادة قراءة الصلاحيات %s " "قبل أن تكمل." -#: server_privileges.php:1676 +#: server_privileges.php:1680 msgid "The selected user was not found in the privilege table." msgstr "المستخدم المحدد غير موجود في جدول الصلاحيات." -#: server_privileges.php:1716 +#: server_privileges.php:1720 msgid "Column-specific privileges" msgstr "صلاحيات خاصة بالحقل" -#: server_privileges.php:1917 +#: server_privileges.php:1921 msgid "Add privileges on the following database" msgstr "إضافة الصلاحيات على قاعدة البيانات التالية" -#: server_privileges.php:1935 +#: server_privileges.php:1939 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:1938 +#: server_privileges.php:1942 msgid "Add privileges on the following table" msgstr "إضافة الصلاحيات على الجدول التالي" -#: server_privileges.php:1995 +#: server_privileges.php:1999 msgid "Change Login Information / Copy User" msgstr "غير معلومات الدخول / انسخ اسم مستخدم" -#: server_privileges.php:1998 +#: server_privileges.php:2002 msgid "Create a new user with the same privileges and ..." msgstr "أضف اسم مستخدم جديد بنفس الصلاحيات و..." -#: server_privileges.php:2000 +#: server_privileges.php:2004 msgid "... keep the old one." msgstr " ... أبق القديم." -#: server_privileges.php:2001 +#: server_privileges.php:2005 msgid " ... delete the old one from the user tables." msgstr " ... احذف القديم من جداول المستخدمين." -#: server_privileges.php:2002 +#: server_privileges.php:2006 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr " ... استعد كل الصلاحيات الفعالة من القديم واحذهم بعد ذلك." -#: server_privileges.php:2003 +#: server_privileges.php:2007 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr " ... احذف القديم من جداول المستخدمين وأعد قراءة الصلاحيات بعد ذلك." -#: server_privileges.php:2025 +#: server_privileges.php:2029 msgid "Database for user" msgstr "" -#: server_privileges.php:2029 +#: server_privileges.php:2033 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "لا شيء" -#: server_privileges.php:2030 +#: server_privileges.php:2034 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2031 +#: server_privileges.php:2035 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2034 +#: server_privileges.php:2038 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: server_privileges.php:2057 +#: server_privileges.php:2061 #, php-format msgid "Users having access to "%s"" msgstr "المستخدمين ذوي صلاحية الوصول إلى "%s"" -#: server_privileges.php:2165 +#: server_privileges.php:2169 msgid "global" msgstr "عام" -#: server_privileges.php:2167 +#: server_privileges.php:2171 msgid "database-specific" msgstr "خاص بقاعدة بيانات" -#: server_privileges.php:2169 +#: server_privileges.php:2173 msgid "wildcard" msgstr "حرف شامل" @@ -4866,53 +4920,53 @@ msgstr "لم يستطع phpMyAdmin إيقاف العملية %s. يبدو أنه msgid "ID" msgstr "رقم" -#: server_replication.php:50 +#: server_replication.php:49 msgid "Unknown error" msgstr "" -#: server_replication.php:57 +#: server_replication.php:56 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:64 +#: server_replication.php:63 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:70 +#: server_replication.php:69 msgid "Unable to change master" msgstr "" -#: server_replication.php:73 +#: server_replication.php:72 #, php-format msgid "Master server changed succesfully to %s" msgstr "" -#: server_replication.php:181 +#: server_replication.php:180 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:183 server_status.php:391 +#: server_replication.php:182 server_status.php:391 msgid "Show master status" msgstr "" -#: server_replication.php:186 +#: server_replication.php:185 msgid "Show connected slaves" msgstr "" -#: server_replication.php:209 +#: server_replication.php:208 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:216 +#: server_replication.php:215 msgid "Master configuration" msgstr "" -#: server_replication.php:217 +#: server_replication.php:216 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -4921,107 +4975,107 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:220 +#: server_replication.php:219 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:221 +#: server_replication.php:220 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:224 +#: server_replication.php:223 msgid "Please select databases:" msgstr "" -#: server_replication.php:227 +#: server_replication.php:226 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: server_replication.php:229 +#: server_replication.php:228 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: server_replication.php:292 +#: server_replication.php:291 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:295 +#: server_replication.php:294 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:304 +#: server_replication.php:303 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:307 +#: server_replication.php:306 msgid "See slave status table" msgstr "" -#: server_replication.php:310 +#: server_replication.php:309 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:321 +#: server_replication.php:320 msgid "Control slave:" msgstr "" -#: server_replication.php:324 +#: server_replication.php:323 msgid "Full start" msgstr "" -#: server_replication.php:324 +#: server_replication.php:323 msgid "Full stop" msgstr "" -#: server_replication.php:325 +#: server_replication.php:324 msgid "Reset slave" msgstr "" -#: server_replication.php:326 +#: server_replication.php:325 #, php-format msgid "SQL Thread %s only" msgstr "" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 msgid "Start" msgstr "ابدأ" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 msgid "Stop" msgstr "قف" -#: server_replication.php:327 +#: server_replication.php:326 #, php-format msgid "IO Thread %s only" msgstr "" -#: server_replication.php:331 +#: server_replication.php:330 msgid "Error management:" msgstr "" -#: server_replication.php:333 +#: server_replication.php:332 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:335 +#: server_replication.php:334 msgid "Skip current error" msgstr "" -#: server_replication.php:336 +#: server_replication.php:335 msgid "Skip next" msgstr "" -#: server_replication.php:339 +#: server_replication.php:338 msgid "errors." msgstr "أخطاء." -#: server_replication.php:354 +#: server_replication.php:353 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -5725,112 +5779,112 @@ msgstr "نوع الاستعلام" msgid "Replication status" msgstr "" -#: server_synchronize.php:93 +#: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:96 +#: server_synchronize.php:95 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:121 server_synchronize.php:124 tbl_create.php:77 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:264 +#: server_synchronize.php:263 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:271 +#: server_synchronize.php:270 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:399 server_synchronize.php:838 +#: server_synchronize.php:398 server_synchronize.php:837 msgid "not present" msgstr "" -#: server_synchronize.php:423 server_synchronize.php:866 +#: server_synchronize.php:422 server_synchronize.php:865 msgid "Structure Difference" msgstr "" -#: server_synchronize.php:424 server_synchronize.php:867 +#: server_synchronize.php:423 server_synchronize.php:866 msgid "Data Difference" msgstr "" -#: server_synchronize.php:429 server_synchronize.php:872 +#: server_synchronize.php:428 server_synchronize.php:871 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:430 server_synchronize.php:873 +#: server_synchronize.php:429 server_synchronize.php:872 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:431 server_synchronize.php:874 +#: server_synchronize.php:430 server_synchronize.php:873 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:432 server_synchronize.php:875 +#: server_synchronize.php:431 server_synchronize.php:874 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:433 server_synchronize.php:876 +#: server_synchronize.php:432 server_synchronize.php:875 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:434 server_synchronize.php:877 +#: server_synchronize.php:433 server_synchronize.php:876 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:435 server_synchronize.php:878 +#: server_synchronize.php:434 server_synchronize.php:877 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:445 server_synchronize.php:889 +#: server_synchronize.php:444 server_synchronize.php:888 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:448 server_synchronize.php:893 +#: server_synchronize.php:447 server_synchronize.php:892 msgid "Apply Selected Changes" msgstr "" -#: server_synchronize.php:450 server_synchronize.php:895 +#: server_synchronize.php:449 server_synchronize.php:894 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:463 +#: server_synchronize.php:462 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:941 +#: server_synchronize.php:940 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:1002 +#: server_synchronize.php:1001 msgid "The following queries have been executed:" msgstr "" -#: server_synchronize.php:1121 +#: server_synchronize.php:1120 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1122 +#: server_synchronize.php:1121 #, fuzzy #| msgid "Connections" msgid "Current connection" msgstr "اتصالات" -#: server_synchronize.php:1151 +#: server_synchronize.php:1150 #, php-format msgid "Configuration: %s" msgstr "" -#: server_synchronize.php:1166 +#: server_synchronize.php:1165 msgid "Socket" msgstr "" -#: server_synchronize.php:1212 +#: server_synchronize.php:1211 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -6375,8 +6429,8 @@ msgstr "" #: setup/lib/messages.inc.php:128 msgid "" "Configure phpMyAdmin database to gain access to additional features, see " -"[a@../Documentation.html#linked-tables]linked-tables infrastructure[/a] in " -"documentation" +"[a@../Documentation.html#linked-tables]phpMyAdmin configuration storage[/a] " +"in documentation" msgstr "" #: setup/lib/messages.inc.php:129 setup/lib/messages.inc.php:290 @@ -7415,114 +7469,114 @@ msgstr "" msgid "ZIP" msgstr "زيب" -#: sql.php:495 tbl_replace.php:385 +#: sql.php:494 tbl_replace.php:384 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: sql.php:512 +#: sql.php:511 msgid "Showing as PHP code" msgstr "" -#: sql.php:515 tbl_replace.php:359 +#: sql.php:514 tbl_replace.php:358 msgid "Showing SQL query" msgstr "" -#: sql.php:517 +#: sql.php:516 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "التحقق من استعلام SQL" -#: sql.php:638 +#: sql.php:631 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:670 +#: sql.php:663 msgid "Label" msgstr "علامة" -#: tbl_addfield.php:188 tbl_alter.php:102 tbl_indexes.php:97 +#: tbl_addfield.php:185 tbl_alter.php:100 tbl_indexes.php:97 #, php-format msgid "Table %1$s has been altered successfully" msgstr "" -#: tbl_change.php:250 tbl_select.php:26 tbl_select.php:27 tbl_select.php:30 -#: tbl_select.php:33 +#: tbl_change.php:245 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_select.php:32 msgid "Browse foreign values" msgstr "استعرض القيم الغريبة" -#: tbl_change.php:280 tbl_change.php:318 +#: tbl_change.php:275 tbl_change.php:313 msgid "Function" msgstr "دالة" -#: tbl_change.php:300 tbl_indexes.php:199 tbl_indexes.php:224 +#: tbl_change.php:295 tbl_indexes.php:198 tbl_indexes.php:223 msgid "Ignore" msgstr "تجاهل" -#: tbl_change.php:725 +#: tbl_change.php:720 #, fuzzy #| msgid " Because of its length,
                            this field might not be editable " msgid " Because of its length,
                            this column might not be editable " msgstr " بسبب طوله,
                            فمن المحتمل أن هذا الحقل غير قابل للتحرير " -#: tbl_change.php:884 +#: tbl_change.php:835 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:890 +#: tbl_change.php:841 msgid "Binary - do not edit" msgstr "ثنائي - لاتحرره" -#: tbl_change.php:983 +#: tbl_change.php:889 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:1128 +#: tbl_change.php:1026 msgid "Insert as new row" msgstr "إدخال كتسجيل جديد" -#: tbl_change.php:1129 +#: tbl_change.php:1027 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:1130 +#: tbl_change.php:1028 msgid "Show insert query" msgstr "" -#: tbl_change.php:1145 +#: tbl_change.php:1043 msgid "Go back to previous page" msgstr "الرجوع إلى الصفحة السابقة" -#: tbl_change.php:1146 +#: tbl_change.php:1044 msgid "Insert another new row" msgstr "إدخال تسجيل جديد" -#: tbl_change.php:1150 +#: tbl_change.php:1048 msgid "Go back to this page" msgstr "ارجع إلى هذه الصفحة" -#: tbl_change.php:1158 +#: tbl_change.php:1056 msgid "Edit next row" msgstr "عدل الصف التالي" -#: tbl_change.php:1169 +#: tbl_change.php:1067 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: tbl_change.php:1207 +#: tbl_change.php:1105 #, php-format msgid "Restart insertion with %s rows" msgstr "" -#: tbl_create.php:57 +#: tbl_create.php:55 #, php-format msgid "Table %s already exists!" msgstr "" -#: tbl_create.php:244 +#: tbl_create.php:241 #, php-format msgid "Table %1$s has been created." msgstr "" @@ -7543,201 +7597,201 @@ msgstr "لايمكن تغيير اسم الفهرس إلى الأساسي!" msgid "No index parts defined!" msgstr "أجزاء الفهرسة غير معرفة!" -#: tbl_indexes.php:159 +#: tbl_indexes.php:158 msgid "Create a new index" msgstr "تصميم فهرسه جديده" -#: tbl_indexes.php:161 +#: tbl_indexes.php:160 msgid "Modify an index" msgstr "تعديل الفهرسة" -#: tbl_indexes.php:167 +#: tbl_indexes.php:166 msgid "Index name:" msgstr "اسم الفهرس :" -#: tbl_indexes.php:173 +#: tbl_indexes.php:172 msgid "Index type:" msgstr "نوع الفهرس :" -#: tbl_indexes.php:183 +#: tbl_indexes.php:182 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" "(\"الأساسي\" يجب يجب أن يكون الاسم وأيضاً فقط المفتاح الأساسي!)" -#: tbl_indexes.php:250 +#: tbl_indexes.php:249 #, php-format msgid "Add to index  %s column(s)" msgstr "إضافه كفهرس  %s صف(ـوف)" -#: tbl_indexes.php:255 tbl_structure.php:588 tbl_structure.php:599 +#: tbl_indexes.php:254 tbl_structure.php:586 tbl_structure.php:597 msgid "Column count has to be larger than zero." msgstr "" -#: tbl_move_copy.php:45 +#: tbl_move_copy.php:44 msgid "Can't move table to same one!" msgstr "لايمكن نقل الجدول إلى نفسه!" -#: tbl_move_copy.php:47 +#: tbl_move_copy.php:46 msgid "Can't copy table to same one!" msgstr "لا يمكن نسخ الجدول إلى نفسه!" -#: tbl_move_copy.php:55 +#: tbl_move_copy.php:54 #, php-format msgid "Table %s has been moved to %s." msgstr "%s جدول تم نقله إلى %s." -#: tbl_move_copy.php:57 +#: tbl_move_copy.php:56 #, php-format msgid "Table %s has been copied to %s." msgstr "الجدول %s لقد تم نسخه إلى %s." -#: tbl_move_copy.php:81 +#: tbl_move_copy.php:80 msgid "The table name is empty!" msgstr "اسم الجدول فارغ!" -#: tbl_operations.php:248 +#: tbl_operations.php:246 msgid "Alter table order by" msgstr "تعديل ترتيب الجدول بـ" -#: tbl_operations.php:257 +#: tbl_operations.php:255 msgid "(singly)" msgstr "(فردي)" -#: tbl_operations.php:277 +#: tbl_operations.php:275 msgid "Move table to (database.table):" msgstr "نقل جدول إلى (قاعدة بيانات.جدول):" -#: tbl_operations.php:335 +#: tbl_operations.php:333 msgid "Table options" msgstr "خيارات الجدول" -#: tbl_operations.php:339 +#: tbl_operations.php:337 msgid "Rename table to" msgstr "تغيير اسم جدول إلى" -#: tbl_operations.php:510 +#: tbl_operations.php:508 msgid "Copy table to (database.table):" msgstr "نسخ الجدول إلى" -#: tbl_operations.php:557 +#: tbl_operations.php:555 msgid "Switch to copied table" msgstr "بدل إلى الجدول المنسوخ" -#: tbl_operations.php:569 +#: tbl_operations.php:567 msgid "Table maintenance" msgstr "صيانة الجدول" -#: tbl_operations.php:590 +#: tbl_operations.php:588 msgid "Defragment table" msgstr "" -#: tbl_operations.php:629 +#: tbl_operations.php:627 #, php-format msgid "Table %s has been flushed" msgstr "لقد تم إعادة تحميل الجدول %s بنجاح" -#: tbl_operations.php:635 +#: tbl_operations.php:633 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "إعادة تحميل الجدول (\"FLUSH\")" -#: tbl_operations.php:650 +#: tbl_operations.php:648 msgid "Partition maintenance" msgstr "" -#: tbl_operations.php:658 +#: tbl_operations.php:656 #, php-format msgid "Partition %s" msgstr "" -#: tbl_operations.php:661 +#: tbl_operations.php:659 msgid "Analyze" msgstr "حلل" -#: tbl_operations.php:662 +#: tbl_operations.php:660 msgid "Check" msgstr "تحقق" -#: tbl_operations.php:663 +#: tbl_operations.php:661 msgid "Optimize" msgstr "" -#: tbl_operations.php:664 +#: tbl_operations.php:662 msgid "Rebuild" msgstr "" -#: tbl_operations.php:665 +#: tbl_operations.php:663 msgid "Repair" msgstr "صلح" -#: tbl_operations.php:677 +#: tbl_operations.php:675 msgid "Remove partitioning" msgstr "" -#: tbl_operations.php:703 +#: tbl_operations.php:701 msgid "Check referential integrity:" msgstr "تحديد التكامل المرجعي:" -#: tbl_printview.php:73 +#: tbl_printview.php:72 msgid "Show tables" msgstr "شاهد الجدول" -#: tbl_printview.php:308 tbl_structure.php:655 +#: tbl_printview.php:307 tbl_structure.php:653 msgid "Space usage" msgstr "المساحة المستغلة" -#: tbl_printview.php:312 tbl_structure.php:659 +#: tbl_printview.php:311 tbl_structure.php:657 msgid "Usage" msgstr "المساحة" -#: tbl_printview.php:339 tbl_structure.php:686 +#: tbl_printview.php:338 tbl_structure.php:684 msgid "Effective" msgstr "فعال" -#: tbl_printview.php:364 tbl_structure.php:724 +#: tbl_printview.php:363 tbl_structure.php:722 msgid "Row Statistics" msgstr "إحصائيات" -#: tbl_printview.php:367 tbl_structure.php:727 +#: tbl_printview.php:366 tbl_structure.php:725 msgid "Statements" msgstr "أوامر" -#: tbl_printview.php:378 tbl_structure.php:739 +#: tbl_printview.php:377 tbl_structure.php:737 msgid "static" msgstr "" -#: tbl_printview.php:380 tbl_structure.php:741 +#: tbl_printview.php:379 tbl_structure.php:739 msgid "dynamic" msgstr "ديناميكي" -#: tbl_printview.php:402 tbl_structure.php:784 +#: tbl_printview.php:401 tbl_structure.php:782 msgid "Row length" msgstr "طول الصف" -#: tbl_printview.php:412 tbl_structure.php:792 +#: tbl_printview.php:411 tbl_structure.php:790 msgid " Row size " msgstr " مقاس الصف " -#: tbl_relation.php:278 +#: tbl_relation.php:276 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" -#: tbl_relation.php:404 +#: tbl_relation.php:402 #, fuzzy #| msgid "Internal relations" msgid "Internal relation" msgstr "العلاقات الداخلية" -#: tbl_relation.php:406 +#: tbl_relation.php:404 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: tbl_relation.php:412 +#: tbl_relation.php:410 msgid "Foreign key constraint" msgstr "" @@ -7745,229 +7799,229 @@ msgstr "" msgid "No rows selected" msgstr "" -#: tbl_select.php:130 +#: tbl_select.php:129 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "تجعل \"استعلام بواسطة المثال\" (wildcard: \"%\")" -#: tbl_select.php:136 +#: tbl_select.php:135 msgid "Operator" msgstr "" -#: tbl_select.php:267 +#: tbl_select.php:266 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "اختيار حقول (على الأقل واحد):" -#: tbl_select.php:285 +#: tbl_select.php:284 msgid "Add search conditions (body of the \"where\" clause):" msgstr "أضف شروط البحث (جسم من الفقره \"where\" clause):" -#: tbl_select.php:292 +#: tbl_select.php:291 msgid "Number of rows per page" msgstr "رقم السجلات لكل صفحة" -#: tbl_select.php:298 +#: tbl_select.php:297 msgid "Display order:" msgstr "ترتيب العرض:" -#: tbl_structure.php:160 +#: tbl_structure.php:159 msgid "Browse distinct values" msgstr "" -#: tbl_structure.php:360 +#: tbl_structure.php:358 #, fuzzy #| msgid "None" msgctxt "None for default" msgid "None" msgstr "لا شيء" -#: tbl_structure.php:373 +#: tbl_structure.php:371 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Column %s has been dropped" msgstr "جدول %s حذفت" -#: tbl_structure.php:384 +#: tbl_structure.php:382 #, php-format msgid "A primary key has been added on %s" msgstr "لقد أُضيف المفتاح الأساسي في %s" -#: tbl_structure.php:399 tbl_structure.php:413 tbl_structure.php:427 +#: tbl_structure.php:397 tbl_structure.php:411 tbl_structure.php:425 #, php-format msgid "An index has been added on %s" msgstr "لقد أُضيف الفهرس في %s" -#: tbl_structure.php:505 tbl_structure.php:507 +#: tbl_structure.php:503 tbl_structure.php:505 msgid "Relation view" msgstr "عرض الروابط" -#: tbl_structure.php:514 tbl_structure.php:516 +#: tbl_structure.php:512 tbl_structure.php:514 msgid "Propose table structure" msgstr "اقترح بناء الجدول" -#: tbl_structure.php:539 +#: tbl_structure.php:537 #, fuzzy #| msgid "Add into comments" msgid "Add column" msgstr "أضف إلى الملاحظات" -#: tbl_structure.php:553 +#: tbl_structure.php:551 msgid "At End of Table" msgstr "في نهاية الجدول" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At Beginning of Table" msgstr "في بداية الجدول" -#: tbl_structure.php:555 +#: tbl_structure.php:553 #, php-format msgid "After %s" msgstr "بعد %s" -#: tbl_structure.php:593 +#: tbl_structure.php:591 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "تصميم فهرسه على %s عمود" -#: tbl_structure.php:755 +#: tbl_structure.php:753 msgid "partitioned" msgstr "" -#: tbl_tracking.php:113 +#: tbl_tracking.php:109 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:186 +#: tbl_tracking.php:182 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "" -#: tbl_tracking.php:194 +#: tbl_tracking.php:190 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "" -#: tbl_tracking.php:202 +#: tbl_tracking.php:198 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "" -#: tbl_tracking.php:212 +#: tbl_tracking.php:208 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:219 +#: tbl_tracking.php:215 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:220 +#: tbl_tracking.php:216 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:229 +#: tbl_tracking.php:225 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:250 tbl_tracking.php:378 +#: tbl_tracking.php:245 tbl_tracking.php:373 msgid "Close" msgstr "أغلق" -#: tbl_tracking.php:261 +#: tbl_tracking.php:256 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:380 +#: tbl_tracking.php:375 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:396 tbl_tracking.php:503 +#: tbl_tracking.php:391 tbl_tracking.php:498 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "" -#: tbl_tracking.php:409 tbl_tracking.php:460 +#: tbl_tracking.php:404 tbl_tracking.php:455 msgid "Date" msgstr "تاريخ" -#: tbl_tracking.php:410 tbl_tracking.php:461 +#: tbl_tracking.php:405 tbl_tracking.php:456 msgid "Username" msgstr "اسم المستخدم" -#: tbl_tracking.php:411 +#: tbl_tracking.php:406 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:462 +#: tbl_tracking.php:457 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:506 +#: tbl_tracking.php:501 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:507 +#: tbl_tracking.php:502 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:520 +#: tbl_tracking.php:515 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:560 +#: tbl_tracking.php:555 msgid "Show versions" msgstr "" -#: tbl_tracking.php:592 +#: tbl_tracking.php:587 msgid "Version" msgstr "نسخة" -#: tbl_tracking.php:639 +#: tbl_tracking.php:634 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "" -#: tbl_tracking.php:641 +#: tbl_tracking.php:636 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:652 +#: tbl_tracking.php:647 #, php-format msgid "Activate tracking for %s.%s" msgstr "" -#: tbl_tracking.php:654 +#: tbl_tracking.php:649 msgid "Activate now" msgstr "" -#: tbl_tracking.php:667 +#: tbl_tracking.php:662 #, php-format msgid "Create version %s of %s.%s" msgstr "" -#: tbl_tracking.php:671 +#: tbl_tracking.php:666 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:679 +#: tbl_tracking.php:674 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:687 +#: tbl_tracking.php:682 msgid "Create version" msgstr "" @@ -8014,10 +8068,34 @@ msgstr "لقد تم تجديد العرض الجانبي." msgid "VIEW name" msgstr "" -#: view_operations.php:92 +#: view_operations.php:91 msgid "Rename view to" msgstr "" +#, fuzzy +#~| msgid "Enabled" +#~ msgctxt "BLOB repository" +#~ msgid "Enabled" +#~ msgstr "مفعل" + +#~ msgid "Disable" +#~ msgstr "عطل" + +#, fuzzy +#~| msgid "Repair" +#~ msgctxt "BLOB repository" +#~ msgid "Repair" +#~ msgstr "صلح" + +#, fuzzy +#~| msgid "Disabled" +#~ msgctxt "BLOB repository" +#~ msgid "Disabled" +#~ msgstr "معطل" + +#~ msgid "Enable" +#~ msgstr "فعل" + #~ msgid "" #~ "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " #~ "extension. Please check your PHP configuration." diff --git a/po/az.po b/po/az.po index d3a1b0bb7..a0226d6d0 100644 --- a/po/az.po +++ b/po/az.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-21 13:53+0200\n" +"POT-Creation-Date: 2010-07-26 17:18+0200\n" "PO-Revision-Date: 2010-03-12 09:11+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: azerbaijani \n" @@ -13,158 +13,170 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.5.3\n" -#: browse_foreigners.php:37 browse_foreigners.php:58 -#: libraries/display_tbl.lib.php:416 server_privileges.php:1506 +#: browse_foreigners.php:36 browse_foreigners.php:57 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1510 msgid "Show all" msgstr "Hamısını göster" -#: browse_foreigners.php:81 libraries/common.lib.php:2313 -#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:393 -#: libraries/export/pdf.php:146 pdf_schema.php:282 pdf_schema.php:1122 -#: pdf_schema.php:1138 +#: browse_foreigners.php:80 libraries/common.lib.php:2318 +#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:392 +#: libraries/export/pdf.php:146 pdf_schema.php:281 pdf_schema.php:1121 +#: pdf_schema.php:1137 msgid "Page number:" msgstr "Sehife Nömresi:" -#: browse_foreigners.php:131 +#: browse_foreigners.php:130 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " "cross-window updates." msgstr "" -#: browse_foreigners.php:149 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2829 -#: libraries/common.lib.php:2836 libraries/db_links.inc.php:74 -#: libraries/tbl_links.inc.php:62 +#: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 +#: db_structure.php:89 db_structure.php:91 db_structure.php:102 +#: db_structure.php:104 libraries/common.lib.php:2834 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Axtarış" -#: browse_foreigners.php:152 db_operations.php:384 db_operations.php:428 -#: db_operations.php:498 db_operations.php:608 db_search.php:344 -#: db_structure.php:566 js/messages.php:48 libraries/Config.class.php:1043 -#: libraries/Theme_Manager.class.php:310 +#: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 +#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 +#: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 -#: libraries/common.lib.php:1340 libraries/common.lib.php:2289 +#: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 -#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:275 -#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:531 -#: libraries/display_tbl.lib.php:613 libraries/replication_gui.lib.php:75 +#: libraries/display_export.lib.php:269 libraries/display_import.lib.php:275 +#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 +#: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 #: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:781 -#: main.php:127 navigation.php:231 pdf_pages.php:291 pdf_pages.php:327 -#: pdf_pages.php:529 pmd_pdf.php:115 server_binlog.php:128 -#: server_privileges.php:664 server_privileges.php:1616 -#: server_privileges.php:1963 server_privileges.php:2010 -#: server_privileges.php:2049 server_replication.php:234 -#: server_replication.php:317 server_replication.php:340 -#: server_synchronize.php:1208 tbl_change.php:328 tbl_change.php:1172 -#: tbl_change.php:1209 tbl_indexes.php:253 tbl_operations.php:264 -#: tbl_operations.php:301 tbl_operations.php:498 tbl_operations.php:560 -#: tbl_operations.php:680 tbl_select.php:324 tbl_structure.php:561 -#: tbl_structure.php:596 tbl_tracking.php:394 tbl_tracking.php:511 -#: view_create.php:181 view_operations.php:100 +#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 +#: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 +#: server_privileges.php:663 server_privileges.php:1620 +#: server_privileges.php:1967 server_privileges.php:2014 +#: server_privileges.php:2053 server_replication.php:233 +#: server_replication.php:316 server_replication.php:339 +#: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 +#: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 +#: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 +#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "Davam" -#: browse_foreigners.php:167 browse_foreigners.php:171 -#: libraries/Index.class.php:441 tbl_tracking.php:319 +#: browse_foreigners.php:166 browse_foreigners.php:170 +#: libraries/Index.class.php:441 tbl_tracking.php:314 msgid "Keyname" msgstr "Açar söz" -#: browse_foreigners.php:168 browse_foreigners.php:170 -#: server_collations.php:54 server_collations.php:66 server_engines.php:58 +#: browse_foreigners.php:167 browse_foreigners.php:169 +#: server_collations.php:54 server_collations.php:66 server_engines.php:57 #: server_status.php:738 msgid "Description" msgstr "Haqqında" -#: browse_foreigners.php:246 browse_foreigners.php:255 -#: browse_foreigners.php:267 browse_foreigners.php:275 +#: browse_foreigners.php:245 browse_foreigners.php:254 +#: browse_foreigners.php:266 browse_foreigners.php:274 msgid "Use this value" msgstr "" -#: db_create.php:45 +#: bs_disp_as_mime_type.php:29 bs_play_media.php:35 +msgid "No blob streaming server configured!" +msgstr "" + +#: bs_disp_as_mime_type.php:35 +msgid "Failed to fetch headers" +msgstr "" + +#: bs_disp_as_mime_type.php:41 +msgid "Failed to open remote URL" +msgstr "" + +#: db_create.php:44 #, fuzzy, php-format msgid "Database %1$s has been created." msgstr "%s bazası leğv edildi." -#: db_datadict.php:48 db_operations.php:377 +#: db_datadict.php:48 db_operations.php:313 msgid "Database comment: " msgstr "Baza qısa izahatı: " -#: db_datadict.php:164 libraries/tbl_properties.inc.php:723 -#: pdf_schema.php:1235 tbl_operations.php:346 tbl_printview.php:128 +#: db_datadict.php:164 libraries/tbl_properties.inc.php:722 +#: pdf_schema.php:1234 tbl_operations.php:344 tbl_printview.php:127 msgid "Table comments" msgstr "Cedvel haqqında qısa izahat" -#: db_datadict.php:173 db_qbe.php:173 libraries/Index.class.php:445 +#: db_datadict.php:173 db_qbe.php:170 libraries/Index.class.php:445 #: libraries/export/htmlword.php:243 libraries/export/latex.php:364 #: libraries/export/odt.php:293 libraries/export/texytext.php:233 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:274 -#: pdf_schema.php:1261 pdf_schema.php:1282 tbl_change.php:306 -#: tbl_indexes.php:188 tbl_printview.php:140 tbl_relation.php:401 -#: tbl_select.php:133 tbl_structure.php:176 tbl_tracking.php:272 -#: tbl_tracking.php:323 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 +#: pdf_schema.php:1260 pdf_schema.php:1281 tbl_change.php:301 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:132 tbl_structure.php:175 tbl_tracking.php:267 +#: tbl_tracking.php:318 #, fuzzy #| msgid "Column names" msgid "Column" msgstr "Sütun adları" -#: db_datadict.php:174 db_printview.php:105 libraries/Index.class.php:442 +#: db_datadict.php:174 db_printview.php:104 libraries/Index.class.php:442 #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 #: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:244 #: libraries/export/latex.php:364 libraries/export/odt.php:296 #: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:99 -#: pdf_schema.php:1262 pdf_schema.php:1283 server_privileges.php:2062 -#: tbl_change.php:285 tbl_change.php:312 tbl_printview.php:141 -#: tbl_printview.php:311 tbl_select.php:134 tbl_structure.php:177 -#: tbl_structure.php:658 tbl_tracking.php:273 tbl_tracking.php:320 +#: pdf_schema.php:1261 pdf_schema.php:1282 server_privileges.php:2066 +#: tbl_change.php:280 tbl_change.php:307 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:133 tbl_structure.php:176 +#: tbl_structure.php:656 tbl_tracking.php:268 tbl_tracking.php:315 msgid "Type" msgstr "Tip" #: db_datadict.php:176 libraries/Index.class.php:448 #: libraries/export/htmlword.php:245 libraries/export/latex.php:364 #: libraries/export/odt.php:299 libraries/export/texytext.php:235 -#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1264 -#: pdf_schema.php:1285 tbl_change.php:321 tbl_printview.php:143 -#: tbl_structure.php:180 tbl_tracking.php:275 tbl_tracking.php:326 +#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1263 +#: pdf_schema.php:1284 tbl_change.php:316 tbl_printview.php:142 +#: tbl_structure.php:179 tbl_tracking.php:270 tbl_tracking.php:321 msgid "Null" msgstr "Null" -#: db_datadict.php:177 db_structure.php:500 libraries/export/htmlword.php:246 +#: db_datadict.php:177 db_structure.php:486 libraries/export/htmlword.php:246 #: libraries/export/latex.php:364 libraries/export/odt.php:302 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:105 -#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 -#: tbl_structure.php:181 tbl_tracking.php:276 +#: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:143 +#: tbl_structure.php:180 tbl_tracking.php:271 msgid "Default" msgstr "Başlanğıc deyeri" #: db_datadict.php:181 libraries/export/htmlword.php:248 #: libraries/export/latex.php:366 libraries/export/odt.php:306 -#: libraries/export/texytext.php:238 pdf_schema.php:1267 pdf_schema.php:1288 -#: tbl_printview.php:148 +#: libraries/export/texytext.php:238 pdf_schema.php:1266 pdf_schema.php:1287 +#: tbl_printview.php:147 msgid "Links to" msgstr "Links to" -#: db_datadict.php:183 db_printview.php:111 libraries/export/htmlword.php:251 +#: db_datadict.php:183 db_printview.php:110 libraries/export/htmlword.php:251 #: libraries/export/latex.php:49 libraries/export/latex.php:369 #: libraries/export/odt.php:37 libraries/export/odt.php:311 #: libraries/export/sql.php:29 libraries/export/texytext.php:241 -#: libraries/tbl_properties.inc.php:129 pdf_schema.php:1278 -#: pdf_schema.php:1289 tbl_printview.php:150 +#: libraries/tbl_properties.inc.php:128 pdf_schema.php:1277 +#: pdf_schema.php:1288 tbl_printview.php:149 msgid "Comments" msgstr "Qısa İzahatlar" #: db_datadict.php:266 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/export/htmlword.php:321 #: libraries/export/latex.php:434 libraries/export/odt.php:367 -#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:262 -#: pdf_schema.php:1343 server_privileges.php:1560 server_privileges.php:1571 -#: server_privileges.php:1881 server_privileges.php:1886 -#: server_privileges.php:2179 sql.php:131 sql.php:193 tbl_printview.php:227 -#: tbl_structure.php:349 tbl_tracking.php:336 tbl_tracking.php:341 +#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:261 +#: pdf_schema.php:1342 server_privileges.php:1564 server_privileges.php:1575 +#: server_privileges.php:1885 server_privileges.php:1890 +#: server_privileges.php:2183 sql.php:130 sql.php:192 tbl_printview.php:226 +#: tbl_structure.php:347 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "Xeyir" @@ -175,17 +187,17 @@ msgstr "Xeyir" #: libraries/mult_submits.inc.php:49 libraries/mult_submits.inc.php:54 #: libraries/mult_submits.inc.php:59 libraries/mult_submits.inc.php:91 #: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:105 -#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:261 -#: libraries/mult_submits.inc.php:272 pdf_schema.php:1343 -#: server_databases.php:63 server_privileges.php:1557 -#: server_privileges.php:1571 server_privileges.php:1881 -#: server_privileges.php:1884 server_privileges.php:2179 sql.php:192 -#: tbl_printview.php:227 tbl_structure.php:39 tbl_structure.php:349 -#: tbl_tracking.php:334 tbl_tracking.php:339 +#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:260 +#: libraries/mult_submits.inc.php:271 pdf_schema.php:1342 +#: server_databases.php:61 server_privileges.php:1561 +#: server_privileges.php:1575 server_privileges.php:1885 +#: server_privileges.php:1888 server_privileges.php:2183 sql.php:191 +#: tbl_printview.php:226 tbl_structure.php:38 tbl_structure.php:347 +#: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" msgstr "Beli" -#: db_datadict.php:321 db_printview.php:265 tbl_printview.php:496 +#: db_datadict.php:321 db_printview.php:264 tbl_printview.php:495 msgid "Print" msgstr "Çap et" @@ -193,200 +205,159 @@ msgstr "Çap et" msgid "View dump (schema) of database" msgstr "Me'lumat bazasının sxemini göster" -#: db_export.php:32 db_printview.php:95 db_qbe.php:101 db_structure.php:50 -#: db_tracking.php:34 export.php:352 navigation.php:326 +#: db_export.php:32 db_printview.php:94 db_qbe.php:98 db_structure.php:49 +#: db_tracking.php:30 export.php:350 navigation.php:325 msgid "No tables found in database." msgstr "Me'lumat bazasında cedvel yoxdur." -#: db_export.php:42 db_search.php:326 server_export.php:26 +#: db_export.php:42 db_search.php:326 server_export.php:24 msgid "Select All" msgstr "Hamısını Seç" -#: db_export.php:44 db_search.php:329 server_export.php:28 +#: db_export.php:44 db_search.php:329 server_export.php:26 msgid "Unselect All" msgstr "Heç birini seçme" -#: db_operations.php:37 tbl_create.php:49 +#: db_operations.php:33 tbl_create.php:47 #, fuzzy msgid "The database name is empty!" msgstr "Cedveli adı boşdur!" -#: db_operations.php:235 +#: db_operations.php:231 #, 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:239 +#: db_operations.php:235 #, fuzzy, php-format msgid "Database %s has been copied to %s" msgstr "%s cedveli %s - e kopyalandı." -#: db_operations.php:411 +#: db_operations.php:347 #, fuzzy msgid "Rename database to" msgstr "Cedveli yeniden adlandır" -#: db_operations.php:416 server_processlist.php:56 +#: db_operations.php:352 server_processlist.php:56 msgid "Command" msgstr "Komanda Tipi" -#: db_operations.php:428 tbl_change.php:1141 +#: db_operations.php:364 tbl_change.php:1039 msgid "and then" msgstr "" -#: db_operations.php:454 +#: db_operations.php:390 #, fuzzy msgid "Copy database to" msgstr "Baza seçilmemişdir ve ya mövcud deyildir." -#: db_operations.php:461 tbl_operations.php:527 tbl_tracking.php:387 +#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Sadece quruluş" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:389 +#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Quruluş ve me'lumat" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:388 +#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Sadece me'lumat" -#: db_operations.php:471 +#: db_operations.php:407 msgid "CREATE DATABASE before copying" msgstr "" -#: db_operations.php:474 libraries/export/sql.php:51 +#: db_operations.php:410 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 -#: libraries/export/sql.php:81 tbl_operations.php:535 +#: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "" -#: db_operations.php:478 libraries/export/sql.php:77 tbl_operations.php:298 -#: tbl_operations.php:537 +#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT deyeri elave et" -#: db_operations.php:482 tbl_operations.php:544 +#: db_operations.php:418 tbl_operations.php:542 msgid "Add constraints" msgstr "" -#: db_operations.php:495 +#: db_operations.php:431 #, fuzzy msgid "Switch to copied database" msgstr "Kopyalanmış cedvele keç" -#: db_operations.php:536 -msgid "BLOB Repository" -msgstr "" - -#: db_operations.php:539 db_tracking.php:75 libraries/common.lib.php:1357 -#: libraries/server_links.inc.php:48 server_processlist.php:58 -#: tbl_tracking.php:595 test/theme.php:100 -msgid "Status" -msgstr "Status" - -#: db_operations.php:547 -#, fuzzy -#| msgid "Enabled" -msgctxt "BLOB repository" -msgid "Enabled" -msgstr "Enabled" - -#: db_operations.php:551 -#, fuzzy -msgid "Disable" -msgstr "Söndürülüb" - -#: db_operations.php:561 -msgid "Damaged" -msgstr "" - -#: db_operations.php:565 -#, fuzzy -msgctxt "BLOB repository" -msgid "Repair" -msgstr "Cedveli te'mir et" - -#: db_operations.php:573 -#, fuzzy -#| msgid "Disabled" -msgctxt "BLOB repository" -msgid "Disabled" -msgstr "Söndürülüb" - -#: db_operations.php:577 -#, fuzzy -msgid "Enable" -msgstr "Enabled" - -#: db_operations.php:601 libraries/Index.class.php:447 +#: db_operations.php:451 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 -#: server_collations.php:53 server_collations.php:65 server_databases.php:110 -#: tbl_operations.php:362 tbl_select.php:135 tbl_structure.php:178 -#: tbl_structure.php:766 tbl_tracking.php:274 tbl_tracking.php:325 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 +#: server_collations.php:53 server_collations.php:65 server_databases.php:108 +#: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:177 +#: tbl_structure.php:764 tbl_tracking.php:269 tbl_tracking.php:320 #, fuzzy msgid "Collation" msgstr "Quruluş" -#: db_operations.php:614 main.php:315 pdf_schema.php:33 -#, php-format +#: db_operations.php:464 pdf_schema.php:32 +#, fuzzy, php-format +#| msgid "" +#| "The additional features for working with linked tables have been " +#| "deactivated. To find out why click %shere%s." msgid "" -"The additional features for working with linked tables have been " -"deactivated. To find out why click %shere%s." +"The phpMyAdmin configuration storage has been deactivated. To find out why " +"click %shere%s." msgstr "" "Elaqelendirilmiş cedveller üçün nezerde tutulmuş be'zi xüsusiyyetler " "passivleşdirilmişdir. Sebebini aydınlaşdırmaq üçün %sbax%s." -#: db_operations.php:647 +#: db_operations.php:497 msgid "Edit PDF Pages" msgstr "PDF Sehifelerini Deyişdir" -#: db_printview.php:103 db_tracking.php:71 db_tracking.php:156 +#: db_printview.php:102 db_tracking.php:67 db_tracking.php:152 #: libraries/db_structure.lib.php:37 libraries/export/xml.php:327 -#: libraries/header.inc.php:125 pdf_pages.php:423 server_privileges.php:1657 -#: server_privileges.php:1713 server_privileges.php:1977 -#: server_synchronize.php:422 server_synchronize.php:865 tbl_tracking.php:591 +#: libraries/header.inc.php:125 pdf_pages.php:422 server_privileges.php:1661 +#: server_privileges.php:1717 server_privileges.php:1981 +#: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "Cedvel" -#: db_printview.php:104 libraries/db_structure.lib.php:47 +#: db_printview.php:103 libraries/db_structure.lib.php:47 #: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 -#: navigation.php:629 navigation.php:651 server_databases.php:121 -#: tbl_printview.php:392 tbl_structure.php:364 tbl_structure.php:776 +#: navigation.php:628 navigation.php:650 server_databases.php:119 +#: tbl_printview.php:391 tbl_structure.php:362 tbl_structure.php:774 msgid "Rows" msgstr "Sıra sayı" -#: db_printview.php:108 libraries/db_structure.lib.php:58 tbl_indexes.php:189 +#: db_printview.php:107 libraries/db_structure.lib.php:58 tbl_indexes.php:188 msgid "Size" msgstr "Boy" -#: db_printview.php:161 db_structure.php:456 libraries/export/sql.php:556 +#: db_printview.php:160 db_structure.php:442 libraries/export/sql.php:556 #: libraries/export/sql.php:896 msgid "in use" msgstr "istifadede" -#: db_printview.php:186 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:511 pdf_schema.php:1240 tbl_printview.php:432 -#: tbl_structure.php:808 +#: db_printview.php:185 libraries/db_info.inc.php:86 +#: libraries/export/sql.php:511 pdf_schema.php:1239 tbl_printview.php:431 +#: tbl_structure.php:806 msgid "Creation" msgstr "Quruluş" -#: db_printview.php:195 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:516 pdf_schema.php:1245 tbl_printview.php:442 -#: tbl_structure.php:816 +#: db_printview.php:194 libraries/db_info.inc.php:91 +#: libraries/export/sql.php:516 pdf_schema.php:1244 tbl_printview.php:441 +#: tbl_structure.php:814 msgid "Last update" msgstr "En son yenilenme" -#: db_printview.php:204 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:521 pdf_schema.php:1250 tbl_printview.php:452 -#: tbl_structure.php:824 +#: db_printview.php:203 libraries/db_info.inc.php:96 +#: libraries/export/sql.php:521 pdf_schema.php:1249 tbl_printview.php:451 +#: tbl_structure.php:822 msgid "Last check" msgstr "En son yoxlama" -#: db_printview.php:221 db_structure.php:479 +#: db_printview.php:220 db_structure.php:465 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -394,94 +365,94 @@ msgid_plural "%s tables" msgstr[0] "%s cedvel" msgstr[1] "%s cedvel" -#: db_qbe.php:28 import.php:453 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1980 libraries/sql_query_form.lib.php:138 -#: tbl_operations.php:212 tbl_relation.php:291 tbl_row_action.php:130 -#: view_operations.php:61 +#: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 +#: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "SQL sorğunuz müveffeqiyyetle icra edilmişdir" -#: db_qbe.php:41 +#: db_qbe.php:38 msgid "You have to choose at least one column to display" msgstr "Gösterilmesi üçün en az bir sütun seçmelisiniz" -#: db_qbe.php:199 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:865 +#: db_qbe.php:196 libraries/db_structure.lib.php:95 +#: libraries/display_tbl.lib.php:864 msgid "Sort" msgstr "Sırala" -#: db_qbe.php:208 db_qbe.php:242 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:522 libraries/display_tbl.lib.php:827 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:259 -#: tbl_select.php:311 +#: db_qbe.php:205 db_qbe.php:239 libraries/db_structure.lib.php:102 +#: libraries/display_tbl.lib.php:521 libraries/display_tbl.lib.php:826 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:257 +#: tbl_select.php:310 msgid "Ascending" msgstr "Artan sırada" -#: db_qbe.php:209 db_qbe.php:250 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:527 libraries/display_tbl.lib.php:824 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:260 -#: tbl_select.php:312 +#: db_qbe.php:206 db_qbe.php:247 libraries/db_structure.lib.php:110 +#: libraries/display_tbl.lib.php:526 libraries/display_tbl.lib.php:823 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:258 +#: tbl_select.php:311 msgid "Descending" msgstr "Azalan sırada" -#: db_qbe.php:263 db_tracking.php:77 libraries/display_tbl.lib.php:307 -#: tbl_change.php:275 tbl_tracking.php:596 +#: db_qbe.php:260 db_tracking.php:73 libraries/display_tbl.lib.php:306 +#: tbl_change.php:270 tbl_tracking.php:591 msgid "Show" msgstr "Göster" -#: db_qbe.php:299 +#: db_qbe.php:296 msgid "Criteria" msgstr "Kriteriyalar" -#: db_qbe.php:352 db_qbe.php:434 db_qbe.php:526 db_qbe.php:557 +#: db_qbe.php:349 db_qbe.php:431 db_qbe.php:523 db_qbe.php:554 msgid "Ins" msgstr "Ins" -#: db_qbe.php:356 db_qbe.php:438 db_qbe.php:523 db_qbe.php:554 +#: db_qbe.php:353 db_qbe.php:435 db_qbe.php:520 db_qbe.php:551 msgid "And" msgstr "Ve" -#: db_qbe.php:365 db_qbe.php:446 db_qbe.php:528 db_qbe.php:559 +#: db_qbe.php:362 db_qbe.php:443 db_qbe.php:525 db_qbe.php:556 msgid "Del" msgstr "Del" -#: db_qbe.php:369 db_qbe.php:450 db_qbe.php:521 db_qbe.php:552 -#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:778 -#: server_privileges.php:297 tbl_change.php:1027 tbl_indexes.php:249 -#: tbl_select.php:285 +#: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 +#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:777 +#: server_privileges.php:296 tbl_change.php:925 tbl_indexes.php:248 +#: tbl_select.php:284 msgid "Or" msgstr "ya da" -#: db_qbe.php:506 +#: db_qbe.php:503 msgid "Modify" msgstr "Modify" -#: db_qbe.php:583 +#: db_qbe.php:580 #, fuzzy #| msgid "Add/Delete Criteria Row" msgid "Add/Delete criteria rows" msgstr "Kriteria Setirlerini Elave Et/Sil" -#: db_qbe.php:595 +#: db_qbe.php:592 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Add/Delete columns" msgstr "Sahe Sütunlarını Elave Et/Sil" -#: db_qbe.php:608 db_qbe.php:633 +#: db_qbe.php:605 db_qbe.php:630 msgid "Update Query" msgstr "Sorğunu Yenile" -#: db_qbe.php:616 +#: db_qbe.php:613 msgid "Use Tables" msgstr "Use Tables" -#: db_qbe.php:639 +#: db_qbe.php:636 #, php-format msgid "SQL query on database %s:" msgstr "SQL-query on database %s:" -#: db_qbe.php:933 libraries/common.lib.php:1222 +#: db_qbe.php:930 libraries/common.lib.php:1215 msgid "Submit Query" msgstr "Emri İcra Et" @@ -521,17 +492,17 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s uyğunluq tapıldı (%s cedvelinde)" msgstr[1] "%s uyğunluq tapıldı (%s cedvelinde)" -#: db_search.php:249 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2831 -#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:49 -#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:466 +#: db_search.php:249 db_structure.php:75 db_structure.php:76 +#: db_structure.php:88 db_structure.php:90 db_structure.php:101 +#: db_structure.php:103 libraries/common.lib.php:2836 +#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 +#: tbl_structure.php:35 tbl_structure.php:47 tbl_structure.php:464 msgid "Browse" msgstr "İçindekiler" -#: db_search.php:254 libraries/display_tbl.lib.php:1164 -#: libraries/display_tbl.lib.php:2055 libraries/sql_query_form.lib.php:453 -#: pdf_pages.php:285 pdf_pages.php:424 pdf_pages.php:460 pdf_pages.php:488 +#: db_search.php:254 libraries/display_tbl.lib.php:1163 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 msgid "Delete" @@ -571,231 +542,237 @@ msgstr "Inside table(s):" msgid "Inside column:" msgstr "Inside table(s):" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2830 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:75 +#: db_structure.php:79 db_structure.php:80 db_structure.php:92 +#: db_structure.php:93 db_structure.php:105 db_structure.php:106 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 +#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Elave et" -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2827 libraries/common.lib.php:2834 -#: libraries/db_links.inc.php:62 libraries/export/htmlword.php:22 +#: db_structure.php:81 db_structure.php:94 db_structure.php:107 +#: libraries/common.lib.php:2832 libraries/common.lib.php:2839 +#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 -#: libraries/tbl_links.inc.php:55 pmd_general.php:133 -#: server_privileges.php:593 server_replication.php:314 tbl_tracking.php:268 +#: libraries/tbl_links.inc.php:54 pmd_general.php:133 +#: server_privileges.php:592 server_replication.php:313 tbl_tracking.php:263 msgid "Structure" msgstr "Quruluş" -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:544 db_structure.php:545 db_tracking.php:90 -#: libraries/Index.class.php:482 libraries/common.lib.php:1659 -#: libraries/db_links.inc.php:99 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:126 -#: server_databases.php:351 tbl_structure.php:26 tbl_structure.php:150 -#: tbl_structure.php:151 tbl_structure.php:470 +#: db_structure.php:82 db_structure.php:83 db_structure.php:95 +#: db_structure.php:96 db_structure.php:108 db_structure.php:109 +#: db_structure.php:530 db_structure.php:531 db_tracking.php:86 +#: libraries/Index.class.php:482 libraries/common.lib.php:1663 +#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 +#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 +#: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" msgstr "Leğv et" -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:542 db_structure.php:543 libraries/common.lib.php:1658 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:104 +#: db_structure.php:84 db_structure.php:85 db_structure.php:97 +#: db_structure.php:98 db_structure.php:110 db_structure.php:111 +#: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 +#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 msgid "Empty" msgstr "Boşalt" -#: db_structure.php:315 libraries/tbl_links.inc.php:99 +#: db_structure.php:301 libraries/tbl_links.inc.php:98 #, php-format msgid "Table %s has been emptied" msgstr "%s cedveli boşaldıldı" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, fuzzy, php-format msgid "View %s has been dropped" msgstr "%s sahesi leğv edildi" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "Table %s has been dropped" msgstr "%s cedveli leğv edildi" -#: db_structure.php:332 +#: db_structure.php:318 msgid "Tracking is active." msgstr "" -#: db_structure.php:334 +#: db_structure.php:320 msgid "Tracking is not active." msgstr "" -#: db_structure.php:419 libraries/display_tbl.lib.php:1943 +#: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -#: db_structure.php:433 db_structure.php:447 libraries/header.inc.php:125 -#: libraries/tbl_info.inc.php:65 tbl_structure.php:184 test/theme.php:73 +#: db_structure.php:419 db_structure.php:433 libraries/header.inc.php:125 +#: libraries/tbl_info.inc.php:60 tbl_structure.php:183 test/theme.php:73 msgid "View" msgstr "" -#: db_structure.php:484 libraries/db_structure.lib.php:40 -#: libraries/server_links.inc.php:69 server_replication.php:32 -#: server_replication.php:163 server_status.php:368 +#: db_structure.php:470 libraries/db_structure.lib.php:40 +#: libraries/server_links.inc.php:69 server_replication.php:31 +#: server_replication.php:162 server_status.php:368 #, fuzzy msgid "Replication" msgstr "Relations" -#: db_structure.php:488 +#: db_structure.php:474 msgid "Sum" msgstr "Cemi" -#: db_structure.php:495 libraries/StorageEngine.class.php:349 +#: db_structure.php:481 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s bu MySQL serverinde esas depolama motoru olaraq qurulmuşdur." -#: db_structure.php:523 db_structure.php:540 db_structure.php:541 -#: libraries/display_tbl.lib.php:2080 libraries/display_tbl.lib.php:2085 -#: libraries/mult_submits.inc.php:15 server_databases.php:345 -#: server_databases.php:350 server_privileges.php:1588 tbl_structure.php:454 -#: tbl_structure.php:463 +#: db_structure.php:509 db_structure.php:526 db_structure.php:527 +#: libraries/display_tbl.lib.php:2039 libraries/display_tbl.lib.php:2044 +#: libraries/mult_submits.inc.php:15 server_databases.php:343 +#: server_databases.php:348 server_privileges.php:1592 tbl_structure.php:452 +#: tbl_structure.php:461 msgid "With selected:" msgstr "Seçilenleri:" -#: db_structure.php:526 libraries/display_tbl.lib.php:2075 -#: server_databases.php:347 server_privileges.php:569 -#: server_privileges.php:1591 tbl_structure.php:457 +#: db_structure.php:512 libraries/display_tbl.lib.php:2034 +#: server_databases.php:345 server_privileges.php:568 +#: server_privileges.php:1595 tbl_structure.php:455 msgid "Check All" msgstr "Hamısını Seç" -#: db_structure.php:530 libraries/display_tbl.lib.php:2076 -#: libraries/replication_gui.lib.php:35 server_databases.php:349 -#: server_privileges.php:572 server_privileges.php:1595 tbl_structure.php:461 +#: db_structure.php:516 libraries/display_tbl.lib.php:2035 +#: libraries/replication_gui.lib.php:35 server_databases.php:347 +#: server_privileges.php:571 server_privileges.php:1599 tbl_structure.php:459 msgid "Uncheck All" msgstr "Heç Birini Seçme" -#: db_structure.php:535 +#: db_structure.php:521 msgid "Check tables having overhead" msgstr "" -#: db_structure.php:546 db_structure.php:547 db_structure.php:598 -#: libraries/display_tbl.lib.php:2179 libraries/mult_submits.inc.php:27 -#: tbl_structure.php:491 tbl_structure.php:493 +#: db_structure.php:532 db_structure.php:533 db_structure.php:584 +#: libraries/display_tbl.lib.php:2138 libraries/mult_submits.inc.php:27 +#: tbl_structure.php:489 tbl_structure.php:491 msgid "Print view" msgstr "Çap görüntüsü" -#: db_structure.php:548 db_structure.php:549 libraries/mult_submits.inc.php:41 -#: tbl_operations.php:580 +#: db_structure.php:534 db_structure.php:535 libraries/mult_submits.inc.php:41 +#: tbl_operations.php:578 msgid "Check table" msgstr "Cedveli yoxla" -#: db_structure.php:550 db_structure.php:551 libraries/mult_submits.inc.php:46 -#: tbl_operations.php:620 tbl_structure.php:708 tbl_structure.php:710 +#: db_structure.php:536 db_structure.php:537 libraries/mult_submits.inc.php:46 +#: tbl_operations.php:618 tbl_structure.php:706 tbl_structure.php:708 msgid "Optimize table" msgstr "Cedveli optimallaşdır" -#: db_structure.php:552 db_structure.php:553 libraries/mult_submits.inc.php:51 -#: tbl_operations.php:610 +#: db_structure.php:538 db_structure.php:539 libraries/mult_submits.inc.php:51 +#: tbl_operations.php:608 msgid "Repair table" msgstr "Cedveli te'mir et" -#: db_structure.php:554 db_structure.php:555 libraries/mult_submits.inc.php:56 -#: tbl_operations.php:600 +#: db_structure.php:540 db_structure.php:541 libraries/mult_submits.inc.php:56 +#: tbl_operations.php:598 msgid "Analyze table" msgstr "Cedveli analiz et" -#: db_structure.php:556 db_structure.php:557 libraries/db_links.inc.php:70 -#: libraries/display_export.lib.php:82 libraries/display_tbl.lib.php:2093 -#: libraries/display_tbl.lib.php:2224 libraries/mult_submits.inc.php:61 -#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:81 -#: pmd_pdf.php:83 pmd_pdf.php:108 server_privileges.php:1372 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 +#: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 +#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 +#: pmd_pdf.php:81 pmd_pdf.php:106 server_privileges.php:1376 #: setup/frames/menu.inc.php:22 tbl_row_action.php:58 msgid "Export" msgstr "Eksport" -#: db_structure.php:605 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:591 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "Me'lumat lüğeti" -#: db_tracking.php:65 +#: db_tracking.php:61 msgid "Tracked tables" msgstr "" -#: db_tracking.php:70 libraries/export/htmlword.php:85 +#: db_tracking.php:66 libraries/export/htmlword.php:85 #: libraries/export/latex.php:152 libraries/export/odt.php:112 #: libraries/export/sql.php:339 libraries/export/texytext.php:84 #: libraries/export/xml.php:254 libraries/header.inc.php:105 -#: libraries/header_printview.inc.php:57 server_databases.php:168 -#: server_privileges.php:1652 server_privileges.php:1713 -#: server_privileges.php:1971 server_processlist.php:55 -#: server_synchronize.php:1178 server_synchronize.php:1182 -#: tbl_tracking.php:590 test/theme.php:64 +#: libraries/header_printview.inc.php:57 server_databases.php:166 +#: server_privileges.php:1656 server_privileges.php:1717 +#: server_privileges.php:1975 server_processlist.php:55 +#: server_synchronize.php:1177 server_synchronize.php:1181 +#: tbl_tracking.php:585 test/theme.php:64 msgid "Database" msgstr "Me'lumat Bazası" -#: db_tracking.php:72 +#: db_tracking.php:68 msgid "Last version" msgstr "" -#: db_tracking.php:73 tbl_tracking.php:593 +#: db_tracking.php:69 tbl_tracking.php:588 #, fuzzy msgid "Created" msgstr "Qur" -#: db_tracking.php:74 tbl_tracking.php:594 +#: db_tracking.php:70 tbl_tracking.php:589 msgid "Updated" msgstr "" -#: db_tracking.php:76 libraries/Index.class.php:439 -#: libraries/db_structure.lib.php:44 server_databases.php:202 -#: server_privileges.php:1534 server_privileges.php:1717 -#: server_privileges.php:2065 tbl_structure.php:186 +#: db_tracking.php:71 libraries/common.lib.php:1361 +#: libraries/server_links.inc.php:48 server_processlist.php:58 +#: tbl_tracking.php:590 test/theme.php:100 +msgid "Status" +msgstr "Status" + +#: db_tracking.php:72 libraries/Index.class.php:439 +#: libraries/db_structure.lib.php:44 server_databases.php:200 +#: server_privileges.php:1538 server_privileges.php:1721 +#: server_privileges.php:2069 tbl_structure.php:185 msgid "Action" msgstr "Fealiyyetler" -#: db_tracking.php:87 db_tracking.php:119 +#: db_tracking.php:83 db_tracking.php:115 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:105 tbl_tracking.php:547 tbl_tracking.php:605 -#: tbl_tracking.php:612 +#: db_tracking.php:101 tbl_tracking.php:542 tbl_tracking.php:600 +#: tbl_tracking.php:607 msgid "active" msgstr "" -#: db_tracking.php:107 tbl_tracking.php:549 tbl_tracking.php:607 -#: tbl_tracking.php:609 +#: db_tracking.php:103 tbl_tracking.php:544 tbl_tracking.php:602 +#: tbl_tracking.php:604 msgid "not active" msgstr "" -#: db_tracking.php:120 +#: db_tracking.php:116 #, fuzzy msgid "Versions" msgstr "Emeliyyatlar" -#: db_tracking.php:121 tbl_tracking.php:378 tbl_tracking.php:623 +#: db_tracking.php:117 tbl_tracking.php:373 tbl_tracking.php:618 msgid "Tracking report" msgstr "" -#: db_tracking.php:122 tbl_tracking.php:250 tbl_tracking.php:623 +#: db_tracking.php:118 tbl_tracking.php:245 tbl_tracking.php:618 #, fuzzy msgid "Structure snapshot" msgstr "Sadece quruluş" -#: db_tracking.php:151 +#: db_tracking.php:147 msgid "Untracked tables" msgstr "" -#: db_tracking.php:171 db_tracking.php:173 tbl_structure.php:527 -#: tbl_structure.php:529 +#: db_tracking.php:167 db_tracking.php:169 tbl_structure.php:525 +#: tbl_structure.php:527 #, fuzzy msgid "Track table" msgstr "Cedveli yoxla" -#: db_tracking.php:199 +#: db_tracking.php:195 #, fuzzy msgid "Database Log" msgstr "Me'lumat Bazası" @@ -804,12 +781,12 @@ msgstr "Me'lumat Bazası" msgid "Selected export type has to be saved in file!" msgstr "" -#: export.php:153 export.php:178 export.php:620 +#: export.php:152 export.php:177 export.php:615 #, php-format msgid "Insufficient space to save the file %s." msgstr "%s faylını saxlamaq üçün lazım olan yer çatışmır." -#: export.php:287 +#: export.php:286 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -817,93 +794,93 @@ msgstr "" "%s faylı serverda onsuz da mövcuddur, ya faylın adını deyişdir ya da üzerine " "yazma variantlarını." -#: export.php:291 export.php:295 +#: export.php:290 export.php:294 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Webserver-in %s faylını saxlama izni yoxdur." -#: export.php:622 +#: export.php:617 #, php-format msgid "Dump has been saved to file %s." msgstr "Sxem %s faylına qeyd edildi." -#: import.php:59 +#: 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." msgstr "" -#: import.php:278 import.php:331 libraries/File.class.php:840 -#: libraries/File.class.php:950 +#: import.php:277 import.php:330 libraries/File.class.php:566 +#: libraries/File.class.php:676 msgid "File could not be read" msgstr "Fayl oxuna bilmir" -#: import.php:286 import.php:295 import.php:314 import.php:323 -#: libraries/File.class.php:1020 libraries/File.class.php:1028 -#: libraries/File.class.php:1044 libraries/File.class.php:1052 +#: import.php:285 import.php:294 import.php:313 import.php:322 +#: libraries/File.class.php:746 libraries/File.class.php:754 +#: libraries/File.class.php:770 libraries/File.class.php:778 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." msgstr "" -#: import.php:336 +#: import.php:335 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " "[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." msgstr "" -#: import.php:371 libraries/display_import.lib.php:23 +#: import.php:370 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:396 +#: import.php:395 msgid "The bookmark has been deleted." msgstr "Bookmark silindi." -#: import.php:400 +#: import.php:399 msgid "Showing bookmark" msgstr "" -#: import.php:402 sql.php:625 +#: import.php:401 sql.php:618 #, php-format msgid "Bookmark %s created" msgstr "" -#: import.php:408 import.php:414 +#: import.php:407 import.php:413 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" -#: import.php:423 +#: import.php:422 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: import.php:425 +#: import.php:424 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." msgstr "" -#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:240 +#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:239 #: user_password.php:110 msgid "Back" msgstr "Geri" -#: index.php:188 +#: index.php:183 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" "phpMyAdmin frame-destekli görüntüleyicilerle (browser) daha yaxşı " "işleyir." -#: js/messages.php:25 server_synchronize.php:344 server_synchronize.php:356 -#: server_synchronize.php:372 server_synchronize.php:379 -#: server_synchronize.php:738 server_synchronize.php:766 -#: server_synchronize.php:794 server_synchronize.php:806 +#: js/messages.php:25 server_synchronize.php:343 server_synchronize.php:355 +#: server_synchronize.php:371 server_synchronize.php:378 +#: server_synchronize.php:737 server_synchronize.php:765 +#: server_synchronize.php:793 server_synchronize.php:805 msgid "Click to select" msgstr "" @@ -911,15 +888,15 @@ msgstr "" msgid "Click to unselect" msgstr "" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:88 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:87 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" ifadeleri söndürülmüşdür (disabled)." -#: js/messages.php:30 libraries/mult_submits.inc.php:257 sql.php:187 +#: js/messages.php:30 libraries/mult_submits.inc.php:256 sql.php:186 msgid "Do you really want to " msgstr "Aşağıdakı sorğunu icra etdirmekten eminsiniz " -#: js/messages.php:31 libraries/mult_submits.inc.php:257 sql.php:171 +#: js/messages.php:31 libraries/mult_submits.inc.php:256 sql.php:170 msgid "You are about to DESTROY a complete database!" msgstr "Bütün bazanı YOX ETMEK üzeresiniz!" @@ -948,11 +925,11 @@ msgstr "Host adı boşdur!" msgid "The user name is empty!" msgstr "İstifadeçi adı boş qaldı!" -#: js/messages.php:44 server_privileges.php:1228 user_password.php:65 +#: js/messages.php:44 server_privileges.php:1229 user_password.php:65 msgid "The password is empty!" msgstr "Parol boşdur!" -#: js/messages.php:45 server_privileges.php:1226 user_password.php:68 +#: js/messages.php:45 server_privileges.php:1227 user_password.php:68 msgid "The passwords aren't the same!" msgstr "Girdiyiniz parollar eyni deyil!" @@ -960,29 +937,29 @@ msgstr "Girdiyiniz parollar eyni deyil!" msgid "Cancel" msgstr "" -#: js/messages.php:52 pmd_save_pos.php:53 +#: js/messages.php:52 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "Modifications have been saved" -#: js/messages.php:53 pmd_relation_upd.php:48 +#: js/messages.php:53 pmd_relation_upd.php:47 #, fuzzy msgid "Relation deleted" msgstr "Relation view" -#: js/messages.php:54 pmd_relation_new.php:63 +#: js/messages.php:54 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:55 pmd_relation_new.php:85 +#: js/messages.php:55 pmd_relation_new.php:84 #, fuzzy msgid "Internal relation added" msgstr "Ümumi elaqe variantları" -#: js/messages.php:56 pmd_relation_new.php:62 pmd_relation_new.php:87 +#: js/messages.php:56 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:57 pmd_relation_new.php:30 +#: js/messages.php:57 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "" @@ -990,13 +967,13 @@ msgstr "" msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:59 libraries/relation.lib.php:94 -#: libraries/relation.lib.php:106 +#: js/messages.php:59 libraries/relation.lib.php:89 +#: libraries/relation.lib.php:101 msgid "General relation features" msgstr "Ümumi elaqe variantları" -#: js/messages.php:59 libraries/relation.lib.php:88 -#: libraries/relation.lib.php:95 +#: js/messages.php:59 libraries/relation.lib.php:83 +#: libraries/relation.lib.php:90 msgid "Disabled" msgstr "Söndürülüb" @@ -1012,7 +989,7 @@ msgstr "" msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:547 +#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" @@ -1044,10 +1021,10 @@ msgid "Prev" msgstr "Evvelki" #. l10n: Display text for next month link in calendar -#: js/messages.php:81 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:337 -#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:422 -#: tbl_structure.php:800 +#: js/messages.php:81 libraries/common.lib.php:2358 +#: libraries/common.lib.php:2361 libraries/display_tbl.lib.php:336 +#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 +#: tbl_structure.php:798 msgid "Next" msgstr "Sonrakı" @@ -1121,27 +1098,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1562 +#: js/messages.php:101 libraries/common.lib.php:1566 msgid "Jan" msgstr "Yan" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1564 +#: js/messages.php:103 libraries/common.lib.php:1568 msgid "Feb" msgstr "Fev" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1566 +#: js/messages.php:105 libraries/common.lib.php:1570 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1568 +#: js/messages.php:107 libraries/common.lib.php:1572 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1570 +#: js/messages.php:109 libraries/common.lib.php:1574 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1149,37 +1126,37 @@ msgid "May" msgstr "May" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1572 +#: js/messages.php:111 libraries/common.lib.php:1576 msgid "Jun" msgstr "İyun" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1574 +#: js/messages.php:113 libraries/common.lib.php:1578 msgid "Jul" msgstr "İyul" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1576 +#: js/messages.php:115 libraries/common.lib.php:1580 msgid "Aug" msgstr "Avq" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1578 +#: js/messages.php:117 libraries/common.lib.php:1582 msgid "Sep" msgstr "Sent" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1580 +#: js/messages.php:119 libraries/common.lib.php:1584 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:121 libraries/common.lib.php:1582 +#: js/messages.php:121 libraries/common.lib.php:1586 msgid "Nov" msgstr "Noy" #. l10n: Short month name -#: js/messages.php:123 libraries/common.lib.php:1584 +#: js/messages.php:123 libraries/common.lib.php:1588 msgid "Dec" msgstr "Dek" @@ -1220,37 +1197,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1587 +#: js/messages.php:136 libraries/common.lib.php:1591 msgid "Sun" msgstr "Baz" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1589 +#: js/messages.php:138 libraries/common.lib.php:1593 msgid "Mon" msgstr "Baz Ert" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1591 +#: js/messages.php:140 libraries/common.lib.php:1595 msgid "Tue" msgstr "Çerş Axş" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1593 +#: js/messages.php:142 libraries/common.lib.php:1597 msgid "Wed" msgstr "Çerş" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1595 +#: js/messages.php:144 libraries/common.lib.php:1599 msgid "Thu" msgstr "Cüme Axş" #. l10n: Short week day name -#: js/messages.php:146 libraries/common.lib.php:1597 +#: js/messages.php:146 libraries/common.lib.php:1601 msgid "Fri" msgstr "Cüme" #. l10n: Short week day name -#: js/messages.php:148 libraries/common.lib.php:1599 +#: js/messages.php:148 libraries/common.lib.php:1603 msgid "Sat" msgstr "Şen" @@ -1328,75 +1305,74 @@ msgstr "saniyede" msgid "Font size" msgstr "" -#: libraries/File.class.php:336 libraries/File.class.php:424 -#: libraries/File.class.php:561 libraries/File.class.php:700 -msgid "Unknown error in file upload." -msgstr "" - -#: libraries/File.class.php:406 +#: libraries/File.class.php:315 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:409 +#: libraries/File.class.php:318 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:412 +#: libraries/File.class.php:321 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:415 +#: libraries/File.class.php:324 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:418 +#: libraries/File.class.php:327 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:421 +#: libraries/File.class.php:330 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:898 +#: libraries/File.class.php:333 +msgid "Unknown error in file upload." +msgstr "" + +#: libraries/File.class.php:624 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "" -#: libraries/Index.class.php:427 tbl_relation.php:528 +#: libraries/Index.class.php:427 tbl_relation.php:526 msgid "No index defined!" msgstr "İndeks te'yin edilmedi!" -#: libraries/Index.class.php:432 server_databases.php:131 tbl_tracking.php:315 +#: libraries/Index.class.php:432 server_databases.php:129 tbl_tracking.php:310 msgid "Indexes" msgstr "Indeksler" #: libraries/Index.class.php:443 libraries/mult_submits.inc.php:102 -#: libraries/tbl_properties.inc.php:518 tbl_structure.php:32 -#: tbl_structure.php:154 tbl_structure.php:158 tbl_structure.php:473 -#: tbl_tracking.php:321 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:31 +#: tbl_structure.php:153 tbl_structure.php:157 tbl_structure.php:471 +#: tbl_tracking.php:316 msgid "Unique" msgstr "Unikal" -#: libraries/Index.class.php:444 tbl_tracking.php:322 +#: libraries/Index.class.php:444 tbl_tracking.php:317 msgid "Packed" msgstr "" -#: libraries/Index.class.php:446 tbl_tracking.php:324 +#: libraries/Index.class.php:446 tbl_tracking.php:319 msgid "Cardinality" msgstr "Cardinality" -#: libraries/Index.class.php:449 tbl_tracking.php:278 tbl_tracking.php:327 +#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322 #, fuzzy msgid "Comment" msgstr "Qısa İzahatlar" #: libraries/Index.class.php:465 libraries/common.lib.php:609 -#: libraries/common.lib.php:1198 libraries/display_tbl.lib.php:1116 +#: libraries/common.lib.php:1191 libraries/display_tbl.lib.php:1115 #: libraries/import.lib.php:1119 libraries/import.lib.php:1143 -#: pdf_pages.php:284 setup/frames/index.inc.php:124 +#: pdf_pages.php:283 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:349 tbl_row_action.php:68 msgid "Edit" msgstr "Deyişdir" @@ -1418,15 +1394,15 @@ msgid "" msgstr "" #: libraries/List_Database.class.php:430 libraries/server_links.inc.php:40 -#: server_databases.php:87 server_privileges.php:1652 +#: server_databases.php:85 server_privileges.php:1656 #: setup/lib/messages.inc.php:107 test/theme.php:92 msgid "Databases" msgstr "Me'lumat Bazaları" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:259 libraries/import.lib.php:134 pdf_schema.php:31 -#: pdf_schema.php:231 tbl_change.php:1023 tbl_operations.php:212 -#: tbl_relation.php:289 view_operations.php:61 +#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 +#: tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Xeta" @@ -1451,40 +1427,40 @@ msgid_plural "%1$d rows inserted." msgstr[0] "" msgstr[1] "" -#: libraries/StorageEngine.class.php:196 +#: libraries/StorageEngine.class.php:194 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:352 +#: libraries/StorageEngine.class.php:354 #, 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:355 +#: libraries/StorageEngine.class.php:357 #, 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:359 +#: libraries/StorageEngine.class.php:361 #, 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:1018 +#: libraries/Table.class.php:1017 msgid "Invalid database" msgstr "" -#: libraries/Table.class.php:1032 tbl_get_field.php:25 +#: libraries/Table.class.php:1031 tbl_get_field.php:25 msgid "Invalid table name" msgstr "" -#: libraries/Table.class.php:1047 +#: libraries/Table.class.php:1046 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "" -#: libraries/Table.class.php:1131 +#: libraries/Table.class.php:1129 #, php-format msgid "Table %s has been renamed to %s" msgstr "%s cedveli %s olaraq yeniden adlandırılmışdır" @@ -1502,22 +1478,22 @@ msgstr "" msgid "take it" msgstr "" -#: libraries/Theme_Manager.class.php:114 +#: libraries/Theme_Manager.class.php:109 #, php-format msgid "Default theme %s not found!" msgstr "" -#: libraries/Theme_Manager.class.php:152 +#: libraries/Theme_Manager.class.php:147 #, php-format msgid "Theme %s not found!" msgstr "" -#: libraries/Theme_Manager.class.php:220 +#: libraries/Theme_Manager.class.php:215 #, php-format msgid "Theme path not found for theme %s!" msgstr "" -#: libraries/Theme_Manager.class.php:296 test/theme.php:160 themes.php:20 +#: libraries/Theme_Manager.class.php:291 test/theme.php:160 themes.php:20 #: themes.php:40 msgid "Theme / Style" msgstr "" @@ -1625,19 +1601,19 @@ msgstr "" msgid "Authenticating..." msgstr "" -#: libraries/blobstreaming.lib.php:689 +#: libraries/blobstreaming.lib.php:340 msgid "View image" msgstr "" -#: libraries/blobstreaming.lib.php:693 +#: libraries/blobstreaming.lib.php:344 msgid "Play audio" msgstr "" -#: libraries/blobstreaming.lib.php:698 +#: libraries/blobstreaming.lib.php:349 msgid "View video" msgstr "" -#: libraries/blobstreaming.lib.php:702 +#: libraries/blobstreaming.lib.php:353 msgid "Download file" msgstr "" @@ -1690,7 +1666,7 @@ msgstr "Server" msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:909 +#: libraries/common.inc.php:908 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" @@ -1717,7 +1693,8 @@ msgstr "Gönderildi" #: libraries/common.lib.php:425 libraries/common.lib.php:427 #: libraries/common.lib.php:429 libraries/common.lib.php:445 #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 -#: libraries/display_export.lib.php:163 libraries/relation.lib.php:84 +#: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 +#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 #: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" @@ -1732,148 +1709,148 @@ msgstr "SQL sorğusu" msgid "MySQL said: " msgstr "MySQL deyir: " -#: libraries/common.lib.php:1136 +#: libraries/common.lib.php:1129 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1174 setup/lib/messages.inc.php:350 +#: libraries/common.lib.php:1167 setup/lib/messages.inc.php:350 msgid "Explain SQL" msgstr "SQL-i İzah Et" -#: libraries/common.lib.php:1177 +#: libraries/common.lib.php:1170 msgid "Skip Explain SQL" msgstr "SQL İzah Et-i Keç" -#: libraries/common.lib.php:1211 +#: libraries/common.lib.php:1204 msgid "Without PHP Code" msgstr "PHP Kodunu Gösterme" -#: libraries/common.lib.php:1214 setup/lib/messages.inc.php:352 +#: libraries/common.lib.php:1207 setup/lib/messages.inc.php:352 msgid "Create PHP Code" msgstr "PHP Kodunu Hazırla" -#: libraries/common.lib.php:1232 server_status.php:451 +#: libraries/common.lib.php:1225 server_status.php:451 #: setup/lib/messages.inc.php:351 msgid "Refresh" msgstr "" -#: libraries/common.lib.php:1241 +#: libraries/common.lib.php:1234 msgid "Skip Validate SQL" msgstr "SQL İfadesini Yoxlama" -#: libraries/common.lib.php:1244 setup/lib/messages.inc.php:353 +#: libraries/common.lib.php:1237 setup/lib/messages.inc.php:353 msgid "Validate SQL" msgstr "SQL Tesdiqle" -#: libraries/common.lib.php:1283 +#: libraries/common.lib.php:1287 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1285 +#: libraries/common.lib.php:1289 #, fuzzy #| msgid "Engines" msgid "Inline" msgstr "Motorlar" -#: libraries/common.lib.php:1339 libraries/common.lib.php:1354 +#: libraries/common.lib.php:1343 libraries/common.lib.php:1358 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1358 libraries/tbl_triggers.lib.php:27 +#: libraries/common.lib.php:1362 libraries/tbl_triggers.lib.php:27 #: server_processlist.php:57 msgid "Time" msgstr "Müddet" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "B" msgstr "Bayt" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "KiB" msgstr "KB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "MiB" msgstr "MB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "GiB" msgstr "QB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "TiB" msgstr "TB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "PiB" msgstr "PB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "EiB" msgstr "EB" #. l10n: Thousands separator -#: libraries/common.lib.php:1424 +#: libraries/common.lib.php:1428 msgid "," msgstr "," #. l10n: Decimal separator -#: libraries/common.lib.php:1426 +#: libraries/common.lib.php:1430 msgid "." msgstr "." #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1603 +#: libraries/common.lib.php:1607 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B, %Y saat %H:%M" -#: libraries/common.lib.php:1909 +#: libraries/common.lib.php:1913 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s gün, %s saat, %s deqiqe ve %s saniye" -#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 -#: libraries/display_tbl.lib.php:289 server_status.php:718 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 +#: libraries/display_tbl.lib.php:288 server_status.php:718 msgid "Begin" msgstr "Başla" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 -#: libraries/display_tbl.lib.php:290 server_binlog.php:154 +#: libraries/common.lib.php:2328 libraries/common.lib.php:2331 +#: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "Evvelki" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 -#: libraries/display_tbl.lib.php:352 +#: libraries/common.lib.php:2359 libraries/common.lib.php:2362 +#: libraries/display_tbl.lib.php:351 msgid "End" msgstr "Son" -#: libraries/common.lib.php:2429 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr ""%s" me'lumat bazasına keç." -#: libraries/common.lib.php:2448 +#: libraries/common.lib.php:2453 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2828 libraries/common.lib.php:2835 -#: libraries/db_links.inc.php:67 libraries/export/sql.php:24 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 +#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 -#: libraries/tbl_links.inc.php:59 querywindow.php:89 test/theme.php:96 +#: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2837 libraries/db_links.inc.php:103 -#: libraries/tbl_links.inc.php:94 libraries/tbl_links.inc.php:116 -#: view_operations.php:88 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: view_operations.php:87 msgid "Operations" msgstr "Emeliyyatlar" -#: libraries/core.lib.php:282 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1889,39 +1866,39 @@ msgstr "" msgid "Name" msgstr "Adı" -#: libraries/db_links.inc.php:44 +#: libraries/db_links.inc.php:43 #, php-format msgid "Database %s has been dropped." msgstr "%s bazası leğv edildi." -#: libraries/db_links.inc.php:56 libraries/db_links.inc.php:57 -#: libraries/db_links.inc.php:58 +#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 +#: libraries/db_links.inc.php:57 msgid "Database seems to be empty!" msgstr "" -#: libraries/db_links.inc.php:80 libraries/relation.lib.php:142 -#: libraries/tbl_links.inc.php:68 +#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:85 +#: libraries/db_links.inc.php:84 msgid "Query" msgstr "Sorğu" -#: libraries/db_links.inc.php:90 libraries/relation.lib.php:138 +#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:97 libraries/server_links.inc.php:87 -#: libraries/tbl_links.inc.php:90 pmd_pdf.php:83 pmd_pdf.php:109 +#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 #, fuzzy msgid "Import" msgstr "Eksport" -#: libraries/db_links.inc.php:110 libraries/server_links.inc.php:65 -#: server_privileges.php:111 server_privileges.php:1714 -#: server_privileges.php:2063 test/theme.php:116 +#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: server_privileges.php:110 server_privileges.php:1718 +#: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" msgstr "Selahiyyetler" @@ -1933,14 +1910,14 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1847 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1806 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "" -#: libraries/db_structure.lib.php:60 server_databases.php:141 -#: tbl_printview.php:334 tbl_structure.php:681 +#: libraries/db_structure.lib.php:60 server_databases.php:139 +#: tbl_printview.php:333 tbl_structure.php:679 msgid "Overhead" msgstr "Aşma deyeri" @@ -1957,7 +1934,7 @@ msgstr "" msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "" -#: libraries/dbi/mysql.dbi.lib.php:358 tbl_structure.php:607 +#: libraries/dbi/mysql.dbi.lib.php:358 tbl_structure.php:605 msgid "Details..." msgstr "" @@ -1967,22 +1944,22 @@ msgid "Change password" msgstr "Parolu Deyişdir" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:807 +#: libraries/replication_gui.lib.php:347 server_privileges.php:806 msgid "No Password" msgstr "Parol Yoxdur" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1530 server_synchronize.php:1174 +#: libraries/replication_gui.lib.php:351 server_privileges.php:795 +#: server_privileges.php:799 server_privileges.php:810 +#: server_privileges.php:1534 server_synchronize.php:1173 msgid "Password" msgstr "Parol" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:815 server_privileges.php:818 +#: server_privileges.php:814 server_privileges.php:817 msgid "Re-type" msgstr "Re-type" @@ -2003,8 +1980,8 @@ msgstr "Yeni me'lumat bazası qur" msgid "Create" msgstr "Qur" -#: libraries/display_create_database.lib.php:39 server_privileges.php:113 -#: server_privileges.php:1419 server_replication.php:34 +#: libraries/display_create_database.lib.php:39 server_privileges.php:112 +#: server_privileges.php:1423 server_replication.php:33 msgid "No Privileges" msgstr "Selahiyyet çatışmazlığı" @@ -2025,51 +2002,51 @@ msgstr "%s bazasında yeni cedvel qur" msgid "Number of columns" msgstr "Sehife başına düşen setir sayı" -#: libraries/display_export.lib.php:41 +#: libraries/display_export.lib.php:35 msgid "Could not load export plugins, please check your installation!" msgstr "" -#: libraries/display_export.lib.php:106 +#: libraries/display_export.lib.php:100 #, fuzzy, php-format #| msgid "Dump %s row(s) starting at record # %s" msgid "Dump %s row(s) starting at row # %s" msgstr "%s setri %s nömreli qeydden başlayaraq göster." -#: libraries/display_export.lib.php:114 +#: libraries/display_export.lib.php:108 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:124 setup/lib/messages.inc.php:79 +#: libraries/display_export.lib.php:118 setup/lib/messages.inc.php:79 msgid "Save as file" msgstr "Fayl olaraq qeyd et" -#: libraries/display_export.lib.php:133 +#: libraries/display_export.lib.php:127 #, php-format msgid "Save on server in %s directory" msgstr "Serverdeki %s direktoriyasına qeyd et" -#: libraries/display_export.lib.php:141 setup/lib/messages.inc.php:87 +#: libraries/display_export.lib.php:135 setup/lib/messages.inc.php:87 msgid "Overwrite existing file(s)" msgstr "Mövcud fayl(lar)ın üzerine yaz" -#: libraries/display_export.lib.php:147 +#: libraries/display_export.lib.php:141 msgid "File name template" msgstr "Fayl adı nomenklaturası" -#: libraries/display_export.lib.php:151 +#: libraries/display_export.lib.php:145 #, fuzzy msgid "server name" msgstr "İstifadeçi adı" -#: libraries/display_export.lib.php:154 +#: libraries/display_export.lib.php:148 msgid "database name" msgstr "" -#: libraries/display_export.lib.php:157 +#: libraries/display_export.lib.php:151 msgid "table name" msgstr "" -#: libraries/display_export.lib.php:161 +#: libraries/display_export.lib.php:155 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2077,39 +2054,39 @@ msgid "" "%3$s. Other text will be kept as is." msgstr "" -#: libraries/display_export.lib.php:202 +#: libraries/display_export.lib.php:196 msgid "remember template" msgstr "nomenklaturanı unutma" -#: libraries/display_export.lib.php:210 libraries/display_import.lib.php:177 +#: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 #: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 msgid "Character set of the file:" msgstr "Faylın Charset-i:" -#: libraries/display_export.lib.php:235 setup/lib/messages.inc.php:81 +#: libraries/display_export.lib.php:229 setup/lib/messages.inc.php:81 msgid "Compression" msgstr "Sıxışdırma" -#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:196 -#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:529 -#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:574 -#: server_privileges.php:1867 server_processlist.php:74 +#: libraries/display_export.lib.php:234 libraries/display_import.lib.php:196 +#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:528 +#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:573 +#: server_privileges.php:1871 server_processlist.php:74 msgid "None" msgstr "Heç biri" -#: libraries/display_export.lib.php:247 +#: libraries/display_export.lib.php:241 msgid "\"zipped\"" msgstr "\"zip\"lenmiş" -#: libraries/display_export.lib.php:253 +#: libraries/display_export.lib.php:247 msgid "\"gzipped\"" msgstr "\"gzip\"lenmiş" -#: libraries/display_export.lib.php:259 +#: libraries/display_export.lib.php:253 msgid "\"bzipped\"" msgstr "\"bzip\"lenmiş" -#: libraries/display_export.lib.php:274 libraries/export/sql.php:42 +#: libraries/display_export.lib.php:268 libraries/export/sql.php:42 #: libraries/import/sql.php:31 msgid "SQL compatibility mode" msgstr "" @@ -2144,12 +2121,12 @@ msgid "File uploads are not allowed on this server." msgstr "" #: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 -#: tbl_change.php:1024 +#: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "Upload işleri üçün te'yin etdiyiniz direktoriya tapılmadı" #: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 -#: tbl_change.php:1027 +#: tbl_change.php:925 msgid "web server upload directory" msgstr "web-server upload direktoriyası" @@ -2228,43 +2205,43 @@ msgstr "" msgid "Language" msgstr "" -#: libraries/display_tbl.lib.php:303 +#: libraries/display_tbl.lib.php:302 #, php-format msgid "%d is not valid row number." msgstr "" -#: libraries/display_tbl.lib.php:309 +#: libraries/display_tbl.lib.php:308 #, fuzzy #| msgid "row(s) starting from record #" msgid "row(s) starting from row #" msgstr "setri göster; başlangıç qeydiyyat nömresi" -#: libraries/display_tbl.lib.php:315 +#: libraries/display_tbl.lib.php:314 msgid "horizontal" msgstr "üfüqi" -#: libraries/display_tbl.lib.php:316 +#: libraries/display_tbl.lib.php:315 msgid "horizontal (rotated headers)" msgstr "üfüqi (tekrarlanan başlıqlar)" -#: libraries/display_tbl.lib.php:317 +#: libraries/display_tbl.lib.php:316 msgid "vertical" msgstr "şaquli" -#: libraries/display_tbl.lib.php:323 +#: libraries/display_tbl.lib.php:322 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "%s rejimde, başlıqlar %s blokdan bir tekrar ederek" -#: libraries/display_tbl.lib.php:345 +#: libraries/display_tbl.lib.php:344 msgid "This operation could take a long time. Proceed anyway?" msgstr "" -#: libraries/display_tbl.lib.php:511 +#: libraries/display_tbl.lib.php:510 msgid "Sort by key" msgstr "" -#: libraries/display_tbl.lib.php:554 libraries/export/codegen.php:38 +#: libraries/display_tbl.lib.php:553 libraries/export/codegen.php:38 #: libraries/export/csv.php:29 libraries/export/excel.php:34 #: libraries/export/htmlword.php:28 libraries/export/latex.php:32 #: libraries/export/mediawiki.php:21 libraries/export/ods.php:26 @@ -2274,101 +2251,101 @@ msgstr "" #: libraries/export/xlsx.php:26 libraries/export/xml.php:23 #: libraries/export/yaml.php:27 libraries/import.lib.php:1114 #: libraries/import.lib.php:1136 libraries/import/csv.php:31 -#: libraries/import/docsql.php:33 libraries/import/ldi.php:46 +#: libraries/import/docsql.php:32 libraries/import/ldi.php:46 #: libraries/import/ods.php:30 libraries/import/sql.php:19 #: libraries/import/xls.php:25 libraries/import/xlsx.php:25 -#: libraries/import/xml.php:25 tbl_select.php:264 tbl_structure.php:752 +#: libraries/import/xml.php:25 tbl_select.php:263 tbl_structure.php:750 #, fuzzy msgid "Options" msgstr "Emeliyyatlar" -#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:569 +#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:568 msgid "Partial Texts" msgstr "Qismi Metnler" -#: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:573 +#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:572 msgid "Full Texts" msgstr "Tam Metnler (Full Text)" -#: libraries/display_tbl.lib.php:586 +#: libraries/display_tbl.lib.php:585 #, fuzzy msgid "Relational key" msgstr "Relational schema" -#: libraries/display_tbl.lib.php:587 +#: libraries/display_tbl.lib.php:586 #, fuzzy #| msgid "Relational schema" msgid "Relational display column" msgstr "Relational schema" -#: libraries/display_tbl.lib.php:594 +#: libraries/display_tbl.lib.php:593 msgid "Show binary contents" msgstr "" -#: libraries/display_tbl.lib.php:596 +#: libraries/display_tbl.lib.php:595 msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:598 +#: libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "" -#: libraries/display_tbl.lib.php:606 pmd_general.php:140 tbl_change.php:312 -#: tbl_change.php:318 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:307 +#: tbl_change.php:313 msgid "Hide" msgstr "" -#: libraries/display_tbl.lib.php:606 libraries/relation.lib.php:122 -#: libraries/tbl_properties.inc.php:143 transformation_overview.php:46 +#: libraries/display_tbl.lib.php:605 libraries/relation.lib.php:117 +#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46 msgid "Browser transformation" msgstr "Browser transformation" -#: libraries/display_tbl.lib.php:1125 libraries/display_tbl.lib.php:1129 -#: libraries/display_tbl.lib.php:1131 +#: libraries/display_tbl.lib.php:1124 libraries/display_tbl.lib.php:1128 +#: libraries/display_tbl.lib.php:1130 msgid "Execute bookmarked query" msgstr "" -#: libraries/display_tbl.lib.php:1144 libraries/display_tbl.lib.php:1156 +#: libraries/display_tbl.lib.php:1143 libraries/display_tbl.lib.php:1155 msgid "The row has been deleted" msgstr "Setir silindi" -#: libraries/display_tbl.lib.php:1183 libraries/display_tbl.lib.php:2055 +#: libraries/display_tbl.lib.php:1182 libraries/display_tbl.lib.php:2014 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "Söndür" -#: libraries/display_tbl.lib.php:1933 +#: libraries/display_tbl.lib.php:1892 msgid "in query" msgstr "in query" -#: libraries/display_tbl.lib.php:1951 +#: libraries/display_tbl.lib.php:1910 msgid "Showing rows" msgstr "Gösterilen setirler" -#: libraries/display_tbl.lib.php:1961 +#: libraries/display_tbl.lib.php:1920 msgid "total" msgstr "cemi" -#: libraries/display_tbl.lib.php:1969 sql.php:523 +#: libraries/display_tbl.lib.php:1928 sql.php:522 #, php-format msgid "Query took %01.4f sec" msgstr "sorğu %01.4f saniyede icra edildi" -#: libraries/display_tbl.lib.php:2088 libraries/mult_submits.inc.php:112 -#: querywindow.php:115 querywindow.php:119 querywindow.php:122 -#: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:469 +#: libraries/display_tbl.lib.php:2047 libraries/mult_submits.inc.php:112 +#: querywindow.php:114 querywindow.php:118 querywindow.php:121 +#: tbl_structure.php:23 tbl_structure.php:148 tbl_structure.php:467 msgid "Change" msgstr "Deyişdir" -#: libraries/display_tbl.lib.php:2158 +#: libraries/display_tbl.lib.php:2117 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2186 +#: libraries/display_tbl.lib.php:2145 msgid "Print view (with full texts)" msgstr "" -#: libraries/display_tbl.lib.php:2359 +#: libraries/display_tbl.lib.php:2318 msgid "Link not found" msgstr "Link tapılmadı" @@ -2422,9 +2399,9 @@ msgstr "InnoDB Status" msgid "Buffer Pool Usage" msgstr "" -#: libraries/engines/innodb.lib.php:168 server_databases.php:136 -#: server_databases.php:304 server_status.php:524 server_status.php:585 -#: server_status.php:606 tbl_printview.php:349 tbl_structure.php:695 +#: libraries/engines/innodb.lib.php:168 server_databases.php:134 +#: server_databases.php:302 server_status.php:524 server_status.php:585 +#: server_status.php:606 tbl_printview.php:348 tbl_structure.php:693 msgid "Total" msgstr "Cemi" @@ -2547,6 +2524,78 @@ msgid "" "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." msgstr "" +#: libraries/engines/pbms.lib.php:31 +msgid "Garbage Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:32 +msgid "The percentage of garbage in a repository file before it is compacted." +msgstr "" + +#: libraries/engines/pbms.lib.php:36 libraries/replication_gui.lib.php:69 +#: server_synchronize.php:1161 +#, fuzzy +msgid "Port" +msgstr "Sırala" + +#: libraries/engines/pbms.lib.php:37 +msgid "" +"The port for the PBMS stream-based communications. Setting this value to 0 " +"will disable HTTP communication with the daemon." +msgstr "" + +#: libraries/engines/pbms.lib.php:41 +msgid "Repository Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:42 +msgid "" +"The maximum size of a BLOB repository file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:46 +msgid "Temp Blob Timeout" +msgstr "" + +#: libraries/engines/pbms.lib.php:47 +msgid "" +"The timeout, in seconds, for temporary BLOBs. Uploaded BLOB data is removed " +"after this time, unless they are referenced by a record in the database." +msgstr "" + +#: libraries/engines/pbms.lib.php:51 +msgid "Temp Log Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:52 +msgid "" +"The maximum size of a temporary BLOB log file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:56 +msgid "Max Keep Alive" +msgstr "" + +#: libraries/engines/pbms.lib.php:57 +msgid "" +"The timeout for inactive connection with the keep-alive flag set. After this " +"time the connection will be closed. The time-out is in milliseconds (1/1000)." +msgstr "" + +#: libraries/engines/pbms.lib.php:61 +msgid "Metadata Headers" +msgstr "" + +#: libraries/engines/pbms.lib.php:62 +msgid "" +"A \":\" delimited list of metadata headers to be used to initialize the " +"pbms_metadata_header table when a database is created." +msgstr "" + #: libraries/engines/pbxt.lib.php:22 msgid "Index cache size" msgstr "" @@ -2671,7 +2720,7 @@ msgid "" msgstr "" #: libraries/export/codegen.php:36 setup/lib/messages.inc.php:85 -#: tbl_printview.php:374 tbl_structure.php:736 +#: tbl_printview.php:373 tbl_structure.php:734 msgid "Format" msgstr "Format" @@ -2742,9 +2791,9 @@ msgstr "Microsoft Word 2000" #: libraries/export/htmlword.php:23 libraries/export/latex.php:59 #: libraries/export/latex.php:205 libraries/export/odt.php:47 #: libraries/export/sql.php:105 libraries/export/sql.php:865 -#: libraries/export/texytext.php:27 server_databases.php:126 -#: server_privileges.php:576 server_replication.php:315 tbl_printview.php:315 -#: tbl_structure.php:664 +#: libraries/export/texytext.php:27 server_databases.php:124 +#: server_privileges.php:575 server_replication.php:314 tbl_printview.php:314 +#: tbl_structure.php:662 msgid "Data" msgstr "Me'lumat" @@ -2793,13 +2842,13 @@ msgid "Label key" msgstr "Etiket açarı" #: libraries/export/latex.php:46 libraries/export/odt.php:34 -#: libraries/export/sql.php:90 tbl_relation.php:398 +#: libraries/export/sql.php:90 tbl_relation.php:396 msgid "Relations" msgstr "Relations" #: libraries/export/latex.php:52 libraries/export/odt.php:40 #: libraries/export/odt.php:317 libraries/export/sql.php:94 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "MIME-tipi" @@ -2807,10 +2856,10 @@ msgstr "MIME-tipi" #: libraries/export/xml.php:101 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1529 server_privileges.php:2061 -#: server_processlist.php:54 server_synchronize.php:1158 +#: libraries/replication_gui.lib.php:331 server_privileges.php:730 +#: server_privileges.php:733 server_privileges.php:789 +#: server_privileges.php:1533 server_privileges.php:2065 +#: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "Host" @@ -3004,8 +3053,8 @@ msgstr "" msgid "Export contents" msgstr "" -#: libraries/footer.inc.php:182 libraries/footer.inc.php:193 -#: libraries/footer.inc.php:196 +#: libraries/footer.inc.php:180 libraries/footer.inc.php:191 +#: libraries/footer.inc.php:194 msgid "Open new phpMyAdmin window" msgstr "" @@ -3022,7 +3071,7 @@ msgstr "SQL result" msgid "Generated by" msgstr "Qurucu" -#: libraries/import.lib.php:151 sql.php:519 tbl_change.php:180 +#: libraries/import.lib.php:151 sql.php:518 tbl_change.php:175 #: 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)." @@ -3080,7 +3129,7 @@ msgstr "" msgid "Column names in first row" msgstr "" -#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:501 +#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:500 #: view_create.php:147 msgid "Column names" msgstr "Sütun adları" @@ -3106,12 +3155,12 @@ msgstr "" msgid "Invalid column count in CSV input on line %d." msgstr "" -#: libraries/import/docsql.php:28 +#: libraries/import/docsql.php:27 msgid "DocSQL" msgstr "" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 -#: server_synchronize.php:427 server_synchronize.php:870 +#: libraries/import/docsql.php:30 libraries/tbl_properties.inc.php:616 +#: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "" @@ -3167,26 +3216,26 @@ msgstr "Heç biri" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:512 -#: tbl_structure.php:28 tbl_structure.php:152 tbl_structure.php:156 -#: tbl_structure.php:472 +#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:511 +#: tbl_structure.php:27 tbl_structure.php:151 tbl_structure.php:155 +#: tbl_structure.php:470 msgid "Primary" msgstr "Birinci Dereceli" #: libraries/mult_submits.inc.php:97 libraries/tbl_properties.inc.php:115 -#: libraries/tbl_properties.inc.php:524 tbl_printview.php:324 -#: tbl_structure.php:30 tbl_structure.php:153 tbl_structure.php:157 -#: tbl_structure.php:474 tbl_structure.php:672 +#: libraries/tbl_properties.inc.php:523 tbl_printview.php:323 +#: tbl_structure.php:29 tbl_structure.php:152 tbl_structure.php:156 +#: tbl_structure.php:472 tbl_structure.php:670 msgid "Index" msgstr "İndeks" -#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:530 -#: tbl_structure.php:34 tbl_structure.php:155 tbl_structure.php:159 -#: tbl_structure.php:477 +#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:529 +#: tbl_structure.php:33 tbl_structure.php:154 tbl_structure.php:158 +#: tbl_structure.php:475 msgid "Fulltext" msgstr "Tam metn (Fulltext)" -#: libraries/mult_submits.inc.php:434 tbl_replace.php:330 +#: libraries/mult_submits.inc.php:433 tbl_replace.php:330 msgid "No change" msgstr "Deyişiklik Yoxdur" @@ -3194,195 +3243,195 @@ msgstr "Deyişiklik Yoxdur" msgid "Charset" msgstr "Charset" -#: libraries/mysql_charsets.lib.php:210 libraries/mysql_charsets.lib.php:411 -#: tbl_change.php:515 +#: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 +#: tbl_change.php:510 msgid "Binary" msgstr "Binary" -#: libraries/mysql_charsets.lib.php:222 +#: libraries/mysql_charsets.lib.php:214 msgid "Bulgarian" msgstr "Bolqar Dili" -#: libraries/mysql_charsets.lib.php:226 libraries/mysql_charsets.lib.php:351 +#: libraries/mysql_charsets.lib.php:218 libraries/mysql_charsets.lib.php:343 msgid "Simplified Chinese" msgstr "" -#: libraries/mysql_charsets.lib.php:228 libraries/mysql_charsets.lib.php:371 +#: libraries/mysql_charsets.lib.php:220 libraries/mysql_charsets.lib.php:363 msgid "Traditional Chinese" msgstr "Enenevi Çin Dili" -#: libraries/mysql_charsets.lib.php:232 libraries/mysql_charsets.lib.php:418 +#: libraries/mysql_charsets.lib.php:224 libraries/mysql_charsets.lib.php:410 msgid "case-insensitive" msgstr "" -#: libraries/mysql_charsets.lib.php:235 libraries/mysql_charsets.lib.php:420 +#: libraries/mysql_charsets.lib.php:227 libraries/mysql_charsets.lib.php:412 msgid "case-sensitive" msgstr "" -#: libraries/mysql_charsets.lib.php:238 +#: libraries/mysql_charsets.lib.php:230 msgid "Croatian" msgstr "Xorvat Dili" -#: libraries/mysql_charsets.lib.php:241 +#: libraries/mysql_charsets.lib.php:233 msgid "Czech" msgstr "" -#: libraries/mysql_charsets.lib.php:244 +#: libraries/mysql_charsets.lib.php:236 msgid "Danish" msgstr "" -#: libraries/mysql_charsets.lib.php:247 +#: libraries/mysql_charsets.lib.php:239 msgid "English" msgstr "İngilis Dili" -#: libraries/mysql_charsets.lib.php:250 +#: libraries/mysql_charsets.lib.php:242 msgid "Esperanto" msgstr "" -#: libraries/mysql_charsets.lib.php:253 +#: libraries/mysql_charsets.lib.php:245 msgid "Estonian" msgstr "Eston Dili" -#: libraries/mysql_charsets.lib.php:256 libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:248 libraries/mysql_charsets.lib.php:251 #, fuzzy msgid "German" msgstr "Gürcü" -#: libraries/mysql_charsets.lib.php:256 +#: libraries/mysql_charsets.lib.php:248 #, fuzzy msgid "dictionary" msgstr "Me'lumat lüğeti" -#: libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:251 msgid "phone book" msgstr "" -#: libraries/mysql_charsets.lib.php:262 +#: libraries/mysql_charsets.lib.php:254 msgid "Hungarian" msgstr "Macar Dili" -#: libraries/mysql_charsets.lib.php:265 +#: libraries/mysql_charsets.lib.php:257 msgid "Icelandic" msgstr "" -#: libraries/mysql_charsets.lib.php:268 libraries/mysql_charsets.lib.php:358 +#: libraries/mysql_charsets.lib.php:260 libraries/mysql_charsets.lib.php:350 msgid "Japanese" msgstr "" -#: libraries/mysql_charsets.lib.php:271 +#: libraries/mysql_charsets.lib.php:263 msgid "Latvian" msgstr "" -#: libraries/mysql_charsets.lib.php:274 +#: libraries/mysql_charsets.lib.php:266 msgid "Lithuanian" msgstr "Litva Dili" -#: libraries/mysql_charsets.lib.php:277 libraries/mysql_charsets.lib.php:380 +#: libraries/mysql_charsets.lib.php:269 libraries/mysql_charsets.lib.php:372 msgid "Korean" msgstr "" -#: libraries/mysql_charsets.lib.php:280 +#: libraries/mysql_charsets.lib.php:272 #, fuzzy msgid "Persian" msgstr "Gürcü" -#: libraries/mysql_charsets.lib.php:283 +#: libraries/mysql_charsets.lib.php:275 msgid "Polish" msgstr "" -#: libraries/mysql_charsets.lib.php:286 libraries/mysql_charsets.lib.php:334 +#: libraries/mysql_charsets.lib.php:278 libraries/mysql_charsets.lib.php:326 msgid "West European" msgstr "Qerbi Avropa" -#: libraries/mysql_charsets.lib.php:289 +#: libraries/mysql_charsets.lib.php:281 #, fuzzy msgid "Romanian" msgstr "Ermeni" -#: libraries/mysql_charsets.lib.php:292 +#: libraries/mysql_charsets.lib.php:284 msgid "Slovak" msgstr "" -#: libraries/mysql_charsets.lib.php:295 +#: libraries/mysql_charsets.lib.php:287 msgid "Slovenian" msgstr "" -#: libraries/mysql_charsets.lib.php:298 +#: libraries/mysql_charsets.lib.php:290 msgid "Spanish" msgstr "" -#: libraries/mysql_charsets.lib.php:301 +#: libraries/mysql_charsets.lib.php:293 #, fuzzy msgid "Traditional Spanish" msgstr "Enenevi Çin Dili" -#: libraries/mysql_charsets.lib.php:304 libraries/mysql_charsets.lib.php:401 +#: libraries/mysql_charsets.lib.php:296 libraries/mysql_charsets.lib.php:393 msgid "Swedish" msgstr "" -#: libraries/mysql_charsets.lib.php:307 libraries/mysql_charsets.lib.php:404 +#: libraries/mysql_charsets.lib.php:299 libraries/mysql_charsets.lib.php:396 msgid "Thai" msgstr "" -#: libraries/mysql_charsets.lib.php:310 libraries/mysql_charsets.lib.php:398 +#: libraries/mysql_charsets.lib.php:302 libraries/mysql_charsets.lib.php:390 msgid "Turkish" msgstr "Türk Dili" -#: libraries/mysql_charsets.lib.php:313 libraries/mysql_charsets.lib.php:395 +#: libraries/mysql_charsets.lib.php:305 libraries/mysql_charsets.lib.php:387 msgid "Ukrainian" msgstr "Ukrayna Dili" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 msgid "Unicode" msgstr "" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 -#: libraries/mysql_charsets.lib.php:334 libraries/mysql_charsets.lib.php:341 -#: libraries/mysql_charsets.lib.php:363 libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 +#: libraries/mysql_charsets.lib.php:326 libraries/mysql_charsets.lib.php:333 +#: libraries/mysql_charsets.lib.php:355 libraries/mysql_charsets.lib.php:366 msgid "multilingual" msgstr "" -#: libraries/mysql_charsets.lib.php:341 +#: libraries/mysql_charsets.lib.php:333 msgid "Central European" msgstr "Merkezi Avropa" -#: libraries/mysql_charsets.lib.php:346 +#: libraries/mysql_charsets.lib.php:338 msgid "Russian" msgstr "" -#: libraries/mysql_charsets.lib.php:363 +#: libraries/mysql_charsets.lib.php:355 msgid "Baltic" msgstr "" -#: libraries/mysql_charsets.lib.php:368 +#: libraries/mysql_charsets.lib.php:360 msgid "Armenian" msgstr "Ermeni" -#: libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:366 msgid "Cyrillic" msgstr "Kiril" -#: libraries/mysql_charsets.lib.php:377 +#: libraries/mysql_charsets.lib.php:369 msgid "Arabic" msgstr "Ereb" -#: libraries/mysql_charsets.lib.php:383 +#: libraries/mysql_charsets.lib.php:375 msgid "Hebrew" msgstr "İbrani Dili" -#: libraries/mysql_charsets.lib.php:386 +#: libraries/mysql_charsets.lib.php:378 msgid "Georgian" msgstr "Gürcü" -#: libraries/mysql_charsets.lib.php:389 +#: libraries/mysql_charsets.lib.php:381 msgid "Greek" msgstr "" -#: libraries/mysql_charsets.lib.php:392 +#: libraries/mysql_charsets.lib.php:384 msgid "Czech-Slovak" msgstr "Çex-Slovak" -#: libraries/mysql_charsets.lib.php:407 libraries/mysql_charsets.lib.php:414 +#: libraries/mysql_charsets.lib.php:399 libraries/mysql_charsets.lib.php:406 msgid "unknown" msgstr "" @@ -3408,67 +3457,67 @@ msgstr "Sorğu penceresi" msgid "This format has no options" msgstr "Bu formatın variantları yoxdur" -#: libraries/relation.lib.php:82 +#: libraries/relation.lib.php:77 msgid "not OK" msgstr "Müveffeqiyyetsiz" -#: libraries/relation.lib.php:86 pmd_general.php:339 +#: libraries/relation.lib.php:81 pmd_general.php:339 msgid "OK" msgstr "Müveffeqiyyetle" -#: libraries/relation.lib.php:87 +#: libraries/relation.lib.php:82 msgid "Enabled" msgstr "Enabled" -#: libraries/relation.lib.php:110 +#: libraries/relation.lib.php:105 msgid "Display Features" msgstr "Xüsusiyyetleri Göster" -#: libraries/relation.lib.php:116 +#: libraries/relation.lib.php:111 msgid "Creation of PDFs" msgstr "PDF-lerin qurulması" -#: libraries/relation.lib.php:120 +#: libraries/relation.lib.php:115 msgid "Displaying Column Comments" msgstr "Sütun Qısa İzahatını Deyişdir" -#: libraries/relation.lib.php:125 +#: libraries/relation.lib.php:120 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "Please see Documentation on how to update your Column_comments Table" -#: libraries/relation.lib.php:130 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 msgid "Bookmarked SQL query" msgstr "Bookmark-lanmış SQL sorğusu" -#: libraries/relation.lib.php:134 querywindow.php:99 querywindow.php:207 +#: libraries/relation.lib.php:129 querywindow.php:98 querywindow.php:205 msgid "SQL history" msgstr "SQL-tarixçesi" -#: libraries/relation.lib.php:146 +#: libraries/relation.lib.php:141 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:148 +#: libraries/relation.lib.php:143 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" -#: libraries/relation.lib.php:149 +#: libraries/relation.lib.php:144 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:150 +#: libraries/relation.lib.php:145 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:151 +#: libraries/relation.lib.php:146 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1158 +#: libraries/relation.lib.php:1153 msgid "no description" msgstr "Haqqında me'lumat (description) mövcud deyildir" @@ -3476,7 +3525,7 @@ msgstr "Haqqında me'lumat (description) mövcud deyildir" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:53 server_replication.php:346 +#: libraries/replication_gui.lib.php:53 server_replication.php:345 msgid "Change or reconfigure master server" msgstr "" @@ -3488,17 +3537,12 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:711 -#: server_privileges.php:714 server_privileges.php:721 -#: server_synchronize.php:1170 +#: libraries/replication_gui.lib.php:261 server_privileges.php:710 +#: server_privileges.php:713 server_privileges.php:720 +#: server_synchronize.php:1169 msgid "User name" msgstr "İstifadeçi adı" -#: libraries/replication_gui.lib.php:69 server_synchronize.php:1162 -#, fuzzy -msgid "Port" -msgstr "Sırala" - #: libraries/replication_gui.lib.php:105 msgid "Master status" msgstr "" @@ -3513,8 +3557,8 @@ msgid "Variable" msgstr "Deyişen" #: libraries/replication_gui.lib.php:117 server_status.php:737 -#: tbl_change.php:322 tbl_printview.php:368 tbl_select.php:137 -#: tbl_structure.php:728 +#: tbl_change.php:317 tbl_printview.php:367 tbl_select.php:136 +#: tbl_structure.php:726 msgid "Value" msgstr "Deyer" @@ -3529,38 +3573,38 @@ msgid "" "this list." msgstr "" -#: libraries/replication_gui.lib.php:242 server_replication.php:193 +#: libraries/replication_gui.lib.php:242 server_replication.php:192 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:256 server_privileges.php:716 +#: libraries/replication_gui.lib.php:256 server_privileges.php:715 msgid "Any user" msgstr "Her hansı istifadeçi" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1920 server_privileges.php:1950 +#: libraries/replication_gui.lib.php:348 server_privileges.php:716 +#: server_privileges.php:783 server_privileges.php:807 +#: server_privileges.php:1924 server_privileges.php:1954 msgid "Use text field" msgstr "Use text field" -#: libraries/replication_gui.lib.php:304 server_privileges.php:764 +#: libraries/replication_gui.lib.php:304 server_privileges.php:763 msgid "Any host" msgstr "Her hansı host" -#: libraries/replication_gui.lib.php:308 server_privileges.php:768 +#: libraries/replication_gui.lib.php:308 server_privileges.php:767 msgid "Local" msgstr "Yerli" -#: libraries/replication_gui.lib.php:314 server_privileges.php:773 +#: libraries/replication_gui.lib.php:314 server_privileges.php:772 msgid "This Host" msgstr "Bu Host" -#: libraries/replication_gui.lib.php:320 server_privileges.php:779 +#: libraries/replication_gui.lib.php:320 server_privileges.php:778 msgid "Use Host Table" msgstr "Use Host Table" -#: libraries/replication_gui.lib.php:333 server_privileges.php:792 +#: libraries/replication_gui.lib.php:333 server_privileges.php:791 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3587,8 +3631,8 @@ msgstr "" msgid "Servers" msgstr "Server" -#: libraries/server_links.inc.php:52 server_engines.php:111 -#: server_engines.php:115 server_status.php:414 test/theme.php:104 +#: libraries/server_links.inc.php:52 server_engines.php:125 +#: server_engines.php:129 server_status.php:414 test/theme.php:104 msgid "Variables" msgstr "Deyişenler" @@ -3611,12 +3655,12 @@ msgstr "Binary" msgid "Processes" msgstr "Prosesler" -#: libraries/server_links.inc.php:91 server_synchronize.php:1091 -#: server_synchronize.php:1099 +#: libraries/server_links.inc.php:91 server_synchronize.php:1090 +#: server_synchronize.php:1098 msgid "Synchronize" msgstr "" -#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1109 +#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1108 #, fuzzy msgid "Source database" msgstr "Search in database" @@ -3635,7 +3679,7 @@ msgstr "" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1111 +#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1110 #, fuzzy msgid "Target database" msgstr "Search in database" @@ -3656,11 +3700,11 @@ msgstr "%s me'lumat bazasına SQL sorğusu(-ları) gönder" msgid "Columns" msgstr "Sütun adları" -#: libraries/sql_query_form.lib.php:342 sql.php:664 sql.php:665 sql.php:682 +#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "Bu SQL sorğusunu bookmark-la" -#: libraries/sql_query_form.lib.php:349 sql.php:676 +#: libraries/sql_query_form.lib.php:349 sql.php:669 msgid "Let every user access this bookmark" msgstr "" @@ -3755,12 +3799,12 @@ 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/tbl_links.inc.php:106 libraries/tbl_links.inc.php:139 -#: libraries/tbl_links.inc.php:140 +#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 +#: libraries/tbl_links.inc.php:139 msgid "Table seems to be empty!" msgstr "" -#: libraries/tbl_links.inc.php:148 +#: libraries/tbl_links.inc.php:147 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" @@ -3795,12 +3839,12 @@ msgstr "" "Başlanğıc deyer girerken, sadece deyeri girin, ters kesr escape-leme ya da " "dırnaqdan istifade etmeyin, bu formatı te'qib edin: a" -#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1263 -#: pdf_schema.php:1284 tbl_printview.php:142 tbl_structure.php:179 +#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1262 +#: pdf_schema.php:1283 tbl_printview.php:141 tbl_structure.php:178 msgid "Attributes" msgstr "Xüsusiyyetler" -#: libraries/tbl_properties.inc.php:136 +#: libraries/tbl_properties.inc.php:135 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -3809,11 +3853,11 @@ msgstr "" "For a list of available transformation options and their MIME-type " "transformations, click on %stransformation descriptions%s" -#: libraries/tbl_properties.inc.php:144 +#: libraries/tbl_properties.inc.php:143 msgid "Transformation options" msgstr "Transformasiya variantları" -#: libraries/tbl_properties.inc.php:145 +#: libraries/tbl_properties.inc.php:144 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
                            If you ever need to put a backslash (\"\\\") or a single " @@ -3825,18 +3869,18 @@ msgstr "" "quote (\"'\") amongst those values, backslashes it (for example '\\\\xyz' or " "'a\\'b')." -#: libraries/tbl_properties.inc.php:392 +#: libraries/tbl_properties.inc.php:391 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "Heç biri" -#: libraries/tbl_properties.inc.php:393 +#: libraries/tbl_properties.inc.php:392 msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:579 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:578 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
                            Please ask the " @@ -3845,28 +3889,28 @@ msgstr "" "No Description is available for this transformation.
                            Please ask the " "author, what %s does." -#: libraries/tbl_properties.inc.php:725 server_engines.php:57 -#: tbl_operations.php:354 +#: libraries/tbl_properties.inc.php:724 server_engines.php:56 +#: tbl_operations.php:352 msgid "Storage Engine" msgstr "Depolama Motorları" -#: libraries/tbl_properties.inc.php:754 +#: libraries/tbl_properties.inc.php:753 msgid "PARTITION definition" msgstr "" -#: libraries/tbl_properties.inc.php:775 pdf_pages.php:502 +#: libraries/tbl_properties.inc.php:774 pdf_pages.php:501 #: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214 -#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1124 tbl_indexes.php:247 -#: tbl_relation.php:565 +#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1022 tbl_indexes.php:246 +#: tbl_relation.php:563 msgid "Save" msgstr "Qeyd Et" -#: libraries/tbl_properties.inc.php:779 tbl_structure.php:541 +#: libraries/tbl_properties.inc.php:778 tbl_structure.php:539 #, fuzzy, php-format msgid "Add %s column(s)" msgstr "Yeni sahe elave et" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:535 +#: libraries/tbl_properties.inc.php:782 tbl_structure.php:533 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." @@ -4041,8 +4085,8 @@ msgstr "" msgid "Custom color" msgstr "" -#: main.php:162 pdf_pages.php:362 setup/lib/FormDisplay.tpl.php:216 -#: tbl_change.php:1173 +#: main.php:162 pdf_pages.php:361 setup/lib/FormDisplay.tpl.php:216 +#: tbl_change.php:1071 msgid "Reset" msgstr "Yenile" @@ -4050,8 +4094,8 @@ msgstr "Yenile" msgid "Protocol version" msgstr "" -#: main.php:188 server_privileges.php:1381 server_privileges.php:1528 -#: server_privileges.php:1642 server_privileges.php:2060 +#: main.php:188 server_privileges.php:1385 server_privileges.php:1532 +#: server_privileges.php:1646 server_privileges.php:2064 #: server_processlist.php:53 msgid "User" msgstr "İstifadeçi" @@ -4129,21 +4173,30 @@ msgid "" "has been configured." msgstr "" -#: main.php:330 +#: main.php:314 +#, php-format +msgid "" +"The additional features for working with linked tables have been " +"deactivated. To find out why click %shere%s." +msgstr "" +"Elaqelendirilmiş cedveller üçün nezerde tutulmuş be'zi xüsusiyyetler " +"passivleşdirilmişdir. Sebebini aydınlaşdırmaq üçün %sbax%s." + +#: main.php:329 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:345 +#: main.php:344 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: main.php:357 +#: main.php:356 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -4154,68 +4207,68 @@ msgstr "" msgid "Reload navigation frame" msgstr "" -#: navigation.php:204 server_databases.php:370 server_synchronize.php:1190 +#: navigation.php:203 server_databases.php:368 server_synchronize.php:1189 msgid "No databases" msgstr "Baza seçilmemişdir ve ya mövcud deyildir." -#: navigation.php:298 +#: navigation.php:297 msgid "Filter" msgstr "" -#: navigation.php:299 setup/frames/index.inc.php:218 +#: navigation.php:298 setup/frames/index.inc.php:218 #: setup/lib/messages.inc.php:41 msgid "Clear" msgstr "" -#: navigation.php:330 navigation.php:331 +#: navigation.php:329 navigation.php:330 #, fuzzy msgctxt "short form" msgid "Create table" msgstr "Yeni Sehife qur" -#: navigation.php:333 navigation.php:495 +#: navigation.php:332 navigation.php:494 msgid "Please select a database" msgstr "Me'lumat bazası seç" -#: pdf_pages.php:40 pdf_pages.php:46 pdf_pages.php:52 pdf_pages.php:57 +#: pdf_pages.php:39 pdf_pages.php:45 pdf_pages.php:51 pdf_pages.php:56 #, php-format msgid "%s table not found or not set in %s" msgstr "" "%s cedveli %s içerisinde ya tapılmadı ya da qurulmamışdır" -#: pdf_pages.php:265 +#: pdf_pages.php:264 msgid "Please choose a page to edit" msgstr "Xahiş edirem, deyişdirilecek Sehifeni seç" -#: pdf_pages.php:303 pmd_pdf.php:113 +#: pdf_pages.php:302 pmd_pdf.php:111 msgid "Create a page" msgstr "Yeni Sehife qur" -#: pdf_pages.php:309 +#: pdf_pages.php:308 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Sehife Nömresi:" -#: pdf_pages.php:313 +#: pdf_pages.php:312 #, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "Automatik şablon" -#: pdf_pages.php:315 +#: pdf_pages.php:314 msgid "Internal relations" msgstr "" -#: pdf_pages.php:338 +#: pdf_pages.php:337 msgid "Select Tables" msgstr "Select Tables" -#: pdf_pages.php:361 +#: pdf_pages.php:360 msgid "Toggle scratchboard" msgstr "" -#: pdf_pages.php:524 +#: pdf_pages.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -4223,37 +4276,37 @@ msgstr "" "Hal-hazırki sehifen artıq mövcud olmayan Cedvellere bağlıdır. Bu elaqelerin " "silinmesini istermisiniz?" -#: pdf_schema.php:635 +#: pdf_schema.php:634 #, fuzzy, php-format #| msgid "The \"%s\" table doesn't exist!" msgid "The %s table doesn't exist!" msgstr "\"%s\" cedveli mövcud deyil!" -#: pdf_schema.php:671 +#: pdf_schema.php:670 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Xahiş edirem, %s cedveli üçün koordinatları yeniden müeyyen et." -#: pdf_schema.php:994 +#: pdf_schema.php:993 #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" msgstr "\"%s\" bazanın sxemi - Sehife %s" -#: pdf_schema.php:1012 +#: pdf_schema.php:1011 msgid "No tables" msgstr "Cedvel yoxdur" -#: pdf_schema.php:1031 pdf_schema.php:1140 +#: pdf_schema.php:1030 pdf_schema.php:1139 msgid "Relational schema" msgstr "Relational schema" -#: pdf_schema.php:1115 +#: pdf_schema.php:1114 msgid "Table of contents" msgstr "İçindekiler Cedveli" -#: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:145 -#: tbl_structure.php:182 tbl_tracking.php:277 +#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 +#: tbl_structure.php:181 tbl_tracking.php:272 msgid "Extra" msgstr "Elave Xüs." @@ -4265,7 +4318,7 @@ msgstr "" msgid "Save position" msgstr "" -#: pmd_general.php:70 server_synchronize.php:428 server_synchronize.php:871 +#: pmd_general.php:70 server_synchronize.php:427 server_synchronize.php:870 #, fuzzy msgid "Create table" msgstr "Yeni Sehife qur" @@ -4338,32 +4391,32 @@ msgid "" "appropriate column name." msgstr "" -#: pmd_pdf.php:62 +#: pmd_pdf.php:60 #, fuzzy msgid "Page has been created" msgstr "%s cedveli leğv edildi" -#: pmd_pdf.php:64 +#: pmd_pdf.php:62 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:84 +#: pmd_pdf.php:82 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:88 +#: pmd_pdf.php:86 msgid "recommended" msgstr "" -#: pmd_pdf.php:93 +#: pmd_pdf.php:91 msgid "to/from page" msgstr "" -#: querywindow.php:94 +#: querywindow.php:93 msgid "Import files" msgstr "Faylları import et" -#: querywindow.php:105 +#: querywindow.php:104 msgid "All" msgstr "All" @@ -4412,65 +4465,65 @@ msgstr "Sisteme Giriş Me'lumatı" msgid "Character Sets and Collations" msgstr "" -#: server_databases.php:51 +#: server_databases.php:49 msgid "No databases selected." msgstr "Heç bir baza seçilmemişdir." -#: server_databases.php:62 +#: server_databases.php:60 #, php-format msgid "%s databases have been dropped successfully." msgstr "%s bazası müveffeqiyyetle leğv edildi." -#: server_databases.php:87 +#: server_databases.php:85 msgid "Databases statistics" msgstr "Me'lumat Bazası Statistikaları" -#: server_databases.php:116 server_status.php:370 +#: server_databases.php:114 server_status.php:370 #: setup/lib/messages.inc.php:114 msgid "Tables" msgstr "Cedveller" -#: server_databases.php:194 server_replication.php:180 -#: server_replication.php:208 +#: server_databases.php:192 server_replication.php:179 +#: server_replication.php:207 msgid "Master replication" msgstr "" -#: server_databases.php:196 server_replication.php:247 +#: server_databases.php:194 server_replication.php:246 msgid "Slave replication" msgstr "" -#: server_databases.php:229 +#: server_databases.php:227 #, fuzzy msgid "Jump to database" msgstr "Baza seçilmemişdir ve ya mövcud deyildir." -#: server_databases.php:266 +#: server_databases.php:264 msgid "Not replicated" msgstr "" -#: server_databases.php:272 +#: server_databases.php:270 #, fuzzy msgid "Replicated" msgstr "Relations" -#: server_databases.php:288 +#: server_databases.php:286 #, php-format msgid "Check privileges for database "%s"." msgstr ""%s" bazası üçün selahiyyetleri gözden keçir." -#: server_databases.php:292 server_databases.php:293 +#: server_databases.php:290 server_databases.php:291 msgid "Check Privileges" msgstr "Selahiyyetleri Gözden Keçir" -#: server_databases.php:357 server_databases.php:358 +#: server_databases.php:355 server_databases.php:356 msgid "Enable Statistics" msgstr "Statistikaları Aktivleşdir" -#: server_databases.php:361 server_databases.php:362 +#: server_databases.php:359 server_databases.php:360 msgid "Disable Statistics" msgstr "Statistikaları Söndür" -#: server_databases.php:365 +#: server_databases.php:363 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -4478,123 +4531,123 @@ msgstr "" "Qeyd: Me'lumat Bazası statistikalarını burada aktivleşdirmekle webserver-le " "MySQL server arasında ağır neqliyyata sebeb ola bilersiniz." -#: server_engines.php:48 +#: server_engines.php:47 msgid "Storage Engines" msgstr "MySQL Depolama Motorları" -#: server_export.php:20 +#: server_export.php:18 msgid "View dump (schema) of databases" msgstr "Me'lumat bazalarının sxemini göster" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:23 server_privileges.php:265 msgid "Includes all privileges except GRANT." msgstr "GRANT-dan başqa bütün selahiyyetler daxildir." -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:24 server_privileges.php:191 +#: server_privileges.php:514 msgid "Allows altering the structure of existing tables." msgstr "Mövcud olan cedvellerin strukturunu deyişdirmeye icaze verir." -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:25 server_privileges.php:207 +#: server_privileges.php:520 #, fuzzy msgid "Allows altering and dropping stored routines." msgstr "Allows creating and dropping indexes." -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:26 server_privileges.php:183 +#: server_privileges.php:513 msgid "Allows creating new databases and tables." msgstr "Yeni bazalar ve cedveller qurmağa icaze verir." -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:27 server_privileges.php:206 +#: server_privileges.php:519 #, fuzzy msgid "Allows creating stored routines." msgstr "Yeni cedveller qurmağa icaze verir." -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:513 msgid "Allows creating new tables." msgstr "Yeni cedveller qurmağa icaze verir." -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:29 server_privileges.php:194 +#: server_privileges.php:517 msgid "Allows creating temporary tables." msgstr "Keçici cedveller qurmağa icaze verir." -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:30 server_privileges.php:208 +#: server_privileges.php:553 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: server_privileges.php:32 server_privileges.php:199 -#: server_privileges.php:203 server_privileges.php:526 -#: server_privileges.php:530 +#: server_privileges.php:31 server_privileges.php:198 +#: server_privileges.php:202 server_privileges.php:525 +#: server_privileges.php:529 #, fuzzy msgid "Allows creating new views." msgstr "Yeni cedveller qurmağa icaze verir." -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:32 server_privileges.php:182 +#: server_privileges.php:505 msgid "Allows deleting data." msgstr "Me'lumat silmeye icaze verir." -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:33 server_privileges.php:184 +#: server_privileges.php:516 msgid "Allows dropping databases and tables." msgstr "Baza ve cedvel leğv etmeye icaze verir." -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:34 server_privileges.php:516 msgid "Allows dropping tables." msgstr "Cedvelleri leğv etmeye icaze verir." -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:35 server_privileges.php:199 +#: server_privileges.php:533 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:36 server_privileges.php:209 +#: server_privileges.php:521 msgid "Allows executing stored routines." msgstr "" -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:37 server_privileges.php:188 +#: server_privileges.php:508 msgid "Allows importing data from and exporting data into files." msgstr "Allows importing data from and exporting data into files." -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:38 server_privileges.php:539 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Allows adding users and privileges without reloading the privilege tables." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:515 msgid "Allows creating and dropping indexes." msgstr "Allows creating and dropping indexes." -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:40 server_privileges.php:180 +#: server_privileges.php:441 server_privileges.php:503 msgid "Allows inserting and replacing data." msgstr "Allows inserting and replacing data." -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:41 server_privileges.php:195 +#: server_privileges.php:548 msgid "Allows locking tables for the current thread." msgstr "Allows locking tables for the current thread." -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:42 server_privileges.php:645 +#: server_privileges.php:647 msgid "Limits the number of new connections the user may open per hour." msgstr "Limits the number of new connections the user may open per hour." -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:43 server_privileges.php:633 +#: server_privileges.php:635 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Limits the number of queries the user may send to the server per hour." -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:44 server_privileges.php:639 +#: server_privileges.php:641 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -4602,59 +4655,59 @@ msgstr "" "Limits the number of commands that change any table or database the user may " "execute per hour." -#: server_privileges.php:46 server_privileges.php:652 -#: server_privileges.php:654 +#: server_privileges.php:45 server_privileges.php:651 +#: server_privileges.php:653 #, fuzzy msgid "Limits the number of simultaneous connections the user may have." msgstr "Limits the number of new connections the user may open per hour." -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:46 server_privileges.php:187 +#: server_privileges.php:543 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:47 server_privileges.php:189 +#: server_privileges.php:447 server_privileges.php:549 msgid "Has no effect in this MySQL version." msgstr "Has no effect in this MySQL version." -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:48 server_privileges.php:185 +#: server_privileges.php:544 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Allows reloading server settings and flushing the server's caches." -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:197 +#: server_privileges.php:551 msgid "Allows the user to ask where the slaves / masters are." msgstr "Gives the right to the user to ask where the slaves / masters are." -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:50 server_privileges.php:196 +#: server_privileges.php:552 msgid "Needed for the replication slaves." msgstr "Needed for the replication slaves." -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:51 server_privileges.php:179 +#: server_privileges.php:438 server_privileges.php:502 msgid "Allows reading data." msgstr "Allows reading data." -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:52 server_privileges.php:192 +#: server_privileges.php:546 msgid "Gives access to the complete list of databases." msgstr "Gives access to the complete list of databases." -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:53 server_privileges.php:203 +#: server_privileges.php:205 server_privileges.php:518 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:54 server_privileges.php:186 +#: server_privileges.php:545 msgid "Allows shutting down the server." msgstr "Allows shutting down the server." -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:55 server_privileges.php:193 +#: server_privileges.php:542 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -4664,158 +4717,158 @@ msgstr "" "Required for most administrative operations like setting global variables or " "killing threads of other users." -#: server_privileges.php:57 server_privileges.php:201 -#: server_privileges.php:535 +#: server_privileges.php:56 server_privileges.php:200 +#: server_privileges.php:534 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "Allows creating and dropping indexes." -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:57 server_privileges.php:181 +#: server_privileges.php:444 server_privileges.php:504 msgid "Allows changing data." msgstr "Allows changing data." -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:58 server_privileges.php:259 msgid "No privileges." msgstr "Selahiyyet te'yin edilmedi." -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:301 server_privileges.php:302 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Heç biri" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1710 server_privileges.php:1716 +#: server_privileges.php:430 server_privileges.php:565 +#: server_privileges.php:1714 server_privileges.php:1720 msgid "Table-specific privileges" msgstr "Cedvelexas selahiyyetler" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1532 +#: server_privileges.php:431 server_privileges.php:573 +#: server_privileges.php:1536 msgid " Note: MySQL privilege names are expressed in English " msgstr " Qeyd: MySQL selahiyyet adları ingilis dilinde ifade edilmişdir " -#: server_privileges.php:563 server_privileges.php:1531 +#: server_privileges.php:562 server_privileges.php:1535 msgid "Global privileges" msgstr "Qlobal selahiyyetler" -#: server_privileges.php:565 server_privileges.php:1710 +#: server_privileges.php:564 server_privileges.php:1714 msgid "Database-specific privileges" msgstr "Me'lumat Bazasına Mexsus Selahiyyetler" -#: server_privileges.php:610 +#: server_privileges.php:609 msgid "Administration" msgstr "Administrasiya" -#: server_privileges.php:630 +#: server_privileges.php:629 msgid "Resource limits" msgstr "Resource limits" -#: server_privileges.php:631 +#: server_privileges.php:630 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Qeyd: Bu variantları 0 (sıfır)-a çevirmek hüdudu (limiti) qaldıracaq." -#: server_privileges.php:708 +#: server_privileges.php:707 msgid "Login Information" msgstr "Sisteme Giriş Me'lumatı" -#: server_privileges.php:802 +#: server_privileges.php:801 msgid "Do not change the password" msgstr "Parolu deyişdirme" -#: server_privileges.php:835 server_privileges.php:2197 +#: server_privileges.php:834 server_privileges.php:2201 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "İstifadeçi(ler) tapılmadı." -#: server_privileges.php:879 +#: server_privileges.php:878 #, php-format msgid "The user %s already exists!" msgstr "%s istifadeçisi mövcuddur!" -#: server_privileges.php:962 +#: server_privileges.php:961 msgid "You have added a new user." msgstr "Yeni istifadeçi elave etdiniz." -#: server_privileges.php:1183 +#: server_privileges.php:1184 #, php-format msgid "You have updated the privileges for %s." msgstr "You have updated the privileges for %s." -#: server_privileges.php:1207 +#: server_privileges.php:1208 #, php-format msgid "You have revoked the privileges for %s" msgstr "You have revoked the privileges for %s" -#: server_privileges.php:1243 +#: server_privileges.php:1244 #, php-format msgid "The password for %s was changed successfully." msgstr "%s üçün parol müveffeqiyyetle deyişdirilmişdir." -#: server_privileges.php:1263 +#: server_privileges.php:1264 #, php-format msgid "Deleting %s" msgstr "%s silinir" -#: server_privileges.php:1274 +#: server_privileges.php:1275 msgid "No users selected for deleting!" msgstr "" -#: server_privileges.php:1277 +#: server_privileges.php:1278 msgid "Reloading the privileges" msgstr "Reloading the privileges" -#: server_privileges.php:1292 +#: server_privileges.php:1296 msgid "The selected users have been deleted successfully." msgstr "The selected users have been deleted successfully." -#: server_privileges.php:1327 +#: server_privileges.php:1331 msgid "The privileges were reloaded successfully." msgstr "The privileges were reloaded successfully." -#: server_privileges.php:1355 server_privileges.php:1641 +#: server_privileges.php:1359 server_privileges.php:1645 msgid "Edit Privileges" msgstr "Selahiyyetleri Deyişdir" -#: server_privileges.php:1364 +#: server_privileges.php:1368 msgid "Revoke" msgstr "Revoke" -#: server_privileges.php:1396 +#: server_privileges.php:1400 msgid "User overview" msgstr "User overview" -#: server_privileges.php:1533 server_privileges.php:1715 -#: server_privileges.php:2064 +#: server_privileges.php:1537 server_privileges.php:1719 +#: server_privileges.php:2068 msgid "Grant" msgstr "İcaze ver" -#: server_privileges.php:1552 server_privileges.php:2154 +#: server_privileges.php:1556 server_privileges.php:2158 msgid "Any" msgstr "Her hansı" -#: server_privileges.php:1601 server_privileges.php:1625 -#: server_privileges.php:2019 server_privileges.php:2208 +#: server_privileges.php:1605 server_privileges.php:1629 +#: server_privileges.php:2023 server_privileges.php:2212 msgid "Add a new User" msgstr "Yeni İstifadeçi elave Et" -#: server_privileges.php:1606 +#: server_privileges.php:1610 msgid "Remove selected users" msgstr "Remove selected users" -#: server_privileges.php:1609 +#: server_privileges.php:1613 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Revoke all active privileges from the users and delete them afterwards." -#: server_privileges.php:1610 server_privileges.php:1611 -#: server_privileges.php:1612 +#: server_privileges.php:1614 server_privileges.php:1615 +#: server_privileges.php:1616 msgid "Drop the databases that have the same names as the users." msgstr "İstifadeçilerle eyni adlı me'lumat bazalarını leğv et." -#: server_privileges.php:1628 +#: server_privileges.php:1632 #, fuzzy, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4828,48 +4881,48 @@ msgstr "" "içerisindekiler webserver-in istifade etdiklerinden ferqli ola biler. Bu " "halda, davam etmeden evvel, selahiyyetleri %syeniden yüklemelisiniz%s." -#: server_privileges.php:1676 +#: server_privileges.php:1680 msgid "The selected user was not found in the privilege table." msgstr "The selected user was not found in the privilege table." -#: server_privileges.php:1716 +#: server_privileges.php:1720 msgid "Column-specific privileges" msgstr "Sütunaxas Selahiyyetler" -#: server_privileges.php:1917 +#: server_privileges.php:1921 msgid "Add privileges on the following database" msgstr "Aşağıdakı me'lumat bazası üçün selahiyyet müeyyen et" -#: server_privileges.php:1935 +#: server_privileges.php:1939 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:1938 +#: server_privileges.php:1942 msgid "Add privileges on the following table" msgstr "Aşağıdakı cedvel üçün selahiyyetler müeyyen et" -#: server_privileges.php:1995 +#: server_privileges.php:1999 msgid "Change Login Information / Copy User" msgstr "Sistem Giriş Me'lumatını Deyişdir / İstifadeçini Kopyala" -#: server_privileges.php:1998 +#: server_privileges.php:2002 msgid "Create a new user with the same privileges and ..." msgstr "Eyni selahiyyetlere sahib yeni istifadeçi qur ve ..." -#: server_privileges.php:2000 +#: server_privileges.php:2004 msgid "... keep the old one." msgstr "... köhnesini saxla." -#: server_privileges.php:2001 +#: server_privileges.php:2005 msgid " ... delete the old one from the user tables." msgstr " ... istifadeçi cedvellerinden köhnesini sil." -#: server_privileges.php:2002 +#: server_privileges.php:2006 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr " ... köhne istifadeçinin selahiyyetlerini elinden alaraq onu sil." -#: server_privileges.php:2003 +#: server_privileges.php:2007 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -4877,44 +4930,44 @@ msgstr "" " ... istifadeçi cedvellerinden köhnesini sil ve ardından selahiyyetleri " "yeniden yükle." -#: server_privileges.php:2025 +#: server_privileges.php:2029 msgid "Database for user" msgstr "" -#: server_privileges.php:2029 +#: server_privileges.php:2033 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Heç biri" -#: server_privileges.php:2030 +#: server_privileges.php:2034 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2031 +#: server_privileges.php:2035 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2034 +#: server_privileges.php:2038 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr ""%s" bazası üçün selahiyyetleri gözden keçir." -#: server_privileges.php:2057 +#: server_privileges.php:2061 #, php-format msgid "Users having access to "%s"" msgstr "Users having access to "%s"" -#: server_privileges.php:2165 +#: server_privileges.php:2169 msgid "global" msgstr "qlobal" -#: server_privileges.php:2167 +#: server_privileges.php:2171 msgid "database-specific" msgstr "bazayaxas" -#: server_privileges.php:2169 +#: server_privileges.php:2173 msgid "wildcard" msgstr "xüsusi işare" @@ -4935,53 +4988,53 @@ msgstr "" msgid "ID" msgstr "Nömre" -#: server_replication.php:50 +#: server_replication.php:49 msgid "Unknown error" msgstr "" -#: server_replication.php:57 +#: server_replication.php:56 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:64 +#: server_replication.php:63 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:70 +#: server_replication.php:69 msgid "Unable to change master" msgstr "" -#: server_replication.php:73 +#: server_replication.php:72 #, php-format msgid "Master server changed succesfully to %s" msgstr "" -#: server_replication.php:181 +#: server_replication.php:180 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:183 server_status.php:391 +#: server_replication.php:182 server_status.php:391 msgid "Show master status" msgstr "" -#: server_replication.php:186 +#: server_replication.php:185 msgid "Show connected slaves" msgstr "" -#: server_replication.php:209 +#: server_replication.php:208 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:216 +#: server_replication.php:215 msgid "Master configuration" msgstr "" -#: server_replication.php:217 +#: server_replication.php:216 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -4990,110 +5043,110 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:220 +#: server_replication.php:219 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:221 +#: server_replication.php:220 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:224 +#: server_replication.php:223 #, fuzzy msgid "Please select databases:" msgstr "Me'lumat bazası seç" -#: server_replication.php:227 +#: server_replication.php:226 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: server_replication.php:229 +#: server_replication.php:228 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: server_replication.php:292 +#: server_replication.php:291 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:295 +#: server_replication.php:294 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:304 +#: server_replication.php:303 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:307 +#: server_replication.php:306 msgid "See slave status table" msgstr "" -#: server_replication.php:310 +#: server_replication.php:309 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:321 +#: server_replication.php:320 msgid "Control slave:" msgstr "" -#: server_replication.php:324 +#: server_replication.php:323 #, fuzzy msgid "Full start" msgstr "Tam metn (Fulltext)" -#: server_replication.php:324 +#: server_replication.php:323 msgid "Full stop" msgstr "" -#: server_replication.php:325 +#: server_replication.php:324 msgid "Reset slave" msgstr "" -#: server_replication.php:326 +#: server_replication.php:325 #, php-format msgid "SQL Thread %s only" msgstr "" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 #, fuzzy msgid "Start" msgstr "Şen" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 msgid "Stop" msgstr "" -#: server_replication.php:327 +#: server_replication.php:326 #, php-format msgid "IO Thread %s only" msgstr "" -#: server_replication.php:331 +#: server_replication.php:330 msgid "Error management:" msgstr "" -#: server_replication.php:333 +#: server_replication.php:332 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:335 +#: server_replication.php:334 msgid "Skip current error" msgstr "" -#: server_replication.php:336 +#: server_replication.php:335 msgid "Skip next" msgstr "" -#: server_replication.php:339 +#: server_replication.php:338 msgid "errors." msgstr "" -#: server_replication.php:354 +#: server_replication.php:353 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -5803,112 +5856,112 @@ msgstr "Sorğu tipi" msgid "Replication status" msgstr "" -#: server_synchronize.php:93 +#: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:96 +#: server_synchronize.php:95 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:121 server_synchronize.php:124 tbl_create.php:77 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:264 +#: server_synchronize.php:263 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:271 +#: server_synchronize.php:270 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:399 server_synchronize.php:838 +#: server_synchronize.php:398 server_synchronize.php:837 msgid "not present" msgstr "" -#: server_synchronize.php:423 server_synchronize.php:866 +#: server_synchronize.php:422 server_synchronize.php:865 msgid "Structure Difference" msgstr "" -#: server_synchronize.php:424 server_synchronize.php:867 +#: server_synchronize.php:423 server_synchronize.php:866 msgid "Data Difference" msgstr "" -#: server_synchronize.php:429 server_synchronize.php:872 +#: server_synchronize.php:428 server_synchronize.php:871 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:430 server_synchronize.php:873 +#: server_synchronize.php:429 server_synchronize.php:872 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:431 server_synchronize.php:874 +#: server_synchronize.php:430 server_synchronize.php:873 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:432 server_synchronize.php:875 +#: server_synchronize.php:431 server_synchronize.php:874 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:433 server_synchronize.php:876 +#: server_synchronize.php:432 server_synchronize.php:875 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:434 server_synchronize.php:877 +#: server_synchronize.php:433 server_synchronize.php:876 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:435 server_synchronize.php:878 +#: server_synchronize.php:434 server_synchronize.php:877 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:445 server_synchronize.php:889 +#: server_synchronize.php:444 server_synchronize.php:888 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:448 server_synchronize.php:893 +#: server_synchronize.php:447 server_synchronize.php:892 msgid "Apply Selected Changes" msgstr "" -#: server_synchronize.php:450 server_synchronize.php:895 +#: server_synchronize.php:449 server_synchronize.php:894 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:463 +#: server_synchronize.php:462 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:941 +#: server_synchronize.php:940 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:1002 +#: server_synchronize.php:1001 msgid "The following queries have been executed:" msgstr "" -#: server_synchronize.php:1121 +#: server_synchronize.php:1120 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1122 +#: server_synchronize.php:1121 #, fuzzy #| msgid "Connections" msgid "Current connection" msgstr "Elaqeler" -#: server_synchronize.php:1151 +#: server_synchronize.php:1150 #, php-format msgid "Configuration: %s" msgstr "" -#: server_synchronize.php:1166 +#: server_synchronize.php:1165 msgid "Socket" msgstr "" -#: server_synchronize.php:1212 +#: server_synchronize.php:1211 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -6464,8 +6517,8 @@ msgstr "" #: setup/lib/messages.inc.php:128 msgid "" "Configure phpMyAdmin database to gain access to additional features, see " -"[a@../Documentation.html#linked-tables]linked-tables infrastructure[/a] in " -"documentation" +"[a@../Documentation.html#linked-tables]phpMyAdmin configuration storage[/a] " +"in documentation" msgstr "" #: setup/lib/messages.inc.php:129 setup/lib/messages.inc.php:290 @@ -7524,115 +7577,115 @@ msgstr "" msgid "ZIP" msgstr "" -#: sql.php:495 tbl_replace.php:385 +#: sql.php:494 tbl_replace.php:384 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: sql.php:512 +#: sql.php:511 msgid "Showing as PHP code" msgstr "" -#: sql.php:515 tbl_replace.php:359 +#: sql.php:514 tbl_replace.php:358 msgid "Showing SQL query" msgstr "" -#: sql.php:517 +#: sql.php:516 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "SQL Tesdiqle" -#: sql.php:638 +#: sql.php:631 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:670 +#: sql.php:663 msgid "Label" msgstr "Etiket" -#: tbl_addfield.php:188 tbl_alter.php:102 tbl_indexes.php:97 +#: tbl_addfield.php:185 tbl_alter.php:100 tbl_indexes.php:97 #, fuzzy, php-format msgid "Table %1$s has been altered successfully" msgstr "The selected users have been deleted successfully." -#: tbl_change.php:250 tbl_select.php:26 tbl_select.php:27 tbl_select.php:30 -#: tbl_select.php:33 +#: tbl_change.php:245 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_select.php:32 msgid "Browse foreign values" msgstr "" -#: tbl_change.php:280 tbl_change.php:318 +#: tbl_change.php:275 tbl_change.php:313 msgid "Function" msgstr "Funksiya" -#: tbl_change.php:300 tbl_indexes.php:199 tbl_indexes.php:224 +#: tbl_change.php:295 tbl_indexes.php:198 tbl_indexes.php:223 msgid "Ignore" msgstr "Diqqete Alma" -#: tbl_change.php:725 +#: tbl_change.php:720 #, fuzzy #| msgid " Because of its length,
                            this field might not be editable " msgid " Because of its length,
                            this column might not be editable " msgstr "" " Uzun olduğuna göre,
                            bu sahedeki me'lumatlar deyişdirilmeye biler " -#: tbl_change.php:884 +#: tbl_change.php:835 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:890 +#: tbl_change.php:841 msgid "Binary - do not edit" msgstr "Binary - deyişiklik etme" -#: tbl_change.php:983 +#: tbl_change.php:889 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:1128 +#: tbl_change.php:1026 msgid "Insert as new row" msgstr "Yeni setir olaraq elave et" -#: tbl_change.php:1129 +#: tbl_change.php:1027 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:1130 +#: tbl_change.php:1028 msgid "Show insert query" msgstr "" -#: tbl_change.php:1145 +#: tbl_change.php:1043 msgid "Go back to previous page" msgstr "Evvelki sehifeye qayıt" -#: tbl_change.php:1146 +#: tbl_change.php:1044 msgid "Insert another new row" msgstr "Teze bir setir daha gir" -#: tbl_change.php:1150 +#: tbl_change.php:1048 msgid "Go back to this page" msgstr "Bu sehifeye geri dön" -#: tbl_change.php:1158 +#: tbl_change.php:1056 msgid "Edit next row" msgstr "Bir sonrakı setre keç" -#: tbl_change.php:1169 +#: tbl_change.php:1067 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: tbl_change.php:1207 +#: tbl_change.php:1105 #, php-format msgid "Restart insertion with %s rows" msgstr "" -#: tbl_create.php:57 +#: tbl_create.php:55 #, fuzzy, php-format msgid "Table %s already exists!" msgstr "%s istifadeçisi mövcuddur!" -#: tbl_create.php:244 +#: tbl_create.php:241 #, fuzzy, php-format msgid "Table %1$s has been created." msgstr "%s cedveli leğv edildi" @@ -7653,202 +7706,202 @@ msgstr "İndeksi Birinci Dereceli (PRIMARY) olaraq yeniden adlandıra bilmirem!" msgid "No index parts defined!" msgstr "İndeks qisimleri te'yin edilmedi!" -#: tbl_indexes.php:159 +#: tbl_indexes.php:158 msgid "Create a new index" msgstr "Yeni indeks qur" -#: tbl_indexes.php:161 +#: tbl_indexes.php:160 msgid "Modify an index" msgstr "Modify an index" -#: tbl_indexes.php:167 +#: tbl_indexes.php:166 msgid "Index name:" msgstr "İndex adı :" -#: tbl_indexes.php:173 +#: tbl_indexes.php:172 msgid "Index type:" msgstr "İndex tipi :" -#: tbl_indexes.php:183 +#: tbl_indexes.php:182 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "(\"PRIMARY\" sadece birinci dereceli açarın adı olmalıdır!)" -#: tbl_indexes.php:250 +#: tbl_indexes.php:249 #, php-format msgid "Add to index  %s column(s)" msgstr "İndekse  %s sütun elave et" -#: tbl_indexes.php:255 tbl_structure.php:588 tbl_structure.php:599 +#: tbl_indexes.php:254 tbl_structure.php:586 tbl_structure.php:597 msgid "Column count has to be larger than zero." msgstr "" -#: tbl_move_copy.php:45 +#: tbl_move_copy.php:44 msgid "Can't move table to same one!" msgstr "Can't move table to same one!" -#: tbl_move_copy.php:47 +#: tbl_move_copy.php:46 msgid "Can't copy table to same one!" msgstr "Cedveli eynisinin üzerine kopyalaya bilmerem!" -#: tbl_move_copy.php:55 +#: tbl_move_copy.php:54 #, php-format msgid "Table %s has been moved to %s." msgstr "%s cedveli %s - e daşınmışdır." -#: tbl_move_copy.php:57 +#: tbl_move_copy.php:56 #, php-format msgid "Table %s has been copied to %s." msgstr "%s cedveli %s - e kopyalandı." -#: tbl_move_copy.php:81 +#: tbl_move_copy.php:80 msgid "The table name is empty!" msgstr "Cedveli adı boşdur!" -#: tbl_operations.php:248 +#: tbl_operations.php:246 msgid "Alter table order by" msgstr "Cedvel sırasına buna göre yeniden qur" -#: tbl_operations.php:257 +#: tbl_operations.php:255 msgid "(singly)" msgstr "(tek-tek)" -#: tbl_operations.php:277 +#: tbl_operations.php:275 msgid "Move table to (database.table):" msgstr "Cedveli daşı (me'lumat bazası.cedvel):" -#: tbl_operations.php:335 +#: tbl_operations.php:333 #, fuzzy msgid "Table options" msgstr "Cedvel başlığı" -#: tbl_operations.php:339 +#: tbl_operations.php:337 msgid "Rename table to" msgstr "Cedveli yeniden adlandır" -#: tbl_operations.php:510 +#: tbl_operations.php:508 msgid "Copy table to (database.table):" msgstr "Cedveli kopyala (me'lumat bazası.cedvel):" -#: tbl_operations.php:557 +#: tbl_operations.php:555 msgid "Switch to copied table" msgstr "Kopyalanmış cedvele keç" -#: tbl_operations.php:569 +#: tbl_operations.php:567 msgid "Table maintenance" msgstr "Cedvel temizliyi" -#: tbl_operations.php:590 +#: tbl_operations.php:588 msgid "Defragment table" msgstr "" -#: tbl_operations.php:629 +#: tbl_operations.php:627 #, php-format msgid "Table %s has been flushed" msgstr "%s cedveli flush-landı" -#: tbl_operations.php:635 +#: tbl_operations.php:633 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Cedveli flush-la (\"FLUSH\")" -#: tbl_operations.php:650 +#: tbl_operations.php:648 #, fuzzy msgid "Partition maintenance" msgstr "Cedvel temizliyi" -#: tbl_operations.php:658 +#: tbl_operations.php:656 #, php-format msgid "Partition %s" msgstr "" -#: tbl_operations.php:661 +#: tbl_operations.php:659 msgid "Analyze" msgstr "" -#: tbl_operations.php:662 +#: tbl_operations.php:660 msgid "Check" msgstr "" -#: tbl_operations.php:663 +#: tbl_operations.php:661 msgid "Optimize" msgstr "" -#: tbl_operations.php:664 +#: tbl_operations.php:662 msgid "Rebuild" msgstr "" -#: tbl_operations.php:665 +#: tbl_operations.php:663 #, fuzzy msgid "Repair" msgstr "Cedveli te'mir et" -#: tbl_operations.php:677 +#: tbl_operations.php:675 msgid "Remove partitioning" msgstr "" -#: tbl_operations.php:703 +#: tbl_operations.php:701 msgid "Check referential integrity:" msgstr "Check referential integrity:" -#: tbl_printview.php:73 +#: tbl_printview.php:72 msgid "Show tables" msgstr "Cedvelleri göster" -#: tbl_printview.php:308 tbl_structure.php:655 +#: tbl_printview.php:307 tbl_structure.php:653 msgid "Space usage" msgstr "Yer istifadesi" -#: tbl_printview.php:312 tbl_structure.php:659 +#: tbl_printview.php:311 tbl_structure.php:657 msgid "Usage" msgstr "Miqdar" -#: tbl_printview.php:339 tbl_structure.php:686 +#: tbl_printview.php:338 tbl_structure.php:684 msgid "Effective" msgstr "Effektiv" -#: tbl_printview.php:364 tbl_structure.php:724 +#: tbl_printview.php:363 tbl_structure.php:722 msgid "Row Statistics" msgstr "Sıra Statistikası" -#: tbl_printview.php:367 tbl_structure.php:727 +#: tbl_printview.php:366 tbl_structure.php:725 msgid "Statements" msgstr "Variantlar" -#: tbl_printview.php:378 tbl_structure.php:739 +#: tbl_printview.php:377 tbl_structure.php:737 msgid "static" msgstr "" -#: tbl_printview.php:380 tbl_structure.php:741 +#: tbl_printview.php:379 tbl_structure.php:739 msgid "dynamic" msgstr "dinamik" -#: tbl_printview.php:402 tbl_structure.php:784 +#: tbl_printview.php:401 tbl_structure.php:782 msgid "Row length" msgstr "Sıra uzunluğu" -#: tbl_printview.php:412 tbl_structure.php:792 +#: tbl_printview.php:411 tbl_structure.php:790 msgid " Row size " msgstr " Sıra boyu " -#: tbl_relation.php:278 +#: tbl_relation.php:276 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" -#: tbl_relation.php:404 +#: tbl_relation.php:402 #, fuzzy msgid "Internal relation" msgstr "Ümumi elaqe variantları" -#: tbl_relation.php:406 +#: tbl_relation.php:404 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: tbl_relation.php:412 +#: tbl_relation.php:410 msgid "Foreign key constraint" msgstr "" @@ -7856,232 +7909,232 @@ msgstr "" msgid "No rows selected" msgstr "" -#: tbl_select.php:130 +#: tbl_select.php:129 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "\"nümuneye göre sorğu\" gönderin (xüsusi işare: \"%\")" -#: tbl_select.php:136 +#: tbl_select.php:135 #, fuzzy msgid "Operator" msgstr "Emeliyyatlar" -#: tbl_select.php:267 +#: tbl_select.php:266 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "Sahe seçin (en az birini):" -#: tbl_select.php:285 +#: tbl_select.php:284 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Axtarış şertlerini gir (\"where\" ifadesinin esas metni):" -#: tbl_select.php:292 +#: tbl_select.php:291 msgid "Number of rows per page" msgstr "Sehife başına düşen setir sayı" -#: tbl_select.php:298 +#: tbl_select.php:297 msgid "Display order:" msgstr "Sıralama şekli:" -#: tbl_structure.php:160 +#: tbl_structure.php:159 msgid "Browse distinct values" msgstr "" -#: tbl_structure.php:360 +#: tbl_structure.php:358 #, fuzzy #| msgid "None" msgctxt "None for default" msgid "None" msgstr "Heç biri" -#: tbl_structure.php:373 +#: tbl_structure.php:371 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Column %s has been dropped" msgstr "%s cedveli leğv edildi" -#: tbl_structure.php:384 +#: tbl_structure.php:382 #, php-format msgid "A primary key has been added on %s" msgstr "%s üzerine Birinci Dereceli Açar elave edildi." -#: tbl_structure.php:399 tbl_structure.php:413 tbl_structure.php:427 +#: tbl_structure.php:397 tbl_structure.php:411 tbl_structure.php:425 #, php-format msgid "An index has been added on %s" msgstr "%s üzerine indeks elave edildi" -#: tbl_structure.php:505 tbl_structure.php:507 +#: tbl_structure.php:503 tbl_structure.php:505 msgid "Relation view" msgstr "Relation view" -#: tbl_structure.php:514 tbl_structure.php:516 +#: tbl_structure.php:512 tbl_structure.php:514 msgid "Propose table structure" msgstr "Alternativ cedvel strukturu" -#: tbl_structure.php:539 +#: tbl_structure.php:537 #, fuzzy msgid "Add column" msgstr "Yeni sahe elave et" -#: tbl_structure.php:553 +#: tbl_structure.php:551 msgid "At End of Table" msgstr "Cedvelin sonuna" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At Beginning of Table" msgstr "Cedvelin başına" -#: tbl_structure.php:555 +#: tbl_structure.php:553 #, php-format msgid "After %s" msgstr "Sonra: %s" -#: tbl_structure.php:593 +#: tbl_structure.php:591 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr " %s sütunda indeks yarat" -#: tbl_structure.php:755 +#: tbl_structure.php:753 msgid "partitioned" msgstr "" -#: tbl_tracking.php:113 +#: tbl_tracking.php:109 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:186 +#: tbl_tracking.php:182 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "" -#: tbl_tracking.php:194 +#: tbl_tracking.php:190 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "" -#: tbl_tracking.php:202 +#: tbl_tracking.php:198 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "" -#: tbl_tracking.php:212 +#: tbl_tracking.php:208 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:219 +#: tbl_tracking.php:215 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:220 +#: tbl_tracking.php:216 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:229 +#: tbl_tracking.php:225 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:250 tbl_tracking.php:378 +#: tbl_tracking.php:245 tbl_tracking.php:373 msgid "Close" msgstr "" -#: tbl_tracking.php:261 +#: tbl_tracking.php:256 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:380 +#: tbl_tracking.php:375 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:396 tbl_tracking.php:503 +#: tbl_tracking.php:391 tbl_tracking.php:498 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "" -#: tbl_tracking.php:409 tbl_tracking.php:460 +#: tbl_tracking.php:404 tbl_tracking.php:455 #, fuzzy msgid "Date" msgstr "Me'lumat" -#: tbl_tracking.php:410 tbl_tracking.php:461 +#: tbl_tracking.php:405 tbl_tracking.php:456 #, fuzzy msgid "Username" msgstr "İstifadeçi Adı:" -#: tbl_tracking.php:411 +#: tbl_tracking.php:406 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:462 +#: tbl_tracking.php:457 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:506 +#: tbl_tracking.php:501 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:507 +#: tbl_tracking.php:502 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:520 +#: tbl_tracking.php:515 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:560 +#: tbl_tracking.php:555 msgid "Show versions" msgstr "" -#: tbl_tracking.php:592 +#: tbl_tracking.php:587 #, fuzzy msgid "Version" msgstr "PHP Versiyası" -#: tbl_tracking.php:639 +#: tbl_tracking.php:634 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "" -#: tbl_tracking.php:641 +#: tbl_tracking.php:636 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:652 +#: tbl_tracking.php:647 #, php-format msgid "Activate tracking for %s.%s" msgstr "" -#: tbl_tracking.php:654 +#: tbl_tracking.php:649 msgid "Activate now" msgstr "" -#: tbl_tracking.php:667 +#: tbl_tracking.php:662 #, php-format msgid "Create version %s of %s.%s" msgstr "" -#: tbl_tracking.php:671 +#: tbl_tracking.php:666 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:679 +#: tbl_tracking.php:674 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:687 +#: tbl_tracking.php:682 #, fuzzy msgid "Create version" msgstr "Server versiyası" @@ -8130,11 +8183,36 @@ msgstr "Profil yenilendi." msgid "VIEW name" msgstr "" -#: view_operations.php:92 +#: view_operations.php:91 #, fuzzy msgid "Rename view to" msgstr "Cedveli yeniden adlandır" +#, fuzzy +#~| msgid "Enabled" +#~ msgctxt "BLOB repository" +#~ msgid "Enabled" +#~ msgstr "Enabled" + +#, fuzzy +#~ msgid "Disable" +#~ msgstr "Söndürülüb" + +#, fuzzy +#~ msgctxt "BLOB repository" +#~ msgid "Repair" +#~ msgstr "Cedveli te'mir et" + +#, fuzzy +#~| msgid "Disabled" +#~ msgctxt "BLOB repository" +#~ msgid "Disabled" +#~ msgstr "Söndürülüb" + +#, fuzzy +#~ msgid "Enable" +#~ msgstr "Enabled" + #~ msgid "" #~ "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " #~ "extension. Please check your PHP configuration." diff --git a/po/be.po b/po/be.po index b41bcfae3..2040b7f0a 100644 --- a/po/be.po +++ b/po/be.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-21 13:53+0200\n" +"POT-Creation-Date: 2010-07-26 17:18+0200\n" "PO-Revision-Date: 2010-03-12 09:12+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: belarusian_cyrillic \n" @@ -13,19 +13,19 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.5.3\n" -#: browse_foreigners.php:37 browse_foreigners.php:58 -#: libraries/display_tbl.lib.php:416 server_privileges.php:1506 +#: browse_foreigners.php:36 browse_foreigners.php:57 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1510 msgid "Show all" msgstr "Паказаць усе" -#: browse_foreigners.php:81 libraries/common.lib.php:2313 -#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:393 -#: libraries/export/pdf.php:146 pdf_schema.php:282 pdf_schema.php:1122 -#: pdf_schema.php:1138 +#: browse_foreigners.php:80 libraries/common.lib.php:2318 +#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:392 +#: libraries/export/pdf.php:146 pdf_schema.php:281 pdf_schema.php:1121 +#: pdf_schema.php:1137 msgid "Page number:" msgstr "Старонка:" -#: browse_foreigners.php:131 +#: browse_foreigners.php:130 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -35,139 +35,153 @@ msgstr "" "акно або налады бясьпекі вашага браўзэра сканфігураныя на блякаваньне " "міжваконных ўзаемадзеяньняў" -#: browse_foreigners.php:149 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2829 -#: libraries/common.lib.php:2836 libraries/db_links.inc.php:74 -#: libraries/tbl_links.inc.php:62 +#: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 +#: db_structure.php:89 db_structure.php:91 db_structure.php:102 +#: db_structure.php:104 libraries/common.lib.php:2834 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Пошук" -#: browse_foreigners.php:152 db_operations.php:384 db_operations.php:428 -#: db_operations.php:498 db_operations.php:608 db_search.php:344 -#: db_structure.php:566 js/messages.php:48 libraries/Config.class.php:1043 -#: libraries/Theme_Manager.class.php:310 +#: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 +#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 +#: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 -#: libraries/common.lib.php:1340 libraries/common.lib.php:2289 +#: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 -#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:275 -#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:531 -#: libraries/display_tbl.lib.php:613 libraries/replication_gui.lib.php:75 +#: libraries/display_export.lib.php:269 libraries/display_import.lib.php:275 +#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 +#: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 #: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:781 -#: main.php:127 navigation.php:231 pdf_pages.php:291 pdf_pages.php:327 -#: pdf_pages.php:529 pmd_pdf.php:115 server_binlog.php:128 -#: server_privileges.php:664 server_privileges.php:1616 -#: server_privileges.php:1963 server_privileges.php:2010 -#: server_privileges.php:2049 server_replication.php:234 -#: server_replication.php:317 server_replication.php:340 -#: server_synchronize.php:1208 tbl_change.php:328 tbl_change.php:1172 -#: tbl_change.php:1209 tbl_indexes.php:253 tbl_operations.php:264 -#: tbl_operations.php:301 tbl_operations.php:498 tbl_operations.php:560 -#: tbl_operations.php:680 tbl_select.php:324 tbl_structure.php:561 -#: tbl_structure.php:596 tbl_tracking.php:394 tbl_tracking.php:511 -#: view_create.php:181 view_operations.php:100 +#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 +#: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 +#: server_privileges.php:663 server_privileges.php:1620 +#: server_privileges.php:1967 server_privileges.php:2014 +#: server_privileges.php:2053 server_replication.php:233 +#: server_replication.php:316 server_replication.php:339 +#: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 +#: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 +#: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 +#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "Панеслася" -#: browse_foreigners.php:167 browse_foreigners.php:171 -#: libraries/Index.class.php:441 tbl_tracking.php:319 +#: browse_foreigners.php:166 browse_foreigners.php:170 +#: libraries/Index.class.php:441 tbl_tracking.php:314 msgid "Keyname" msgstr "Імя ключа" -#: browse_foreigners.php:168 browse_foreigners.php:170 -#: server_collations.php:54 server_collations.php:66 server_engines.php:58 +#: browse_foreigners.php:167 browse_foreigners.php:169 +#: server_collations.php:54 server_collations.php:66 server_engines.php:57 #: server_status.php:738 msgid "Description" msgstr "Апісаньне" -#: browse_foreigners.php:246 browse_foreigners.php:255 -#: browse_foreigners.php:267 browse_foreigners.php:275 +#: browse_foreigners.php:245 browse_foreigners.php:254 +#: browse_foreigners.php:266 browse_foreigners.php:274 msgid "Use this value" msgstr "Выкарыстоўваць гэта значэньне" -#: db_create.php:45 +#: bs_disp_as_mime_type.php:29 bs_play_media.php:35 +msgid "No blob streaming server configured!" +msgstr "" + +#: bs_disp_as_mime_type.php:35 +#, fuzzy +#| msgid "Failed to write file to disk." +msgid "Failed to fetch headers" +msgstr "Памылка запісу на дыск." + +#: bs_disp_as_mime_type.php:41 +msgid "Failed to open remote URL" +msgstr "" + +#: db_create.php:44 #, php-format msgid "Database %1$s has been created." msgstr "База дадзеных %1$s створаная." -#: db_datadict.php:48 db_operations.php:377 +#: db_datadict.php:48 db_operations.php:313 msgid "Database comment: " msgstr "Камэнтар да базы дадзеных: " -#: db_datadict.php:164 libraries/tbl_properties.inc.php:723 -#: pdf_schema.php:1235 tbl_operations.php:346 tbl_printview.php:128 +#: db_datadict.php:164 libraries/tbl_properties.inc.php:722 +#: pdf_schema.php:1234 tbl_operations.php:344 tbl_printview.php:127 msgid "Table comments" msgstr "Камэнтар да табліцы" -#: db_datadict.php:173 db_qbe.php:173 libraries/Index.class.php:445 +#: db_datadict.php:173 db_qbe.php:170 libraries/Index.class.php:445 #: libraries/export/htmlword.php:243 libraries/export/latex.php:364 #: libraries/export/odt.php:293 libraries/export/texytext.php:233 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:274 -#: pdf_schema.php:1261 pdf_schema.php:1282 tbl_change.php:306 -#: tbl_indexes.php:188 tbl_printview.php:140 tbl_relation.php:401 -#: tbl_select.php:133 tbl_structure.php:176 tbl_tracking.php:272 -#: tbl_tracking.php:323 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 +#: pdf_schema.php:1260 pdf_schema.php:1281 tbl_change.php:301 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:132 tbl_structure.php:175 tbl_tracking.php:267 +#: tbl_tracking.php:318 #, fuzzy #| msgid "Column names" msgid "Column" msgstr "Назвы калёнак" -#: db_datadict.php:174 db_printview.php:105 libraries/Index.class.php:442 +#: db_datadict.php:174 db_printview.php:104 libraries/Index.class.php:442 #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 #: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:244 #: libraries/export/latex.php:364 libraries/export/odt.php:296 #: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:99 -#: pdf_schema.php:1262 pdf_schema.php:1283 server_privileges.php:2062 -#: tbl_change.php:285 tbl_change.php:312 tbl_printview.php:141 -#: tbl_printview.php:311 tbl_select.php:134 tbl_structure.php:177 -#: tbl_structure.php:658 tbl_tracking.php:273 tbl_tracking.php:320 +#: pdf_schema.php:1261 pdf_schema.php:1282 server_privileges.php:2066 +#: tbl_change.php:280 tbl_change.php:307 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:133 tbl_structure.php:176 +#: tbl_structure.php:656 tbl_tracking.php:268 tbl_tracking.php:315 msgid "Type" msgstr "Тып" #: db_datadict.php:176 libraries/Index.class.php:448 #: libraries/export/htmlword.php:245 libraries/export/latex.php:364 #: libraries/export/odt.php:299 libraries/export/texytext.php:235 -#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1264 -#: pdf_schema.php:1285 tbl_change.php:321 tbl_printview.php:143 -#: tbl_structure.php:180 tbl_tracking.php:275 tbl_tracking.php:326 +#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1263 +#: pdf_schema.php:1284 tbl_change.php:316 tbl_printview.php:142 +#: tbl_structure.php:179 tbl_tracking.php:270 tbl_tracking.php:321 msgid "Null" msgstr "Нуль" -#: db_datadict.php:177 db_structure.php:500 libraries/export/htmlword.php:246 +#: db_datadict.php:177 db_structure.php:486 libraries/export/htmlword.php:246 #: libraries/export/latex.php:364 libraries/export/odt.php:302 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:105 -#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 -#: tbl_structure.php:181 tbl_tracking.php:276 +#: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:143 +#: tbl_structure.php:180 tbl_tracking.php:271 msgid "Default" msgstr "Па змоўчаньні" #: db_datadict.php:181 libraries/export/htmlword.php:248 #: libraries/export/latex.php:366 libraries/export/odt.php:306 -#: libraries/export/texytext.php:238 pdf_schema.php:1267 pdf_schema.php:1288 -#: tbl_printview.php:148 +#: libraries/export/texytext.php:238 pdf_schema.php:1266 pdf_schema.php:1287 +#: tbl_printview.php:147 msgid "Links to" msgstr "Зьвязаная з" -#: db_datadict.php:183 db_printview.php:111 libraries/export/htmlword.php:251 +#: db_datadict.php:183 db_printview.php:110 libraries/export/htmlword.php:251 #: libraries/export/latex.php:49 libraries/export/latex.php:369 #: libraries/export/odt.php:37 libraries/export/odt.php:311 #: libraries/export/sql.php:29 libraries/export/texytext.php:241 -#: libraries/tbl_properties.inc.php:129 pdf_schema.php:1278 -#: pdf_schema.php:1289 tbl_printview.php:150 +#: libraries/tbl_properties.inc.php:128 pdf_schema.php:1277 +#: pdf_schema.php:1288 tbl_printview.php:149 msgid "Comments" msgstr "Камэнтары" #: db_datadict.php:266 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/export/htmlword.php:321 #: libraries/export/latex.php:434 libraries/export/odt.php:367 -#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:262 -#: pdf_schema.php:1343 server_privileges.php:1560 server_privileges.php:1571 -#: server_privileges.php:1881 server_privileges.php:1886 -#: server_privileges.php:2179 sql.php:131 sql.php:193 tbl_printview.php:227 -#: tbl_structure.php:349 tbl_tracking.php:336 tbl_tracking.php:341 +#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:261 +#: pdf_schema.php:1342 server_privileges.php:1564 server_privileges.php:1575 +#: server_privileges.php:1885 server_privileges.php:1890 +#: server_privileges.php:2183 sql.php:130 sql.php:192 tbl_printview.php:226 +#: tbl_structure.php:347 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "Не" @@ -178,17 +192,17 @@ msgstr "Не" #: libraries/mult_submits.inc.php:49 libraries/mult_submits.inc.php:54 #: libraries/mult_submits.inc.php:59 libraries/mult_submits.inc.php:91 #: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:105 -#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:261 -#: libraries/mult_submits.inc.php:272 pdf_schema.php:1343 -#: server_databases.php:63 server_privileges.php:1557 -#: server_privileges.php:1571 server_privileges.php:1881 -#: server_privileges.php:1884 server_privileges.php:2179 sql.php:192 -#: tbl_printview.php:227 tbl_structure.php:39 tbl_structure.php:349 -#: tbl_tracking.php:334 tbl_tracking.php:339 +#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:260 +#: libraries/mult_submits.inc.php:271 pdf_schema.php:1342 +#: server_databases.php:61 server_privileges.php:1561 +#: server_privileges.php:1575 server_privileges.php:1885 +#: server_privileges.php:1888 server_privileges.php:2183 sql.php:191 +#: tbl_printview.php:226 tbl_structure.php:38 tbl_structure.php:347 +#: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" msgstr "Так" -#: db_datadict.php:321 db_printview.php:265 tbl_printview.php:496 +#: db_datadict.php:321 db_printview.php:264 tbl_printview.php:495 msgid "Print" msgstr "Друк" @@ -196,196 +210,154 @@ msgstr "Друк" msgid "View dump (schema) of database" msgstr "Праглядзець дамп (схему) базы дадзеных" -#: db_export.php:32 db_printview.php:95 db_qbe.php:101 db_structure.php:50 -#: db_tracking.php:34 export.php:352 navigation.php:326 +#: db_export.php:32 db_printview.php:94 db_qbe.php:98 db_structure.php:49 +#: db_tracking.php:30 export.php:350 navigation.php:325 msgid "No tables found in database." msgstr "У базе дадзеных табліц ня выяўлена." -#: db_export.php:42 db_search.php:326 server_export.php:26 +#: db_export.php:42 db_search.php:326 server_export.php:24 msgid "Select All" msgstr "Выбраць усё" -#: db_export.php:44 db_search.php:329 server_export.php:28 +#: db_export.php:44 db_search.php:329 server_export.php:26 msgid "Unselect All" msgstr "Зьняць усе адзнакі" -#: db_operations.php:37 tbl_create.php:49 +#: db_operations.php:33 tbl_create.php:47 msgid "The database name is empty!" msgstr "Імя базы дадзеных не пазначанае!" -#: db_operations.php:235 +#: db_operations.php:231 #, php-format msgid "Database %s has been renamed to %s" msgstr "База дадзеных %s была перайменаваная ў %s" -#: db_operations.php:239 +#: db_operations.php:235 #, php-format msgid "Database %s has been copied to %s" msgstr "База дадзеных %s была скапіяваная ў %s" -#: db_operations.php:411 +#: db_operations.php:347 msgid "Rename database to" msgstr "Перайменаваць базу дадзеных у" -#: db_operations.php:416 server_processlist.php:56 +#: db_operations.php:352 server_processlist.php:56 msgid "Command" msgstr "Каманда" -#: db_operations.php:428 tbl_change.php:1141 +#: db_operations.php:364 tbl_change.php:1039 msgid "and then" msgstr "і пасьля" -#: db_operations.php:454 +#: db_operations.php:390 msgid "Copy database to" msgstr "Капіяваць базу дадзеных у" -#: db_operations.php:461 tbl_operations.php:527 tbl_tracking.php:387 +#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Толькі структуру" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:389 +#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Структуру і дадзеныя" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:388 +#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Толькі дадзеныя" -#: db_operations.php:471 +#: db_operations.php:407 msgid "CREATE DATABASE before copying" msgstr "выканаць CREATE DATABASE перад капіяваньнем" -#: db_operations.php:474 libraries/export/sql.php:51 +#: db_operations.php:410 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 -#: libraries/export/sql.php:81 tbl_operations.php:535 +#: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "Дадаць %s" -#: db_operations.php:478 libraries/export/sql.php:77 tbl_operations.php:298 -#: tbl_operations.php:537 +#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Дадаць значэньне AUTO_INCREMENT" -#: db_operations.php:482 tbl_operations.php:544 +#: db_operations.php:418 tbl_operations.php:542 msgid "Add constraints" msgstr "Дадаць абмежаваньні" -#: db_operations.php:495 +#: db_operations.php:431 msgid "Switch to copied database" msgstr "Перайсьці да скапіяванай базы дадзеных" -#: db_operations.php:536 -msgid "BLOB Repository" -msgstr "" - -#: db_operations.php:539 db_tracking.php:75 libraries/common.lib.php:1357 -#: libraries/server_links.inc.php:48 server_processlist.php:58 -#: tbl_tracking.php:595 test/theme.php:100 -msgid "Status" -msgstr "Стан" - -#: db_operations.php:547 -#, fuzzy -#| msgid "Enabled" -msgctxt "BLOB repository" -msgid "Enabled" -msgstr "Уключана" - -#: db_operations.php:551 -#, fuzzy -msgid "Disable" -msgstr "Адключана" - -#: db_operations.php:561 -msgid "Damaged" -msgstr "" - -#: db_operations.php:565 -#, fuzzy -#| msgid "Repair" -msgctxt "BLOB repository" -msgid "Repair" -msgstr "Адрамантаваць" - -#: db_operations.php:573 -#, fuzzy -#| msgid "Disabled" -msgctxt "BLOB repository" -msgid "Disabled" -msgstr "Адключана" - -#: db_operations.php:577 -#, fuzzy -msgid "Enable" -msgstr "Уключана" - -#: db_operations.php:601 libraries/Index.class.php:447 +#: db_operations.php:451 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 -#: server_collations.php:53 server_collations.php:65 server_databases.php:110 -#: tbl_operations.php:362 tbl_select.php:135 tbl_structure.php:178 -#: tbl_structure.php:766 tbl_tracking.php:274 tbl_tracking.php:325 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 +#: server_collations.php:53 server_collations.php:65 server_databases.php:108 +#: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:177 +#: tbl_structure.php:764 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "Супастаўленьне" -#: db_operations.php:614 main.php:315 pdf_schema.php:33 -#, php-format +#: db_operations.php:464 pdf_schema.php:32 +#, fuzzy, php-format +#| msgid "" +#| "The additional features for working with linked tables have been " +#| "deactivated. To find out why click %shere%s." msgid "" -"The additional features for working with linked tables have been " -"deactivated. To find out why click %shere%s." +"The phpMyAdmin configuration storage has been deactivated. To find out why " +"click %shere%s." msgstr "" "Дадатковыя магчымасьці работы з зьвязанымі табліцамі былі адключаныя. Каб " "высьветліць чаму, націсьніце %sтут%s." -#: db_operations.php:647 +#: db_operations.php:497 msgid "Edit PDF Pages" msgstr "Рэдагаваць PDF-старонкі" -#: db_printview.php:103 db_tracking.php:71 db_tracking.php:156 +#: db_printview.php:102 db_tracking.php:67 db_tracking.php:152 #: libraries/db_structure.lib.php:37 libraries/export/xml.php:327 -#: libraries/header.inc.php:125 pdf_pages.php:423 server_privileges.php:1657 -#: server_privileges.php:1713 server_privileges.php:1977 -#: server_synchronize.php:422 server_synchronize.php:865 tbl_tracking.php:591 +#: libraries/header.inc.php:125 pdf_pages.php:422 server_privileges.php:1661 +#: server_privileges.php:1717 server_privileges.php:1981 +#: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "Табліца" -#: db_printview.php:104 libraries/db_structure.lib.php:47 +#: db_printview.php:103 libraries/db_structure.lib.php:47 #: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 -#: navigation.php:629 navigation.php:651 server_databases.php:121 -#: tbl_printview.php:392 tbl_structure.php:364 tbl_structure.php:776 +#: navigation.php:628 navigation.php:650 server_databases.php:119 +#: tbl_printview.php:391 tbl_structure.php:362 tbl_structure.php:774 msgid "Rows" msgstr "Радкі" -#: db_printview.php:108 libraries/db_structure.lib.php:58 tbl_indexes.php:189 +#: db_printview.php:107 libraries/db_structure.lib.php:58 tbl_indexes.php:188 msgid "Size" msgstr "Памер" -#: db_printview.php:161 db_structure.php:456 libraries/export/sql.php:556 +#: db_printview.php:160 db_structure.php:442 libraries/export/sql.php:556 #: libraries/export/sql.php:896 msgid "in use" msgstr "выкарыстоўваецца" -#: db_printview.php:186 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:511 pdf_schema.php:1240 tbl_printview.php:432 -#: tbl_structure.php:808 +#: db_printview.php:185 libraries/db_info.inc.php:86 +#: libraries/export/sql.php:511 pdf_schema.php:1239 tbl_printview.php:431 +#: tbl_structure.php:806 msgid "Creation" msgstr "Створаная" -#: db_printview.php:195 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:516 pdf_schema.php:1245 tbl_printview.php:442 -#: tbl_structure.php:816 +#: db_printview.php:194 libraries/db_info.inc.php:91 +#: libraries/export/sql.php:516 pdf_schema.php:1244 tbl_printview.php:441 +#: tbl_structure.php:814 msgid "Last update" msgstr "Апошняе абнаўленьне" -#: db_printview.php:204 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:521 pdf_schema.php:1250 tbl_printview.php:452 -#: tbl_structure.php:824 +#: db_printview.php:203 libraries/db_info.inc.php:96 +#: libraries/export/sql.php:521 pdf_schema.php:1249 tbl_printview.php:451 +#: tbl_structure.php:822 msgid "Last check" msgstr "Апошняя праверка" -#: db_printview.php:221 db_structure.php:479 +#: db_printview.php:220 db_structure.php:465 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -393,94 +365,94 @@ msgid_plural "%s tables" msgstr[0] "%s табліц(ы)" msgstr[1] "%s табліц(ы)" -#: db_qbe.php:28 import.php:453 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1980 libraries/sql_query_form.lib.php:138 -#: tbl_operations.php:212 tbl_relation.php:291 tbl_row_action.php:130 -#: view_operations.php:61 +#: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 +#: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "Ваш SQL-запыт быў пасьпяхова выкананы" -#: db_qbe.php:41 +#: db_qbe.php:38 msgid "You have to choose at least one column to display" msgstr "Вам неабходна выбраць прынамсі адну калёнку для адлюстраваньня" -#: db_qbe.php:199 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:865 +#: db_qbe.php:196 libraries/db_structure.lib.php:95 +#: libraries/display_tbl.lib.php:864 msgid "Sort" msgstr "Парадак" -#: db_qbe.php:208 db_qbe.php:242 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:522 libraries/display_tbl.lib.php:827 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:259 -#: tbl_select.php:311 +#: db_qbe.php:205 db_qbe.php:239 libraries/db_structure.lib.php:102 +#: libraries/display_tbl.lib.php:521 libraries/display_tbl.lib.php:826 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:257 +#: tbl_select.php:310 msgid "Ascending" msgstr "прамы" -#: db_qbe.php:209 db_qbe.php:250 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:527 libraries/display_tbl.lib.php:824 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:260 -#: tbl_select.php:312 +#: db_qbe.php:206 db_qbe.php:247 libraries/db_structure.lib.php:110 +#: libraries/display_tbl.lib.php:526 libraries/display_tbl.lib.php:823 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:258 +#: tbl_select.php:311 msgid "Descending" msgstr "адваротны" -#: db_qbe.php:263 db_tracking.php:77 libraries/display_tbl.lib.php:307 -#: tbl_change.php:275 tbl_tracking.php:596 +#: db_qbe.php:260 db_tracking.php:73 libraries/display_tbl.lib.php:306 +#: tbl_change.php:270 tbl_tracking.php:591 msgid "Show" msgstr "Паказаць" -#: db_qbe.php:299 +#: db_qbe.php:296 msgid "Criteria" msgstr "Крытэр" -#: db_qbe.php:352 db_qbe.php:434 db_qbe.php:526 db_qbe.php:557 +#: db_qbe.php:349 db_qbe.php:431 db_qbe.php:523 db_qbe.php:554 msgid "Ins" msgstr "Уставіць" -#: db_qbe.php:356 db_qbe.php:438 db_qbe.php:523 db_qbe.php:554 +#: db_qbe.php:353 db_qbe.php:435 db_qbe.php:520 db_qbe.php:551 msgid "And" msgstr "І" -#: db_qbe.php:365 db_qbe.php:446 db_qbe.php:528 db_qbe.php:559 +#: db_qbe.php:362 db_qbe.php:443 db_qbe.php:525 db_qbe.php:556 msgid "Del" msgstr "Выдаліць" -#: db_qbe.php:369 db_qbe.php:450 db_qbe.php:521 db_qbe.php:552 -#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:778 -#: server_privileges.php:297 tbl_change.php:1027 tbl_indexes.php:249 -#: tbl_select.php:285 +#: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 +#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:777 +#: server_privileges.php:296 tbl_change.php:925 tbl_indexes.php:248 +#: tbl_select.php:284 msgid "Or" msgstr "Або" -#: db_qbe.php:506 +#: db_qbe.php:503 msgid "Modify" msgstr "Зьмяніць" -#: db_qbe.php:583 +#: db_qbe.php:580 #, fuzzy #| msgid "Add/Delete Criteria Row" msgid "Add/Delete criteria rows" msgstr "Дадаць/выдаліць радок крытэру" -#: db_qbe.php:595 +#: db_qbe.php:592 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Add/Delete columns" msgstr "Дадаць/выдаліць калёнку крытэру" -#: db_qbe.php:608 db_qbe.php:633 +#: db_qbe.php:605 db_qbe.php:630 msgid "Update Query" msgstr "Абнавіць запыт" -#: db_qbe.php:616 +#: db_qbe.php:613 msgid "Use Tables" msgstr "Выкарыстоўваць табліцы" -#: db_qbe.php:639 +#: db_qbe.php:636 #, php-format msgid "SQL query on database %s:" msgstr "SQL-запыт да БД %s:" -#: db_qbe.php:933 libraries/common.lib.php:1222 +#: db_qbe.php:930 libraries/common.lib.php:1215 msgid "Submit Query" msgstr "Выканаць запыт" @@ -520,17 +492,17 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s супадзеньняў у табліцы %s" msgstr[1] "%s супадзеньняў у табліцы %s" -#: db_search.php:249 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2831 -#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:49 -#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:466 +#: db_search.php:249 db_structure.php:75 db_structure.php:76 +#: db_structure.php:88 db_structure.php:90 db_structure.php:101 +#: db_structure.php:103 libraries/common.lib.php:2836 +#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 +#: tbl_structure.php:35 tbl_structure.php:47 tbl_structure.php:464 msgid "Browse" msgstr "Прагляд" -#: db_search.php:254 libraries/display_tbl.lib.php:1164 -#: libraries/display_tbl.lib.php:2055 libraries/sql_query_form.lib.php:453 -#: pdf_pages.php:285 pdf_pages.php:424 pdf_pages.php:460 pdf_pages.php:488 +#: db_search.php:254 libraries/display_tbl.lib.php:1163 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 msgid "Delete" @@ -570,66 +542,66 @@ msgstr "У табліцы(ах):" msgid "Inside column:" msgstr "Унутры поля:" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2830 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:75 +#: db_structure.php:79 db_structure.php:80 db_structure.php:92 +#: db_structure.php:93 db_structure.php:105 db_structure.php:106 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 +#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Уставіць" -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2827 libraries/common.lib.php:2834 -#: libraries/db_links.inc.php:62 libraries/export/htmlword.php:22 +#: db_structure.php:81 db_structure.php:94 db_structure.php:107 +#: libraries/common.lib.php:2832 libraries/common.lib.php:2839 +#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 -#: libraries/tbl_links.inc.php:55 pmd_general.php:133 -#: server_privileges.php:593 server_replication.php:314 tbl_tracking.php:268 +#: libraries/tbl_links.inc.php:54 pmd_general.php:133 +#: server_privileges.php:592 server_replication.php:313 tbl_tracking.php:263 msgid "Structure" msgstr "Структура" -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:544 db_structure.php:545 db_tracking.php:90 -#: libraries/Index.class.php:482 libraries/common.lib.php:1659 -#: libraries/db_links.inc.php:99 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:126 -#: server_databases.php:351 tbl_structure.php:26 tbl_structure.php:150 -#: tbl_structure.php:151 tbl_structure.php:470 +#: db_structure.php:82 db_structure.php:83 db_structure.php:95 +#: db_structure.php:96 db_structure.php:108 db_structure.php:109 +#: db_structure.php:530 db_structure.php:531 db_tracking.php:86 +#: libraries/Index.class.php:482 libraries/common.lib.php:1663 +#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 +#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 +#: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" msgstr "Выдаліць" -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:542 db_structure.php:543 libraries/common.lib.php:1658 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:104 +#: db_structure.php:84 db_structure.php:85 db_structure.php:97 +#: db_structure.php:98 db_structure.php:110 db_structure.php:111 +#: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 +#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 msgid "Empty" msgstr "Ачысьціць" -#: db_structure.php:315 libraries/tbl_links.inc.php:99 +#: db_structure.php:301 libraries/tbl_links.inc.php:98 #, php-format msgid "Table %s has been emptied" msgstr "Табліца %s была ачышчаная" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "View %s has been dropped" msgstr "Выгляд %s быў выдалены" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "Table %s has been dropped" msgstr "Табліца %s была выдаленая" -#: db_structure.php:332 +#: db_structure.php:318 msgid "Tracking is active." msgstr "" -#: db_structure.php:334 +#: db_structure.php:320 msgid "Tracking is not active." msgstr "" -#: db_structure.php:419 libraries/display_tbl.lib.php:1943 +#: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -638,169 +610,175 @@ msgstr "" "Гэты прагляд мае толькі такую колькасьць радкоў. Калі ласка, зьвярніцеся да " "%sдакумэнтацыі%s." -#: db_structure.php:433 db_structure.php:447 libraries/header.inc.php:125 -#: libraries/tbl_info.inc.php:65 tbl_structure.php:184 test/theme.php:73 +#: db_structure.php:419 db_structure.php:433 libraries/header.inc.php:125 +#: libraries/tbl_info.inc.php:60 tbl_structure.php:183 test/theme.php:73 msgid "View" msgstr "Выгляд" -#: db_structure.php:484 libraries/db_structure.lib.php:40 -#: libraries/server_links.inc.php:69 server_replication.php:32 -#: server_replication.php:163 server_status.php:368 +#: db_structure.php:470 libraries/db_structure.lib.php:40 +#: libraries/server_links.inc.php:69 server_replication.php:31 +#: server_replication.php:162 server_status.php:368 msgid "Replication" msgstr "Рэплікацыя" -#: db_structure.php:488 +#: db_structure.php:474 msgid "Sum" msgstr "Усяго" -#: db_structure.php:495 libraries/StorageEngine.class.php:349 +#: db_structure.php:481 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" "%s зьяўляецца машынай захаваньня дадзеных па змоўчаньні на гэтым MySQL-" "сэрвэры." -#: db_structure.php:523 db_structure.php:540 db_structure.php:541 -#: libraries/display_tbl.lib.php:2080 libraries/display_tbl.lib.php:2085 -#: libraries/mult_submits.inc.php:15 server_databases.php:345 -#: server_databases.php:350 server_privileges.php:1588 tbl_structure.php:454 -#: tbl_structure.php:463 +#: db_structure.php:509 db_structure.php:526 db_structure.php:527 +#: libraries/display_tbl.lib.php:2039 libraries/display_tbl.lib.php:2044 +#: libraries/mult_submits.inc.php:15 server_databases.php:343 +#: server_databases.php:348 server_privileges.php:1592 tbl_structure.php:452 +#: tbl_structure.php:461 msgid "With selected:" msgstr "З адзначанымі:" -#: db_structure.php:526 libraries/display_tbl.lib.php:2075 -#: server_databases.php:347 server_privileges.php:569 -#: server_privileges.php:1591 tbl_structure.php:457 +#: db_structure.php:512 libraries/display_tbl.lib.php:2034 +#: server_databases.php:345 server_privileges.php:568 +#: server_privileges.php:1595 tbl_structure.php:455 msgid "Check All" msgstr "Адзначыць усё" -#: db_structure.php:530 libraries/display_tbl.lib.php:2076 -#: libraries/replication_gui.lib.php:35 server_databases.php:349 -#: server_privileges.php:572 server_privileges.php:1595 tbl_structure.php:461 +#: db_structure.php:516 libraries/display_tbl.lib.php:2035 +#: libraries/replication_gui.lib.php:35 server_databases.php:347 +#: server_privileges.php:571 server_privileges.php:1599 tbl_structure.php:459 msgid "Uncheck All" msgstr "Зьняць усе адзнакі" -#: db_structure.php:535 +#: db_structure.php:521 msgid "Check tables having overhead" msgstr "Адзначыць тыя, што патрабуюць аптымізацыі" -#: db_structure.php:546 db_structure.php:547 db_structure.php:598 -#: libraries/display_tbl.lib.php:2179 libraries/mult_submits.inc.php:27 -#: tbl_structure.php:491 tbl_structure.php:493 +#: db_structure.php:532 db_structure.php:533 db_structure.php:584 +#: libraries/display_tbl.lib.php:2138 libraries/mult_submits.inc.php:27 +#: tbl_structure.php:489 tbl_structure.php:491 msgid "Print view" msgstr "Вэрсія для друку" -#: db_structure.php:548 db_structure.php:549 libraries/mult_submits.inc.php:41 -#: tbl_operations.php:580 +#: db_structure.php:534 db_structure.php:535 libraries/mult_submits.inc.php:41 +#: tbl_operations.php:578 msgid "Check table" msgstr "Праверыць табліцу" -#: db_structure.php:550 db_structure.php:551 libraries/mult_submits.inc.php:46 -#: tbl_operations.php:620 tbl_structure.php:708 tbl_structure.php:710 +#: db_structure.php:536 db_structure.php:537 libraries/mult_submits.inc.php:46 +#: tbl_operations.php:618 tbl_structure.php:706 tbl_structure.php:708 msgid "Optimize table" msgstr "Аптымізаваць табліцу" -#: db_structure.php:552 db_structure.php:553 libraries/mult_submits.inc.php:51 -#: tbl_operations.php:610 +#: db_structure.php:538 db_structure.php:539 libraries/mult_submits.inc.php:51 +#: tbl_operations.php:608 msgid "Repair table" msgstr "Рамантаваць табліцу" -#: db_structure.php:554 db_structure.php:555 libraries/mult_submits.inc.php:56 -#: tbl_operations.php:600 +#: db_structure.php:540 db_structure.php:541 libraries/mult_submits.inc.php:56 +#: tbl_operations.php:598 msgid "Analyze table" msgstr "Аналізаваць табліцу" -#: db_structure.php:556 db_structure.php:557 libraries/db_links.inc.php:70 -#: libraries/display_export.lib.php:82 libraries/display_tbl.lib.php:2093 -#: libraries/display_tbl.lib.php:2224 libraries/mult_submits.inc.php:61 -#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:81 -#: pmd_pdf.php:83 pmd_pdf.php:108 server_privileges.php:1372 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 +#: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 +#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 +#: pmd_pdf.php:81 pmd_pdf.php:106 server_privileges.php:1376 #: setup/frames/menu.inc.php:22 tbl_row_action.php:58 msgid "Export" msgstr "Экспарт" -#: db_structure.php:605 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:591 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "Слоўнік дадзеных" -#: db_tracking.php:65 +#: db_tracking.php:61 #, fuzzy msgid "Tracked tables" msgstr "Праверыць табліцу" -#: db_tracking.php:70 libraries/export/htmlword.php:85 +#: db_tracking.php:66 libraries/export/htmlword.php:85 #: libraries/export/latex.php:152 libraries/export/odt.php:112 #: libraries/export/sql.php:339 libraries/export/texytext.php:84 #: libraries/export/xml.php:254 libraries/header.inc.php:105 -#: libraries/header_printview.inc.php:57 server_databases.php:168 -#: server_privileges.php:1652 server_privileges.php:1713 -#: server_privileges.php:1971 server_processlist.php:55 -#: server_synchronize.php:1178 server_synchronize.php:1182 -#: tbl_tracking.php:590 test/theme.php:64 +#: libraries/header_printview.inc.php:57 server_databases.php:166 +#: server_privileges.php:1656 server_privileges.php:1717 +#: server_privileges.php:1975 server_processlist.php:55 +#: server_synchronize.php:1177 server_synchronize.php:1181 +#: tbl_tracking.php:585 test/theme.php:64 msgid "Database" msgstr "База дадзеных" -#: db_tracking.php:72 +#: db_tracking.php:68 #, fuzzy msgid "Last version" msgstr "Стварыць сувязь" -#: db_tracking.php:73 tbl_tracking.php:593 +#: db_tracking.php:69 tbl_tracking.php:588 #, fuzzy msgid "Created" msgstr "Стварыць" -#: db_tracking.php:74 tbl_tracking.php:594 +#: db_tracking.php:70 tbl_tracking.php:589 msgid "Updated" msgstr "" -#: db_tracking.php:76 libraries/Index.class.php:439 -#: libraries/db_structure.lib.php:44 server_databases.php:202 -#: server_privileges.php:1534 server_privileges.php:1717 -#: server_privileges.php:2065 tbl_structure.php:186 +#: db_tracking.php:71 libraries/common.lib.php:1361 +#: libraries/server_links.inc.php:48 server_processlist.php:58 +#: tbl_tracking.php:590 test/theme.php:100 +msgid "Status" +msgstr "Стан" + +#: db_tracking.php:72 libraries/Index.class.php:439 +#: libraries/db_structure.lib.php:44 server_databases.php:200 +#: server_privileges.php:1538 server_privileges.php:1721 +#: server_privileges.php:2069 tbl_structure.php:185 msgid "Action" msgstr "Дзеяньне" -#: db_tracking.php:87 db_tracking.php:119 +#: db_tracking.php:83 db_tracking.php:115 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:105 tbl_tracking.php:547 tbl_tracking.php:605 -#: tbl_tracking.php:612 +#: db_tracking.php:101 tbl_tracking.php:542 tbl_tracking.php:600 +#: tbl_tracking.php:607 msgid "active" msgstr "" -#: db_tracking.php:107 tbl_tracking.php:549 tbl_tracking.php:607 -#: tbl_tracking.php:609 +#: db_tracking.php:103 tbl_tracking.php:544 tbl_tracking.php:602 +#: tbl_tracking.php:604 msgid "not active" msgstr "" -#: db_tracking.php:120 +#: db_tracking.php:116 #, fuzzy msgid "Versions" msgstr "Пэрсыдзкая" -#: db_tracking.php:121 tbl_tracking.php:378 tbl_tracking.php:623 +#: db_tracking.php:117 tbl_tracking.php:373 tbl_tracking.php:618 msgid "Tracking report" msgstr "" -#: db_tracking.php:122 tbl_tracking.php:250 tbl_tracking.php:623 +#: db_tracking.php:118 tbl_tracking.php:245 tbl_tracking.php:618 #, fuzzy msgid "Structure snapshot" msgstr "Толькі структуру" -#: db_tracking.php:151 +#: db_tracking.php:147 #, fuzzy msgid "Untracked tables" msgstr "Праверыць табліцу" -#: db_tracking.php:171 db_tracking.php:173 tbl_structure.php:527 -#: tbl_structure.php:529 +#: db_tracking.php:167 db_tracking.php:169 tbl_structure.php:525 +#: tbl_structure.php:527 #, fuzzy msgid "Track table" msgstr "Праверыць табліцу" -#: db_tracking.php:199 +#: db_tracking.php:195 #, fuzzy msgid "Database Log" msgstr "База дадзеных" @@ -809,12 +787,12 @@ msgstr "База дадзеных" msgid "Selected export type has to be saved in file!" msgstr "Дадзеныя выбранага тыпу экспартаваньня мусяць быць зазаванымі ў файл!" -#: export.php:153 export.php:178 export.php:620 +#: export.php:152 export.php:177 export.php:615 #, php-format msgid "Insufficient space to save the file %s." msgstr "Недастаткова месца для захаваньня ў файл %s." -#: export.php:287 +#: export.php:286 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -822,17 +800,17 @@ msgstr "" "Файл %s ужо існуе на сэрвэры, зьмяніце імя файла або праверце опцыю " "перазапісу." -#: export.php:291 export.php:295 +#: export.php:290 export.php:294 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Вэб-сэрвэр ня мае дазволу для захаваньня ў файл %s." -#: export.php:622 +#: export.php:617 #, php-format msgid "Dump has been saved to file %s." msgstr "Дамп захаваны ў файл %s." -#: import.php:59 +#: import.php:58 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -842,14 +820,14 @@ msgstr "" "зьвярніцеся да %sдакумэнтацыі%s для высьвятленьня спосабаў абыйсьці гэтае " "абмежаваньне." -#: import.php:278 import.php:331 libraries/File.class.php:840 -#: libraries/File.class.php:950 +#: import.php:277 import.php:330 libraries/File.class.php:566 +#: libraries/File.class.php:676 msgid "File could not be read" msgstr "Немагчыма прачытаць файл" -#: import.php:286 import.php:295 import.php:314 import.php:323 -#: libraries/File.class.php:1020 libraries/File.class.php:1028 -#: libraries/File.class.php:1044 libraries/File.class.php:1052 +#: import.php:285 import.php:294 import.php:313 import.php:322 +#: libraries/File.class.php:746 libraries/File.class.php:754 +#: libraries/File.class.php:770 libraries/File.class.php:778 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -859,7 +837,7 @@ msgstr "" "(%s). Ягоная падтрымка або не рэалізаваная, або адключаная ў вашай " "канфігурацыі." -#: import.php:336 +#: import.php:335 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -869,30 +847,30 @@ msgstr "" "загружаны, альбо памер файла перавысіў максымальны памер, вызначаны " "канфігурацыяй PHP. Гл. FAQ 1.16." -#: import.php:371 libraries/display_import.lib.php:23 +#: import.php:370 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "" "Немагчыма загрузіць плагіны імпартаваньня, калі ласка, праверце ўсталёўку!" -#: import.php:396 +#: import.php:395 msgid "The bookmark has been deleted." msgstr "Закладка была выдаленая." -#: import.php:400 +#: import.php:399 msgid "Showing bookmark" msgstr "Паказваючы закладку" -#: import.php:402 sql.php:625 +#: import.php:401 sql.php:618 #, php-format msgid "Bookmark %s created" msgstr "Закладка %s створаная" -#: import.php:408 import.php:414 +#: import.php:407 import.php:413 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Імпартраваньне пасьпяхова завершанае, выканана %d запытаў." -#: import.php:423 +#: import.php:422 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -900,7 +878,7 @@ msgstr "" "Выйшаў дазволены час выкананьня скрыпта. Калі вы хочаце завершыць " "імпартаваньне, калі ласка, загрузіце файл зноў і імпартаваньне ўзнавіцца." -#: import.php:425 +#: import.php:424 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -909,19 +887,19 @@ msgstr "" "звычайна значыць, што phpMyAdmin ня зможа скончыць гэтае імпартаваньня, калі " "вы не павялічыце ліміты выкананьня php-скрыптоў." -#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:240 +#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:239 #: user_password.php:110 msgid "Back" msgstr "Назад" -#: index.php:188 +#: index.php:183 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "Для работы phpMyAdmin патрэбны браўзэр з падтрымкай фрэймаў." -#: js/messages.php:25 server_synchronize.php:344 server_synchronize.php:356 -#: server_synchronize.php:372 server_synchronize.php:379 -#: server_synchronize.php:738 server_synchronize.php:766 -#: server_synchronize.php:794 server_synchronize.php:806 +#: js/messages.php:25 server_synchronize.php:343 server_synchronize.php:355 +#: server_synchronize.php:371 server_synchronize.php:378 +#: server_synchronize.php:737 server_synchronize.php:765 +#: server_synchronize.php:793 server_synchronize.php:805 msgid "Click to select" msgstr "" @@ -929,15 +907,15 @@ msgstr "" msgid "Click to unselect" msgstr "" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:88 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:87 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Каманды \"DROP DATABASE\" адключаныя." -#: js/messages.php:30 libraries/mult_submits.inc.php:257 sql.php:187 +#: js/messages.php:30 libraries/mult_submits.inc.php:256 sql.php:186 msgid "Do you really want to " msgstr "Ці сапраўды вы жадаеце " -#: js/messages.php:31 libraries/mult_submits.inc.php:257 sql.php:171 +#: js/messages.php:31 libraries/mult_submits.inc.php:256 sql.php:170 msgid "You are about to DESTROY a complete database!" msgstr "Вы зьбіраеце ВЫДАЛІЦЬ базу дадзеных цалкам!" @@ -966,11 +944,11 @@ msgstr "Пустое імя хосту!" msgid "The user name is empty!" msgstr "Пустое імя карыстальніка!" -#: js/messages.php:44 server_privileges.php:1228 user_password.php:65 +#: js/messages.php:44 server_privileges.php:1229 user_password.php:65 msgid "The password is empty!" msgstr "Пусты пароль!" -#: js/messages.php:45 server_privileges.php:1226 user_password.php:68 +#: js/messages.php:45 server_privileges.php:1227 user_password.php:68 msgid "The passwords aren't the same!" msgstr "Паролі не супадаюць!" @@ -978,27 +956,27 @@ msgstr "Паролі не супадаюць!" msgid "Cancel" msgstr "Скасаваць" -#: js/messages.php:52 pmd_save_pos.php:53 +#: js/messages.php:52 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "Мадыфікацыі былі захаваныя" -#: js/messages.php:53 pmd_relation_upd.php:48 +#: js/messages.php:53 pmd_relation_upd.php:47 msgid "Relation deleted" msgstr "Сувязь выдаленая" -#: js/messages.php:54 pmd_relation_new.php:63 +#: js/messages.php:54 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "Сувязь FOREIGN KEY была дададзеная" -#: js/messages.php:55 pmd_relation_new.php:85 +#: js/messages.php:55 pmd_relation_new.php:84 msgid "Internal relation added" msgstr "Унутраная сувязь дададзеная" -#: js/messages.php:56 pmd_relation_new.php:62 pmd_relation_new.php:87 +#: js/messages.php:56 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "Памылка: сувязь не дададзеная." -#: js/messages.php:57 pmd_relation_new.php:30 +#: js/messages.php:57 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "Памылка: сувязь ужо існуе." @@ -1006,13 +984,13 @@ msgstr "Памылка: сувязь ужо існуе." msgid "Error saving coordinates for Designer." msgstr "Памылка захаваньня каардынатаў." -#: js/messages.php:59 libraries/relation.lib.php:94 -#: libraries/relation.lib.php:106 +#: js/messages.php:59 libraries/relation.lib.php:89 +#: libraries/relation.lib.php:101 msgid "General relation features" msgstr "Магчымасьці асноўных сувязяў" -#: js/messages.php:59 libraries/relation.lib.php:88 -#: libraries/relation.lib.php:95 +#: js/messages.php:59 libraries/relation.lib.php:83 +#: libraries/relation.lib.php:90 msgid "Disabled" msgstr "Адключана" @@ -1028,7 +1006,7 @@ msgstr "Выберыце зьнешні ключ" msgid "Please select the primary key or a unique key" msgstr "Калі ласка, выберыце першасны (PRIMARY) альбо ўнікальны ключ (UNIQUE)" -#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:547 +#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" @@ -1058,10 +1036,10 @@ msgid "Prev" msgstr "Папярэдняя старонка" #. l10n: Display text for next month link in calendar -#: js/messages.php:81 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:337 -#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:422 -#: tbl_structure.php:800 +#: js/messages.php:81 libraries/common.lib.php:2358 +#: libraries/common.lib.php:2361 libraries/display_tbl.lib.php:336 +#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 +#: tbl_structure.php:798 msgid "Next" msgstr "Наступная старонка" @@ -1135,27 +1113,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1562 +#: js/messages.php:101 libraries/common.lib.php:1566 msgid "Jan" msgstr "Сту" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1564 +#: js/messages.php:103 libraries/common.lib.php:1568 msgid "Feb" msgstr "Лют" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1566 +#: js/messages.php:105 libraries/common.lib.php:1570 msgid "Mar" msgstr "Сак" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1568 +#: js/messages.php:107 libraries/common.lib.php:1572 msgid "Apr" msgstr "Кра" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1570 +#: js/messages.php:109 libraries/common.lib.php:1574 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1163,37 +1141,37 @@ msgid "May" msgstr "Тра" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1572 +#: js/messages.php:111 libraries/common.lib.php:1576 msgid "Jun" msgstr "Чэр" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1574 +#: js/messages.php:113 libraries/common.lib.php:1578 msgid "Jul" msgstr "Ліп" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1576 +#: js/messages.php:115 libraries/common.lib.php:1580 msgid "Aug" msgstr "Жні" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1578 +#: js/messages.php:117 libraries/common.lib.php:1582 msgid "Sep" msgstr "Вер" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1580 +#: js/messages.php:119 libraries/common.lib.php:1584 msgid "Oct" msgstr "Кас" #. l10n: Short month name -#: js/messages.php:121 libraries/common.lib.php:1582 +#: js/messages.php:121 libraries/common.lib.php:1586 msgid "Nov" msgstr "Ліс" #. l10n: Short month name -#: js/messages.php:123 libraries/common.lib.php:1584 +#: js/messages.php:123 libraries/common.lib.php:1588 msgid "Dec" msgstr "Сьн" @@ -1234,37 +1212,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1587 +#: js/messages.php:136 libraries/common.lib.php:1591 msgid "Sun" msgstr "Ндз" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1589 +#: js/messages.php:138 libraries/common.lib.php:1593 msgid "Mon" msgstr "Пан" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1591 +#: js/messages.php:140 libraries/common.lib.php:1595 msgid "Tue" msgstr "Аўт" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1593 +#: js/messages.php:142 libraries/common.lib.php:1597 msgid "Wed" msgstr "Сер" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1595 +#: js/messages.php:144 libraries/common.lib.php:1599 msgid "Thu" msgstr "Цач" #. l10n: Short week day name -#: js/messages.php:146 libraries/common.lib.php:1597 +#: js/messages.php:146 libraries/common.lib.php:1601 msgid "Fri" msgstr "Пят" #. l10n: Short week day name -#: js/messages.php:148 libraries/common.lib.php:1599 +#: js/messages.php:148 libraries/common.lib.php:1603 msgid "Sat" msgstr "Суб" @@ -1344,18 +1322,13 @@ msgstr "у сэкунду" msgid "Font size" msgstr "Памер шрыфта" -#: libraries/File.class.php:336 libraries/File.class.php:424 -#: libraries/File.class.php:561 libraries/File.class.php:700 -msgid "Unknown error in file upload." -msgstr "Падчас загрузкі файла адбылася невядомая памылка." - -#: libraries/File.class.php:406 +#: libraries/File.class.php:315 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "Памер загружанага файла пераўзыходзіць парамэтар upload_max_filesize у php." "ini." -#: libraries/File.class.php:409 +#: libraries/File.class.php:318 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -1363,59 +1336,63 @@ msgstr "" "Памер загружанага файла пераўзыходзіць парамэтар MAX_FILE_SIZE, які быў " "вызначаны ў HTML-форме." -#: libraries/File.class.php:412 +#: libraries/File.class.php:321 msgid "The uploaded file was only partially uploaded." msgstr "Файл быў загружаны толькі часткова." -#: libraries/File.class.php:415 +#: libraries/File.class.php:324 msgid "Missing a temporary folder." msgstr "Адсутнічае часовая тэчка." -#: libraries/File.class.php:418 +#: libraries/File.class.php:327 msgid "Failed to write file to disk." msgstr "Памылка запісу на дыск." -#: libraries/File.class.php:421 +#: libraries/File.class.php:330 msgid "File upload stopped by extension." msgstr "Загрузка файла спыненая пашырэньнем." -#: libraries/File.class.php:898 +#: libraries/File.class.php:333 +msgid "Unknown error in file upload." +msgstr "Падчас загрузкі файла адбылася невядомая памылка." + +#: libraries/File.class.php:624 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:427 tbl_relation.php:528 +#: libraries/Index.class.php:427 tbl_relation.php:526 msgid "No index defined!" msgstr "Індэкс ня вызначаны!" -#: libraries/Index.class.php:432 server_databases.php:131 tbl_tracking.php:315 +#: libraries/Index.class.php:432 server_databases.php:129 tbl_tracking.php:310 msgid "Indexes" msgstr "Індэксы" #: libraries/Index.class.php:443 libraries/mult_submits.inc.php:102 -#: libraries/tbl_properties.inc.php:518 tbl_structure.php:32 -#: tbl_structure.php:154 tbl_structure.php:158 tbl_structure.php:473 -#: tbl_tracking.php:321 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:31 +#: tbl_structure.php:153 tbl_structure.php:157 tbl_structure.php:471 +#: tbl_tracking.php:316 msgid "Unique" msgstr "Унікальнае" -#: libraries/Index.class.php:444 tbl_tracking.php:322 +#: libraries/Index.class.php:444 tbl_tracking.php:317 msgid "Packed" msgstr "Сьціснутая" -#: libraries/Index.class.php:446 tbl_tracking.php:324 +#: libraries/Index.class.php:446 tbl_tracking.php:319 msgid "Cardinality" msgstr "Колькасьць элемэнтаў" -#: libraries/Index.class.php:449 tbl_tracking.php:278 tbl_tracking.php:327 +#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322 msgid "Comment" msgstr "Камэнтар" #: libraries/Index.class.php:465 libraries/common.lib.php:609 -#: libraries/common.lib.php:1198 libraries/display_tbl.lib.php:1116 +#: libraries/common.lib.php:1191 libraries/display_tbl.lib.php:1115 #: libraries/import.lib.php:1119 libraries/import.lib.php:1143 -#: pdf_pages.php:284 setup/frames/index.inc.php:124 +#: pdf_pages.php:283 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:349 tbl_row_action.php:68 msgid "Edit" msgstr "Рэдагаваць" @@ -1439,15 +1416,15 @@ msgstr "" "іх, магчыма, можна выдаліць." #: libraries/List_Database.class.php:430 libraries/server_links.inc.php:40 -#: server_databases.php:87 server_privileges.php:1652 +#: server_databases.php:85 server_privileges.php:1656 #: setup/lib/messages.inc.php:107 test/theme.php:92 msgid "Databases" msgstr "Базы дадзеных" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:259 libraries/import.lib.php:134 pdf_schema.php:31 -#: pdf_schema.php:231 tbl_change.php:1023 tbl_operations.php:212 -#: tbl_relation.php:289 view_operations.php:61 +#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 +#: tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Памылка" @@ -1475,41 +1452,41 @@ msgid_plural "%1$d rows inserted." msgstr[0] "Устаўлена радкоў: %1$d." msgstr[1] "Устаўлена радкоў: %1$d." -#: libraries/StorageEngine.class.php:196 +#: libraries/StorageEngine.class.php:194 msgid "" "There is no detailed status information available for this storage engine." msgstr "" "Для гэтай машыны захаваньня дадзеных дэтальная інфармацыя не даступная." -#: libraries/StorageEngine.class.php:352 +#: libraries/StorageEngine.class.php:354 #, php-format msgid "%s is available on this MySQL server." msgstr "%s даступная на гэтым MySQL-сэрвэры." -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:357 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s была адключаная для рэтага MySQL-сэрвэра." -#: libraries/StorageEngine.class.php:359 +#: libraries/StorageEngine.class.php:361 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "Гэты сэрвэр MySQL не падтрымлівае машыну захаваньня дадзеных %s." -#: libraries/Table.class.php:1018 +#: libraries/Table.class.php:1017 msgid "Invalid database" msgstr "Няправільная база дадзеных" -#: libraries/Table.class.php:1032 tbl_get_field.php:25 +#: libraries/Table.class.php:1031 tbl_get_field.php:25 msgid "Invalid table name" msgstr "Некарэктнае імя табліцы" -#: libraries/Table.class.php:1047 +#: libraries/Table.class.php:1046 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "Памылка перайменаваньня табліцы %1$s у %2$s" -#: libraries/Table.class.php:1131 +#: libraries/Table.class.php:1129 #, php-format msgid "Table %s has been renamed to %s" msgstr "Табліца %s была перайменаваная ў %s" @@ -1527,22 +1504,22 @@ msgstr "Папярэдні прагляд недаступны." msgid "take it" msgstr "гэтая" -#: libraries/Theme_Manager.class.php:114 +#: libraries/Theme_Manager.class.php:109 #, php-format msgid "Default theme %s not found!" msgstr "Тэма па змоўчаньні %s ня знойдзеная!" -#: libraries/Theme_Manager.class.php:152 +#: libraries/Theme_Manager.class.php:147 #, php-format msgid "Theme %s not found!" msgstr "Тэма %s ня знойдзеная!" -#: libraries/Theme_Manager.class.php:220 +#: libraries/Theme_Manager.class.php:215 #, php-format msgid "Theme path not found for theme %s!" msgstr "Ня знойдзены шлях да тэмы %s!" -#: libraries/Theme_Manager.class.php:296 test/theme.php:160 themes.php:20 +#: libraries/Theme_Manager.class.php:291 test/theme.php:160 themes.php:20 #: themes.php:40 msgid "Theme / Style" msgstr "Тэма / Стыль" @@ -1657,19 +1634,19 @@ msgstr "Дзейны ключ аўтэнтыфікацыі не падключа msgid "Authenticating..." msgstr "Аўтэнтыфікацыя..." -#: libraries/blobstreaming.lib.php:689 +#: libraries/blobstreaming.lib.php:340 msgid "View image" msgstr "" -#: libraries/blobstreaming.lib.php:693 +#: libraries/blobstreaming.lib.php:344 msgid "Play audio" msgstr "" -#: libraries/blobstreaming.lib.php:698 +#: libraries/blobstreaming.lib.php:349 msgid "View video" msgstr "" -#: libraries/blobstreaming.lib.php:702 +#: libraries/blobstreaming.lib.php:353 msgid "Download file" msgstr "" @@ -1725,7 +1702,7 @@ msgstr "Сэрвэр" msgid "Invalid authentication method set in configuration:" msgstr "У канфігурацыі вызначаны некарэктны мэтад аўтэнтыфікацыі:" -#: libraries/common.inc.php:909 +#: libraries/common.inc.php:908 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Вам трэба абнавіць %s да вэрсіі %s ці пазьнейшай." @@ -1752,7 +1729,8 @@ msgstr "Адпраўлена" #: libraries/common.lib.php:425 libraries/common.lib.php:427 #: libraries/common.lib.php:429 libraries/common.lib.php:445 #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 -#: libraries/display_export.lib.php:163 libraries/relation.lib.php:84 +#: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 +#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 #: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" @@ -1767,149 +1745,149 @@ msgstr "SQL-запыт" msgid "MySQL said: " msgstr "Адказ MySQL: " -#: libraries/common.lib.php:1136 +#: libraries/common.lib.php:1129 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1174 setup/lib/messages.inc.php:350 +#: libraries/common.lib.php:1167 setup/lib/messages.inc.php:350 msgid "Explain SQL" msgstr "Тлумачыць SQL" -#: libraries/common.lib.php:1177 +#: libraries/common.lib.php:1170 msgid "Skip Explain SQL" msgstr "Не тлумачыць SQL" -#: libraries/common.lib.php:1211 +#: libraries/common.lib.php:1204 msgid "Without PHP Code" msgstr "Без PHP-коду" -#: libraries/common.lib.php:1214 setup/lib/messages.inc.php:352 +#: libraries/common.lib.php:1207 setup/lib/messages.inc.php:352 msgid "Create PHP Code" msgstr "Стварыць PHP-код" -#: libraries/common.lib.php:1232 server_status.php:451 +#: libraries/common.lib.php:1225 server_status.php:451 #: setup/lib/messages.inc.php:351 msgid "Refresh" msgstr "Абнавіць" -#: libraries/common.lib.php:1241 +#: libraries/common.lib.php:1234 msgid "Skip Validate SQL" msgstr "Не правяраць SQL" -#: libraries/common.lib.php:1244 setup/lib/messages.inc.php:353 +#: libraries/common.lib.php:1237 setup/lib/messages.inc.php:353 msgid "Validate SQL" msgstr "Праверыць SQL" -#: libraries/common.lib.php:1283 +#: libraries/common.lib.php:1287 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1285 +#: libraries/common.lib.php:1289 #, fuzzy #| msgid "Engines" msgid "Inline" msgstr "Машыны" -#: libraries/common.lib.php:1339 libraries/common.lib.php:1354 +#: libraries/common.lib.php:1343 libraries/common.lib.php:1358 msgid "Profiling" msgstr "Прафіляваньне" -#: libraries/common.lib.php:1358 libraries/tbl_triggers.lib.php:27 +#: libraries/common.lib.php:1362 libraries/tbl_triggers.lib.php:27 #: server_processlist.php:57 msgid "Time" msgstr "Час" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "B" msgstr "Б" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "KiB" msgstr "КiБ" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "MiB" msgstr "МіБ" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "GiB" msgstr "ГіБ" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "TiB" msgstr "ТіБ" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "PiB" msgstr "ПіБ" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "EiB" msgstr "ЭіБ" #. l10n: Thousands separator -#: libraries/common.lib.php:1424 +#: libraries/common.lib.php:1428 msgid "," msgstr "," #. l10n: Decimal separator -#: libraries/common.lib.php:1426 +#: libraries/common.lib.php:1430 msgid "." msgstr "." #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1603 +#: libraries/common.lib.php:1607 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y, %H:%M" -#: libraries/common.lib.php:1909 +#: libraries/common.lib.php:1913 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s дзён, %s гадзінаў, %s хвілінаў і %s сэкундаў" -#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 -#: libraries/display_tbl.lib.php:289 server_status.php:718 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 +#: libraries/display_tbl.lib.php:288 server_status.php:718 msgid "Begin" msgstr "Першая старонка" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 -#: libraries/display_tbl.lib.php:290 server_binlog.php:154 +#: libraries/common.lib.php:2328 libraries/common.lib.php:2331 +#: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "Папярэдняя старонка" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 -#: libraries/display_tbl.lib.php:352 +#: libraries/common.lib.php:2359 libraries/common.lib.php:2362 +#: libraries/display_tbl.lib.php:351 msgid "End" msgstr "Апошняя старонка" -#: libraries/common.lib.php:2429 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "Перайсьці да базы дадзеных "%s"." -#: libraries/common.lib.php:2448 +#: libraries/common.lib.php:2453 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" "Існуе вядомая памылка з выкарыстаньнем парамэтра %s, глядзіце апісаньне на %s" -#: libraries/common.lib.php:2828 libraries/common.lib.php:2835 -#: libraries/db_links.inc.php:67 libraries/export/sql.php:24 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 +#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 -#: libraries/tbl_links.inc.php:59 querywindow.php:89 test/theme.php:96 +#: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2837 libraries/db_links.inc.php:103 -#: libraries/tbl_links.inc.php:94 libraries/tbl_links.inc.php:116 -#: view_operations.php:88 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: view_operations.php:87 msgid "Operations" msgstr "Апэрацыі" -#: libraries/core.lib.php:282 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1925,38 +1903,38 @@ msgstr "Падзеі" msgid "Name" msgstr "Назва" -#: libraries/db_links.inc.php:44 +#: libraries/db_links.inc.php:43 #, php-format msgid "Database %s has been dropped." msgstr "База дадзеных %s была выдаленая." -#: libraries/db_links.inc.php:56 libraries/db_links.inc.php:57 -#: libraries/db_links.inc.php:58 +#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 +#: libraries/db_links.inc.php:57 msgid "Database seems to be empty!" msgstr "База дадзеных — пустая!" -#: libraries/db_links.inc.php:80 libraries/relation.lib.php:142 -#: libraries/tbl_links.inc.php:68 +#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:85 +#: libraries/db_links.inc.php:84 msgid "Query" msgstr "Запыт згодна прыкладу" -#: libraries/db_links.inc.php:90 libraries/relation.lib.php:138 +#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 msgid "Designer" msgstr "Дызайнэр" -#: libraries/db_links.inc.php:97 libraries/server_links.inc.php:87 -#: libraries/tbl_links.inc.php:90 pmd_pdf.php:83 pmd_pdf.php:109 +#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Імрарт" -#: libraries/db_links.inc.php:110 libraries/server_links.inc.php:65 -#: server_privileges.php:111 server_privileges.php:1714 -#: server_privileges.php:2063 test/theme.php:116 +#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: server_privileges.php:110 server_privileges.php:1718 +#: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" msgstr "Прывілеі" @@ -1968,14 +1946,14 @@ msgstr "Працэдуры" msgid "Return type" msgstr "Тып працэдуры" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1847 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1806 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "Значэньне можа быць прыблізным. Гл. FAQ 3.11" -#: libraries/db_structure.lib.php:60 server_databases.php:141 -#: tbl_printview.php:334 tbl_structure.php:681 +#: libraries/db_structure.lib.php:60 server_databases.php:139 +#: tbl_printview.php:333 tbl_structure.php:679 msgid "Overhead" msgstr "Выкарыстаньне рэсурсаў" @@ -1994,7 +1972,7 @@ msgstr "Сэрвэр не адказвае" msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "(або сокет лякальнага сэрвэра MySQL не сканфігураваны правільна)" -#: libraries/dbi/mysql.dbi.lib.php:358 tbl_structure.php:607 +#: libraries/dbi/mysql.dbi.lib.php:358 tbl_structure.php:605 msgid "Details..." msgstr "Падрабязьней..." @@ -2004,22 +1982,22 @@ msgid "Change password" msgstr "Зьмяніць пароль" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:807 +#: libraries/replication_gui.lib.php:347 server_privileges.php:806 msgid "No Password" msgstr "Без пароля" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1530 server_synchronize.php:1174 +#: libraries/replication_gui.lib.php:351 server_privileges.php:795 +#: server_privileges.php:799 server_privileges.php:810 +#: server_privileges.php:1534 server_synchronize.php:1173 msgid "Password" msgstr "Пароль" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:815 server_privileges.php:818 +#: server_privileges.php:814 server_privileges.php:817 msgid "Re-type" msgstr "Пацьверджаньне" @@ -2042,8 +2020,8 @@ msgstr "Стварыць новую базу дадзеных" msgid "Create" msgstr "Стварыць" -#: libraries/display_create_database.lib.php:39 server_privileges.php:113 -#: server_privileges.php:1419 server_replication.php:34 +#: libraries/display_create_database.lib.php:39 server_privileges.php:112 +#: server_privileges.php:1423 server_replication.php:33 msgid "No Privileges" msgstr "Без прывілеяў" @@ -2064,52 +2042,52 @@ msgstr "Стварыць новую табліцу ў БД %s" msgid "Number of columns" msgstr "Колькасьць палёў" -#: libraries/display_export.lib.php:41 +#: libraries/display_export.lib.php:35 msgid "Could not load export plugins, please check your installation!" msgstr "" "Немагчыма загрузіць плагіны экспартаваньня, калі ласка, праверце ўсталяваныя " "файлы!" -#: libraries/display_export.lib.php:106 +#: libraries/display_export.lib.php:100 #, fuzzy, php-format #| msgid "Dump %s row(s) starting at record # %s" msgid "Dump %s row(s) starting at row # %s" msgstr "Дамп %s радкоў, пачынаючы з %s." -#: libraries/display_export.lib.php:114 +#: libraries/display_export.lib.php:108 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:124 setup/lib/messages.inc.php:79 +#: libraries/display_export.lib.php:118 setup/lib/messages.inc.php:79 msgid "Save as file" msgstr "Захаваць як файл" -#: libraries/display_export.lib.php:133 +#: libraries/display_export.lib.php:127 #, php-format msgid "Save on server in %s directory" msgstr "Захаваць на сэрвэры ў тэчцы %s" -#: libraries/display_export.lib.php:141 setup/lib/messages.inc.php:87 +#: libraries/display_export.lib.php:135 setup/lib/messages.inc.php:87 msgid "Overwrite existing file(s)" msgstr "Перазапісваць існуючы(я) файл(ы)" -#: libraries/display_export.lib.php:147 +#: libraries/display_export.lib.php:141 msgid "File name template" msgstr "Шаблён назвы файла" -#: libraries/display_export.lib.php:151 +#: libraries/display_export.lib.php:145 msgid "server name" msgstr "імя сэрвэра" -#: libraries/display_export.lib.php:154 +#: libraries/display_export.lib.php:148 msgid "database name" msgstr "імя базы дадзеных" -#: libraries/display_export.lib.php:157 +#: libraries/display_export.lib.php:151 msgid "table name" msgstr "імя табліцы" -#: libraries/display_export.lib.php:161 +#: libraries/display_export.lib.php:155 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2120,39 +2098,39 @@ msgstr "" "выкарыстоўваць радкі фарматаваньня часу. Апроч гэтага, будуць праведзеныя " "наступныя зьмены: %3$s. Астатні тэкст застанецца як ёсьць." -#: libraries/display_export.lib.php:202 +#: libraries/display_export.lib.php:196 msgid "remember template" msgstr "запомніць шаблён" -#: libraries/display_export.lib.php:210 libraries/display_import.lib.php:177 +#: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 #: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 msgid "Character set of the file:" msgstr "Кадыроўка файла:" -#: libraries/display_export.lib.php:235 setup/lib/messages.inc.php:81 +#: libraries/display_export.lib.php:229 setup/lib/messages.inc.php:81 msgid "Compression" msgstr "Сьціск" -#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:196 -#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:529 -#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:574 -#: server_privileges.php:1867 server_processlist.php:74 +#: libraries/display_export.lib.php:234 libraries/display_import.lib.php:196 +#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:528 +#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:573 +#: server_privileges.php:1871 server_processlist.php:74 msgid "None" msgstr "Няма" -#: libraries/display_export.lib.php:247 +#: libraries/display_export.lib.php:241 msgid "\"zipped\"" msgstr "архіваваны ў zip" -#: libraries/display_export.lib.php:253 +#: libraries/display_export.lib.php:247 msgid "\"gzipped\"" msgstr "архіваваны ў gzip" -#: libraries/display_export.lib.php:259 +#: libraries/display_export.lib.php:253 msgid "\"bzipped\"" msgstr "сьціскаць у bzip" -#: libraries/display_export.lib.php:274 libraries/export/sql.php:42 +#: libraries/display_export.lib.php:268 libraries/export/sql.php:42 #: libraries/import/sql.php:31 msgid "SQL compatibility mode" msgstr "Рэжым сумяшчальнасьці SQL" @@ -2187,12 +2165,12 @@ msgid "File uploads are not allowed on this server." msgstr "Загрузкі файлаў не дазволеныя на гэтым сэрвэры." #: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 -#: tbl_change.php:1024 +#: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "Немагчыма адкрыць пазначаную вамі тэчку для загрузкі файлаў" #: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 -#: tbl_change.php:1027 +#: tbl_change.php:925 msgid "web server upload directory" msgstr "тэчка вэб-сэрвэра для загрузкі файлаў" @@ -2278,43 +2256,43 @@ msgstr "Памер паперы" msgid "Language" msgstr "Мова" -#: libraries/display_tbl.lib.php:303 +#: libraries/display_tbl.lib.php:302 #, php-format msgid "%d is not valid row number." msgstr "%d не зьяўляецца карэктным нумарам радка." -#: libraries/display_tbl.lib.php:309 +#: libraries/display_tbl.lib.php:308 #, fuzzy #| msgid "row(s) starting from record #" msgid "row(s) starting from row #" msgstr "радкоў, пачынаючы з запісу #" -#: libraries/display_tbl.lib.php:315 +#: libraries/display_tbl.lib.php:314 msgid "horizontal" msgstr "гарызантальна" -#: libraries/display_tbl.lib.php:316 +#: libraries/display_tbl.lib.php:315 msgid "horizontal (rotated headers)" msgstr "гарызантальна (павернутыя загалоўкі)" -#: libraries/display_tbl.lib.php:317 +#: libraries/display_tbl.lib.php:316 msgid "vertical" msgstr "вэртыкальна" -#: libraries/display_tbl.lib.php:323 +#: libraries/display_tbl.lib.php:322 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "у рэжыме %s і паўтараць загалоўкі праз кожныя %s радкоў" -#: libraries/display_tbl.lib.php:345 +#: libraries/display_tbl.lib.php:344 msgid "This operation could take a long time. Proceed anyway?" msgstr "Гэтая апэрацыя можа заняць шмат часу. Працягваць?" -#: libraries/display_tbl.lib.php:511 +#: libraries/display_tbl.lib.php:510 msgid "Sort by key" msgstr "Сартаваць па ключы" -#: libraries/display_tbl.lib.php:554 libraries/export/codegen.php:38 +#: libraries/display_tbl.lib.php:553 libraries/export/codegen.php:38 #: libraries/export/csv.php:29 libraries/export/excel.php:34 #: libraries/export/htmlword.php:28 libraries/export/latex.php:32 #: libraries/export/mediawiki.php:21 libraries/export/ods.php:26 @@ -2324,99 +2302,99 @@ msgstr "Сартаваць па ключы" #: libraries/export/xlsx.php:26 libraries/export/xml.php:23 #: libraries/export/yaml.php:27 libraries/import.lib.php:1114 #: libraries/import.lib.php:1136 libraries/import/csv.php:31 -#: libraries/import/docsql.php:33 libraries/import/ldi.php:46 +#: libraries/import/docsql.php:32 libraries/import/ldi.php:46 #: libraries/import/ods.php:30 libraries/import/sql.php:19 #: libraries/import/xls.php:25 libraries/import/xlsx.php:25 -#: libraries/import/xml.php:25 tbl_select.php:264 tbl_structure.php:752 +#: libraries/import/xml.php:25 tbl_select.php:263 tbl_structure.php:750 msgid "Options" msgstr "Налады" -#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:569 +#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:568 msgid "Partial Texts" msgstr "Частковыя тэксты" -#: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:573 +#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:572 msgid "Full Texts" msgstr "Поўныя тэксты" -#: libraries/display_tbl.lib.php:586 +#: libraries/display_tbl.lib.php:585 msgid "Relational key" msgstr "Ключ сувязі" -#: libraries/display_tbl.lib.php:587 +#: libraries/display_tbl.lib.php:586 #, fuzzy #| msgid "Relational display field" msgid "Relational display column" msgstr "Адлюстраванае поле сувязі" -#: libraries/display_tbl.lib.php:594 +#: libraries/display_tbl.lib.php:593 msgid "Show binary contents" msgstr "" -#: libraries/display_tbl.lib.php:596 +#: libraries/display_tbl.lib.php:595 msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:598 +#: libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "" -#: libraries/display_tbl.lib.php:606 pmd_general.php:140 tbl_change.php:312 -#: tbl_change.php:318 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:307 +#: tbl_change.php:313 msgid "Hide" msgstr "Схаваць" -#: libraries/display_tbl.lib.php:606 libraries/relation.lib.php:122 -#: libraries/tbl_properties.inc.php:143 transformation_overview.php:46 +#: libraries/display_tbl.lib.php:605 libraries/relation.lib.php:117 +#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46 msgid "Browser transformation" msgstr "Пераўтварэньне MIME-тыпу браўзэрам" -#: libraries/display_tbl.lib.php:1125 libraries/display_tbl.lib.php:1129 -#: libraries/display_tbl.lib.php:1131 +#: libraries/display_tbl.lib.php:1124 libraries/display_tbl.lib.php:1128 +#: libraries/display_tbl.lib.php:1130 msgid "Execute bookmarked query" msgstr "Выканаць запыт з закладак" -#: libraries/display_tbl.lib.php:1144 libraries/display_tbl.lib.php:1156 +#: libraries/display_tbl.lib.php:1143 libraries/display_tbl.lib.php:1155 msgid "The row has been deleted" msgstr "Радок быў выдалены" -#: libraries/display_tbl.lib.php:1183 libraries/display_tbl.lib.php:2055 +#: libraries/display_tbl.lib.php:1182 libraries/display_tbl.lib.php:2014 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "Спыніць" -#: libraries/display_tbl.lib.php:1933 +#: libraries/display_tbl.lib.php:1892 msgid "in query" msgstr "па запыту" -#: libraries/display_tbl.lib.php:1951 +#: libraries/display_tbl.lib.php:1910 msgid "Showing rows" msgstr "Паказаныя запісы" -#: libraries/display_tbl.lib.php:1961 +#: libraries/display_tbl.lib.php:1920 msgid "total" msgstr "усяго" -#: libraries/display_tbl.lib.php:1969 sql.php:523 +#: libraries/display_tbl.lib.php:1928 sql.php:522 #, php-format msgid "Query took %01.4f sec" msgstr "Запыт выконваўся %01.4f сэк" -#: libraries/display_tbl.lib.php:2088 libraries/mult_submits.inc.php:112 -#: querywindow.php:115 querywindow.php:119 querywindow.php:122 -#: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:469 +#: libraries/display_tbl.lib.php:2047 libraries/mult_submits.inc.php:112 +#: querywindow.php:114 querywindow.php:118 querywindow.php:121 +#: tbl_structure.php:23 tbl_structure.php:148 tbl_structure.php:467 msgid "Change" msgstr "Зьмяніць" -#: libraries/display_tbl.lib.php:2158 +#: libraries/display_tbl.lib.php:2117 msgid "Query results operations" msgstr "Дзеяньні з вынікамі запытаў" -#: libraries/display_tbl.lib.php:2186 +#: libraries/display_tbl.lib.php:2145 msgid "Print view (with full texts)" msgstr "Вэрсія для друку (з усім тэкстам)" -#: libraries/display_tbl.lib.php:2359 +#: libraries/display_tbl.lib.php:2318 msgid "Link not found" msgstr "Сувязь ня знойдзеная" @@ -2472,9 +2450,9 @@ msgstr "Стан InnoDB" msgid "Buffer Pool Usage" msgstr "Выкарыстаньне пулу буфэру" -#: libraries/engines/innodb.lib.php:168 server_databases.php:136 -#: server_databases.php:304 server_status.php:524 server_status.php:585 -#: server_status.php:606 tbl_printview.php:349 tbl_structure.php:695 +#: libraries/engines/innodb.lib.php:168 server_databases.php:134 +#: server_databases.php:302 server_status.php:524 server_status.php:585 +#: server_status.php:606 tbl_printview.php:348 tbl_structure.php:693 msgid "Total" msgstr "Агулам" @@ -2611,6 +2589,89 @@ msgstr "" "Буфэр, які выдзяляецца для сартаваньня індэксаў MyISAM падчас REPAIR TABLE " "або падчас стварэньня індэксаў, выкарыстоўваючы CREATE INDEX ці ALTER TABLE." +#: libraries/engines/pbms.lib.php:31 +#, fuzzy +#| msgid "Garbage threshold" +msgid "Garbage Threshold" +msgstr "Парог сьмецьця" + +#: libraries/engines/pbms.lib.php:32 +#, fuzzy +#| msgid "" +#| "The percentage of garbage in a data log file before it is compacted. This " +#| "is a value between 1 and 99. The default is 50." +msgid "The percentage of garbage in a repository file before it is compacted." +msgstr "" +"Адсотак сьмецьця ў файле логу дадзеных перад тым, як ён будзе сьціснуты. " +"Гэтае значэньне можа знаходзіцца ў межах ад 1 да 99. Значэньне па змоўчаньні " +"— 50." + +#: libraries/engines/pbms.lib.php:36 libraries/replication_gui.lib.php:69 +#: server_synchronize.php:1161 +#, fuzzy +msgid "Port" +msgstr "Парадак" + +#: libraries/engines/pbms.lib.php:37 +msgid "" +"The port for the PBMS stream-based communications. Setting this value to 0 " +"will disable HTTP communication with the daemon." +msgstr "" + +#: libraries/engines/pbms.lib.php:41 +msgid "Repository Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:42 +msgid "" +"The maximum size of a BLOB repository file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:46 +msgid "Temp Blob Timeout" +msgstr "" + +#: libraries/engines/pbms.lib.php:47 +msgid "" +"The timeout, in seconds, for temporary BLOBs. Uploaded BLOB data is removed " +"after this time, unless they are referenced by a record in the database." +msgstr "" + +#: libraries/engines/pbms.lib.php:51 +#, fuzzy +#| msgid "Log file threshold" +msgid "Temp Log Threshold" +msgstr "Парог файла логу" + +#: libraries/engines/pbms.lib.php:52 +msgid "" +"The maximum size of a temporary BLOB log file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:56 +msgid "Max Keep Alive" +msgstr "" + +#: libraries/engines/pbms.lib.php:57 +msgid "" +"The timeout for inactive connection with the keep-alive flag set. After this " +"time the connection will be closed. The time-out is in milliseconds (1/1000)." +msgstr "" + +#: libraries/engines/pbms.lib.php:61 +msgid "Metadata Headers" +msgstr "" + +#: libraries/engines/pbms.lib.php:62 +msgid "" +"A \":\" delimited list of metadata headers to be used to initialize the " +"pbms_metadata_header table when a database is created." +msgstr "" + #: libraries/engines/pbxt.lib.php:22 msgid "Index cache size" msgstr "Памер кэшу індэксаў" @@ -2763,7 +2824,7 @@ msgstr "" "будуць перайменаваныя і ім будзе дадзены чарговы найвышэйшы нумар." #: libraries/export/codegen.php:36 setup/lib/messages.inc.php:85 -#: tbl_printview.php:374 tbl_structure.php:736 +#: tbl_printview.php:373 tbl_structure.php:734 msgid "Format" msgstr "Фармат" @@ -2834,9 +2895,9 @@ msgstr "Microsoft Word 2000" #: libraries/export/htmlword.php:23 libraries/export/latex.php:59 #: libraries/export/latex.php:205 libraries/export/odt.php:47 #: libraries/export/sql.php:105 libraries/export/sql.php:865 -#: libraries/export/texytext.php:27 server_databases.php:126 -#: server_privileges.php:576 server_replication.php:315 tbl_printview.php:315 -#: tbl_structure.php:664 +#: libraries/export/texytext.php:27 server_databases.php:124 +#: server_privileges.php:575 server_replication.php:314 tbl_printview.php:314 +#: tbl_structure.php:662 msgid "Data" msgstr "Дадзеныя" @@ -2887,13 +2948,13 @@ msgid "Label key" msgstr "Ключ меткі" #: libraries/export/latex.php:46 libraries/export/odt.php:34 -#: libraries/export/sql.php:90 tbl_relation.php:398 +#: libraries/export/sql.php:90 tbl_relation.php:396 msgid "Relations" msgstr "Сувязі" #: libraries/export/latex.php:52 libraries/export/odt.php:40 #: libraries/export/odt.php:317 libraries/export/sql.php:94 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "MIME-тып" @@ -2901,10 +2962,10 @@ msgstr "MIME-тып" #: libraries/export/xml.php:101 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1529 server_privileges.php:2061 -#: server_processlist.php:54 server_synchronize.php:1158 +#: libraries/replication_gui.lib.php:331 server_privileges.php:730 +#: server_privileges.php:733 server_privileges.php:789 +#: server_privileges.php:1533 server_privileges.php:2065 +#: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "Хост" @@ -3097,8 +3158,8 @@ msgstr "Тып экспарту" msgid "Export contents" msgstr "Тып экспарту" -#: libraries/footer.inc.php:182 libraries/footer.inc.php:193 -#: libraries/footer.inc.php:196 +#: libraries/footer.inc.php:180 libraries/footer.inc.php:191 +#: libraries/footer.inc.php:194 msgid "Open new phpMyAdmin window" msgstr "Адкрыць новае акно phpMyAdmin" @@ -3115,7 +3176,7 @@ msgstr "SQL-вынік" msgid "Generated by" msgstr "Створаны" -#: libraries/import.lib.php:151 sql.php:519 tbl_change.php:180 +#: libraries/import.lib.php:151 sql.php:518 tbl_change.php:175 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL вярнула пусты вынік (то бок нуль радкоў)." @@ -3174,7 +3235,7 @@ msgstr "Ігнараваць радкі, якія паўтараюцца" msgid "Column names in first row" msgstr "" -#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:501 +#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:500 #: view_create.php:147 msgid "Column names" msgstr "Назвы калёнак" @@ -3201,12 +3262,12 @@ msgstr "Некарэктны фармат CSV-дадзеных у радку %d. msgid "Invalid column count in CSV input on line %d." msgstr "Няправільная колькасьць палёў у CSV-дадзеных у радку %d." -#: libraries/import/docsql.php:28 +#: libraries/import/docsql.php:27 msgid "DocSQL" msgstr "DocSQL" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 -#: server_synchronize.php:427 server_synchronize.php:870 +#: libraries/import/docsql.php:30 libraries/tbl_properties.inc.php:616 +#: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "Імя табліцы" @@ -3263,26 +3324,26 @@ msgstr "Няма" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:512 -#: tbl_structure.php:28 tbl_structure.php:152 tbl_structure.php:156 -#: tbl_structure.php:472 +#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:511 +#: tbl_structure.php:27 tbl_structure.php:151 tbl_structure.php:155 +#: tbl_structure.php:470 msgid "Primary" msgstr "Першасны" #: libraries/mult_submits.inc.php:97 libraries/tbl_properties.inc.php:115 -#: libraries/tbl_properties.inc.php:524 tbl_printview.php:324 -#: tbl_structure.php:30 tbl_structure.php:153 tbl_structure.php:157 -#: tbl_structure.php:474 tbl_structure.php:672 +#: libraries/tbl_properties.inc.php:523 tbl_printview.php:323 +#: tbl_structure.php:29 tbl_structure.php:152 tbl_structure.php:156 +#: tbl_structure.php:472 tbl_structure.php:670 msgid "Index" msgstr "Індэкс" -#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:530 -#: tbl_structure.php:34 tbl_structure.php:155 tbl_structure.php:159 -#: tbl_structure.php:477 +#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:529 +#: tbl_structure.php:33 tbl_structure.php:154 tbl_structure.php:158 +#: tbl_structure.php:475 msgid "Fulltext" msgstr "Поўнатэкстэкставае" -#: libraries/mult_submits.inc.php:434 tbl_replace.php:330 +#: libraries/mult_submits.inc.php:433 tbl_replace.php:330 msgid "No change" msgstr "Няма зьменаў" @@ -3290,190 +3351,190 @@ msgstr "Няма зьменаў" msgid "Charset" msgstr "Кадыроўка" -#: libraries/mysql_charsets.lib.php:210 libraries/mysql_charsets.lib.php:411 -#: tbl_change.php:515 +#: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 +#: tbl_change.php:510 msgid "Binary" msgstr "Двайковы" -#: libraries/mysql_charsets.lib.php:222 +#: libraries/mysql_charsets.lib.php:214 msgid "Bulgarian" msgstr "Баўгарская" -#: libraries/mysql_charsets.lib.php:226 libraries/mysql_charsets.lib.php:351 +#: libraries/mysql_charsets.lib.php:218 libraries/mysql_charsets.lib.php:343 msgid "Simplified Chinese" msgstr "Кітайская спрошчаная" -#: libraries/mysql_charsets.lib.php:228 libraries/mysql_charsets.lib.php:371 +#: libraries/mysql_charsets.lib.php:220 libraries/mysql_charsets.lib.php:363 msgid "Traditional Chinese" msgstr "Традыцыйная кітайская" -#: libraries/mysql_charsets.lib.php:232 libraries/mysql_charsets.lib.php:418 +#: libraries/mysql_charsets.lib.php:224 libraries/mysql_charsets.lib.php:410 msgid "case-insensitive" msgstr "без уліку рэгістру" -#: libraries/mysql_charsets.lib.php:235 libraries/mysql_charsets.lib.php:420 +#: libraries/mysql_charsets.lib.php:227 libraries/mysql_charsets.lib.php:412 msgid "case-sensitive" msgstr "з улікам рэгістру" -#: libraries/mysql_charsets.lib.php:238 +#: libraries/mysql_charsets.lib.php:230 msgid "Croatian" msgstr "Харвацкая" -#: libraries/mysql_charsets.lib.php:241 +#: libraries/mysql_charsets.lib.php:233 msgid "Czech" msgstr "Чэская" -#: libraries/mysql_charsets.lib.php:244 +#: libraries/mysql_charsets.lib.php:236 msgid "Danish" msgstr "Дацкая" -#: libraries/mysql_charsets.lib.php:247 +#: libraries/mysql_charsets.lib.php:239 msgid "English" msgstr "Ангельская" -#: libraries/mysql_charsets.lib.php:250 +#: libraries/mysql_charsets.lib.php:242 msgid "Esperanto" msgstr "Эспэранта" -#: libraries/mysql_charsets.lib.php:253 +#: libraries/mysql_charsets.lib.php:245 msgid "Estonian" msgstr "Эстонская" -#: libraries/mysql_charsets.lib.php:256 libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:248 libraries/mysql_charsets.lib.php:251 msgid "German" msgstr "Нямецкая" -#: libraries/mysql_charsets.lib.php:256 +#: libraries/mysql_charsets.lib.php:248 msgid "dictionary" msgstr "слоўнік" -#: libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:251 msgid "phone book" msgstr "тэлефонная кніга" -#: libraries/mysql_charsets.lib.php:262 +#: libraries/mysql_charsets.lib.php:254 msgid "Hungarian" msgstr "Вугорская" -#: libraries/mysql_charsets.lib.php:265 +#: libraries/mysql_charsets.lib.php:257 msgid "Icelandic" msgstr "Ісьляндзкая" -#: libraries/mysql_charsets.lib.php:268 libraries/mysql_charsets.lib.php:358 +#: libraries/mysql_charsets.lib.php:260 libraries/mysql_charsets.lib.php:350 msgid "Japanese" msgstr "Японская" -#: libraries/mysql_charsets.lib.php:271 +#: libraries/mysql_charsets.lib.php:263 msgid "Latvian" msgstr "Латвійская" -#: libraries/mysql_charsets.lib.php:274 +#: libraries/mysql_charsets.lib.php:266 msgid "Lithuanian" msgstr "Літоўская" -#: libraries/mysql_charsets.lib.php:277 libraries/mysql_charsets.lib.php:380 +#: libraries/mysql_charsets.lib.php:269 libraries/mysql_charsets.lib.php:372 msgid "Korean" msgstr "Карэйская" -#: libraries/mysql_charsets.lib.php:280 +#: libraries/mysql_charsets.lib.php:272 msgid "Persian" msgstr "Пэрсыдзкая" -#: libraries/mysql_charsets.lib.php:283 +#: libraries/mysql_charsets.lib.php:275 msgid "Polish" msgstr "Польская" -#: libraries/mysql_charsets.lib.php:286 libraries/mysql_charsets.lib.php:334 +#: libraries/mysql_charsets.lib.php:278 libraries/mysql_charsets.lib.php:326 msgid "West European" msgstr "Заходнеэўрапейская" -#: libraries/mysql_charsets.lib.php:289 +#: libraries/mysql_charsets.lib.php:281 msgid "Romanian" msgstr "Румынская" -#: libraries/mysql_charsets.lib.php:292 +#: libraries/mysql_charsets.lib.php:284 msgid "Slovak" msgstr "Славацкая" -#: libraries/mysql_charsets.lib.php:295 +#: libraries/mysql_charsets.lib.php:287 msgid "Slovenian" msgstr "Славенская" -#: libraries/mysql_charsets.lib.php:298 +#: libraries/mysql_charsets.lib.php:290 msgid "Spanish" msgstr "Гішпанская" -#: libraries/mysql_charsets.lib.php:301 +#: libraries/mysql_charsets.lib.php:293 msgid "Traditional Spanish" msgstr "Традыцыйная гішпанская" -#: libraries/mysql_charsets.lib.php:304 libraries/mysql_charsets.lib.php:401 +#: libraries/mysql_charsets.lib.php:296 libraries/mysql_charsets.lib.php:393 msgid "Swedish" msgstr "Швэдзкая" -#: libraries/mysql_charsets.lib.php:307 libraries/mysql_charsets.lib.php:404 +#: libraries/mysql_charsets.lib.php:299 libraries/mysql_charsets.lib.php:396 msgid "Thai" msgstr "Тайляндзкая" -#: libraries/mysql_charsets.lib.php:310 libraries/mysql_charsets.lib.php:398 +#: libraries/mysql_charsets.lib.php:302 libraries/mysql_charsets.lib.php:390 msgid "Turkish" msgstr "Турэцкая" -#: libraries/mysql_charsets.lib.php:313 libraries/mysql_charsets.lib.php:395 +#: libraries/mysql_charsets.lib.php:305 libraries/mysql_charsets.lib.php:387 msgid "Ukrainian" msgstr "Украінская" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 msgid "Unicode" msgstr "Юнікод" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 -#: libraries/mysql_charsets.lib.php:334 libraries/mysql_charsets.lib.php:341 -#: libraries/mysql_charsets.lib.php:363 libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 +#: libraries/mysql_charsets.lib.php:326 libraries/mysql_charsets.lib.php:333 +#: libraries/mysql_charsets.lib.php:355 libraries/mysql_charsets.lib.php:366 msgid "multilingual" msgstr "шматмоўная" -#: libraries/mysql_charsets.lib.php:341 +#: libraries/mysql_charsets.lib.php:333 msgid "Central European" msgstr "Цэнтральнаэўрапейская" -#: libraries/mysql_charsets.lib.php:346 +#: libraries/mysql_charsets.lib.php:338 msgid "Russian" msgstr "Расейская" -#: libraries/mysql_charsets.lib.php:363 +#: libraries/mysql_charsets.lib.php:355 msgid "Baltic" msgstr "Балтыйская" -#: libraries/mysql_charsets.lib.php:368 +#: libraries/mysql_charsets.lib.php:360 msgid "Armenian" msgstr "Армянская" -#: libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:366 msgid "Cyrillic" msgstr "Кірылічная" -#: libraries/mysql_charsets.lib.php:377 +#: libraries/mysql_charsets.lib.php:369 msgid "Arabic" msgstr "Арабская" -#: libraries/mysql_charsets.lib.php:383 +#: libraries/mysql_charsets.lib.php:375 msgid "Hebrew" msgstr "Габрэйская" -#: libraries/mysql_charsets.lib.php:386 +#: libraries/mysql_charsets.lib.php:378 msgid "Georgian" msgstr "Грузінская" -#: libraries/mysql_charsets.lib.php:389 +#: libraries/mysql_charsets.lib.php:381 msgid "Greek" msgstr "Грэцкая" -#: libraries/mysql_charsets.lib.php:392 +#: libraries/mysql_charsets.lib.php:384 msgid "Czech-Slovak" msgstr "Чэхаславацкая" -#: libraries/mysql_charsets.lib.php:407 libraries/mysql_charsets.lib.php:414 +#: libraries/mysql_charsets.lib.php:399 libraries/mysql_charsets.lib.php:406 msgid "unknown" msgstr "невядома" @@ -3499,69 +3560,69 @@ msgstr "Акно запыту" msgid "This format has no options" msgstr "Гэты фармат ня мае опцыяў" -#: libraries/relation.lib.php:82 +#: libraries/relation.lib.php:77 msgid "not OK" msgstr "не OK" -#: libraries/relation.lib.php:86 pmd_general.php:339 +#: libraries/relation.lib.php:81 pmd_general.php:339 msgid "OK" msgstr "OK" -#: libraries/relation.lib.php:87 +#: libraries/relation.lib.php:82 msgid "Enabled" msgstr "Уключана" -#: libraries/relation.lib.php:110 +#: libraries/relation.lib.php:105 msgid "Display Features" msgstr "Паказваць магчымасьці" -#: libraries/relation.lib.php:116 +#: libraries/relation.lib.php:111 msgid "Creation of PDFs" msgstr "Стварэньне PDF-файлаў" -#: libraries/relation.lib.php:120 +#: libraries/relation.lib.php:115 msgid "Displaying Column Comments" msgstr "Паказваць камэнтары калёнак" -#: libraries/relation.lib.php:125 +#: libraries/relation.lib.php:120 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "За інфармацыяй як абнавіць табліцу column_comments зьвярніцеся, калі ласка, " "да дакумэнтацыі" -#: libraries/relation.lib.php:130 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 msgid "Bookmarked SQL query" msgstr "Закладзены SQL-запыт" -#: libraries/relation.lib.php:134 querywindow.php:99 querywindow.php:207 +#: libraries/relation.lib.php:129 querywindow.php:98 querywindow.php:205 msgid "SQL history" msgstr "Гісторыя SQL" -#: libraries/relation.lib.php:146 +#: libraries/relation.lib.php:141 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:148 +#: libraries/relation.lib.php:143 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" -#: libraries/relation.lib.php:149 +#: libraries/relation.lib.php:144 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:150 +#: libraries/relation.lib.php:145 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:151 +#: libraries/relation.lib.php:146 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1158 +#: libraries/relation.lib.php:1153 msgid "no description" msgstr "няма апісаньня" @@ -3569,7 +3630,7 @@ msgstr "няма апісаньня" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:53 server_replication.php:346 +#: libraries/replication_gui.lib.php:53 server_replication.php:345 msgid "Change or reconfigure master server" msgstr "" @@ -3581,17 +3642,12 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:711 -#: server_privileges.php:714 server_privileges.php:721 -#: server_synchronize.php:1170 +#: libraries/replication_gui.lib.php:261 server_privileges.php:710 +#: server_privileges.php:713 server_privileges.php:720 +#: server_synchronize.php:1169 msgid "User name" msgstr "Імя карыстальніка" -#: libraries/replication_gui.lib.php:69 server_synchronize.php:1162 -#, fuzzy -msgid "Port" -msgstr "Парадак" - #: libraries/replication_gui.lib.php:105 #, fuzzy msgid "Master status" @@ -3608,8 +3664,8 @@ msgid "Variable" msgstr "Зьменная" #: libraries/replication_gui.lib.php:117 server_status.php:737 -#: tbl_change.php:322 tbl_printview.php:368 tbl_select.php:137 -#: tbl_structure.php:728 +#: tbl_change.php:317 tbl_printview.php:367 tbl_select.php:136 +#: tbl_structure.php:726 msgid "Value" msgstr "Значэньне" @@ -3623,38 +3679,38 @@ msgid "" "this list." msgstr "" -#: libraries/replication_gui.lib.php:242 server_replication.php:193 +#: libraries/replication_gui.lib.php:242 server_replication.php:192 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:256 server_privileges.php:716 +#: libraries/replication_gui.lib.php:256 server_privileges.php:715 msgid "Any user" msgstr "Любы карыстальнік" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1920 server_privileges.php:1950 +#: libraries/replication_gui.lib.php:348 server_privileges.php:716 +#: server_privileges.php:783 server_privileges.php:807 +#: server_privileges.php:1924 server_privileges.php:1954 msgid "Use text field" msgstr "Выкарыстоўваць тэкставае поле" -#: libraries/replication_gui.lib.php:304 server_privileges.php:764 +#: libraries/replication_gui.lib.php:304 server_privileges.php:763 msgid "Any host" msgstr "Любы хост" -#: libraries/replication_gui.lib.php:308 server_privileges.php:768 +#: libraries/replication_gui.lib.php:308 server_privileges.php:767 msgid "Local" msgstr "Лякальны" -#: libraries/replication_gui.lib.php:314 server_privileges.php:773 +#: libraries/replication_gui.lib.php:314 server_privileges.php:772 msgid "This Host" msgstr "Гэты хост" -#: libraries/replication_gui.lib.php:320 server_privileges.php:779 +#: libraries/replication_gui.lib.php:320 server_privileges.php:778 msgid "Use Host Table" msgstr "Выкарыстоўваць табліцу хостаў" -#: libraries/replication_gui.lib.php:333 server_privileges.php:792 +#: libraries/replication_gui.lib.php:333 server_privileges.php:791 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3680,8 +3736,8 @@ msgstr "Невядомая мова: %1$s." msgid "Servers" msgstr "Сэрвэры" -#: libraries/server_links.inc.php:52 server_engines.php:111 -#: server_engines.php:115 server_status.php:414 test/theme.php:104 +#: libraries/server_links.inc.php:52 server_engines.php:125 +#: server_engines.php:129 server_status.php:414 test/theme.php:104 msgid "Variables" msgstr "Зьменныя" @@ -3702,12 +3758,12 @@ msgstr "Двайковы лог" msgid "Processes" msgstr "Працэсы" -#: libraries/server_links.inc.php:91 server_synchronize.php:1091 -#: server_synchronize.php:1099 +#: libraries/server_links.inc.php:91 server_synchronize.php:1090 +#: server_synchronize.php:1098 msgid "Synchronize" msgstr "" -#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1109 +#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1108 #, fuzzy msgid "Source database" msgstr "Пошук у базе дадзеных" @@ -3727,7 +3783,7 @@ msgstr "Вэб-сэрвэр" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1111 +#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1110 #, fuzzy msgid "Target database" msgstr "Пошук у базе дадзеных" @@ -3748,11 +3804,11 @@ msgstr "Выканаць SQL-запыт(ы) на базе дадзеных %s" msgid "Columns" msgstr "Назвы калёнак" -#: libraries/sql_query_form.lib.php:342 sql.php:664 sql.php:665 sql.php:682 +#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "Дадаць гэты SQL-запыт у закладкі" -#: libraries/sql_query_form.lib.php:349 sql.php:676 +#: libraries/sql_query_form.lib.php:349 sql.php:669 msgid "Let every user access this bookmark" msgstr "Даць кожнаму карыстальніку доступ да гэтай закладкі" @@ -3850,12 +3906,12 @@ msgstr "" "ўсталяваныя ў вас неабходныя пашырэньні PHP, як гэта апісана ў %sдакумэнтацыі" "%s." -#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:139 -#: libraries/tbl_links.inc.php:140 +#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 +#: libraries/tbl_links.inc.php:139 msgid "Table seems to be empty!" msgstr "Табліца — пустая!" -#: libraries/tbl_links.inc.php:148 +#: libraries/tbl_links.inc.php:147 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" @@ -3890,12 +3946,12 @@ msgstr "" "Для значэньняў па змоўчаньні, калі ласка, увядзіце проста значэньне, без " "выкарыстаньня зваротных слэшаў і двукосься, выкарыстоўваючы фармат: a" -#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1263 -#: pdf_schema.php:1284 tbl_printview.php:142 tbl_structure.php:179 +#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1262 +#: pdf_schema.php:1283 tbl_printview.php:141 tbl_structure.php:178 msgid "Attributes" msgstr "Атрыбуты" -#: libraries/tbl_properties.inc.php:136 +#: libraries/tbl_properties.inc.php:135 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -3904,11 +3960,11 @@ msgstr "" "Для атрыманьня сьпісу даступных опцыяў трансфармацыі і пераўтварэньняў іхных " "MIME-тыпаў, націсьніце на %sапісаньні пераўтварэньняў%s" -#: libraries/tbl_properties.inc.php:144 +#: libraries/tbl_properties.inc.php:143 msgid "Transformation options" msgstr "Опцыі пераўтварэньня" -#: libraries/tbl_properties.inc.php:145 +#: libraries/tbl_properties.inc.php:144 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
                            If you ever need to put a backslash (\"\\\") or a single " @@ -3920,18 +3976,18 @@ msgstr "" "або апостраф (\"'\") у гэтых значэньнях, устаўце зваротны слэш перад імі " "(напрыклад, '\\\\xyz' або 'a\\'b')." -#: libraries/tbl_properties.inc.php:392 +#: libraries/tbl_properties.inc.php:391 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "Няма" -#: libraries/tbl_properties.inc.php:393 +#: libraries/tbl_properties.inc.php:392 msgid "As defined:" msgstr "Як вызначана:" -#: libraries/tbl_properties.inc.php:579 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:578 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
                            Please ask the " @@ -3940,29 +3996,29 @@ msgstr "" "Няма даступных апісаньняў для гэтага пераўтварэньня.
                            Калі ласка, " "спытайце аўтара, што робіць %s." -#: libraries/tbl_properties.inc.php:725 server_engines.php:57 -#: tbl_operations.php:354 +#: libraries/tbl_properties.inc.php:724 server_engines.php:56 +#: tbl_operations.php:352 msgid "Storage Engine" msgstr "Машына захаваньня дадзеных" -#: libraries/tbl_properties.inc.php:754 +#: libraries/tbl_properties.inc.php:753 msgid "PARTITION definition" msgstr "Азначэньне PARTITION" -#: libraries/tbl_properties.inc.php:775 pdf_pages.php:502 +#: libraries/tbl_properties.inc.php:774 pdf_pages.php:501 #: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214 -#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1124 tbl_indexes.php:247 -#: tbl_relation.php:565 +#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1022 tbl_indexes.php:246 +#: tbl_relation.php:563 msgid "Save" msgstr "Захаваць" -#: libraries/tbl_properties.inc.php:779 tbl_structure.php:541 +#: libraries/tbl_properties.inc.php:778 tbl_structure.php:539 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "Дадаць %s новыя палі" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:535 +#: libraries/tbl_properties.inc.php:782 tbl_structure.php:533 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -4169,8 +4225,8 @@ msgstr "Інтэрфэйс" msgid "Custom color" msgstr "Іншы колер" -#: main.php:162 pdf_pages.php:362 setup/lib/FormDisplay.tpl.php:216 -#: tbl_change.php:1173 +#: main.php:162 pdf_pages.php:361 setup/lib/FormDisplay.tpl.php:216 +#: tbl_change.php:1071 msgid "Reset" msgstr "Скінуць" @@ -4178,8 +4234,8 @@ msgstr "Скінуць" msgid "Protocol version" msgstr "Вэрсія пратаколу" -#: main.php:188 server_privileges.php:1381 server_privileges.php:1528 -#: server_privileges.php:1642 server_privileges.php:2060 +#: main.php:188 server_privileges.php:1385 server_privileges.php:1532 +#: server_privileges.php:1646 server_privileges.php:2064 #: server_processlist.php:53 msgid "User" msgstr "Карыстальнік" @@ -4264,14 +4320,23 @@ msgid "" "has been configured." msgstr "" -#: main.php:330 +#: main.php:314 +#, php-format +msgid "" +"The additional features for working with linked tables have been " +"deactivated. To find out why click %shere%s." +msgstr "" +"Дадатковыя магчымасьці работы з зьвязанымі табліцамі былі адключаныя. Каб " +"высьветліць чаму, націсьніце %sтут%s." + +#: main.php:329 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:345 +#: main.php:344 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -4280,7 +4345,7 @@ msgstr "" "Вэрсія вашай бібліятэкі MySQL для PHP %s адрозьніваецца ад вэрсіі вашага " "сэрвэра MySQL %s. Гэта можа выклікаць непрадказальныя паводзіны." -#: main.php:357 +#: main.php:356 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -4293,70 +4358,70 @@ msgstr "" msgid "Reload navigation frame" msgstr "" -#: navigation.php:204 server_databases.php:370 server_synchronize.php:1190 +#: navigation.php:203 server_databases.php:368 server_synchronize.php:1189 msgid "No databases" msgstr "Базы дадзеных адсутнічаюць" -#: navigation.php:298 +#: navigation.php:297 #, fuzzy msgid "Filter" msgstr "Файлы" -#: navigation.php:299 setup/frames/index.inc.php:218 +#: navigation.php:298 setup/frames/index.inc.php:218 #: setup/lib/messages.inc.php:41 #, fuzzy msgid "Clear" msgstr "Каляндар" -#: navigation.php:330 navigation.php:331 +#: navigation.php:329 navigation.php:330 #, fuzzy #| msgid "Create table" msgctxt "short form" msgid "Create table" msgstr "Стварыць табліцу" -#: navigation.php:333 navigation.php:495 +#: navigation.php:332 navigation.php:494 msgid "Please select a database" msgstr "Калі ласка, выберыце базу дадзеных" -#: pdf_pages.php:40 pdf_pages.php:46 pdf_pages.php:52 pdf_pages.php:57 +#: pdf_pages.php:39 pdf_pages.php:45 pdf_pages.php:51 pdf_pages.php:56 #, php-format msgid "%s table not found or not set in %s" msgstr "Табліца %s ня знойдзеная або ня вызначаная ў %s" -#: pdf_pages.php:265 +#: pdf_pages.php:264 msgid "Please choose a page to edit" msgstr "Калі ласка, выберыце старонку для рэдагаваньня" -#: pdf_pages.php:303 pmd_pdf.php:113 +#: pdf_pages.php:302 pmd_pdf.php:111 msgid "Create a page" msgstr "Стварыць новую старонку" -#: pdf_pages.php:309 +#: pdf_pages.php:308 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Старонка:" -#: pdf_pages.php:313 +#: pdf_pages.php:312 #, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "Аўтаматычнае разьмяшчэньне" -#: pdf_pages.php:315 +#: pdf_pages.php:314 msgid "Internal relations" msgstr "Унутраныя сувязі" -#: pdf_pages.php:338 +#: pdf_pages.php:337 msgid "Select Tables" msgstr "Выберыце табліцу(ы)" -#: pdf_pages.php:361 +#: pdf_pages.php:360 msgid "Toggle scratchboard" msgstr "Паказаць папярэдні прагляд" -#: pdf_pages.php:524 +#: pdf_pages.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -4364,37 +4429,37 @@ msgstr "" "Бягучая старонка ўтрымлівае спасылкі на табліцы, якія больш не існуюць. Ці " "жадаеце вы выдаліць гэтыя спасылкі?" -#: pdf_schema.php:635 +#: pdf_schema.php:634 #, fuzzy, php-format #| msgid "The \"%s\" table doesn't exist!" msgid "The %s table doesn't exist!" msgstr "Табліцы \"%s\" не існуе!" -#: pdf_schema.php:671 +#: pdf_schema.php:670 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Калі ласка, сканфігуруйце каардынаты для табліцы %s" -#: pdf_schema.php:994 +#: pdf_schema.php:993 #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" msgstr "Структура базы \"%s\" — старонка %s" -#: pdf_schema.php:1012 +#: pdf_schema.php:1011 msgid "No tables" msgstr "Няма табліц" -#: pdf_schema.php:1031 pdf_schema.php:1140 +#: pdf_schema.php:1030 pdf_schema.php:1139 msgid "Relational schema" msgstr "Рэляцыйная схема" -#: pdf_schema.php:1115 +#: pdf_schema.php:1114 msgid "Table of contents" msgstr "Зьмест" -#: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:145 -#: tbl_structure.php:182 tbl_tracking.php:277 +#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 +#: tbl_structure.php:181 tbl_tracking.php:272 msgid "Extra" msgstr "Дадаткова" @@ -4406,7 +4471,7 @@ msgstr "Паказаць/схаваць мэню зьлева" msgid "Save position" msgstr "Захаваць разьмяшчэньне табліц" -#: pmd_general.php:70 server_synchronize.php:428 server_synchronize.php:871 +#: pmd_general.php:70 server_synchronize.php:427 server_synchronize.php:870 msgid "Create table" msgstr "Стварыць табліцу" @@ -4486,32 +4551,32 @@ msgstr "" "адлюстраваных палёў, націсьніце іконку «Выберыце поле для адлюстраваньня» і " "націсьніце на адпаведнае імя поля." -#: pmd_pdf.php:62 +#: pmd_pdf.php:60 #, fuzzy msgid "Page has been created" msgstr "Табліца %1$s створаная." -#: pmd_pdf.php:64 +#: pmd_pdf.php:62 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:84 +#: pmd_pdf.php:82 msgid "Export/Import to scale" msgstr "Маштаб" -#: pmd_pdf.php:88 +#: pmd_pdf.php:86 msgid "recommended" msgstr "рэкамэндаваны" -#: pmd_pdf.php:93 +#: pmd_pdf.php:91 msgid "to/from page" msgstr "старонка" -#: querywindow.php:94 +#: querywindow.php:93 msgid "Import files" msgstr "Імпартаваць файлы" -#: querywindow.php:105 +#: querywindow.php:104 msgid "All" msgstr "Усе" @@ -4557,66 +4622,66 @@ msgstr "Інфармацыя" msgid "Character Sets and Collations" msgstr "Раскладкі і супастаўленьні" -#: server_databases.php:51 +#: server_databases.php:49 msgid "No databases selected." msgstr "Ня выбраная база дадзеных." -#: server_databases.php:62 +#: server_databases.php:60 #, php-format msgid "%s databases have been dropped successfully." msgstr "%s базаў дадзеных былі пасьпяхова выдаленыя." -#: server_databases.php:87 +#: server_databases.php:85 msgid "Databases statistics" msgstr "Статыстыка базаў дадзеных" -#: server_databases.php:116 server_status.php:370 +#: server_databases.php:114 server_status.php:370 #: setup/lib/messages.inc.php:114 msgid "Tables" msgstr "Табліц" -#: server_databases.php:194 server_replication.php:180 -#: server_replication.php:208 +#: server_databases.php:192 server_replication.php:179 +#: server_replication.php:207 msgid "Master replication" msgstr "" -#: server_databases.php:196 server_replication.php:247 +#: server_databases.php:194 server_replication.php:246 msgid "Slave replication" msgstr "" -#: server_databases.php:229 +#: server_databases.php:227 #, fuzzy msgid "Jump to database" msgstr "Базы дадзеных адсутнічаюць" -#: server_databases.php:266 +#: server_databases.php:264 msgid "Not replicated" msgstr "" -#: server_databases.php:272 +#: server_databases.php:270 #, fuzzy #| msgid "Replication" msgid "Replicated" msgstr "Рэплікацыя" -#: server_databases.php:288 +#: server_databases.php:286 #, php-format msgid "Check privileges for database "%s"." msgstr "Праверыць прывілеі для базы "%s"." -#: server_databases.php:292 server_databases.php:293 +#: server_databases.php:290 server_databases.php:291 msgid "Check Privileges" msgstr "Праверыць прывілеі" -#: server_databases.php:357 server_databases.php:358 +#: server_databases.php:355 server_databases.php:356 msgid "Enable Statistics" msgstr "Уключыць статыстыку" -#: server_databases.php:361 server_databases.php:362 +#: server_databases.php:359 server_databases.php:360 msgid "Disable Statistics" msgstr "Адключыць статыстыку" -#: server_databases.php:365 +#: server_databases.php:363 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -4624,127 +4689,127 @@ msgstr "" "Заўвага: Уключэньне статыстыкі базы дадзеных можа выклікаць вялікую " "колькасьць трафіку паміж вэб-сэрвэрам і сэрвэрам MySQL." -#: server_engines.php:48 +#: server_engines.php:47 msgid "Storage Engines" msgstr "Машыны захаваньня дадзеных" -#: server_export.php:20 +#: server_export.php:18 msgid "View dump (schema) of databases" msgstr "Праглядзець дамп (схему) базаў дадзеных" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:23 server_privileges.php:265 msgid "Includes all privileges except GRANT." msgstr "Уключае ўсе прывілеі, апроч GRANT." -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:24 server_privileges.php:191 +#: server_privileges.php:514 msgid "Allows altering the structure of existing tables." msgstr "Дазваляе зьмяняць структуру існых табліц." -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:25 server_privileges.php:207 +#: server_privileges.php:520 msgid "Allows altering and dropping stored routines." msgstr "Дазваляе зьмяняць і выдаляць праграмы, якія захоўваюцца." -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:26 server_privileges.php:183 +#: server_privileges.php:513 msgid "Allows creating new databases and tables." msgstr "Дазваляе ствараць новыя базы дадзеных і табліцы." -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:27 server_privileges.php:206 +#: server_privileges.php:519 msgid "Allows creating stored routines." msgstr "Дазваляе ствараць праграмы, якія захоўваюцца." -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:513 msgid "Allows creating new tables." msgstr "Дазваляе ствараць новыя табліцы." -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:29 server_privileges.php:194 +#: server_privileges.php:517 msgid "Allows creating temporary tables." msgstr "Дазваляе ствараць часовыя табліцы." -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:30 server_privileges.php:208 +#: server_privileges.php:553 msgid "Allows creating, dropping and renaming user accounts." msgstr "" "Дазваляе ствараць, выдаляць і пераймяноўваць уліковыя запісы карыстальнікаў" -#: server_privileges.php:32 server_privileges.php:199 -#: server_privileges.php:203 server_privileges.php:526 -#: server_privileges.php:530 +#: server_privileges.php:31 server_privileges.php:198 +#: server_privileges.php:202 server_privileges.php:525 +#: server_privileges.php:529 msgid "Allows creating new views." msgstr "Дазваляе ствараць новыя прагляды." -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:32 server_privileges.php:182 +#: server_privileges.php:505 msgid "Allows deleting data." msgstr "Дазваляе выдаляць дадзеныя." -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:33 server_privileges.php:184 +#: server_privileges.php:516 msgid "Allows dropping databases and tables." msgstr "Дазваляе выдаляць базы дадзеных і табліцы." -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:34 server_privileges.php:516 msgid "Allows dropping tables." msgstr "Дазваляе выдаляць табліцы." -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:35 server_privileges.php:199 +#: server_privileges.php:533 msgid "Allows to set up events for the event scheduler" msgstr "Дазваляе ствараць падзеі ў пляніроўніку падзеяў" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:36 server_privileges.php:209 +#: server_privileges.php:521 msgid "Allows executing stored routines." msgstr "Дазваляе выкананьне праграмаў, якія захоўваюцца." -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:37 server_privileges.php:188 +#: server_privileges.php:508 msgid "Allows importing data from and exporting data into files." msgstr "" "Дазваляе імпартаваць дадзеныя з файлаў і экспартаваць дадзеныя ў файлы." -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:38 server_privileges.php:539 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Дазваляе дадаваць карыстальнікаў і прывілеі без перазагрузкі табліц " "прывілеяў." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:515 msgid "Allows creating and dropping indexes." msgstr "Дазваляе ствараць і выдаляць індэксы." -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:40 server_privileges.php:180 +#: server_privileges.php:441 server_privileges.php:503 msgid "Allows inserting and replacing data." msgstr "Дазваляе ўстаўляць і замяняць дадзеныя." -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:41 server_privileges.php:195 +#: server_privileges.php:548 msgid "Allows locking tables for the current thread." msgstr "Дазваляе блякаваць табліцы для бягучага патоку." -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:42 server_privileges.php:645 +#: server_privileges.php:647 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Абмяжоўвае колькасьць новых злучэньняў, якія карыстальнік можа адкрыць на " "працягу гадзіны." -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:43 server_privileges.php:633 +#: server_privileges.php:635 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Абмяжоўвае колькасьць запытаў, якія карыстальнік можа адправіць на сэрвэр на " "працягу гадзіны." -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:44 server_privileges.php:639 +#: server_privileges.php:641 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -4752,59 +4817,59 @@ msgstr "" "Абмяжоўвае колькасьць камандаў, зьмяняючых любую табліцу або базу дадзеных, " "якія карыстальнік можа выканаць на працягу гадзіны." -#: server_privileges.php:46 server_privileges.php:652 -#: server_privileges.php:654 +#: server_privileges.php:45 server_privileges.php:651 +#: server_privileges.php:653 msgid "Limits the number of simultaneous connections the user may have." msgstr "" "Абмяжоўвае колькасьць адначасовых злучэньняў, якія можа мець карыстальнік." -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:46 server_privileges.php:187 +#: server_privileges.php:543 msgid "Allows viewing processes of all users" msgstr "Дазваляе праглядаць працэсы ўсіх карыстальнікаў" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:47 server_privileges.php:189 +#: server_privileges.php:447 server_privileges.php:549 msgid "Has no effect in this MySQL version." msgstr "Не працуе ў гэтай вэрсіі MySQL." -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:48 server_privileges.php:185 +#: server_privileges.php:544 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Дазваляе перазагружаць налады сэрвэра і ачышчаць кэш сэрвэра." -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:197 +#: server_privileges.php:551 msgid "Allows the user to ask where the slaves / masters are." msgstr "Дазваляе карыстальніку пытацца, дзе знаходзяцца slaves / masters." -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:50 server_privileges.php:196 +#: server_privileges.php:552 msgid "Needed for the replication slaves." msgstr "Неабходна для рэплікацыі slaves." -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:51 server_privileges.php:179 +#: server_privileges.php:438 server_privileges.php:502 msgid "Allows reading data." msgstr "Дазваляе чытаць дадзеныя." -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:52 server_privileges.php:192 +#: server_privileges.php:546 msgid "Gives access to the complete list of databases." msgstr "Дае доступ да поўнага сьпісу базаў дадзеных." -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:53 server_privileges.php:203 +#: server_privileges.php:205 server_privileges.php:518 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Дазваляе выкананьне запытаў SHOW CREATE VIEW." -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:54 server_privileges.php:186 +#: server_privileges.php:545 msgid "Allows shutting down the server." msgstr "Дазваляе спыняць сэрвэр." -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:55 server_privileges.php:193 +#: server_privileges.php:542 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -4814,156 +4879,156 @@ msgstr "" "Патрабуецца для большасьці адміністратыўных апэрацыяў, такіх як вызначэньне " "глябальных зьменных або спыненьне патокаў іншых карыстальнікаў." -#: server_privileges.php:57 server_privileges.php:201 -#: server_privileges.php:535 +#: server_privileges.php:56 server_privileges.php:200 +#: server_privileges.php:534 msgid "Allows creating and dropping triggers" msgstr "Дазваляе стварэньне і выдаленьне трыгераў" -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:57 server_privileges.php:181 +#: server_privileges.php:444 server_privileges.php:504 msgid "Allows changing data." msgstr "Дазваляе зьмяняць дадзеныя." -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:58 server_privileges.php:259 msgid "No privileges." msgstr "Без прывілеяў." -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:301 server_privileges.php:302 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Няма" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1710 server_privileges.php:1716 +#: server_privileges.php:430 server_privileges.php:565 +#: server_privileges.php:1714 server_privileges.php:1720 msgid "Table-specific privileges" msgstr "Прывілеі, спэцыфічныя для табліцы" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1532 +#: server_privileges.php:431 server_privileges.php:573 +#: server_privileges.php:1536 msgid " Note: MySQL privilege names are expressed in English " msgstr " Заўвага: імёны прывілеяў MySQL задаюцца па-ангельску " -#: server_privileges.php:563 server_privileges.php:1531 +#: server_privileges.php:562 server_privileges.php:1535 msgid "Global privileges" msgstr "Глябальныя прывілеі" -#: server_privileges.php:565 server_privileges.php:1710 +#: server_privileges.php:564 server_privileges.php:1714 msgid "Database-specific privileges" msgstr "Спэцыфічныя прывілеі базы дадзеных" -#: server_privileges.php:610 +#: server_privileges.php:609 msgid "Administration" msgstr "Адміністраваньне" -#: server_privileges.php:630 +#: server_privileges.php:629 msgid "Resource limits" msgstr "Абмежаваньні рэсурсаў" -#: server_privileges.php:631 +#: server_privileges.php:630 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Заўвага: Пазначэньне гэтых опцыяў як 0 (нуль) здымае абмежаваньне." -#: server_privileges.php:708 +#: server_privileges.php:707 msgid "Login Information" msgstr "Інфармацыя пра ўваход" -#: server_privileges.php:802 +#: server_privileges.php:801 msgid "Do not change the password" msgstr "Не зьмяняць пароль" -#: server_privileges.php:835 server_privileges.php:2197 +#: server_privileges.php:834 server_privileges.php:2201 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Не знойдзены карыстальнік." -#: server_privileges.php:879 +#: server_privileges.php:878 #, php-format msgid "The user %s already exists!" msgstr "Карыстальнік %s ужо існуе!" -#: server_privileges.php:962 +#: server_privileges.php:961 msgid "You have added a new user." msgstr "Быў дададзены новы карыстальнік." -#: server_privileges.php:1183 +#: server_privileges.php:1184 #, php-format msgid "You have updated the privileges for %s." msgstr "Вы зьмянілі прывілеі для %s." -#: server_privileges.php:1207 +#: server_privileges.php:1208 #, php-format msgid "You have revoked the privileges for %s" msgstr "Вы анулявалі прывілеі для %s" -#: server_privileges.php:1243 +#: server_privileges.php:1244 #, php-format msgid "The password for %s was changed successfully." msgstr "Пароль для %s пасьпяхова зьменены." -#: server_privileges.php:1263 +#: server_privileges.php:1264 #, php-format msgid "Deleting %s" msgstr "Выдаленьне %s" -#: server_privileges.php:1274 +#: server_privileges.php:1275 msgid "No users selected for deleting!" msgstr "На выбраныя карыстальнікі для выдаленьня!" -#: server_privileges.php:1277 +#: server_privileges.php:1278 msgid "Reloading the privileges" msgstr "Перазагрузіць прывілеі" -#: server_privileges.php:1292 +#: server_privileges.php:1296 msgid "The selected users have been deleted successfully." msgstr "Выбраныя карыстальнікі былі пасьпяхова выдаленыя." -#: server_privileges.php:1327 +#: server_privileges.php:1331 msgid "The privileges were reloaded successfully." msgstr "Прывілеі былі пасьпяхова перазагружаныя." -#: server_privileges.php:1355 server_privileges.php:1641 +#: server_privileges.php:1359 server_privileges.php:1645 msgid "Edit Privileges" msgstr "Рэдагаваць прывілеі" -#: server_privileges.php:1364 +#: server_privileges.php:1368 msgid "Revoke" msgstr "Ануляваць" -#: server_privileges.php:1396 +#: server_privileges.php:1400 msgid "User overview" msgstr "Карыстальнікі" -#: server_privileges.php:1533 server_privileges.php:1715 -#: server_privileges.php:2064 +#: server_privileges.php:1537 server_privileges.php:1719 +#: server_privileges.php:2068 msgid "Grant" msgstr "Grant" -#: server_privileges.php:1552 server_privileges.php:2154 +#: server_privileges.php:1556 server_privileges.php:2158 msgid "Any" msgstr "Любы" -#: server_privileges.php:1601 server_privileges.php:1625 -#: server_privileges.php:2019 server_privileges.php:2208 +#: server_privileges.php:1605 server_privileges.php:1629 +#: server_privileges.php:2023 server_privileges.php:2212 msgid "Add a new User" msgstr "Дадаць новага карыстальніка" -#: server_privileges.php:1606 +#: server_privileges.php:1610 msgid "Remove selected users" msgstr "Выдаліць выбраных карыстальнікаў" -#: server_privileges.php:1609 +#: server_privileges.php:1613 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Ануляваць усе актыўныя прывілеі карыстальнікаў і пасьля выдаліць іх." -#: server_privileges.php:1610 server_privileges.php:1611 -#: server_privileges.php:1612 +#: server_privileges.php:1614 server_privileges.php:1615 +#: server_privileges.php:1616 msgid "Drop the databases that have the same names as the users." msgstr "Выдаліць базы дадзеных, якія маюць такія ж імёны як і карыстальнікі." -#: server_privileges.php:1628 +#: server_privileges.php:1632 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4976,50 +5041,50 @@ msgstr "" "якія выкарыстоўвае сэрвэр, калі яны былі зьмененыя ўручную. У гэтым выпадку " "вам трэба %sперазагрузіць прывілеі%s да таго, як вы працягнеце." -#: server_privileges.php:1676 +#: server_privileges.php:1680 msgid "The selected user was not found in the privilege table." msgstr "Вылучаны карыстальнік ня знойдзены ў табліцы прывілеяў." -#: server_privileges.php:1716 +#: server_privileges.php:1720 msgid "Column-specific privileges" msgstr "Спэцыфічныя прывілеі калёнак" -#: server_privileges.php:1917 +#: server_privileges.php:1921 msgid "Add privileges on the following database" msgstr "Дадаць прывілеі на наступную базу" -#: server_privileges.php:1935 +#: server_privileges.php:1939 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "Сымбалі падстаноўкі _ і % мусяць быць экранаванымі сымбалем \\ для іх " "літаральнага выкарыстаньня" -#: server_privileges.php:1938 +#: server_privileges.php:1942 msgid "Add privileges on the following table" msgstr "Дадаць прывілеі на наступную табліцу" -#: server_privileges.php:1995 +#: server_privileges.php:1999 msgid "Change Login Information / Copy User" msgstr "Зьмяніць рэгістрацыйную інфармацыю / Капіяваць карыстальніка" -#: server_privileges.php:1998 +#: server_privileges.php:2002 msgid "Create a new user with the same privileges and ..." msgstr "Стварыць новага карыстальніка з такімі ж прывілеямі і ..." -#: server_privileges.php:2000 +#: server_privileges.php:2004 msgid "... keep the old one." msgstr "... пакінуць старога." -#: server_privileges.php:2001 +#: server_privileges.php:2005 msgid " ... delete the old one from the user tables." msgstr " ... выдаліць старога з табліцы карыстальнікаў." -#: server_privileges.php:2002 +#: server_privileges.php:2006 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr " ... ануляваць усе актыўныя прывілеі старога і пасьля выдаліць яго." -#: server_privileges.php:2003 +#: server_privileges.php:2007 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -5027,45 +5092,45 @@ msgstr "" " ... выдаліць старога з табліцы карыстальнікаў і пасьля перазагрузіць " "прывілеі." -#: server_privileges.php:2025 +#: server_privileges.php:2029 msgid "Database for user" msgstr "База дадзеных для карыстальніка" -#: server_privileges.php:2029 +#: server_privileges.php:2033 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Няма" -#: server_privileges.php:2030 +#: server_privileges.php:2034 msgid "Create database with same name and grant all privileges" msgstr "Стварыць базу дадзеных з такім самым імем і надзяліць усімі прывілеямі" -#: server_privileges.php:2031 +#: server_privileges.php:2035 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" "Надзяліць усімі прывілеямі базы з іменамі па масцы (імя карыстальніка_%)" -#: server_privileges.php:2034 +#: server_privileges.php:2038 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "Праверыць прывілеі для базы "%s"." -#: server_privileges.php:2057 +#: server_privileges.php:2061 #, php-format msgid "Users having access to "%s"" msgstr "Карыстальнікі з правамі доступу да "%s"" -#: server_privileges.php:2165 +#: server_privileges.php:2169 msgid "global" msgstr "глябальны" -#: server_privileges.php:2167 +#: server_privileges.php:2171 msgid "database-specific" msgstr "спэцыфічны для базы дадзеных" -#: server_privileges.php:2169 +#: server_privileges.php:2173 msgid "wildcard" msgstr "шаблён" @@ -5084,54 +5149,54 @@ msgstr "phpMyAdmin ня можа спыніць працэс %s. Напэўна, msgid "ID" msgstr "ID" -#: server_replication.php:50 +#: server_replication.php:49 msgid "Unknown error" msgstr "" -#: server_replication.php:57 +#: server_replication.php:56 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:64 +#: server_replication.php:63 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:70 +#: server_replication.php:69 msgid "Unable to change master" msgstr "" -#: server_replication.php:73 +#: server_replication.php:72 #, php-format msgid "Master server changed succesfully to %s" msgstr "" -#: server_replication.php:181 +#: server_replication.php:180 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:183 server_status.php:391 +#: server_replication.php:182 server_status.php:391 #, fuzzy msgid "Show master status" msgstr "Паказаць стан залежных сэрвэраў" -#: server_replication.php:186 +#: server_replication.php:185 msgid "Show connected slaves" msgstr "" -#: server_replication.php:209 +#: server_replication.php:208 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:216 +#: server_replication.php:215 msgid "Master configuration" msgstr "" -#: server_replication.php:217 +#: server_replication.php:216 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -5140,111 +5205,111 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:220 +#: server_replication.php:219 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:221 +#: server_replication.php:220 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:224 +#: server_replication.php:223 #, fuzzy msgid "Please select databases:" msgstr "Калі ласка, выберыце базу дадзеных" -#: server_replication.php:227 +#: server_replication.php:226 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: server_replication.php:229 +#: server_replication.php:228 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: server_replication.php:292 +#: server_replication.php:291 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:295 +#: server_replication.php:294 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:304 +#: server_replication.php:303 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:307 +#: server_replication.php:306 msgid "See slave status table" msgstr "" -#: server_replication.php:310 +#: server_replication.php:309 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:321 +#: server_replication.php:320 msgid "Control slave:" msgstr "" -#: server_replication.php:324 +#: server_replication.php:323 #, fuzzy msgid "Full start" msgstr "Поўнатэкстэкставае" -#: server_replication.php:324 +#: server_replication.php:323 #, fuzzy msgid "Full stop" msgstr "Поўнатэкстэкставае" -#: server_replication.php:325 +#: server_replication.php:324 msgid "Reset slave" msgstr "" -#: server_replication.php:326 +#: server_replication.php:325 #, php-format msgid "SQL Thread %s only" msgstr "" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 #, fuzzy msgid "Start" msgstr "Суб" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 msgid "Stop" msgstr "" -#: server_replication.php:327 +#: server_replication.php:326 #, php-format msgid "IO Thread %s only" msgstr "" -#: server_replication.php:331 +#: server_replication.php:330 msgid "Error management:" msgstr "" -#: server_replication.php:333 +#: server_replication.php:332 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:335 +#: server_replication.php:334 msgid "Skip current error" msgstr "" -#: server_replication.php:336 +#: server_replication.php:335 msgid "Skip next" msgstr "" -#: server_replication.php:339 +#: server_replication.php:338 msgid "errors." msgstr "" -#: server_replication.php:354 +#: server_replication.php:353 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -6083,114 +6148,114 @@ msgstr "Тып запыту" msgid "Replication status" msgstr "Рэплікацыя" -#: server_synchronize.php:93 +#: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:96 +#: server_synchronize.php:95 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:121 server_synchronize.php:124 tbl_create.php:77 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:264 +#: server_synchronize.php:263 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:271 +#: server_synchronize.php:270 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:399 server_synchronize.php:838 +#: server_synchronize.php:398 server_synchronize.php:837 msgid "not present" msgstr "" -#: server_synchronize.php:423 server_synchronize.php:866 +#: server_synchronize.php:422 server_synchronize.php:865 #, fuzzy msgid "Structure Difference" msgstr "Структура для прагляду" -#: server_synchronize.php:424 server_synchronize.php:867 +#: server_synchronize.php:423 server_synchronize.php:866 #, fuzzy msgid "Data Difference" msgstr "Структура для прагляду" -#: server_synchronize.php:429 server_synchronize.php:872 +#: server_synchronize.php:428 server_synchronize.php:871 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:430 server_synchronize.php:873 +#: server_synchronize.php:429 server_synchronize.php:872 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:431 server_synchronize.php:874 +#: server_synchronize.php:430 server_synchronize.php:873 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:432 server_synchronize.php:875 +#: server_synchronize.php:431 server_synchronize.php:874 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:433 server_synchronize.php:876 +#: server_synchronize.php:432 server_synchronize.php:875 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:434 server_synchronize.php:877 +#: server_synchronize.php:433 server_synchronize.php:876 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:435 server_synchronize.php:878 +#: server_synchronize.php:434 server_synchronize.php:877 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:445 server_synchronize.php:889 +#: server_synchronize.php:444 server_synchronize.php:888 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:448 server_synchronize.php:893 +#: server_synchronize.php:447 server_synchronize.php:892 msgid "Apply Selected Changes" msgstr "" -#: server_synchronize.php:450 server_synchronize.php:895 +#: server_synchronize.php:449 server_synchronize.php:894 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:463 +#: server_synchronize.php:462 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:941 +#: server_synchronize.php:940 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:1002 +#: server_synchronize.php:1001 msgid "The following queries have been executed:" msgstr "" -#: server_synchronize.php:1121 +#: server_synchronize.php:1120 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1122 +#: server_synchronize.php:1121 #, fuzzy #| msgid "max. concurrent connections" msgid "Current connection" msgstr "максымум адначасовых злучэньняў" -#: server_synchronize.php:1151 +#: server_synchronize.php:1150 #, php-format msgid "Configuration: %s" msgstr "" -#: server_synchronize.php:1166 +#: server_synchronize.php:1165 msgid "Socket" msgstr "" -#: server_synchronize.php:1212 +#: server_synchronize.php:1211 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -6757,8 +6822,8 @@ msgstr "" #: setup/lib/messages.inc.php:128 msgid "" "Configure phpMyAdmin database to gain access to additional features, see " -"[a@../Documentation.html#linked-tables]linked-tables infrastructure[/a] in " -"documentation" +"[a@../Documentation.html#linked-tables]phpMyAdmin configuration storage[/a] " +"in documentation" msgstr "" #: setup/lib/messages.inc.php:129 setup/lib/messages.inc.php:290 @@ -7835,117 +7900,117 @@ msgstr "" msgid "ZIP" msgstr "" -#: sql.php:495 tbl_replace.php:385 +#: sql.php:494 tbl_replace.php:384 #, php-format msgid "Inserted row id: %1$d" msgstr "ID устаўленага радку: %1$d" -#: sql.php:512 +#: sql.php:511 msgid "Showing as PHP code" msgstr "У выглядзе PHP-коду" -#: sql.php:515 tbl_replace.php:359 +#: sql.php:514 tbl_replace.php:358 msgid "Showing SQL query" msgstr "У выглядзе SQL-запыту" -#: sql.php:517 +#: sql.php:516 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Праверыць SQL" -#: sql.php:638 +#: sql.php:631 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Праблемы з індэксамі для табліцы `%s`" -#: sql.php:670 +#: sql.php:663 msgid "Label" msgstr "Метка" -#: tbl_addfield.php:188 tbl_alter.php:102 tbl_indexes.php:97 +#: tbl_addfield.php:185 tbl_alter.php:100 tbl_indexes.php:97 #, php-format msgid "Table %1$s has been altered successfully" msgstr "Табліца %1$s была пасьпяхова зьмененая" -#: tbl_change.php:250 tbl_select.php:26 tbl_select.php:27 tbl_select.php:30 -#: tbl_select.php:33 +#: tbl_change.php:245 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_select.php:32 msgid "Browse foreign values" msgstr "Праглядзець зьнешнія значэньні" -#: tbl_change.php:280 tbl_change.php:318 +#: tbl_change.php:275 tbl_change.php:313 msgid "Function" msgstr "Функцыя" -#: tbl_change.php:300 tbl_indexes.php:199 tbl_indexes.php:224 +#: tbl_change.php:295 tbl_indexes.php:198 tbl_indexes.php:223 msgid "Ignore" msgstr "Ігнараваць" -#: tbl_change.php:725 +#: tbl_change.php:720 #, fuzzy #| msgid " Because of its length,
                            this field might not be editable " msgid " Because of its length,
                            this column might not be editable " msgstr " З-за вялікай даўжыні,
                            гэтае поле ня можа быць адрэдагаванае " -#: tbl_change.php:884 +#: tbl_change.php:835 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:890 +#: tbl_change.php:841 msgid "Binary - do not edit" msgstr "Двайковыя дадзеныя — не рэдагуюцца" -#: tbl_change.php:983 +#: tbl_change.php:889 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:1128 +#: tbl_change.php:1026 msgid "Insert as new row" msgstr "Уставіць як новы радок" -#: tbl_change.php:1129 +#: tbl_change.php:1027 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:1130 +#: tbl_change.php:1028 #, fuzzy msgid "Show insert query" msgstr "У выглядзе SQL-запыту" -#: tbl_change.php:1145 +#: tbl_change.php:1043 msgid "Go back to previous page" msgstr "Перайсьці да папярэдняй старонкі" -#: tbl_change.php:1146 +#: tbl_change.php:1044 msgid "Insert another new row" msgstr "Дадаць яшчэ адзін радок" -#: tbl_change.php:1150 +#: tbl_change.php:1048 msgid "Go back to this page" msgstr "Вярнуцца да гэтай старонкі" -#: tbl_change.php:1158 +#: tbl_change.php:1056 msgid "Edit next row" msgstr "Рэдагаваць наступны радок" -#: tbl_change.php:1169 +#: tbl_change.php:1067 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Выкарыстоўвайце клявішу TAB для перамяшчэньня ад значэньня да значэньня або " "CTRL+стрэлкі для перамяшчэньня ў любое іншае месца" -#: tbl_change.php:1207 +#: tbl_change.php:1105 #, php-format msgid "Restart insertion with %s rows" msgstr "Пачаць устаўку зноў з %s-га радку" -#: tbl_create.php:57 +#: tbl_create.php:55 #, php-format msgid "Table %s already exists!" msgstr "Табліца %s ужо існуе!" -#: tbl_create.php:244 +#: tbl_create.php:241 #, php-format msgid "Table %1$s has been created." msgstr "Табліца %1$s створаная." @@ -7966,195 +8031,195 @@ msgstr "Немагчыма перайменаваць індэкс у PRIMARY!" msgid "No index parts defined!" msgstr "Часткі індэксу ня вызначаныя!" -#: tbl_indexes.php:159 +#: tbl_indexes.php:158 msgid "Create a new index" msgstr "Стварыць новы індэкс" -#: tbl_indexes.php:161 +#: tbl_indexes.php:160 msgid "Modify an index" msgstr "Зьмяніць індэкс" -#: tbl_indexes.php:167 +#: tbl_indexes.php:166 msgid "Index name:" msgstr "Імя індэкса:" -#: tbl_indexes.php:173 +#: tbl_indexes.php:172 msgid "Index type:" msgstr "Тып індэкса:" -#: tbl_indexes.php:183 +#: tbl_indexes.php:182 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" "(\"PRIMARY\" мусіць быць імем першаснага ключа і толькі яго!)" -#: tbl_indexes.php:250 +#: tbl_indexes.php:249 #, php-format msgid "Add to index  %s column(s)" msgstr "Дадаць да індэкса  %s калёнку(і)" -#: tbl_indexes.php:255 tbl_structure.php:588 tbl_structure.php:599 +#: tbl_indexes.php:254 tbl_structure.php:586 tbl_structure.php:597 msgid "Column count has to be larger than zero." msgstr "Колькасьць калёнак мусіць быць большай за нуль." -#: tbl_move_copy.php:45 +#: tbl_move_copy.php:44 msgid "Can't move table to same one!" msgstr "Немагчыма перанесьці табліцу ў саму сябе!" -#: tbl_move_copy.php:47 +#: tbl_move_copy.php:46 msgid "Can't copy table to same one!" msgstr "Немагчыма скапіяваць табліцу ў саму сябе!" -#: tbl_move_copy.php:55 +#: tbl_move_copy.php:54 #, php-format msgid "Table %s has been moved to %s." msgstr "Табліца %s была перанесеная ў %s." -#: tbl_move_copy.php:57 +#: tbl_move_copy.php:56 #, php-format msgid "Table %s has been copied to %s." msgstr "Табліца %s была скапіяваная ў %s." -#: tbl_move_copy.php:81 +#: tbl_move_copy.php:80 msgid "The table name is empty!" msgstr "Пустая назва табліцы!" -#: tbl_operations.php:248 +#: tbl_operations.php:246 msgid "Alter table order by" msgstr "Зьмяніць парадак табліцы" -#: tbl_operations.php:257 +#: tbl_operations.php:255 msgid "(singly)" msgstr "(асобна)" -#: tbl_operations.php:277 +#: tbl_operations.php:275 msgid "Move table to (database.table):" msgstr "Перанесьці табліцу ў (база дадзеных.табліца):" -#: tbl_operations.php:335 +#: tbl_operations.php:333 msgid "Table options" msgstr "Опцыі табліцы" -#: tbl_operations.php:339 +#: tbl_operations.php:337 msgid "Rename table to" msgstr "Перайменаваць табліцу ў" -#: tbl_operations.php:510 +#: tbl_operations.php:508 msgid "Copy table to (database.table):" msgstr "Скапіяваць табліцу ў (база дадзеных.табліца):" -#: tbl_operations.php:557 +#: tbl_operations.php:555 msgid "Switch to copied table" msgstr "Перайсьці да скапіяванай табліцы" -#: tbl_operations.php:569 +#: tbl_operations.php:567 msgid "Table maintenance" msgstr "Абслугоўваньне табліцы" -#: tbl_operations.php:590 +#: tbl_operations.php:588 msgid "Defragment table" msgstr "Дэфрагмэнтаваць табліцу" -#: tbl_operations.php:629 +#: tbl_operations.php:627 #, php-format msgid "Table %s has been flushed" msgstr "Кэш табліцы %s быў ачышчаны" -#: tbl_operations.php:635 +#: tbl_operations.php:633 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Скінуць кэш табліцы (\"FLUSH\")" -#: tbl_operations.php:650 +#: tbl_operations.php:648 msgid "Partition maintenance" msgstr "Падтрымка падзелаў" -#: tbl_operations.php:658 +#: tbl_operations.php:656 #, php-format msgid "Partition %s" msgstr "Падзел %s" -#: tbl_operations.php:661 +#: tbl_operations.php:659 msgid "Analyze" msgstr "Прааналізаваць" -#: tbl_operations.php:662 +#: tbl_operations.php:660 msgid "Check" msgstr "Праверыць" -#: tbl_operations.php:663 +#: tbl_operations.php:661 msgid "Optimize" msgstr "Аптымізаваць" -#: tbl_operations.php:664 +#: tbl_operations.php:662 msgid "Rebuild" msgstr "Перабудаваць" -#: tbl_operations.php:665 +#: tbl_operations.php:663 msgid "Repair" msgstr "Адрамантаваць" -#: tbl_operations.php:677 +#: tbl_operations.php:675 msgid "Remove partitioning" msgstr "Скасаваць падзел на часткі" -#: tbl_operations.php:703 +#: tbl_operations.php:701 msgid "Check referential integrity:" msgstr "Праверыць цэласнасьць дадзеных:" -#: tbl_printview.php:73 +#: tbl_printview.php:72 msgid "Show tables" msgstr "Паказаць табліцы" -#: tbl_printview.php:308 tbl_structure.php:655 +#: tbl_printview.php:307 tbl_structure.php:653 msgid "Space usage" msgstr "Выкарыстаньне прасторы" -#: tbl_printview.php:312 tbl_structure.php:659 +#: tbl_printview.php:311 tbl_structure.php:657 msgid "Usage" msgstr "Выкарыстаньне" -#: tbl_printview.php:339 tbl_structure.php:686 +#: tbl_printview.php:338 tbl_structure.php:684 msgid "Effective" msgstr "Эфэктыўнасьць" -#: tbl_printview.php:364 tbl_structure.php:724 +#: tbl_printview.php:363 tbl_structure.php:722 msgid "Row Statistics" msgstr "Статыстыка радку" -#: tbl_printview.php:367 tbl_structure.php:727 +#: tbl_printview.php:366 tbl_structure.php:725 msgid "Statements" msgstr "Выразы" -#: tbl_printview.php:378 tbl_structure.php:739 +#: tbl_printview.php:377 tbl_structure.php:737 msgid "static" msgstr "" -#: tbl_printview.php:380 tbl_structure.php:741 +#: tbl_printview.php:379 tbl_structure.php:739 msgid "dynamic" msgstr "дынамічны" -#: tbl_printview.php:402 tbl_structure.php:784 +#: tbl_printview.php:401 tbl_structure.php:782 msgid "Row length" msgstr "Даўжыня радка" -#: tbl_printview.php:412 tbl_structure.php:792 +#: tbl_printview.php:411 tbl_structure.php:790 msgid " Row size " msgstr " Памер радка " -#: tbl_relation.php:278 +#: tbl_relation.php:276 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "Памылка стварэньня зьнешняга ключа на %1$s (праверце тыпы калёнак)" -#: tbl_relation.php:404 +#: tbl_relation.php:402 #, fuzzy #| msgid "Internal relations" msgid "Internal relation" msgstr "Унутраныя сувязі" -#: tbl_relation.php:406 +#: tbl_relation.php:404 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -8162,7 +8227,7 @@ msgstr "" "Унутраная сувязь не зьяўляецца абавязковай, калі існуе адпаведная сувязь " "FOREIGN KEY." -#: tbl_relation.php:412 +#: tbl_relation.php:410 msgid "Foreign key constraint" msgstr "" @@ -8170,232 +8235,232 @@ msgstr "" msgid "No rows selected" msgstr "Ніводны радок ня выбраны" -#: tbl_select.php:130 +#: tbl_select.php:129 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Выканаць \"запыт згодна прыклада\" (сымбаль падстаноўкі: \"%\")" -#: tbl_select.php:136 +#: tbl_select.php:135 msgid "Operator" msgstr "Апэратар" -#: tbl_select.php:267 +#: tbl_select.php:266 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "Выбраць палі (прынамсі адно):" -#: tbl_select.php:285 +#: tbl_select.php:284 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Дадаць умовы пошуку (цела для ўмовы \"where\"):" -#: tbl_select.php:292 +#: tbl_select.php:291 msgid "Number of rows per page" msgstr "Колькасьць радкоў на старонку" -#: tbl_select.php:298 +#: tbl_select.php:297 msgid "Display order:" msgstr "Парадак прагляду:" -#: tbl_structure.php:160 +#: tbl_structure.php:159 msgid "Browse distinct values" msgstr "Прагляд розных значэньняў" -#: tbl_structure.php:360 +#: tbl_structure.php:358 #, fuzzy #| msgid "None" msgctxt "None for default" msgid "None" msgstr "Няма" -#: tbl_structure.php:373 +#: tbl_structure.php:371 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Column %s has been dropped" msgstr "Табліца %s была выдаленая" -#: tbl_structure.php:384 +#: tbl_structure.php:382 #, php-format msgid "A primary key has been added on %s" msgstr "Першасны ключ быў дададзены да %s" -#: tbl_structure.php:399 tbl_structure.php:413 tbl_structure.php:427 +#: tbl_structure.php:397 tbl_structure.php:411 tbl_structure.php:425 #, php-format msgid "An index has been added on %s" msgstr "Быў дададзены індэкс для %s" -#: tbl_structure.php:505 tbl_structure.php:507 +#: tbl_structure.php:503 tbl_structure.php:505 msgid "Relation view" msgstr "Прагляд залежнасьцяў" -#: tbl_structure.php:514 tbl_structure.php:516 +#: tbl_structure.php:512 tbl_structure.php:514 msgid "Propose table structure" msgstr "Прапанаваная структура табліцы" -#: tbl_structure.php:539 +#: tbl_structure.php:537 #, fuzzy #| msgid "Add %s field(s)" msgid "Add column" msgstr "Дадаць %s новыя палі" -#: tbl_structure.php:553 +#: tbl_structure.php:551 msgid "At End of Table" msgstr "У канцы табліцы" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At Beginning of Table" msgstr "У пачатку табліцы" -#: tbl_structure.php:555 +#: tbl_structure.php:553 #, php-format msgid "After %s" msgstr "Пасьля %s" -#: tbl_structure.php:593 +#: tbl_structure.php:591 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "Стварыць індэкс на %s калёнках" -#: tbl_structure.php:755 +#: tbl_structure.php:753 msgid "partitioned" msgstr "падзеленая на сэкцыі" -#: tbl_tracking.php:113 +#: tbl_tracking.php:109 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:186 +#: tbl_tracking.php:182 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "" -#: tbl_tracking.php:194 +#: tbl_tracking.php:190 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "" -#: tbl_tracking.php:202 +#: tbl_tracking.php:198 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "" -#: tbl_tracking.php:212 +#: tbl_tracking.php:208 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:219 +#: tbl_tracking.php:215 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:220 +#: tbl_tracking.php:216 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:229 +#: tbl_tracking.php:225 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:250 tbl_tracking.php:378 +#: tbl_tracking.php:245 tbl_tracking.php:373 msgid "Close" msgstr "" -#: tbl_tracking.php:261 +#: tbl_tracking.php:256 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:380 +#: tbl_tracking.php:375 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:396 tbl_tracking.php:503 +#: tbl_tracking.php:391 tbl_tracking.php:498 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "" -#: tbl_tracking.php:409 tbl_tracking.php:460 +#: tbl_tracking.php:404 tbl_tracking.php:455 #, fuzzy msgid "Date" msgstr "Дадзеныя" -#: tbl_tracking.php:410 tbl_tracking.php:461 +#: tbl_tracking.php:405 tbl_tracking.php:456 #, fuzzy msgid "Username" msgstr "Імя карыстальніка:" -#: tbl_tracking.php:411 +#: tbl_tracking.php:406 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:462 +#: tbl_tracking.php:457 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:506 +#: tbl_tracking.php:501 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:507 +#: tbl_tracking.php:502 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:520 +#: tbl_tracking.php:515 #, fuzzy, php-format msgid "Export as %s" msgstr "Тып экспарту" -#: tbl_tracking.php:560 +#: tbl_tracking.php:555 msgid "Show versions" msgstr "" -#: tbl_tracking.php:592 +#: tbl_tracking.php:587 #, fuzzy msgid "Version" msgstr "Пэрсыдзкая" -#: tbl_tracking.php:639 +#: tbl_tracking.php:634 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "" -#: tbl_tracking.php:641 +#: tbl_tracking.php:636 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:652 +#: tbl_tracking.php:647 #, php-format msgid "Activate tracking for %s.%s" msgstr "" -#: tbl_tracking.php:654 +#: tbl_tracking.php:649 msgid "Activate now" msgstr "" -#: tbl_tracking.php:667 +#: tbl_tracking.php:662 #, php-format msgid "Create version %s of %s.%s" msgstr "" -#: tbl_tracking.php:671 +#: tbl_tracking.php:666 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:679 +#: tbl_tracking.php:674 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:687 +#: tbl_tracking.php:682 #, fuzzy msgid "Create version" msgstr "Стварыць сувязь" @@ -8445,11 +8510,37 @@ msgstr "Профіль быў адноўлены." msgid "VIEW name" msgstr "Назва прагляду" -#: view_operations.php:92 +#: view_operations.php:91 #, fuzzy msgid "Rename view to" msgstr "Перайменаваць табліцу ў" +#, fuzzy +#~| msgid "Enabled" +#~ msgctxt "BLOB repository" +#~ msgid "Enabled" +#~ msgstr "Уключана" + +#, fuzzy +#~ msgid "Disable" +#~ msgstr "Адключана" + +#, fuzzy +#~| msgid "Repair" +#~ msgctxt "BLOB repository" +#~ msgid "Repair" +#~ msgstr "Адрамантаваць" + +#, fuzzy +#~| msgid "Disabled" +#~ msgctxt "BLOB repository" +#~ msgid "Disabled" +#~ msgstr "Адключана" + +#, fuzzy +#~ msgid "Enable" +#~ msgstr "Уключана" + #~ msgid "" #~ "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " #~ "extension. Please check your PHP configuration." diff --git a/po/be@latin.po b/po/be@latin.po index deadba943..ae5dd817e 100644 --- a/po/be@latin.po +++ b/po/be@latin.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-21 13:53+0200\n" +"POT-Creation-Date: 2010-07-26 17:18+0200\n" "PO-Revision-Date: 2010-03-30 23:09+0200\n" "Last-Translator: Michal \n" "Language-Team: belarusian_latin \n" @@ -15,19 +15,19 @@ msgstr "" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Generator: Pootle 2.0.1\n" -#: browse_foreigners.php:37 browse_foreigners.php:58 -#: libraries/display_tbl.lib.php:416 server_privileges.php:1506 +#: browse_foreigners.php:36 browse_foreigners.php:57 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1510 msgid "Show all" msgstr "Pakazać usie" -#: browse_foreigners.php:81 libraries/common.lib.php:2313 -#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:393 -#: libraries/export/pdf.php:146 pdf_schema.php:282 pdf_schema.php:1122 -#: pdf_schema.php:1138 +#: browse_foreigners.php:80 libraries/common.lib.php:2318 +#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:392 +#: libraries/export/pdf.php:146 pdf_schema.php:281 pdf_schema.php:1121 +#: pdf_schema.php:1137 msgid "Page number:" msgstr "Staronka:" -#: browse_foreigners.php:131 +#: browse_foreigners.php:130 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -37,139 +37,153 @@ msgstr "" "akno abo nałady biaśpieki vašaha braŭzera skanfihuranyja na blakavańnie " "mižvakonnych ŭzajemadziejańniaŭ" -#: browse_foreigners.php:149 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2829 -#: libraries/common.lib.php:2836 libraries/db_links.inc.php:74 -#: libraries/tbl_links.inc.php:62 +#: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 +#: db_structure.php:89 db_structure.php:91 db_structure.php:102 +#: db_structure.php:104 libraries/common.lib.php:2834 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Pošuk" -#: browse_foreigners.php:152 db_operations.php:384 db_operations.php:428 -#: db_operations.php:498 db_operations.php:608 db_search.php:344 -#: db_structure.php:566 js/messages.php:48 libraries/Config.class.php:1043 -#: libraries/Theme_Manager.class.php:310 +#: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 +#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 +#: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 -#: libraries/common.lib.php:1340 libraries/common.lib.php:2289 +#: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 -#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:275 -#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:531 -#: libraries/display_tbl.lib.php:613 libraries/replication_gui.lib.php:75 +#: libraries/display_export.lib.php:269 libraries/display_import.lib.php:275 +#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 +#: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 #: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:781 -#: main.php:127 navigation.php:231 pdf_pages.php:291 pdf_pages.php:327 -#: pdf_pages.php:529 pmd_pdf.php:115 server_binlog.php:128 -#: server_privileges.php:664 server_privileges.php:1616 -#: server_privileges.php:1963 server_privileges.php:2010 -#: server_privileges.php:2049 server_replication.php:234 -#: server_replication.php:317 server_replication.php:340 -#: server_synchronize.php:1208 tbl_change.php:328 tbl_change.php:1172 -#: tbl_change.php:1209 tbl_indexes.php:253 tbl_operations.php:264 -#: tbl_operations.php:301 tbl_operations.php:498 tbl_operations.php:560 -#: tbl_operations.php:680 tbl_select.php:324 tbl_structure.php:561 -#: tbl_structure.php:596 tbl_tracking.php:394 tbl_tracking.php:511 -#: view_create.php:181 view_operations.php:100 +#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 +#: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 +#: server_privileges.php:663 server_privileges.php:1620 +#: server_privileges.php:1967 server_privileges.php:2014 +#: server_privileges.php:2053 server_replication.php:233 +#: server_replication.php:316 server_replication.php:339 +#: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 +#: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 +#: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 +#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "Paniesłasia" -#: browse_foreigners.php:167 browse_foreigners.php:171 -#: libraries/Index.class.php:441 tbl_tracking.php:319 +#: browse_foreigners.php:166 browse_foreigners.php:170 +#: libraries/Index.class.php:441 tbl_tracking.php:314 msgid "Keyname" msgstr "Imia kluča" -#: browse_foreigners.php:168 browse_foreigners.php:170 -#: server_collations.php:54 server_collations.php:66 server_engines.php:58 +#: browse_foreigners.php:167 browse_foreigners.php:169 +#: server_collations.php:54 server_collations.php:66 server_engines.php:57 #: server_status.php:738 msgid "Description" msgstr "Apisańnie" -#: browse_foreigners.php:246 browse_foreigners.php:255 -#: browse_foreigners.php:267 browse_foreigners.php:275 +#: browse_foreigners.php:245 browse_foreigners.php:254 +#: browse_foreigners.php:266 browse_foreigners.php:274 msgid "Use this value" msgstr "Vykarystoŭvać heta značeńnie" -#: db_create.php:45 +#: bs_disp_as_mime_type.php:29 bs_play_media.php:35 +msgid "No blob streaming server configured!" +msgstr "" + +#: bs_disp_as_mime_type.php:35 +#, fuzzy +#| msgid "Failed to write file to disk." +msgid "Failed to fetch headers" +msgstr "Pamyłka zapisu na dysk." + +#: bs_disp_as_mime_type.php:41 +msgid "Failed to open remote URL" +msgstr "" + +#: db_create.php:44 #, php-format msgid "Database %1$s has been created." msgstr "Baza dadzienych %1$s stvoranaja." -#: db_datadict.php:48 db_operations.php:377 +#: db_datadict.php:48 db_operations.php:313 msgid "Database comment: " msgstr "Kamentar da bazy dadzienych: " -#: db_datadict.php:164 libraries/tbl_properties.inc.php:723 -#: pdf_schema.php:1235 tbl_operations.php:346 tbl_printview.php:128 +#: db_datadict.php:164 libraries/tbl_properties.inc.php:722 +#: pdf_schema.php:1234 tbl_operations.php:344 tbl_printview.php:127 msgid "Table comments" msgstr "Kamentar da tablicy" -#: db_datadict.php:173 db_qbe.php:173 libraries/Index.class.php:445 +#: db_datadict.php:173 db_qbe.php:170 libraries/Index.class.php:445 #: libraries/export/htmlword.php:243 libraries/export/latex.php:364 #: libraries/export/odt.php:293 libraries/export/texytext.php:233 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:274 -#: pdf_schema.php:1261 pdf_schema.php:1282 tbl_change.php:306 -#: tbl_indexes.php:188 tbl_printview.php:140 tbl_relation.php:401 -#: tbl_select.php:133 tbl_structure.php:176 tbl_tracking.php:272 -#: tbl_tracking.php:323 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 +#: pdf_schema.php:1260 pdf_schema.php:1281 tbl_change.php:301 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:132 tbl_structure.php:175 tbl_tracking.php:267 +#: tbl_tracking.php:318 #, fuzzy #| msgid "Column names" msgid "Column" msgstr "Nazvy kalonak" -#: db_datadict.php:174 db_printview.php:105 libraries/Index.class.php:442 +#: db_datadict.php:174 db_printview.php:104 libraries/Index.class.php:442 #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 #: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:244 #: libraries/export/latex.php:364 libraries/export/odt.php:296 #: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:99 -#: pdf_schema.php:1262 pdf_schema.php:1283 server_privileges.php:2062 -#: tbl_change.php:285 tbl_change.php:312 tbl_printview.php:141 -#: tbl_printview.php:311 tbl_select.php:134 tbl_structure.php:177 -#: tbl_structure.php:658 tbl_tracking.php:273 tbl_tracking.php:320 +#: pdf_schema.php:1261 pdf_schema.php:1282 server_privileges.php:2066 +#: tbl_change.php:280 tbl_change.php:307 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:133 tbl_structure.php:176 +#: tbl_structure.php:656 tbl_tracking.php:268 tbl_tracking.php:315 msgid "Type" msgstr "Typ" #: db_datadict.php:176 libraries/Index.class.php:448 #: libraries/export/htmlword.php:245 libraries/export/latex.php:364 #: libraries/export/odt.php:299 libraries/export/texytext.php:235 -#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1264 -#: pdf_schema.php:1285 tbl_change.php:321 tbl_printview.php:143 -#: tbl_structure.php:180 tbl_tracking.php:275 tbl_tracking.php:326 +#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1263 +#: pdf_schema.php:1284 tbl_change.php:316 tbl_printview.php:142 +#: tbl_structure.php:179 tbl_tracking.php:270 tbl_tracking.php:321 msgid "Null" msgstr "Nul" -#: db_datadict.php:177 db_structure.php:500 libraries/export/htmlword.php:246 +#: db_datadict.php:177 db_structure.php:486 libraries/export/htmlword.php:246 #: libraries/export/latex.php:364 libraries/export/odt.php:302 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:105 -#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 -#: tbl_structure.php:181 tbl_tracking.php:276 +#: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:143 +#: tbl_structure.php:180 tbl_tracking.php:271 msgid "Default" msgstr "Pa zmoŭčańni" #: db_datadict.php:181 libraries/export/htmlword.php:248 #: libraries/export/latex.php:366 libraries/export/odt.php:306 -#: libraries/export/texytext.php:238 pdf_schema.php:1267 pdf_schema.php:1288 -#: tbl_printview.php:148 +#: libraries/export/texytext.php:238 pdf_schema.php:1266 pdf_schema.php:1287 +#: tbl_printview.php:147 msgid "Links to" msgstr "Źviazanaja z" -#: db_datadict.php:183 db_printview.php:111 libraries/export/htmlword.php:251 +#: db_datadict.php:183 db_printview.php:110 libraries/export/htmlword.php:251 #: libraries/export/latex.php:49 libraries/export/latex.php:369 #: libraries/export/odt.php:37 libraries/export/odt.php:311 #: libraries/export/sql.php:29 libraries/export/texytext.php:241 -#: libraries/tbl_properties.inc.php:129 pdf_schema.php:1278 -#: pdf_schema.php:1289 tbl_printview.php:150 +#: libraries/tbl_properties.inc.php:128 pdf_schema.php:1277 +#: pdf_schema.php:1288 tbl_printview.php:149 msgid "Comments" msgstr "Kamentary" #: db_datadict.php:266 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/export/htmlword.php:321 #: libraries/export/latex.php:434 libraries/export/odt.php:367 -#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:262 -#: pdf_schema.php:1343 server_privileges.php:1560 server_privileges.php:1571 -#: server_privileges.php:1881 server_privileges.php:1886 -#: server_privileges.php:2179 sql.php:131 sql.php:193 tbl_printview.php:227 -#: tbl_structure.php:349 tbl_tracking.php:336 tbl_tracking.php:341 +#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:261 +#: pdf_schema.php:1342 server_privileges.php:1564 server_privileges.php:1575 +#: server_privileges.php:1885 server_privileges.php:1890 +#: server_privileges.php:2183 sql.php:130 sql.php:192 tbl_printview.php:226 +#: tbl_structure.php:347 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "Nie" @@ -180,17 +194,17 @@ msgstr "Nie" #: libraries/mult_submits.inc.php:49 libraries/mult_submits.inc.php:54 #: libraries/mult_submits.inc.php:59 libraries/mult_submits.inc.php:91 #: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:105 -#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:261 -#: libraries/mult_submits.inc.php:272 pdf_schema.php:1343 -#: server_databases.php:63 server_privileges.php:1557 -#: server_privileges.php:1571 server_privileges.php:1881 -#: server_privileges.php:1884 server_privileges.php:2179 sql.php:192 -#: tbl_printview.php:227 tbl_structure.php:39 tbl_structure.php:349 -#: tbl_tracking.php:334 tbl_tracking.php:339 +#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:260 +#: libraries/mult_submits.inc.php:271 pdf_schema.php:1342 +#: server_databases.php:61 server_privileges.php:1561 +#: server_privileges.php:1575 server_privileges.php:1885 +#: server_privileges.php:1888 server_privileges.php:2183 sql.php:191 +#: tbl_printview.php:226 tbl_structure.php:38 tbl_structure.php:347 +#: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" msgstr "Tak" -#: db_datadict.php:321 db_printview.php:265 tbl_printview.php:496 +#: db_datadict.php:321 db_printview.php:264 tbl_printview.php:495 msgid "Print" msgstr "Druk" @@ -198,194 +212,154 @@ msgstr "Druk" msgid "View dump (schema) of database" msgstr "Prahladzieć damp (schiemu) bazy dadzienych" -#: db_export.php:32 db_printview.php:95 db_qbe.php:101 db_structure.php:50 -#: db_tracking.php:34 export.php:352 navigation.php:326 +#: db_export.php:32 db_printview.php:94 db_qbe.php:98 db_structure.php:49 +#: db_tracking.php:30 export.php:350 navigation.php:325 msgid "No tables found in database." msgstr "U bazie dadzienych tablic nia vyjaŭlena." -#: db_export.php:42 db_search.php:326 server_export.php:26 +#: db_export.php:42 db_search.php:326 server_export.php:24 msgid "Select All" msgstr "Vybrać usio" -#: db_export.php:44 db_search.php:329 server_export.php:28 +#: db_export.php:44 db_search.php:329 server_export.php:26 msgid "Unselect All" msgstr "Źniać usie adznaki" -#: db_operations.php:37 tbl_create.php:49 +#: db_operations.php:33 tbl_create.php:47 msgid "The database name is empty!" msgstr "Imia bazy dadzienych nie paznačanaje!" -#: db_operations.php:235 +#: db_operations.php:231 #, php-format msgid "Database %s has been renamed to %s" msgstr "Baza dadzienych %s była pierajmienavanaja ŭ %s" -#: db_operations.php:239 +#: db_operations.php:235 #, php-format msgid "Database %s has been copied to %s" msgstr "Baza dadzienych %s była skapijavanaja ŭ %s" -#: db_operations.php:411 +#: db_operations.php:347 msgid "Rename database to" msgstr "Pierajmienavać bazu dadzienych u" -#: db_operations.php:416 server_processlist.php:56 +#: db_operations.php:352 server_processlist.php:56 msgid "Command" msgstr "Kamanda" -#: db_operations.php:428 tbl_change.php:1141 +#: db_operations.php:364 tbl_change.php:1039 msgid "and then" msgstr "i paśla" -#: db_operations.php:454 +#: db_operations.php:390 msgid "Copy database to" msgstr "Kapijavać bazu dadzienych u" -#: db_operations.php:461 tbl_operations.php:527 tbl_tracking.php:387 +#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Tolki strukturu" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:389 +#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Strukturu i dadzienyja" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:388 +#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Tolki dadzienyja" -#: db_operations.php:471 +#: db_operations.php:407 msgid "CREATE DATABASE before copying" msgstr "vykanać CREATE DATABASE pierad kapijavańniem" -#: db_operations.php:474 libraries/export/sql.php:51 +#: db_operations.php:410 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 -#: libraries/export/sql.php:81 tbl_operations.php:535 +#: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "Dadać %s" -#: db_operations.php:478 libraries/export/sql.php:77 tbl_operations.php:298 -#: tbl_operations.php:537 +#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Dadać značeńnie AUTO_INCREMENT" -#: db_operations.php:482 tbl_operations.php:544 +#: db_operations.php:418 tbl_operations.php:542 msgid "Add constraints" msgstr "Dadać abmiežavańni" -#: db_operations.php:495 +#: db_operations.php:431 msgid "Switch to copied database" msgstr "Pierajści da skapijavanaj bazy dadzienych" -#: db_operations.php:536 -msgid "BLOB Repository" -msgstr "" - -#: db_operations.php:539 db_tracking.php:75 libraries/common.lib.php:1357 -#: libraries/server_links.inc.php:48 server_processlist.php:58 -#: tbl_tracking.php:595 test/theme.php:100 -msgid "Status" -msgstr "Stan" - -#: db_operations.php:547 -#, fuzzy -#| msgid "Enabled" -msgctxt "BLOB repository" -msgid "Enabled" -msgstr "Uklučana" - -#: db_operations.php:551 -msgid "Disable" -msgstr "" - -#: db_operations.php:561 -msgid "Damaged" -msgstr "" - -#: db_operations.php:565 -#, fuzzy -#| msgid "Repair" -msgctxt "BLOB repository" -msgid "Repair" -msgstr "Adramantavać" - -#: db_operations.php:573 -#, fuzzy -#| msgid "Disabled" -msgctxt "BLOB repository" -msgid "Disabled" -msgstr "Adklučana" - -#: db_operations.php:577 -msgid "Enable" -msgstr "" - -#: db_operations.php:601 libraries/Index.class.php:447 +#: db_operations.php:451 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 -#: server_collations.php:53 server_collations.php:65 server_databases.php:110 -#: tbl_operations.php:362 tbl_select.php:135 tbl_structure.php:178 -#: tbl_structure.php:766 tbl_tracking.php:274 tbl_tracking.php:325 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 +#: server_collations.php:53 server_collations.php:65 server_databases.php:108 +#: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:177 +#: tbl_structure.php:764 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "Supastaŭleńnie" -#: db_operations.php:614 main.php:315 pdf_schema.php:33 -#, php-format +#: db_operations.php:464 pdf_schema.php:32 +#, fuzzy, php-format +#| msgid "" +#| "The additional features for working with linked tables have been " +#| "deactivated. To find out why click %shere%s." msgid "" -"The additional features for working with linked tables have been " -"deactivated. To find out why click %shere%s." +"The phpMyAdmin configuration storage has been deactivated. To find out why " +"click %shere%s." msgstr "" "Dadatkovyja mahčymaści raboty z źviazanymi tablicami byli adklučanyja. Kab " "vyśvietlić čamu, naciśnicie %stut%s." -#: db_operations.php:647 +#: db_operations.php:497 msgid "Edit PDF Pages" msgstr "Redagavać PDF-staronki" -#: db_printview.php:103 db_tracking.php:71 db_tracking.php:156 +#: db_printview.php:102 db_tracking.php:67 db_tracking.php:152 #: libraries/db_structure.lib.php:37 libraries/export/xml.php:327 -#: libraries/header.inc.php:125 pdf_pages.php:423 server_privileges.php:1657 -#: server_privileges.php:1713 server_privileges.php:1977 -#: server_synchronize.php:422 server_synchronize.php:865 tbl_tracking.php:591 +#: libraries/header.inc.php:125 pdf_pages.php:422 server_privileges.php:1661 +#: server_privileges.php:1717 server_privileges.php:1981 +#: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "Tablica" -#: db_printview.php:104 libraries/db_structure.lib.php:47 +#: db_printview.php:103 libraries/db_structure.lib.php:47 #: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 -#: navigation.php:629 navigation.php:651 server_databases.php:121 -#: tbl_printview.php:392 tbl_structure.php:364 tbl_structure.php:776 +#: navigation.php:628 navigation.php:650 server_databases.php:119 +#: tbl_printview.php:391 tbl_structure.php:362 tbl_structure.php:774 msgid "Rows" msgstr "Radki" -#: db_printview.php:108 libraries/db_structure.lib.php:58 tbl_indexes.php:189 +#: db_printview.php:107 libraries/db_structure.lib.php:58 tbl_indexes.php:188 msgid "Size" msgstr "Pamier" -#: db_printview.php:161 db_structure.php:456 libraries/export/sql.php:556 +#: db_printview.php:160 db_structure.php:442 libraries/export/sql.php:556 #: libraries/export/sql.php:896 msgid "in use" msgstr "vykarystoŭvajecca" -#: db_printview.php:186 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:511 pdf_schema.php:1240 tbl_printview.php:432 -#: tbl_structure.php:808 +#: db_printview.php:185 libraries/db_info.inc.php:86 +#: libraries/export/sql.php:511 pdf_schema.php:1239 tbl_printview.php:431 +#: tbl_structure.php:806 msgid "Creation" msgstr "Stvoranaja" -#: db_printview.php:195 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:516 pdf_schema.php:1245 tbl_printview.php:442 -#: tbl_structure.php:816 +#: db_printview.php:194 libraries/db_info.inc.php:91 +#: libraries/export/sql.php:516 pdf_schema.php:1244 tbl_printview.php:441 +#: tbl_structure.php:814 msgid "Last update" msgstr "Apošniaje abnaŭleńnie" -#: db_printview.php:204 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:521 pdf_schema.php:1250 tbl_printview.php:452 -#: tbl_structure.php:824 +#: db_printview.php:203 libraries/db_info.inc.php:96 +#: libraries/export/sql.php:521 pdf_schema.php:1249 tbl_printview.php:451 +#: tbl_structure.php:822 msgid "Last check" msgstr "Apošniaja pravierka" -#: db_printview.php:221 db_structure.php:479 +#: db_printview.php:220 db_structure.php:465 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -394,94 +368,94 @@ msgstr[0] "%s tablic(y)" msgstr[1] "%s tablic(y)" msgstr[2] "%s tablic(y)" -#: db_qbe.php:28 import.php:453 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1980 libraries/sql_query_form.lib.php:138 -#: tbl_operations.php:212 tbl_relation.php:291 tbl_row_action.php:130 -#: view_operations.php:61 +#: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 +#: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "Vaš SQL-zapyt byŭ paśpiachova vykanany" -#: db_qbe.php:41 +#: db_qbe.php:38 msgid "You have to choose at least one column to display" msgstr "Vam nieabchodna vybrać prynamsi adnu kalonku dla adlustravańnia" -#: db_qbe.php:199 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:865 +#: db_qbe.php:196 libraries/db_structure.lib.php:95 +#: libraries/display_tbl.lib.php:864 msgid "Sort" msgstr "Paradak" -#: db_qbe.php:208 db_qbe.php:242 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:522 libraries/display_tbl.lib.php:827 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:259 -#: tbl_select.php:311 +#: db_qbe.php:205 db_qbe.php:239 libraries/db_structure.lib.php:102 +#: libraries/display_tbl.lib.php:521 libraries/display_tbl.lib.php:826 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:257 +#: tbl_select.php:310 msgid "Ascending" msgstr "pramy" -#: db_qbe.php:209 db_qbe.php:250 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:527 libraries/display_tbl.lib.php:824 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:260 -#: tbl_select.php:312 +#: db_qbe.php:206 db_qbe.php:247 libraries/db_structure.lib.php:110 +#: libraries/display_tbl.lib.php:526 libraries/display_tbl.lib.php:823 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:258 +#: tbl_select.php:311 msgid "Descending" msgstr "advarotny" -#: db_qbe.php:263 db_tracking.php:77 libraries/display_tbl.lib.php:307 -#: tbl_change.php:275 tbl_tracking.php:596 +#: db_qbe.php:260 db_tracking.php:73 libraries/display_tbl.lib.php:306 +#: tbl_change.php:270 tbl_tracking.php:591 msgid "Show" msgstr "Pakazać" -#: db_qbe.php:299 +#: db_qbe.php:296 msgid "Criteria" msgstr "Kryter" -#: db_qbe.php:352 db_qbe.php:434 db_qbe.php:526 db_qbe.php:557 +#: db_qbe.php:349 db_qbe.php:431 db_qbe.php:523 db_qbe.php:554 msgid "Ins" msgstr "Ustavić" -#: db_qbe.php:356 db_qbe.php:438 db_qbe.php:523 db_qbe.php:554 +#: db_qbe.php:353 db_qbe.php:435 db_qbe.php:520 db_qbe.php:551 msgid "And" msgstr "I" -#: db_qbe.php:365 db_qbe.php:446 db_qbe.php:528 db_qbe.php:559 +#: db_qbe.php:362 db_qbe.php:443 db_qbe.php:525 db_qbe.php:556 msgid "Del" msgstr "Vydalić" -#: db_qbe.php:369 db_qbe.php:450 db_qbe.php:521 db_qbe.php:552 -#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:778 -#: server_privileges.php:297 tbl_change.php:1027 tbl_indexes.php:249 -#: tbl_select.php:285 +#: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 +#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:777 +#: server_privileges.php:296 tbl_change.php:925 tbl_indexes.php:248 +#: tbl_select.php:284 msgid "Or" msgstr "Abo" -#: db_qbe.php:506 +#: db_qbe.php:503 msgid "Modify" msgstr "Źmianić" -#: db_qbe.php:583 +#: db_qbe.php:580 #, fuzzy #| msgid "Add/Delete Criteria Row" msgid "Add/Delete criteria rows" msgstr "Dadać/vydalić radok kryteru" -#: db_qbe.php:595 +#: db_qbe.php:592 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Add/Delete columns" msgstr "Dadać/vydalić kalonku kryteru" -#: db_qbe.php:608 db_qbe.php:633 +#: db_qbe.php:605 db_qbe.php:630 msgid "Update Query" msgstr "Abnavić zapyt" -#: db_qbe.php:616 +#: db_qbe.php:613 msgid "Use Tables" msgstr "Vykarystoŭvać tablicy" -#: db_qbe.php:639 +#: db_qbe.php:636 #, php-format msgid "SQL query on database %s:" msgstr "SQL-zapyt da BD %s:" -#: db_qbe.php:933 libraries/common.lib.php:1222 +#: db_qbe.php:930 libraries/common.lib.php:1215 msgid "Submit Query" msgstr "Vykanać zapyt" @@ -522,17 +496,17 @@ msgstr[0] "%s supadzieńniaŭ u tablicy %s" msgstr[1] "%s supadzieńniaŭ u tablicy %s" msgstr[2] "%s supadzieńniaŭ u tablicy %s" -#: db_search.php:249 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2831 -#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:49 -#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:466 +#: db_search.php:249 db_structure.php:75 db_structure.php:76 +#: db_structure.php:88 db_structure.php:90 db_structure.php:101 +#: db_structure.php:103 libraries/common.lib.php:2836 +#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 +#: tbl_structure.php:35 tbl_structure.php:47 tbl_structure.php:464 msgid "Browse" msgstr "Prahlad" -#: db_search.php:254 libraries/display_tbl.lib.php:1164 -#: libraries/display_tbl.lib.php:2055 libraries/sql_query_form.lib.php:453 -#: pdf_pages.php:285 pdf_pages.php:424 pdf_pages.php:460 pdf_pages.php:488 +#: db_search.php:254 libraries/display_tbl.lib.php:1163 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 msgid "Delete" @@ -573,66 +547,66 @@ msgstr "U tablicy(ach):" msgid "Inside column:" msgstr "Unutry pola:" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2830 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:75 +#: db_structure.php:79 db_structure.php:80 db_structure.php:92 +#: db_structure.php:93 db_structure.php:105 db_structure.php:106 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 +#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Ustavić" -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2827 libraries/common.lib.php:2834 -#: libraries/db_links.inc.php:62 libraries/export/htmlword.php:22 +#: db_structure.php:81 db_structure.php:94 db_structure.php:107 +#: libraries/common.lib.php:2832 libraries/common.lib.php:2839 +#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 -#: libraries/tbl_links.inc.php:55 pmd_general.php:133 -#: server_privileges.php:593 server_replication.php:314 tbl_tracking.php:268 +#: libraries/tbl_links.inc.php:54 pmd_general.php:133 +#: server_privileges.php:592 server_replication.php:313 tbl_tracking.php:263 msgid "Structure" msgstr "Struktura" -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:544 db_structure.php:545 db_tracking.php:90 -#: libraries/Index.class.php:482 libraries/common.lib.php:1659 -#: libraries/db_links.inc.php:99 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:126 -#: server_databases.php:351 tbl_structure.php:26 tbl_structure.php:150 -#: tbl_structure.php:151 tbl_structure.php:470 +#: db_structure.php:82 db_structure.php:83 db_structure.php:95 +#: db_structure.php:96 db_structure.php:108 db_structure.php:109 +#: db_structure.php:530 db_structure.php:531 db_tracking.php:86 +#: libraries/Index.class.php:482 libraries/common.lib.php:1663 +#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 +#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 +#: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" msgstr "Vydalić" -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:542 db_structure.php:543 libraries/common.lib.php:1658 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:104 +#: db_structure.php:84 db_structure.php:85 db_structure.php:97 +#: db_structure.php:98 db_structure.php:110 db_structure.php:111 +#: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 +#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 msgid "Empty" msgstr "Ačyścić" -#: db_structure.php:315 libraries/tbl_links.inc.php:99 +#: db_structure.php:301 libraries/tbl_links.inc.php:98 #, php-format msgid "Table %s has been emptied" msgstr "Tablica %s była ačyščanaja" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "View %s has been dropped" msgstr "Vyhlad %s byŭ vydaleny" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "Table %s has been dropped" msgstr "Tablica %s była vydalenaja" -#: db_structure.php:332 +#: db_structure.php:318 msgid "Tracking is active." msgstr "" -#: db_structure.php:334 +#: db_structure.php:320 msgid "Tracking is not active." msgstr "" -#: db_structure.php:419 libraries/display_tbl.lib.php:1943 +#: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -641,162 +615,168 @@ msgstr "" "Hety prahlad maje tolki takuju kolkaść radkoŭ. Kali łaska, źviarniciesia da " "%sdakumentacyi%s." -#: db_structure.php:433 db_structure.php:447 libraries/header.inc.php:125 -#: libraries/tbl_info.inc.php:65 tbl_structure.php:184 test/theme.php:73 +#: db_structure.php:419 db_structure.php:433 libraries/header.inc.php:125 +#: libraries/tbl_info.inc.php:60 tbl_structure.php:183 test/theme.php:73 msgid "View" msgstr "Vyhlad" -#: db_structure.php:484 libraries/db_structure.lib.php:40 -#: libraries/server_links.inc.php:69 server_replication.php:32 -#: server_replication.php:163 server_status.php:368 +#: db_structure.php:470 libraries/db_structure.lib.php:40 +#: libraries/server_links.inc.php:69 server_replication.php:31 +#: server_replication.php:162 server_status.php:368 msgid "Replication" msgstr "Replikacyja" -#: db_structure.php:488 +#: db_structure.php:474 msgid "Sum" msgstr "Usiaho" -#: db_structure.php:495 libraries/StorageEngine.class.php:349 +#: db_structure.php:481 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" "%s źjaŭlajecca mašynaj zachavańnia dadzienych pa zmoŭčańni na hetym MySQL-" "servery." -#: db_structure.php:523 db_structure.php:540 db_structure.php:541 -#: libraries/display_tbl.lib.php:2080 libraries/display_tbl.lib.php:2085 -#: libraries/mult_submits.inc.php:15 server_databases.php:345 -#: server_databases.php:350 server_privileges.php:1588 tbl_structure.php:454 -#: tbl_structure.php:463 +#: db_structure.php:509 db_structure.php:526 db_structure.php:527 +#: libraries/display_tbl.lib.php:2039 libraries/display_tbl.lib.php:2044 +#: libraries/mult_submits.inc.php:15 server_databases.php:343 +#: server_databases.php:348 server_privileges.php:1592 tbl_structure.php:452 +#: tbl_structure.php:461 msgid "With selected:" msgstr "Z adznačanymi:" -#: db_structure.php:526 libraries/display_tbl.lib.php:2075 -#: server_databases.php:347 server_privileges.php:569 -#: server_privileges.php:1591 tbl_structure.php:457 +#: db_structure.php:512 libraries/display_tbl.lib.php:2034 +#: server_databases.php:345 server_privileges.php:568 +#: server_privileges.php:1595 tbl_structure.php:455 msgid "Check All" msgstr "Adznačyć usio" -#: db_structure.php:530 libraries/display_tbl.lib.php:2076 -#: libraries/replication_gui.lib.php:35 server_databases.php:349 -#: server_privileges.php:572 server_privileges.php:1595 tbl_structure.php:461 +#: db_structure.php:516 libraries/display_tbl.lib.php:2035 +#: libraries/replication_gui.lib.php:35 server_databases.php:347 +#: server_privileges.php:571 server_privileges.php:1599 tbl_structure.php:459 msgid "Uncheck All" msgstr "Źniać usie adznaki" -#: db_structure.php:535 +#: db_structure.php:521 msgid "Check tables having overhead" msgstr "Adznačyć tyja, što patrabujuć aptymizacyi" -#: db_structure.php:546 db_structure.php:547 db_structure.php:598 -#: libraries/display_tbl.lib.php:2179 libraries/mult_submits.inc.php:27 -#: tbl_structure.php:491 tbl_structure.php:493 +#: db_structure.php:532 db_structure.php:533 db_structure.php:584 +#: libraries/display_tbl.lib.php:2138 libraries/mult_submits.inc.php:27 +#: tbl_structure.php:489 tbl_structure.php:491 msgid "Print view" msgstr "Versija dla druku" -#: db_structure.php:548 db_structure.php:549 libraries/mult_submits.inc.php:41 -#: tbl_operations.php:580 +#: db_structure.php:534 db_structure.php:535 libraries/mult_submits.inc.php:41 +#: tbl_operations.php:578 msgid "Check table" msgstr "Pravieryć tablicu" -#: db_structure.php:550 db_structure.php:551 libraries/mult_submits.inc.php:46 -#: tbl_operations.php:620 tbl_structure.php:708 tbl_structure.php:710 +#: db_structure.php:536 db_structure.php:537 libraries/mult_submits.inc.php:46 +#: tbl_operations.php:618 tbl_structure.php:706 tbl_structure.php:708 msgid "Optimize table" msgstr "Aptymizavać tablicu" -#: db_structure.php:552 db_structure.php:553 libraries/mult_submits.inc.php:51 -#: tbl_operations.php:610 +#: db_structure.php:538 db_structure.php:539 libraries/mult_submits.inc.php:51 +#: tbl_operations.php:608 msgid "Repair table" msgstr "Ramantavać tablicu" -#: db_structure.php:554 db_structure.php:555 libraries/mult_submits.inc.php:56 -#: tbl_operations.php:600 +#: db_structure.php:540 db_structure.php:541 libraries/mult_submits.inc.php:56 +#: tbl_operations.php:598 msgid "Analyze table" msgstr "Analizavać tablicu" -#: db_structure.php:556 db_structure.php:557 libraries/db_links.inc.php:70 -#: libraries/display_export.lib.php:82 libraries/display_tbl.lib.php:2093 -#: libraries/display_tbl.lib.php:2224 libraries/mult_submits.inc.php:61 -#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:81 -#: pmd_pdf.php:83 pmd_pdf.php:108 server_privileges.php:1372 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 +#: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 +#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 +#: pmd_pdf.php:81 pmd_pdf.php:106 server_privileges.php:1376 #: setup/frames/menu.inc.php:22 tbl_row_action.php:58 msgid "Export" msgstr "Ekspart" -#: db_structure.php:605 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:591 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "Słoŭnik dadzienych" -#: db_tracking.php:65 +#: db_tracking.php:61 msgid "Tracked tables" msgstr "" -#: db_tracking.php:70 libraries/export/htmlword.php:85 +#: db_tracking.php:66 libraries/export/htmlword.php:85 #: libraries/export/latex.php:152 libraries/export/odt.php:112 #: libraries/export/sql.php:339 libraries/export/texytext.php:84 #: libraries/export/xml.php:254 libraries/header.inc.php:105 -#: libraries/header_printview.inc.php:57 server_databases.php:168 -#: server_privileges.php:1652 server_privileges.php:1713 -#: server_privileges.php:1971 server_processlist.php:55 -#: server_synchronize.php:1178 server_synchronize.php:1182 -#: tbl_tracking.php:590 test/theme.php:64 +#: libraries/header_printview.inc.php:57 server_databases.php:166 +#: server_privileges.php:1656 server_privileges.php:1717 +#: server_privileges.php:1975 server_processlist.php:55 +#: server_synchronize.php:1177 server_synchronize.php:1181 +#: tbl_tracking.php:585 test/theme.php:64 msgid "Database" msgstr "Baza dadzienych" -#: db_tracking.php:72 +#: db_tracking.php:68 msgid "Last version" msgstr "" -#: db_tracking.php:73 tbl_tracking.php:593 +#: db_tracking.php:69 tbl_tracking.php:588 msgid "Created" msgstr "" -#: db_tracking.php:74 tbl_tracking.php:594 +#: db_tracking.php:70 tbl_tracking.php:589 msgid "Updated" msgstr "" -#: db_tracking.php:76 libraries/Index.class.php:439 -#: libraries/db_structure.lib.php:44 server_databases.php:202 -#: server_privileges.php:1534 server_privileges.php:1717 -#: server_privileges.php:2065 tbl_structure.php:186 +#: db_tracking.php:71 libraries/common.lib.php:1361 +#: libraries/server_links.inc.php:48 server_processlist.php:58 +#: tbl_tracking.php:590 test/theme.php:100 +msgid "Status" +msgstr "Stan" + +#: db_tracking.php:72 libraries/Index.class.php:439 +#: libraries/db_structure.lib.php:44 server_databases.php:200 +#: server_privileges.php:1538 server_privileges.php:1721 +#: server_privileges.php:2069 tbl_structure.php:185 msgid "Action" msgstr "Dziejańnie" -#: db_tracking.php:87 db_tracking.php:119 +#: db_tracking.php:83 db_tracking.php:115 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:105 tbl_tracking.php:547 tbl_tracking.php:605 -#: tbl_tracking.php:612 +#: db_tracking.php:101 tbl_tracking.php:542 tbl_tracking.php:600 +#: tbl_tracking.php:607 msgid "active" msgstr "" -#: db_tracking.php:107 tbl_tracking.php:549 tbl_tracking.php:607 -#: tbl_tracking.php:609 +#: db_tracking.php:103 tbl_tracking.php:544 tbl_tracking.php:602 +#: tbl_tracking.php:604 msgid "not active" msgstr "" -#: db_tracking.php:120 +#: db_tracking.php:116 msgid "Versions" msgstr "" -#: db_tracking.php:121 tbl_tracking.php:378 tbl_tracking.php:623 +#: db_tracking.php:117 tbl_tracking.php:373 tbl_tracking.php:618 msgid "Tracking report" msgstr "" -#: db_tracking.php:122 tbl_tracking.php:250 tbl_tracking.php:623 +#: db_tracking.php:118 tbl_tracking.php:245 tbl_tracking.php:618 msgid "Structure snapshot" msgstr "" -#: db_tracking.php:151 +#: db_tracking.php:147 msgid "Untracked tables" msgstr "" -#: db_tracking.php:171 db_tracking.php:173 tbl_structure.php:527 -#: tbl_structure.php:529 +#: db_tracking.php:167 db_tracking.php:169 tbl_structure.php:525 +#: tbl_structure.php:527 msgid "Track table" msgstr "" -#: db_tracking.php:199 +#: db_tracking.php:195 msgid "Database Log" msgstr "" @@ -804,12 +784,12 @@ msgstr "" msgid "Selected export type has to be saved in file!" msgstr "Dadzienyja vybranaha typu ekspartavańnia musiać być zazavanymi ŭ fajł!" -#: export.php:153 export.php:178 export.php:620 +#: export.php:152 export.php:177 export.php:615 #, php-format msgid "Insufficient space to save the file %s." msgstr "Niedastatkova miesca dla zachavańnia ŭ fajł %s." -#: export.php:287 +#: export.php:286 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -817,17 +797,17 @@ msgstr "" "Fajł %s užo isnuje na servery, źmianicie imia fajła abo praviercie opcyju " "pierazapisu." -#: export.php:291 export.php:295 +#: export.php:290 export.php:294 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Web-server nia maje dazvołu dla zachavańnia ŭ fajł %s." -#: export.php:622 +#: export.php:617 #, php-format msgid "Dump has been saved to file %s." msgstr "Damp zachavany ŭ fajł %s." -#: import.php:59 +#: import.php:58 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -837,14 +817,14 @@ msgstr "" "źviarniciesia da %sdakumentacyi%s dla vyśviatleńnia sposabaŭ abyjści hetaje " "abmiežavańnie." -#: import.php:278 import.php:331 libraries/File.class.php:840 -#: libraries/File.class.php:950 +#: import.php:277 import.php:330 libraries/File.class.php:566 +#: libraries/File.class.php:676 msgid "File could not be read" msgstr "Niemahčyma pračytać fajł" -#: import.php:286 import.php:295 import.php:314 import.php:323 -#: libraries/File.class.php:1020 libraries/File.class.php:1028 -#: libraries/File.class.php:1044 libraries/File.class.php:1052 +#: import.php:285 import.php:294 import.php:313 import.php:322 +#: libraries/File.class.php:746 libraries/File.class.php:754 +#: libraries/File.class.php:770 libraries/File.class.php:778 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -854,7 +834,7 @@ msgstr "" "(%s). Jahonaja padtrymka abo nie realizavanaja, abo adklučanaja ŭ vašaj " "kanfihuracyi." -#: import.php:336 +#: import.php:335 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -864,30 +844,30 @@ msgstr "" "zahružany, albo pamier fajła pieravysiŭ maksymalny pamier, vyznačany " "kanfihuracyjaj PHP. Hł. FAQ 1.16." -#: import.php:371 libraries/display_import.lib.php:23 +#: import.php:370 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "" "Niemahčyma zahruzić płahiny impartavańnia, kali łaska, praviercie ŭstaloŭku!" -#: import.php:396 +#: import.php:395 msgid "The bookmark has been deleted." msgstr "Zakładka była vydalenaja." -#: import.php:400 +#: import.php:399 msgid "Showing bookmark" msgstr "Pakazvajučy zakładku" -#: import.php:402 sql.php:625 +#: import.php:401 sql.php:618 #, php-format msgid "Bookmark %s created" msgstr "Zakładka %s stvoranaja" -#: import.php:408 import.php:414 +#: import.php:407 import.php:413 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Impartravańnie paśpiachova zavieršanaje, vykanana %d zapytaŭ." -#: import.php:423 +#: import.php:422 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -895,7 +875,7 @@ msgstr "" "Vyjšaŭ dazvoleny čas vykanańnia skrypta. Kali vy chočacie zavieršyć " "impartavańnie, kali łaska, zahruzicie fajł znoŭ i impartavańnie ŭznavicca." -#: import.php:425 +#: import.php:424 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -904,19 +884,19 @@ msgstr "" "Heta zvyčajna značyć, što phpMyAdmin nia zmoža skončyć hetaje impartavańnia, " "kali vy nie pavialičycie limity vykanańnia php-skryptoŭ." -#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:240 +#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:239 #: user_password.php:110 msgid "Back" msgstr "Nazad" -#: index.php:188 +#: index.php:183 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "Dla raboty phpMyAdmin patrebny braŭzer z padtrymkaj frejmaŭ." -#: js/messages.php:25 server_synchronize.php:344 server_synchronize.php:356 -#: server_synchronize.php:372 server_synchronize.php:379 -#: server_synchronize.php:738 server_synchronize.php:766 -#: server_synchronize.php:794 server_synchronize.php:806 +#: js/messages.php:25 server_synchronize.php:343 server_synchronize.php:355 +#: server_synchronize.php:371 server_synchronize.php:378 +#: server_synchronize.php:737 server_synchronize.php:765 +#: server_synchronize.php:793 server_synchronize.php:805 msgid "Click to select" msgstr "" @@ -924,15 +904,15 @@ msgstr "" msgid "Click to unselect" msgstr "" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:88 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:87 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Kamandy \"DROP DATABASE\" adklučanyja." -#: js/messages.php:30 libraries/mult_submits.inc.php:257 sql.php:187 +#: js/messages.php:30 libraries/mult_submits.inc.php:256 sql.php:186 msgid "Do you really want to " msgstr "Ci sapraŭdy vy žadajecie " -#: js/messages.php:31 libraries/mult_submits.inc.php:257 sql.php:171 +#: js/messages.php:31 libraries/mult_submits.inc.php:256 sql.php:170 msgid "You are about to DESTROY a complete database!" msgstr "Vy źbirajecie VYDALIĆ bazu dadzienych całkam!" @@ -961,11 +941,11 @@ msgstr "Pustoje imia chostu!" msgid "The user name is empty!" msgstr "Pustoje imia karystalnika!" -#: js/messages.php:44 server_privileges.php:1228 user_password.php:65 +#: js/messages.php:44 server_privileges.php:1229 user_password.php:65 msgid "The password is empty!" msgstr "Pusty parol!" -#: js/messages.php:45 server_privileges.php:1226 user_password.php:68 +#: js/messages.php:45 server_privileges.php:1227 user_password.php:68 msgid "The passwords aren't the same!" msgstr "Paroli nie supadajuć!" @@ -973,27 +953,27 @@ msgstr "Paroli nie supadajuć!" msgid "Cancel" msgstr "Skasavać" -#: js/messages.php:52 pmd_save_pos.php:53 +#: js/messages.php:52 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "Madyfikacyi byli zachavanyja" -#: js/messages.php:53 pmd_relation_upd.php:48 +#: js/messages.php:53 pmd_relation_upd.php:47 msgid "Relation deleted" msgstr "Suviaź vydalenaja" -#: js/messages.php:54 pmd_relation_new.php:63 +#: js/messages.php:54 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "Suviaź FOREIGN KEY była dadadzienaja" -#: js/messages.php:55 pmd_relation_new.php:85 +#: js/messages.php:55 pmd_relation_new.php:84 msgid "Internal relation added" msgstr "Unutranaja suviaź dadadzienaja" -#: js/messages.php:56 pmd_relation_new.php:62 pmd_relation_new.php:87 +#: js/messages.php:56 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "Pamyłka: suviaź nie dadadzienaja." -#: js/messages.php:57 pmd_relation_new.php:30 +#: js/messages.php:57 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "Pamyłka: suviaź užo isnuje." @@ -1001,13 +981,13 @@ msgstr "Pamyłka: suviaź užo isnuje." msgid "Error saving coordinates for Designer." msgstr "Pamyłka zachavańnia kaardynataŭ." -#: js/messages.php:59 libraries/relation.lib.php:94 -#: libraries/relation.lib.php:106 +#: js/messages.php:59 libraries/relation.lib.php:89 +#: libraries/relation.lib.php:101 msgid "General relation features" msgstr "Mahčymaści asnoŭnych suviaziaŭ" -#: js/messages.php:59 libraries/relation.lib.php:88 -#: libraries/relation.lib.php:95 +#: js/messages.php:59 libraries/relation.lib.php:83 +#: libraries/relation.lib.php:90 msgid "Disabled" msgstr "Adklučana" @@ -1023,7 +1003,7 @@ msgstr "Vybierycie źniešni kluč" msgid "Please select the primary key or a unique key" msgstr "Kali łaska, vybierycie pieršasny (PRIMARY) albo ŭnikalny kluč (UNIQUE)" -#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:547 +#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" @@ -1054,10 +1034,10 @@ msgid "Prev" msgstr "Papiaredniaja staronka" #. l10n: Display text for next month link in calendar -#: js/messages.php:81 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:337 -#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:422 -#: tbl_structure.php:800 +#: js/messages.php:81 libraries/common.lib.php:2358 +#: libraries/common.lib.php:2361 libraries/display_tbl.lib.php:336 +#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 +#: tbl_structure.php:798 msgid "Next" msgstr "Nastupnaja staronka" @@ -1131,27 +1111,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1562 +#: js/messages.php:101 libraries/common.lib.php:1566 msgid "Jan" msgstr "Stu" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1564 +#: js/messages.php:103 libraries/common.lib.php:1568 msgid "Feb" msgstr "Lut" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1566 +#: js/messages.php:105 libraries/common.lib.php:1570 msgid "Mar" msgstr "Sak" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1568 +#: js/messages.php:107 libraries/common.lib.php:1572 msgid "Apr" msgstr "Kra" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1570 +#: js/messages.php:109 libraries/common.lib.php:1574 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1159,37 +1139,37 @@ msgid "May" msgstr "Tra" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1572 +#: js/messages.php:111 libraries/common.lib.php:1576 msgid "Jun" msgstr "Čer" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1574 +#: js/messages.php:113 libraries/common.lib.php:1578 msgid "Jul" msgstr "Lip" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1576 +#: js/messages.php:115 libraries/common.lib.php:1580 msgid "Aug" msgstr "Žni" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1578 +#: js/messages.php:117 libraries/common.lib.php:1582 msgid "Sep" msgstr "Vier" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1580 +#: js/messages.php:119 libraries/common.lib.php:1584 msgid "Oct" msgstr "Kas" #. l10n: Short month name -#: js/messages.php:121 libraries/common.lib.php:1582 +#: js/messages.php:121 libraries/common.lib.php:1586 msgid "Nov" msgstr "Lis" #. l10n: Short month name -#: js/messages.php:123 libraries/common.lib.php:1584 +#: js/messages.php:123 libraries/common.lib.php:1588 msgid "Dec" msgstr "Śn" @@ -1230,37 +1210,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1587 +#: js/messages.php:136 libraries/common.lib.php:1591 msgid "Sun" msgstr "Ndz" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1589 +#: js/messages.php:138 libraries/common.lib.php:1593 msgid "Mon" msgstr "Pan" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1591 +#: js/messages.php:140 libraries/common.lib.php:1595 msgid "Tue" msgstr "Aŭt" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1593 +#: js/messages.php:142 libraries/common.lib.php:1597 msgid "Wed" msgstr "Sier" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1595 +#: js/messages.php:144 libraries/common.lib.php:1599 msgid "Thu" msgstr "Cač" #. l10n: Short week day name -#: js/messages.php:146 libraries/common.lib.php:1597 +#: js/messages.php:146 libraries/common.lib.php:1601 msgid "Fri" msgstr "Piat" #. l10n: Short week day name -#: js/messages.php:148 libraries/common.lib.php:1599 +#: js/messages.php:148 libraries/common.lib.php:1603 msgid "Sat" msgstr "Sub" @@ -1340,18 +1320,13 @@ msgstr "u sekundu" msgid "Font size" msgstr "Pamier šryfta" -#: libraries/File.class.php:336 libraries/File.class.php:424 -#: libraries/File.class.php:561 libraries/File.class.php:700 -msgid "Unknown error in file upload." -msgstr "Padčas zahruzki fajła adbyłasia nieviadomaja pamyłka." - -#: libraries/File.class.php:406 +#: libraries/File.class.php:315 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:409 +#: libraries/File.class.php:318 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -1359,60 +1334,64 @@ msgstr "" "Pamier zahružanaha fajła pieraŭzychodzić parametar MAX_FILE_SIZE, jaki byŭ " "vyznačany ŭ HTML-formie." -#: libraries/File.class.php:412 +#: libraries/File.class.php:321 msgid "The uploaded file was only partially uploaded." msgstr "Fajł byŭ zahružany tolki častkova." -#: libraries/File.class.php:415 +#: libraries/File.class.php:324 msgid "Missing a temporary folder." msgstr "Adsutničaje časovaja tečka." -#: libraries/File.class.php:418 +#: libraries/File.class.php:327 msgid "Failed to write file to disk." msgstr "Pamyłka zapisu na dysk." -#: libraries/File.class.php:421 +#: libraries/File.class.php:330 msgid "File upload stopped by extension." msgstr "Zahruzka fajła spynienaja pašyreńniem." -#: libraries/File.class.php:898 +#: libraries/File.class.php:333 +msgid "Unknown error in file upload." +msgstr "Padčas zahruzki fajła adbyłasia nieviadomaja pamyłka." + +#: libraries/File.class.php:624 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:427 tbl_relation.php:528 +#: libraries/Index.class.php:427 tbl_relation.php:526 msgid "No index defined!" msgstr "Indeks nia vyznačany!" -#: libraries/Index.class.php:432 server_databases.php:131 tbl_tracking.php:315 +#: libraries/Index.class.php:432 server_databases.php:129 tbl_tracking.php:310 msgid "Indexes" msgstr "Indeksy" #: libraries/Index.class.php:443 libraries/mult_submits.inc.php:102 -#: libraries/tbl_properties.inc.php:518 tbl_structure.php:32 -#: tbl_structure.php:154 tbl_structure.php:158 tbl_structure.php:473 -#: tbl_tracking.php:321 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:31 +#: tbl_structure.php:153 tbl_structure.php:157 tbl_structure.php:471 +#: tbl_tracking.php:316 msgid "Unique" msgstr "Unikalnaje" -#: libraries/Index.class.php:444 tbl_tracking.php:322 +#: libraries/Index.class.php:444 tbl_tracking.php:317 msgid "Packed" msgstr "Ścisnutaja" -#: libraries/Index.class.php:446 tbl_tracking.php:324 +#: libraries/Index.class.php:446 tbl_tracking.php:319 msgid "Cardinality" msgstr "Kolkaść elementaŭ" -#: libraries/Index.class.php:449 tbl_tracking.php:278 tbl_tracking.php:327 +#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322 msgid "Comment" msgstr "Kamentar" #: libraries/Index.class.php:465 libraries/common.lib.php:609 -#: libraries/common.lib.php:1198 libraries/display_tbl.lib.php:1116 +#: libraries/common.lib.php:1191 libraries/display_tbl.lib.php:1115 #: libraries/import.lib.php:1119 libraries/import.lib.php:1143 -#: pdf_pages.php:284 setup/frames/index.inc.php:124 +#: pdf_pages.php:283 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:349 tbl_row_action.php:68 msgid "Edit" msgstr "Redagavać" @@ -1436,15 +1415,15 @@ msgstr "" "ich, mahčyma, možna vydalić." #: libraries/List_Database.class.php:430 libraries/server_links.inc.php:40 -#: server_databases.php:87 server_privileges.php:1652 +#: server_databases.php:85 server_privileges.php:1656 #: setup/lib/messages.inc.php:107 test/theme.php:92 msgid "Databases" msgstr "Bazy dadzienych" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:259 libraries/import.lib.php:134 pdf_schema.php:31 -#: pdf_schema.php:231 tbl_change.php:1023 tbl_operations.php:212 -#: tbl_relation.php:289 view_operations.php:61 +#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 +#: tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Pamyłka" @@ -1472,41 +1451,41 @@ msgid_plural "%1$d rows inserted." msgstr[0] "Ustaŭlena radkoŭ: %1$d." msgstr[1] "Ustaŭlena radkoŭ: %1$d." -#: libraries/StorageEngine.class.php:196 +#: libraries/StorageEngine.class.php:194 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:352 +#: libraries/StorageEngine.class.php:354 #, php-format msgid "%s is available on this MySQL server." msgstr "%s dastupnaja na hetym MySQL-servery." -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:357 #, 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:359 +#: libraries/StorageEngine.class.php:361 #, 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:1018 +#: libraries/Table.class.php:1017 msgid "Invalid database" msgstr "Niapravilnaja baza dadzienych" -#: libraries/Table.class.php:1032 tbl_get_field.php:25 +#: libraries/Table.class.php:1031 tbl_get_field.php:25 msgid "Invalid table name" msgstr "Niekarektnaje imia tablicy" -#: libraries/Table.class.php:1047 +#: libraries/Table.class.php:1046 #, 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:1131 +#: libraries/Table.class.php:1129 #, php-format msgid "Table %s has been renamed to %s" msgstr "Tablica %s była pierajmienavanaja ŭ %s" @@ -1524,22 +1503,22 @@ msgstr "Papiaredni prahlad niedastupny." msgid "take it" msgstr "hetaja" -#: libraries/Theme_Manager.class.php:114 +#: 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:152 +#: libraries/Theme_Manager.class.php:147 #, php-format msgid "Theme %s not found!" msgstr "Tema %s nia znojdzienaja!" -#: libraries/Theme_Manager.class.php:220 +#: 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:296 test/theme.php:160 themes.php:20 +#: libraries/Theme_Manager.class.php:291 test/theme.php:160 themes.php:20 #: themes.php:40 msgid "Theme / Style" msgstr "Tema / Styl" @@ -1654,19 +1633,19 @@ msgstr "Dziejny kluč aŭtentyfikacyi nie padklučany" msgid "Authenticating..." msgstr "Aŭtentyfikacyja..." -#: libraries/blobstreaming.lib.php:689 +#: libraries/blobstreaming.lib.php:340 msgid "View image" msgstr "" -#: libraries/blobstreaming.lib.php:693 +#: libraries/blobstreaming.lib.php:344 msgid "Play audio" msgstr "" -#: libraries/blobstreaming.lib.php:698 +#: libraries/blobstreaming.lib.php:349 msgid "View video" msgstr "" -#: libraries/blobstreaming.lib.php:702 +#: libraries/blobstreaming.lib.php:353 msgid "Download file" msgstr "" @@ -1723,7 +1702,7 @@ msgstr "Server" msgid "Invalid authentication method set in configuration:" msgstr "U kanfihuracyi vyznačany niekarektny metad aŭtentyfikacyi:" -#: libraries/common.inc.php:909 +#: libraries/common.inc.php:908 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Vam treba abnavić %s da versii %s ci paźniejšaj." @@ -1748,7 +1727,8 @@ msgstr "en" #: libraries/common.lib.php:425 libraries/common.lib.php:427 #: libraries/common.lib.php:429 libraries/common.lib.php:445 #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 -#: libraries/display_export.lib.php:163 libraries/relation.lib.php:84 +#: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 +#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 #: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" @@ -1763,150 +1743,150 @@ msgstr "SQL-zapyt" msgid "MySQL said: " msgstr "Adkaz MySQL: " -#: libraries/common.lib.php:1136 +#: libraries/common.lib.php:1129 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1174 setup/lib/messages.inc.php:350 +#: libraries/common.lib.php:1167 setup/lib/messages.inc.php:350 msgid "Explain SQL" msgstr "Tłumačyć SQL" -#: libraries/common.lib.php:1177 +#: libraries/common.lib.php:1170 msgid "Skip Explain SQL" msgstr "Nie tłumačyć SQL" -#: libraries/common.lib.php:1211 +#: libraries/common.lib.php:1204 msgid "Without PHP Code" msgstr "Biez PHP-kodu" -#: libraries/common.lib.php:1214 setup/lib/messages.inc.php:352 +#: libraries/common.lib.php:1207 setup/lib/messages.inc.php:352 msgid "Create PHP Code" msgstr "Stvaryć PHP-kod" -#: libraries/common.lib.php:1232 server_status.php:451 +#: libraries/common.lib.php:1225 server_status.php:451 #: setup/lib/messages.inc.php:351 msgid "Refresh" msgstr "Abnavić" -#: libraries/common.lib.php:1241 +#: libraries/common.lib.php:1234 msgid "Skip Validate SQL" msgstr "Nie praviarać SQL" -#: libraries/common.lib.php:1244 setup/lib/messages.inc.php:353 +#: libraries/common.lib.php:1237 setup/lib/messages.inc.php:353 msgid "Validate SQL" msgstr "Pravieryć SQL" -#: libraries/common.lib.php:1283 +#: libraries/common.lib.php:1287 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1285 +#: libraries/common.lib.php:1289 #, fuzzy #| msgid "Engines" msgid "Inline" msgstr "Mašyny" -#: libraries/common.lib.php:1339 libraries/common.lib.php:1354 +#: libraries/common.lib.php:1343 libraries/common.lib.php:1358 msgid "Profiling" msgstr "Prafilavańnie" -#: libraries/common.lib.php:1358 libraries/tbl_triggers.lib.php:27 +#: libraries/common.lib.php:1362 libraries/tbl_triggers.lib.php:27 #: server_processlist.php:57 msgid "Time" msgstr "Čas" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "B" msgstr "B" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "KiB" msgstr "KiB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "MiB" msgstr "MiB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "GiB" msgstr "GiB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "TiB" msgstr "TiB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "PiB" msgstr "PiB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "EiB" msgstr "EiB" #. l10n: Thousands separator -#: libraries/common.lib.php:1424 +#: libraries/common.lib.php:1428 msgid "," msgstr "," #. l10n: Decimal separator -#: libraries/common.lib.php:1426 +#: libraries/common.lib.php:1430 msgid "." msgstr "." #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1603 +#: libraries/common.lib.php:1607 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y, %H:%M" -#: libraries/common.lib.php:1909 +#: libraries/common.lib.php:1913 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dzion, %s hadzinaŭ, %s chvilinaŭ i %s sekundaŭ" -#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 -#: libraries/display_tbl.lib.php:289 server_status.php:718 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 +#: libraries/display_tbl.lib.php:288 server_status.php:718 msgid "Begin" msgstr "Pieršaja staronka" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 -#: libraries/display_tbl.lib.php:290 server_binlog.php:154 +#: libraries/common.lib.php:2328 libraries/common.lib.php:2331 +#: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "Papiaredniaja staronka" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 -#: libraries/display_tbl.lib.php:352 +#: libraries/common.lib.php:2359 libraries/common.lib.php:2362 +#: libraries/display_tbl.lib.php:351 msgid "End" msgstr "Apošniaja staronka" -#: libraries/common.lib.php:2429 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "Pierajści da bazy dadzienych \"%s\"." -#: libraries/common.lib.php:2448 +#: libraries/common.lib.php:2453 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" "Isnuje viadomaja pamyłka z vykarystańniem parametra %s, hladzicie apisańnie " "na %s" -#: libraries/common.lib.php:2828 libraries/common.lib.php:2835 -#: libraries/db_links.inc.php:67 libraries/export/sql.php:24 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 +#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 -#: libraries/tbl_links.inc.php:59 querywindow.php:89 test/theme.php:96 +#: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2837 libraries/db_links.inc.php:103 -#: libraries/tbl_links.inc.php:94 libraries/tbl_links.inc.php:116 -#: view_operations.php:88 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: view_operations.php:87 msgid "Operations" msgstr "Aperacyi" -#: libraries/core.lib.php:282 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1922,38 +1902,38 @@ msgstr "Padziei" msgid "Name" msgstr "Nazva" -#: libraries/db_links.inc.php:44 +#: libraries/db_links.inc.php:43 #, php-format msgid "Database %s has been dropped." msgstr "Baza dadzienych %s była vydalenaja." -#: libraries/db_links.inc.php:56 libraries/db_links.inc.php:57 -#: libraries/db_links.inc.php:58 +#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 +#: libraries/db_links.inc.php:57 msgid "Database seems to be empty!" msgstr "Baza dadzienych — pustaja!" -#: libraries/db_links.inc.php:80 libraries/relation.lib.php:142 -#: libraries/tbl_links.inc.php:68 +#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:85 +#: libraries/db_links.inc.php:84 msgid "Query" msgstr "Zapyt zhodna prykładu" -#: libraries/db_links.inc.php:90 libraries/relation.lib.php:138 +#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 msgid "Designer" msgstr "Dyzajner" -#: libraries/db_links.inc.php:97 libraries/server_links.inc.php:87 -#: libraries/tbl_links.inc.php:90 pmd_pdf.php:83 pmd_pdf.php:109 +#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Imrart" -#: libraries/db_links.inc.php:110 libraries/server_links.inc.php:65 -#: server_privileges.php:111 server_privileges.php:1714 -#: server_privileges.php:2063 test/theme.php:116 +#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: server_privileges.php:110 server_privileges.php:1718 +#: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" msgstr "Pryvilei" @@ -1965,14 +1945,14 @@ msgstr "Pracedury" msgid "Return type" msgstr "Typ pracedury" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1847 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1806 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "Značeńnie moža być prybliznym. Hł. FAQ 3.11" -#: libraries/db_structure.lib.php:60 server_databases.php:141 -#: tbl_printview.php:334 tbl_structure.php:681 +#: libraries/db_structure.lib.php:60 server_databases.php:139 +#: tbl_printview.php:333 tbl_structure.php:679 msgid "Overhead" msgstr "Vykarystańnie resursaŭ" @@ -1991,7 +1971,7 @@ msgstr "Server nie adkazvaje" 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:358 tbl_structure.php:607 +#: libraries/dbi/mysql.dbi.lib.php:358 tbl_structure.php:605 msgid "Details..." msgstr "Padrabiaźniej..." @@ -2001,22 +1981,22 @@ msgid "Change password" msgstr "Źmianić parol" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:807 +#: libraries/replication_gui.lib.php:347 server_privileges.php:806 msgid "No Password" msgstr "Biez parola" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1530 server_synchronize.php:1174 +#: libraries/replication_gui.lib.php:351 server_privileges.php:795 +#: server_privileges.php:799 server_privileges.php:810 +#: server_privileges.php:1534 server_synchronize.php:1173 msgid "Password" msgstr "Parol" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:815 server_privileges.php:818 +#: server_privileges.php:814 server_privileges.php:817 msgid "Re-type" msgstr "Paćvierdžańnie" @@ -2039,8 +2019,8 @@ msgstr "Stvaryć novuju bazu dadzienych" msgid "Create" msgstr "Stvaryć" -#: libraries/display_create_database.lib.php:39 server_privileges.php:113 -#: server_privileges.php:1419 server_replication.php:34 +#: libraries/display_create_database.lib.php:39 server_privileges.php:112 +#: server_privileges.php:1423 server_replication.php:33 msgid "No Privileges" msgstr "Biez pryvilejaŭ" @@ -2061,52 +2041,52 @@ msgstr "Stvaryć novuju tablicu ŭ BD %s" msgid "Number of columns" msgstr "Kolkaść paloŭ" -#: libraries/display_export.lib.php:41 +#: libraries/display_export.lib.php:35 msgid "Could not load export plugins, please check your installation!" msgstr "" "Niemahčyma zahruzić płahiny ekspartavańnia, kali łaska, praviercie " "ŭstalavanyja fajły!" -#: libraries/display_export.lib.php:106 +#: libraries/display_export.lib.php:100 #, fuzzy, php-format #| msgid "Dump %s row(s) starting at record # %s" msgid "Dump %s row(s) starting at row # %s" msgstr "Damp %s radkoŭ, pačynajučy z %s." -#: libraries/display_export.lib.php:114 +#: libraries/display_export.lib.php:108 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:124 setup/lib/messages.inc.php:79 +#: libraries/display_export.lib.php:118 setup/lib/messages.inc.php:79 msgid "Save as file" msgstr "Zachavać jak fajł" -#: libraries/display_export.lib.php:133 +#: libraries/display_export.lib.php:127 #, php-format msgid "Save on server in %s directory" msgstr "Zachavać na servery ŭ tečcy %s" -#: libraries/display_export.lib.php:141 setup/lib/messages.inc.php:87 +#: libraries/display_export.lib.php:135 setup/lib/messages.inc.php:87 msgid "Overwrite existing file(s)" msgstr "Pierazapisvać isnujučy(ja) fajł(y)" -#: libraries/display_export.lib.php:147 +#: libraries/display_export.lib.php:141 msgid "File name template" msgstr "Šablon nazvy fajła" -#: libraries/display_export.lib.php:151 +#: libraries/display_export.lib.php:145 msgid "server name" msgstr "imia servera" -#: libraries/display_export.lib.php:154 +#: libraries/display_export.lib.php:148 msgid "database name" msgstr "imia bazy dadzienych" -#: libraries/display_export.lib.php:157 +#: libraries/display_export.lib.php:151 msgid "table name" msgstr "imia tablicy" -#: libraries/display_export.lib.php:161 +#: libraries/display_export.lib.php:155 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2117,39 +2097,39 @@ msgstr "" "možna vykarystoŭvać radki farmatavańnia času. Aproč hetaha, buduć " "praviedzienyja nastupnyja źmieny: %3$s. Astatni tekst zastaniecca jak jość." -#: libraries/display_export.lib.php:202 +#: libraries/display_export.lib.php:196 msgid "remember template" msgstr "zapomnić šablon" -#: libraries/display_export.lib.php:210 libraries/display_import.lib.php:177 +#: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 #: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 msgid "Character set of the file:" msgstr "Kadyroŭka fajła:" -#: libraries/display_export.lib.php:235 setup/lib/messages.inc.php:81 +#: libraries/display_export.lib.php:229 setup/lib/messages.inc.php:81 msgid "Compression" msgstr "Ścisk" -#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:196 -#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:529 -#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:574 -#: server_privileges.php:1867 server_processlist.php:74 +#: libraries/display_export.lib.php:234 libraries/display_import.lib.php:196 +#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:528 +#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:573 +#: server_privileges.php:1871 server_processlist.php:74 msgid "None" msgstr "Nijakaja" -#: libraries/display_export.lib.php:247 +#: libraries/display_export.lib.php:241 msgid "\"zipped\"" msgstr "archivavany ŭ zip" -#: libraries/display_export.lib.php:253 +#: libraries/display_export.lib.php:247 msgid "\"gzipped\"" msgstr "archivavany ŭ gzip" -#: libraries/display_export.lib.php:259 +#: libraries/display_export.lib.php:253 msgid "\"bzipped\"" msgstr "ściskać u bzip" -#: libraries/display_export.lib.php:274 libraries/export/sql.php:42 +#: libraries/display_export.lib.php:268 libraries/export/sql.php:42 #: libraries/import/sql.php:31 msgid "SQL compatibility mode" msgstr "Režym sumiaščalnaści SQL" @@ -2184,12 +2164,12 @@ msgid "File uploads are not allowed on this server." msgstr "Zahruzki fajłaŭ nie dazvolenyja na hetym servery." #: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 -#: tbl_change.php:1024 +#: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "Niemahčyma adkryć paznačanuju vami tečku dla zahruzki fajłaŭ" #: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 -#: tbl_change.php:1027 +#: tbl_change.php:925 msgid "web server upload directory" msgstr "tečka web-servera dla zahruzki fajłaŭ" @@ -2275,43 +2255,43 @@ msgstr "Pamier papiery" msgid "Language" msgstr "Mova" -#: libraries/display_tbl.lib.php:303 +#: libraries/display_tbl.lib.php:302 #, php-format msgid "%d is not valid row number." msgstr "%d nie źjaŭlajecca karektnym numaram radka." -#: libraries/display_tbl.lib.php:309 +#: libraries/display_tbl.lib.php:308 #, fuzzy #| msgid "row(s) starting from record #" msgid "row(s) starting from row #" msgstr "radkoŭ, pačynajučy z zapisu #" -#: libraries/display_tbl.lib.php:315 +#: libraries/display_tbl.lib.php:314 msgid "horizontal" msgstr "haryzantalna" -#: libraries/display_tbl.lib.php:316 +#: libraries/display_tbl.lib.php:315 msgid "horizontal (rotated headers)" msgstr "haryzantalna (paviernutyja zahałoŭki)" -#: libraries/display_tbl.lib.php:317 +#: libraries/display_tbl.lib.php:316 msgid "vertical" msgstr "vertykalna" -#: libraries/display_tbl.lib.php:323 +#: libraries/display_tbl.lib.php:322 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "u režymie %s i paŭtarać zahałoŭki praz kožnyja %s radkoŭ" -#: libraries/display_tbl.lib.php:345 +#: libraries/display_tbl.lib.php:344 msgid "This operation could take a long time. Proceed anyway?" msgstr "Hetaja aperacyja moža zaniać šmat času. Praciahvać?" -#: libraries/display_tbl.lib.php:511 +#: libraries/display_tbl.lib.php:510 msgid "Sort by key" msgstr "Sartavać pa klučy" -#: libraries/display_tbl.lib.php:554 libraries/export/codegen.php:38 +#: libraries/display_tbl.lib.php:553 libraries/export/codegen.php:38 #: libraries/export/csv.php:29 libraries/export/excel.php:34 #: libraries/export/htmlword.php:28 libraries/export/latex.php:32 #: libraries/export/mediawiki.php:21 libraries/export/ods.php:26 @@ -2321,99 +2301,99 @@ msgstr "Sartavać pa klučy" #: libraries/export/xlsx.php:26 libraries/export/xml.php:23 #: libraries/export/yaml.php:27 libraries/import.lib.php:1114 #: libraries/import.lib.php:1136 libraries/import/csv.php:31 -#: libraries/import/docsql.php:33 libraries/import/ldi.php:46 +#: libraries/import/docsql.php:32 libraries/import/ldi.php:46 #: libraries/import/ods.php:30 libraries/import/sql.php:19 #: libraries/import/xls.php:25 libraries/import/xlsx.php:25 -#: libraries/import/xml.php:25 tbl_select.php:264 tbl_structure.php:752 +#: libraries/import/xml.php:25 tbl_select.php:263 tbl_structure.php:750 msgid "Options" msgstr "Nałady" -#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:569 +#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:568 msgid "Partial Texts" msgstr "Častkovyja teksty" -#: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:573 +#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:572 msgid "Full Texts" msgstr "Poŭnyja teksty" -#: libraries/display_tbl.lib.php:586 +#: libraries/display_tbl.lib.php:585 msgid "Relational key" msgstr "Kluč suviazi" -#: libraries/display_tbl.lib.php:587 +#: libraries/display_tbl.lib.php:586 #, fuzzy #| msgid "Relational display field" msgid "Relational display column" msgstr "Adlustravanaje pole suviazi" -#: libraries/display_tbl.lib.php:594 +#: libraries/display_tbl.lib.php:593 msgid "Show binary contents" msgstr "" -#: libraries/display_tbl.lib.php:596 +#: libraries/display_tbl.lib.php:595 msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:598 +#: libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "" -#: libraries/display_tbl.lib.php:606 pmd_general.php:140 tbl_change.php:312 -#: tbl_change.php:318 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:307 +#: tbl_change.php:313 msgid "Hide" msgstr "Schavać" -#: libraries/display_tbl.lib.php:606 libraries/relation.lib.php:122 -#: libraries/tbl_properties.inc.php:143 transformation_overview.php:46 +#: libraries/display_tbl.lib.php:605 libraries/relation.lib.php:117 +#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46 msgid "Browser transformation" msgstr "Pieraŭtvareńnie MIME-typu braŭzeram" -#: libraries/display_tbl.lib.php:1125 libraries/display_tbl.lib.php:1129 -#: libraries/display_tbl.lib.php:1131 +#: libraries/display_tbl.lib.php:1124 libraries/display_tbl.lib.php:1128 +#: libraries/display_tbl.lib.php:1130 msgid "Execute bookmarked query" msgstr "Vykanać zapyt z zakładak" -#: libraries/display_tbl.lib.php:1144 libraries/display_tbl.lib.php:1156 +#: libraries/display_tbl.lib.php:1143 libraries/display_tbl.lib.php:1155 msgid "The row has been deleted" msgstr "Radok byŭ vydaleny" -#: libraries/display_tbl.lib.php:1183 libraries/display_tbl.lib.php:2055 +#: libraries/display_tbl.lib.php:1182 libraries/display_tbl.lib.php:2014 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "Spynić" -#: libraries/display_tbl.lib.php:1933 +#: libraries/display_tbl.lib.php:1892 msgid "in query" msgstr "pa zapytu" -#: libraries/display_tbl.lib.php:1951 +#: libraries/display_tbl.lib.php:1910 msgid "Showing rows" msgstr "Pakazanyja zapisy" -#: libraries/display_tbl.lib.php:1961 +#: libraries/display_tbl.lib.php:1920 msgid "total" msgstr "usiaho" -#: libraries/display_tbl.lib.php:1969 sql.php:523 +#: libraries/display_tbl.lib.php:1928 sql.php:522 #, php-format msgid "Query took %01.4f sec" msgstr "Zapyt vykonvaŭsia %01.4f sek" -#: libraries/display_tbl.lib.php:2088 libraries/mult_submits.inc.php:112 -#: querywindow.php:115 querywindow.php:119 querywindow.php:122 -#: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:469 +#: libraries/display_tbl.lib.php:2047 libraries/mult_submits.inc.php:112 +#: querywindow.php:114 querywindow.php:118 querywindow.php:121 +#: tbl_structure.php:23 tbl_structure.php:148 tbl_structure.php:467 msgid "Change" msgstr "Źmianić" -#: libraries/display_tbl.lib.php:2158 +#: libraries/display_tbl.lib.php:2117 msgid "Query results operations" msgstr "Dziejańni z vynikami zapytaŭ" -#: libraries/display_tbl.lib.php:2186 +#: libraries/display_tbl.lib.php:2145 msgid "Print view (with full texts)" msgstr "Versija dla druku (z usim tekstam)" -#: libraries/display_tbl.lib.php:2359 +#: libraries/display_tbl.lib.php:2318 msgid "Link not found" msgstr "Suviaź nia znojdzienaja" @@ -2469,9 +2449,9 @@ msgstr "Stan InnoDB" msgid "Buffer Pool Usage" msgstr "Vykarystańnie pułu buferu" -#: libraries/engines/innodb.lib.php:168 server_databases.php:136 -#: server_databases.php:304 server_status.php:524 server_status.php:585 -#: server_status.php:606 tbl_printview.php:349 tbl_structure.php:695 +#: libraries/engines/innodb.lib.php:168 server_databases.php:134 +#: server_databases.php:302 server_status.php:524 server_status.php:585 +#: server_status.php:606 tbl_printview.php:348 tbl_structure.php:693 msgid "Total" msgstr "Ahułam" @@ -2609,6 +2589,88 @@ msgstr "" "TABLE abo padčas stvareńnia indeksaŭ, vykarystoŭvajučy CREATE INDEX ci ALTER " "TABLE." +#: libraries/engines/pbms.lib.php:31 +#, fuzzy +#| msgid "Garbage threshold" +msgid "Garbage Threshold" +msgstr "Paroh śmiećcia" + +#: libraries/engines/pbms.lib.php:32 +#, fuzzy +#| msgid "" +#| "The percentage of garbage in a data log file before it is compacted. This " +#| "is a value between 1 and 99. The default is 50." +msgid "The percentage of garbage in a repository file before it is compacted." +msgstr "" +"Adsotak śmiećcia ŭ fajle łogu dadzienych pierad tym, jak jon budzie " +"ścisnuty. Hetaje značeńnie moža znachodzicca ŭ miežach ad 1 da 99. Značeńnie " +"pa zmoŭčańni — 50." + +#: libraries/engines/pbms.lib.php:36 libraries/replication_gui.lib.php:69 +#: server_synchronize.php:1161 +msgid "Port" +msgstr "" + +#: libraries/engines/pbms.lib.php:37 +msgid "" +"The port for the PBMS stream-based communications. Setting this value to 0 " +"will disable HTTP communication with the daemon." +msgstr "" + +#: libraries/engines/pbms.lib.php:41 +msgid "Repository Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:42 +msgid "" +"The maximum size of a BLOB repository file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:46 +msgid "Temp Blob Timeout" +msgstr "" + +#: libraries/engines/pbms.lib.php:47 +msgid "" +"The timeout, in seconds, for temporary BLOBs. Uploaded BLOB data is removed " +"after this time, unless they are referenced by a record in the database." +msgstr "" + +#: libraries/engines/pbms.lib.php:51 +#, fuzzy +#| msgid "Log file threshold" +msgid "Temp Log Threshold" +msgstr "Paroh fajła łogu" + +#: libraries/engines/pbms.lib.php:52 +msgid "" +"The maximum size of a temporary BLOB log file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:56 +msgid "Max Keep Alive" +msgstr "" + +#: libraries/engines/pbms.lib.php:57 +msgid "" +"The timeout for inactive connection with the keep-alive flag set. After this " +"time the connection will be closed. The time-out is in milliseconds (1/1000)." +msgstr "" + +#: libraries/engines/pbms.lib.php:61 +msgid "Metadata Headers" +msgstr "" + +#: libraries/engines/pbms.lib.php:62 +msgid "" +"A \":\" delimited list of metadata headers to be used to initialize the " +"pbms_metadata_header table when a database is created." +msgstr "" + #: libraries/engines/pbxt.lib.php:22 msgid "Index cache size" msgstr "Pamier kešu indeksaŭ" @@ -2764,7 +2826,7 @@ msgstr "" "pierajmienavanyja i im budzie dadzieny čarhovy najvyšejšy numar." #: libraries/export/codegen.php:36 setup/lib/messages.inc.php:85 -#: tbl_printview.php:374 tbl_structure.php:736 +#: tbl_printview.php:373 tbl_structure.php:734 msgid "Format" msgstr "Farmat" @@ -2835,9 +2897,9 @@ msgstr "Microsoft Word 2000" #: libraries/export/htmlword.php:23 libraries/export/latex.php:59 #: libraries/export/latex.php:205 libraries/export/odt.php:47 #: libraries/export/sql.php:105 libraries/export/sql.php:865 -#: libraries/export/texytext.php:27 server_databases.php:126 -#: server_privileges.php:576 server_replication.php:315 tbl_printview.php:315 -#: tbl_structure.php:664 +#: libraries/export/texytext.php:27 server_databases.php:124 +#: server_privileges.php:575 server_replication.php:314 tbl_printview.php:314 +#: tbl_structure.php:662 msgid "Data" msgstr "Dadzienyja" @@ -2888,13 +2950,13 @@ msgid "Label key" msgstr "Kluč mietki" #: libraries/export/latex.php:46 libraries/export/odt.php:34 -#: libraries/export/sql.php:90 tbl_relation.php:398 +#: libraries/export/sql.php:90 tbl_relation.php:396 msgid "Relations" msgstr "Suviazi" #: libraries/export/latex.php:52 libraries/export/odt.php:40 #: libraries/export/odt.php:317 libraries/export/sql.php:94 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "MIME-typ" @@ -2902,10 +2964,10 @@ msgstr "MIME-typ" #: libraries/export/xml.php:101 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1529 server_privileges.php:2061 -#: server_processlist.php:54 server_synchronize.php:1158 +#: libraries/replication_gui.lib.php:331 server_privileges.php:730 +#: server_privileges.php:733 server_privileges.php:789 +#: server_privileges.php:1533 server_privileges.php:2065 +#: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "Chost" @@ -3094,8 +3156,8 @@ msgstr "" msgid "Export contents" msgstr "" -#: libraries/footer.inc.php:182 libraries/footer.inc.php:193 -#: libraries/footer.inc.php:196 +#: libraries/footer.inc.php:180 libraries/footer.inc.php:191 +#: libraries/footer.inc.php:194 msgid "Open new phpMyAdmin window" msgstr "Adkryć novaje akno phpMyAdmin" @@ -3111,7 +3173,7 @@ msgstr "SQL-vynik" msgid "Generated by" msgstr "Stvorany" -#: libraries/import.lib.php:151 sql.php:519 tbl_change.php:180 +#: libraries/import.lib.php:151 sql.php:518 tbl_change.php:175 #: 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ŭ)." @@ -3167,7 +3229,7 @@ msgstr "Ignaravać radki, jakija paŭtarajucca" msgid "Column names in first row" msgstr "" -#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:501 +#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:500 #: view_create.php:147 msgid "Column names" msgstr "Nazvy kalonak" @@ -3194,12 +3256,12 @@ msgstr "Niekarektny farmat CSV-dadzienych u radku %d." msgid "Invalid column count in CSV input on line %d." msgstr "Niapravilnaja kolkaść paloŭ u CSV-dadzienych u radku %d." -#: libraries/import/docsql.php:28 +#: libraries/import/docsql.php:27 msgid "DocSQL" msgstr "DocSQL" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 -#: server_synchronize.php:427 server_synchronize.php:870 +#: libraries/import/docsql.php:30 libraries/tbl_properties.inc.php:616 +#: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "Imia tablicy" @@ -3255,26 +3317,26 @@ msgstr "Nijakaja" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:512 -#: tbl_structure.php:28 tbl_structure.php:152 tbl_structure.php:156 -#: tbl_structure.php:472 +#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:511 +#: tbl_structure.php:27 tbl_structure.php:151 tbl_structure.php:155 +#: tbl_structure.php:470 msgid "Primary" msgstr "Pieršasny" #: libraries/mult_submits.inc.php:97 libraries/tbl_properties.inc.php:115 -#: libraries/tbl_properties.inc.php:524 tbl_printview.php:324 -#: tbl_structure.php:30 tbl_structure.php:153 tbl_structure.php:157 -#: tbl_structure.php:474 tbl_structure.php:672 +#: libraries/tbl_properties.inc.php:523 tbl_printview.php:323 +#: tbl_structure.php:29 tbl_structure.php:152 tbl_structure.php:156 +#: tbl_structure.php:472 tbl_structure.php:670 msgid "Index" msgstr "Indeks" -#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:530 -#: tbl_structure.php:34 tbl_structure.php:155 tbl_structure.php:159 -#: tbl_structure.php:477 +#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:529 +#: tbl_structure.php:33 tbl_structure.php:154 tbl_structure.php:158 +#: tbl_structure.php:475 msgid "Fulltext" msgstr "Poŭnatekstekstavaje" -#: libraries/mult_submits.inc.php:434 tbl_replace.php:330 +#: libraries/mult_submits.inc.php:433 tbl_replace.php:330 msgid "No change" msgstr "Niama źmienaŭ" @@ -3282,190 +3344,190 @@ msgstr "Niama źmienaŭ" msgid "Charset" msgstr "Kadyroŭka" -#: libraries/mysql_charsets.lib.php:210 libraries/mysql_charsets.lib.php:411 -#: tbl_change.php:515 +#: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 +#: tbl_change.php:510 msgid "Binary" msgstr "Dvajkovy" -#: libraries/mysql_charsets.lib.php:222 +#: libraries/mysql_charsets.lib.php:214 msgid "Bulgarian" msgstr "Baŭharskaja" -#: libraries/mysql_charsets.lib.php:226 libraries/mysql_charsets.lib.php:351 +#: libraries/mysql_charsets.lib.php:218 libraries/mysql_charsets.lib.php:343 msgid "Simplified Chinese" msgstr "Kitajskaja sproščanaja" -#: libraries/mysql_charsets.lib.php:228 libraries/mysql_charsets.lib.php:371 +#: libraries/mysql_charsets.lib.php:220 libraries/mysql_charsets.lib.php:363 msgid "Traditional Chinese" msgstr "Tradycyjnaja kitajskaja" -#: libraries/mysql_charsets.lib.php:232 libraries/mysql_charsets.lib.php:418 +#: libraries/mysql_charsets.lib.php:224 libraries/mysql_charsets.lib.php:410 msgid "case-insensitive" msgstr "biez uliku rehistru" -#: libraries/mysql_charsets.lib.php:235 libraries/mysql_charsets.lib.php:420 +#: libraries/mysql_charsets.lib.php:227 libraries/mysql_charsets.lib.php:412 msgid "case-sensitive" msgstr "z ulikam rehistru" -#: libraries/mysql_charsets.lib.php:238 +#: libraries/mysql_charsets.lib.php:230 msgid "Croatian" msgstr "Charvackaja" -#: libraries/mysql_charsets.lib.php:241 +#: libraries/mysql_charsets.lib.php:233 msgid "Czech" msgstr "Českaja" -#: libraries/mysql_charsets.lib.php:244 +#: libraries/mysql_charsets.lib.php:236 msgid "Danish" msgstr "Dackaja" -#: libraries/mysql_charsets.lib.php:247 +#: libraries/mysql_charsets.lib.php:239 msgid "English" msgstr "Anhielskaja" -#: libraries/mysql_charsets.lib.php:250 +#: libraries/mysql_charsets.lib.php:242 msgid "Esperanto" msgstr "Esperanta" -#: libraries/mysql_charsets.lib.php:253 +#: libraries/mysql_charsets.lib.php:245 msgid "Estonian" msgstr "Estonskaja" -#: libraries/mysql_charsets.lib.php:256 libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:248 libraries/mysql_charsets.lib.php:251 msgid "German" msgstr "Niamieckaja" -#: libraries/mysql_charsets.lib.php:256 +#: libraries/mysql_charsets.lib.php:248 msgid "dictionary" msgstr "słoŭnik" -#: libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:251 msgid "phone book" msgstr "telefonnaja kniha" -#: libraries/mysql_charsets.lib.php:262 +#: libraries/mysql_charsets.lib.php:254 msgid "Hungarian" msgstr "Vuhorskaja" -#: libraries/mysql_charsets.lib.php:265 +#: libraries/mysql_charsets.lib.php:257 msgid "Icelandic" msgstr "Iślandzkaja" -#: libraries/mysql_charsets.lib.php:268 libraries/mysql_charsets.lib.php:358 +#: libraries/mysql_charsets.lib.php:260 libraries/mysql_charsets.lib.php:350 msgid "Japanese" msgstr "Japonskaja" -#: libraries/mysql_charsets.lib.php:271 +#: libraries/mysql_charsets.lib.php:263 msgid "Latvian" msgstr "Łatvijskaja" -#: libraries/mysql_charsets.lib.php:274 +#: libraries/mysql_charsets.lib.php:266 msgid "Lithuanian" msgstr "Litoŭskaja" -#: libraries/mysql_charsets.lib.php:277 libraries/mysql_charsets.lib.php:380 +#: libraries/mysql_charsets.lib.php:269 libraries/mysql_charsets.lib.php:372 msgid "Korean" msgstr "Karejskaja" -#: libraries/mysql_charsets.lib.php:280 +#: libraries/mysql_charsets.lib.php:272 msgid "Persian" msgstr "Persydzkaja" -#: libraries/mysql_charsets.lib.php:283 +#: libraries/mysql_charsets.lib.php:275 msgid "Polish" msgstr "Polskaja" -#: libraries/mysql_charsets.lib.php:286 libraries/mysql_charsets.lib.php:334 +#: libraries/mysql_charsets.lib.php:278 libraries/mysql_charsets.lib.php:326 msgid "West European" msgstr "Zachodnieeŭrapiejskaja" -#: libraries/mysql_charsets.lib.php:289 +#: libraries/mysql_charsets.lib.php:281 msgid "Romanian" msgstr "Rumynskaja" -#: libraries/mysql_charsets.lib.php:292 +#: libraries/mysql_charsets.lib.php:284 msgid "Slovak" msgstr "Słavackaja" -#: libraries/mysql_charsets.lib.php:295 +#: libraries/mysql_charsets.lib.php:287 msgid "Slovenian" msgstr "Słavienskaja" -#: libraries/mysql_charsets.lib.php:298 +#: libraries/mysql_charsets.lib.php:290 msgid "Spanish" msgstr "Hišpanskaja" -#: libraries/mysql_charsets.lib.php:301 +#: libraries/mysql_charsets.lib.php:293 msgid "Traditional Spanish" msgstr "Tradycyjnaja hišpanskaja" -#: libraries/mysql_charsets.lib.php:304 libraries/mysql_charsets.lib.php:401 +#: libraries/mysql_charsets.lib.php:296 libraries/mysql_charsets.lib.php:393 msgid "Swedish" msgstr "Švedzkaja" -#: libraries/mysql_charsets.lib.php:307 libraries/mysql_charsets.lib.php:404 +#: libraries/mysql_charsets.lib.php:299 libraries/mysql_charsets.lib.php:396 msgid "Thai" msgstr "Tajlandzkaja" -#: libraries/mysql_charsets.lib.php:310 libraries/mysql_charsets.lib.php:398 +#: libraries/mysql_charsets.lib.php:302 libraries/mysql_charsets.lib.php:390 msgid "Turkish" msgstr "Tureckaja" -#: libraries/mysql_charsets.lib.php:313 libraries/mysql_charsets.lib.php:395 +#: libraries/mysql_charsets.lib.php:305 libraries/mysql_charsets.lib.php:387 msgid "Ukrainian" msgstr "Ukrainskaja" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 msgid "Unicode" msgstr "Junikod" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 -#: libraries/mysql_charsets.lib.php:334 libraries/mysql_charsets.lib.php:341 -#: libraries/mysql_charsets.lib.php:363 libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 +#: libraries/mysql_charsets.lib.php:326 libraries/mysql_charsets.lib.php:333 +#: libraries/mysql_charsets.lib.php:355 libraries/mysql_charsets.lib.php:366 msgid "multilingual" msgstr "šmatmoŭnaja" -#: libraries/mysql_charsets.lib.php:341 +#: libraries/mysql_charsets.lib.php:333 msgid "Central European" msgstr "Centralnaeŭrapiejskaja" -#: libraries/mysql_charsets.lib.php:346 +#: libraries/mysql_charsets.lib.php:338 msgid "Russian" msgstr "Rasiejskaja" -#: libraries/mysql_charsets.lib.php:363 +#: libraries/mysql_charsets.lib.php:355 msgid "Baltic" msgstr "Bałtyjskaja" -#: libraries/mysql_charsets.lib.php:368 +#: libraries/mysql_charsets.lib.php:360 msgid "Armenian" msgstr "Armianskaja" -#: libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:366 msgid "Cyrillic" msgstr "Kiryličnaja" -#: libraries/mysql_charsets.lib.php:377 +#: libraries/mysql_charsets.lib.php:369 msgid "Arabic" msgstr "Arabskaja" -#: libraries/mysql_charsets.lib.php:383 +#: libraries/mysql_charsets.lib.php:375 msgid "Hebrew" msgstr "Habrejskaja" -#: libraries/mysql_charsets.lib.php:386 +#: libraries/mysql_charsets.lib.php:378 msgid "Georgian" msgstr "Hruzinskaja" -#: libraries/mysql_charsets.lib.php:389 +#: libraries/mysql_charsets.lib.php:381 msgid "Greek" msgstr "Hreckaja" -#: libraries/mysql_charsets.lib.php:392 +#: libraries/mysql_charsets.lib.php:384 msgid "Czech-Slovak" msgstr "Čechasłavackaja" -#: libraries/mysql_charsets.lib.php:407 libraries/mysql_charsets.lib.php:414 +#: libraries/mysql_charsets.lib.php:399 libraries/mysql_charsets.lib.php:406 msgid "unknown" msgstr "nieviadoma" @@ -3491,69 +3553,69 @@ msgstr "Akno zapytu" msgid "This format has no options" msgstr "Hety farmat nia maje opcyjaŭ" -#: libraries/relation.lib.php:82 +#: libraries/relation.lib.php:77 msgid "not OK" msgstr "nie OK" -#: libraries/relation.lib.php:86 pmd_general.php:339 +#: libraries/relation.lib.php:81 pmd_general.php:339 msgid "OK" msgstr "OK" -#: libraries/relation.lib.php:87 +#: libraries/relation.lib.php:82 msgid "Enabled" msgstr "Uklučana" -#: libraries/relation.lib.php:110 +#: libraries/relation.lib.php:105 msgid "Display Features" msgstr "Pakazvać mahčymaści" -#: libraries/relation.lib.php:116 +#: libraries/relation.lib.php:111 msgid "Creation of PDFs" msgstr "Stvareńnie PDF-fajłaŭ" -#: libraries/relation.lib.php:120 +#: libraries/relation.lib.php:115 msgid "Displaying Column Comments" msgstr "Pakazvać kamentary kalonak" -#: libraries/relation.lib.php:125 +#: libraries/relation.lib.php:120 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "Za infarmacyjaj jak abnavić tablicu column_comments źviarniciesia, kali " "łaska, da dakumentacyi" -#: libraries/relation.lib.php:130 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 msgid "Bookmarked SQL query" msgstr "Zakładzieny SQL-zapyt" -#: libraries/relation.lib.php:134 querywindow.php:99 querywindow.php:207 +#: libraries/relation.lib.php:129 querywindow.php:98 querywindow.php:205 msgid "SQL history" msgstr "Historyja SQL" -#: libraries/relation.lib.php:146 +#: libraries/relation.lib.php:141 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:148 +#: libraries/relation.lib.php:143 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" -#: libraries/relation.lib.php:149 +#: libraries/relation.lib.php:144 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:150 +#: libraries/relation.lib.php:145 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:151 +#: libraries/relation.lib.php:146 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1158 +#: libraries/relation.lib.php:1153 msgid "no description" msgstr "niama apisańnia" @@ -3561,7 +3623,7 @@ msgstr "niama apisańnia" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:53 server_replication.php:346 +#: libraries/replication_gui.lib.php:53 server_replication.php:345 msgid "Change or reconfigure master server" msgstr "" @@ -3573,16 +3635,12 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:711 -#: server_privileges.php:714 server_privileges.php:721 -#: server_synchronize.php:1170 +#: libraries/replication_gui.lib.php:261 server_privileges.php:710 +#: server_privileges.php:713 server_privileges.php:720 +#: server_synchronize.php:1169 msgid "User name" msgstr "Imia karystalnika" -#: libraries/replication_gui.lib.php:69 server_synchronize.php:1162 -msgid "Port" -msgstr "" - #: libraries/replication_gui.lib.php:105 msgid "Master status" msgstr "" @@ -3597,8 +3655,8 @@ msgid "Variable" msgstr "Źmiennaja" #: libraries/replication_gui.lib.php:117 server_status.php:737 -#: tbl_change.php:322 tbl_printview.php:368 tbl_select.php:137 -#: tbl_structure.php:728 +#: tbl_change.php:317 tbl_printview.php:367 tbl_select.php:136 +#: tbl_structure.php:726 msgid "Value" msgstr "Značeńnie" @@ -3612,38 +3670,38 @@ msgid "" "this list." msgstr "" -#: libraries/replication_gui.lib.php:242 server_replication.php:193 +#: libraries/replication_gui.lib.php:242 server_replication.php:192 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:256 server_privileges.php:716 +#: libraries/replication_gui.lib.php:256 server_privileges.php:715 msgid "Any user" msgstr "Luby karystalnik" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1920 server_privileges.php:1950 +#: libraries/replication_gui.lib.php:348 server_privileges.php:716 +#: server_privileges.php:783 server_privileges.php:807 +#: server_privileges.php:1924 server_privileges.php:1954 msgid "Use text field" msgstr "Vykarystoŭvać tekstavaje pole" -#: libraries/replication_gui.lib.php:304 server_privileges.php:764 +#: libraries/replication_gui.lib.php:304 server_privileges.php:763 msgid "Any host" msgstr "Luby chost" -#: libraries/replication_gui.lib.php:308 server_privileges.php:768 +#: libraries/replication_gui.lib.php:308 server_privileges.php:767 msgid "Local" msgstr "Lakalny" -#: libraries/replication_gui.lib.php:314 server_privileges.php:773 +#: libraries/replication_gui.lib.php:314 server_privileges.php:772 msgid "This Host" msgstr "Hety chost" -#: libraries/replication_gui.lib.php:320 server_privileges.php:779 +#: libraries/replication_gui.lib.php:320 server_privileges.php:778 msgid "Use Host Table" msgstr "Vykarystoŭvać tablicu chostaŭ" -#: libraries/replication_gui.lib.php:333 server_privileges.php:792 +#: libraries/replication_gui.lib.php:333 server_privileges.php:791 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3669,8 +3727,8 @@ msgstr "Nieviadomaja mova: %1$s." msgid "Servers" msgstr "Servery" -#: libraries/server_links.inc.php:52 server_engines.php:111 -#: server_engines.php:115 server_status.php:414 test/theme.php:104 +#: libraries/server_links.inc.php:52 server_engines.php:125 +#: server_engines.php:129 server_status.php:414 test/theme.php:104 msgid "Variables" msgstr "Źmiennyja" @@ -3691,12 +3749,12 @@ msgstr "Dvajkovy łog" msgid "Processes" msgstr "Pracesy" -#: libraries/server_links.inc.php:91 server_synchronize.php:1091 -#: server_synchronize.php:1099 +#: libraries/server_links.inc.php:91 server_synchronize.php:1090 +#: server_synchronize.php:1098 msgid "Synchronize" msgstr "" -#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1109 +#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1108 msgid "Source database" msgstr "" @@ -3714,7 +3772,7 @@ msgstr "" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1111 +#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1110 msgid "Target database" msgstr "" @@ -3734,11 +3792,11 @@ msgstr "Vykanać SQL-zapyt(y) na bazie dadzienych %s" msgid "Columns" msgstr "Nazvy kalonak" -#: libraries/sql_query_form.lib.php:342 sql.php:664 sql.php:665 sql.php:682 +#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "Dadać hety SQL-zapyt u zakładki" -#: libraries/sql_query_form.lib.php:349 sql.php:676 +#: libraries/sql_query_form.lib.php:349 sql.php:669 msgid "Let every user access this bookmark" msgstr "Dać kožnamu karystalniku dostup da hetaj zakładki" @@ -3837,12 +3895,12 @@ msgstr "" "ŭstalavanyja ŭ vas nieabchodnyja pašyreńni PHP, jak heta apisana ŭ " "%sdakumentacyi%s." -#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:139 -#: libraries/tbl_links.inc.php:140 +#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 +#: libraries/tbl_links.inc.php:139 msgid "Table seems to be empty!" msgstr "Tablica — pustaja!" -#: libraries/tbl_links.inc.php:148 +#: libraries/tbl_links.inc.php:147 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" @@ -3877,12 +3935,12 @@ msgstr "" "Dla značeńniaŭ pa zmoŭčańni, kali łaska, uviadzicie prosta značeńnie, biez " "vykarystańnia zvarotnych słešaŭ i dvukośsia, vykarystoŭvajučy farmat: a" -#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1263 -#: pdf_schema.php:1284 tbl_printview.php:142 tbl_structure.php:179 +#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1262 +#: pdf_schema.php:1283 tbl_printview.php:141 tbl_structure.php:178 msgid "Attributes" msgstr "Atrybuty" -#: libraries/tbl_properties.inc.php:136 +#: libraries/tbl_properties.inc.php:135 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -3891,11 +3949,11 @@ msgstr "" "Dla atrymańnia śpisu dastupnych opcyjaŭ transfarmacyi i pieraŭtvareńniaŭ " "ichnych MIME-typaŭ, naciśnicie na %sapisańni pieraŭtvareńniaŭ%s" -#: libraries/tbl_properties.inc.php:144 +#: libraries/tbl_properties.inc.php:143 msgid "Transformation options" msgstr "Opcyi pieraŭtvareńnia" -#: libraries/tbl_properties.inc.php:145 +#: libraries/tbl_properties.inc.php:144 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
                            If you ever need to put a backslash (\"\\\") or a single " @@ -3907,18 +3965,18 @@ msgstr "" "apostraf (\"'\") u hetych značeńniach, ustaŭcie zvarotny słeš pierad imi " "(naprykład, '\\\\xyz' abo 'a\\'b')." -#: libraries/tbl_properties.inc.php:392 +#: libraries/tbl_properties.inc.php:391 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "Nijakaja" -#: libraries/tbl_properties.inc.php:393 +#: libraries/tbl_properties.inc.php:392 msgid "As defined:" msgstr "Jak vyznačana:" -#: libraries/tbl_properties.inc.php:579 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:578 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
                            Please ask the " @@ -3927,29 +3985,29 @@ msgstr "" "Niama dastupnych apisańniaŭ dla hetaha pieraŭtvareńnia. Kali łaska, " "spytajcie aŭtara, što robić %s." -#: libraries/tbl_properties.inc.php:725 server_engines.php:57 -#: tbl_operations.php:354 +#: libraries/tbl_properties.inc.php:724 server_engines.php:56 +#: tbl_operations.php:352 msgid "Storage Engine" msgstr "Mašyna zachavańnia dadzienych" -#: libraries/tbl_properties.inc.php:754 +#: libraries/tbl_properties.inc.php:753 msgid "PARTITION definition" msgstr "Aznačeńnie PARTITION" -#: libraries/tbl_properties.inc.php:775 pdf_pages.php:502 +#: libraries/tbl_properties.inc.php:774 pdf_pages.php:501 #: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214 -#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1124 tbl_indexes.php:247 -#: tbl_relation.php:565 +#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1022 tbl_indexes.php:246 +#: tbl_relation.php:563 msgid "Save" msgstr "Zachavać" -#: libraries/tbl_properties.inc.php:779 tbl_structure.php:541 +#: libraries/tbl_properties.inc.php:778 tbl_structure.php:539 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "Dadać %s novyja pali" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:535 +#: libraries/tbl_properties.inc.php:782 tbl_structure.php:533 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -4159,8 +4217,8 @@ msgstr "Interfejs" msgid "Custom color" msgstr "Inšy koler" -#: main.php:162 pdf_pages.php:362 setup/lib/FormDisplay.tpl.php:216 -#: tbl_change.php:1173 +#: main.php:162 pdf_pages.php:361 setup/lib/FormDisplay.tpl.php:216 +#: tbl_change.php:1071 msgid "Reset" msgstr "Skinuć" @@ -4168,8 +4226,8 @@ msgstr "Skinuć" msgid "Protocol version" msgstr "Versija pratakołu" -#: main.php:188 server_privileges.php:1381 server_privileges.php:1528 -#: server_privileges.php:1642 server_privileges.php:2060 +#: main.php:188 server_privileges.php:1385 server_privileges.php:1532 +#: server_privileges.php:1646 server_privileges.php:2064 #: server_processlist.php:53 msgid "User" msgstr "Karystalnik" @@ -4254,14 +4312,23 @@ msgid "" "has been configured." msgstr "" -#: main.php:330 +#: main.php:314 +#, php-format +msgid "" +"The additional features for working with linked tables have been " +"deactivated. To find out why click %shere%s." +msgstr "" +"Dadatkovyja mahčymaści raboty z źviazanymi tablicami byli adklučanyja. Kab " +"vyśvietlić čamu, naciśnicie %stut%s." + +#: main.php:329 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:345 +#: main.php:344 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -4270,7 +4337,7 @@ msgstr "" "Versija vašaj biblijateki MySQL dla PHP %s adroźnivajecca ad versii vašaha " "servera MySQL %s. Heta moža vyklikać niepradkazalnyja pavodziny." -#: main.php:357 +#: main.php:356 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -4283,68 +4350,68 @@ msgstr "" msgid "Reload navigation frame" msgstr "" -#: navigation.php:204 server_databases.php:370 server_synchronize.php:1190 +#: navigation.php:203 server_databases.php:368 server_synchronize.php:1189 msgid "No databases" msgstr "Bazy dadzienych adsutničajuć" -#: navigation.php:298 +#: navigation.php:297 msgid "Filter" msgstr "" -#: navigation.php:299 setup/frames/index.inc.php:218 +#: navigation.php:298 setup/frames/index.inc.php:218 #: setup/lib/messages.inc.php:41 msgid "Clear" msgstr "" -#: navigation.php:330 navigation.php:331 +#: navigation.php:329 navigation.php:330 #, fuzzy #| msgid "Create table" msgctxt "short form" msgid "Create table" msgstr "Stvaryć tablicu" -#: navigation.php:333 navigation.php:495 +#: navigation.php:332 navigation.php:494 msgid "Please select a database" msgstr "Kali łaska, vybierycie bazu dadzienych" -#: pdf_pages.php:40 pdf_pages.php:46 pdf_pages.php:52 pdf_pages.php:57 +#: pdf_pages.php:39 pdf_pages.php:45 pdf_pages.php:51 pdf_pages.php:56 #, php-format msgid "%s table not found or not set in %s" msgstr "Tablica %s nia znojdzienaja abo nia vyznačanaja ŭ %s" -#: pdf_pages.php:265 +#: pdf_pages.php:264 msgid "Please choose a page to edit" msgstr "Kali łaska, vybierycie staronku dla redagavańnia" -#: pdf_pages.php:303 pmd_pdf.php:113 +#: pdf_pages.php:302 pmd_pdf.php:111 msgid "Create a page" msgstr "Stvaryć novuju staronku" -#: pdf_pages.php:309 +#: pdf_pages.php:308 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Staronka:" -#: pdf_pages.php:313 +#: pdf_pages.php:312 #, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "Aŭtamatyčnaje raźmiaščeńnie" -#: pdf_pages.php:315 +#: pdf_pages.php:314 msgid "Internal relations" msgstr "Unutranyja suviazi" -#: pdf_pages.php:338 +#: pdf_pages.php:337 msgid "Select Tables" msgstr "Vybierycie tablicu(y)" -#: pdf_pages.php:361 +#: pdf_pages.php:360 msgid "Toggle scratchboard" msgstr "Pakazać papiaredni prahlad" -#: pdf_pages.php:524 +#: pdf_pages.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -4352,37 +4419,37 @@ msgstr "" "Biahučaja staronka ŭtrymlivaje spasyłki na tablicy, jakija bolš nie isnujuć. " "Ci žadajecie vy vydalić hetyja spasyłki?" -#: pdf_schema.php:635 +#: pdf_schema.php:634 #, fuzzy, php-format #| msgid "The \"%s\" table doesn't exist!" msgid "The %s table doesn't exist!" msgstr "Tablicy \"%s\" nie isnuje!" -#: pdf_schema.php:671 +#: pdf_schema.php:670 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Kali łaska, skanfihurujcie kaardynaty dla tablicy %s" -#: pdf_schema.php:994 +#: pdf_schema.php:993 #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" msgstr "Struktura bazy \"%s\" — staronka %s" -#: pdf_schema.php:1012 +#: pdf_schema.php:1011 msgid "No tables" msgstr "Niama tablic" -#: pdf_schema.php:1031 pdf_schema.php:1140 +#: pdf_schema.php:1030 pdf_schema.php:1139 msgid "Relational schema" msgstr "Relacyjnaja schiema" -#: pdf_schema.php:1115 +#: pdf_schema.php:1114 msgid "Table of contents" msgstr "Źmiest" -#: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:145 -#: tbl_structure.php:182 tbl_tracking.php:277 +#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 +#: tbl_structure.php:181 tbl_tracking.php:272 msgid "Extra" msgstr "Dadatkova" @@ -4394,7 +4461,7 @@ msgstr "Pakazać/schavać meniu źleva" msgid "Save position" msgstr "Zachavać raźmiaščeńnie tablic" -#: pmd_general.php:70 server_synchronize.php:428 server_synchronize.php:871 +#: pmd_general.php:70 server_synchronize.php:427 server_synchronize.php:870 msgid "Create table" msgstr "Stvaryć tablicu" @@ -4474,31 +4541,31 @@ msgstr "" "adlustravanych paloŭ, naciśnicie ikonku «Vybierycie pole dla adlustravańnia» " "i naciśnicie na adpaviednaje imia pola." -#: pmd_pdf.php:62 +#: pmd_pdf.php:60 msgid "Page has been created" msgstr "" -#: pmd_pdf.php:64 +#: pmd_pdf.php:62 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:84 +#: pmd_pdf.php:82 msgid "Export/Import to scale" msgstr "Maštab" -#: pmd_pdf.php:88 +#: pmd_pdf.php:86 msgid "recommended" msgstr "rekamendavany" -#: pmd_pdf.php:93 +#: pmd_pdf.php:91 msgid "to/from page" msgstr "staronka" -#: querywindow.php:94 +#: querywindow.php:93 msgid "Import files" msgstr "Impartavać fajły" -#: querywindow.php:105 +#: querywindow.php:104 msgid "All" msgstr "Usie" @@ -4544,67 +4611,67 @@ msgstr "Infarmacyja" msgid "Character Sets and Collations" msgstr "Raskładki i supastaŭleńni" -#: server_databases.php:51 +#: server_databases.php:49 msgid "No databases selected." msgstr "Nia vybranaja baza dadzienych." -#: server_databases.php:62 +#: server_databases.php:60 #, php-format msgid "%s databases have been dropped successfully." msgstr "%s bazaŭ dadzienych byli paśpiachova vydalenyja." -#: server_databases.php:87 +#: server_databases.php:85 msgid "Databases statistics" msgstr "Statystyka bazaŭ dadzienych" -#: server_databases.php:116 server_status.php:370 +#: server_databases.php:114 server_status.php:370 #: setup/lib/messages.inc.php:114 msgid "Tables" msgstr "Tablic" -#: server_databases.php:194 server_replication.php:180 -#: server_replication.php:208 +#: server_databases.php:192 server_replication.php:179 +#: server_replication.php:207 msgid "Master replication" msgstr "" -#: server_databases.php:196 server_replication.php:247 +#: server_databases.php:194 server_replication.php:246 msgid "Slave replication" msgstr "" -#: server_databases.php:229 +#: server_databases.php:227 #, fuzzy #| msgid "No databases" msgid "Jump to database" msgstr "Bazy dadzienych adsutničajuć" -#: server_databases.php:266 +#: server_databases.php:264 msgid "Not replicated" msgstr "" -#: server_databases.php:272 +#: server_databases.php:270 #, fuzzy #| msgid "Replication" msgid "Replicated" msgstr "Replikacyja" -#: server_databases.php:288 +#: server_databases.php:286 #, php-format msgid "Check privileges for database "%s"." msgstr "Pravieryć pryvilei dla bazy \"%s\"." -#: server_databases.php:292 server_databases.php:293 +#: server_databases.php:290 server_databases.php:291 msgid "Check Privileges" msgstr "Pravieryć pryvilei" -#: server_databases.php:357 server_databases.php:358 +#: server_databases.php:355 server_databases.php:356 msgid "Enable Statistics" msgstr "Uklučyć statystyku" -#: server_databases.php:361 server_databases.php:362 +#: server_databases.php:359 server_databases.php:360 msgid "Disable Statistics" msgstr "Adklučyć statystyku" -#: server_databases.php:365 +#: server_databases.php:363 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -4612,127 +4679,127 @@ msgstr "" "Zaŭvaha: Uklučeńnie statystyki bazy dadzienych moža vyklikać vialikuju " "kolkaść trafiku pamiž web-serveram i serveram MySQL." -#: server_engines.php:48 +#: server_engines.php:47 msgid "Storage Engines" msgstr "Mašyny zachavańnia dadzienych" -#: server_export.php:20 +#: server_export.php:18 msgid "View dump (schema) of databases" msgstr "Prahladzieć damp (schiemu) bazaŭ dadzienych" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:23 server_privileges.php:265 msgid "Includes all privileges except GRANT." msgstr "Uklučaje ŭsie pryvilei, aproč GRANT." -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:24 server_privileges.php:191 +#: server_privileges.php:514 msgid "Allows altering the structure of existing tables." msgstr "Dazvalaje źmianiać strukturu isnych tablic." -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:25 server_privileges.php:207 +#: server_privileges.php:520 msgid "Allows altering and dropping stored routines." msgstr "Dazvalaje źmianiać i vydalać pragramy, jakija zachoŭvajucca." -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:26 server_privileges.php:183 +#: server_privileges.php:513 msgid "Allows creating new databases and tables." msgstr "Dazvalaje stvarać novyja bazy dadzienych i tablicy." -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:27 server_privileges.php:206 +#: server_privileges.php:519 msgid "Allows creating stored routines." msgstr "Dazvalaje stvarać pragramy, jakija zachoŭvajucca." -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:513 msgid "Allows creating new tables." msgstr "Dazvalaje stvarać novyja tablicy." -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:29 server_privileges.php:194 +#: server_privileges.php:517 msgid "Allows creating temporary tables." msgstr "Dazvalaje stvarać časovyja tablicy." -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:30 server_privileges.php:208 +#: server_privileges.php:553 msgid "Allows creating, dropping and renaming user accounts." msgstr "" "Dazvalaje stvarać, vydalać i pierajmianoŭvać ulikovyja zapisy karystalnikaŭ" -#: server_privileges.php:32 server_privileges.php:199 -#: server_privileges.php:203 server_privileges.php:526 -#: server_privileges.php:530 +#: server_privileges.php:31 server_privileges.php:198 +#: server_privileges.php:202 server_privileges.php:525 +#: server_privileges.php:529 msgid "Allows creating new views." msgstr "Dazvalaje stvarać novyja prahlady." -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:32 server_privileges.php:182 +#: server_privileges.php:505 msgid "Allows deleting data." msgstr "Dazvalaje vydalać dadzienyja." -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:33 server_privileges.php:184 +#: server_privileges.php:516 msgid "Allows dropping databases and tables." msgstr "Dazvalaje vydalać bazy dadzienych i tablicy." -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:34 server_privileges.php:516 msgid "Allows dropping tables." msgstr "Dazvalaje vydalać tablicy." -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:35 server_privileges.php:199 +#: server_privileges.php:533 msgid "Allows to set up events for the event scheduler" msgstr "Dazvalaje stvarać padziei ŭ planiroŭniku padziejaŭ" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:36 server_privileges.php:209 +#: server_privileges.php:521 msgid "Allows executing stored routines." msgstr "Dazvalaje vykanańnie pragramaŭ, jakija zachoŭvajucca." -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:37 server_privileges.php:188 +#: server_privileges.php:508 msgid "Allows importing data from and exporting data into files." msgstr "" "Dazvalaje impartavać dadzienyja z fajłaŭ i ekspartavać dadzienyja ŭ fajły." -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:38 server_privileges.php:539 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Dazvalaje dadavać karystalnikaŭ i pryvilei biez pierazahruzki tablic " "pryvilejaŭ." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:515 msgid "Allows creating and dropping indexes." msgstr "Dazvalaje stvarać i vydalać indeksy." -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:40 server_privileges.php:180 +#: server_privileges.php:441 server_privileges.php:503 msgid "Allows inserting and replacing data." msgstr "Dazvalaje ŭstaŭlać i zamianiać dadzienyja." -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:41 server_privileges.php:195 +#: server_privileges.php:548 msgid "Allows locking tables for the current thread." msgstr "Dazvalaje blakavać tablicy dla biahučaha patoku." -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:42 server_privileges.php:645 +#: server_privileges.php:647 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Abmiažoŭvaje kolkaść novych złučeńniaŭ, jakija karystalnik moža adkryć na " "praciahu hadziny." -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:43 server_privileges.php:633 +#: server_privileges.php:635 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Abmiažoŭvaje kolkaść zapytaŭ, jakija karystalnik moža adpravić na server na " "praciahu hadziny." -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:44 server_privileges.php:639 +#: server_privileges.php:641 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -4740,59 +4807,59 @@ msgstr "" "Abmiažoŭvaje kolkaść kamandaŭ, źmianiajučych lubuju tablicu abo bazu " "dadzienych, jakija karystalnik moža vykanać na praciahu hadziny." -#: server_privileges.php:46 server_privileges.php:652 -#: server_privileges.php:654 +#: server_privileges.php:45 server_privileges.php:651 +#: server_privileges.php:653 msgid "Limits the number of simultaneous connections the user may have." msgstr "" "Abmiažoŭvaje kolkaść adnačasovych złučeńniaŭ, jakija moža mieć karystalnik." -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:46 server_privileges.php:187 +#: server_privileges.php:543 msgid "Allows viewing processes of all users" msgstr "Dazvalaje prahladać pracesy ŭsich karystalnikaŭ" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:47 server_privileges.php:189 +#: server_privileges.php:447 server_privileges.php:549 msgid "Has no effect in this MySQL version." msgstr "Nie pracuje ŭ hetaj versii MySQL." -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:48 server_privileges.php:185 +#: server_privileges.php:544 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Dazvalaje pierazahružać nałady servera i ačyščać keš servera." -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:197 +#: server_privileges.php:551 msgid "Allows the user to ask where the slaves / masters are." msgstr "Dazvalaje karystalniku pytacca, dzie znachodziacca slaves / masters." -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:50 server_privileges.php:196 +#: server_privileges.php:552 msgid "Needed for the replication slaves." msgstr "Nieabchodna dla replikacyi slaves." -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:51 server_privileges.php:179 +#: server_privileges.php:438 server_privileges.php:502 msgid "Allows reading data." msgstr "Dazvalaje čytać dadzienyja." -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:52 server_privileges.php:192 +#: server_privileges.php:546 msgid "Gives access to the complete list of databases." msgstr "Daje dostup da poŭnaha śpisu bazaŭ dadzienych." -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:53 server_privileges.php:203 +#: server_privileges.php:205 server_privileges.php:518 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Dazvalaje vykanańnie zapytaŭ SHOW CREATE VIEW." -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:54 server_privileges.php:186 +#: server_privileges.php:545 msgid "Allows shutting down the server." msgstr "Dazvalaje spyniać server." -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:55 server_privileges.php:193 +#: server_privileges.php:542 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -4802,157 +4869,157 @@ msgstr "" "Patrabujecca dla bolšaści administratyŭnych aperacyjaŭ, takich jak " "vyznačeńnie hlabalnych źmiennych abo spynieńnie patokaŭ inšych karystalnikaŭ." -#: server_privileges.php:57 server_privileges.php:201 -#: server_privileges.php:535 +#: server_privileges.php:56 server_privileges.php:200 +#: server_privileges.php:534 msgid "Allows creating and dropping triggers" msgstr "Dazvalaje stvareńnie i vydaleńnie tryhieraŭ" -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:57 server_privileges.php:181 +#: server_privileges.php:444 server_privileges.php:504 msgid "Allows changing data." msgstr "Dazvalaje źmianiać dadzienyja." -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:58 server_privileges.php:259 msgid "No privileges." msgstr "Biez pryvilejaŭ." -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:301 server_privileges.php:302 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Nijakaja" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1710 server_privileges.php:1716 +#: server_privileges.php:430 server_privileges.php:565 +#: server_privileges.php:1714 server_privileges.php:1720 msgid "Table-specific privileges" msgstr "Pryvilei, specyfičnyja dla tablicy" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1532 +#: server_privileges.php:431 server_privileges.php:573 +#: server_privileges.php:1536 msgid " Note: MySQL privilege names are expressed in English " msgstr " Zaŭvaha: imiony pryvilejaŭ MySQL zadajucca pa-anhielsku " -#: server_privileges.php:563 server_privileges.php:1531 +#: server_privileges.php:562 server_privileges.php:1535 msgid "Global privileges" msgstr "Hlabalnyja pryvilei" -#: server_privileges.php:565 server_privileges.php:1710 +#: server_privileges.php:564 server_privileges.php:1714 msgid "Database-specific privileges" msgstr "Specyfičnyja pryvilei bazy dadzienych" -#: server_privileges.php:610 +#: server_privileges.php:609 msgid "Administration" msgstr "Administravańnie" -#: server_privileges.php:630 +#: server_privileges.php:629 msgid "Resource limits" msgstr "Abmiežavańni resursaŭ" -#: server_privileges.php:631 +#: server_privileges.php:630 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Zaŭvaha: Paznačeńnie hetych opcyjaŭ jak 0 (nul) zdymaje abmiežavańnie." -#: server_privileges.php:708 +#: server_privileges.php:707 msgid "Login Information" msgstr "Infarmacyja pra ŭvachod" -#: server_privileges.php:802 +#: server_privileges.php:801 msgid "Do not change the password" msgstr "Nie źmianiać parol" -#: server_privileges.php:835 server_privileges.php:2197 +#: server_privileges.php:834 server_privileges.php:2201 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Nie znojdzieny karystalnik." -#: server_privileges.php:879 +#: server_privileges.php:878 #, php-format msgid "The user %s already exists!" msgstr "Karystalnik %s užo isnuje!" -#: server_privileges.php:962 +#: server_privileges.php:961 msgid "You have added a new user." msgstr "Byŭ dadadzieny novy karystalnik." -#: server_privileges.php:1183 +#: server_privileges.php:1184 #, php-format msgid "You have updated the privileges for %s." msgstr "Vy źmianili pryvilei dla %s." -#: server_privileges.php:1207 +#: server_privileges.php:1208 #, php-format msgid "You have revoked the privileges for %s" msgstr "Vy anulavali pryvilei dla %s" -#: server_privileges.php:1243 +#: server_privileges.php:1244 #, php-format msgid "The password for %s was changed successfully." msgstr "Parol dla %s paśpiachova źmienieny." -#: server_privileges.php:1263 +#: server_privileges.php:1264 #, php-format msgid "Deleting %s" msgstr "Vydaleńnie %s" -#: server_privileges.php:1274 +#: server_privileges.php:1275 msgid "No users selected for deleting!" msgstr "Na vybranyja karystalniki dla vydaleńnia!" -#: server_privileges.php:1277 +#: server_privileges.php:1278 msgid "Reloading the privileges" msgstr "Pierazahruzić pryvilei" -#: server_privileges.php:1292 +#: server_privileges.php:1296 msgid "The selected users have been deleted successfully." msgstr "Vybranyja karystalniki byli paśpiachova vydalenyja." -#: server_privileges.php:1327 +#: server_privileges.php:1331 msgid "The privileges were reloaded successfully." msgstr "Pryvilei byli paśpiachova pierazahružanyja." -#: server_privileges.php:1355 server_privileges.php:1641 +#: server_privileges.php:1359 server_privileges.php:1645 msgid "Edit Privileges" msgstr "Redagavać pryvilei" -#: server_privileges.php:1364 +#: server_privileges.php:1368 msgid "Revoke" msgstr "Anulavać" -#: server_privileges.php:1396 +#: server_privileges.php:1400 msgid "User overview" msgstr "Karystalniki" -#: server_privileges.php:1533 server_privileges.php:1715 -#: server_privileges.php:2064 +#: server_privileges.php:1537 server_privileges.php:1719 +#: server_privileges.php:2068 msgid "Grant" msgstr "Grant" -#: server_privileges.php:1552 server_privileges.php:2154 +#: server_privileges.php:1556 server_privileges.php:2158 msgid "Any" msgstr "Luby" -#: server_privileges.php:1601 server_privileges.php:1625 -#: server_privileges.php:2019 server_privileges.php:2208 +#: server_privileges.php:1605 server_privileges.php:1629 +#: server_privileges.php:2023 server_privileges.php:2212 msgid "Add a new User" msgstr "Dadać novaha karystalnika" -#: server_privileges.php:1606 +#: server_privileges.php:1610 msgid "Remove selected users" msgstr "Vydalić vybranych karystalnikaŭ" -#: server_privileges.php:1609 +#: server_privileges.php:1613 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Anulavać usie aktyŭnyja pryvilei karystalnikaŭ i paśla vydalić ich." -#: server_privileges.php:1610 server_privileges.php:1611 -#: server_privileges.php:1612 +#: server_privileges.php:1614 server_privileges.php:1615 +#: server_privileges.php:1616 msgid "Drop the databases that have the same names as the users." msgstr "" "Vydalić bazy dadzienych, jakija majuć takija ž imiony jak i karystalniki." -#: server_privileges.php:1628 +#: server_privileges.php:1632 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4965,96 +5032,96 @@ msgstr "" "jakija vykarystoŭvaje server, kali jany byli źmienienyja ŭručnuju. U hetym " "vypadku vam treba %spierazahruzić pryvilei%s da taho, jak vy praciahniecie." -#: server_privileges.php:1676 +#: server_privileges.php:1680 msgid "The selected user was not found in the privilege table." msgstr "Vyłučany karystalnik nia znojdzieny ŭ tablicy pryvilejaŭ." -#: server_privileges.php:1716 +#: server_privileges.php:1720 msgid "Column-specific privileges" msgstr "Specyfičnyja pryvilei kalonak" -#: server_privileges.php:1917 +#: server_privileges.php:1921 msgid "Add privileges on the following database" msgstr "Dadać pryvilei na nastupnuju bazu" -#: server_privileges.php:1935 +#: server_privileges.php:1939 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "Symbali padstanoŭki % i _ musiać być ekranavanymi symbalem \\ dla ich " "litaralnaha vykarystańnia" -#: server_privileges.php:1938 +#: server_privileges.php:1942 msgid "Add privileges on the following table" msgstr "Dadać pryvilei na nastupnuju tablicu" -#: server_privileges.php:1995 +#: server_privileges.php:1999 msgid "Change Login Information / Copy User" msgstr "Źmianić rehistracyjnuju infarmacyju / Kapijavać karystalnika" -#: server_privileges.php:1998 +#: server_privileges.php:2002 msgid "Create a new user with the same privileges and ..." msgstr "Stvaryć novaha karystalnika z takimi ž pryvilejami i ..." -#: server_privileges.php:2000 +#: server_privileges.php:2004 msgid "... keep the old one." msgstr "... pakinuć staroha." -#: server_privileges.php:2001 +#: server_privileges.php:2005 msgid " ... delete the old one from the user tables." msgstr " ... vydalić staroha z tablicy karystalnikaŭ." -#: server_privileges.php:2002 +#: server_privileges.php:2006 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr " ... anulavać usie aktyŭnyja pryvilei staroha i paśla vydalić jaho." -#: server_privileges.php:2003 +#: server_privileges.php:2007 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" " ... vydalić staroha z tablicy karystalnikaŭ i paśla pierazahruzić pryvilei." -#: server_privileges.php:2025 +#: server_privileges.php:2029 msgid "Database for user" msgstr "Baza dadzienych dla karystalnika" -#: server_privileges.php:2029 +#: server_privileges.php:2033 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Nijakaja" -#: server_privileges.php:2030 +#: server_privileges.php:2034 msgid "Create database with same name and grant all privileges" msgstr "" "Stvaryć bazu dadzienych z takim samym imiem i nadzialić usimi pryvilejami" -#: server_privileges.php:2031 +#: server_privileges.php:2035 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" "Nadzialić usimi pryvilejami bazy z imienami pa mascy (imia karystalnika_%)" -#: server_privileges.php:2034 +#: server_privileges.php:2038 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: server_privileges.php:2057 +#: server_privileges.php:2061 #, php-format msgid "Users having access to "%s"" msgstr "Karystalniki z pravami dostupu da \"%s\"" -#: server_privileges.php:2165 +#: server_privileges.php:2169 msgid "global" msgstr "hlabalny" -#: server_privileges.php:2167 +#: server_privileges.php:2171 msgid "database-specific" msgstr "specyfičny dla bazy dadzienych" -#: server_privileges.php:2169 +#: server_privileges.php:2173 msgid "wildcard" msgstr "šablon" @@ -5073,54 +5140,54 @@ msgstr "phpMyAdmin nia moža spynić praces %s. Napeŭna, jon užo spynieny." msgid "ID" msgstr "ID" -#: server_replication.php:50 +#: server_replication.php:49 msgid "Unknown error" msgstr "" -#: server_replication.php:57 +#: server_replication.php:56 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:64 +#: server_replication.php:63 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:70 +#: server_replication.php:69 msgid "Unable to change master" msgstr "" -#: server_replication.php:73 +#: server_replication.php:72 #, php-format msgid "Master server changed succesfully to %s" msgstr "" -#: server_replication.php:181 +#: server_replication.php:180 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:183 server_status.php:391 +#: server_replication.php:182 server_status.php:391 #, fuzzy msgid "Show master status" msgstr "Pakazać stan zaležnych serveraŭ" -#: server_replication.php:186 +#: server_replication.php:185 msgid "Show connected slaves" msgstr "" -#: server_replication.php:209 +#: server_replication.php:208 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:216 +#: server_replication.php:215 msgid "Master configuration" msgstr "" -#: server_replication.php:217 +#: server_replication.php:216 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -5129,107 +5196,107 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:220 +#: server_replication.php:219 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:221 +#: server_replication.php:220 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:224 +#: server_replication.php:223 msgid "Please select databases:" msgstr "" -#: server_replication.php:227 +#: server_replication.php:226 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: server_replication.php:229 +#: server_replication.php:228 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: server_replication.php:292 +#: server_replication.php:291 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:295 +#: server_replication.php:294 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:304 +#: server_replication.php:303 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:307 +#: server_replication.php:306 msgid "See slave status table" msgstr "" -#: server_replication.php:310 +#: server_replication.php:309 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:321 +#: server_replication.php:320 msgid "Control slave:" msgstr "" -#: server_replication.php:324 +#: server_replication.php:323 msgid "Full start" msgstr "" -#: server_replication.php:324 +#: server_replication.php:323 msgid "Full stop" msgstr "" -#: server_replication.php:325 +#: server_replication.php:324 msgid "Reset slave" msgstr "" -#: server_replication.php:326 +#: server_replication.php:325 #, php-format msgid "SQL Thread %s only" msgstr "" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 msgid "Start" msgstr "" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 msgid "Stop" msgstr "" -#: server_replication.php:327 +#: server_replication.php:326 #, php-format msgid "IO Thread %s only" msgstr "" -#: server_replication.php:331 +#: server_replication.php:330 msgid "Error management:" msgstr "" -#: server_replication.php:333 +#: server_replication.php:332 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:335 +#: server_replication.php:334 msgid "Skip current error" msgstr "" -#: server_replication.php:336 +#: server_replication.php:335 msgid "Skip next" msgstr "" -#: server_replication.php:339 +#: server_replication.php:338 msgid "errors." msgstr "" -#: server_replication.php:354 +#: server_replication.php:353 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -6068,112 +6135,112 @@ msgstr "Typ zapytu" msgid "Replication status" msgstr "" -#: server_synchronize.php:93 +#: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:96 +#: server_synchronize.php:95 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:121 server_synchronize.php:124 tbl_create.php:77 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:264 +#: server_synchronize.php:263 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:271 +#: server_synchronize.php:270 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:399 server_synchronize.php:838 +#: server_synchronize.php:398 server_synchronize.php:837 msgid "not present" msgstr "" -#: server_synchronize.php:423 server_synchronize.php:866 +#: server_synchronize.php:422 server_synchronize.php:865 msgid "Structure Difference" msgstr "" -#: server_synchronize.php:424 server_synchronize.php:867 +#: server_synchronize.php:423 server_synchronize.php:866 msgid "Data Difference" msgstr "" -#: server_synchronize.php:429 server_synchronize.php:872 +#: server_synchronize.php:428 server_synchronize.php:871 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:430 server_synchronize.php:873 +#: server_synchronize.php:429 server_synchronize.php:872 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:431 server_synchronize.php:874 +#: server_synchronize.php:430 server_synchronize.php:873 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:432 server_synchronize.php:875 +#: server_synchronize.php:431 server_synchronize.php:874 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:433 server_synchronize.php:876 +#: server_synchronize.php:432 server_synchronize.php:875 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:434 server_synchronize.php:877 +#: server_synchronize.php:433 server_synchronize.php:876 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:435 server_synchronize.php:878 +#: server_synchronize.php:434 server_synchronize.php:877 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:445 server_synchronize.php:889 +#: server_synchronize.php:444 server_synchronize.php:888 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:448 server_synchronize.php:893 +#: server_synchronize.php:447 server_synchronize.php:892 msgid "Apply Selected Changes" msgstr "" -#: server_synchronize.php:450 server_synchronize.php:895 +#: server_synchronize.php:449 server_synchronize.php:894 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:463 +#: server_synchronize.php:462 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:941 +#: server_synchronize.php:940 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:1002 +#: server_synchronize.php:1001 msgid "The following queries have been executed:" msgstr "" -#: server_synchronize.php:1121 +#: server_synchronize.php:1120 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1122 +#: server_synchronize.php:1121 #, fuzzy #| msgid "max. concurrent connections" msgid "Current connection" msgstr "maksymum adnačasovych złučeńniaŭ" -#: server_synchronize.php:1151 +#: server_synchronize.php:1150 #, php-format msgid "Configuration: %s" msgstr "" -#: server_synchronize.php:1166 +#: server_synchronize.php:1165 msgid "Socket" msgstr "" -#: server_synchronize.php:1212 +#: server_synchronize.php:1211 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -6718,8 +6785,8 @@ msgstr "" #: setup/lib/messages.inc.php:128 msgid "" "Configure phpMyAdmin database to gain access to additional features, see " -"[a@../Documentation.html#linked-tables]linked-tables infrastructure[/a] in " -"documentation" +"[a@../Documentation.html#linked-tables]phpMyAdmin configuration storage[/a] " +"in documentation" msgstr "" #: setup/lib/messages.inc.php:129 setup/lib/messages.inc.php:290 @@ -7761,116 +7828,116 @@ msgstr "" msgid "ZIP" msgstr "" -#: sql.php:495 tbl_replace.php:385 +#: sql.php:494 tbl_replace.php:384 #, php-format msgid "Inserted row id: %1$d" msgstr "ID ustaŭlenaha radku: %1$d" -#: sql.php:512 +#: sql.php:511 msgid "Showing as PHP code" msgstr "U vyhladzie PHP-kodu" -#: sql.php:515 tbl_replace.php:359 +#: sql.php:514 tbl_replace.php:358 msgid "Showing SQL query" msgstr "U vyhladzie SQL-zapytu" -#: sql.php:517 +#: sql.php:516 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Pravieryć SQL" -#: sql.php:638 +#: sql.php:631 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Prablemy z indeksami dla tablicy `%s`" -#: sql.php:670 +#: sql.php:663 msgid "Label" msgstr "Mietka" -#: tbl_addfield.php:188 tbl_alter.php:102 tbl_indexes.php:97 +#: tbl_addfield.php:185 tbl_alter.php:100 tbl_indexes.php:97 #, php-format msgid "Table %1$s has been altered successfully" msgstr "Tablica %1$s była paśpiachova źmienienaja" -#: tbl_change.php:250 tbl_select.php:26 tbl_select.php:27 tbl_select.php:30 -#: tbl_select.php:33 +#: tbl_change.php:245 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_select.php:32 msgid "Browse foreign values" msgstr "Prahladzieć źniešnija značeńni" -#: tbl_change.php:280 tbl_change.php:318 +#: tbl_change.php:275 tbl_change.php:313 msgid "Function" msgstr "Funkcyja" -#: tbl_change.php:300 tbl_indexes.php:199 tbl_indexes.php:224 +#: tbl_change.php:295 tbl_indexes.php:198 tbl_indexes.php:223 msgid "Ignore" msgstr "Ignaravać" -#: tbl_change.php:725 +#: tbl_change.php:720 #, fuzzy #| msgid " Because of its length,
                            this field might not be editable " msgid " Because of its length,
                            this column might not be editable " msgstr " Z-za vialikaj daŭžyni, hetaje pole nia moža być adredagavanaje " -#: tbl_change.php:884 +#: tbl_change.php:835 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:890 +#: tbl_change.php:841 msgid "Binary - do not edit" msgstr "Dvajkovyja dadzienyja — nie redagujucca" -#: tbl_change.php:983 +#: tbl_change.php:889 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:1128 +#: tbl_change.php:1026 msgid "Insert as new row" msgstr "Ustavić jak novy radok" -#: tbl_change.php:1129 +#: tbl_change.php:1027 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:1130 +#: tbl_change.php:1028 msgid "Show insert query" msgstr "" -#: tbl_change.php:1145 +#: tbl_change.php:1043 msgid "Go back to previous page" msgstr "Pierajści da papiaredniaj staronki" -#: tbl_change.php:1146 +#: tbl_change.php:1044 msgid "Insert another new row" msgstr "Dadać jašče adzin radok" -#: tbl_change.php:1150 +#: tbl_change.php:1048 msgid "Go back to this page" msgstr "Viarnucca da hetaj staronki" -#: tbl_change.php:1158 +#: tbl_change.php:1056 msgid "Edit next row" msgstr "Redagavać nastupny radok" -#: tbl_change.php:1169 +#: tbl_change.php:1067 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Vykarystoŭvajcie klavišu TAB dla pieramiaščeńnia ad značeńnia da značeńnia " "abo CTRL+strełki dla pieramiaščeńnia ŭ luboje inšaje miesca" -#: tbl_change.php:1207 +#: tbl_change.php:1105 #, php-format msgid "Restart insertion with %s rows" msgstr "Pačać ustaŭku znoŭ z %s-ha radku" -#: tbl_create.php:57 +#: tbl_create.php:55 #, php-format msgid "Table %s already exists!" msgstr "Tablica %s užo isnuje!" -#: tbl_create.php:244 +#: tbl_create.php:241 #, php-format msgid "Table %1$s has been created." msgstr "Tablica %1$s stvoranaja." @@ -7891,194 +7958,194 @@ msgstr "Niemahčyma pierajmienavać indeks u PRIMARY!" msgid "No index parts defined!" msgstr "Častki indeksu nia vyznačanyja!" -#: tbl_indexes.php:159 +#: tbl_indexes.php:158 msgid "Create a new index" msgstr "Stvaryć novy indeks" -#: tbl_indexes.php:161 +#: tbl_indexes.php:160 msgid "Modify an index" msgstr "Źmianić indeks" -#: tbl_indexes.php:167 +#: tbl_indexes.php:166 msgid "Index name:" msgstr "Imia indeksa:" -#: tbl_indexes.php:173 +#: tbl_indexes.php:172 msgid "Index type:" msgstr "Typ indeksa:" -#: tbl_indexes.php:183 +#: tbl_indexes.php:182 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "(\"PRIMARY\" musić być imiem pieršasnaha kluča i tolki jaho!)" -#: tbl_indexes.php:250 +#: tbl_indexes.php:249 #, php-format msgid "Add to index  %s column(s)" msgstr "Dadać da indeksa %s kalonku(i)" -#: tbl_indexes.php:255 tbl_structure.php:588 tbl_structure.php:599 +#: tbl_indexes.php:254 tbl_structure.php:586 tbl_structure.php:597 msgid "Column count has to be larger than zero." msgstr "Kolkaść kalonak musić być bolšaj za nul." -#: tbl_move_copy.php:45 +#: tbl_move_copy.php:44 msgid "Can't move table to same one!" msgstr "Niemahčyma pieranieści tablicu ŭ samu siabie!" -#: tbl_move_copy.php:47 +#: tbl_move_copy.php:46 msgid "Can't copy table to same one!" msgstr "Niemahčyma skapijavać tablicu ŭ samu siabie!" -#: tbl_move_copy.php:55 +#: tbl_move_copy.php:54 #, php-format msgid "Table %s has been moved to %s." msgstr "Tablica %s była pieraniesienaja ŭ %s." -#: tbl_move_copy.php:57 +#: tbl_move_copy.php:56 #, php-format msgid "Table %s has been copied to %s." msgstr "Tablica %s była skapijavanaja ŭ %s." -#: tbl_move_copy.php:81 +#: tbl_move_copy.php:80 msgid "The table name is empty!" msgstr "Pustaja nazva tablicy!" -#: tbl_operations.php:248 +#: tbl_operations.php:246 msgid "Alter table order by" msgstr "Źmianić paradak tablicy" -#: tbl_operations.php:257 +#: tbl_operations.php:255 msgid "(singly)" msgstr "(asobna)" -#: tbl_operations.php:277 +#: tbl_operations.php:275 msgid "Move table to (database.table):" msgstr "Pieranieści tablicu ŭ (baza dadzienych.tablica):" -#: tbl_operations.php:335 +#: tbl_operations.php:333 msgid "Table options" msgstr "Opcyi tablicy" -#: tbl_operations.php:339 +#: tbl_operations.php:337 msgid "Rename table to" msgstr "Pierajmienavać tablicu ŭ" -#: tbl_operations.php:510 +#: tbl_operations.php:508 msgid "Copy table to (database.table):" msgstr "Skapijavać tablicu ŭ (baza dadzienych.tablica):" -#: tbl_operations.php:557 +#: tbl_operations.php:555 msgid "Switch to copied table" msgstr "Pierajści da skapijavanaj tablicy" -#: tbl_operations.php:569 +#: tbl_operations.php:567 msgid "Table maintenance" msgstr "Absłuhoŭvańnie tablicy" -#: tbl_operations.php:590 +#: tbl_operations.php:588 msgid "Defragment table" msgstr "Defrahmentavać tablicu" -#: tbl_operations.php:629 +#: tbl_operations.php:627 #, php-format msgid "Table %s has been flushed" msgstr "Keš tablicy %s byŭ ačyščany" -#: tbl_operations.php:635 +#: tbl_operations.php:633 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Skinuć keš tablicy (\"FLUSH\")" -#: tbl_operations.php:650 +#: tbl_operations.php:648 msgid "Partition maintenance" msgstr "Padtrymka padziełaŭ" -#: tbl_operations.php:658 +#: tbl_operations.php:656 #, php-format msgid "Partition %s" msgstr "Padzieł %s" -#: tbl_operations.php:661 +#: tbl_operations.php:659 msgid "Analyze" msgstr "Praanalizavać" -#: tbl_operations.php:662 +#: tbl_operations.php:660 msgid "Check" msgstr "Pravieryć" -#: tbl_operations.php:663 +#: tbl_operations.php:661 msgid "Optimize" msgstr "Aptymizavać" -#: tbl_operations.php:664 +#: tbl_operations.php:662 msgid "Rebuild" msgstr "Pierabudavać" -#: tbl_operations.php:665 +#: tbl_operations.php:663 msgid "Repair" msgstr "Adramantavać" -#: tbl_operations.php:677 +#: tbl_operations.php:675 msgid "Remove partitioning" msgstr "Skasavać padzieł na častki" -#: tbl_operations.php:703 +#: tbl_operations.php:701 msgid "Check referential integrity:" msgstr "Pravieryć cełasnaść dadzienych:" -#: tbl_printview.php:73 +#: tbl_printview.php:72 msgid "Show tables" msgstr "Pakazać tablicy" -#: tbl_printview.php:308 tbl_structure.php:655 +#: tbl_printview.php:307 tbl_structure.php:653 msgid "Space usage" msgstr "Vykarystańnie prastory" -#: tbl_printview.php:312 tbl_structure.php:659 +#: tbl_printview.php:311 tbl_structure.php:657 msgid "Usage" msgstr "Vykarystańnie" -#: tbl_printview.php:339 tbl_structure.php:686 +#: tbl_printview.php:338 tbl_structure.php:684 msgid "Effective" msgstr "Efektyŭnaść" -#: tbl_printview.php:364 tbl_structure.php:724 +#: tbl_printview.php:363 tbl_structure.php:722 msgid "Row Statistics" msgstr "Statystyka radku" -#: tbl_printview.php:367 tbl_structure.php:727 +#: tbl_printview.php:366 tbl_structure.php:725 msgid "Statements" msgstr "Vyrazy" -#: tbl_printview.php:378 tbl_structure.php:739 +#: tbl_printview.php:377 tbl_structure.php:737 msgid "static" msgstr "" -#: tbl_printview.php:380 tbl_structure.php:741 +#: tbl_printview.php:379 tbl_structure.php:739 msgid "dynamic" msgstr "dynamičny" -#: tbl_printview.php:402 tbl_structure.php:784 +#: tbl_printview.php:401 tbl_structure.php:782 msgid "Row length" msgstr "Daŭžynia radka" -#: tbl_printview.php:412 tbl_structure.php:792 +#: tbl_printview.php:411 tbl_structure.php:790 msgid " Row size " msgstr " Pamier radka " -#: tbl_relation.php:278 +#: tbl_relation.php:276 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "Pamyłka stvareńnia źniešniaha kluča na %1$s (praviercie typy kalonak)" -#: tbl_relation.php:404 +#: tbl_relation.php:402 #, fuzzy #| msgid "Internal relations" msgid "Internal relation" msgstr "Unutranyja suviazi" -#: tbl_relation.php:406 +#: tbl_relation.php:404 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -8086,7 +8153,7 @@ msgstr "" "Unutranaja suviaź nie źjaŭlajecca abaviazkovaj, kali isnuje adpaviednaja " "suviaź FOREIGN KEY." -#: tbl_relation.php:412 +#: tbl_relation.php:410 msgid "Foreign key constraint" msgstr "" @@ -8094,229 +8161,229 @@ msgstr "" msgid "No rows selected" msgstr "Nivodny radok nia vybrany" -#: tbl_select.php:130 +#: tbl_select.php:129 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Vykanać \"zapyt zhodna prykłada\" (symbal padstanoŭki: \"%\")" -#: tbl_select.php:136 +#: tbl_select.php:135 msgid "Operator" msgstr "Aperatar" -#: tbl_select.php:267 +#: tbl_select.php:266 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "Vybrać pali (prynamsi adno):" -#: tbl_select.php:285 +#: tbl_select.php:284 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Dadać umovy pošuku (cieła dla ŭmovy \"where\"):" -#: tbl_select.php:292 +#: tbl_select.php:291 msgid "Number of rows per page" msgstr "Kolkaść radkoŭ na staronku" -#: tbl_select.php:298 +#: tbl_select.php:297 msgid "Display order:" msgstr "Paradak prahladu:" -#: tbl_structure.php:160 +#: tbl_structure.php:159 msgid "Browse distinct values" msgstr "Prahlad roznych značeńniaŭ" -#: tbl_structure.php:360 +#: tbl_structure.php:358 #, fuzzy #| msgid "None" msgctxt "None for default" msgid "None" msgstr "Nijakaja" -#: tbl_structure.php:373 +#: tbl_structure.php:371 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Column %s has been dropped" msgstr "Tablica %s była vydalenaja" -#: tbl_structure.php:384 +#: tbl_structure.php:382 #, php-format msgid "A primary key has been added on %s" msgstr "Pieršasny kluč byŭ dadadzieny da %s" -#: tbl_structure.php:399 tbl_structure.php:413 tbl_structure.php:427 +#: tbl_structure.php:397 tbl_structure.php:411 tbl_structure.php:425 #, php-format msgid "An index has been added on %s" msgstr "Byŭ dadadzieny indeks dla %s" -#: tbl_structure.php:505 tbl_structure.php:507 +#: tbl_structure.php:503 tbl_structure.php:505 msgid "Relation view" msgstr "Prahlad zaležnaściaŭ" -#: tbl_structure.php:514 tbl_structure.php:516 +#: tbl_structure.php:512 tbl_structure.php:514 msgid "Propose table structure" msgstr "Prapanavanaja struktura tablicy" -#: tbl_structure.php:539 +#: tbl_structure.php:537 #, fuzzy #| msgid "Add %s field(s)" msgid "Add column" msgstr "Dadać %s novyja pali" -#: tbl_structure.php:553 +#: tbl_structure.php:551 msgid "At End of Table" msgstr "U kancy tablicy" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At Beginning of Table" msgstr "U pačatku tablicy" -#: tbl_structure.php:555 +#: tbl_structure.php:553 #, php-format msgid "After %s" msgstr "Paśla %s" -#: tbl_structure.php:593 +#: tbl_structure.php:591 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "Stvaryć indeks na %s kalonkach" -#: tbl_structure.php:755 +#: tbl_structure.php:753 msgid "partitioned" msgstr "padzielenaja na sekcyi" -#: tbl_tracking.php:113 +#: tbl_tracking.php:109 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:186 +#: tbl_tracking.php:182 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "" -#: tbl_tracking.php:194 +#: tbl_tracking.php:190 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "" -#: tbl_tracking.php:202 +#: tbl_tracking.php:198 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "" -#: tbl_tracking.php:212 +#: tbl_tracking.php:208 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:219 +#: tbl_tracking.php:215 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:220 +#: tbl_tracking.php:216 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:229 +#: tbl_tracking.php:225 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:250 tbl_tracking.php:378 +#: tbl_tracking.php:245 tbl_tracking.php:373 msgid "Close" msgstr "" -#: tbl_tracking.php:261 +#: tbl_tracking.php:256 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:380 +#: tbl_tracking.php:375 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:396 tbl_tracking.php:503 +#: tbl_tracking.php:391 tbl_tracking.php:498 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "" -#: tbl_tracking.php:409 tbl_tracking.php:460 +#: tbl_tracking.php:404 tbl_tracking.php:455 msgid "Date" msgstr "" -#: tbl_tracking.php:410 tbl_tracking.php:461 +#: tbl_tracking.php:405 tbl_tracking.php:456 msgid "Username" msgstr "" -#: tbl_tracking.php:411 +#: tbl_tracking.php:406 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:462 +#: tbl_tracking.php:457 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:506 +#: tbl_tracking.php:501 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:507 +#: tbl_tracking.php:502 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:520 +#: tbl_tracking.php:515 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:560 +#: tbl_tracking.php:555 msgid "Show versions" msgstr "" -#: tbl_tracking.php:592 +#: tbl_tracking.php:587 msgid "Version" msgstr "" -#: tbl_tracking.php:639 +#: tbl_tracking.php:634 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "" -#: tbl_tracking.php:641 +#: tbl_tracking.php:636 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:652 +#: tbl_tracking.php:647 #, php-format msgid "Activate tracking for %s.%s" msgstr "" -#: tbl_tracking.php:654 +#: tbl_tracking.php:649 msgid "Activate now" msgstr "" -#: tbl_tracking.php:667 +#: tbl_tracking.php:662 #, php-format msgid "Create version %s of %s.%s" msgstr "" -#: tbl_tracking.php:671 +#: tbl_tracking.php:666 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:679 +#: tbl_tracking.php:674 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:687 +#: tbl_tracking.php:682 msgid "Create version" msgstr "" @@ -8366,10 +8433,28 @@ msgstr "Profil byŭ adnoŭleny." msgid "VIEW name" msgstr "Nazva prahladu" -#: view_operations.php:92 +#: view_operations.php:91 msgid "Rename view to" msgstr "" +#, fuzzy +#~| msgid "Enabled" +#~ msgctxt "BLOB repository" +#~ msgid "Enabled" +#~ msgstr "Uklučana" + +#, fuzzy +#~| msgid "Repair" +#~ msgctxt "BLOB repository" +#~ msgid "Repair" +#~ msgstr "Adramantavać" + +#, fuzzy +#~| msgid "Disabled" +#~ msgctxt "BLOB repository" +#~ msgid "Disabled" +#~ msgstr "Adklučana" + #~ msgid "" #~ "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " #~ "extension. Please check your PHP configuration." diff --git a/po/bg.po b/po/bg.po index d8c175ee5..179ef22fa 100644 --- a/po/bg.po +++ b/po/bg.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-21 13:53+0200\n" +"POT-Creation-Date: 2010-07-26 17:18+0200\n" "PO-Revision-Date: 2010-06-11 17:28+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" @@ -14,19 +14,19 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.1\n" -#: browse_foreigners.php:37 browse_foreigners.php:58 -#: libraries/display_tbl.lib.php:416 server_privileges.php:1506 +#: browse_foreigners.php:36 browse_foreigners.php:57 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1510 msgid "Show all" msgstr "Покажи всички" -#: browse_foreigners.php:81 libraries/common.lib.php:2313 -#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:393 -#: libraries/export/pdf.php:146 pdf_schema.php:282 pdf_schema.php:1122 -#: pdf_schema.php:1138 +#: browse_foreigners.php:80 libraries/common.lib.php:2318 +#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:392 +#: libraries/export/pdf.php:146 pdf_schema.php:281 pdf_schema.php:1121 +#: pdf_schema.php:1137 msgid "Page number:" msgstr "Номер на страницата:" -#: browse_foreigners.php:131 +#: browse_foreigners.php:130 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -36,139 +36,151 @@ msgstr "" "отварящият го прозорец или браузърът Ви е блокирал обновяване на данни от " "един прозорец в друг от съображения за сигурност" -#: browse_foreigners.php:149 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2829 -#: libraries/common.lib.php:2836 libraries/db_links.inc.php:74 -#: libraries/tbl_links.inc.php:62 +#: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 +#: db_structure.php:89 db_structure.php:91 db_structure.php:102 +#: db_structure.php:104 libraries/common.lib.php:2834 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Търсене" -#: browse_foreigners.php:152 db_operations.php:384 db_operations.php:428 -#: db_operations.php:498 db_operations.php:608 db_search.php:344 -#: db_structure.php:566 js/messages.php:48 libraries/Config.class.php:1043 -#: libraries/Theme_Manager.class.php:310 +#: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 +#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 +#: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 -#: libraries/common.lib.php:1340 libraries/common.lib.php:2289 +#: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 -#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:275 -#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:531 -#: libraries/display_tbl.lib.php:613 libraries/replication_gui.lib.php:75 +#: libraries/display_export.lib.php:269 libraries/display_import.lib.php:275 +#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 +#: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 #: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:781 -#: main.php:127 navigation.php:231 pdf_pages.php:291 pdf_pages.php:327 -#: pdf_pages.php:529 pmd_pdf.php:115 server_binlog.php:128 -#: server_privileges.php:664 server_privileges.php:1616 -#: server_privileges.php:1963 server_privileges.php:2010 -#: server_privileges.php:2049 server_replication.php:234 -#: server_replication.php:317 server_replication.php:340 -#: server_synchronize.php:1208 tbl_change.php:328 tbl_change.php:1172 -#: tbl_change.php:1209 tbl_indexes.php:253 tbl_operations.php:264 -#: tbl_operations.php:301 tbl_operations.php:498 tbl_operations.php:560 -#: tbl_operations.php:680 tbl_select.php:324 tbl_structure.php:561 -#: tbl_structure.php:596 tbl_tracking.php:394 tbl_tracking.php:511 -#: view_create.php:181 view_operations.php:100 +#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 +#: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 +#: server_privileges.php:663 server_privileges.php:1620 +#: server_privileges.php:1967 server_privileges.php:2014 +#: server_privileges.php:2053 server_replication.php:233 +#: server_replication.php:316 server_replication.php:339 +#: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 +#: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 +#: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 +#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "Изпълнение" -#: browse_foreigners.php:167 browse_foreigners.php:171 -#: libraries/Index.class.php:441 tbl_tracking.php:319 +#: browse_foreigners.php:166 browse_foreigners.php:170 +#: libraries/Index.class.php:441 tbl_tracking.php:314 msgid "Keyname" msgstr "Име на ключа" -#: browse_foreigners.php:168 browse_foreigners.php:170 -#: server_collations.php:54 server_collations.php:66 server_engines.php:58 +#: browse_foreigners.php:167 browse_foreigners.php:169 +#: server_collations.php:54 server_collations.php:66 server_engines.php:57 #: server_status.php:738 msgid "Description" msgstr "Описание" -#: browse_foreigners.php:246 browse_foreigners.php:255 -#: browse_foreigners.php:267 browse_foreigners.php:275 +#: browse_foreigners.php:245 browse_foreigners.php:254 +#: browse_foreigners.php:266 browse_foreigners.php:274 msgid "Use this value" msgstr "Използвахте тази стойност" -#: db_create.php:45 +#: bs_disp_as_mime_type.php:29 bs_play_media.php:35 +msgid "No blob streaming server configured!" +msgstr "" + +#: bs_disp_as_mime_type.php:35 +msgid "Failed to fetch headers" +msgstr "" + +#: bs_disp_as_mime_type.php:41 +msgid "Failed to open remote URL" +msgstr "" + +#: db_create.php:44 #, php-format msgid "Database %1$s has been created." msgstr "Базата данни %1$s беше създадена." -#: db_datadict.php:48 db_operations.php:377 +#: db_datadict.php:48 db_operations.php:313 msgid "Database comment: " msgstr "Коментар към базата от данни: " -#: db_datadict.php:164 libraries/tbl_properties.inc.php:723 -#: pdf_schema.php:1235 tbl_operations.php:346 tbl_printview.php:128 +#: db_datadict.php:164 libraries/tbl_properties.inc.php:722 +#: pdf_schema.php:1234 tbl_operations.php:344 tbl_printview.php:127 msgid "Table comments" msgstr "Коментари към таблицата" -#: db_datadict.php:173 db_qbe.php:173 libraries/Index.class.php:445 +#: db_datadict.php:173 db_qbe.php:170 libraries/Index.class.php:445 #: libraries/export/htmlword.php:243 libraries/export/latex.php:364 #: libraries/export/odt.php:293 libraries/export/texytext.php:233 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:274 -#: pdf_schema.php:1261 pdf_schema.php:1282 tbl_change.php:306 -#: tbl_indexes.php:188 tbl_printview.php:140 tbl_relation.php:401 -#: tbl_select.php:133 tbl_structure.php:176 tbl_tracking.php:272 -#: tbl_tracking.php:323 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 +#: pdf_schema.php:1260 pdf_schema.php:1281 tbl_change.php:301 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:132 tbl_structure.php:175 tbl_tracking.php:267 +#: tbl_tracking.php:318 #, fuzzy #| msgid "Column names" msgid "Column" msgstr "Име на колона" -#: db_datadict.php:174 db_printview.php:105 libraries/Index.class.php:442 +#: db_datadict.php:174 db_printview.php:104 libraries/Index.class.php:442 #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 #: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:244 #: libraries/export/latex.php:364 libraries/export/odt.php:296 #: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:99 -#: pdf_schema.php:1262 pdf_schema.php:1283 server_privileges.php:2062 -#: tbl_change.php:285 tbl_change.php:312 tbl_printview.php:141 -#: tbl_printview.php:311 tbl_select.php:134 tbl_structure.php:177 -#: tbl_structure.php:658 tbl_tracking.php:273 tbl_tracking.php:320 +#: pdf_schema.php:1261 pdf_schema.php:1282 server_privileges.php:2066 +#: tbl_change.php:280 tbl_change.php:307 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:133 tbl_structure.php:176 +#: tbl_structure.php:656 tbl_tracking.php:268 tbl_tracking.php:315 msgid "Type" msgstr "Тип" #: db_datadict.php:176 libraries/Index.class.php:448 #: libraries/export/htmlword.php:245 libraries/export/latex.php:364 #: libraries/export/odt.php:299 libraries/export/texytext.php:235 -#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1264 -#: pdf_schema.php:1285 tbl_change.php:321 tbl_printview.php:143 -#: tbl_structure.php:180 tbl_tracking.php:275 tbl_tracking.php:326 +#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1263 +#: pdf_schema.php:1284 tbl_change.php:316 tbl_printview.php:142 +#: tbl_structure.php:179 tbl_tracking.php:270 tbl_tracking.php:321 msgid "Null" msgstr "Празно" -#: db_datadict.php:177 db_structure.php:500 libraries/export/htmlword.php:246 +#: db_datadict.php:177 db_structure.php:486 libraries/export/htmlword.php:246 #: libraries/export/latex.php:364 libraries/export/odt.php:302 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:105 -#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 -#: tbl_structure.php:181 tbl_tracking.php:276 +#: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:143 +#: tbl_structure.php:180 tbl_tracking.php:271 msgid "Default" msgstr "По подразбиране" #: db_datadict.php:181 libraries/export/htmlword.php:248 #: libraries/export/latex.php:366 libraries/export/odt.php:306 -#: libraries/export/texytext.php:238 pdf_schema.php:1267 pdf_schema.php:1288 -#: tbl_printview.php:148 +#: libraries/export/texytext.php:238 pdf_schema.php:1266 pdf_schema.php:1287 +#: tbl_printview.php:147 msgid "Links to" msgstr "Сочи към" -#: db_datadict.php:183 db_printview.php:111 libraries/export/htmlword.php:251 +#: db_datadict.php:183 db_printview.php:110 libraries/export/htmlword.php:251 #: libraries/export/latex.php:49 libraries/export/latex.php:369 #: libraries/export/odt.php:37 libraries/export/odt.php:311 #: libraries/export/sql.php:29 libraries/export/texytext.php:241 -#: libraries/tbl_properties.inc.php:129 pdf_schema.php:1278 -#: pdf_schema.php:1289 tbl_printview.php:150 +#: libraries/tbl_properties.inc.php:128 pdf_schema.php:1277 +#: pdf_schema.php:1288 tbl_printview.php:149 msgid "Comments" msgstr "Коментари" #: db_datadict.php:266 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/export/htmlword.php:321 #: libraries/export/latex.php:434 libraries/export/odt.php:367 -#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:262 -#: pdf_schema.php:1343 server_privileges.php:1560 server_privileges.php:1571 -#: server_privileges.php:1881 server_privileges.php:1886 -#: server_privileges.php:2179 sql.php:131 sql.php:193 tbl_printview.php:227 -#: tbl_structure.php:349 tbl_tracking.php:336 tbl_tracking.php:341 +#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:261 +#: pdf_schema.php:1342 server_privileges.php:1564 server_privileges.php:1575 +#: server_privileges.php:1885 server_privileges.php:1890 +#: server_privileges.php:2183 sql.php:130 sql.php:192 tbl_printview.php:226 +#: tbl_structure.php:347 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "не" @@ -179,17 +191,17 @@ msgstr "не" #: libraries/mult_submits.inc.php:49 libraries/mult_submits.inc.php:54 #: libraries/mult_submits.inc.php:59 libraries/mult_submits.inc.php:91 #: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:105 -#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:261 -#: libraries/mult_submits.inc.php:272 pdf_schema.php:1343 -#: server_databases.php:63 server_privileges.php:1557 -#: server_privileges.php:1571 server_privileges.php:1881 -#: server_privileges.php:1884 server_privileges.php:2179 sql.php:192 -#: tbl_printview.php:227 tbl_structure.php:39 tbl_structure.php:349 -#: tbl_tracking.php:334 tbl_tracking.php:339 +#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:260 +#: libraries/mult_submits.inc.php:271 pdf_schema.php:1342 +#: server_databases.php:61 server_privileges.php:1561 +#: server_privileges.php:1575 server_privileges.php:1885 +#: server_privileges.php:1888 server_privileges.php:2183 sql.php:191 +#: tbl_printview.php:226 tbl_structure.php:38 tbl_structure.php:347 +#: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" msgstr "да" -#: db_datadict.php:321 db_printview.php:265 tbl_printview.php:496 +#: db_datadict.php:321 db_printview.php:264 tbl_printview.php:495 msgid "Print" msgstr "Печат" @@ -197,195 +209,154 @@ msgstr "Печат" msgid "View dump (schema) of database" msgstr "Схема на БД" -#: db_export.php:32 db_printview.php:95 db_qbe.php:101 db_structure.php:50 -#: db_tracking.php:34 export.php:352 navigation.php:326 +#: db_export.php:32 db_printview.php:94 db_qbe.php:98 db_structure.php:49 +#: db_tracking.php:30 export.php:350 navigation.php:325 msgid "No tables found in database." msgstr "В базата от данни няма таблици." -#: db_export.php:42 db_search.php:326 server_export.php:26 +#: db_export.php:42 db_search.php:326 server_export.php:24 msgid "Select All" msgstr "Селектиране на всичко" -#: db_export.php:44 db_search.php:329 server_export.php:28 +#: db_export.php:44 db_search.php:329 server_export.php:26 msgid "Unselect All" msgstr "Деселектиране на всичко" -#: db_operations.php:37 tbl_create.php:49 +#: db_operations.php:33 tbl_create.php:47 msgid "The database name is empty!" msgstr "Името на базата от данни е празно!" -#: db_operations.php:235 +#: db_operations.php:231 #, php-format msgid "Database %s has been renamed to %s" msgstr "Базата данни %s беше преименувана на %s" -#: db_operations.php:239 +#: db_operations.php:235 #, php-format msgid "Database %s has been copied to %s" msgstr "База от данни %s беше копирана като %s" -#: db_operations.php:411 +#: db_operations.php:347 msgid "Rename database to" msgstr "Преименуване на базата от данни на" -#: db_operations.php:416 server_processlist.php:56 +#: db_operations.php:352 server_processlist.php:56 msgid "Command" msgstr "Команда" -#: db_operations.php:428 tbl_change.php:1141 +#: db_operations.php:364 tbl_change.php:1039 msgid "and then" msgstr "и след това" -#: db_operations.php:454 +#: db_operations.php:390 msgid "Copy database to" msgstr "Копиране на базата от данни в" -#: db_operations.php:461 tbl_operations.php:527 tbl_tracking.php:387 +#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Само структурата" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:389 +#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Структурата и данните" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:388 +#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Само данните" -#: db_operations.php:471 +#: db_operations.php:407 msgid "CREATE DATABASE before copying" msgstr "Изпълняване на CREATE DATABASE преди копирането" -#: db_operations.php:474 libraries/export/sql.php:51 +#: db_operations.php:410 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 -#: libraries/export/sql.php:81 tbl_operations.php:535 +#: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "Добавяне на %s" -#: db_operations.php:478 libraries/export/sql.php:77 tbl_operations.php:298 -#: tbl_operations.php:537 +#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Добавяне на AUTO_INCREMENT" -#: db_operations.php:482 tbl_operations.php:544 +#: db_operations.php:418 tbl_operations.php:542 msgid "Add constraints" msgstr "Добавяне на ограничение" -#: db_operations.php:495 +#: db_operations.php:431 msgid "Switch to copied database" msgstr "Прехвърляна към копираната база от данни" -#: db_operations.php:536 -msgid "BLOB Repository" -msgstr "BLOB хранилище" - -#: db_operations.php:539 db_tracking.php:75 libraries/common.lib.php:1357 -#: libraries/server_links.inc.php:48 server_processlist.php:58 -#: tbl_tracking.php:595 test/theme.php:100 -msgid "Status" -msgstr "Състояние" - -#: db_operations.php:547 -#, fuzzy -#| msgid "Enabled" -msgctxt "BLOB repository" -msgid "Enabled" -msgstr "Позволено" - -#: db_operations.php:551 -#, fuzzy -msgid "Disable" -msgstr "Забранено" - -#: db_operations.php:561 -msgid "Damaged" -msgstr "" - -#: db_operations.php:565 -#, fuzzy -msgctxt "BLOB repository" -msgid "Repair" -msgstr "Поправяне на таблицата" - -#: db_operations.php:573 -#, fuzzy -#| msgid "Disabled" -msgctxt "BLOB repository" -msgid "Disabled" -msgstr "Забранено" - -#: db_operations.php:577 -#, fuzzy -msgid "Enable" -msgstr "Позволено" - -#: db_operations.php:601 libraries/Index.class.php:447 +#: db_operations.php:451 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 -#: server_collations.php:53 server_collations.php:65 server_databases.php:110 -#: tbl_operations.php:362 tbl_select.php:135 tbl_structure.php:178 -#: tbl_structure.php:766 tbl_tracking.php:274 tbl_tracking.php:325 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 +#: server_collations.php:53 server_collations.php:65 server_databases.php:108 +#: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:177 +#: tbl_structure.php:764 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "Колация" -#: db_operations.php:614 main.php:315 pdf_schema.php:33 -#, php-format +#: db_operations.php:464 pdf_schema.php:32 +#, fuzzy, php-format +#| msgid "" +#| "The additional features for working with linked tables have been " +#| "deactivated. To find out why click %shere%s." msgid "" -"The additional features for working with linked tables have been " -"deactivated. To find out why click %shere%s." +"The phpMyAdmin configuration storage has been deactivated. To find out why " +"click %shere%s." msgstr "" "Допълнителните възможности за работа със свързани (linked) таблици са " "деактивирани. За да разберете защо кликнете %sтук%s." -#: db_operations.php:647 +#: db_operations.php:497 msgid "Edit PDF Pages" msgstr "Редактиране на PDF Страници" -#: db_printview.php:103 db_tracking.php:71 db_tracking.php:156 +#: db_printview.php:102 db_tracking.php:67 db_tracking.php:152 #: libraries/db_structure.lib.php:37 libraries/export/xml.php:327 -#: libraries/header.inc.php:125 pdf_pages.php:423 server_privileges.php:1657 -#: server_privileges.php:1713 server_privileges.php:1977 -#: server_synchronize.php:422 server_synchronize.php:865 tbl_tracking.php:591 +#: libraries/header.inc.php:125 pdf_pages.php:422 server_privileges.php:1661 +#: server_privileges.php:1717 server_privileges.php:1981 +#: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "Таблица " -#: db_printview.php:104 libraries/db_structure.lib.php:47 +#: db_printview.php:103 libraries/db_structure.lib.php:47 #: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 -#: navigation.php:629 navigation.php:651 server_databases.php:121 -#: tbl_printview.php:392 tbl_structure.php:364 tbl_structure.php:776 +#: navigation.php:628 navigation.php:650 server_databases.php:119 +#: tbl_printview.php:391 tbl_structure.php:362 tbl_structure.php:774 msgid "Rows" msgstr "Редове" -#: db_printview.php:108 libraries/db_structure.lib.php:58 tbl_indexes.php:189 +#: db_printview.php:107 libraries/db_structure.lib.php:58 tbl_indexes.php:188 msgid "Size" msgstr "Размер" -#: db_printview.php:161 db_structure.php:456 libraries/export/sql.php:556 +#: db_printview.php:160 db_structure.php:442 libraries/export/sql.php:556 #: libraries/export/sql.php:896 msgid "in use" msgstr "Заето" -#: db_printview.php:186 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:511 pdf_schema.php:1240 tbl_printview.php:432 -#: tbl_structure.php:808 +#: db_printview.php:185 libraries/db_info.inc.php:86 +#: libraries/export/sql.php:511 pdf_schema.php:1239 tbl_printview.php:431 +#: tbl_structure.php:806 msgid "Creation" msgstr "Дата на създаване" -#: db_printview.php:195 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:516 pdf_schema.php:1245 tbl_printview.php:442 -#: tbl_structure.php:816 +#: db_printview.php:194 libraries/db_info.inc.php:91 +#: libraries/export/sql.php:516 pdf_schema.php:1244 tbl_printview.php:441 +#: tbl_structure.php:814 msgid "Last update" msgstr "Последно обновление" -#: db_printview.php:204 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:521 pdf_schema.php:1250 tbl_printview.php:452 -#: tbl_structure.php:824 +#: db_printview.php:203 libraries/db_info.inc.php:96 +#: libraries/export/sql.php:521 pdf_schema.php:1249 tbl_printview.php:451 +#: tbl_structure.php:822 msgid "Last check" msgstr "Последна проверка" -#: db_printview.php:221 db_structure.php:479 +#: db_printview.php:220 db_structure.php:465 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -393,94 +364,94 @@ msgid_plural "%s tables" msgstr[0] "%s таблица(и)" msgstr[1] "%s таблица(и)" -#: db_qbe.php:28 import.php:453 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1980 libraries/sql_query_form.lib.php:138 -#: tbl_operations.php:212 tbl_relation.php:291 tbl_row_action.php:130 -#: view_operations.php:61 +#: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 +#: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "SQL заявката беше изпълнена успешно" -#: db_qbe.php:41 +#: db_qbe.php:38 msgid "You have to choose at least one column to display" msgstr "Трябва да изберете поне една Колона за показване" -#: db_qbe.php:199 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:865 +#: db_qbe.php:196 libraries/db_structure.lib.php:95 +#: libraries/display_tbl.lib.php:864 msgid "Sort" msgstr "Сортиране" -#: db_qbe.php:208 db_qbe.php:242 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:522 libraries/display_tbl.lib.php:827 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:259 -#: tbl_select.php:311 +#: db_qbe.php:205 db_qbe.php:239 libraries/db_structure.lib.php:102 +#: libraries/display_tbl.lib.php:521 libraries/display_tbl.lib.php:826 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:257 +#: tbl_select.php:310 msgid "Ascending" msgstr "Възходящо" -#: db_qbe.php:209 db_qbe.php:250 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:527 libraries/display_tbl.lib.php:824 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:260 -#: tbl_select.php:312 +#: db_qbe.php:206 db_qbe.php:247 libraries/db_structure.lib.php:110 +#: libraries/display_tbl.lib.php:526 libraries/display_tbl.lib.php:823 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:258 +#: tbl_select.php:311 msgid "Descending" msgstr "Низходящо" -#: db_qbe.php:263 db_tracking.php:77 libraries/display_tbl.lib.php:307 -#: tbl_change.php:275 tbl_tracking.php:596 +#: db_qbe.php:260 db_tracking.php:73 libraries/display_tbl.lib.php:306 +#: tbl_change.php:270 tbl_tracking.php:591 msgid "Show" msgstr "Показване" -#: db_qbe.php:299 +#: db_qbe.php:296 msgid "Criteria" msgstr "Критерий" -#: db_qbe.php:352 db_qbe.php:434 db_qbe.php:526 db_qbe.php:557 +#: db_qbe.php:349 db_qbe.php:431 db_qbe.php:523 db_qbe.php:554 msgid "Ins" msgstr "Вмъкни" -#: db_qbe.php:356 db_qbe.php:438 db_qbe.php:523 db_qbe.php:554 +#: db_qbe.php:353 db_qbe.php:435 db_qbe.php:520 db_qbe.php:551 msgid "And" msgstr "и" -#: db_qbe.php:365 db_qbe.php:446 db_qbe.php:528 db_qbe.php:559 +#: db_qbe.php:362 db_qbe.php:443 db_qbe.php:525 db_qbe.php:556 msgid "Del" msgstr "Изтрий" -#: db_qbe.php:369 db_qbe.php:450 db_qbe.php:521 db_qbe.php:552 -#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:778 -#: server_privileges.php:297 tbl_change.php:1027 tbl_indexes.php:249 -#: tbl_select.php:285 +#: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 +#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:777 +#: server_privileges.php:296 tbl_change.php:925 tbl_indexes.php:248 +#: tbl_select.php:284 msgid "Or" msgstr "или" -#: db_qbe.php:506 +#: db_qbe.php:503 msgid "Modify" msgstr "Промени" -#: db_qbe.php:583 +#: db_qbe.php:580 #, fuzzy #| msgid "Add/Delete Criteria Row" msgid "Add/Delete criteria rows" msgstr "Добави/изтрий ред по критерий" -#: db_qbe.php:595 +#: db_qbe.php:592 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Add/Delete columns" msgstr "Добави/изтрий колона по критерий" -#: db_qbe.php:608 db_qbe.php:633 +#: db_qbe.php:605 db_qbe.php:630 msgid "Update Query" msgstr "Допълни Запитването" -#: db_qbe.php:616 +#: db_qbe.php:613 msgid "Use Tables" msgstr "Използвай таблицата" -#: db_qbe.php:639 +#: db_qbe.php:636 #, php-format msgid "SQL query on database %s:" msgstr "SQL-заявка към базата от данни %s:" -#: db_qbe.php:933 libraries/common.lib.php:1222 +#: db_qbe.php:930 libraries/common.lib.php:1215 msgid "Submit Query" msgstr "Изпълни заявката" @@ -520,17 +491,17 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s съвпадение(я) в таблица %s" msgstr[1] "%s съвпадение(я) в таблица %s" -#: db_search.php:249 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2831 -#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:49 -#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:466 +#: db_search.php:249 db_structure.php:75 db_structure.php:76 +#: db_structure.php:88 db_structure.php:90 db_structure.php:101 +#: db_structure.php:103 libraries/common.lib.php:2836 +#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 +#: tbl_structure.php:35 tbl_structure.php:47 tbl_structure.php:464 msgid "Browse" msgstr "Прелистване" -#: db_search.php:254 libraries/display_tbl.lib.php:1164 -#: libraries/display_tbl.lib.php:2055 libraries/sql_query_form.lib.php:453 -#: pdf_pages.php:285 pdf_pages.php:424 pdf_pages.php:460 pdf_pages.php:488 +#: db_search.php:254 libraries/display_tbl.lib.php:1163 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 msgid "Delete" @@ -570,230 +541,236 @@ msgstr "В таблиците:" msgid "Inside column:" msgstr "В таблиците:" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2830 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:75 +#: db_structure.php:79 db_structure.php:80 db_structure.php:92 +#: db_structure.php:93 db_structure.php:105 db_structure.php:106 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 +#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Вмъкване" -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2827 libraries/common.lib.php:2834 -#: libraries/db_links.inc.php:62 libraries/export/htmlword.php:22 +#: db_structure.php:81 db_structure.php:94 db_structure.php:107 +#: libraries/common.lib.php:2832 libraries/common.lib.php:2839 +#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 -#: libraries/tbl_links.inc.php:55 pmd_general.php:133 -#: server_privileges.php:593 server_replication.php:314 tbl_tracking.php:268 +#: libraries/tbl_links.inc.php:54 pmd_general.php:133 +#: server_privileges.php:592 server_replication.php:313 tbl_tracking.php:263 msgid "Structure" msgstr "Структура" -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:544 db_structure.php:545 db_tracking.php:90 -#: libraries/Index.class.php:482 libraries/common.lib.php:1659 -#: libraries/db_links.inc.php:99 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:126 -#: server_databases.php:351 tbl_structure.php:26 tbl_structure.php:150 -#: tbl_structure.php:151 tbl_structure.php:470 +#: db_structure.php:82 db_structure.php:83 db_structure.php:95 +#: db_structure.php:96 db_structure.php:108 db_structure.php:109 +#: db_structure.php:530 db_structure.php:531 db_tracking.php:86 +#: libraries/Index.class.php:482 libraries/common.lib.php:1663 +#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 +#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 +#: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" msgstr "Унищожаване" -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:542 db_structure.php:543 libraries/common.lib.php:1658 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:104 +#: db_structure.php:84 db_structure.php:85 db_structure.php:97 +#: db_structure.php:98 db_structure.php:110 db_structure.php:111 +#: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 +#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 msgid "Empty" msgstr "Изчистване" -#: db_structure.php:315 libraries/tbl_links.inc.php:99 +#: db_structure.php:301 libraries/tbl_links.inc.php:98 #, php-format msgid "Table %s has been emptied" msgstr "Таблицата %s беше изчистена" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "View %s has been dropped" msgstr "Изглед %s беше изтрит" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "Table %s has been dropped" msgstr "Таблицата %s беше изтрита" -#: db_structure.php:332 +#: db_structure.php:318 msgid "Tracking is active." msgstr "" -#: db_structure.php:334 +#: db_structure.php:320 msgid "Tracking is not active." msgstr "" -#: db_structure.php:419 libraries/display_tbl.lib.php:1943 +#: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -#: db_structure.php:433 db_structure.php:447 libraries/header.inc.php:125 -#: libraries/tbl_info.inc.php:65 tbl_structure.php:184 test/theme.php:73 +#: db_structure.php:419 db_structure.php:433 libraries/header.inc.php:125 +#: libraries/tbl_info.inc.php:60 tbl_structure.php:183 test/theme.php:73 msgid "View" msgstr "Изглед" -#: db_structure.php:484 libraries/db_structure.lib.php:40 -#: libraries/server_links.inc.php:69 server_replication.php:32 -#: server_replication.php:163 server_status.php:368 +#: db_structure.php:470 libraries/db_structure.lib.php:40 +#: libraries/server_links.inc.php:69 server_replication.php:31 +#: server_replication.php:162 server_status.php:368 msgid "Replication" msgstr "Репликация" -#: db_structure.php:488 +#: db_structure.php:474 msgid "Sum" msgstr "Сума" -#: db_structure.php:495 libraries/StorageEngine.class.php:349 +#: db_structure.php:481 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s е хранилището на данни по подразбиране на този MySQL сървър." -#: db_structure.php:523 db_structure.php:540 db_structure.php:541 -#: libraries/display_tbl.lib.php:2080 libraries/display_tbl.lib.php:2085 -#: libraries/mult_submits.inc.php:15 server_databases.php:345 -#: server_databases.php:350 server_privileges.php:1588 tbl_structure.php:454 -#: tbl_structure.php:463 +#: db_structure.php:509 db_structure.php:526 db_structure.php:527 +#: libraries/display_tbl.lib.php:2039 libraries/display_tbl.lib.php:2044 +#: libraries/mult_submits.inc.php:15 server_databases.php:343 +#: server_databases.php:348 server_privileges.php:1592 tbl_structure.php:452 +#: tbl_structure.php:461 msgid "With selected:" msgstr "Когато има отметка:" -#: db_structure.php:526 libraries/display_tbl.lib.php:2075 -#: server_databases.php:347 server_privileges.php:569 -#: server_privileges.php:1591 tbl_structure.php:457 +#: db_structure.php:512 libraries/display_tbl.lib.php:2034 +#: server_databases.php:345 server_privileges.php:568 +#: server_privileges.php:1595 tbl_structure.php:455 msgid "Check All" msgstr "Маркиране на всичко" -#: db_structure.php:530 libraries/display_tbl.lib.php:2076 -#: libraries/replication_gui.lib.php:35 server_databases.php:349 -#: server_privileges.php:572 server_privileges.php:1595 tbl_structure.php:461 +#: db_structure.php:516 libraries/display_tbl.lib.php:2035 +#: libraries/replication_gui.lib.php:35 server_databases.php:347 +#: server_privileges.php:571 server_privileges.php:1599 tbl_structure.php:459 msgid "Uncheck All" msgstr "Размаркиране на всичко" -#: db_structure.php:535 +#: db_structure.php:521 msgid "Check tables having overhead" msgstr "Маркиране на таблиците със загубено място" -#: db_structure.php:546 db_structure.php:547 db_structure.php:598 -#: libraries/display_tbl.lib.php:2179 libraries/mult_submits.inc.php:27 -#: tbl_structure.php:491 tbl_structure.php:493 +#: db_structure.php:532 db_structure.php:533 db_structure.php:584 +#: libraries/display_tbl.lib.php:2138 libraries/mult_submits.inc.php:27 +#: tbl_structure.php:489 tbl_structure.php:491 msgid "Print view" msgstr "Преглед за печат" -#: db_structure.php:548 db_structure.php:549 libraries/mult_submits.inc.php:41 -#: tbl_operations.php:580 +#: db_structure.php:534 db_structure.php:535 libraries/mult_submits.inc.php:41 +#: tbl_operations.php:578 msgid "Check table" msgstr "Проверка на таблицата" -#: db_structure.php:550 db_structure.php:551 libraries/mult_submits.inc.php:46 -#: tbl_operations.php:620 tbl_structure.php:708 tbl_structure.php:710 +#: db_structure.php:536 db_structure.php:537 libraries/mult_submits.inc.php:46 +#: tbl_operations.php:618 tbl_structure.php:706 tbl_structure.php:708 msgid "Optimize table" msgstr "Оптимизация на таблицата" -#: db_structure.php:552 db_structure.php:553 libraries/mult_submits.inc.php:51 -#: tbl_operations.php:610 +#: db_structure.php:538 db_structure.php:539 libraries/mult_submits.inc.php:51 +#: tbl_operations.php:608 msgid "Repair table" msgstr "Поправяне на таблицата" -#: db_structure.php:554 db_structure.php:555 libraries/mult_submits.inc.php:56 -#: tbl_operations.php:600 +#: db_structure.php:540 db_structure.php:541 libraries/mult_submits.inc.php:56 +#: tbl_operations.php:598 msgid "Analyze table" msgstr "Анализиране на таблицата" -#: db_structure.php:556 db_structure.php:557 libraries/db_links.inc.php:70 -#: libraries/display_export.lib.php:82 libraries/display_tbl.lib.php:2093 -#: libraries/display_tbl.lib.php:2224 libraries/mult_submits.inc.php:61 -#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:81 -#: pmd_pdf.php:83 pmd_pdf.php:108 server_privileges.php:1372 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 +#: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 +#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 +#: pmd_pdf.php:81 pmd_pdf.php:106 server_privileges.php:1376 #: setup/frames/menu.inc.php:22 tbl_row_action.php:58 msgid "Export" msgstr "Експортиране" -#: db_structure.php:605 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:591 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "Речник на данните" -#: db_tracking.php:65 +#: db_tracking.php:61 msgid "Tracked tables" msgstr "" -#: db_tracking.php:70 libraries/export/htmlword.php:85 +#: db_tracking.php:66 libraries/export/htmlword.php:85 #: libraries/export/latex.php:152 libraries/export/odt.php:112 #: libraries/export/sql.php:339 libraries/export/texytext.php:84 #: libraries/export/xml.php:254 libraries/header.inc.php:105 -#: libraries/header_printview.inc.php:57 server_databases.php:168 -#: server_privileges.php:1652 server_privileges.php:1713 -#: server_privileges.php:1971 server_processlist.php:55 -#: server_synchronize.php:1178 server_synchronize.php:1182 -#: tbl_tracking.php:590 test/theme.php:64 +#: libraries/header_printview.inc.php:57 server_databases.php:166 +#: server_privileges.php:1656 server_privileges.php:1717 +#: server_privileges.php:1975 server_processlist.php:55 +#: server_synchronize.php:1177 server_synchronize.php:1181 +#: tbl_tracking.php:585 test/theme.php:64 msgid "Database" msgstr "БД" -#: db_tracking.php:72 +#: db_tracking.php:68 msgid "Last version" msgstr "" -#: db_tracking.php:73 tbl_tracking.php:593 +#: db_tracking.php:69 tbl_tracking.php:588 #, fuzzy msgid "Created" msgstr "Създай" -#: db_tracking.php:74 tbl_tracking.php:594 +#: db_tracking.php:70 tbl_tracking.php:589 msgid "Updated" msgstr "" -#: db_tracking.php:76 libraries/Index.class.php:439 -#: libraries/db_structure.lib.php:44 server_databases.php:202 -#: server_privileges.php:1534 server_privileges.php:1717 -#: server_privileges.php:2065 tbl_structure.php:186 +#: db_tracking.php:71 libraries/common.lib.php:1361 +#: libraries/server_links.inc.php:48 server_processlist.php:58 +#: tbl_tracking.php:590 test/theme.php:100 +msgid "Status" +msgstr "Състояние" + +#: db_tracking.php:72 libraries/Index.class.php:439 +#: libraries/db_structure.lib.php:44 server_databases.php:200 +#: server_privileges.php:1538 server_privileges.php:1721 +#: server_privileges.php:2069 tbl_structure.php:185 msgid "Action" msgstr "Действие" -#: db_tracking.php:87 db_tracking.php:119 +#: db_tracking.php:83 db_tracking.php:115 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:105 tbl_tracking.php:547 tbl_tracking.php:605 -#: tbl_tracking.php:612 +#: db_tracking.php:101 tbl_tracking.php:542 tbl_tracking.php:600 +#: tbl_tracking.php:607 msgid "active" msgstr "" -#: db_tracking.php:107 tbl_tracking.php:549 tbl_tracking.php:607 -#: tbl_tracking.php:609 +#: db_tracking.php:103 tbl_tracking.php:544 tbl_tracking.php:602 +#: tbl_tracking.php:604 msgid "not active" msgstr "" -#: db_tracking.php:120 +#: db_tracking.php:116 #, fuzzy msgid "Versions" msgstr "Персийски" -#: db_tracking.php:121 tbl_tracking.php:378 tbl_tracking.php:623 +#: db_tracking.php:117 tbl_tracking.php:373 tbl_tracking.php:618 msgid "Tracking report" msgstr "" -#: db_tracking.php:122 tbl_tracking.php:250 tbl_tracking.php:623 +#: db_tracking.php:118 tbl_tracking.php:245 tbl_tracking.php:618 #, fuzzy msgid "Structure snapshot" msgstr "Само структурата" -#: db_tracking.php:151 +#: db_tracking.php:147 msgid "Untracked tables" msgstr "" -#: db_tracking.php:171 db_tracking.php:173 tbl_structure.php:527 -#: tbl_structure.php:529 +#: db_tracking.php:167 db_tracking.php:169 tbl_structure.php:525 +#: tbl_structure.php:527 #, fuzzy msgid "Track table" msgstr "Проверка на таблицата" -#: db_tracking.php:199 +#: db_tracking.php:195 #, fuzzy msgid "Database Log" msgstr "БД" @@ -802,12 +779,12 @@ msgstr "БД" msgid "Selected export type has to be saved in file!" msgstr "" -#: export.php:153 export.php:178 export.php:620 +#: export.php:152 export.php:177 export.php:615 #, php-format msgid "Insufficient space to save the file %s." msgstr "Недостатъчно свободно пространство за записване на файла %s." -#: export.php:287 +#: export.php:286 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -815,17 +792,17 @@ msgstr "" "Файлът %s вече съществува на сървъра, сменете името на файла или включете " "опцията за препокриване." -#: export.php:291 export.php:295 +#: export.php:290 export.php:294 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Уеб сървъра няма права за запис на файла %s." -#: export.php:622 +#: export.php:617 #, php-format msgid "Dump has been saved to file %s." msgstr "Схемата(дъмп) беше записана във файл %s." -#: import.php:59 +#: import.php:58 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -834,78 +811,78 @@ msgstr "" "Вероятно сте направили опит да качите твърде голям файл. Моля, обърнете се " "към %sdдокументацията%s за да намерите начин да избегнете това ограничение." -#: import.php:278 import.php:331 libraries/File.class.php:840 -#: libraries/File.class.php:950 +#: import.php:277 import.php:330 libraries/File.class.php:566 +#: libraries/File.class.php:676 msgid "File could not be read" msgstr "Файлът не може да бъде прочетен" -#: import.php:286 import.php:295 import.php:314 import.php:323 -#: libraries/File.class.php:1020 libraries/File.class.php:1028 -#: libraries/File.class.php:1044 libraries/File.class.php:1052 +#: import.php:285 import.php:294 import.php:313 import.php:322 +#: libraries/File.class.php:746 libraries/File.class.php:754 +#: libraries/File.class.php:770 libraries/File.class.php:778 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." msgstr "" -#: import.php:336 +#: import.php:335 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " "[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." msgstr "" -#: import.php:371 libraries/display_import.lib.php:23 +#: import.php:370 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "" "Plugin-ите за импортиране не могат да бъдат заредени, моля проверете " "инсталацията на phpMyAdmin!" -#: import.php:396 +#: import.php:395 msgid "The bookmark has been deleted." msgstr "Показалецът беше изтрит." -#: import.php:400 +#: import.php:399 msgid "Showing bookmark" msgstr "" -#: import.php:402 sql.php:625 +#: import.php:401 sql.php:618 #, php-format msgid "Bookmark %s created" msgstr "Показалец %s беше създаден успешно" -#: import.php:408 import.php:414 +#: import.php:407 import.php:413 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Импортирането приключи успещно. Бяха изпълнени %d заявки." -#: import.php:423 +#: import.php:422 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: import.php:425 +#: import.php:424 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." msgstr "" -#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:240 +#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:239 #: user_password.php:110 msgid "Back" msgstr "Назад" -#: index.php:188 +#: index.php:183 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" "phpMyAdmin е по дружелюбен ако използвате браузър, който поддържа frames." -#: js/messages.php:25 server_synchronize.php:344 server_synchronize.php:356 -#: server_synchronize.php:372 server_synchronize.php:379 -#: server_synchronize.php:738 server_synchronize.php:766 -#: server_synchronize.php:794 server_synchronize.php:806 +#: js/messages.php:25 server_synchronize.php:343 server_synchronize.php:355 +#: server_synchronize.php:371 server_synchronize.php:378 +#: server_synchronize.php:737 server_synchronize.php:765 +#: server_synchronize.php:793 server_synchronize.php:805 msgid "Click to select" msgstr "" @@ -913,15 +890,15 @@ msgstr "" msgid "Click to unselect" msgstr "" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:88 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:87 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" заявката е забранена." -#: js/messages.php:30 libraries/mult_submits.inc.php:257 sql.php:187 +#: js/messages.php:30 libraries/mult_submits.inc.php:256 sql.php:186 msgid "Do you really want to " msgstr "Действително ли желаете да изпълните заявката" -#: js/messages.php:31 libraries/mult_submits.inc.php:257 sql.php:171 +#: js/messages.php:31 libraries/mult_submits.inc.php:256 sql.php:170 msgid "You are about to DESTROY a complete database!" msgstr "Вие ще УНИЩОЖИТЕ цялата база от данни!" @@ -950,11 +927,11 @@ msgstr "Името на хоста е празно!" msgid "The user name is empty!" msgstr "Потребителското име е празно!" -#: js/messages.php:44 server_privileges.php:1228 user_password.php:65 +#: js/messages.php:44 server_privileges.php:1229 user_password.php:65 msgid "The password is empty!" msgstr "Паролата е празна!" -#: js/messages.php:45 server_privileges.php:1226 user_password.php:68 +#: js/messages.php:45 server_privileges.php:1227 user_password.php:68 msgid "The passwords aren't the same!" msgstr "Паролата не е същата!" @@ -962,29 +939,29 @@ msgstr "Паролата не е същата!" msgid "Cancel" msgstr "" -#: js/messages.php:52 pmd_save_pos.php:53 +#: js/messages.php:52 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "Промените бяха съхранени" -#: js/messages.php:53 pmd_relation_upd.php:48 +#: js/messages.php:53 pmd_relation_upd.php:47 #, fuzzy msgid "Relation deleted" msgstr "Преглед на релациите" -#: js/messages.php:54 pmd_relation_new.php:63 +#: js/messages.php:54 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:55 pmd_relation_new.php:85 +#: js/messages.php:55 pmd_relation_new.php:84 #, fuzzy msgid "Internal relation added" msgstr "Вътрешни релации" -#: js/messages.php:56 pmd_relation_new.php:62 pmd_relation_new.php:87 +#: js/messages.php:56 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:57 pmd_relation_new.php:30 +#: js/messages.php:57 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "" @@ -992,13 +969,13 @@ msgstr "" msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:59 libraries/relation.lib.php:94 -#: libraries/relation.lib.php:106 +#: js/messages.php:59 libraries/relation.lib.php:89 +#: libraries/relation.lib.php:101 msgid "General relation features" msgstr "Общи възможности на релациите" -#: js/messages.php:59 libraries/relation.lib.php:88 -#: libraries/relation.lib.php:95 +#: js/messages.php:59 libraries/relation.lib.php:83 +#: libraries/relation.lib.php:90 msgid "Disabled" msgstr "Забранено" @@ -1014,7 +991,7 @@ msgstr "" msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:547 +#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" @@ -1045,10 +1022,10 @@ msgid "Prev" msgstr "Предишен" #. l10n: Display text for next month link in calendar -#: js/messages.php:81 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:337 -#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:422 -#: tbl_structure.php:800 +#: js/messages.php:81 libraries/common.lib.php:2358 +#: libraries/common.lib.php:2361 libraries/display_tbl.lib.php:336 +#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 +#: tbl_structure.php:798 msgid "Next" msgstr "Следващ" @@ -1122,27 +1099,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1562 +#: js/messages.php:101 libraries/common.lib.php:1566 msgid "Jan" msgstr "януари" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1564 +#: js/messages.php:103 libraries/common.lib.php:1568 msgid "Feb" msgstr "февруари" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1566 +#: js/messages.php:105 libraries/common.lib.php:1570 msgid "Mar" msgstr "март" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1568 +#: js/messages.php:107 libraries/common.lib.php:1572 msgid "Apr" msgstr "април" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1570 +#: js/messages.php:109 libraries/common.lib.php:1574 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1150,37 +1127,37 @@ msgid "May" msgstr "май" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1572 +#: js/messages.php:111 libraries/common.lib.php:1576 msgid "Jun" msgstr "юни" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1574 +#: js/messages.php:113 libraries/common.lib.php:1578 msgid "Jul" msgstr "юли" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1576 +#: js/messages.php:115 libraries/common.lib.php:1580 msgid "Aug" msgstr "август" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1578 +#: js/messages.php:117 libraries/common.lib.php:1582 msgid "Sep" msgstr "септември" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1580 +#: js/messages.php:119 libraries/common.lib.php:1584 msgid "Oct" msgstr "октомври" #. l10n: Short month name -#: js/messages.php:121 libraries/common.lib.php:1582 +#: js/messages.php:121 libraries/common.lib.php:1586 msgid "Nov" msgstr "ноември" #. l10n: Short month name -#: js/messages.php:123 libraries/common.lib.php:1584 +#: js/messages.php:123 libraries/common.lib.php:1588 msgid "Dec" msgstr "декември" @@ -1221,37 +1198,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1587 +#: js/messages.php:136 libraries/common.lib.php:1591 msgid "Sun" msgstr "нд" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1589 +#: js/messages.php:138 libraries/common.lib.php:1593 msgid "Mon" msgstr "пн" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1591 +#: js/messages.php:140 libraries/common.lib.php:1595 msgid "Tue" msgstr "вт" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1593 +#: js/messages.php:142 libraries/common.lib.php:1597 msgid "Wed" msgstr "ср" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1595 +#: js/messages.php:144 libraries/common.lib.php:1599 msgid "Thu" msgstr "чт" #. l10n: Short week day name -#: js/messages.php:146 libraries/common.lib.php:1597 +#: js/messages.php:146 libraries/common.lib.php:1601 msgid "Fri" msgstr "пт" #. l10n: Short week day name -#: js/messages.php:148 libraries/common.lib.php:1599 +#: js/messages.php:148 libraries/common.lib.php:1603 msgid "Sat" msgstr "сб" @@ -1329,76 +1306,75 @@ msgstr "на секунда" msgid "Font size" msgstr "Размер на шрифта" -#: libraries/File.class.php:336 libraries/File.class.php:424 -#: libraries/File.class.php:561 libraries/File.class.php:700 -msgid "Unknown error in file upload." -msgstr "" - -#: libraries/File.class.php:406 +#: libraries/File.class.php:315 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:409 +#: libraries/File.class.php:318 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:412 +#: libraries/File.class.php:321 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:415 +#: libraries/File.class.php:324 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:418 +#: libraries/File.class.php:327 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:421 +#: libraries/File.class.php:330 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:898 +#: libraries/File.class.php:333 +msgid "Unknown error in file upload." +msgstr "" + +#: libraries/File.class.php:624 #, 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:427 tbl_relation.php:528 +#: libraries/Index.class.php:427 tbl_relation.php:526 msgid "No index defined!" msgstr "Не е дефиниран индекс!" -#: libraries/Index.class.php:432 server_databases.php:131 tbl_tracking.php:315 +#: libraries/Index.class.php:432 server_databases.php:129 tbl_tracking.php:310 msgid "Indexes" msgstr "Индекси" #: libraries/Index.class.php:443 libraries/mult_submits.inc.php:102 -#: libraries/tbl_properties.inc.php:518 tbl_structure.php:32 -#: tbl_structure.php:154 tbl_structure.php:158 tbl_structure.php:473 -#: tbl_tracking.php:321 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:31 +#: tbl_structure.php:153 tbl_structure.php:157 tbl_structure.php:471 +#: tbl_tracking.php:316 msgid "Unique" msgstr "Уникално" -#: libraries/Index.class.php:444 tbl_tracking.php:322 +#: libraries/Index.class.php:444 tbl_tracking.php:317 msgid "Packed" msgstr "" -#: libraries/Index.class.php:446 tbl_tracking.php:324 +#: libraries/Index.class.php:446 tbl_tracking.php:319 msgid "Cardinality" msgstr "Кардиналност" -#: libraries/Index.class.php:449 tbl_tracking.php:278 tbl_tracking.php:327 +#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322 #, fuzzy msgid "Comment" msgstr "Коментари" #: libraries/Index.class.php:465 libraries/common.lib.php:609 -#: libraries/common.lib.php:1198 libraries/display_tbl.lib.php:1116 +#: libraries/common.lib.php:1191 libraries/display_tbl.lib.php:1115 #: libraries/import.lib.php:1119 libraries/import.lib.php:1143 -#: pdf_pages.php:284 setup/frames/index.inc.php:124 +#: pdf_pages.php:283 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:349 tbl_row_action.php:68 msgid "Edit" msgstr "Редактиране" @@ -1420,15 +1396,15 @@ msgid "" msgstr "" #: libraries/List_Database.class.php:430 libraries/server_links.inc.php:40 -#: server_databases.php:87 server_privileges.php:1652 +#: server_databases.php:85 server_privileges.php:1656 #: setup/lib/messages.inc.php:107 test/theme.php:92 msgid "Databases" msgstr "Бази от данни" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:259 libraries/import.lib.php:134 pdf_schema.php:31 -#: pdf_schema.php:231 tbl_change.php:1023 tbl_operations.php:212 -#: tbl_relation.php:289 view_operations.php:61 +#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 +#: tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Грешка" @@ -1455,40 +1431,40 @@ msgid_plural "%1$d rows inserted." msgstr[0] "Няма върнати редове" msgstr[1] "Няма върнати редове" -#: libraries/StorageEngine.class.php:196 +#: libraries/StorageEngine.class.php:194 msgid "" "There is no detailed status information available for this storage engine." msgstr "Няма детайлна информация за състоянието на това хранилище на данни." -#: libraries/StorageEngine.class.php:352 +#: libraries/StorageEngine.class.php:354 #, php-format msgid "%s is available on this MySQL server." msgstr "%s е разрешен на този MySQL сървър." -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:357 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s е изключен за този MySQL сървър." -#: libraries/StorageEngine.class.php:359 +#: libraries/StorageEngine.class.php:361 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "Този MySQL сървър не поддържа хранилището на данни %s." -#: libraries/Table.class.php:1018 +#: libraries/Table.class.php:1017 msgid "Invalid database" msgstr "Невалидна база от данни" -#: libraries/Table.class.php:1032 tbl_get_field.php:25 +#: libraries/Table.class.php:1031 tbl_get_field.php:25 msgid "Invalid table name" msgstr "Невалидно име на таблица" -#: libraries/Table.class.php:1047 +#: libraries/Table.class.php:1046 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "Грешка при преименуване на таблица %1$s в %2$s" -#: libraries/Table.class.php:1131 +#: libraries/Table.class.php:1129 #, php-format msgid "Table %s has been renamed to %s" msgstr "Таблица %s беше преименувана на %s" @@ -1506,22 +1482,22 @@ msgstr "" msgid "take it" msgstr "" -#: libraries/Theme_Manager.class.php:114 +#: libraries/Theme_Manager.class.php:109 #, php-format msgid "Default theme %s not found!" msgstr "Темата по подразбиране %s не е намерена!" -#: libraries/Theme_Manager.class.php:152 +#: libraries/Theme_Manager.class.php:147 #, php-format msgid "Theme %s not found!" msgstr "Тема %s не е намерена!" -#: libraries/Theme_Manager.class.php:220 +#: libraries/Theme_Manager.class.php:215 #, php-format msgid "Theme path not found for theme %s!" msgstr "Не е открит пътя на тема %s!" -#: libraries/Theme_Manager.class.php:296 test/theme.php:160 themes.php:20 +#: libraries/Theme_Manager.class.php:291 test/theme.php:160 themes.php:20 #: themes.php:40 msgid "Theme / Style" msgstr "Тема / Стил" @@ -1632,19 +1608,19 @@ msgstr "" msgid "Authenticating..." msgstr "" -#: libraries/blobstreaming.lib.php:689 +#: libraries/blobstreaming.lib.php:340 msgid "View image" msgstr "" -#: libraries/blobstreaming.lib.php:693 +#: libraries/blobstreaming.lib.php:344 msgid "Play audio" msgstr "" -#: libraries/blobstreaming.lib.php:698 +#: libraries/blobstreaming.lib.php:349 msgid "View video" msgstr "" -#: libraries/blobstreaming.lib.php:702 +#: libraries/blobstreaming.lib.php:353 msgid "Download file" msgstr "" @@ -1698,7 +1674,7 @@ msgstr "Сървър" msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:909 +#: libraries/common.inc.php:908 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Трябва да ъпгрейднете към %s %s или по-късно." @@ -1725,7 +1701,8 @@ msgstr "Изпратени" #: libraries/common.lib.php:425 libraries/common.lib.php:427 #: libraries/common.lib.php:429 libraries/common.lib.php:445 #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 -#: libraries/display_export.lib.php:163 libraries/relation.lib.php:84 +#: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 +#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 #: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" @@ -1740,148 +1717,148 @@ msgstr "SQL заявка" msgid "MySQL said: " msgstr "MySQL отговори: " -#: libraries/common.lib.php:1136 +#: libraries/common.lib.php:1129 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1174 setup/lib/messages.inc.php:350 +#: libraries/common.lib.php:1167 setup/lib/messages.inc.php:350 msgid "Explain SQL" msgstr "Explain SQL" -#: libraries/common.lib.php:1177 +#: libraries/common.lib.php:1170 msgid "Skip Explain SQL" msgstr "Пропусни Explain SQL" -#: libraries/common.lib.php:1211 +#: libraries/common.lib.php:1204 msgid "Without PHP Code" msgstr "без PHP код" -#: libraries/common.lib.php:1214 setup/lib/messages.inc.php:352 +#: libraries/common.lib.php:1207 setup/lib/messages.inc.php:352 msgid "Create PHP Code" msgstr "Създаване на PHP код" -#: libraries/common.lib.php:1232 server_status.php:451 +#: libraries/common.lib.php:1225 server_status.php:451 #: setup/lib/messages.inc.php:351 msgid "Refresh" msgstr "Презареждане" -#: libraries/common.lib.php:1241 +#: libraries/common.lib.php:1234 msgid "Skip Validate SQL" msgstr "Пропусни Validate SQL" -#: libraries/common.lib.php:1244 setup/lib/messages.inc.php:353 +#: libraries/common.lib.php:1237 setup/lib/messages.inc.php:353 msgid "Validate SQL" msgstr "Валидирай SQL-а" -#: libraries/common.lib.php:1283 +#: libraries/common.lib.php:1287 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1285 +#: libraries/common.lib.php:1289 #, fuzzy #| msgid "Engines" msgid "Inline" msgstr "Хранилища" -#: libraries/common.lib.php:1339 libraries/common.lib.php:1354 +#: libraries/common.lib.php:1343 libraries/common.lib.php:1358 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1358 libraries/tbl_triggers.lib.php:27 +#: libraries/common.lib.php:1362 libraries/tbl_triggers.lib.php:27 #: server_processlist.php:57 msgid "Time" msgstr "Време" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "B" msgstr "байта" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "KiB" msgstr "КБ" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "MiB" msgstr "МБ" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "GiB" msgstr "ГБ" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "TiB" msgstr "ТБ" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "PiB" msgstr "ПБ" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "EiB" msgstr "ЕБ" #. l10n: Thousands separator -#: libraries/common.lib.php:1424 +#: libraries/common.lib.php:1428 msgid "," msgstr "," #. l10n: Decimal separator -#: libraries/common.lib.php:1426 +#: libraries/common.lib.php:1430 msgid "." msgstr "." #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1603 +#: libraries/common.lib.php:1607 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%e %B %Y в %H:%M" -#: libraries/common.lib.php:1909 +#: libraries/common.lib.php:1913 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s дена, %s часа, %s минути и %s секунди" -#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 -#: libraries/display_tbl.lib.php:289 server_status.php:718 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 +#: libraries/display_tbl.lib.php:288 server_status.php:718 msgid "Begin" msgstr "Начало" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 -#: libraries/display_tbl.lib.php:290 server_binlog.php:154 +#: libraries/common.lib.php:2328 libraries/common.lib.php:2331 +#: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "Предишен" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 -#: libraries/display_tbl.lib.php:352 +#: libraries/common.lib.php:2359 libraries/common.lib.php:2362 +#: libraries/display_tbl.lib.php:351 msgid "End" msgstr "Край" -#: libraries/common.lib.php:2429 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "Скочи към база от данни "%s"." -#: libraries/common.lib.php:2448 +#: libraries/common.lib.php:2453 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2828 libraries/common.lib.php:2835 -#: libraries/db_links.inc.php:67 libraries/export/sql.php:24 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 +#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 -#: libraries/tbl_links.inc.php:59 querywindow.php:89 test/theme.php:96 +#: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2837 libraries/db_links.inc.php:103 -#: libraries/tbl_links.inc.php:94 libraries/tbl_links.inc.php:116 -#: view_operations.php:88 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: view_operations.php:87 msgid "Operations" msgstr "Операции" -#: libraries/core.lib.php:282 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1897,38 +1874,38 @@ msgstr "" msgid "Name" msgstr "Име" -#: libraries/db_links.inc.php:44 +#: libraries/db_links.inc.php:43 #, php-format msgid "Database %s has been dropped." msgstr "Базата данни %s беше изтрита." -#: libraries/db_links.inc.php:56 libraries/db_links.inc.php:57 -#: libraries/db_links.inc.php:58 +#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 +#: libraries/db_links.inc.php:57 msgid "Database seems to be empty!" msgstr "" -#: libraries/db_links.inc.php:80 libraries/relation.lib.php:142 -#: libraries/tbl_links.inc.php:68 +#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:85 +#: libraries/db_links.inc.php:84 msgid "Query" msgstr "Запитване по пример" -#: libraries/db_links.inc.php:90 libraries/relation.lib.php:138 +#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:97 libraries/server_links.inc.php:87 -#: libraries/tbl_links.inc.php:90 pmd_pdf.php:83 pmd_pdf.php:109 +#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Импортиране" -#: libraries/db_links.inc.php:110 libraries/server_links.inc.php:65 -#: server_privileges.php:111 server_privileges.php:1714 -#: server_privileges.php:2063 test/theme.php:116 +#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: server_privileges.php:110 server_privileges.php:1718 +#: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" msgstr "Привилегии" @@ -1940,14 +1917,14 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1847 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1806 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "Може да има приблизителна стойност. Виж FAQ 3.11" -#: libraries/db_structure.lib.php:60 server_databases.php:141 -#: tbl_printview.php:334 tbl_structure.php:681 +#: libraries/db_structure.lib.php:60 server_databases.php:139 +#: tbl_printview.php:333 tbl_structure.php:679 msgid "Overhead" msgstr "Загубено място" @@ -1964,7 +1941,7 @@ msgstr "Няма отговор от сървъра" msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "" -#: libraries/dbi/mysql.dbi.lib.php:358 tbl_structure.php:607 +#: libraries/dbi/mysql.dbi.lib.php:358 tbl_structure.php:605 msgid "Details..." msgstr "" @@ -1974,22 +1951,22 @@ msgid "Change password" msgstr "Смяна на паролата" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:807 +#: libraries/replication_gui.lib.php:347 server_privileges.php:806 msgid "No Password" msgstr "Без парола" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1530 server_synchronize.php:1174 +#: libraries/replication_gui.lib.php:351 server_privileges.php:795 +#: server_privileges.php:799 server_privileges.php:810 +#: server_privileges.php:1534 server_synchronize.php:1173 msgid "Password" msgstr "Парола" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:815 server_privileges.php:818 +#: server_privileges.php:814 server_privileges.php:817 msgid "Re-type" msgstr "Отново" @@ -2012,8 +1989,8 @@ msgstr "Създаване на нова БД" msgid "Create" msgstr "Създай" -#: libraries/display_create_database.lib.php:39 server_privileges.php:113 -#: server_privileges.php:1419 server_replication.php:34 +#: libraries/display_create_database.lib.php:39 server_privileges.php:112 +#: server_privileges.php:1423 server_replication.php:33 msgid "No Privileges" msgstr "Няма привилегии" @@ -2030,51 +2007,51 @@ msgstr "Създаване на нова таблица в БД %s" msgid "Number of columns" msgstr "Брой колони" -#: libraries/display_export.lib.php:41 +#: libraries/display_export.lib.php:35 msgid "Could not load export plugins, please check your installation!" msgstr "" "Приставките за експортиране не могат да бъдат заредени, моля проверете " "инсталацията!" -#: libraries/display_export.lib.php:106 +#: libraries/display_export.lib.php:100 #, php-format msgid "Dump %s row(s) starting at row # %s" msgstr "Дъмп-ни %s ред(а) като започнеш от ред # %s." -#: libraries/display_export.lib.php:114 +#: libraries/display_export.lib.php:108 msgid "Dump all rows" msgstr "Дъмп-ни всички редове" -#: libraries/display_export.lib.php:124 setup/lib/messages.inc.php:79 +#: libraries/display_export.lib.php:118 setup/lib/messages.inc.php:79 msgid "Save as file" msgstr "Изпращане" -#: libraries/display_export.lib.php:133 +#: libraries/display_export.lib.php:127 #, php-format msgid "Save on server in %s directory" msgstr "Записване на сървъра в директория %s" -#: libraries/display_export.lib.php:141 setup/lib/messages.inc.php:87 +#: libraries/display_export.lib.php:135 setup/lib/messages.inc.php:87 msgid "Overwrite existing file(s)" msgstr "Препокриване на съществуващите файлове" -#: libraries/display_export.lib.php:147 +#: libraries/display_export.lib.php:141 msgid "File name template" msgstr "Шаблон на файловото име" -#: libraries/display_export.lib.php:151 +#: libraries/display_export.lib.php:145 msgid "server name" msgstr "име на сървъра" -#: libraries/display_export.lib.php:154 +#: libraries/display_export.lib.php:148 msgid "database name" msgstr "име на базата от данни" -#: libraries/display_export.lib.php:157 +#: libraries/display_export.lib.php:151 msgid "table name" msgstr "име на таблицата" -#: libraries/display_export.lib.php:161 +#: libraries/display_export.lib.php:155 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2082,39 +2059,39 @@ msgid "" "%3$s. Other text will be kept as is." msgstr "" -#: libraries/display_export.lib.php:202 +#: libraries/display_export.lib.php:196 msgid "remember template" msgstr "запомняне на шаблона" -#: libraries/display_export.lib.php:210 libraries/display_import.lib.php:177 +#: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 #: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 msgid "Character set of the file:" msgstr "Набор от знаци на файла:" -#: libraries/display_export.lib.php:235 setup/lib/messages.inc.php:81 +#: libraries/display_export.lib.php:229 setup/lib/messages.inc.php:81 msgid "Compression" msgstr "Компресия" -#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:196 -#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:529 -#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:574 -#: server_privileges.php:1867 server_processlist.php:74 +#: libraries/display_export.lib.php:234 libraries/display_import.lib.php:196 +#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:528 +#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:573 +#: server_privileges.php:1871 server_processlist.php:74 msgid "None" msgstr "Няма" -#: libraries/display_export.lib.php:247 +#: libraries/display_export.lib.php:241 msgid "\"zipped\"" msgstr "\"zip-нато\"" -#: libraries/display_export.lib.php:253 +#: libraries/display_export.lib.php:247 msgid "\"gzipped\"" msgstr "\"gzip-нато\"" -#: libraries/display_export.lib.php:259 +#: libraries/display_export.lib.php:253 msgid "\"bzipped\"" msgstr "\"bzip-нато\"" -#: libraries/display_export.lib.php:274 libraries/export/sql.php:42 +#: libraries/display_export.lib.php:268 libraries/export/sql.php:42 #: libraries/import/sql.php:31 msgid "SQL compatibility mode" msgstr "Режим на съвместимост на SQL" @@ -2149,12 +2126,12 @@ msgid "File uploads are not allowed on this server." msgstr "На този сървър не е позволени качване на файлове." #: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 -#: tbl_change.php:1024 +#: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "Директорията която сте указали за upload не може да бъде достигната" #: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 -#: tbl_change.php:1027 +#: tbl_change.php:925 msgid "web server upload directory" msgstr "директорията за upload на уеб сървъра" @@ -2235,43 +2212,43 @@ msgstr "Размер на хартията" msgid "Language" msgstr "Език" -#: libraries/display_tbl.lib.php:303 +#: libraries/display_tbl.lib.php:302 #, php-format msgid "%d is not valid row number." msgstr "%d не е валиден номер на ред." -#: libraries/display_tbl.lib.php:309 +#: libraries/display_tbl.lib.php:308 #, fuzzy #| msgid "row(s) starting from record #" msgid "row(s) starting from row #" msgstr "реда започвайки от" -#: libraries/display_tbl.lib.php:315 +#: libraries/display_tbl.lib.php:314 msgid "horizontal" msgstr "хоризонтален" -#: libraries/display_tbl.lib.php:316 +#: libraries/display_tbl.lib.php:315 msgid "horizontal (rotated headers)" msgstr "хоризонтален (обърнати хедъри)" -#: libraries/display_tbl.lib.php:317 +#: libraries/display_tbl.lib.php:316 msgid "vertical" msgstr "вертикален" -#: libraries/display_tbl.lib.php:323 +#: libraries/display_tbl.lib.php:322 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "в %s вид и повтаряне на имената на колоните през всеки %s
                            " -#: libraries/display_tbl.lib.php:345 +#: libraries/display_tbl.lib.php:344 msgid "This operation could take a long time. Proceed anyway?" msgstr "Операцията може да продължи дълго. Да продължи ли въпреки това?" -#: libraries/display_tbl.lib.php:511 +#: libraries/display_tbl.lib.php:510 msgid "Sort by key" msgstr "Сортиране по ключ" -#: libraries/display_tbl.lib.php:554 libraries/export/codegen.php:38 +#: libraries/display_tbl.lib.php:553 libraries/export/codegen.php:38 #: libraries/export/csv.php:29 libraries/export/excel.php:34 #: libraries/export/htmlword.php:28 libraries/export/latex.php:32 #: libraries/export/mediawiki.php:21 libraries/export/ods.php:26 @@ -2281,101 +2258,101 @@ msgstr "Сортиране по ключ" #: libraries/export/xlsx.php:26 libraries/export/xml.php:23 #: libraries/export/yaml.php:27 libraries/import.lib.php:1114 #: libraries/import.lib.php:1136 libraries/import/csv.php:31 -#: libraries/import/docsql.php:33 libraries/import/ldi.php:46 +#: libraries/import/docsql.php:32 libraries/import/ldi.php:46 #: libraries/import/ods.php:30 libraries/import/sql.php:19 #: libraries/import/xls.php:25 libraries/import/xlsx.php:25 -#: libraries/import/xml.php:25 tbl_select.php:264 tbl_structure.php:752 +#: libraries/import/xml.php:25 tbl_select.php:263 tbl_structure.php:750 #, fuzzy msgid "Options" msgstr "Операции" -#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:569 +#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:568 msgid "Partial Texts" msgstr "Частични текстове" -#: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:573 +#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:572 msgid "Full Texts" msgstr "Пълни текстове" -#: libraries/display_tbl.lib.php:586 +#: libraries/display_tbl.lib.php:585 #, fuzzy msgid "Relational key" msgstr "Релационна схема" -#: libraries/display_tbl.lib.php:587 +#: libraries/display_tbl.lib.php:586 #, fuzzy #| msgid "Relational schema" msgid "Relational display column" msgstr "Релационна схема" -#: libraries/display_tbl.lib.php:594 +#: libraries/display_tbl.lib.php:593 msgid "Show binary contents" msgstr "Показване на двоичните данни" -#: libraries/display_tbl.lib.php:596 +#: libraries/display_tbl.lib.php:595 msgid "Show BLOB contents" msgstr "Показване на BLOB-данните" -#: libraries/display_tbl.lib.php:598 +#: libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "Показване на двоичните данни в шестнадесетичен вид" -#: libraries/display_tbl.lib.php:606 pmd_general.php:140 tbl_change.php:312 -#: tbl_change.php:318 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:307 +#: tbl_change.php:313 msgid "Hide" msgstr "" -#: libraries/display_tbl.lib.php:606 libraries/relation.lib.php:122 -#: libraries/tbl_properties.inc.php:143 transformation_overview.php:46 +#: libraries/display_tbl.lib.php:605 libraries/relation.lib.php:117 +#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46 msgid "Browser transformation" msgstr "Браузърна трансформация" -#: libraries/display_tbl.lib.php:1125 libraries/display_tbl.lib.php:1129 -#: libraries/display_tbl.lib.php:1131 +#: libraries/display_tbl.lib.php:1124 libraries/display_tbl.lib.php:1128 +#: libraries/display_tbl.lib.php:1130 msgid "Execute bookmarked query" msgstr "Стартиране на запазена SQL-заявка" -#: libraries/display_tbl.lib.php:1144 libraries/display_tbl.lib.php:1156 +#: libraries/display_tbl.lib.php:1143 libraries/display_tbl.lib.php:1155 msgid "The row has been deleted" msgstr "Редът беше изтрит" -#: libraries/display_tbl.lib.php:1183 libraries/display_tbl.lib.php:2055 +#: libraries/display_tbl.lib.php:1182 libraries/display_tbl.lib.php:2014 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "СТОП" -#: libraries/display_tbl.lib.php:1933 +#: libraries/display_tbl.lib.php:1892 msgid "in query" msgstr "в запитването" -#: libraries/display_tbl.lib.php:1951 +#: libraries/display_tbl.lib.php:1910 msgid "Showing rows" msgstr "Показване на записи " -#: libraries/display_tbl.lib.php:1961 +#: libraries/display_tbl.lib.php:1920 msgid "total" msgstr "Общо" -#: libraries/display_tbl.lib.php:1969 sql.php:523 +#: libraries/display_tbl.lib.php:1928 sql.php:522 #, php-format msgid "Query took %01.4f sec" msgstr "Заявката отне %01.4f секунди" -#: libraries/display_tbl.lib.php:2088 libraries/mult_submits.inc.php:112 -#: querywindow.php:115 querywindow.php:119 querywindow.php:122 -#: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:469 +#: libraries/display_tbl.lib.php:2047 libraries/mult_submits.inc.php:112 +#: querywindow.php:114 querywindow.php:118 querywindow.php:121 +#: tbl_structure.php:23 tbl_structure.php:148 tbl_structure.php:467 msgid "Change" msgstr "Променяне" -#: libraries/display_tbl.lib.php:2158 +#: libraries/display_tbl.lib.php:2117 msgid "Query results operations" msgstr "Операции с резулатата от заявката" -#: libraries/display_tbl.lib.php:2186 +#: libraries/display_tbl.lib.php:2145 msgid "Print view (with full texts)" msgstr "Преглед за печат (с пълните текстове)" -#: libraries/display_tbl.lib.php:2359 +#: libraries/display_tbl.lib.php:2318 msgid "Link not found" msgstr "Връзките не са намерени" @@ -2428,9 +2405,9 @@ msgstr "InnoDB Състояние" msgid "Buffer Pool Usage" msgstr "" -#: libraries/engines/innodb.lib.php:168 server_databases.php:136 -#: server_databases.php:304 server_status.php:524 server_status.php:585 -#: server_status.php:606 tbl_printview.php:349 tbl_structure.php:695 +#: libraries/engines/innodb.lib.php:168 server_databases.php:134 +#: server_databases.php:302 server_status.php:524 server_status.php:585 +#: server_status.php:606 tbl_printview.php:348 tbl_structure.php:693 msgid "Total" msgstr "Общо" @@ -2554,6 +2531,78 @@ msgid "" "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." msgstr "" +#: libraries/engines/pbms.lib.php:31 +msgid "Garbage Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:32 +msgid "The percentage of garbage in a repository file before it is compacted." +msgstr "" + +#: libraries/engines/pbms.lib.php:36 libraries/replication_gui.lib.php:69 +#: server_synchronize.php:1161 +#, fuzzy +msgid "Port" +msgstr "Сортиране" + +#: libraries/engines/pbms.lib.php:37 +msgid "" +"The port for the PBMS stream-based communications. Setting this value to 0 " +"will disable HTTP communication with the daemon." +msgstr "" + +#: libraries/engines/pbms.lib.php:41 +msgid "Repository Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:42 +msgid "" +"The maximum size of a BLOB repository file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:46 +msgid "Temp Blob Timeout" +msgstr "" + +#: libraries/engines/pbms.lib.php:47 +msgid "" +"The timeout, in seconds, for temporary BLOBs. Uploaded BLOB data is removed " +"after this time, unless they are referenced by a record in the database." +msgstr "" + +#: libraries/engines/pbms.lib.php:51 +msgid "Temp Log Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:52 +msgid "" +"The maximum size of a temporary BLOB log file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:56 +msgid "Max Keep Alive" +msgstr "" + +#: libraries/engines/pbms.lib.php:57 +msgid "" +"The timeout for inactive connection with the keep-alive flag set. After this " +"time the connection will be closed. The time-out is in milliseconds (1/1000)." +msgstr "" + +#: libraries/engines/pbms.lib.php:61 +msgid "Metadata Headers" +msgstr "" + +#: libraries/engines/pbms.lib.php:62 +msgid "" +"A \":\" delimited list of metadata headers to be used to initialize the " +"pbms_metadata_header table when a database is created." +msgstr "" + #: libraries/engines/pbxt.lib.php:22 msgid "Index cache size" msgstr "" @@ -2678,7 +2727,7 @@ msgid "" msgstr "" #: libraries/export/codegen.php:36 setup/lib/messages.inc.php:85 -#: tbl_printview.php:374 tbl_structure.php:736 +#: tbl_printview.php:373 tbl_structure.php:734 msgid "Format" msgstr "Формат" @@ -2749,9 +2798,9 @@ msgstr "" #: libraries/export/htmlword.php:23 libraries/export/latex.php:59 #: libraries/export/latex.php:205 libraries/export/odt.php:47 #: libraries/export/sql.php:105 libraries/export/sql.php:865 -#: libraries/export/texytext.php:27 server_databases.php:126 -#: server_privileges.php:576 server_replication.php:315 tbl_printview.php:315 -#: tbl_structure.php:664 +#: libraries/export/texytext.php:27 server_databases.php:124 +#: server_privileges.php:575 server_replication.php:314 tbl_printview.php:314 +#: tbl_structure.php:662 msgid "Data" msgstr "Данни" @@ -2802,13 +2851,13 @@ msgid "Label key" msgstr "Етикет на ключа" #: libraries/export/latex.php:46 libraries/export/odt.php:34 -#: libraries/export/sql.php:90 tbl_relation.php:398 +#: libraries/export/sql.php:90 tbl_relation.php:396 msgid "Relations" msgstr "Релации" #: libraries/export/latex.php:52 libraries/export/odt.php:40 #: libraries/export/odt.php:317 libraries/export/sql.php:94 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "MIME-тип" @@ -2816,10 +2865,10 @@ msgstr "MIME-тип" #: libraries/export/xml.php:101 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1529 server_privileges.php:2061 -#: server_processlist.php:54 server_synchronize.php:1158 +#: libraries/replication_gui.lib.php:331 server_privileges.php:730 +#: server_privileges.php:733 server_privileges.php:789 +#: server_privileges.php:1533 server_privileges.php:2065 +#: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "Хост" @@ -3011,8 +3060,8 @@ msgstr "" msgid "Export contents" msgstr "" -#: libraries/footer.inc.php:182 libraries/footer.inc.php:193 -#: libraries/footer.inc.php:196 +#: libraries/footer.inc.php:180 libraries/footer.inc.php:191 +#: libraries/footer.inc.php:194 msgid "Open new phpMyAdmin window" msgstr "Отваряне на нов прозорец с phpMyAdmin" @@ -3029,7 +3078,7 @@ msgstr "SQL резултат" msgid "Generated by" msgstr "Генерирано от" -#: libraries/import.lib.php:151 sql.php:519 tbl_change.php:180 +#: libraries/import.lib.php:151 sql.php:518 tbl_change.php:175 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL върна празен резултат (т.е. нула редове)." @@ -3087,7 +3136,7 @@ msgstr "Игнориране на дублиращите се редове" msgid "Column names in first row" msgstr "" -#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:501 +#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:500 #: view_create.php:147 msgid "Column names" msgstr "Име на колона" @@ -3113,12 +3162,12 @@ msgstr "" msgid "Invalid column count in CSV input on line %d." msgstr "" -#: libraries/import/docsql.php:28 +#: libraries/import/docsql.php:27 msgid "DocSQL" msgstr "" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 -#: server_synchronize.php:427 server_synchronize.php:870 +#: libraries/import/docsql.php:30 libraries/tbl_properties.inc.php:616 +#: server_synchronize.php:426 server_synchronize.php:869 #, fuzzy msgid "Table name" msgstr "име на таблицата" @@ -3176,26 +3225,26 @@ msgstr "Няма" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:512 -#: tbl_structure.php:28 tbl_structure.php:152 tbl_structure.php:156 -#: tbl_structure.php:472 +#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:511 +#: tbl_structure.php:27 tbl_structure.php:151 tbl_structure.php:155 +#: tbl_structure.php:470 msgid "Primary" msgstr "PRIMARY" #: libraries/mult_submits.inc.php:97 libraries/tbl_properties.inc.php:115 -#: libraries/tbl_properties.inc.php:524 tbl_printview.php:324 -#: tbl_structure.php:30 tbl_structure.php:153 tbl_structure.php:157 -#: tbl_structure.php:474 tbl_structure.php:672 +#: libraries/tbl_properties.inc.php:523 tbl_printview.php:323 +#: tbl_structure.php:29 tbl_structure.php:152 tbl_structure.php:156 +#: tbl_structure.php:472 tbl_structure.php:670 msgid "Index" msgstr "Индекс" -#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:530 -#: tbl_structure.php:34 tbl_structure.php:155 tbl_structure.php:159 -#: tbl_structure.php:477 +#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:529 +#: tbl_structure.php:33 tbl_structure.php:154 tbl_structure.php:158 +#: tbl_structure.php:475 msgid "Fulltext" msgstr "Пълнотекстово" -#: libraries/mult_submits.inc.php:434 tbl_replace.php:330 +#: libraries/mult_submits.inc.php:433 tbl_replace.php:330 msgid "No change" msgstr "Няма промяна" @@ -3203,190 +3252,190 @@ msgstr "Няма промяна" msgid "Charset" msgstr "Набор от знаци" -#: libraries/mysql_charsets.lib.php:210 libraries/mysql_charsets.lib.php:411 -#: tbl_change.php:515 +#: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 +#: tbl_change.php:510 msgid "Binary" msgstr " Двоично " -#: libraries/mysql_charsets.lib.php:222 +#: libraries/mysql_charsets.lib.php:214 msgid "Bulgarian" msgstr "Български" -#: libraries/mysql_charsets.lib.php:226 libraries/mysql_charsets.lib.php:351 +#: libraries/mysql_charsets.lib.php:218 libraries/mysql_charsets.lib.php:343 msgid "Simplified Chinese" msgstr "Опростен китайски" -#: libraries/mysql_charsets.lib.php:228 libraries/mysql_charsets.lib.php:371 +#: libraries/mysql_charsets.lib.php:220 libraries/mysql_charsets.lib.php:363 msgid "Traditional Chinese" msgstr "Традиционен китайски" -#: libraries/mysql_charsets.lib.php:232 libraries/mysql_charsets.lib.php:418 +#: libraries/mysql_charsets.lib.php:224 libraries/mysql_charsets.lib.php:410 msgid "case-insensitive" msgstr "нечувствително към регистъра" -#: libraries/mysql_charsets.lib.php:235 libraries/mysql_charsets.lib.php:420 +#: libraries/mysql_charsets.lib.php:227 libraries/mysql_charsets.lib.php:412 msgid "case-sensitive" msgstr "чувствително към регистъра" -#: libraries/mysql_charsets.lib.php:238 +#: libraries/mysql_charsets.lib.php:230 msgid "Croatian" msgstr "Хърватски" -#: libraries/mysql_charsets.lib.php:241 +#: libraries/mysql_charsets.lib.php:233 msgid "Czech" msgstr "Чешки" -#: libraries/mysql_charsets.lib.php:244 +#: libraries/mysql_charsets.lib.php:236 msgid "Danish" msgstr "Датски" -#: libraries/mysql_charsets.lib.php:247 +#: libraries/mysql_charsets.lib.php:239 msgid "English" msgstr "Английски" -#: libraries/mysql_charsets.lib.php:250 +#: libraries/mysql_charsets.lib.php:242 msgid "Esperanto" msgstr "Есперанто" -#: libraries/mysql_charsets.lib.php:253 +#: libraries/mysql_charsets.lib.php:245 msgid "Estonian" msgstr "Естонски" -#: libraries/mysql_charsets.lib.php:256 libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:248 libraries/mysql_charsets.lib.php:251 msgid "German" msgstr "Немски" -#: libraries/mysql_charsets.lib.php:256 +#: libraries/mysql_charsets.lib.php:248 msgid "dictionary" msgstr "речник" -#: libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:251 msgid "phone book" msgstr "Телефонен бележник" -#: libraries/mysql_charsets.lib.php:262 +#: libraries/mysql_charsets.lib.php:254 msgid "Hungarian" msgstr "Унгарски" -#: libraries/mysql_charsets.lib.php:265 +#: libraries/mysql_charsets.lib.php:257 msgid "Icelandic" msgstr "Исландски" -#: libraries/mysql_charsets.lib.php:268 libraries/mysql_charsets.lib.php:358 +#: libraries/mysql_charsets.lib.php:260 libraries/mysql_charsets.lib.php:350 msgid "Japanese" msgstr "Японски" -#: libraries/mysql_charsets.lib.php:271 +#: libraries/mysql_charsets.lib.php:263 msgid "Latvian" msgstr "Латвийски" -#: libraries/mysql_charsets.lib.php:274 +#: libraries/mysql_charsets.lib.php:266 msgid "Lithuanian" msgstr "Литовски" -#: libraries/mysql_charsets.lib.php:277 libraries/mysql_charsets.lib.php:380 +#: libraries/mysql_charsets.lib.php:269 libraries/mysql_charsets.lib.php:372 msgid "Korean" msgstr "Корейски" -#: libraries/mysql_charsets.lib.php:280 +#: libraries/mysql_charsets.lib.php:272 msgid "Persian" msgstr "Персийски" -#: libraries/mysql_charsets.lib.php:283 +#: libraries/mysql_charsets.lib.php:275 msgid "Polish" msgstr "Полски" -#: libraries/mysql_charsets.lib.php:286 libraries/mysql_charsets.lib.php:334 +#: libraries/mysql_charsets.lib.php:278 libraries/mysql_charsets.lib.php:326 msgid "West European" msgstr "Западно-европейски" -#: libraries/mysql_charsets.lib.php:289 +#: libraries/mysql_charsets.lib.php:281 msgid "Romanian" msgstr "Румънски" -#: libraries/mysql_charsets.lib.php:292 +#: libraries/mysql_charsets.lib.php:284 msgid "Slovak" msgstr "Словашки" -#: libraries/mysql_charsets.lib.php:295 +#: libraries/mysql_charsets.lib.php:287 msgid "Slovenian" msgstr "Словенски" -#: libraries/mysql_charsets.lib.php:298 +#: libraries/mysql_charsets.lib.php:290 msgid "Spanish" msgstr "Испански" -#: libraries/mysql_charsets.lib.php:301 +#: libraries/mysql_charsets.lib.php:293 msgid "Traditional Spanish" msgstr "Традиционен Испански" -#: libraries/mysql_charsets.lib.php:304 libraries/mysql_charsets.lib.php:401 +#: libraries/mysql_charsets.lib.php:296 libraries/mysql_charsets.lib.php:393 msgid "Swedish" msgstr "Шведски" -#: libraries/mysql_charsets.lib.php:307 libraries/mysql_charsets.lib.php:404 +#: libraries/mysql_charsets.lib.php:299 libraries/mysql_charsets.lib.php:396 msgid "Thai" msgstr "Тайландски" -#: libraries/mysql_charsets.lib.php:310 libraries/mysql_charsets.lib.php:398 +#: libraries/mysql_charsets.lib.php:302 libraries/mysql_charsets.lib.php:390 msgid "Turkish" msgstr "Турски" -#: libraries/mysql_charsets.lib.php:313 libraries/mysql_charsets.lib.php:395 +#: libraries/mysql_charsets.lib.php:305 libraries/mysql_charsets.lib.php:387 msgid "Ukrainian" msgstr "Украински" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 msgid "Unicode" msgstr "Unicode" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 -#: libraries/mysql_charsets.lib.php:334 libraries/mysql_charsets.lib.php:341 -#: libraries/mysql_charsets.lib.php:363 libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 +#: libraries/mysql_charsets.lib.php:326 libraries/mysql_charsets.lib.php:333 +#: libraries/mysql_charsets.lib.php:355 libraries/mysql_charsets.lib.php:366 msgid "multilingual" msgstr "многоезичен" -#: libraries/mysql_charsets.lib.php:341 +#: libraries/mysql_charsets.lib.php:333 msgid "Central European" msgstr "Централно европейски" -#: libraries/mysql_charsets.lib.php:346 +#: libraries/mysql_charsets.lib.php:338 msgid "Russian" msgstr "Руски" -#: libraries/mysql_charsets.lib.php:363 +#: libraries/mysql_charsets.lib.php:355 msgid "Baltic" msgstr "Балтийски" -#: libraries/mysql_charsets.lib.php:368 +#: libraries/mysql_charsets.lib.php:360 msgid "Armenian" msgstr "Арменски" -#: libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:366 msgid "Cyrillic" msgstr "Кирилица" -#: libraries/mysql_charsets.lib.php:377 +#: libraries/mysql_charsets.lib.php:369 msgid "Arabic" msgstr "Арабски" -#: libraries/mysql_charsets.lib.php:383 +#: libraries/mysql_charsets.lib.php:375 msgid "Hebrew" msgstr "Иврит" -#: libraries/mysql_charsets.lib.php:386 +#: libraries/mysql_charsets.lib.php:378 msgid "Georgian" msgstr "Грузински" -#: libraries/mysql_charsets.lib.php:389 +#: libraries/mysql_charsets.lib.php:381 msgid "Greek" msgstr "Гръцки" -#: libraries/mysql_charsets.lib.php:392 +#: libraries/mysql_charsets.lib.php:384 msgid "Czech-Slovak" msgstr "Чехословашки" -#: libraries/mysql_charsets.lib.php:407 libraries/mysql_charsets.lib.php:414 +#: libraries/mysql_charsets.lib.php:399 libraries/mysql_charsets.lib.php:406 msgid "unknown" msgstr "непознат" @@ -3412,69 +3461,69 @@ msgstr "Прозорец за заявки" msgid "This format has no options" msgstr "Този формат няма опции" -#: libraries/relation.lib.php:82 +#: libraries/relation.lib.php:77 msgid "not OK" msgstr "не е OK" -#: libraries/relation.lib.php:86 pmd_general.php:339 +#: libraries/relation.lib.php:81 pmd_general.php:339 msgid "OK" msgstr "OK" -#: libraries/relation.lib.php:87 +#: libraries/relation.lib.php:82 msgid "Enabled" msgstr "Позволено" -#: libraries/relation.lib.php:110 +#: libraries/relation.lib.php:105 msgid "Display Features" msgstr "Покажи възможностите" -#: libraries/relation.lib.php:116 +#: libraries/relation.lib.php:111 msgid "Creation of PDFs" msgstr "Създаване на PDF-и" -#: libraries/relation.lib.php:120 +#: libraries/relation.lib.php:115 msgid "Displaying Column Comments" msgstr "Показване на коментари към Колоните" -#: libraries/relation.lib.php:125 +#: libraries/relation.lib.php:120 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "Моля прегледайте информацията в Документацията относно това как да обновите " "вашата Column_comments таблица" -#: libraries/relation.lib.php:130 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 msgid "Bookmarked SQL query" msgstr "Запазване на SQL заявка" -#: libraries/relation.lib.php:134 querywindow.php:99 querywindow.php:207 +#: libraries/relation.lib.php:129 querywindow.php:98 querywindow.php:205 msgid "SQL history" msgstr "SQL-хронология" -#: libraries/relation.lib.php:146 +#: libraries/relation.lib.php:141 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:148 +#: libraries/relation.lib.php:143 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" -#: libraries/relation.lib.php:149 +#: libraries/relation.lib.php:144 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:150 +#: libraries/relation.lib.php:145 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:151 +#: libraries/relation.lib.php:146 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1158 +#: libraries/relation.lib.php:1153 msgid "no description" msgstr "няма Описание" @@ -3482,7 +3531,7 @@ msgstr "няма Описание" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:53 server_replication.php:346 +#: libraries/replication_gui.lib.php:53 server_replication.php:345 msgid "Change or reconfigure master server" msgstr "" @@ -3494,17 +3543,12 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:711 -#: server_privileges.php:714 server_privileges.php:721 -#: server_synchronize.php:1170 +#: libraries/replication_gui.lib.php:261 server_privileges.php:710 +#: server_privileges.php:713 server_privileges.php:720 +#: server_synchronize.php:1169 msgid "User name" msgstr "Потребителско име" -#: libraries/replication_gui.lib.php:69 server_synchronize.php:1162 -#, fuzzy -msgid "Port" -msgstr "Сортиране" - #: libraries/replication_gui.lib.php:105 msgid "Master status" msgstr "" @@ -3519,8 +3563,8 @@ msgid "Variable" msgstr "Променлива" #: libraries/replication_gui.lib.php:117 server_status.php:737 -#: tbl_change.php:322 tbl_printview.php:368 tbl_select.php:137 -#: tbl_structure.php:728 +#: tbl_change.php:317 tbl_printview.php:367 tbl_select.php:136 +#: tbl_structure.php:726 msgid "Value" msgstr "Стойност" @@ -3535,38 +3579,38 @@ msgid "" "this list." msgstr "" -#: libraries/replication_gui.lib.php:242 server_replication.php:193 +#: libraries/replication_gui.lib.php:242 server_replication.php:192 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:256 server_privileges.php:716 +#: libraries/replication_gui.lib.php:256 server_privileges.php:715 msgid "Any user" msgstr "Всеки потребител" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1920 server_privileges.php:1950 +#: libraries/replication_gui.lib.php:348 server_privileges.php:716 +#: server_privileges.php:783 server_privileges.php:807 +#: server_privileges.php:1924 server_privileges.php:1954 msgid "Use text field" msgstr "Използвай текстовото поле" -#: libraries/replication_gui.lib.php:304 server_privileges.php:764 +#: libraries/replication_gui.lib.php:304 server_privileges.php:763 msgid "Any host" msgstr "Всеки хост" -#: libraries/replication_gui.lib.php:308 server_privileges.php:768 +#: libraries/replication_gui.lib.php:308 server_privileges.php:767 msgid "Local" msgstr "Локален" -#: libraries/replication_gui.lib.php:314 server_privileges.php:773 +#: libraries/replication_gui.lib.php:314 server_privileges.php:772 msgid "This Host" msgstr "Този Хост" -#: libraries/replication_gui.lib.php:320 server_privileges.php:779 +#: libraries/replication_gui.lib.php:320 server_privileges.php:778 msgid "Use Host Table" msgstr "Използвай таблица Host" -#: libraries/replication_gui.lib.php:333 server_privileges.php:792 +#: libraries/replication_gui.lib.php:333 server_privileges.php:791 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3592,8 +3636,8 @@ msgstr "" msgid "Servers" msgstr "Сървъри" -#: libraries/server_links.inc.php:52 server_engines.php:111 -#: server_engines.php:115 server_status.php:414 test/theme.php:104 +#: libraries/server_links.inc.php:52 server_engines.php:125 +#: server_engines.php:129 server_status.php:414 test/theme.php:104 msgid "Variables" msgstr "Променливи" @@ -3615,12 +3659,12 @@ msgstr " Двоично " msgid "Processes" msgstr "Процеси" -#: libraries/server_links.inc.php:91 server_synchronize.php:1091 -#: server_synchronize.php:1099 +#: libraries/server_links.inc.php:91 server_synchronize.php:1090 +#: server_synchronize.php:1098 msgid "Synchronize" msgstr "Синхронизиране" -#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1109 +#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1108 #, fuzzy msgid "Source database" msgstr "Търсене в базата от данни" @@ -3639,7 +3683,7 @@ msgstr "" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1111 +#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1110 #, fuzzy msgid "Target database" msgstr "Търсене в базата от данни" @@ -3660,11 +3704,11 @@ msgstr "Изпълнение на SQL заявка/заявки към база msgid "Columns" msgstr "Име на колона" -#: libraries/sql_query_form.lib.php:342 sql.php:664 sql.php:665 sql.php:682 +#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "Запази тази SQL заявка" -#: libraries/sql_query_form.lib.php:349 sql.php:676 +#: libraries/sql_query_form.lib.php:349 sql.php:669 msgid "Let every user access this bookmark" msgstr "Нека всеки потребител има достъп до този показалец" @@ -3761,12 +3805,12 @@ msgstr "" "инсталирали необходимите PHP разширения, така както е описано в " "%sдокументацията%s." -#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:139 -#: libraries/tbl_links.inc.php:140 +#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 +#: libraries/tbl_links.inc.php:139 msgid "Table seems to be empty!" msgstr "" -#: libraries/tbl_links.inc.php:148 +#: libraries/tbl_links.inc.php:147 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" @@ -3801,12 +3845,12 @@ msgstr "" "За стойностите по подразбиране, моля въведете само една стойност, без " "обратни черти или апостроф, използвайки следния формат: a" -#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1263 -#: pdf_schema.php:1284 tbl_printview.php:142 tbl_structure.php:179 +#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1262 +#: pdf_schema.php:1283 tbl_printview.php:141 tbl_structure.php:178 msgid "Attributes" msgstr "Атрибути" -#: libraries/tbl_properties.inc.php:136 +#: libraries/tbl_properties.inc.php:135 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -3815,11 +3859,11 @@ msgstr "" "За списъка на достъпните опции на трансформацията и техните MIME-type " "трансформации кликнете на %sописания на трансформацията%s" -#: libraries/tbl_properties.inc.php:144 +#: libraries/tbl_properties.inc.php:143 msgid "Transformation options" msgstr "Опции на трансформацията" -#: libraries/tbl_properties.inc.php:145 +#: libraries/tbl_properties.inc.php:144 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
                            If you ever need to put a backslash (\"\\\") or a single " @@ -3832,18 +3876,18 @@ msgstr "" "поставете пред тях допълнителна обратно наклонена черта (например '\\\\xyz' " "или 'a\\'b')." -#: libraries/tbl_properties.inc.php:392 +#: libraries/tbl_properties.inc.php:391 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "Няма" -#: libraries/tbl_properties.inc.php:393 +#: libraries/tbl_properties.inc.php:392 msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:579 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:578 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
                            Please ask the " @@ -3852,29 +3896,29 @@ msgstr "" "Няма Описание за тази трансформация.
                            Моля обърнете се към автора " "относно това какво прави %s." -#: libraries/tbl_properties.inc.php:725 server_engines.php:57 -#: tbl_operations.php:354 +#: libraries/tbl_properties.inc.php:724 server_engines.php:56 +#: tbl_operations.php:352 msgid "Storage Engine" msgstr "Хранилище на данни" -#: libraries/tbl_properties.inc.php:754 +#: libraries/tbl_properties.inc.php:753 msgid "PARTITION definition" msgstr "" -#: libraries/tbl_properties.inc.php:775 pdf_pages.php:502 +#: libraries/tbl_properties.inc.php:774 pdf_pages.php:501 #: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214 -#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1124 tbl_indexes.php:247 -#: tbl_relation.php:565 +#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1022 tbl_indexes.php:246 +#: tbl_relation.php:563 msgid "Save" msgstr "Записване" -#: libraries/tbl_properties.inc.php:779 tbl_structure.php:541 +#: libraries/tbl_properties.inc.php:778 tbl_structure.php:539 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "Добавяне на %s поле(та)" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:535 +#: libraries/tbl_properties.inc.php:782 tbl_structure.php:533 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -4058,8 +4102,8 @@ msgstr "" msgid "Custom color" msgstr "Потребителски зададен цвят" -#: main.php:162 pdf_pages.php:362 setup/lib/FormDisplay.tpl.php:216 -#: tbl_change.php:1173 +#: main.php:162 pdf_pages.php:361 setup/lib/FormDisplay.tpl.php:216 +#: tbl_change.php:1071 msgid "Reset" msgstr "Изчистване" @@ -4067,8 +4111,8 @@ msgstr "Изчистване" msgid "Protocol version" msgstr "Версия на протокола" -#: main.php:188 server_privileges.php:1381 server_privileges.php:1528 -#: server_privileges.php:1642 server_privileges.php:2060 +#: main.php:188 server_privileges.php:1385 server_privileges.php:1532 +#: server_privileges.php:1646 server_privileges.php:2064 #: server_processlist.php:53 msgid "User" msgstr "Потребител" @@ -4147,21 +4191,30 @@ msgid "" "has been configured." msgstr "" -#: main.php:330 +#: main.php:314 +#, php-format +msgid "" +"The additional features for working with linked tables have been " +"deactivated. To find out why click %shere%s." +msgstr "" +"Допълнителните възможности за работа със свързани (linked) таблици са " +"деактивирани. За да разберете защо кликнете %sтук%s." + +#: main.php:329 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:345 +#: main.php:344 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: main.php:357 +#: main.php:356 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -4172,68 +4225,68 @@ msgstr "" msgid "Reload navigation frame" msgstr "" -#: navigation.php:204 server_databases.php:370 server_synchronize.php:1190 +#: navigation.php:203 server_databases.php:368 server_synchronize.php:1189 msgid "No databases" msgstr "Няма бази от данни" -#: navigation.php:298 +#: navigation.php:297 msgid "Filter" msgstr "" -#: navigation.php:299 setup/frames/index.inc.php:218 +#: navigation.php:298 setup/frames/index.inc.php:218 #: setup/lib/messages.inc.php:41 #, fuzzy msgid "Clear" msgstr "Календар" -#: navigation.php:330 navigation.php:331 +#: navigation.php:329 navigation.php:330 #, fuzzy msgctxt "short form" msgid "Create table" msgstr "Създай нова Страница" -#: navigation.php:333 navigation.php:495 +#: navigation.php:332 navigation.php:494 msgid "Please select a database" msgstr "Моля изберете база от данни" -#: pdf_pages.php:40 pdf_pages.php:46 pdf_pages.php:52 pdf_pages.php:57 +#: pdf_pages.php:39 pdf_pages.php:45 pdf_pages.php:51 pdf_pages.php:56 #, php-format msgid "%s table not found or not set in %s" msgstr "таблица %s не е намерена или не е установена в %s" -#: pdf_pages.php:265 +#: pdf_pages.php:264 msgid "Please choose a page to edit" msgstr "Моля изберете страница за редактиране" -#: pdf_pages.php:303 pmd_pdf.php:113 +#: pdf_pages.php:302 pmd_pdf.php:111 msgid "Create a page" msgstr "Създай нова Страница" -#: pdf_pages.php:309 +#: pdf_pages.php:308 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Номер на страницата:" -#: pdf_pages.php:313 +#: pdf_pages.php:312 #, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "Автоматичен лейаут" -#: pdf_pages.php:315 +#: pdf_pages.php:314 msgid "Internal relations" msgstr "Вътрешни релации" -#: pdf_pages.php:338 +#: pdf_pages.php:337 msgid "Select Tables" msgstr "Избери таблици" -#: pdf_pages.php:361 +#: pdf_pages.php:360 msgid "Toggle scratchboard" msgstr "" -#: pdf_pages.php:524 +#: pdf_pages.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -4241,37 +4294,37 @@ msgstr "" "Текущата Страница има Референции към Таблици които вече не съществуват. " "Желаете ли да изтриете тези Референции?" -#: pdf_schema.php:635 +#: pdf_schema.php:634 #, fuzzy, php-format #| msgid "The \"%s\" table doesn't exist!" msgid "The %s table doesn't exist!" msgstr "Таблица \"%s\" не съществува!" -#: pdf_schema.php:671 +#: pdf_schema.php:670 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Моля конфигурирайте координатите за таблица %s" -#: pdf_schema.php:994 +#: pdf_schema.php:993 #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" msgstr "Схемата на база от данни \"%s\" - Страница %s" -#: pdf_schema.php:1012 +#: pdf_schema.php:1011 msgid "No tables" msgstr "Няма таблици" -#: pdf_schema.php:1031 pdf_schema.php:1140 +#: pdf_schema.php:1030 pdf_schema.php:1139 msgid "Relational schema" msgstr "Релационна схема" -#: pdf_schema.php:1115 +#: pdf_schema.php:1114 msgid "Table of contents" msgstr "Съдържание" -#: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:145 -#: tbl_structure.php:182 tbl_tracking.php:277 +#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 +#: tbl_structure.php:181 tbl_tracking.php:272 msgid "Extra" msgstr "Допълнително" @@ -4283,7 +4336,7 @@ msgstr "" msgid "Save position" msgstr "" -#: pmd_general.php:70 server_synchronize.php:428 server_synchronize.php:871 +#: pmd_general.php:70 server_synchronize.php:427 server_synchronize.php:870 #, fuzzy msgid "Create table" msgstr "Създай нова Страница" @@ -4357,32 +4410,32 @@ msgid "" "appropriate column name." msgstr "" -#: pmd_pdf.php:62 +#: pmd_pdf.php:60 #, fuzzy msgid "Page has been created" msgstr "Таблицата %s беше изтрита" -#: pmd_pdf.php:64 +#: pmd_pdf.php:62 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:84 +#: pmd_pdf.php:82 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:88 +#: pmd_pdf.php:86 msgid "recommended" msgstr "" -#: pmd_pdf.php:93 +#: pmd_pdf.php:91 msgid "to/from page" msgstr "" -#: querywindow.php:94 +#: querywindow.php:93 msgid "Import files" msgstr "Импортиране на файлове" -#: querywindow.php:105 +#: querywindow.php:104 msgid "All" msgstr "всички" @@ -4429,66 +4482,66 @@ msgstr "Информация" msgid "Character Sets and Collations" msgstr "Набори от знаци и колации" -#: server_databases.php:51 +#: server_databases.php:49 msgid "No databases selected." msgstr "Няма избрани бази от данни." -#: server_databases.php:62 +#: server_databases.php:60 #, php-format msgid "%s databases have been dropped successfully." msgstr "%s бази от данни бяха изтрити успешно." -#: server_databases.php:87 +#: server_databases.php:85 msgid "Databases statistics" msgstr " Статистика за базите данни" -#: server_databases.php:116 server_status.php:370 +#: server_databases.php:114 server_status.php:370 #: setup/lib/messages.inc.php:114 msgid "Tables" msgstr "Таблици" -#: server_databases.php:194 server_replication.php:180 -#: server_replication.php:208 +#: server_databases.php:192 server_replication.php:179 +#: server_replication.php:207 msgid "Master replication" msgstr "" -#: server_databases.php:196 server_replication.php:247 +#: server_databases.php:194 server_replication.php:246 msgid "Slave replication" msgstr "" -#: server_databases.php:229 +#: server_databases.php:227 #, fuzzy msgid "Jump to database" msgstr "Няма бази от данни" -#: server_databases.php:266 +#: server_databases.php:264 msgid "Not replicated" msgstr "" -#: server_databases.php:272 +#: server_databases.php:270 #, fuzzy #| msgid "Replication" msgid "Replicated" msgstr "Репликация" -#: server_databases.php:288 +#: server_databases.php:286 #, php-format msgid "Check privileges for database "%s"." msgstr "Провери привилегиите за база от данни "%s"." -#: server_databases.php:292 server_databases.php:293 +#: server_databases.php:290 server_databases.php:291 msgid "Check Privileges" msgstr "Проверка на привилегиите" -#: server_databases.php:357 server_databases.php:358 +#: server_databases.php:355 server_databases.php:356 msgid "Enable Statistics" msgstr "Разрешаване на статистика" -#: server_databases.php:361 server_databases.php:362 +#: server_databases.php:359 server_databases.php:360 msgid "Disable Statistics" msgstr "Забрани статистика" -#: server_databases.php:365 +#: server_databases.php:363 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -4496,126 +4549,126 @@ msgstr "" "Забележка: Разрешаването на статистика на базата от данни може да коства " "много голям трафик между уеб сървъра и MySQL сървъра." -#: server_engines.php:48 +#: server_engines.php:47 msgid "Storage Engines" msgstr "Хранилища на данни" -#: server_export.php:20 +#: server_export.php:18 msgid "View dump (schema) of databases" msgstr "Преглед на схемата на базата от данни" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:23 server_privileges.php:265 msgid "Includes all privileges except GRANT." msgstr "Включва всички привилегии освен GRANT." -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:24 server_privileges.php:191 +#: server_privileges.php:514 msgid "Allows altering the structure of existing tables." msgstr "Позволява променяне на структурата на съществуващи таблици." -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:25 server_privileges.php:207 +#: server_privileges.php:520 msgid "Allows altering and dropping stored routines." msgstr "Позволяване на променяне и издриване на Съхранени Процедури." -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:26 server_privileges.php:183 +#: server_privileges.php:513 msgid "Allows creating new databases and tables." msgstr "Позволява създаване на нови бази от данни и таблици." -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:27 server_privileges.php:206 +#: server_privileges.php:519 msgid "Allows creating stored routines." msgstr "Позволяване на създаването на Съхранени Процедури." -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:513 msgid "Allows creating new tables." msgstr "Позволява създаване на нови таблици." -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:29 server_privileges.php:194 +#: server_privileges.php:517 msgid "Allows creating temporary tables." msgstr "Позволява създаването на временни таблици." -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:30 server_privileges.php:208 +#: server_privileges.php:553 msgid "Allows creating, dropping and renaming user accounts." msgstr "" "Позволяване на създаването, изтриването и преименуването на потребителски " "акаунти." -#: server_privileges.php:32 server_privileges.php:199 -#: server_privileges.php:203 server_privileges.php:526 -#: server_privileges.php:530 +#: server_privileges.php:31 server_privileges.php:198 +#: server_privileges.php:202 server_privileges.php:525 +#: server_privileges.php:529 msgid "Allows creating new views." msgstr "Позволяване на създаването на нови Изгледи." -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:32 server_privileges.php:182 +#: server_privileges.php:505 msgid "Allows deleting data." msgstr "Позволява изтриване на данни." -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:33 server_privileges.php:184 +#: server_privileges.php:516 msgid "Allows dropping databases and tables." msgstr "Позволява изтриване на бази от данни и таблици." -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:34 server_privileges.php:516 msgid "Allows dropping tables." msgstr "Позволява изтриване на таблици." -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:35 server_privileges.php:199 +#: server_privileges.php:533 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:36 server_privileges.php:209 +#: server_privileges.php:521 msgid "Allows executing stored routines." msgstr "Позволяване на стартирането на Съхранени Процедури." -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:37 server_privileges.php:188 +#: server_privileges.php:508 msgid "Allows importing data from and exporting data into files." msgstr "Позволява импортиране на данни от и експортиране на данни във файлове." -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:38 server_privileges.php:539 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Позволява добавяне на потребители и привилегии без презареждане на таблицата " "с привилегиите." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:515 msgid "Allows creating and dropping indexes." msgstr "Позволява създаване и премахване на индекси." -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:40 server_privileges.php:180 +#: server_privileges.php:441 server_privileges.php:503 msgid "Allows inserting and replacing data." msgstr "Позволява вмъкване и заменяне на данни." -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:41 server_privileges.php:195 +#: server_privileges.php:548 msgid "Allows locking tables for the current thread." msgstr "Позволява заключване на таблици за текущата нишка." -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:42 server_privileges.php:645 +#: server_privileges.php:647 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Ограничава броя на новите конекции, които потребителя може да отвори на час." -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:43 server_privileges.php:633 +#: server_privileges.php:635 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Ограничава броя на заявките, които потребителя може да изпрати към сървъра " "на час." -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:44 server_privileges.php:639 +#: server_privileges.php:641 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -4623,62 +4676,62 @@ msgstr "" "Ограничава броя на командите, които променят някоя таблица или база от " "данни, които даден потребител може да стартира за час." -#: server_privileges.php:46 server_privileges.php:652 -#: server_privileges.php:654 +#: server_privileges.php:45 server_privileges.php:651 +#: server_privileges.php:653 #, fuzzy msgid "Limits the number of simultaneous connections the user may have." msgstr "" "Ограничава броя на новите конекции, които потребителя може да отвори на час." -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:46 server_privileges.php:187 +#: server_privileges.php:543 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:47 server_privileges.php:189 +#: server_privileges.php:447 server_privileges.php:549 msgid "Has no effect in this MySQL version." msgstr "Няма ефект в тази версия на MySQL." -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:48 server_privileges.php:185 +#: server_privileges.php:544 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Позволява презареждане на сървърните настройки и изчистване(flashing) на " "кеша на сървъра." -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:197 +#: server_privileges.php:551 msgid "Allows the user to ask where the slaves / masters are." msgstr "Дава правото на потребител да знае къде са slaves / masters." -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:50 server_privileges.php:196 +#: server_privileges.php:552 msgid "Needed for the replication slaves." msgstr "Нужно за replication slaves." -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:51 server_privileges.php:179 +#: server_privileges.php:438 server_privileges.php:502 msgid "Allows reading data." msgstr "Позволява четене на данни." -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:52 server_privileges.php:192 +#: server_privileges.php:546 msgid "Gives access to the complete list of databases." msgstr "Дава достъп до пълния списък на базите данни." -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:53 server_privileges.php:203 +#: server_privileges.php:205 server_privileges.php:518 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Позволяване на изпълнението на SHOW CREATE VIEW заявки." -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:54 server_privileges.php:186 +#: server_privileges.php:545 msgid "Allows shutting down the server." msgstr "Позволява спиране на сървъра." -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:55 server_privileges.php:193 +#: server_privileges.php:542 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -4688,161 +4741,161 @@ msgstr "" "Изисква се за повечето административни операции, като установяване на " "глобални променливи или спиране на нишка на други потребители." -#: server_privileges.php:57 server_privileges.php:201 -#: server_privileges.php:535 +#: server_privileges.php:56 server_privileges.php:200 +#: server_privileges.php:534 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "Позволява създаване и премахване на индекси." -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:57 server_privileges.php:181 +#: server_privileges.php:444 server_privileges.php:504 msgid "Allows changing data." msgstr "Позволява промяна на данни." -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:58 server_privileges.php:259 msgid "No privileges." msgstr "Няма привилегии." -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:301 server_privileges.php:302 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Няма" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1710 server_privileges.php:1716 +#: server_privileges.php:430 server_privileges.php:565 +#: server_privileges.php:1714 server_privileges.php:1720 msgid "Table-specific privileges" msgstr "Привилегии специфични за таблицата" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1532 +#: server_privileges.php:431 server_privileges.php:573 +#: server_privileges.php:1536 msgid " Note: MySQL privilege names are expressed in English " msgstr "" " Забележка: Имената на привилегиите на MySQL са показани на английски. " -#: server_privileges.php:563 server_privileges.php:1531 +#: server_privileges.php:562 server_privileges.php:1535 msgid "Global privileges" msgstr "Глобални привилегии" -#: server_privileges.php:565 server_privileges.php:1710 +#: server_privileges.php:564 server_privileges.php:1714 msgid "Database-specific privileges" msgstr "Привилегии специфични за базата от данни" -#: server_privileges.php:610 +#: server_privileges.php:609 msgid "Administration" msgstr "Администрация" -#: server_privileges.php:630 +#: server_privileges.php:629 msgid "Resource limits" msgstr "Ресурсни ограничения" -#: server_privileges.php:631 +#: server_privileges.php:630 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" "Забележка: Установяването на тези опции с 0 (нула) премахва ограничението." -#: server_privileges.php:708 +#: server_privileges.php:707 msgid "Login Information" msgstr "Информация за логване" -#: server_privileges.php:802 +#: server_privileges.php:801 msgid "Do not change the password" msgstr "Да не се сменя паролата" -#: server_privileges.php:835 server_privileges.php:2197 +#: server_privileges.php:834 server_privileges.php:2201 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Няма потребител(и)." -#: server_privileges.php:879 +#: server_privileges.php:878 #, php-format msgid "The user %s already exists!" msgstr "Потребител %s вече съществува!" -#: server_privileges.php:962 +#: server_privileges.php:961 msgid "You have added a new user." msgstr "Вие добавихте нов потребител." -#: server_privileges.php:1183 +#: server_privileges.php:1184 #, php-format msgid "You have updated the privileges for %s." msgstr "Вие променихте привилегиите за %s." -#: server_privileges.php:1207 +#: server_privileges.php:1208 #, php-format msgid "You have revoked the privileges for %s" msgstr "Вие отменихте привилегиите за %s" -#: server_privileges.php:1243 +#: server_privileges.php:1244 #, php-format msgid "The password for %s was changed successfully." msgstr "Паролата на %s беше променена успешно." -#: server_privileges.php:1263 +#: server_privileges.php:1264 #, php-format msgid "Deleting %s" msgstr "Изтриване на %s" -#: server_privileges.php:1274 +#: server_privileges.php:1275 msgid "No users selected for deleting!" msgstr "Не за избрани потребители за изтриване!" -#: server_privileges.php:1277 +#: server_privileges.php:1278 msgid "Reloading the privileges" msgstr "Презареждане на привилегиите" -#: server_privileges.php:1292 +#: server_privileges.php:1296 msgid "The selected users have been deleted successfully." msgstr "Избраните потребители бяха изтрити успешно." -#: server_privileges.php:1327 +#: server_privileges.php:1331 msgid "The privileges were reloaded successfully." msgstr "Привилегиите бяха презаредени успешно." -#: server_privileges.php:1355 server_privileges.php:1641 +#: server_privileges.php:1359 server_privileges.php:1645 msgid "Edit Privileges" msgstr "Редактиране на привилегиите" -#: server_privileges.php:1364 +#: server_privileges.php:1368 msgid "Revoke" msgstr "Отменяне" -#: server_privileges.php:1396 +#: server_privileges.php:1400 msgid "User overview" msgstr "Преглед на потребителите" -#: server_privileges.php:1533 server_privileges.php:1715 -#: server_privileges.php:2064 +#: server_privileges.php:1537 server_privileges.php:1719 +#: server_privileges.php:2068 msgid "Grant" msgstr "Дадени" -#: server_privileges.php:1552 server_privileges.php:2154 +#: server_privileges.php:1556 server_privileges.php:2158 msgid "Any" msgstr "всеки" -#: server_privileges.php:1601 server_privileges.php:1625 -#: server_privileges.php:2019 server_privileges.php:2208 +#: server_privileges.php:1605 server_privileges.php:1629 +#: server_privileges.php:2023 server_privileges.php:2212 msgid "Add a new User" msgstr "Добавяне на нов потребител." -#: server_privileges.php:1606 +#: server_privileges.php:1610 msgid "Remove selected users" msgstr "Отстраняване на избраните потребители" -#: server_privileges.php:1609 +#: server_privileges.php:1613 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Отмяна на всички активни привилегии от потребителите и след това изтриване." -#: server_privileges.php:1610 server_privileges.php:1611 -#: server_privileges.php:1612 +#: server_privileges.php:1614 server_privileges.php:1615 +#: server_privileges.php:1616 msgid "Drop the databases that have the same names as the users." msgstr "" "Изтриване на базите от данни които имат имена като тези на потребителите." -#: server_privileges.php:1628 +#: server_privileges.php:1632 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4856,49 +4909,49 @@ msgstr "" "ръка. В този случай, трябва да %sпрезаредите привилегиите%s преди да " "продължите." -#: server_privileges.php:1676 +#: server_privileges.php:1680 msgid "The selected user was not found in the privilege table." msgstr "Избрания потребител не беше открит в таблицата с привилегиите." -#: server_privileges.php:1716 +#: server_privileges.php:1720 msgid "Column-specific privileges" msgstr "Привилегии специфични за колоната" -#: server_privileges.php:1917 +#: server_privileges.php:1921 msgid "Add privileges on the following database" msgstr "Добавяне на привилегии към следната база от данни" -#: server_privileges.php:1935 +#: server_privileges.php:1939 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:1938 +#: server_privileges.php:1942 msgid "Add privileges on the following table" msgstr "Добавяне на привилегии към следната таблица" -#: server_privileges.php:1995 +#: server_privileges.php:1999 msgid "Change Login Information / Copy User" msgstr "Промяна на логин информацията / Копиране на потребител" -#: server_privileges.php:1998 +#: server_privileges.php:2002 msgid "Create a new user with the same privileges and ..." msgstr "Създаване нов потребител със същите привилегии и ..." -#: server_privileges.php:2000 +#: server_privileges.php:2004 msgid "... keep the old one." msgstr "... запазване на стария." -#: server_privileges.php:2001 +#: server_privileges.php:2005 msgid " ... delete the old one from the user tables." msgstr " ... изтриване на стария от таблицата на потребителите." -#: server_privileges.php:2002 +#: server_privileges.php:2006 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "" " ... отменяне на всички активни привилегии от стария и след това изтриване." -#: server_privileges.php:2003 +#: server_privileges.php:2007 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -4906,44 +4959,44 @@ msgstr "" " ... изтриване на стария от таблицата на потребителите и след това " "презареждане на привилегиите." -#: server_privileges.php:2025 +#: server_privileges.php:2029 msgid "Database for user" msgstr "База от данни за потребителя" -#: server_privileges.php:2029 +#: server_privileges.php:2033 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Няма" -#: server_privileges.php:2030 +#: server_privileges.php:2034 msgid "Create database with same name and grant all privileges" msgstr "Създаване на база от данни със същото име и даване на пълни привилегии" -#: server_privileges.php:2031 +#: server_privileges.php:2035 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2034 +#: server_privileges.php:2038 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Даване на пълни привилегии над база от данни "%s"." -#: server_privileges.php:2057 +#: server_privileges.php:2061 #, php-format msgid "Users having access to "%s"" msgstr "Потребители които имат достъп до "%s"" -#: server_privileges.php:2165 +#: server_privileges.php:2169 msgid "global" msgstr "глобален" -#: server_privileges.php:2167 +#: server_privileges.php:2171 msgid "database-specific" msgstr "специфични за базата от данни" -#: server_privileges.php:2169 +#: server_privileges.php:2173 msgid "wildcard" msgstr "знак за заместване" @@ -4962,53 +5015,53 @@ msgstr "phpMyAdmin не можа да спре нишка %s. Вероятно msgid "ID" msgstr "ID" -#: server_replication.php:50 +#: server_replication.php:49 msgid "Unknown error" msgstr "" -#: server_replication.php:57 +#: server_replication.php:56 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:64 +#: server_replication.php:63 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:70 +#: server_replication.php:69 msgid "Unable to change master" msgstr "" -#: server_replication.php:73 +#: server_replication.php:72 #, php-format msgid "Master server changed succesfully to %s" msgstr "" -#: server_replication.php:181 +#: server_replication.php:180 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:183 server_status.php:391 +#: server_replication.php:182 server_status.php:391 msgid "Show master status" msgstr "" -#: server_replication.php:186 +#: server_replication.php:185 msgid "Show connected slaves" msgstr "" -#: server_replication.php:209 +#: server_replication.php:208 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:216 +#: server_replication.php:215 msgid "Master configuration" msgstr "" -#: server_replication.php:217 +#: server_replication.php:216 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -5017,110 +5070,110 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:220 +#: server_replication.php:219 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:221 +#: server_replication.php:220 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:224 +#: server_replication.php:223 #, fuzzy msgid "Please select databases:" msgstr "Моля изберете база от данни" -#: server_replication.php:227 +#: server_replication.php:226 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: server_replication.php:229 +#: server_replication.php:228 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: server_replication.php:292 +#: server_replication.php:291 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:295 +#: server_replication.php:294 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:304 +#: server_replication.php:303 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:307 +#: server_replication.php:306 msgid "See slave status table" msgstr "" -#: server_replication.php:310 +#: server_replication.php:309 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:321 +#: server_replication.php:320 msgid "Control slave:" msgstr "" -#: server_replication.php:324 +#: server_replication.php:323 #, fuzzy msgid "Full start" msgstr "Пълнотекстово" -#: server_replication.php:324 +#: server_replication.php:323 msgid "Full stop" msgstr "" -#: server_replication.php:325 +#: server_replication.php:324 msgid "Reset slave" msgstr "" -#: server_replication.php:326 +#: server_replication.php:325 #, php-format msgid "SQL Thread %s only" msgstr "" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 #, fuzzy msgid "Start" msgstr "сб" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 msgid "Stop" msgstr "" -#: server_replication.php:327 +#: server_replication.php:326 #, php-format msgid "IO Thread %s only" msgstr "" -#: server_replication.php:331 +#: server_replication.php:330 msgid "Error management:" msgstr "" -#: server_replication.php:333 +#: server_replication.php:332 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:335 +#: server_replication.php:334 msgid "Skip current error" msgstr "" -#: server_replication.php:336 +#: server_replication.php:335 msgid "Skip next" msgstr "" -#: server_replication.php:339 +#: server_replication.php:338 msgid "errors." msgstr "" -#: server_replication.php:354 +#: server_replication.php:353 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -5841,112 +5894,112 @@ msgstr "Тип на заявката" msgid "Replication status" msgstr "Репликация" -#: server_synchronize.php:93 +#: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:96 +#: server_synchronize.php:95 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:121 server_synchronize.php:124 tbl_create.php:77 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:264 +#: server_synchronize.php:263 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:271 +#: server_synchronize.php:270 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:399 server_synchronize.php:838 +#: server_synchronize.php:398 server_synchronize.php:837 msgid "not present" msgstr "" -#: server_synchronize.php:423 server_synchronize.php:866 +#: server_synchronize.php:422 server_synchronize.php:865 msgid "Structure Difference" msgstr "" -#: server_synchronize.php:424 server_synchronize.php:867 +#: server_synchronize.php:423 server_synchronize.php:866 msgid "Data Difference" msgstr "" -#: server_synchronize.php:429 server_synchronize.php:872 +#: server_synchronize.php:428 server_synchronize.php:871 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:430 server_synchronize.php:873 +#: server_synchronize.php:429 server_synchronize.php:872 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:431 server_synchronize.php:874 +#: server_synchronize.php:430 server_synchronize.php:873 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:432 server_synchronize.php:875 +#: server_synchronize.php:431 server_synchronize.php:874 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:433 server_synchronize.php:876 +#: server_synchronize.php:432 server_synchronize.php:875 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:434 server_synchronize.php:877 +#: server_synchronize.php:433 server_synchronize.php:876 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:435 server_synchronize.php:878 +#: server_synchronize.php:434 server_synchronize.php:877 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:445 server_synchronize.php:889 +#: server_synchronize.php:444 server_synchronize.php:888 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:448 server_synchronize.php:893 +#: server_synchronize.php:447 server_synchronize.php:892 msgid "Apply Selected Changes" msgstr "" -#: server_synchronize.php:450 server_synchronize.php:895 +#: server_synchronize.php:449 server_synchronize.php:894 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:463 +#: server_synchronize.php:462 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:941 +#: server_synchronize.php:940 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:1002 +#: server_synchronize.php:1001 msgid "The following queries have been executed:" msgstr "" -#: server_synchronize.php:1121 +#: server_synchronize.php:1120 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1122 +#: server_synchronize.php:1121 #, fuzzy #| msgid "max. concurrent connections" msgid "Current connection" msgstr "Максимален брой на едновременните конекции" -#: server_synchronize.php:1151 +#: server_synchronize.php:1150 #, php-format msgid "Configuration: %s" msgstr "" -#: server_synchronize.php:1166 +#: server_synchronize.php:1165 msgid "Socket" msgstr "" -#: server_synchronize.php:1212 +#: server_synchronize.php:1211 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -6503,8 +6556,8 @@ msgstr "" #: setup/lib/messages.inc.php:128 msgid "" "Configure phpMyAdmin database to gain access to additional features, see " -"[a@../Documentation.html#linked-tables]linked-tables infrastructure[/a] in " -"documentation" +"[a@../Documentation.html#linked-tables]phpMyAdmin configuration storage[/a] " +"in documentation" msgstr "" #: setup/lib/messages.inc.php:129 setup/lib/messages.inc.php:290 @@ -7567,116 +7620,116 @@ msgstr "" msgid "ZIP" msgstr "" -#: sql.php:495 tbl_replace.php:385 +#: sql.php:494 tbl_replace.php:384 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: sql.php:512 +#: sql.php:511 msgid "Showing as PHP code" msgstr "Показване като PHP-код" -#: sql.php:515 tbl_replace.php:359 +#: sql.php:514 tbl_replace.php:358 msgid "Showing SQL query" msgstr "" -#: sql.php:517 +#: sql.php:516 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Валидирай SQL-а" -#: sql.php:638 +#: sql.php:631 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Проблем с индексите на таблица `%s`" -#: sql.php:670 +#: sql.php:663 msgid "Label" msgstr "Етикет" -#: tbl_addfield.php:188 tbl_alter.php:102 tbl_indexes.php:97 +#: tbl_addfield.php:185 tbl_alter.php:100 tbl_indexes.php:97 #, fuzzy, php-format msgid "Table %1$s has been altered successfully" msgstr "Избраните потребители бяха изтрити успешно." -#: tbl_change.php:250 tbl_select.php:26 tbl_select.php:27 tbl_select.php:30 -#: tbl_select.php:33 +#: tbl_change.php:245 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_select.php:32 msgid "Browse foreign values" msgstr "Преглеждане на външните(foreign) стойности" -#: tbl_change.php:280 tbl_change.php:318 +#: tbl_change.php:275 tbl_change.php:313 msgid "Function" msgstr "Функция" -#: tbl_change.php:300 tbl_indexes.php:199 tbl_indexes.php:224 +#: tbl_change.php:295 tbl_indexes.php:198 tbl_indexes.php:223 msgid "Ignore" msgstr "Игнориране" -#: tbl_change.php:725 +#: tbl_change.php:720 #, fuzzy #| msgid " Because of its length,
                            this field might not be editable " msgid " Because of its length,
                            this column might not be editable " msgstr " Поради дължината си,
                            това поле може да не е редактируемо " -#: tbl_change.php:884 +#: tbl_change.php:835 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:890 +#: tbl_change.php:841 msgid "Binary - do not edit" msgstr " Двоично - не се редактира " -#: tbl_change.php:983 +#: tbl_change.php:889 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:1128 +#: tbl_change.php:1026 msgid "Insert as new row" msgstr "Вмъкване като нов ред" -#: tbl_change.php:1129 +#: tbl_change.php:1027 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:1130 +#: tbl_change.php:1028 msgid "Show insert query" msgstr "" -#: tbl_change.php:1145 +#: tbl_change.php:1043 msgid "Go back to previous page" msgstr "връщане обратно" -#: tbl_change.php:1146 +#: tbl_change.php:1044 msgid "Insert another new row" msgstr "вмъкване на нов запис" -#: tbl_change.php:1150 +#: tbl_change.php:1048 msgid "Go back to this page" msgstr "връщане към тази страница" -#: tbl_change.php:1158 +#: tbl_change.php:1056 msgid "Edit next row" msgstr "редактиране на следващия ред" -#: tbl_change.php:1169 +#: tbl_change.php:1067 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Използвайте клавиша TAB за да премествате крурсора от стойност на стойност " "или CTRL+стрелка за да премествате курсора в съответната посока" -#: tbl_change.php:1207 +#: tbl_change.php:1105 #, php-format msgid "Restart insertion with %s rows" msgstr "" -#: tbl_create.php:57 +#: tbl_create.php:55 #, php-format msgid "Table %s already exists!" msgstr "Таблица %s вече съществува!" -#: tbl_create.php:244 +#: tbl_create.php:241 #, fuzzy, php-format msgid "Table %1$s has been created." msgstr "Таблицата %s беше изтрита" @@ -7697,205 +7750,205 @@ msgstr "Не мога да преименувам индекса на PRIMARY!" msgid "No index parts defined!" msgstr "Не са дефинирани части на индекс!" -#: tbl_indexes.php:159 +#: tbl_indexes.php:158 msgid "Create a new index" msgstr "Създай нов индекс" -#: tbl_indexes.php:161 +#: tbl_indexes.php:160 msgid "Modify an index" msgstr "Промяна на индекс" -#: tbl_indexes.php:167 +#: tbl_indexes.php:166 msgid "Index name:" msgstr "Име на индекса :" -#: tbl_indexes.php:173 +#: tbl_indexes.php:172 msgid "Index type:" msgstr "Тип на индекса :" -#: tbl_indexes.php:183 +#: tbl_indexes.php:182 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" "(\"PRIMARY\" трябва да е името на и единствено на главния " "ключ!)" -#: tbl_indexes.php:250 +#: tbl_indexes.php:249 #, php-format msgid "Add to index  %s column(s)" msgstr "  %s колона(и) беше(яха)добавени към индекса " -#: tbl_indexes.php:255 tbl_structure.php:588 tbl_structure.php:599 +#: tbl_indexes.php:254 tbl_structure.php:586 tbl_structure.php:597 msgid "Column count has to be larger than zero." msgstr "Броя на колоните трябва да е по-голям от нула." -#: tbl_move_copy.php:45 +#: tbl_move_copy.php:44 msgid "Can't move table to same one!" msgstr "Не може да се премести таблицата към себе си!" -#: tbl_move_copy.php:47 +#: tbl_move_copy.php:46 msgid "Can't copy table to same one!" msgstr "Не може да се копира таблицата към себе си!" -#: tbl_move_copy.php:55 +#: tbl_move_copy.php:54 #, php-format msgid "Table %s has been moved to %s." msgstr "Таблицата %s беше преместена към %s." -#: tbl_move_copy.php:57 +#: tbl_move_copy.php:56 #, php-format msgid "Table %s has been copied to %s." msgstr "Таблица %s беше копирана в %s." -#: tbl_move_copy.php:81 +#: tbl_move_copy.php:80 msgid "The table name is empty!" msgstr "Името на таблицата е празно!" -#: tbl_operations.php:248 +#: tbl_operations.php:246 msgid "Alter table order by" msgstr "Подреждане на таблицата по" -#: tbl_operations.php:257 +#: tbl_operations.php:255 msgid "(singly)" msgstr "(еднократно)" -#: tbl_operations.php:277 +#: tbl_operations.php:275 msgid "Move table to (database.table):" msgstr "Преместване на таблица към (база от данни.таблица):" -#: tbl_operations.php:335 +#: tbl_operations.php:333 msgid "Table options" msgstr "Опции на таблицата" -#: tbl_operations.php:339 +#: tbl_operations.php:337 msgid "Rename table to" msgstr "Преименуване на таблицата на" -#: tbl_operations.php:510 +#: tbl_operations.php:508 msgid "Copy table to (database.table):" msgstr "Копиране на таблица (база от данни.таблица):" -#: tbl_operations.php:557 +#: tbl_operations.php:555 msgid "Switch to copied table" msgstr "Превключване към копираната таблица" -#: tbl_operations.php:569 +#: tbl_operations.php:567 msgid "Table maintenance" msgstr "Поддръжка на таблицата" -#: tbl_operations.php:590 +#: tbl_operations.php:588 msgid "Defragment table" msgstr "Дефрагментиране на таблица" -#: tbl_operations.php:629 +#: tbl_operations.php:627 #, php-format msgid "Table %s has been flushed" msgstr "Кеша на таблица %s беше изчистен" -#: tbl_operations.php:635 +#: tbl_operations.php:633 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Изчистване на кеша на таблицата (\"FLUSH\")" -#: tbl_operations.php:650 +#: tbl_operations.php:648 #, fuzzy msgid "Partition maintenance" msgstr "Поддръжка на таблицата" -#: tbl_operations.php:658 +#: tbl_operations.php:656 #, php-format msgid "Partition %s" msgstr "" -#: tbl_operations.php:661 +#: tbl_operations.php:659 msgid "Analyze" msgstr "" -#: tbl_operations.php:662 +#: tbl_operations.php:660 #, fuzzy msgid "Check" msgstr "Чешки" -#: tbl_operations.php:663 +#: tbl_operations.php:661 msgid "Optimize" msgstr "" -#: tbl_operations.php:664 +#: tbl_operations.php:662 msgid "Rebuild" msgstr "" -#: tbl_operations.php:665 +#: tbl_operations.php:663 #, fuzzy msgid "Repair" msgstr "Поправяне на таблицата" -#: tbl_operations.php:677 +#: tbl_operations.php:675 msgid "Remove partitioning" msgstr "" -#: tbl_operations.php:703 +#: tbl_operations.php:701 msgid "Check referential integrity:" msgstr "Проверка на интегритета на връзките" -#: tbl_printview.php:73 +#: tbl_printview.php:72 msgid "Show tables" msgstr "Покажи таблиците" -#: tbl_printview.php:308 tbl_structure.php:655 +#: tbl_printview.php:307 tbl_structure.php:653 msgid "Space usage" msgstr "Използвано място" -#: tbl_printview.php:312 tbl_structure.php:659 +#: tbl_printview.php:311 tbl_structure.php:657 msgid "Usage" msgstr "Използвани" -#: tbl_printview.php:339 tbl_structure.php:686 +#: tbl_printview.php:338 tbl_structure.php:684 msgid "Effective" msgstr "Ефективни" -#: tbl_printview.php:364 tbl_structure.php:724 +#: tbl_printview.php:363 tbl_structure.php:722 msgid "Row Statistics" msgstr "Статистика за редовете" -#: tbl_printview.php:367 tbl_structure.php:727 +#: tbl_printview.php:366 tbl_structure.php:725 msgid "Statements" msgstr "Заявление" -#: tbl_printview.php:378 tbl_structure.php:739 +#: tbl_printview.php:377 tbl_structure.php:737 msgid "static" msgstr "" -#: tbl_printview.php:380 tbl_structure.php:741 +#: tbl_printview.php:379 tbl_structure.php:739 msgid "dynamic" msgstr "динамичен" -#: tbl_printview.php:402 tbl_structure.php:784 +#: tbl_printview.php:401 tbl_structure.php:782 msgid "Row length" msgstr "Дължина на реда" -#: tbl_printview.php:412 tbl_structure.php:792 +#: tbl_printview.php:411 tbl_structure.php:790 msgid " Row size " msgstr " Размер на ред " -#: tbl_relation.php:278 +#: tbl_relation.php:276 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" -#: tbl_relation.php:404 +#: tbl_relation.php:402 #, fuzzy #| msgid "Internal relations" msgid "Internal relation" msgstr "Вътрешни релации" -#: tbl_relation.php:406 +#: tbl_relation.php:404 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: tbl_relation.php:412 +#: tbl_relation.php:410 msgid "Foreign key constraint" msgstr "" @@ -7903,232 +7956,232 @@ msgstr "" msgid "No rows selected" msgstr "Няма върнати редове" -#: tbl_select.php:130 +#: tbl_select.php:129 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Изпълняване на \"заявка по шаблон\" (знак за заместване: \"%\")" -#: tbl_select.php:136 +#: tbl_select.php:135 msgid "Operator" msgstr "Оператор" -#: tbl_select.php:267 +#: tbl_select.php:266 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "Избор на поле (поне едно):" -#: tbl_select.php:285 +#: tbl_select.php:284 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Добавяне на условие за търсене (съдържание на \"where\" клаузата):" -#: tbl_select.php:292 +#: tbl_select.php:291 msgid "Number of rows per page" msgstr "редове на страница" -#: tbl_select.php:298 +#: tbl_select.php:297 msgid "Display order:" msgstr "Подреждане по:" -#: tbl_structure.php:160 +#: tbl_structure.php:159 #, fuzzy msgid "Browse distinct values" msgstr "Преглеждане на външните(foreign) стойности" -#: tbl_structure.php:360 +#: tbl_structure.php:358 #, fuzzy #| msgid "None" msgctxt "None for default" msgid "None" msgstr "Няма" -#: tbl_structure.php:373 +#: tbl_structure.php:371 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Column %s has been dropped" msgstr "Таблицата %s беше изтрита" -#: tbl_structure.php:384 +#: tbl_structure.php:382 #, php-format msgid "A primary key has been added on %s" msgstr "Беше добавен първичен ключ към %s" -#: tbl_structure.php:399 tbl_structure.php:413 tbl_structure.php:427 +#: tbl_structure.php:397 tbl_structure.php:411 tbl_structure.php:425 #, php-format msgid "An index has been added on %s" msgstr "Беше добавен индекс на %s" -#: tbl_structure.php:505 tbl_structure.php:507 +#: tbl_structure.php:503 tbl_structure.php:505 msgid "Relation view" msgstr "Преглед на релациите" -#: tbl_structure.php:514 tbl_structure.php:516 +#: tbl_structure.php:512 tbl_structure.php:514 msgid "Propose table structure" msgstr "Анализ на таблицата" -#: tbl_structure.php:539 +#: tbl_structure.php:537 #, fuzzy #| msgid "Add %s field(s)" msgid "Add column" msgstr "Добавяне на %s поле(та)" -#: tbl_structure.php:553 +#: tbl_structure.php:551 msgid "At End of Table" msgstr "в края на таблицата" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At Beginning of Table" msgstr "в началото на таблицата" -#: tbl_structure.php:555 +#: tbl_structure.php:553 #, php-format msgid "After %s" msgstr "след %s" -#: tbl_structure.php:593 +#: tbl_structure.php:591 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "Създаване на индекс върху  %s колони" -#: tbl_structure.php:755 +#: tbl_structure.php:753 msgid "partitioned" msgstr "" -#: tbl_tracking.php:113 +#: tbl_tracking.php:109 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:186 +#: tbl_tracking.php:182 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "" -#: tbl_tracking.php:194 +#: tbl_tracking.php:190 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "" -#: tbl_tracking.php:202 +#: tbl_tracking.php:198 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "" -#: tbl_tracking.php:212 +#: tbl_tracking.php:208 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:219 +#: tbl_tracking.php:215 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:220 +#: tbl_tracking.php:216 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:229 +#: tbl_tracking.php:225 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:250 tbl_tracking.php:378 +#: tbl_tracking.php:245 tbl_tracking.php:373 msgid "Close" msgstr "" -#: tbl_tracking.php:261 +#: tbl_tracking.php:256 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:380 +#: tbl_tracking.php:375 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:396 tbl_tracking.php:503 +#: tbl_tracking.php:391 tbl_tracking.php:498 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "" -#: tbl_tracking.php:409 tbl_tracking.php:460 +#: tbl_tracking.php:404 tbl_tracking.php:455 #, fuzzy msgid "Date" msgstr "Данни" -#: tbl_tracking.php:410 tbl_tracking.php:461 +#: tbl_tracking.php:405 tbl_tracking.php:456 #, fuzzy msgid "Username" msgstr "Име:" -#: tbl_tracking.php:411 +#: tbl_tracking.php:406 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:462 +#: tbl_tracking.php:457 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:506 +#: tbl_tracking.php:501 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:507 +#: tbl_tracking.php:502 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:520 +#: tbl_tracking.php:515 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:560 +#: tbl_tracking.php:555 msgid "Show versions" msgstr "Показване на версиите" -#: tbl_tracking.php:592 +#: tbl_tracking.php:587 msgid "Version" msgstr "Версия" -#: tbl_tracking.php:639 +#: tbl_tracking.php:634 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "" -#: tbl_tracking.php:641 +#: tbl_tracking.php:636 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:652 +#: tbl_tracking.php:647 #, php-format msgid "Activate tracking for %s.%s" msgstr "" -#: tbl_tracking.php:654 +#: tbl_tracking.php:649 msgid "Activate now" msgstr "" -#: tbl_tracking.php:667 +#: tbl_tracking.php:662 #, php-format msgid "Create version %s of %s.%s" msgstr "" -#: tbl_tracking.php:671 +#: tbl_tracking.php:666 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:679 +#: tbl_tracking.php:674 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:687 +#: tbl_tracking.php:682 #, fuzzy msgid "Create version" msgstr "Версия на сървъра" @@ -8180,10 +8233,38 @@ msgstr "Профила беше обновен." msgid "VIEW name" msgstr "Име на ИЗГЛЕД-а" -#: view_operations.php:92 +#: view_operations.php:91 msgid "Rename view to" msgstr "Преименуване на изгледа на" +#~ msgid "BLOB Repository" +#~ msgstr "BLOB хранилище" + +#, fuzzy +#~| msgid "Enabled" +#~ msgctxt "BLOB repository" +#~ msgid "Enabled" +#~ msgstr "Позволено" + +#, fuzzy +#~ msgid "Disable" +#~ msgstr "Забранено" + +#, fuzzy +#~ msgctxt "BLOB repository" +#~ msgid "Repair" +#~ msgstr "Поправяне на таблицата" + +#, fuzzy +#~| msgid "Disabled" +#~ msgctxt "BLOB repository" +#~ msgid "Disabled" +#~ msgstr "Забранено" + +#, fuzzy +#~ msgid "Enable" +#~ msgstr "Позволено" + #~ msgid "" #~ "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " #~ "extension. Please check your PHP configuration." diff --git a/po/bn.po b/po/bn.po index 3c3362ea0..7a7e44b80 100644 --- a/po/bn.po +++ b/po/bn.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-21 13:53+0200\n" +"POT-Creation-Date: 2010-07-26 17:18+0200\n" "PO-Revision-Date: 2010-03-12 09:11+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: bangla \n" @@ -13,19 +13,19 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.5.3\n" -#: browse_foreigners.php:37 browse_foreigners.php:58 -#: libraries/display_tbl.lib.php:416 server_privileges.php:1506 +#: browse_foreigners.php:36 browse_foreigners.php:57 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1510 msgid "Show all" msgstr "Show all" -#: browse_foreigners.php:81 libraries/common.lib.php:2313 -#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:393 -#: libraries/export/pdf.php:146 pdf_schema.php:282 pdf_schema.php:1122 -#: pdf_schema.php:1138 +#: browse_foreigners.php:80 libraries/common.lib.php:2318 +#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:392 +#: libraries/export/pdf.php:146 pdf_schema.php:281 pdf_schema.php:1121 +#: pdf_schema.php:1137 msgid "Page number:" msgstr "পাতার সংখ্যাঃ" -#: browse_foreigners.php:131 +#: browse_foreigners.php:130 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -35,139 +35,151 @@ msgstr "" "parent window, or your browser's security settings are configured to block " "cross-window updates." -#: browse_foreigners.php:149 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2829 -#: libraries/common.lib.php:2836 libraries/db_links.inc.php:74 -#: libraries/tbl_links.inc.php:62 +#: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 +#: db_structure.php:89 db_structure.php:91 db_structure.php:102 +#: db_structure.php:104 libraries/common.lib.php:2834 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "খুঁজুন" -#: browse_foreigners.php:152 db_operations.php:384 db_operations.php:428 -#: db_operations.php:498 db_operations.php:608 db_search.php:344 -#: db_structure.php:566 js/messages.php:48 libraries/Config.class.php:1043 -#: libraries/Theme_Manager.class.php:310 +#: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 +#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 +#: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 -#: libraries/common.lib.php:1340 libraries/common.lib.php:2289 +#: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 -#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:275 -#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:531 -#: libraries/display_tbl.lib.php:613 libraries/replication_gui.lib.php:75 +#: libraries/display_export.lib.php:269 libraries/display_import.lib.php:275 +#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 +#: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 #: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:781 -#: main.php:127 navigation.php:231 pdf_pages.php:291 pdf_pages.php:327 -#: pdf_pages.php:529 pmd_pdf.php:115 server_binlog.php:128 -#: server_privileges.php:664 server_privileges.php:1616 -#: server_privileges.php:1963 server_privileges.php:2010 -#: server_privileges.php:2049 server_replication.php:234 -#: server_replication.php:317 server_replication.php:340 -#: server_synchronize.php:1208 tbl_change.php:328 tbl_change.php:1172 -#: tbl_change.php:1209 tbl_indexes.php:253 tbl_operations.php:264 -#: tbl_operations.php:301 tbl_operations.php:498 tbl_operations.php:560 -#: tbl_operations.php:680 tbl_select.php:324 tbl_structure.php:561 -#: tbl_structure.php:596 tbl_tracking.php:394 tbl_tracking.php:511 -#: view_create.php:181 view_operations.php:100 +#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 +#: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 +#: server_privileges.php:663 server_privileges.php:1620 +#: server_privileges.php:1967 server_privileges.php:2014 +#: server_privileges.php:2053 server_replication.php:233 +#: server_replication.php:316 server_replication.php:339 +#: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 +#: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 +#: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 +#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "Go" -#: browse_foreigners.php:167 browse_foreigners.php:171 -#: libraries/Index.class.php:441 tbl_tracking.php:319 +#: browse_foreigners.php:166 browse_foreigners.php:170 +#: libraries/Index.class.php:441 tbl_tracking.php:314 msgid "Keyname" msgstr "Keyname" -#: browse_foreigners.php:168 browse_foreigners.php:170 -#: server_collations.php:54 server_collations.php:66 server_engines.php:58 +#: browse_foreigners.php:167 browse_foreigners.php:169 +#: server_collations.php:54 server_collations.php:66 server_engines.php:57 #: server_status.php:738 msgid "Description" msgstr "বর্ণনা" -#: browse_foreigners.php:246 browse_foreigners.php:255 -#: browse_foreigners.php:267 browse_foreigners.php:275 +#: browse_foreigners.php:245 browse_foreigners.php:254 +#: browse_foreigners.php:266 browse_foreigners.php:274 msgid "Use this value" msgstr "Use this value" -#: db_create.php:45 +#: bs_disp_as_mime_type.php:29 bs_play_media.php:35 +msgid "No blob streaming server configured!" +msgstr "" + +#: bs_disp_as_mime_type.php:35 +msgid "Failed to fetch headers" +msgstr "" + +#: bs_disp_as_mime_type.php:41 +msgid "Failed to open remote URL" +msgstr "" + +#: db_create.php:44 #, fuzzy, php-format msgid "Database %1$s has been created." msgstr "%s ডাটাবেজ মুছে ফেলা হয়েছে" -#: db_datadict.php:48 db_operations.php:377 +#: db_datadict.php:48 db_operations.php:313 msgid "Database comment: " msgstr "ডাটাবেজ মন্তব্যসমূহঃ" -#: db_datadict.php:164 libraries/tbl_properties.inc.php:723 -#: pdf_schema.php:1235 tbl_operations.php:346 tbl_printview.php:128 +#: db_datadict.php:164 libraries/tbl_properties.inc.php:722 +#: pdf_schema.php:1234 tbl_operations.php:344 tbl_printview.php:127 msgid "Table comments" msgstr "Table comments" -#: db_datadict.php:173 db_qbe.php:173 libraries/Index.class.php:445 +#: db_datadict.php:173 db_qbe.php:170 libraries/Index.class.php:445 #: libraries/export/htmlword.php:243 libraries/export/latex.php:364 #: libraries/export/odt.php:293 libraries/export/texytext.php:233 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:274 -#: pdf_schema.php:1261 pdf_schema.php:1282 tbl_change.php:306 -#: tbl_indexes.php:188 tbl_printview.php:140 tbl_relation.php:401 -#: tbl_select.php:133 tbl_structure.php:176 tbl_tracking.php:272 -#: tbl_tracking.php:323 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 +#: pdf_schema.php:1260 pdf_schema.php:1281 tbl_change.php:301 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:132 tbl_structure.php:175 tbl_tracking.php:267 +#: tbl_tracking.php:318 #, fuzzy #| msgid "Column names" msgid "Column" msgstr "কলামের নাম" -#: db_datadict.php:174 db_printview.php:105 libraries/Index.class.php:442 +#: db_datadict.php:174 db_printview.php:104 libraries/Index.class.php:442 #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 #: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:244 #: libraries/export/latex.php:364 libraries/export/odt.php:296 #: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:99 -#: pdf_schema.php:1262 pdf_schema.php:1283 server_privileges.php:2062 -#: tbl_change.php:285 tbl_change.php:312 tbl_printview.php:141 -#: tbl_printview.php:311 tbl_select.php:134 tbl_structure.php:177 -#: tbl_structure.php:658 tbl_tracking.php:273 tbl_tracking.php:320 +#: pdf_schema.php:1261 pdf_schema.php:1282 server_privileges.php:2066 +#: tbl_change.php:280 tbl_change.php:307 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:133 tbl_structure.php:176 +#: tbl_structure.php:656 tbl_tracking.php:268 tbl_tracking.php:315 msgid "Type" msgstr "Type" #: db_datadict.php:176 libraries/Index.class.php:448 #: libraries/export/htmlword.php:245 libraries/export/latex.php:364 #: libraries/export/odt.php:299 libraries/export/texytext.php:235 -#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1264 -#: pdf_schema.php:1285 tbl_change.php:321 tbl_printview.php:143 -#: tbl_structure.php:180 tbl_tracking.php:275 tbl_tracking.php:326 +#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1263 +#: pdf_schema.php:1284 tbl_change.php:316 tbl_printview.php:142 +#: tbl_structure.php:179 tbl_tracking.php:270 tbl_tracking.php:321 msgid "Null" msgstr "খালি" -#: db_datadict.php:177 db_structure.php:500 libraries/export/htmlword.php:246 +#: db_datadict.php:177 db_structure.php:486 libraries/export/htmlword.php:246 #: libraries/export/latex.php:364 libraries/export/odt.php:302 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:105 -#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 -#: tbl_structure.php:181 tbl_tracking.php:276 +#: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:143 +#: tbl_structure.php:180 tbl_tracking.php:271 msgid "Default" msgstr "ডিফল্ট" #: db_datadict.php:181 libraries/export/htmlword.php:248 #: libraries/export/latex.php:366 libraries/export/odt.php:306 -#: libraries/export/texytext.php:238 pdf_schema.php:1267 pdf_schema.php:1288 -#: tbl_printview.php:148 +#: libraries/export/texytext.php:238 pdf_schema.php:1266 pdf_schema.php:1287 +#: tbl_printview.php:147 msgid "Links to" msgstr "Links to" -#: db_datadict.php:183 db_printview.php:111 libraries/export/htmlword.php:251 +#: db_datadict.php:183 db_printview.php:110 libraries/export/htmlword.php:251 #: libraries/export/latex.php:49 libraries/export/latex.php:369 #: libraries/export/odt.php:37 libraries/export/odt.php:311 #: libraries/export/sql.php:29 libraries/export/texytext.php:241 -#: libraries/tbl_properties.inc.php:129 pdf_schema.php:1278 -#: pdf_schema.php:1289 tbl_printview.php:150 +#: libraries/tbl_properties.inc.php:128 pdf_schema.php:1277 +#: pdf_schema.php:1288 tbl_printview.php:149 msgid "Comments" msgstr "মন্তব্যসমূহ" #: db_datadict.php:266 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/export/htmlword.php:321 #: libraries/export/latex.php:434 libraries/export/odt.php:367 -#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:262 -#: pdf_schema.php:1343 server_privileges.php:1560 server_privileges.php:1571 -#: server_privileges.php:1881 server_privileges.php:1886 -#: server_privileges.php:2179 sql.php:131 sql.php:193 tbl_printview.php:227 -#: tbl_structure.php:349 tbl_tracking.php:336 tbl_tracking.php:341 +#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:261 +#: pdf_schema.php:1342 server_privileges.php:1564 server_privileges.php:1575 +#: server_privileges.php:1885 server_privileges.php:1890 +#: server_privileges.php:2183 sql.php:130 sql.php:192 tbl_printview.php:226 +#: tbl_structure.php:347 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "না" @@ -178,17 +190,17 @@ msgstr "না" #: libraries/mult_submits.inc.php:49 libraries/mult_submits.inc.php:54 #: libraries/mult_submits.inc.php:59 libraries/mult_submits.inc.php:91 #: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:105 -#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:261 -#: libraries/mult_submits.inc.php:272 pdf_schema.php:1343 -#: server_databases.php:63 server_privileges.php:1557 -#: server_privileges.php:1571 server_privileges.php:1881 -#: server_privileges.php:1884 server_privileges.php:2179 sql.php:192 -#: tbl_printview.php:227 tbl_structure.php:39 tbl_structure.php:349 -#: tbl_tracking.php:334 tbl_tracking.php:339 +#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:260 +#: libraries/mult_submits.inc.php:271 pdf_schema.php:1342 +#: server_databases.php:61 server_privileges.php:1561 +#: server_privileges.php:1575 server_privileges.php:1885 +#: server_privileges.php:1888 server_privileges.php:2183 sql.php:191 +#: tbl_printview.php:226 tbl_structure.php:38 tbl_structure.php:347 +#: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" msgstr "হ্যাঁ" -#: db_datadict.php:321 db_printview.php:265 tbl_printview.php:496 +#: db_datadict.php:321 db_printview.php:264 tbl_printview.php:495 msgid "Print" msgstr "প্রিন্ট কর" @@ -196,195 +208,154 @@ msgstr "প্রিন্ট কর" msgid "View dump (schema) of database" msgstr "View dump (schema) of database" -#: db_export.php:32 db_printview.php:95 db_qbe.php:101 db_structure.php:50 -#: db_tracking.php:34 export.php:352 navigation.php:326 +#: db_export.php:32 db_printview.php:94 db_qbe.php:98 db_structure.php:49 +#: db_tracking.php:30 export.php:350 navigation.php:325 msgid "No tables found in database." msgstr "No tables found in database." -#: db_export.php:42 db_search.php:326 server_export.php:26 +#: db_export.php:42 db_search.php:326 server_export.php:24 msgid "Select All" msgstr "সব সিলেক্ট করুন" -#: db_export.php:44 db_search.php:329 server_export.php:28 +#: db_export.php:44 db_search.php:329 server_export.php:26 msgid "Unselect All" msgstr "Unselect All" -#: db_operations.php:37 tbl_create.php:49 +#: db_operations.php:33 tbl_create.php:47 msgid "The database name is empty!" msgstr "ডাটাবেজ এর নাম দেওয়া হয়নি" -#: db_operations.php:235 +#: db_operations.php:231 #, php-format msgid "Database %s has been renamed to %s" msgstr "Database %s has been renamed to %s" -#: db_operations.php:239 +#: db_operations.php:235 #, php-format msgid "Database %s has been copied to %s" msgstr "%s ডাটাবেজ় %s তে কপি করা হয়েছে" -#: db_operations.php:411 +#: db_operations.php:347 msgid "Rename database to" msgstr "ডাটাবেজ রিনেম কর" -#: db_operations.php:416 server_processlist.php:56 +#: db_operations.php:352 server_processlist.php:56 msgid "Command" msgstr "নির্দেশ" -#: db_operations.php:428 tbl_change.php:1141 +#: db_operations.php:364 tbl_change.php:1039 msgid "and then" msgstr "এবং তারপর" -#: db_operations.php:454 +#: db_operations.php:390 msgid "Copy database to" msgstr "ডাটাবেজ কপি করঃ" -#: db_operations.php:461 tbl_operations.php:527 tbl_tracking.php:387 +#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Structure only" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:389 +#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Structure and data" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:388 +#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "শুধু ডাটা" -#: db_operations.php:471 +#: db_operations.php:407 msgid "CREATE DATABASE before copying" msgstr "কপি করার আগে ডাটাবেজ় তৈরী কর" -#: db_operations.php:474 libraries/export/sql.php:51 +#: db_operations.php:410 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 -#: libraries/export/sql.php:81 tbl_operations.php:535 +#: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "Add %s" -#: db_operations.php:478 libraries/export/sql.php:77 tbl_operations.php:298 -#: tbl_operations.php:537 +#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Add AUTO_INCREMENT value" -#: db_operations.php:482 tbl_operations.php:544 +#: db_operations.php:418 tbl_operations.php:542 msgid "Add constraints" msgstr "Add constraints" -#: db_operations.php:495 +#: db_operations.php:431 msgid "Switch to copied database" msgstr "Switch to copied database" -#: db_operations.php:536 -msgid "BLOB Repository" -msgstr "" - -#: db_operations.php:539 db_tracking.php:75 libraries/common.lib.php:1357 -#: libraries/server_links.inc.php:48 server_processlist.php:58 -#: tbl_tracking.php:595 test/theme.php:100 -msgid "Status" -msgstr "অবস্থা" - -#: db_operations.php:547 -#, fuzzy -#| msgid "Enabled" -msgctxt "BLOB repository" -msgid "Enabled" -msgstr "Enabled" - -#: db_operations.php:551 -#, fuzzy -msgid "Disable" -msgstr "বন্ধ করা হয়েছে" - -#: db_operations.php:561 -msgid "Damaged" -msgstr "" - -#: db_operations.php:565 -#, fuzzy -msgctxt "BLOB repository" -msgid "Repair" -msgstr "টেবিল রিপেয়ার করুন" - -#: db_operations.php:573 -#, fuzzy -#| msgid "Disabled" -msgctxt "BLOB repository" -msgid "Disabled" -msgstr "বন্ধ করা হয়েছে" - -#: db_operations.php:577 -#, fuzzy -msgid "Enable" -msgstr "Enabled" - -#: db_operations.php:601 libraries/Index.class.php:447 +#: db_operations.php:451 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 -#: server_collations.php:53 server_collations.php:65 server_databases.php:110 -#: tbl_operations.php:362 tbl_select.php:135 tbl_structure.php:178 -#: tbl_structure.php:766 tbl_tracking.php:274 tbl_tracking.php:325 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 +#: server_collations.php:53 server_collations.php:65 server_databases.php:108 +#: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:177 +#: tbl_structure.php:764 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "Collation" -#: db_operations.php:614 main.php:315 pdf_schema.php:33 -#, php-format +#: db_operations.php:464 pdf_schema.php:32 +#, fuzzy, php-format +#| msgid "" +#| "The additional features for working with linked tables have been " +#| "deactivated. To find out why click %shere%s." msgid "" -"The additional features for working with linked tables have been " -"deactivated. To find out why click %shere%s." +"The phpMyAdmin configuration storage has been deactivated. To find out why " +"click %shere%s." msgstr "" "The additional features for working with linked tables have been " "deactivated. To find out why click %shere%s." -#: db_operations.php:647 +#: db_operations.php:497 msgid "Edit PDF Pages" msgstr "পিডিএফ পাতাগুলো সম্পাদনা কর" -#: db_printview.php:103 db_tracking.php:71 db_tracking.php:156 +#: db_printview.php:102 db_tracking.php:67 db_tracking.php:152 #: libraries/db_structure.lib.php:37 libraries/export/xml.php:327 -#: libraries/header.inc.php:125 pdf_pages.php:423 server_privileges.php:1657 -#: server_privileges.php:1713 server_privileges.php:1977 -#: server_synchronize.php:422 server_synchronize.php:865 tbl_tracking.php:591 +#: libraries/header.inc.php:125 pdf_pages.php:422 server_privileges.php:1661 +#: server_privileges.php:1717 server_privileges.php:1981 +#: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "টেবিল" -#: db_printview.php:104 libraries/db_structure.lib.php:47 +#: db_printview.php:103 libraries/db_structure.lib.php:47 #: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 -#: navigation.php:629 navigation.php:651 server_databases.php:121 -#: tbl_printview.php:392 tbl_structure.php:364 tbl_structure.php:776 +#: navigation.php:628 navigation.php:650 server_databases.php:119 +#: tbl_printview.php:391 tbl_structure.php:362 tbl_structure.php:774 msgid "Rows" msgstr "Rows" -#: db_printview.php:108 libraries/db_structure.lib.php:58 tbl_indexes.php:189 +#: db_printview.php:107 libraries/db_structure.lib.php:58 tbl_indexes.php:188 msgid "Size" msgstr "আকার" -#: db_printview.php:161 db_structure.php:456 libraries/export/sql.php:556 +#: db_printview.php:160 db_structure.php:442 libraries/export/sql.php:556 #: libraries/export/sql.php:896 msgid "in use" msgstr "in use" -#: db_printview.php:186 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:511 pdf_schema.php:1240 tbl_printview.php:432 -#: tbl_structure.php:808 +#: db_printview.php:185 libraries/db_info.inc.php:86 +#: libraries/export/sql.php:511 pdf_schema.php:1239 tbl_printview.php:431 +#: tbl_structure.php:806 msgid "Creation" msgstr "Creation" -#: db_printview.php:195 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:516 pdf_schema.php:1245 tbl_printview.php:442 -#: tbl_structure.php:816 +#: db_printview.php:194 libraries/db_info.inc.php:91 +#: libraries/export/sql.php:516 pdf_schema.php:1244 tbl_printview.php:441 +#: tbl_structure.php:814 msgid "Last update" msgstr "সর্বশেষ আপডেট" -#: db_printview.php:204 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:521 pdf_schema.php:1250 tbl_printview.php:452 -#: tbl_structure.php:824 +#: db_printview.php:203 libraries/db_info.inc.php:96 +#: libraries/export/sql.php:521 pdf_schema.php:1249 tbl_printview.php:451 +#: tbl_structure.php:822 msgid "Last check" msgstr "Last check" -#: db_printview.php:221 db_structure.php:479 +#: db_printview.php:220 db_structure.php:465 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -392,94 +363,94 @@ msgid_plural "%s tables" msgstr[0] "%s table(s)" msgstr[1] "%s table(s)" -#: db_qbe.php:28 import.php:453 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1980 libraries/sql_query_form.lib.php:138 -#: tbl_operations.php:212 tbl_relation.php:291 tbl_row_action.php:130 -#: view_operations.php:61 +#: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 +#: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "Your SQL query has been executed successfully" -#: db_qbe.php:41 +#: db_qbe.php:38 msgid "You have to choose at least one column to display" msgstr "আপনাকে প্রদর্শন করার জন্য কমপক্ষে একটি কলাম নির্দিষ্ট করতে হবে" -#: db_qbe.php:199 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:865 +#: db_qbe.php:196 libraries/db_structure.lib.php:95 +#: libraries/display_tbl.lib.php:864 msgid "Sort" msgstr "সাজাঁন" -#: db_qbe.php:208 db_qbe.php:242 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:522 libraries/display_tbl.lib.php:827 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:259 -#: tbl_select.php:311 +#: db_qbe.php:205 db_qbe.php:239 libraries/db_structure.lib.php:102 +#: libraries/display_tbl.lib.php:521 libraries/display_tbl.lib.php:826 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:257 +#: tbl_select.php:310 msgid "Ascending" msgstr "Ascending" -#: db_qbe.php:209 db_qbe.php:250 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:527 libraries/display_tbl.lib.php:824 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:260 -#: tbl_select.php:312 +#: db_qbe.php:206 db_qbe.php:247 libraries/db_structure.lib.php:110 +#: libraries/display_tbl.lib.php:526 libraries/display_tbl.lib.php:823 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:258 +#: tbl_select.php:311 msgid "Descending" msgstr "Descending" -#: db_qbe.php:263 db_tracking.php:77 libraries/display_tbl.lib.php:307 -#: tbl_change.php:275 tbl_tracking.php:596 +#: db_qbe.php:260 db_tracking.php:73 libraries/display_tbl.lib.php:306 +#: tbl_change.php:270 tbl_tracking.php:591 msgid "Show" msgstr "দেখান" -#: db_qbe.php:299 +#: db_qbe.php:296 msgid "Criteria" msgstr "ক্ষেত্র" -#: db_qbe.php:352 db_qbe.php:434 db_qbe.php:526 db_qbe.php:557 +#: db_qbe.php:349 db_qbe.php:431 db_qbe.php:523 db_qbe.php:554 msgid "Ins" msgstr "Ins" -#: db_qbe.php:356 db_qbe.php:438 db_qbe.php:523 db_qbe.php:554 +#: db_qbe.php:353 db_qbe.php:435 db_qbe.php:520 db_qbe.php:551 msgid "And" msgstr "এবং" -#: db_qbe.php:365 db_qbe.php:446 db_qbe.php:528 db_qbe.php:559 +#: db_qbe.php:362 db_qbe.php:443 db_qbe.php:525 db_qbe.php:556 msgid "Del" msgstr "Del" -#: db_qbe.php:369 db_qbe.php:450 db_qbe.php:521 db_qbe.php:552 -#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:778 -#: server_privileges.php:297 tbl_change.php:1027 tbl_indexes.php:249 -#: tbl_select.php:285 +#: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 +#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:777 +#: server_privileges.php:296 tbl_change.php:925 tbl_indexes.php:248 +#: tbl_select.php:284 msgid "Or" msgstr "অথবা" -#: db_qbe.php:506 +#: db_qbe.php:503 msgid "Modify" msgstr "Modify" -#: db_qbe.php:583 +#: db_qbe.php:580 #, fuzzy #| msgid "Add/Delete Criteria Row" msgid "Add/Delete criteria rows" msgstr "Add/Delete Criteria Row" -#: db_qbe.php:595 +#: db_qbe.php:592 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Add/Delete columns" msgstr "Add/Delete Field Columns" -#: db_qbe.php:608 db_qbe.php:633 +#: db_qbe.php:605 db_qbe.php:630 msgid "Update Query" msgstr "Update Query" -#: db_qbe.php:616 +#: db_qbe.php:613 msgid "Use Tables" msgstr "টেবিল ব্যাবহারকারী" -#: db_qbe.php:639 +#: db_qbe.php:636 #, php-format msgid "SQL query on database %s:" msgstr "SQL query on database %s:" -#: db_qbe.php:933 libraries/common.lib.php:1222 +#: db_qbe.php:930 libraries/common.lib.php:1215 msgid "Submit Query" msgstr "Submit Query" @@ -519,17 +490,17 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s match(es) inside table %s" msgstr[1] "%s match(es) inside table %s" -#: db_search.php:249 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2831 -#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:49 -#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:466 +#: db_search.php:249 db_structure.php:75 db_structure.php:76 +#: db_structure.php:88 db_structure.php:90 db_structure.php:101 +#: db_structure.php:103 libraries/common.lib.php:2836 +#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 +#: tbl_structure.php:35 tbl_structure.php:47 tbl_structure.php:464 msgid "Browse" msgstr "ব্রাউজ করুন" -#: db_search.php:254 libraries/display_tbl.lib.php:1164 -#: libraries/display_tbl.lib.php:2055 libraries/sql_query_form.lib.php:453 -#: pdf_pages.php:285 pdf_pages.php:424 pdf_pages.php:460 pdf_pages.php:488 +#: db_search.php:254 libraries/display_tbl.lib.php:1163 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 msgid "Delete" @@ -569,233 +540,239 @@ msgstr "Inside table(s):" msgid "Inside column:" msgstr "Inside table(s):" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2830 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:75 +#: db_structure.php:79 db_structure.php:80 db_structure.php:92 +#: db_structure.php:93 db_structure.php:105 db_structure.php:106 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 +#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Insert" -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2827 libraries/common.lib.php:2834 -#: libraries/db_links.inc.php:62 libraries/export/htmlword.php:22 +#: db_structure.php:81 db_structure.php:94 db_structure.php:107 +#: libraries/common.lib.php:2832 libraries/common.lib.php:2839 +#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 -#: libraries/tbl_links.inc.php:55 pmd_general.php:133 -#: server_privileges.php:593 server_replication.php:314 tbl_tracking.php:268 +#: libraries/tbl_links.inc.php:54 pmd_general.php:133 +#: server_privileges.php:592 server_replication.php:313 tbl_tracking.php:263 msgid "Structure" msgstr "Structure" -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:544 db_structure.php:545 db_tracking.php:90 -#: libraries/Index.class.php:482 libraries/common.lib.php:1659 -#: libraries/db_links.inc.php:99 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:126 -#: server_databases.php:351 tbl_structure.php:26 tbl_structure.php:150 -#: tbl_structure.php:151 tbl_structure.php:470 +#: db_structure.php:82 db_structure.php:83 db_structure.php:95 +#: db_structure.php:96 db_structure.php:108 db_structure.php:109 +#: db_structure.php:530 db_structure.php:531 db_tracking.php:86 +#: libraries/Index.class.php:482 libraries/common.lib.php:1663 +#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 +#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 +#: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" msgstr "মুছে ফেল" -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:542 db_structure.php:543 libraries/common.lib.php:1658 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:104 +#: db_structure.php:84 db_structure.php:85 db_structure.php:97 +#: db_structure.php:98 db_structure.php:110 db_structure.php:111 +#: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 +#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 msgid "Empty" msgstr "খালি" -#: db_structure.php:315 libraries/tbl_links.inc.php:99 +#: db_structure.php:301 libraries/tbl_links.inc.php:98 #, php-format msgid "Table %s has been emptied" msgstr "Table %s has been emptied" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "View %s has been dropped" msgstr "View %s has been dropped" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "Table %s has been dropped" msgstr "Table %s has been dropped" -#: db_structure.php:332 +#: db_structure.php:318 msgid "Tracking is active." msgstr "" -#: db_structure.php:334 +#: db_structure.php:320 msgid "Tracking is not active." msgstr "" -#: db_structure.php:419 libraries/display_tbl.lib.php:1943 +#: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -#: db_structure.php:433 db_structure.php:447 libraries/header.inc.php:125 -#: libraries/tbl_info.inc.php:65 tbl_structure.php:184 test/theme.php:73 +#: db_structure.php:419 db_structure.php:433 libraries/header.inc.php:125 +#: libraries/tbl_info.inc.php:60 tbl_structure.php:183 test/theme.php:73 msgid "View" msgstr "View" -#: db_structure.php:484 libraries/db_structure.lib.php:40 -#: libraries/server_links.inc.php:69 server_replication.php:32 -#: server_replication.php:163 server_status.php:368 +#: db_structure.php:470 libraries/db_structure.lib.php:40 +#: libraries/server_links.inc.php:69 server_replication.php:31 +#: server_replication.php:162 server_status.php:368 msgid "Replication" msgstr "Replication" -#: db_structure.php:488 +#: db_structure.php:474 msgid "Sum" msgstr "যোগফল" -#: db_structure.php:495 libraries/StorageEngine.class.php:349 +#: db_structure.php:481 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s MySQL সার্ভার এর ডিফল্ট ষ্টোরেজ ইঞ্জিন" -#: db_structure.php:523 db_structure.php:540 db_structure.php:541 -#: libraries/display_tbl.lib.php:2080 libraries/display_tbl.lib.php:2085 -#: libraries/mult_submits.inc.php:15 server_databases.php:345 -#: server_databases.php:350 server_privileges.php:1588 tbl_structure.php:454 -#: tbl_structure.php:463 +#: db_structure.php:509 db_structure.php:526 db_structure.php:527 +#: libraries/display_tbl.lib.php:2039 libraries/display_tbl.lib.php:2044 +#: libraries/mult_submits.inc.php:15 server_databases.php:343 +#: server_databases.php:348 server_privileges.php:1592 tbl_structure.php:452 +#: tbl_structure.php:461 msgid "With selected:" msgstr "With selected:" -#: db_structure.php:526 libraries/display_tbl.lib.php:2075 -#: server_databases.php:347 server_privileges.php:569 -#: server_privileges.php:1591 tbl_structure.php:457 +#: db_structure.php:512 libraries/display_tbl.lib.php:2034 +#: server_databases.php:345 server_privileges.php:568 +#: server_privileges.php:1595 tbl_structure.php:455 msgid "Check All" msgstr "সব পরীক্ষা করুন" -#: db_structure.php:530 libraries/display_tbl.lib.php:2076 -#: libraries/replication_gui.lib.php:35 server_databases.php:349 -#: server_privileges.php:572 server_privileges.php:1595 tbl_structure.php:461 +#: db_structure.php:516 libraries/display_tbl.lib.php:2035 +#: libraries/replication_gui.lib.php:35 server_databases.php:347 +#: server_privileges.php:571 server_privileges.php:1599 tbl_structure.php:459 msgid "Uncheck All" msgstr "Uncheck All" -#: db_structure.php:535 +#: db_structure.php:521 msgid "Check tables having overhead" msgstr "ওভারহেড সহ টেবিল পরীক্ষা কর" -#: db_structure.php:546 db_structure.php:547 db_structure.php:598 -#: libraries/display_tbl.lib.php:2179 libraries/mult_submits.inc.php:27 -#: tbl_structure.php:491 tbl_structure.php:493 +#: db_structure.php:532 db_structure.php:533 db_structure.php:584 +#: libraries/display_tbl.lib.php:2138 libraries/mult_submits.inc.php:27 +#: tbl_structure.php:489 tbl_structure.php:491 msgid "Print view" msgstr "Print view" -#: db_structure.php:548 db_structure.php:549 libraries/mult_submits.inc.php:41 -#: tbl_operations.php:580 +#: db_structure.php:534 db_structure.php:535 libraries/mult_submits.inc.php:41 +#: tbl_operations.php:578 msgid "Check table" msgstr "টেবিল পরীক্ষা কর" -#: db_structure.php:550 db_structure.php:551 libraries/mult_submits.inc.php:46 -#: tbl_operations.php:620 tbl_structure.php:708 tbl_structure.php:710 +#: db_structure.php:536 db_structure.php:537 libraries/mult_submits.inc.php:46 +#: tbl_operations.php:618 tbl_structure.php:706 tbl_structure.php:708 msgid "Optimize table" msgstr "টেবিল অপটিমাইজ করুন" -#: db_structure.php:552 db_structure.php:553 libraries/mult_submits.inc.php:51 -#: tbl_operations.php:610 +#: db_structure.php:538 db_structure.php:539 libraries/mult_submits.inc.php:51 +#: tbl_operations.php:608 msgid "Repair table" msgstr "টেবিল রিপেয়ার করুন" -#: db_structure.php:554 db_structure.php:555 libraries/mult_submits.inc.php:56 -#: tbl_operations.php:600 +#: db_structure.php:540 db_structure.php:541 libraries/mult_submits.inc.php:56 +#: tbl_operations.php:598 msgid "Analyze table" msgstr "টেবিল বিশ্লেষণ কর" -#: db_structure.php:556 db_structure.php:557 libraries/db_links.inc.php:70 -#: libraries/display_export.lib.php:82 libraries/display_tbl.lib.php:2093 -#: libraries/display_tbl.lib.php:2224 libraries/mult_submits.inc.php:61 -#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:81 -#: pmd_pdf.php:83 pmd_pdf.php:108 server_privileges.php:1372 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 +#: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 +#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 +#: pmd_pdf.php:81 pmd_pdf.php:106 server_privileges.php:1376 #: setup/frames/menu.inc.php:22 tbl_row_action.php:58 msgid "Export" msgstr "Export" -#: db_structure.php:605 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:591 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "ডাটা অভিধান" -#: db_tracking.php:65 +#: db_tracking.php:61 #, fuzzy msgid "Tracked tables" msgstr "টেবিল পরীক্ষা কর" -#: db_tracking.php:70 libraries/export/htmlword.php:85 +#: db_tracking.php:66 libraries/export/htmlword.php:85 #: libraries/export/latex.php:152 libraries/export/odt.php:112 #: libraries/export/sql.php:339 libraries/export/texytext.php:84 #: libraries/export/xml.php:254 libraries/header.inc.php:105 -#: libraries/header_printview.inc.php:57 server_databases.php:168 -#: server_privileges.php:1652 server_privileges.php:1713 -#: server_privileges.php:1971 server_processlist.php:55 -#: server_synchronize.php:1178 server_synchronize.php:1182 -#: tbl_tracking.php:590 test/theme.php:64 +#: libraries/header_printview.inc.php:57 server_databases.php:166 +#: server_privileges.php:1656 server_privileges.php:1717 +#: server_privileges.php:1975 server_processlist.php:55 +#: server_synchronize.php:1177 server_synchronize.php:1181 +#: tbl_tracking.php:585 test/theme.php:64 msgid "Database" msgstr "ডাটাবেজ" -#: db_tracking.php:72 +#: db_tracking.php:68 #, fuzzy msgid "Last version" msgstr "Server version" -#: db_tracking.php:73 tbl_tracking.php:593 +#: db_tracking.php:69 tbl_tracking.php:588 #, fuzzy msgid "Created" msgstr "তৈরী করুন" -#: db_tracking.php:74 tbl_tracking.php:594 +#: db_tracking.php:70 tbl_tracking.php:589 msgid "Updated" msgstr "" -#: db_tracking.php:76 libraries/Index.class.php:439 -#: libraries/db_structure.lib.php:44 server_databases.php:202 -#: server_privileges.php:1534 server_privileges.php:1717 -#: server_privileges.php:2065 tbl_structure.php:186 +#: db_tracking.php:71 libraries/common.lib.php:1361 +#: libraries/server_links.inc.php:48 server_processlist.php:58 +#: tbl_tracking.php:590 test/theme.php:100 +msgid "Status" +msgstr "অবস্থা" + +#: db_tracking.php:72 libraries/Index.class.php:439 +#: libraries/db_structure.lib.php:44 server_databases.php:200 +#: server_privileges.php:1538 server_privileges.php:1721 +#: server_privileges.php:2069 tbl_structure.php:185 msgid "Action" msgstr "Action" -#: db_tracking.php:87 db_tracking.php:119 +#: db_tracking.php:83 db_tracking.php:115 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:105 tbl_tracking.php:547 tbl_tracking.php:605 -#: tbl_tracking.php:612 +#: db_tracking.php:101 tbl_tracking.php:542 tbl_tracking.php:600 +#: tbl_tracking.php:607 msgid "active" msgstr "" -#: db_tracking.php:107 tbl_tracking.php:549 tbl_tracking.php:607 -#: tbl_tracking.php:609 +#: db_tracking.php:103 tbl_tracking.php:544 tbl_tracking.php:602 +#: tbl_tracking.php:604 msgid "not active" msgstr "" -#: db_tracking.php:120 +#: db_tracking.php:116 #, fuzzy msgid "Versions" msgstr "পারসিয়ান" -#: db_tracking.php:121 tbl_tracking.php:378 tbl_tracking.php:623 +#: db_tracking.php:117 tbl_tracking.php:373 tbl_tracking.php:618 msgid "Tracking report" msgstr "" -#: db_tracking.php:122 tbl_tracking.php:250 tbl_tracking.php:623 +#: db_tracking.php:118 tbl_tracking.php:245 tbl_tracking.php:618 #, fuzzy msgid "Structure snapshot" msgstr "Structure only" -#: db_tracking.php:151 +#: db_tracking.php:147 #, fuzzy msgid "Untracked tables" msgstr "টেবিল পরীক্ষা কর" -#: db_tracking.php:171 db_tracking.php:173 tbl_structure.php:527 -#: tbl_structure.php:529 +#: db_tracking.php:167 db_tracking.php:169 tbl_structure.php:525 +#: tbl_structure.php:527 #, fuzzy msgid "Track table" msgstr "টেবিল পরীক্ষা কর" -#: db_tracking.php:199 +#: db_tracking.php:195 #, fuzzy msgid "Database Log" msgstr "ডাটাবেজ" @@ -804,29 +781,29 @@ msgstr "ডাটাবেজ" msgid "Selected export type has to be saved in file!" msgstr "Selected export type has to be saved in file!" -#: export.php:153 export.php:178 export.php:620 +#: export.php:152 export.php:177 export.php:615 #, php-format msgid "Insufficient space to save the file %s." msgstr "Insufficient space to save the file %s." -#: export.php:287 +#: export.php:286 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "" "File %s already exists on server, change filename or check overwrite option." -#: export.php:291 export.php:295 +#: export.php:290 export.php:294 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "The web server does not have permission to save the file %s." -#: export.php:622 +#: export.php:617 #, php-format msgid "Dump has been saved to file %s." msgstr "ডাম্প %s ফাইল এ সেভ করা হয়েছে" -#: import.php:59 +#: import.php:58 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -835,14 +812,14 @@ msgstr "" "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:840 -#: libraries/File.class.php:950 +#: import.php:277 import.php:330 libraries/File.class.php:566 +#: libraries/File.class.php:676 msgid "File could not be read" msgstr "ফাইল পড়া যায়নি" -#: import.php:286 import.php:295 import.php:314 import.php:323 -#: libraries/File.class.php:1020 libraries/File.class.php:1028 -#: libraries/File.class.php:1044 libraries/File.class.php:1052 +#: import.php:285 import.php:294 import.php:313 import.php:322 +#: libraries/File.class.php:746 libraries/File.class.php:754 +#: libraries/File.class.php:770 libraries/File.class.php:778 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -851,7 +828,7 @@ msgstr "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." -#: import.php:336 +#: import.php:335 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -861,29 +838,29 @@ msgstr "" "file size exceeded the maximum size permitted by your PHP configuration. See " "FAQ 1.16." -#: import.php:371 libraries/display_import.lib.php:23 +#: import.php:370 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "ইমপোর্ট প্লাগ ইন লোড করা যায়নি, আপনার ইন্সষ্টলেশন পরীক্ষা করুন" -#: import.php:396 +#: import.php:395 msgid "The bookmark has been deleted." msgstr "বুকমার্কটি মুছে ফেলা হয়েছে" -#: import.php:400 +#: import.php:399 msgid "Showing bookmark" msgstr "বুকমার্ক দেখান" -#: import.php:402 sql.php:625 +#: import.php:401 sql.php:618 #, php-format msgid "Bookmark %s created" msgstr "বুকমার্ক %s তৈরী করা হয়েছে" -#: import.php:408 import.php:414 +#: import.php:407 import.php:413 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "ইম্পোর্ট সফলভাবে সম্পন্ন হয়েছে। %d সংখ্যক query সম্পাদন করা হয়েছে" -#: import.php:423 +#: import.php:422 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -891,7 +868,7 @@ msgstr "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." -#: import.php:425 +#: import.php:424 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -899,19 +876,19 @@ msgstr "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." -#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:240 +#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:239 #: user_password.php:110 msgid "Back" msgstr "পিছনে" -#: index.php:188 +#: index.php:183 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin is more friendly with a frames-capable browser." -#: js/messages.php:25 server_synchronize.php:344 server_synchronize.php:356 -#: server_synchronize.php:372 server_synchronize.php:379 -#: server_synchronize.php:738 server_synchronize.php:766 -#: server_synchronize.php:794 server_synchronize.php:806 +#: js/messages.php:25 server_synchronize.php:343 server_synchronize.php:355 +#: server_synchronize.php:371 server_synchronize.php:378 +#: server_synchronize.php:737 server_synchronize.php:765 +#: server_synchronize.php:793 server_synchronize.php:805 msgid "Click to select" msgstr "" @@ -919,15 +896,15 @@ msgstr "" msgid "Click to unselect" msgstr "" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:88 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:87 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" statements are disabled." -#: js/messages.php:30 libraries/mult_submits.inc.php:257 sql.php:187 +#: js/messages.php:30 libraries/mult_submits.inc.php:256 sql.php:186 msgid "Do you really want to " msgstr "আপনি কি সত্যি চান?" -#: js/messages.php:31 libraries/mult_submits.inc.php:257 sql.php:171 +#: js/messages.php:31 libraries/mult_submits.inc.php:256 sql.php:170 msgid "You are about to DESTROY a complete database!" msgstr "আপনি একটি সম্পূর্ন ডাটাবেজ প্রায় মুছে ফেলছেন" @@ -956,11 +933,11 @@ msgstr "হোষ্ট নাম পূরন করা হয়নি" msgid "The user name is empty!" msgstr "The user name is empty!" -#: js/messages.php:44 server_privileges.php:1228 user_password.php:65 +#: js/messages.php:44 server_privileges.php:1229 user_password.php:65 msgid "The password is empty!" msgstr "পাসওয়ার্ড দেওয়া হয়নি" -#: js/messages.php:45 server_privileges.php:1226 user_password.php:68 +#: js/messages.php:45 server_privileges.php:1227 user_password.php:68 msgid "The passwords aren't the same!" msgstr "The passwords aren't the same!" @@ -968,29 +945,29 @@ msgstr "The passwords aren't the same!" msgid "Cancel" msgstr "" -#: js/messages.php:52 pmd_save_pos.php:53 +#: js/messages.php:52 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "Modifications have been saved" -#: js/messages.php:53 pmd_relation_upd.php:48 +#: js/messages.php:53 pmd_relation_upd.php:47 #, fuzzy msgid "Relation deleted" msgstr "Relation view" -#: js/messages.php:54 pmd_relation_new.php:63 +#: js/messages.php:54 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:55 pmd_relation_new.php:85 +#: js/messages.php:55 pmd_relation_new.php:84 #, fuzzy msgid "Internal relation added" msgstr "Internal relations" -#: js/messages.php:56 pmd_relation_new.php:62 pmd_relation_new.php:87 +#: js/messages.php:56 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:57 pmd_relation_new.php:30 +#: js/messages.php:57 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "" @@ -998,13 +975,13 @@ msgstr "" msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:59 libraries/relation.lib.php:94 -#: libraries/relation.lib.php:106 +#: js/messages.php:59 libraries/relation.lib.php:89 +#: libraries/relation.lib.php:101 msgid "General relation features" msgstr "General relation features" -#: js/messages.php:59 libraries/relation.lib.php:88 -#: libraries/relation.lib.php:95 +#: js/messages.php:59 libraries/relation.lib.php:83 +#: libraries/relation.lib.php:90 msgid "Disabled" msgstr "বন্ধ করা হয়েছে" @@ -1020,7 +997,7 @@ msgstr "" msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:547 +#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" @@ -1050,10 +1027,10 @@ msgid "Prev" msgstr "পূর্ববর্তী" #. l10n: Display text for next month link in calendar -#: js/messages.php:81 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:337 -#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:422 -#: tbl_structure.php:800 +#: js/messages.php:81 libraries/common.lib.php:2358 +#: libraries/common.lib.php:2361 libraries/display_tbl.lib.php:336 +#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 +#: tbl_structure.php:798 msgid "Next" msgstr "পরবর্তী" @@ -1127,27 +1104,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1562 +#: js/messages.php:101 libraries/common.lib.php:1566 msgid "Jan" msgstr "জানুয়ারী" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1564 +#: js/messages.php:103 libraries/common.lib.php:1568 msgid "Feb" msgstr "ফেব্রুয়ারী" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1566 +#: js/messages.php:105 libraries/common.lib.php:1570 msgid "Mar" msgstr "মার্চ" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1568 +#: js/messages.php:107 libraries/common.lib.php:1572 msgid "Apr" msgstr "এপ্রিল" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1570 +#: js/messages.php:109 libraries/common.lib.php:1574 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1155,37 +1132,37 @@ msgid "May" msgstr "মে" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1572 +#: js/messages.php:111 libraries/common.lib.php:1576 msgid "Jun" msgstr "জুন" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1574 +#: js/messages.php:113 libraries/common.lib.php:1578 msgid "Jul" msgstr "জুলাই" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1576 +#: js/messages.php:115 libraries/common.lib.php:1580 msgid "Aug" msgstr "আগস্ট" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1578 +#: js/messages.php:117 libraries/common.lib.php:1582 msgid "Sep" msgstr "সেপ্টেমবর" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1580 +#: js/messages.php:119 libraries/common.lib.php:1584 msgid "Oct" msgstr "অক্টোবর" #. l10n: Short month name -#: js/messages.php:121 libraries/common.lib.php:1582 +#: js/messages.php:121 libraries/common.lib.php:1586 msgid "Nov" msgstr "নভেম্বর" #. l10n: Short month name -#: js/messages.php:123 libraries/common.lib.php:1584 +#: js/messages.php:123 libraries/common.lib.php:1588 msgid "Dec" msgstr "ডিসেম্বর" @@ -1226,37 +1203,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1587 +#: js/messages.php:136 libraries/common.lib.php:1591 msgid "Sun" msgstr "রবিবার" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1589 +#: js/messages.php:138 libraries/common.lib.php:1593 msgid "Mon" msgstr "সোমবার" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1591 +#: js/messages.php:140 libraries/common.lib.php:1595 msgid "Tue" msgstr "মঙ্গলবার" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1593 +#: js/messages.php:142 libraries/common.lib.php:1597 msgid "Wed" msgstr "বুধবার" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1595 +#: js/messages.php:144 libraries/common.lib.php:1599 msgid "Thu" msgstr "বৃহস্পতিবার" #. l10n: Short week day name -#: js/messages.php:146 libraries/common.lib.php:1597 +#: js/messages.php:146 libraries/common.lib.php:1601 msgid "Fri" msgstr "শুক্রবার" #. l10n: Short week day name -#: js/messages.php:148 libraries/common.lib.php:1599 +#: js/messages.php:148 libraries/common.lib.php:1603 msgid "Sat" msgstr "শনিবার" @@ -1334,76 +1311,75 @@ msgstr "per second" msgid "Font size" msgstr "ফন্ট এর আকার" -#: libraries/File.class.php:336 libraries/File.class.php:424 -#: libraries/File.class.php:561 libraries/File.class.php:700 -msgid "Unknown error in file upload." -msgstr "" - -#: libraries/File.class.php:406 +#: libraries/File.class.php:315 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:409 +#: libraries/File.class.php:318 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:412 +#: libraries/File.class.php:321 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:415 +#: libraries/File.class.php:324 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:418 +#: libraries/File.class.php:327 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:421 +#: libraries/File.class.php:330 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:898 +#: libraries/File.class.php:333 +msgid "Unknown error in file upload." +msgstr "" + +#: libraries/File.class.php:624 #, fuzzy msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "হয়ত আনুমানিক। FAQ ৩.১১ দেখ। " -#: libraries/Index.class.php:427 tbl_relation.php:528 +#: libraries/Index.class.php:427 tbl_relation.php:526 msgid "No index defined!" msgstr "No index defined!" -#: libraries/Index.class.php:432 server_databases.php:131 tbl_tracking.php:315 +#: libraries/Index.class.php:432 server_databases.php:129 tbl_tracking.php:310 msgid "Indexes" msgstr "ইন্ডেস্ক সমূহ" #: libraries/Index.class.php:443 libraries/mult_submits.inc.php:102 -#: libraries/tbl_properties.inc.php:518 tbl_structure.php:32 -#: tbl_structure.php:154 tbl_structure.php:158 tbl_structure.php:473 -#: tbl_tracking.php:321 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:31 +#: tbl_structure.php:153 tbl_structure.php:157 tbl_structure.php:471 +#: tbl_tracking.php:316 msgid "Unique" msgstr "Unique" -#: libraries/Index.class.php:444 tbl_tracking.php:322 +#: libraries/Index.class.php:444 tbl_tracking.php:317 msgid "Packed" msgstr "" -#: libraries/Index.class.php:446 tbl_tracking.php:324 +#: libraries/Index.class.php:446 tbl_tracking.php:319 msgid "Cardinality" msgstr "Cardinality" -#: libraries/Index.class.php:449 tbl_tracking.php:278 tbl_tracking.php:327 +#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322 #, fuzzy msgid "Comment" msgstr "মন্তব্যসমূহ" #: libraries/Index.class.php:465 libraries/common.lib.php:609 -#: libraries/common.lib.php:1198 libraries/display_tbl.lib.php:1116 +#: libraries/common.lib.php:1191 libraries/display_tbl.lib.php:1115 #: libraries/import.lib.php:1119 libraries/import.lib.php:1143 -#: pdf_pages.php:284 setup/frames/index.inc.php:124 +#: pdf_pages.php:283 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:349 tbl_row_action.php:68 msgid "Edit" msgstr "সম্পাদনা কর" @@ -1425,15 +1401,15 @@ msgid "" msgstr "" #: libraries/List_Database.class.php:430 libraries/server_links.inc.php:40 -#: server_databases.php:87 server_privileges.php:1652 +#: server_databases.php:85 server_privileges.php:1656 #: setup/lib/messages.inc.php:107 test/theme.php:92 msgid "Databases" msgstr "ডাটাবেজসমূহ Databases" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:259 libraries/import.lib.php:134 pdf_schema.php:31 -#: pdf_schema.php:231 tbl_change.php:1023 tbl_operations.php:212 -#: tbl_relation.php:289 view_operations.php:61 +#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 +#: tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "ভূল" @@ -1460,41 +1436,41 @@ msgid_plural "%1$d rows inserted." msgstr[0] "No rows selected" msgstr[1] "No rows selected" -#: libraries/StorageEngine.class.php:196 +#: libraries/StorageEngine.class.php:194 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:352 +#: libraries/StorageEngine.class.php:354 #, php-format msgid "%s is available on this MySQL server." msgstr "%s is available on this MySQL server." -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:357 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "MySQL সার্ভার এর জন্য %s বন্ধ করা হয়েছে ." -#: libraries/StorageEngine.class.php:359 +#: libraries/StorageEngine.class.php:361 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "এই MySQL সার্ভার %s ধরনের স্টোরেজ ইঞ্জিন সমর্থন করেনা." -#: libraries/Table.class.php:1018 +#: libraries/Table.class.php:1017 msgid "Invalid database" msgstr "Invalid database" -#: libraries/Table.class.php:1032 tbl_get_field.php:25 +#: libraries/Table.class.php:1031 tbl_get_field.php:25 msgid "Invalid table name" msgstr "Invalid table name" -#: libraries/Table.class.php:1047 +#: libraries/Table.class.php:1046 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "Error renaming table %1$s to %2$s" -#: libraries/Table.class.php:1131 +#: libraries/Table.class.php:1129 #, php-format msgid "Table %s has been renamed to %s" msgstr "Table %s has been renamed to %s" @@ -1512,22 +1488,22 @@ msgstr "No preview available." msgid "take it" msgstr "take it" -#: libraries/Theme_Manager.class.php:114 +#: 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:152 +#: libraries/Theme_Manager.class.php:147 #, php-format msgid "Theme %s not found!" msgstr "Theme %s not found!" -#: libraries/Theme_Manager.class.php:220 +#: 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:296 test/theme.php:160 themes.php:20 +#: libraries/Theme_Manager.class.php:291 test/theme.php:160 themes.php:20 #: themes.php:40 msgid "Theme / Style" msgstr "Theme / Style" @@ -1640,19 +1616,19 @@ msgstr "" msgid "Authenticating..." msgstr "" -#: libraries/blobstreaming.lib.php:689 +#: libraries/blobstreaming.lib.php:340 msgid "View image" msgstr "" -#: libraries/blobstreaming.lib.php:693 +#: libraries/blobstreaming.lib.php:344 msgid "Play audio" msgstr "" -#: libraries/blobstreaming.lib.php:698 +#: libraries/blobstreaming.lib.php:349 msgid "View video" msgstr "" -#: libraries/blobstreaming.lib.php:702 +#: libraries/blobstreaming.lib.php:353 msgid "Download file" msgstr "" @@ -1707,7 +1683,7 @@ msgstr "সার্ভার" msgid "Invalid authentication method set in configuration:" msgstr "Invalid authentication method set in configuration:" -#: libraries/common.inc.php:909 +#: libraries/common.inc.php:908 #, php-format msgid "You should upgrade to %s %s or later." msgstr "You should upgrade to %s %s or later." @@ -1733,7 +1709,8 @@ msgstr "bn" #: libraries/common.lib.php:425 libraries/common.lib.php:427 #: libraries/common.lib.php:429 libraries/common.lib.php:445 #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 -#: libraries/display_export.lib.php:163 libraries/relation.lib.php:84 +#: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 +#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 #: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" @@ -1748,148 +1725,148 @@ msgstr "SQL query" msgid "MySQL said: " msgstr "MySQL said: " -#: libraries/common.lib.php:1136 +#: libraries/common.lib.php:1129 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1174 setup/lib/messages.inc.php:350 +#: libraries/common.lib.php:1167 setup/lib/messages.inc.php:350 msgid "Explain SQL" msgstr "SQL ব্যাখ্যা কর" -#: libraries/common.lib.php:1177 +#: libraries/common.lib.php:1170 msgid "Skip Explain SQL" msgstr "Skip Explain SQL" -#: libraries/common.lib.php:1211 +#: libraries/common.lib.php:1204 msgid "Without PHP Code" msgstr "PHP কোড ছাড়া" -#: libraries/common.lib.php:1214 setup/lib/messages.inc.php:352 +#: libraries/common.lib.php:1207 setup/lib/messages.inc.php:352 msgid "Create PHP Code" msgstr "PHP কোড তৈরী করুনCreate PHP Code" -#: libraries/common.lib.php:1232 server_status.php:451 +#: libraries/common.lib.php:1225 server_status.php:451 #: setup/lib/messages.inc.php:351 msgid "Refresh" msgstr "Refresh" -#: libraries/common.lib.php:1241 +#: libraries/common.lib.php:1234 msgid "Skip Validate SQL" msgstr "Skip Validate SQL" -#: libraries/common.lib.php:1244 setup/lib/messages.inc.php:353 +#: libraries/common.lib.php:1237 setup/lib/messages.inc.php:353 msgid "Validate SQL" msgstr "Validate SQL" -#: libraries/common.lib.php:1283 +#: libraries/common.lib.php:1287 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1285 +#: libraries/common.lib.php:1289 #, fuzzy #| msgid "Engines" msgid "Inline" msgstr "ইঞ্জিনসমূহ" -#: libraries/common.lib.php:1339 libraries/common.lib.php:1354 +#: libraries/common.lib.php:1343 libraries/common.lib.php:1358 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1358 libraries/tbl_triggers.lib.php:27 +#: libraries/common.lib.php:1362 libraries/tbl_triggers.lib.php:27 #: server_processlist.php:57 msgid "Time" msgstr "সময়" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "B" msgstr "বাইট" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "KiB" msgstr "কিলোবাইট" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "MiB" msgstr "মেগাবাইট" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "GiB" msgstr "গিগাবাইট" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "TiB" msgstr "টেরাবাইট" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "PiB" msgstr "পেটাবাইট" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "EiB" msgstr "এক্সাবাইট" #. l10n: Thousands separator -#: libraries/common.lib.php:1424 +#: libraries/common.lib.php:1428 msgid "," msgstr "," #. l10n: Decimal separator -#: libraries/common.lib.php:1426 +#: libraries/common.lib.php:1430 msgid "." msgstr "." #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1603 +#: libraries/common.lib.php:1607 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y at %I:%M %p" -#: libraries/common.lib.php:1909 +#: libraries/common.lib.php:1913 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s দিন, %s মাস, %s মিনিট and %s সেকেণ্ড" -#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 -#: libraries/display_tbl.lib.php:289 server_status.php:718 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 +#: libraries/display_tbl.lib.php:288 server_status.php:718 msgid "Begin" msgstr "শুরু" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 -#: libraries/display_tbl.lib.php:290 server_binlog.php:154 +#: libraries/common.lib.php:2328 libraries/common.lib.php:2331 +#: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "পূর্ববর্তী" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 -#: libraries/display_tbl.lib.php:352 +#: libraries/common.lib.php:2359 libraries/common.lib.php:2362 +#: libraries/display_tbl.lib.php:351 msgid "End" msgstr "End" -#: libraries/common.lib.php:2429 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "Jump to database "%s"." -#: libraries/common.lib.php:2448 +#: libraries/common.lib.php:2453 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2828 libraries/common.lib.php:2835 -#: libraries/db_links.inc.php:67 libraries/export/sql.php:24 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 +#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 -#: libraries/tbl_links.inc.php:59 querywindow.php:89 test/theme.php:96 +#: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2837 libraries/db_links.inc.php:103 -#: libraries/tbl_links.inc.php:94 libraries/tbl_links.inc.php:116 -#: view_operations.php:88 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: view_operations.php:87 msgid "Operations" msgstr "Operations" -#: libraries/core.lib.php:282 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1906,38 +1883,38 @@ msgstr "Sent" msgid "Name" msgstr "নাম" -#: libraries/db_links.inc.php:44 +#: libraries/db_links.inc.php:43 #, php-format msgid "Database %s has been dropped." msgstr "%s ডাটাবেজ মুছে ফেলা হয়েছে" -#: libraries/db_links.inc.php:56 libraries/db_links.inc.php:57 -#: libraries/db_links.inc.php:58 +#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 +#: libraries/db_links.inc.php:57 msgid "Database seems to be empty!" msgstr "" -#: libraries/db_links.inc.php:80 libraries/relation.lib.php:142 -#: libraries/tbl_links.inc.php:68 +#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:85 +#: libraries/db_links.inc.php:84 msgid "Query" msgstr "Query" -#: libraries/db_links.inc.php:90 libraries/relation.lib.php:138 +#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:97 libraries/server_links.inc.php:87 -#: libraries/tbl_links.inc.php:90 pmd_pdf.php:83 pmd_pdf.php:109 +#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "ইম্পোর্ট কর" -#: libraries/db_links.inc.php:110 libraries/server_links.inc.php:65 -#: server_privileges.php:111 server_privileges.php:1714 -#: server_privileges.php:2063 test/theme.php:116 +#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: server_privileges.php:110 server_privileges.php:1718 +#: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" msgstr "Privileges" @@ -1949,14 +1926,14 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1847 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1806 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "হয়ত আনুমানিক। FAQ ৩.১১ দেখ। " -#: libraries/db_structure.lib.php:60 server_databases.php:141 -#: tbl_printview.php:334 tbl_structure.php:681 +#: libraries/db_structure.lib.php:60 server_databases.php:139 +#: tbl_printview.php:333 tbl_structure.php:679 msgid "Overhead" msgstr "Overhead" @@ -1973,7 +1950,7 @@ msgstr "The server is not responding" 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:358 tbl_structure.php:607 +#: libraries/dbi/mysql.dbi.lib.php:358 tbl_structure.php:605 msgid "Details..." msgstr "" @@ -1983,22 +1960,22 @@ msgid "Change password" msgstr "পাসওয়ার্ড পরিবর্তন কর" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:807 +#: libraries/replication_gui.lib.php:347 server_privileges.php:806 msgid "No Password" msgstr "কোন পাসওয়ার্ড নাই" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1530 server_synchronize.php:1174 +#: libraries/replication_gui.lib.php:351 server_privileges.php:795 +#: server_privileges.php:799 server_privileges.php:810 +#: server_privileges.php:1534 server_synchronize.php:1173 msgid "Password" msgstr "পাসওয়ার্ড" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:815 server_privileges.php:818 +#: server_privileges.php:814 server_privileges.php:817 msgid "Re-type" msgstr "Re-type" @@ -2021,8 +1998,8 @@ msgstr "নতুন ডাটাবেজ় তৈরী কর" msgid "Create" msgstr "তৈরী করুন" -#: libraries/display_create_database.lib.php:39 server_privileges.php:113 -#: server_privileges.php:1419 server_replication.php:34 +#: libraries/display_create_database.lib.php:39 server_privileges.php:112 +#: server_privileges.php:1423 server_replication.php:33 msgid "No Privileges" msgstr "কোন সুবিধা নাই" @@ -2043,50 +2020,50 @@ msgstr "%s ডাটাবেজ় এ নতুন টেবিল তৈর msgid "Number of columns" msgstr "Number of fields" -#: libraries/display_export.lib.php:41 +#: libraries/display_export.lib.php:35 msgid "Could not load export plugins, please check your installation!" msgstr "এক্সপোর্ট প্লাগ ইন লোড করা যায়নি, আপনার ইন্সষ্টলেশন পরীক্ষা করুন" -#: libraries/display_export.lib.php:106 +#: libraries/display_export.lib.php:100 #, fuzzy, php-format #| msgid "Dump %s row(s) starting at record # %s" msgid "Dump %s row(s) starting at row # %s" msgstr "Dump %s row(s) starting at record # %s." -#: libraries/display_export.lib.php:114 +#: libraries/display_export.lib.php:108 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:124 setup/lib/messages.inc.php:79 +#: libraries/display_export.lib.php:118 setup/lib/messages.inc.php:79 msgid "Save as file" msgstr "ফাইল হিসেবে সেভ করুন" -#: libraries/display_export.lib.php:133 +#: libraries/display_export.lib.php:127 #, php-format msgid "Save on server in %s directory" msgstr "Save on server in %s directory" -#: libraries/display_export.lib.php:141 setup/lib/messages.inc.php:87 +#: libraries/display_export.lib.php:135 setup/lib/messages.inc.php:87 msgid "Overwrite existing file(s)" msgstr "Overwrite existing file(s)" -#: libraries/display_export.lib.php:147 +#: libraries/display_export.lib.php:141 msgid "File name template" msgstr "ফাইল নাম এর টেমপ্লেট" -#: libraries/display_export.lib.php:151 +#: libraries/display_export.lib.php:145 msgid "server name" msgstr "সার্ভার এর নাম" -#: libraries/display_export.lib.php:154 +#: libraries/display_export.lib.php:148 msgid "database name" msgstr "ডাটাবেজ এর নাম" -#: libraries/display_export.lib.php:157 +#: libraries/display_export.lib.php:151 msgid "table name" msgstr "টেবিল এর নাম" -#: libraries/display_export.lib.php:161 +#: libraries/display_export.lib.php:155 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2097,39 +2074,39 @@ msgstr "" "formatting strings. Additionally the following transformations will happen: " "%3$s. Other text will be kept as is." -#: libraries/display_export.lib.php:202 +#: libraries/display_export.lib.php:196 msgid "remember template" msgstr "টেমপ্লেট মনে রাখ" -#: libraries/display_export.lib.php:210 libraries/display_import.lib.php:177 +#: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 #: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 msgid "Character set of the file:" msgstr "ফাইল এর অক্ষরসমূহঃ" -#: libraries/display_export.lib.php:235 setup/lib/messages.inc.php:81 +#: libraries/display_export.lib.php:229 setup/lib/messages.inc.php:81 msgid "Compression" msgstr "সংকোচন" -#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:196 -#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:529 -#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:574 -#: server_privileges.php:1867 server_processlist.php:74 +#: libraries/display_export.lib.php:234 libraries/display_import.lib.php:196 +#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:528 +#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:573 +#: server_privileges.php:1871 server_processlist.php:74 msgid "None" msgstr "কোনটিই নয়" -#: libraries/display_export.lib.php:247 +#: libraries/display_export.lib.php:241 msgid "\"zipped\"" msgstr "\"zipped\"" -#: libraries/display_export.lib.php:253 +#: libraries/display_export.lib.php:247 msgid "\"gzipped\"" msgstr "\"gzipped\"" -#: libraries/display_export.lib.php:259 +#: libraries/display_export.lib.php:253 msgid "\"bzipped\"" msgstr "\"bzipped\"" -#: libraries/display_export.lib.php:274 libraries/export/sql.php:42 +#: libraries/display_export.lib.php:268 libraries/export/sql.php:42 #: libraries/import/sql.php:31 msgid "SQL compatibility mode" msgstr "SQL compatibility mode" @@ -2164,12 +2141,12 @@ msgid "File uploads are not allowed on this server." msgstr "File uploads are not allowed on this server." #: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 -#: tbl_change.php:1024 +#: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "The directory you set for upload work cannot be reached" #: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 -#: tbl_change.php:1027 +#: tbl_change.php:925 msgid "web server upload directory" msgstr "web server upload directory" @@ -2254,43 +2231,43 @@ msgstr "পাতার আকার" msgid "Language" msgstr "ভাষা" -#: libraries/display_tbl.lib.php:303 +#: libraries/display_tbl.lib.php:302 #, php-format msgid "%d is not valid row number." msgstr "%d is not valid row number." -#: libraries/display_tbl.lib.php:309 +#: libraries/display_tbl.lib.php:308 #, fuzzy #| msgid "row(s) starting from record #" msgid "row(s) starting from row #" msgstr "row(s) starting from record #" -#: libraries/display_tbl.lib.php:315 +#: libraries/display_tbl.lib.php:314 msgid "horizontal" msgstr "আনুভূমিক" -#: libraries/display_tbl.lib.php:316 +#: libraries/display_tbl.lib.php:315 msgid "horizontal (rotated headers)" msgstr "horizontal (rotated headers)" -#: libraries/display_tbl.lib.php:317 +#: libraries/display_tbl.lib.php:316 msgid "vertical" msgstr "লম্ব" -#: libraries/display_tbl.lib.php:323 +#: libraries/display_tbl.lib.php:322 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "in %s mode and repeat headers after %s cells" -#: libraries/display_tbl.lib.php:345 +#: libraries/display_tbl.lib.php:344 msgid "This operation could take a long time. Proceed anyway?" msgstr "This operation could take a long time. Proceed anyway?" -#: libraries/display_tbl.lib.php:511 +#: libraries/display_tbl.lib.php:510 msgid "Sort by key" msgstr "Sort by key" -#: libraries/display_tbl.lib.php:554 libraries/export/codegen.php:38 +#: libraries/display_tbl.lib.php:553 libraries/export/codegen.php:38 #: libraries/export/csv.php:29 libraries/export/excel.php:34 #: libraries/export/htmlword.php:28 libraries/export/latex.php:32 #: libraries/export/mediawiki.php:21 libraries/export/ods.php:26 @@ -2300,101 +2277,101 @@ msgstr "Sort by key" #: libraries/export/xlsx.php:26 libraries/export/xml.php:23 #: libraries/export/yaml.php:27 libraries/import.lib.php:1114 #: libraries/import.lib.php:1136 libraries/import/csv.php:31 -#: libraries/import/docsql.php:33 libraries/import/ldi.php:46 +#: libraries/import/docsql.php:32 libraries/import/ldi.php:46 #: libraries/import/ods.php:30 libraries/import/sql.php:19 #: libraries/import/xls.php:25 libraries/import/xlsx.php:25 -#: libraries/import/xml.php:25 tbl_select.php:264 tbl_structure.php:752 +#: libraries/import/xml.php:25 tbl_select.php:263 tbl_structure.php:750 #, fuzzy msgid "Options" msgstr "Operations" -#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:569 +#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:568 msgid "Partial Texts" msgstr "Partial Texts" -#: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:573 +#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:572 msgid "Full Texts" msgstr "Full Texts" -#: libraries/display_tbl.lib.php:586 +#: libraries/display_tbl.lib.php:585 #, fuzzy msgid "Relational key" msgstr "Relational schema" -#: libraries/display_tbl.lib.php:587 +#: libraries/display_tbl.lib.php:586 #, fuzzy #| msgid "Relational schema" msgid "Relational display column" msgstr "Relational schema" -#: libraries/display_tbl.lib.php:594 +#: libraries/display_tbl.lib.php:593 msgid "Show binary contents" msgstr "" -#: libraries/display_tbl.lib.php:596 +#: libraries/display_tbl.lib.php:595 msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:598 +#: libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "" -#: libraries/display_tbl.lib.php:606 pmd_general.php:140 tbl_change.php:312 -#: tbl_change.php:318 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:307 +#: tbl_change.php:313 msgid "Hide" msgstr "" -#: libraries/display_tbl.lib.php:606 libraries/relation.lib.php:122 -#: libraries/tbl_properties.inc.php:143 transformation_overview.php:46 +#: libraries/display_tbl.lib.php:605 libraries/relation.lib.php:117 +#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46 msgid "Browser transformation" msgstr "Browser transformation" -#: libraries/display_tbl.lib.php:1125 libraries/display_tbl.lib.php:1129 -#: libraries/display_tbl.lib.php:1131 +#: libraries/display_tbl.lib.php:1124 libraries/display_tbl.lib.php:1128 +#: libraries/display_tbl.lib.php:1130 msgid "Execute bookmarked query" msgstr "Execute bookmarked query" -#: libraries/display_tbl.lib.php:1144 libraries/display_tbl.lib.php:1156 +#: libraries/display_tbl.lib.php:1143 libraries/display_tbl.lib.php:1155 msgid "The row has been deleted" msgstr "সারিটি মুছে ফেলা হয়েছে" -#: libraries/display_tbl.lib.php:1183 libraries/display_tbl.lib.php:2055 +#: libraries/display_tbl.lib.php:1182 libraries/display_tbl.lib.php:2014 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "Kill" -#: libraries/display_tbl.lib.php:1933 +#: libraries/display_tbl.lib.php:1892 msgid "in query" msgstr "in query" -#: libraries/display_tbl.lib.php:1951 +#: libraries/display_tbl.lib.php:1910 msgid "Showing rows" msgstr "Showing rows" -#: libraries/display_tbl.lib.php:1961 +#: libraries/display_tbl.lib.php:1920 msgid "total" msgstr "মোট" -#: libraries/display_tbl.lib.php:1969 sql.php:523 +#: libraries/display_tbl.lib.php:1928 sql.php:522 #, php-format msgid "Query took %01.4f sec" msgstr "Query took %01.4f sec" -#: libraries/display_tbl.lib.php:2088 libraries/mult_submits.inc.php:112 -#: querywindow.php:115 querywindow.php:119 querywindow.php:122 -#: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:469 +#: libraries/display_tbl.lib.php:2047 libraries/mult_submits.inc.php:112 +#: querywindow.php:114 querywindow.php:118 querywindow.php:121 +#: tbl_structure.php:23 tbl_structure.php:148 tbl_structure.php:467 msgid "Change" msgstr "Change" -#: libraries/display_tbl.lib.php:2158 +#: libraries/display_tbl.lib.php:2117 msgid "Query results operations" msgstr "Query results operations" -#: libraries/display_tbl.lib.php:2186 +#: libraries/display_tbl.lib.php:2145 msgid "Print view (with full texts)" msgstr "Print view (with full texts)" -#: libraries/display_tbl.lib.php:2359 +#: libraries/display_tbl.lib.php:2318 msgid "Link not found" msgstr "লিংক পাওয়া যায়নি" @@ -2450,9 +2427,9 @@ msgstr "InnoDB Status" msgid "Buffer Pool Usage" msgstr "Buffer Pool Usage" -#: libraries/engines/innodb.lib.php:168 server_databases.php:136 -#: server_databases.php:304 server_status.php:524 server_status.php:585 -#: server_status.php:606 tbl_printview.php:349 tbl_structure.php:695 +#: libraries/engines/innodb.lib.php:168 server_databases.php:134 +#: server_databases.php:302 server_status.php:524 server_status.php:585 +#: server_status.php:606 tbl_printview.php:348 tbl_structure.php:693 msgid "Total" msgstr "মোট" @@ -2588,6 +2565,78 @@ msgstr "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." +#: libraries/engines/pbms.lib.php:31 +msgid "Garbage Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:32 +msgid "The percentage of garbage in a repository file before it is compacted." +msgstr "" + +#: libraries/engines/pbms.lib.php:36 libraries/replication_gui.lib.php:69 +#: server_synchronize.php:1161 +#, fuzzy +msgid "Port" +msgstr "সাজাঁন" + +#: libraries/engines/pbms.lib.php:37 +msgid "" +"The port for the PBMS stream-based communications. Setting this value to 0 " +"will disable HTTP communication with the daemon." +msgstr "" + +#: libraries/engines/pbms.lib.php:41 +msgid "Repository Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:42 +msgid "" +"The maximum size of a BLOB repository file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:46 +msgid "Temp Blob Timeout" +msgstr "" + +#: libraries/engines/pbms.lib.php:47 +msgid "" +"The timeout, in seconds, for temporary BLOBs. Uploaded BLOB data is removed " +"after this time, unless they are referenced by a record in the database." +msgstr "" + +#: libraries/engines/pbms.lib.php:51 +msgid "Temp Log Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:52 +msgid "" +"The maximum size of a temporary BLOB log file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:56 +msgid "Max Keep Alive" +msgstr "" + +#: libraries/engines/pbms.lib.php:57 +msgid "" +"The timeout for inactive connection with the keep-alive flag set. After this " +"time the connection will be closed. The time-out is in milliseconds (1/1000)." +msgstr "" + +#: libraries/engines/pbms.lib.php:61 +msgid "Metadata Headers" +msgstr "" + +#: libraries/engines/pbms.lib.php:62 +msgid "" +"A \":\" delimited list of metadata headers to be used to initialize the " +"pbms_metadata_header table when a database is created." +msgstr "" + #: libraries/engines/pbxt.lib.php:22 msgid "Index cache size" msgstr "" @@ -2713,7 +2762,7 @@ msgid "" msgstr "" #: libraries/export/codegen.php:36 setup/lib/messages.inc.php:85 -#: tbl_printview.php:374 tbl_structure.php:736 +#: tbl_printview.php:373 tbl_structure.php:734 msgid "Format" msgstr "ফরমেট" @@ -2784,9 +2833,9 @@ msgstr "Microsoft Word 2000" #: libraries/export/htmlword.php:23 libraries/export/latex.php:59 #: libraries/export/latex.php:205 libraries/export/odt.php:47 #: libraries/export/sql.php:105 libraries/export/sql.php:865 -#: libraries/export/texytext.php:27 server_databases.php:126 -#: server_privileges.php:576 server_replication.php:315 tbl_printview.php:315 -#: tbl_structure.php:664 +#: libraries/export/texytext.php:27 server_databases.php:124 +#: server_privileges.php:575 server_replication.php:314 tbl_printview.php:314 +#: tbl_structure.php:662 msgid "Data" msgstr "ডাটা" @@ -2837,13 +2886,13 @@ msgid "Label key" msgstr "Label key" #: libraries/export/latex.php:46 libraries/export/odt.php:34 -#: libraries/export/sql.php:90 tbl_relation.php:398 +#: libraries/export/sql.php:90 tbl_relation.php:396 msgid "Relations" msgstr "Relations" #: libraries/export/latex.php:52 libraries/export/odt.php:40 #: libraries/export/odt.php:317 libraries/export/sql.php:94 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "মাইম এর ধরন" @@ -2851,10 +2900,10 @@ msgstr "মাইম এর ধরন" #: libraries/export/xml.php:101 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1529 server_privileges.php:2061 -#: server_processlist.php:54 server_synchronize.php:1158 +#: libraries/replication_gui.lib.php:331 server_privileges.php:730 +#: server_privileges.php:733 server_privileges.php:789 +#: server_privileges.php:1533 server_privileges.php:2065 +#: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "হোষ্ট" @@ -3049,8 +3098,8 @@ msgstr "Export type" msgid "Export contents" msgstr "Export type" -#: libraries/footer.inc.php:182 libraries/footer.inc.php:193 -#: libraries/footer.inc.php:196 +#: libraries/footer.inc.php:180 libraries/footer.inc.php:191 +#: libraries/footer.inc.php:194 msgid "Open new phpMyAdmin window" msgstr "Open new phpMyAdmin window" @@ -3067,7 +3116,7 @@ msgstr "SQL result" msgid "Generated by" msgstr "Generated by" -#: libraries/import.lib.php:151 sql.php:519 tbl_change.php:180 +#: libraries/import.lib.php:151 sql.php:518 tbl_change.php:175 #: 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)." @@ -3126,7 +3175,7 @@ msgstr "ডুপ্লিকেট সারি অবহেলা করু msgid "Column names in first row" msgstr "" -#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:501 +#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:500 #: view_create.php:147 msgid "Column names" msgstr "কলামের নাম" @@ -3153,12 +3202,12 @@ msgstr "Invalid format of CSV input on line %d." msgid "Invalid column count in CSV input on line %d." msgstr "Invalid field count in CSV input on line %d." -#: libraries/import/docsql.php:28 +#: libraries/import/docsql.php:27 msgid "DocSQL" msgstr "" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 -#: server_synchronize.php:427 server_synchronize.php:870 +#: libraries/import/docsql.php:30 libraries/tbl_properties.inc.php:616 +#: server_synchronize.php:426 server_synchronize.php:869 #, fuzzy msgid "Table name" msgstr "টেবিল এর নাম" @@ -3216,26 +3265,26 @@ msgstr "কোনটিই নয়" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:512 -#: tbl_structure.php:28 tbl_structure.php:152 tbl_structure.php:156 -#: tbl_structure.php:472 +#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:511 +#: tbl_structure.php:27 tbl_structure.php:151 tbl_structure.php:155 +#: tbl_structure.php:470 msgid "Primary" msgstr "প্রাথমিক" #: libraries/mult_submits.inc.php:97 libraries/tbl_properties.inc.php:115 -#: libraries/tbl_properties.inc.php:524 tbl_printview.php:324 -#: tbl_structure.php:30 tbl_structure.php:153 tbl_structure.php:157 -#: tbl_structure.php:474 tbl_structure.php:672 +#: libraries/tbl_properties.inc.php:523 tbl_printview.php:323 +#: tbl_structure.php:29 tbl_structure.php:152 tbl_structure.php:156 +#: tbl_structure.php:472 tbl_structure.php:670 msgid "Index" msgstr "ইন্ডেস্ক" -#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:530 -#: tbl_structure.php:34 tbl_structure.php:155 tbl_structure.php:159 -#: tbl_structure.php:477 +#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:529 +#: tbl_structure.php:33 tbl_structure.php:154 tbl_structure.php:158 +#: tbl_structure.php:475 msgid "Fulltext" msgstr "Fulltext" -#: libraries/mult_submits.inc.php:434 tbl_replace.php:330 +#: libraries/mult_submits.inc.php:433 tbl_replace.php:330 msgid "No change" msgstr "No change" @@ -3243,190 +3292,190 @@ msgstr "No change" msgid "Charset" msgstr "Charset" -#: libraries/mysql_charsets.lib.php:210 libraries/mysql_charsets.lib.php:411 -#: tbl_change.php:515 +#: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 +#: tbl_change.php:510 msgid "Binary" msgstr "বাইনারী" -#: libraries/mysql_charsets.lib.php:222 +#: libraries/mysql_charsets.lib.php:214 msgid "Bulgarian" msgstr "বুলগেরিয়ান" -#: libraries/mysql_charsets.lib.php:226 libraries/mysql_charsets.lib.php:351 +#: libraries/mysql_charsets.lib.php:218 libraries/mysql_charsets.lib.php:343 msgid "Simplified Chinese" msgstr "Simplified Chinese" -#: libraries/mysql_charsets.lib.php:228 libraries/mysql_charsets.lib.php:371 +#: libraries/mysql_charsets.lib.php:220 libraries/mysql_charsets.lib.php:363 msgid "Traditional Chinese" msgstr "Traditional Chinese" -#: libraries/mysql_charsets.lib.php:232 libraries/mysql_charsets.lib.php:418 +#: libraries/mysql_charsets.lib.php:224 libraries/mysql_charsets.lib.php:410 msgid "case-insensitive" msgstr "case-insensitive" -#: libraries/mysql_charsets.lib.php:235 libraries/mysql_charsets.lib.php:420 +#: libraries/mysql_charsets.lib.php:227 libraries/mysql_charsets.lib.php:412 msgid "case-sensitive" msgstr "case-sensitive" -#: libraries/mysql_charsets.lib.php:238 +#: libraries/mysql_charsets.lib.php:230 msgid "Croatian" msgstr "Croatian" -#: libraries/mysql_charsets.lib.php:241 +#: libraries/mysql_charsets.lib.php:233 msgid "Czech" msgstr "চেক" -#: libraries/mysql_charsets.lib.php:244 +#: libraries/mysql_charsets.lib.php:236 msgid "Danish" msgstr "ড্যানিশ" -#: libraries/mysql_charsets.lib.php:247 +#: libraries/mysql_charsets.lib.php:239 msgid "English" msgstr "ইংরেজী" -#: libraries/mysql_charsets.lib.php:250 +#: libraries/mysql_charsets.lib.php:242 msgid "Esperanto" msgstr "Esperanto" -#: libraries/mysql_charsets.lib.php:253 +#: libraries/mysql_charsets.lib.php:245 msgid "Estonian" msgstr "Estonian" -#: libraries/mysql_charsets.lib.php:256 libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:248 libraries/mysql_charsets.lib.php:251 msgid "German" msgstr "জার্মান" -#: libraries/mysql_charsets.lib.php:256 +#: libraries/mysql_charsets.lib.php:248 msgid "dictionary" msgstr "অভিধান" -#: libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:251 msgid "phone book" msgstr "phone book" -#: libraries/mysql_charsets.lib.php:262 +#: libraries/mysql_charsets.lib.php:254 msgid "Hungarian" msgstr "হাংগেরিয়ান" -#: libraries/mysql_charsets.lib.php:265 +#: libraries/mysql_charsets.lib.php:257 msgid "Icelandic" msgstr "Icelandic" -#: libraries/mysql_charsets.lib.php:268 libraries/mysql_charsets.lib.php:358 +#: libraries/mysql_charsets.lib.php:260 libraries/mysql_charsets.lib.php:350 msgid "Japanese" msgstr "Japanese" -#: libraries/mysql_charsets.lib.php:271 +#: libraries/mysql_charsets.lib.php:263 msgid "Latvian" msgstr "Latvian" -#: libraries/mysql_charsets.lib.php:274 +#: libraries/mysql_charsets.lib.php:266 msgid "Lithuanian" msgstr "Lithuanian" -#: libraries/mysql_charsets.lib.php:277 libraries/mysql_charsets.lib.php:380 +#: libraries/mysql_charsets.lib.php:269 libraries/mysql_charsets.lib.php:372 msgid "Korean" msgstr "কোরিয়ান" -#: libraries/mysql_charsets.lib.php:280 +#: libraries/mysql_charsets.lib.php:272 msgid "Persian" msgstr "পারসিয়ান" -#: libraries/mysql_charsets.lib.php:283 +#: libraries/mysql_charsets.lib.php:275 msgid "Polish" msgstr "পোলিশ" -#: libraries/mysql_charsets.lib.php:286 libraries/mysql_charsets.lib.php:334 +#: libraries/mysql_charsets.lib.php:278 libraries/mysql_charsets.lib.php:326 msgid "West European" msgstr "West European" -#: libraries/mysql_charsets.lib.php:289 +#: libraries/mysql_charsets.lib.php:281 msgid "Romanian" msgstr "রোমানিয়ান" -#: libraries/mysql_charsets.lib.php:292 +#: libraries/mysql_charsets.lib.php:284 msgid "Slovak" msgstr "Slovak" -#: libraries/mysql_charsets.lib.php:295 +#: libraries/mysql_charsets.lib.php:287 msgid "Slovenian" msgstr "Slovenian" -#: libraries/mysql_charsets.lib.php:298 +#: libraries/mysql_charsets.lib.php:290 msgid "Spanish" msgstr "Spanish" -#: libraries/mysql_charsets.lib.php:301 +#: libraries/mysql_charsets.lib.php:293 msgid "Traditional Spanish" msgstr "Traditional Spanish" -#: libraries/mysql_charsets.lib.php:304 libraries/mysql_charsets.lib.php:401 +#: libraries/mysql_charsets.lib.php:296 libraries/mysql_charsets.lib.php:393 msgid "Swedish" msgstr "সুইডিশ" -#: libraries/mysql_charsets.lib.php:307 libraries/mysql_charsets.lib.php:404 +#: libraries/mysql_charsets.lib.php:299 libraries/mysql_charsets.lib.php:396 msgid "Thai" msgstr "Thai" -#: libraries/mysql_charsets.lib.php:310 libraries/mysql_charsets.lib.php:398 +#: libraries/mysql_charsets.lib.php:302 libraries/mysql_charsets.lib.php:390 msgid "Turkish" msgstr "Turkish" -#: libraries/mysql_charsets.lib.php:313 libraries/mysql_charsets.lib.php:395 +#: libraries/mysql_charsets.lib.php:305 libraries/mysql_charsets.lib.php:387 msgid "Ukrainian" msgstr "Ukrainian" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 msgid "Unicode" msgstr "ইউনিকোড" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 -#: libraries/mysql_charsets.lib.php:334 libraries/mysql_charsets.lib.php:341 -#: libraries/mysql_charsets.lib.php:363 libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 +#: libraries/mysql_charsets.lib.php:326 libraries/mysql_charsets.lib.php:333 +#: libraries/mysql_charsets.lib.php:355 libraries/mysql_charsets.lib.php:366 msgid "multilingual" msgstr "বহুভাষী" -#: libraries/mysql_charsets.lib.php:341 +#: libraries/mysql_charsets.lib.php:333 msgid "Central European" msgstr "Central European" -#: libraries/mysql_charsets.lib.php:346 +#: libraries/mysql_charsets.lib.php:338 msgid "Russian" msgstr "রাশিয়ান" -#: libraries/mysql_charsets.lib.php:363 +#: libraries/mysql_charsets.lib.php:355 msgid "Baltic" msgstr "ব্যাল্টিক" -#: libraries/mysql_charsets.lib.php:368 +#: libraries/mysql_charsets.lib.php:360 msgid "Armenian" msgstr "আরমেনিয়ান" -#: libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:366 msgid "Cyrillic" msgstr "Cyrillic" -#: libraries/mysql_charsets.lib.php:377 +#: libraries/mysql_charsets.lib.php:369 msgid "Arabic" msgstr "আরবী" -#: libraries/mysql_charsets.lib.php:383 +#: libraries/mysql_charsets.lib.php:375 msgid "Hebrew" msgstr "হীব্রূ" -#: libraries/mysql_charsets.lib.php:386 +#: libraries/mysql_charsets.lib.php:378 msgid "Georgian" msgstr "জরজীয়ান" -#: libraries/mysql_charsets.lib.php:389 +#: libraries/mysql_charsets.lib.php:381 msgid "Greek" msgstr "গ্রীক" -#: libraries/mysql_charsets.lib.php:392 +#: libraries/mysql_charsets.lib.php:384 msgid "Czech-Slovak" msgstr "চেক-স্লোভাক" -#: libraries/mysql_charsets.lib.php:407 libraries/mysql_charsets.lib.php:414 +#: libraries/mysql_charsets.lib.php:399 libraries/mysql_charsets.lib.php:406 msgid "unknown" msgstr "অজানা" @@ -3452,68 +3501,68 @@ msgstr "Query window" msgid "This format has no options" msgstr "This format has no options" -#: libraries/relation.lib.php:82 +#: libraries/relation.lib.php:77 msgid "not OK" msgstr "ঠিক নাই" -#: libraries/relation.lib.php:86 pmd_general.php:339 +#: libraries/relation.lib.php:81 pmd_general.php:339 msgid "OK" msgstr "ঠিক আছে" -#: libraries/relation.lib.php:87 +#: libraries/relation.lib.php:82 msgid "Enabled" msgstr "Enabled" -#: libraries/relation.lib.php:110 +#: libraries/relation.lib.php:105 msgid "Display Features" msgstr "বৈশিষ্ট্যসমূহ প্রদর্শন কর" -#: libraries/relation.lib.php:116 +#: libraries/relation.lib.php:111 msgid "Creation of PDFs" msgstr "পিডিএফ সমূহ তৈরী" -#: libraries/relation.lib.php:120 +#: libraries/relation.lib.php:115 msgid "Displaying Column Comments" msgstr "কলামের মন্তব্য প্রদর্শন করা হচ্ছে" -#: libraries/relation.lib.php:125 +#: libraries/relation.lib.php:120 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "Please see the documentation on how to update your column_comments table" -#: libraries/relation.lib.php:130 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 msgid "Bookmarked SQL query" msgstr "বুকমার্ক করা SQL query" -#: libraries/relation.lib.php:134 querywindow.php:99 querywindow.php:207 +#: libraries/relation.lib.php:129 querywindow.php:98 querywindow.php:205 msgid "SQL history" msgstr "SQL history" -#: libraries/relation.lib.php:146 +#: libraries/relation.lib.php:141 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:148 +#: libraries/relation.lib.php:143 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" -#: libraries/relation.lib.php:149 +#: libraries/relation.lib.php:144 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:150 +#: libraries/relation.lib.php:145 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:151 +#: libraries/relation.lib.php:146 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1158 +#: libraries/relation.lib.php:1153 msgid "no description" msgstr "কোন বর্ণনা নাই" @@ -3521,7 +3570,7 @@ msgstr "কোন বর্ণনা নাই" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:53 server_replication.php:346 +#: libraries/replication_gui.lib.php:53 server_replication.php:345 msgid "Change or reconfigure master server" msgstr "" @@ -3533,17 +3582,12 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:711 -#: server_privileges.php:714 server_privileges.php:721 -#: server_synchronize.php:1170 +#: libraries/replication_gui.lib.php:261 server_privileges.php:710 +#: server_privileges.php:713 server_privileges.php:720 +#: server_synchronize.php:1169 msgid "User name" msgstr "ব্যাভারকারীর নাম" -#: libraries/replication_gui.lib.php:69 server_synchronize.php:1162 -#, fuzzy -msgid "Port" -msgstr "সাজাঁন" - #: libraries/replication_gui.lib.php:105 #, fuzzy msgid "Master status" @@ -3560,8 +3604,8 @@ msgid "Variable" msgstr "চলক" #: libraries/replication_gui.lib.php:117 server_status.php:737 -#: tbl_change.php:322 tbl_printview.php:368 tbl_select.php:137 -#: tbl_structure.php:728 +#: tbl_change.php:317 tbl_printview.php:367 tbl_select.php:136 +#: tbl_structure.php:726 msgid "Value" msgstr "মান" @@ -3575,38 +3619,38 @@ msgid "" "this list." msgstr "" -#: libraries/replication_gui.lib.php:242 server_replication.php:193 +#: libraries/replication_gui.lib.php:242 server_replication.php:192 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:256 server_privileges.php:716 +#: libraries/replication_gui.lib.php:256 server_privileges.php:715 msgid "Any user" msgstr "যেকোন ব্যাবহারকারী" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1920 server_privileges.php:1950 +#: libraries/replication_gui.lib.php:348 server_privileges.php:716 +#: server_privileges.php:783 server_privileges.php:807 +#: server_privileges.php:1924 server_privileges.php:1954 msgid "Use text field" msgstr "Use text field" -#: libraries/replication_gui.lib.php:304 server_privileges.php:764 +#: libraries/replication_gui.lib.php:304 server_privileges.php:763 msgid "Any host" msgstr "যেকোন হোষ্ট" -#: libraries/replication_gui.lib.php:308 server_privileges.php:768 +#: libraries/replication_gui.lib.php:308 server_privileges.php:767 msgid "Local" msgstr "লোকাল" -#: libraries/replication_gui.lib.php:314 server_privileges.php:773 +#: libraries/replication_gui.lib.php:314 server_privileges.php:772 msgid "This Host" msgstr "This Host" -#: libraries/replication_gui.lib.php:320 server_privileges.php:779 +#: libraries/replication_gui.lib.php:320 server_privileges.php:778 msgid "Use Host Table" msgstr "Use Host Table" -#: libraries/replication_gui.lib.php:333 server_privileges.php:792 +#: libraries/replication_gui.lib.php:333 server_privileges.php:791 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3632,8 +3676,8 @@ msgstr "Unknown language: %1$s." msgid "Servers" msgstr "সার্ভারসমূহ" -#: libraries/server_links.inc.php:52 server_engines.php:111 -#: server_engines.php:115 server_status.php:414 test/theme.php:104 +#: libraries/server_links.inc.php:52 server_engines.php:125 +#: server_engines.php:129 server_status.php:414 test/theme.php:104 msgid "Variables" msgstr "চলকসমূহ" @@ -3654,12 +3698,12 @@ msgstr "বাইনারী লগ" msgid "Processes" msgstr "Processes" -#: libraries/server_links.inc.php:91 server_synchronize.php:1091 -#: server_synchronize.php:1099 +#: libraries/server_links.inc.php:91 server_synchronize.php:1090 +#: server_synchronize.php:1098 msgid "Synchronize" msgstr "" -#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1109 +#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1108 #, fuzzy msgid "Source database" msgstr "ডাটাবে এ খুজুঁনSearch in database" @@ -3678,7 +3722,7 @@ msgstr "" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1111 +#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1110 #, fuzzy msgid "Target database" msgstr "ডাটাবে এ খুজুঁনSearch in database" @@ -3699,11 +3743,11 @@ msgstr "Run SQL query/queries on database %s" msgid "Columns" msgstr "কলামের নাম" -#: libraries/sql_query_form.lib.php:342 sql.php:664 sql.php:665 sql.php:682 +#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "এই SQL query টি বুকমার্ক করুন" -#: libraries/sql_query_form.lib.php:349 sql.php:676 +#: libraries/sql_query_form.lib.php:349 sql.php:669 msgid "Let every user access this bookmark" msgstr "সব ব্যাক্তিকে এই বুকমার্কটি দেখার সুযোগ দিন" @@ -3798,12 +3842,12 @@ 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/tbl_links.inc.php:106 libraries/tbl_links.inc.php:139 -#: libraries/tbl_links.inc.php:140 +#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 +#: libraries/tbl_links.inc.php:139 msgid "Table seems to be empty!" msgstr "" -#: libraries/tbl_links.inc.php:148 +#: libraries/tbl_links.inc.php:147 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" @@ -3838,12 +3882,12 @@ msgstr "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" -#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1263 -#: pdf_schema.php:1284 tbl_printview.php:142 tbl_structure.php:179 +#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1262 +#: pdf_schema.php:1283 tbl_printview.php:141 tbl_structure.php:178 msgid "Attributes" msgstr "Attributes" -#: libraries/tbl_properties.inc.php:136 +#: libraries/tbl_properties.inc.php:135 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -3852,11 +3896,11 @@ msgstr "" "For a list of available transformation options and their MIME type " "transformations, click on %stransformation descriptions%s" -#: libraries/tbl_properties.inc.php:144 +#: libraries/tbl_properties.inc.php:143 msgid "Transformation options" msgstr "Transformation options" -#: libraries/tbl_properties.inc.php:145 +#: libraries/tbl_properties.inc.php:144 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
                            If you ever need to put a backslash (\"\\\") or a single " @@ -3868,18 +3912,18 @@ msgstr "" "quote (\"'\") amongst those values, precede it with a backslash (for example " "'\\\\xyz' or 'a\\'b')." -#: libraries/tbl_properties.inc.php:392 +#: libraries/tbl_properties.inc.php:391 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "কোনটিই নয়" -#: libraries/tbl_properties.inc.php:393 +#: libraries/tbl_properties.inc.php:392 msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:579 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:578 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
                            Please ask the " @@ -3888,29 +3932,29 @@ msgstr "" "No description is available for this transformation.
                            Please ask the " "author what %s does." -#: libraries/tbl_properties.inc.php:725 server_engines.php:57 -#: tbl_operations.php:354 +#: libraries/tbl_properties.inc.php:724 server_engines.php:56 +#: tbl_operations.php:352 msgid "Storage Engine" msgstr "Storage Engine" -#: libraries/tbl_properties.inc.php:754 +#: libraries/tbl_properties.inc.php:753 msgid "PARTITION definition" msgstr "" -#: libraries/tbl_properties.inc.php:775 pdf_pages.php:502 +#: libraries/tbl_properties.inc.php:774 pdf_pages.php:501 #: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214 -#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1124 tbl_indexes.php:247 -#: tbl_relation.php:565 +#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1022 tbl_indexes.php:246 +#: tbl_relation.php:563 msgid "Save" msgstr "সেভ করুন" -#: libraries/tbl_properties.inc.php:779 tbl_structure.php:541 +#: libraries/tbl_properties.inc.php:778 tbl_structure.php:539 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr " %s ক্ষেত্রসমূহ যোগ কর" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:535 +#: libraries/tbl_properties.inc.php:782 tbl_structure.php:533 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -4114,8 +4158,8 @@ msgstr "" msgid "Custom color" msgstr "" -#: main.php:162 pdf_pages.php:362 setup/lib/FormDisplay.tpl.php:216 -#: tbl_change.php:1173 +#: main.php:162 pdf_pages.php:361 setup/lib/FormDisplay.tpl.php:216 +#: tbl_change.php:1071 msgid "Reset" msgstr "রিসেট করুন" @@ -4123,8 +4167,8 @@ msgstr "রিসেট করুন" msgid "Protocol version" msgstr "Protocol version" -#: main.php:188 server_privileges.php:1381 server_privileges.php:1528 -#: server_privileges.php:1642 server_privileges.php:2060 +#: main.php:188 server_privileges.php:1385 server_privileges.php:1532 +#: server_privileges.php:1646 server_privileges.php:2064 #: server_processlist.php:53 msgid "User" msgstr "User" @@ -4210,21 +4254,30 @@ msgid "" "has been configured." msgstr "" -#: main.php:330 +#: main.php:314 +#, php-format +msgid "" +"The additional features for working with linked tables have been " +"deactivated. To find out why click %shere%s." +msgstr "" +"The additional features for working with linked tables have been " +"deactivated. To find out why click %shere%s." + +#: main.php:329 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:345 +#: main.php:344 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: main.php:357 +#: main.php:356 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -4235,69 +4288,69 @@ msgstr "" msgid "Reload navigation frame" msgstr "" -#: navigation.php:204 server_databases.php:370 server_synchronize.php:1190 +#: navigation.php:203 server_databases.php:368 server_synchronize.php:1189 msgid "No databases" msgstr "কোন ডাটাবেজ নাই" -#: navigation.php:298 +#: navigation.php:297 #, fuzzy msgid "Filter" msgstr "ক্ষেত্রসমূহ" -#: navigation.php:299 setup/frames/index.inc.php:218 +#: navigation.php:298 setup/frames/index.inc.php:218 #: setup/lib/messages.inc.php:41 #, fuzzy msgid "Clear" msgstr "ক্যালেন্ডার" -#: navigation.php:330 navigation.php:331 +#: navigation.php:329 navigation.php:330 #, fuzzy msgctxt "short form" msgid "Create table" msgstr "একটি নতুন পাতা তৈরী কর" -#: navigation.php:333 navigation.php:495 +#: navigation.php:332 navigation.php:494 msgid "Please select a database" msgstr "Please select a database" -#: pdf_pages.php:40 pdf_pages.php:46 pdf_pages.php:52 pdf_pages.php:57 +#: pdf_pages.php:39 pdf_pages.php:45 pdf_pages.php:51 pdf_pages.php:56 #, php-format msgid "%s table not found or not set in %s" msgstr "%s table not found or not set in %s" -#: pdf_pages.php:265 +#: pdf_pages.php:264 msgid "Please choose a page to edit" msgstr "অনুগ্রহ করে সম্পাদনা করার জন্য একটি পাতা নির্বাচন করুন" -#: pdf_pages.php:303 pmd_pdf.php:113 +#: pdf_pages.php:302 pmd_pdf.php:111 msgid "Create a page" msgstr "একটি নতুন পাতা তৈরী কর" -#: pdf_pages.php:309 +#: pdf_pages.php:308 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "পাতার সংখ্যাঃ" -#: pdf_pages.php:313 +#: pdf_pages.php:312 #, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "Automatic layout" -#: pdf_pages.php:315 +#: pdf_pages.php:314 msgid "Internal relations" msgstr "Internal relations" -#: pdf_pages.php:338 +#: pdf_pages.php:337 msgid "Select Tables" msgstr "টেবিল সিলেক্ট করুন" -#: pdf_pages.php:361 +#: pdf_pages.php:360 msgid "Toggle scratchboard" msgstr "Toggle scratchboard" -#: pdf_pages.php:524 +#: pdf_pages.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -4306,37 +4359,37 @@ msgstr "" "ফেলতে চান? The current page has references to tables that no longer exist. " "Would you like to delete those references?" -#: pdf_schema.php:635 +#: pdf_schema.php:634 #, fuzzy, php-format #| msgid "The \"%s\" table doesn't exist!" msgid "The %s table doesn't exist!" msgstr "The \"%s\" table doesn't exist!" -#: pdf_schema.php:671 +#: pdf_schema.php:670 #, php-format msgid "Please configure the coordinates for table %s" msgstr "দয়া করে %s টেবিল এর অবস্থান কনফিগার করুন" -#: pdf_schema.php:994 +#: pdf_schema.php:993 #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" msgstr "Schema of the \"%s\" database - Page %s" -#: pdf_schema.php:1012 +#: pdf_schema.php:1011 msgid "No tables" msgstr "কোন টেবিল নাই" -#: pdf_schema.php:1031 pdf_schema.php:1140 +#: pdf_schema.php:1030 pdf_schema.php:1139 msgid "Relational schema" msgstr "Relational schema" -#: pdf_schema.php:1115 +#: pdf_schema.php:1114 msgid "Table of contents" msgstr "Table of contents" -#: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:145 -#: tbl_structure.php:182 tbl_tracking.php:277 +#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 +#: tbl_structure.php:181 tbl_tracking.php:272 msgid "Extra" msgstr "অতিরিক্ত" @@ -4348,7 +4401,7 @@ msgstr "" msgid "Save position" msgstr "" -#: pmd_general.php:70 server_synchronize.php:428 server_synchronize.php:871 +#: pmd_general.php:70 server_synchronize.php:427 server_synchronize.php:870 #, fuzzy msgid "Create table" msgstr "একটি নতুন পাতা তৈরী কর" @@ -4423,32 +4476,32 @@ msgid "" "appropriate column name." msgstr "" -#: pmd_pdf.php:62 +#: pmd_pdf.php:60 #, fuzzy msgid "Page has been created" msgstr "Table %s has been dropped" -#: pmd_pdf.php:64 +#: pmd_pdf.php:62 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:84 +#: pmd_pdf.php:82 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:88 +#: pmd_pdf.php:86 msgid "recommended" msgstr "" -#: pmd_pdf.php:93 +#: pmd_pdf.php:91 msgid "to/from page" msgstr "" -#: querywindow.php:94 +#: querywindow.php:93 msgid "Import files" msgstr "ফাইল ইম্পোর্ট কর" -#: querywindow.php:105 +#: querywindow.php:104 msgid "All" msgstr "All" @@ -4495,66 +4548,66 @@ msgstr "তথ্য" msgid "Character Sets and Collations" msgstr "Character Sets and Collations" -#: server_databases.php:51 +#: server_databases.php:49 msgid "No databases selected." msgstr "No databases selected." -#: server_databases.php:62 +#: server_databases.php:60 #, php-format msgid "%s databases have been dropped successfully." msgstr "%s ডাটাবেজসমূহ সফলভাবে মুছে ফেলা হয়েছে " -#: server_databases.php:87 +#: server_databases.php:85 msgid "Databases statistics" msgstr "ডাটাবেজসমূহের পরিসংখ্যান" -#: server_databases.php:116 server_status.php:370 +#: server_databases.php:114 server_status.php:370 #: setup/lib/messages.inc.php:114 msgid "Tables" msgstr "টেবিলসমূহ" -#: server_databases.php:194 server_replication.php:180 -#: server_replication.php:208 +#: server_databases.php:192 server_replication.php:179 +#: server_replication.php:207 msgid "Master replication" msgstr "" -#: server_databases.php:196 server_replication.php:247 +#: server_databases.php:194 server_replication.php:246 msgid "Slave replication" msgstr "" -#: server_databases.php:229 +#: server_databases.php:227 #, fuzzy msgid "Jump to database" msgstr "কোন ডাটাবেজ নাই" -#: server_databases.php:266 +#: server_databases.php:264 msgid "Not replicated" msgstr "" -#: server_databases.php:272 +#: server_databases.php:270 #, fuzzy #| msgid "Replication" msgid "Replicated" msgstr "Replication" -#: server_databases.php:288 +#: server_databases.php:286 #, php-format msgid "Check privileges for database "%s"." msgstr "Check privileges for database "%s"." -#: server_databases.php:292 server_databases.php:293 +#: server_databases.php:290 server_databases.php:291 msgid "Check Privileges" msgstr "সুবিধাসমূহ পরীক্ষা করুন" -#: server_databases.php:357 server_databases.php:358 +#: server_databases.php:355 server_databases.php:356 msgid "Enable Statistics" msgstr "পরিসংখ্যান চালু কর" -#: server_databases.php:361 server_databases.php:362 +#: server_databases.php:359 server_databases.php:360 msgid "Disable Statistics" msgstr "পরিসংখ্যান বন্ধ কর" -#: server_databases.php:365 +#: server_databases.php:363 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -4562,120 +4615,120 @@ msgstr "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." -#: server_engines.php:48 +#: server_engines.php:47 msgid "Storage Engines" msgstr "Storage Engines" -#: server_export.php:20 +#: server_export.php:18 msgid "View dump (schema) of databases" msgstr "View dump (schema) of databases" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:23 server_privileges.php:265 msgid "Includes all privileges except GRANT." msgstr "Includes all privileges except GRANT." -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:24 server_privileges.php:191 +#: server_privileges.php:514 msgid "Allows altering the structure of existing tables." msgstr "Allows altering the structure of existing tables." -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:25 server_privileges.php:207 +#: server_privileges.php:520 msgid "Allows altering and dropping stored routines." msgstr "Allows altering and dropping stored routines." -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:26 server_privileges.php:183 +#: server_privileges.php:513 msgid "Allows creating new databases and tables." msgstr "Allows creating new databases and tables." -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:27 server_privileges.php:206 +#: server_privileges.php:519 msgid "Allows creating stored routines." msgstr "Allows creating stored routines." -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:513 msgid "Allows creating new tables." msgstr "Allows creating new tables." -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:29 server_privileges.php:194 +#: server_privileges.php:517 msgid "Allows creating temporary tables." msgstr "Allows creating temporary tables." -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:30 server_privileges.php:208 +#: server_privileges.php:553 msgid "Allows creating, dropping and renaming user accounts." msgstr "Allows creating, dropping and renaming user accounts." -#: server_privileges.php:32 server_privileges.php:199 -#: server_privileges.php:203 server_privileges.php:526 -#: server_privileges.php:530 +#: server_privileges.php:31 server_privileges.php:198 +#: server_privileges.php:202 server_privileges.php:525 +#: server_privileges.php:529 msgid "Allows creating new views." msgstr "Allows creating new views." -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:32 server_privileges.php:182 +#: server_privileges.php:505 msgid "Allows deleting data." msgstr "Allows deleting data." -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:33 server_privileges.php:184 +#: server_privileges.php:516 msgid "Allows dropping databases and tables." msgstr "Allows dropping databases and tables." -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:34 server_privileges.php:516 msgid "Allows dropping tables." msgstr "Allows dropping tables." -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:35 server_privileges.php:199 +#: server_privileges.php:533 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:36 server_privileges.php:209 +#: server_privileges.php:521 msgid "Allows executing stored routines." msgstr "Allows executing stored routines." -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:37 server_privileges.php:188 +#: server_privileges.php:508 msgid "Allows importing data from and exporting data into files." msgstr "Allows importing data from and exporting data into files." -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:38 server_privileges.php:539 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Allows adding users and privileges without reloading the privilege tables." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:515 msgid "Allows creating and dropping indexes." msgstr "Allows creating and dropping indexes." -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:40 server_privileges.php:180 +#: server_privileges.php:441 server_privileges.php:503 msgid "Allows inserting and replacing data." msgstr "Allows inserting and replacing data." -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:41 server_privileges.php:195 +#: server_privileges.php:548 msgid "Allows locking tables for the current thread." msgstr "Allows locking tables for the current thread." -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:42 server_privileges.php:645 +#: server_privileges.php:647 msgid "Limits the number of new connections the user may open per hour." msgstr "Limits the number of new connections the user may open per hour." -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:43 server_privileges.php:633 +#: server_privileges.php:635 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Limits the number of queries the user may send to the server per hour." -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:44 server_privileges.php:639 +#: server_privileges.php:641 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -4683,58 +4736,58 @@ msgstr "" "Limits the number of commands that change any table or database the user may " "execute per hour." -#: server_privileges.php:46 server_privileges.php:652 -#: server_privileges.php:654 +#: server_privileges.php:45 server_privileges.php:651 +#: server_privileges.php:653 msgid "Limits the number of simultaneous connections the user may have." msgstr "Limits the number of simultaneous connections the user may have." -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:46 server_privileges.php:187 +#: server_privileges.php:543 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:47 server_privileges.php:189 +#: server_privileges.php:447 server_privileges.php:549 msgid "Has no effect in this MySQL version." msgstr "Has no effect in this MySQL version." -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:48 server_privileges.php:185 +#: server_privileges.php:544 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Allows reloading server settings and flushing the server's caches." -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:197 +#: server_privileges.php:551 msgid "Allows the user to ask where the slaves / masters are." msgstr "Allows the user to ask where the slaves / masters are." -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:50 server_privileges.php:196 +#: server_privileges.php:552 msgid "Needed for the replication slaves." msgstr "Needed for the replication slaves." -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:51 server_privileges.php:179 +#: server_privileges.php:438 server_privileges.php:502 msgid "Allows reading data." msgstr "Allows reading data." -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:52 server_privileges.php:192 +#: server_privileges.php:546 msgid "Gives access to the complete list of databases." msgstr "Gives access to the complete list of databases." -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:53 server_privileges.php:203 +#: server_privileges.php:205 server_privileges.php:518 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Allows performing SHOW CREATE VIEW queries." -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:54 server_privileges.php:186 +#: server_privileges.php:545 msgid "Allows shutting down the server." msgstr "Allows shutting down the server." -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:55 server_privileges.php:193 +#: server_privileges.php:542 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -4744,160 +4797,160 @@ msgstr "" "required for most administrative operations like setting global variables or " "killing threads of other users." -#: server_privileges.php:57 server_privileges.php:201 -#: server_privileges.php:535 +#: server_privileges.php:56 server_privileges.php:200 +#: server_privileges.php:534 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "Allows creating and dropping indexes." -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:57 server_privileges.php:181 +#: server_privileges.php:444 server_privileges.php:504 msgid "Allows changing data." msgstr "Allows changing data." -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:58 server_privileges.php:259 msgid "No privileges." msgstr "No privileges." -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:301 server_privileges.php:302 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "কোনটিই নয়" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1710 server_privileges.php:1716 +#: server_privileges.php:430 server_privileges.php:565 +#: server_privileges.php:1714 server_privileges.php:1720 msgid "Table-specific privileges" msgstr "Table-specific privileges" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1532 +#: server_privileges.php:431 server_privileges.php:573 +#: server_privileges.php:1536 msgid " Note: MySQL privilege names are expressed in English " msgstr "" "নোটঃ MySQL সুবিধাসমূহের নাম ইংরেজীতে প্রকাশ করা হয় Note: MySQL privilege " "names are expressed in English " -#: server_privileges.php:563 server_privileges.php:1531 +#: server_privileges.php:562 server_privileges.php:1535 msgid "Global privileges" msgstr "Global privileges" -#: server_privileges.php:565 server_privileges.php:1710 +#: server_privileges.php:564 server_privileges.php:1714 msgid "Database-specific privileges" msgstr "ডাটাবেজ-নির্দিষ্ট সুবিধাসমূহ" -#: server_privileges.php:610 +#: server_privileges.php:609 msgid "Administration" msgstr "Administration" -#: server_privileges.php:630 +#: server_privileges.php:629 msgid "Resource limits" msgstr "Resource limits" -#: server_privileges.php:631 +#: server_privileges.php:630 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Note: Setting these options to 0 (zero) removes the limit." -#: server_privileges.php:708 +#: server_privileges.php:707 msgid "Login Information" msgstr "Login Information" -#: server_privileges.php:802 +#: server_privileges.php:801 msgid "Do not change the password" msgstr "Do not change the password" -#: server_privileges.php:835 server_privileges.php:2197 +#: server_privileges.php:834 server_privileges.php:2201 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "No user(s) found." -#: server_privileges.php:879 +#: server_privileges.php:878 #, php-format msgid "The user %s already exists!" msgstr "The user %s already exists!" -#: server_privileges.php:962 +#: server_privileges.php:961 msgid "You have added a new user." msgstr "আপনি একটি নতুন ইউজার যোগ করেছেন" -#: server_privileges.php:1183 +#: server_privileges.php:1184 #, php-format msgid "You have updated the privileges for %s." msgstr "You have updated the privileges for %s." -#: server_privileges.php:1207 +#: server_privileges.php:1208 #, php-format msgid "You have revoked the privileges for %s" msgstr "You have revoked the privileges for %s" -#: server_privileges.php:1243 +#: server_privileges.php:1244 #, php-format msgid "The password for %s was changed successfully." msgstr "The password for %s was changed successfully." -#: server_privileges.php:1263 +#: server_privileges.php:1264 #, php-format msgid "Deleting %s" msgstr "%s মুছে ফেলা হচ্ছে" -#: server_privileges.php:1274 +#: server_privileges.php:1275 msgid "No users selected for deleting!" msgstr "মুছে ফেলার জন্য কোন ব্যাবহারকারী চিহ্নিত করা হয়নি" -#: server_privileges.php:1277 +#: server_privileges.php:1278 msgid "Reloading the privileges" msgstr "Reloading the privileges" -#: server_privileges.php:1292 +#: server_privileges.php:1296 msgid "The selected users have been deleted successfully." msgstr "The selected users have been deleted successfully." -#: server_privileges.php:1327 +#: server_privileges.php:1331 msgid "The privileges were reloaded successfully." msgstr "The privileges were reloaded successfully." -#: server_privileges.php:1355 server_privileges.php:1641 +#: server_privileges.php:1359 server_privileges.php:1645 msgid "Edit Privileges" msgstr "সুবিধাসমূহ সম্পাদনা কর" -#: server_privileges.php:1364 +#: server_privileges.php:1368 msgid "Revoke" msgstr "Revoke" -#: server_privileges.php:1396 +#: server_privileges.php:1400 msgid "User overview" msgstr "User overview" -#: server_privileges.php:1533 server_privileges.php:1715 -#: server_privileges.php:2064 +#: server_privileges.php:1537 server_privileges.php:1719 +#: server_privileges.php:2068 msgid "Grant" msgstr "Grant" -#: server_privileges.php:1552 server_privileges.php:2154 +#: server_privileges.php:1556 server_privileges.php:2158 msgid "Any" msgstr "যেকোন" -#: server_privileges.php:1601 server_privileges.php:1625 -#: server_privileges.php:2019 server_privileges.php:2208 +#: server_privileges.php:1605 server_privileges.php:1629 +#: server_privileges.php:2023 server_privileges.php:2212 msgid "Add a new User" msgstr "একটি নতুন ইউজার যোগ করুন" -#: server_privileges.php:1606 +#: server_privileges.php:1610 msgid "Remove selected users" msgstr "Remove selected users" -#: server_privileges.php:1609 +#: server_privileges.php:1613 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Revoke all active privileges from the users and delete them afterwards." -#: server_privileges.php:1610 server_privileges.php:1611 -#: server_privileges.php:1612 +#: server_privileges.php:1614 server_privileges.php:1615 +#: server_privileges.php:1616 msgid "Drop the databases that have the same names as the users." msgstr "ব্যাবহারকারীর নামে নাম এমন ডাটাবেজসমূহ মুছে ফেল" -#: server_privileges.php:1628 +#: server_privileges.php:1632 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4910,51 +4963,51 @@ msgstr "" "server uses, if they have been changed manually. In this case, you should " "%sreload the privileges%s before you continue." -#: server_privileges.php:1676 +#: server_privileges.php:1680 msgid "The selected user was not found in the privilege table." msgstr "The selected user was not found in the privilege table." -#: server_privileges.php:1716 +#: server_privileges.php:1720 msgid "Column-specific privileges" msgstr "কলাম নির্দিষ্ট সুবিধাসমূহ" -#: server_privileges.php:1917 +#: server_privileges.php:1921 msgid "Add privileges on the following database" msgstr "নিচের ডাটাবেইজ এ সুবিধাসমূহ যোগ কর" -#: server_privileges.php:1935 +#: server_privileges.php:1939 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "Wildcards % and _ should be escaped with a \\ to use them literally" -#: server_privileges.php:1938 +#: server_privileges.php:1942 msgid "Add privileges on the following table" msgstr "নিচের টেবিল এ সুবিধাসমূহ যোগ কর" -#: server_privileges.php:1995 +#: server_privileges.php:1999 msgid "Change Login Information / Copy User" msgstr "" "লগ ইন তথ্য পরিবর্তন কর অথবা ব্যাবহারকারী কপি করChange Login Information / Copy " "User" -#: server_privileges.php:1998 +#: server_privileges.php:2002 msgid "Create a new user with the same privileges and ..." msgstr "একই সুবিধা সহ নতুন আরেকটি ব্যাবহারকারী তৈরী করুন..." -#: server_privileges.php:2000 +#: server_privileges.php:2004 msgid "... keep the old one." msgstr "... পুরাতনটা রেখে দাও" -#: server_privileges.php:2001 +#: server_privileges.php:2005 msgid " ... delete the old one from the user tables." msgstr " ...ব্যাবহারকারীর টেবিলগুলো থেকে পুরাতনটি মুছে ফেল" -#: server_privileges.php:2002 +#: server_privileges.php:2006 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "" " ... revoke all active privileges from the old one and delete it afterwards." -#: server_privileges.php:2003 +#: server_privileges.php:2007 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -4962,46 +5015,46 @@ msgstr "" " ... ব্যাবহারকারীর টেবিলগুলো থেকে পুরাতনটি মুছে ফেল এবং এরপর সুবিধাসমূহ পুনরায় লোড " "কর" -#: server_privileges.php:2025 +#: server_privileges.php:2029 msgid "Database for user" msgstr "ব্যাবহারকারীর জন্য ডাটাবেজ" -#: server_privileges.php:2029 +#: server_privileges.php:2033 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "কোনটিই নয়" -#: server_privileges.php:2030 +#: server_privileges.php:2034 msgid "Create database with same name and grant all privileges" msgstr "" "একই নামে ডাটাবেজ তৈরী কর এবং সকল সুবিধাসমূহ মঞ্জুর করCreate database with same " "name and grant all privileges" -#: server_privileges.php:2031 +#: server_privileges.php:2035 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Grant all privileges on wildcard name (username_%)" -#: server_privileges.php:2034 +#: server_privileges.php:2038 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "Check privileges for database "%s"." -#: server_privileges.php:2057 +#: server_privileges.php:2061 #, php-format msgid "Users having access to "%s"" msgstr "Users having access to "%s"" -#: server_privileges.php:2165 +#: server_privileges.php:2169 msgid "global" msgstr "global" -#: server_privileges.php:2167 +#: server_privileges.php:2171 msgid "database-specific" msgstr "ডাটাবেজ-নির্দিষ্ট" -#: server_privileges.php:2169 +#: server_privileges.php:2173 msgid "wildcard" msgstr "wildcard" @@ -5020,54 +5073,54 @@ msgstr "phpMyAdmin %s থ্রেড কে বন্ধ করতে পার msgid "ID" msgstr "আইডি" -#: server_replication.php:50 +#: server_replication.php:49 msgid "Unknown error" msgstr "" -#: server_replication.php:57 +#: server_replication.php:56 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:64 +#: server_replication.php:63 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:70 +#: server_replication.php:69 msgid "Unable to change master" msgstr "" -#: server_replication.php:73 +#: server_replication.php:72 #, php-format msgid "Master server changed succesfully to %s" msgstr "" -#: server_replication.php:181 +#: server_replication.php:180 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:183 server_status.php:391 +#: server_replication.php:182 server_status.php:391 #, fuzzy msgid "Show master status" msgstr "Show slave status" -#: server_replication.php:186 +#: server_replication.php:185 msgid "Show connected slaves" msgstr "" -#: server_replication.php:209 +#: server_replication.php:208 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:216 +#: server_replication.php:215 msgid "Master configuration" msgstr "" -#: server_replication.php:217 +#: server_replication.php:216 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -5076,111 +5129,111 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:220 +#: server_replication.php:219 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:221 +#: server_replication.php:220 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:224 +#: server_replication.php:223 #, fuzzy msgid "Please select databases:" msgstr "Please select a database" -#: server_replication.php:227 +#: server_replication.php:226 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: server_replication.php:229 +#: server_replication.php:228 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: server_replication.php:292 +#: server_replication.php:291 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:295 +#: server_replication.php:294 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:304 +#: server_replication.php:303 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:307 +#: server_replication.php:306 msgid "See slave status table" msgstr "" -#: server_replication.php:310 +#: server_replication.php:309 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:321 +#: server_replication.php:320 msgid "Control slave:" msgstr "" -#: server_replication.php:324 +#: server_replication.php:323 #, fuzzy msgid "Full start" msgstr "Fulltext" -#: server_replication.php:324 +#: server_replication.php:323 #, fuzzy msgid "Full stop" msgstr "Fulltext" -#: server_replication.php:325 +#: server_replication.php:324 msgid "Reset slave" msgstr "" -#: server_replication.php:326 +#: server_replication.php:325 #, php-format msgid "SQL Thread %s only" msgstr "" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 #, fuzzy msgid "Start" msgstr "শনিবার" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 msgid "Stop" msgstr "" -#: server_replication.php:327 +#: server_replication.php:326 #, php-format msgid "IO Thread %s only" msgstr "" -#: server_replication.php:331 +#: server_replication.php:330 msgid "Error management:" msgstr "" -#: server_replication.php:333 +#: server_replication.php:332 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:335 +#: server_replication.php:334 msgid "Skip current error" msgstr "" -#: server_replication.php:336 +#: server_replication.php:335 msgid "Skip next" msgstr "" -#: server_replication.php:339 +#: server_replication.php:338 msgid "errors." msgstr "" -#: server_replication.php:354 +#: server_replication.php:353 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -5996,113 +6049,113 @@ msgstr "Query type" msgid "Replication status" msgstr "Replication" -#: server_synchronize.php:93 +#: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:96 +#: server_synchronize.php:95 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:121 server_synchronize.php:124 tbl_create.php:77 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:264 +#: server_synchronize.php:263 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:271 +#: server_synchronize.php:270 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:399 server_synchronize.php:838 +#: server_synchronize.php:398 server_synchronize.php:837 msgid "not present" msgstr "" -#: server_synchronize.php:423 server_synchronize.php:866 +#: server_synchronize.php:422 server_synchronize.php:865 #, fuzzy msgid "Structure Difference" msgstr "Structure only" -#: server_synchronize.php:424 server_synchronize.php:867 +#: server_synchronize.php:423 server_synchronize.php:866 msgid "Data Difference" msgstr "" -#: server_synchronize.php:429 server_synchronize.php:872 +#: server_synchronize.php:428 server_synchronize.php:871 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:430 server_synchronize.php:873 +#: server_synchronize.php:429 server_synchronize.php:872 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:431 server_synchronize.php:874 +#: server_synchronize.php:430 server_synchronize.php:873 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:432 server_synchronize.php:875 +#: server_synchronize.php:431 server_synchronize.php:874 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:433 server_synchronize.php:876 +#: server_synchronize.php:432 server_synchronize.php:875 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:434 server_synchronize.php:877 +#: server_synchronize.php:433 server_synchronize.php:876 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:435 server_synchronize.php:878 +#: server_synchronize.php:434 server_synchronize.php:877 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:445 server_synchronize.php:889 +#: server_synchronize.php:444 server_synchronize.php:888 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:448 server_synchronize.php:893 +#: server_synchronize.php:447 server_synchronize.php:892 msgid "Apply Selected Changes" msgstr "" -#: server_synchronize.php:450 server_synchronize.php:895 +#: server_synchronize.php:449 server_synchronize.php:894 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:463 +#: server_synchronize.php:462 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:941 +#: server_synchronize.php:940 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:1002 +#: server_synchronize.php:1001 msgid "The following queries have been executed:" msgstr "" -#: server_synchronize.php:1121 +#: server_synchronize.php:1120 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1122 +#: server_synchronize.php:1121 #, fuzzy #| msgid "max. concurrent connections" msgid "Current connection" msgstr "max. concurrent connections" -#: server_synchronize.php:1151 +#: server_synchronize.php:1150 #, php-format msgid "Configuration: %s" msgstr "" -#: server_synchronize.php:1166 +#: server_synchronize.php:1165 msgid "Socket" msgstr "" -#: server_synchronize.php:1212 +#: server_synchronize.php:1211 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -6667,8 +6720,8 @@ msgstr "" #: setup/lib/messages.inc.php:128 msgid "" "Configure phpMyAdmin database to gain access to additional features, see " -"[a@../Documentation.html#linked-tables]linked-tables infrastructure[/a] in " -"documentation" +"[a@../Documentation.html#linked-tables]phpMyAdmin configuration storage[/a] " +"in documentation" msgstr "" #: setup/lib/messages.inc.php:129 setup/lib/messages.inc.php:290 @@ -7741,116 +7794,116 @@ msgstr "" msgid "ZIP" msgstr "" -#: sql.php:495 tbl_replace.php:385 +#: sql.php:494 tbl_replace.php:384 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: sql.php:512 +#: sql.php:511 msgid "Showing as PHP code" msgstr "" -#: sql.php:515 tbl_replace.php:359 +#: sql.php:514 tbl_replace.php:358 #, fuzzy msgid "Showing SQL query" msgstr "Show Full Queries" -#: sql.php:517 +#: sql.php:516 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Validate SQL" -#: sql.php:638 +#: sql.php:631 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problems with indexes of table `%s`" -#: sql.php:670 +#: sql.php:663 msgid "Label" msgstr "লেবেল" -#: tbl_addfield.php:188 tbl_alter.php:102 tbl_indexes.php:97 +#: tbl_addfield.php:185 tbl_alter.php:100 tbl_indexes.php:97 #, fuzzy, php-format msgid "Table %1$s has been altered successfully" msgstr "The selected users have been deleted successfully." -#: tbl_change.php:250 tbl_select.php:26 tbl_select.php:27 tbl_select.php:30 -#: tbl_select.php:33 +#: tbl_change.php:245 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_select.php:32 msgid "Browse foreign values" msgstr "Browse foreign values" -#: tbl_change.php:280 tbl_change.php:318 +#: tbl_change.php:275 tbl_change.php:313 msgid "Function" msgstr "ফাংশন" -#: tbl_change.php:300 tbl_indexes.php:199 tbl_indexes.php:224 +#: tbl_change.php:295 tbl_indexes.php:198 tbl_indexes.php:223 msgid "Ignore" msgstr "Ignore" -#: tbl_change.php:725 +#: tbl_change.php:720 #, fuzzy #| msgid " Because of its length,
                            this field might not be editable " msgid " Because of its length,
                            this column might not be editable " msgstr " Because of its length,
                            this field might not be editable " -#: tbl_change.php:884 +#: tbl_change.php:835 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:890 +#: tbl_change.php:841 msgid "Binary - do not edit" msgstr "বাইনারী -সম্পাদনা করবেন না" -#: tbl_change.php:983 +#: tbl_change.php:889 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:1128 +#: tbl_change.php:1026 msgid "Insert as new row" msgstr "Insert as new row" -#: tbl_change.php:1129 +#: tbl_change.php:1027 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:1130 +#: tbl_change.php:1028 msgid "Show insert query" msgstr "" -#: tbl_change.php:1145 +#: tbl_change.php:1043 msgid "Go back to previous page" msgstr "পূর্বের পাতায় ফিরে যাও" -#: tbl_change.php:1146 +#: tbl_change.php:1044 msgid "Insert another new row" msgstr "নতুন আরেকটি সাড়ি যোগ করুন" -#: tbl_change.php:1150 +#: tbl_change.php:1048 msgid "Go back to this page" msgstr "এই পাতায় ফিরে যাও" -#: tbl_change.php:1158 +#: tbl_change.php:1056 msgid "Edit next row" msgstr "পরবর্তী সাড়ি সম্পাদনা করুন" -#: tbl_change.php:1169 +#: tbl_change.php:1067 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" -#: tbl_change.php:1207 +#: tbl_change.php:1105 #, php-format msgid "Restart insertion with %s rows" msgstr "" -#: tbl_create.php:57 +#: tbl_create.php:55 #, php-format msgid "Table %s already exists!" msgstr "Table %s already exists!" -#: tbl_create.php:244 +#: tbl_create.php:241 #, fuzzy, php-format msgid "Table %1$s has been created." msgstr "Table %s has been dropped" @@ -7871,204 +7924,204 @@ msgstr "Can't rename index to PRIMARY!" msgid "No index parts defined!" msgstr "No index parts defined!" -#: tbl_indexes.php:159 +#: tbl_indexes.php:158 msgid "Create a new index" msgstr "একটি নতুন ইন্ডেস্ক তৈরী কর" -#: tbl_indexes.php:161 +#: tbl_indexes.php:160 msgid "Modify an index" msgstr "Modify an index" -#: tbl_indexes.php:167 +#: tbl_indexes.php:166 msgid "Index name:" msgstr "ইন্ডেস্ক নামঃ" -#: tbl_indexes.php:173 +#: tbl_indexes.php:172 msgid "Index type:" msgstr "ইন্ডেস্ক এর ধরনঃ" -#: tbl_indexes.php:183 +#: tbl_indexes.php:182 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" "(\"PRIMARY\" must be the name of and only of a primary key!)" -#: tbl_indexes.php:250 +#: tbl_indexes.php:249 #, php-format msgid "Add to index  %s column(s)" msgstr "Index এ যোগ কর  %s column(s)" -#: tbl_indexes.php:255 tbl_structure.php:588 tbl_structure.php:599 +#: tbl_indexes.php:254 tbl_structure.php:586 tbl_structure.php:597 msgid "Column count has to be larger than zero." msgstr "Column count has to be larger than zero." -#: tbl_move_copy.php:45 +#: tbl_move_copy.php:44 msgid "Can't move table to same one!" msgstr "Can't move table to same one!" -#: tbl_move_copy.php:47 +#: tbl_move_copy.php:46 msgid "Can't copy table to same one!" msgstr "Can't copy table to same one!" -#: tbl_move_copy.php:55 +#: tbl_move_copy.php:54 #, php-format msgid "Table %s has been moved to %s." msgstr "Table %s has been moved to %s." -#: tbl_move_copy.php:57 +#: tbl_move_copy.php:56 #, php-format msgid "Table %s has been copied to %s." msgstr "%s টেবিল %s তে কপি করা হয়েছে" -#: tbl_move_copy.php:81 +#: tbl_move_copy.php:80 msgid "The table name is empty!" msgstr "টেবিল এর নাম পূরন করা হয়নি" -#: tbl_operations.php:248 +#: tbl_operations.php:246 msgid "Alter table order by" msgstr "টেবিল অর্ডার পরিবর্তন কর" -#: tbl_operations.php:257 +#: tbl_operations.php:255 msgid "(singly)" msgstr "(singly)" -#: tbl_operations.php:277 +#: tbl_operations.php:275 msgid "Move table to (database.table):" msgstr "Move table to (database.table):" -#: tbl_operations.php:335 +#: tbl_operations.php:333 msgid "Table options" msgstr "Table options" -#: tbl_operations.php:339 +#: tbl_operations.php:337 msgid "Rename table to" msgstr "টেবিল রিনেম করুন" -#: tbl_operations.php:510 +#: tbl_operations.php:508 msgid "Copy table to (database.table):" msgstr "Copy table to (database.table):" -#: tbl_operations.php:557 +#: tbl_operations.php:555 msgid "Switch to copied table" msgstr "Switch to copied table" -#: tbl_operations.php:569 +#: tbl_operations.php:567 msgid "Table maintenance" msgstr "Table maintenance" -#: tbl_operations.php:590 +#: tbl_operations.php:588 msgid "Defragment table" msgstr "Defragment table" -#: tbl_operations.php:629 +#: tbl_operations.php:627 #, php-format msgid "Table %s has been flushed" msgstr "Table %s has been flushed" -#: tbl_operations.php:635 +#: tbl_operations.php:633 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Flush the table (\"FLUSH\")" -#: tbl_operations.php:650 +#: tbl_operations.php:648 #, fuzzy msgid "Partition maintenance" msgstr "Table maintenance" -#: tbl_operations.php:658 +#: tbl_operations.php:656 #, php-format msgid "Partition %s" msgstr "" -#: tbl_operations.php:661 +#: tbl_operations.php:659 msgid "Analyze" msgstr "" -#: tbl_operations.php:662 +#: tbl_operations.php:660 #, fuzzy msgid "Check" msgstr "চেক" -#: tbl_operations.php:663 +#: tbl_operations.php:661 msgid "Optimize" msgstr "" -#: tbl_operations.php:664 +#: tbl_operations.php:662 msgid "Rebuild" msgstr "" -#: tbl_operations.php:665 +#: tbl_operations.php:663 #, fuzzy msgid "Repair" msgstr "টেবিল রিপেয়ার করুন" -#: tbl_operations.php:677 +#: tbl_operations.php:675 msgid "Remove partitioning" msgstr "" -#: tbl_operations.php:703 +#: tbl_operations.php:701 msgid "Check referential integrity:" msgstr "Check referential integrity:" -#: tbl_printview.php:73 +#: tbl_printview.php:72 msgid "Show tables" msgstr "Show tables" -#: tbl_printview.php:308 tbl_structure.php:655 +#: tbl_printview.php:307 tbl_structure.php:653 msgid "Space usage" msgstr "Space usage" -#: tbl_printview.php:312 tbl_structure.php:659 +#: tbl_printview.php:311 tbl_structure.php:657 msgid "Usage" msgstr "ব্যাবহার" -#: tbl_printview.php:339 tbl_structure.php:686 +#: tbl_printview.php:338 tbl_structure.php:684 msgid "Effective" msgstr "Effective" -#: tbl_printview.php:364 tbl_structure.php:724 +#: tbl_printview.php:363 tbl_structure.php:722 msgid "Row Statistics" msgstr "Row Statistics" -#: tbl_printview.php:367 tbl_structure.php:727 +#: tbl_printview.php:366 tbl_structure.php:725 msgid "Statements" msgstr "Statements" -#: tbl_printview.php:378 tbl_structure.php:739 +#: tbl_printview.php:377 tbl_structure.php:737 msgid "static" msgstr "" -#: tbl_printview.php:380 tbl_structure.php:741 +#: tbl_printview.php:379 tbl_structure.php:739 msgid "dynamic" msgstr "ডায়নামিক" -#: tbl_printview.php:402 tbl_structure.php:784 +#: tbl_printview.php:401 tbl_structure.php:782 msgid "Row length" msgstr "সাড়ির দৈর্ঘ্য" -#: tbl_printview.php:412 tbl_structure.php:792 +#: tbl_printview.php:411 tbl_structure.php:790 msgid " Row size " msgstr " সাড়ির আকার" -#: tbl_relation.php:278 +#: tbl_relation.php:276 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" -#: tbl_relation.php:404 +#: tbl_relation.php:402 #, fuzzy #| msgid "Internal relations" msgid "Internal relation" msgstr "Internal relations" -#: tbl_relation.php:406 +#: tbl_relation.php:404 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: tbl_relation.php:412 +#: tbl_relation.php:410 msgid "Foreign key constraint" msgstr "" @@ -8076,232 +8129,232 @@ msgstr "" msgid "No rows selected" msgstr "No rows selected" -#: tbl_select.php:130 +#: tbl_select.php:129 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Do a \"query by example\" (wildcard: \"%\")" -#: tbl_select.php:136 +#: tbl_select.php:135 msgid "Operator" msgstr "অপারেটর" -#: tbl_select.php:267 +#: tbl_select.php:266 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "Select fields (at least one):" -#: tbl_select.php:285 +#: tbl_select.php:284 msgid "Add search conditions (body of the \"where\" clause):" msgstr "খোঁজার শর্ত যোগ কর (body of the \"where\" clause):" -#: tbl_select.php:292 +#: tbl_select.php:291 msgid "Number of rows per page" msgstr "Number of rows per page" -#: tbl_select.php:298 +#: tbl_select.php:297 msgid "Display order:" msgstr "ক্রম প্রদর্শন কর" -#: tbl_structure.php:160 +#: tbl_structure.php:159 msgid "Browse distinct values" msgstr "নির্দিষ্ট মান ব্রাউজ করুন" -#: tbl_structure.php:360 +#: tbl_structure.php:358 #, fuzzy #| msgid "None" msgctxt "None for default" msgid "None" msgstr "কোনটিই নয়" -#: tbl_structure.php:373 +#: tbl_structure.php:371 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Column %s has been dropped" msgstr "Table %s has been dropped" -#: tbl_structure.php:384 +#: tbl_structure.php:382 #, php-format msgid "A primary key has been added on %s" msgstr "একটি প্রাইমারী কী যোগ করা হয়েছে %s" -#: tbl_structure.php:399 tbl_structure.php:413 tbl_structure.php:427 +#: tbl_structure.php:397 tbl_structure.php:411 tbl_structure.php:425 #, php-format msgid "An index has been added on %s" msgstr "একটি Index যোগ করা হয়েছে %s" -#: tbl_structure.php:505 tbl_structure.php:507 +#: tbl_structure.php:503 tbl_structure.php:505 msgid "Relation view" msgstr "Relation view" -#: tbl_structure.php:514 tbl_structure.php:516 +#: tbl_structure.php:512 tbl_structure.php:514 msgid "Propose table structure" msgstr "Propose table structure" -#: tbl_structure.php:539 +#: tbl_structure.php:537 #, fuzzy #| msgid "Add %s field(s)" msgid "Add column" msgstr " %s ক্ষেত্রসমূহ যোগ কর" -#: tbl_structure.php:553 +#: tbl_structure.php:551 msgid "At End of Table" msgstr "টেবিলের শেষে" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At Beginning of Table" msgstr "টেবিলের শুরুতে" -#: tbl_structure.php:555 +#: tbl_structure.php:553 #, php-format msgid "After %s" msgstr "After %s" -#: tbl_structure.php:593 +#: tbl_structure.php:591 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "Create an index on %s columns" -#: tbl_structure.php:755 +#: tbl_structure.php:753 msgid "partitioned" msgstr "" -#: tbl_tracking.php:113 +#: tbl_tracking.php:109 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:186 +#: tbl_tracking.php:182 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "" -#: tbl_tracking.php:194 +#: tbl_tracking.php:190 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "" -#: tbl_tracking.php:202 +#: tbl_tracking.php:198 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "" -#: tbl_tracking.php:212 +#: tbl_tracking.php:208 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:219 +#: tbl_tracking.php:215 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:220 +#: tbl_tracking.php:216 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:229 +#: tbl_tracking.php:225 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:250 tbl_tracking.php:378 +#: tbl_tracking.php:245 tbl_tracking.php:373 msgid "Close" msgstr "" -#: tbl_tracking.php:261 +#: tbl_tracking.php:256 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:380 +#: tbl_tracking.php:375 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:396 tbl_tracking.php:503 +#: tbl_tracking.php:391 tbl_tracking.php:498 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "" -#: tbl_tracking.php:409 tbl_tracking.php:460 +#: tbl_tracking.php:404 tbl_tracking.php:455 #, fuzzy msgid "Date" msgstr "ডাটা" -#: tbl_tracking.php:410 tbl_tracking.php:461 +#: tbl_tracking.php:405 tbl_tracking.php:456 #, fuzzy msgid "Username" msgstr "ব্যাবহারকারী" -#: tbl_tracking.php:411 +#: tbl_tracking.php:406 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:462 +#: tbl_tracking.php:457 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:506 +#: tbl_tracking.php:501 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:507 +#: tbl_tracking.php:502 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:520 +#: tbl_tracking.php:515 #, fuzzy, php-format msgid "Export as %s" msgstr "Export type" -#: tbl_tracking.php:560 +#: tbl_tracking.php:555 msgid "Show versions" msgstr "" -#: tbl_tracking.php:592 +#: tbl_tracking.php:587 #, fuzzy msgid "Version" msgstr "পারসিয়ান" -#: tbl_tracking.php:639 +#: tbl_tracking.php:634 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "" -#: tbl_tracking.php:641 +#: tbl_tracking.php:636 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:652 +#: tbl_tracking.php:647 #, php-format msgid "Activate tracking for %s.%s" msgstr "" -#: tbl_tracking.php:654 +#: tbl_tracking.php:649 msgid "Activate now" msgstr "" -#: tbl_tracking.php:667 +#: tbl_tracking.php:662 #, php-format msgid "Create version %s of %s.%s" msgstr "" -#: tbl_tracking.php:671 +#: tbl_tracking.php:666 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:679 +#: tbl_tracking.php:674 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:687 +#: tbl_tracking.php:682 #, fuzzy msgid "Create version" msgstr "Server version" @@ -8352,11 +8405,36 @@ msgstr "The profile has been updated." msgid "VIEW name" msgstr "" -#: view_operations.php:92 +#: view_operations.php:91 #, fuzzy msgid "Rename view to" msgstr "টেবিল রিনেম করুন" +#, fuzzy +#~| msgid "Enabled" +#~ msgctxt "BLOB repository" +#~ msgid "Enabled" +#~ msgstr "Enabled" + +#, fuzzy +#~ msgid "Disable" +#~ msgstr "বন্ধ করা হয়েছে" + +#, fuzzy +#~ msgctxt "BLOB repository" +#~ msgid "Repair" +#~ msgstr "টেবিল রিপেয়ার করুন" + +#, fuzzy +#~| msgid "Disabled" +#~ msgctxt "BLOB repository" +#~ msgid "Disabled" +#~ msgstr "বন্ধ করা হয়েছে" + +#, fuzzy +#~ msgid "Enable" +#~ msgstr "Enabled" + #~ msgid "" #~ "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " #~ "extension. Please check your PHP configuration." diff --git a/po/bs.po b/po/bs.po index f5c4f1df9..b54663a3d 100644 --- a/po/bs.po +++ b/po/bs.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-21 13:53+0200\n" +"POT-Creation-Date: 2010-07-26 17:18+0200\n" "PO-Revision-Date: 2010-03-12 09:12+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: bosnian \n" @@ -13,19 +13,19 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.5.3\n" -#: browse_foreigners.php:37 browse_foreigners.php:58 -#: libraries/display_tbl.lib.php:416 server_privileges.php:1506 +#: browse_foreigners.php:36 browse_foreigners.php:57 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1510 msgid "Show all" msgstr "Prikaži sve" -#: browse_foreigners.php:81 libraries/common.lib.php:2313 -#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:393 -#: libraries/export/pdf.php:146 pdf_schema.php:282 pdf_schema.php:1122 -#: pdf_schema.php:1138 +#: browse_foreigners.php:80 libraries/common.lib.php:2318 +#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:392 +#: libraries/export/pdf.php:146 pdf_schema.php:281 pdf_schema.php:1121 +#: pdf_schema.php:1137 msgid "Page number:" msgstr "Broj strane:" -#: browse_foreigners.php:131 +#: browse_foreigners.php:130 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -35,139 +35,151 @@ msgstr "" "zatvorili matični prozor, ili vaš preraživač onemogućava ažuriranje među " "prozorima zbog sigurnosnih podešavanja" -#: browse_foreigners.php:149 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2829 -#: libraries/common.lib.php:2836 libraries/db_links.inc.php:74 -#: libraries/tbl_links.inc.php:62 +#: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 +#: db_structure.php:89 db_structure.php:91 db_structure.php:102 +#: db_structure.php:104 libraries/common.lib.php:2834 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Pretraživanje" -#: browse_foreigners.php:152 db_operations.php:384 db_operations.php:428 -#: db_operations.php:498 db_operations.php:608 db_search.php:344 -#: db_structure.php:566 js/messages.php:48 libraries/Config.class.php:1043 -#: libraries/Theme_Manager.class.php:310 +#: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 +#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 +#: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 -#: libraries/common.lib.php:1340 libraries/common.lib.php:2289 +#: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 -#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:275 -#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:531 -#: libraries/display_tbl.lib.php:613 libraries/replication_gui.lib.php:75 +#: libraries/display_export.lib.php:269 libraries/display_import.lib.php:275 +#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 +#: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 #: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:781 -#: main.php:127 navigation.php:231 pdf_pages.php:291 pdf_pages.php:327 -#: pdf_pages.php:529 pmd_pdf.php:115 server_binlog.php:128 -#: server_privileges.php:664 server_privileges.php:1616 -#: server_privileges.php:1963 server_privileges.php:2010 -#: server_privileges.php:2049 server_replication.php:234 -#: server_replication.php:317 server_replication.php:340 -#: server_synchronize.php:1208 tbl_change.php:328 tbl_change.php:1172 -#: tbl_change.php:1209 tbl_indexes.php:253 tbl_operations.php:264 -#: tbl_operations.php:301 tbl_operations.php:498 tbl_operations.php:560 -#: tbl_operations.php:680 tbl_select.php:324 tbl_structure.php:561 -#: tbl_structure.php:596 tbl_tracking.php:394 tbl_tracking.php:511 -#: view_create.php:181 view_operations.php:100 +#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 +#: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 +#: server_privileges.php:663 server_privileges.php:1620 +#: server_privileges.php:1967 server_privileges.php:2014 +#: server_privileges.php:2053 server_replication.php:233 +#: server_replication.php:316 server_replication.php:339 +#: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 +#: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 +#: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 +#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "Kreni" -#: browse_foreigners.php:167 browse_foreigners.php:171 -#: libraries/Index.class.php:441 tbl_tracking.php:319 +#: browse_foreigners.php:166 browse_foreigners.php:170 +#: libraries/Index.class.php:441 tbl_tracking.php:314 msgid "Keyname" msgstr "Ime ključa" -#: browse_foreigners.php:168 browse_foreigners.php:170 -#: server_collations.php:54 server_collations.php:66 server_engines.php:58 +#: browse_foreigners.php:167 browse_foreigners.php:169 +#: server_collations.php:54 server_collations.php:66 server_engines.php:57 #: server_status.php:738 msgid "Description" msgstr "Opis" -#: browse_foreigners.php:246 browse_foreigners.php:255 -#: browse_foreigners.php:267 browse_foreigners.php:275 +#: browse_foreigners.php:245 browse_foreigners.php:254 +#: browse_foreigners.php:266 browse_foreigners.php:274 msgid "Use this value" msgstr "Koristi ovu vrijednost" -#: db_create.php:45 +#: bs_disp_as_mime_type.php:29 bs_play_media.php:35 +msgid "No blob streaming server configured!" +msgstr "" + +#: bs_disp_as_mime_type.php:35 +msgid "Failed to fetch headers" +msgstr "" + +#: bs_disp_as_mime_type.php:41 +msgid "Failed to open remote URL" +msgstr "" + +#: db_create.php:44 #, fuzzy, php-format msgid "Database %1$s has been created." msgstr "Baza %s je odbačena." -#: db_datadict.php:48 db_operations.php:377 +#: db_datadict.php:48 db_operations.php:313 msgid "Database comment: " msgstr "Komentar baze:" -#: db_datadict.php:164 libraries/tbl_properties.inc.php:723 -#: pdf_schema.php:1235 tbl_operations.php:346 tbl_printview.php:128 +#: db_datadict.php:164 libraries/tbl_properties.inc.php:722 +#: pdf_schema.php:1234 tbl_operations.php:344 tbl_printview.php:127 msgid "Table comments" msgstr "Komentari tabele" -#: db_datadict.php:173 db_qbe.php:173 libraries/Index.class.php:445 +#: db_datadict.php:173 db_qbe.php:170 libraries/Index.class.php:445 #: libraries/export/htmlword.php:243 libraries/export/latex.php:364 #: libraries/export/odt.php:293 libraries/export/texytext.php:233 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:274 -#: pdf_schema.php:1261 pdf_schema.php:1282 tbl_change.php:306 -#: tbl_indexes.php:188 tbl_printview.php:140 tbl_relation.php:401 -#: tbl_select.php:133 tbl_structure.php:176 tbl_tracking.php:272 -#: tbl_tracking.php:323 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 +#: pdf_schema.php:1260 pdf_schema.php:1281 tbl_change.php:301 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:132 tbl_structure.php:175 tbl_tracking.php:267 +#: tbl_tracking.php:318 #, fuzzy #| msgid "Column names" msgid "Column" msgstr "Imena kolona" -#: db_datadict.php:174 db_printview.php:105 libraries/Index.class.php:442 +#: db_datadict.php:174 db_printview.php:104 libraries/Index.class.php:442 #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 #: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:244 #: libraries/export/latex.php:364 libraries/export/odt.php:296 #: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:99 -#: pdf_schema.php:1262 pdf_schema.php:1283 server_privileges.php:2062 -#: tbl_change.php:285 tbl_change.php:312 tbl_printview.php:141 -#: tbl_printview.php:311 tbl_select.php:134 tbl_structure.php:177 -#: tbl_structure.php:658 tbl_tracking.php:273 tbl_tracking.php:320 +#: pdf_schema.php:1261 pdf_schema.php:1282 server_privileges.php:2066 +#: tbl_change.php:280 tbl_change.php:307 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:133 tbl_structure.php:176 +#: tbl_structure.php:656 tbl_tracking.php:268 tbl_tracking.php:315 msgid "Type" msgstr "Tip" #: db_datadict.php:176 libraries/Index.class.php:448 #: libraries/export/htmlword.php:245 libraries/export/latex.php:364 #: libraries/export/odt.php:299 libraries/export/texytext.php:235 -#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1264 -#: pdf_schema.php:1285 tbl_change.php:321 tbl_printview.php:143 -#: tbl_structure.php:180 tbl_tracking.php:275 tbl_tracking.php:326 +#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1263 +#: pdf_schema.php:1284 tbl_change.php:316 tbl_printview.php:142 +#: tbl_structure.php:179 tbl_tracking.php:270 tbl_tracking.php:321 msgid "Null" msgstr "Null" -#: db_datadict.php:177 db_structure.php:500 libraries/export/htmlword.php:246 +#: db_datadict.php:177 db_structure.php:486 libraries/export/htmlword.php:246 #: libraries/export/latex.php:364 libraries/export/odt.php:302 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:105 -#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 -#: tbl_structure.php:181 tbl_tracking.php:276 +#: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:143 +#: tbl_structure.php:180 tbl_tracking.php:271 msgid "Default" msgstr "Podrazumjevano" #: db_datadict.php:181 libraries/export/htmlword.php:248 #: libraries/export/latex.php:366 libraries/export/odt.php:306 -#: libraries/export/texytext.php:238 pdf_schema.php:1267 pdf_schema.php:1288 -#: tbl_printview.php:148 +#: libraries/export/texytext.php:238 pdf_schema.php:1266 pdf_schema.php:1287 +#: tbl_printview.php:147 msgid "Links to" msgstr "Veze ka" -#: db_datadict.php:183 db_printview.php:111 libraries/export/htmlword.php:251 +#: db_datadict.php:183 db_printview.php:110 libraries/export/htmlword.php:251 #: libraries/export/latex.php:49 libraries/export/latex.php:369 #: libraries/export/odt.php:37 libraries/export/odt.php:311 #: libraries/export/sql.php:29 libraries/export/texytext.php:241 -#: libraries/tbl_properties.inc.php:129 pdf_schema.php:1278 -#: pdf_schema.php:1289 tbl_printview.php:150 +#: libraries/tbl_properties.inc.php:128 pdf_schema.php:1277 +#: pdf_schema.php:1288 tbl_printview.php:149 msgid "Comments" msgstr "Komentari" #: db_datadict.php:266 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/export/htmlword.php:321 #: libraries/export/latex.php:434 libraries/export/odt.php:367 -#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:262 -#: pdf_schema.php:1343 server_privileges.php:1560 server_privileges.php:1571 -#: server_privileges.php:1881 server_privileges.php:1886 -#: server_privileges.php:2179 sql.php:131 sql.php:193 tbl_printview.php:227 -#: tbl_structure.php:349 tbl_tracking.php:336 tbl_tracking.php:341 +#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:261 +#: pdf_schema.php:1342 server_privileges.php:1564 server_privileges.php:1575 +#: server_privileges.php:1885 server_privileges.php:1890 +#: server_privileges.php:2183 sql.php:130 sql.php:192 tbl_printview.php:226 +#: tbl_structure.php:347 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "Ne" @@ -178,17 +190,17 @@ msgstr "Ne" #: libraries/mult_submits.inc.php:49 libraries/mult_submits.inc.php:54 #: libraries/mult_submits.inc.php:59 libraries/mult_submits.inc.php:91 #: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:105 -#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:261 -#: libraries/mult_submits.inc.php:272 pdf_schema.php:1343 -#: server_databases.php:63 server_privileges.php:1557 -#: server_privileges.php:1571 server_privileges.php:1881 -#: server_privileges.php:1884 server_privileges.php:2179 sql.php:192 -#: tbl_printview.php:227 tbl_structure.php:39 tbl_structure.php:349 -#: tbl_tracking.php:334 tbl_tracking.php:339 +#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:260 +#: libraries/mult_submits.inc.php:271 pdf_schema.php:1342 +#: server_databases.php:61 server_privileges.php:1561 +#: server_privileges.php:1575 server_privileges.php:1885 +#: server_privileges.php:1888 server_privileges.php:2183 sql.php:191 +#: tbl_printview.php:226 tbl_structure.php:38 tbl_structure.php:347 +#: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" msgstr "Da" -#: db_datadict.php:321 db_printview.php:265 tbl_printview.php:496 +#: db_datadict.php:321 db_printview.php:264 tbl_printview.php:495 msgid "Print" msgstr "Štampaj" @@ -196,199 +208,158 @@ msgstr "Štampaj" msgid "View dump (schema) of database" msgstr "Prikaži sadržaj (shemu) baze" -#: db_export.php:32 db_printview.php:95 db_qbe.php:101 db_structure.php:50 -#: db_tracking.php:34 export.php:352 navigation.php:326 +#: db_export.php:32 db_printview.php:94 db_qbe.php:98 db_structure.php:49 +#: db_tracking.php:30 export.php:350 navigation.php:325 msgid "No tables found in database." msgstr "Tabele nisu pronađene u bazi." -#: db_export.php:42 db_search.php:326 server_export.php:26 +#: db_export.php:42 db_search.php:326 server_export.php:24 msgid "Select All" msgstr "Izaberi sve" -#: db_export.php:44 db_search.php:329 server_export.php:28 +#: db_export.php:44 db_search.php:329 server_export.php:26 msgid "Unselect All" msgstr "ništa" -#: db_operations.php:37 tbl_create.php:49 +#: db_operations.php:33 tbl_create.php:47 #, fuzzy msgid "The database name is empty!" msgstr "Ima tabele je prazno!" -#: db_operations.php:235 +#: db_operations.php:231 #, fuzzy, php-format msgid "Database %s has been renamed to %s" msgstr "Tabeli %s promjenjeno ime u %s" -#: db_operations.php:239 +#: db_operations.php:235 #, fuzzy, php-format msgid "Database %s has been copied to %s" msgstr "Tabela %s je kopirana u %s." -#: db_operations.php:411 +#: db_operations.php:347 #, fuzzy msgid "Rename database to" msgstr "Promjeni ime tabele u " -#: db_operations.php:416 server_processlist.php:56 +#: db_operations.php:352 server_processlist.php:56 msgid "Command" msgstr "Naredba" -#: db_operations.php:428 tbl_change.php:1141 +#: db_operations.php:364 tbl_change.php:1039 msgid "and then" msgstr "" -#: db_operations.php:454 +#: db_operations.php:390 #, fuzzy msgid "Copy database to" msgstr "Baza ne postoji" -#: db_operations.php:461 tbl_operations.php:527 tbl_tracking.php:387 +#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Samo struktura" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:389 +#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Struktura i podatci" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:388 +#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Samo podaci" -#: db_operations.php:471 +#: db_operations.php:407 msgid "CREATE DATABASE before copying" msgstr "" -#: db_operations.php:474 libraries/export/sql.php:51 +#: db_operations.php:410 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 -#: libraries/export/sql.php:81 tbl_operations.php:535 +#: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "" -#: db_operations.php:478 libraries/export/sql.php:77 tbl_operations.php:298 -#: tbl_operations.php:537 +#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Dodaj AUTO_INCREMENT vrijednost" -#: db_operations.php:482 tbl_operations.php:544 +#: db_operations.php:418 tbl_operations.php:542 msgid "Add constraints" msgstr "" -#: db_operations.php:495 +#: db_operations.php:431 #, fuzzy msgid "Switch to copied database" msgstr "Pređi na kopiranu tabelu" -#: db_operations.php:536 -msgid "BLOB Repository" -msgstr "" - -#: db_operations.php:539 db_tracking.php:75 libraries/common.lib.php:1357 -#: libraries/server_links.inc.php:48 server_processlist.php:58 -#: tbl_tracking.php:595 test/theme.php:100 -msgid "Status" -msgstr "Status" - -#: db_operations.php:547 -#, fuzzy -#| msgid "Enabled" -msgctxt "BLOB repository" -msgid "Enabled" -msgstr "Omogućeno" - -#: db_operations.php:551 -#, fuzzy -msgid "Disable" -msgstr "Onemogućeno" - -#: db_operations.php:561 -msgid "Damaged" -msgstr "" - -#: db_operations.php:565 -#, fuzzy -msgctxt "BLOB repository" -msgid "Repair" -msgstr "Popravi tabelu" - -#: db_operations.php:573 -#, fuzzy -#| msgid "Disabled" -msgctxt "BLOB repository" -msgid "Disabled" -msgstr "Onemogućeno" - -#: db_operations.php:577 -#, fuzzy -msgid "Enable" -msgstr "Omogućeno" - -#: db_operations.php:601 libraries/Index.class.php:447 +#: db_operations.php:451 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 -#: server_collations.php:53 server_collations.php:65 server_databases.php:110 -#: tbl_operations.php:362 tbl_select.php:135 tbl_structure.php:178 -#: tbl_structure.php:766 tbl_tracking.php:274 tbl_tracking.php:325 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 +#: server_collations.php:53 server_collations.php:65 server_databases.php:108 +#: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:177 +#: tbl_structure.php:764 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "Sortiranje" -#: db_operations.php:614 main.php:315 pdf_schema.php:33 -#, php-format +#: db_operations.php:464 pdf_schema.php:32 +#, fuzzy, php-format +#| msgid "" +#| "The additional features for working with linked tables have been " +#| "deactivated. To find out why click %shere%s." msgid "" -"The additional features for working with linked tables have been " -"deactivated. To find out why click %shere%s." +"The phpMyAdmin configuration storage has been deactivated. To find out why " +"click %shere%s." msgstr "" "Dodatne mogućnosti za rad sa povezanim tabelama su isključene. Da biste " "saznali zašto, kliknite %sovde%s." -#: db_operations.php:647 +#: db_operations.php:497 msgid "Edit PDF Pages" msgstr "Izmena PDF strana" -#: db_printview.php:103 db_tracking.php:71 db_tracking.php:156 +#: db_printview.php:102 db_tracking.php:67 db_tracking.php:152 #: libraries/db_structure.lib.php:37 libraries/export/xml.php:327 -#: libraries/header.inc.php:125 pdf_pages.php:423 server_privileges.php:1657 -#: server_privileges.php:1713 server_privileges.php:1977 -#: server_synchronize.php:422 server_synchronize.php:865 tbl_tracking.php:591 +#: libraries/header.inc.php:125 pdf_pages.php:422 server_privileges.php:1661 +#: server_privileges.php:1717 server_privileges.php:1981 +#: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "Tabela" -#: db_printview.php:104 libraries/db_structure.lib.php:47 +#: db_printview.php:103 libraries/db_structure.lib.php:47 #: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 -#: navigation.php:629 navigation.php:651 server_databases.php:121 -#: tbl_printview.php:392 tbl_structure.php:364 tbl_structure.php:776 +#: navigation.php:628 navigation.php:650 server_databases.php:119 +#: tbl_printview.php:391 tbl_structure.php:362 tbl_structure.php:774 msgid "Rows" msgstr "Redova" -#: db_printview.php:108 libraries/db_structure.lib.php:58 tbl_indexes.php:189 +#: db_printview.php:107 libraries/db_structure.lib.php:58 tbl_indexes.php:188 msgid "Size" msgstr "Veličina" -#: db_printview.php:161 db_structure.php:456 libraries/export/sql.php:556 +#: db_printview.php:160 db_structure.php:442 libraries/export/sql.php:556 #: libraries/export/sql.php:896 msgid "in use" msgstr "se koristi" -#: db_printview.php:186 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:511 pdf_schema.php:1240 tbl_printview.php:432 -#: tbl_structure.php:808 +#: db_printview.php:185 libraries/db_info.inc.php:86 +#: libraries/export/sql.php:511 pdf_schema.php:1239 tbl_printview.php:431 +#: tbl_structure.php:806 msgid "Creation" msgstr "Napravljeno" -#: db_printview.php:195 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:516 pdf_schema.php:1245 tbl_printview.php:442 -#: tbl_structure.php:816 +#: db_printview.php:194 libraries/db_info.inc.php:91 +#: libraries/export/sql.php:516 pdf_schema.php:1244 tbl_printview.php:441 +#: tbl_structure.php:814 msgid "Last update" msgstr "Posljednja izmjena" -#: db_printview.php:204 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:521 pdf_schema.php:1250 tbl_printview.php:452 -#: tbl_structure.php:824 +#: db_printview.php:203 libraries/db_info.inc.php:96 +#: libraries/export/sql.php:521 pdf_schema.php:1249 tbl_printview.php:451 +#: tbl_structure.php:822 msgid "Last check" msgstr "Posljednja provjera" -#: db_printview.php:221 db_structure.php:479 +#: db_printview.php:220 db_structure.php:465 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -396,94 +367,94 @@ msgid_plural "%s tables" msgstr[0] "%s tabela" msgstr[1] "%s tabela" -#: db_qbe.php:28 import.php:453 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1980 libraries/sql_query_form.lib.php:138 -#: tbl_operations.php:212 tbl_relation.php:291 tbl_row_action.php:130 -#: view_operations.php:61 +#: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 +#: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "Vaš SQL upit je uspešno izvršen" -#: db_qbe.php:41 +#: db_qbe.php:38 msgid "You have to choose at least one column to display" msgstr "Morate izabrati bar jednu kolonu za prikaz" -#: db_qbe.php:199 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:865 +#: db_qbe.php:196 libraries/db_structure.lib.php:95 +#: libraries/display_tbl.lib.php:864 msgid "Sort" msgstr "Sortiranje" -#: db_qbe.php:208 db_qbe.php:242 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:522 libraries/display_tbl.lib.php:827 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:259 -#: tbl_select.php:311 +#: db_qbe.php:205 db_qbe.php:239 libraries/db_structure.lib.php:102 +#: libraries/display_tbl.lib.php:521 libraries/display_tbl.lib.php:826 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:257 +#: tbl_select.php:310 msgid "Ascending" msgstr "Rastući" -#: db_qbe.php:209 db_qbe.php:250 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:527 libraries/display_tbl.lib.php:824 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:260 -#: tbl_select.php:312 +#: db_qbe.php:206 db_qbe.php:247 libraries/db_structure.lib.php:110 +#: libraries/display_tbl.lib.php:526 libraries/display_tbl.lib.php:823 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:258 +#: tbl_select.php:311 msgid "Descending" msgstr "Opadajući" -#: db_qbe.php:263 db_tracking.php:77 libraries/display_tbl.lib.php:307 -#: tbl_change.php:275 tbl_tracking.php:596 +#: db_qbe.php:260 db_tracking.php:73 libraries/display_tbl.lib.php:306 +#: tbl_change.php:270 tbl_tracking.php:591 msgid "Show" msgstr "Prikaži" -#: db_qbe.php:299 +#: db_qbe.php:296 msgid "Criteria" msgstr "Kriterijum" -#: db_qbe.php:352 db_qbe.php:434 db_qbe.php:526 db_qbe.php:557 +#: db_qbe.php:349 db_qbe.php:431 db_qbe.php:523 db_qbe.php:554 msgid "Ins" msgstr "Ins" -#: db_qbe.php:356 db_qbe.php:438 db_qbe.php:523 db_qbe.php:554 +#: db_qbe.php:353 db_qbe.php:435 db_qbe.php:520 db_qbe.php:551 msgid "And" msgstr "i" -#: db_qbe.php:365 db_qbe.php:446 db_qbe.php:528 db_qbe.php:559 +#: db_qbe.php:362 db_qbe.php:443 db_qbe.php:525 db_qbe.php:556 msgid "Del" msgstr "Del" -#: db_qbe.php:369 db_qbe.php:450 db_qbe.php:521 db_qbe.php:552 -#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:778 -#: server_privileges.php:297 tbl_change.php:1027 tbl_indexes.php:249 -#: tbl_select.php:285 +#: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 +#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:777 +#: server_privileges.php:296 tbl_change.php:925 tbl_indexes.php:248 +#: tbl_select.php:284 msgid "Or" msgstr "ili" -#: db_qbe.php:506 +#: db_qbe.php:503 msgid "Modify" msgstr "Promijeni" -#: db_qbe.php:583 +#: db_qbe.php:580 #, fuzzy #| msgid "Add/Delete Criteria Row" msgid "Add/Delete criteria rows" msgstr "Dodaj/obriši polje za kriterij" -#: db_qbe.php:595 +#: db_qbe.php:592 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Add/Delete columns" msgstr "Dodaj/obriši kolonu" -#: db_qbe.php:608 db_qbe.php:633 +#: db_qbe.php:605 db_qbe.php:630 msgid "Update Query" msgstr "Ažuriraj upit" -#: db_qbe.php:616 +#: db_qbe.php:613 msgid "Use Tables" msgstr "Koristi tabele" -#: db_qbe.php:639 +#: db_qbe.php:636 #, php-format msgid "SQL query on database %s:" msgstr "SQL upit na bazi %s:" -#: db_qbe.php:933 libraries/common.lib.php:1222 +#: db_qbe.php:930 libraries/common.lib.php:1215 msgid "Submit Query" msgstr "Izvrši SQL upit" @@ -523,17 +494,17 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s pogodaka unutar tabele %s" msgstr[1] "%s pogodaka unutar tabele %s" -#: db_search.php:249 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2831 -#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:49 -#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:466 +#: db_search.php:249 db_structure.php:75 db_structure.php:76 +#: db_structure.php:88 db_structure.php:90 db_structure.php:101 +#: db_structure.php:103 libraries/common.lib.php:2836 +#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 +#: tbl_structure.php:35 tbl_structure.php:47 tbl_structure.php:464 msgid "Browse" msgstr "Pregled" -#: db_search.php:254 libraries/display_tbl.lib.php:1164 -#: libraries/display_tbl.lib.php:2055 libraries/sql_query_form.lib.php:453 -#: pdf_pages.php:285 pdf_pages.php:424 pdf_pages.php:460 pdf_pages.php:488 +#: db_search.php:254 libraries/display_tbl.lib.php:1163 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 msgid "Delete" @@ -573,231 +544,237 @@ msgstr "Unutar tabela:" msgid "Inside column:" msgstr "Unutar tabela:" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2830 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:75 +#: db_structure.php:79 db_structure.php:80 db_structure.php:92 +#: db_structure.php:93 db_structure.php:105 db_structure.php:106 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 +#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Novi zapis" -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2827 libraries/common.lib.php:2834 -#: libraries/db_links.inc.php:62 libraries/export/htmlword.php:22 +#: db_structure.php:81 db_structure.php:94 db_structure.php:107 +#: libraries/common.lib.php:2832 libraries/common.lib.php:2839 +#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 -#: libraries/tbl_links.inc.php:55 pmd_general.php:133 -#: server_privileges.php:593 server_replication.php:314 tbl_tracking.php:268 +#: libraries/tbl_links.inc.php:54 pmd_general.php:133 +#: server_privileges.php:592 server_replication.php:313 tbl_tracking.php:263 msgid "Structure" msgstr "Struktura" -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:544 db_structure.php:545 db_tracking.php:90 -#: libraries/Index.class.php:482 libraries/common.lib.php:1659 -#: libraries/db_links.inc.php:99 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:126 -#: server_databases.php:351 tbl_structure.php:26 tbl_structure.php:150 -#: tbl_structure.php:151 tbl_structure.php:470 +#: db_structure.php:82 db_structure.php:83 db_structure.php:95 +#: db_structure.php:96 db_structure.php:108 db_structure.php:109 +#: db_structure.php:530 db_structure.php:531 db_tracking.php:86 +#: libraries/Index.class.php:482 libraries/common.lib.php:1663 +#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 +#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 +#: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" msgstr "Odbaci" -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:542 db_structure.php:543 libraries/common.lib.php:1658 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:104 +#: db_structure.php:84 db_structure.php:85 db_structure.php:97 +#: db_structure.php:98 db_structure.php:110 db_structure.php:111 +#: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 +#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 msgid "Empty" msgstr "Isprazni" -#: db_structure.php:315 libraries/tbl_links.inc.php:99 +#: db_structure.php:301 libraries/tbl_links.inc.php:98 #, php-format msgid "Table %s has been emptied" msgstr "Tabela %s je ispražnjena" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, fuzzy, php-format msgid "View %s has been dropped" msgstr "Polje %s je obrisano" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "Table %s has been dropped" msgstr "Tabela %s je odbačena" -#: db_structure.php:332 +#: db_structure.php:318 msgid "Tracking is active." msgstr "" -#: db_structure.php:334 +#: db_structure.php:320 msgid "Tracking is not active." msgstr "" -#: db_structure.php:419 libraries/display_tbl.lib.php:1943 +#: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -#: db_structure.php:433 db_structure.php:447 libraries/header.inc.php:125 -#: libraries/tbl_info.inc.php:65 tbl_structure.php:184 test/theme.php:73 +#: db_structure.php:419 db_structure.php:433 libraries/header.inc.php:125 +#: libraries/tbl_info.inc.php:60 tbl_structure.php:183 test/theme.php:73 msgid "View" msgstr "" -#: db_structure.php:484 libraries/db_structure.lib.php:40 -#: libraries/server_links.inc.php:69 server_replication.php:32 -#: server_replication.php:163 server_status.php:368 +#: db_structure.php:470 libraries/db_structure.lib.php:40 +#: libraries/server_links.inc.php:69 server_replication.php:31 +#: server_replication.php:162 server_status.php:368 #, fuzzy msgid "Replication" msgstr "Relacije" -#: db_structure.php:488 +#: db_structure.php:474 msgid "Sum" msgstr "Ukupno" -#: db_structure.php:495 libraries/StorageEngine.class.php:349 +#: db_structure.php:481 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: db_structure.php:523 db_structure.php:540 db_structure.php:541 -#: libraries/display_tbl.lib.php:2080 libraries/display_tbl.lib.php:2085 -#: libraries/mult_submits.inc.php:15 server_databases.php:345 -#: server_databases.php:350 server_privileges.php:1588 tbl_structure.php:454 -#: tbl_structure.php:463 +#: db_structure.php:509 db_structure.php:526 db_structure.php:527 +#: libraries/display_tbl.lib.php:2039 libraries/display_tbl.lib.php:2044 +#: libraries/mult_submits.inc.php:15 server_databases.php:343 +#: server_databases.php:348 server_privileges.php:1592 tbl_structure.php:452 +#: tbl_structure.php:461 msgid "With selected:" msgstr "Označeno:" -#: db_structure.php:526 libraries/display_tbl.lib.php:2075 -#: server_databases.php:347 server_privileges.php:569 -#: server_privileges.php:1591 tbl_structure.php:457 +#: db_structure.php:512 libraries/display_tbl.lib.php:2034 +#: server_databases.php:345 server_privileges.php:568 +#: server_privileges.php:1595 tbl_structure.php:455 msgid "Check All" msgstr "Označi sve" -#: db_structure.php:530 libraries/display_tbl.lib.php:2076 -#: libraries/replication_gui.lib.php:35 server_databases.php:349 -#: server_privileges.php:572 server_privileges.php:1595 tbl_structure.php:461 +#: db_structure.php:516 libraries/display_tbl.lib.php:2035 +#: libraries/replication_gui.lib.php:35 server_databases.php:347 +#: server_privileges.php:571 server_privileges.php:1599 tbl_structure.php:459 msgid "Uncheck All" msgstr "nijedno" -#: db_structure.php:535 +#: db_structure.php:521 msgid "Check tables having overhead" msgstr "" -#: db_structure.php:546 db_structure.php:547 db_structure.php:598 -#: libraries/display_tbl.lib.php:2179 libraries/mult_submits.inc.php:27 -#: tbl_structure.php:491 tbl_structure.php:493 +#: db_structure.php:532 db_structure.php:533 db_structure.php:584 +#: libraries/display_tbl.lib.php:2138 libraries/mult_submits.inc.php:27 +#: tbl_structure.php:489 tbl_structure.php:491 msgid "Print view" msgstr "Za štampu" -#: db_structure.php:548 db_structure.php:549 libraries/mult_submits.inc.php:41 -#: tbl_operations.php:580 +#: db_structure.php:534 db_structure.php:535 libraries/mult_submits.inc.php:41 +#: tbl_operations.php:578 msgid "Check table" msgstr "Provjeri tabelu" -#: db_structure.php:550 db_structure.php:551 libraries/mult_submits.inc.php:46 -#: tbl_operations.php:620 tbl_structure.php:708 tbl_structure.php:710 +#: db_structure.php:536 db_structure.php:537 libraries/mult_submits.inc.php:46 +#: tbl_operations.php:618 tbl_structure.php:706 tbl_structure.php:708 msgid "Optimize table" msgstr "Optimiziraj tabelu" -#: db_structure.php:552 db_structure.php:553 libraries/mult_submits.inc.php:51 -#: tbl_operations.php:610 +#: db_structure.php:538 db_structure.php:539 libraries/mult_submits.inc.php:51 +#: tbl_operations.php:608 msgid "Repair table" msgstr "Popravi tabelu" -#: db_structure.php:554 db_structure.php:555 libraries/mult_submits.inc.php:56 -#: tbl_operations.php:600 +#: db_structure.php:540 db_structure.php:541 libraries/mult_submits.inc.php:56 +#: tbl_operations.php:598 msgid "Analyze table" msgstr "Analiziraj tabelu" -#: db_structure.php:556 db_structure.php:557 libraries/db_links.inc.php:70 -#: libraries/display_export.lib.php:82 libraries/display_tbl.lib.php:2093 -#: libraries/display_tbl.lib.php:2224 libraries/mult_submits.inc.php:61 -#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:81 -#: pmd_pdf.php:83 pmd_pdf.php:108 server_privileges.php:1372 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 +#: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 +#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 +#: pmd_pdf.php:81 pmd_pdf.php:106 server_privileges.php:1376 #: setup/frames/menu.inc.php:22 tbl_row_action.php:58 msgid "Export" msgstr "Izvoz" -#: db_structure.php:605 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:591 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "Rečnik podataka" -#: db_tracking.php:65 +#: db_tracking.php:61 msgid "Tracked tables" msgstr "" -#: db_tracking.php:70 libraries/export/htmlword.php:85 +#: db_tracking.php:66 libraries/export/htmlword.php:85 #: libraries/export/latex.php:152 libraries/export/odt.php:112 #: libraries/export/sql.php:339 libraries/export/texytext.php:84 #: libraries/export/xml.php:254 libraries/header.inc.php:105 -#: libraries/header_printview.inc.php:57 server_databases.php:168 -#: server_privileges.php:1652 server_privileges.php:1713 -#: server_privileges.php:1971 server_processlist.php:55 -#: server_synchronize.php:1178 server_synchronize.php:1182 -#: tbl_tracking.php:590 test/theme.php:64 +#: libraries/header_printview.inc.php:57 server_databases.php:166 +#: server_privileges.php:1656 server_privileges.php:1717 +#: server_privileges.php:1975 server_processlist.php:55 +#: server_synchronize.php:1177 server_synchronize.php:1181 +#: tbl_tracking.php:585 test/theme.php:64 msgid "Database" msgstr "Baza podataka" -#: db_tracking.php:72 +#: db_tracking.php:68 msgid "Last version" msgstr "" -#: db_tracking.php:73 tbl_tracking.php:593 +#: db_tracking.php:69 tbl_tracking.php:588 #, fuzzy msgid "Created" msgstr "Napravi" -#: db_tracking.php:74 tbl_tracking.php:594 +#: db_tracking.php:70 tbl_tracking.php:589 msgid "Updated" msgstr "" -#: db_tracking.php:76 libraries/Index.class.php:439 -#: libraries/db_structure.lib.php:44 server_databases.php:202 -#: server_privileges.php:1534 server_privileges.php:1717 -#: server_privileges.php:2065 tbl_structure.php:186 +#: db_tracking.php:71 libraries/common.lib.php:1361 +#: libraries/server_links.inc.php:48 server_processlist.php:58 +#: tbl_tracking.php:590 test/theme.php:100 +msgid "Status" +msgstr "Status" + +#: db_tracking.php:72 libraries/Index.class.php:439 +#: libraries/db_structure.lib.php:44 server_databases.php:200 +#: server_privileges.php:1538 server_privileges.php:1721 +#: server_privileges.php:2069 tbl_structure.php:185 msgid "Action" msgstr "Akcija" -#: db_tracking.php:87 db_tracking.php:119 +#: db_tracking.php:83 db_tracking.php:115 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:105 tbl_tracking.php:547 tbl_tracking.php:605 -#: tbl_tracking.php:612 +#: db_tracking.php:101 tbl_tracking.php:542 tbl_tracking.php:600 +#: tbl_tracking.php:607 msgid "active" msgstr "" -#: db_tracking.php:107 tbl_tracking.php:549 tbl_tracking.php:607 -#: tbl_tracking.php:609 +#: db_tracking.php:103 tbl_tracking.php:544 tbl_tracking.php:602 +#: tbl_tracking.php:604 msgid "not active" msgstr "" -#: db_tracking.php:120 +#: db_tracking.php:116 #, fuzzy msgid "Versions" msgstr "Operacije" -#: db_tracking.php:121 tbl_tracking.php:378 tbl_tracking.php:623 +#: db_tracking.php:117 tbl_tracking.php:373 tbl_tracking.php:618 msgid "Tracking report" msgstr "" -#: db_tracking.php:122 tbl_tracking.php:250 tbl_tracking.php:623 +#: db_tracking.php:118 tbl_tracking.php:245 tbl_tracking.php:618 #, fuzzy msgid "Structure snapshot" msgstr "Samo struktura" -#: db_tracking.php:151 +#: db_tracking.php:147 msgid "Untracked tables" msgstr "" -#: db_tracking.php:171 db_tracking.php:173 tbl_structure.php:527 -#: tbl_structure.php:529 +#: db_tracking.php:167 db_tracking.php:169 tbl_structure.php:525 +#: tbl_structure.php:527 #, fuzzy msgid "Track table" msgstr "Provjeri tabelu" -#: db_tracking.php:199 +#: db_tracking.php:195 #, fuzzy msgid "Database Log" msgstr "Baza podataka" @@ -806,12 +783,12 @@ msgstr "Baza podataka" msgid "Selected export type has to be saved in file!" msgstr "" -#: export.php:153 export.php:178 export.php:620 +#: export.php:152 export.php:177 export.php:615 #, php-format msgid "Insufficient space to save the file %s." msgstr "Nedovoljno prostora za snimanje datoteke %s." -#: export.php:287 +#: export.php:286 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -819,91 +796,91 @@ msgstr "" "Datoteka %s već postoji na serveru, promijenite ime datoteke ili uključite " "opciju prepisivanja." -#: export.php:291 export.php:295 +#: export.php:290 export.php:294 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Veb serveru nije dozvoljeno da sačuva datoteku %s." -#: export.php:622 +#: export.php:617 #, php-format msgid "Dump has been saved to file %s." msgstr "Sadržaj baze je sačuvan u fajl %s." -#: import.php:59 +#: 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." msgstr "" -#: import.php:278 import.php:331 libraries/File.class.php:840 -#: libraries/File.class.php:950 +#: import.php:277 import.php:330 libraries/File.class.php:566 +#: libraries/File.class.php:676 msgid "File could not be read" msgstr "Datoteku nije moguće pročitati" -#: import.php:286 import.php:295 import.php:314 import.php:323 -#: libraries/File.class.php:1020 libraries/File.class.php:1028 -#: libraries/File.class.php:1044 libraries/File.class.php:1052 +#: import.php:285 import.php:294 import.php:313 import.php:322 +#: libraries/File.class.php:746 libraries/File.class.php:754 +#: libraries/File.class.php:770 libraries/File.class.php:778 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." msgstr "" -#: import.php:336 +#: import.php:335 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " "[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." msgstr "" -#: import.php:371 libraries/display_import.lib.php:23 +#: import.php:370 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:396 +#: import.php:395 msgid "The bookmark has been deleted." msgstr "Obilježivač je upravo obrisan." -#: import.php:400 +#: import.php:399 msgid "Showing bookmark" msgstr "" -#: import.php:402 sql.php:625 +#: import.php:401 sql.php:618 #, php-format msgid "Bookmark %s created" msgstr "" -#: import.php:408 import.php:414 +#: import.php:407 import.php:413 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" -#: import.php:423 +#: import.php:422 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: import.php:425 +#: import.php:424 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." msgstr "" -#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:240 +#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:239 #: user_password.php:110 msgid "Back" msgstr "Nazad" -#: index.php:188 +#: index.php:183 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin preferira čitače koji podržavaju okvire." -#: js/messages.php:25 server_synchronize.php:344 server_synchronize.php:356 -#: server_synchronize.php:372 server_synchronize.php:379 -#: server_synchronize.php:738 server_synchronize.php:766 -#: server_synchronize.php:794 server_synchronize.php:806 +#: js/messages.php:25 server_synchronize.php:343 server_synchronize.php:355 +#: server_synchronize.php:371 server_synchronize.php:378 +#: server_synchronize.php:737 server_synchronize.php:765 +#: server_synchronize.php:793 server_synchronize.php:805 msgid "Click to select" msgstr "" @@ -911,15 +888,15 @@ msgstr "" msgid "Click to unselect" msgstr "" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:88 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:87 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" komanda je onemogućena." -#: js/messages.php:30 libraries/mult_submits.inc.php:257 sql.php:187 +#: js/messages.php:30 libraries/mult_submits.inc.php:256 sql.php:186 msgid "Do you really want to " msgstr "Da li stvarno hoćete da " -#: js/messages.php:31 libraries/mult_submits.inc.php:257 sql.php:171 +#: js/messages.php:31 libraries/mult_submits.inc.php:256 sql.php:170 msgid "You are about to DESTROY a complete database!" msgstr "" @@ -948,11 +925,11 @@ msgstr "Ime hosta je prazno!" msgid "The user name is empty!" msgstr "Ime korisnika nije unijeto!" -#: js/messages.php:44 server_privileges.php:1228 user_password.php:65 +#: js/messages.php:44 server_privileges.php:1229 user_password.php:65 msgid "The password is empty!" msgstr "Lozinka je prazna!" -#: js/messages.php:45 server_privileges.php:1226 user_password.php:68 +#: js/messages.php:45 server_privileges.php:1227 user_password.php:68 msgid "The passwords aren't the same!" msgstr "Lozinke nisu identične!" @@ -960,29 +937,29 @@ msgstr "Lozinke nisu identične!" msgid "Cancel" msgstr "" -#: js/messages.php:52 pmd_save_pos.php:53 +#: js/messages.php:52 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "Izmjene su sačuvane" -#: js/messages.php:53 pmd_relation_upd.php:48 +#: js/messages.php:53 pmd_relation_upd.php:47 #, fuzzy msgid "Relation deleted" msgstr "Relacioni pogled" -#: js/messages.php:54 pmd_relation_new.php:63 +#: js/messages.php:54 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:55 pmd_relation_new.php:85 +#: js/messages.php:55 pmd_relation_new.php:84 #, fuzzy msgid "Internal relation added" msgstr "Opšte osobine relacija" -#: js/messages.php:56 pmd_relation_new.php:62 pmd_relation_new.php:87 +#: js/messages.php:56 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:57 pmd_relation_new.php:30 +#: js/messages.php:57 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "" @@ -990,13 +967,13 @@ msgstr "" msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:59 libraries/relation.lib.php:94 -#: libraries/relation.lib.php:106 +#: js/messages.php:59 libraries/relation.lib.php:89 +#: libraries/relation.lib.php:101 msgid "General relation features" msgstr "Opšte osobine relacija" -#: js/messages.php:59 libraries/relation.lib.php:88 -#: libraries/relation.lib.php:95 +#: js/messages.php:59 libraries/relation.lib.php:83 +#: libraries/relation.lib.php:90 msgid "Disabled" msgstr "Onemogućeno" @@ -1012,7 +989,7 @@ msgstr "" msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:547 +#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" @@ -1044,10 +1021,10 @@ msgid "Prev" msgstr "Prethodna" #. l10n: Display text for next month link in calendar -#: js/messages.php:81 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:337 -#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:422 -#: tbl_structure.php:800 +#: js/messages.php:81 libraries/common.lib.php:2358 +#: libraries/common.lib.php:2361 libraries/display_tbl.lib.php:336 +#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 +#: tbl_structure.php:798 msgid "Next" msgstr "Slijedeći" @@ -1121,27 +1098,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1562 +#: js/messages.php:101 libraries/common.lib.php:1566 msgid "Jan" msgstr "jan" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1564 +#: js/messages.php:103 libraries/common.lib.php:1568 msgid "Feb" msgstr "feb" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1566 +#: js/messages.php:105 libraries/common.lib.php:1570 msgid "Mar" msgstr "mar" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1568 +#: js/messages.php:107 libraries/common.lib.php:1572 msgid "Apr" msgstr "apr" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1570 +#: js/messages.php:109 libraries/common.lib.php:1574 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1149,37 +1126,37 @@ msgid "May" msgstr "maj" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1572 +#: js/messages.php:111 libraries/common.lib.php:1576 msgid "Jun" msgstr "jun" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1574 +#: js/messages.php:113 libraries/common.lib.php:1578 msgid "Jul" msgstr "jul" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1576 +#: js/messages.php:115 libraries/common.lib.php:1580 msgid "Aug" msgstr "aug" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1578 +#: js/messages.php:117 libraries/common.lib.php:1582 msgid "Sep" msgstr "sep" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1580 +#: js/messages.php:119 libraries/common.lib.php:1584 msgid "Oct" msgstr "okt" #. l10n: Short month name -#: js/messages.php:121 libraries/common.lib.php:1582 +#: js/messages.php:121 libraries/common.lib.php:1586 msgid "Nov" msgstr "nov" #. l10n: Short month name -#: js/messages.php:123 libraries/common.lib.php:1584 +#: js/messages.php:123 libraries/common.lib.php:1588 msgid "Dec" msgstr "dec" @@ -1220,37 +1197,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1587 +#: js/messages.php:136 libraries/common.lib.php:1591 msgid "Sun" msgstr "Ned" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1589 +#: js/messages.php:138 libraries/common.lib.php:1593 msgid "Mon" msgstr "Pon" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1591 +#: js/messages.php:140 libraries/common.lib.php:1595 msgid "Tue" msgstr "Uto" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1593 +#: js/messages.php:142 libraries/common.lib.php:1597 msgid "Wed" msgstr "Sri" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1595 +#: js/messages.php:144 libraries/common.lib.php:1599 msgid "Thu" msgstr "Čet" #. l10n: Short week day name -#: js/messages.php:146 libraries/common.lib.php:1597 +#: js/messages.php:146 libraries/common.lib.php:1601 msgid "Fri" msgstr "Pet" #. l10n: Short week day name -#: js/messages.php:148 libraries/common.lib.php:1599 +#: js/messages.php:148 libraries/common.lib.php:1603 msgid "Sat" msgstr "Sub" @@ -1328,75 +1305,74 @@ msgstr "u sekundi" msgid "Font size" msgstr "" -#: libraries/File.class.php:336 libraries/File.class.php:424 -#: libraries/File.class.php:561 libraries/File.class.php:700 -msgid "Unknown error in file upload." -msgstr "" - -#: libraries/File.class.php:406 +#: libraries/File.class.php:315 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:409 +#: libraries/File.class.php:318 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:412 +#: libraries/File.class.php:321 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:415 +#: libraries/File.class.php:324 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:418 +#: libraries/File.class.php:327 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:421 +#: libraries/File.class.php:330 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:898 +#: libraries/File.class.php:333 +msgid "Unknown error in file upload." +msgstr "" + +#: libraries/File.class.php:624 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "" -#: libraries/Index.class.php:427 tbl_relation.php:528 +#: libraries/Index.class.php:427 tbl_relation.php:526 msgid "No index defined!" msgstr "Ključ nije definisan!" -#: libraries/Index.class.php:432 server_databases.php:131 tbl_tracking.php:315 +#: libraries/Index.class.php:432 server_databases.php:129 tbl_tracking.php:310 msgid "Indexes" msgstr "Ključevi" #: libraries/Index.class.php:443 libraries/mult_submits.inc.php:102 -#: libraries/tbl_properties.inc.php:518 tbl_structure.php:32 -#: tbl_structure.php:154 tbl_structure.php:158 tbl_structure.php:473 -#: tbl_tracking.php:321 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:31 +#: tbl_structure.php:153 tbl_structure.php:157 tbl_structure.php:471 +#: tbl_tracking.php:316 msgid "Unique" msgstr "Jedinstveni" -#: libraries/Index.class.php:444 tbl_tracking.php:322 +#: libraries/Index.class.php:444 tbl_tracking.php:317 msgid "Packed" msgstr "" -#: libraries/Index.class.php:446 tbl_tracking.php:324 +#: libraries/Index.class.php:446 tbl_tracking.php:319 msgid "Cardinality" msgstr "Kardinalnost" -#: libraries/Index.class.php:449 tbl_tracking.php:278 tbl_tracking.php:327 +#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322 #, fuzzy msgid "Comment" msgstr "Komentari" #: libraries/Index.class.php:465 libraries/common.lib.php:609 -#: libraries/common.lib.php:1198 libraries/display_tbl.lib.php:1116 +#: libraries/common.lib.php:1191 libraries/display_tbl.lib.php:1115 #: libraries/import.lib.php:1119 libraries/import.lib.php:1143 -#: pdf_pages.php:284 setup/frames/index.inc.php:124 +#: pdf_pages.php:283 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:349 tbl_row_action.php:68 msgid "Edit" msgstr "Promeni" @@ -1418,15 +1394,15 @@ msgid "" msgstr "" #: libraries/List_Database.class.php:430 libraries/server_links.inc.php:40 -#: server_databases.php:87 server_privileges.php:1652 +#: server_databases.php:85 server_privileges.php:1656 #: setup/lib/messages.inc.php:107 test/theme.php:92 msgid "Databases" msgstr "Baze" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:259 libraries/import.lib.php:134 pdf_schema.php:31 -#: pdf_schema.php:231 tbl_change.php:1023 tbl_operations.php:212 -#: tbl_relation.php:289 view_operations.php:61 +#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 +#: tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Greška" @@ -1451,40 +1427,40 @@ msgid_plural "%1$d rows inserted." msgstr[0] "" msgstr[1] "" -#: libraries/StorageEngine.class.php:196 +#: libraries/StorageEngine.class.php:194 msgid "" "There is no detailed status information available for this storage engine." msgstr "" -#: libraries/StorageEngine.class.php:352 +#: libraries/StorageEngine.class.php:354 #, php-format msgid "%s is available on this MySQL server." msgstr "" -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:357 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "" -#: libraries/StorageEngine.class.php:359 +#: libraries/StorageEngine.class.php:361 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "" -#: libraries/Table.class.php:1018 +#: libraries/Table.class.php:1017 msgid "Invalid database" msgstr "" -#: libraries/Table.class.php:1032 tbl_get_field.php:25 +#: libraries/Table.class.php:1031 tbl_get_field.php:25 msgid "Invalid table name" msgstr "" -#: libraries/Table.class.php:1047 +#: libraries/Table.class.php:1046 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "" -#: libraries/Table.class.php:1131 +#: libraries/Table.class.php:1129 #, php-format msgid "Table %s has been renamed to %s" msgstr "Tabeli %s promjenjeno ime u %s" @@ -1502,22 +1478,22 @@ msgstr "" msgid "take it" msgstr "" -#: libraries/Theme_Manager.class.php:114 +#: libraries/Theme_Manager.class.php:109 #, php-format msgid "Default theme %s not found!" msgstr "" -#: libraries/Theme_Manager.class.php:152 +#: libraries/Theme_Manager.class.php:147 #, php-format msgid "Theme %s not found!" msgstr "" -#: libraries/Theme_Manager.class.php:220 +#: libraries/Theme_Manager.class.php:215 #, php-format msgid "Theme path not found for theme %s!" msgstr "" -#: libraries/Theme_Manager.class.php:296 test/theme.php:160 themes.php:20 +#: libraries/Theme_Manager.class.php:291 test/theme.php:160 themes.php:20 #: themes.php:40 msgid "Theme / Style" msgstr "" @@ -1629,19 +1605,19 @@ msgstr "" msgid "Authenticating..." msgstr "" -#: libraries/blobstreaming.lib.php:689 +#: libraries/blobstreaming.lib.php:340 msgid "View image" msgstr "" -#: libraries/blobstreaming.lib.php:693 +#: libraries/blobstreaming.lib.php:344 msgid "Play audio" msgstr "" -#: libraries/blobstreaming.lib.php:698 +#: libraries/blobstreaming.lib.php:349 msgid "View video" msgstr "" -#: libraries/blobstreaming.lib.php:702 +#: libraries/blobstreaming.lib.php:353 msgid "Download file" msgstr "" @@ -1693,7 +1669,7 @@ msgstr "Server" msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:909 +#: libraries/common.inc.php:908 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" @@ -1720,7 +1696,8 @@ msgstr "Poslato" #: libraries/common.lib.php:425 libraries/common.lib.php:427 #: libraries/common.lib.php:429 libraries/common.lib.php:445 #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 -#: libraries/display_export.lib.php:163 libraries/relation.lib.php:84 +#: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 +#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 #: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" @@ -1735,146 +1712,146 @@ msgstr "SQL upit" msgid "MySQL said: " msgstr "MySQL kaže: " -#: libraries/common.lib.php:1136 +#: libraries/common.lib.php:1129 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1174 setup/lib/messages.inc.php:350 +#: libraries/common.lib.php:1167 setup/lib/messages.inc.php:350 msgid "Explain SQL" msgstr "Objasni SQL" -#: libraries/common.lib.php:1177 +#: libraries/common.lib.php:1170 msgid "Skip Explain SQL" msgstr "Preskoči objašnjavanje SQL-a" -#: libraries/common.lib.php:1211 +#: libraries/common.lib.php:1204 msgid "Without PHP Code" msgstr "bez PHP koda" -#: libraries/common.lib.php:1214 setup/lib/messages.inc.php:352 +#: libraries/common.lib.php:1207 setup/lib/messages.inc.php:352 msgid "Create PHP Code" msgstr "Napravi PHP kod" -#: libraries/common.lib.php:1232 server_status.php:451 +#: libraries/common.lib.php:1225 server_status.php:451 #: setup/lib/messages.inc.php:351 msgid "Refresh" msgstr "" -#: libraries/common.lib.php:1241 +#: libraries/common.lib.php:1234 msgid "Skip Validate SQL" msgstr "Preskoči provjeru SQL-a" -#: libraries/common.lib.php:1244 setup/lib/messages.inc.php:353 +#: libraries/common.lib.php:1237 setup/lib/messages.inc.php:353 msgid "Validate SQL" msgstr "Provjeri SQL" -#: libraries/common.lib.php:1283 +#: libraries/common.lib.php:1287 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1285 +#: libraries/common.lib.php:1289 msgid "Inline" msgstr "" -#: libraries/common.lib.php:1339 libraries/common.lib.php:1354 +#: libraries/common.lib.php:1343 libraries/common.lib.php:1358 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1358 libraries/tbl_triggers.lib.php:27 +#: libraries/common.lib.php:1362 libraries/tbl_triggers.lib.php:27 #: server_processlist.php:57 msgid "Time" msgstr "Vrijeme" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "B" msgstr "bajta" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "KiB" msgstr "KB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "MiB" msgstr "MB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "GiB" msgstr "GB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "TiB" msgstr "TB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "PiB" msgstr "PB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "EiB" msgstr "EB" #. l10n: Thousands separator -#: libraries/common.lib.php:1424 +#: libraries/common.lib.php:1428 msgid "," msgstr "," #. l10n: Decimal separator -#: libraries/common.lib.php:1426 +#: libraries/common.lib.php:1430 msgid "." msgstr "." #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1603 +#: libraries/common.lib.php:1607 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%d. %B %Y. u %H:%M" -#: libraries/common.lib.php:1909 +#: libraries/common.lib.php:1913 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dana, %s sati, %s minuta i %s sekundi" -#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 -#: libraries/display_tbl.lib.php:289 server_status.php:718 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 +#: libraries/display_tbl.lib.php:288 server_status.php:718 msgid "Begin" msgstr "Početak" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 -#: libraries/display_tbl.lib.php:290 server_binlog.php:154 +#: libraries/common.lib.php:2328 libraries/common.lib.php:2331 +#: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "Prethodna" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 -#: libraries/display_tbl.lib.php:352 +#: libraries/common.lib.php:2359 libraries/common.lib.php:2362 +#: libraries/display_tbl.lib.php:351 msgid "End" msgstr "Kraj" -#: libraries/common.lib.php:2429 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "Pređi na bazu "%s"." -#: libraries/common.lib.php:2448 +#: libraries/common.lib.php:2453 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2828 libraries/common.lib.php:2835 -#: libraries/db_links.inc.php:67 libraries/export/sql.php:24 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 +#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 -#: libraries/tbl_links.inc.php:59 querywindow.php:89 test/theme.php:96 +#: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2837 libraries/db_links.inc.php:103 -#: libraries/tbl_links.inc.php:94 libraries/tbl_links.inc.php:116 -#: view_operations.php:88 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: view_operations.php:87 msgid "Operations" msgstr "Operacije" -#: libraries/core.lib.php:282 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1890,39 +1867,39 @@ msgstr "" msgid "Name" msgstr "Ime" -#: libraries/db_links.inc.php:44 +#: libraries/db_links.inc.php:43 #, php-format msgid "Database %s has been dropped." msgstr "Baza %s je odbačena." -#: libraries/db_links.inc.php:56 libraries/db_links.inc.php:57 -#: libraries/db_links.inc.php:58 +#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 +#: libraries/db_links.inc.php:57 msgid "Database seems to be empty!" msgstr "" -#: libraries/db_links.inc.php:80 libraries/relation.lib.php:142 -#: libraries/tbl_links.inc.php:68 +#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:85 +#: libraries/db_links.inc.php:84 msgid "Query" msgstr "Upit po primeru" -#: libraries/db_links.inc.php:90 libraries/relation.lib.php:138 +#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:97 libraries/server_links.inc.php:87 -#: libraries/tbl_links.inc.php:90 pmd_pdf.php:83 pmd_pdf.php:109 +#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 #, fuzzy msgid "Import" msgstr "Izvoz" -#: libraries/db_links.inc.php:110 libraries/server_links.inc.php:65 -#: server_privileges.php:111 server_privileges.php:1714 -#: server_privileges.php:2063 test/theme.php:116 +#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: server_privileges.php:110 server_privileges.php:1718 +#: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" msgstr "Privilegije" @@ -1934,14 +1911,14 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1847 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1806 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "" -#: libraries/db_structure.lib.php:60 server_databases.php:141 -#: tbl_printview.php:334 tbl_structure.php:681 +#: libraries/db_structure.lib.php:60 server_databases.php:139 +#: tbl_printview.php:333 tbl_structure.php:679 msgid "Overhead" msgstr "Prekoračenje" @@ -1958,7 +1935,7 @@ msgstr "" msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "" -#: libraries/dbi/mysql.dbi.lib.php:358 tbl_structure.php:607 +#: libraries/dbi/mysql.dbi.lib.php:358 tbl_structure.php:605 msgid "Details..." msgstr "" @@ -1968,22 +1945,22 @@ msgid "Change password" msgstr "Promeni lozinku" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:807 +#: libraries/replication_gui.lib.php:347 server_privileges.php:806 msgid "No Password" msgstr "Nema lozinke" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1530 server_synchronize.php:1174 +#: libraries/replication_gui.lib.php:351 server_privileges.php:795 +#: server_privileges.php:799 server_privileges.php:810 +#: server_privileges.php:1534 server_synchronize.php:1173 msgid "Password" msgstr "Lozinka" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:815 server_privileges.php:818 +#: server_privileges.php:814 server_privileges.php:817 msgid "Re-type" msgstr "Ponovite unos" @@ -2004,8 +1981,8 @@ msgstr "Napravi novu bazu podataka" msgid "Create" msgstr "Napravi" -#: libraries/display_create_database.lib.php:39 server_privileges.php:113 -#: server_privileges.php:1419 server_replication.php:34 +#: libraries/display_create_database.lib.php:39 server_privileges.php:112 +#: server_privileges.php:1423 server_replication.php:33 msgid "No Privileges" msgstr "Nema privilegija" @@ -2026,51 +2003,51 @@ msgstr "Napravi novu tabelu u bazi %s" msgid "Number of columns" msgstr "Broj redova po strani" -#: libraries/display_export.lib.php:41 +#: libraries/display_export.lib.php:35 msgid "Could not load export plugins, please check your installation!" msgstr "" -#: libraries/display_export.lib.php:106 +#: libraries/display_export.lib.php:100 #, fuzzy, php-format #| msgid "Dump %s row(s) starting at record # %s" msgid "Dump %s row(s) starting at row # %s" msgstr "Prikaži %s redova počevši od reda %s." -#: libraries/display_export.lib.php:114 +#: libraries/display_export.lib.php:108 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:124 setup/lib/messages.inc.php:79 +#: libraries/display_export.lib.php:118 setup/lib/messages.inc.php:79 msgid "Save as file" msgstr "Sačuvaj kao datoteku" -#: libraries/display_export.lib.php:133 +#: libraries/display_export.lib.php:127 #, php-format msgid "Save on server in %s directory" msgstr "Sačuvaj na server u direktorijum %s" -#: libraries/display_export.lib.php:141 setup/lib/messages.inc.php:87 +#: libraries/display_export.lib.php:135 setup/lib/messages.inc.php:87 msgid "Overwrite existing file(s)" msgstr "Prepiši postojeće fajlove" -#: libraries/display_export.lib.php:147 +#: libraries/display_export.lib.php:141 msgid "File name template" msgstr "Šablon imena datoteke" -#: libraries/display_export.lib.php:151 +#: libraries/display_export.lib.php:145 #, fuzzy msgid "server name" msgstr "Ime korisnika" -#: libraries/display_export.lib.php:154 +#: libraries/display_export.lib.php:148 msgid "database name" msgstr "" -#: libraries/display_export.lib.php:157 +#: libraries/display_export.lib.php:151 msgid "table name" msgstr "" -#: libraries/display_export.lib.php:161 +#: libraries/display_export.lib.php:155 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2078,39 +2055,39 @@ msgid "" "%3$s. Other text will be kept as is." msgstr "" -#: libraries/display_export.lib.php:202 +#: libraries/display_export.lib.php:196 msgid "remember template" msgstr "zapamti šablon" -#: libraries/display_export.lib.php:210 libraries/display_import.lib.php:177 +#: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 #: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 msgid "Character set of the file:" msgstr "Karakter set datoteke:" -#: libraries/display_export.lib.php:235 setup/lib/messages.inc.php:81 +#: libraries/display_export.lib.php:229 setup/lib/messages.inc.php:81 msgid "Compression" msgstr "Kompresija" -#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:196 -#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:529 -#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:574 -#: server_privileges.php:1867 server_processlist.php:74 +#: libraries/display_export.lib.php:234 libraries/display_import.lib.php:196 +#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:528 +#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:573 +#: server_privileges.php:1871 server_processlist.php:74 msgid "None" msgstr "nema" -#: libraries/display_export.lib.php:247 +#: libraries/display_export.lib.php:241 msgid "\"zipped\"" msgstr "\"zipovano\"" -#: libraries/display_export.lib.php:253 +#: libraries/display_export.lib.php:247 msgid "\"gzipped\"" msgstr "\"gzip-ovano\"" -#: libraries/display_export.lib.php:259 +#: libraries/display_export.lib.php:253 msgid "\"bzipped\"" msgstr "\"bzip-ovano\"" -#: libraries/display_export.lib.php:274 libraries/export/sql.php:42 +#: libraries/display_export.lib.php:268 libraries/export/sql.php:42 #: libraries/import/sql.php:31 msgid "SQL compatibility mode" msgstr "" @@ -2145,12 +2122,12 @@ msgid "File uploads are not allowed on this server." msgstr "" #: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 -#: tbl_change.php:1024 +#: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "Direkcija koju ste izabrali za slanje nije dostupna" #: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 -#: tbl_change.php:1027 +#: tbl_change.php:925 msgid "web server upload directory" msgstr "direkcija za slanje web servera " @@ -2229,43 +2206,43 @@ msgstr "Dimenzije papira" msgid "Language" msgstr "" -#: libraries/display_tbl.lib.php:303 +#: libraries/display_tbl.lib.php:302 #, php-format msgid "%d is not valid row number." msgstr "" -#: libraries/display_tbl.lib.php:309 +#: libraries/display_tbl.lib.php:308 #, fuzzy #| msgid "row(s) starting from record #" msgid "row(s) starting from row #" msgstr " redova počev od reda" -#: libraries/display_tbl.lib.php:315 +#: libraries/display_tbl.lib.php:314 msgid "horizontal" msgstr "horizontalnom" -#: libraries/display_tbl.lib.php:316 +#: libraries/display_tbl.lib.php:315 msgid "horizontal (rotated headers)" msgstr "horizontalnom (rotirana zaglavlja)" -#: libraries/display_tbl.lib.php:317 +#: libraries/display_tbl.lib.php:316 msgid "vertical" msgstr "vertikalnom" -#: libraries/display_tbl.lib.php:323 +#: libraries/display_tbl.lib.php:322 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "u %s modu i ponovi zaglavlje posle svakog %s reda" -#: libraries/display_tbl.lib.php:345 +#: libraries/display_tbl.lib.php:344 msgid "This operation could take a long time. Proceed anyway?" msgstr "" -#: libraries/display_tbl.lib.php:511 +#: libraries/display_tbl.lib.php:510 msgid "Sort by key" msgstr "" -#: libraries/display_tbl.lib.php:554 libraries/export/codegen.php:38 +#: libraries/display_tbl.lib.php:553 libraries/export/codegen.php:38 #: libraries/export/csv.php:29 libraries/export/excel.php:34 #: libraries/export/htmlword.php:28 libraries/export/latex.php:32 #: libraries/export/mediawiki.php:21 libraries/export/ods.php:26 @@ -2275,101 +2252,101 @@ msgstr "" #: libraries/export/xlsx.php:26 libraries/export/xml.php:23 #: libraries/export/yaml.php:27 libraries/import.lib.php:1114 #: libraries/import.lib.php:1136 libraries/import/csv.php:31 -#: libraries/import/docsql.php:33 libraries/import/ldi.php:46 +#: libraries/import/docsql.php:32 libraries/import/ldi.php:46 #: libraries/import/ods.php:30 libraries/import/sql.php:19 #: libraries/import/xls.php:25 libraries/import/xlsx.php:25 -#: libraries/import/xml.php:25 tbl_select.php:264 tbl_structure.php:752 +#: libraries/import/xml.php:25 tbl_select.php:263 tbl_structure.php:750 #, fuzzy msgid "Options" msgstr "Operacije" -#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:569 +#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:568 msgid "Partial Texts" msgstr "Dio teksta" -#: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:573 +#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:572 msgid "Full Texts" msgstr "Pun tekst" -#: libraries/display_tbl.lib.php:586 +#: libraries/display_tbl.lib.php:585 #, fuzzy msgid "Relational key" msgstr "Relaciona shema" -#: libraries/display_tbl.lib.php:587 +#: libraries/display_tbl.lib.php:586 #, fuzzy #| msgid "Relational schema" msgid "Relational display column" msgstr "Relaciona shema" -#: libraries/display_tbl.lib.php:594 +#: libraries/display_tbl.lib.php:593 msgid "Show binary contents" msgstr "" -#: libraries/display_tbl.lib.php:596 +#: libraries/display_tbl.lib.php:595 msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:598 +#: libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "" -#: libraries/display_tbl.lib.php:606 pmd_general.php:140 tbl_change.php:312 -#: tbl_change.php:318 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:307 +#: tbl_change.php:313 msgid "Hide" msgstr "" -#: libraries/display_tbl.lib.php:606 libraries/relation.lib.php:122 -#: libraries/tbl_properties.inc.php:143 transformation_overview.php:46 +#: libraries/display_tbl.lib.php:605 libraries/relation.lib.php:117 +#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46 msgid "Browser transformation" msgstr "Tranformacije čitača" -#: libraries/display_tbl.lib.php:1125 libraries/display_tbl.lib.php:1129 -#: libraries/display_tbl.lib.php:1131 +#: libraries/display_tbl.lib.php:1124 libraries/display_tbl.lib.php:1128 +#: libraries/display_tbl.lib.php:1130 msgid "Execute bookmarked query" msgstr "Izvrši upamćen upit" -#: libraries/display_tbl.lib.php:1144 libraries/display_tbl.lib.php:1156 +#: libraries/display_tbl.lib.php:1143 libraries/display_tbl.lib.php:1155 msgid "The row has been deleted" msgstr "Red je obrisan" -#: libraries/display_tbl.lib.php:1183 libraries/display_tbl.lib.php:2055 +#: libraries/display_tbl.lib.php:1182 libraries/display_tbl.lib.php:2014 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "Obustavi" -#: libraries/display_tbl.lib.php:1933 +#: libraries/display_tbl.lib.php:1892 msgid "in query" msgstr "u upitu" -#: libraries/display_tbl.lib.php:1951 +#: libraries/display_tbl.lib.php:1910 msgid "Showing rows" msgstr "Prikaz zapisa" -#: libraries/display_tbl.lib.php:1961 +#: libraries/display_tbl.lib.php:1920 msgid "total" msgstr "ukupno" -#: libraries/display_tbl.lib.php:1969 sql.php:523 +#: libraries/display_tbl.lib.php:1928 sql.php:522 #, php-format msgid "Query took %01.4f sec" msgstr "Upit je trajao %01.4f sekundi" -#: libraries/display_tbl.lib.php:2088 libraries/mult_submits.inc.php:112 -#: querywindow.php:115 querywindow.php:119 querywindow.php:122 -#: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:469 +#: libraries/display_tbl.lib.php:2047 libraries/mult_submits.inc.php:112 +#: querywindow.php:114 querywindow.php:118 querywindow.php:121 +#: tbl_structure.php:23 tbl_structure.php:148 tbl_structure.php:467 msgid "Change" msgstr "Promijeni" -#: libraries/display_tbl.lib.php:2158 +#: libraries/display_tbl.lib.php:2117 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2186 +#: libraries/display_tbl.lib.php:2145 msgid "Print view (with full texts)" msgstr "" -#: libraries/display_tbl.lib.php:2359 +#: libraries/display_tbl.lib.php:2318 msgid "Link not found" msgstr "Veza nije pronađena" @@ -2423,9 +2400,9 @@ msgstr "InnoDB status" msgid "Buffer Pool Usage" msgstr "" -#: libraries/engines/innodb.lib.php:168 server_databases.php:136 -#: server_databases.php:304 server_status.php:524 server_status.php:585 -#: server_status.php:606 tbl_printview.php:349 tbl_structure.php:695 +#: libraries/engines/innodb.lib.php:168 server_databases.php:134 +#: server_databases.php:302 server_status.php:524 server_status.php:585 +#: server_status.php:606 tbl_printview.php:348 tbl_structure.php:693 msgid "Total" msgstr "Ukupno" @@ -2548,6 +2525,78 @@ msgid "" "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." msgstr "" +#: libraries/engines/pbms.lib.php:31 +msgid "Garbage Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:32 +msgid "The percentage of garbage in a repository file before it is compacted." +msgstr "" + +#: libraries/engines/pbms.lib.php:36 libraries/replication_gui.lib.php:69 +#: server_synchronize.php:1161 +#, fuzzy +msgid "Port" +msgstr "Sortiranje" + +#: libraries/engines/pbms.lib.php:37 +msgid "" +"The port for the PBMS stream-based communications. Setting this value to 0 " +"will disable HTTP communication with the daemon." +msgstr "" + +#: libraries/engines/pbms.lib.php:41 +msgid "Repository Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:42 +msgid "" +"The maximum size of a BLOB repository file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:46 +msgid "Temp Blob Timeout" +msgstr "" + +#: libraries/engines/pbms.lib.php:47 +msgid "" +"The timeout, in seconds, for temporary BLOBs. Uploaded BLOB data is removed " +"after this time, unless they are referenced by a record in the database." +msgstr "" + +#: libraries/engines/pbms.lib.php:51 +msgid "Temp Log Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:52 +msgid "" +"The maximum size of a temporary BLOB log file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:56 +msgid "Max Keep Alive" +msgstr "" + +#: libraries/engines/pbms.lib.php:57 +msgid "" +"The timeout for inactive connection with the keep-alive flag set. After this " +"time the connection will be closed. The time-out is in milliseconds (1/1000)." +msgstr "" + +#: libraries/engines/pbms.lib.php:61 +msgid "Metadata Headers" +msgstr "" + +#: libraries/engines/pbms.lib.php:62 +msgid "" +"A \":\" delimited list of metadata headers to be used to initialize the " +"pbms_metadata_header table when a database is created." +msgstr "" + #: libraries/engines/pbxt.lib.php:22 msgid "Index cache size" msgstr "" @@ -2671,7 +2720,7 @@ msgid "" msgstr "" #: libraries/export/codegen.php:36 setup/lib/messages.inc.php:85 -#: tbl_printview.php:374 tbl_structure.php:736 +#: tbl_printview.php:373 tbl_structure.php:734 msgid "Format" msgstr "Format" @@ -2742,9 +2791,9 @@ msgstr "" #: libraries/export/htmlword.php:23 libraries/export/latex.php:59 #: libraries/export/latex.php:205 libraries/export/odt.php:47 #: libraries/export/sql.php:105 libraries/export/sql.php:865 -#: libraries/export/texytext.php:27 server_databases.php:126 -#: server_privileges.php:576 server_replication.php:315 tbl_printview.php:315 -#: tbl_structure.php:664 +#: libraries/export/texytext.php:27 server_databases.php:124 +#: server_privileges.php:575 server_replication.php:314 tbl_printview.php:314 +#: tbl_structure.php:662 msgid "Data" msgstr "Podaci" @@ -2794,13 +2843,13 @@ msgid "Label key" msgstr "" #: libraries/export/latex.php:46 libraries/export/odt.php:34 -#: libraries/export/sql.php:90 tbl_relation.php:398 +#: libraries/export/sql.php:90 tbl_relation.php:396 msgid "Relations" msgstr "Relacije" #: libraries/export/latex.php:52 libraries/export/odt.php:40 #: libraries/export/odt.php:317 libraries/export/sql.php:94 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "MIME-tipovi" @@ -2808,10 +2857,10 @@ msgstr "MIME-tipovi" #: libraries/export/xml.php:101 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1529 server_privileges.php:2061 -#: server_processlist.php:54 server_synchronize.php:1158 +#: libraries/replication_gui.lib.php:331 server_privileges.php:730 +#: server_privileges.php:733 server_privileges.php:789 +#: server_privileges.php:1533 server_privileges.php:2065 +#: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "Host" @@ -3004,8 +3053,8 @@ msgstr "" msgid "Export contents" msgstr "" -#: libraries/footer.inc.php:182 libraries/footer.inc.php:193 -#: libraries/footer.inc.php:196 +#: libraries/footer.inc.php:180 libraries/footer.inc.php:191 +#: libraries/footer.inc.php:194 msgid "Open new phpMyAdmin window" msgstr "" @@ -3022,7 +3071,7 @@ msgstr "SQL rezultat" msgid "Generated by" msgstr "Generirao" -#: libraries/import.lib.php:151 sql.php:519 tbl_change.php:180 +#: libraries/import.lib.php:151 sql.php:518 tbl_change.php:175 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL je vratio prazan rezultat (nula redova)." @@ -3080,7 +3129,7 @@ msgstr "" msgid "Column names in first row" msgstr "" -#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:501 +#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:500 #: view_create.php:147 msgid "Column names" msgstr "Imena kolona" @@ -3106,12 +3155,12 @@ msgstr "" msgid "Invalid column count in CSV input on line %d." msgstr "" -#: libraries/import/docsql.php:28 +#: libraries/import/docsql.php:27 msgid "DocSQL" msgstr "" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 -#: server_synchronize.php:427 server_synchronize.php:870 +#: libraries/import/docsql.php:30 libraries/tbl_properties.inc.php:616 +#: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "" @@ -3167,26 +3216,26 @@ msgstr "nema" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:512 -#: tbl_structure.php:28 tbl_structure.php:152 tbl_structure.php:156 -#: tbl_structure.php:472 +#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:511 +#: tbl_structure.php:27 tbl_structure.php:151 tbl_structure.php:155 +#: tbl_structure.php:470 msgid "Primary" msgstr "Primarni" #: libraries/mult_submits.inc.php:97 libraries/tbl_properties.inc.php:115 -#: libraries/tbl_properties.inc.php:524 tbl_printview.php:324 -#: tbl_structure.php:30 tbl_structure.php:153 tbl_structure.php:157 -#: tbl_structure.php:474 tbl_structure.php:672 +#: libraries/tbl_properties.inc.php:523 tbl_printview.php:323 +#: tbl_structure.php:29 tbl_structure.php:152 tbl_structure.php:156 +#: tbl_structure.php:472 tbl_structure.php:670 msgid "Index" msgstr "Ključ" -#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:530 -#: tbl_structure.php:34 tbl_structure.php:155 tbl_structure.php:159 -#: tbl_structure.php:477 +#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:529 +#: tbl_structure.php:33 tbl_structure.php:154 tbl_structure.php:158 +#: tbl_structure.php:475 msgid "Fulltext" msgstr "Tekst ključ" -#: libraries/mult_submits.inc.php:434 tbl_replace.php:330 +#: libraries/mult_submits.inc.php:433 tbl_replace.php:330 msgid "No change" msgstr "Nema izmjena" @@ -3194,194 +3243,194 @@ msgstr "Nema izmjena" msgid "Charset" msgstr "Karakter set" -#: libraries/mysql_charsets.lib.php:210 libraries/mysql_charsets.lib.php:411 -#: tbl_change.php:515 +#: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 +#: tbl_change.php:510 msgid "Binary" msgstr "Binarni" -#: libraries/mysql_charsets.lib.php:222 +#: libraries/mysql_charsets.lib.php:214 msgid "Bulgarian" msgstr "Bugarski" -#: libraries/mysql_charsets.lib.php:226 libraries/mysql_charsets.lib.php:351 +#: libraries/mysql_charsets.lib.php:218 libraries/mysql_charsets.lib.php:343 msgid "Simplified Chinese" msgstr "Pojednostavljeni kineski" -#: libraries/mysql_charsets.lib.php:228 libraries/mysql_charsets.lib.php:371 +#: libraries/mysql_charsets.lib.php:220 libraries/mysql_charsets.lib.php:363 msgid "Traditional Chinese" msgstr "Tradicionalni kineski" -#: libraries/mysql_charsets.lib.php:232 libraries/mysql_charsets.lib.php:418 +#: libraries/mysql_charsets.lib.php:224 libraries/mysql_charsets.lib.php:410 msgid "case-insensitive" msgstr "Ne razlikuje mala i velika slova" -#: libraries/mysql_charsets.lib.php:235 libraries/mysql_charsets.lib.php:420 +#: libraries/mysql_charsets.lib.php:227 libraries/mysql_charsets.lib.php:412 msgid "case-sensitive" msgstr "Razlikuje mala i velika slova" -#: libraries/mysql_charsets.lib.php:238 +#: libraries/mysql_charsets.lib.php:230 msgid "Croatian" msgstr "Hrvatski" -#: libraries/mysql_charsets.lib.php:241 +#: libraries/mysql_charsets.lib.php:233 msgid "Czech" msgstr "Češki" -#: libraries/mysql_charsets.lib.php:244 +#: libraries/mysql_charsets.lib.php:236 msgid "Danish" msgstr "Danski" -#: libraries/mysql_charsets.lib.php:247 +#: libraries/mysql_charsets.lib.php:239 msgid "English" msgstr "Engleski" -#: libraries/mysql_charsets.lib.php:250 +#: libraries/mysql_charsets.lib.php:242 msgid "Esperanto" msgstr "" -#: libraries/mysql_charsets.lib.php:253 +#: libraries/mysql_charsets.lib.php:245 msgid "Estonian" msgstr "Estonski" -#: libraries/mysql_charsets.lib.php:256 libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:248 libraries/mysql_charsets.lib.php:251 msgid "German" msgstr "Njemački" -#: libraries/mysql_charsets.lib.php:256 +#: libraries/mysql_charsets.lib.php:248 msgid "dictionary" msgstr "riječnik" -#: libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:251 msgid "phone book" msgstr "telefonski imenik" -#: libraries/mysql_charsets.lib.php:262 +#: libraries/mysql_charsets.lib.php:254 msgid "Hungarian" msgstr "Mađarski" -#: libraries/mysql_charsets.lib.php:265 +#: libraries/mysql_charsets.lib.php:257 msgid "Icelandic" msgstr "" -#: libraries/mysql_charsets.lib.php:268 libraries/mysql_charsets.lib.php:358 +#: libraries/mysql_charsets.lib.php:260 libraries/mysql_charsets.lib.php:350 msgid "Japanese" msgstr "Japanski" -#: libraries/mysql_charsets.lib.php:271 +#: libraries/mysql_charsets.lib.php:263 msgid "Latvian" msgstr "" -#: libraries/mysql_charsets.lib.php:274 +#: libraries/mysql_charsets.lib.php:266 msgid "Lithuanian" msgstr "Litvanski" -#: libraries/mysql_charsets.lib.php:277 libraries/mysql_charsets.lib.php:380 +#: libraries/mysql_charsets.lib.php:269 libraries/mysql_charsets.lib.php:372 msgid "Korean" msgstr "Korejski" -#: libraries/mysql_charsets.lib.php:280 +#: libraries/mysql_charsets.lib.php:272 msgid "Persian" msgstr "" -#: libraries/mysql_charsets.lib.php:283 +#: libraries/mysql_charsets.lib.php:275 msgid "Polish" msgstr "" -#: libraries/mysql_charsets.lib.php:286 libraries/mysql_charsets.lib.php:334 +#: libraries/mysql_charsets.lib.php:278 libraries/mysql_charsets.lib.php:326 msgid "West European" msgstr "Zapadnoevropski" -#: libraries/mysql_charsets.lib.php:289 +#: libraries/mysql_charsets.lib.php:281 #, fuzzy msgid "Romanian" msgstr "Jermenski" -#: libraries/mysql_charsets.lib.php:292 +#: libraries/mysql_charsets.lib.php:284 msgid "Slovak" msgstr "" -#: libraries/mysql_charsets.lib.php:295 +#: libraries/mysql_charsets.lib.php:287 msgid "Slovenian" msgstr "" -#: libraries/mysql_charsets.lib.php:298 +#: libraries/mysql_charsets.lib.php:290 #, fuzzy msgid "Spanish" msgstr "Danski" -#: libraries/mysql_charsets.lib.php:301 +#: libraries/mysql_charsets.lib.php:293 #, fuzzy msgid "Traditional Spanish" msgstr "Tradicionalni kineski" -#: libraries/mysql_charsets.lib.php:304 libraries/mysql_charsets.lib.php:401 +#: libraries/mysql_charsets.lib.php:296 libraries/mysql_charsets.lib.php:393 msgid "Swedish" msgstr "Švedski" -#: libraries/mysql_charsets.lib.php:307 libraries/mysql_charsets.lib.php:404 +#: libraries/mysql_charsets.lib.php:299 libraries/mysql_charsets.lib.php:396 msgid "Thai" msgstr "Tajlandski " -#: libraries/mysql_charsets.lib.php:310 libraries/mysql_charsets.lib.php:398 +#: libraries/mysql_charsets.lib.php:302 libraries/mysql_charsets.lib.php:390 msgid "Turkish" msgstr "Turski" -#: libraries/mysql_charsets.lib.php:313 libraries/mysql_charsets.lib.php:395 +#: libraries/mysql_charsets.lib.php:305 libraries/mysql_charsets.lib.php:387 msgid "Ukrainian" msgstr "Ukrajinski" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 msgid "Unicode" msgstr "Unikod" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 -#: libraries/mysql_charsets.lib.php:334 libraries/mysql_charsets.lib.php:341 -#: libraries/mysql_charsets.lib.php:363 libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 +#: libraries/mysql_charsets.lib.php:326 libraries/mysql_charsets.lib.php:333 +#: libraries/mysql_charsets.lib.php:355 libraries/mysql_charsets.lib.php:366 msgid "multilingual" msgstr "višejezički" -#: libraries/mysql_charsets.lib.php:341 +#: libraries/mysql_charsets.lib.php:333 msgid "Central European" msgstr "Centralnoevropski" -#: libraries/mysql_charsets.lib.php:346 +#: libraries/mysql_charsets.lib.php:338 msgid "Russian" msgstr "Ruski" -#: libraries/mysql_charsets.lib.php:363 +#: libraries/mysql_charsets.lib.php:355 msgid "Baltic" msgstr "Baltički" -#: libraries/mysql_charsets.lib.php:368 +#: libraries/mysql_charsets.lib.php:360 msgid "Armenian" msgstr "Jermenski" -#: libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:366 msgid "Cyrillic" msgstr "Ćirilični" -#: libraries/mysql_charsets.lib.php:377 +#: libraries/mysql_charsets.lib.php:369 msgid "Arabic" msgstr "Arapski" -#: libraries/mysql_charsets.lib.php:383 +#: libraries/mysql_charsets.lib.php:375 msgid "Hebrew" msgstr "Jevrejski" -#: libraries/mysql_charsets.lib.php:386 +#: libraries/mysql_charsets.lib.php:378 #, fuzzy msgid "Georgian" msgstr "Njemački" -#: libraries/mysql_charsets.lib.php:389 +#: libraries/mysql_charsets.lib.php:381 msgid "Greek" msgstr "Grčki" -#: libraries/mysql_charsets.lib.php:392 +#: libraries/mysql_charsets.lib.php:384 msgid "Czech-Slovak" msgstr "" -#: libraries/mysql_charsets.lib.php:407 libraries/mysql_charsets.lib.php:414 +#: libraries/mysql_charsets.lib.php:399 libraries/mysql_charsets.lib.php:406 msgid "unknown" msgstr "nepoznat" @@ -3407,68 +3456,68 @@ msgstr "Prozor za upite" msgid "This format has no options" msgstr "Ne postoje opcije za ovaj format" -#: libraries/relation.lib.php:82 +#: libraries/relation.lib.php:77 msgid "not OK" msgstr "nije u redu" -#: libraries/relation.lib.php:86 pmd_general.php:339 +#: libraries/relation.lib.php:81 pmd_general.php:339 msgid "OK" msgstr "U redu" -#: libraries/relation.lib.php:87 +#: libraries/relation.lib.php:82 msgid "Enabled" msgstr "Omogućeno" -#: libraries/relation.lib.php:110 +#: libraries/relation.lib.php:105 msgid "Display Features" msgstr "Prikaži osobine" -#: libraries/relation.lib.php:116 +#: libraries/relation.lib.php:111 msgid "Creation of PDFs" msgstr "Pravljenje PDF-ova" -#: libraries/relation.lib.php:120 +#: libraries/relation.lib.php:115 msgid "Displaying Column Comments" msgstr "Prikazujem komentare kolone" -#: libraries/relation.lib.php:125 +#: libraries/relation.lib.php:120 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "Molimo pogledajte u dokumentaciji kako se ažurira tabela Column_comments" -#: libraries/relation.lib.php:130 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 msgid "Bookmarked SQL query" msgstr "Obilježen SQL-upit" -#: libraries/relation.lib.php:134 querywindow.php:99 querywindow.php:207 +#: libraries/relation.lib.php:129 querywindow.php:98 querywindow.php:205 msgid "SQL history" msgstr "SQL istorijat" -#: libraries/relation.lib.php:146 +#: libraries/relation.lib.php:141 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:148 +#: libraries/relation.lib.php:143 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" -#: libraries/relation.lib.php:149 +#: libraries/relation.lib.php:144 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:150 +#: libraries/relation.lib.php:145 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:151 +#: libraries/relation.lib.php:146 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1158 +#: libraries/relation.lib.php:1153 msgid "no description" msgstr "nema opisa" @@ -3476,7 +3525,7 @@ msgstr "nema opisa" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:53 server_replication.php:346 +#: libraries/replication_gui.lib.php:53 server_replication.php:345 msgid "Change or reconfigure master server" msgstr "" @@ -3488,17 +3537,12 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:711 -#: server_privileges.php:714 server_privileges.php:721 -#: server_synchronize.php:1170 +#: libraries/replication_gui.lib.php:261 server_privileges.php:710 +#: server_privileges.php:713 server_privileges.php:720 +#: server_synchronize.php:1169 msgid "User name" msgstr "Ime korisnika" -#: libraries/replication_gui.lib.php:69 server_synchronize.php:1162 -#, fuzzy -msgid "Port" -msgstr "Sortiranje" - #: libraries/replication_gui.lib.php:105 msgid "Master status" msgstr "" @@ -3513,8 +3557,8 @@ msgid "Variable" msgstr "Promjenljiva" #: libraries/replication_gui.lib.php:117 server_status.php:737 -#: tbl_change.php:322 tbl_printview.php:368 tbl_select.php:137 -#: tbl_structure.php:728 +#: tbl_change.php:317 tbl_printview.php:367 tbl_select.php:136 +#: tbl_structure.php:726 msgid "Value" msgstr "Vrijednost" @@ -3529,38 +3573,38 @@ msgid "" "this list." msgstr "" -#: libraries/replication_gui.lib.php:242 server_replication.php:193 +#: libraries/replication_gui.lib.php:242 server_replication.php:192 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:256 server_privileges.php:716 +#: libraries/replication_gui.lib.php:256 server_privileges.php:715 msgid "Any user" msgstr "Bilo koji korisnik" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1920 server_privileges.php:1950 +#: libraries/replication_gui.lib.php:348 server_privileges.php:716 +#: server_privileges.php:783 server_privileges.php:807 +#: server_privileges.php:1924 server_privileges.php:1954 msgid "Use text field" msgstr "Koristi tekst polje" -#: libraries/replication_gui.lib.php:304 server_privileges.php:764 +#: libraries/replication_gui.lib.php:304 server_privileges.php:763 msgid "Any host" msgstr "Bilo koji host" -#: libraries/replication_gui.lib.php:308 server_privileges.php:768 +#: libraries/replication_gui.lib.php:308 server_privileges.php:767 msgid "Local" msgstr "Lokalni" -#: libraries/replication_gui.lib.php:314 server_privileges.php:773 +#: libraries/replication_gui.lib.php:314 server_privileges.php:772 msgid "This Host" msgstr "Ovaj server" -#: libraries/replication_gui.lib.php:320 server_privileges.php:779 +#: libraries/replication_gui.lib.php:320 server_privileges.php:778 msgid "Use Host Table" msgstr "Koristi tabelu hosta" -#: libraries/replication_gui.lib.php:333 server_privileges.php:792 +#: libraries/replication_gui.lib.php:333 server_privileges.php:791 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3587,8 +3631,8 @@ msgstr "" msgid "Servers" msgstr "Server" -#: libraries/server_links.inc.php:52 server_engines.php:111 -#: server_engines.php:115 server_status.php:414 test/theme.php:104 +#: libraries/server_links.inc.php:52 server_engines.php:125 +#: server_engines.php:129 server_status.php:414 test/theme.php:104 msgid "Variables" msgstr "Promjenljive" @@ -3610,12 +3654,12 @@ msgstr "Binarni" msgid "Processes" msgstr "Procesi" -#: libraries/server_links.inc.php:91 server_synchronize.php:1091 -#: server_synchronize.php:1099 +#: libraries/server_links.inc.php:91 server_synchronize.php:1090 +#: server_synchronize.php:1098 msgid "Synchronize" msgstr "" -#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1109 +#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1108 #, fuzzy msgid "Source database" msgstr "Pretraživanje baze" @@ -3634,7 +3678,7 @@ msgstr "" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1111 +#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1110 #, fuzzy msgid "Target database" msgstr "Pretraživanje baze" @@ -3655,11 +3699,11 @@ msgstr "Izvrši SQL upit(e) na bazi %s" msgid "Columns" msgstr "Imena kolona" -#: libraries/sql_query_form.lib.php:342 sql.php:664 sql.php:665 sql.php:682 +#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "Obilježi SQL-upit" -#: libraries/sql_query_form.lib.php:349 sql.php:676 +#: libraries/sql_query_form.lib.php:349 sql.php:669 msgid "Let every user access this bookmark" msgstr "" @@ -3754,12 +3798,12 @@ msgstr "" "SQL validator nije mogao da bude pokrenut. Proverite da li su instalirane " "neophodne PHP ekstenzije opisane u %sdokumentaciji%s." -#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:139 -#: libraries/tbl_links.inc.php:140 +#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 +#: libraries/tbl_links.inc.php:139 msgid "Table seems to be empty!" msgstr "" -#: libraries/tbl_links.inc.php:148 +#: libraries/tbl_links.inc.php:147 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" @@ -3794,12 +3838,12 @@ msgstr "" "Za podrazumjevanu vrijednost, unesite samo jednu vrijednost, bez kosih crta " "ili navodnika u ovom obliku: a" -#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1263 -#: pdf_schema.php:1284 tbl_printview.php:142 tbl_structure.php:179 +#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1262 +#: pdf_schema.php:1283 tbl_printview.php:141 tbl_structure.php:178 msgid "Attributes" msgstr "Atributi" -#: libraries/tbl_properties.inc.php:136 +#: libraries/tbl_properties.inc.php:135 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -3808,11 +3852,11 @@ msgstr "" "Za listu dostupnih opcija transformacije i njihove transformacije MIME-" "tipova, kliknite na %sopise transformacija%s" -#: libraries/tbl_properties.inc.php:144 +#: libraries/tbl_properties.inc.php:143 msgid "Transformation options" msgstr "Opcije transformacije" -#: libraries/tbl_properties.inc.php:145 +#: libraries/tbl_properties.inc.php:144 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
                            If you ever need to put a backslash (\"\\\") or a single " @@ -3824,18 +3868,18 @@ msgstr "" "apostrof (\"'\") u te vrijednosti, stavite obrnutu kosu crtu ispred njih (na " "primjer '\\\\xyz' ili 'a\\'b')." -#: libraries/tbl_properties.inc.php:392 +#: libraries/tbl_properties.inc.php:391 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "nema" -#: libraries/tbl_properties.inc.php:393 +#: libraries/tbl_properties.inc.php:392 msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:579 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:578 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
                            Please ask the " @@ -3843,28 +3887,28 @@ msgid "" msgstr "" "Nema opisa za ovu transformaciju.
                            Molimo pitajte autora šta %s radi." -#: libraries/tbl_properties.inc.php:725 server_engines.php:57 -#: tbl_operations.php:354 +#: libraries/tbl_properties.inc.php:724 server_engines.php:56 +#: tbl_operations.php:352 msgid "Storage Engine" msgstr "" -#: libraries/tbl_properties.inc.php:754 +#: libraries/tbl_properties.inc.php:753 msgid "PARTITION definition" msgstr "" -#: libraries/tbl_properties.inc.php:775 pdf_pages.php:502 +#: libraries/tbl_properties.inc.php:774 pdf_pages.php:501 #: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214 -#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1124 tbl_indexes.php:247 -#: tbl_relation.php:565 +#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1022 tbl_indexes.php:246 +#: tbl_relation.php:563 msgid "Save" msgstr "Sačuvaj" -#: libraries/tbl_properties.inc.php:779 tbl_structure.php:541 +#: libraries/tbl_properties.inc.php:778 tbl_structure.php:539 #, fuzzy, php-format msgid "Add %s column(s)" msgstr "Dodaj novo polje" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:535 +#: libraries/tbl_properties.inc.php:782 tbl_structure.php:533 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." @@ -4038,8 +4082,8 @@ msgstr "" msgid "Custom color" msgstr "" -#: main.php:162 pdf_pages.php:362 setup/lib/FormDisplay.tpl.php:216 -#: tbl_change.php:1173 +#: main.php:162 pdf_pages.php:361 setup/lib/FormDisplay.tpl.php:216 +#: tbl_change.php:1071 msgid "Reset" msgstr "Resetuj" @@ -4047,8 +4091,8 @@ msgstr "Resetuj" msgid "Protocol version" msgstr "" -#: main.php:188 server_privileges.php:1381 server_privileges.php:1528 -#: server_privileges.php:1642 server_privileges.php:2060 +#: main.php:188 server_privileges.php:1385 server_privileges.php:1532 +#: server_privileges.php:1646 server_privileges.php:2064 #: server_processlist.php:53 msgid "User" msgstr "Korisnik" @@ -4127,21 +4171,30 @@ msgid "" "has been configured." msgstr "" -#: main.php:330 +#: main.php:314 +#, php-format +msgid "" +"The additional features for working with linked tables have been " +"deactivated. To find out why click %shere%s." +msgstr "" +"Dodatne mogućnosti za rad sa povezanim tabelama su isključene. Da biste " +"saznali zašto, kliknite %sovde%s." + +#: main.php:329 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:345 +#: main.php:344 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: main.php:357 +#: main.php:356 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -4152,67 +4205,67 @@ msgstr "" msgid "Reload navigation frame" msgstr "" -#: navigation.php:204 server_databases.php:370 server_synchronize.php:1190 +#: navigation.php:203 server_databases.php:368 server_synchronize.php:1189 msgid "No databases" msgstr "Baza ne postoji" -#: navigation.php:298 +#: navigation.php:297 msgid "Filter" msgstr "" -#: navigation.php:299 setup/frames/index.inc.php:218 +#: navigation.php:298 setup/frames/index.inc.php:218 #: setup/lib/messages.inc.php:41 msgid "Clear" msgstr "" -#: navigation.php:330 navigation.php:331 +#: navigation.php:329 navigation.php:330 #, fuzzy msgctxt "short form" msgid "Create table" msgstr "Napravi novu stranu" -#: navigation.php:333 navigation.php:495 +#: navigation.php:332 navigation.php:494 msgid "Please select a database" msgstr "Izaberite bazu" -#: pdf_pages.php:40 pdf_pages.php:46 pdf_pages.php:52 pdf_pages.php:57 +#: pdf_pages.php:39 pdf_pages.php:45 pdf_pages.php:51 pdf_pages.php:56 #, php-format msgid "%s table not found or not set in %s" msgstr "%s tabela nije pronađena ili nije postavljena u %s" -#: pdf_pages.php:265 +#: pdf_pages.php:264 msgid "Please choose a page to edit" msgstr "Izaberite stranu koju menjate" -#: pdf_pages.php:303 pmd_pdf.php:113 +#: pdf_pages.php:302 pmd_pdf.php:111 msgid "Create a page" msgstr "Napravi novu stranu" -#: pdf_pages.php:309 +#: pdf_pages.php:308 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Broj strane:" -#: pdf_pages.php:313 +#: pdf_pages.php:312 #, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "Automatski raspored" -#: pdf_pages.php:315 +#: pdf_pages.php:314 msgid "Internal relations" msgstr "" -#: pdf_pages.php:338 +#: pdf_pages.php:337 msgid "Select Tables" msgstr "Izaberi tabele" -#: pdf_pages.php:361 +#: pdf_pages.php:360 msgid "Toggle scratchboard" msgstr "Uključuje/isključuje scratchboard" -#: pdf_pages.php:524 +#: pdf_pages.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -4220,37 +4273,37 @@ msgstr "" "Trenutna strana ima reference na tabele koje više ne postoje. Želite li da " "obrišete te reference?" -#: pdf_schema.php:635 +#: pdf_schema.php:634 #, fuzzy, php-format #| msgid "The \"%s\" table doesn't exist!" msgid "The %s table doesn't exist!" msgstr "Tabela \"%s\" ne postoji!" -#: pdf_schema.php:671 +#: pdf_schema.php:670 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Podesite koordinate za tabelu %s" -#: pdf_schema.php:994 +#: pdf_schema.php:993 #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" msgstr "Shema baze \"%s\" - Strana %s" -#: pdf_schema.php:1012 +#: pdf_schema.php:1011 msgid "No tables" msgstr "Nema tabela" -#: pdf_schema.php:1031 pdf_schema.php:1140 +#: pdf_schema.php:1030 pdf_schema.php:1139 msgid "Relational schema" msgstr "Relaciona shema" -#: pdf_schema.php:1115 +#: pdf_schema.php:1114 msgid "Table of contents" msgstr "Sadržaj" -#: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:145 -#: tbl_structure.php:182 tbl_tracking.php:277 +#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 +#: tbl_structure.php:181 tbl_tracking.php:272 msgid "Extra" msgstr "Dodatno" @@ -4262,7 +4315,7 @@ msgstr "" msgid "Save position" msgstr "" -#: pmd_general.php:70 server_synchronize.php:428 server_synchronize.php:871 +#: pmd_general.php:70 server_synchronize.php:427 server_synchronize.php:870 #, fuzzy msgid "Create table" msgstr "Napravi novu stranu" @@ -4335,32 +4388,32 @@ msgid "" "appropriate column name." msgstr "" -#: pmd_pdf.php:62 +#: pmd_pdf.php:60 #, fuzzy msgid "Page has been created" msgstr "Tabela %s je odbačena" -#: pmd_pdf.php:64 +#: pmd_pdf.php:62 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:84 +#: pmd_pdf.php:82 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:88 +#: pmd_pdf.php:86 msgid "recommended" msgstr "" -#: pmd_pdf.php:93 +#: pmd_pdf.php:91 msgid "to/from page" msgstr "" -#: querywindow.php:94 +#: querywindow.php:93 msgid "Import files" msgstr "Uvoz fajlova" -#: querywindow.php:105 +#: querywindow.php:104 msgid "All" msgstr "Sve" @@ -4409,65 +4462,65 @@ msgstr "Podatci o prijavi" msgid "Character Sets and Collations" msgstr "Karakter setovi i sortiranje" -#: server_databases.php:51 +#: server_databases.php:49 msgid "No databases selected." msgstr "Nije izabrana ni jedna baza." -#: server_databases.php:62 +#: server_databases.php:60 #, php-format msgid "%s databases have been dropped successfully." msgstr "%s baza je uspješno odbačena." -#: server_databases.php:87 +#: server_databases.php:85 msgid "Databases statistics" msgstr "Statistika baze" -#: server_databases.php:116 server_status.php:370 +#: server_databases.php:114 server_status.php:370 #: setup/lib/messages.inc.php:114 msgid "Tables" msgstr "Tabele" -#: server_databases.php:194 server_replication.php:180 -#: server_replication.php:208 +#: server_databases.php:192 server_replication.php:179 +#: server_replication.php:207 msgid "Master replication" msgstr "" -#: server_databases.php:196 server_replication.php:247 +#: server_databases.php:194 server_replication.php:246 msgid "Slave replication" msgstr "" -#: server_databases.php:229 +#: server_databases.php:227 #, fuzzy msgid "Jump to database" msgstr "Baza ne postoji" -#: server_databases.php:266 +#: server_databases.php:264 msgid "Not replicated" msgstr "" -#: server_databases.php:272 +#: server_databases.php:270 #, fuzzy msgid "Replicated" msgstr "Relacije" -#: server_databases.php:288 +#: server_databases.php:286 #, php-format msgid "Check privileges for database "%s"." msgstr "Provjeri privilegije za bazu "%s"." -#: server_databases.php:292 server_databases.php:293 +#: server_databases.php:290 server_databases.php:291 msgid "Check Privileges" msgstr "Provjeri privilegije" -#: server_databases.php:357 server_databases.php:358 +#: server_databases.php:355 server_databases.php:356 msgid "Enable Statistics" msgstr "Uključi statistike" -#: server_databases.php:361 server_databases.php:362 +#: server_databases.php:359 server_databases.php:360 msgid "Disable Statistics" msgstr "Isključi statistike" -#: server_databases.php:365 +#: server_databases.php:363 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -4475,124 +4528,124 @@ msgstr "" "Napomena: uključivanje statistika može prouzrokovati veliki protok podataka " "između web i MySQL servera." -#: server_engines.php:48 +#: server_engines.php:47 msgid "Storage Engines" msgstr "" -#: server_export.php:20 +#: server_export.php:18 msgid "View dump (schema) of databases" msgstr "Prikaži sadržaj (shemu) baze" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:23 server_privileges.php:265 msgid "Includes all privileges except GRANT." msgstr "Uključuje sve privilegije osim GRANT." -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:24 server_privileges.php:191 +#: server_privileges.php:514 msgid "Allows altering the structure of existing tables." msgstr "Dozvoljava izmjenu struktura postojećih tabela." -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:25 server_privileges.php:207 +#: server_privileges.php:520 #, fuzzy msgid "Allows altering and dropping stored routines." msgstr "Dozvoljava kreiranje i brisanje ključeva." -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:26 server_privileges.php:183 +#: server_privileges.php:513 msgid "Allows creating new databases and tables." msgstr "Dozvoljava kreiranje novih baza i tabela." -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:27 server_privileges.php:206 +#: server_privileges.php:519 #, fuzzy msgid "Allows creating stored routines." msgstr "Dozvoljava kreiranje novih tabela." -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:513 msgid "Allows creating new tables." msgstr "Dozvoljava kreiranje novih tabela." -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:29 server_privileges.php:194 +#: server_privileges.php:517 msgid "Allows creating temporary tables." msgstr "Dozvoljava kreiranje privremenih tabela.." -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:30 server_privileges.php:208 +#: server_privileges.php:553 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: server_privileges.php:32 server_privileges.php:199 -#: server_privileges.php:203 server_privileges.php:526 -#: server_privileges.php:530 +#: server_privileges.php:31 server_privileges.php:198 +#: server_privileges.php:202 server_privileges.php:525 +#: server_privileges.php:529 #, fuzzy msgid "Allows creating new views." msgstr "Dozvoljava kreiranje novih tabela." -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:32 server_privileges.php:182 +#: server_privileges.php:505 msgid "Allows deleting data." msgstr "Dozvoljava brisanje podataka." -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:33 server_privileges.php:184 +#: server_privileges.php:516 msgid "Allows dropping databases and tables." msgstr "Dozvoljava odbacivanje baza i tabela." -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:34 server_privileges.php:516 msgid "Allows dropping tables." msgstr "Dozvoljava odbacivanje tabela." -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:35 server_privileges.php:199 +#: server_privileges.php:533 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:36 server_privileges.php:209 +#: server_privileges.php:521 msgid "Allows executing stored routines." msgstr "" -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:37 server_privileges.php:188 +#: server_privileges.php:508 msgid "Allows importing data from and exporting data into files." msgstr "Dozvoljava uvoz podataka i njihov izvoz u datoteke." -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:38 server_privileges.php:539 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Dozvoljava dodavanje korisnika i privilegija bez ponovnog učitavanja tabela " "privilegija." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:515 msgid "Allows creating and dropping indexes." msgstr "Dozvoljava kreiranje i brisanje ključeva." -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:40 server_privileges.php:180 +#: server_privileges.php:441 server_privileges.php:503 msgid "Allows inserting and replacing data." msgstr "Dozvoljava umetanje i zamjenu podataka." -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:41 server_privileges.php:195 +#: server_privileges.php:548 msgid "Allows locking tables for the current thread." msgstr "Dozvoljava zaključavanje tabela tekućim procesima." -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:42 server_privileges.php:645 +#: server_privileges.php:647 msgid "Limits the number of new connections the user may open per hour." msgstr "Ograničava broj novih konekcija koje korisnik može ta otvori na sat." -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:43 server_privileges.php:633 +#: server_privileges.php:635 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Ograničava broj upita koje korisnik može da uputi serveru za sat." -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:44 server_privileges.php:639 +#: server_privileges.php:641 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -4600,60 +4653,60 @@ msgstr "" "Ograničava broj komandi koje menjaju tabele ili baze koje korisnik može da " "izvrši na sat." -#: server_privileges.php:46 server_privileges.php:652 -#: server_privileges.php:654 +#: server_privileges.php:45 server_privileges.php:651 +#: server_privileges.php:653 #, fuzzy msgid "Limits the number of simultaneous connections the user may have." msgstr "Ograničava broj novih konekcija koje korisnik može ta otvori na sat." -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:46 server_privileges.php:187 +#: server_privileges.php:543 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:47 server_privileges.php:189 +#: server_privileges.php:447 server_privileges.php:549 msgid "Has no effect in this MySQL version." msgstr "Nema efekta u ovoj verziji MySQL-a." -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:48 server_privileges.php:185 +#: server_privileges.php:544 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Dozvoljava ponovno učitavanje podešavanja servera i pražnjenje keša servera." -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:197 +#: server_privileges.php:551 msgid "Allows the user to ask where the slaves / masters are." msgstr "Daje pravo korisniku da pita gde su glavni/pomoćni serveri." -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:50 server_privileges.php:196 +#: server_privileges.php:552 msgid "Needed for the replication slaves." msgstr "Potrebno zbog pomoćnih servera za replikaciju." -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:51 server_privileges.php:179 +#: server_privileges.php:438 server_privileges.php:502 msgid "Allows reading data." msgstr "Dozvoljava čitanje podataka." -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:52 server_privileges.php:192 +#: server_privileges.php:546 msgid "Gives access to the complete list of databases." msgstr "Daje pristup kompletnoj listi baza." -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:53 server_privileges.php:203 +#: server_privileges.php:205 server_privileges.php:518 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:54 server_privileges.php:186 +#: server_privileges.php:545 msgid "Allows shutting down the server." msgstr "Dozvoljava gašenje servera." -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:55 server_privileges.php:193 +#: server_privileges.php:542 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -4663,157 +4716,157 @@ msgstr "" "Neophodno za većinu administrativnih opcija kao što su podešavanje globalnih " "promenljivih ili prekidanje procesa ostalih korisnika." -#: server_privileges.php:57 server_privileges.php:201 -#: server_privileges.php:535 +#: server_privileges.php:56 server_privileges.php:200 +#: server_privileges.php:534 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "Dozvoljava kreiranje i brisanje ključeva." -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:57 server_privileges.php:181 +#: server_privileges.php:444 server_privileges.php:504 msgid "Allows changing data." msgstr "Dozvoljava izmenu podataka." -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:58 server_privileges.php:259 msgid "No privileges." msgstr "Nema privilegija." -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:301 server_privileges.php:302 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "nema" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1710 server_privileges.php:1716 +#: server_privileges.php:430 server_privileges.php:565 +#: server_privileges.php:1714 server_privileges.php:1720 msgid "Table-specific privileges" msgstr "Privilegije vezane za tabele" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1532 +#: server_privileges.php:431 server_privileges.php:573 +#: server_privileges.php:1536 msgid " Note: MySQL privilege names are expressed in English " msgstr " Napomena: MySQL imena privilegija moraju da budu na engleskom " -#: server_privileges.php:563 server_privileges.php:1531 +#: server_privileges.php:562 server_privileges.php:1535 msgid "Global privileges" msgstr "Globalne privilegije" -#: server_privileges.php:565 server_privileges.php:1710 +#: server_privileges.php:564 server_privileges.php:1714 msgid "Database-specific privileges" msgstr "Privilegije vezane za bazu" -#: server_privileges.php:610 +#: server_privileges.php:609 msgid "Administration" msgstr "Administracija" -#: server_privileges.php:630 +#: server_privileges.php:629 msgid "Resource limits" msgstr "Ograničenja resursa" -#: server_privileges.php:631 +#: server_privileges.php:630 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Napomena: Postavljanje ovih opcija na 0 (nulu) uklanja limite." -#: server_privileges.php:708 +#: server_privileges.php:707 msgid "Login Information" msgstr "Podatci o prijavi" -#: server_privileges.php:802 +#: server_privileges.php:801 msgid "Do not change the password" msgstr "Nemoj da mijenjaš lozinku" -#: server_privileges.php:835 server_privileges.php:2197 +#: server_privileges.php:834 server_privileges.php:2201 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Korisnik nije nađen." -#: server_privileges.php:879 +#: server_privileges.php:878 #, php-format msgid "The user %s already exists!" msgstr "Korisnik %s već postoji!" -#: server_privileges.php:962 +#: server_privileges.php:961 msgid "You have added a new user." msgstr "Dodali ste novog korisnika." -#: server_privileges.php:1183 +#: server_privileges.php:1184 #, php-format msgid "You have updated the privileges for %s." msgstr "Ažurirali ste privilegije za %s." -#: server_privileges.php:1207 +#: server_privileges.php:1208 #, php-format msgid "You have revoked the privileges for %s" msgstr "Zabranili ste privilegije za %s" -#: server_privileges.php:1243 +#: server_privileges.php:1244 #, php-format msgid "The password for %s was changed successfully." msgstr "Lozinka za %s je uspješno promjenjena." -#: server_privileges.php:1263 +#: server_privileges.php:1264 #, php-format msgid "Deleting %s" msgstr "Brišem %s" -#: server_privileges.php:1274 +#: server_privileges.php:1275 msgid "No users selected for deleting!" msgstr "" -#: server_privileges.php:1277 +#: server_privileges.php:1278 msgid "Reloading the privileges" msgstr "Ponovo učitavam privilegije" -#: server_privileges.php:1292 +#: server_privileges.php:1296 msgid "The selected users have been deleted successfully." msgstr "Izabrani korisnici su uspješno obrisani." -#: server_privileges.php:1327 +#: server_privileges.php:1331 msgid "The privileges were reloaded successfully." msgstr "Privilegije su uspešno ponovo učitane." -#: server_privileges.php:1355 server_privileges.php:1641 +#: server_privileges.php:1359 server_privileges.php:1645 msgid "Edit Privileges" msgstr "Promijeni privilegije" -#: server_privileges.php:1364 +#: server_privileges.php:1368 msgid "Revoke" msgstr "Zabrani" -#: server_privileges.php:1396 +#: server_privileges.php:1400 msgid "User overview" msgstr "Pregled korisnika" -#: server_privileges.php:1533 server_privileges.php:1715 -#: server_privileges.php:2064 +#: server_privileges.php:1537 server_privileges.php:1719 +#: server_privileges.php:2068 msgid "Grant" msgstr "Omogući" -#: server_privileges.php:1552 server_privileges.php:2154 +#: server_privileges.php:1556 server_privileges.php:2158 msgid "Any" msgstr "Bilo koji" -#: server_privileges.php:1601 server_privileges.php:1625 -#: server_privileges.php:2019 server_privileges.php:2208 +#: server_privileges.php:1605 server_privileges.php:1629 +#: server_privileges.php:2023 server_privileges.php:2212 msgid "Add a new User" msgstr "Dodaj novog korisnika" -#: server_privileges.php:1606 +#: server_privileges.php:1610 msgid "Remove selected users" msgstr "Ukloni izabrane korisnike" -#: server_privileges.php:1609 +#: server_privileges.php:1613 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Obustavi sve aktivne privilegije korisnika i zatim ih obriši." -#: server_privileges.php:1610 server_privileges.php:1611 -#: server_privileges.php:1612 +#: server_privileges.php:1614 server_privileges.php:1615 +#: server_privileges.php:1616 msgid "Drop the databases that have the same names as the users." msgstr "Odbaci baze koje se zovu isto kao korisnici." -#: server_privileges.php:1628 +#: server_privileges.php:1632 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4826,92 +4879,92 @@ msgstr "" "server koristi ako su izvršene ručne izmjene. U tom slučaju %sponovo " "učitajte privilegije%s pre nego što nastavite." -#: server_privileges.php:1676 +#: server_privileges.php:1680 msgid "The selected user was not found in the privilege table." msgstr "Izabrani korisnik nije pronađen u tabeli privilegija." -#: server_privileges.php:1716 +#: server_privileges.php:1720 msgid "Column-specific privileges" msgstr "Privilegije vezane za kolone" -#: server_privileges.php:1917 +#: server_privileges.php:1921 msgid "Add privileges on the following database" msgstr "Dodaj privilegije na slijedećoj bazi" -#: server_privileges.php:1935 +#: server_privileges.php:1939 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:1938 +#: server_privileges.php:1942 msgid "Add privileges on the following table" msgstr "Dodaj privilegije na slijedećoj tabeli" -#: server_privileges.php:1995 +#: server_privileges.php:1999 msgid "Change Login Information / Copy User" msgstr "Promeni informacije o prijavi / Kopiraj korisnika" -#: server_privileges.php:1998 +#: server_privileges.php:2002 msgid "Create a new user with the same privileges and ..." msgstr "Napravi novog korisnika sa istim privilegijama i ..." -#: server_privileges.php:2000 +#: server_privileges.php:2004 msgid "... keep the old one." msgstr "... sačuvaj stare." -#: server_privileges.php:2001 +#: server_privileges.php:2005 msgid " ... delete the old one from the user tables." msgstr " ... obriši stare iz tabela korisnika." -#: server_privileges.php:2002 +#: server_privileges.php:2006 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr " ... obustavi sve privilegije starog korisnika i zatim ga obriši." -#: server_privileges.php:2003 +#: server_privileges.php:2007 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" " ... obriši starog iz tabele korisnika i zatim ponovo učitaj privilegije." -#: server_privileges.php:2025 +#: server_privileges.php:2029 msgid "Database for user" msgstr "" -#: server_privileges.php:2029 +#: server_privileges.php:2033 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "nema" -#: server_privileges.php:2030 +#: server_privileges.php:2034 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2031 +#: server_privileges.php:2035 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2034 +#: server_privileges.php:2038 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "Provjeri privilegije za bazu "%s"." -#: server_privileges.php:2057 +#: server_privileges.php:2061 #, php-format msgid "Users having access to "%s"" msgstr "Korisnici koji imaju pristup "%s"" -#: server_privileges.php:2165 +#: server_privileges.php:2169 msgid "global" msgstr "globalno" -#: server_privileges.php:2167 +#: server_privileges.php:2171 msgid "database-specific" msgstr "Specifično za bazu" -#: server_privileges.php:2169 +#: server_privileges.php:2173 msgid "wildcard" msgstr "Džoker" @@ -4931,53 +4984,53 @@ msgstr "" msgid "ID" msgstr "ID" -#: server_replication.php:50 +#: server_replication.php:49 msgid "Unknown error" msgstr "" -#: server_replication.php:57 +#: server_replication.php:56 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:64 +#: server_replication.php:63 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:70 +#: server_replication.php:69 msgid "Unable to change master" msgstr "" -#: server_replication.php:73 +#: server_replication.php:72 #, php-format msgid "Master server changed succesfully to %s" msgstr "" -#: server_replication.php:181 +#: server_replication.php:180 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:183 server_status.php:391 +#: server_replication.php:182 server_status.php:391 msgid "Show master status" msgstr "" -#: server_replication.php:186 +#: server_replication.php:185 msgid "Show connected slaves" msgstr "" -#: server_replication.php:209 +#: server_replication.php:208 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:216 +#: server_replication.php:215 msgid "Master configuration" msgstr "" -#: server_replication.php:217 +#: server_replication.php:216 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -4986,110 +5039,110 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:220 +#: server_replication.php:219 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:221 +#: server_replication.php:220 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:224 +#: server_replication.php:223 #, fuzzy msgid "Please select databases:" msgstr "Izaberite bazu" -#: server_replication.php:227 +#: server_replication.php:226 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: server_replication.php:229 +#: server_replication.php:228 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: server_replication.php:292 +#: server_replication.php:291 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:295 +#: server_replication.php:294 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:304 +#: server_replication.php:303 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:307 +#: server_replication.php:306 msgid "See slave status table" msgstr "" -#: server_replication.php:310 +#: server_replication.php:309 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:321 +#: server_replication.php:320 msgid "Control slave:" msgstr "" -#: server_replication.php:324 +#: server_replication.php:323 #, fuzzy msgid "Full start" msgstr "Tekst ključ" -#: server_replication.php:324 +#: server_replication.php:323 msgid "Full stop" msgstr "" -#: server_replication.php:325 +#: server_replication.php:324 msgid "Reset slave" msgstr "" -#: server_replication.php:326 +#: server_replication.php:325 #, php-format msgid "SQL Thread %s only" msgstr "" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 #, fuzzy msgid "Start" msgstr "Sub" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 msgid "Stop" msgstr "" -#: server_replication.php:327 +#: server_replication.php:326 #, php-format msgid "IO Thread %s only" msgstr "" -#: server_replication.php:331 +#: server_replication.php:330 msgid "Error management:" msgstr "" -#: server_replication.php:333 +#: server_replication.php:332 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:335 +#: server_replication.php:334 msgid "Skip current error" msgstr "" -#: server_replication.php:336 +#: server_replication.php:335 msgid "Skip next" msgstr "" -#: server_replication.php:339 +#: server_replication.php:338 msgid "errors." msgstr "" -#: server_replication.php:354 +#: server_replication.php:353 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -5799,112 +5852,112 @@ msgstr "Vrsta upita" msgid "Replication status" msgstr "" -#: server_synchronize.php:93 +#: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:96 +#: server_synchronize.php:95 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:121 server_synchronize.php:124 tbl_create.php:77 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:264 +#: server_synchronize.php:263 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:271 +#: server_synchronize.php:270 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:399 server_synchronize.php:838 +#: server_synchronize.php:398 server_synchronize.php:837 msgid "not present" msgstr "" -#: server_synchronize.php:423 server_synchronize.php:866 +#: server_synchronize.php:422 server_synchronize.php:865 msgid "Structure Difference" msgstr "" -#: server_synchronize.php:424 server_synchronize.php:867 +#: server_synchronize.php:423 server_synchronize.php:866 msgid "Data Difference" msgstr "" -#: server_synchronize.php:429 server_synchronize.php:872 +#: server_synchronize.php:428 server_synchronize.php:871 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:430 server_synchronize.php:873 +#: server_synchronize.php:429 server_synchronize.php:872 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:431 server_synchronize.php:874 +#: server_synchronize.php:430 server_synchronize.php:873 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:432 server_synchronize.php:875 +#: server_synchronize.php:431 server_synchronize.php:874 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:433 server_synchronize.php:876 +#: server_synchronize.php:432 server_synchronize.php:875 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:434 server_synchronize.php:877 +#: server_synchronize.php:433 server_synchronize.php:876 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:435 server_synchronize.php:878 +#: server_synchronize.php:434 server_synchronize.php:877 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:445 server_synchronize.php:889 +#: server_synchronize.php:444 server_synchronize.php:888 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:448 server_synchronize.php:893 +#: server_synchronize.php:447 server_synchronize.php:892 msgid "Apply Selected Changes" msgstr "" -#: server_synchronize.php:450 server_synchronize.php:895 +#: server_synchronize.php:449 server_synchronize.php:894 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:463 +#: server_synchronize.php:462 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:941 +#: server_synchronize.php:940 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:1002 +#: server_synchronize.php:1001 msgid "The following queries have been executed:" msgstr "" -#: server_synchronize.php:1121 +#: server_synchronize.php:1120 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1122 +#: server_synchronize.php:1121 #, fuzzy #| msgid "Connections" msgid "Current connection" msgstr "Konekcije" -#: server_synchronize.php:1151 +#: server_synchronize.php:1150 #, php-format msgid "Configuration: %s" msgstr "" -#: server_synchronize.php:1166 +#: server_synchronize.php:1165 msgid "Socket" msgstr "" -#: server_synchronize.php:1212 +#: server_synchronize.php:1211 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -6460,8 +6513,8 @@ msgstr "" #: setup/lib/messages.inc.php:128 msgid "" "Configure phpMyAdmin database to gain access to additional features, see " -"[a@../Documentation.html#linked-tables]linked-tables infrastructure[/a] in " -"documentation" +"[a@../Documentation.html#linked-tables]phpMyAdmin configuration storage[/a] " +"in documentation" msgstr "" #: setup/lib/messages.inc.php:129 setup/lib/messages.inc.php:290 @@ -7519,115 +7572,115 @@ msgstr "" msgid "ZIP" msgstr "" -#: sql.php:495 tbl_replace.php:385 +#: sql.php:494 tbl_replace.php:384 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: sql.php:512 +#: sql.php:511 msgid "Showing as PHP code" msgstr "" -#: sql.php:515 tbl_replace.php:359 +#: sql.php:514 tbl_replace.php:358 msgid "Showing SQL query" msgstr "" -#: sql.php:517 +#: sql.php:516 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Provjeri SQL" -#: sql.php:638 +#: sql.php:631 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:670 +#: sql.php:663 msgid "Label" msgstr "Naziv" -#: tbl_addfield.php:188 tbl_alter.php:102 tbl_indexes.php:97 +#: tbl_addfield.php:185 tbl_alter.php:100 tbl_indexes.php:97 #, fuzzy, php-format msgid "Table %1$s has been altered successfully" msgstr "Izabrani korisnici su uspješno obrisani." -#: tbl_change.php:250 tbl_select.php:26 tbl_select.php:27 tbl_select.php:30 -#: tbl_select.php:33 +#: tbl_change.php:245 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_select.php:32 msgid "Browse foreign values" msgstr "Pregledaj strane vrijednosti" -#: tbl_change.php:280 tbl_change.php:318 +#: tbl_change.php:275 tbl_change.php:313 msgid "Function" msgstr "Funkcija" -#: tbl_change.php:300 tbl_indexes.php:199 tbl_indexes.php:224 +#: tbl_change.php:295 tbl_indexes.php:198 tbl_indexes.php:223 msgid "Ignore" msgstr "Ignoriši" -#: tbl_change.php:725 +#: tbl_change.php:720 #, fuzzy #| msgid " Because of its length,
                            this field might not be editable " msgid " Because of its length,
                            this column might not be editable " msgstr "Zbog njehove veličine, polje
                            možda nećete moći da izmenite" -#: tbl_change.php:884 +#: tbl_change.php:835 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:890 +#: tbl_change.php:841 msgid "Binary - do not edit" msgstr "Binarni - ne mijenjaj" -#: tbl_change.php:983 +#: tbl_change.php:889 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:1128 +#: tbl_change.php:1026 msgid "Insert as new row" msgstr "Unesi kao novi red" -#: tbl_change.php:1129 +#: tbl_change.php:1027 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:1130 +#: tbl_change.php:1028 msgid "Show insert query" msgstr "" -#: tbl_change.php:1145 +#: tbl_change.php:1043 msgid "Go back to previous page" msgstr "Nazad na prethodnu stranu" -#: tbl_change.php:1146 +#: tbl_change.php:1044 msgid "Insert another new row" msgstr "Dodaj još jedan novi red" -#: tbl_change.php:1150 +#: tbl_change.php:1048 #, fuzzy msgid "Go back to this page" msgstr "Nazad na prethodnu stranu" -#: tbl_change.php:1158 +#: tbl_change.php:1056 msgid "Edit next row" msgstr "" -#: tbl_change.php:1169 +#: tbl_change.php:1067 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: tbl_change.php:1207 +#: tbl_change.php:1105 #, php-format msgid "Restart insertion with %s rows" msgstr "" -#: tbl_create.php:57 +#: tbl_create.php:55 #, fuzzy, php-format msgid "Table %s already exists!" msgstr "Korisnik %s već postoji!" -#: tbl_create.php:244 +#: tbl_create.php:241 #, fuzzy, php-format msgid "Table %1$s has been created." msgstr "Tabela %s je odbačena" @@ -7648,202 +7701,202 @@ msgstr "Ne mogu da promenim ključ u PRIMARY (primarni) !" msgid "No index parts defined!" msgstr "Dijelovi ključa nisu definisani!" -#: tbl_indexes.php:159 +#: tbl_indexes.php:158 msgid "Create a new index" msgstr "Napravi novi ključ" -#: tbl_indexes.php:161 +#: tbl_indexes.php:160 msgid "Modify an index" msgstr "Izmijeni ključ" -#: tbl_indexes.php:167 +#: tbl_indexes.php:166 msgid "Index name:" msgstr "Ime ključa :" -#: tbl_indexes.php:173 +#: tbl_indexes.php:172 msgid "Index type:" msgstr "Tip ključa :" -#: tbl_indexes.php:183 +#: tbl_indexes.php:182 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "(\"PRIMARY\" mora biti ime samo primarnog ključa!)" -#: tbl_indexes.php:250 +#: tbl_indexes.php:249 #, php-format msgid "Add to index  %s column(s)" msgstr "Dodaj u ključ  %s kolona(e)" -#: tbl_indexes.php:255 tbl_structure.php:588 tbl_structure.php:599 +#: tbl_indexes.php:254 tbl_structure.php:586 tbl_structure.php:597 msgid "Column count has to be larger than zero." msgstr "" -#: tbl_move_copy.php:45 +#: tbl_move_copy.php:44 msgid "Can't move table to same one!" msgstr "Ne mogu da premjestim tabelu u samu sebe!" -#: tbl_move_copy.php:47 +#: tbl_move_copy.php:46 msgid "Can't copy table to same one!" msgstr "Ne mogu da kopiram tabelu u samu sebe!" -#: tbl_move_copy.php:55 +#: tbl_move_copy.php:54 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabela %s je pomjerena u %s." -#: tbl_move_copy.php:57 +#: tbl_move_copy.php:56 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabela %s je kopirana u %s." -#: tbl_move_copy.php:81 +#: tbl_move_copy.php:80 msgid "The table name is empty!" msgstr "Ima tabele je prazno!" -#: tbl_operations.php:248 +#: tbl_operations.php:246 msgid "Alter table order by" msgstr "Promijeni redoslijed u tabeli" -#: tbl_operations.php:257 +#: tbl_operations.php:255 msgid "(singly)" msgstr "(po jednom polju)" -#: tbl_operations.php:277 +#: tbl_operations.php:275 msgid "Move table to (database.table):" msgstr "Pomjeri tabelu u (baza.tabela):" -#: tbl_operations.php:335 +#: tbl_operations.php:333 msgid "Table options" msgstr "Opcije tabele" -#: tbl_operations.php:339 +#: tbl_operations.php:337 msgid "Rename table to" msgstr "Promjeni ime tabele u " -#: tbl_operations.php:510 +#: tbl_operations.php:508 msgid "Copy table to (database.table):" msgstr "Kopiraj tabelu u (baza.tabela):" -#: tbl_operations.php:557 +#: tbl_operations.php:555 msgid "Switch to copied table" msgstr "Pređi na kopiranu tabelu" -#: tbl_operations.php:569 +#: tbl_operations.php:567 msgid "Table maintenance" msgstr "Radnje na tabeli" -#: tbl_operations.php:590 +#: tbl_operations.php:588 msgid "Defragment table" msgstr "" -#: tbl_operations.php:629 +#: tbl_operations.php:627 #, php-format msgid "Table %s has been flushed" msgstr "Tabela %s je osvežena" -#: tbl_operations.php:635 +#: tbl_operations.php:633 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Osvježi tabelu (\"FLUSH\")" -#: tbl_operations.php:650 +#: tbl_operations.php:648 #, fuzzy msgid "Partition maintenance" msgstr "Radnje na tabeli" -#: tbl_operations.php:658 +#: tbl_operations.php:656 #, php-format msgid "Partition %s" msgstr "" -#: tbl_operations.php:661 +#: tbl_operations.php:659 msgid "Analyze" msgstr "" -#: tbl_operations.php:662 +#: tbl_operations.php:660 #, fuzzy msgid "Check" msgstr "Češki" -#: tbl_operations.php:663 +#: tbl_operations.php:661 msgid "Optimize" msgstr "" -#: tbl_operations.php:664 +#: tbl_operations.php:662 msgid "Rebuild" msgstr "" -#: tbl_operations.php:665 +#: tbl_operations.php:663 #, fuzzy msgid "Repair" msgstr "Popravi tabelu" -#: tbl_operations.php:677 +#: tbl_operations.php:675 msgid "Remove partitioning" msgstr "" -#: tbl_operations.php:703 +#: tbl_operations.php:701 msgid "Check referential integrity:" msgstr "Proveri referencijalni integritet:" -#: tbl_printview.php:73 +#: tbl_printview.php:72 msgid "Show tables" msgstr "Prikaži tabele" -#: tbl_printview.php:308 tbl_structure.php:655 +#: tbl_printview.php:307 tbl_structure.php:653 msgid "Space usage" msgstr "Zauzeće" -#: tbl_printview.php:312 tbl_structure.php:659 +#: tbl_printview.php:311 tbl_structure.php:657 msgid "Usage" msgstr "Zauzeće" -#: tbl_printview.php:339 tbl_structure.php:686 +#: tbl_printview.php:338 tbl_structure.php:684 msgid "Effective" msgstr "Efektivne" -#: tbl_printview.php:364 tbl_structure.php:724 +#: tbl_printview.php:363 tbl_structure.php:722 msgid "Row Statistics" msgstr "Statistike reda" -#: tbl_printview.php:367 tbl_structure.php:727 +#: tbl_printview.php:366 tbl_structure.php:725 msgid "Statements" msgstr "Ime" -#: tbl_printview.php:378 tbl_structure.php:739 +#: tbl_printview.php:377 tbl_structure.php:737 msgid "static" msgstr "" -#: tbl_printview.php:380 tbl_structure.php:741 +#: tbl_printview.php:379 tbl_structure.php:739 msgid "dynamic" msgstr "dinamički" -#: tbl_printview.php:402 tbl_structure.php:784 +#: tbl_printview.php:401 tbl_structure.php:782 msgid "Row length" msgstr "Dužina reda" -#: tbl_printview.php:412 tbl_structure.php:792 +#: tbl_printview.php:411 tbl_structure.php:790 msgid " Row size " msgstr "Veličina reda" -#: tbl_relation.php:278 +#: tbl_relation.php:276 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" -#: tbl_relation.php:404 +#: tbl_relation.php:402 #, fuzzy msgid "Internal relation" msgstr "Opšte osobine relacija" -#: tbl_relation.php:406 +#: tbl_relation.php:404 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: tbl_relation.php:412 +#: tbl_relation.php:410 msgid "Foreign key constraint" msgstr "" @@ -7851,233 +7904,233 @@ msgstr "" msgid "No rows selected" msgstr "" -#: tbl_select.php:130 +#: tbl_select.php:129 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Napravi \"upit po primjeru\" (džoker: \"%\")" -#: tbl_select.php:136 +#: tbl_select.php:135 #, fuzzy msgid "Operator" msgstr "Operacije" -#: tbl_select.php:267 +#: tbl_select.php:266 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "Izaberi polja (najmanje jedno)" -#: tbl_select.php:285 +#: tbl_select.php:284 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Dodaj uslove pretraživanja (dio \"WHERE\" upita):" -#: tbl_select.php:292 +#: tbl_select.php:291 msgid "Number of rows per page" msgstr "Broj redova po strani" -#: tbl_select.php:298 +#: tbl_select.php:297 msgid "Display order:" msgstr "Redosled prikaza:" -#: tbl_structure.php:160 +#: tbl_structure.php:159 #, fuzzy msgid "Browse distinct values" msgstr "Pregledaj strane vrijednosti" -#: tbl_structure.php:360 +#: tbl_structure.php:358 #, fuzzy #| msgid "None" msgctxt "None for default" msgid "None" msgstr "nema" -#: tbl_structure.php:373 +#: tbl_structure.php:371 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Column %s has been dropped" msgstr "Tabela %s je odbačena" -#: tbl_structure.php:384 +#: tbl_structure.php:382 #, php-format msgid "A primary key has been added on %s" msgstr "Osnovni ključ je upravo dodan %s" -#: tbl_structure.php:399 tbl_structure.php:413 tbl_structure.php:427 +#: tbl_structure.php:397 tbl_structure.php:411 tbl_structure.php:425 #, php-format msgid "An index has been added on %s" msgstr "Ključ je upravo dodan %s" -#: tbl_structure.php:505 tbl_structure.php:507 +#: tbl_structure.php:503 tbl_structure.php:505 msgid "Relation view" msgstr "Relacioni pogled" -#: tbl_structure.php:514 tbl_structure.php:516 +#: tbl_structure.php:512 tbl_structure.php:514 msgid "Propose table structure" msgstr "Predloži strukturu tabele" -#: tbl_structure.php:539 +#: tbl_structure.php:537 #, fuzzy msgid "Add column" msgstr "Dodaj novo polje" -#: tbl_structure.php:553 +#: tbl_structure.php:551 msgid "At End of Table" msgstr "Na kraju tabele" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At Beginning of Table" msgstr "Na početku tabele" -#: tbl_structure.php:555 +#: tbl_structure.php:553 #, php-format msgid "After %s" msgstr "Poslije %s" -#: tbl_structure.php:593 +#: tbl_structure.php:591 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "Napravi ključ na %s kolona" -#: tbl_structure.php:755 +#: tbl_structure.php:753 msgid "partitioned" msgstr "" -#: tbl_tracking.php:113 +#: tbl_tracking.php:109 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:186 +#: tbl_tracking.php:182 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "" -#: tbl_tracking.php:194 +#: tbl_tracking.php:190 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "" -#: tbl_tracking.php:202 +#: tbl_tracking.php:198 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "" -#: tbl_tracking.php:212 +#: tbl_tracking.php:208 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:219 +#: tbl_tracking.php:215 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:220 +#: tbl_tracking.php:216 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:229 +#: tbl_tracking.php:225 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:250 tbl_tracking.php:378 +#: tbl_tracking.php:245 tbl_tracking.php:373 msgid "Close" msgstr "" -#: tbl_tracking.php:261 +#: tbl_tracking.php:256 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:380 +#: tbl_tracking.php:375 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:396 tbl_tracking.php:503 +#: tbl_tracking.php:391 tbl_tracking.php:498 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "" -#: tbl_tracking.php:409 tbl_tracking.php:460 +#: tbl_tracking.php:404 tbl_tracking.php:455 #, fuzzy msgid "Date" msgstr "Podaci" -#: tbl_tracking.php:410 tbl_tracking.php:461 +#: tbl_tracking.php:405 tbl_tracking.php:456 #, fuzzy msgid "Username" msgstr "Korisničko ime:" -#: tbl_tracking.php:411 +#: tbl_tracking.php:406 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:462 +#: tbl_tracking.php:457 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:506 +#: tbl_tracking.php:501 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:507 +#: tbl_tracking.php:502 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:520 +#: tbl_tracking.php:515 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:560 +#: tbl_tracking.php:555 msgid "Show versions" msgstr "" -#: tbl_tracking.php:592 +#: tbl_tracking.php:587 #, fuzzy msgid "Version" msgstr "verzija PHP-a" -#: tbl_tracking.php:639 +#: tbl_tracking.php:634 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "" -#: tbl_tracking.php:641 +#: tbl_tracking.php:636 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:652 +#: tbl_tracking.php:647 #, php-format msgid "Activate tracking for %s.%s" msgstr "" -#: tbl_tracking.php:654 +#: tbl_tracking.php:649 msgid "Activate now" msgstr "" -#: tbl_tracking.php:667 +#: tbl_tracking.php:662 #, php-format msgid "Create version %s of %s.%s" msgstr "" -#: tbl_tracking.php:671 +#: tbl_tracking.php:666 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:679 +#: tbl_tracking.php:674 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:687 +#: tbl_tracking.php:682 #, fuzzy msgid "Create version" msgstr "Verzija servera" @@ -8126,11 +8179,36 @@ msgstr "Profil je promjenjen." msgid "VIEW name" msgstr "" -#: view_operations.php:92 +#: view_operations.php:91 #, fuzzy msgid "Rename view to" msgstr "Promjeni ime tabele u " +#, fuzzy +#~| msgid "Enabled" +#~ msgctxt "BLOB repository" +#~ msgid "Enabled" +#~ msgstr "Omogućeno" + +#, fuzzy +#~ msgid "Disable" +#~ msgstr "Onemogućeno" + +#, fuzzy +#~ msgctxt "BLOB repository" +#~ msgid "Repair" +#~ msgstr "Popravi tabelu" + +#, fuzzy +#~| msgid "Disabled" +#~ msgctxt "BLOB repository" +#~ msgid "Disabled" +#~ msgstr "Onemogućeno" + +#, fuzzy +#~ msgid "Enable" +#~ msgstr "Omogućeno" + #~ msgid "" #~ "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " #~ "extension. Please check your PHP configuration." diff --git a/po/ca.po b/po/ca.po index 6f18a9649..368405217 100644 --- a/po/ca.po +++ b/po/ca.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-21 13:53+0200\n" +"POT-Creation-Date: 2010-07-26 17:18+0200\n" "PO-Revision-Date: 2010-03-12 09:13+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: catalan \n" @@ -13,19 +13,19 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.5.3\n" -#: browse_foreigners.php:37 browse_foreigners.php:58 -#: libraries/display_tbl.lib.php:416 server_privileges.php:1506 +#: browse_foreigners.php:36 browse_foreigners.php:57 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1510 msgid "Show all" msgstr "Mostra tot" -#: browse_foreigners.php:81 libraries/common.lib.php:2313 -#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:393 -#: libraries/export/pdf.php:146 pdf_schema.php:282 pdf_schema.php:1122 -#: pdf_schema.php:1138 +#: browse_foreigners.php:80 libraries/common.lib.php:2318 +#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:392 +#: libraries/export/pdf.php:146 pdf_schema.php:281 pdf_schema.php:1121 +#: pdf_schema.php:1137 msgid "Page number:" msgstr "Número de pàgina:" -#: browse_foreigners.php:131 +#: browse_foreigners.php:130 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -35,139 +35,153 @@ msgstr "" "la finestra \"pare\" o bé el teu navegador bloqueja actualitzacions entre " "finestres per la teva configuració de seguretat" -#: browse_foreigners.php:149 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2829 -#: libraries/common.lib.php:2836 libraries/db_links.inc.php:74 -#: libraries/tbl_links.inc.php:62 +#: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 +#: db_structure.php:89 db_structure.php:91 db_structure.php:102 +#: db_structure.php:104 libraries/common.lib.php:2834 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Cerca" -#: browse_foreigners.php:152 db_operations.php:384 db_operations.php:428 -#: db_operations.php:498 db_operations.php:608 db_search.php:344 -#: db_structure.php:566 js/messages.php:48 libraries/Config.class.php:1043 -#: libraries/Theme_Manager.class.php:310 +#: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 +#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 +#: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 -#: libraries/common.lib.php:1340 libraries/common.lib.php:2289 +#: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 -#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:275 -#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:531 -#: libraries/display_tbl.lib.php:613 libraries/replication_gui.lib.php:75 +#: libraries/display_export.lib.php:269 libraries/display_import.lib.php:275 +#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 +#: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 #: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:781 -#: main.php:127 navigation.php:231 pdf_pages.php:291 pdf_pages.php:327 -#: pdf_pages.php:529 pmd_pdf.php:115 server_binlog.php:128 -#: server_privileges.php:664 server_privileges.php:1616 -#: server_privileges.php:1963 server_privileges.php:2010 -#: server_privileges.php:2049 server_replication.php:234 -#: server_replication.php:317 server_replication.php:340 -#: server_synchronize.php:1208 tbl_change.php:328 tbl_change.php:1172 -#: tbl_change.php:1209 tbl_indexes.php:253 tbl_operations.php:264 -#: tbl_operations.php:301 tbl_operations.php:498 tbl_operations.php:560 -#: tbl_operations.php:680 tbl_select.php:324 tbl_structure.php:561 -#: tbl_structure.php:596 tbl_tracking.php:394 tbl_tracking.php:511 -#: view_create.php:181 view_operations.php:100 +#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 +#: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 +#: server_privileges.php:663 server_privileges.php:1620 +#: server_privileges.php:1967 server_privileges.php:2014 +#: server_privileges.php:2053 server_replication.php:233 +#: server_replication.php:316 server_replication.php:339 +#: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 +#: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 +#: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 +#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "Executa" -#: browse_foreigners.php:167 browse_foreigners.php:171 -#: libraries/Index.class.php:441 tbl_tracking.php:319 +#: browse_foreigners.php:166 browse_foreigners.php:170 +#: libraries/Index.class.php:441 tbl_tracking.php:314 msgid "Keyname" msgstr "Nom Clau" -#: browse_foreigners.php:168 browse_foreigners.php:170 -#: server_collations.php:54 server_collations.php:66 server_engines.php:58 +#: browse_foreigners.php:167 browse_foreigners.php:169 +#: server_collations.php:54 server_collations.php:66 server_engines.php:57 #: server_status.php:738 msgid "Description" msgstr "Descripció" -#: browse_foreigners.php:246 browse_foreigners.php:255 -#: browse_foreigners.php:267 browse_foreigners.php:275 +#: browse_foreigners.php:245 browse_foreigners.php:254 +#: browse_foreigners.php:266 browse_foreigners.php:274 msgid "Use this value" msgstr "Fes servir aquest valor" -#: db_create.php:45 +#: bs_disp_as_mime_type.php:29 bs_play_media.php:35 +msgid "No blob streaming server configured!" +msgstr "" + +#: bs_disp_as_mime_type.php:35 +#, fuzzy +#| msgid "Failed to write file to disk." +msgid "Failed to fetch headers" +msgstr "Error en gravar l'arxiu al disc." + +#: bs_disp_as_mime_type.php:41 +msgid "Failed to open remote URL" +msgstr "" + +#: db_create.php:44 #, php-format msgid "Database %1$s has been created." msgstr "S'ha creat la base de dades %1$s." -#: db_datadict.php:48 db_operations.php:377 +#: db_datadict.php:48 db_operations.php:313 msgid "Database comment: " msgstr "Comentaris de la Base de Dades: " -#: db_datadict.php:164 libraries/tbl_properties.inc.php:723 -#: pdf_schema.php:1235 tbl_operations.php:346 tbl_printview.php:128 +#: db_datadict.php:164 libraries/tbl_properties.inc.php:722 +#: pdf_schema.php:1234 tbl_operations.php:344 tbl_printview.php:127 msgid "Table comments" msgstr "Comentaris de la taula" -#: db_datadict.php:173 db_qbe.php:173 libraries/Index.class.php:445 +#: db_datadict.php:173 db_qbe.php:170 libraries/Index.class.php:445 #: libraries/export/htmlword.php:243 libraries/export/latex.php:364 #: libraries/export/odt.php:293 libraries/export/texytext.php:233 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:274 -#: pdf_schema.php:1261 pdf_schema.php:1282 tbl_change.php:306 -#: tbl_indexes.php:188 tbl_printview.php:140 tbl_relation.php:401 -#: tbl_select.php:133 tbl_structure.php:176 tbl_tracking.php:272 -#: tbl_tracking.php:323 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 +#: pdf_schema.php:1260 pdf_schema.php:1281 tbl_change.php:301 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:132 tbl_structure.php:175 tbl_tracking.php:267 +#: tbl_tracking.php:318 #, fuzzy #| msgid "Column names" msgid "Column" msgstr "Nom de les columnes" -#: db_datadict.php:174 db_printview.php:105 libraries/Index.class.php:442 +#: db_datadict.php:174 db_printview.php:104 libraries/Index.class.php:442 #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 #: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:244 #: libraries/export/latex.php:364 libraries/export/odt.php:296 #: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:99 -#: pdf_schema.php:1262 pdf_schema.php:1283 server_privileges.php:2062 -#: tbl_change.php:285 tbl_change.php:312 tbl_printview.php:141 -#: tbl_printview.php:311 tbl_select.php:134 tbl_structure.php:177 -#: tbl_structure.php:658 tbl_tracking.php:273 tbl_tracking.php:320 +#: pdf_schema.php:1261 pdf_schema.php:1282 server_privileges.php:2066 +#: tbl_change.php:280 tbl_change.php:307 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:133 tbl_structure.php:176 +#: tbl_structure.php:656 tbl_tracking.php:268 tbl_tracking.php:315 msgid "Type" msgstr "Tipus" #: db_datadict.php:176 libraries/Index.class.php:448 #: libraries/export/htmlword.php:245 libraries/export/latex.php:364 #: libraries/export/odt.php:299 libraries/export/texytext.php:235 -#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1264 -#: pdf_schema.php:1285 tbl_change.php:321 tbl_printview.php:143 -#: tbl_structure.php:180 tbl_tracking.php:275 tbl_tracking.php:326 +#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1263 +#: pdf_schema.php:1284 tbl_change.php:316 tbl_printview.php:142 +#: tbl_structure.php:179 tbl_tracking.php:270 tbl_tracking.php:321 msgid "Null" msgstr "Nul" -#: db_datadict.php:177 db_structure.php:500 libraries/export/htmlword.php:246 +#: db_datadict.php:177 db_structure.php:486 libraries/export/htmlword.php:246 #: libraries/export/latex.php:364 libraries/export/odt.php:302 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:105 -#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 -#: tbl_structure.php:181 tbl_tracking.php:276 +#: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:143 +#: tbl_structure.php:180 tbl_tracking.php:271 msgid "Default" msgstr "Defecte" #: db_datadict.php:181 libraries/export/htmlword.php:248 #: libraries/export/latex.php:366 libraries/export/odt.php:306 -#: libraries/export/texytext.php:238 pdf_schema.php:1267 pdf_schema.php:1288 -#: tbl_printview.php:148 +#: libraries/export/texytext.php:238 pdf_schema.php:1266 pdf_schema.php:1287 +#: tbl_printview.php:147 msgid "Links to" msgstr "Enllaços a" -#: db_datadict.php:183 db_printview.php:111 libraries/export/htmlword.php:251 +#: db_datadict.php:183 db_printview.php:110 libraries/export/htmlword.php:251 #: libraries/export/latex.php:49 libraries/export/latex.php:369 #: libraries/export/odt.php:37 libraries/export/odt.php:311 #: libraries/export/sql.php:29 libraries/export/texytext.php:241 -#: libraries/tbl_properties.inc.php:129 pdf_schema.php:1278 -#: pdf_schema.php:1289 tbl_printview.php:150 +#: libraries/tbl_properties.inc.php:128 pdf_schema.php:1277 +#: pdf_schema.php:1288 tbl_printview.php:149 msgid "Comments" msgstr "Comentaris" #: db_datadict.php:266 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/export/htmlword.php:321 #: libraries/export/latex.php:434 libraries/export/odt.php:367 -#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:262 -#: pdf_schema.php:1343 server_privileges.php:1560 server_privileges.php:1571 -#: server_privileges.php:1881 server_privileges.php:1886 -#: server_privileges.php:2179 sql.php:131 sql.php:193 tbl_printview.php:227 -#: tbl_structure.php:349 tbl_tracking.php:336 tbl_tracking.php:341 +#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:261 +#: pdf_schema.php:1342 server_privileges.php:1564 server_privileges.php:1575 +#: server_privileges.php:1885 server_privileges.php:1890 +#: server_privileges.php:2183 sql.php:130 sql.php:192 tbl_printview.php:226 +#: tbl_structure.php:347 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "No" @@ -178,17 +192,17 @@ msgstr "No" #: libraries/mult_submits.inc.php:49 libraries/mult_submits.inc.php:54 #: libraries/mult_submits.inc.php:59 libraries/mult_submits.inc.php:91 #: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:105 -#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:261 -#: libraries/mult_submits.inc.php:272 pdf_schema.php:1343 -#: server_databases.php:63 server_privileges.php:1557 -#: server_privileges.php:1571 server_privileges.php:1881 -#: server_privileges.php:1884 server_privileges.php:2179 sql.php:192 -#: tbl_printview.php:227 tbl_structure.php:39 tbl_structure.php:349 -#: tbl_tracking.php:334 tbl_tracking.php:339 +#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:260 +#: libraries/mult_submits.inc.php:271 pdf_schema.php:1342 +#: server_databases.php:61 server_privileges.php:1561 +#: server_privileges.php:1575 server_privileges.php:1885 +#: server_privileges.php:1888 server_privileges.php:2183 sql.php:191 +#: tbl_printview.php:226 tbl_structure.php:38 tbl_structure.php:347 +#: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" msgstr "Si" -#: db_datadict.php:321 db_printview.php:265 tbl_printview.php:496 +#: db_datadict.php:321 db_printview.php:264 tbl_printview.php:495 msgid "Print" msgstr "Imprimeix" @@ -196,194 +210,154 @@ msgstr "Imprimeix" msgid "View dump (schema) of database" msgstr "Veure l'esquema de la base de dades" -#: db_export.php:32 db_printview.php:95 db_qbe.php:101 db_structure.php:50 -#: db_tracking.php:34 export.php:352 navigation.php:326 +#: db_export.php:32 db_printview.php:94 db_qbe.php:98 db_structure.php:49 +#: db_tracking.php:30 export.php:350 navigation.php:325 msgid "No tables found in database." msgstr "Base de dades sense taules." -#: db_export.php:42 db_search.php:326 server_export.php:26 +#: db_export.php:42 db_search.php:326 server_export.php:24 msgid "Select All" msgstr "Tria Tot" -#: db_export.php:44 db_search.php:329 server_export.php:28 +#: db_export.php:44 db_search.php:329 server_export.php:26 msgid "Unselect All" msgstr "Desmarca tot" -#: db_operations.php:37 tbl_create.php:49 +#: db_operations.php:33 tbl_create.php:47 msgid "The database name is empty!" msgstr "El nom de la base de dades és buit!" -#: db_operations.php:235 +#: db_operations.php:231 #, php-format msgid "Database %s has been renamed to %s" msgstr "Base de dades %s reanomenada a %s" -#: db_operations.php:239 +#: db_operations.php:235 #, php-format msgid "Database %s has been copied to %s" msgstr "La Base de dades %s s'ha copiat a %s" -#: db_operations.php:411 +#: db_operations.php:347 msgid "Rename database to" msgstr "Reanomena base de dades a" -#: db_operations.php:416 server_processlist.php:56 +#: db_operations.php:352 server_processlist.php:56 msgid "Command" msgstr "Ordre" -#: db_operations.php:428 tbl_change.php:1141 +#: db_operations.php:364 tbl_change.php:1039 msgid "and then" msgstr "i llavors" -#: db_operations.php:454 +#: db_operations.php:390 msgid "Copy database to" msgstr "Còpia base de dades a" -#: db_operations.php:461 tbl_operations.php:527 tbl_tracking.php:387 +#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Només l'estructura" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:389 +#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Estructura i dades" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:388 +#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Només dades" -#: db_operations.php:471 +#: db_operations.php:407 msgid "CREATE DATABASE before copying" msgstr "Inclou CREATE DATABASE abans de copiar" -#: db_operations.php:474 libraries/export/sql.php:51 +#: db_operations.php:410 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 -#: libraries/export/sql.php:81 tbl_operations.php:535 +#: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "Afegeix %s" -#: db_operations.php:478 libraries/export/sql.php:77 tbl_operations.php:298 -#: tbl_operations.php:537 +#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Afegeix valor AUTO_INCREMENT" -#: db_operations.php:482 tbl_operations.php:544 +#: db_operations.php:418 tbl_operations.php:542 msgid "Add constraints" msgstr "Afegeix restriccions" -#: db_operations.php:495 +#: db_operations.php:431 msgid "Switch to copied database" msgstr "Canvia a la base de dades copiada" -#: db_operations.php:536 -msgid "BLOB Repository" -msgstr "Repositori BLOB" - -#: db_operations.php:539 db_tracking.php:75 libraries/common.lib.php:1357 -#: libraries/server_links.inc.php:48 server_processlist.php:58 -#: tbl_tracking.php:595 test/theme.php:100 -msgid "Status" -msgstr "Estat" - -#: db_operations.php:547 -#, fuzzy -#| msgid "Enabled" -msgctxt "BLOB repository" -msgid "Enabled" -msgstr "Activat" - -#: db_operations.php:551 -msgid "Disable" -msgstr "Desactiva" - -#: db_operations.php:561 -msgid "Damaged" -msgstr "Fet malbé" - -#: db_operations.php:565 -#, fuzzy -#| msgid "Repair" -msgctxt "BLOB repository" -msgid "Repair" -msgstr "Repara" - -#: db_operations.php:573 -#, fuzzy -#| msgid "Disabled" -msgctxt "BLOB repository" -msgid "Disabled" -msgstr "Desactivat" - -#: db_operations.php:577 -msgid "Enable" -msgstr "Activa" - -#: db_operations.php:601 libraries/Index.class.php:447 +#: db_operations.php:451 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 -#: server_collations.php:53 server_collations.php:65 server_databases.php:110 -#: tbl_operations.php:362 tbl_select.php:135 tbl_structure.php:178 -#: tbl_structure.php:766 tbl_tracking.php:274 tbl_tracking.php:325 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 +#: server_collations.php:53 server_collations.php:65 server_databases.php:108 +#: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:177 +#: tbl_structure.php:764 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "Ordenació" -#: db_operations.php:614 main.php:315 pdf_schema.php:33 -#, php-format +#: db_operations.php:464 pdf_schema.php:32 +#, fuzzy, php-format +#| msgid "" +#| "The additional features for working with linked tables have been " +#| "deactivated. To find out why click %shere%s." msgid "" -"The additional features for working with linked tables have been " -"deactivated. To find out why click %shere%s." +"The phpMyAdmin configuration storage has been deactivated. To find out why " +"click %shere%s." msgstr "" "Les característiques addicionals per treballar amb taules enllaçades s'han " "desactivat. Per saber perquè prem a %saquí%s." -#: db_operations.php:647 +#: db_operations.php:497 msgid "Edit PDF Pages" msgstr "Edita pàgines PDF" -#: db_printview.php:103 db_tracking.php:71 db_tracking.php:156 +#: db_printview.php:102 db_tracking.php:67 db_tracking.php:152 #: libraries/db_structure.lib.php:37 libraries/export/xml.php:327 -#: libraries/header.inc.php:125 pdf_pages.php:423 server_privileges.php:1657 -#: server_privileges.php:1713 server_privileges.php:1977 -#: server_synchronize.php:422 server_synchronize.php:865 tbl_tracking.php:591 +#: libraries/header.inc.php:125 pdf_pages.php:422 server_privileges.php:1661 +#: server_privileges.php:1717 server_privileges.php:1981 +#: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "Taula" -#: db_printview.php:104 libraries/db_structure.lib.php:47 +#: db_printview.php:103 libraries/db_structure.lib.php:47 #: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 -#: navigation.php:629 navigation.php:651 server_databases.php:121 -#: tbl_printview.php:392 tbl_structure.php:364 tbl_structure.php:776 +#: navigation.php:628 navigation.php:650 server_databases.php:119 +#: tbl_printview.php:391 tbl_structure.php:362 tbl_structure.php:774 msgid "Rows" msgstr "Fila" -#: db_printview.php:108 libraries/db_structure.lib.php:58 tbl_indexes.php:189 +#: db_printview.php:107 libraries/db_structure.lib.php:58 tbl_indexes.php:188 msgid "Size" msgstr "Mida" -#: db_printview.php:161 db_structure.php:456 libraries/export/sql.php:556 +#: db_printview.php:160 db_structure.php:442 libraries/export/sql.php:556 #: libraries/export/sql.php:896 msgid "in use" msgstr "en ús" -#: db_printview.php:186 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:511 pdf_schema.php:1240 tbl_printview.php:432 -#: tbl_structure.php:808 +#: db_printview.php:185 libraries/db_info.inc.php:86 +#: libraries/export/sql.php:511 pdf_schema.php:1239 tbl_printview.php:431 +#: tbl_structure.php:806 msgid "Creation" msgstr "Creació" -#: db_printview.php:195 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:516 pdf_schema.php:1245 tbl_printview.php:442 -#: tbl_structure.php:816 +#: db_printview.php:194 libraries/db_info.inc.php:91 +#: libraries/export/sql.php:516 pdf_schema.php:1244 tbl_printview.php:441 +#: tbl_structure.php:814 msgid "Last update" msgstr "Darrera actualització" -#: db_printview.php:204 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:521 pdf_schema.php:1250 tbl_printview.php:452 -#: tbl_structure.php:824 +#: db_printview.php:203 libraries/db_info.inc.php:96 +#: libraries/export/sql.php:521 pdf_schema.php:1249 tbl_printview.php:451 +#: tbl_structure.php:822 msgid "Last check" msgstr "Darrera comprovació" -#: db_printview.php:221 db_structure.php:479 +#: db_printview.php:220 db_structure.php:465 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -391,94 +365,94 @@ msgid_plural "%s tables" msgstr[0] "%s taula(es)" msgstr[1] "%s taula(es)" -#: db_qbe.php:28 import.php:453 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1980 libraries/sql_query_form.lib.php:138 -#: tbl_operations.php:212 tbl_relation.php:291 tbl_row_action.php:130 -#: view_operations.php:61 +#: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 +#: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "La vostra comanda SQL ha estat executada amb èxit" -#: db_qbe.php:41 +#: db_qbe.php:38 msgid "You have to choose at least one column to display" msgstr "Has de triar al menys una columna per mostrar" -#: db_qbe.php:199 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:865 +#: db_qbe.php:196 libraries/db_structure.lib.php:95 +#: libraries/display_tbl.lib.php:864 msgid "Sort" msgstr "Classificació" -#: db_qbe.php:208 db_qbe.php:242 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:522 libraries/display_tbl.lib.php:827 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:259 -#: tbl_select.php:311 +#: db_qbe.php:205 db_qbe.php:239 libraries/db_structure.lib.php:102 +#: libraries/display_tbl.lib.php:521 libraries/display_tbl.lib.php:826 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:257 +#: tbl_select.php:310 msgid "Ascending" msgstr "Ascendent" -#: db_qbe.php:209 db_qbe.php:250 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:527 libraries/display_tbl.lib.php:824 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:260 -#: tbl_select.php:312 +#: db_qbe.php:206 db_qbe.php:247 libraries/db_structure.lib.php:110 +#: libraries/display_tbl.lib.php:526 libraries/display_tbl.lib.php:823 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:258 +#: tbl_select.php:311 msgid "Descending" msgstr "Descendent" -#: db_qbe.php:263 db_tracking.php:77 libraries/display_tbl.lib.php:307 -#: tbl_change.php:275 tbl_tracking.php:596 +#: db_qbe.php:260 db_tracking.php:73 libraries/display_tbl.lib.php:306 +#: tbl_change.php:270 tbl_tracking.php:591 msgid "Show" msgstr "Mostra" -#: db_qbe.php:299 +#: db_qbe.php:296 msgid "Criteria" msgstr "Criteris" -#: db_qbe.php:352 db_qbe.php:434 db_qbe.php:526 db_qbe.php:557 +#: db_qbe.php:349 db_qbe.php:431 db_qbe.php:523 db_qbe.php:554 msgid "Ins" msgstr "Ins" -#: db_qbe.php:356 db_qbe.php:438 db_qbe.php:523 db_qbe.php:554 +#: db_qbe.php:353 db_qbe.php:435 db_qbe.php:520 db_qbe.php:551 msgid "And" msgstr "I" -#: db_qbe.php:365 db_qbe.php:446 db_qbe.php:528 db_qbe.php:559 +#: db_qbe.php:362 db_qbe.php:443 db_qbe.php:525 db_qbe.php:556 msgid "Del" msgstr "Sup" -#: db_qbe.php:369 db_qbe.php:450 db_qbe.php:521 db_qbe.php:552 -#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:778 -#: server_privileges.php:297 tbl_change.php:1027 tbl_indexes.php:249 -#: tbl_select.php:285 +#: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 +#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:777 +#: server_privileges.php:296 tbl_change.php:925 tbl_indexes.php:248 +#: tbl_select.php:284 msgid "Or" msgstr "O" -#: db_qbe.php:506 +#: db_qbe.php:503 msgid "Modify" msgstr "Modificar" -#: db_qbe.php:583 +#: db_qbe.php:580 #, fuzzy #| msgid "Add/Delete Criteria Row" msgid "Add/Delete criteria rows" msgstr "Afegeix/esborra fila de criteri" -#: db_qbe.php:595 +#: db_qbe.php:592 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Add/Delete columns" msgstr "Afegeix/esborra Camps de Columna" -#: db_qbe.php:608 db_qbe.php:633 +#: db_qbe.php:605 db_qbe.php:630 msgid "Update Query" msgstr "Actualitza consulta" -#: db_qbe.php:616 +#: db_qbe.php:613 msgid "Use Tables" msgstr "Usa Taules" -#: db_qbe.php:639 +#: db_qbe.php:636 #, php-format msgid "SQL query on database %s:" msgstr "Consulta SQL a la base de dades %s:" -#: db_qbe.php:933 libraries/common.lib.php:1222 +#: db_qbe.php:930 libraries/common.lib.php:1215 msgid "Submit Query" msgstr "Executa consulta" @@ -518,17 +492,17 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s resultat(s) a la taula %s" msgstr[1] "%s resultat(s) a la taula %s" -#: db_search.php:249 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2831 -#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:49 -#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:466 +#: db_search.php:249 db_structure.php:75 db_structure.php:76 +#: db_structure.php:88 db_structure.php:90 db_structure.php:101 +#: db_structure.php:103 libraries/common.lib.php:2836 +#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 +#: tbl_structure.php:35 tbl_structure.php:47 tbl_structure.php:464 msgid "Browse" msgstr "Navega" -#: db_search.php:254 libraries/display_tbl.lib.php:1164 -#: libraries/display_tbl.lib.php:2055 libraries/sql_query_form.lib.php:453 -#: pdf_pages.php:285 pdf_pages.php:424 pdf_pages.php:460 pdf_pages.php:488 +#: db_search.php:254 libraries/display_tbl.lib.php:1163 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 msgid "Delete" @@ -568,66 +542,66 @@ msgstr "A la(les) taula(es):" msgid "Inside column:" msgstr "Camp interior:" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2830 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:75 +#: db_structure.php:79 db_structure.php:80 db_structure.php:92 +#: db_structure.php:93 db_structure.php:105 db_structure.php:106 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 +#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Insereix" -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2827 libraries/common.lib.php:2834 -#: libraries/db_links.inc.php:62 libraries/export/htmlword.php:22 +#: db_structure.php:81 db_structure.php:94 db_structure.php:107 +#: libraries/common.lib.php:2832 libraries/common.lib.php:2839 +#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 -#: libraries/tbl_links.inc.php:55 pmd_general.php:133 -#: server_privileges.php:593 server_replication.php:314 tbl_tracking.php:268 +#: libraries/tbl_links.inc.php:54 pmd_general.php:133 +#: server_privileges.php:592 server_replication.php:313 tbl_tracking.php:263 msgid "Structure" msgstr "Estructura" -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:544 db_structure.php:545 db_tracking.php:90 -#: libraries/Index.class.php:482 libraries/common.lib.php:1659 -#: libraries/db_links.inc.php:99 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:126 -#: server_databases.php:351 tbl_structure.php:26 tbl_structure.php:150 -#: tbl_structure.php:151 tbl_structure.php:470 +#: db_structure.php:82 db_structure.php:83 db_structure.php:95 +#: db_structure.php:96 db_structure.php:108 db_structure.php:109 +#: db_structure.php:530 db_structure.php:531 db_tracking.php:86 +#: libraries/Index.class.php:482 libraries/common.lib.php:1663 +#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 +#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 +#: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" msgstr "Elimina" -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:542 db_structure.php:543 libraries/common.lib.php:1658 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:104 +#: db_structure.php:84 db_structure.php:85 db_structure.php:97 +#: db_structure.php:98 db_structure.php:110 db_structure.php:111 +#: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 +#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 msgid "Empty" msgstr "Buida" -#: db_structure.php:315 libraries/tbl_links.inc.php:99 +#: db_structure.php:301 libraries/tbl_links.inc.php:98 #, php-format msgid "Table %s has been emptied" msgstr "S'ha buidat la taula %s" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "View %s has been dropped" msgstr "Vista %s esborrada" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "Table %s has been dropped" msgstr "S'ha esborrat la taula %s" -#: db_structure.php:332 +#: db_structure.php:318 msgid "Tracking is active." msgstr "El seguiment està actiu." -#: db_structure.php:334 +#: db_structure.php:320 msgid "Tracking is not active." msgstr "El seguiment no està actiu." -#: db_structure.php:419 libraries/display_tbl.lib.php:1943 +#: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -635,160 +609,166 @@ msgid "" msgstr "" "Aquesta vista té al menys aques nombre de files. Consulta %sdocumentation%s." -#: db_structure.php:433 db_structure.php:447 libraries/header.inc.php:125 -#: libraries/tbl_info.inc.php:65 tbl_structure.php:184 test/theme.php:73 +#: db_structure.php:419 db_structure.php:433 libraries/header.inc.php:125 +#: libraries/tbl_info.inc.php:60 tbl_structure.php:183 test/theme.php:73 msgid "View" msgstr "Vista" -#: db_structure.php:484 libraries/db_structure.lib.php:40 -#: libraries/server_links.inc.php:69 server_replication.php:32 -#: server_replication.php:163 server_status.php:368 +#: db_structure.php:470 libraries/db_structure.lib.php:40 +#: libraries/server_links.inc.php:69 server_replication.php:31 +#: server_replication.php:162 server_status.php:368 msgid "Replication" msgstr "Replicació" -#: db_structure.php:488 +#: db_structure.php:474 msgid "Sum" msgstr "Suma" -#: db_structure.php:495 libraries/StorageEngine.class.php:349 +#: db_structure.php:481 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s és el motor d'emmagatzematge per defecte en aquest servidor MySQL." -#: db_structure.php:523 db_structure.php:540 db_structure.php:541 -#: libraries/display_tbl.lib.php:2080 libraries/display_tbl.lib.php:2085 -#: libraries/mult_submits.inc.php:15 server_databases.php:345 -#: server_databases.php:350 server_privileges.php:1588 tbl_structure.php:454 -#: tbl_structure.php:463 +#: db_structure.php:509 db_structure.php:526 db_structure.php:527 +#: libraries/display_tbl.lib.php:2039 libraries/display_tbl.lib.php:2044 +#: libraries/mult_submits.inc.php:15 server_databases.php:343 +#: server_databases.php:348 server_privileges.php:1592 tbl_structure.php:452 +#: tbl_structure.php:461 msgid "With selected:" msgstr "Amb marca:" -#: db_structure.php:526 libraries/display_tbl.lib.php:2075 -#: server_databases.php:347 server_privileges.php:569 -#: server_privileges.php:1591 tbl_structure.php:457 +#: db_structure.php:512 libraries/display_tbl.lib.php:2034 +#: server_databases.php:345 server_privileges.php:568 +#: server_privileges.php:1595 tbl_structure.php:455 msgid "Check All" msgstr "Marcar-ho tot" -#: db_structure.php:530 libraries/display_tbl.lib.php:2076 -#: libraries/replication_gui.lib.php:35 server_databases.php:349 -#: server_privileges.php:572 server_privileges.php:1595 tbl_structure.php:461 +#: db_structure.php:516 libraries/display_tbl.lib.php:2035 +#: libraries/replication_gui.lib.php:35 server_databases.php:347 +#: server_privileges.php:571 server_privileges.php:1599 tbl_structure.php:459 msgid "Uncheck All" msgstr "Desmarcar tot" -#: db_structure.php:535 +#: db_structure.php:521 msgid "Check tables having overhead" msgstr "Comprova taules desfragmentades" -#: db_structure.php:546 db_structure.php:547 db_structure.php:598 -#: libraries/display_tbl.lib.php:2179 libraries/mult_submits.inc.php:27 -#: tbl_structure.php:491 tbl_structure.php:493 +#: db_structure.php:532 db_structure.php:533 db_structure.php:584 +#: libraries/display_tbl.lib.php:2138 libraries/mult_submits.inc.php:27 +#: tbl_structure.php:489 tbl_structure.php:491 msgid "Print view" msgstr "Imprimeix vista" -#: db_structure.php:548 db_structure.php:549 libraries/mult_submits.inc.php:41 -#: tbl_operations.php:580 +#: db_structure.php:534 db_structure.php:535 libraries/mult_submits.inc.php:41 +#: tbl_operations.php:578 msgid "Check table" msgstr "Verifica la taula" -#: db_structure.php:550 db_structure.php:551 libraries/mult_submits.inc.php:46 -#: tbl_operations.php:620 tbl_structure.php:708 tbl_structure.php:710 +#: db_structure.php:536 db_structure.php:537 libraries/mult_submits.inc.php:46 +#: tbl_operations.php:618 tbl_structure.php:706 tbl_structure.php:708 msgid "Optimize table" msgstr "Optimitza la taula" -#: db_structure.php:552 db_structure.php:553 libraries/mult_submits.inc.php:51 -#: tbl_operations.php:610 +#: db_structure.php:538 db_structure.php:539 libraries/mult_submits.inc.php:51 +#: tbl_operations.php:608 msgid "Repair table" msgstr "Repara la taula" -#: db_structure.php:554 db_structure.php:555 libraries/mult_submits.inc.php:56 -#: tbl_operations.php:600 +#: db_structure.php:540 db_structure.php:541 libraries/mult_submits.inc.php:56 +#: tbl_operations.php:598 msgid "Analyze table" msgstr "Analitza la taula" -#: db_structure.php:556 db_structure.php:557 libraries/db_links.inc.php:70 -#: libraries/display_export.lib.php:82 libraries/display_tbl.lib.php:2093 -#: libraries/display_tbl.lib.php:2224 libraries/mult_submits.inc.php:61 -#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:81 -#: pmd_pdf.php:83 pmd_pdf.php:108 server_privileges.php:1372 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 +#: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 +#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 +#: pmd_pdf.php:81 pmd_pdf.php:106 server_privileges.php:1376 #: setup/frames/menu.inc.php:22 tbl_row_action.php:58 msgid "Export" msgstr "Exporta" -#: db_structure.php:605 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:591 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "Diccionari de Dades" -#: db_tracking.php:65 +#: db_tracking.php:61 msgid "Tracked tables" msgstr "Taules seguides" -#: db_tracking.php:70 libraries/export/htmlword.php:85 +#: db_tracking.php:66 libraries/export/htmlword.php:85 #: libraries/export/latex.php:152 libraries/export/odt.php:112 #: libraries/export/sql.php:339 libraries/export/texytext.php:84 #: libraries/export/xml.php:254 libraries/header.inc.php:105 -#: libraries/header_printview.inc.php:57 server_databases.php:168 -#: server_privileges.php:1652 server_privileges.php:1713 -#: server_privileges.php:1971 server_processlist.php:55 -#: server_synchronize.php:1178 server_synchronize.php:1182 -#: tbl_tracking.php:590 test/theme.php:64 +#: libraries/header_printview.inc.php:57 server_databases.php:166 +#: server_privileges.php:1656 server_privileges.php:1717 +#: server_privileges.php:1975 server_processlist.php:55 +#: server_synchronize.php:1177 server_synchronize.php:1181 +#: tbl_tracking.php:585 test/theme.php:64 msgid "Database" msgstr "Base de dades" -#: db_tracking.php:72 +#: db_tracking.php:68 msgid "Last version" msgstr "Darrera versió" -#: db_tracking.php:73 tbl_tracking.php:593 +#: db_tracking.php:69 tbl_tracking.php:588 msgid "Created" msgstr "Creat" -#: db_tracking.php:74 tbl_tracking.php:594 +#: db_tracking.php:70 tbl_tracking.php:589 msgid "Updated" msgstr "Actualitzat" -#: db_tracking.php:76 libraries/Index.class.php:439 -#: libraries/db_structure.lib.php:44 server_databases.php:202 -#: server_privileges.php:1534 server_privileges.php:1717 -#: server_privileges.php:2065 tbl_structure.php:186 +#: db_tracking.php:71 libraries/common.lib.php:1361 +#: libraries/server_links.inc.php:48 server_processlist.php:58 +#: tbl_tracking.php:590 test/theme.php:100 +msgid "Status" +msgstr "Estat" + +#: db_tracking.php:72 libraries/Index.class.php:439 +#: libraries/db_structure.lib.php:44 server_databases.php:200 +#: server_privileges.php:1538 server_privileges.php:1721 +#: server_privileges.php:2069 tbl_structure.php:185 msgid "Action" msgstr "Acció" -#: db_tracking.php:87 db_tracking.php:119 +#: db_tracking.php:83 db_tracking.php:115 msgid "Delete tracking data for this table" msgstr "Esborra les dades de seguiment per aquesta taula" -#: db_tracking.php:105 tbl_tracking.php:547 tbl_tracking.php:605 -#: tbl_tracking.php:612 +#: db_tracking.php:101 tbl_tracking.php:542 tbl_tracking.php:600 +#: tbl_tracking.php:607 msgid "active" msgstr "actiu" -#: db_tracking.php:107 tbl_tracking.php:549 tbl_tracking.php:607 -#: tbl_tracking.php:609 +#: db_tracking.php:103 tbl_tracking.php:544 tbl_tracking.php:602 +#: tbl_tracking.php:604 msgid "not active" msgstr "no actiu" -#: db_tracking.php:120 +#: db_tracking.php:116 msgid "Versions" msgstr "Versions" -#: db_tracking.php:121 tbl_tracking.php:378 tbl_tracking.php:623 +#: db_tracking.php:117 tbl_tracking.php:373 tbl_tracking.php:618 msgid "Tracking report" msgstr "Informe de seguiment" -#: db_tracking.php:122 tbl_tracking.php:250 tbl_tracking.php:623 +#: db_tracking.php:118 tbl_tracking.php:245 tbl_tracking.php:618 msgid "Structure snapshot" msgstr "Instantània de l'estructura" -#: db_tracking.php:151 +#: db_tracking.php:147 msgid "Untracked tables" msgstr "Taules no seguides" -#: db_tracking.php:171 db_tracking.php:173 tbl_structure.php:527 -#: tbl_structure.php:529 +#: db_tracking.php:167 db_tracking.php:169 tbl_structure.php:525 +#: tbl_structure.php:527 msgid "Track table" msgstr "Segueix taula" -#: db_tracking.php:199 +#: db_tracking.php:195 msgid "Database Log" msgstr "Registre de la base de dades" @@ -796,12 +776,12 @@ msgstr "Registre de la base de dades" msgid "Selected export type has to be saved in file!" msgstr "El tipus d'exportació triat s'ha de desar en un arxiu!" -#: export.php:153 export.php:178 export.php:620 +#: export.php:152 export.php:177 export.php:615 #, php-format msgid "Insufficient space to save the file %s." msgstr "No hi ha prou espai per desar l'arxiu %s." -#: export.php:287 +#: export.php:286 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -809,17 +789,17 @@ msgstr "" "L'arxiu %s ja existeix al servidor, canvia el nom o marca l'opció de " "sobreescriure." -#: export.php:291 export.php:295 +#: export.php:290 export.php:294 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "El servidor web no té permisos per a desar l'arxiu %s." -#: export.php:622 +#: export.php:617 #, php-format msgid "Dump has been saved to file %s." msgstr "El bolcat s'ha desat amb el nom d'arxiu %s." -#: import.php:59 +#: import.php:58 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -828,14 +808,14 @@ msgstr "" "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:840 -#: libraries/File.class.php:950 +#: import.php:277 import.php:330 libraries/File.class.php:566 +#: libraries/File.class.php:676 msgid "File could not be read" msgstr "No es pot llegir l'arxiu" -#: import.php:286 import.php:295 import.php:314 import.php:323 -#: libraries/File.class.php:1020 libraries/File.class.php:1028 -#: libraries/File.class.php:1044 libraries/File.class.php:1052 +#: import.php:285 import.php:294 import.php:313 import.php:322 +#: libraries/File.class.php:746 libraries/File.class.php:754 +#: libraries/File.class.php:770 libraries/File.class.php:778 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -844,7 +824,7 @@ msgstr "" "S'intenta carregar un arxiu amb una compresió no suportada (%s). O bé aquest " "suport no s'ha implementat encara o bé el teniu desactivat a la configuració." -#: import.php:336 +#: import.php:335 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -854,30 +834,30 @@ msgstr "" "o el tamany de l'arxiu es més gran que el permés per la configuració del " "vostre PHP. Veieu PFC(FAQ) 1.16." -#: import.php:371 libraries/display_import.lib.php:23 +#: import.php:370 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "" "No es poden carregar les extensions d'importació, comprova l'instal.lació!" -#: import.php:396 +#: import.php:395 msgid "The bookmark has been deleted." msgstr "S'ha esborrat la consulta desada." -#: import.php:400 +#: import.php:399 msgid "Showing bookmark" msgstr "Mostrant consultes desades" -#: import.php:402 sql.php:625 +#: import.php:401 sql.php:618 #, php-format msgid "Bookmark %s created" msgstr "%s creat com a consulta desada" -#: import.php:408 import.php:414 +#: import.php:407 import.php:413 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Importació finalitzada correctament, %d consultes executades." -#: import.php:423 +#: import.php:422 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -885,7 +865,7 @@ msgstr "" "Temps exaurit de l'arxiu d'ordres, si voleu finalitzar l'importació, torneu " "a enviar el mateix arxiu a importar i el procés continuarà." -#: import.php:425 +#: import.php:424 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -894,20 +874,20 @@ msgstr "" "indica que phpMyAdmin no ha pogut finalitzar aquesta importació a menys que " "incrementeu els límits de temps de php." -#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:240 +#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:239 #: user_password.php:110 msgid "Back" msgstr "Enrere" -#: index.php:188 +#: index.php:183 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" "phpMyAdmin és més fàcil amb un navegador que suporti marcs (frames)." -#: js/messages.php:25 server_synchronize.php:344 server_synchronize.php:356 -#: server_synchronize.php:372 server_synchronize.php:379 -#: server_synchronize.php:738 server_synchronize.php:766 -#: server_synchronize.php:794 server_synchronize.php:806 +#: js/messages.php:25 server_synchronize.php:343 server_synchronize.php:355 +#: server_synchronize.php:371 server_synchronize.php:378 +#: server_synchronize.php:737 server_synchronize.php:765 +#: server_synchronize.php:793 server_synchronize.php:805 msgid "Click to select" msgstr "Clica per seleccionar" @@ -915,15 +895,15 @@ msgstr "Clica per seleccionar" msgid "Click to unselect" msgstr "Clica per deseleccionar" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:88 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:87 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Instrucció \"DROP DATABASE\" desactivada." -#: js/messages.php:30 libraries/mult_submits.inc.php:257 sql.php:187 +#: js/messages.php:30 libraries/mult_submits.inc.php:256 sql.php:186 msgid "Do you really want to " msgstr "Realment vols fer?" -#: js/messages.php:31 libraries/mult_submits.inc.php:257 sql.php:171 +#: js/messages.php:31 libraries/mult_submits.inc.php:256 sql.php:170 msgid "You are about to DESTROY a complete database!" msgstr "Ets a punt d'ELIMINAR completament una base de dades!" @@ -954,11 +934,11 @@ msgstr "El nom del servidor és buit!" msgid "The user name is empty!" msgstr "El nom d'usuari és buit!" -#: js/messages.php:44 server_privileges.php:1228 user_password.php:65 +#: js/messages.php:44 server_privileges.php:1229 user_password.php:65 msgid "The password is empty!" msgstr "La contrasenya és buida!" -#: js/messages.php:45 server_privileges.php:1226 user_password.php:68 +#: js/messages.php:45 server_privileges.php:1227 user_password.php:68 msgid "The passwords aren't the same!" msgstr "Les contrasenyes no coincideixen!" @@ -966,27 +946,27 @@ msgstr "Les contrasenyes no coincideixen!" msgid "Cancel" msgstr "Cancel.lar" -#: js/messages.php:52 pmd_save_pos.php:53 +#: js/messages.php:52 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "Les modificacions han estat desades" -#: js/messages.php:53 pmd_relation_upd.php:48 +#: js/messages.php:53 pmd_relation_upd.php:47 msgid "Relation deleted" msgstr "Relació esborrada" -#: js/messages.php:54 pmd_relation_new.php:63 +#: js/messages.php:54 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "Afegida relació de FOREIGN KEY" -#: js/messages.php:55 pmd_relation_new.php:85 +#: js/messages.php:55 pmd_relation_new.php:84 msgid "Internal relation added" msgstr "Afegida relació interna" -#: js/messages.php:56 pmd_relation_new.php:62 pmd_relation_new.php:87 +#: js/messages.php:56 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "Error: La relació no s'ha afegit." -#: js/messages.php:57 pmd_relation_new.php:30 +#: js/messages.php:57 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "Error: La relació ja existeix." @@ -994,13 +974,13 @@ msgstr "Error: La relació ja existeix." msgid "Error saving coordinates for Designer." msgstr "Error desant coordenades per al Dissenyador." -#: js/messages.php:59 libraries/relation.lib.php:94 -#: libraries/relation.lib.php:106 +#: js/messages.php:59 libraries/relation.lib.php:89 +#: libraries/relation.lib.php:101 msgid "General relation features" msgstr "Característiques generals de relacions" -#: js/messages.php:59 libraries/relation.lib.php:88 -#: libraries/relation.lib.php:95 +#: js/messages.php:59 libraries/relation.lib.php:83 +#: libraries/relation.lib.php:90 msgid "Disabled" msgstr "Desactivat" @@ -1016,7 +996,7 @@ msgstr "Tria una clau externa" msgid "Please select the primary key or a unique key" msgstr "Tria la clau principal o una clau única" -#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:547 +#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" @@ -1047,10 +1027,10 @@ msgid "Prev" msgstr "Anterior" #. l10n: Display text for next month link in calendar -#: js/messages.php:81 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:337 -#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:422 -#: tbl_structure.php:800 +#: js/messages.php:81 libraries/common.lib.php:2358 +#: libraries/common.lib.php:2361 libraries/display_tbl.lib.php:336 +#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 +#: tbl_structure.php:798 msgid "Next" msgstr "Següent" @@ -1124,27 +1104,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1562 +#: js/messages.php:101 libraries/common.lib.php:1566 msgid "Jan" msgstr "Gen" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1564 +#: js/messages.php:103 libraries/common.lib.php:1568 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1566 +#: js/messages.php:105 libraries/common.lib.php:1570 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1568 +#: js/messages.php:107 libraries/common.lib.php:1572 msgid "Apr" msgstr "Abr" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1570 +#: js/messages.php:109 libraries/common.lib.php:1574 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1152,37 +1132,37 @@ msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1572 +#: js/messages.php:111 libraries/common.lib.php:1576 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1574 +#: js/messages.php:113 libraries/common.lib.php:1578 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1576 +#: js/messages.php:115 libraries/common.lib.php:1580 msgid "Aug" msgstr "Ago" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1578 +#: js/messages.php:117 libraries/common.lib.php:1582 msgid "Sep" msgstr "Set" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1580 +#: js/messages.php:119 libraries/common.lib.php:1584 msgid "Oct" msgstr "Oct" #. l10n: Short month name -#: js/messages.php:121 libraries/common.lib.php:1582 +#: js/messages.php:121 libraries/common.lib.php:1586 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:123 libraries/common.lib.php:1584 +#: js/messages.php:123 libraries/common.lib.php:1588 msgid "Dec" msgstr "Dec" @@ -1223,37 +1203,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1587 +#: js/messages.php:136 libraries/common.lib.php:1591 msgid "Sun" msgstr "Diu" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1589 +#: js/messages.php:138 libraries/common.lib.php:1593 msgid "Mon" msgstr "Dll" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1591 +#: js/messages.php:140 libraries/common.lib.php:1595 msgid "Tue" msgstr "Dma" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1593 +#: js/messages.php:142 libraries/common.lib.php:1597 msgid "Wed" msgstr "Dcr" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1595 +#: js/messages.php:144 libraries/common.lib.php:1599 msgid "Thu" msgstr "Dij" #. l10n: Short week day name -#: js/messages.php:146 libraries/common.lib.php:1597 +#: js/messages.php:146 libraries/common.lib.php:1601 msgid "Fri" msgstr "Div" #. l10n: Short week day name -#: js/messages.php:148 libraries/common.lib.php:1599 +#: js/messages.php:148 libraries/common.lib.php:1603 msgid "Sat" msgstr "Dis" @@ -1333,17 +1313,12 @@ msgstr "per segon" msgid "Font size" msgstr "Tamany de lletra" -#: libraries/File.class.php:336 libraries/File.class.php:424 -#: libraries/File.class.php:561 libraries/File.class.php:700 -msgid "Unknown error in file upload." -msgstr "Error desconegut al pujar l'arxiu." - -#: libraries/File.class.php:406 +#: libraries/File.class.php:315 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:409 +#: libraries/File.class.php:318 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -1351,59 +1326,63 @@ msgstr "" "El tamany d'arxiu pujat supera la directiva MAX_FILE_SIZE especificada al " "formulari HTML." -#: libraries/File.class.php:412 +#: libraries/File.class.php:321 msgid "The uploaded file was only partially uploaded." msgstr "Només s'ha pujat parcialment l'arxiu." -#: libraries/File.class.php:415 +#: libraries/File.class.php:324 msgid "Missing a temporary folder." msgstr "No es troba la carpeta temporal." -#: libraries/File.class.php:418 +#: libraries/File.class.php:327 msgid "Failed to write file to disk." msgstr "Error en gravar l'arxiu al disc." -#: libraries/File.class.php:421 +#: libraries/File.class.php:330 msgid "File upload stopped by extension." msgstr "Pujada de l'arxiu aturada per l'extensió." -#: libraries/File.class.php:898 +#: libraries/File.class.php:333 +msgid "Unknown error in file upload." +msgstr "Error desconegut al pujar l'arxiu." + +#: libraries/File.class.php:624 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 FAQ 1.11" -#: libraries/Index.class.php:427 tbl_relation.php:528 +#: libraries/Index.class.php:427 tbl_relation.php:526 msgid "No index defined!" msgstr "No s'ha definit l'índex!" -#: libraries/Index.class.php:432 server_databases.php:131 tbl_tracking.php:315 +#: libraries/Index.class.php:432 server_databases.php:129 tbl_tracking.php:310 msgid "Indexes" msgstr "Indexos" #: libraries/Index.class.php:443 libraries/mult_submits.inc.php:102 -#: libraries/tbl_properties.inc.php:518 tbl_structure.php:32 -#: tbl_structure.php:154 tbl_structure.php:158 tbl_structure.php:473 -#: tbl_tracking.php:321 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:31 +#: tbl_structure.php:153 tbl_structure.php:157 tbl_structure.php:471 +#: tbl_tracking.php:316 msgid "Unique" msgstr "Única" -#: libraries/Index.class.php:444 tbl_tracking.php:322 +#: libraries/Index.class.php:444 tbl_tracking.php:317 msgid "Packed" msgstr "Comprimit" -#: libraries/Index.class.php:446 tbl_tracking.php:324 +#: libraries/Index.class.php:446 tbl_tracking.php:319 msgid "Cardinality" msgstr "Cardinalitat" -#: libraries/Index.class.php:449 tbl_tracking.php:278 tbl_tracking.php:327 +#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322 msgid "Comment" msgstr "Comentari" #: libraries/Index.class.php:465 libraries/common.lib.php:609 -#: libraries/common.lib.php:1198 libraries/display_tbl.lib.php:1116 +#: libraries/common.lib.php:1191 libraries/display_tbl.lib.php:1115 #: libraries/import.lib.php:1119 libraries/import.lib.php:1143 -#: pdf_pages.php:284 setup/frames/index.inc.php:124 +#: pdf_pages.php:283 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:349 tbl_row_action.php:68 msgid "Edit" msgstr "Edita" @@ -1427,15 +1406,15 @@ msgstr "" "esborrar." #: libraries/List_Database.class.php:430 libraries/server_links.inc.php:40 -#: server_databases.php:87 server_privileges.php:1652 +#: server_databases.php:85 server_privileges.php:1656 #: setup/lib/messages.inc.php:107 test/theme.php:92 msgid "Databases" msgstr "Bases de dades" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:259 libraries/import.lib.php:134 pdf_schema.php:31 -#: pdf_schema.php:231 tbl_change.php:1023 tbl_operations.php:212 -#: tbl_relation.php:289 view_operations.php:61 +#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 +#: tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Error" @@ -1463,42 +1442,42 @@ msgid_plural "%1$d rows inserted." msgstr[0] "%1$d fila(es) inserida(es)." msgstr[1] "%1$d fila(es) inserida(es)." -#: libraries/StorageEngine.class.php:196 +#: libraries/StorageEngine.class.php:194 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:352 +#: libraries/StorageEngine.class.php:354 #, php-format msgid "%s is available on this MySQL server." msgstr "%s està disponible en aquest servidor MySQL." -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:357 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s s'ha desactivat en aquest servidor MySQL." -#: libraries/StorageEngine.class.php:359 +#: libraries/StorageEngine.class.php:361 #, 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:1018 +#: libraries/Table.class.php:1017 msgid "Invalid database" msgstr "Base de dades incorrecte" -#: libraries/Table.class.php:1032 tbl_get_field.php:25 +#: libraries/Table.class.php:1031 tbl_get_field.php:25 msgid "Invalid table name" msgstr "Nom de taula incorrecte" -#: libraries/Table.class.php:1047 +#: libraries/Table.class.php:1046 #, 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:1131 +#: libraries/Table.class.php:1129 #, php-format msgid "Table %s has been renamed to %s" msgstr "La taula %s ha canviat de nom. Ara es diu %s" @@ -1516,22 +1495,22 @@ msgstr "No hi ha vista prèvia disponible." msgid "take it" msgstr "agafa" -#: libraries/Theme_Manager.class.php:114 +#: 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:152 +#: libraries/Theme_Manager.class.php:147 #, php-format msgid "Theme %s not found!" msgstr "Tema %s no trobat!" -#: libraries/Theme_Manager.class.php:220 +#: 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:296 test/theme.php:160 themes.php:20 +#: libraries/Theme_Manager.class.php:291 test/theme.php:160 themes.php:20 #: themes.php:40 msgid "Theme / Style" msgstr "Tema / Estil" @@ -1647,19 +1626,19 @@ msgstr "Cap clau d'autenticació vàlida endollada" msgid "Authenticating..." msgstr "Autenticant..." -#: libraries/blobstreaming.lib.php:689 +#: libraries/blobstreaming.lib.php:340 msgid "View image" msgstr "Veure imatge" -#: libraries/blobstreaming.lib.php:693 +#: libraries/blobstreaming.lib.php:344 msgid "Play audio" msgstr "Escolta audio" -#: libraries/blobstreaming.lib.php:698 +#: libraries/blobstreaming.lib.php:349 msgid "View video" msgstr "Veure video" -#: libraries/blobstreaming.lib.php:702 +#: libraries/blobstreaming.lib.php:353 msgid "Download file" msgstr "Descarrega arxiu" @@ -1715,7 +1694,7 @@ msgstr "Servidor" msgid "Invalid authentication method set in configuration:" msgstr "Mètode d'identificació incorrecte establert a la configuració:" -#: libraries/common.inc.php:909 +#: libraries/common.inc.php:908 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Es necessari actualitzar a %s %s o posterior." @@ -1742,7 +1721,8 @@ msgstr "Enviat" #: libraries/common.lib.php:425 libraries/common.lib.php:427 #: libraries/common.lib.php:429 libraries/common.lib.php:445 #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 -#: libraries/display_export.lib.php:163 libraries/relation.lib.php:84 +#: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 +#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 #: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" @@ -1757,150 +1737,150 @@ msgstr "crida SQL" msgid "MySQL said: " msgstr "MySQL diu: " -#: libraries/common.lib.php:1136 +#: libraries/common.lib.php:1129 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "Failed to connect to SQL validator!" msgstr "No es pot connectar al servidor MySQL" -#: libraries/common.lib.php:1174 setup/lib/messages.inc.php:350 +#: libraries/common.lib.php:1167 setup/lib/messages.inc.php:350 msgid "Explain SQL" msgstr "Explica SQL" -#: libraries/common.lib.php:1177 +#: libraries/common.lib.php:1170 msgid "Skip Explain SQL" msgstr "Salta l'explicació de l'SQL" -#: libraries/common.lib.php:1211 +#: libraries/common.lib.php:1204 msgid "Without PHP Code" msgstr "Sense codi PHP" -#: libraries/common.lib.php:1214 setup/lib/messages.inc.php:352 +#: libraries/common.lib.php:1207 setup/lib/messages.inc.php:352 msgid "Create PHP Code" msgstr "Crea codi PHP" -#: libraries/common.lib.php:1232 server_status.php:451 +#: libraries/common.lib.php:1225 server_status.php:451 #: setup/lib/messages.inc.php:351 msgid "Refresh" msgstr "Refresca" -#: libraries/common.lib.php:1241 +#: libraries/common.lib.php:1234 msgid "Skip Validate SQL" msgstr "Salta la Validació de l'SQL" -#: libraries/common.lib.php:1244 setup/lib/messages.inc.php:353 +#: libraries/common.lib.php:1237 setup/lib/messages.inc.php:353 msgid "Validate SQL" msgstr "Valida l'SQL" -#: libraries/common.lib.php:1283 +#: libraries/common.lib.php:1287 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1285 +#: libraries/common.lib.php:1289 #, fuzzy #| msgid "Engines" msgid "Inline" msgstr "Motors" -#: libraries/common.lib.php:1339 libraries/common.lib.php:1354 +#: libraries/common.lib.php:1343 libraries/common.lib.php:1358 msgid "Profiling" msgstr "Perfils" -#: libraries/common.lib.php:1358 libraries/tbl_triggers.lib.php:27 +#: libraries/common.lib.php:1362 libraries/tbl_triggers.lib.php:27 #: server_processlist.php:57 msgid "Time" msgstr "Temps" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "B" msgstr "Bytes" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "KiB" msgstr "KB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "MiB" msgstr "MB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "GiB" msgstr "GB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "TiB" msgstr "TB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "PiB" msgstr "PB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "EiB" msgstr "EB" #. l10n: Thousands separator -#: libraries/common.lib.php:1424 +#: libraries/common.lib.php:1428 msgid "," msgstr "." #. l10n: Decimal separator -#: libraries/common.lib.php:1426 +#: libraries/common.lib.php:1430 msgid "." msgstr "," #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1603 +#: libraries/common.lib.php:1607 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%d-%m-%Y a les %H:%M:%S" -#: libraries/common.lib.php:1909 +#: libraries/common.lib.php:1913 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dies, %s hores, %s minuts i %s segons" -#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 -#: libraries/display_tbl.lib.php:289 server_status.php:718 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 +#: libraries/display_tbl.lib.php:288 server_status.php:718 msgid "Begin" msgstr "Inici" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 -#: libraries/display_tbl.lib.php:290 server_binlog.php:154 +#: libraries/common.lib.php:2328 libraries/common.lib.php:2331 +#: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "Anterior" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 -#: libraries/display_tbl.lib.php:352 +#: libraries/common.lib.php:2359 libraries/common.lib.php:2362 +#: libraries/display_tbl.lib.php:351 msgid "End" msgstr "Final" -#: libraries/common.lib.php:2429 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "Vés a la Base de Dades "%s"." -#: libraries/common.lib.php:2448 +#: libraries/common.lib.php:2453 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "La funcionalitat %s es veu afectada per un error conegut, veieu %s" -#: libraries/common.lib.php:2828 libraries/common.lib.php:2835 -#: libraries/db_links.inc.php:67 libraries/export/sql.php:24 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 +#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 -#: libraries/tbl_links.inc.php:59 querywindow.php:89 test/theme.php:96 +#: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2837 libraries/db_links.inc.php:103 -#: libraries/tbl_links.inc.php:94 libraries/tbl_links.inc.php:116 -#: view_operations.php:88 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: view_operations.php:87 msgid "Operations" msgstr "Operacions" -#: libraries/core.lib.php:282 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1916,38 +1896,38 @@ msgstr "Esdeveniments" msgid "Name" msgstr "Nom" -#: libraries/db_links.inc.php:44 +#: libraries/db_links.inc.php:43 #, php-format msgid "Database %s has been dropped." msgstr "La Base de Dades %s s'ha eliminat." -#: libraries/db_links.inc.php:56 libraries/db_links.inc.php:57 -#: libraries/db_links.inc.php:58 +#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 +#: libraries/db_links.inc.php:57 msgid "Database seems to be empty!" msgstr "La base de dades sembla buida!" -#: libraries/db_links.inc.php:80 libraries/relation.lib.php:142 -#: libraries/tbl_links.inc.php:68 +#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "Seguiment" -#: libraries/db_links.inc.php:85 +#: libraries/db_links.inc.php:84 msgid "Query" msgstr "Consulta segons exemple" -#: libraries/db_links.inc.php:90 libraries/relation.lib.php:138 +#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 msgid "Designer" msgstr "Dissenyador" -#: libraries/db_links.inc.php:97 libraries/server_links.inc.php:87 -#: libraries/tbl_links.inc.php:90 pmd_pdf.php:83 pmd_pdf.php:109 +#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importa" -#: libraries/db_links.inc.php:110 libraries/server_links.inc.php:65 -#: server_privileges.php:111 server_privileges.php:1714 -#: server_privileges.php:2063 test/theme.php:116 +#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: server_privileges.php:110 server_privileges.php:1718 +#: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" msgstr "Permisos" @@ -1959,14 +1939,14 @@ msgstr "Rutines" msgid "Return type" msgstr "Tipus de retorn" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1847 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1806 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "Pot ser aproximat. Veieu PFC (FAQ) 3.11" -#: libraries/db_structure.lib.php:60 server_databases.php:141 -#: tbl_printview.php:334 tbl_structure.php:681 +#: libraries/db_structure.lib.php:60 server_databases.php:139 +#: tbl_printview.php:333 tbl_structure.php:679 msgid "Overhead" msgstr "Defragmentat" @@ -1985,7 +1965,7 @@ msgstr "El servidor no respon" 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:358 tbl_structure.php:607 +#: libraries/dbi/mysql.dbi.lib.php:358 tbl_structure.php:605 msgid "Details..." msgstr "Detalls..." @@ -1995,22 +1975,22 @@ msgid "Change password" msgstr "Canvi de contrasenya" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:807 +#: libraries/replication_gui.lib.php:347 server_privileges.php:806 msgid "No Password" msgstr "Sense contrasenya" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1530 server_synchronize.php:1174 +#: libraries/replication_gui.lib.php:351 server_privileges.php:795 +#: server_privileges.php:799 server_privileges.php:810 +#: server_privileges.php:1534 server_synchronize.php:1173 msgid "Password" msgstr "Contrasenya" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:815 server_privileges.php:818 +#: server_privileges.php:814 server_privileges.php:817 msgid "Re-type" msgstr "Reescriu" @@ -2033,8 +2013,8 @@ msgstr "Crea una nova base de dades" msgid "Create" msgstr "Crea" -#: libraries/display_create_database.lib.php:39 server_privileges.php:113 -#: server_privileges.php:1419 server_replication.php:34 +#: libraries/display_create_database.lib.php:39 server_privileges.php:112 +#: server_privileges.php:1423 server_replication.php:33 msgid "No Privileges" msgstr "Sense permisos" @@ -2055,51 +2035,51 @@ msgstr "Crear una taula nova a la base de dades %s" msgid "Number of columns" msgstr "Nombre de camps" -#: libraries/display_export.lib.php:41 +#: libraries/display_export.lib.php:35 msgid "Could not load export plugins, please check your installation!" msgstr "" "No es poden carregar les extensions d'exportació, comprova l'instal.lació!" -#: libraries/display_export.lib.php:106 +#: libraries/display_export.lib.php:100 #, fuzzy, php-format #| msgid "Dump %s row(s) starting at record # %s" msgid "Dump %s row(s) starting at row # %s" msgstr "Bolcar %s files començant a la fila %s." -#: libraries/display_export.lib.php:114 +#: libraries/display_export.lib.php:108 msgid "Dump all rows" msgstr "Bolca totes les files" -#: libraries/display_export.lib.php:124 setup/lib/messages.inc.php:79 +#: libraries/display_export.lib.php:118 setup/lib/messages.inc.php:79 msgid "Save as file" msgstr "Desa com a arxiu" -#: libraries/display_export.lib.php:133 +#: libraries/display_export.lib.php:127 #, php-format msgid "Save on server in %s directory" msgstr "Desa al servidor al directori %s" -#: libraries/display_export.lib.php:141 setup/lib/messages.inc.php:87 +#: libraries/display_export.lib.php:135 setup/lib/messages.inc.php:87 msgid "Overwrite existing file(s)" msgstr "Sobreescriu arxiu(s) existent(s)" -#: libraries/display_export.lib.php:147 +#: libraries/display_export.lib.php:141 msgid "File name template" msgstr "Nom d'arxiu de plantilla" -#: libraries/display_export.lib.php:151 +#: libraries/display_export.lib.php:145 msgid "server name" msgstr "nom de servidor" -#: libraries/display_export.lib.php:154 +#: libraries/display_export.lib.php:148 msgid "database name" msgstr "nom de base de dades" -#: libraries/display_export.lib.php:157 +#: libraries/display_export.lib.php:151 msgid "table name" msgstr "nom de taula" -#: libraries/display_export.lib.php:161 +#: libraries/display_export.lib.php:155 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2110,39 +2090,39 @@ msgstr "" "cadenes de formateig de temps. A més, es faràn aquestes transformacions: " "%3$s. Altre text es deixarà sense variació." -#: libraries/display_export.lib.php:202 +#: libraries/display_export.lib.php:196 msgid "remember template" msgstr "Recordar plantilla" -#: libraries/display_export.lib.php:210 libraries/display_import.lib.php:177 +#: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 #: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 msgid "Character set of the file:" msgstr "Joc de caràcters de l'arxiu:" -#: libraries/display_export.lib.php:235 setup/lib/messages.inc.php:81 +#: libraries/display_export.lib.php:229 setup/lib/messages.inc.php:81 msgid "Compression" msgstr "Compresió" -#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:196 -#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:529 -#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:574 -#: server_privileges.php:1867 server_processlist.php:74 +#: libraries/display_export.lib.php:234 libraries/display_import.lib.php:196 +#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:528 +#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:573 +#: server_privileges.php:1871 server_processlist.php:74 msgid "None" msgstr "Res" -#: libraries/display_export.lib.php:247 +#: libraries/display_export.lib.php:241 msgid "\"zipped\"" msgstr "\"comprimit amb zip\"" -#: libraries/display_export.lib.php:253 +#: libraries/display_export.lib.php:247 msgid "\"gzipped\"" msgstr "\"comprimit amb gzip\"" -#: libraries/display_export.lib.php:259 +#: libraries/display_export.lib.php:253 msgid "\"bzipped\"" msgstr "\"comprimit amb bzip\"" -#: libraries/display_export.lib.php:274 libraries/export/sql.php:42 +#: libraries/display_export.lib.php:268 libraries/export/sql.php:42 #: libraries/import/sql.php:31 msgid "SQL compatibility mode" msgstr "Modus de compatibilitat SQL" @@ -2182,12 +2162,12 @@ msgid "File uploads are not allowed on this server." msgstr "No es permet pujar arxius en aquest servidor." #: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 -#: tbl_change.php:1024 +#: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "No està disponible el directori indicat per pujar arxius" #: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 -#: tbl_change.php:1027 +#: tbl_change.php:925 msgid "web server upload directory" msgstr "Directori de pujada d'arxius del servidor web" @@ -2274,43 +2254,43 @@ msgstr "Tamany de paper" msgid "Language" msgstr "Idioma" -#: libraries/display_tbl.lib.php:303 +#: libraries/display_tbl.lib.php:302 #, php-format msgid "%d is not valid row number." msgstr "%d no és un num. vàlid de fila." -#: libraries/display_tbl.lib.php:309 +#: libraries/display_tbl.lib.php:308 #, fuzzy #| msgid "row(s) starting from record #" msgid "row(s) starting from row #" msgstr "Files començant des de" -#: libraries/display_tbl.lib.php:315 +#: libraries/display_tbl.lib.php:314 msgid "horizontal" msgstr "horitzontal" -#: libraries/display_tbl.lib.php:316 +#: libraries/display_tbl.lib.php:315 msgid "horizontal (rotated headers)" msgstr "horitzontal (capçaleres rotades)" -#: libraries/display_tbl.lib.php:317 +#: libraries/display_tbl.lib.php:316 msgid "vertical" msgstr "vertical" -#: libraries/display_tbl.lib.php:323 +#: libraries/display_tbl.lib.php:322 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr " en mode %s i repeteix capçaleres després de %s cel·les " -#: libraries/display_tbl.lib.php:345 +#: libraries/display_tbl.lib.php:344 msgid "This operation could take a long time. Proceed anyway?" msgstr "Aquesta operació pot ser bastant llarga. Procedim igualment?" -#: libraries/display_tbl.lib.php:511 +#: libraries/display_tbl.lib.php:510 msgid "Sort by key" msgstr "Classifica per la clau" -#: libraries/display_tbl.lib.php:554 libraries/export/codegen.php:38 +#: libraries/display_tbl.lib.php:553 libraries/export/codegen.php:38 #: libraries/export/csv.php:29 libraries/export/excel.php:34 #: libraries/export/htmlword.php:28 libraries/export/latex.php:32 #: libraries/export/mediawiki.php:21 libraries/export/ods.php:26 @@ -2320,99 +2300,99 @@ msgstr "Classifica per la clau" #: libraries/export/xlsx.php:26 libraries/export/xml.php:23 #: libraries/export/yaml.php:27 libraries/import.lib.php:1114 #: libraries/import.lib.php:1136 libraries/import/csv.php:31 -#: libraries/import/docsql.php:33 libraries/import/ldi.php:46 +#: libraries/import/docsql.php:32 libraries/import/ldi.php:46 #: libraries/import/ods.php:30 libraries/import/sql.php:19 #: libraries/import/xls.php:25 libraries/import/xlsx.php:25 -#: libraries/import/xml.php:25 tbl_select.php:264 tbl_structure.php:752 +#: libraries/import/xml.php:25 tbl_select.php:263 tbl_structure.php:750 msgid "Options" msgstr "Opcions" -#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:569 +#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:568 msgid "Partial Texts" msgstr "Texts Parcials" -#: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:573 +#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:572 msgid "Full Texts" msgstr "Texts sencers" -#: libraries/display_tbl.lib.php:586 +#: libraries/display_tbl.lib.php:585 msgid "Relational key" msgstr "Clau relacional" -#: libraries/display_tbl.lib.php:587 +#: libraries/display_tbl.lib.php:586 #, fuzzy #| msgid "Relational display field" msgid "Relational display column" msgstr "Camp relacional per mostrar" -#: libraries/display_tbl.lib.php:594 +#: libraries/display_tbl.lib.php:593 msgid "Show binary contents" msgstr "Mostra continguts binaris" -#: libraries/display_tbl.lib.php:596 +#: libraries/display_tbl.lib.php:595 msgid "Show BLOB contents" msgstr "Mostra contingut BLOB" -#: libraries/display_tbl.lib.php:598 +#: libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "Mostra el contingut binari com HEX" -#: libraries/display_tbl.lib.php:606 pmd_general.php:140 tbl_change.php:312 -#: tbl_change.php:318 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:307 +#: tbl_change.php:313 msgid "Hide" msgstr "Amaga" -#: libraries/display_tbl.lib.php:606 libraries/relation.lib.php:122 -#: libraries/tbl_properties.inc.php:143 transformation_overview.php:46 +#: libraries/display_tbl.lib.php:605 libraries/relation.lib.php:117 +#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46 msgid "Browser transformation" msgstr "Transformació del Navegador" -#: libraries/display_tbl.lib.php:1125 libraries/display_tbl.lib.php:1129 -#: libraries/display_tbl.lib.php:1131 +#: libraries/display_tbl.lib.php:1124 libraries/display_tbl.lib.php:1128 +#: libraries/display_tbl.lib.php:1130 msgid "Execute bookmarked query" msgstr "Executa una consulta desada" -#: libraries/display_tbl.lib.php:1144 libraries/display_tbl.lib.php:1156 +#: libraries/display_tbl.lib.php:1143 libraries/display_tbl.lib.php:1155 msgid "The row has been deleted" msgstr "S'ha esborrat la fila" -#: libraries/display_tbl.lib.php:1183 libraries/display_tbl.lib.php:2055 +#: libraries/display_tbl.lib.php:1182 libraries/display_tbl.lib.php:2014 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "Finalitzar" -#: libraries/display_tbl.lib.php:1933 +#: libraries/display_tbl.lib.php:1892 msgid "in query" msgstr "en consulta" -#: libraries/display_tbl.lib.php:1951 +#: libraries/display_tbl.lib.php:1910 msgid "Showing rows" msgstr "Mostrant registres: " -#: libraries/display_tbl.lib.php:1961 +#: libraries/display_tbl.lib.php:1920 msgid "total" msgstr "total" -#: libraries/display_tbl.lib.php:1969 sql.php:523 +#: libraries/display_tbl.lib.php:1928 sql.php:522 #, php-format msgid "Query took %01.4f sec" msgstr "La consulta tarda %01.4f seg" -#: libraries/display_tbl.lib.php:2088 libraries/mult_submits.inc.php:112 -#: querywindow.php:115 querywindow.php:119 querywindow.php:122 -#: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:469 +#: libraries/display_tbl.lib.php:2047 libraries/mult_submits.inc.php:112 +#: querywindow.php:114 querywindow.php:118 querywindow.php:121 +#: tbl_structure.php:23 tbl_structure.php:148 tbl_structure.php:467 msgid "Change" msgstr "Canvi" -#: libraries/display_tbl.lib.php:2158 +#: libraries/display_tbl.lib.php:2117 msgid "Query results operations" msgstr "Operacions de resultats de consultes" -#: libraries/display_tbl.lib.php:2186 +#: libraries/display_tbl.lib.php:2145 msgid "Print view (with full texts)" msgstr "Vista d'impresió (amb texts sencers)" -#: libraries/display_tbl.lib.php:2359 +#: libraries/display_tbl.lib.php:2318 msgid "Link not found" msgstr "No s'ha trobat l'enllaç " @@ -2469,9 +2449,9 @@ msgstr "Estat InnoDB" msgid "Buffer Pool Usage" msgstr "Ús del grup de memòries intermitges" -#: libraries/engines/innodb.lib.php:168 server_databases.php:136 -#: server_databases.php:304 server_status.php:524 server_status.php:585 -#: server_status.php:606 tbl_printview.php:349 tbl_structure.php:695 +#: libraries/engines/innodb.lib.php:168 server_databases.php:134 +#: server_databases.php:302 server_status.php:524 server_status.php:585 +#: server_status.php:606 tbl_printview.php:348 tbl_structure.php:693 msgid "Total" msgstr "Total" @@ -2608,6 +2588,87 @@ msgstr "" "Ârea assignada per classificar índexos MyISAM mentre es fa un REPAIR TABLE o " "mentre es creen índexs amb CREATE INDEX o ALTER TABLE." +#: libraries/engines/pbms.lib.php:31 +#, fuzzy +#| msgid "Garbage threshold" +msgid "Garbage Threshold" +msgstr "Llindar de les escombraries" + +#: libraries/engines/pbms.lib.php:32 +#, fuzzy +#| msgid "" +#| "The percentage of garbage in a data log file before it is compacted. This " +#| "is a value between 1 and 99. The default is 50." +msgid "The percentage of garbage in a repository file before it is compacted." +msgstr "" +"El percentatge d'escombraries en un registre de dades abans de compactar. És " +"un valor entre 1 i 99. El valor per defecte és 50." + +#: libraries/engines/pbms.lib.php:36 libraries/replication_gui.lib.php:69 +#: server_synchronize.php:1161 +msgid "Port" +msgstr "Port" + +#: libraries/engines/pbms.lib.php:37 +msgid "" +"The port for the PBMS stream-based communications. Setting this value to 0 " +"will disable HTTP communication with the daemon." +msgstr "" + +#: libraries/engines/pbms.lib.php:41 +msgid "Repository Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:42 +msgid "" +"The maximum size of a BLOB repository file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:46 +msgid "Temp Blob Timeout" +msgstr "" + +#: libraries/engines/pbms.lib.php:47 +msgid "" +"The timeout, in seconds, for temporary BLOBs. Uploaded BLOB data is removed " +"after this time, unless they are referenced by a record in the database." +msgstr "" + +#: libraries/engines/pbms.lib.php:51 +#, fuzzy +#| msgid "Log file threshold" +msgid "Temp Log Threshold" +msgstr "LLindar de l'arxiu de Registre (Log)" + +#: libraries/engines/pbms.lib.php:52 +msgid "" +"The maximum size of a temporary BLOB log file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:56 +msgid "Max Keep Alive" +msgstr "" + +#: libraries/engines/pbms.lib.php:57 +msgid "" +"The timeout for inactive connection with the keep-alive flag set. After this " +"time the connection will be closed. The time-out is in milliseconds (1/1000)." +msgstr "" + +#: libraries/engines/pbms.lib.php:61 +msgid "Metadata Headers" +msgstr "" + +#: libraries/engines/pbms.lib.php:62 +msgid "" +"A \":\" delimited list of metadata headers to be used to initialize the " +"pbms_metadata_header table when a database is created." +msgstr "" + #: libraries/engines/pbxt.lib.php:22 msgid "Index cache size" msgstr "Tamany del cau d'index" @@ -2760,7 +2821,7 @@ msgstr "" "donarà el pròxim número més alt." #: libraries/export/codegen.php:36 setup/lib/messages.inc.php:85 -#: tbl_printview.php:374 tbl_structure.php:736 +#: tbl_printview.php:373 tbl_structure.php:734 msgid "Format" msgstr "Format" @@ -2833,9 +2894,9 @@ msgstr "Microsoft Word 2000" #: libraries/export/htmlword.php:23 libraries/export/latex.php:59 #: libraries/export/latex.php:205 libraries/export/odt.php:47 #: libraries/export/sql.php:105 libraries/export/sql.php:865 -#: libraries/export/texytext.php:27 server_databases.php:126 -#: server_privileges.php:576 server_replication.php:315 tbl_printview.php:315 -#: tbl_structure.php:664 +#: libraries/export/texytext.php:27 server_databases.php:124 +#: server_privileges.php:575 server_replication.php:314 tbl_printview.php:314 +#: tbl_structure.php:662 msgid "Data" msgstr "Dades" @@ -2886,13 +2947,13 @@ msgid "Label key" msgstr "Etiqueta de clau" #: libraries/export/latex.php:46 libraries/export/odt.php:34 -#: libraries/export/sql.php:90 tbl_relation.php:398 +#: libraries/export/sql.php:90 tbl_relation.php:396 msgid "Relations" msgstr "Relacions" #: libraries/export/latex.php:52 libraries/export/odt.php:40 #: libraries/export/odt.php:317 libraries/export/sql.php:94 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "Tipus MIME" @@ -2900,10 +2961,10 @@ msgstr "Tipus MIME" #: libraries/export/xml.php:101 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1529 server_privileges.php:2061 -#: server_processlist.php:54 server_synchronize.php:1158 +#: libraries/replication_gui.lib.php:331 server_privileges.php:730 +#: server_privileges.php:733 server_privileges.php:789 +#: server_privileges.php:1533 server_privileges.php:2065 +#: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "Servidor" @@ -3092,8 +3153,8 @@ msgstr "Exporta vistes" msgid "Export contents" msgstr "Exporta contingut" -#: libraries/footer.inc.php:182 libraries/footer.inc.php:193 -#: libraries/footer.inc.php:196 +#: libraries/footer.inc.php:180 libraries/footer.inc.php:191 +#: libraries/footer.inc.php:194 msgid "Open new phpMyAdmin window" msgstr "Obrir nova finestra de phpMyAdmin" @@ -3110,7 +3171,7 @@ msgstr "Resultat SQL" msgid "Generated by" msgstr "Generat per" -#: libraries/import.lib.php:151 sql.php:519 tbl_change.php:180 +#: libraries/import.lib.php:151 sql.php:518 tbl_change.php:175 #: 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)." @@ -3168,7 +3229,7 @@ msgstr "Ignora les files duplicades" msgid "Column names in first row" msgstr "Noms de columnes a la primera fila" -#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:501 +#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:500 #: view_create.php:147 msgid "Column names" msgstr "Nom de les columnes" @@ -3195,12 +3256,12 @@ msgstr "Format incorrecte a l'entrada CSV a la línia %d." msgid "Invalid column count in CSV input on line %d." msgstr "Comptador de camps incorrecte en l'entrada CSV a la línia %d." -#: libraries/import/docsql.php:28 +#: libraries/import/docsql.php:27 msgid "DocSQL" msgstr "DocSQL" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 -#: server_synchronize.php:427 server_synchronize.php:870 +#: libraries/import/docsql.php:30 libraries/tbl_properties.inc.php:616 +#: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "Nom de taula" @@ -3260,26 +3321,26 @@ msgstr "Res" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:512 -#: tbl_structure.php:28 tbl_structure.php:152 tbl_structure.php:156 -#: tbl_structure.php:472 +#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:511 +#: tbl_structure.php:27 tbl_structure.php:151 tbl_structure.php:155 +#: tbl_structure.php:470 msgid "Primary" msgstr "Principal" #: libraries/mult_submits.inc.php:97 libraries/tbl_properties.inc.php:115 -#: libraries/tbl_properties.inc.php:524 tbl_printview.php:324 -#: tbl_structure.php:30 tbl_structure.php:153 tbl_structure.php:157 -#: tbl_structure.php:474 tbl_structure.php:672 +#: libraries/tbl_properties.inc.php:523 tbl_printview.php:323 +#: tbl_structure.php:29 tbl_structure.php:152 tbl_structure.php:156 +#: tbl_structure.php:472 tbl_structure.php:670 msgid "Index" msgstr "Índex" -#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:530 -#: tbl_structure.php:34 tbl_structure.php:155 tbl_structure.php:159 -#: tbl_structure.php:477 +#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:529 +#: tbl_structure.php:33 tbl_structure.php:154 tbl_structure.php:158 +#: tbl_structure.php:475 msgid "Fulltext" msgstr "Text sencer" -#: libraries/mult_submits.inc.php:434 tbl_replace.php:330 +#: libraries/mult_submits.inc.php:433 tbl_replace.php:330 msgid "No change" msgstr "Sense canvis" @@ -3287,190 +3348,190 @@ msgstr "Sense canvis" msgid "Charset" msgstr "Joc de Caràcters" -#: libraries/mysql_charsets.lib.php:210 libraries/mysql_charsets.lib.php:411 -#: tbl_change.php:515 +#: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 +#: tbl_change.php:510 msgid "Binary" msgstr " Binari " -#: libraries/mysql_charsets.lib.php:222 +#: libraries/mysql_charsets.lib.php:214 msgid "Bulgarian" msgstr "Búlgar" -#: libraries/mysql_charsets.lib.php:226 libraries/mysql_charsets.lib.php:351 +#: libraries/mysql_charsets.lib.php:218 libraries/mysql_charsets.lib.php:343 msgid "Simplified Chinese" msgstr "Xinés Simplificat" -#: libraries/mysql_charsets.lib.php:228 libraries/mysql_charsets.lib.php:371 +#: libraries/mysql_charsets.lib.php:220 libraries/mysql_charsets.lib.php:363 msgid "Traditional Chinese" msgstr "Xinés Tradicional" -#: libraries/mysql_charsets.lib.php:232 libraries/mysql_charsets.lib.php:418 +#: libraries/mysql_charsets.lib.php:224 libraries/mysql_charsets.lib.php:410 msgid "case-insensitive" msgstr "No sensible a majúscules" -#: libraries/mysql_charsets.lib.php:235 libraries/mysql_charsets.lib.php:420 +#: libraries/mysql_charsets.lib.php:227 libraries/mysql_charsets.lib.php:412 msgid "case-sensitive" msgstr "sensible a majúscules" -#: libraries/mysql_charsets.lib.php:238 +#: libraries/mysql_charsets.lib.php:230 msgid "Croatian" msgstr "Croata" -#: libraries/mysql_charsets.lib.php:241 +#: libraries/mysql_charsets.lib.php:233 msgid "Czech" msgstr "Txec" -#: libraries/mysql_charsets.lib.php:244 +#: libraries/mysql_charsets.lib.php:236 msgid "Danish" msgstr "Danès" -#: libraries/mysql_charsets.lib.php:247 +#: libraries/mysql_charsets.lib.php:239 msgid "English" msgstr "Anglès" -#: libraries/mysql_charsets.lib.php:250 +#: libraries/mysql_charsets.lib.php:242 msgid "Esperanto" msgstr "Esperanto" -#: libraries/mysql_charsets.lib.php:253 +#: libraries/mysql_charsets.lib.php:245 msgid "Estonian" msgstr "Estonià " -#: libraries/mysql_charsets.lib.php:256 libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:248 libraries/mysql_charsets.lib.php:251 msgid "German" msgstr "Alemany" -#: libraries/mysql_charsets.lib.php:256 +#: libraries/mysql_charsets.lib.php:248 msgid "dictionary" msgstr "diccionari" -#: libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:251 msgid "phone book" msgstr "Libreta d'adreces" -#: libraries/mysql_charsets.lib.php:262 +#: libraries/mysql_charsets.lib.php:254 msgid "Hungarian" msgstr "Húngar" -#: libraries/mysql_charsets.lib.php:265 +#: libraries/mysql_charsets.lib.php:257 msgid "Icelandic" msgstr "Islandès" -#: libraries/mysql_charsets.lib.php:268 libraries/mysql_charsets.lib.php:358 +#: libraries/mysql_charsets.lib.php:260 libraries/mysql_charsets.lib.php:350 msgid "Japanese" msgstr "Japonès" -#: libraries/mysql_charsets.lib.php:271 +#: libraries/mysql_charsets.lib.php:263 msgid "Latvian" msgstr "Letó" -#: libraries/mysql_charsets.lib.php:274 +#: libraries/mysql_charsets.lib.php:266 msgid "Lithuanian" msgstr "Lituà " -#: libraries/mysql_charsets.lib.php:277 libraries/mysql_charsets.lib.php:380 +#: libraries/mysql_charsets.lib.php:269 libraries/mysql_charsets.lib.php:372 msgid "Korean" msgstr "Coreà" -#: libraries/mysql_charsets.lib.php:280 +#: libraries/mysql_charsets.lib.php:272 msgid "Persian" msgstr "Persa" -#: libraries/mysql_charsets.lib.php:283 +#: libraries/mysql_charsets.lib.php:275 msgid "Polish" msgstr "Polac" -#: libraries/mysql_charsets.lib.php:286 libraries/mysql_charsets.lib.php:334 +#: libraries/mysql_charsets.lib.php:278 libraries/mysql_charsets.lib.php:326 msgid "West European" msgstr "Europa Occidental" -#: libraries/mysql_charsets.lib.php:289 +#: libraries/mysql_charsets.lib.php:281 msgid "Romanian" msgstr "Romanés" -#: libraries/mysql_charsets.lib.php:292 +#: libraries/mysql_charsets.lib.php:284 msgid "Slovak" msgstr "Eslovac" -#: libraries/mysql_charsets.lib.php:295 +#: libraries/mysql_charsets.lib.php:287 msgid "Slovenian" msgstr "Eslové" -#: libraries/mysql_charsets.lib.php:298 +#: libraries/mysql_charsets.lib.php:290 msgid "Spanish" msgstr "Espanyol" -#: libraries/mysql_charsets.lib.php:301 +#: libraries/mysql_charsets.lib.php:293 msgid "Traditional Spanish" msgstr "Espanyol Tradicional" -#: libraries/mysql_charsets.lib.php:304 libraries/mysql_charsets.lib.php:401 +#: libraries/mysql_charsets.lib.php:296 libraries/mysql_charsets.lib.php:393 msgid "Swedish" msgstr "Suec" -#: libraries/mysql_charsets.lib.php:307 libraries/mysql_charsets.lib.php:404 +#: libraries/mysql_charsets.lib.php:299 libraries/mysql_charsets.lib.php:396 msgid "Thai" msgstr "Tailandès" -#: libraries/mysql_charsets.lib.php:310 libraries/mysql_charsets.lib.php:398 +#: libraries/mysql_charsets.lib.php:302 libraries/mysql_charsets.lib.php:390 msgid "Turkish" msgstr "Turc" -#: libraries/mysql_charsets.lib.php:313 libraries/mysql_charsets.lib.php:395 +#: libraries/mysql_charsets.lib.php:305 libraries/mysql_charsets.lib.php:387 msgid "Ukrainian" msgstr "Ucrainès " -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 msgid "Unicode" msgstr "Unicode" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 -#: libraries/mysql_charsets.lib.php:334 libraries/mysql_charsets.lib.php:341 -#: libraries/mysql_charsets.lib.php:363 libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 +#: libraries/mysql_charsets.lib.php:326 libraries/mysql_charsets.lib.php:333 +#: libraries/mysql_charsets.lib.php:355 libraries/mysql_charsets.lib.php:366 msgid "multilingual" msgstr "multilingüe" -#: libraries/mysql_charsets.lib.php:341 +#: libraries/mysql_charsets.lib.php:333 msgid "Central European" msgstr "Europa Central" -#: libraries/mysql_charsets.lib.php:346 +#: libraries/mysql_charsets.lib.php:338 msgid "Russian" msgstr "Rus" -#: libraries/mysql_charsets.lib.php:363 +#: libraries/mysql_charsets.lib.php:355 msgid "Baltic" msgstr "Bàltic" -#: libraries/mysql_charsets.lib.php:368 +#: libraries/mysql_charsets.lib.php:360 msgid "Armenian" msgstr "Armeni" -#: libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:366 msgid "Cyrillic" msgstr "Ciríl.lic" -#: libraries/mysql_charsets.lib.php:377 +#: libraries/mysql_charsets.lib.php:369 msgid "Arabic" msgstr "Àrab" -#: libraries/mysql_charsets.lib.php:383 +#: libraries/mysql_charsets.lib.php:375 msgid "Hebrew" msgstr "Hebreu" -#: libraries/mysql_charsets.lib.php:386 +#: libraries/mysql_charsets.lib.php:378 msgid "Georgian" msgstr "Georgià" -#: libraries/mysql_charsets.lib.php:389 +#: libraries/mysql_charsets.lib.php:381 msgid "Greek" msgstr "Grec" -#: libraries/mysql_charsets.lib.php:392 +#: libraries/mysql_charsets.lib.php:384 msgid "Czech-Slovak" msgstr "Txec-Eslovac" -#: libraries/mysql_charsets.lib.php:407 libraries/mysql_charsets.lib.php:414 +#: libraries/mysql_charsets.lib.php:399 libraries/mysql_charsets.lib.php:406 msgid "unknown" msgstr "Desconegut" @@ -3496,69 +3557,69 @@ msgstr "Finestra de consultes" msgid "This format has no options" msgstr "Aquest format no té opcions" -#: libraries/relation.lib.php:82 +#: libraries/relation.lib.php:77 msgid "not OK" msgstr "Incorrecte" -#: libraries/relation.lib.php:86 pmd_general.php:339 +#: libraries/relation.lib.php:81 pmd_general.php:339 msgid "OK" msgstr "Correcte" -#: libraries/relation.lib.php:87 +#: libraries/relation.lib.php:82 msgid "Enabled" msgstr "Activat" -#: libraries/relation.lib.php:110 +#: libraries/relation.lib.php:105 msgid "Display Features" msgstr "Mostra les característiques" -#: libraries/relation.lib.php:116 +#: libraries/relation.lib.php:111 msgid "Creation of PDFs" msgstr "Creació de PDFs" -#: libraries/relation.lib.php:120 +#: libraries/relation.lib.php:115 msgid "Displaying Column Comments" msgstr "Mostrant comentaris de les columnes" -#: libraries/relation.lib.php:125 +#: libraries/relation.lib.php:120 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "Mira a la documentació cóm actualitzar la teva Taula de Comentaris de les " "Columnes" -#: libraries/relation.lib.php:130 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 msgid "Bookmarked SQL query" msgstr "Consulta SQL desada" -#: libraries/relation.lib.php:134 querywindow.php:99 querywindow.php:207 +#: libraries/relation.lib.php:129 querywindow.php:98 querywindow.php:205 msgid "SQL history" msgstr "Historial SQL" -#: libraries/relation.lib.php:146 +#: libraries/relation.lib.php:141 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:148 +#: libraries/relation.lib.php:143 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" -#: libraries/relation.lib.php:149 +#: libraries/relation.lib.php:144 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:150 +#: libraries/relation.lib.php:145 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:151 +#: libraries/relation.lib.php:146 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1158 +#: libraries/relation.lib.php:1153 msgid "no description" msgstr "Sense Descripció" @@ -3566,7 +3627,7 @@ msgstr "Sense Descripció" msgid "Slave configuration" msgstr "Configració de l'esclau" -#: libraries/replication_gui.lib.php:53 server_replication.php:346 +#: libraries/replication_gui.lib.php:53 server_replication.php:345 msgid "Change or reconfigure master server" msgstr "Canvia o reconfigura el servidor mestre" @@ -3580,16 +3641,12 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:711 -#: server_privileges.php:714 server_privileges.php:721 -#: server_synchronize.php:1170 +#: libraries/replication_gui.lib.php:261 server_privileges.php:710 +#: server_privileges.php:713 server_privileges.php:720 +#: server_synchronize.php:1169 msgid "User name" msgstr "Nom d'usuari" -#: libraries/replication_gui.lib.php:69 server_synchronize.php:1162 -msgid "Port" -msgstr "Port" - #: libraries/replication_gui.lib.php:105 msgid "Master status" msgstr "Estat del mestre" @@ -3604,8 +3661,8 @@ msgid "Variable" msgstr "Variable" #: libraries/replication_gui.lib.php:117 server_status.php:737 -#: tbl_change.php:322 tbl_printview.php:368 tbl_select.php:137 -#: tbl_structure.php:728 +#: tbl_change.php:317 tbl_printview.php:367 tbl_select.php:136 +#: tbl_structure.php:726 msgid "Value" msgstr "Valor" @@ -3621,38 +3678,38 @@ msgstr "" "Només els servidors iniciats amb l'opció --report-host=nom_de_servidor es " "mostren en aquesta llista." -#: libraries/replication_gui.lib.php:242 server_replication.php:193 +#: libraries/replication_gui.lib.php:242 server_replication.php:192 msgid "Add slave replication user" msgstr "Afegeix l'usuari esclau de replicació" -#: libraries/replication_gui.lib.php:256 server_privileges.php:716 +#: libraries/replication_gui.lib.php:256 server_privileges.php:715 msgid "Any user" msgstr "Qualsevol usuari" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1920 server_privileges.php:1950 +#: libraries/replication_gui.lib.php:348 server_privileges.php:716 +#: server_privileges.php:783 server_privileges.php:807 +#: server_privileges.php:1924 server_privileges.php:1954 msgid "Use text field" msgstr "Usa camp de text" -#: libraries/replication_gui.lib.php:304 server_privileges.php:764 +#: libraries/replication_gui.lib.php:304 server_privileges.php:763 msgid "Any host" msgstr "Qualsevol servidor" -#: libraries/replication_gui.lib.php:308 server_privileges.php:768 +#: libraries/replication_gui.lib.php:308 server_privileges.php:767 msgid "Local" msgstr "Local" -#: libraries/replication_gui.lib.php:314 server_privileges.php:773 +#: libraries/replication_gui.lib.php:314 server_privileges.php:772 msgid "This Host" msgstr "Aquest Host" -#: libraries/replication_gui.lib.php:320 server_privileges.php:779 +#: libraries/replication_gui.lib.php:320 server_privileges.php:778 msgid "Use Host Table" msgstr "Utilitza la Taula de Hosts" -#: libraries/replication_gui.lib.php:333 server_privileges.php:792 +#: libraries/replication_gui.lib.php:333 server_privileges.php:791 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3680,8 +3737,8 @@ msgstr "Idioma desconegut: %1$s." msgid "Servers" msgstr "Servidors" -#: libraries/server_links.inc.php:52 server_engines.php:111 -#: server_engines.php:115 server_status.php:414 test/theme.php:104 +#: libraries/server_links.inc.php:52 server_engines.php:125 +#: server_engines.php:129 server_status.php:414 test/theme.php:104 msgid "Variables" msgstr "Variables" @@ -3702,12 +3759,12 @@ msgstr "Registre binari" msgid "Processes" msgstr "Processos" -#: libraries/server_links.inc.php:91 server_synchronize.php:1091 -#: server_synchronize.php:1099 +#: libraries/server_links.inc.php:91 server_synchronize.php:1090 +#: server_synchronize.php:1098 msgid "Synchronize" msgstr "Sincronitza" -#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1109 +#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1108 msgid "Source database" msgstr "Base de dades origen" @@ -3725,7 +3782,7 @@ msgstr "Servidor remot" msgid "Difference" msgstr "Diferència" -#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1111 +#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1110 msgid "Target database" msgstr "Base de dades destinació" @@ -3745,11 +3802,11 @@ msgstr "Executa consulta/s SQL a la Base de Dades %s" msgid "Columns" msgstr "Nom de les columnes" -#: libraries/sql_query_form.lib.php:342 sql.php:664 sql.php:665 sql.php:682 +#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "Desa aquesta consulta SQL" -#: libraries/sql_query_form.lib.php:349 sql.php:676 +#: libraries/sql_query_form.lib.php:349 sql.php:669 msgid "Let every user access this bookmark" msgstr "Deixa accedir a cada usuari a aquesta consulta desada" @@ -3846,12 +3903,12 @@ msgstr "" "instal·lats els mòduls de PHP necessaris tal i com s'indica a la " "%sdocumentació%s." -#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:139 -#: libraries/tbl_links.inc.php:140 +#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 +#: libraries/tbl_links.inc.php:139 msgid "Table seems to be empty!" msgstr "La taula sembla buida!" -#: libraries/tbl_links.inc.php:148 +#: libraries/tbl_links.inc.php:147 #, php-format msgid "Tracking of %s.%s is activated." msgstr "S'ha activat el seguiment de %s.%s." @@ -3886,12 +3943,12 @@ msgstr "" "Per a valors per defecte, només entra un valor, sense barres invertides ni " "cometes, fent servir aquest format: a" -#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1263 -#: pdf_schema.php:1284 tbl_printview.php:142 tbl_structure.php:179 +#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1262 +#: pdf_schema.php:1283 tbl_printview.php:141 tbl_structure.php:178 msgid "Attributes" msgstr "Atributs" -#: libraries/tbl_properties.inc.php:136 +#: libraries/tbl_properties.inc.php:135 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -3900,11 +3957,11 @@ msgstr "" "Per veure una llista d'opcions de transformació disponibles i els seus tipus " "MIME de transformació, prem a %sdescripcions de transformació%s" -#: libraries/tbl_properties.inc.php:144 +#: libraries/tbl_properties.inc.php:143 msgid "Transformation options" msgstr "Opcions de Transformació" -#: libraries/tbl_properties.inc.php:145 +#: libraries/tbl_properties.inc.php:144 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
                            If you ever need to put a backslash (\"\\\") or a single " @@ -3916,18 +3973,18 @@ msgstr "" "apòstrof (\"'\") entre aquests valors, posa una barra invertida devant (per " "exemple '\\\\xyz' o 'a\\'b')." -#: libraries/tbl_properties.inc.php:392 +#: libraries/tbl_properties.inc.php:391 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "Res" -#: libraries/tbl_properties.inc.php:393 +#: libraries/tbl_properties.inc.php:392 msgid "As defined:" msgstr "Com definit:" -#: libraries/tbl_properties.inc.php:579 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:578 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
                            Please ask the " @@ -3936,29 +3993,29 @@ msgstr "" "No hi ha cap descripció disponible per a aquesta transformació.
                            Demana " "a l'autor qué fa %s." -#: libraries/tbl_properties.inc.php:725 server_engines.php:57 -#: tbl_operations.php:354 +#: libraries/tbl_properties.inc.php:724 server_engines.php:56 +#: tbl_operations.php:352 msgid "Storage Engine" msgstr "Motor d'emmagatzematge" -#: libraries/tbl_properties.inc.php:754 +#: libraries/tbl_properties.inc.php:753 msgid "PARTITION definition" msgstr "Definicio de PARTICIÓ" -#: libraries/tbl_properties.inc.php:775 pdf_pages.php:502 +#: libraries/tbl_properties.inc.php:774 pdf_pages.php:501 #: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214 -#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1124 tbl_indexes.php:247 -#: tbl_relation.php:565 +#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1022 tbl_indexes.php:246 +#: tbl_relation.php:563 msgid "Save" msgstr "Desa" -#: libraries/tbl_properties.inc.php:779 tbl_structure.php:541 +#: libraries/tbl_properties.inc.php:778 tbl_structure.php:539 #, fuzzy, php-format #| msgid "Add column(s)" msgid "Add %s column(s)" msgstr "Afegeix columna(es)" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:535 +#: libraries/tbl_properties.inc.php:782 tbl_structure.php:533 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -4161,8 +4218,8 @@ msgstr "Interficie" msgid "Custom color" msgstr "Color triat" -#: main.php:162 pdf_pages.php:362 setup/lib/FormDisplay.tpl.php:216 -#: tbl_change.php:1173 +#: main.php:162 pdf_pages.php:361 setup/lib/FormDisplay.tpl.php:216 +#: tbl_change.php:1071 msgid "Reset" msgstr "Reinicia" @@ -4170,8 +4227,8 @@ msgstr "Reinicia" msgid "Protocol version" msgstr "Versió del protocol" -#: main.php:188 server_privileges.php:1381 server_privileges.php:1528 -#: server_privileges.php:1642 server_privileges.php:2060 +#: main.php:188 server_privileges.php:1385 server_privileges.php:1532 +#: server_privileges.php:1646 server_privileges.php:2064 #: server_processlist.php:53 msgid "User" msgstr "Usuari" @@ -4265,14 +4322,23 @@ msgstr "" "encara existeix dins del vostre directori de phpMyAdmin. Heu d'esborrar-ho " "un cop heu acabat de configurar phpMyAdmin." -#: main.php:330 +#: main.php:314 +#, php-format +msgid "" +"The additional features for working with linked tables have been " +"deactivated. To find out why click %shere%s." +msgstr "" +"Les característiques addicionals per treballar amb taules enllaçades s'han " +"desactivat. Per saber perquè prem a %saquí%s." + +#: main.php:329 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:345 +#: main.php:344 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -4281,7 +4347,7 @@ msgstr "" "La teva llibreria MySQL de PHP MySQL versió %s és diferent del teu servidor " "MySQL versió %s. Aixó pot provocar comportaments inesperats." -#: main.php:357 +#: main.php:356 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -4295,68 +4361,68 @@ msgstr "" msgid "Reload navigation frame" msgstr "Configurar marc de navegació" -#: navigation.php:204 server_databases.php:370 server_synchronize.php:1190 +#: navigation.php:203 server_databases.php:368 server_synchronize.php:1189 msgid "No databases" msgstr "No hi ha Bases de Dades" -#: navigation.php:298 +#: navigation.php:297 msgid "Filter" msgstr "Filtre" -#: navigation.php:299 setup/frames/index.inc.php:218 +#: navigation.php:298 setup/frames/index.inc.php:218 #: setup/lib/messages.inc.php:41 msgid "Clear" msgstr "Neteja" -#: navigation.php:330 navigation.php:331 +#: navigation.php:329 navigation.php:330 #, fuzzy #| msgid "Create table" msgctxt "short form" msgid "Create table" msgstr "Crea una taula" -#: navigation.php:333 navigation.php:495 +#: navigation.php:332 navigation.php:494 msgid "Please select a database" msgstr "Tria una Base de Dades" -#: pdf_pages.php:40 pdf_pages.php:46 pdf_pages.php:52 pdf_pages.php:57 +#: pdf_pages.php:39 pdf_pages.php:45 pdf_pages.php:51 pdf_pages.php:56 #, php-format msgid "%s table not found or not set in %s" msgstr "Taula %s no trobada o no definida a %s" -#: pdf_pages.php:265 +#: pdf_pages.php:264 msgid "Please choose a page to edit" msgstr "Tria una pàgina per editar" -#: pdf_pages.php:303 pmd_pdf.php:113 +#: pdf_pages.php:302 pmd_pdf.php:111 msgid "Create a page" msgstr "Crea una nova Pàgina" -#: pdf_pages.php:309 +#: pdf_pages.php:308 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Número de pàgina:" -#: pdf_pages.php:313 +#: pdf_pages.php:312 #, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "Disseny automàtic" -#: pdf_pages.php:315 +#: pdf_pages.php:314 msgid "Internal relations" msgstr "Relacions internes" -#: pdf_pages.php:338 +#: pdf_pages.php:337 msgid "Select Tables" msgstr "Tria Taules" -#: pdf_pages.php:361 +#: pdf_pages.php:360 msgid "Toggle scratchboard" msgstr "Canvia l' scratchboard" -#: pdf_pages.php:524 +#: pdf_pages.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -4364,37 +4430,37 @@ msgstr "" "La pàgina actual té referències a taules que no existeixen. Vols esborrar " "aquestes referències?" -#: pdf_schema.php:635 +#: pdf_schema.php:634 #, fuzzy, php-format #| msgid "The \"%s\" table doesn't exist!" msgid "The %s table doesn't exist!" msgstr "La taula \"%s\" no existeix!" -#: pdf_schema.php:671 +#: pdf_schema.php:670 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Configura les coordinades per la taula %s" -#: pdf_schema.php:994 +#: pdf_schema.php:993 #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" msgstr "Esquema de la base de dades \"%s\" - Pàgina %s" -#: pdf_schema.php:1012 +#: pdf_schema.php:1011 msgid "No tables" msgstr "No hi ha taules" -#: pdf_schema.php:1031 pdf_schema.php:1140 +#: pdf_schema.php:1030 pdf_schema.php:1139 msgid "Relational schema" msgstr "Esquema Relacional" -#: pdf_schema.php:1115 +#: pdf_schema.php:1114 msgid "Table of contents" msgstr "Taula de continguts" -#: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:145 -#: tbl_structure.php:182 tbl_tracking.php:277 +#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 +#: tbl_structure.php:181 tbl_tracking.php:272 msgid "Extra" msgstr "Extra" @@ -4406,7 +4472,7 @@ msgstr "Menú esquerre Mostra/Amaga" msgid "Save position" msgstr "Desa la posició" -#: pmd_general.php:70 server_synchronize.php:428 server_synchronize.php:871 +#: pmd_general.php:70 server_synchronize.php:427 server_synchronize.php:870 msgid "Create table" msgstr "Crea una taula" @@ -4485,32 +4551,32 @@ msgstr "" "camp de visualització, clica la icona \"Tria camp a visualitzar\", i clica " "també en el nom de camp adient." -#: pmd_pdf.php:62 +#: pmd_pdf.php:60 #, fuzzy msgid "Page has been created" msgstr "S'ha creat la taula %1$s." -#: pmd_pdf.php:64 +#: pmd_pdf.php:62 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:84 +#: pmd_pdf.php:82 msgid "Export/Import to scale" msgstr "Exporta/Importa a escala" -#: pmd_pdf.php:88 +#: pmd_pdf.php:86 msgid "recommended" msgstr "recomanat" -#: pmd_pdf.php:93 +#: pmd_pdf.php:91 msgid "to/from page" msgstr "plana a/de" -#: querywindow.php:94 +#: querywindow.php:93 msgid "Import files" msgstr "Importa arxius" -#: querywindow.php:105 +#: querywindow.php:104 msgid "All" msgstr "Tot" @@ -4556,69 +4622,69 @@ msgstr "Informació" msgid "Character Sets and Collations" msgstr "Jocs de Caràcters i ordenacions" -#: server_databases.php:51 +#: server_databases.php:49 msgid "No databases selected." msgstr "No s'han triat Bases de dades." -#: server_databases.php:62 +#: server_databases.php:60 #, php-format msgid "%s databases have been dropped successfully." msgstr "%s Bases de dades s'han esborrat correctament." -#: server_databases.php:87 +#: server_databases.php:85 msgid "Databases statistics" msgstr "Estadístiques de les bases de dades" -#: server_databases.php:116 server_status.php:370 +#: server_databases.php:114 server_status.php:370 #: setup/lib/messages.inc.php:114 msgid "Tables" msgstr "Taules" -#: server_databases.php:194 server_replication.php:180 -#: server_replication.php:208 +#: server_databases.php:192 server_replication.php:179 +#: server_replication.php:207 msgid "Master replication" msgstr "Replicació del mestre" -#: server_databases.php:196 server_replication.php:247 +#: server_databases.php:194 server_replication.php:246 msgid "Slave replication" msgstr "Replicació de l'esclau" -#: server_databases.php:229 +#: server_databases.php:227 #, fuzzy #| msgid "Go to database" msgid "Jump to database" msgstr "Vés a la base de dades" -#: server_databases.php:266 +#: server_databases.php:264 #, fuzzy #| msgid "Master replication" msgid "Not replicated" msgstr "Replicació del mestre" -#: server_databases.php:272 +#: server_databases.php:270 #, fuzzy #| msgid "Replication" msgid "Replicated" msgstr "Replicació" -#: server_databases.php:288 +#: server_databases.php:286 #, php-format msgid "Check privileges for database "%s"." msgstr "Comprova els permisos per la Base de dades "%s"." -#: server_databases.php:292 server_databases.php:293 +#: server_databases.php:290 server_databases.php:291 msgid "Check Privileges" msgstr "Comprova els permisos" -#: server_databases.php:357 server_databases.php:358 +#: server_databases.php:355 server_databases.php:356 msgid "Enable Statistics" msgstr "Activa Estadístiques" -#: server_databases.php:361 server_databases.php:362 +#: server_databases.php:359 server_databases.php:360 msgid "Disable Statistics" msgstr "Desactiva Estadístiques" -#: server_databases.php:365 +#: server_databases.php:363 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -4626,122 +4692,122 @@ msgstr "" "Nota: Activant les estadístiques de Base de Dades aqui pot provocar elevat " "tràfic entre el servidor Web i el de MySQL." -#: server_engines.php:48 +#: server_engines.php:47 msgid "Storage Engines" msgstr "Motors d'emmagatzematge" -#: server_export.php:20 +#: server_export.php:18 msgid "View dump (schema) of databases" msgstr "Veure volcat (esquema) de les bases de dades" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:23 server_privileges.php:265 msgid "Includes all privileges except GRANT." msgstr "Inclou tots els permisos excepte GRANT (atorgar)." -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:24 server_privileges.php:191 +#: server_privileges.php:514 msgid "Allows altering the structure of existing tables." msgstr "Permet alterar l'estructura de taules existents." -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:25 server_privileges.php:207 +#: server_privileges.php:520 msgid "Allows altering and dropping stored routines." msgstr "Permet alterar i esborrar rutines enmagatzemades." -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:26 server_privileges.php:183 +#: server_privileges.php:513 msgid "Allows creating new databases and tables." msgstr "Permet crear noves bases de dades i taules." -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:27 server_privileges.php:206 +#: server_privileges.php:519 msgid "Allows creating stored routines." msgstr "Permet crear rutines enmgatzemades." -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:513 msgid "Allows creating new tables." msgstr "Permet crear noves taules." -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:29 server_privileges.php:194 +#: server_privileges.php:517 msgid "Allows creating temporary tables." msgstr "Permet crear taules temporals." -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:30 server_privileges.php:208 +#: server_privileges.php:553 msgid "Allows creating, dropping and renaming user accounts." msgstr "Permet crear, esborrar i reanomenar comptes d'usuari." -#: server_privileges.php:32 server_privileges.php:199 -#: server_privileges.php:203 server_privileges.php:526 -#: server_privileges.php:530 +#: server_privileges.php:31 server_privileges.php:198 +#: server_privileges.php:202 server_privileges.php:525 +#: server_privileges.php:529 msgid "Allows creating new views." msgstr "Permet crear noves vistes." -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:32 server_privileges.php:182 +#: server_privileges.php:505 msgid "Allows deleting data." msgstr "Permet esborrar dades." -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:33 server_privileges.php:184 +#: server_privileges.php:516 msgid "Allows dropping databases and tables." msgstr "Permet eliminar bases de dades i taules." -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:34 server_privileges.php:516 msgid "Allows dropping tables." msgstr "Permet eliminar taules." -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:35 server_privileges.php:199 +#: server_privileges.php:533 msgid "Allows to set up events for the event scheduler" msgstr "Permet establir events per al planificador d'events" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:36 server_privileges.php:209 +#: server_privileges.php:521 msgid "Allows executing stored routines." msgstr "Permet executar rutines enmagatzemades." -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:37 server_privileges.php:188 +#: server_privileges.php:508 msgid "Allows importing data from and exporting data into files." msgstr "Permet importar i exportar dades amb arxius externs." -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:38 server_privileges.php:539 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Permet afegir usuaris i permisos sense tenir que recarregar les taules de " "permisos." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:515 msgid "Allows creating and dropping indexes." msgstr "Permet crear i eliminar indexs." -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:40 server_privileges.php:180 +#: server_privileges.php:441 server_privileges.php:503 msgid "Allows inserting and replacing data." msgstr "Permet inserir i modificar dades." -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:41 server_privileges.php:195 +#: server_privileges.php:548 msgid "Allows locking tables for the current thread." msgstr "Permet bloquejar taules per l'actual fil d'execució." -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:42 server_privileges.php:645 +#: server_privileges.php:647 msgid "Limits the number of new connections the user may open per hour." msgstr "Limita el numero de noves connexions que pot obrir l'usuari per hora." -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:43 server_privileges.php:633 +#: server_privileges.php:635 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Limita el numero de consultes que pot enviar l'usuari al servidor per hora." -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:44 server_privileges.php:639 +#: server_privileges.php:641 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -4749,61 +4815,61 @@ msgstr "" "Limita el numero d'ordres que pot executar l'usuari canviant qualsevol taula " "o base de dades per hora." -#: server_privileges.php:46 server_privileges.php:652 -#: server_privileges.php:654 +#: server_privileges.php:45 server_privileges.php:651 +#: server_privileges.php:653 msgid "Limits the number of simultaneous connections the user may have." msgstr "Límita el nombre de connexions simultànies que l'usuari pot tenir." -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:46 server_privileges.php:187 +#: server_privileges.php:543 msgid "Allows viewing processes of all users" msgstr "Permet veure processos de tots els usuaris" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:47 server_privileges.php:189 +#: server_privileges.php:447 server_privileges.php:549 msgid "Has no effect in this MySQL version." msgstr "No té efecte en aquesta versió de MySQL." -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:48 server_privileges.php:185 +#: server_privileges.php:544 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Permet recarregar les configuracions del servidor i buidar les seves " "memòries cau." -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:197 +#: server_privileges.php:551 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Dona el dret a l'usuari de preguntar quins servidors mestres / esclaus hi ha." -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:50 server_privileges.php:196 +#: server_privileges.php:552 msgid "Needed for the replication slaves." msgstr "Es necessari per a la replicació en servidors esclaus." -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:51 server_privileges.php:179 +#: server_privileges.php:438 server_privileges.php:502 msgid "Allows reading data." msgstr "Permet llegir dades." -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:52 server_privileges.php:192 +#: server_privileges.php:546 msgid "Gives access to the complete list of databases." msgstr "Dona accés a la llista completa de bases de dades." -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:53 server_privileges.php:203 +#: server_privileges.php:205 server_privileges.php:518 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Permet fer consultes de tipus SHOW CREATE VIEW." -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:54 server_privileges.php:186 +#: server_privileges.php:545 msgid "Allows shutting down the server." msgstr "Permet parar el servidor." -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:55 server_privileges.php:193 +#: server_privileges.php:542 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -4813,157 +4879,157 @@ msgstr "" "permés; Es necessari per moltes operacions d'administració com ara establir " "variables globals o bé cancel.lar fils d'execució d'altres usuaris." -#: server_privileges.php:57 server_privileges.php:201 -#: server_privileges.php:535 +#: server_privileges.php:56 server_privileges.php:200 +#: server_privileges.php:534 msgid "Allows creating and dropping triggers" msgstr "Permet crear i eliminar disparadors (triggers)" -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:57 server_privileges.php:181 +#: server_privileges.php:444 server_privileges.php:504 msgid "Allows changing data." msgstr "Permet canviar dades." -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:58 server_privileges.php:259 msgid "No privileges." msgstr "Sense permisos." -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:301 server_privileges.php:302 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Res" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1710 server_privileges.php:1716 +#: server_privileges.php:430 server_privileges.php:565 +#: server_privileges.php:1714 server_privileges.php:1720 msgid "Table-specific privileges" msgstr "Permisos especifics de taula" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1532 +#: server_privileges.php:431 server_privileges.php:573 +#: server_privileges.php:1536 msgid " Note: MySQL privilege names are expressed in English " msgstr " Nota: Els noms dels privilegis del MySQL són en idioma anglès " -#: server_privileges.php:563 server_privileges.php:1531 +#: server_privileges.php:562 server_privileges.php:1535 msgid "Global privileges" msgstr "Permisos generals" -#: server_privileges.php:565 server_privileges.php:1710 +#: server_privileges.php:564 server_privileges.php:1714 msgid "Database-specific privileges" msgstr "Permisos especifics de Base de dades" -#: server_privileges.php:610 +#: server_privileges.php:609 msgid "Administration" msgstr "Administració" -#: server_privileges.php:630 +#: server_privileges.php:629 msgid "Resource limits" msgstr "Limit de recursos" -#: server_privileges.php:631 +#: server_privileges.php:630 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Nota: Es treu el limit establint aquestes opcions a 0 (zero)." -#: server_privileges.php:708 +#: server_privileges.php:707 msgid "Login Information" msgstr "Informació d'Identificació" -#: server_privileges.php:802 +#: server_privileges.php:801 msgid "Do not change the password" msgstr "No canviïs la contrasenya" -#: server_privileges.php:835 server_privileges.php:2197 +#: server_privileges.php:834 server_privileges.php:2201 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "No s'han trobat usuaris." -#: server_privileges.php:879 +#: server_privileges.php:878 #, php-format msgid "The user %s already exists!" msgstr "L'usuari %s ja existeix!" -#: server_privileges.php:962 +#: server_privileges.php:961 msgid "You have added a new user." msgstr "Has afegit un usuari nou." -#: server_privileges.php:1183 +#: server_privileges.php:1184 #, php-format msgid "You have updated the privileges for %s." msgstr "Heu actualitzat els permisos de %s." -#: server_privileges.php:1207 +#: server_privileges.php:1208 #, php-format msgid "You have revoked the privileges for %s" msgstr "Has tret els permisos per %s" -#: server_privileges.php:1243 +#: server_privileges.php:1244 #, php-format msgid "The password for %s was changed successfully." msgstr "La contrasenya per %s s'ha canviat correctament." -#: server_privileges.php:1263 +#: server_privileges.php:1264 #, php-format msgid "Deleting %s" msgstr "Esborrant %s" -#: server_privileges.php:1274 +#: server_privileges.php:1275 msgid "No users selected for deleting!" msgstr "No s\\han triat usuaris per esborrar!" -#: server_privileges.php:1277 +#: server_privileges.php:1278 msgid "Reloading the privileges" msgstr "Recarregant permisos" -#: server_privileges.php:1292 +#: server_privileges.php:1296 msgid "The selected users have been deleted successfully." msgstr "S'han esborrat correctament els usuaris triats." -#: server_privileges.php:1327 +#: server_privileges.php:1331 msgid "The privileges were reloaded successfully." msgstr "Els permisos s'han recarregat correctament." -#: server_privileges.php:1355 server_privileges.php:1641 +#: server_privileges.php:1359 server_privileges.php:1645 msgid "Edit Privileges" msgstr "Edita permisos" -#: server_privileges.php:1364 +#: server_privileges.php:1368 msgid "Revoke" msgstr "Treu" -#: server_privileges.php:1396 +#: server_privileges.php:1400 msgid "User overview" msgstr "Informació general de l'usuari" -#: server_privileges.php:1533 server_privileges.php:1715 -#: server_privileges.php:2064 +#: server_privileges.php:1537 server_privileges.php:1719 +#: server_privileges.php:2068 msgid "Grant" msgstr "Atorga" -#: server_privileges.php:1552 server_privileges.php:2154 +#: server_privileges.php:1556 server_privileges.php:2158 msgid "Any" msgstr "Qualsevol" -#: server_privileges.php:1601 server_privileges.php:1625 -#: server_privileges.php:2019 server_privileges.php:2208 +#: server_privileges.php:1605 server_privileges.php:1629 +#: server_privileges.php:2023 server_privileges.php:2212 msgid "Add a new User" msgstr "Afegeix un usuari nou" -#: server_privileges.php:1606 +#: server_privileges.php:1610 msgid "Remove selected users" msgstr "Treu els usuaris triats" -#: server_privileges.php:1609 +#: server_privileges.php:1613 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Treu tots els permisos actius dels usuaris i els esborra després." -#: server_privileges.php:1610 server_privileges.php:1611 -#: server_privileges.php:1612 +#: server_privileges.php:1614 server_privileges.php:1615 +#: server_privileges.php:1616 msgid "Drop the databases that have the same names as the users." msgstr "" "Esborra les bases de dades que tenen els mateixos noms que els usuaris." -#: server_privileges.php:1628 +#: server_privileges.php:1632 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4976,49 +5042,49 @@ msgstr "" "permisos que utilitza el servidor si s'han fet canvis manualment. En aquest " "cas, es necessari %srecarregar els permisos%s abans de continuar." -#: server_privileges.php:1676 +#: server_privileges.php:1680 msgid "The selected user was not found in the privilege table." msgstr "No s'ha trobat l'usuari triat a la taula de permisos." -#: server_privileges.php:1716 +#: server_privileges.php:1720 msgid "Column-specific privileges" msgstr "Permisos específics de columna" -#: server_privileges.php:1917 +#: server_privileges.php:1921 msgid "Add privileges on the following database" msgstr "Afegeix permisos a la següent base de dades" -#: server_privileges.php:1935 +#: server_privileges.php:1939 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "Els comodins _ i % han de marcar-se amb una \\ per usar-los literalment" -#: server_privileges.php:1938 +#: server_privileges.php:1942 msgid "Add privileges on the following table" msgstr "Afegeix permisos a la següent taula" -#: server_privileges.php:1995 +#: server_privileges.php:1999 msgid "Change Login Information / Copy User" msgstr "Canvi d'Informació de Connexió / Copia d'Usuari" -#: server_privileges.php:1998 +#: server_privileges.php:2002 msgid "Create a new user with the same privileges and ..." msgstr "Crea un nou usuari amb els mateixos permisos i ..." -#: server_privileges.php:2000 +#: server_privileges.php:2004 msgid "... keep the old one." msgstr "... respecta l'antic." -#: server_privileges.php:2001 +#: server_privileges.php:2005 msgid " ... delete the old one from the user tables." msgstr " ... esborra l'antic de les taules d'usuaris." -#: server_privileges.php:2002 +#: server_privileges.php:2006 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr " ... treu tots els permisos actius de l'antic i esborra'l després." -#: server_privileges.php:2003 +#: server_privileges.php:2007 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -5026,44 +5092,44 @@ msgstr "" " ... esborra l'antic de les taules d'usuaris i recarrega els permisos " "després." -#: server_privileges.php:2025 +#: server_privileges.php:2029 msgid "Database for user" msgstr "Base de dades per usuari" -#: server_privileges.php:2029 +#: server_privileges.php:2033 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Res" -#: server_privileges.php:2030 +#: server_privileges.php:2034 msgid "Create database with same name and grant all privileges" msgstr "Crea una base de dades amb el mateix nom i atorga tots els permisos" -#: server_privileges.php:2031 +#: server_privileges.php:2035 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Atorga tots els permisos en un nom comodí (nomusuari_%)" -#: server_privileges.php:2034 +#: server_privileges.php:2038 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Atorga tots els permisos a la base de dades "%s"" -#: server_privileges.php:2057 +#: server_privileges.php:2061 #, php-format msgid "Users having access to "%s"" msgstr "Usuaris amb accés a "%s"" -#: server_privileges.php:2165 +#: server_privileges.php:2169 msgid "global" msgstr "global" -#: server_privileges.php:2167 +#: server_privileges.php:2171 msgid "database-specific" msgstr "específic de la base de dades" -#: server_privileges.php:2169 +#: server_privileges.php:2173 msgid "wildcard" msgstr "comodins" @@ -5082,45 +5148,45 @@ msgstr "phpMyAdmin no pot cancel.lar el fil %s. Probablement, ja és tancat." msgid "ID" msgstr "ID" -#: server_replication.php:50 +#: server_replication.php:49 msgid "Unknown error" msgstr "Error desconegut" -#: server_replication.php:57 +#: server_replication.php:56 #, php-format msgid "Unable to connect to master %s." msgstr "Incapaços de connectar amb el mestre %s." -#: server_replication.php:64 +#: server_replication.php:63 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" "Incapaços de llegir la posició del registre mestre. Posible problema de " "permissos en el mestre." -#: server_replication.php:70 +#: server_replication.php:69 msgid "Unable to change master" msgstr "No es pot canviar el mestre" -#: server_replication.php:73 +#: server_replication.php:72 #, php-format msgid "Master server changed succesfully to %s" msgstr "S'ha canviat correctament el servidor mestre a %s" -#: server_replication.php:181 +#: server_replication.php:180 msgid "This server is configured as master in a replication process." msgstr "" "Aquest servidor s'ha configurat com a mestre en un procés de replicació." -#: server_replication.php:183 server_status.php:391 +#: server_replication.php:182 server_status.php:391 msgid "Show master status" msgstr "Mostra l'estat del mestre (Show master status)" -#: server_replication.php:186 +#: server_replication.php:185 msgid "Show connected slaves" msgstr "Mostra els esclaus connectats" -#: server_replication.php:209 +#: server_replication.php:208 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -5129,11 +5195,11 @@ msgstr "" "Aquest servidor no està configurat com a mestre en un procés de replicació. " "Vols configurar-lo?" -#: server_replication.php:216 +#: server_replication.php:215 msgid "Master configuration" msgstr "Configuració del mestre" -#: server_replication.php:217 +#: server_replication.php:216 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -5147,19 +5213,19 @@ msgstr "" "optar per ignorar totes les bases de dades per defecte i permetre que només " "determinades bases de dades es repliquin. Si us plau, selecciona l'opció:" -#: server_replication.php:220 +#: server_replication.php:219 msgid "Replicate all databases; Ignore:" msgstr "Replica totes les bases de dades; Ignora:" -#: server_replication.php:221 +#: server_replication.php:220 msgid "Ignore all databases; Replicate:" msgstr "Ignora totes les bases de dades; Replica:" -#: server_replication.php:224 +#: server_replication.php:223 msgid "Please select databases:" msgstr "Selecciona bases de dades:" -#: server_replication.php:227 +#: server_replication.php:226 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -5167,7 +5233,7 @@ msgstr "" "Ara, afegeix les següents línies al final del teu arxiu -my.cnf- i després " "reinicia el servidor MySQL." -#: server_replication.php:229 +#: server_replication.php:228 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " @@ -5177,66 +5243,66 @@ msgstr "" "de veure un missatge que t'informi que aquest servidor està " "configurat com a mestre" -#: server_replication.php:292 +#: server_replication.php:291 msgid "Slave SQL Thread not running!" msgstr "El fil SQL de l'esclau SQL no va!" -#: server_replication.php:295 +#: server_replication.php:294 msgid "Slave IO Thread not running!" msgstr "El fil IO de l'esclau IO no va!" -#: server_replication.php:304 +#: server_replication.php:303 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "Servidor configurat com a esclau en un procés de replicació. Vols?:" -#: server_replication.php:307 +#: server_replication.php:306 msgid "See slave status table" msgstr "Veure la taula d'estat de l'esclau" -#: server_replication.php:310 +#: server_replication.php:309 msgid "Synchronize databases with master" msgstr "Sincronitza les bases de dades amb el mestre" -#: server_replication.php:321 +#: server_replication.php:320 msgid "Control slave:" msgstr "Control esclau:" -#: server_replication.php:324 +#: server_replication.php:323 msgid "Full start" msgstr "Inici total" -#: server_replication.php:324 +#: server_replication.php:323 msgid "Full stop" msgstr "Parada total" -#: server_replication.php:325 +#: server_replication.php:324 msgid "Reset slave" msgstr "Reinicia l'esclau" -#: server_replication.php:326 +#: server_replication.php:325 #, php-format msgid "SQL Thread %s only" msgstr "Només fils SQL %s" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 msgid "Start" msgstr "Inicia" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 msgid "Stop" msgstr "Para" -#: server_replication.php:327 +#: server_replication.php:326 #, php-format msgid "IO Thread %s only" msgstr "Només fils IO %s" -#: server_replication.php:331 +#: server_replication.php:330 msgid "Error management:" msgstr "Gestió d'errors:" -#: server_replication.php:333 +#: server_replication.php:332 #, fuzzy #| msgid "Skipping error(s) might lead into unsynchronized master and slave!" msgid "Skipping errors might lead into unsynchronized master and slave!" @@ -5244,19 +5310,19 @@ msgstr "" "Saltar error(s) podria donar lloc a falta de sincronització entre mestre i " "esclau!" -#: server_replication.php:335 +#: server_replication.php:334 msgid "Skip current error" msgstr "Salta l'error actual" -#: server_replication.php:336 +#: server_replication.php:335 msgid "Skip next" msgstr "Salta el següent" -#: server_replication.php:339 +#: server_replication.php:338 msgid "errors." msgstr "errors." -#: server_replication.php:354 +#: server_replication.php:353 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -6102,116 +6168,116 @@ msgstr "Tipus de consulta" msgid "Replication status" msgstr "Estat de la replicació" -#: server_synchronize.php:93 +#: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "No s'ha pogut connectar a l'origen" -#: server_synchronize.php:96 +#: server_synchronize.php:95 msgid "Could not connect to the target" msgstr "No s'ha pogut connectar a la destinació" -#: server_synchronize.php:121 server_synchronize.php:124 tbl_create.php:77 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "La base de dades '%s' no existeix." -#: server_synchronize.php:264 +#: server_synchronize.php:263 msgid "Structure Synchronization" msgstr "Sincronització d'estructura" -#: server_synchronize.php:271 +#: server_synchronize.php:270 msgid "Data Synchronization" msgstr "Sincronizació de dades" -#: server_synchronize.php:399 server_synchronize.php:838 +#: server_synchronize.php:398 server_synchronize.php:837 msgid "not present" msgstr "no present" -#: server_synchronize.php:423 server_synchronize.php:866 +#: server_synchronize.php:422 server_synchronize.php:865 msgid "Structure Difference" msgstr "Diferència d'estructura" -#: server_synchronize.php:424 server_synchronize.php:867 +#: server_synchronize.php:423 server_synchronize.php:866 msgid "Data Difference" msgstr "Diferència de dades" -#: server_synchronize.php:429 server_synchronize.php:872 +#: server_synchronize.php:428 server_synchronize.php:871 msgid "Add column(s)" msgstr "Afegeix columna(es)" -#: server_synchronize.php:430 server_synchronize.php:873 +#: server_synchronize.php:429 server_synchronize.php:872 msgid "Remove column(s)" msgstr "Treu columna(es)" -#: server_synchronize.php:431 server_synchronize.php:874 +#: server_synchronize.php:430 server_synchronize.php:873 msgid "Alter column(s)" msgstr "Canvia columna(es)" -#: server_synchronize.php:432 server_synchronize.php:875 +#: server_synchronize.php:431 server_synchronize.php:874 msgid "Remove index(s)" msgstr "Treu index(s)" -#: server_synchronize.php:433 server_synchronize.php:876 +#: server_synchronize.php:432 server_synchronize.php:875 msgid "Apply index(s)" msgstr "Aplica index(s)" -#: server_synchronize.php:434 server_synchronize.php:877 +#: server_synchronize.php:433 server_synchronize.php:876 msgid "Update row(s)" msgstr "Actualitza fila(es)" -#: server_synchronize.php:435 server_synchronize.php:878 +#: server_synchronize.php:434 server_synchronize.php:877 msgid "Insert row(s)" msgstr "Afegeix fila(es)" -#: server_synchronize.php:445 server_synchronize.php:889 +#: server_synchronize.php:444 server_synchronize.php:888 msgid "Would you like to delete all the previous rows from target tables?" msgstr "Vols eliminar totes les files anteriors de les taules de destinació?" -#: server_synchronize.php:448 server_synchronize.php:893 +#: server_synchronize.php:447 server_synchronize.php:892 msgid "Apply Selected Changes" msgstr "Aplica els canvis seleccionats" -#: server_synchronize.php:450 server_synchronize.php:895 +#: server_synchronize.php:449 server_synchronize.php:894 msgid "Synchronize Databases" msgstr "Sincronitza Based de dades" -#: server_synchronize.php:463 +#: server_synchronize.php:462 msgid "Selected target tables have been synchronized with source tables." msgstr "" "Les taules de destinació seleccionades s'han sincronitzat amb les taules " "d'origen." -#: server_synchronize.php:941 +#: server_synchronize.php:940 msgid "Target database has been synchronized with source database" msgstr "" "La base de dades destinació s'ha sincronitzat amb la base de dades origen" -#: server_synchronize.php:1002 +#: server_synchronize.php:1001 msgid "The following queries have been executed:" msgstr "Les següents consultes s'han executat:" -#: server_synchronize.php:1121 +#: server_synchronize.php:1120 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1122 +#: server_synchronize.php:1121 #, fuzzy #| msgid "Insecure connection" msgid "Current connection" msgstr "Connexió insegura" -#: server_synchronize.php:1151 +#: server_synchronize.php:1150 #, fuzzy, php-format #| msgid "Configuration file" msgid "Configuration: %s" msgstr "Arxiu de configuració" -#: server_synchronize.php:1166 +#: server_synchronize.php:1165 msgid "Socket" msgstr "Sòcol" -#: server_synchronize.php:1212 +#: server_synchronize.php:1211 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -6812,10 +6878,15 @@ msgid "Signon login options" msgstr "Opcions de connexió signon" #: setup/lib/messages.inc.php:128 +#, fuzzy +#| msgid "" +#| "Configure phpMyAdmin database to gain access to additional features, see " +#| "[a@../Documentation.html#linked-tables]linked-tables infrastructure[/a] " +#| "in documentation" msgid "" "Configure phpMyAdmin database to gain access to additional features, see " -"[a@../Documentation.html#linked-tables]linked-tables infrastructure[/a] in " -"documentation" +"[a@../Documentation.html#linked-tables]phpMyAdmin configuration storage[/a] " +"in documentation" msgstr "" "Configura la base de dades phpMyAdmin per tenir accés a característiques " "adiccionals, consulta [a@../Documentation.html#linked-tables]infraestructura " @@ -8026,117 +8097,117 @@ msgstr "" msgid "ZIP" msgstr "ZIP" -#: sql.php:495 tbl_replace.php:385 +#: sql.php:494 tbl_replace.php:384 #, php-format msgid "Inserted row id: %1$d" msgstr "Id de la fila inserida: %1$d" -#: sql.php:512 +#: sql.php:511 msgid "Showing as PHP code" msgstr "Mostrant com a codi PHP" -#: sql.php:515 tbl_replace.php:359 +#: sql.php:514 tbl_replace.php:358 msgid "Showing SQL query" msgstr "Mostrant consulta SQL" -#: sql.php:517 +#: sql.php:516 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Valida l'SQL" -#: sql.php:638 +#: sql.php:631 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemes amb els indexs de la taula `%s`" -#: sql.php:670 +#: sql.php:663 msgid "Label" msgstr "Etiqueta" -#: tbl_addfield.php:188 tbl_alter.php:102 tbl_indexes.php:97 +#: tbl_addfield.php:185 tbl_alter.php:100 tbl_indexes.php:97 #, php-format msgid "Table %1$s has been altered successfully" msgstr "S'ha modificat la taula %1$s correctament" -#: tbl_change.php:250 tbl_select.php:26 tbl_select.php:27 tbl_select.php:30 -#: tbl_select.php:33 +#: tbl_change.php:245 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_select.php:32 msgid "Browse foreign values" msgstr "Navega valors externs" -#: tbl_change.php:280 tbl_change.php:318 +#: tbl_change.php:275 tbl_change.php:313 msgid "Function" msgstr "Funció" -#: tbl_change.php:300 tbl_indexes.php:199 tbl_indexes.php:224 +#: tbl_change.php:295 tbl_indexes.php:198 tbl_indexes.php:223 msgid "Ignore" msgstr "Ignora" -#: tbl_change.php:725 +#: tbl_change.php:720 #, fuzzy #| msgid " Because of its length,
                            this field might not be editable " msgid " Because of its length,
                            this column might not be editable " msgstr " A causa de la seva longitud,
                            aquest camp pot no ser editable " -#: tbl_change.php:884 +#: tbl_change.php:835 msgid "Remove BLOB Repository Reference" msgstr "Treure Referència a Repositori BLOB" -#: tbl_change.php:890 +#: tbl_change.php:841 msgid "Binary - do not edit" msgstr " Binari - no editeu " -#: tbl_change.php:983 +#: tbl_change.php:889 msgid "Upload to BLOB repository" msgstr "Puja al repositori BLOB" -#: tbl_change.php:1128 +#: tbl_change.php:1026 msgid "Insert as new row" msgstr "Insereix com a nova fila" -#: tbl_change.php:1129 +#: tbl_change.php:1027 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:1130 +#: tbl_change.php:1028 #, fuzzy msgid "Show insert query" msgstr "Mostrant consulta SQL" -#: tbl_change.php:1145 +#: tbl_change.php:1043 msgid "Go back to previous page" msgstr "Torna" -#: tbl_change.php:1146 +#: tbl_change.php:1044 msgid "Insert another new row" msgstr "Insereix un nou registre" -#: tbl_change.php:1150 +#: tbl_change.php:1048 msgid "Go back to this page" msgstr "Torna a aquesta pàgina" -#: tbl_change.php:1158 +#: tbl_change.php:1056 msgid "Edit next row" msgstr "Edita el següent registre" -#: tbl_change.php:1169 +#: tbl_change.php:1067 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Usa la tecla TAB per moure't de valor en valor, o CTRL+fletxes per moure't " "on vulguis" -#: tbl_change.php:1207 +#: tbl_change.php:1105 #, php-format msgid "Restart insertion with %s rows" msgstr "Reinicia l'inserció amb %s files" -#: tbl_create.php:57 +#: tbl_create.php:55 #, php-format msgid "Table %s already exists!" msgstr "La taula %s ja existeix!" -#: tbl_create.php:244 +#: tbl_create.php:241 #, php-format msgid "Table %1$s has been created." msgstr "S'ha creat la taula %1$s." @@ -8157,197 +8228,197 @@ msgstr "No pots canviar el nom d'un índex a \"PRIMARY\"!" msgid "No index parts defined!" msgstr "No s'han definit parts de l'índex!" -#: tbl_indexes.php:159 +#: tbl_indexes.php:158 msgid "Create a new index" msgstr "Crea un nou índex" -#: tbl_indexes.php:161 +#: tbl_indexes.php:160 msgid "Modify an index" msgstr "Modifica un índex" -#: tbl_indexes.php:167 +#: tbl_indexes.php:166 msgid "Index name:" msgstr "Nom d'índex:" -#: tbl_indexes.php:173 +#: tbl_indexes.php:172 msgid "Index type:" msgstr "Tipus d'índex:" -#: tbl_indexes.php:183 +#: tbl_indexes.php:182 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" "(\"PRIMARY\" ha de ser el nom i només el nom de la clau " "principal!)" -#: tbl_indexes.php:250 +#: tbl_indexes.php:249 #, php-format msgid "Add to index  %s column(s)" msgstr "Afegeix a l'índex %s columna(es)  " -#: tbl_indexes.php:255 tbl_structure.php:588 tbl_structure.php:599 +#: tbl_indexes.php:254 tbl_structure.php:586 tbl_structure.php:597 msgid "Column count has to be larger than zero." msgstr "El comptador de columnes ha de ser més gran que zero." -#: tbl_move_copy.php:45 +#: tbl_move_copy.php:44 msgid "Can't move table to same one!" msgstr "No es pot moure la taula sobre ella mateixa!" -#: tbl_move_copy.php:47 +#: tbl_move_copy.php:46 msgid "Can't copy table to same one!" msgstr "No es pot copiar la taula sobre ella mateixa" -#: tbl_move_copy.php:55 +#: tbl_move_copy.php:54 #, php-format msgid "Table %s has been moved to %s." msgstr "Taula %s moguda a %s." -#: tbl_move_copy.php:57 +#: tbl_move_copy.php:56 #, php-format msgid "Table %s has been copied to %s." msgstr "La taula %s s'ha copiat a %s." -#: tbl_move_copy.php:81 +#: tbl_move_copy.php:80 msgid "The table name is empty!" msgstr "El nom de la taula és buit!" -#: tbl_operations.php:248 +#: tbl_operations.php:246 msgid "Alter table order by" msgstr "Altera la taula i ordena per" -#: tbl_operations.php:257 +#: tbl_operations.php:255 msgid "(singly)" msgstr "(només)" -#: tbl_operations.php:277 +#: tbl_operations.php:275 msgid "Move table to (database.table):" msgstr "Mou la taula a (base-de-dades.taula):" -#: tbl_operations.php:335 +#: tbl_operations.php:333 msgid "Table options" msgstr "Opcions de Taula" -#: tbl_operations.php:339 +#: tbl_operations.php:337 msgid "Rename table to" msgstr "Reanomena les taules a" -#: tbl_operations.php:510 +#: tbl_operations.php:508 msgid "Copy table to (database.table):" msgstr "Còpia taula a (base-de-dades.taula):" -#: tbl_operations.php:557 +#: tbl_operations.php:555 msgid "Switch to copied table" msgstr "Canvia a una taula copiada" -#: tbl_operations.php:569 +#: tbl_operations.php:567 msgid "Table maintenance" msgstr "Manteniment de la taula" -#: tbl_operations.php:590 +#: tbl_operations.php:588 msgid "Defragment table" msgstr "Desfragmenta la taula" -#: tbl_operations.php:629 +#: tbl_operations.php:627 #, php-format msgid "Table %s has been flushed" msgstr "S'ha buidat la memòria cau de la taula %s" -#: tbl_operations.php:635 +#: tbl_operations.php:633 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Buida la memòria cau de la taula (\"FLUSH\")" -#: tbl_operations.php:650 +#: tbl_operations.php:648 msgid "Partition maintenance" msgstr "Manteniment de particions" -#: tbl_operations.php:658 +#: tbl_operations.php:656 #, php-format msgid "Partition %s" msgstr "Partició %s" -#: tbl_operations.php:661 +#: tbl_operations.php:659 msgid "Analyze" msgstr "Analitza" -#: tbl_operations.php:662 +#: tbl_operations.php:660 msgid "Check" msgstr "Comprova" -#: tbl_operations.php:663 +#: tbl_operations.php:661 msgid "Optimize" msgstr "Optimitza" -#: tbl_operations.php:664 +#: tbl_operations.php:662 msgid "Rebuild" msgstr "Reconstrueix" -#: tbl_operations.php:665 +#: tbl_operations.php:663 msgid "Repair" msgstr "Repara" -#: tbl_operations.php:677 +#: tbl_operations.php:675 msgid "Remove partitioning" msgstr "Elimina particionament" -#: tbl_operations.php:703 +#: tbl_operations.php:701 msgid "Check referential integrity:" msgstr "Comprova la integritat referencial:" -#: tbl_printview.php:73 +#: tbl_printview.php:72 msgid "Show tables" msgstr "Mostra taules" -#: tbl_printview.php:308 tbl_structure.php:655 +#: tbl_printview.php:307 tbl_structure.php:653 msgid "Space usage" msgstr "Utilització d'espai" -#: tbl_printview.php:312 tbl_structure.php:659 +#: tbl_printview.php:311 tbl_structure.php:657 msgid "Usage" msgstr "Ús" -#: tbl_printview.php:339 tbl_structure.php:686 +#: tbl_printview.php:338 tbl_structure.php:684 msgid "Effective" msgstr "Efectiu" -#: tbl_printview.php:364 tbl_structure.php:724 +#: tbl_printview.php:363 tbl_structure.php:722 msgid "Row Statistics" msgstr "Estadística de files" -#: tbl_printview.php:367 tbl_structure.php:727 +#: tbl_printview.php:366 tbl_structure.php:725 msgid "Statements" msgstr "Sentències" -#: tbl_printview.php:378 tbl_structure.php:739 +#: tbl_printview.php:377 tbl_structure.php:737 msgid "static" msgstr "estàtic" -#: tbl_printview.php:380 tbl_structure.php:741 +#: tbl_printview.php:379 tbl_structure.php:739 msgid "dynamic" msgstr "dinàmic" -#: tbl_printview.php:402 tbl_structure.php:784 +#: tbl_printview.php:401 tbl_structure.php:782 msgid "Row length" msgstr "Tamany de fila" -#: tbl_printview.php:412 tbl_structure.php:792 +#: tbl_printview.php:411 tbl_structure.php:790 msgid " Row size " msgstr "Mida de fila " -#: tbl_relation.php:278 +#: tbl_relation.php:276 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" "Error creant clau externa (foreign key) a %1$s (comprovar tipus de dades)" -#: tbl_relation.php:404 +#: tbl_relation.php:402 #, fuzzy #| msgid "Internal relations" msgid "Internal relation" msgstr "Relacions internes" -#: tbl_relation.php:406 +#: tbl_relation.php:404 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -8355,7 +8426,7 @@ msgstr "" "No es necessita una relació interna quan existeix una relació corresponent " "de FOREIGN KEY." -#: tbl_relation.php:412 +#: tbl_relation.php:410 #, fuzzy #| msgid "Foreign key limit" msgid "Foreign key constraint" @@ -8365,121 +8436,121 @@ msgstr "Límit de claus externes" msgid "No rows selected" msgstr "No s'han triat arxius" -#: tbl_select.php:130 +#: tbl_select.php:129 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Fer una \"petició segons exemple\" (comodí: \"%\")" -#: tbl_select.php:136 +#: tbl_select.php:135 msgid "Operator" msgstr "Operador" -#: tbl_select.php:267 +#: tbl_select.php:266 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "Tria els camps (un com a mínim):" -#: tbl_select.php:285 +#: tbl_select.php:284 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Afegeix condicions de recerca (cos de la clàusula \"WHERE\"):" -#: tbl_select.php:292 +#: tbl_select.php:291 msgid "Number of rows per page" msgstr "registres per pàgina" -#: tbl_select.php:298 +#: tbl_select.php:297 msgid "Display order:" msgstr "Ordre del llistat:" -#: tbl_structure.php:160 +#: tbl_structure.php:159 msgid "Browse distinct values" msgstr "Navega per valors diferents" -#: tbl_structure.php:360 +#: tbl_structure.php:358 #, fuzzy #| msgid "None" msgctxt "None for default" msgid "None" msgstr "Res" -#: tbl_structure.php:373 +#: tbl_structure.php:371 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Column %s has been dropped" msgstr "S'ha esborrat la taula %s" -#: tbl_structure.php:384 +#: tbl_structure.php:382 #, php-format msgid "A primary key has been added on %s" msgstr "S'ha afegit una clau principal a %s" -#: tbl_structure.php:399 tbl_structure.php:413 tbl_structure.php:427 +#: tbl_structure.php:397 tbl_structure.php:411 tbl_structure.php:425 #, php-format msgid "An index has been added on %s" msgstr "S'ha afegit un índex a %s" -#: tbl_structure.php:505 tbl_structure.php:507 +#: tbl_structure.php:503 tbl_structure.php:505 msgid "Relation view" msgstr "Vista de Relacions" -#: tbl_structure.php:514 tbl_structure.php:516 +#: tbl_structure.php:512 tbl_structure.php:514 msgid "Propose table structure" msgstr "Proposa una estructura de taula" -#: tbl_structure.php:539 +#: tbl_structure.php:537 #, fuzzy #| msgid "Add column(s)" msgid "Add column" msgstr "Afegeix columna(es)" -#: tbl_structure.php:553 +#: tbl_structure.php:551 msgid "At End of Table" msgstr "Al final de la taula" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At Beginning of Table" msgstr "Al principi de la taula" -#: tbl_structure.php:555 +#: tbl_structure.php:553 #, php-format msgid "After %s" msgstr "Darrere de %s" -#: tbl_structure.php:593 +#: tbl_structure.php:591 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "Crea un índex de columnes %s: " -#: tbl_structure.php:755 +#: tbl_structure.php:753 msgid "partitioned" msgstr "particionat" -#: tbl_tracking.php:113 +#: tbl_tracking.php:109 #, php-format msgid "Tracking report for table `%s`" msgstr "Informe de seguiment per la taula `%s`" -#: tbl_tracking.php:186 +#: tbl_tracking.php:182 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "S'ha creat la Versió %s, activat el seguiment per %s.%s." -#: tbl_tracking.php:194 +#: tbl_tracking.php:190 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "Seguiment per %s.%s , desactivada la versió %s." -#: tbl_tracking.php:202 +#: tbl_tracking.php:198 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "Activat el seguiment per %s.%s , versió %s." -#: tbl_tracking.php:212 +#: tbl_tracking.php:208 msgid "SQL statements executed." msgstr "Declaracions SQL executades." -#: tbl_tracking.php:219 +#: tbl_tracking.php:215 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -8487,109 +8558,109 @@ msgstr "" "Pots executar el bolcat mitjançant la creació i utilització d'una base de " "dades temporal. Si us plau, assegura't que tens els permisos per fer-ho." -#: tbl_tracking.php:220 +#: tbl_tracking.php:216 msgid "Comment out these two lines if you do not need them." msgstr "Comenta aquestes dues línies si no les necessites." -#: tbl_tracking.php:229 +#: tbl_tracking.php:225 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "Declaracions SQL exportades. Copia el bolcat o executa'l." -#: tbl_tracking.php:250 tbl_tracking.php:378 +#: tbl_tracking.php:245 tbl_tracking.php:373 msgid "Close" msgstr "Tanca" -#: tbl_tracking.php:261 +#: tbl_tracking.php:256 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Instantània de la versió %s (codi SQL)" -#: tbl_tracking.php:380 +#: tbl_tracking.php:375 msgid "Tracking statements" msgstr "Seguiment de declaracions" -#: tbl_tracking.php:396 tbl_tracking.php:503 +#: tbl_tracking.php:391 tbl_tracking.php:498 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "Mostra %s amb dates des de %s fins a %s per l'usuari %s %s" -#: tbl_tracking.php:409 tbl_tracking.php:460 +#: tbl_tracking.php:404 tbl_tracking.php:455 msgid "Date" msgstr "Data" -#: tbl_tracking.php:410 tbl_tracking.php:461 +#: tbl_tracking.php:405 tbl_tracking.php:456 msgid "Username" msgstr "Nom d'usuari" -#: tbl_tracking.php:411 +#: tbl_tracking.php:406 msgid "Data definition statement" msgstr "Declaració de definició de dades" -#: tbl_tracking.php:462 +#: tbl_tracking.php:457 msgid "Data manipulation statement" msgstr "Declaració de manipulació de dades" -#: tbl_tracking.php:506 +#: tbl_tracking.php:501 msgid "SQL dump (file download)" msgstr "Bolcat SQL (descàrrega d'arxiu)" -#: tbl_tracking.php:507 +#: tbl_tracking.php:502 msgid "SQL dump" msgstr "Bolcat SQL" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "This option will replace your table and contained data." msgstr "Aquesta opció substituirà la taula i les dades contingudes." -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "SQL execution" msgstr "Execució SQL" -#: tbl_tracking.php:520 +#: tbl_tracking.php:515 #, php-format msgid "Export as %s" msgstr "Exporta com %s" -#: tbl_tracking.php:560 +#: tbl_tracking.php:555 msgid "Show versions" msgstr "Mostra versions" -#: tbl_tracking.php:592 +#: tbl_tracking.php:587 msgid "Version" msgstr "Versió" -#: tbl_tracking.php:639 +#: tbl_tracking.php:634 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "Desactiva el seguiment per %s.%s" -#: tbl_tracking.php:641 +#: tbl_tracking.php:636 msgid "Deactivate now" msgstr "Desactiva ara" -#: tbl_tracking.php:652 +#: tbl_tracking.php:647 #, php-format msgid "Activate tracking for %s.%s" msgstr "Activa el seguiment per %s.%s" -#: tbl_tracking.php:654 +#: tbl_tracking.php:649 msgid "Activate now" msgstr "Activa ara" -#: tbl_tracking.php:667 +#: tbl_tracking.php:662 #, php-format msgid "Create version %s of %s.%s" msgstr "Crea versió %s de %s.%s" -#: tbl_tracking.php:671 +#: tbl_tracking.php:666 msgid "Track these data definition statements:" msgstr "Segueix aquestes declaracions de definició de dades:" -#: tbl_tracking.php:679 +#: tbl_tracking.php:674 msgid "Track these data manipulation statements:" msgstr "Segueix aquestes declaracions de manipulació de dades:" -#: tbl_tracking.php:687 +#: tbl_tracking.php:682 msgid "Create version" msgstr "Crea versió" @@ -8638,11 +8709,41 @@ msgstr "S'ha actualitzat el perfil." msgid "VIEW name" msgstr "Nom de VISTA" -#: view_operations.php:92 +#: view_operations.php:91 #, fuzzy msgid "Rename view to" msgstr "Reanomena les taules a" +#~ msgid "BLOB Repository" +#~ msgstr "Repositori BLOB" + +#, fuzzy +#~| msgid "Enabled" +#~ msgctxt "BLOB repository" +#~ msgid "Enabled" +#~ msgstr "Activat" + +#~ msgid "Disable" +#~ msgstr "Desactiva" + +#~ msgid "Damaged" +#~ msgstr "Fet malbé" + +#, fuzzy +#~| msgid "Repair" +#~ msgctxt "BLOB repository" +#~ msgid "Repair" +#~ msgstr "Repara" + +#, fuzzy +#~| msgid "Disabled" +#~ msgctxt "BLOB repository" +#~ msgid "Disabled" +#~ msgstr "Desactivat" + +#~ msgid "Enable" +#~ msgstr "Activa" + #~ msgid "" #~ "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " #~ "extension. Please check your PHP configuration." diff --git a/po/cs.po b/po/cs.po index 4dc787d09..c3c000466 100644 --- a/po/cs.po +++ b/po/cs.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-21 13:53+0200\n" +"POT-Creation-Date: 2010-07-26 17:18+0200\n" "PO-Revision-Date: 2010-07-21 13:55+0200\n" "Last-Translator: Michal \n" "Language-Team: czech \n" @@ -16,19 +16,19 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Generator: Pootle 2.0.1\n" -#: browse_foreigners.php:37 browse_foreigners.php:58 -#: libraries/display_tbl.lib.php:416 server_privileges.php:1506 +#: browse_foreigners.php:36 browse_foreigners.php:57 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1510 msgid "Show all" msgstr "Zobrazit vše" -#: browse_foreigners.php:81 libraries/common.lib.php:2313 -#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:393 -#: libraries/export/pdf.php:146 pdf_schema.php:282 pdf_schema.php:1122 -#: pdf_schema.php:1138 +#: browse_foreigners.php:80 libraries/common.lib.php:2318 +#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:392 +#: libraries/export/pdf.php:146 pdf_schema.php:281 pdf_schema.php:1121 +#: pdf_schema.php:1137 msgid "Page number:" msgstr "Strana číslo:" -#: browse_foreigners.php:131 +#: browse_foreigners.php:130 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -38,137 +38,151 @@ msgstr "" "rodičovské okno, nebo prohlížeč blokuje operace mezi okny z důvodu " "bezpečnostních nastavení." -#: browse_foreigners.php:149 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2829 -#: libraries/common.lib.php:2836 libraries/db_links.inc.php:74 -#: libraries/tbl_links.inc.php:62 +#: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 +#: db_structure.php:89 db_structure.php:91 db_structure.php:102 +#: db_structure.php:104 libraries/common.lib.php:2834 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Vyhledávání" -#: browse_foreigners.php:152 db_operations.php:384 db_operations.php:428 -#: db_operations.php:498 db_operations.php:608 db_search.php:344 -#: db_structure.php:566 js/messages.php:48 libraries/Config.class.php:1043 -#: libraries/Theme_Manager.class.php:310 +#: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 +#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 +#: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 -#: libraries/common.lib.php:1340 libraries/common.lib.php:2289 +#: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 -#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:275 -#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:531 -#: libraries/display_tbl.lib.php:613 libraries/replication_gui.lib.php:75 +#: libraries/display_export.lib.php:269 libraries/display_import.lib.php:275 +#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 +#: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 #: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:781 -#: main.php:127 navigation.php:231 pdf_pages.php:291 pdf_pages.php:327 -#: pdf_pages.php:529 pmd_pdf.php:115 server_binlog.php:128 -#: server_privileges.php:664 server_privileges.php:1616 -#: server_privileges.php:1963 server_privileges.php:2010 -#: server_privileges.php:2049 server_replication.php:234 -#: server_replication.php:317 server_replication.php:340 -#: server_synchronize.php:1208 tbl_change.php:328 tbl_change.php:1172 -#: tbl_change.php:1209 tbl_indexes.php:253 tbl_operations.php:264 -#: tbl_operations.php:301 tbl_operations.php:498 tbl_operations.php:560 -#: tbl_operations.php:680 tbl_select.php:324 tbl_structure.php:561 -#: tbl_structure.php:596 tbl_tracking.php:394 tbl_tracking.php:511 -#: view_create.php:181 view_operations.php:100 +#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 +#: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 +#: server_privileges.php:663 server_privileges.php:1620 +#: server_privileges.php:1967 server_privileges.php:2014 +#: server_privileges.php:2053 server_replication.php:233 +#: server_replication.php:316 server_replication.php:339 +#: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 +#: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 +#: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 +#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "Proveď" -#: browse_foreigners.php:167 browse_foreigners.php:171 -#: libraries/Index.class.php:441 tbl_tracking.php:319 +#: browse_foreigners.php:166 browse_foreigners.php:170 +#: libraries/Index.class.php:441 tbl_tracking.php:314 msgid "Keyname" msgstr "Klíčový název" -#: browse_foreigners.php:168 browse_foreigners.php:170 -#: server_collations.php:54 server_collations.php:66 server_engines.php:58 +#: browse_foreigners.php:167 browse_foreigners.php:169 +#: server_collations.php:54 server_collations.php:66 server_engines.php:57 #: server_status.php:738 msgid "Description" msgstr "Popis" -#: browse_foreigners.php:246 browse_foreigners.php:255 -#: browse_foreigners.php:267 browse_foreigners.php:275 +#: browse_foreigners.php:245 browse_foreigners.php:254 +#: browse_foreigners.php:266 browse_foreigners.php:274 msgid "Use this value" msgstr "Použít tuto hodnotu" -#: db_create.php:45 +#: bs_disp_as_mime_type.php:29 bs_play_media.php:35 +msgid "No blob streaming server configured!" +msgstr "" + +#: bs_disp_as_mime_type.php:35 +#, fuzzy +#| msgid "Failed to write file to disk." +msgid "Failed to fetch headers" +msgstr "Chyba při zapisování souboru na disk." + +#: bs_disp_as_mime_type.php:41 +msgid "Failed to open remote URL" +msgstr "" + +#: db_create.php:44 #, php-format msgid "Database %1$s has been created." msgstr "Byla vytvořena databáze %1$s." -#: db_datadict.php:48 db_operations.php:377 +#: db_datadict.php:48 db_operations.php:313 msgid "Database comment: " msgstr "Komentář k databázi: " -#: db_datadict.php:164 libraries/tbl_properties.inc.php:723 -#: pdf_schema.php:1235 tbl_operations.php:346 tbl_printview.php:128 +#: db_datadict.php:164 libraries/tbl_properties.inc.php:722 +#: pdf_schema.php:1234 tbl_operations.php:344 tbl_printview.php:127 msgid "Table comments" msgstr "Komentář k tabulce" -#: db_datadict.php:173 db_qbe.php:173 libraries/Index.class.php:445 +#: db_datadict.php:173 db_qbe.php:170 libraries/Index.class.php:445 #: libraries/export/htmlword.php:243 libraries/export/latex.php:364 #: libraries/export/odt.php:293 libraries/export/texytext.php:233 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:274 -#: pdf_schema.php:1261 pdf_schema.php:1282 tbl_change.php:306 -#: tbl_indexes.php:188 tbl_printview.php:140 tbl_relation.php:401 -#: tbl_select.php:133 tbl_structure.php:176 tbl_tracking.php:272 -#: tbl_tracking.php:323 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 +#: pdf_schema.php:1260 pdf_schema.php:1281 tbl_change.php:301 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:132 tbl_structure.php:175 tbl_tracking.php:267 +#: tbl_tracking.php:318 msgid "Column" msgstr "Pole" -#: db_datadict.php:174 db_printview.php:105 libraries/Index.class.php:442 +#: db_datadict.php:174 db_printview.php:104 libraries/Index.class.php:442 #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 #: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:244 #: libraries/export/latex.php:364 libraries/export/odt.php:296 #: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:99 -#: pdf_schema.php:1262 pdf_schema.php:1283 server_privileges.php:2062 -#: tbl_change.php:285 tbl_change.php:312 tbl_printview.php:141 -#: tbl_printview.php:311 tbl_select.php:134 tbl_structure.php:177 -#: tbl_structure.php:658 tbl_tracking.php:273 tbl_tracking.php:320 +#: pdf_schema.php:1261 pdf_schema.php:1282 server_privileges.php:2066 +#: tbl_change.php:280 tbl_change.php:307 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:133 tbl_structure.php:176 +#: tbl_structure.php:656 tbl_tracking.php:268 tbl_tracking.php:315 msgid "Type" msgstr "Typ" #: db_datadict.php:176 libraries/Index.class.php:448 #: libraries/export/htmlword.php:245 libraries/export/latex.php:364 #: libraries/export/odt.php:299 libraries/export/texytext.php:235 -#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1264 -#: pdf_schema.php:1285 tbl_change.php:321 tbl_printview.php:143 -#: tbl_structure.php:180 tbl_tracking.php:275 tbl_tracking.php:326 +#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1263 +#: pdf_schema.php:1284 tbl_change.php:316 tbl_printview.php:142 +#: tbl_structure.php:179 tbl_tracking.php:270 tbl_tracking.php:321 msgid "Null" msgstr "Nulový" -#: db_datadict.php:177 db_structure.php:500 libraries/export/htmlword.php:246 +#: db_datadict.php:177 db_structure.php:486 libraries/export/htmlword.php:246 #: libraries/export/latex.php:364 libraries/export/odt.php:302 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:105 -#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 -#: tbl_structure.php:181 tbl_tracking.php:276 +#: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:143 +#: tbl_structure.php:180 tbl_tracking.php:271 msgid "Default" msgstr "Výchozí" #: db_datadict.php:181 libraries/export/htmlword.php:248 #: libraries/export/latex.php:366 libraries/export/odt.php:306 -#: libraries/export/texytext.php:238 pdf_schema.php:1267 pdf_schema.php:1288 -#: tbl_printview.php:148 +#: libraries/export/texytext.php:238 pdf_schema.php:1266 pdf_schema.php:1287 +#: tbl_printview.php:147 msgid "Links to" msgstr "Odkazuje na" -#: db_datadict.php:183 db_printview.php:111 libraries/export/htmlword.php:251 +#: db_datadict.php:183 db_printview.php:110 libraries/export/htmlword.php:251 #: libraries/export/latex.php:49 libraries/export/latex.php:369 #: libraries/export/odt.php:37 libraries/export/odt.php:311 #: libraries/export/sql.php:29 libraries/export/texytext.php:241 -#: libraries/tbl_properties.inc.php:129 pdf_schema.php:1278 -#: pdf_schema.php:1289 tbl_printview.php:150 +#: libraries/tbl_properties.inc.php:128 pdf_schema.php:1277 +#: pdf_schema.php:1288 tbl_printview.php:149 msgid "Comments" msgstr "Komentáře" #: db_datadict.php:266 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/export/htmlword.php:321 #: libraries/export/latex.php:434 libraries/export/odt.php:367 -#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:262 -#: pdf_schema.php:1343 server_privileges.php:1560 server_privileges.php:1571 -#: server_privileges.php:1881 server_privileges.php:1886 -#: server_privileges.php:2179 sql.php:131 sql.php:193 tbl_printview.php:227 -#: tbl_structure.php:349 tbl_tracking.php:336 tbl_tracking.php:341 +#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:261 +#: pdf_schema.php:1342 server_privileges.php:1564 server_privileges.php:1575 +#: server_privileges.php:1885 server_privileges.php:1890 +#: server_privileges.php:2183 sql.php:130 sql.php:192 tbl_printview.php:226 +#: tbl_structure.php:347 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "Ne" @@ -179,17 +193,17 @@ msgstr "Ne" #: libraries/mult_submits.inc.php:49 libraries/mult_submits.inc.php:54 #: libraries/mult_submits.inc.php:59 libraries/mult_submits.inc.php:91 #: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:105 -#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:261 -#: libraries/mult_submits.inc.php:272 pdf_schema.php:1343 -#: server_databases.php:63 server_privileges.php:1557 -#: server_privileges.php:1571 server_privileges.php:1881 -#: server_privileges.php:1884 server_privileges.php:2179 sql.php:192 -#: tbl_printview.php:227 tbl_structure.php:39 tbl_structure.php:349 -#: tbl_tracking.php:334 tbl_tracking.php:339 +#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:260 +#: libraries/mult_submits.inc.php:271 pdf_schema.php:1342 +#: server_databases.php:61 server_privileges.php:1561 +#: server_privileges.php:1575 server_privileges.php:1885 +#: server_privileges.php:1888 server_privileges.php:2183 sql.php:191 +#: tbl_printview.php:226 tbl_structure.php:38 tbl_structure.php:347 +#: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" msgstr "Ano" -#: db_datadict.php:321 db_printview.php:265 tbl_printview.php:496 +#: db_datadict.php:321 db_printview.php:264 tbl_printview.php:495 msgid "Print" msgstr "Vytisknout" @@ -197,188 +211,154 @@ msgstr "Vytisknout" msgid "View dump (schema) of database" msgstr "Export databáze" -#: db_export.php:32 db_printview.php:95 db_qbe.php:101 db_structure.php:50 -#: db_tracking.php:34 export.php:352 navigation.php:326 +#: db_export.php:32 db_printview.php:94 db_qbe.php:98 db_structure.php:49 +#: db_tracking.php:30 export.php:350 navigation.php:325 msgid "No tables found in database." msgstr "V databázi nebyla nalezena žádná tabulka." -#: db_export.php:42 db_search.php:326 server_export.php:26 +#: db_export.php:42 db_search.php:326 server_export.php:24 msgid "Select All" msgstr "Vybrat vše" -#: db_export.php:44 db_search.php:329 server_export.php:28 +#: db_export.php:44 db_search.php:329 server_export.php:26 msgid "Unselect All" msgstr "Odznačit vše" -#: db_operations.php:37 tbl_create.php:49 +#: db_operations.php:33 tbl_create.php:47 msgid "The database name is empty!" msgstr "Jméno databáze je prázdné!" -#: db_operations.php:235 +#: db_operations.php:231 #, php-format msgid "Database %s has been renamed to %s" msgstr "Databáze %s byla přejmenována na %s" -#: db_operations.php:239 +#: db_operations.php:235 #, php-format msgid "Database %s has been copied to %s" msgstr "Databáze %s byla zkopírována na %s" -#: db_operations.php:411 +#: db_operations.php:347 msgid "Rename database to" msgstr "Přejmenovat databázi na" -#: db_operations.php:416 server_processlist.php:56 +#: db_operations.php:352 server_processlist.php:56 msgid "Command" msgstr "Příkaz" -#: db_operations.php:428 tbl_change.php:1141 +#: db_operations.php:364 tbl_change.php:1039 msgid "and then" msgstr "a poté" -#: db_operations.php:454 +#: db_operations.php:390 msgid "Copy database to" msgstr "Zkopírovat databázi na" -#: db_operations.php:461 tbl_operations.php:527 tbl_tracking.php:387 +#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Pouze strukturu" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:389 +#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Strukturu a data" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:388 +#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Jen data" -#: db_operations.php:471 +#: db_operations.php:407 msgid "CREATE DATABASE before copying" msgstr "Vytvořit databázi před kopírováním (CREATE DATABASE)" -#: db_operations.php:474 libraries/export/sql.php:51 +#: db_operations.php:410 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 -#: libraries/export/sql.php:81 tbl_operations.php:535 +#: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "Přidat %s" -#: db_operations.php:478 libraries/export/sql.php:77 tbl_operations.php:298 -#: tbl_operations.php:537 +#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Přidat hodnotu AUTO_INCREMENT" -#: db_operations.php:482 tbl_operations.php:544 +#: db_operations.php:418 tbl_operations.php:542 msgid "Add constraints" msgstr "Přidat integritní omezení" -#: db_operations.php:495 +#: db_operations.php:431 msgid "Switch to copied database" msgstr "Přepnout na zkopírovanou databázi" -#: db_operations.php:536 -msgid "BLOB Repository" -msgstr "Skladiště BLOBů" - -#: db_operations.php:539 db_tracking.php:75 libraries/common.lib.php:1357 -#: libraries/server_links.inc.php:48 server_processlist.php:58 -#: tbl_tracking.php:595 test/theme.php:100 -msgid "Status" -msgstr "Stav" - -#: db_operations.php:547 -msgctxt "BLOB repository" -msgid "Enabled" -msgstr "Zapnuté" - -#: db_operations.php:551 -msgid "Disable" -msgstr "Vypnout" - -#: db_operations.php:561 -msgid "Damaged" -msgstr "Poškozené" - -#: db_operations.php:565 -msgctxt "BLOB repository" -msgid "Repair" -msgstr "Opravit" - -#: db_operations.php:573 -msgctxt "BLOB repository" -msgid "Disabled" -msgstr "Vypnuté" - -#: db_operations.php:577 -msgid "Enable" -msgstr "Zapnout" - -#: db_operations.php:601 libraries/Index.class.php:447 +#: db_operations.php:451 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 -#: server_collations.php:53 server_collations.php:65 server_databases.php:110 -#: tbl_operations.php:362 tbl_select.php:135 tbl_structure.php:178 -#: tbl_structure.php:766 tbl_tracking.php:274 tbl_tracking.php:325 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 +#: server_collations.php:53 server_collations.php:65 server_databases.php:108 +#: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:177 +#: tbl_structure.php:764 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "Porovnávání" -#: db_operations.php:614 main.php:315 pdf_schema.php:33 -#, php-format +#: db_operations.php:464 pdf_schema.php:32 +#, fuzzy, php-format +#| msgid "" +#| "The additional features for working with linked tables have been " +#| "deactivated. To find out why click %shere%s." msgid "" -"The additional features for working with linked tables have been " -"deactivated. To find out why click %shere%s." +"The phpMyAdmin configuration storage has been deactivated. To find out why " +"click %shere%s." msgstr "" "Některé z rozšířených funkcí phpMyAdmina nelze používat. %sZde%s zjistíte " "proč." -#: db_operations.php:647 +#: db_operations.php:497 msgid "Edit PDF Pages" msgstr "Upravit PDF stránky" -#: db_printview.php:103 db_tracking.php:71 db_tracking.php:156 +#: db_printview.php:102 db_tracking.php:67 db_tracking.php:152 #: libraries/db_structure.lib.php:37 libraries/export/xml.php:327 -#: libraries/header.inc.php:125 pdf_pages.php:423 server_privileges.php:1657 -#: server_privileges.php:1713 server_privileges.php:1977 -#: server_synchronize.php:422 server_synchronize.php:865 tbl_tracking.php:591 +#: libraries/header.inc.php:125 pdf_pages.php:422 server_privileges.php:1661 +#: server_privileges.php:1717 server_privileges.php:1981 +#: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "Tabulka" -#: db_printview.php:104 libraries/db_structure.lib.php:47 +#: db_printview.php:103 libraries/db_structure.lib.php:47 #: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 -#: navigation.php:629 navigation.php:651 server_databases.php:121 -#: tbl_printview.php:392 tbl_structure.php:364 tbl_structure.php:776 +#: navigation.php:628 navigation.php:650 server_databases.php:119 +#: tbl_printview.php:391 tbl_structure.php:362 tbl_structure.php:774 msgid "Rows" msgstr "Řádků" -#: db_printview.php:108 libraries/db_structure.lib.php:58 tbl_indexes.php:189 +#: db_printview.php:107 libraries/db_structure.lib.php:58 tbl_indexes.php:188 msgid "Size" msgstr "Velikost" -#: db_printview.php:161 db_structure.php:456 libraries/export/sql.php:556 +#: db_printview.php:160 db_structure.php:442 libraries/export/sql.php:556 #: libraries/export/sql.php:896 msgid "in use" msgstr "právě se používá" -#: db_printview.php:186 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:511 pdf_schema.php:1240 tbl_printview.php:432 -#: tbl_structure.php:808 +#: db_printview.php:185 libraries/db_info.inc.php:86 +#: libraries/export/sql.php:511 pdf_schema.php:1239 tbl_printview.php:431 +#: tbl_structure.php:806 msgid "Creation" msgstr "Vytvoření" -#: db_printview.php:195 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:516 pdf_schema.php:1245 tbl_printview.php:442 -#: tbl_structure.php:816 +#: db_printview.php:194 libraries/db_info.inc.php:91 +#: libraries/export/sql.php:516 pdf_schema.php:1244 tbl_printview.php:441 +#: tbl_structure.php:814 msgid "Last update" msgstr "Poslední změna" -#: db_printview.php:204 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:521 pdf_schema.php:1250 tbl_printview.php:452 -#: tbl_structure.php:824 +#: db_printview.php:203 libraries/db_info.inc.php:96 +#: libraries/export/sql.php:521 pdf_schema.php:1249 tbl_printview.php:451 +#: tbl_structure.php:822 msgid "Last check" msgstr "Poslední kontrola" -#: db_printview.php:221 db_structure.php:479 +#: db_printview.php:220 db_structure.php:465 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -386,90 +366,90 @@ msgstr[0] "%s tabulka" msgstr[1] "%s tabulky" msgstr[2] "%s tabulek" -#: db_qbe.php:28 import.php:453 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1980 libraries/sql_query_form.lib.php:138 -#: tbl_operations.php:212 tbl_relation.php:291 tbl_row_action.php:130 -#: view_operations.php:61 +#: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 +#: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "Váš SQL-dotaz byl úspěšně vykonán" -#: db_qbe.php:41 +#: db_qbe.php:38 msgid "You have to choose at least one column to display" msgstr "Musíte zvolit alespoň jedno pole, které chcete zobrazit" -#: db_qbe.php:199 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:865 +#: db_qbe.php:196 libraries/db_structure.lib.php:95 +#: libraries/display_tbl.lib.php:864 msgid "Sort" msgstr "Řadit" -#: db_qbe.php:208 db_qbe.php:242 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:522 libraries/display_tbl.lib.php:827 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:259 -#: tbl_select.php:311 +#: db_qbe.php:205 db_qbe.php:239 libraries/db_structure.lib.php:102 +#: libraries/display_tbl.lib.php:521 libraries/display_tbl.lib.php:826 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:257 +#: tbl_select.php:310 msgid "Ascending" msgstr "Vzestupně" -#: db_qbe.php:209 db_qbe.php:250 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:527 libraries/display_tbl.lib.php:824 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:260 -#: tbl_select.php:312 +#: db_qbe.php:206 db_qbe.php:247 libraries/db_structure.lib.php:110 +#: libraries/display_tbl.lib.php:526 libraries/display_tbl.lib.php:823 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:258 +#: tbl_select.php:311 msgid "Descending" msgstr "Sestupně" -#: db_qbe.php:263 db_tracking.php:77 libraries/display_tbl.lib.php:307 -#: tbl_change.php:275 tbl_tracking.php:596 +#: db_qbe.php:260 db_tracking.php:73 libraries/display_tbl.lib.php:306 +#: tbl_change.php:270 tbl_tracking.php:591 msgid "Show" msgstr "Zobrazit" -#: db_qbe.php:299 +#: db_qbe.php:296 msgid "Criteria" msgstr "Podmínka" -#: db_qbe.php:352 db_qbe.php:434 db_qbe.php:526 db_qbe.php:557 +#: db_qbe.php:349 db_qbe.php:431 db_qbe.php:523 db_qbe.php:554 msgid "Ins" msgstr "přidat" -#: db_qbe.php:356 db_qbe.php:438 db_qbe.php:523 db_qbe.php:554 +#: db_qbe.php:353 db_qbe.php:435 db_qbe.php:520 db_qbe.php:551 msgid "And" msgstr "a" -#: db_qbe.php:365 db_qbe.php:446 db_qbe.php:528 db_qbe.php:559 +#: db_qbe.php:362 db_qbe.php:443 db_qbe.php:525 db_qbe.php:556 msgid "Del" msgstr "smazat" -#: db_qbe.php:369 db_qbe.php:450 db_qbe.php:521 db_qbe.php:552 -#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:778 -#: server_privileges.php:297 tbl_change.php:1027 tbl_indexes.php:249 -#: tbl_select.php:285 +#: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 +#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:777 +#: server_privileges.php:296 tbl_change.php:925 tbl_indexes.php:248 +#: tbl_select.php:284 msgid "Or" msgstr "nebo" -#: db_qbe.php:506 +#: db_qbe.php:503 msgid "Modify" msgstr "Úpravy" -#: db_qbe.php:583 +#: db_qbe.php:580 msgid "Add/Delete criteria rows" msgstr "Přidat nebo odebrat řádek" -#: db_qbe.php:595 +#: db_qbe.php:592 msgid "Add/Delete columns" msgstr "Přidat nebo odebrat pole" -#: db_qbe.php:608 db_qbe.php:633 +#: db_qbe.php:605 db_qbe.php:630 msgid "Update Query" msgstr "Aktualizovat dotaz" -#: db_qbe.php:616 +#: db_qbe.php:613 msgid "Use Tables" msgstr "Použít tabulky" -#: db_qbe.php:639 +#: db_qbe.php:636 #, php-format msgid "SQL query on database %s:" msgstr "SQL dotaz na databázi %s:" -#: db_qbe.php:933 libraries/common.lib.php:1222 +#: db_qbe.php:930 libraries/common.lib.php:1215 msgid "Submit Query" msgstr "Provést dotaz" @@ -509,17 +489,17 @@ msgstr[0] "%s odpovídající záznam v tabulce %s" msgstr[1] "%s odpovídající záznamy v tabulce %s" msgstr[2] "%s odpovídajících záznamů v tabulce %s" -#: db_search.php:249 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2831 -#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:49 -#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:466 +#: db_search.php:249 db_structure.php:75 db_structure.php:76 +#: db_structure.php:88 db_structure.php:90 db_structure.php:101 +#: db_structure.php:103 libraries/common.lib.php:2836 +#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 +#: tbl_structure.php:35 tbl_structure.php:47 tbl_structure.php:464 msgid "Browse" msgstr "Projít" -#: db_search.php:254 libraries/display_tbl.lib.php:1164 -#: libraries/display_tbl.lib.php:2055 libraries/sql_query_form.lib.php:453 -#: pdf_pages.php:285 pdf_pages.php:424 pdf_pages.php:460 pdf_pages.php:488 +#: db_search.php:254 libraries/display_tbl.lib.php:1163 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 msgid "Delete" @@ -557,66 +537,66 @@ msgstr "V tabulkách:" msgid "Inside column:" msgstr "Uvnitř pole:" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2830 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:75 +#: db_structure.php:79 db_structure.php:80 db_structure.php:92 +#: db_structure.php:93 db_structure.php:105 db_structure.php:106 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 +#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Vložit" -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2827 libraries/common.lib.php:2834 -#: libraries/db_links.inc.php:62 libraries/export/htmlword.php:22 +#: db_structure.php:81 db_structure.php:94 db_structure.php:107 +#: libraries/common.lib.php:2832 libraries/common.lib.php:2839 +#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 -#: libraries/tbl_links.inc.php:55 pmd_general.php:133 -#: server_privileges.php:593 server_replication.php:314 tbl_tracking.php:268 +#: libraries/tbl_links.inc.php:54 pmd_general.php:133 +#: server_privileges.php:592 server_replication.php:313 tbl_tracking.php:263 msgid "Structure" msgstr "Struktura" -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:544 db_structure.php:545 db_tracking.php:90 -#: libraries/Index.class.php:482 libraries/common.lib.php:1659 -#: libraries/db_links.inc.php:99 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:126 -#: server_databases.php:351 tbl_structure.php:26 tbl_structure.php:150 -#: tbl_structure.php:151 tbl_structure.php:470 +#: db_structure.php:82 db_structure.php:83 db_structure.php:95 +#: db_structure.php:96 db_structure.php:108 db_structure.php:109 +#: db_structure.php:530 db_structure.php:531 db_tracking.php:86 +#: libraries/Index.class.php:482 libraries/common.lib.php:1663 +#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 +#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 +#: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" msgstr "Odstranit" -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:542 db_structure.php:543 libraries/common.lib.php:1658 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:104 +#: db_structure.php:84 db_structure.php:85 db_structure.php:97 +#: db_structure.php:98 db_structure.php:110 db_structure.php:111 +#: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 +#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 msgid "Empty" msgstr "Vyprázdnit" -#: db_structure.php:315 libraries/tbl_links.inc.php:99 +#: db_structure.php:301 libraries/tbl_links.inc.php:98 #, php-format msgid "Table %s has been emptied" msgstr "Tabulka %s byla vyprázdněna" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "View %s has been dropped" msgstr "Pohled %s byl odstraněn" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "Table %s has been dropped" msgstr "Tabulka %s byla odstraněna" -#: db_structure.php:332 +#: db_structure.php:318 msgid "Tracking is active." msgstr "Sledování je zapnuté." -#: db_structure.php:334 +#: db_structure.php:320 msgid "Tracking is not active." msgstr "Sledování není zapnuté." -#: db_structure.php:419 libraries/display_tbl.lib.php:1943 +#: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -624,160 +604,166 @@ msgid "" msgstr "" "Tento pohled má alespoň tolik řádek. Podrobnosti naleznete v %sdokumentaci%s." -#: db_structure.php:433 db_structure.php:447 libraries/header.inc.php:125 -#: libraries/tbl_info.inc.php:65 tbl_structure.php:184 test/theme.php:73 +#: db_structure.php:419 db_structure.php:433 libraries/header.inc.php:125 +#: libraries/tbl_info.inc.php:60 tbl_structure.php:183 test/theme.php:73 msgid "View" msgstr "Pohled" -#: db_structure.php:484 libraries/db_structure.lib.php:40 -#: libraries/server_links.inc.php:69 server_replication.php:32 -#: server_replication.php:163 server_status.php:368 +#: db_structure.php:470 libraries/db_structure.lib.php:40 +#: libraries/server_links.inc.php:69 server_replication.php:31 +#: server_replication.php:162 server_status.php:368 msgid "Replication" msgstr "Replikace" -#: db_structure.php:488 +#: db_structure.php:474 msgid "Sum" msgstr "Celkem" -#: db_structure.php:495 libraries/StorageEngine.class.php:349 +#: db_structure.php:481 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s je výchozí úložiště na tomto MySQL serveru." -#: db_structure.php:523 db_structure.php:540 db_structure.php:541 -#: libraries/display_tbl.lib.php:2080 libraries/display_tbl.lib.php:2085 -#: libraries/mult_submits.inc.php:15 server_databases.php:345 -#: server_databases.php:350 server_privileges.php:1588 tbl_structure.php:454 -#: tbl_structure.php:463 +#: db_structure.php:509 db_structure.php:526 db_structure.php:527 +#: libraries/display_tbl.lib.php:2039 libraries/display_tbl.lib.php:2044 +#: libraries/mult_submits.inc.php:15 server_databases.php:343 +#: server_databases.php:348 server_privileges.php:1592 tbl_structure.php:452 +#: tbl_structure.php:461 msgid "With selected:" msgstr "Zaškrtnuté:" -#: db_structure.php:526 libraries/display_tbl.lib.php:2075 -#: server_databases.php:347 server_privileges.php:569 -#: server_privileges.php:1591 tbl_structure.php:457 +#: db_structure.php:512 libraries/display_tbl.lib.php:2034 +#: server_databases.php:345 server_privileges.php:568 +#: server_privileges.php:1595 tbl_structure.php:455 msgid "Check All" msgstr "Zaškrtnout vše" -#: db_structure.php:530 libraries/display_tbl.lib.php:2076 -#: libraries/replication_gui.lib.php:35 server_databases.php:349 -#: server_privileges.php:572 server_privileges.php:1595 tbl_structure.php:461 +#: db_structure.php:516 libraries/display_tbl.lib.php:2035 +#: libraries/replication_gui.lib.php:35 server_databases.php:347 +#: server_privileges.php:571 server_privileges.php:1599 tbl_structure.php:459 msgid "Uncheck All" msgstr "Odškrtnout vše" -#: db_structure.php:535 +#: db_structure.php:521 msgid "Check tables having overhead" msgstr "Zaškrtnout neoptimální" -#: db_structure.php:546 db_structure.php:547 db_structure.php:598 -#: libraries/display_tbl.lib.php:2179 libraries/mult_submits.inc.php:27 -#: tbl_structure.php:491 tbl_structure.php:493 +#: db_structure.php:532 db_structure.php:533 db_structure.php:584 +#: libraries/display_tbl.lib.php:2138 libraries/mult_submits.inc.php:27 +#: tbl_structure.php:489 tbl_structure.php:491 msgid "Print view" msgstr "Náhled pro tisk" -#: db_structure.php:548 db_structure.php:549 libraries/mult_submits.inc.php:41 -#: tbl_operations.php:580 +#: db_structure.php:534 db_structure.php:535 libraries/mult_submits.inc.php:41 +#: tbl_operations.php:578 msgid "Check table" msgstr "Zkontrolovat tabulku" -#: db_structure.php:550 db_structure.php:551 libraries/mult_submits.inc.php:46 -#: tbl_operations.php:620 tbl_structure.php:708 tbl_structure.php:710 +#: db_structure.php:536 db_structure.php:537 libraries/mult_submits.inc.php:46 +#: tbl_operations.php:618 tbl_structure.php:706 tbl_structure.php:708 msgid "Optimize table" msgstr "Optimalizovat tabulku" -#: db_structure.php:552 db_structure.php:553 libraries/mult_submits.inc.php:51 -#: tbl_operations.php:610 +#: db_structure.php:538 db_structure.php:539 libraries/mult_submits.inc.php:51 +#: tbl_operations.php:608 msgid "Repair table" msgstr "Opravit tabulku" -#: db_structure.php:554 db_structure.php:555 libraries/mult_submits.inc.php:56 -#: tbl_operations.php:600 +#: db_structure.php:540 db_structure.php:541 libraries/mult_submits.inc.php:56 +#: tbl_operations.php:598 msgid "Analyze table" msgstr "Analyzovat tabulku" -#: db_structure.php:556 db_structure.php:557 libraries/db_links.inc.php:70 -#: libraries/display_export.lib.php:82 libraries/display_tbl.lib.php:2093 -#: libraries/display_tbl.lib.php:2224 libraries/mult_submits.inc.php:61 -#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:81 -#: pmd_pdf.php:83 pmd_pdf.php:108 server_privileges.php:1372 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 +#: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 +#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 +#: pmd_pdf.php:81 pmd_pdf.php:106 server_privileges.php:1376 #: setup/frames/menu.inc.php:22 tbl_row_action.php:58 msgid "Export" msgstr "Export" -#: db_structure.php:605 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:591 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "Datový slovník" -#: db_tracking.php:65 +#: db_tracking.php:61 msgid "Tracked tables" msgstr "Sledované tabulky" -#: db_tracking.php:70 libraries/export/htmlword.php:85 +#: db_tracking.php:66 libraries/export/htmlword.php:85 #: libraries/export/latex.php:152 libraries/export/odt.php:112 #: libraries/export/sql.php:339 libraries/export/texytext.php:84 #: libraries/export/xml.php:254 libraries/header.inc.php:105 -#: libraries/header_printview.inc.php:57 server_databases.php:168 -#: server_privileges.php:1652 server_privileges.php:1713 -#: server_privileges.php:1971 server_processlist.php:55 -#: server_synchronize.php:1178 server_synchronize.php:1182 -#: tbl_tracking.php:590 test/theme.php:64 +#: libraries/header_printview.inc.php:57 server_databases.php:166 +#: server_privileges.php:1656 server_privileges.php:1717 +#: server_privileges.php:1975 server_processlist.php:55 +#: server_synchronize.php:1177 server_synchronize.php:1181 +#: tbl_tracking.php:585 test/theme.php:64 msgid "Database" msgstr "Databáze" -#: db_tracking.php:72 +#: db_tracking.php:68 msgid "Last version" msgstr "Poslední verze" -#: db_tracking.php:73 tbl_tracking.php:593 +#: db_tracking.php:69 tbl_tracking.php:588 msgid "Created" msgstr "Vytvořeno" -#: db_tracking.php:74 tbl_tracking.php:594 +#: db_tracking.php:70 tbl_tracking.php:589 msgid "Updated" msgstr "Aktualizováno" -#: db_tracking.php:76 libraries/Index.class.php:439 -#: libraries/db_structure.lib.php:44 server_databases.php:202 -#: server_privileges.php:1534 server_privileges.php:1717 -#: server_privileges.php:2065 tbl_structure.php:186 +#: db_tracking.php:71 libraries/common.lib.php:1361 +#: libraries/server_links.inc.php:48 server_processlist.php:58 +#: tbl_tracking.php:590 test/theme.php:100 +msgid "Status" +msgstr "Stav" + +#: db_tracking.php:72 libraries/Index.class.php:439 +#: libraries/db_structure.lib.php:44 server_databases.php:200 +#: server_privileges.php:1538 server_privileges.php:1721 +#: server_privileges.php:2069 tbl_structure.php:185 msgid "Action" msgstr "Akce" -#: db_tracking.php:87 db_tracking.php:119 +#: db_tracking.php:83 db_tracking.php:115 msgid "Delete tracking data for this table" msgstr "Odstranit všechny informace o sledování této tabulky" -#: db_tracking.php:105 tbl_tracking.php:547 tbl_tracking.php:605 -#: tbl_tracking.php:612 +#: db_tracking.php:101 tbl_tracking.php:542 tbl_tracking.php:600 +#: tbl_tracking.php:607 msgid "active" msgstr "zapnuté" -#: db_tracking.php:107 tbl_tracking.php:549 tbl_tracking.php:607 -#: tbl_tracking.php:609 +#: db_tracking.php:103 tbl_tracking.php:544 tbl_tracking.php:602 +#: tbl_tracking.php:604 msgid "not active" msgstr "není zapnuté" -#: db_tracking.php:120 +#: db_tracking.php:116 msgid "Versions" msgstr "Verze" -#: db_tracking.php:121 tbl_tracking.php:378 tbl_tracking.php:623 +#: db_tracking.php:117 tbl_tracking.php:373 tbl_tracking.php:618 msgid "Tracking report" msgstr "Informace o sledování" -#: db_tracking.php:122 tbl_tracking.php:250 tbl_tracking.php:623 +#: db_tracking.php:118 tbl_tracking.php:245 tbl_tracking.php:618 msgid "Structure snapshot" msgstr "Snímek struktury" -#: db_tracking.php:151 +#: db_tracking.php:147 msgid "Untracked tables" msgstr "Nesledované tabulky" -#: db_tracking.php:171 db_tracking.php:173 tbl_structure.php:527 -#: tbl_structure.php:529 +#: db_tracking.php:167 db_tracking.php:169 tbl_structure.php:525 +#: tbl_structure.php:527 msgid "Track table" msgstr "Sledovat tabulku" -#: db_tracking.php:199 +#: db_tracking.php:195 msgid "Database Log" msgstr "Historie databáze" @@ -785,12 +771,12 @@ msgstr "Historie databáze" msgid "Selected export type has to be saved in file!" msgstr "Zvolený export musí být uložen do souboru!" -#: export.php:153 export.php:178 export.php:620 +#: export.php:152 export.php:177 export.php:615 #, php-format msgid "Insufficient space to save the file %s." msgstr "Nedostatek místa pro uložení souboru %s." -#: export.php:287 +#: export.php:286 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -798,17 +784,17 @@ msgstr "" "Soubor %s již na serveru existuje, změňte jméno souboru, nebo zvolte " "přepsání souboru." -#: export.php:291 export.php:295 +#: export.php:290 export.php:294 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Web server nemá oprávnění uložit výpis do souboru %s." -#: export.php:622 +#: export.php:617 #, php-format msgid "Dump has been saved to file %s." msgstr "Výpis byl uložen do souboru %s." -#: import.php:59 +#: import.php:58 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -817,14 +803,14 @@ msgstr "" "Pravděpodobně jste se pokusili nahrát příliš velký soubor. Přečtěte si " "prosím %sdokumentaci%s, jak toto omezení obejít." -#: import.php:278 import.php:331 libraries/File.class.php:840 -#: libraries/File.class.php:950 +#: import.php:277 import.php:330 libraries/File.class.php:566 +#: libraries/File.class.php:676 msgid "File could not be read" msgstr "Soubor nelze přečíst" -#: import.php:286 import.php:295 import.php:314 import.php:323 -#: libraries/File.class.php:1020 libraries/File.class.php:1028 -#: libraries/File.class.php:1044 libraries/File.class.php:1052 +#: import.php:285 import.php:294 import.php:313 import.php:322 +#: libraries/File.class.php:746 libraries/File.class.php:754 +#: libraries/File.class.php:770 libraries/File.class.php:778 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -833,7 +819,7 @@ msgstr "" "Pokusili jste se importovat soubor s nepodporovanou kompresí (%s). Buďto " "podpora není implementována nebo je vypnuta ve vaší konfiguraci." -#: import.php:336 +#: import.php:335 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -843,30 +829,30 @@ msgstr "" "nebo jeho velikost překročila velikost povolenou v nastavení PHP. Viz [a@./" "Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." -#: import.php:371 libraries/display_import.lib.php:23 +#: import.php:370 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "" "Nepodařilo se nahrát pluginy pro import, zkontrolujte prosím vaší instalaci!" -#: import.php:396 +#: import.php:395 msgid "The bookmark has been deleted." msgstr "Položka byla smazána z oblíbených." -#: import.php:400 +#: import.php:399 msgid "Showing bookmark" msgstr "Zobrazuji oblíbený dotaz" -#: import.php:402 sql.php:625 +#: import.php:401 sql.php:618 #, php-format msgid "Bookmark %s created" msgstr "Vytvořen oblíbený dotaz %s" -#: import.php:408 import.php:414 +#: import.php:407 import.php:413 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Import byl úspěšně dokončen, bylo provedeno %d dotazů." -#: import.php:423 +#: import.php:422 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -874,7 +860,7 @@ msgstr "" "Limit pro běh importu vypršel, prosím odešlete formulář znovu se stejným " "souborem a import bude pokračovat." -#: import.php:425 +#: import.php:424 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -883,19 +869,19 @@ msgstr "" "znamená, že phpMyAdmin nebude schopen načíst tento soubor, pokud nezvýšíte " "časové limity v PHP." -#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:240 +#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:239 #: user_password.php:110 msgid "Back" msgstr "Zpět" -#: index.php:188 +#: index.php:183 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin se lépe používá v prohlížeči podporujícím rámce." -#: js/messages.php:25 server_synchronize.php:344 server_synchronize.php:356 -#: server_synchronize.php:372 server_synchronize.php:379 -#: server_synchronize.php:738 server_synchronize.php:766 -#: server_synchronize.php:794 server_synchronize.php:806 +#: js/messages.php:25 server_synchronize.php:343 server_synchronize.php:355 +#: server_synchronize.php:371 server_synchronize.php:378 +#: server_synchronize.php:737 server_synchronize.php:765 +#: server_synchronize.php:793 server_synchronize.php:805 msgid "Click to select" msgstr "Klikněte pro vybrání" @@ -903,15 +889,15 @@ msgstr "Klikněte pro vybrání" msgid "Click to unselect" msgstr "Klikněte pro zrušení výběru" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:88 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:87 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Příkaz „DROP DATABASE“ je vypnutý." -#: js/messages.php:30 libraries/mult_submits.inc.php:257 sql.php:187 +#: js/messages.php:30 libraries/mult_submits.inc.php:256 sql.php:186 msgid "Do you really want to " msgstr "Opravdu si přejete vykonat příkaz " -#: js/messages.php:31 libraries/mult_submits.inc.php:257 sql.php:171 +#: js/messages.php:31 libraries/mult_submits.inc.php:256 sql.php:170 msgid "You are about to DESTROY a complete database!" msgstr "Chystáte se ZRUŠIT celou databázi!" @@ -940,11 +926,11 @@ msgstr "Jméno počítače je prázdné!" msgid "The user name is empty!" msgstr "Jméno uživatele je prázdné!" -#: js/messages.php:44 server_privileges.php:1228 user_password.php:65 +#: js/messages.php:44 server_privileges.php:1229 user_password.php:65 msgid "The password is empty!" msgstr "Heslo je prázdné!" -#: js/messages.php:45 server_privileges.php:1226 user_password.php:68 +#: js/messages.php:45 server_privileges.php:1227 user_password.php:68 msgid "The passwords aren't the same!" msgstr "Hesla nejsou stejná!" @@ -952,27 +938,27 @@ msgstr "Hesla nejsou stejná!" msgid "Cancel" msgstr "Zrušit" -#: js/messages.php:52 pmd_save_pos.php:53 +#: js/messages.php:52 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "Změny byly uloženy" -#: js/messages.php:53 pmd_relation_upd.php:48 +#: js/messages.php:53 pmd_relation_upd.php:47 msgid "Relation deleted" msgstr "Relace smazána" -#: js/messages.php:54 pmd_relation_new.php:63 +#: js/messages.php:54 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "Relace FOREIGN KEY byla vytvořena" -#: js/messages.php:55 pmd_relation_new.php:85 +#: js/messages.php:55 pmd_relation_new.php:84 msgid "Internal relation added" msgstr "Interní relace vytvořena" -#: js/messages.php:56 pmd_relation_new.php:62 pmd_relation_new.php:87 +#: js/messages.php:56 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "Chyba: relace nebyla přidána." -#: js/messages.php:57 pmd_relation_new.php:30 +#: js/messages.php:57 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "Chyba: relace již existuje." @@ -980,13 +966,13 @@ msgstr "Chyba: relace již existuje." msgid "Error saving coordinates for Designer." msgstr "Chyba při ukládání souřadnic pro Návrháře." -#: js/messages.php:59 libraries/relation.lib.php:94 -#: libraries/relation.lib.php:106 +#: js/messages.php:59 libraries/relation.lib.php:89 +#: libraries/relation.lib.php:101 msgid "General relation features" msgstr "Obecné funkce relací" -#: js/messages.php:59 libraries/relation.lib.php:88 -#: libraries/relation.lib.php:95 +#: js/messages.php:59 libraries/relation.lib.php:83 +#: libraries/relation.lib.php:90 msgid "Disabled" msgstr "Vypnuto" @@ -1002,7 +988,7 @@ msgstr "Zvolte cizí klíč" msgid "Please select the primary key or a unique key" msgstr "Zvolte, prosím, primární nebo unikátní klíč" -#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:547 +#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:545 msgid "Choose column to display" msgstr "Zvolte která pole zobrazit" @@ -1025,10 +1011,10 @@ msgid "Prev" msgstr "Předchozí" #. l10n: Display text for next month link in calendar -#: js/messages.php:81 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:337 -#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:422 -#: tbl_structure.php:800 +#: js/messages.php:81 libraries/common.lib.php:2358 +#: libraries/common.lib.php:2361 libraries/display_tbl.lib.php:336 +#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 +#: tbl_structure.php:798 msgid "Next" msgstr "Další" @@ -1086,63 +1072,63 @@ msgid "December" msgstr "prosinec" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1562 +#: js/messages.php:101 libraries/common.lib.php:1566 msgid "Jan" msgstr "led" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1564 +#: js/messages.php:103 libraries/common.lib.php:1568 msgid "Feb" msgstr "úno" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1566 +#: js/messages.php:105 libraries/common.lib.php:1570 msgid "Mar" msgstr "bře" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1568 +#: js/messages.php:107 libraries/common.lib.php:1572 msgid "Apr" msgstr "dub" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1570 +#: js/messages.php:109 libraries/common.lib.php:1574 msgctxt "Short month name" msgid "May" msgstr "kvě" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1572 +#: js/messages.php:111 libraries/common.lib.php:1576 msgid "Jun" msgstr "čen" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1574 +#: js/messages.php:113 libraries/common.lib.php:1578 msgid "Jul" msgstr "čec" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1576 +#: js/messages.php:115 libraries/common.lib.php:1580 msgid "Aug" msgstr "srp" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1578 +#: js/messages.php:117 libraries/common.lib.php:1582 msgid "Sep" msgstr "zář" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1580 +#: js/messages.php:119 libraries/common.lib.php:1584 msgid "Oct" msgstr "říj" #. l10n: Short month name -#: js/messages.php:121 libraries/common.lib.php:1582 +#: js/messages.php:121 libraries/common.lib.php:1586 msgid "Nov" msgstr "lis" #. l10n: Short month name -#: js/messages.php:123 libraries/common.lib.php:1584 +#: js/messages.php:123 libraries/common.lib.php:1588 msgid "Dec" msgstr "pro" @@ -1175,37 +1161,37 @@ msgid "Saturday" msgstr "Sobota" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1587 +#: js/messages.php:136 libraries/common.lib.php:1591 msgid "Sun" msgstr "Ned" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1589 +#: js/messages.php:138 libraries/common.lib.php:1593 msgid "Mon" msgstr "Pon" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1591 +#: js/messages.php:140 libraries/common.lib.php:1595 msgid "Tue" msgstr "Úte" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1593 +#: js/messages.php:142 libraries/common.lib.php:1597 msgid "Wed" msgstr "Stř" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1595 +#: js/messages.php:144 libraries/common.lib.php:1599 msgid "Thu" msgstr "Čtv" #. l10n: Short week day name -#: js/messages.php:146 libraries/common.lib.php:1597 +#: js/messages.php:146 libraries/common.lib.php:1601 msgid "Fri" msgstr "Pát" #. l10n: Short week day name -#: js/messages.php:148 libraries/common.lib.php:1599 +#: js/messages.php:148 libraries/common.lib.php:1603 msgid "Sat" msgstr "Sob" @@ -1265,17 +1251,12 @@ msgstr "Sekundy" msgid "Font size" msgstr "Velikost písma" -#: libraries/File.class.php:336 libraries/File.class.php:424 -#: libraries/File.class.php:561 libraries/File.class.php:700 -msgid "Unknown error in file upload." -msgstr "Neznámá chyba při nahrávání souboru." - -#: libraries/File.class.php:406 +#: libraries/File.class.php:315 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:409 +#: libraries/File.class.php:318 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -1283,23 +1264,27 @@ msgstr "" "Velikost nahraného souboru přesahuje hodnotu MAX_FILE_SIZE, která byla " "zadána v HTML formuláři." -#: libraries/File.class.php:412 +#: libraries/File.class.php:321 msgid "The uploaded file was only partially uploaded." msgstr "Soubor byl nahrán jen částečně." -#: libraries/File.class.php:415 +#: libraries/File.class.php:324 msgid "Missing a temporary folder." msgstr "Chybějící adresář pro dočasné soubory." -#: libraries/File.class.php:418 +#: libraries/File.class.php:327 msgid "Failed to write file to disk." msgstr "Chyba při zapisování souboru na disk." -#: libraries/File.class.php:421 +#: libraries/File.class.php:330 msgid "File upload stopped by extension." msgstr "Nahrávání souboru zastaveno rozšířením." -#: libraries/File.class.php:898 +#: libraries/File.class.php:333 +msgid "Unknown error in file upload." +msgstr "Neznámá chyba při nahrávání souboru." + +#: libraries/File.class.php:624 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -1307,37 +1292,37 @@ 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:427 tbl_relation.php:528 +#: libraries/Index.class.php:427 tbl_relation.php:526 msgid "No index defined!" msgstr "Není definován žádný index!" -#: libraries/Index.class.php:432 server_databases.php:131 tbl_tracking.php:315 +#: libraries/Index.class.php:432 server_databases.php:129 tbl_tracking.php:310 msgid "Indexes" msgstr "Indexy" #: libraries/Index.class.php:443 libraries/mult_submits.inc.php:102 -#: libraries/tbl_properties.inc.php:518 tbl_structure.php:32 -#: tbl_structure.php:154 tbl_structure.php:158 tbl_structure.php:473 -#: tbl_tracking.php:321 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:31 +#: tbl_structure.php:153 tbl_structure.php:157 tbl_structure.php:471 +#: tbl_tracking.php:316 msgid "Unique" msgstr "Unikátní" -#: libraries/Index.class.php:444 tbl_tracking.php:322 +#: libraries/Index.class.php:444 tbl_tracking.php:317 msgid "Packed" msgstr "Zabaleno" -#: libraries/Index.class.php:446 tbl_tracking.php:324 +#: libraries/Index.class.php:446 tbl_tracking.php:319 msgid "Cardinality" msgstr "Mohutnost" -#: libraries/Index.class.php:449 tbl_tracking.php:278 tbl_tracking.php:327 +#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322 msgid "Comment" msgstr "Komentář" #: libraries/Index.class.php:465 libraries/common.lib.php:609 -#: libraries/common.lib.php:1198 libraries/display_tbl.lib.php:1116 +#: libraries/common.lib.php:1191 libraries/display_tbl.lib.php:1115 #: libraries/import.lib.php:1119 libraries/import.lib.php:1143 -#: pdf_pages.php:284 setup/frames/index.inc.php:124 +#: pdf_pages.php:283 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:349 tbl_row_action.php:68 msgid "Edit" msgstr "Upravit" @@ -1361,15 +1346,15 @@ msgstr "" "odstraněn." #: libraries/List_Database.class.php:430 libraries/server_links.inc.php:40 -#: server_databases.php:87 server_privileges.php:1652 +#: server_databases.php:85 server_privileges.php:1656 #: setup/lib/messages.inc.php:107 test/theme.php:92 msgid "Databases" msgstr "Databáze" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:259 libraries/import.lib.php:134 pdf_schema.php:31 -#: pdf_schema.php:231 tbl_change.php:1023 tbl_operations.php:212 -#: tbl_relation.php:289 view_operations.php:61 +#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 +#: tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Chyba" @@ -1397,40 +1382,40 @@ msgstr[0] "Vložen %1$d řádek." msgstr[1] "Vloženy %1$d řádky." msgstr[2] "Vloženo %1$d řádek." -#: libraries/StorageEngine.class.php:196 +#: libraries/StorageEngine.class.php:194 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:352 +#: libraries/StorageEngine.class.php:354 #, 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:355 +#: libraries/StorageEngine.class.php:357 #, 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:359 +#: libraries/StorageEngine.class.php:361 #, 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:1018 +#: libraries/Table.class.php:1017 msgid "Invalid database" msgstr "Chybná databáze" -#: libraries/Table.class.php:1032 tbl_get_field.php:25 +#: libraries/Table.class.php:1031 tbl_get_field.php:25 msgid "Invalid table name" msgstr "Chybné jméno tabulky" -#: libraries/Table.class.php:1047 +#: libraries/Table.class.php:1046 #, 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:1131 +#: libraries/Table.class.php:1129 #, php-format msgid "Table %s has been renamed to %s" msgstr "Tabulka %s byla přejmenována na %s" @@ -1448,22 +1433,22 @@ msgstr "Náhled není k dispozici." msgid "take it" msgstr "zvolit" -#: libraries/Theme_Manager.class.php:114 +#: 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:152 +#: libraries/Theme_Manager.class.php:147 #, php-format msgid "Theme %s not found!" msgstr "Vzhled %s nebyl nalezen!" -#: libraries/Theme_Manager.class.php:220 +#: 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:296 test/theme.php:160 themes.php:20 +#: libraries/Theme_Manager.class.php:291 test/theme.php:160 themes.php:20 #: themes.php:40 msgid "Theme / Style" msgstr "Vzhled" @@ -1578,19 +1563,19 @@ msgstr "Nebyl připojen autentizační klíč" msgid "Authenticating..." msgstr "Authentizuji..." -#: libraries/blobstreaming.lib.php:689 +#: libraries/blobstreaming.lib.php:340 msgid "View image" msgstr "Zobrazit obrázek" -#: libraries/blobstreaming.lib.php:693 +#: libraries/blobstreaming.lib.php:344 msgid "Play audio" msgstr "Přehrát zvuk" -#: libraries/blobstreaming.lib.php:698 +#: libraries/blobstreaming.lib.php:349 msgid "View video" msgstr "Přehrát video" -#: libraries/blobstreaming.lib.php:702 +#: libraries/blobstreaming.lib.php:353 msgid "Download file" msgstr "Stáhnout soubor" @@ -1643,7 +1628,7 @@ msgstr "Server" msgid "Invalid authentication method set in configuration:" msgstr "V konfiguraci máte špatnou autentizační metodu:" -#: libraries/common.inc.php:909 +#: libraries/common.inc.php:908 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Měli byste aktualizovat %s na verzi %s nebo vyšší." @@ -1668,7 +1653,8 @@ msgstr "en" #: libraries/common.lib.php:425 libraries/common.lib.php:427 #: libraries/common.lib.php:429 libraries/common.lib.php:445 #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 -#: libraries/display_export.lib.php:163 libraries/relation.lib.php:84 +#: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 +#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 #: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" @@ -1683,147 +1669,146 @@ msgstr "SQL-dotaz" msgid "MySQL said: " msgstr "MySQL hlásí: " -#: libraries/common.lib.php:1136 -#| msgid "Could not connect to MySQL server" +#: libraries/common.lib.php:1129 msgid "Failed to connect to SQL validator!" msgstr "Nepodařilo se připojit k serveru ověřujícím SQL!" -#: libraries/common.lib.php:1174 setup/lib/messages.inc.php:350 +#: libraries/common.lib.php:1167 setup/lib/messages.inc.php:350 msgid "Explain SQL" msgstr "Vysvětlit SQL" -#: libraries/common.lib.php:1177 +#: libraries/common.lib.php:1170 msgid "Skip Explain SQL" msgstr "Bez vysvětlení (EXPLAIN) SQL" -#: libraries/common.lib.php:1211 +#: libraries/common.lib.php:1204 msgid "Without PHP Code" msgstr "Bez PHP kódu" -#: libraries/common.lib.php:1214 setup/lib/messages.inc.php:352 +#: libraries/common.lib.php:1207 setup/lib/messages.inc.php:352 msgid "Create PHP Code" msgstr "Vytvořit PHP kód" -#: libraries/common.lib.php:1232 server_status.php:451 +#: libraries/common.lib.php:1225 server_status.php:451 #: setup/lib/messages.inc.php:351 msgid "Refresh" msgstr "Obnovit" -#: libraries/common.lib.php:1241 +#: libraries/common.lib.php:1234 msgid "Skip Validate SQL" msgstr "Bez ověření SQL" -#: libraries/common.lib.php:1244 setup/lib/messages.inc.php:353 +#: libraries/common.lib.php:1237 setup/lib/messages.inc.php:353 msgid "Validate SQL" msgstr "Ověřit SQL" -#: libraries/common.lib.php:1283 +#: libraries/common.lib.php:1287 msgid "Inline edit of this query" msgstr "Upravit tento dotaz na této stránce" -#: libraries/common.lib.php:1285 +#: libraries/common.lib.php:1289 msgid "Inline" msgstr "Upravit zde" -#: libraries/common.lib.php:1339 libraries/common.lib.php:1354 +#: libraries/common.lib.php:1343 libraries/common.lib.php:1358 msgid "Profiling" msgstr "Profilování" -#: libraries/common.lib.php:1358 libraries/tbl_triggers.lib.php:27 +#: libraries/common.lib.php:1362 libraries/tbl_triggers.lib.php:27 #: server_processlist.php:57 msgid "Time" msgstr "Čas" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "B" msgstr "B" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "KiB" msgstr "KiB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "MiB" msgstr "MiB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "GiB" msgstr "GiB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "TiB" msgstr "TiB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "PiB" msgstr "PiB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "EiB" msgstr "EiB" #. l10n: Thousands separator -#: libraries/common.lib.php:1424 +#: libraries/common.lib.php:1428 msgid "," msgstr " " #. l10n: Decimal separator -#: libraries/common.lib.php:1426 +#: libraries/common.lib.php:1430 msgid "." msgstr "." #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1603 +#: libraries/common.lib.php:1607 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%a %d. %b %Y, %H:%M" -#: libraries/common.lib.php:1909 +#: libraries/common.lib.php:1913 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dnů, %s hodin, %s minut a %s sekund" -#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 -#: libraries/display_tbl.lib.php:289 server_status.php:718 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 +#: libraries/display_tbl.lib.php:288 server_status.php:718 msgid "Begin" msgstr "Začátek" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 -#: libraries/display_tbl.lib.php:290 server_binlog.php:154 +#: libraries/common.lib.php:2328 libraries/common.lib.php:2331 +#: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "Předchozí" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 -#: libraries/display_tbl.lib.php:352 +#: libraries/common.lib.php:2359 libraries/common.lib.php:2362 +#: libraries/display_tbl.lib.php:351 msgid "End" msgstr "Konec" -#: libraries/common.lib.php:2429 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "Přejít na databázi „%s“." -#: libraries/common.lib.php:2448 +#: libraries/common.lib.php:2453 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Funkčnost %s je omezena známou chybou, viz %s" -#: libraries/common.lib.php:2828 libraries/common.lib.php:2835 -#: libraries/db_links.inc.php:67 libraries/export/sql.php:24 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 +#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 -#: libraries/tbl_links.inc.php:59 querywindow.php:89 test/theme.php:96 +#: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2837 libraries/db_links.inc.php:103 -#: libraries/tbl_links.inc.php:94 libraries/tbl_links.inc.php:116 -#: view_operations.php:88 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: view_operations.php:87 msgid "Operations" msgstr "Úpravy" -#: libraries/core.lib.php:282 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "Chybí rozšíření %s. Prosím zkontrolujte nastavení PHP." @@ -1839,38 +1824,38 @@ msgstr "Události" msgid "Name" msgstr "Název" -#: libraries/db_links.inc.php:44 +#: libraries/db_links.inc.php:43 #, php-format msgid "Database %s has been dropped." msgstr "Databáze %s byla zrušena." -#: libraries/db_links.inc.php:56 libraries/db_links.inc.php:57 -#: libraries/db_links.inc.php:58 +#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 +#: libraries/db_links.inc.php:57 msgid "Database seems to be empty!" msgstr "Databáze se zdá být prázdná!" -#: libraries/db_links.inc.php:80 libraries/relation.lib.php:142 -#: libraries/tbl_links.inc.php:68 +#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "Sledování" -#: libraries/db_links.inc.php:85 +#: libraries/db_links.inc.php:84 msgid "Query" msgstr "Dotaz" -#: libraries/db_links.inc.php:90 libraries/relation.lib.php:138 +#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 msgid "Designer" msgstr "Návrhář" -#: libraries/db_links.inc.php:97 libraries/server_links.inc.php:87 -#: libraries/tbl_links.inc.php:90 pmd_pdf.php:83 pmd_pdf.php:109 +#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Import" -#: libraries/db_links.inc.php:110 libraries/server_links.inc.php:65 -#: server_privileges.php:111 server_privileges.php:1714 -#: server_privileges.php:2063 test/theme.php:116 +#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: server_privileges.php:110 server_privileges.php:1718 +#: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" msgstr "Oprávnění" @@ -1882,7 +1867,7 @@ msgstr "Rutiny" msgid "Return type" msgstr "Návratový typ" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1847 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1806 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -1890,8 +1875,8 @@ msgstr "" "Počet nemusí být přesný, viz [a@./Documentation.html#faq3_11@Documentation]" "FAQ 3.11[/a]" -#: libraries/db_structure.lib.php:60 server_databases.php:141 -#: tbl_printview.php:334 tbl_structure.php:681 +#: libraries/db_structure.lib.php:60 server_databases.php:139 +#: tbl_printview.php:333 tbl_structure.php:679 msgid "Overhead" msgstr "Navíc" @@ -1909,7 +1894,7 @@ msgstr "Server neodpovídá" 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:358 tbl_structure.php:607 +#: libraries/dbi/mysql.dbi.lib.php:358 tbl_structure.php:605 msgid "Details..." msgstr "Podrobnosti..." @@ -1919,22 +1904,22 @@ msgid "Change password" msgstr "Změnit heslo" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:807 +#: libraries/replication_gui.lib.php:347 server_privileges.php:806 msgid "No Password" msgstr "Žádné heslo" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1530 server_synchronize.php:1174 +#: libraries/replication_gui.lib.php:351 server_privileges.php:795 +#: server_privileges.php:799 server_privileges.php:810 +#: server_privileges.php:1534 server_synchronize.php:1173 msgid "Password" msgstr "Heslo" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:815 server_privileges.php:818 +#: server_privileges.php:814 server_privileges.php:817 msgid "Re-type" msgstr "Heslo znovu" @@ -1955,8 +1940,8 @@ msgstr "Vytvořit novou databázi" msgid "Create" msgstr "Vytvořit" -#: libraries/display_create_database.lib.php:39 server_privileges.php:113 -#: server_privileges.php:1419 server_replication.php:34 +#: libraries/display_create_database.lib.php:39 server_privileges.php:112 +#: server_privileges.php:1423 server_replication.php:33 msgid "No Privileges" msgstr "Nemáte oprávnění" @@ -1973,50 +1958,50 @@ msgstr "Vytvořit novou tabulku v databázi %s" msgid "Number of columns" msgstr "Počet polí" -#: libraries/display_export.lib.php:41 +#: libraries/display_export.lib.php:35 msgid "Could not load export plugins, please check your installation!" msgstr "" "Nepodařilo se nahrát pluginy pro export, zkontrolujte prosím vaší instalaci!" -#: libraries/display_export.lib.php:106 +#: libraries/display_export.lib.php:100 #, php-format msgid "Dump %s row(s) starting at row # %s" msgstr "Vypsat %s řádků od %s" -#: libraries/display_export.lib.php:114 +#: libraries/display_export.lib.php:108 msgid "Dump all rows" msgstr "Všechny řádky" -#: libraries/display_export.lib.php:124 setup/lib/messages.inc.php:79 +#: libraries/display_export.lib.php:118 setup/lib/messages.inc.php:79 msgid "Save as file" msgstr "Uložit jako soubor" -#: libraries/display_export.lib.php:133 +#: libraries/display_export.lib.php:127 #, php-format msgid "Save on server in %s directory" msgstr "Uložit na serveru v adresáři %s" -#: libraries/display_export.lib.php:141 setup/lib/messages.inc.php:87 +#: libraries/display_export.lib.php:135 setup/lib/messages.inc.php:87 msgid "Overwrite existing file(s)" msgstr "Přepsat existující soubory" -#: libraries/display_export.lib.php:147 +#: libraries/display_export.lib.php:141 msgid "File name template" msgstr "Vzor pro jméno souboru" -#: libraries/display_export.lib.php:151 +#: libraries/display_export.lib.php:145 msgid "server name" msgstr "jméno serveru" -#: libraries/display_export.lib.php:154 +#: libraries/display_export.lib.php:148 msgid "database name" msgstr "jméno databáze" -#: libraries/display_export.lib.php:157 +#: libraries/display_export.lib.php:151 msgid "table name" msgstr "jméno tabulky" -#: libraries/display_export.lib.php:161 +#: libraries/display_export.lib.php:155 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2027,39 +2012,39 @@ msgstr "" "libovolné řetězce pro formátování data a času. Dále budou provedena " "následující nahrazení: %3$s. Jakýkoliv jiný text zůstane zachován beze změny." -#: libraries/display_export.lib.php:202 +#: libraries/display_export.lib.php:196 msgid "remember template" msgstr "zapamatovat si hodnotu" -#: libraries/display_export.lib.php:210 libraries/display_import.lib.php:177 +#: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 #: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 msgid "Character set of the file:" msgstr "Znaková sada souboru:" -#: libraries/display_export.lib.php:235 setup/lib/messages.inc.php:81 +#: libraries/display_export.lib.php:229 setup/lib/messages.inc.php:81 msgid "Compression" msgstr "Komprese" -#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:196 -#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:529 -#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:574 -#: server_privileges.php:1867 server_processlist.php:74 +#: libraries/display_export.lib.php:234 libraries/display_import.lib.php:196 +#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:528 +#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:573 +#: server_privileges.php:1871 server_processlist.php:74 msgid "None" msgstr "Žádná" -#: libraries/display_export.lib.php:247 +#: libraries/display_export.lib.php:241 msgid "\"zipped\"" msgstr "„zazipováno“" -#: libraries/display_export.lib.php:253 +#: libraries/display_export.lib.php:247 msgid "\"gzipped\"" msgstr "„zagzipováno“" -#: libraries/display_export.lib.php:259 +#: libraries/display_export.lib.php:253 msgid "\"bzipped\"" msgstr "„zabzipováno“" -#: libraries/display_export.lib.php:274 libraries/export/sql.php:42 +#: libraries/display_export.lib.php:268 libraries/export/sql.php:42 #: libraries/import/sql.php:31 msgid "SQL compatibility mode" msgstr "Režim kompatibility SQL" @@ -2099,12 +2084,12 @@ msgid "File uploads are not allowed on this server." msgstr "Upload souborů není na tomto serveru povolen." #: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 -#: tbl_change.php:1024 +#: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "Adresář určený pro upload souborů nemohl být otevřen" #: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 -#: tbl_change.php:1027 +#: tbl_change.php:925 msgid "web server upload directory" msgstr "soubor z adresáře pro upload" @@ -2190,41 +2175,41 @@ msgstr "Velikost stránky" msgid "Language" msgstr "Jazyk" -#: libraries/display_tbl.lib.php:303 +#: libraries/display_tbl.lib.php:302 #, php-format msgid "%d is not valid row number." msgstr "%d není platné číslo řádku." -#: libraries/display_tbl.lib.php:309 +#: libraries/display_tbl.lib.php:308 msgid "row(s) starting from row #" msgstr "řádků začínající od" -#: libraries/display_tbl.lib.php:315 +#: libraries/display_tbl.lib.php:314 msgid "horizontal" msgstr "vodorovném" -#: libraries/display_tbl.lib.php:316 +#: libraries/display_tbl.lib.php:315 msgid "horizontal (rotated headers)" msgstr "vodorovném (otočené hlavičky)" -#: libraries/display_tbl.lib.php:317 +#: libraries/display_tbl.lib.php:316 msgid "vertical" msgstr "svislém" -#: libraries/display_tbl.lib.php:323 +#: libraries/display_tbl.lib.php:322 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "ve %s režimu a opakovat hlavičky po %s řádcích" -#: libraries/display_tbl.lib.php:345 +#: libraries/display_tbl.lib.php:344 msgid "This operation could take a long time. Proceed anyway?" msgstr "Tato operace může trvat velmi dlouho. Chcete je přesto provést?" -#: libraries/display_tbl.lib.php:511 +#: libraries/display_tbl.lib.php:510 msgid "Sort by key" msgstr "Setřídit podle klíče" -#: libraries/display_tbl.lib.php:554 libraries/export/codegen.php:38 +#: libraries/display_tbl.lib.php:553 libraries/export/codegen.php:38 #: libraries/export/csv.php:29 libraries/export/excel.php:34 #: libraries/export/htmlword.php:28 libraries/export/latex.php:32 #: libraries/export/mediawiki.php:21 libraries/export/ods.php:26 @@ -2234,97 +2219,97 @@ msgstr "Setřídit podle klíče" #: libraries/export/xlsx.php:26 libraries/export/xml.php:23 #: libraries/export/yaml.php:27 libraries/import.lib.php:1114 #: libraries/import.lib.php:1136 libraries/import/csv.php:31 -#: libraries/import/docsql.php:33 libraries/import/ldi.php:46 +#: libraries/import/docsql.php:32 libraries/import/ldi.php:46 #: libraries/import/ods.php:30 libraries/import/sql.php:19 #: libraries/import/xls.php:25 libraries/import/xlsx.php:25 -#: libraries/import/xml.php:25 tbl_select.php:264 tbl_structure.php:752 +#: libraries/import/xml.php:25 tbl_select.php:263 tbl_structure.php:750 msgid "Options" msgstr "Nastavení" -#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:569 +#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:568 msgid "Partial Texts" msgstr "Zkrácené texty" -#: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:573 +#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:572 msgid "Full Texts" msgstr "Celé texty" -#: libraries/display_tbl.lib.php:586 +#: libraries/display_tbl.lib.php:585 msgid "Relational key" msgstr "Relační klíč" -#: libraries/display_tbl.lib.php:587 +#: libraries/display_tbl.lib.php:586 msgid "Relational display column" msgstr "Pole pro zobrazení v relacích" -#: libraries/display_tbl.lib.php:594 +#: libraries/display_tbl.lib.php:593 msgid "Show binary contents" msgstr "Zobrazit binární obsah" -#: libraries/display_tbl.lib.php:596 +#: libraries/display_tbl.lib.php:595 msgid "Show BLOB contents" msgstr "Zobrazit obsah BLOBu" -#: libraries/display_tbl.lib.php:598 +#: libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "Zobrazit binární obsah šestnáctkově (HEX)" -#: libraries/display_tbl.lib.php:606 pmd_general.php:140 tbl_change.php:312 -#: tbl_change.php:318 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:307 +#: tbl_change.php:313 msgid "Hide" msgstr "Skrýt" -#: libraries/display_tbl.lib.php:606 libraries/relation.lib.php:122 -#: libraries/tbl_properties.inc.php:143 transformation_overview.php:46 +#: libraries/display_tbl.lib.php:605 libraries/relation.lib.php:117 +#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46 msgid "Browser transformation" msgstr "Transformace při prohlížení" -#: libraries/display_tbl.lib.php:1125 libraries/display_tbl.lib.php:1129 -#: libraries/display_tbl.lib.php:1131 +#: libraries/display_tbl.lib.php:1124 libraries/display_tbl.lib.php:1128 +#: libraries/display_tbl.lib.php:1130 msgid "Execute bookmarked query" msgstr "Spustit oblíbený dotaz" -#: libraries/display_tbl.lib.php:1144 libraries/display_tbl.lib.php:1156 +#: libraries/display_tbl.lib.php:1143 libraries/display_tbl.lib.php:1155 msgid "The row has been deleted" msgstr "Řádek byl smazán" -#: libraries/display_tbl.lib.php:1183 libraries/display_tbl.lib.php:2055 +#: libraries/display_tbl.lib.php:1182 libraries/display_tbl.lib.php:2014 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "Ukončit" -#: libraries/display_tbl.lib.php:1933 +#: libraries/display_tbl.lib.php:1892 msgid "in query" msgstr "v dotazu" -#: libraries/display_tbl.lib.php:1951 +#: libraries/display_tbl.lib.php:1910 msgid "Showing rows" msgstr "Zobrazeny záznamy" -#: libraries/display_tbl.lib.php:1961 +#: libraries/display_tbl.lib.php:1920 msgid "total" msgstr "celkem" -#: libraries/display_tbl.lib.php:1969 sql.php:523 +#: libraries/display_tbl.lib.php:1928 sql.php:522 #, php-format msgid "Query took %01.4f sec" msgstr "dotaz trval %01.4f sekund" -#: libraries/display_tbl.lib.php:2088 libraries/mult_submits.inc.php:112 -#: querywindow.php:115 querywindow.php:119 querywindow.php:122 -#: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:469 +#: libraries/display_tbl.lib.php:2047 libraries/mult_submits.inc.php:112 +#: querywindow.php:114 querywindow.php:118 querywindow.php:121 +#: tbl_structure.php:23 tbl_structure.php:148 tbl_structure.php:467 msgid "Change" msgstr "Změnit" -#: libraries/display_tbl.lib.php:2158 +#: libraries/display_tbl.lib.php:2117 msgid "Query results operations" msgstr "Operace s výsledky dotazu" -#: libraries/display_tbl.lib.php:2186 +#: libraries/display_tbl.lib.php:2145 msgid "Print view (with full texts)" msgstr "Náhled pro tisk (s kompletními texty)" -#: libraries/display_tbl.lib.php:2359 +#: libraries/display_tbl.lib.php:2318 msgid "Link not found" msgstr "Odkaz nenalezen" @@ -2378,9 +2363,9 @@ msgstr "Stav InnoDB" msgid "Buffer Pool Usage" msgstr "Využití vyrovnávací paměti" -#: libraries/engines/innodb.lib.php:168 server_databases.php:136 -#: server_databases.php:304 server_status.php:524 server_status.php:585 -#: server_status.php:606 tbl_printview.php:349 tbl_structure.php:695 +#: libraries/engines/innodb.lib.php:168 server_databases.php:134 +#: server_databases.php:302 server_status.php:524 server_status.php:585 +#: server_status.php:606 tbl_printview.php:348 tbl_structure.php:693 msgid "Total" msgstr "Celkem" @@ -2514,6 +2499,88 @@ msgstr "" "Paměť, která je alokována při řazení MyISAM indexů během jejich vytváření " "příkazem CREATE INDEX nebo opravování příkazem ALTER TABLE." +#: libraries/engines/pbms.lib.php:31 +#, fuzzy +#| msgid "Garbage threshold" +msgid "Garbage Threshold" +msgstr "Největší velikost odpadu (garbage)" + +#: libraries/engines/pbms.lib.php:32 +#, fuzzy +#| msgid "" +#| "The percentage of garbage in a data log file before it is compacted. This " +#| "is a value between 1 and 99. The default is 50." +msgid "The percentage of garbage in a repository file before it is compacted." +msgstr "" +"Procentuální podíl odpadu (garbage) v souboru datového logu předtím, než je " +"soubor stlačen. Tato hodnota se může pohybovat mezi 1 a 99. Výchozí hodnota " +"je 50." + +#: libraries/engines/pbms.lib.php:36 libraries/replication_gui.lib.php:69 +#: server_synchronize.php:1161 +msgid "Port" +msgstr "Port" + +#: libraries/engines/pbms.lib.php:37 +msgid "" +"The port for the PBMS stream-based communications. Setting this value to 0 " +"will disable HTTP communication with the daemon." +msgstr "" + +#: libraries/engines/pbms.lib.php:41 +msgid "Repository Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:42 +msgid "" +"The maximum size of a BLOB repository file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:46 +msgid "Temp Blob Timeout" +msgstr "" + +#: libraries/engines/pbms.lib.php:47 +msgid "" +"The timeout, in seconds, for temporary BLOBs. Uploaded BLOB data is removed " +"after this time, unless they are referenced by a record in the database." +msgstr "" + +#: libraries/engines/pbms.lib.php:51 +#, fuzzy +#| msgid "Log file threshold" +msgid "Temp Log Threshold" +msgstr "Prahová hodnota logového souboru" + +#: libraries/engines/pbms.lib.php:52 +msgid "" +"The maximum size of a temporary BLOB log file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:56 +msgid "Max Keep Alive" +msgstr "" + +#: libraries/engines/pbms.lib.php:57 +msgid "" +"The timeout for inactive connection with the keep-alive flag set. After this " +"time the connection will be closed. The time-out is in milliseconds (1/1000)." +msgstr "" + +#: libraries/engines/pbms.lib.php:61 +msgid "Metadata Headers" +msgstr "" + +#: libraries/engines/pbms.lib.php:62 +msgid "" +"A \":\" delimited list of metadata headers to be used to initialize the " +"pbms_metadata_header table when a database is created." +msgstr "" + #: libraries/engines/pbxt.lib.php:22 msgid "Index cache size" msgstr "Velikost vyrovnávací paměti indexu" @@ -2664,7 +2731,7 @@ msgstr "" "soubory vymazány. Jinak jsou soubory přejmenovány a označeny vyšším číslem." #: libraries/export/codegen.php:36 setup/lib/messages.inc.php:85 -#: tbl_printview.php:374 tbl_structure.php:736 +#: tbl_printview.php:373 tbl_structure.php:734 msgid "Format" msgstr "Formát" @@ -2727,9 +2794,9 @@ msgstr "Microsoft Word 2000" #: libraries/export/htmlword.php:23 libraries/export/latex.php:59 #: libraries/export/latex.php:205 libraries/export/odt.php:47 #: libraries/export/sql.php:105 libraries/export/sql.php:865 -#: libraries/export/texytext.php:27 server_databases.php:126 -#: server_privileges.php:576 server_replication.php:315 tbl_printview.php:315 -#: tbl_structure.php:664 +#: libraries/export/texytext.php:27 server_databases.php:124 +#: server_privileges.php:575 server_replication.php:314 tbl_printview.php:314 +#: tbl_structure.php:662 msgid "Data" msgstr "Data" @@ -2776,13 +2843,13 @@ msgid "Label key" msgstr "Návěstí" #: libraries/export/latex.php:46 libraries/export/odt.php:34 -#: libraries/export/sql.php:90 tbl_relation.php:398 +#: libraries/export/sql.php:90 tbl_relation.php:396 msgid "Relations" msgstr "Relace" #: libraries/export/latex.php:52 libraries/export/odt.php:40 #: libraries/export/odt.php:317 libraries/export/sql.php:94 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "MIME typ" @@ -2790,10 +2857,10 @@ msgstr "MIME typ" #: libraries/export/xml.php:101 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1529 server_privileges.php:2061 -#: server_processlist.php:54 server_synchronize.php:1158 +#: libraries/replication_gui.lib.php:331 server_privileges.php:730 +#: server_privileges.php:733 server_privileges.php:789 +#: server_privileges.php:1533 server_privileges.php:2065 +#: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "Počítač" @@ -2980,8 +3047,8 @@ msgstr "Exportovat pohledy" msgid "Export contents" msgstr "Exportovat obsah" -#: libraries/footer.inc.php:182 libraries/footer.inc.php:193 -#: libraries/footer.inc.php:196 +#: libraries/footer.inc.php:180 libraries/footer.inc.php:191 +#: libraries/footer.inc.php:194 msgid "Open new phpMyAdmin window" msgstr "Otevřít nové okno phpMyAdmina" @@ -2997,7 +3064,7 @@ msgstr "Výsledek SQL dotazu" msgid "Generated by" msgstr "Vygeneroval" -#: libraries/import.lib.php:151 sql.php:519 tbl_change.php:180 +#: libraries/import.lib.php:151 sql.php:518 tbl_change.php:175 #: 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ů)." @@ -3053,7 +3120,7 @@ msgstr "Ignorovat duplicitní řádky" msgid "Column names in first row" msgstr "Jména polí na prvním řádku" -#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:501 +#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:500 #: view_create.php:147 msgid "Column names" msgstr "Názvy polí" @@ -3079,12 +3146,12 @@ msgstr "Chybný formát CSV dat na řádku %d." msgid "Invalid column count in CSV input on line %d." msgstr "Chybný počet polí v CSV datech na řádku %d." -#: libraries/import/docsql.php:28 +#: libraries/import/docsql.php:27 msgid "DocSQL" msgstr "DocSQL" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 -#: server_synchronize.php:427 server_synchronize.php:870 +#: libraries/import/docsql.php:30 libraries/tbl_properties.inc.php:616 +#: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "Jméno tabulky" @@ -3140,26 +3207,26 @@ msgstr "Žádná" msgid "Convert to Kana" msgstr "Převést na Kanu" -#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:512 -#: tbl_structure.php:28 tbl_structure.php:152 tbl_structure.php:156 -#: tbl_structure.php:472 +#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:511 +#: tbl_structure.php:27 tbl_structure.php:151 tbl_structure.php:155 +#: tbl_structure.php:470 msgid "Primary" msgstr "Primární" #: libraries/mult_submits.inc.php:97 libraries/tbl_properties.inc.php:115 -#: libraries/tbl_properties.inc.php:524 tbl_printview.php:324 -#: tbl_structure.php:30 tbl_structure.php:153 tbl_structure.php:157 -#: tbl_structure.php:474 tbl_structure.php:672 +#: libraries/tbl_properties.inc.php:523 tbl_printview.php:323 +#: tbl_structure.php:29 tbl_structure.php:152 tbl_structure.php:156 +#: tbl_structure.php:472 tbl_structure.php:670 msgid "Index" msgstr "Index" -#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:530 -#: tbl_structure.php:34 tbl_structure.php:155 tbl_structure.php:159 -#: tbl_structure.php:477 +#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:529 +#: tbl_structure.php:33 tbl_structure.php:154 tbl_structure.php:158 +#: tbl_structure.php:475 msgid "Fulltext" msgstr "Fulltext" -#: libraries/mult_submits.inc.php:434 tbl_replace.php:330 +#: libraries/mult_submits.inc.php:433 tbl_replace.php:330 msgid "No change" msgstr "Žádná změna" @@ -3167,190 +3234,190 @@ msgstr "Žádná změna" msgid "Charset" msgstr "Znaková sada" -#: libraries/mysql_charsets.lib.php:210 libraries/mysql_charsets.lib.php:411 -#: tbl_change.php:515 +#: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 +#: tbl_change.php:510 msgid "Binary" msgstr "Binární" -#: libraries/mysql_charsets.lib.php:222 +#: libraries/mysql_charsets.lib.php:214 msgid "Bulgarian" msgstr "Bulharština" -#: libraries/mysql_charsets.lib.php:226 libraries/mysql_charsets.lib.php:351 +#: libraries/mysql_charsets.lib.php:218 libraries/mysql_charsets.lib.php:343 msgid "Simplified Chinese" msgstr "Zjednodušená čínština" -#: libraries/mysql_charsets.lib.php:228 libraries/mysql_charsets.lib.php:371 +#: libraries/mysql_charsets.lib.php:220 libraries/mysql_charsets.lib.php:363 msgid "Traditional Chinese" msgstr "Tradiční čínština" -#: libraries/mysql_charsets.lib.php:232 libraries/mysql_charsets.lib.php:418 +#: libraries/mysql_charsets.lib.php:224 libraries/mysql_charsets.lib.php:410 msgid "case-insensitive" msgstr "nerozlišovat velká a malá písmena" -#: libraries/mysql_charsets.lib.php:235 libraries/mysql_charsets.lib.php:420 +#: libraries/mysql_charsets.lib.php:227 libraries/mysql_charsets.lib.php:412 msgid "case-sensitive" msgstr "rozlišovat velká a malá písmena" -#: libraries/mysql_charsets.lib.php:238 +#: libraries/mysql_charsets.lib.php:230 msgid "Croatian" msgstr "Chorvatština" -#: libraries/mysql_charsets.lib.php:241 +#: libraries/mysql_charsets.lib.php:233 msgid "Czech" msgstr "Čeština" -#: libraries/mysql_charsets.lib.php:244 +#: libraries/mysql_charsets.lib.php:236 msgid "Danish" msgstr "Dánština" -#: libraries/mysql_charsets.lib.php:247 +#: libraries/mysql_charsets.lib.php:239 msgid "English" msgstr "Anglicky" -#: libraries/mysql_charsets.lib.php:250 +#: libraries/mysql_charsets.lib.php:242 msgid "Esperanto" msgstr "Esperanto" -#: libraries/mysql_charsets.lib.php:253 +#: libraries/mysql_charsets.lib.php:245 msgid "Estonian" msgstr "Estonština" -#: libraries/mysql_charsets.lib.php:256 libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:248 libraries/mysql_charsets.lib.php:251 msgid "German" msgstr "Německy" -#: libraries/mysql_charsets.lib.php:256 +#: libraries/mysql_charsets.lib.php:248 msgid "dictionary" msgstr "slovník" -#: libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:251 msgid "phone book" msgstr "adresář" -#: libraries/mysql_charsets.lib.php:262 +#: libraries/mysql_charsets.lib.php:254 msgid "Hungarian" msgstr "Maďarština" -#: libraries/mysql_charsets.lib.php:265 +#: libraries/mysql_charsets.lib.php:257 msgid "Icelandic" msgstr "Islandština" -#: libraries/mysql_charsets.lib.php:268 libraries/mysql_charsets.lib.php:358 +#: libraries/mysql_charsets.lib.php:260 libraries/mysql_charsets.lib.php:350 msgid "Japanese" msgstr "Japonština" -#: libraries/mysql_charsets.lib.php:271 +#: libraries/mysql_charsets.lib.php:263 msgid "Latvian" msgstr "Lotyština" -#: libraries/mysql_charsets.lib.php:274 +#: libraries/mysql_charsets.lib.php:266 msgid "Lithuanian" msgstr "Litevština" -#: libraries/mysql_charsets.lib.php:277 libraries/mysql_charsets.lib.php:380 +#: libraries/mysql_charsets.lib.php:269 libraries/mysql_charsets.lib.php:372 msgid "Korean" msgstr "Korejština" -#: libraries/mysql_charsets.lib.php:280 +#: libraries/mysql_charsets.lib.php:272 msgid "Persian" msgstr "Perština" -#: libraries/mysql_charsets.lib.php:283 +#: libraries/mysql_charsets.lib.php:275 msgid "Polish" msgstr "Polština" -#: libraries/mysql_charsets.lib.php:286 libraries/mysql_charsets.lib.php:334 +#: libraries/mysql_charsets.lib.php:278 libraries/mysql_charsets.lib.php:326 msgid "West European" msgstr "Západní Evropa" -#: libraries/mysql_charsets.lib.php:289 +#: libraries/mysql_charsets.lib.php:281 msgid "Romanian" msgstr "Rumunština" -#: libraries/mysql_charsets.lib.php:292 +#: libraries/mysql_charsets.lib.php:284 msgid "Slovak" msgstr "Slovenština" -#: libraries/mysql_charsets.lib.php:295 +#: libraries/mysql_charsets.lib.php:287 msgid "Slovenian" msgstr "Slovinština" -#: libraries/mysql_charsets.lib.php:298 +#: libraries/mysql_charsets.lib.php:290 msgid "Spanish" msgstr "Španělština" -#: libraries/mysql_charsets.lib.php:301 +#: libraries/mysql_charsets.lib.php:293 msgid "Traditional Spanish" msgstr "Tradiční španělština" -#: libraries/mysql_charsets.lib.php:304 libraries/mysql_charsets.lib.php:401 +#: libraries/mysql_charsets.lib.php:296 libraries/mysql_charsets.lib.php:393 msgid "Swedish" msgstr "Švédština" -#: libraries/mysql_charsets.lib.php:307 libraries/mysql_charsets.lib.php:404 +#: libraries/mysql_charsets.lib.php:299 libraries/mysql_charsets.lib.php:396 msgid "Thai" msgstr "Thajština" -#: libraries/mysql_charsets.lib.php:310 libraries/mysql_charsets.lib.php:398 +#: libraries/mysql_charsets.lib.php:302 libraries/mysql_charsets.lib.php:390 msgid "Turkish" msgstr "Turecky" -#: libraries/mysql_charsets.lib.php:313 libraries/mysql_charsets.lib.php:395 +#: libraries/mysql_charsets.lib.php:305 libraries/mysql_charsets.lib.php:387 msgid "Ukrainian" msgstr "Ukrajinština" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 msgid "Unicode" msgstr "Unicode" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 -#: libraries/mysql_charsets.lib.php:334 libraries/mysql_charsets.lib.php:341 -#: libraries/mysql_charsets.lib.php:363 libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 +#: libraries/mysql_charsets.lib.php:326 libraries/mysql_charsets.lib.php:333 +#: libraries/mysql_charsets.lib.php:355 libraries/mysql_charsets.lib.php:366 msgid "multilingual" msgstr "mnohojazyčný" -#: libraries/mysql_charsets.lib.php:341 +#: libraries/mysql_charsets.lib.php:333 msgid "Central European" msgstr "Střední Evropa" -#: libraries/mysql_charsets.lib.php:346 +#: libraries/mysql_charsets.lib.php:338 msgid "Russian" msgstr "Ruština" -#: libraries/mysql_charsets.lib.php:363 +#: libraries/mysql_charsets.lib.php:355 msgid "Baltic" msgstr "Baltické" -#: libraries/mysql_charsets.lib.php:368 +#: libraries/mysql_charsets.lib.php:360 msgid "Armenian" msgstr "Arménština" -#: libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:366 msgid "Cyrillic" msgstr "Cyrilika" -#: libraries/mysql_charsets.lib.php:377 +#: libraries/mysql_charsets.lib.php:369 msgid "Arabic" msgstr "Arabština" -#: libraries/mysql_charsets.lib.php:383 +#: libraries/mysql_charsets.lib.php:375 msgid "Hebrew" msgstr "Hebrejština" -#: libraries/mysql_charsets.lib.php:386 +#: libraries/mysql_charsets.lib.php:378 msgid "Georgian" msgstr "Gruzínština" -#: libraries/mysql_charsets.lib.php:389 +#: libraries/mysql_charsets.lib.php:381 msgid "Greek" msgstr "Řečtina" -#: libraries/mysql_charsets.lib.php:392 +#: libraries/mysql_charsets.lib.php:384 msgid "Czech-Slovak" msgstr "Čeština/Slovenština" -#: libraries/mysql_charsets.lib.php:407 libraries/mysql_charsets.lib.php:414 +#: libraries/mysql_charsets.lib.php:399 libraries/mysql_charsets.lib.php:406 msgid "unknown" msgstr "neznámý" @@ -3376,61 +3443,61 @@ msgstr "Okno dotazů" msgid "This format has no options" msgstr "Tento formát nemá žádná nastavení" -#: libraries/relation.lib.php:82 +#: libraries/relation.lib.php:77 msgid "not OK" msgstr "není v pořádku" -#: libraries/relation.lib.php:86 pmd_general.php:339 +#: libraries/relation.lib.php:81 pmd_general.php:339 msgid "OK" msgstr "OK" -#: libraries/relation.lib.php:87 +#: libraries/relation.lib.php:82 msgid "Enabled" msgstr "Zapnuto" -#: libraries/relation.lib.php:110 +#: libraries/relation.lib.php:105 msgid "Display Features" msgstr "Zobrazení funkcí" -#: libraries/relation.lib.php:116 +#: libraries/relation.lib.php:111 msgid "Creation of PDFs" msgstr "Vytváření PDF" -#: libraries/relation.lib.php:120 +#: libraries/relation.lib.php:115 msgid "Displaying Column Comments" msgstr "Zobrazuji komentáře polí" -#: libraries/relation.lib.php:125 +#: libraries/relation.lib.php:120 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "Podívejte se prosím do dokumentace, jak aktualizovat tabulku s informacemi " "o polích (tabulka column_comments)" -#: libraries/relation.lib.php:130 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 msgid "Bookmarked SQL query" msgstr "Oblíbený SQL dotaz" -#: libraries/relation.lib.php:134 querywindow.php:99 querywindow.php:207 +#: libraries/relation.lib.php:129 querywindow.php:98 querywindow.php:205 msgid "SQL history" msgstr "SQL historie" -#: libraries/relation.lib.php:146 +#: libraries/relation.lib.php:141 msgid "Quick steps to setup advanced features:" msgstr "Stručný návod pro zapnutí rozšířených funkcí:" -#: libraries/relation.lib.php:148 +#: libraries/relation.lib.php:143 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" "Vytvořte potřebné tabulky pomocí skriptu script/create_tables.sql." -#: libraries/relation.lib.php:149 +#: libraries/relation.lib.php:144 msgid "Create a pma user and give access to these tables." msgstr "Vytvořte uživatele pma a přidělte mu oprávnění na tyto tabulky." -#: libraries/relation.lib.php:150 +#: libraries/relation.lib.php:145 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." @@ -3438,12 +3505,12 @@ msgstr "" "Zapněte rozšířené funkce v konfiguračním souboru (config.inc.php), můžete se inspirovat v config.sample.inc.php." -#: libraries/relation.lib.php:151 +#: libraries/relation.lib.php:146 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" "Prosím přihlašte se znovu , aby se projevily změny v konfiguračním souboru." -#: libraries/relation.lib.php:1158 +#: libraries/relation.lib.php:1153 msgid "no description" msgstr "žádný popisek" @@ -3451,7 +3518,7 @@ msgstr "žádný popisek" msgid "Slave configuration" msgstr "Nastavení podřízeného" -#: libraries/replication_gui.lib.php:53 server_replication.php:346 +#: libraries/replication_gui.lib.php:53 server_replication.php:345 msgid "Change or reconfigure master server" msgstr "Změnit nebo přenastavit nadřízený server" @@ -3465,16 +3532,12 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:711 -#: server_privileges.php:714 server_privileges.php:721 -#: server_synchronize.php:1170 +#: libraries/replication_gui.lib.php:261 server_privileges.php:710 +#: server_privileges.php:713 server_privileges.php:720 +#: server_synchronize.php:1169 msgid "User name" msgstr "Jméno uživatele" -#: libraries/replication_gui.lib.php:69 server_synchronize.php:1162 -msgid "Port" -msgstr "Port" - #: libraries/replication_gui.lib.php:105 msgid "Master status" msgstr "Stav nadřízeného" @@ -3489,8 +3552,8 @@ msgid "Variable" msgstr "Proměnná" #: libraries/replication_gui.lib.php:117 server_status.php:737 -#: tbl_change.php:322 tbl_printview.php:368 tbl_select.php:137 -#: tbl_structure.php:728 +#: tbl_change.php:317 tbl_printview.php:367 tbl_select.php:136 +#: tbl_structure.php:726 msgid "Value" msgstr "Hodnota" @@ -3506,38 +3569,38 @@ msgstr "" "V tomto seznamu jsou zobrazeny jen podřízené servery spuštěné s parametrem --" "report-host=host_name." -#: libraries/replication_gui.lib.php:242 server_replication.php:193 +#: libraries/replication_gui.lib.php:242 server_replication.php:192 msgid "Add slave replication user" msgstr "Přidat replikačního uživatele pro podřízený server" -#: libraries/replication_gui.lib.php:256 server_privileges.php:716 +#: libraries/replication_gui.lib.php:256 server_privileges.php:715 msgid "Any user" msgstr "Jakýkoliv uživatel" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1920 server_privileges.php:1950 +#: libraries/replication_gui.lib.php:348 server_privileges.php:716 +#: server_privileges.php:783 server_privileges.php:807 +#: server_privileges.php:1924 server_privileges.php:1954 msgid "Use text field" msgstr "Použít textové pole" -#: libraries/replication_gui.lib.php:304 server_privileges.php:764 +#: libraries/replication_gui.lib.php:304 server_privileges.php:763 msgid "Any host" msgstr "Jakýkoliv počítač" -#: libraries/replication_gui.lib.php:308 server_privileges.php:768 +#: libraries/replication_gui.lib.php:308 server_privileges.php:767 msgid "Local" msgstr "Lokální" -#: libraries/replication_gui.lib.php:314 server_privileges.php:773 +#: libraries/replication_gui.lib.php:314 server_privileges.php:772 msgid "This Host" msgstr "Tento počítač" -#: libraries/replication_gui.lib.php:320 server_privileges.php:779 +#: libraries/replication_gui.lib.php:320 server_privileges.php:778 msgid "Use Host Table" msgstr "Použít tabulku Host" -#: libraries/replication_gui.lib.php:333 server_privileges.php:792 +#: libraries/replication_gui.lib.php:333 server_privileges.php:791 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3565,8 +3628,8 @@ msgstr "Neznámý jazyk: %1$s." msgid "Servers" msgstr "Servery" -#: libraries/server_links.inc.php:52 server_engines.php:111 -#: server_engines.php:115 server_status.php:414 test/theme.php:104 +#: libraries/server_links.inc.php:52 server_engines.php:125 +#: server_engines.php:129 server_status.php:414 test/theme.php:104 msgid "Variables" msgstr "Proměnné" @@ -3587,12 +3650,12 @@ msgstr "Binární log" msgid "Processes" msgstr "Procesy" -#: libraries/server_links.inc.php:91 server_synchronize.php:1091 -#: server_synchronize.php:1099 +#: libraries/server_links.inc.php:91 server_synchronize.php:1090 +#: server_synchronize.php:1098 msgid "Synchronize" msgstr "Synchronizace" -#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1109 +#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1108 msgid "Source database" msgstr "Zdrojová databáze" @@ -3610,7 +3673,7 @@ msgstr "Vzdálený server" msgid "Difference" msgstr "Rozdíly" -#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1111 +#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1110 msgid "Target database" msgstr "Cílová databáze" @@ -3628,11 +3691,11 @@ msgstr "Spustit SQL dotaz(y) na databázi %s" msgid "Columns" msgstr "Pole" -#: libraries/sql_query_form.lib.php:342 sql.php:664 sql.php:665 sql.php:682 +#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "Přidat tento SQL dotaz do oblíbených" -#: libraries/sql_query_form.lib.php:349 sql.php:676 +#: libraries/sql_query_form.lib.php:349 sql.php:669 msgid "Let every user access this bookmark" msgstr "Umožnit všem uživatelům používat tuto položku" @@ -3727,12 +3790,12 @@ msgstr "" "SQL validátor nemohl být inicializován. Prosím zkontrolujte, jestli máte " "požadovaná rozšíření PHP, která jsou uvedena v %sdokumentaci%s." -#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:139 -#: libraries/tbl_links.inc.php:140 +#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 +#: libraries/tbl_links.inc.php:139 msgid "Table seems to be empty!" msgstr "Tabulka se zdá být prázdná!" -#: libraries/tbl_links.inc.php:148 +#: libraries/tbl_links.inc.php:147 #, php-format msgid "Tracking of %s.%s is activated." msgstr "Sledování pro %s.%s je zapnuté." @@ -3761,12 +3824,12 @@ msgstr "" "Výchozí hodnotu zadejte jen jednu hodnotu bez uvozovek a escapování znaků, " "například: a" -#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1263 -#: pdf_schema.php:1284 tbl_printview.php:142 tbl_structure.php:179 +#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1262 +#: pdf_schema.php:1283 tbl_printview.php:141 tbl_structure.php:178 msgid "Attributes" msgstr "Vlastnosti" -#: libraries/tbl_properties.inc.php:136 +#: libraries/tbl_properties.inc.php:135 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -3775,11 +3838,11 @@ msgstr "" "Pro seznam dostupných parametrů transformací a jejich MIME typů klikněte na " "%spopisy transformací%s" -#: libraries/tbl_properties.inc.php:144 +#: libraries/tbl_properties.inc.php:143 msgid "Transformation options" msgstr "Parametry transformace" -#: libraries/tbl_properties.inc.php:145 +#: libraries/tbl_properties.inc.php:144 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
                            If you ever need to put a backslash (\"\\\") or a single " @@ -3791,16 +3854,16 @@ msgstr "" "(„'“) mezi těmito hodnotami, vložte před ně zpětné lomítko (například '\\" "\\xyz' nebo 'a\\'b')." -#: libraries/tbl_properties.inc.php:392 +#: libraries/tbl_properties.inc.php:391 msgctxt "for default" msgid "None" msgstr "Žádná" -#: libraries/tbl_properties.inc.php:393 +#: libraries/tbl_properties.inc.php:392 msgid "As defined:" msgstr "Dle zadání:" -#: libraries/tbl_properties.inc.php:579 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:578 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
                            Please ask the " @@ -3809,28 +3872,28 @@ msgstr "" "Pro tuto transformaci není dostupný žádný popis.
                            Zeptejte se autora co " "%s dělá." -#: libraries/tbl_properties.inc.php:725 server_engines.php:57 -#: tbl_operations.php:354 +#: libraries/tbl_properties.inc.php:724 server_engines.php:56 +#: tbl_operations.php:352 msgid "Storage Engine" msgstr "Úložiště" -#: libraries/tbl_properties.inc.php:754 +#: libraries/tbl_properties.inc.php:753 msgid "PARTITION definition" msgstr "Definice PARTITION" -#: libraries/tbl_properties.inc.php:775 pdf_pages.php:502 +#: libraries/tbl_properties.inc.php:774 pdf_pages.php:501 #: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214 -#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1124 tbl_indexes.php:247 -#: tbl_relation.php:565 +#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1022 tbl_indexes.php:246 +#: tbl_relation.php:563 msgid "Save" msgstr "Uložit" -#: libraries/tbl_properties.inc.php:779 tbl_structure.php:541 +#: libraries/tbl_properties.inc.php:778 tbl_structure.php:539 #, php-format msgid "Add %s column(s)" msgstr "Přidat %s polí" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:535 +#: libraries/tbl_properties.inc.php:782 tbl_structure.php:533 msgid "You have to add at least one column." msgstr "Musíte přidat alespoň jedno pole." @@ -3990,8 +4053,8 @@ msgstr "Rozhraní" msgid "Custom color" msgstr "Vlastní barva" -#: main.php:162 pdf_pages.php:362 setup/lib/FormDisplay.tpl.php:216 -#: tbl_change.php:1173 +#: main.php:162 pdf_pages.php:361 setup/lib/FormDisplay.tpl.php:216 +#: tbl_change.php:1071 msgid "Reset" msgstr "Původní" @@ -3999,8 +4062,8 @@ msgstr "Původní" msgid "Protocol version" msgstr "Verze protokolu" -#: main.php:188 server_privileges.php:1381 server_privileges.php:1528 -#: server_privileges.php:1642 server_privileges.php:2060 +#: main.php:188 server_privileges.php:1385 server_privileges.php:1532 +#: server_privileges.php:1646 server_privileges.php:2064 #: server_processlist.php:53 msgid "User" msgstr "Uživatel" @@ -4090,7 +4153,16 @@ msgstr "" "existuje v adresáři s phpMyAdminem. Měli byste ho odstranit, jakmile je " "phpMyAdmin nastaven." -#: main.php:330 +#: main.php:314 +#, php-format +msgid "" +"The additional features for working with linked tables have been " +"deactivated. To find out why click %shere%s." +msgstr "" +"Některé z rozšířených funkcí phpMyAdmina nelze používat. %sZde%s zjistíte " +"proč." + +#: main.php:329 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " @@ -4100,7 +4172,7 @@ msgstr "" "phpMyAdmin nemusí fungovat správně. Například navigační rám se nebude " "automaticky obnovovat." -#: main.php:345 +#: main.php:344 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -4109,7 +4181,7 @@ msgstr "" "Používaný MySQL modul v PHP je kompilován pro MySQL %s a server používá " "verzi %s. Používání různých verzí může způsobit problémy." -#: main.php:357 +#: main.php:356 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -4122,62 +4194,62 @@ msgstr "" msgid "Reload navigation frame" msgstr "Znovu nahrát navigační rám" -#: navigation.php:204 server_databases.php:370 server_synchronize.php:1190 +#: navigation.php:203 server_databases.php:368 server_synchronize.php:1189 msgid "No databases" msgstr "Žádné databáze" -#: navigation.php:298 +#: navigation.php:297 msgid "Filter" msgstr "Filtr" -#: navigation.php:299 setup/frames/index.inc.php:218 +#: navigation.php:298 setup/frames/index.inc.php:218 #: setup/lib/messages.inc.php:41 msgid "Clear" msgstr "Vyčistit" -#: navigation.php:330 navigation.php:331 +#: navigation.php:329 navigation.php:330 msgctxt "short form" msgid "Create table" msgstr "Nová tabulka" -#: navigation.php:333 navigation.php:495 +#: navigation.php:332 navigation.php:494 msgid "Please select a database" msgstr "Prosím vyberte databázi" -#: pdf_pages.php:40 pdf_pages.php:46 pdf_pages.php:52 pdf_pages.php:57 +#: pdf_pages.php:39 pdf_pages.php:45 pdf_pages.php:51 pdf_pages.php:56 #, php-format msgid "%s table not found or not set in %s" msgstr "%s tabulka nenalezena nebo není nastavena v %s" -#: pdf_pages.php:265 +#: pdf_pages.php:264 msgid "Please choose a page to edit" msgstr "Zvolte stránku, kterou chcete změnit" -#: pdf_pages.php:303 pmd_pdf.php:113 +#: pdf_pages.php:302 pmd_pdf.php:111 msgid "Create a page" msgstr "Vytvořit novou stránku" -#: pdf_pages.php:309 +#: pdf_pages.php:308 msgid "Page name" msgstr "Jméno stránky" -#: pdf_pages.php:313 +#: pdf_pages.php:312 msgid "Automatic layout based on" msgstr "Automatické rozvržení podle" -#: pdf_pages.php:315 +#: pdf_pages.php:314 msgid "Internal relations" msgstr "Interní relace" -#: pdf_pages.php:338 +#: pdf_pages.php:337 msgid "Select Tables" msgstr "Vybrat tabulky" -#: pdf_pages.php:361 +#: pdf_pages.php:360 msgid "Toggle scratchboard" msgstr "Zobrazit grafický návrh" -#: pdf_pages.php:524 +#: pdf_pages.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -4185,35 +4257,35 @@ msgstr "" "Aktuální stránka se odkazuje na tabulky, které již neexistují. Chcete " "odstranit tyto odkazy?" -#: pdf_schema.php:635 +#: pdf_schema.php:634 #, php-format msgid "The %s table doesn't exist!" msgstr "Tabulka %s neexistuje!" -#: pdf_schema.php:671 +#: pdf_schema.php:670 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Prosím, nastavte souřadnice pro tabulku %s" -#: pdf_schema.php:994 +#: pdf_schema.php:993 #, php-format msgid "Schema of the %s database - Page %s" msgstr "Schéma databáze %s - Strana %s" -#: pdf_schema.php:1012 +#: pdf_schema.php:1011 msgid "No tables" msgstr "žádné tabulky" -#: pdf_schema.php:1031 pdf_schema.php:1140 +#: pdf_schema.php:1030 pdf_schema.php:1139 msgid "Relational schema" msgstr "Relační schéma" -#: pdf_schema.php:1115 +#: pdf_schema.php:1114 msgid "Table of contents" msgstr "Obsah" -#: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:145 -#: tbl_structure.php:182 tbl_tracking.php:277 +#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 +#: tbl_structure.php:181 tbl_tracking.php:272 msgid "Extra" msgstr "Extra" @@ -4225,7 +4297,7 @@ msgstr "Zobrazit/Skrýt levé menu" msgid "Save position" msgstr "Uložit rozmístění" -#: pmd_general.php:70 server_synchronize.php:428 server_synchronize.php:871 +#: pmd_general.php:70 server_synchronize.php:427 server_synchronize.php:870 msgid "Create table" msgstr "Vytvořit tabulku" @@ -4298,31 +4370,31 @@ msgstr "" "Zobrazované pole je zvýrazněno růžovou barvou. Pro jeho změnu klikněte na " "ikonu „Zvolte které pole zobrazit“ a poté zvolte odpovídající pole." -#: pmd_pdf.php:62 +#: pmd_pdf.php:60 msgid "Page has been created" msgstr "Stránka byla vytvořena" -#: pmd_pdf.php:64 +#: pmd_pdf.php:62 msgid "Page creation failed" msgstr "Vytvoření stránky selhalo" -#: pmd_pdf.php:84 +#: pmd_pdf.php:82 msgid "Export/Import to scale" msgstr "Exportovat/Importovat v měřítku" -#: pmd_pdf.php:88 +#: pmd_pdf.php:86 msgid "recommended" msgstr "doporučené" -#: pmd_pdf.php:93 +#: pmd_pdf.php:91 msgid "to/from page" msgstr "do/ze stránky" -#: querywindow.php:94 +#: querywindow.php:93 msgid "Import files" msgstr "Importovat soubory" -#: querywindow.php:105 +#: querywindow.php:104 msgid "All" msgstr "Všechno" @@ -4368,63 +4440,63 @@ msgstr "Informace" msgid "Character Sets and Collations" msgstr "Znakové sady a porovnávání" -#: server_databases.php:51 +#: server_databases.php:49 msgid "No databases selected." msgstr "Nebyla vybrána žádná databáze." -#: server_databases.php:62 +#: server_databases.php:60 #, php-format msgid "%s databases have been dropped successfully." msgstr "%s databáze byla úspěšně zrušena." -#: server_databases.php:87 +#: server_databases.php:85 msgid "Databases statistics" msgstr "Statistiky databází" -#: server_databases.php:116 server_status.php:370 +#: server_databases.php:114 server_status.php:370 #: setup/lib/messages.inc.php:114 msgid "Tables" msgstr "Tabulky" -#: server_databases.php:194 server_replication.php:180 -#: server_replication.php:208 +#: server_databases.php:192 server_replication.php:179 +#: server_replication.php:207 msgid "Master replication" msgstr "Replikace nadřízeného" -#: server_databases.php:196 server_replication.php:247 +#: server_databases.php:194 server_replication.php:246 msgid "Slave replication" msgstr "Replikace podřízeného" -#: server_databases.php:229 +#: server_databases.php:227 msgid "Jump to database" msgstr "Přejít na databázi" -#: server_databases.php:266 +#: server_databases.php:264 msgid "Not replicated" msgstr "Není replikováno" -#: server_databases.php:272 +#: server_databases.php:270 msgid "Replicated" msgstr "Replikováno" -#: server_databases.php:288 +#: server_databases.php:286 #, php-format msgid "Check privileges for database "%s"." msgstr "Zkontrolovat oprávnění pro databázi „%s“." -#: server_databases.php:292 server_databases.php:293 +#: server_databases.php:290 server_databases.php:291 msgid "Check Privileges" msgstr "Zkontrolovat oprávnění" -#: server_databases.php:357 server_databases.php:358 +#: server_databases.php:355 server_databases.php:356 msgid "Enable Statistics" msgstr "Zobrazit podrobnosti" -#: server_databases.php:361 server_databases.php:362 +#: server_databases.php:359 server_databases.php:360 msgid "Disable Statistics" msgstr "Skrýt podrobnosti" -#: server_databases.php:365 +#: server_databases.php:363 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -4432,122 +4504,122 @@ msgstr "" "Poznámka: Zobrazení podrobností o databázích může způsobit značné zvýšení " "provozu mezi webserverem a MySQL serverem." -#: server_engines.php:48 +#: server_engines.php:47 msgid "Storage Engines" msgstr "Úložiště" -#: server_export.php:20 +#: server_export.php:18 msgid "View dump (schema) of databases" msgstr "Export databází" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:23 server_privileges.php:265 msgid "Includes all privileges except GRANT." msgstr "Všechna oprávnění kromě GRANT." -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:24 server_privileges.php:191 +#: server_privileges.php:514 msgid "Allows altering the structure of existing tables." msgstr "Umožňuje měnit strukturu existujících tabulek." -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:25 server_privileges.php:207 +#: server_privileges.php:520 msgid "Allows altering and dropping stored routines." msgstr "Umožňuje měnit a rušit uložené procedury." -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:26 server_privileges.php:183 +#: server_privileges.php:513 msgid "Allows creating new databases and tables." msgstr "Umožňuje vytvářet nové databáze a tabulky." -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:27 server_privileges.php:206 +#: server_privileges.php:519 msgid "Allows creating stored routines." msgstr "Umožňuje vytvářet uložené procedury." -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:513 msgid "Allows creating new tables." msgstr "Umožňuje vytvářet nové tabulky." -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:29 server_privileges.php:194 +#: server_privileges.php:517 msgid "Allows creating temporary tables." msgstr "Umožňuje vytvářet dočasné tabulky." -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:30 server_privileges.php:208 +#: server_privileges.php:553 msgid "Allows creating, dropping and renaming user accounts." msgstr "Umožňuje vytvářet, rušit a přejmenovávat účty uživatelů." -#: server_privileges.php:32 server_privileges.php:199 -#: server_privileges.php:203 server_privileges.php:526 -#: server_privileges.php:530 +#: server_privileges.php:31 server_privileges.php:198 +#: server_privileges.php:202 server_privileges.php:525 +#: server_privileges.php:529 msgid "Allows creating new views." msgstr "Umožňuje vytvářet nové pohledy." -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:32 server_privileges.php:182 +#: server_privileges.php:505 msgid "Allows deleting data." msgstr "Umožňuje mazat data." -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:33 server_privileges.php:184 +#: server_privileges.php:516 msgid "Allows dropping databases and tables." msgstr "Umožňuje odstranit databáze a tabulky." -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:34 server_privileges.php:516 msgid "Allows dropping tables." msgstr "Umožňuje odstranit tabulky." -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:35 server_privileges.php:199 +#: server_privileges.php:533 msgid "Allows to set up events for the event scheduler" msgstr "Umožňuje plánovat úlohy pomocí plánovače" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:36 server_privileges.php:209 +#: server_privileges.php:521 msgid "Allows executing stored routines." msgstr "Umožňuje spouštět uložené procedury." -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:37 server_privileges.php:188 +#: server_privileges.php:508 msgid "Allows importing data from and exporting data into files." msgstr "Umožňuje importovat a exportovat data z/do souborů na serveru." -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:38 server_privileges.php:539 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Umožňuje přidávat uživatele a oprávnění bez znovunačítání tabulek " "s oprávněními." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:515 msgid "Allows creating and dropping indexes." msgstr "Umožňuje vytvářet a rušit indexy." -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:40 server_privileges.php:180 +#: server_privileges.php:441 server_privileges.php:503 msgid "Allows inserting and replacing data." msgstr "Umožňuje vkládat a přepisovat data." -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:41 server_privileges.php:195 +#: server_privileges.php:548 msgid "Allows locking tables for the current thread." msgstr "Umožňuje zamknout tabulku pro aktuální vlákno." -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:42 server_privileges.php:645 +#: server_privileges.php:647 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Omezuje počet nových připojení, která může uživatel vytvořit za hodinu." -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:43 server_privileges.php:633 +#: server_privileges.php:635 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Omezuje, kolik dotazů může uživatel odeslat serveru za hodinu." -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:44 server_privileges.php:639 +#: server_privileges.php:641 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -4555,60 +4627,60 @@ msgstr "" "Omezuje, kolik dotazů měnících nějakou tabulku nebo databázi může uživatel " "spustit za hodinu." -#: server_privileges.php:46 server_privileges.php:652 -#: server_privileges.php:654 +#: server_privileges.php:45 server_privileges.php:651 +#: server_privileges.php:653 msgid "Limits the number of simultaneous connections the user may have." msgstr "Omezuje počet současných připojení uživatele." -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:46 server_privileges.php:187 +#: server_privileges.php:543 msgid "Allows viewing processes of all users" msgstr "Umožňuje prohlížet procesy všech uživatelů" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:47 server_privileges.php:189 +#: server_privileges.php:447 server_privileges.php:549 msgid "Has no effect in this MySQL version." msgstr "Nemá žádný vliv v této verzi MySQL." -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:48 server_privileges.php:185 +#: server_privileges.php:544 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Umožňuje znovu načíst nastavení a vyprázdnění vyrovnávacích pamětí MySQL " "serveru." -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:197 +#: server_privileges.php:551 msgid "Allows the user to ask where the slaves / masters are." msgstr "Umožní uživateli zjistit, kde je hlavní / pomocný server." -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:50 server_privileges.php:196 +#: server_privileges.php:552 msgid "Needed for the replication slaves." msgstr "Potřebné pro replikaci pomocných serverů." -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:51 server_privileges.php:179 +#: server_privileges.php:438 server_privileges.php:502 msgid "Allows reading data." msgstr "Umožňuje vybírat data." -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:52 server_privileges.php:192 +#: server_privileges.php:546 msgid "Gives access to the complete list of databases." msgstr "Umožňuje přístup k úplnému seznamu databází." -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:53 server_privileges.php:203 +#: server_privileges.php:205 server_privileges.php:518 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Umožňuje spuštění dotazu SHOW CREATE VIEW." -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:54 server_privileges.php:186 +#: server_privileges.php:545 msgid "Allows shutting down the server." msgstr "Umožňuje vypnout server." -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:55 server_privileges.php:193 +#: server_privileges.php:542 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -4618,152 +4690,152 @@ msgstr "" "pro většinu operací pro správu serveru jako nastavování globálních " "proměnných a zabíjení vláken jiných uživatelů." -#: server_privileges.php:57 server_privileges.php:201 -#: server_privileges.php:535 +#: server_privileges.php:56 server_privileges.php:200 +#: server_privileges.php:534 msgid "Allows creating and dropping triggers" msgstr "Umožňuje vytváření a mazání spouští" -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:57 server_privileges.php:181 +#: server_privileges.php:444 server_privileges.php:504 msgid "Allows changing data." msgstr "Umožňuje měnit data." -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:58 server_privileges.php:259 msgid "No privileges." msgstr "Žádná oprávnění." -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:301 server_privileges.php:302 msgctxt "None privileges" msgid "None" msgstr "Žádná" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1710 server_privileges.php:1716 +#: server_privileges.php:430 server_privileges.php:565 +#: server_privileges.php:1714 server_privileges.php:1720 msgid "Table-specific privileges" msgstr "Oprávnění pro jednotlivé tabulky" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1532 +#: server_privileges.php:431 server_privileges.php:573 +#: server_privileges.php:1536 msgid " Note: MySQL privilege names are expressed in English " msgstr " Poznámka: názvy oprávnění v MySQL jsou uváděny anglicky " -#: server_privileges.php:563 server_privileges.php:1531 +#: server_privileges.php:562 server_privileges.php:1535 msgid "Global privileges" msgstr "Globální oprávnění" -#: server_privileges.php:565 server_privileges.php:1710 +#: server_privileges.php:564 server_privileges.php:1714 msgid "Database-specific privileges" msgstr "Oprávnění pro jednotlivé databáze" -#: server_privileges.php:610 +#: server_privileges.php:609 msgid "Administration" msgstr "Správa" -#: server_privileges.php:630 +#: server_privileges.php:629 msgid "Resource limits" msgstr "Omezení zdrojů" -#: server_privileges.php:631 +#: server_privileges.php:630 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Poznámka: Nastavení těchto parametrů na 0 (nulu) odstraní omezení." -#: server_privileges.php:708 +#: server_privileges.php:707 msgid "Login Information" msgstr "Přihlašování" -#: server_privileges.php:802 +#: server_privileges.php:801 msgid "Do not change the password" msgstr "Neměnit heslo" -#: server_privileges.php:835 server_privileges.php:2197 +#: server_privileges.php:834 server_privileges.php:2201 msgid "No user found." msgstr "Nebyl nalezen žádný uživatel." -#: server_privileges.php:879 +#: server_privileges.php:878 #, php-format msgid "The user %s already exists!" msgstr "Uživatel %s již existuje!" -#: server_privileges.php:962 +#: server_privileges.php:961 msgid "You have added a new user." msgstr "Uživatel byl přidán." -#: server_privileges.php:1183 +#: server_privileges.php:1184 #, php-format msgid "You have updated the privileges for %s." msgstr "Byla aktualizována oprávnění pro %s." -#: server_privileges.php:1207 +#: server_privileges.php:1208 #, php-format msgid "You have revoked the privileges for %s" msgstr "Byla zrušena práva pro %s" -#: server_privileges.php:1243 +#: server_privileges.php:1244 #, php-format msgid "The password for %s was changed successfully." msgstr "Heslo pro %s bylo úspěšně změněno." -#: server_privileges.php:1263 +#: server_privileges.php:1264 #, php-format msgid "Deleting %s" msgstr "Odstraňuji %s" -#: server_privileges.php:1274 +#: server_privileges.php:1275 msgid "No users selected for deleting!" msgstr "Musíte vybrat uživatele, které chcete odstranit!" -#: server_privileges.php:1277 +#: server_privileges.php:1278 msgid "Reloading the privileges" msgstr "Načítám oprávnění" -#: server_privileges.php:1292 +#: server_privileges.php:1296 msgid "The selected users have been deleted successfully." msgstr "Vybraní uživatelé byli úspěšně odstraněni." -#: server_privileges.php:1327 +#: server_privileges.php:1331 msgid "The privileges were reloaded successfully." msgstr "Oprávnění byla načtena úspěšně." -#: server_privileges.php:1355 server_privileges.php:1641 +#: server_privileges.php:1359 server_privileges.php:1645 msgid "Edit Privileges" msgstr "Upravit oprávnění" -#: server_privileges.php:1364 +#: server_privileges.php:1368 msgid "Revoke" msgstr "Zrušit" -#: server_privileges.php:1396 +#: server_privileges.php:1400 msgid "User overview" msgstr "Přehled uživatelů" -#: server_privileges.php:1533 server_privileges.php:1715 -#: server_privileges.php:2064 +#: server_privileges.php:1537 server_privileges.php:1719 +#: server_privileges.php:2068 msgid "Grant" msgstr "Přidělování" -#: server_privileges.php:1552 server_privileges.php:2154 +#: server_privileges.php:1556 server_privileges.php:2158 msgid "Any" msgstr "Jakýkoliv" -#: server_privileges.php:1601 server_privileges.php:1625 -#: server_privileges.php:2019 server_privileges.php:2208 +#: server_privileges.php:1605 server_privileges.php:1629 +#: server_privileges.php:2023 server_privileges.php:2212 msgid "Add a new User" msgstr "Přidat nového uživatele" -#: server_privileges.php:1606 +#: server_privileges.php:1610 msgid "Remove selected users" msgstr "Odstranit vybrané uživatele" -#: server_privileges.php:1609 +#: server_privileges.php:1613 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Odebrat uživatelům veškerá oprávnění a poté je odstranit z tabulek." -#: server_privileges.php:1610 server_privileges.php:1611 -#: server_privileges.php:1612 +#: server_privileges.php:1614 server_privileges.php:1615 +#: server_privileges.php:1616 msgid "Drop the databases that have the same names as the users." msgstr "Odstranit databáze se stejnými jmény jako uživatelé." -#: server_privileges.php:1628 +#: server_privileges.php:1632 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4776,91 +4848,91 @@ msgstr "" "tyto tabulky upravovány. V tomto případě je vhodné provést %snové načtení " "oprávnění%s před pokračováním." -#: server_privileges.php:1676 +#: server_privileges.php:1680 msgid "The selected user was not found in the privilege table." msgstr "Zvolený uživatel nebyl nalezen v tabulce oprávnění." -#: server_privileges.php:1716 +#: server_privileges.php:1720 msgid "Column-specific privileges" msgstr "Oprávnění pro jednotlivá pole" -#: server_privileges.php:1917 +#: server_privileges.php:1921 msgid "Add privileges on the following database" msgstr "Přidat oprávnění pro databázi" -#: server_privileges.php:1935 +#: server_privileges.php:1939 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "Zástupné znaky _ a % by měly být escapovány pomocí \\ pokud je chcete použít " "jako znak" -#: server_privileges.php:1938 +#: server_privileges.php:1942 msgid "Add privileges on the following table" msgstr "Přidat oprávnění pro tabulku" -#: server_privileges.php:1995 +#: server_privileges.php:1999 msgid "Change Login Information / Copy User" msgstr "Změnit informace o uživateli / Kopírovat uživatele" -#: server_privileges.php:1998 +#: server_privileges.php:2002 msgid "Create a new user with the same privileges and ..." msgstr "Vytvořit nového uživatele se stejnými oprávněními a ..." -#: server_privileges.php:2000 +#: server_privileges.php:2004 msgid "... keep the old one." msgstr "... zachovat původního uživatele." -#: server_privileges.php:2001 +#: server_privileges.php:2005 msgid " ... delete the old one from the user tables." msgstr " ... smazat původního uživatele ze všech tabulek." -#: server_privileges.php:2002 +#: server_privileges.php:2006 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr " ... odebrat všechna oprávnění původnímu uživateli a poté ho smazat." -#: server_privileges.php:2003 +#: server_privileges.php:2007 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr " ... smazat uživatele a poté znovu načíst oprávnění." -#: server_privileges.php:2025 +#: server_privileges.php:2029 msgid "Database for user" msgstr "Databáze pro uživatele" -#: server_privileges.php:2029 +#: server_privileges.php:2033 msgctxt "Create none database for user" msgid "None" msgstr "Žádná" -#: server_privileges.php:2030 +#: server_privileges.php:2034 msgid "Create database with same name and grant all privileges" msgstr "Vytvořit databázi stejného jména a přidělit všechna oprávnění" -#: server_privileges.php:2031 +#: server_privileges.php:2035 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Přidělit všechna oprávnění na jméno odpovídající masce (uživatel\\_%)" -#: server_privileges.php:2034 +#: server_privileges.php:2038 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Přidělit všechna oprávnění na databázi "%s"" -#: server_privileges.php:2057 +#: server_privileges.php:2061 #, php-format msgid "Users having access to "%s"" msgstr "Uživatelé mající přístup k „%s“" -#: server_privileges.php:2165 +#: server_privileges.php:2169 msgid "global" msgstr "globální" -#: server_privileges.php:2167 +#: server_privileges.php:2171 msgid "database-specific" msgstr "závislé na databázi" -#: server_privileges.php:2169 +#: server_privileges.php:2173 msgid "wildcard" msgstr "maska" @@ -4881,44 +4953,44 @@ msgstr "" msgid "ID" msgstr "ID" -#: server_replication.php:50 +#: server_replication.php:49 msgid "Unknown error" msgstr "Neznámá chyba" -#: server_replication.php:57 +#: server_replication.php:56 #, php-format msgid "Unable to connect to master %s." msgstr "Nepodařilo se připojit k nadřízenému %s." -#: server_replication.php:64 +#: server_replication.php:63 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" "Nepodařilo se zjistit pozici v logu na nadřízeném serveru. Pravděpodobně je " "na něm problém s přístupovými právy." -#: server_replication.php:70 +#: server_replication.php:69 msgid "Unable to change master" msgstr "Nepodařilo se změnit nadřízeného" -#: server_replication.php:73 +#: server_replication.php:72 #, php-format msgid "Master server changed succesfully to %s" msgstr "Nadřízený server bych úspěšně změněn na %s" -#: server_replication.php:181 +#: server_replication.php:180 msgid "This server is configured as master in a replication process." msgstr "Tento server je v replikačním procesu nastavený jako nadřízený." -#: server_replication.php:183 server_status.php:391 +#: server_replication.php:182 server_status.php:391 msgid "Show master status" msgstr "Zobrazit stav nadřízeného" -#: server_replication.php:186 +#: server_replication.php:185 msgid "Show connected slaves" msgstr "Zobrazit připojené podřízené" -#: server_replication.php:209 +#: server_replication.php:208 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -4927,11 +4999,11 @@ msgstr "" "Tento server není nastaven jako nadřízený v replikačním procesu. Přejete si " "ho nastavit?" -#: server_replication.php:216 +#: server_replication.php:215 msgid "Master configuration" msgstr "Nastavení nadřízeného" -#: server_replication.php:217 +#: server_replication.php:216 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -4944,19 +5016,19 @@ msgstr "" "chcete replikovat většinu databází) nebo můžete zvolit opačný přístup - jen " "vybrat databáze, které chcete synchronizovat. Prosím zvolte požadovaný režim:" -#: server_replication.php:220 +#: server_replication.php:219 msgid "Replicate all databases; Ignore:" msgstr "Replikovat všechny databáze s výjimkou::" -#: server_replication.php:221 +#: server_replication.php:220 msgid "Ignore all databases; Replicate:" msgstr "Nereplikovat databáze s výjimkou:" -#: server_replication.php:224 +#: server_replication.php:223 msgid "Please select databases:" msgstr "Prosím vyberte databáze:" -#: server_replication.php:227 +#: server_replication.php:226 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -4964,7 +5036,7 @@ msgstr "" "Nyní, prosím, přidejte následující řádky na konec sekce [mysqld] ve vašem " "souboru my.cnf a poté restartutje MySQL server." -#: server_replication.php:229 +#: server_replication.php:228 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " @@ -4973,84 +5045,84 @@ msgstr "" "Prosím klikněte na tlačítko po restartování MySQL serveru. Poté byste měli " "vidět zprávu informující vás že server je nastaven jako nadřízený" -#: server_replication.php:292 +#: server_replication.php:291 msgid "Slave SQL Thread not running!" msgstr "SQL vlákno pro podřízený server neběží!" -#: server_replication.php:295 +#: server_replication.php:294 msgid "Slave IO Thread not running!" msgstr "IO vlákno pro podřízený server neběží!" -#: server_replication.php:304 +#: server_replication.php:303 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "Server je nastaven jako podřízený v replikačním procesu. Přejete si:" -#: server_replication.php:307 +#: server_replication.php:306 msgid "See slave status table" msgstr "Zobrazit tabulku se stavem podřízených" -#: server_replication.php:310 +#: server_replication.php:309 msgid "Synchronize databases with master" msgstr "Synchronizovat databáze s nadřízeným" -#: server_replication.php:321 +#: server_replication.php:320 msgid "Control slave:" msgstr "Ovládání podřízeného:" -#: server_replication.php:324 +#: server_replication.php:323 msgid "Full start" msgstr "Kompletně spustit" -#: server_replication.php:324 +#: server_replication.php:323 msgid "Full stop" msgstr "Kompletně zastavit" -#: server_replication.php:325 +#: server_replication.php:324 msgid "Reset slave" msgstr "Resetovat podřízený server" -#: server_replication.php:326 +#: server_replication.php:325 #, php-format msgid "SQL Thread %s only" msgstr "%s jen SQL vlákno" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 msgid "Start" msgstr "Spustit" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 msgid "Stop" msgstr "Zastavit" -#: server_replication.php:327 +#: server_replication.php:326 #, php-format msgid "IO Thread %s only" msgstr "%s jen IO vlákno" -#: server_replication.php:331 +#: server_replication.php:330 msgid "Error management:" msgstr "Práce s chybami:" -#: server_replication.php:333 +#: server_replication.php:332 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" "Přeskakování chyb může vést k rozdílným datům na nadřízeném a podřízeném " "serveru." -#: server_replication.php:335 +#: server_replication.php:334 msgid "Skip current error" msgstr "Přeskočit současnou chybu" -#: server_replication.php:336 +#: server_replication.php:335 msgid "Skip next" msgstr "Přeskočit dalších" -#: server_replication.php:339 +#: server_replication.php:338 msgid "errors." msgstr "chyb." -#: server_replication.php:354 +#: server_replication.php:353 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -5856,110 +5928,110 @@ msgstr "Typ dotazu" msgid "Replication status" msgstr "Stav replikace" -#: server_synchronize.php:93 +#: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "Nepodařilo se připojit ke zdrojové databázi" -#: server_synchronize.php:96 +#: server_synchronize.php:95 msgid "Could not connect to the target" msgstr "Nepodařilo se připojit k cílové databázi" -#: server_synchronize.php:121 server_synchronize.php:124 tbl_create.php:77 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "Databáze '%s' neexistuje." -#: server_synchronize.php:264 +#: server_synchronize.php:263 msgid "Structure Synchronization" msgstr "Synchronizace struktury" -#: server_synchronize.php:271 +#: server_synchronize.php:270 msgid "Data Synchronization" msgstr "Synchronizace dat" -#: server_synchronize.php:399 server_synchronize.php:838 +#: server_synchronize.php:398 server_synchronize.php:837 msgid "not present" msgstr "zde není" -#: server_synchronize.php:423 server_synchronize.php:866 +#: server_synchronize.php:422 server_synchronize.php:865 msgid "Structure Difference" msgstr "Rozdíly ve struktuře" -#: server_synchronize.php:424 server_synchronize.php:867 +#: server_synchronize.php:423 server_synchronize.php:866 msgid "Data Difference" msgstr "Rozdíl mezi daty" -#: server_synchronize.php:429 server_synchronize.php:872 +#: server_synchronize.php:428 server_synchronize.php:871 msgid "Add column(s)" msgstr "Přidat pole" -#: server_synchronize.php:430 server_synchronize.php:873 +#: server_synchronize.php:429 server_synchronize.php:872 msgid "Remove column(s)" msgstr "Odstranit pole" -#: server_synchronize.php:431 server_synchronize.php:874 +#: server_synchronize.php:430 server_synchronize.php:873 msgid "Alter column(s)" msgstr "Změnit pole" -#: server_synchronize.php:432 server_synchronize.php:875 +#: server_synchronize.php:431 server_synchronize.php:874 msgid "Remove index(s)" msgstr "Odstranit indexy" -#: server_synchronize.php:433 server_synchronize.php:876 +#: server_synchronize.php:432 server_synchronize.php:875 msgid "Apply index(s)" msgstr "Applikovat indexy" -#: server_synchronize.php:434 server_synchronize.php:877 +#: server_synchronize.php:433 server_synchronize.php:876 msgid "Update row(s)" msgstr "Aktuallizovat řádky" -#: server_synchronize.php:435 server_synchronize.php:878 +#: server_synchronize.php:434 server_synchronize.php:877 msgid "Insert row(s)" msgstr "Vložit řádky" -#: server_synchronize.php:445 server_synchronize.php:889 +#: server_synchronize.php:444 server_synchronize.php:888 msgid "Would you like to delete all the previous rows from target tables?" msgstr "Chcete odstranit všechny stávající řídky z cílových tabulek?" -#: server_synchronize.php:448 server_synchronize.php:893 +#: server_synchronize.php:447 server_synchronize.php:892 msgid "Apply Selected Changes" msgstr "Provést vybrané změny" -#: server_synchronize.php:450 server_synchronize.php:895 +#: server_synchronize.php:449 server_synchronize.php:894 msgid "Synchronize Databases" msgstr "Synchronizovat databáze" -#: server_synchronize.php:463 +#: server_synchronize.php:462 msgid "Selected target tables have been synchronized with source tables." msgstr "Vybrané cílové tabulky byly synchronizovány se zdrojovými." -#: server_synchronize.php:941 +#: server_synchronize.php:940 msgid "Target database has been synchronized with source database" msgstr "Cílová databáze byla synchronizována se zdrojovou" -#: server_synchronize.php:1002 +#: server_synchronize.php:1001 msgid "The following queries have been executed:" msgstr "Byly provedeny následující dotazy:" -#: server_synchronize.php:1121 +#: server_synchronize.php:1120 msgid "Enter manually" msgstr "Zadat ručně" -#: server_synchronize.php:1122 +#: server_synchronize.php:1121 msgid "Current connection" msgstr "Současné připojení" -#: server_synchronize.php:1151 +#: server_synchronize.php:1150 #, php-format msgid "Configuration: %s" msgstr "Konfigurace: %s" -#: server_synchronize.php:1166 +#: server_synchronize.php:1165 msgid "Socket" msgstr "Socket" -#: server_synchronize.php:1212 +#: server_synchronize.php:1211 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -6550,10 +6622,15 @@ msgid "Signon login options" msgstr "Volby přihlašování pomocí Signon" #: setup/lib/messages.inc.php:128 +#, fuzzy +#| msgid "" +#| "Configure phpMyAdmin database to gain access to additional features, see " +#| "[a@../Documentation.html#linked-tables]linked-tables infrastructure[/a] " +#| "in documentation" msgid "" "Configure phpMyAdmin database to gain access to additional features, see " -"[a@../Documentation.html#linked-tables]linked-tables infrastructure[/a] in " -"documentation" +"[a@../Documentation.html#linked-tables]phpMyAdmin configuration storage[/a] " +"in documentation" msgstr "" "Nastavení databáze phpMyAdmina tak, aby získal přístup k dodatečným funkcím, " "viz [a@../Documentation.html#linked-tables]infrastruktura propojených tabulek" @@ -7729,112 +7806,112 @@ msgstr "" msgid "ZIP" msgstr "ZIP" -#: sql.php:495 tbl_replace.php:385 +#: sql.php:494 tbl_replace.php:384 #, php-format msgid "Inserted row id: %1$d" msgstr "ID vloženého řádku: %1$d" -#: sql.php:512 +#: sql.php:511 msgid "Showing as PHP code" msgstr "Zobrazuji jako PHP kód" -#: sql.php:515 tbl_replace.php:359 +#: sql.php:514 tbl_replace.php:358 msgid "Showing SQL query" msgstr "Zobrazuji SQL dotaz" -#: sql.php:517 +#: sql.php:516 msgid "Validated SQL" msgstr "Proběhlo ověření SQL" -#: sql.php:638 +#: sql.php:631 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problémy s indexy v tabulce `%s`" -#: sql.php:670 +#: sql.php:663 msgid "Label" msgstr "Název" -#: tbl_addfield.php:188 tbl_alter.php:102 tbl_indexes.php:97 +#: tbl_addfield.php:185 tbl_alter.php:100 tbl_indexes.php:97 #, php-format msgid "Table %1$s has been altered successfully" msgstr "Tabulka %1$s byla úspěšně změněna" -#: tbl_change.php:250 tbl_select.php:26 tbl_select.php:27 tbl_select.php:30 -#: tbl_select.php:33 +#: tbl_change.php:245 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_select.php:32 msgid "Browse foreign values" msgstr "Projít hodnoty cizích klíčů" -#: tbl_change.php:280 tbl_change.php:318 +#: tbl_change.php:275 tbl_change.php:313 msgid "Function" msgstr "Funkce" -#: tbl_change.php:300 tbl_indexes.php:199 tbl_indexes.php:224 +#: tbl_change.php:295 tbl_indexes.php:198 tbl_indexes.php:223 msgid "Ignore" msgstr "Ignorovat" -#: tbl_change.php:725 +#: tbl_change.php:720 msgid " Because of its length,
                            this column might not be editable " msgstr " Toto pole možná nepůjde
                            kvůli délce upravit " -#: tbl_change.php:884 +#: tbl_change.php:835 msgid "Remove BLOB Repository Reference" msgstr "Odstranit odkaz do skladiště BLOBů" -#: tbl_change.php:890 +#: tbl_change.php:841 msgid "Binary - do not edit" msgstr "Binární - neupravujte" -#: tbl_change.php:983 +#: tbl_change.php:889 msgid "Upload to BLOB repository" msgstr "Nahrát do skladiště BLOBů" -#: tbl_change.php:1128 +#: tbl_change.php:1026 msgid "Insert as new row" msgstr "Vložit jako nový řádek" -#: tbl_change.php:1129 +#: tbl_change.php:1027 msgid "Insert as new row and ignore errors" msgstr "Vložit jako nový řádek a ignorovat chyby" -#: tbl_change.php:1130 +#: tbl_change.php:1028 msgid "Show insert query" msgstr "Zobrazit dotaz pro vložení" -#: tbl_change.php:1145 +#: tbl_change.php:1043 msgid "Go back to previous page" msgstr "Návrat na předchozí stránku" -#: tbl_change.php:1146 +#: tbl_change.php:1044 msgid "Insert another new row" msgstr "Vložit další řádek" -#: tbl_change.php:1150 +#: tbl_change.php:1048 msgid "Go back to this page" msgstr "Návrat na tuto stránku" -#: tbl_change.php:1158 +#: tbl_change.php:1056 msgid "Edit next row" msgstr "Upravit následující řádek" -#: tbl_change.php:1169 +#: tbl_change.php:1067 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Použijte klávesu TAB pro pohyb mezi hodnotami nebo CTRL+šipky po pohyb všemi " "směry" -#: tbl_change.php:1207 +#: tbl_change.php:1105 #, php-format msgid "Restart insertion with %s rows" msgstr "Začít znovu vkládání s %s řádky" -#: tbl_create.php:57 +#: tbl_create.php:55 #, php-format msgid "Table %s already exists!" msgstr "Tabulka %s již existuje!" -#: tbl_create.php:244 +#: tbl_create.php:241 #, php-format msgid "Table %1$s has been created." msgstr "Byla vytvořena tabulka %1$s." @@ -7855,197 +7932,197 @@ msgstr "Index nemůžete přejmenovat na „PRIMARY“!" msgid "No index parts defined!" msgstr "Nebyla zadána žádná část indexu!" -#: tbl_indexes.php:159 +#: tbl_indexes.php:158 msgid "Create a new index" msgstr "Vytvořit nový index" -#: tbl_indexes.php:161 +#: tbl_indexes.php:160 msgid "Modify an index" msgstr "Upravit index" -#: tbl_indexes.php:167 +#: tbl_indexes.php:166 msgid "Index name:" msgstr "Jméno indexu:" -#: tbl_indexes.php:173 +#: tbl_indexes.php:172 msgid "Index type:" msgstr "Typ indexu:" -#: tbl_indexes.php:183 +#: tbl_indexes.php:182 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "(„PRIMARY“ musí být jméno pouze primárního klíče!)" -#: tbl_indexes.php:250 +#: tbl_indexes.php:249 #, php-format msgid "Add to index  %s column(s)" msgstr "Přidat %s polí do indexu" -#: tbl_indexes.php:255 tbl_structure.php:588 tbl_structure.php:599 +#: tbl_indexes.php:254 tbl_structure.php:586 tbl_structure.php:597 msgid "Column count has to be larger than zero." msgstr "Počet polí musí být větší než nula." -#: tbl_move_copy.php:45 +#: tbl_move_copy.php:44 msgid "Can't move table to same one!" msgstr "Nelze přesunout tabulku na sebe samu!" -#: tbl_move_copy.php:47 +#: tbl_move_copy.php:46 msgid "Can't copy table to same one!" msgstr "Nelze kopírovat tabulku na sebe samu!" -#: tbl_move_copy.php:55 +#: tbl_move_copy.php:54 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabulka %s byla přesunuta do %s." -#: tbl_move_copy.php:57 +#: tbl_move_copy.php:56 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabulka %s byla zkopírována do %s." -#: tbl_move_copy.php:81 +#: tbl_move_copy.php:80 msgid "The table name is empty!" msgstr "Jméno tabulky je prázdné!" -#: tbl_operations.php:248 +#: tbl_operations.php:246 msgid "Alter table order by" msgstr "Změnit pořadí tabulky podle" -#: tbl_operations.php:257 +#: tbl_operations.php:255 msgid "(singly)" msgstr "(po jednom)" -#: tbl_operations.php:277 +#: tbl_operations.php:275 msgid "Move table to (database.table):" msgstr "Přesunout tabulku do (databáze.tabulka):" -#: tbl_operations.php:335 +#: tbl_operations.php:333 msgid "Table options" msgstr "Parametry tabulky" -#: tbl_operations.php:339 +#: tbl_operations.php:337 msgid "Rename table to" msgstr "Přejmenovat tabulku na" -#: tbl_operations.php:510 +#: tbl_operations.php:508 msgid "Copy table to (database.table):" msgstr "Kopírovat tabulku do (databáze.tabulka):" -#: tbl_operations.php:557 +#: tbl_operations.php:555 msgid "Switch to copied table" msgstr "Přepnout na zkopírovanou tabulku" -#: tbl_operations.php:569 +#: tbl_operations.php:567 msgid "Table maintenance" msgstr "Údržba tabulky" -#: tbl_operations.php:590 +#: tbl_operations.php:588 msgid "Defragment table" msgstr "Defragmentovat tabulku" -#: tbl_operations.php:629 +#: tbl_operations.php:627 #, php-format msgid "Table %s has been flushed" msgstr "Vyrovnávací paměť pro tabulku %s byla vyprázdněna" -#: tbl_operations.php:635 +#: tbl_operations.php:633 msgid "Flush the table (FLUSH)" msgstr "Vyprázdnit vyrovnávací paměť pro tabulku („FLUSH“)" -#: tbl_operations.php:650 +#: tbl_operations.php:648 msgid "Partition maintenance" msgstr "Údržba oddílů" -#: tbl_operations.php:658 +#: tbl_operations.php:656 #, php-format msgid "Partition %s" msgstr "Oddíl %s" -#: tbl_operations.php:661 +#: tbl_operations.php:659 msgid "Analyze" msgstr "Analyzovat" -#: tbl_operations.php:662 +#: tbl_operations.php:660 msgid "Check" msgstr "Zkontrolovat" -#: tbl_operations.php:663 +#: tbl_operations.php:661 msgid "Optimize" msgstr "Optimalizovat" -#: tbl_operations.php:664 +#: tbl_operations.php:662 msgid "Rebuild" msgstr "Přestavět" -#: tbl_operations.php:665 +#: tbl_operations.php:663 msgid "Repair" msgstr "Opravit" -#: tbl_operations.php:677 +#: tbl_operations.php:675 msgid "Remove partitioning" msgstr "Zrušit oddíly" -#: tbl_operations.php:703 +#: tbl_operations.php:701 msgid "Check referential integrity:" msgstr "Zkontrolovat integritu odkazů:" -#: tbl_printview.php:73 +#: tbl_printview.php:72 msgid "Show tables" msgstr "Zobrazit tabulky" -#: tbl_printview.php:308 tbl_structure.php:655 +#: tbl_printview.php:307 tbl_structure.php:653 msgid "Space usage" msgstr "Využití místa" -#: tbl_printview.php:312 tbl_structure.php:659 +#: tbl_printview.php:311 tbl_structure.php:657 msgid "Usage" msgstr "Používá" -#: tbl_printview.php:339 tbl_structure.php:686 +#: tbl_printview.php:338 tbl_structure.php:684 msgid "Effective" msgstr "Efektivní" -#: tbl_printview.php:364 tbl_structure.php:724 +#: tbl_printview.php:363 tbl_structure.php:722 msgid "Row Statistics" msgstr "Statistika řádků" -#: tbl_printview.php:367 tbl_structure.php:727 +#: tbl_printview.php:366 tbl_structure.php:725 msgid "Statements" msgstr "Údaj" -#: tbl_printview.php:378 tbl_structure.php:739 +#: tbl_printview.php:377 tbl_structure.php:737 msgid "static" msgstr "statický" -#: tbl_printview.php:380 tbl_structure.php:741 +#: tbl_printview.php:379 tbl_structure.php:739 msgid "dynamic" msgstr "dynamický" -#: tbl_printview.php:402 tbl_structure.php:784 +#: tbl_printview.php:401 tbl_structure.php:782 msgid "Row length" msgstr "Délka řádku" -#: tbl_printview.php:412 tbl_structure.php:792 +#: tbl_printview.php:411 tbl_structure.php:790 msgid " Row size " msgstr " Velikost řádku " -#: tbl_relation.php:278 +#: tbl_relation.php:276 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "Chyba při vytváření cizího klíče na %1$s (zkotrolujte typ pole)" -#: tbl_relation.php:404 +#: tbl_relation.php:402 msgid "Internal relation" msgstr "Interní relace" -#: tbl_relation.php:406 +#: tbl_relation.php:404 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" "Interní relace není potřebná pokud existuje stejná relace pomocí FOREIGN KEY." -#: tbl_relation.php:412 +#: tbl_relation.php:410 msgid "Foreign key constraint" msgstr "Omezení cizího klíče" @@ -8053,113 +8130,113 @@ msgstr "Omezení cizího klíče" msgid "No rows selected" msgstr "Nebyl vybrán žádný řádek" -#: tbl_select.php:130 +#: tbl_select.php:129 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Provést „dotaz podle příkladu“ (zástupný znak: „%“)" -#: tbl_select.php:136 +#: tbl_select.php:135 msgid "Operator" msgstr "Operátor" -#: tbl_select.php:267 +#: tbl_select.php:266 msgid "Select columns (at least one):" msgstr "Zvolte pole (alespoň jedno):" -#: tbl_select.php:285 +#: tbl_select.php:284 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Přidat vyhledávací parametry (část dotazu po příkazu „WHERE“):" -#: tbl_select.php:292 +#: tbl_select.php:291 msgid "Number of rows per page" msgstr "záznamů na stránku" -#: tbl_select.php:298 +#: tbl_select.php:297 msgid "Display order:" msgstr "Seřadit podle:" -#: tbl_structure.php:160 +#: tbl_structure.php:159 msgid "Browse distinct values" msgstr "Procházet odlišné hodnoty" -#: tbl_structure.php:360 +#: tbl_structure.php:358 msgctxt "None for default" msgid "None" msgstr "Žádná" -#: tbl_structure.php:373 +#: tbl_structure.php:371 #, php-format msgid "Column %s has been dropped" msgstr "Pole %s byla odstraněno" -#: tbl_structure.php:384 +#: tbl_structure.php:382 #, php-format msgid "A primary key has been added on %s" msgstr "V tabulce %s byl vytvořen primární klíč" -#: tbl_structure.php:399 tbl_structure.php:413 tbl_structure.php:427 +#: tbl_structure.php:397 tbl_structure.php:411 tbl_structure.php:425 #, php-format msgid "An index has been added on %s" msgstr "Na poli %s byl vytvořen index" -#: tbl_structure.php:505 tbl_structure.php:507 +#: tbl_structure.php:503 tbl_structure.php:505 msgid "Relation view" msgstr "Zobrazit relace" -#: tbl_structure.php:514 tbl_structure.php:516 +#: tbl_structure.php:512 tbl_structure.php:514 msgid "Propose table structure" msgstr "Navrhnout strukturu tabulky" -#: tbl_structure.php:539 +#: tbl_structure.php:537 msgid "Add column" msgstr "Přidat sloupec" -#: tbl_structure.php:553 +#: tbl_structure.php:551 msgid "At End of Table" msgstr "Na konci tabulky" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At Beginning of Table" msgstr "Na začátku tabulky" -#: tbl_structure.php:555 +#: tbl_structure.php:553 #, php-format msgid "After %s" msgstr "Po %s" -#: tbl_structure.php:593 +#: tbl_structure.php:591 #, php-format msgid "Create an index on  %s columns" msgstr "Vytvořit index na  %s polích" -#: tbl_structure.php:755 +#: tbl_structure.php:753 msgid "partitioned" msgstr "používá oddíly" -#: tbl_tracking.php:113 +#: tbl_tracking.php:109 #, php-format msgid "Tracking report for table `%s`" msgstr "Záznamy o sledování tabulky `%s`" -#: tbl_tracking.php:186 +#: tbl_tracking.php:182 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "Verze %s vytvořena, sledování pro %s.%s je zapnuté." -#: tbl_tracking.php:194 +#: tbl_tracking.php:190 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "Sledování pro %s.%s , verze %s je vypnuté." -#: tbl_tracking.php:202 +#: tbl_tracking.php:198 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "Sledování pro %s.%s , verze %s je zapnuté." -#: tbl_tracking.php:212 +#: tbl_tracking.php:208 msgid "SQL statements executed." msgstr "provedené SQL příkazy." -#: tbl_tracking.php:219 +#: tbl_tracking.php:215 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -8167,110 +8244,110 @@ msgstr "" "Záznam můžete spustit vytvořením a použitím dočasné databáze. Prosím ověřte, " "že na tuto operací máte oprávnění." -#: tbl_tracking.php:220 +#: tbl_tracking.php:216 msgid "Comment out these two lines if you do not need them." msgstr "Zakomentujte následující dva řádky pokud je nepotřebujete." -#: tbl_tracking.php:229 +#: tbl_tracking.php:225 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" "SQL příkazy byly exportovány. Prosím zkopírujte si je, nebo je spusťte." -#: tbl_tracking.php:250 tbl_tracking.php:378 +#: tbl_tracking.php:245 tbl_tracking.php:373 msgid "Close" msgstr "Ukončit" -#: tbl_tracking.php:261 +#: tbl_tracking.php:256 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Snímek verze %s (SQL kód)" -#: tbl_tracking.php:380 +#: tbl_tracking.php:375 msgid "Tracking statements" msgstr "Sledování příkazů" -#: tbl_tracking.php:396 tbl_tracking.php:503 +#: tbl_tracking.php:391 tbl_tracking.php:498 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "Zobrazit %s s datem od %s do %s od uživatele %s %s" -#: tbl_tracking.php:409 tbl_tracking.php:460 +#: tbl_tracking.php:404 tbl_tracking.php:455 msgid "Date" msgstr "Datum" -#: tbl_tracking.php:410 tbl_tracking.php:461 +#: tbl_tracking.php:405 tbl_tracking.php:456 msgid "Username" msgstr "Uživatel" -#: tbl_tracking.php:411 +#: tbl_tracking.php:406 msgid "Data definition statement" msgstr "Příkaz pro definici dat" -#: tbl_tracking.php:462 +#: tbl_tracking.php:457 msgid "Data manipulation statement" msgstr "Příkaz pro úpravu dat" -#: tbl_tracking.php:506 +#: tbl_tracking.php:501 msgid "SQL dump (file download)" msgstr "výpis SQL (stáhnout soubor)" -#: tbl_tracking.php:507 +#: tbl_tracking.php:502 msgid "SQL dump" msgstr "výpis SQL" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "This option will replace your table and contained data." msgstr "Tato volba nahradí vaší tabulku a data, která obsahuje." -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "SQL execution" msgstr "Provedení SQL" -#: tbl_tracking.php:520 +#: tbl_tracking.php:515 #, php-format msgid "Export as %s" msgstr "Exportovat jako %s" -#: tbl_tracking.php:560 +#: tbl_tracking.php:555 msgid "Show versions" msgstr "Zobrazit verze" -#: tbl_tracking.php:592 +#: tbl_tracking.php:587 msgid "Version" msgstr "Verze" -#: tbl_tracking.php:639 +#: tbl_tracking.php:634 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "Vypnout sledování pro %s.%s" -#: tbl_tracking.php:641 +#: tbl_tracking.php:636 msgid "Deactivate now" msgstr "Vypnout teď" -#: tbl_tracking.php:652 +#: tbl_tracking.php:647 #, php-format msgid "Activate tracking for %s.%s" msgstr "Zapnuté sledování pro %s.%s" -#: tbl_tracking.php:654 +#: tbl_tracking.php:649 msgid "Activate now" msgstr "Zapnout teď" -#: tbl_tracking.php:667 +#: tbl_tracking.php:662 #, php-format msgid "Create version %s of %s.%s" msgstr "Vytvořit verzi %s z %s.%s" -#: tbl_tracking.php:671 +#: tbl_tracking.php:666 msgid "Track these data definition statements:" msgstr "Sledovat tyto příkazy pro definici dat:" -#: tbl_tracking.php:679 +#: tbl_tracking.php:674 msgid "Track these data manipulation statements:" msgstr "Sledovat tyto příkazy pro úpravu dat:" -#: tbl_tracking.php:687 +#: tbl_tracking.php:682 msgid "Create version" msgstr "Vytvořit verzi" @@ -8316,10 +8393,34 @@ msgstr "Přístup byl změněn." msgid "VIEW name" msgstr "Jméno pohledu" -#: view_operations.php:92 +#: view_operations.php:91 msgid "Rename view to" msgstr "Přejmenovat pohled na" +#~ msgid "BLOB Repository" +#~ msgstr "Skladiště BLOBů" + +#~ msgctxt "BLOB repository" +#~ msgid "Enabled" +#~ msgstr "Zapnuté" + +#~ msgid "Disable" +#~ msgstr "Vypnout" + +#~ msgid "Damaged" +#~ msgstr "Poškozené" + +#~ msgctxt "BLOB repository" +#~ msgid "Repair" +#~ msgstr "Opravit" + +#~ msgctxt "BLOB repository" +#~ msgid "Disabled" +#~ msgstr "Vypnuté" + +#~ msgid "Enable" +#~ msgstr "Zapnout" + #~ msgid "" #~ "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " #~ "extension. Please check your PHP configuration." diff --git a/po/cy.po b/po/cy.po index b6e23fd65..4d631562a 100644 --- a/po/cy.po +++ b/po/cy.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-21 13:53+0200\n" +"POT-Creation-Date: 2010-07-26 17:18+0200\n" "PO-Revision-Date: 2010-06-07 20:23+0200\n" "Last-Translator: \n" "Language-Team: Welsh \n" @@ -17,19 +17,19 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n" "X-Generator: Pootle 2.0.1\n" -#: browse_foreigners.php:37 browse_foreigners.php:58 -#: libraries/display_tbl.lib.php:416 server_privileges.php:1506 +#: browse_foreigners.php:36 browse_foreigners.php:57 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1510 msgid "Show all" msgstr "Dangos pob" -#: browse_foreigners.php:81 libraries/common.lib.php:2313 -#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:393 -#: libraries/export/pdf.php:146 pdf_schema.php:282 pdf_schema.php:1122 -#: pdf_schema.php:1138 +#: browse_foreigners.php:80 libraries/common.lib.php:2318 +#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:392 +#: libraries/export/pdf.php:146 pdf_schema.php:281 pdf_schema.php:1121 +#: pdf_schema.php:1137 msgid "Page number:" msgstr "Rhif tudalen:" -#: browse_foreigners.php:131 +#: browse_foreigners.php:130 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -39,137 +39,151 @@ msgstr "" "ffenest y rhiant, neu bod gosodiadau diogelwch eich porwr yn gwrthod " "caniatáu diweddariadau traws-ffenest." -#: browse_foreigners.php:149 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2829 -#: libraries/common.lib.php:2836 libraries/db_links.inc.php:74 -#: libraries/tbl_links.inc.php:62 +#: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 +#: db_structure.php:89 db_structure.php:91 db_structure.php:102 +#: db_structure.php:104 libraries/common.lib.php:2834 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Chwilio" -#: browse_foreigners.php:152 db_operations.php:384 db_operations.php:428 -#: db_operations.php:498 db_operations.php:608 db_search.php:344 -#: db_structure.php:566 js/messages.php:48 libraries/Config.class.php:1043 -#: libraries/Theme_Manager.class.php:310 +#: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 +#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 +#: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 -#: libraries/common.lib.php:1340 libraries/common.lib.php:2289 +#: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 -#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:275 -#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:531 -#: libraries/display_tbl.lib.php:613 libraries/replication_gui.lib.php:75 +#: libraries/display_export.lib.php:269 libraries/display_import.lib.php:275 +#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 +#: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 #: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:781 -#: main.php:127 navigation.php:231 pdf_pages.php:291 pdf_pages.php:327 -#: pdf_pages.php:529 pmd_pdf.php:115 server_binlog.php:128 -#: server_privileges.php:664 server_privileges.php:1616 -#: server_privileges.php:1963 server_privileges.php:2010 -#: server_privileges.php:2049 server_replication.php:234 -#: server_replication.php:317 server_replication.php:340 -#: server_synchronize.php:1208 tbl_change.php:328 tbl_change.php:1172 -#: tbl_change.php:1209 tbl_indexes.php:253 tbl_operations.php:264 -#: tbl_operations.php:301 tbl_operations.php:498 tbl_operations.php:560 -#: tbl_operations.php:680 tbl_select.php:324 tbl_structure.php:561 -#: tbl_structure.php:596 tbl_tracking.php:394 tbl_tracking.php:511 -#: view_create.php:181 view_operations.php:100 +#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 +#: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 +#: server_privileges.php:663 server_privileges.php:1620 +#: server_privileges.php:1967 server_privileges.php:2014 +#: server_privileges.php:2053 server_replication.php:233 +#: server_replication.php:316 server_replication.php:339 +#: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 +#: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 +#: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 +#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "Ewch" -#: browse_foreigners.php:167 browse_foreigners.php:171 -#: libraries/Index.class.php:441 tbl_tracking.php:319 +#: browse_foreigners.php:166 browse_foreigners.php:170 +#: libraries/Index.class.php:441 tbl_tracking.php:314 msgid "Keyname" msgstr "Enw allweddol" -#: browse_foreigners.php:168 browse_foreigners.php:170 -#: server_collations.php:54 server_collations.php:66 server_engines.php:58 +#: browse_foreigners.php:167 browse_foreigners.php:169 +#: server_collations.php:54 server_collations.php:66 server_engines.php:57 #: server_status.php:738 msgid "Description" msgstr "Disgrifiad" -#: browse_foreigners.php:246 browse_foreigners.php:255 -#: browse_foreigners.php:267 browse_foreigners.php:275 +#: browse_foreigners.php:245 browse_foreigners.php:254 +#: browse_foreigners.php:266 browse_foreigners.php:274 msgid "Use this value" msgstr "Defnyddiwch y gwerth hwn" -#: db_create.php:45 +#: bs_disp_as_mime_type.php:29 bs_play_media.php:35 +msgid "No blob streaming server configured!" +msgstr "" + +#: bs_disp_as_mime_type.php:35 +#, fuzzy +#| msgid "Failed to write file to disk." +msgid "Failed to fetch headers" +msgstr "Methu ag ysgrifennu i'r ddisg." + +#: bs_disp_as_mime_type.php:41 +msgid "Failed to open remote URL" +msgstr "" + +#: db_create.php:44 #, php-format msgid "Database %1$s has been created." msgstr "Cafodd y gronfa ddata %1$s ei chreu." -#: db_datadict.php:48 db_operations.php:377 +#: db_datadict.php:48 db_operations.php:313 msgid "Database comment: " msgstr "Sylw cronfa ddata:" -#: db_datadict.php:164 libraries/tbl_properties.inc.php:723 -#: pdf_schema.php:1235 tbl_operations.php:346 tbl_printview.php:128 +#: db_datadict.php:164 libraries/tbl_properties.inc.php:722 +#: pdf_schema.php:1234 tbl_operations.php:344 tbl_printview.php:127 msgid "Table comments" msgstr "Sylwadau tabl" -#: db_datadict.php:173 db_qbe.php:173 libraries/Index.class.php:445 +#: db_datadict.php:173 db_qbe.php:170 libraries/Index.class.php:445 #: libraries/export/htmlword.php:243 libraries/export/latex.php:364 #: libraries/export/odt.php:293 libraries/export/texytext.php:233 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:274 -#: pdf_schema.php:1261 pdf_schema.php:1282 tbl_change.php:306 -#: tbl_indexes.php:188 tbl_printview.php:140 tbl_relation.php:401 -#: tbl_select.php:133 tbl_structure.php:176 tbl_tracking.php:272 -#: tbl_tracking.php:323 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 +#: pdf_schema.php:1260 pdf_schema.php:1281 tbl_change.php:301 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:132 tbl_structure.php:175 tbl_tracking.php:267 +#: tbl_tracking.php:318 msgid "Column" msgstr "Colofn" -#: db_datadict.php:174 db_printview.php:105 libraries/Index.class.php:442 +#: db_datadict.php:174 db_printview.php:104 libraries/Index.class.php:442 #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 #: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:244 #: libraries/export/latex.php:364 libraries/export/odt.php:296 #: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:99 -#: pdf_schema.php:1262 pdf_schema.php:1283 server_privileges.php:2062 -#: tbl_change.php:285 tbl_change.php:312 tbl_printview.php:141 -#: tbl_printview.php:311 tbl_select.php:134 tbl_structure.php:177 -#: tbl_structure.php:658 tbl_tracking.php:273 tbl_tracking.php:320 +#: pdf_schema.php:1261 pdf_schema.php:1282 server_privileges.php:2066 +#: tbl_change.php:280 tbl_change.php:307 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:133 tbl_structure.php:176 +#: tbl_structure.php:656 tbl_tracking.php:268 tbl_tracking.php:315 msgid "Type" msgstr "Math" #: db_datadict.php:176 libraries/Index.class.php:448 #: libraries/export/htmlword.php:245 libraries/export/latex.php:364 #: libraries/export/odt.php:299 libraries/export/texytext.php:235 -#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1264 -#: pdf_schema.php:1285 tbl_change.php:321 tbl_printview.php:143 -#: tbl_structure.php:180 tbl_tracking.php:275 tbl_tracking.php:326 +#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1263 +#: pdf_schema.php:1284 tbl_change.php:316 tbl_printview.php:142 +#: tbl_structure.php:179 tbl_tracking.php:270 tbl_tracking.php:321 msgid "Null" msgstr "Null" -#: db_datadict.php:177 db_structure.php:500 libraries/export/htmlword.php:246 +#: db_datadict.php:177 db_structure.php:486 libraries/export/htmlword.php:246 #: libraries/export/latex.php:364 libraries/export/odt.php:302 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:105 -#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 -#: tbl_structure.php:181 tbl_tracking.php:276 +#: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:143 +#: tbl_structure.php:180 tbl_tracking.php:271 msgid "Default" msgstr "Diofyn" #: db_datadict.php:181 libraries/export/htmlword.php:248 #: libraries/export/latex.php:366 libraries/export/odt.php:306 -#: libraries/export/texytext.php:238 pdf_schema.php:1267 pdf_schema.php:1288 -#: tbl_printview.php:148 +#: libraries/export/texytext.php:238 pdf_schema.php:1266 pdf_schema.php:1287 +#: tbl_printview.php:147 msgid "Links to" msgstr "Cysylltu i" -#: db_datadict.php:183 db_printview.php:111 libraries/export/htmlword.php:251 +#: db_datadict.php:183 db_printview.php:110 libraries/export/htmlword.php:251 #: libraries/export/latex.php:49 libraries/export/latex.php:369 #: libraries/export/odt.php:37 libraries/export/odt.php:311 #: libraries/export/sql.php:29 libraries/export/texytext.php:241 -#: libraries/tbl_properties.inc.php:129 pdf_schema.php:1278 -#: pdf_schema.php:1289 tbl_printview.php:150 +#: libraries/tbl_properties.inc.php:128 pdf_schema.php:1277 +#: pdf_schema.php:1288 tbl_printview.php:149 msgid "Comments" msgstr "Sylwadau" #: db_datadict.php:266 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/export/htmlword.php:321 #: libraries/export/latex.php:434 libraries/export/odt.php:367 -#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:262 -#: pdf_schema.php:1343 server_privileges.php:1560 server_privileges.php:1571 -#: server_privileges.php:1881 server_privileges.php:1886 -#: server_privileges.php:2179 sql.php:131 sql.php:193 tbl_printview.php:227 -#: tbl_structure.php:349 tbl_tracking.php:336 tbl_tracking.php:341 +#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:261 +#: pdf_schema.php:1342 server_privileges.php:1564 server_privileges.php:1575 +#: server_privileges.php:1885 server_privileges.php:1890 +#: server_privileges.php:2183 sql.php:130 sql.php:192 tbl_printview.php:226 +#: tbl_structure.php:347 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "Na" @@ -180,17 +194,17 @@ msgstr "Na" #: libraries/mult_submits.inc.php:49 libraries/mult_submits.inc.php:54 #: libraries/mult_submits.inc.php:59 libraries/mult_submits.inc.php:91 #: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:105 -#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:261 -#: libraries/mult_submits.inc.php:272 pdf_schema.php:1343 -#: server_databases.php:63 server_privileges.php:1557 -#: server_privileges.php:1571 server_privileges.php:1881 -#: server_privileges.php:1884 server_privileges.php:2179 sql.php:192 -#: tbl_printview.php:227 tbl_structure.php:39 tbl_structure.php:349 -#: tbl_tracking.php:334 tbl_tracking.php:339 +#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:260 +#: libraries/mult_submits.inc.php:271 pdf_schema.php:1342 +#: server_databases.php:61 server_privileges.php:1561 +#: server_privileges.php:1575 server_privileges.php:1885 +#: server_privileges.php:1888 server_privileges.php:2183 sql.php:191 +#: tbl_printview.php:226 tbl_structure.php:38 tbl_structure.php:347 +#: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" msgstr "Ie" -#: db_datadict.php:321 db_printview.php:265 tbl_printview.php:496 +#: db_datadict.php:321 db_printview.php:264 tbl_printview.php:495 msgid "Print" msgstr "Argraffu" @@ -198,278 +212,244 @@ msgstr "Argraffu" msgid "View dump (schema) of database" msgstr "Dangos dadlwythiad (sgema) y gronfa ddata" -#: db_export.php:32 db_printview.php:95 db_qbe.php:101 db_structure.php:50 -#: db_tracking.php:34 export.php:352 navigation.php:326 +#: db_export.php:32 db_printview.php:94 db_qbe.php:98 db_structure.php:49 +#: db_tracking.php:30 export.php:350 navigation.php:325 msgid "No tables found in database." msgstr "Dim tablau wedi'u darganfod yn y gronfa ddata." -#: db_export.php:42 db_search.php:326 server_export.php:26 +#: db_export.php:42 db_search.php:326 server_export.php:24 msgid "Select All" msgstr "Dewis Pob" -#: db_export.php:44 db_search.php:329 server_export.php:28 +#: db_export.php:44 db_search.php:329 server_export.php:26 msgid "Unselect All" msgstr "Dad-ddewis Pob" -#: db_operations.php:37 tbl_create.php:49 +#: db_operations.php:33 tbl_create.php:47 msgid "The database name is empty!" msgstr "Mae enw'r gronfa ddata'n wag!" -#: db_operations.php:235 +#: db_operations.php:231 #, php-format msgid "Database %s has been renamed to %s" msgstr "Cafodd cronfa ddata %s ei hailenwi i %s" -#: db_operations.php:239 +#: db_operations.php:235 #, php-format msgid "Database %s has been copied to %s" msgstr "Cafodd y gronfa ddata %s ei chopïo i %s" -#: db_operations.php:411 +#: db_operations.php:347 msgid "Rename database to" msgstr "Ailenwch y gronfa ddata i" -#: db_operations.php:416 server_processlist.php:56 +#: db_operations.php:352 server_processlist.php:56 msgid "Command" msgstr "Gorchymyn" -#: db_operations.php:428 tbl_change.php:1141 +#: db_operations.php:364 tbl_change.php:1039 msgid "and then" msgstr "ac yna" -#: db_operations.php:454 +#: db_operations.php:390 msgid "Copy database to" msgstr "Copïwch y gronfa ddata i" -#: db_operations.php:461 tbl_operations.php:527 tbl_tracking.php:387 +#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Strwythur yn unig" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:389 +#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Strwythur a data" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:388 +#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Data yn unig" -#: db_operations.php:471 +#: db_operations.php:407 msgid "CREATE DATABASE before copying" msgstr "Defnyddiwch CREATE DATABASE cyn copïo" -#: db_operations.php:474 libraries/export/sql.php:51 +#: db_operations.php:410 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 -#: libraries/export/sql.php:81 tbl_operations.php:535 +#: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "Ychwanegwch %s" -#: db_operations.php:478 libraries/export/sql.php:77 tbl_operations.php:298 -#: tbl_operations.php:537 +#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Ychwanegwch werth AUTO_INCREMENT" -#: db_operations.php:482 tbl_operations.php:544 +#: db_operations.php:418 tbl_operations.php:542 msgid "Add constraints" msgstr "Ychwanegwch cyfyngiadau" -#: db_operations.php:495 +#: db_operations.php:431 msgid "Switch to copied database" msgstr "Newidiwch i'r gronfa ddata a gopïwyd" -#: db_operations.php:536 -msgid "BLOB Repository" -msgstr "Ystorfa BLOB" - -#: db_operations.php:539 db_tracking.php:75 libraries/common.lib.php:1357 -#: libraries/server_links.inc.php:48 server_processlist.php:58 -#: tbl_tracking.php:595 test/theme.php:100 -msgid "Status" -msgstr "Statws" - -#: db_operations.php:547 -msgctxt "BLOB repository" -msgid "Enabled" -msgstr "Galluogwyd" - -#: db_operations.php:551 -msgid "Disable" -msgstr "Analluogwch" - -#: db_operations.php:561 -msgid "Damaged" -msgstr "Wedi difrodi" - -#: db_operations.php:565 -msgctxt "BLOB repository" -msgid "Repair" -msgstr "Trwsiwch" - -#: db_operations.php:573 -msgctxt "BLOB repository" -msgid "Disabled" -msgstr "Analluogwyd" - -#: db_operations.php:577 -msgid "Enable" -msgstr "Galluogwch" - -#: db_operations.php:601 libraries/Index.class.php:447 +#: db_operations.php:451 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 -#: server_collations.php:53 server_collations.php:65 server_databases.php:110 -#: tbl_operations.php:362 tbl_select.php:135 tbl_structure.php:178 -#: tbl_structure.php:766 tbl_tracking.php:274 tbl_tracking.php:325 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 +#: server_collations.php:53 server_collations.php:65 server_databases.php:108 +#: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:177 +#: tbl_structure.php:764 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "Coladiad" -#: db_operations.php:614 main.php:315 pdf_schema.php:33 -#, php-format +#: db_operations.php:464 pdf_schema.php:32 +#, fuzzy, php-format +#| msgid "" +#| "The additional features for working with linked tables have been " +#| "deactivated. To find out why click %shere%s." msgid "" -"The additional features for working with linked tables have been " -"deactivated. To find out why click %shere%s." +"The phpMyAdmin configuration storage has been deactivated. To find out why " +"click %shere%s." msgstr "" "Mae'r nodweddion ar gyfer gweithio gyda thablau sydd wedi cysylltu wedi'u " "hanalluogi. Pwyswch %syma%s i ddarganfod pam." -#: db_operations.php:647 +#: db_operations.php:497 msgid "Edit PDF Pages" msgstr "Golygwch Dudalennau PDF" -#: db_printview.php:103 db_tracking.php:71 db_tracking.php:156 +#: db_printview.php:102 db_tracking.php:67 db_tracking.php:152 #: libraries/db_structure.lib.php:37 libraries/export/xml.php:327 -#: libraries/header.inc.php:125 pdf_pages.php:423 server_privileges.php:1657 -#: server_privileges.php:1713 server_privileges.php:1977 -#: server_synchronize.php:422 server_synchronize.php:865 tbl_tracking.php:591 +#: libraries/header.inc.php:125 pdf_pages.php:422 server_privileges.php:1661 +#: server_privileges.php:1717 server_privileges.php:1981 +#: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "Tabl" -#: db_printview.php:104 libraries/db_structure.lib.php:47 +#: db_printview.php:103 libraries/db_structure.lib.php:47 #: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 -#: navigation.php:629 navigation.php:651 server_databases.php:121 -#: tbl_printview.php:392 tbl_structure.php:364 tbl_structure.php:776 +#: navigation.php:628 navigation.php:650 server_databases.php:119 +#: tbl_printview.php:391 tbl_structure.php:362 tbl_structure.php:774 msgid "Rows" msgstr "Rhesi" -#: db_printview.php:108 libraries/db_structure.lib.php:58 tbl_indexes.php:189 +#: db_printview.php:107 libraries/db_structure.lib.php:58 tbl_indexes.php:188 msgid "Size" msgstr "Maint" -#: db_printview.php:161 db_structure.php:456 libraries/export/sql.php:556 +#: db_printview.php:160 db_structure.php:442 libraries/export/sql.php:556 #: libraries/export/sql.php:896 msgid "in use" msgstr "ar ddefnydd" -#: db_printview.php:186 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:511 pdf_schema.php:1240 tbl_printview.php:432 -#: tbl_structure.php:808 +#: db_printview.php:185 libraries/db_info.inc.php:86 +#: libraries/export/sql.php:511 pdf_schema.php:1239 tbl_printview.php:431 +#: tbl_structure.php:806 msgid "Creation" msgstr "Cread" -#: db_printview.php:195 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:516 pdf_schema.php:1245 tbl_printview.php:442 -#: tbl_structure.php:816 +#: db_printview.php:194 libraries/db_info.inc.php:91 +#: libraries/export/sql.php:516 pdf_schema.php:1244 tbl_printview.php:441 +#: tbl_structure.php:814 msgid "Last update" msgstr "Diweddariad diwethaf" -#: db_printview.php:204 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:521 pdf_schema.php:1250 tbl_printview.php:452 -#: tbl_structure.php:824 +#: db_printview.php:203 libraries/db_info.inc.php:96 +#: libraries/export/sql.php:521 pdf_schema.php:1249 tbl_printview.php:451 +#: tbl_structure.php:822 msgid "Last check" msgstr "Gwiriad diwethaf" -#: db_printview.php:221 db_structure.php:479 +#: db_printview.php:220 db_structure.php:465 #, php-format msgid "%s table" msgid_plural "%s tables" msgstr[0] "%s tabl" msgstr[1] "%s tabl" -#: db_qbe.php:28 import.php:453 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1980 libraries/sql_query_form.lib.php:138 -#: tbl_operations.php:212 tbl_relation.php:291 tbl_row_action.php:130 -#: view_operations.php:61 +#: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 +#: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "Cafodd eich ymholiad SQL ei gweithredu'n llwyddiannus" -#: db_qbe.php:41 +#: db_qbe.php:38 msgid "You have to choose at least one column to display" msgstr "Mae'n rhaid dewis o leiaf un golofn i'w dangos" -#: db_qbe.php:199 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:865 +#: db_qbe.php:196 libraries/db_structure.lib.php:95 +#: libraries/display_tbl.lib.php:864 msgid "Sort" msgstr "Trefnu" -#: db_qbe.php:208 db_qbe.php:242 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:522 libraries/display_tbl.lib.php:827 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:259 -#: tbl_select.php:311 +#: db_qbe.php:205 db_qbe.php:239 libraries/db_structure.lib.php:102 +#: libraries/display_tbl.lib.php:521 libraries/display_tbl.lib.php:826 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:257 +#: tbl_select.php:310 msgid "Ascending" msgstr "Esgynnol" -#: db_qbe.php:209 db_qbe.php:250 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:527 libraries/display_tbl.lib.php:824 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:260 -#: tbl_select.php:312 +#: db_qbe.php:206 db_qbe.php:247 libraries/db_structure.lib.php:110 +#: libraries/display_tbl.lib.php:526 libraries/display_tbl.lib.php:823 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:258 +#: tbl_select.php:311 msgid "Descending" msgstr "Disgynnol" -#: db_qbe.php:263 db_tracking.php:77 libraries/display_tbl.lib.php:307 -#: tbl_change.php:275 tbl_tracking.php:596 +#: db_qbe.php:260 db_tracking.php:73 libraries/display_tbl.lib.php:306 +#: tbl_change.php:270 tbl_tracking.php:591 msgid "Show" msgstr "Dangos" -#: db_qbe.php:299 +#: db_qbe.php:296 msgid "Criteria" msgstr "Meini prawf" -#: db_qbe.php:352 db_qbe.php:434 db_qbe.php:526 db_qbe.php:557 +#: db_qbe.php:349 db_qbe.php:431 db_qbe.php:523 db_qbe.php:554 msgid "Ins" msgstr "Ins" -#: db_qbe.php:356 db_qbe.php:438 db_qbe.php:523 db_qbe.php:554 +#: db_qbe.php:353 db_qbe.php:435 db_qbe.php:520 db_qbe.php:551 msgid "And" msgstr "And" -#: db_qbe.php:365 db_qbe.php:446 db_qbe.php:528 db_qbe.php:559 +#: db_qbe.php:362 db_qbe.php:443 db_qbe.php:525 db_qbe.php:556 msgid "Del" msgstr "Del" -#: db_qbe.php:369 db_qbe.php:450 db_qbe.php:521 db_qbe.php:552 -#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:778 -#: server_privileges.php:297 tbl_change.php:1027 tbl_indexes.php:249 -#: tbl_select.php:285 +#: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 +#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:777 +#: server_privileges.php:296 tbl_change.php:925 tbl_indexes.php:248 +#: tbl_select.php:284 msgid "Or" msgstr "Or" -#: db_qbe.php:506 +#: db_qbe.php:503 msgid "Modify" msgstr "Addasu" -#: db_qbe.php:583 +#: db_qbe.php:580 msgid "Add/Delete criteria rows" msgstr "Ychwanegu/Dileu rhesi meini prawf" -#: db_qbe.php:595 +#: db_qbe.php:592 msgid "Add/Delete columns" msgstr "Ychwanegu/Dileu colofnau" -#: db_qbe.php:608 db_qbe.php:633 +#: db_qbe.php:605 db_qbe.php:630 msgid "Update Query" msgstr "Ymholiad Diweddaru" -#: db_qbe.php:616 +#: db_qbe.php:613 msgid "Use Tables" msgstr "Defnyddiwch Dablau" -#: db_qbe.php:639 +#: db_qbe.php:636 #, php-format msgid "SQL query on database %s:" msgstr "Ymholiad SQL ar gronfa ddata %s:" -#: db_qbe.php:933 libraries/common.lib.php:1222 +#: db_qbe.php:930 libraries/common.lib.php:1215 msgid "Submit Query" msgstr "Cyflwynwch yr Ymholiad" @@ -509,17 +489,17 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s ergyd mewn tabl %s" msgstr[1] "%s ergyd mewn tabl %s" -#: db_search.php:249 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2831 -#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:49 -#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:466 +#: db_search.php:249 db_structure.php:75 db_structure.php:76 +#: db_structure.php:88 db_structure.php:90 db_structure.php:101 +#: db_structure.php:103 libraries/common.lib.php:2836 +#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 +#: tbl_structure.php:35 tbl_structure.php:47 tbl_structure.php:464 msgid "Browse" msgstr "Porwch" -#: db_search.php:254 libraries/display_tbl.lib.php:1164 -#: libraries/display_tbl.lib.php:2055 libraries/sql_query_form.lib.php:453 -#: pdf_pages.php:285 pdf_pages.php:424 pdf_pages.php:460 pdf_pages.php:488 +#: db_search.php:254 libraries/display_tbl.lib.php:1163 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 msgid "Delete" @@ -557,66 +537,66 @@ msgstr "Tu fewn tabl(au):" msgid "Inside column:" msgstr "Tu fewn colofn:" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2830 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:75 +#: db_structure.php:79 db_structure.php:80 db_structure.php:92 +#: db_structure.php:93 db_structure.php:105 db_structure.php:106 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 +#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Mewnosod" -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2827 libraries/common.lib.php:2834 -#: libraries/db_links.inc.php:62 libraries/export/htmlword.php:22 +#: db_structure.php:81 db_structure.php:94 db_structure.php:107 +#: libraries/common.lib.php:2832 libraries/common.lib.php:2839 +#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 -#: libraries/tbl_links.inc.php:55 pmd_general.php:133 -#: server_privileges.php:593 server_replication.php:314 tbl_tracking.php:268 +#: libraries/tbl_links.inc.php:54 pmd_general.php:133 +#: server_privileges.php:592 server_replication.php:313 tbl_tracking.php:263 msgid "Structure" msgstr "Strwythur" -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:544 db_structure.php:545 db_tracking.php:90 -#: libraries/Index.class.php:482 libraries/common.lib.php:1659 -#: libraries/db_links.inc.php:99 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:126 -#: server_databases.php:351 tbl_structure.php:26 tbl_structure.php:150 -#: tbl_structure.php:151 tbl_structure.php:470 +#: db_structure.php:82 db_structure.php:83 db_structure.php:95 +#: db_structure.php:96 db_structure.php:108 db_structure.php:109 +#: db_structure.php:530 db_structure.php:531 db_tracking.php:86 +#: libraries/Index.class.php:482 libraries/common.lib.php:1663 +#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 +#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 +#: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" msgstr "Gollwng" -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:542 db_structure.php:543 libraries/common.lib.php:1658 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:104 +#: db_structure.php:84 db_structure.php:85 db_structure.php:97 +#: db_structure.php:98 db_structure.php:110 db_structure.php:111 +#: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 +#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 msgid "Empty" msgstr "Gwagu" -#: db_structure.php:315 libraries/tbl_links.inc.php:99 +#: db_structure.php:301 libraries/tbl_links.inc.php:98 #, php-format msgid "Table %s has been emptied" msgstr "Cafodd tabl %s ei wagu" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "View %s has been dropped" msgstr "Cafodd golwg %s ei ollwng" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "Table %s has been dropped" msgstr "Cafodd tabl %s ei ollwng" -#: db_structure.php:332 +#: db_structure.php:318 msgid "Tracking is active." msgstr "Mae tracio'n weithredol" -#: db_structure.php:334 +#: db_structure.php:320 msgid "Tracking is not active." msgstr "Nid yw tracio'n weithredol" -#: db_structure.php:419 libraries/display_tbl.lib.php:1943 +#: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -624,160 +604,166 @@ msgid "" msgstr "" "Mae gan yr olwg hon o leiaf y nifer hwn o resi. Gweler y %sdogfennaeth%s." -#: db_structure.php:433 db_structure.php:447 libraries/header.inc.php:125 -#: libraries/tbl_info.inc.php:65 tbl_structure.php:184 test/theme.php:73 +#: db_structure.php:419 db_structure.php:433 libraries/header.inc.php:125 +#: libraries/tbl_info.inc.php:60 tbl_structure.php:183 test/theme.php:73 msgid "View" msgstr "Dangos" -#: db_structure.php:484 libraries/db_structure.lib.php:40 -#: libraries/server_links.inc.php:69 server_replication.php:32 -#: server_replication.php:163 server_status.php:368 +#: db_structure.php:470 libraries/db_structure.lib.php:40 +#: libraries/server_links.inc.php:69 server_replication.php:31 +#: server_replication.php:162 server_status.php:368 msgid "Replication" msgstr "Dyblygiad" -#: db_structure.php:488 +#: db_structure.php:474 msgid "Sum" msgstr "Swm" -#: db_structure.php:495 libraries/StorageEngine.class.php:349 +#: db_structure.php:481 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s yw'r peiriant storio diofyn ar y gweinydd MySQL hwn." -#: db_structure.php:523 db_structure.php:540 db_structure.php:541 -#: libraries/display_tbl.lib.php:2080 libraries/display_tbl.lib.php:2085 -#: libraries/mult_submits.inc.php:15 server_databases.php:345 -#: server_databases.php:350 server_privileges.php:1588 tbl_structure.php:454 -#: tbl_structure.php:463 +#: db_structure.php:509 db_structure.php:526 db_structure.php:527 +#: libraries/display_tbl.lib.php:2039 libraries/display_tbl.lib.php:2044 +#: libraries/mult_submits.inc.php:15 server_databases.php:343 +#: server_databases.php:348 server_privileges.php:1592 tbl_structure.php:452 +#: tbl_structure.php:461 msgid "With selected:" msgstr "Gyda'r dewis:" -#: db_structure.php:526 libraries/display_tbl.lib.php:2075 -#: server_databases.php:347 server_privileges.php:569 -#: server_privileges.php:1591 tbl_structure.php:457 +#: db_structure.php:512 libraries/display_tbl.lib.php:2034 +#: server_databases.php:345 server_privileges.php:568 +#: server_privileges.php:1595 tbl_structure.php:455 msgid "Check All" msgstr "Dewis Pob" -#: db_structure.php:530 libraries/display_tbl.lib.php:2076 -#: libraries/replication_gui.lib.php:35 server_databases.php:349 -#: server_privileges.php:572 server_privileges.php:1595 tbl_structure.php:461 +#: db_structure.php:516 libraries/display_tbl.lib.php:2035 +#: libraries/replication_gui.lib.php:35 server_databases.php:347 +#: server_privileges.php:571 server_privileges.php:1599 tbl_structure.php:459 msgid "Uncheck All" msgstr "Dad-ddewis Pob" -#: db_structure.php:535 +#: db_structure.php:521 msgid "Check tables having overhead" msgstr "Gwiriwch dablau â gorbenion" -#: db_structure.php:546 db_structure.php:547 db_structure.php:598 -#: libraries/display_tbl.lib.php:2179 libraries/mult_submits.inc.php:27 -#: tbl_structure.php:491 tbl_structure.php:493 +#: db_structure.php:532 db_structure.php:533 db_structure.php:584 +#: libraries/display_tbl.lib.php:2138 libraries/mult_submits.inc.php:27 +#: tbl_structure.php:489 tbl_structure.php:491 msgid "Print view" msgstr "Argraffu golwg" -#: db_structure.php:548 db_structure.php:549 libraries/mult_submits.inc.php:41 -#: tbl_operations.php:580 +#: db_structure.php:534 db_structure.php:535 libraries/mult_submits.inc.php:41 +#: tbl_operations.php:578 msgid "Check table" msgstr "Gwirio tabl" -#: db_structure.php:550 db_structure.php:551 libraries/mult_submits.inc.php:46 -#: tbl_operations.php:620 tbl_structure.php:708 tbl_structure.php:710 +#: db_structure.php:536 db_structure.php:537 libraries/mult_submits.inc.php:46 +#: tbl_operations.php:618 tbl_structure.php:706 tbl_structure.php:708 msgid "Optimize table" msgstr "Optimeiddio tabl" -#: db_structure.php:552 db_structure.php:553 libraries/mult_submits.inc.php:51 -#: tbl_operations.php:610 +#: db_structure.php:538 db_structure.php:539 libraries/mult_submits.inc.php:51 +#: tbl_operations.php:608 msgid "Repair table" msgstr "Trwsio tabl" -#: db_structure.php:554 db_structure.php:555 libraries/mult_submits.inc.php:56 -#: tbl_operations.php:600 +#: db_structure.php:540 db_structure.php:541 libraries/mult_submits.inc.php:56 +#: tbl_operations.php:598 msgid "Analyze table" msgstr "Dadansoddi tabl" -#: db_structure.php:556 db_structure.php:557 libraries/db_links.inc.php:70 -#: libraries/display_export.lib.php:82 libraries/display_tbl.lib.php:2093 -#: libraries/display_tbl.lib.php:2224 libraries/mult_submits.inc.php:61 -#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:81 -#: pmd_pdf.php:83 pmd_pdf.php:108 server_privileges.php:1372 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 +#: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 +#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 +#: pmd_pdf.php:81 pmd_pdf.php:106 server_privileges.php:1376 #: setup/frames/menu.inc.php:22 tbl_row_action.php:58 msgid "Export" msgstr "Allforio" -#: db_structure.php:605 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:591 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "Geiriadur Data" -#: db_tracking.php:65 +#: db_tracking.php:61 msgid "Tracked tables" msgstr "Tablau a draciwyd" -#: db_tracking.php:70 libraries/export/htmlword.php:85 +#: db_tracking.php:66 libraries/export/htmlword.php:85 #: libraries/export/latex.php:152 libraries/export/odt.php:112 #: libraries/export/sql.php:339 libraries/export/texytext.php:84 #: libraries/export/xml.php:254 libraries/header.inc.php:105 -#: libraries/header_printview.inc.php:57 server_databases.php:168 -#: server_privileges.php:1652 server_privileges.php:1713 -#: server_privileges.php:1971 server_processlist.php:55 -#: server_synchronize.php:1178 server_synchronize.php:1182 -#: tbl_tracking.php:590 test/theme.php:64 +#: libraries/header_printview.inc.php:57 server_databases.php:166 +#: server_privileges.php:1656 server_privileges.php:1717 +#: server_privileges.php:1975 server_processlist.php:55 +#: server_synchronize.php:1177 server_synchronize.php:1181 +#: tbl_tracking.php:585 test/theme.php:64 msgid "Database" msgstr "Cronfa ddata" -#: db_tracking.php:72 +#: db_tracking.php:68 msgid "Last version" msgstr "Fersiwn diweddaraf" -#: db_tracking.php:73 tbl_tracking.php:593 +#: db_tracking.php:69 tbl_tracking.php:588 msgid "Created" msgstr "Crëwyd" -#: db_tracking.php:74 tbl_tracking.php:594 +#: db_tracking.php:70 tbl_tracking.php:589 msgid "Updated" msgstr "Diweddarwyd" -#: db_tracking.php:76 libraries/Index.class.php:439 -#: libraries/db_structure.lib.php:44 server_databases.php:202 -#: server_privileges.php:1534 server_privileges.php:1717 -#: server_privileges.php:2065 tbl_structure.php:186 +#: db_tracking.php:71 libraries/common.lib.php:1361 +#: libraries/server_links.inc.php:48 server_processlist.php:58 +#: tbl_tracking.php:590 test/theme.php:100 +msgid "Status" +msgstr "Statws" + +#: db_tracking.php:72 libraries/Index.class.php:439 +#: libraries/db_structure.lib.php:44 server_databases.php:200 +#: server_privileges.php:1538 server_privileges.php:1721 +#: server_privileges.php:2069 tbl_structure.php:185 msgid "Action" msgstr "Gweithred" -#: db_tracking.php:87 db_tracking.php:119 +#: db_tracking.php:83 db_tracking.php:115 msgid "Delete tracking data for this table" msgstr "Dilëwch data tracio ar gyfer y tabl hwn" -#: db_tracking.php:105 tbl_tracking.php:547 tbl_tracking.php:605 -#: tbl_tracking.php:612 +#: db_tracking.php:101 tbl_tracking.php:542 tbl_tracking.php:600 +#: tbl_tracking.php:607 msgid "active" msgstr "gweithredol" -#: db_tracking.php:107 tbl_tracking.php:549 tbl_tracking.php:607 -#: tbl_tracking.php:609 +#: db_tracking.php:103 tbl_tracking.php:544 tbl_tracking.php:602 +#: tbl_tracking.php:604 msgid "not active" msgstr "ddim yn weithredol" -#: db_tracking.php:120 +#: db_tracking.php:116 msgid "Versions" msgstr "Fersiynau" -#: db_tracking.php:121 tbl_tracking.php:378 tbl_tracking.php:623 +#: db_tracking.php:117 tbl_tracking.php:373 tbl_tracking.php:618 msgid "Tracking report" msgstr "Adroddiad tracio" -#: db_tracking.php:122 tbl_tracking.php:250 tbl_tracking.php:623 +#: db_tracking.php:118 tbl_tracking.php:245 tbl_tracking.php:618 msgid "Structure snapshot" msgstr "Ciplun strwythur" -#: db_tracking.php:151 +#: db_tracking.php:147 msgid "Untracked tables" msgstr "Tablau heb dracio " -#: db_tracking.php:171 db_tracking.php:173 tbl_structure.php:527 -#: tbl_structure.php:529 +#: db_tracking.php:167 db_tracking.php:169 tbl_structure.php:525 +#: tbl_structure.php:527 msgid "Track table" msgstr "Tracio tabl" -#: db_tracking.php:199 +#: db_tracking.php:195 msgid "Database Log" msgstr "Log cronfa ddata" @@ -785,12 +771,12 @@ msgstr "Log cronfa ddata" msgid "Selected export type has to be saved in file!" msgstr "Mae'n rhaid cadw math yr allbwn hwn mewn ffeil!" -#: export.php:153 export.php:178 export.php:620 +#: export.php:152 export.php:177 export.php:615 #, php-format msgid "Insufficient space to save the file %s." msgstr "Lle annigonol i gadw'r ffeil %s." -#: export.php:287 +#: export.php:286 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -798,17 +784,17 @@ msgstr "" "Mae'r ffeil %s yn bodoli ar y gweinydd yn barod. Newidiwch enw'r ffeil neu " "gwiriwch yr opsiwn trosysgrifo." -#: export.php:291 export.php:295 +#: export.php:290 export.php:294 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Nid oes gan y gweinydd gwe yr hawl i gadw'r ffeil %s." -#: export.php:622 +#: export.php:617 #, php-format msgid "Dump has been saved to file %s." msgstr "Dadlwythiad wedi'i gadw i'r ffeil %s." -#: import.php:59 +#: import.php:58 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -817,14 +803,14 @@ 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." -#: import.php:278 import.php:331 libraries/File.class.php:840 -#: libraries/File.class.php:950 +#: import.php:277 import.php:330 libraries/File.class.php:566 +#: libraries/File.class.php:676 msgid "File could not be read" msgstr "Nid oedd modd darllen y ffeil hon." -#: import.php:286 import.php:295 import.php:314 import.php:323 -#: libraries/File.class.php:1020 libraries/File.class.php:1028 -#: libraries/File.class.php:1044 libraries/File.class.php:1052 +#: import.php:285 import.php:294 import.php:313 import.php:322 +#: libraries/File.class.php:746 libraries/File.class.php:754 +#: libraries/File.class.php:770 libraries/File.class.php:778 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -833,7 +819,7 @@ msgstr "" "Fe geisioch lwytho ffeil gyda chywasgiad sydd heb ei gynnal (%s). Naill ai " "bod dim cynhaliaeth ar gyfer hwn neu mae eich ffurfwedd wedi ei analluogi." -#: import.php:336 +#: import.php:335 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -844,54 +830,54 @@ msgstr "" "ganiatáu gan eich ffurfwedd PHP. Gweler See [a@./Documentation." "html#faq1_16@Documentation]FAQ 1.16[/a]." -#: import.php:371 libraries/display_import.lib.php:23 +#: import.php:370 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "Nid oedd modd llwytho ategynnau mewnforio, gwiriwch eich arsefydliad!" -#: import.php:396 +#: import.php:395 msgid "The bookmark has been deleted." msgstr "Cafodd y clustnod ei ddileu." -#: import.php:400 +#: import.php:399 msgid "Showing bookmark" msgstr "Dangos clustnod" -#: import.php:402 sql.php:625 +#: import.php:401 sql.php:618 #, php-format msgid "Bookmark %s created" msgstr "Clustnodi %s a grëwyd" -#: import.php:408 import.php:414 +#: import.php:407 import.php:413 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" "Gorffennodd y mewnforiad yn llwyddiannus, gyda %d ymholiad wedi'u gweithredu." -#: import.php:423 +#: import.php:422 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: import.php:425 +#: import.php:424 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." msgstr "" -#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:240 +#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:239 #: user_password.php:110 msgid "Back" msgstr "Nôl" -#: index.php:188 +#: index.php:183 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" -#: js/messages.php:25 server_synchronize.php:344 server_synchronize.php:356 -#: server_synchronize.php:372 server_synchronize.php:379 -#: server_synchronize.php:738 server_synchronize.php:766 -#: server_synchronize.php:794 server_synchronize.php:806 +#: js/messages.php:25 server_synchronize.php:343 server_synchronize.php:355 +#: server_synchronize.php:371 server_synchronize.php:378 +#: server_synchronize.php:737 server_synchronize.php:765 +#: server_synchronize.php:793 server_synchronize.php:805 msgid "Click to select" msgstr "Pwyso i ddewis" @@ -899,15 +885,15 @@ msgstr "Pwyso i ddewis" msgid "Click to unselect" msgstr "Pwyso i dad-ddewis" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:88 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:87 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Mae datganiadau \"DROP DATABASE\" wedi'u hanalluogi." -#: js/messages.php:30 libraries/mult_submits.inc.php:257 sql.php:187 +#: js/messages.php:30 libraries/mult_submits.inc.php:256 sql.php:186 msgid "Do you really want to " msgstr "A ydych chi wir am" -#: js/messages.php:31 libraries/mult_submits.inc.php:257 sql.php:171 +#: js/messages.php:31 libraries/mult_submits.inc.php:256 sql.php:170 msgid "You are about to DESTROY a complete database!" msgstr "Rydych am DINISTRIO cronfa ddata gyfan!" @@ -937,11 +923,11 @@ msgstr "Mae enw'r gwesteiwr yn wag!" msgid "The user name is empty!" msgstr "Mae enw'r defnyddiwr yn wag!" -#: js/messages.php:44 server_privileges.php:1228 user_password.php:65 +#: js/messages.php:44 server_privileges.php:1229 user_password.php:65 msgid "The password is empty!" msgstr "Mae'r cyfrinair yn wag!" -#: js/messages.php:45 server_privileges.php:1226 user_password.php:68 +#: js/messages.php:45 server_privileges.php:1227 user_password.php:68 msgid "The passwords aren't the same!" msgstr "Nid yw'r cyfrineiriau'n debyg!" @@ -949,27 +935,27 @@ msgstr "Nid yw'r cyfrineiriau'n debyg!" msgid "Cancel" msgstr "Diddymu" -#: js/messages.php:52 pmd_save_pos.php:53 +#: js/messages.php:52 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "Cafodd yr addasiadau eu cadw" -#: js/messages.php:53 pmd_relation_upd.php:48 +#: js/messages.php:53 pmd_relation_upd.php:47 msgid "Relation deleted" msgstr "Perthynas wedi'i ddileu" -#: js/messages.php:54 pmd_relation_new.php:63 +#: js/messages.php:54 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "Perthynas FOREIGN KEY wedi'i ychwanegu" -#: js/messages.php:55 pmd_relation_new.php:85 +#: js/messages.php:55 pmd_relation_new.php:84 msgid "Internal relation added" msgstr "Perthynas mewnol wedi'i ychwanegu" -#: js/messages.php:56 pmd_relation_new.php:62 pmd_relation_new.php:87 +#: js/messages.php:56 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "Gwall: Perthynas heb ei ychwanegu." -#: js/messages.php:57 pmd_relation_new.php:30 +#: js/messages.php:57 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "Gwall: perthynas yn bodoli yn barod." @@ -977,13 +963,13 @@ msgstr "Gwall: perthynas yn bodoli yn barod." msgid "Error saving coordinates for Designer." msgstr "Gwall wrth gadw cyfesurynnau ar gyfer y Dyluniwr." -#: js/messages.php:59 libraries/relation.lib.php:94 -#: libraries/relation.lib.php:106 +#: js/messages.php:59 libraries/relation.lib.php:89 +#: libraries/relation.lib.php:101 msgid "General relation features" msgstr "Nodweddion perthynas cyffredinol" -#: js/messages.php:59 libraries/relation.lib.php:88 -#: libraries/relation.lib.php:95 +#: js/messages.php:59 libraries/relation.lib.php:83 +#: libraries/relation.lib.php:90 msgid "Disabled" msgstr "Analluogwyd" @@ -999,7 +985,7 @@ msgstr "Dewis Allwedd Estron" msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:547 +#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:545 msgid "Choose column to display" msgstr "Dewis colofn i'w dangos" @@ -1024,10 +1010,10 @@ msgid "Prev" msgstr "Cynt" #. l10n: Display text for next month link in calendar -#: js/messages.php:81 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:337 -#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:422 -#: tbl_structure.php:800 +#: js/messages.php:81 libraries/common.lib.php:2358 +#: libraries/common.lib.php:2361 libraries/display_tbl.lib.php:336 +#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 +#: tbl_structure.php:798 msgid "Next" msgstr "Nesaf" @@ -1085,63 +1071,63 @@ msgid "December" msgstr "Rhagfyr" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1562 +#: js/messages.php:101 libraries/common.lib.php:1566 msgid "Jan" msgstr "Ion" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1564 +#: js/messages.php:103 libraries/common.lib.php:1568 msgid "Feb" msgstr "Chwe" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1566 +#: js/messages.php:105 libraries/common.lib.php:1570 msgid "Mar" msgstr "Maw" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1568 +#: js/messages.php:107 libraries/common.lib.php:1572 msgid "Apr" msgstr "Ebr" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1570 +#: js/messages.php:109 libraries/common.lib.php:1574 msgctxt "Short month name" msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1572 +#: js/messages.php:111 libraries/common.lib.php:1576 msgid "Jun" msgstr "Meh" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1574 +#: js/messages.php:113 libraries/common.lib.php:1578 msgid "Jul" msgstr "Gor" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1576 +#: js/messages.php:115 libraries/common.lib.php:1580 msgid "Aug" msgstr "Aws" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1578 +#: js/messages.php:117 libraries/common.lib.php:1582 msgid "Sep" msgstr "Med" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1580 +#: js/messages.php:119 libraries/common.lib.php:1584 msgid "Oct" msgstr "Hyd" #. l10n: Short month name -#: js/messages.php:121 libraries/common.lib.php:1582 +#: js/messages.php:121 libraries/common.lib.php:1586 msgid "Nov" msgstr "Tach" #. l10n: Short month name -#: js/messages.php:123 libraries/common.lib.php:1584 +#: js/messages.php:123 libraries/common.lib.php:1588 msgid "Dec" msgstr "Rhag" @@ -1174,37 +1160,37 @@ msgid "Saturday" msgstr "Dydd Sadwrn" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1587 +#: js/messages.php:136 libraries/common.lib.php:1591 msgid "Sun" msgstr "Sul" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1589 +#: js/messages.php:138 libraries/common.lib.php:1593 msgid "Mon" msgstr "Llun" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1591 +#: js/messages.php:140 libraries/common.lib.php:1595 msgid "Tue" msgstr "Maw" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1593 +#: js/messages.php:142 libraries/common.lib.php:1597 msgid "Wed" msgstr "Mer" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1595 +#: js/messages.php:144 libraries/common.lib.php:1599 msgid "Thu" msgstr "Iau" #. l10n: Short week day name -#: js/messages.php:146 libraries/common.lib.php:1597 +#: js/messages.php:146 libraries/common.lib.php:1601 msgid "Fri" msgstr "Gwe" #. l10n: Short week day name -#: js/messages.php:148 libraries/common.lib.php:1599 +#: js/messages.php:148 libraries/common.lib.php:1603 msgid "Sat" msgstr "Sad" @@ -1264,74 +1250,73 @@ msgstr "Eiliad" msgid "Font size" msgstr "Maint ffont" -#: libraries/File.class.php:336 libraries/File.class.php:424 -#: libraries/File.class.php:561 libraries/File.class.php:700 -msgid "Unknown error in file upload." -msgstr "Gwall anhysbys wrth lanlwytho ffeil." - -#: libraries/File.class.php:406 +#: libraries/File.class.php:315 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:409 +#: libraries/File.class.php:318 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:412 +#: libraries/File.class.php:321 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:415 +#: libraries/File.class.php:324 msgid "Missing a temporary folder." msgstr "Ffolder dros dro ar goll." -#: libraries/File.class.php:418 +#: libraries/File.class.php:327 msgid "Failed to write file to disk." msgstr "Methu ag ysgrifennu i'r ddisg." -#: libraries/File.class.php:421 +#: libraries/File.class.php:330 msgid "File upload stopped by extension." msgstr "Cafodd y lanlwythiad ei atal gan estyniad." -#: libraries/File.class.php:898 +#: libraries/File.class.php:333 +msgid "Unknown error in file upload." +msgstr "Gwall anhysbys wrth lanlwytho ffeil." + +#: libraries/File.class.php:624 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "" -#: libraries/Index.class.php:427 tbl_relation.php:528 +#: libraries/Index.class.php:427 tbl_relation.php:526 msgid "No index defined!" msgstr "Dim indecs wedi'i ddiffinio!" -#: libraries/Index.class.php:432 server_databases.php:131 tbl_tracking.php:315 +#: libraries/Index.class.php:432 server_databases.php:129 tbl_tracking.php:310 msgid "Indexes" msgstr "Indecsau" #: libraries/Index.class.php:443 libraries/mult_submits.inc.php:102 -#: libraries/tbl_properties.inc.php:518 tbl_structure.php:32 -#: tbl_structure.php:154 tbl_structure.php:158 tbl_structure.php:473 -#: tbl_tracking.php:321 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:31 +#: tbl_structure.php:153 tbl_structure.php:157 tbl_structure.php:471 +#: tbl_tracking.php:316 msgid "Unique" msgstr "Unigryw" -#: libraries/Index.class.php:444 tbl_tracking.php:322 +#: libraries/Index.class.php:444 tbl_tracking.php:317 msgid "Packed" msgstr "Paciwyd" -#: libraries/Index.class.php:446 tbl_tracking.php:324 +#: libraries/Index.class.php:446 tbl_tracking.php:319 msgid "Cardinality" msgstr "" -#: libraries/Index.class.php:449 tbl_tracking.php:278 tbl_tracking.php:327 +#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322 msgid "Comment" msgstr "Sylw" #: libraries/Index.class.php:465 libraries/common.lib.php:609 -#: libraries/common.lib.php:1198 libraries/display_tbl.lib.php:1116 +#: libraries/common.lib.php:1191 libraries/display_tbl.lib.php:1115 #: libraries/import.lib.php:1119 libraries/import.lib.php:1143 -#: pdf_pages.php:284 setup/frames/index.inc.php:124 +#: pdf_pages.php:283 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:349 tbl_row_action.php:68 msgid "Edit" msgstr "Golygu" @@ -1355,15 +1340,15 @@ msgstr "" "ohonyn nhw." #: libraries/List_Database.class.php:430 libraries/server_links.inc.php:40 -#: server_databases.php:87 server_privileges.php:1652 +#: server_databases.php:85 server_privileges.php:1656 #: setup/lib/messages.inc.php:107 test/theme.php:92 msgid "Databases" msgstr "Cronfeydd Data" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:259 libraries/import.lib.php:134 pdf_schema.php:31 -#: pdf_schema.php:231 tbl_change.php:1023 tbl_operations.php:212 -#: tbl_relation.php:289 view_operations.php:61 +#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 +#: tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Gwall" @@ -1388,41 +1373,41 @@ msgid_plural "%1$d rows inserted." msgstr[0] "%1$d rhes wedi'i hychwanegu." msgstr[1] "%1$d rhes wedi'u hychwanegu." -#: libraries/StorageEngine.class.php:196 +#: libraries/StorageEngine.class.php:194 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:352 +#: libraries/StorageEngine.class.php:354 #, php-format msgid "%s is available on this MySQL server." msgstr "Mae %s ar gael ar y gweinydd MySQL hwn." -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:357 #, 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:359 +#: libraries/StorageEngine.class.php:361 #, 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:1018 +#: libraries/Table.class.php:1017 msgid "Invalid database" msgstr "Crofna ddata annilys" -#: libraries/Table.class.php:1032 tbl_get_field.php:25 +#: libraries/Table.class.php:1031 tbl_get_field.php:25 msgid "Invalid table name" msgstr "Enw tabl annilys" -#: libraries/Table.class.php:1047 +#: libraries/Table.class.php:1046 #, 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:1131 +#: libraries/Table.class.php:1129 #, php-format msgid "Table %s has been renamed to %s" msgstr "Cafodd y tabl %s ei ailenwi i %s" @@ -1440,22 +1425,22 @@ msgstr "Dim rhagolwg ar gael" msgid "take it" msgstr "cymerwch e" -#: libraries/Theme_Manager.class.php:114 +#: 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:152 +#: libraries/Theme_Manager.class.php:147 #, php-format msgid "Theme %s not found!" msgstr "Heb ddarganfod thema ddiofyn %s!" -#: libraries/Theme_Manager.class.php:220 +#: 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:296 test/theme.php:160 themes.php:20 +#: libraries/Theme_Manager.class.php:291 test/theme.php:160 themes.php:20 #: themes.php:40 msgid "Theme / Style" msgstr "Thema / Arddull" @@ -1572,19 +1557,19 @@ msgstr "" msgid "Authenticating..." msgstr "Yn dilysu..." -#: libraries/blobstreaming.lib.php:689 +#: libraries/blobstreaming.lib.php:340 msgid "View image" msgstr "Gweld delwedd" -#: libraries/blobstreaming.lib.php:693 +#: libraries/blobstreaming.lib.php:344 msgid "Play audio" msgstr "Chwarae sain" -#: libraries/blobstreaming.lib.php:698 +#: libraries/blobstreaming.lib.php:349 msgid "View video" msgstr "Gwylio fideo" -#: libraries/blobstreaming.lib.php:702 +#: libraries/blobstreaming.lib.php:353 msgid "Download file" msgstr "Lawrlwytho ffeil" @@ -1630,7 +1615,7 @@ msgstr "Gweinydd" msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:909 +#: libraries/common.inc.php:908 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Dylech uwchraddio i %s %s neu'n well." @@ -1655,7 +1640,8 @@ msgstr "en" #: libraries/common.lib.php:425 libraries/common.lib.php:427 #: libraries/common.lib.php:429 libraries/common.lib.php:445 #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 -#: libraries/display_export.lib.php:163 libraries/relation.lib.php:84 +#: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 +#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 #: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" @@ -1670,148 +1656,148 @@ msgstr "Ymholiad SQL" msgid "MySQL said: " msgstr "Dywedodd MySQL:" -#: libraries/common.lib.php:1136 +#: libraries/common.lib.php:1129 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "Failed to connect to SQL validator!" msgstr "Methu â chysylltu i'r gweinydd MySQL" -#: libraries/common.lib.php:1174 setup/lib/messages.inc.php:350 +#: libraries/common.lib.php:1167 setup/lib/messages.inc.php:350 msgid "Explain SQL" msgstr "Esbonio SQL" -#: libraries/common.lib.php:1177 +#: libraries/common.lib.php:1170 msgid "Skip Explain SQL" msgstr "Sgipio Esbonio SQL" -#: libraries/common.lib.php:1211 +#: libraries/common.lib.php:1204 msgid "Without PHP Code" msgstr "Heb God PHP" -#: libraries/common.lib.php:1214 setup/lib/messages.inc.php:352 +#: libraries/common.lib.php:1207 setup/lib/messages.inc.php:352 msgid "Create PHP Code" msgstr "Creu Cod PHP" -#: libraries/common.lib.php:1232 server_status.php:451 +#: libraries/common.lib.php:1225 server_status.php:451 #: setup/lib/messages.inc.php:351 msgid "Refresh" msgstr "Adfywio" -#: libraries/common.lib.php:1241 +#: libraries/common.lib.php:1234 msgid "Skip Validate SQL" msgstr "Sgipio Dilysu SQL" -#: libraries/common.lib.php:1244 setup/lib/messages.inc.php:353 +#: libraries/common.lib.php:1237 setup/lib/messages.inc.php:353 msgid "Validate SQL" msgstr "Dilysu SQL" -#: libraries/common.lib.php:1283 +#: libraries/common.lib.php:1287 msgid "Inline edit of this query" msgstr "Golygu mewnol yr ymholiad hwn" -#: libraries/common.lib.php:1285 +#: libraries/common.lib.php:1289 msgid "Inline" msgstr "Mewnol" -#: libraries/common.lib.php:1339 libraries/common.lib.php:1354 +#: libraries/common.lib.php:1343 libraries/common.lib.php:1358 msgid "Profiling" msgstr "Proffilio" -#: libraries/common.lib.php:1358 libraries/tbl_triggers.lib.php:27 +#: libraries/common.lib.php:1362 libraries/tbl_triggers.lib.php:27 #: server_processlist.php:57 msgid "Time" msgstr "Amser" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "B" msgstr "B" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "KiB" msgstr "KiB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "MiB" msgstr "MiB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "GiB" msgstr "GiB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "TiB" msgstr "TiB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "PiB" msgstr "PiB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "EiB" msgstr "EiB" #. l10n: Thousands separator -#: libraries/common.lib.php:1424 +#: libraries/common.lib.php:1428 msgid "," msgstr "," #. l10n: Decimal separator -#: libraries/common.lib.php:1426 +#: libraries/common.lib.php:1430 msgid "." msgstr "." #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1603 +#: libraries/common.lib.php:1607 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y am %I:%M %p" -#: libraries/common.lib.php:1909 +#: libraries/common.lib.php:1913 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s diwrnod, %s awr, %s munud a %s eiliad" -#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 -#: libraries/display_tbl.lib.php:289 server_status.php:718 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 +#: libraries/display_tbl.lib.php:288 server_status.php:718 msgid "Begin" msgstr "Dechrau" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 -#: libraries/display_tbl.lib.php:290 server_binlog.php:154 +#: libraries/common.lib.php:2328 libraries/common.lib.php:2331 +#: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "Cynt" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 -#: libraries/display_tbl.lib.php:352 +#: libraries/common.lib.php:2359 libraries/common.lib.php:2362 +#: libraries/display_tbl.lib.php:351 msgid "End" msgstr "Diwedd" -#: libraries/common.lib.php:2429 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "Neidio i gronfa ddata "%s"." -#: libraries/common.lib.php:2448 +#: libraries/common.lib.php:2453 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2828 libraries/common.lib.php:2835 -#: libraries/db_links.inc.php:67 libraries/export/sql.php:24 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 +#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 -#: libraries/tbl_links.inc.php:59 querywindow.php:89 test/theme.php:96 +#: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2837 libraries/db_links.inc.php:103 -#: libraries/tbl_links.inc.php:94 libraries/tbl_links.inc.php:116 -#: view_operations.php:88 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: view_operations.php:87 msgid "Operations" msgstr "Gweithrediadau" -#: libraries/core.lib.php:282 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1827,38 +1813,38 @@ msgstr "Digwyddiadau" msgid "Name" msgstr "Enw" -#: libraries/db_links.inc.php:44 +#: libraries/db_links.inc.php:43 #, php-format msgid "Database %s has been dropped." msgstr "Cafodd cronfa ddata %s ei gollwng." -#: libraries/db_links.inc.php:56 libraries/db_links.inc.php:57 -#: libraries/db_links.inc.php:58 +#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 +#: libraries/db_links.inc.php:57 msgid "Database seems to be empty!" msgstr "Mae'r gronfa ddata yn ymddangos yn wag!" -#: libraries/db_links.inc.php:80 libraries/relation.lib.php:142 -#: libraries/tbl_links.inc.php:68 +#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "Tracio" -#: libraries/db_links.inc.php:85 +#: libraries/db_links.inc.php:84 msgid "Query" msgstr "Ymholiad" -#: libraries/db_links.inc.php:90 libraries/relation.lib.php:138 +#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 msgid "Designer" msgstr "Dyluniwr" -#: libraries/db_links.inc.php:97 libraries/server_links.inc.php:87 -#: libraries/tbl_links.inc.php:90 pmd_pdf.php:83 pmd_pdf.php:109 +#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Mewnforio" -#: libraries/db_links.inc.php:110 libraries/server_links.inc.php:65 -#: server_privileges.php:111 server_privileges.php:1714 -#: server_privileges.php:2063 test/theme.php:116 +#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: server_privileges.php:110 server_privileges.php:1718 +#: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" msgstr "Breintiau" @@ -1870,14 +1856,14 @@ msgstr "Rheolweithiau" msgid "Return type" msgstr "Dychwelyd math" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1847 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1806 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "" -#: libraries/db_structure.lib.php:60 server_databases.php:141 -#: tbl_printview.php:334 tbl_structure.php:681 +#: libraries/db_structure.lib.php:60 server_databases.php:139 +#: tbl_printview.php:333 tbl_structure.php:679 msgid "Overhead" msgstr "Gorbenion" @@ -1894,7 +1880,7 @@ msgstr "Dyw'r gweinydd ddim yn ymateb" msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "" -#: libraries/dbi/mysql.dbi.lib.php:358 tbl_structure.php:607 +#: libraries/dbi/mysql.dbi.lib.php:358 tbl_structure.php:605 msgid "Details..." msgstr "Manylion..." @@ -1904,22 +1890,22 @@ msgid "Change password" msgstr "Newid cyfrinair" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:807 +#: libraries/replication_gui.lib.php:347 server_privileges.php:806 msgid "No Password" msgstr "Dim Cyfrinair" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1530 server_synchronize.php:1174 +#: libraries/replication_gui.lib.php:351 server_privileges.php:795 +#: server_privileges.php:799 server_privileges.php:810 +#: server_privileges.php:1534 server_synchronize.php:1173 msgid "Password" msgstr "Cyfrinair" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:815 server_privileges.php:818 +#: server_privileges.php:814 server_privileges.php:817 msgid "Re-type" msgstr "Ail-deipiwch" @@ -1940,8 +1926,8 @@ msgstr "Creu cronfa ddata newydd" msgid "Create" msgstr "Creu" -#: libraries/display_create_database.lib.php:39 server_privileges.php:113 -#: server_privileges.php:1419 server_replication.php:34 +#: libraries/display_create_database.lib.php:39 server_privileges.php:112 +#: server_privileges.php:1423 server_replication.php:33 msgid "No Privileges" msgstr "Dim Breintiau" @@ -1958,49 +1944,49 @@ msgstr "Creu tabl mewn cronfa ddata %s" msgid "Number of columns" msgstr "Nifer y colofnau" -#: libraries/display_export.lib.php:41 +#: libraries/display_export.lib.php:35 msgid "Could not load export plugins, please check your installation!" msgstr "" -#: libraries/display_export.lib.php:106 +#: libraries/display_export.lib.php:100 #, php-format msgid "Dump %s row(s) starting at row # %s" msgstr "Dympio %s rhes wrth ddechrau ar res #%s" -#: libraries/display_export.lib.php:114 +#: libraries/display_export.lib.php:108 msgid "Dump all rows" msgstr "Dadlwytho pob rhes" -#: libraries/display_export.lib.php:124 setup/lib/messages.inc.php:79 +#: libraries/display_export.lib.php:118 setup/lib/messages.inc.php:79 msgid "Save as file" msgstr "Cadw fel ffeil" -#: libraries/display_export.lib.php:133 +#: libraries/display_export.lib.php:127 #, php-format msgid "Save on server in %s directory" msgstr "Cadw ar weinydd mewn cyfeiriadur %s" -#: libraries/display_export.lib.php:141 setup/lib/messages.inc.php:87 +#: libraries/display_export.lib.php:135 setup/lib/messages.inc.php:87 msgid "Overwrite existing file(s)" msgstr "Trosysgrifo ffeil(iau) sy'n bodoli yn barod" -#: libraries/display_export.lib.php:147 +#: libraries/display_export.lib.php:141 msgid "File name template" msgstr "Templed enw ffeil" -#: libraries/display_export.lib.php:151 +#: libraries/display_export.lib.php:145 msgid "server name" msgstr "enw gweinydd" -#: libraries/display_export.lib.php:154 +#: libraries/display_export.lib.php:148 msgid "database name" msgstr "enw cronfa ddata" -#: libraries/display_export.lib.php:157 +#: libraries/display_export.lib.php:151 msgid "table name" msgstr "enw tabl" -#: libraries/display_export.lib.php:161 +#: libraries/display_export.lib.php:155 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2008,39 +1994,39 @@ msgid "" "%3$s. Other text will be kept as is." msgstr "" -#: libraries/display_export.lib.php:202 +#: libraries/display_export.lib.php:196 msgid "remember template" msgstr "cofio templed" -#: libraries/display_export.lib.php:210 libraries/display_import.lib.php:177 +#: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 #: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 msgid "Character set of the file:" msgstr "Set nodau'r ffeil:" -#: libraries/display_export.lib.php:235 setup/lib/messages.inc.php:81 +#: libraries/display_export.lib.php:229 setup/lib/messages.inc.php:81 msgid "Compression" msgstr "Cywasgiad" -#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:196 -#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:529 -#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:574 -#: server_privileges.php:1867 server_processlist.php:74 +#: libraries/display_export.lib.php:234 libraries/display_import.lib.php:196 +#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:528 +#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:573 +#: server_privileges.php:1871 server_processlist.php:74 msgid "None" msgstr "Dim" -#: libraries/display_export.lib.php:247 +#: libraries/display_export.lib.php:241 msgid "\"zipped\"" msgstr "\"zip-iwyd\"" -#: libraries/display_export.lib.php:253 +#: libraries/display_export.lib.php:247 msgid "\"gzipped\"" msgstr "\"gzip-iwyd\"" -#: libraries/display_export.lib.php:259 +#: libraries/display_export.lib.php:253 msgid "\"bzipped\"" msgstr "\"bzip-iwyd\"" -#: libraries/display_export.lib.php:274 libraries/export/sql.php:42 +#: libraries/display_export.lib.php:268 libraries/export/sql.php:42 #: libraries/import/sql.php:31 msgid "SQL compatibility mode" msgstr "Modd cytunedd SQL" @@ -2077,14 +2063,14 @@ msgid "File uploads are not allowed on this server." msgstr "Dyw lanlwytho ffeiliau ddim yn cael ei ganiatáu ar y gweinydd hwn." #: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 -#: tbl_change.php:1024 +#: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "" "Does dim modd cyrraedd y cyfeiriadur a osodoch chi ar gyfer gwaith a " "lanwlythwyd" #: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 -#: tbl_change.php:1027 +#: tbl_change.php:925 msgid "web server upload directory" msgstr "cyfeiriadur lanlwytho y gweinydd gwe" @@ -2163,41 +2149,41 @@ msgstr "Maint papur" msgid "Language" msgstr "iaith" -#: libraries/display_tbl.lib.php:303 +#: libraries/display_tbl.lib.php:302 #, php-format msgid "%d is not valid row number." msgstr "Dydy %d ddim yn rhif rhes dilys." -#: libraries/display_tbl.lib.php:309 +#: libraries/display_tbl.lib.php:308 msgid "row(s) starting from row #" msgstr "rhes(i) yn dechrau o rhes #" -#: libraries/display_tbl.lib.php:315 +#: libraries/display_tbl.lib.php:314 msgid "horizontal" msgstr "llorweddol" -#: libraries/display_tbl.lib.php:316 +#: libraries/display_tbl.lib.php:315 msgid "horizontal (rotated headers)" msgstr "llorweddol (penawdau wedi cylchdroi)" -#: libraries/display_tbl.lib.php:317 +#: libraries/display_tbl.lib.php:316 msgid "vertical" msgstr "fertigol" -#: libraries/display_tbl.lib.php:323 +#: libraries/display_tbl.lib.php:322 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "mewn modd %s ac ailadrodd penawdau ar ôl %s cell " -#: libraries/display_tbl.lib.php:345 +#: libraries/display_tbl.lib.php:344 msgid "This operation could take a long time. Proceed anyway?" msgstr "Gall y weithrediad hon gymryd amser hir. Parhau beth bynnag?" -#: libraries/display_tbl.lib.php:511 +#: libraries/display_tbl.lib.php:510 msgid "Sort by key" msgstr "Trefnu gan allwedd" -#: libraries/display_tbl.lib.php:554 libraries/export/codegen.php:38 +#: libraries/display_tbl.lib.php:553 libraries/export/codegen.php:38 #: libraries/export/csv.php:29 libraries/export/excel.php:34 #: libraries/export/htmlword.php:28 libraries/export/latex.php:32 #: libraries/export/mediawiki.php:21 libraries/export/ods.php:26 @@ -2207,97 +2193,97 @@ msgstr "Trefnu gan allwedd" #: libraries/export/xlsx.php:26 libraries/export/xml.php:23 #: libraries/export/yaml.php:27 libraries/import.lib.php:1114 #: libraries/import.lib.php:1136 libraries/import/csv.php:31 -#: libraries/import/docsql.php:33 libraries/import/ldi.php:46 +#: libraries/import/docsql.php:32 libraries/import/ldi.php:46 #: libraries/import/ods.php:30 libraries/import/sql.php:19 #: libraries/import/xls.php:25 libraries/import/xlsx.php:25 -#: libraries/import/xml.php:25 tbl_select.php:264 tbl_structure.php:752 +#: libraries/import/xml.php:25 tbl_select.php:263 tbl_structure.php:750 msgid "Options" msgstr "Opsiynau" -#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:569 +#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:568 msgid "Partial Texts" msgstr "Testunau Rhannol" -#: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:573 +#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:572 msgid "Full Texts" msgstr "Testunau Llawn" -#: libraries/display_tbl.lib.php:586 +#: libraries/display_tbl.lib.php:585 msgid "Relational key" msgstr "Allwedd perthynol" -#: libraries/display_tbl.lib.php:587 +#: libraries/display_tbl.lib.php:586 msgid "Relational display column" msgstr "Colofn dangosydd perthynol" -#: libraries/display_tbl.lib.php:594 +#: libraries/display_tbl.lib.php:593 msgid "Show binary contents" msgstr "Dangos cynnwys deuaidd" -#: libraries/display_tbl.lib.php:596 +#: libraries/display_tbl.lib.php:595 msgid "Show BLOB contents" msgstr "Dangos cynnwys BLOB" -#: libraries/display_tbl.lib.php:598 +#: libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "Dangos cynnwys deuaidd fel HEX" -#: libraries/display_tbl.lib.php:606 pmd_general.php:140 tbl_change.php:312 -#: tbl_change.php:318 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:307 +#: tbl_change.php:313 msgid "Hide" msgstr "Cuddio" -#: libraries/display_tbl.lib.php:606 libraries/relation.lib.php:122 -#: libraries/tbl_properties.inc.php:143 transformation_overview.php:46 +#: libraries/display_tbl.lib.php:605 libraries/relation.lib.php:117 +#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46 msgid "Browser transformation" msgstr "Trawsffurfiad porwr" -#: libraries/display_tbl.lib.php:1125 libraries/display_tbl.lib.php:1129 -#: libraries/display_tbl.lib.php:1131 +#: libraries/display_tbl.lib.php:1124 libraries/display_tbl.lib.php:1128 +#: libraries/display_tbl.lib.php:1130 msgid "Execute bookmarked query" msgstr "Gweithredu ymholiad a glustnodwyd" -#: libraries/display_tbl.lib.php:1144 libraries/display_tbl.lib.php:1156 +#: libraries/display_tbl.lib.php:1143 libraries/display_tbl.lib.php:1155 msgid "The row has been deleted" msgstr "Cafodd y rhes ei dileu" -#: libraries/display_tbl.lib.php:1183 libraries/display_tbl.lib.php:2055 +#: libraries/display_tbl.lib.php:1182 libraries/display_tbl.lib.php:2014 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "Lladd" -#: libraries/display_tbl.lib.php:1933 +#: libraries/display_tbl.lib.php:1892 msgid "in query" msgstr "mewn ymholiad" -#: libraries/display_tbl.lib.php:1951 +#: libraries/display_tbl.lib.php:1910 msgid "Showing rows" msgstr "Yn dangos rhesi" -#: libraries/display_tbl.lib.php:1961 +#: libraries/display_tbl.lib.php:1920 msgid "total" msgstr "cyfanswm" -#: libraries/display_tbl.lib.php:1969 sql.php:523 +#: libraries/display_tbl.lib.php:1928 sql.php:522 #, php-format msgid "Query took %01.4f sec" msgstr "Cymerodd yr ymholiad %01.4f eiliad" -#: libraries/display_tbl.lib.php:2088 libraries/mult_submits.inc.php:112 -#: querywindow.php:115 querywindow.php:119 querywindow.php:122 -#: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:469 +#: libraries/display_tbl.lib.php:2047 libraries/mult_submits.inc.php:112 +#: querywindow.php:114 querywindow.php:118 querywindow.php:121 +#: tbl_structure.php:23 tbl_structure.php:148 tbl_structure.php:467 msgid "Change" msgstr "Newid" -#: libraries/display_tbl.lib.php:2158 +#: libraries/display_tbl.lib.php:2117 msgid "Query results operations" msgstr "Gweithrediadau canlyniadau ymholiad" -#: libraries/display_tbl.lib.php:2186 +#: libraries/display_tbl.lib.php:2145 msgid "Print view (with full texts)" msgstr "Argraffu golwg (gyda thestunau llawn)" -#: libraries/display_tbl.lib.php:2359 +#: libraries/display_tbl.lib.php:2318 msgid "Link not found" msgstr "Methu â darganfod y cysylltiad" @@ -2349,9 +2335,9 @@ msgstr "Statws InnoDB" msgid "Buffer Pool Usage" msgstr "Defnydd Pwll Byffer" -#: libraries/engines/innodb.lib.php:168 server_databases.php:136 -#: server_databases.php:304 server_status.php:524 server_status.php:585 -#: server_status.php:606 tbl_printview.php:349 tbl_structure.php:695 +#: libraries/engines/innodb.lib.php:168 server_databases.php:134 +#: server_databases.php:302 server_status.php:524 server_status.php:585 +#: server_status.php:606 tbl_printview.php:348 tbl_structure.php:693 msgid "Total" msgstr "Cyfanswm" @@ -2473,6 +2459,81 @@ msgid "" "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." msgstr "" +#: libraries/engines/pbms.lib.php:31 +#, fuzzy +#| msgid "Log file threshold" +msgid "Garbage Threshold" +msgstr "Trothwy'r ffeil log" + +#: libraries/engines/pbms.lib.php:32 +msgid "The percentage of garbage in a repository file before it is compacted." +msgstr "" + +#: libraries/engines/pbms.lib.php:36 libraries/replication_gui.lib.php:69 +#: server_synchronize.php:1161 +msgid "Port" +msgstr "" + +#: libraries/engines/pbms.lib.php:37 +msgid "" +"The port for the PBMS stream-based communications. Setting this value to 0 " +"will disable HTTP communication with the daemon." +msgstr "" + +#: libraries/engines/pbms.lib.php:41 +msgid "Repository Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:42 +msgid "" +"The maximum size of a BLOB repository file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:46 +msgid "Temp Blob Timeout" +msgstr "" + +#: libraries/engines/pbms.lib.php:47 +msgid "" +"The timeout, in seconds, for temporary BLOBs. Uploaded BLOB data is removed " +"after this time, unless they are referenced by a record in the database." +msgstr "" + +#: libraries/engines/pbms.lib.php:51 +#, fuzzy +#| msgid "Log file threshold" +msgid "Temp Log Threshold" +msgstr "Trothwy'r ffeil log" + +#: libraries/engines/pbms.lib.php:52 +msgid "" +"The maximum size of a temporary BLOB log file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:56 +msgid "Max Keep Alive" +msgstr "" + +#: libraries/engines/pbms.lib.php:57 +msgid "" +"The timeout for inactive connection with the keep-alive flag set. After this " +"time the connection will be closed. The time-out is in milliseconds (1/1000)." +msgstr "" + +#: libraries/engines/pbms.lib.php:61 +msgid "Metadata Headers" +msgstr "" + +#: libraries/engines/pbms.lib.php:62 +msgid "" +"A \":\" delimited list of metadata headers to be used to initialize the " +"pbms_metadata_header table when a database is created." +msgstr "" + #: libraries/engines/pbxt.lib.php:22 msgid "Index cache size" msgstr "Maint yr ystorfa indecs" @@ -2596,7 +2657,7 @@ msgid "" msgstr "" #: libraries/export/codegen.php:36 setup/lib/messages.inc.php:85 -#: tbl_printview.php:374 tbl_structure.php:736 +#: tbl_printview.php:373 tbl_structure.php:734 msgid "Format" msgstr "Fformat" @@ -2659,9 +2720,9 @@ msgstr "Microsoft Word 2000" #: libraries/export/htmlword.php:23 libraries/export/latex.php:59 #: libraries/export/latex.php:205 libraries/export/odt.php:47 #: libraries/export/sql.php:105 libraries/export/sql.php:865 -#: libraries/export/texytext.php:27 server_databases.php:126 -#: server_privileges.php:576 server_replication.php:315 tbl_printview.php:315 -#: tbl_structure.php:664 +#: libraries/export/texytext.php:27 server_databases.php:124 +#: server_privileges.php:575 server_replication.php:314 tbl_printview.php:314 +#: tbl_structure.php:662 msgid "Data" msgstr "Data" @@ -2710,13 +2771,13 @@ msgid "Label key" msgstr "Allwedd y label" #: libraries/export/latex.php:46 libraries/export/odt.php:34 -#: libraries/export/sql.php:90 tbl_relation.php:398 +#: libraries/export/sql.php:90 tbl_relation.php:396 msgid "Relations" msgstr "Perthnasau" #: libraries/export/latex.php:52 libraries/export/odt.php:40 #: libraries/export/odt.php:317 libraries/export/sql.php:94 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "Math MIME" @@ -2724,10 +2785,10 @@ msgstr "Math MIME" #: libraries/export/xml.php:101 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1529 server_privileges.php:2061 -#: server_processlist.php:54 server_synchronize.php:1158 +#: libraries/replication_gui.lib.php:331 server_privileges.php:730 +#: server_privileges.php:733 server_privileges.php:789 +#: server_privileges.php:1533 server_privileges.php:2065 +#: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "Gwesteiwr" @@ -2914,8 +2975,8 @@ msgstr "" msgid "Export contents" msgstr "" -#: libraries/footer.inc.php:182 libraries/footer.inc.php:193 -#: libraries/footer.inc.php:196 +#: libraries/footer.inc.php:180 libraries/footer.inc.php:191 +#: libraries/footer.inc.php:194 msgid "Open new phpMyAdmin window" msgstr "" @@ -2931,7 +2992,7 @@ msgstr "" msgid "Generated by" msgstr "" -#: libraries/import.lib.php:151 sql.php:519 tbl_change.php:180 +#: libraries/import.lib.php:151 sql.php:518 tbl_change.php:175 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" @@ -2987,7 +3048,7 @@ msgstr "" msgid "Column names in first row" msgstr "" -#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:501 +#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:500 #: view_create.php:147 msgid "Column names" msgstr "" @@ -3013,12 +3074,12 @@ msgstr "" msgid "Invalid column count in CSV input on line %d." msgstr "" -#: libraries/import/docsql.php:28 +#: libraries/import/docsql.php:27 msgid "DocSQL" msgstr "" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 -#: server_synchronize.php:427 server_synchronize.php:870 +#: libraries/import/docsql.php:30 libraries/tbl_properties.inc.php:616 +#: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "" @@ -3072,26 +3133,26 @@ msgstr "" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:512 -#: tbl_structure.php:28 tbl_structure.php:152 tbl_structure.php:156 -#: tbl_structure.php:472 +#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:511 +#: tbl_structure.php:27 tbl_structure.php:151 tbl_structure.php:155 +#: tbl_structure.php:470 msgid "Primary" msgstr "Cynradd" #: libraries/mult_submits.inc.php:97 libraries/tbl_properties.inc.php:115 -#: libraries/tbl_properties.inc.php:524 tbl_printview.php:324 -#: tbl_structure.php:30 tbl_structure.php:153 tbl_structure.php:157 -#: tbl_structure.php:474 tbl_structure.php:672 +#: libraries/tbl_properties.inc.php:523 tbl_printview.php:323 +#: tbl_structure.php:29 tbl_structure.php:152 tbl_structure.php:156 +#: tbl_structure.php:472 tbl_structure.php:670 msgid "Index" msgstr "Indecs" -#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:530 -#: tbl_structure.php:34 tbl_structure.php:155 tbl_structure.php:159 -#: tbl_structure.php:477 +#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:529 +#: tbl_structure.php:33 tbl_structure.php:154 tbl_structure.php:158 +#: tbl_structure.php:475 msgid "Fulltext" msgstr "Testunllawn" -#: libraries/mult_submits.inc.php:434 tbl_replace.php:330 +#: libraries/mult_submits.inc.php:433 tbl_replace.php:330 msgid "No change" msgstr "Dim newid" @@ -3099,190 +3160,190 @@ msgstr "Dim newid" msgid "Charset" msgstr "Set nodau" -#: libraries/mysql_charsets.lib.php:210 libraries/mysql_charsets.lib.php:411 -#: tbl_change.php:515 +#: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 +#: tbl_change.php:510 msgid "Binary" msgstr "Deuaidd" -#: libraries/mysql_charsets.lib.php:222 +#: libraries/mysql_charsets.lib.php:214 msgid "Bulgarian" msgstr "Bwlgareg" -#: libraries/mysql_charsets.lib.php:226 libraries/mysql_charsets.lib.php:351 +#: libraries/mysql_charsets.lib.php:218 libraries/mysql_charsets.lib.php:343 msgid "Simplified Chinese" msgstr "Tsieinëeg Syml" -#: libraries/mysql_charsets.lib.php:228 libraries/mysql_charsets.lib.php:371 +#: libraries/mysql_charsets.lib.php:220 libraries/mysql_charsets.lib.php:363 msgid "Traditional Chinese" msgstr "Tsieinëeg Draddodiadol" -#: libraries/mysql_charsets.lib.php:232 libraries/mysql_charsets.lib.php:418 +#: libraries/mysql_charsets.lib.php:224 libraries/mysql_charsets.lib.php:410 msgid "case-insensitive" msgstr "cas-ansensitif" -#: libraries/mysql_charsets.lib.php:235 libraries/mysql_charsets.lib.php:420 +#: libraries/mysql_charsets.lib.php:227 libraries/mysql_charsets.lib.php:412 msgid "case-sensitive" msgstr "cas-sensitif" -#: libraries/mysql_charsets.lib.php:238 +#: libraries/mysql_charsets.lib.php:230 msgid "Croatian" msgstr "Croateg" -#: libraries/mysql_charsets.lib.php:241 +#: libraries/mysql_charsets.lib.php:233 msgid "Czech" msgstr "Tsieceg" -#: libraries/mysql_charsets.lib.php:244 +#: libraries/mysql_charsets.lib.php:236 msgid "Danish" msgstr "Daneg" -#: libraries/mysql_charsets.lib.php:247 +#: libraries/mysql_charsets.lib.php:239 msgid "English" msgstr "Saesneg" -#: libraries/mysql_charsets.lib.php:250 +#: libraries/mysql_charsets.lib.php:242 msgid "Esperanto" msgstr "Esperanto" -#: libraries/mysql_charsets.lib.php:253 +#: libraries/mysql_charsets.lib.php:245 msgid "Estonian" msgstr "Estoneg" -#: libraries/mysql_charsets.lib.php:256 libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:248 libraries/mysql_charsets.lib.php:251 msgid "German" msgstr "Almaeneg" -#: libraries/mysql_charsets.lib.php:256 +#: libraries/mysql_charsets.lib.php:248 msgid "dictionary" msgstr "geiriadur" -#: libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:251 msgid "phone book" msgstr "llyfr ffôn" -#: libraries/mysql_charsets.lib.php:262 +#: libraries/mysql_charsets.lib.php:254 msgid "Hungarian" msgstr "Hwngareg" -#: libraries/mysql_charsets.lib.php:265 +#: libraries/mysql_charsets.lib.php:257 msgid "Icelandic" msgstr "Islandeg" -#: libraries/mysql_charsets.lib.php:268 libraries/mysql_charsets.lib.php:358 +#: libraries/mysql_charsets.lib.php:260 libraries/mysql_charsets.lib.php:350 msgid "Japanese" msgstr "Siapaneg" -#: libraries/mysql_charsets.lib.php:271 +#: libraries/mysql_charsets.lib.php:263 msgid "Latvian" msgstr "Latfieg" -#: libraries/mysql_charsets.lib.php:274 +#: libraries/mysql_charsets.lib.php:266 msgid "Lithuanian" msgstr "Lithwaneg" -#: libraries/mysql_charsets.lib.php:277 libraries/mysql_charsets.lib.php:380 +#: libraries/mysql_charsets.lib.php:269 libraries/mysql_charsets.lib.php:372 msgid "Korean" msgstr "Corëeg" -#: libraries/mysql_charsets.lib.php:280 +#: libraries/mysql_charsets.lib.php:272 msgid "Persian" msgstr "Perseg" -#: libraries/mysql_charsets.lib.php:283 +#: libraries/mysql_charsets.lib.php:275 msgid "Polish" msgstr "Pwyleg" -#: libraries/mysql_charsets.lib.php:286 libraries/mysql_charsets.lib.php:334 +#: libraries/mysql_charsets.lib.php:278 libraries/mysql_charsets.lib.php:326 msgid "West European" msgstr "Ewropeaidd Gorllewinol" -#: libraries/mysql_charsets.lib.php:289 +#: libraries/mysql_charsets.lib.php:281 msgid "Romanian" msgstr "Rwmaneg" -#: libraries/mysql_charsets.lib.php:292 +#: libraries/mysql_charsets.lib.php:284 msgid "Slovak" msgstr "Slofaceg" -#: libraries/mysql_charsets.lib.php:295 +#: libraries/mysql_charsets.lib.php:287 msgid "Slovenian" msgstr "Slofeneg" -#: libraries/mysql_charsets.lib.php:298 +#: libraries/mysql_charsets.lib.php:290 msgid "Spanish" msgstr "Sbaeneg" -#: libraries/mysql_charsets.lib.php:301 +#: libraries/mysql_charsets.lib.php:293 msgid "Traditional Spanish" msgstr "Sbaeneg Draddodiadol" -#: libraries/mysql_charsets.lib.php:304 libraries/mysql_charsets.lib.php:401 +#: libraries/mysql_charsets.lib.php:296 libraries/mysql_charsets.lib.php:393 msgid "Swedish" msgstr "Swedeg" -#: libraries/mysql_charsets.lib.php:307 libraries/mysql_charsets.lib.php:404 +#: libraries/mysql_charsets.lib.php:299 libraries/mysql_charsets.lib.php:396 msgid "Thai" msgstr "Tai" -#: libraries/mysql_charsets.lib.php:310 libraries/mysql_charsets.lib.php:398 +#: libraries/mysql_charsets.lib.php:302 libraries/mysql_charsets.lib.php:390 msgid "Turkish" msgstr "Twrceg" -#: libraries/mysql_charsets.lib.php:313 libraries/mysql_charsets.lib.php:395 +#: libraries/mysql_charsets.lib.php:305 libraries/mysql_charsets.lib.php:387 msgid "Ukrainian" msgstr "Wcreineg" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 msgid "Unicode" msgstr "Unicode" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 -#: libraries/mysql_charsets.lib.php:334 libraries/mysql_charsets.lib.php:341 -#: libraries/mysql_charsets.lib.php:363 libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 +#: libraries/mysql_charsets.lib.php:326 libraries/mysql_charsets.lib.php:333 +#: libraries/mysql_charsets.lib.php:355 libraries/mysql_charsets.lib.php:366 msgid "multilingual" msgstr "amlieithog" -#: libraries/mysql_charsets.lib.php:341 +#: libraries/mysql_charsets.lib.php:333 msgid "Central European" msgstr "Ewropeaidd Canolog" -#: libraries/mysql_charsets.lib.php:346 +#: libraries/mysql_charsets.lib.php:338 msgid "Russian" msgstr "Rwseg" -#: libraries/mysql_charsets.lib.php:363 +#: libraries/mysql_charsets.lib.php:355 msgid "Baltic" msgstr "Balteg" -#: libraries/mysql_charsets.lib.php:368 +#: libraries/mysql_charsets.lib.php:360 msgid "Armenian" msgstr "Armeneg" -#: libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:366 msgid "Cyrillic" msgstr "Syrilig" -#: libraries/mysql_charsets.lib.php:377 +#: libraries/mysql_charsets.lib.php:369 msgid "Arabic" msgstr "Arabeg" -#: libraries/mysql_charsets.lib.php:383 +#: libraries/mysql_charsets.lib.php:375 msgid "Hebrew" msgstr "Iddeweg" -#: libraries/mysql_charsets.lib.php:386 +#: libraries/mysql_charsets.lib.php:378 msgid "Georgian" msgstr "Georgeg" -#: libraries/mysql_charsets.lib.php:389 +#: libraries/mysql_charsets.lib.php:381 msgid "Greek" msgstr "Groegeg" -#: libraries/mysql_charsets.lib.php:392 +#: libraries/mysql_charsets.lib.php:384 msgid "Czech-Slovak" msgstr "Tsiec-Slofac" -#: libraries/mysql_charsets.lib.php:407 libraries/mysql_charsets.lib.php:414 +#: libraries/mysql_charsets.lib.php:399 libraries/mysql_charsets.lib.php:406 msgid "unknown" msgstr "anhysbys" @@ -3308,67 +3369,67 @@ msgstr "" msgid "This format has no options" msgstr "" -#: libraries/relation.lib.php:82 +#: libraries/relation.lib.php:77 msgid "not OK" msgstr "" -#: libraries/relation.lib.php:86 pmd_general.php:339 +#: libraries/relation.lib.php:81 pmd_general.php:339 msgid "OK" msgstr "" -#: libraries/relation.lib.php:87 +#: libraries/relation.lib.php:82 msgid "Enabled" msgstr "" -#: libraries/relation.lib.php:110 +#: libraries/relation.lib.php:105 msgid "Display Features" msgstr "" -#: libraries/relation.lib.php:116 +#: libraries/relation.lib.php:111 msgid "Creation of PDFs" msgstr "" -#: libraries/relation.lib.php:120 +#: libraries/relation.lib.php:115 msgid "Displaying Column Comments" msgstr "" -#: libraries/relation.lib.php:125 +#: libraries/relation.lib.php:120 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" -#: libraries/relation.lib.php:130 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 msgid "Bookmarked SQL query" msgstr "" -#: libraries/relation.lib.php:134 querywindow.php:99 querywindow.php:207 +#: libraries/relation.lib.php:129 querywindow.php:98 querywindow.php:205 msgid "SQL history" msgstr "" -#: libraries/relation.lib.php:146 +#: libraries/relation.lib.php:141 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:148 +#: libraries/relation.lib.php:143 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" -#: libraries/relation.lib.php:149 +#: libraries/relation.lib.php:144 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:150 +#: libraries/relation.lib.php:145 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:151 +#: libraries/relation.lib.php:146 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1158 +#: libraries/relation.lib.php:1153 msgid "no description" msgstr "" @@ -3376,7 +3437,7 @@ msgstr "" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:53 server_replication.php:346 +#: libraries/replication_gui.lib.php:53 server_replication.php:345 msgid "Change or reconfigure master server" msgstr "" @@ -3388,16 +3449,12 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:711 -#: server_privileges.php:714 server_privileges.php:721 -#: server_synchronize.php:1170 +#: libraries/replication_gui.lib.php:261 server_privileges.php:710 +#: server_privileges.php:713 server_privileges.php:720 +#: server_synchronize.php:1169 msgid "User name" msgstr "" -#: libraries/replication_gui.lib.php:69 server_synchronize.php:1162 -msgid "Port" -msgstr "" - #: libraries/replication_gui.lib.php:105 msgid "Master status" msgstr "Statws y meistr" @@ -3412,8 +3469,8 @@ msgid "Variable" msgstr "Newidyn" #: libraries/replication_gui.lib.php:117 server_status.php:737 -#: tbl_change.php:322 tbl_printview.php:368 tbl_select.php:137 -#: tbl_structure.php:728 +#: tbl_change.php:317 tbl_printview.php:367 tbl_select.php:136 +#: tbl_structure.php:726 msgid "Value" msgstr "Gwerth" @@ -3427,38 +3484,38 @@ msgid "" "this list." msgstr "" -#: libraries/replication_gui.lib.php:242 server_replication.php:193 +#: libraries/replication_gui.lib.php:242 server_replication.php:192 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:256 server_privileges.php:716 +#: libraries/replication_gui.lib.php:256 server_privileges.php:715 msgid "Any user" msgstr "Unrhyw ddefnyddiwr" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1920 server_privileges.php:1950 +#: libraries/replication_gui.lib.php:348 server_privileges.php:716 +#: server_privileges.php:783 server_privileges.php:807 +#: server_privileges.php:1924 server_privileges.php:1954 msgid "Use text field" msgstr "Defnyddiwch faes testun" -#: libraries/replication_gui.lib.php:304 server_privileges.php:764 +#: libraries/replication_gui.lib.php:304 server_privileges.php:763 msgid "Any host" msgstr "Unrhyw westeiwr" -#: libraries/replication_gui.lib.php:308 server_privileges.php:768 +#: libraries/replication_gui.lib.php:308 server_privileges.php:767 msgid "Local" msgstr "Lleol" -#: libraries/replication_gui.lib.php:314 server_privileges.php:773 +#: libraries/replication_gui.lib.php:314 server_privileges.php:772 msgid "This Host" msgstr "Y Gwesteiwr Hwn" -#: libraries/replication_gui.lib.php:320 server_privileges.php:779 +#: libraries/replication_gui.lib.php:320 server_privileges.php:778 msgid "Use Host Table" msgstr "Defnyddiwch Dabl Gwesteiwyr" -#: libraries/replication_gui.lib.php:333 server_privileges.php:792 +#: libraries/replication_gui.lib.php:333 server_privileges.php:791 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3484,8 +3541,8 @@ msgstr "Iaith anhysbys: %1$s." msgid "Servers" msgstr "Gweinyddion" -#: libraries/server_links.inc.php:52 server_engines.php:111 -#: server_engines.php:115 server_status.php:414 test/theme.php:104 +#: libraries/server_links.inc.php:52 server_engines.php:125 +#: server_engines.php:129 server_status.php:414 test/theme.php:104 msgid "Variables" msgstr "Newidynnau" @@ -3506,12 +3563,12 @@ msgstr "Log deuaidd" msgid "Processes" msgstr "Prosesau" -#: libraries/server_links.inc.php:91 server_synchronize.php:1091 -#: server_synchronize.php:1099 +#: libraries/server_links.inc.php:91 server_synchronize.php:1090 +#: server_synchronize.php:1098 msgid "Synchronize" msgstr "Cydamseru" -#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1109 +#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1108 msgid "Source database" msgstr "Cronfa ddata ffynhonnell" @@ -3529,7 +3586,7 @@ msgstr "Gweinydd pell" msgid "Difference" msgstr "Gwahaniaeth" -#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1111 +#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1110 msgid "Target database" msgstr "Cronfa ddata targed" @@ -3547,11 +3604,11 @@ msgstr "" msgid "Columns" msgstr "Colofnau" -#: libraries/sql_query_form.lib.php:342 sql.php:664 sql.php:665 sql.php:682 +#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "Clustnodwch yr ymholiad SQL hwn" -#: libraries/sql_query_form.lib.php:349 sql.php:676 +#: libraries/sql_query_form.lib.php:349 sql.php:669 msgid "Let every user access this bookmark" msgstr "" @@ -3633,12 +3690,12 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" -#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:139 -#: libraries/tbl_links.inc.php:140 +#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 +#: libraries/tbl_links.inc.php:139 msgid "Table seems to be empty!" msgstr "" -#: libraries/tbl_links.inc.php:148 +#: libraries/tbl_links.inc.php:147 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" @@ -3661,23 +3718,23 @@ msgid "" "escaping or quotes, using this format: a" msgstr "" -#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1263 -#: pdf_schema.php:1284 tbl_printview.php:142 tbl_structure.php:179 +#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1262 +#: pdf_schema.php:1283 tbl_printview.php:141 tbl_structure.php:178 msgid "Attributes" msgstr "" -#: libraries/tbl_properties.inc.php:136 +#: libraries/tbl_properties.inc.php:135 #, php-format msgid "" "For a list of available transformation options and their MIME type " "transformations, click on %stransformation descriptions%s" msgstr "" -#: libraries/tbl_properties.inc.php:144 +#: libraries/tbl_properties.inc.php:143 msgid "Transformation options" msgstr "" -#: libraries/tbl_properties.inc.php:145 +#: libraries/tbl_properties.inc.php:144 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
                            If you ever need to put a backslash (\"\\\") or a single " @@ -3685,44 +3742,44 @@ msgid "" "'\\\\xyz' or 'a\\'b')." msgstr "" -#: libraries/tbl_properties.inc.php:392 +#: libraries/tbl_properties.inc.php:391 msgctxt "for default" msgid "None" msgstr "Dim" -#: libraries/tbl_properties.inc.php:393 +#: libraries/tbl_properties.inc.php:392 msgid "As defined:" msgstr "Fel a ddiffiniwyd:" -#: libraries/tbl_properties.inc.php:579 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:578 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
                            Please ask the " "author what %s does." msgstr "" -#: libraries/tbl_properties.inc.php:725 server_engines.php:57 -#: tbl_operations.php:354 +#: libraries/tbl_properties.inc.php:724 server_engines.php:56 +#: tbl_operations.php:352 msgid "Storage Engine" msgstr "Peiriant Storio" -#: libraries/tbl_properties.inc.php:754 +#: libraries/tbl_properties.inc.php:753 msgid "PARTITION definition" msgstr "Diffiniad PARTITION" -#: libraries/tbl_properties.inc.php:775 pdf_pages.php:502 +#: libraries/tbl_properties.inc.php:774 pdf_pages.php:501 #: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214 -#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1124 tbl_indexes.php:247 -#: tbl_relation.php:565 +#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1022 tbl_indexes.php:246 +#: tbl_relation.php:563 msgid "Save" msgstr "Cadw" -#: libraries/tbl_properties.inc.php:779 tbl_structure.php:541 +#: libraries/tbl_properties.inc.php:778 tbl_structure.php:539 #, php-format msgid "Add %s column(s)" msgstr "Ychwanegwch %s colofn" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:535 +#: libraries/tbl_properties.inc.php:782 tbl_structure.php:533 msgid "You have to add at least one column." msgstr "Rydych chi wedi ychwanegu o leiaf un golofn." @@ -3845,8 +3902,8 @@ msgstr "Rhyngwyneb" msgid "Custom color" msgstr "Lliw cwstwm" -#: main.php:162 pdf_pages.php:362 setup/lib/FormDisplay.tpl.php:216 -#: tbl_change.php:1173 +#: main.php:162 pdf_pages.php:361 setup/lib/FormDisplay.tpl.php:216 +#: tbl_change.php:1071 msgid "Reset" msgstr "Ailosod" @@ -3854,8 +3911,8 @@ msgstr "Ailosod" msgid "Protocol version" msgstr "Fersiwn protocol" -#: main.php:188 server_privileges.php:1381 server_privileges.php:1528 -#: server_privileges.php:1642 server_privileges.php:2060 +#: main.php:188 server_privileges.php:1385 server_privileges.php:1532 +#: server_privileges.php:1646 server_privileges.php:2064 #: server_processlist.php:53 msgid "User" msgstr "Defnyddiwr" @@ -3929,21 +3986,30 @@ msgid "" "has been configured." msgstr "" -#: main.php:330 +#: main.php:314 +#, php-format +msgid "" +"The additional features for working with linked tables have been " +"deactivated. To find out why click %shere%s." +msgstr "" +"Mae'r nodweddion ar gyfer gweithio gyda thablau sydd wedi cysylltu wedi'u " +"hanalluogi. Pwyswch %syma%s i ddarganfod pam." + +#: main.php:329 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:345 +#: main.php:344 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: main.php:357 +#: main.php:356 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -3954,96 +4020,96 @@ msgstr "" msgid "Reload navigation frame" msgstr "" -#: navigation.php:204 server_databases.php:370 server_synchronize.php:1190 +#: navigation.php:203 server_databases.php:368 server_synchronize.php:1189 msgid "No databases" msgstr "Dim cronfeydd data" -#: navigation.php:298 +#: navigation.php:297 msgid "Filter" msgstr "Hidlydd" -#: navigation.php:299 setup/frames/index.inc.php:218 +#: navigation.php:298 setup/frames/index.inc.php:218 #: setup/lib/messages.inc.php:41 msgid "Clear" msgstr "Clirio" -#: navigation.php:330 navigation.php:331 +#: navigation.php:329 navigation.php:330 msgctxt "short form" msgid "Create table" msgstr "Crëwch dabl" -#: navigation.php:333 navigation.php:495 +#: navigation.php:332 navigation.php:494 msgid "Please select a database" msgstr "Dewiswch gronfa ddata" -#: pdf_pages.php:40 pdf_pages.php:46 pdf_pages.php:52 pdf_pages.php:57 +#: pdf_pages.php:39 pdf_pages.php:45 pdf_pages.php:51 pdf_pages.php:56 #, php-format msgid "%s table not found or not set in %s" msgstr "Tabl %s heb ei ddarganfod neu heb ei osod mewn %s" -#: pdf_pages.php:265 +#: pdf_pages.php:264 msgid "Please choose a page to edit" msgstr "" -#: pdf_pages.php:303 pmd_pdf.php:113 +#: pdf_pages.php:302 pmd_pdf.php:111 msgid "Create a page" msgstr "Crëwch dudalen" -#: pdf_pages.php:309 +#: pdf_pages.php:308 msgid "Page name" msgstr "Enw'r dudalen" -#: pdf_pages.php:313 +#: pdf_pages.php:312 msgid "Automatic layout based on" msgstr "" -#: pdf_pages.php:315 +#: pdf_pages.php:314 msgid "Internal relations" msgstr "Perthnasau mewnol" -#: pdf_pages.php:338 +#: pdf_pages.php:337 msgid "Select Tables" msgstr "Dewis Tablau" -#: pdf_pages.php:361 +#: pdf_pages.php:360 msgid "Toggle scratchboard" msgstr "" -#: pdf_pages.php:524 +#: pdf_pages.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" msgstr "" -#: pdf_schema.php:635 +#: pdf_schema.php:634 #, php-format msgid "The %s table doesn't exist!" msgstr "" -#: pdf_schema.php:671 +#: pdf_schema.php:670 #, php-format msgid "Please configure the coordinates for table %s" msgstr "" -#: pdf_schema.php:994 +#: pdf_schema.php:993 #, php-format msgid "Schema of the %s database - Page %s" msgstr "" -#: pdf_schema.php:1012 +#: pdf_schema.php:1011 msgid "No tables" msgstr "Dim tablau" -#: pdf_schema.php:1031 pdf_schema.php:1140 +#: pdf_schema.php:1030 pdf_schema.php:1139 msgid "Relational schema" msgstr "Sgema perthynol" -#: pdf_schema.php:1115 +#: pdf_schema.php:1114 msgid "Table of contents" msgstr "Tabl cynnwys" -#: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:145 -#: tbl_structure.php:182 tbl_tracking.php:277 +#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 +#: tbl_structure.php:181 tbl_tracking.php:272 msgid "Extra" msgstr "Ychwanegol" @@ -4055,7 +4121,7 @@ msgstr "" msgid "Save position" msgstr "Cadw safle" -#: pmd_general.php:70 server_synchronize.php:428 server_synchronize.php:871 +#: pmd_general.php:70 server_synchronize.php:427 server_synchronize.php:870 msgid "Create table" msgstr "Crëwch dabl" @@ -4126,31 +4192,31 @@ msgid "" "appropriate column name." msgstr "" -#: pmd_pdf.php:62 +#: pmd_pdf.php:60 msgid "Page has been created" msgstr "" -#: pmd_pdf.php:64 +#: pmd_pdf.php:62 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:84 +#: pmd_pdf.php:82 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:88 +#: pmd_pdf.php:86 msgid "recommended" msgstr "" -#: pmd_pdf.php:93 +#: pmd_pdf.php:91 msgid "to/from page" msgstr "" -#: querywindow.php:94 +#: querywindow.php:93 msgid "Import files" msgstr "Mewnforiwch ffeiliau" -#: querywindow.php:105 +#: querywindow.php:104 msgid "All" msgstr "Pob" @@ -4196,392 +4262,392 @@ msgstr "Gwybodaeth" msgid "Character Sets and Collations" msgstr "Setiau nod a Choladiadau" -#: server_databases.php:51 +#: server_databases.php:49 msgid "No databases selected." msgstr "Dim cronfeydd data wedi'u dewis." -#: server_databases.php:62 +#: server_databases.php:60 #, php-format msgid "%s databases have been dropped successfully." msgstr "" -#: server_databases.php:87 +#: server_databases.php:85 msgid "Databases statistics" msgstr "Ystadegau cronfeydd data" -#: server_databases.php:116 server_status.php:370 +#: server_databases.php:114 server_status.php:370 #: setup/lib/messages.inc.php:114 msgid "Tables" msgstr "Tablau" -#: server_databases.php:194 server_replication.php:180 -#: server_replication.php:208 +#: server_databases.php:192 server_replication.php:179 +#: server_replication.php:207 msgid "Master replication" msgstr "" -#: server_databases.php:196 server_replication.php:247 +#: server_databases.php:194 server_replication.php:246 msgid "Slave replication" msgstr "" -#: server_databases.php:229 +#: server_databases.php:227 msgid "Jump to database" msgstr "Neidiwch i'r gronfa ddata" -#: server_databases.php:266 +#: server_databases.php:264 msgid "Not replicated" msgstr "" -#: server_databases.php:272 +#: server_databases.php:270 #, fuzzy #| msgid "Replication" msgid "Replicated" msgstr "Dyblygiad" -#: server_databases.php:288 +#: server_databases.php:286 #, php-format msgid "Check privileges for database "%s"." msgstr "" -#: server_databases.php:292 server_databases.php:293 +#: server_databases.php:290 server_databases.php:291 msgid "Check Privileges" msgstr "Gwirio Breintiau" -#: server_databases.php:357 server_databases.php:358 +#: server_databases.php:355 server_databases.php:356 msgid "Enable Statistics" msgstr "Galluogi Ystadegau" -#: server_databases.php:361 server_databases.php:362 +#: server_databases.php:359 server_databases.php:360 msgid "Disable Statistics" msgstr "Analluogi Ystadegau" -#: server_databases.php:365 +#: server_databases.php:363 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." msgstr "" -#: server_engines.php:48 +#: server_engines.php:47 msgid "Storage Engines" msgstr "Peiriannau Storio" -#: server_export.php:20 +#: server_export.php:18 msgid "View dump (schema) of databases" msgstr "Gwylio dadlwythiad (sgema) cronfeydd data" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:23 server_privileges.php:265 msgid "Includes all privileges except GRANT." msgstr "" -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:24 server_privileges.php:191 +#: server_privileges.php:514 msgid "Allows altering the structure of existing tables." msgstr "" -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:25 server_privileges.php:207 +#: server_privileges.php:520 msgid "Allows altering and dropping stored routines." msgstr "" -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:26 server_privileges.php:183 +#: server_privileges.php:513 msgid "Allows creating new databases and tables." msgstr "" -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:27 server_privileges.php:206 +#: server_privileges.php:519 msgid "Allows creating stored routines." msgstr "" -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:513 msgid "Allows creating new tables." msgstr "" -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:29 server_privileges.php:194 +#: server_privileges.php:517 msgid "Allows creating temporary tables." msgstr "" -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:30 server_privileges.php:208 +#: server_privileges.php:553 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: server_privileges.php:32 server_privileges.php:199 -#: server_privileges.php:203 server_privileges.php:526 -#: server_privileges.php:530 +#: server_privileges.php:31 server_privileges.php:198 +#: server_privileges.php:202 server_privileges.php:525 +#: server_privileges.php:529 msgid "Allows creating new views." msgstr "" -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:32 server_privileges.php:182 +#: server_privileges.php:505 msgid "Allows deleting data." msgstr "" -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:33 server_privileges.php:184 +#: server_privileges.php:516 msgid "Allows dropping databases and tables." msgstr "" -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:34 server_privileges.php:516 msgid "Allows dropping tables." msgstr "" -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:35 server_privileges.php:199 +#: server_privileges.php:533 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:36 server_privileges.php:209 +#: server_privileges.php:521 msgid "Allows executing stored routines." msgstr "" -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:37 server_privileges.php:188 +#: server_privileges.php:508 msgid "Allows importing data from and exporting data into files." msgstr "" -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:38 server_privileges.php:539 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:515 msgid "Allows creating and dropping indexes." msgstr "" -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:40 server_privileges.php:180 +#: server_privileges.php:441 server_privileges.php:503 msgid "Allows inserting and replacing data." msgstr "" -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:41 server_privileges.php:195 +#: server_privileges.php:548 msgid "Allows locking tables for the current thread." msgstr "" -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:42 server_privileges.php:645 +#: server_privileges.php:647 msgid "Limits the number of new connections the user may open per hour." msgstr "" -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:43 server_privileges.php:633 +#: server_privileges.php:635 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:44 server_privileges.php:639 +#: server_privileges.php:641 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" -#: server_privileges.php:46 server_privileges.php:652 -#: server_privileges.php:654 +#: server_privileges.php:45 server_privileges.php:651 +#: server_privileges.php:653 msgid "Limits the number of simultaneous connections the user may have." msgstr "" -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:46 server_privileges.php:187 +#: server_privileges.php:543 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:47 server_privileges.php:189 +#: server_privileges.php:447 server_privileges.php:549 msgid "Has no effect in this MySQL version." msgstr "" -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:48 server_privileges.php:185 +#: server_privileges.php:544 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:197 +#: server_privileges.php:551 msgid "Allows the user to ask where the slaves / masters are." msgstr "" -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:50 server_privileges.php:196 +#: server_privileges.php:552 msgid "Needed for the replication slaves." msgstr "" -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:51 server_privileges.php:179 +#: server_privileges.php:438 server_privileges.php:502 msgid "Allows reading data." msgstr "" -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:52 server_privileges.php:192 +#: server_privileges.php:546 msgid "Gives access to the complete list of databases." msgstr "" -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:53 server_privileges.php:203 +#: server_privileges.php:205 server_privileges.php:518 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:54 server_privileges.php:186 +#: server_privileges.php:545 msgid "Allows shutting down the server." msgstr "" -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:55 server_privileges.php:193 +#: server_privileges.php:542 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " "killing threads of other users." msgstr "" -#: server_privileges.php:57 server_privileges.php:201 -#: server_privileges.php:535 +#: server_privileges.php:56 server_privileges.php:200 +#: server_privileges.php:534 msgid "Allows creating and dropping triggers" msgstr "" -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:57 server_privileges.php:181 +#: server_privileges.php:444 server_privileges.php:504 msgid "Allows changing data." msgstr "" -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:58 server_privileges.php:259 msgid "No privileges." msgstr "" -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:301 server_privileges.php:302 msgctxt "None privileges" msgid "None" msgstr "Dim" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1710 server_privileges.php:1716 +#: server_privileges.php:430 server_privileges.php:565 +#: server_privileges.php:1714 server_privileges.php:1720 msgid "Table-specific privileges" msgstr "" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1532 +#: server_privileges.php:431 server_privileges.php:573 +#: server_privileges.php:1536 msgid " Note: MySQL privilege names are expressed in English " msgstr "" -#: server_privileges.php:563 server_privileges.php:1531 +#: server_privileges.php:562 server_privileges.php:1535 msgid "Global privileges" msgstr "" -#: server_privileges.php:565 server_privileges.php:1710 +#: server_privileges.php:564 server_privileges.php:1714 msgid "Database-specific privileges" msgstr "" -#: server_privileges.php:610 +#: server_privileges.php:609 msgid "Administration" msgstr "" -#: server_privileges.php:630 +#: server_privileges.php:629 msgid "Resource limits" msgstr "" -#: server_privileges.php:631 +#: server_privileges.php:630 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" -#: server_privileges.php:708 +#: server_privileges.php:707 msgid "Login Information" msgstr "" -#: server_privileges.php:802 +#: server_privileges.php:801 msgid "Do not change the password" msgstr "" -#: server_privileges.php:835 server_privileges.php:2197 +#: server_privileges.php:834 server_privileges.php:2201 msgid "No user found." msgstr "" -#: server_privileges.php:879 +#: server_privileges.php:878 #, php-format msgid "The user %s already exists!" msgstr "" -#: server_privileges.php:962 +#: server_privileges.php:961 msgid "You have added a new user." msgstr "" -#: server_privileges.php:1183 +#: server_privileges.php:1184 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: server_privileges.php:1207 +#: server_privileges.php:1208 #, php-format msgid "You have revoked the privileges for %s" msgstr "" -#: server_privileges.php:1243 +#: server_privileges.php:1244 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: server_privileges.php:1263 +#: server_privileges.php:1264 #, php-format msgid "Deleting %s" msgstr "" -#: server_privileges.php:1274 +#: server_privileges.php:1275 msgid "No users selected for deleting!" msgstr "" -#: server_privileges.php:1277 +#: server_privileges.php:1278 msgid "Reloading the privileges" msgstr "" -#: server_privileges.php:1292 +#: server_privileges.php:1296 msgid "The selected users have been deleted successfully." msgstr "" -#: server_privileges.php:1327 +#: server_privileges.php:1331 msgid "The privileges were reloaded successfully." msgstr "" -#: server_privileges.php:1355 server_privileges.php:1641 +#: server_privileges.php:1359 server_privileges.php:1645 msgid "Edit Privileges" msgstr "" -#: server_privileges.php:1364 +#: server_privileges.php:1368 msgid "Revoke" msgstr "" -#: server_privileges.php:1396 +#: server_privileges.php:1400 msgid "User overview" msgstr "" -#: server_privileges.php:1533 server_privileges.php:1715 -#: server_privileges.php:2064 +#: server_privileges.php:1537 server_privileges.php:1719 +#: server_privileges.php:2068 msgid "Grant" msgstr "" -#: server_privileges.php:1552 server_privileges.php:2154 +#: server_privileges.php:1556 server_privileges.php:2158 msgid "Any" msgstr "" -#: server_privileges.php:1601 server_privileges.php:1625 -#: server_privileges.php:2019 server_privileges.php:2208 +#: server_privileges.php:1605 server_privileges.php:1629 +#: server_privileges.php:2023 server_privileges.php:2212 msgid "Add a new User" msgstr "" -#: server_privileges.php:1606 +#: server_privileges.php:1610 msgid "Remove selected users" msgstr "" -#: server_privileges.php:1609 +#: server_privileges.php:1613 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: server_privileges.php:1610 server_privileges.php:1611 -#: server_privileges.php:1612 +#: server_privileges.php:1614 server_privileges.php:1615 +#: server_privileges.php:1616 msgid "Drop the databases that have the same names as the users." msgstr "" -#: server_privileges.php:1628 +#: server_privileges.php:1632 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4590,89 +4656,89 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: server_privileges.php:1676 +#: server_privileges.php:1680 msgid "The selected user was not found in the privilege table." msgstr "" -#: server_privileges.php:1716 +#: server_privileges.php:1720 msgid "Column-specific privileges" msgstr "" -#: server_privileges.php:1917 +#: server_privileges.php:1921 msgid "Add privileges on the following database" msgstr "" -#: server_privileges.php:1935 +#: server_privileges.php:1939 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:1938 +#: server_privileges.php:1942 msgid "Add privileges on the following table" msgstr "" -#: server_privileges.php:1995 +#: server_privileges.php:1999 msgid "Change Login Information / Copy User" msgstr "" -#: server_privileges.php:1998 +#: server_privileges.php:2002 msgid "Create a new user with the same privileges and ..." msgstr "" -#: server_privileges.php:2000 +#: server_privileges.php:2004 msgid "... keep the old one." msgstr "" -#: server_privileges.php:2001 +#: server_privileges.php:2005 msgid " ... delete the old one from the user tables." msgstr "" -#: server_privileges.php:2002 +#: server_privileges.php:2006 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: server_privileges.php:2003 +#: server_privileges.php:2007 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: server_privileges.php:2025 +#: server_privileges.php:2029 msgid "Database for user" msgstr "" -#: server_privileges.php:2029 +#: server_privileges.php:2033 msgctxt "Create none database for user" msgid "None" msgstr "" -#: server_privileges.php:2030 +#: server_privileges.php:2034 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2031 +#: server_privileges.php:2035 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2034 +#: server_privileges.php:2038 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: server_privileges.php:2057 +#: server_privileges.php:2061 #, php-format msgid "Users having access to "%s"" msgstr "" -#: server_privileges.php:2165 +#: server_privileges.php:2169 msgid "global" msgstr "" -#: server_privileges.php:2167 +#: server_privileges.php:2171 msgid "database-specific" msgstr "" -#: server_privileges.php:2169 +#: server_privileges.php:2173 msgid "wildcard" msgstr "" @@ -4691,53 +4757,53 @@ msgstr "" msgid "ID" msgstr "" -#: server_replication.php:50 +#: server_replication.php:49 msgid "Unknown error" msgstr "" -#: server_replication.php:57 +#: server_replication.php:56 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:64 +#: server_replication.php:63 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:70 +#: server_replication.php:69 msgid "Unable to change master" msgstr "" -#: server_replication.php:73 +#: server_replication.php:72 #, php-format msgid "Master server changed succesfully to %s" msgstr "" -#: server_replication.php:181 +#: server_replication.php:180 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:183 server_status.php:391 +#: server_replication.php:182 server_status.php:391 msgid "Show master status" msgstr "" -#: server_replication.php:186 +#: server_replication.php:185 msgid "Show connected slaves" msgstr "" -#: server_replication.php:209 +#: server_replication.php:208 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:216 +#: server_replication.php:215 msgid "Master configuration" msgstr "" -#: server_replication.php:217 +#: server_replication.php:216 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -4746,107 +4812,107 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:220 +#: server_replication.php:219 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:221 +#: server_replication.php:220 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:224 +#: server_replication.php:223 msgid "Please select databases:" msgstr "" -#: server_replication.php:227 +#: server_replication.php:226 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: server_replication.php:229 +#: server_replication.php:228 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: server_replication.php:292 +#: server_replication.php:291 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:295 +#: server_replication.php:294 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:304 +#: server_replication.php:303 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:307 +#: server_replication.php:306 msgid "See slave status table" msgstr "" -#: server_replication.php:310 +#: server_replication.php:309 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:321 +#: server_replication.php:320 msgid "Control slave:" msgstr "" -#: server_replication.php:324 +#: server_replication.php:323 msgid "Full start" msgstr "" -#: server_replication.php:324 +#: server_replication.php:323 msgid "Full stop" msgstr "" -#: server_replication.php:325 +#: server_replication.php:324 msgid "Reset slave" msgstr "" -#: server_replication.php:326 +#: server_replication.php:325 #, php-format msgid "SQL Thread %s only" msgstr "" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 msgid "Start" msgstr "" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 msgid "Stop" msgstr "" -#: server_replication.php:327 +#: server_replication.php:326 #, php-format msgid "IO Thread %s only" msgstr "" -#: server_replication.php:331 +#: server_replication.php:330 msgid "Error management:" msgstr "" -#: server_replication.php:333 +#: server_replication.php:332 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:335 +#: server_replication.php:334 msgid "Skip current error" msgstr "" -#: server_replication.php:336 +#: server_replication.php:335 msgid "Skip next" msgstr "" -#: server_replication.php:339 +#: server_replication.php:338 msgid "errors." msgstr "" -#: server_replication.php:354 +#: server_replication.php:353 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -5546,110 +5612,110 @@ msgstr "" msgid "Replication status" msgstr "" -#: server_synchronize.php:93 +#: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:96 +#: server_synchronize.php:95 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:121 server_synchronize.php:124 tbl_create.php:77 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:264 +#: server_synchronize.php:263 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:271 +#: server_synchronize.php:270 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:399 server_synchronize.php:838 +#: server_synchronize.php:398 server_synchronize.php:837 msgid "not present" msgstr "" -#: server_synchronize.php:423 server_synchronize.php:866 +#: server_synchronize.php:422 server_synchronize.php:865 msgid "Structure Difference" msgstr "" -#: server_synchronize.php:424 server_synchronize.php:867 +#: server_synchronize.php:423 server_synchronize.php:866 msgid "Data Difference" msgstr "" -#: server_synchronize.php:429 server_synchronize.php:872 +#: server_synchronize.php:428 server_synchronize.php:871 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:430 server_synchronize.php:873 +#: server_synchronize.php:429 server_synchronize.php:872 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:431 server_synchronize.php:874 +#: server_synchronize.php:430 server_synchronize.php:873 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:432 server_synchronize.php:875 +#: server_synchronize.php:431 server_synchronize.php:874 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:433 server_synchronize.php:876 +#: server_synchronize.php:432 server_synchronize.php:875 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:434 server_synchronize.php:877 +#: server_synchronize.php:433 server_synchronize.php:876 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:435 server_synchronize.php:878 +#: server_synchronize.php:434 server_synchronize.php:877 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:445 server_synchronize.php:889 +#: server_synchronize.php:444 server_synchronize.php:888 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:448 server_synchronize.php:893 +#: server_synchronize.php:447 server_synchronize.php:892 msgid "Apply Selected Changes" msgstr "" -#: server_synchronize.php:450 server_synchronize.php:895 +#: server_synchronize.php:449 server_synchronize.php:894 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:463 +#: server_synchronize.php:462 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:941 +#: server_synchronize.php:940 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:1002 +#: server_synchronize.php:1001 msgid "The following queries have been executed:" msgstr "" -#: server_synchronize.php:1121 +#: server_synchronize.php:1120 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1122 +#: server_synchronize.php:1121 msgid "Current connection" msgstr "" -#: server_synchronize.php:1151 +#: server_synchronize.php:1150 #, php-format msgid "Configuration: %s" msgstr "" -#: server_synchronize.php:1166 +#: server_synchronize.php:1165 msgid "Socket" msgstr "" -#: server_synchronize.php:1212 +#: server_synchronize.php:1211 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -6194,8 +6260,8 @@ msgstr "" #: setup/lib/messages.inc.php:128 msgid "" "Configure phpMyAdmin database to gain access to additional features, see " -"[a@../Documentation.html#linked-tables]linked-tables infrastructure[/a] in " -"documentation" +"[a@../Documentation.html#linked-tables]phpMyAdmin configuration storage[/a] " +"in documentation" msgstr "" #: setup/lib/messages.inc.php:129 setup/lib/messages.inc.php:290 @@ -7235,114 +7301,114 @@ msgstr "" msgid "ZIP" msgstr "ZIP" -#: sql.php:495 tbl_replace.php:385 +#: sql.php:494 tbl_replace.php:384 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: sql.php:512 +#: sql.php:511 msgid "Showing as PHP code" msgstr "" -#: sql.php:515 tbl_replace.php:359 +#: sql.php:514 tbl_replace.php:358 msgid "Showing SQL query" msgstr "" -#: sql.php:517 +#: sql.php:516 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Dilysu SQL" -#: sql.php:638 +#: sql.php:631 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:670 +#: sql.php:663 msgid "Label" msgstr "" -#: tbl_addfield.php:188 tbl_alter.php:102 tbl_indexes.php:97 +#: tbl_addfield.php:185 tbl_alter.php:100 tbl_indexes.php:97 #, php-format msgid "Table %1$s has been altered successfully" msgstr "" -#: tbl_change.php:250 tbl_select.php:26 tbl_select.php:27 tbl_select.php:30 -#: tbl_select.php:33 +#: tbl_change.php:245 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_select.php:32 msgid "Browse foreign values" msgstr "" -#: tbl_change.php:280 tbl_change.php:318 +#: tbl_change.php:275 tbl_change.php:313 msgid "Function" msgstr "Swyddogaeth" -#: tbl_change.php:300 tbl_indexes.php:199 tbl_indexes.php:224 +#: tbl_change.php:295 tbl_indexes.php:198 tbl_indexes.php:223 msgid "Ignore" msgstr "Anwybyddu" -#: tbl_change.php:725 +#: tbl_change.php:720 msgid " Because of its length,
                            this column might not be editable " msgstr "" -#: tbl_change.php:884 +#: tbl_change.php:835 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:890 +#: tbl_change.php:841 msgid "Binary - do not edit" msgstr "Deuaidd - peidiwch â golygu" -#: tbl_change.php:983 +#: tbl_change.php:889 msgid "Upload to BLOB repository" msgstr "Lanlwytho i storfa BLOB" -#: tbl_change.php:1128 +#: tbl_change.php:1026 msgid "Insert as new row" msgstr "Mewnosod fel rhes newydd" -#: tbl_change.php:1129 +#: tbl_change.php:1027 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:1130 +#: tbl_change.php:1028 msgid "Show insert query" msgstr "Dangos ymholiad mewnosod" -#: tbl_change.php:1145 +#: tbl_change.php:1043 msgid "Go back to previous page" msgstr "Dychwelyd i'r dudalen flaenorol" -#: tbl_change.php:1146 +#: tbl_change.php:1044 msgid "Insert another new row" msgstr "Mewnosod rhes newydd arall" -#: tbl_change.php:1150 +#: tbl_change.php:1048 msgid "Go back to this page" msgstr "Dychwelyd i'r dudalen hon" -#: tbl_change.php:1158 +#: tbl_change.php:1056 msgid "Edit next row" msgstr "Golygu'r rhes nesaf" -#: tbl_change.php:1169 +#: tbl_change.php:1067 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Defnyddiwch y bysell TAB i symud o un gwerth i'r llall, neu CTRL + saethau i " "symud unrhyw le" -#: tbl_change.php:1207 +#: tbl_change.php:1105 #, php-format msgid "Restart insertion with %s rows" msgstr "" -#: tbl_create.php:57 +#: tbl_create.php:55 #, php-format msgid "Table %s already exists!" msgstr "" -#: tbl_create.php:244 +#: tbl_create.php:241 #, php-format msgid "Table %1$s has been created." msgstr "" @@ -7363,196 +7429,196 @@ msgstr "" msgid "No index parts defined!" msgstr "" -#: tbl_indexes.php:159 +#: tbl_indexes.php:158 msgid "Create a new index" msgstr "" -#: tbl_indexes.php:161 +#: tbl_indexes.php:160 msgid "Modify an index" msgstr "" -#: tbl_indexes.php:167 +#: tbl_indexes.php:166 msgid "Index name:" msgstr "" -#: tbl_indexes.php:173 +#: tbl_indexes.php:172 msgid "Index type:" msgstr "" -#: tbl_indexes.php:183 +#: tbl_indexes.php:182 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" -#: tbl_indexes.php:250 +#: tbl_indexes.php:249 #, php-format msgid "Add to index  %s column(s)" msgstr "" -#: tbl_indexes.php:255 tbl_structure.php:588 tbl_structure.php:599 +#: tbl_indexes.php:254 tbl_structure.php:586 tbl_structure.php:597 msgid "Column count has to be larger than zero." msgstr "" -#: tbl_move_copy.php:45 +#: tbl_move_copy.php:44 msgid "Can't move table to same one!" msgstr "" -#: tbl_move_copy.php:47 +#: tbl_move_copy.php:46 msgid "Can't copy table to same one!" msgstr "" -#: tbl_move_copy.php:55 +#: tbl_move_copy.php:54 #, php-format msgid "Table %s has been moved to %s." msgstr "" -#: tbl_move_copy.php:57 +#: tbl_move_copy.php:56 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: tbl_move_copy.php:81 +#: tbl_move_copy.php:80 msgid "The table name is empty!" msgstr "" -#: tbl_operations.php:248 +#: tbl_operations.php:246 msgid "Alter table order by" msgstr "" -#: tbl_operations.php:257 +#: tbl_operations.php:255 msgid "(singly)" msgstr "" -#: tbl_operations.php:277 +#: tbl_operations.php:275 msgid "Move table to (database.table):" msgstr "" -#: tbl_operations.php:335 +#: tbl_operations.php:333 msgid "Table options" msgstr "" -#: tbl_operations.php:339 +#: tbl_operations.php:337 msgid "Rename table to" msgstr "Ailenwi tabl i" -#: tbl_operations.php:510 +#: tbl_operations.php:508 msgid "Copy table to (database.table):" msgstr "" -#: tbl_operations.php:557 +#: tbl_operations.php:555 msgid "Switch to copied table" msgstr "" -#: tbl_operations.php:569 +#: tbl_operations.php:567 msgid "Table maintenance" msgstr "" -#: tbl_operations.php:590 +#: tbl_operations.php:588 msgid "Defragment table" msgstr "" -#: tbl_operations.php:629 +#: tbl_operations.php:627 #, php-format msgid "Table %s has been flushed" msgstr "" -#: tbl_operations.php:635 +#: tbl_operations.php:633 msgid "Flush the table (FLUSH)" msgstr "" -#: tbl_operations.php:650 +#: tbl_operations.php:648 msgid "Partition maintenance" msgstr "Cynhaliaeth ymraniadau" -#: tbl_operations.php:658 +#: tbl_operations.php:656 #, php-format msgid "Partition %s" msgstr "Ymraniad %s" -#: tbl_operations.php:661 +#: tbl_operations.php:659 msgid "Analyze" msgstr "Dadansoddi" -#: tbl_operations.php:662 +#: tbl_operations.php:660 msgid "Check" msgstr "Gwirio" -#: tbl_operations.php:663 +#: tbl_operations.php:661 msgid "Optimize" msgstr "Optimeiddio" -#: tbl_operations.php:664 +#: tbl_operations.php:662 msgid "Rebuild" msgstr "Ailadeiladu" -#: tbl_operations.php:665 +#: tbl_operations.php:663 msgid "Repair" msgstr "Trwsio" -#: tbl_operations.php:677 +#: tbl_operations.php:675 msgid "Remove partitioning" msgstr "Tynnu'r ymraniadu" -#: tbl_operations.php:703 +#: tbl_operations.php:701 msgid "Check referential integrity:" msgstr "" -#: tbl_printview.php:73 +#: tbl_printview.php:72 msgid "Show tables" msgstr "" -#: tbl_printview.php:308 tbl_structure.php:655 +#: tbl_printview.php:307 tbl_structure.php:653 msgid "Space usage" msgstr "" -#: tbl_printview.php:312 tbl_structure.php:659 +#: tbl_printview.php:311 tbl_structure.php:657 msgid "Usage" msgstr "" -#: tbl_printview.php:339 tbl_structure.php:686 +#: tbl_printview.php:338 tbl_structure.php:684 msgid "Effective" msgstr "" -#: tbl_printview.php:364 tbl_structure.php:724 +#: tbl_printview.php:363 tbl_structure.php:722 msgid "Row Statistics" msgstr "" -#: tbl_printview.php:367 tbl_structure.php:727 +#: tbl_printview.php:366 tbl_structure.php:725 msgid "Statements" msgstr "" -#: tbl_printview.php:378 tbl_structure.php:739 +#: tbl_printview.php:377 tbl_structure.php:737 msgid "static" msgstr "" -#: tbl_printview.php:380 tbl_structure.php:741 +#: tbl_printview.php:379 tbl_structure.php:739 msgid "dynamic" msgstr "" -#: tbl_printview.php:402 tbl_structure.php:784 +#: tbl_printview.php:401 tbl_structure.php:782 msgid "Row length" msgstr "" -#: tbl_printview.php:412 tbl_structure.php:792 +#: tbl_printview.php:411 tbl_structure.php:790 msgid " Row size " msgstr "" -#: tbl_relation.php:278 +#: tbl_relation.php:276 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" -#: tbl_relation.php:404 +#: tbl_relation.php:402 msgid "Internal relation" msgstr "" -#: tbl_relation.php:406 +#: tbl_relation.php:404 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: tbl_relation.php:412 +#: tbl_relation.php:410 msgid "Foreign key constraint" msgstr "" @@ -7560,221 +7626,221 @@ msgstr "" msgid "No rows selected" msgstr "" -#: tbl_select.php:130 +#: tbl_select.php:129 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "" -#: tbl_select.php:136 +#: tbl_select.php:135 msgid "Operator" msgstr "" -#: tbl_select.php:267 +#: tbl_select.php:266 msgid "Select columns (at least one):" msgstr "" -#: tbl_select.php:285 +#: tbl_select.php:284 msgid "Add search conditions (body of the \"where\" clause):" msgstr "" -#: tbl_select.php:292 +#: tbl_select.php:291 msgid "Number of rows per page" msgstr "" -#: tbl_select.php:298 +#: tbl_select.php:297 msgid "Display order:" msgstr "" -#: tbl_structure.php:160 +#: tbl_structure.php:159 msgid "Browse distinct values" msgstr "" -#: tbl_structure.php:360 +#: tbl_structure.php:358 msgctxt "None for default" msgid "None" msgstr "" -#: tbl_structure.php:373 +#: tbl_structure.php:371 #, php-format msgid "Column %s has been dropped" msgstr "" -#: tbl_structure.php:384 +#: tbl_structure.php:382 #, php-format msgid "A primary key has been added on %s" msgstr "" -#: tbl_structure.php:399 tbl_structure.php:413 tbl_structure.php:427 +#: tbl_structure.php:397 tbl_structure.php:411 tbl_structure.php:425 #, php-format msgid "An index has been added on %s" msgstr "" -#: tbl_structure.php:505 tbl_structure.php:507 +#: tbl_structure.php:503 tbl_structure.php:505 msgid "Relation view" msgstr "" -#: tbl_structure.php:514 tbl_structure.php:516 +#: tbl_structure.php:512 tbl_structure.php:514 msgid "Propose table structure" msgstr "" -#: tbl_structure.php:539 +#: tbl_structure.php:537 msgid "Add column" msgstr "" -#: tbl_structure.php:553 +#: tbl_structure.php:551 msgid "At End of Table" msgstr "" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At Beginning of Table" msgstr "" -#: tbl_structure.php:555 +#: tbl_structure.php:553 #, php-format msgid "After %s" msgstr "" -#: tbl_structure.php:593 +#: tbl_structure.php:591 #, php-format msgid "Create an index on  %s columns" msgstr "" -#: tbl_structure.php:755 +#: tbl_structure.php:753 msgid "partitioned" msgstr "" -#: tbl_tracking.php:113 +#: tbl_tracking.php:109 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:186 +#: tbl_tracking.php:182 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "" -#: tbl_tracking.php:194 +#: tbl_tracking.php:190 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "" -#: tbl_tracking.php:202 +#: tbl_tracking.php:198 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "" -#: tbl_tracking.php:212 +#: tbl_tracking.php:208 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:219 +#: tbl_tracking.php:215 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:220 +#: tbl_tracking.php:216 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:229 +#: tbl_tracking.php:225 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:250 tbl_tracking.php:378 +#: tbl_tracking.php:245 tbl_tracking.php:373 msgid "Close" msgstr "Cau" -#: tbl_tracking.php:261 +#: tbl_tracking.php:256 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Ciplun fersiwn %s (cod SQL)" -#: tbl_tracking.php:380 +#: tbl_tracking.php:375 msgid "Tracking statements" msgstr "Datganiadau tracio" -#: tbl_tracking.php:396 tbl_tracking.php:503 +#: tbl_tracking.php:391 tbl_tracking.php:498 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "" -#: tbl_tracking.php:409 tbl_tracking.php:460 +#: tbl_tracking.php:404 tbl_tracking.php:455 msgid "Date" msgstr "Dyddiad" -#: tbl_tracking.php:410 tbl_tracking.php:461 +#: tbl_tracking.php:405 tbl_tracking.php:456 msgid "Username" msgstr "Enw defnyddiwr" -#: tbl_tracking.php:411 +#: tbl_tracking.php:406 msgid "Data definition statement" msgstr "Datganiad diffiniad data" -#: tbl_tracking.php:462 +#: tbl_tracking.php:457 msgid "Data manipulation statement" msgstr "Datganiad trin data" -#: tbl_tracking.php:506 +#: tbl_tracking.php:501 msgid "SQL dump (file download)" msgstr "Dadlwythiad SQL (lawrlwytho ffeil)" -#: tbl_tracking.php:507 +#: tbl_tracking.php:502 msgid "SQL dump" msgstr "Dadlwythiad SQL" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "This option will replace your table and contained data." msgstr "Bydd yr opsiwn hwn yn disodli eich tabl a'r data sydd ynddo." -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "SQL execution" msgstr "Gweithrediad SQL" -#: tbl_tracking.php:520 +#: tbl_tracking.php:515 #, php-format msgid "Export as %s" msgstr "Allforio fel %s" -#: tbl_tracking.php:560 +#: tbl_tracking.php:555 msgid "Show versions" msgstr "Dangos fersiynau" -#: tbl_tracking.php:592 +#: tbl_tracking.php:587 msgid "Version" msgstr "Fersiwn" -#: tbl_tracking.php:639 +#: tbl_tracking.php:634 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "Dadweithredwch dracio am %s.%s" -#: tbl_tracking.php:641 +#: tbl_tracking.php:636 msgid "Deactivate now" msgstr "Dadweithredwch nawr" -#: tbl_tracking.php:652 +#: tbl_tracking.php:647 #, php-format msgid "Activate tracking for %s.%s" msgstr "Gweithredwch dracio am %s.%s" -#: tbl_tracking.php:654 +#: tbl_tracking.php:649 msgid "Activate now" msgstr "Gweithredwch nawr" -#: tbl_tracking.php:667 +#: tbl_tracking.php:662 #, php-format msgid "Create version %s of %s.%s" msgstr "Crëwch fersiwn %s o %s.%s" -#: tbl_tracking.php:671 +#: tbl_tracking.php:666 msgid "Track these data definition statements:" msgstr "Traciwch y datganiadau diffiniad data hyn:" -#: tbl_tracking.php:679 +#: tbl_tracking.php:674 msgid "Track these data manipulation statements:" msgstr "Traciwch y datganiadau trin data hyn:" -#: tbl_tracking.php:687 +#: tbl_tracking.php:682 msgid "Create version" msgstr "Crëwch fersiwn" @@ -7819,9 +7885,33 @@ msgstr "" msgid "VIEW name" msgstr "Enw VIEW" -#: view_operations.php:92 +#: view_operations.php:91 msgid "Rename view to" msgstr "Ailenwch golwg i" +#~ msgid "BLOB Repository" +#~ msgstr "Ystorfa BLOB" + +#~ msgctxt "BLOB repository" +#~ msgid "Enabled" +#~ msgstr "Galluogwyd" + +#~ msgid "Disable" +#~ msgstr "Analluogwch" + +#~ msgid "Damaged" +#~ msgstr "Wedi difrodi" + +#~ msgctxt "BLOB repository" +#~ msgid "Repair" +#~ msgstr "Trwsiwch" + +#~ msgctxt "BLOB repository" +#~ msgid "Disabled" +#~ msgstr "Analluogwyd" + +#~ msgid "Enable" +#~ msgstr "Galluogwch" + #~ msgid "Allow character set conversion" #~ msgstr "Caniatáu trosi set nodau" diff --git a/po/da.po b/po/da.po index e7b7d50f1..5ba85ae20 100644 --- a/po/da.po +++ b/po/da.po @@ -3,8 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-21 13:53+0200\n" -"POT-Creation-Date: 2010-07-21 10:29+0200\n" +"POT-Creation-Date: 2010-07-26 17:18+0200\n" "PO-Revision-Date: 2010-07-21 14:55+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: danish \n" @@ -15,19 +14,19 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.1\n" -#: browse_foreigners.php:37 browse_foreigners.php:58 -#: libraries/display_tbl.lib.php:416 server_privileges.php:1506 +#: browse_foreigners.php:36 browse_foreigners.php:57 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1510 msgid "Show all" msgstr "Vis alle" -#: browse_foreigners.php:81 libraries/common.lib.php:2313 -#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:393 -#: libraries/export/pdf.php:146 pdf_schema.php:282 pdf_schema.php:1122 -#: pdf_schema.php:1138 +#: browse_foreigners.php:80 libraries/common.lib.php:2318 +#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:392 +#: libraries/export/pdf.php:146 pdf_schema.php:281 pdf_schema.php:1121 +#: pdf_schema.php:1137 msgid "Page number:" msgstr "Side nummer:" -#: browse_foreigners.php:131 +#: browse_foreigners.php:130 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -37,139 +36,153 @@ msgstr "" "overliggende vindue eller din browser blokerer for tvær-vindue opdateringer " "i sikkerhedsindstillingerne" -#: browse_foreigners.php:149 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2829 -#: libraries/common.lib.php:2836 libraries/db_links.inc.php:74 -#: libraries/tbl_links.inc.php:62 +#: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 +#: db_structure.php:89 db_structure.php:91 db_structure.php:102 +#: db_structure.php:104 libraries/common.lib.php:2834 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Søg" -#: browse_foreigners.php:152 db_operations.php:384 db_operations.php:428 -#: db_operations.php:498 db_operations.php:608 db_search.php:344 -#: db_structure.php:566 js/messages.php:48 libraries/Config.class.php:1043 -#: libraries/Theme_Manager.class.php:310 +#: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 +#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 +#: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 -#: libraries/common.lib.php:1340 libraries/common.lib.php:2289 +#: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 -#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:275 -#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:531 -#: libraries/display_tbl.lib.php:613 libraries/replication_gui.lib.php:75 +#: libraries/display_export.lib.php:269 libraries/display_import.lib.php:275 +#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 +#: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 #: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:781 -#: main.php:127 navigation.php:231 pdf_pages.php:291 pdf_pages.php:327 -#: pdf_pages.php:529 pmd_pdf.php:115 server_binlog.php:128 -#: server_privileges.php:664 server_privileges.php:1616 -#: server_privileges.php:1963 server_privileges.php:2010 -#: server_privileges.php:2049 server_replication.php:234 -#: server_replication.php:317 server_replication.php:340 -#: server_synchronize.php:1208 tbl_change.php:328 tbl_change.php:1172 -#: tbl_change.php:1209 tbl_indexes.php:253 tbl_operations.php:264 -#: tbl_operations.php:301 tbl_operations.php:498 tbl_operations.php:560 -#: tbl_operations.php:680 tbl_select.php:324 tbl_structure.php:561 -#: tbl_structure.php:596 tbl_tracking.php:394 tbl_tracking.php:511 -#: view_create.php:181 view_operations.php:100 +#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 +#: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 +#: server_privileges.php:663 server_privileges.php:1620 +#: server_privileges.php:1967 server_privileges.php:2014 +#: server_privileges.php:2053 server_replication.php:233 +#: server_replication.php:316 server_replication.php:339 +#: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 +#: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 +#: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 +#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "Udfør" -#: browse_foreigners.php:167 browse_foreigners.php:171 -#: libraries/Index.class.php:441 tbl_tracking.php:319 +#: browse_foreigners.php:166 browse_foreigners.php:170 +#: libraries/Index.class.php:441 tbl_tracking.php:314 msgid "Keyname" msgstr "Nøglenavn" -#: browse_foreigners.php:168 browse_foreigners.php:170 -#: server_collations.php:54 server_collations.php:66 server_engines.php:58 +#: browse_foreigners.php:167 browse_foreigners.php:169 +#: server_collations.php:54 server_collations.php:66 server_engines.php:57 #: server_status.php:738 msgid "Description" msgstr "Beskrivelse" -#: browse_foreigners.php:246 browse_foreigners.php:255 -#: browse_foreigners.php:267 browse_foreigners.php:275 +#: browse_foreigners.php:245 browse_foreigners.php:254 +#: browse_foreigners.php:266 browse_foreigners.php:274 msgid "Use this value" msgstr "Brug denne værdi" -#: db_create.php:45 +#: bs_disp_as_mime_type.php:29 bs_play_media.php:35 +msgid "No blob streaming server configured!" +msgstr "" + +#: bs_disp_as_mime_type.php:35 +#, fuzzy +#| msgid "Failed to write file to disk." +msgid "Failed to fetch headers" +msgstr "Kunne ikke skrive fil til disk." + +#: bs_disp_as_mime_type.php:41 +msgid "Failed to open remote URL" +msgstr "" + +#: db_create.php:44 #, php-format msgid "Database %1$s has been created." msgstr "" -#: db_datadict.php:48 db_operations.php:377 +#: db_datadict.php:48 db_operations.php:313 msgid "Database comment: " msgstr "Databasekommentar: " -#: db_datadict.php:164 libraries/tbl_properties.inc.php:723 -#: pdf_schema.php:1235 tbl_operations.php:346 tbl_printview.php:128 +#: db_datadict.php:164 libraries/tbl_properties.inc.php:722 +#: pdf_schema.php:1234 tbl_operations.php:344 tbl_printview.php:127 msgid "Table comments" msgstr "Tabel kommentarer" -#: db_datadict.php:173 db_qbe.php:173 libraries/Index.class.php:445 +#: db_datadict.php:173 db_qbe.php:170 libraries/Index.class.php:445 #: libraries/export/htmlword.php:243 libraries/export/latex.php:364 #: libraries/export/odt.php:293 libraries/export/texytext.php:233 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:274 -#: pdf_schema.php:1261 pdf_schema.php:1282 tbl_change.php:306 -#: tbl_indexes.php:188 tbl_printview.php:140 tbl_relation.php:401 -#: tbl_select.php:133 tbl_structure.php:176 tbl_tracking.php:272 -#: tbl_tracking.php:323 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 +#: pdf_schema.php:1260 pdf_schema.php:1281 tbl_change.php:301 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:132 tbl_structure.php:175 tbl_tracking.php:267 +#: tbl_tracking.php:318 #, fuzzy #| msgid "Column names" msgid "Column" msgstr "Kolonnenavne" -#: db_datadict.php:174 db_printview.php:105 libraries/Index.class.php:442 +#: db_datadict.php:174 db_printview.php:104 libraries/Index.class.php:442 #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 #: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:244 #: libraries/export/latex.php:364 libraries/export/odt.php:296 #: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:99 -#: pdf_schema.php:1262 pdf_schema.php:1283 server_privileges.php:2062 -#: tbl_change.php:285 tbl_change.php:312 tbl_printview.php:141 -#: tbl_printview.php:311 tbl_select.php:134 tbl_structure.php:177 -#: tbl_structure.php:658 tbl_tracking.php:273 tbl_tracking.php:320 +#: pdf_schema.php:1261 pdf_schema.php:1282 server_privileges.php:2066 +#: tbl_change.php:280 tbl_change.php:307 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:133 tbl_structure.php:176 +#: tbl_structure.php:656 tbl_tracking.php:268 tbl_tracking.php:315 msgid "Type" msgstr "Datatype" #: db_datadict.php:176 libraries/Index.class.php:448 #: libraries/export/htmlword.php:245 libraries/export/latex.php:364 #: libraries/export/odt.php:299 libraries/export/texytext.php:235 -#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1264 -#: pdf_schema.php:1285 tbl_change.php:321 tbl_printview.php:143 -#: tbl_structure.php:180 tbl_tracking.php:275 tbl_tracking.php:326 +#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1263 +#: pdf_schema.php:1284 tbl_change.php:316 tbl_printview.php:142 +#: tbl_structure.php:179 tbl_tracking.php:270 tbl_tracking.php:321 msgid "Null" msgstr "Nulværdi" -#: db_datadict.php:177 db_structure.php:500 libraries/export/htmlword.php:246 +#: db_datadict.php:177 db_structure.php:486 libraries/export/htmlword.php:246 #: libraries/export/latex.php:364 libraries/export/odt.php:302 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:105 -#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 -#: tbl_structure.php:181 tbl_tracking.php:276 +#: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:143 +#: tbl_structure.php:180 tbl_tracking.php:271 msgid "Default" msgstr "Standardværdi" #: db_datadict.php:181 libraries/export/htmlword.php:248 #: libraries/export/latex.php:366 libraries/export/odt.php:306 -#: libraries/export/texytext.php:238 pdf_schema.php:1267 pdf_schema.php:1288 -#: tbl_printview.php:148 +#: libraries/export/texytext.php:238 pdf_schema.php:1266 pdf_schema.php:1287 +#: tbl_printview.php:147 msgid "Links to" msgstr "Linker til" -#: db_datadict.php:183 db_printview.php:111 libraries/export/htmlword.php:251 +#: db_datadict.php:183 db_printview.php:110 libraries/export/htmlword.php:251 #: libraries/export/latex.php:49 libraries/export/latex.php:369 #: libraries/export/odt.php:37 libraries/export/odt.php:311 #: libraries/export/sql.php:29 libraries/export/texytext.php:241 -#: libraries/tbl_properties.inc.php:129 pdf_schema.php:1278 -#: pdf_schema.php:1289 tbl_printview.php:150 +#: libraries/tbl_properties.inc.php:128 pdf_schema.php:1277 +#: pdf_schema.php:1288 tbl_printview.php:149 msgid "Comments" msgstr "Kommentarer" #: db_datadict.php:266 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/export/htmlword.php:321 #: libraries/export/latex.php:434 libraries/export/odt.php:367 -#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:262 -#: pdf_schema.php:1343 server_privileges.php:1560 server_privileges.php:1571 -#: server_privileges.php:1881 server_privileges.php:1886 -#: server_privileges.php:2179 sql.php:131 sql.php:193 tbl_printview.php:227 -#: tbl_structure.php:349 tbl_tracking.php:336 tbl_tracking.php:341 +#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:261 +#: pdf_schema.php:1342 server_privileges.php:1564 server_privileges.php:1575 +#: server_privileges.php:1885 server_privileges.php:1890 +#: server_privileges.php:2183 sql.php:130 sql.php:192 tbl_printview.php:226 +#: tbl_structure.php:347 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "Nej" @@ -180,17 +193,17 @@ msgstr "Nej" #: libraries/mult_submits.inc.php:49 libraries/mult_submits.inc.php:54 #: libraries/mult_submits.inc.php:59 libraries/mult_submits.inc.php:91 #: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:105 -#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:261 -#: libraries/mult_submits.inc.php:272 pdf_schema.php:1343 -#: server_databases.php:63 server_privileges.php:1557 -#: server_privileges.php:1571 server_privileges.php:1881 -#: server_privileges.php:1884 server_privileges.php:2179 sql.php:192 -#: tbl_printview.php:227 tbl_structure.php:39 tbl_structure.php:349 -#: tbl_tracking.php:334 tbl_tracking.php:339 +#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:260 +#: libraries/mult_submits.inc.php:271 pdf_schema.php:1342 +#: server_databases.php:61 server_privileges.php:1561 +#: server_privileges.php:1575 server_privileges.php:1885 +#: server_privileges.php:1888 server_privileges.php:2183 sql.php:191 +#: tbl_printview.php:226 tbl_structure.php:38 tbl_structure.php:347 +#: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" msgstr "Ja" -#: db_datadict.php:321 db_printview.php:265 tbl_printview.php:496 +#: db_datadict.php:321 db_printview.php:264 tbl_printview.php:495 msgid "Print" msgstr "Print" @@ -198,194 +211,154 @@ msgstr "Print" msgid "View dump (schema) of database" msgstr "Vis dump (skema) af database" -#: db_export.php:32 db_printview.php:95 db_qbe.php:101 db_structure.php:50 -#: db_tracking.php:34 export.php:352 navigation.php:326 +#: db_export.php:32 db_printview.php:94 db_qbe.php:98 db_structure.php:49 +#: db_tracking.php:30 export.php:350 navigation.php:325 msgid "No tables found in database." msgstr "Ingen tabeller fundet i databasen." -#: db_export.php:42 db_search.php:326 server_export.php:26 +#: db_export.php:42 db_search.php:326 server_export.php:24 msgid "Select All" msgstr "Vælg alle" -#: db_export.php:44 db_search.php:329 server_export.php:28 +#: db_export.php:44 db_search.php:329 server_export.php:26 msgid "Unselect All" msgstr "Fravælg alle" -#: db_operations.php:37 tbl_create.php:49 +#: db_operations.php:33 tbl_create.php:47 msgid "The database name is empty!" msgstr "Databasenavnet er tomt!" -#: db_operations.php:235 +#: db_operations.php:231 #, php-format msgid "Database %s has been renamed to %s" msgstr "Database %s er blevet omdøbt til %s" -#: db_operations.php:239 +#: db_operations.php:235 #, php-format msgid "Database %s has been copied to %s" msgstr "Database %s er blevet kopieret til %s" -#: db_operations.php:411 +#: db_operations.php:347 msgid "Rename database to" msgstr "Omdøb database til" -#: db_operations.php:416 server_processlist.php:56 +#: db_operations.php:352 server_processlist.php:56 msgid "Command" msgstr "Kommando" -#: db_operations.php:428 tbl_change.php:1141 +#: db_operations.php:364 tbl_change.php:1039 msgid "and then" msgstr "og derefter" -#: db_operations.php:454 +#: db_operations.php:390 msgid "Copy database to" msgstr "Kopiér database til" -#: db_operations.php:461 tbl_operations.php:527 tbl_tracking.php:387 +#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Kun strukturen" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:389 +#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Struktur og data" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:388 +#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Kun data" -#: db_operations.php:471 +#: db_operations.php:407 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE før kopiering" -#: db_operations.php:474 libraries/export/sql.php:51 +#: db_operations.php:410 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 -#: libraries/export/sql.php:81 tbl_operations.php:535 +#: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "Tilføj %s" -#: db_operations.php:478 libraries/export/sql.php:77 tbl_operations.php:298 -#: tbl_operations.php:537 +#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Tilføj AUTO_INCREMENT værdi" -#: db_operations.php:482 tbl_operations.php:544 +#: db_operations.php:418 tbl_operations.php:542 msgid "Add constraints" msgstr "Tilføj begrænsninger" -#: db_operations.php:495 +#: db_operations.php:431 msgid "Switch to copied database" msgstr "Skift til den kopierede database" -#: db_operations.php:536 -msgid "BLOB Repository" -msgstr "" - -#: db_operations.php:539 db_tracking.php:75 libraries/common.lib.php:1357 -#: libraries/server_links.inc.php:48 server_processlist.php:58 -#: tbl_tracking.php:595 test/theme.php:100 -msgid "Status" -msgstr "Status" - -#: db_operations.php:547 -#, fuzzy -#| msgid "Enabled" -msgctxt "BLOB repository" -msgid "Enabled" -msgstr "Slået til" - -#: db_operations.php:551 -msgid "Disable" -msgstr "" - -#: db_operations.php:561 -msgid "Damaged" -msgstr "" - -#: db_operations.php:565 -#, fuzzy -#| msgid "Repair table" -msgctxt "BLOB repository" -msgid "Repair" -msgstr "Reparer tabel" - -#: db_operations.php:573 -#, fuzzy -#| msgid "Disabled" -msgctxt "BLOB repository" -msgid "Disabled" -msgstr "Slået fra" - -#: db_operations.php:577 -msgid "Enable" -msgstr "" - -#: db_operations.php:601 libraries/Index.class.php:447 +#: db_operations.php:451 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 -#: server_collations.php:53 server_collations.php:65 server_databases.php:110 -#: tbl_operations.php:362 tbl_select.php:135 tbl_structure.php:178 -#: tbl_structure.php:766 tbl_tracking.php:274 tbl_tracking.php:325 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 +#: server_collations.php:53 server_collations.php:65 server_databases.php:108 +#: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:177 +#: tbl_structure.php:764 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "Kollation (Collation)" -#: db_operations.php:614 main.php:315 pdf_schema.php:33 -#, php-format +#: db_operations.php:464 pdf_schema.php:32 +#, fuzzy, php-format +#| msgid "" +#| "The additional features for working with linked tables have been " +#| "deactivated. To find out why click %shere%s." msgid "" -"The additional features for working with linked tables have been " -"deactivated. To find out why click %shere%s." +"The phpMyAdmin configuration storage has been deactivated. To find out why " +"click %shere%s." msgstr "" "De ekstra features for at arbejde med linkede tabeller er deaktiveret. For " "at se hvorfor, klik %sher%s." -#: db_operations.php:647 +#: db_operations.php:497 msgid "Edit PDF Pages" msgstr "Redigér PDF-sider" -#: db_printview.php:103 db_tracking.php:71 db_tracking.php:156 +#: db_printview.php:102 db_tracking.php:67 db_tracking.php:152 #: libraries/db_structure.lib.php:37 libraries/export/xml.php:327 -#: libraries/header.inc.php:125 pdf_pages.php:423 server_privileges.php:1657 -#: server_privileges.php:1713 server_privileges.php:1977 -#: server_synchronize.php:422 server_synchronize.php:865 tbl_tracking.php:591 +#: libraries/header.inc.php:125 pdf_pages.php:422 server_privileges.php:1661 +#: server_privileges.php:1717 server_privileges.php:1981 +#: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "Tabel" -#: db_printview.php:104 libraries/db_structure.lib.php:47 +#: db_printview.php:103 libraries/db_structure.lib.php:47 #: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 -#: navigation.php:629 navigation.php:651 server_databases.php:121 -#: tbl_printview.php:392 tbl_structure.php:364 tbl_structure.php:776 +#: navigation.php:628 navigation.php:650 server_databases.php:119 +#: tbl_printview.php:391 tbl_structure.php:362 tbl_structure.php:774 msgid "Rows" msgstr "Rækker" -#: db_printview.php:108 libraries/db_structure.lib.php:58 tbl_indexes.php:189 +#: db_printview.php:107 libraries/db_structure.lib.php:58 tbl_indexes.php:188 msgid "Size" msgstr "Størrelse" -#: db_printview.php:161 db_structure.php:456 libraries/export/sql.php:556 +#: db_printview.php:160 db_structure.php:442 libraries/export/sql.php:556 #: libraries/export/sql.php:896 msgid "in use" msgstr "i brug" -#: db_printview.php:186 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:511 pdf_schema.php:1240 tbl_printview.php:432 -#: tbl_structure.php:808 +#: db_printview.php:185 libraries/db_info.inc.php:86 +#: libraries/export/sql.php:511 pdf_schema.php:1239 tbl_printview.php:431 +#: tbl_structure.php:806 msgid "Creation" msgstr "Oprettelse" -#: db_printview.php:195 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:516 pdf_schema.php:1245 tbl_printview.php:442 -#: tbl_structure.php:816 +#: db_printview.php:194 libraries/db_info.inc.php:91 +#: libraries/export/sql.php:516 pdf_schema.php:1244 tbl_printview.php:441 +#: tbl_structure.php:814 msgid "Last update" msgstr "Sidste opdatering" -#: db_printview.php:204 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:521 pdf_schema.php:1250 tbl_printview.php:452 -#: tbl_structure.php:824 +#: db_printview.php:203 libraries/db_info.inc.php:96 +#: libraries/export/sql.php:521 pdf_schema.php:1249 tbl_printview.php:451 +#: tbl_structure.php:822 msgid "Last check" msgstr "Sidste check" -#: db_printview.php:221 db_structure.php:479 +#: db_printview.php:220 db_structure.php:465 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -393,94 +366,94 @@ msgid_plural "%s tables" msgstr[0] "%s tabel(ler)" msgstr[1] "%s tabel(ler)" -#: db_qbe.php:28 import.php:453 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1980 libraries/sql_query_form.lib.php:138 -#: tbl_operations.php:212 tbl_relation.php:291 tbl_row_action.php:130 -#: view_operations.php:61 +#: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 +#: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "Din SQL-forespørgsel blev udført korrekt" -#: db_qbe.php:41 +#: db_qbe.php:38 msgid "You have to choose at least one column to display" msgstr "Du skal vælge mindst en kolonne der skal vises" -#: db_qbe.php:199 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:865 +#: db_qbe.php:196 libraries/db_structure.lib.php:95 +#: libraries/display_tbl.lib.php:864 msgid "Sort" msgstr "Sorter" -#: db_qbe.php:208 db_qbe.php:242 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:522 libraries/display_tbl.lib.php:827 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:259 -#: tbl_select.php:311 +#: db_qbe.php:205 db_qbe.php:239 libraries/db_structure.lib.php:102 +#: libraries/display_tbl.lib.php:521 libraries/display_tbl.lib.php:826 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:257 +#: tbl_select.php:310 msgid "Ascending" msgstr "Stigende" -#: db_qbe.php:209 db_qbe.php:250 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:527 libraries/display_tbl.lib.php:824 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:260 -#: tbl_select.php:312 +#: db_qbe.php:206 db_qbe.php:247 libraries/db_structure.lib.php:110 +#: libraries/display_tbl.lib.php:526 libraries/display_tbl.lib.php:823 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:258 +#: tbl_select.php:311 msgid "Descending" msgstr "Faldende" -#: db_qbe.php:263 db_tracking.php:77 libraries/display_tbl.lib.php:307 -#: tbl_change.php:275 tbl_tracking.php:596 +#: db_qbe.php:260 db_tracking.php:73 libraries/display_tbl.lib.php:306 +#: tbl_change.php:270 tbl_tracking.php:591 msgid "Show" msgstr "Vis" -#: db_qbe.php:299 +#: db_qbe.php:296 msgid "Criteria" msgstr "Kriterier" -#: db_qbe.php:352 db_qbe.php:434 db_qbe.php:526 db_qbe.php:557 +#: db_qbe.php:349 db_qbe.php:431 db_qbe.php:523 db_qbe.php:554 msgid "Ins" msgstr "Ins (Indsæt)" -#: db_qbe.php:356 db_qbe.php:438 db_qbe.php:523 db_qbe.php:554 +#: db_qbe.php:353 db_qbe.php:435 db_qbe.php:520 db_qbe.php:551 msgid "And" msgstr "Og" -#: db_qbe.php:365 db_qbe.php:446 db_qbe.php:528 db_qbe.php:559 +#: db_qbe.php:362 db_qbe.php:443 db_qbe.php:525 db_qbe.php:556 msgid "Del" msgstr "Del (Slet)" -#: db_qbe.php:369 db_qbe.php:450 db_qbe.php:521 db_qbe.php:552 -#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:778 -#: server_privileges.php:297 tbl_change.php:1027 tbl_indexes.php:249 -#: tbl_select.php:285 +#: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 +#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:777 +#: server_privileges.php:296 tbl_change.php:925 tbl_indexes.php:248 +#: tbl_select.php:284 msgid "Or" msgstr "Eller" -#: db_qbe.php:506 +#: db_qbe.php:503 msgid "Modify" msgstr "Ret" -#: db_qbe.php:583 +#: db_qbe.php:580 #, fuzzy #| msgid "Add/Delete Criteria Row" msgid "Add/Delete criteria rows" msgstr "Tilføj/Slet kriterie-række" -#: db_qbe.php:595 +#: db_qbe.php:592 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Add/Delete columns" msgstr "Tilføj/Slet felt-kolonne" -#: db_qbe.php:608 db_qbe.php:633 +#: db_qbe.php:605 db_qbe.php:630 msgid "Update Query" msgstr "Opdater forespørgsel" -#: db_qbe.php:616 +#: db_qbe.php:613 msgid "Use Tables" msgstr "Benyt tabeller" -#: db_qbe.php:639 +#: db_qbe.php:636 #, php-format msgid "SQL query on database %s:" msgstr "SQL-forespørgsel til database %s:" -#: db_qbe.php:933 libraries/common.lib.php:1222 +#: db_qbe.php:930 libraries/common.lib.php:1215 msgid "Submit Query" msgstr "Send forespørgsel" @@ -520,17 +493,17 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s hit(s) i tabel %s" msgstr[1] "%s hit(s) i tabel %s" -#: db_search.php:249 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2831 -#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:49 -#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:466 +#: db_search.php:249 db_structure.php:75 db_structure.php:76 +#: db_structure.php:88 db_structure.php:90 db_structure.php:101 +#: db_structure.php:103 libraries/common.lib.php:2836 +#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 +#: tbl_structure.php:35 tbl_structure.php:47 tbl_structure.php:464 msgid "Browse" msgstr "Vis" -#: db_search.php:254 libraries/display_tbl.lib.php:1164 -#: libraries/display_tbl.lib.php:2055 libraries/sql_query_form.lib.php:453 -#: pdf_pages.php:285 pdf_pages.php:424 pdf_pages.php:460 pdf_pages.php:488 +#: db_search.php:254 libraries/display_tbl.lib.php:1163 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 msgid "Delete" @@ -570,226 +543,232 @@ msgstr "Indeni tabel(ler):" msgid "Inside column:" msgstr "Indeni tabel(ler):" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2830 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:75 +#: db_structure.php:79 db_structure.php:80 db_structure.php:92 +#: db_structure.php:93 db_structure.php:105 db_structure.php:106 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 +#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Indsæt" -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2827 libraries/common.lib.php:2834 -#: libraries/db_links.inc.php:62 libraries/export/htmlword.php:22 +#: db_structure.php:81 db_structure.php:94 db_structure.php:107 +#: libraries/common.lib.php:2832 libraries/common.lib.php:2839 +#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 -#: libraries/tbl_links.inc.php:55 pmd_general.php:133 -#: server_privileges.php:593 server_replication.php:314 tbl_tracking.php:268 +#: libraries/tbl_links.inc.php:54 pmd_general.php:133 +#: server_privileges.php:592 server_replication.php:313 tbl_tracking.php:263 msgid "Structure" msgstr "Struktur" -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:544 db_structure.php:545 db_tracking.php:90 -#: libraries/Index.class.php:482 libraries/common.lib.php:1659 -#: libraries/db_links.inc.php:99 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:126 -#: server_databases.php:351 tbl_structure.php:26 tbl_structure.php:150 -#: tbl_structure.php:151 tbl_structure.php:470 +#: db_structure.php:82 db_structure.php:83 db_structure.php:95 +#: db_structure.php:96 db_structure.php:108 db_structure.php:109 +#: db_structure.php:530 db_structure.php:531 db_tracking.php:86 +#: libraries/Index.class.php:482 libraries/common.lib.php:1663 +#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 +#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 +#: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" msgstr "Slet" -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:542 db_structure.php:543 libraries/common.lib.php:1658 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:104 +#: db_structure.php:84 db_structure.php:85 db_structure.php:97 +#: db_structure.php:98 db_structure.php:110 db_structure.php:111 +#: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 +#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 msgid "Empty" msgstr "Tøm" -#: db_structure.php:315 libraries/tbl_links.inc.php:99 +#: db_structure.php:301 libraries/tbl_links.inc.php:98 #, php-format msgid "Table %s has been emptied" msgstr "Tabel %s er tømt" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "View %s has been dropped" msgstr "Visning %s er blevet droppet" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "Table %s has been dropped" msgstr "Tabel %s er slettet" -#: db_structure.php:332 +#: db_structure.php:318 msgid "Tracking is active." msgstr "" -#: db_structure.php:334 +#: db_structure.php:320 msgid "Tracking is not active." msgstr "" -#: db_structure.php:419 libraries/display_tbl.lib.php:1943 +#: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -#: db_structure.php:433 db_structure.php:447 libraries/header.inc.php:125 -#: libraries/tbl_info.inc.php:65 tbl_structure.php:184 test/theme.php:73 +#: db_structure.php:419 db_structure.php:433 libraries/header.inc.php:125 +#: libraries/tbl_info.inc.php:60 tbl_structure.php:183 test/theme.php:73 msgid "View" msgstr "Visning" -#: db_structure.php:484 libraries/db_structure.lib.php:40 -#: libraries/server_links.inc.php:69 server_replication.php:32 -#: server_replication.php:163 server_status.php:368 +#: db_structure.php:470 libraries/db_structure.lib.php:40 +#: libraries/server_links.inc.php:69 server_replication.php:31 +#: server_replication.php:162 server_status.php:368 msgid "Replication" msgstr "Replikering" -#: db_structure.php:488 +#: db_structure.php:474 msgid "Sum" msgstr "Sum" -#: db_structure.php:495 libraries/StorageEngine.class.php:349 +#: db_structure.php:481 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s er standard datalageret på denne MySQL-server." -#: db_structure.php:523 db_structure.php:540 db_structure.php:541 -#: libraries/display_tbl.lib.php:2080 libraries/display_tbl.lib.php:2085 -#: libraries/mult_submits.inc.php:15 server_databases.php:345 -#: server_databases.php:350 server_privileges.php:1588 tbl_structure.php:454 -#: tbl_structure.php:463 +#: db_structure.php:509 db_structure.php:526 db_structure.php:527 +#: libraries/display_tbl.lib.php:2039 libraries/display_tbl.lib.php:2044 +#: libraries/mult_submits.inc.php:15 server_databases.php:343 +#: server_databases.php:348 server_privileges.php:1592 tbl_structure.php:452 +#: tbl_structure.php:461 msgid "With selected:" msgstr "Med det markerede:" -#: db_structure.php:526 libraries/display_tbl.lib.php:2075 -#: server_databases.php:347 server_privileges.php:569 -#: server_privileges.php:1591 tbl_structure.php:457 +#: db_structure.php:512 libraries/display_tbl.lib.php:2034 +#: server_databases.php:345 server_privileges.php:568 +#: server_privileges.php:1595 tbl_structure.php:455 msgid "Check All" msgstr "Afmærk alt" -#: db_structure.php:530 libraries/display_tbl.lib.php:2076 -#: libraries/replication_gui.lib.php:35 server_databases.php:349 -#: server_privileges.php:572 server_privileges.php:1595 tbl_structure.php:461 +#: db_structure.php:516 libraries/display_tbl.lib.php:2035 +#: libraries/replication_gui.lib.php:35 server_databases.php:347 +#: server_privileges.php:571 server_privileges.php:1599 tbl_structure.php:459 msgid "Uncheck All" msgstr "Fjern alle mærker" -#: db_structure.php:535 +#: db_structure.php:521 msgid "Check tables having overhead" msgstr "Check tabeller der har overhead" -#: db_structure.php:546 db_structure.php:547 db_structure.php:598 -#: libraries/display_tbl.lib.php:2179 libraries/mult_submits.inc.php:27 -#: tbl_structure.php:491 tbl_structure.php:493 +#: db_structure.php:532 db_structure.php:533 db_structure.php:584 +#: libraries/display_tbl.lib.php:2138 libraries/mult_submits.inc.php:27 +#: tbl_structure.php:489 tbl_structure.php:491 msgid "Print view" msgstr "Vis (udskriftvenlig)" -#: db_structure.php:548 db_structure.php:549 libraries/mult_submits.inc.php:41 -#: tbl_operations.php:580 +#: db_structure.php:534 db_structure.php:535 libraries/mult_submits.inc.php:41 +#: tbl_operations.php:578 msgid "Check table" msgstr "Tjek tabel" -#: db_structure.php:550 db_structure.php:551 libraries/mult_submits.inc.php:46 -#: tbl_operations.php:620 tbl_structure.php:708 tbl_structure.php:710 +#: db_structure.php:536 db_structure.php:537 libraries/mult_submits.inc.php:46 +#: tbl_operations.php:618 tbl_structure.php:706 tbl_structure.php:708 msgid "Optimize table" msgstr "Optimer tabel" -#: db_structure.php:552 db_structure.php:553 libraries/mult_submits.inc.php:51 -#: tbl_operations.php:610 +#: db_structure.php:538 db_structure.php:539 libraries/mult_submits.inc.php:51 +#: tbl_operations.php:608 msgid "Repair table" msgstr "Reparer tabel" -#: db_structure.php:554 db_structure.php:555 libraries/mult_submits.inc.php:56 -#: tbl_operations.php:600 +#: db_structure.php:540 db_structure.php:541 libraries/mult_submits.inc.php:56 +#: tbl_operations.php:598 msgid "Analyze table" msgstr "Analysér tabel" -#: db_structure.php:556 db_structure.php:557 libraries/db_links.inc.php:70 -#: libraries/display_export.lib.php:82 libraries/display_tbl.lib.php:2093 -#: libraries/display_tbl.lib.php:2224 libraries/mult_submits.inc.php:61 -#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:81 -#: pmd_pdf.php:83 pmd_pdf.php:108 server_privileges.php:1372 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 +#: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 +#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 +#: pmd_pdf.php:81 pmd_pdf.php:106 server_privileges.php:1376 #: setup/frames/menu.inc.php:22 tbl_row_action.php:58 msgid "Export" msgstr "Eksport" -#: db_structure.php:605 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:591 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "Data Dictionary" -#: db_tracking.php:65 +#: db_tracking.php:61 msgid "Tracked tables" msgstr "" -#: db_tracking.php:70 libraries/export/htmlword.php:85 +#: db_tracking.php:66 libraries/export/htmlword.php:85 #: libraries/export/latex.php:152 libraries/export/odt.php:112 #: libraries/export/sql.php:339 libraries/export/texytext.php:84 #: libraries/export/xml.php:254 libraries/header.inc.php:105 -#: libraries/header_printview.inc.php:57 server_databases.php:168 -#: server_privileges.php:1652 server_privileges.php:1713 -#: server_privileges.php:1971 server_processlist.php:55 -#: server_synchronize.php:1178 server_synchronize.php:1182 -#: tbl_tracking.php:590 test/theme.php:64 +#: libraries/header_printview.inc.php:57 server_databases.php:166 +#: server_privileges.php:1656 server_privileges.php:1717 +#: server_privileges.php:1975 server_processlist.php:55 +#: server_synchronize.php:1177 server_synchronize.php:1181 +#: tbl_tracking.php:585 test/theme.php:64 msgid "Database" msgstr "Database" -#: db_tracking.php:72 +#: db_tracking.php:68 msgid "Last version" msgstr "" -#: db_tracking.php:73 tbl_tracking.php:593 +#: db_tracking.php:69 tbl_tracking.php:588 msgid "Created" msgstr "" -#: db_tracking.php:74 tbl_tracking.php:594 +#: db_tracking.php:70 tbl_tracking.php:589 msgid "Updated" msgstr "" -#: db_tracking.php:76 libraries/Index.class.php:439 -#: libraries/db_structure.lib.php:44 server_databases.php:202 -#: server_privileges.php:1534 server_privileges.php:1717 -#: server_privileges.php:2065 tbl_structure.php:186 +#: db_tracking.php:71 libraries/common.lib.php:1361 +#: libraries/server_links.inc.php:48 server_processlist.php:58 +#: tbl_tracking.php:590 test/theme.php:100 +msgid "Status" +msgstr "Status" + +#: db_tracking.php:72 libraries/Index.class.php:439 +#: libraries/db_structure.lib.php:44 server_databases.php:200 +#: server_privileges.php:1538 server_privileges.php:1721 +#: server_privileges.php:2069 tbl_structure.php:185 msgid "Action" msgstr "Handling" -#: db_tracking.php:87 db_tracking.php:119 +#: db_tracking.php:83 db_tracking.php:115 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:105 tbl_tracking.php:547 tbl_tracking.php:605 -#: tbl_tracking.php:612 +#: db_tracking.php:101 tbl_tracking.php:542 tbl_tracking.php:600 +#: tbl_tracking.php:607 msgid "active" msgstr "" -#: db_tracking.php:107 tbl_tracking.php:549 tbl_tracking.php:607 -#: tbl_tracking.php:609 +#: db_tracking.php:103 tbl_tracking.php:544 tbl_tracking.php:602 +#: tbl_tracking.php:604 msgid "not active" msgstr "" -#: db_tracking.php:120 +#: db_tracking.php:116 msgid "Versions" msgstr "" -#: db_tracking.php:121 tbl_tracking.php:378 tbl_tracking.php:623 +#: db_tracking.php:117 tbl_tracking.php:373 tbl_tracking.php:618 msgid "Tracking report" msgstr "" -#: db_tracking.php:122 tbl_tracking.php:250 tbl_tracking.php:623 +#: db_tracking.php:118 tbl_tracking.php:245 tbl_tracking.php:618 msgid "Structure snapshot" msgstr "" -#: db_tracking.php:151 +#: db_tracking.php:147 msgid "Untracked tables" msgstr "" -#: db_tracking.php:171 db_tracking.php:173 tbl_structure.php:527 -#: tbl_structure.php:529 +#: db_tracking.php:167 db_tracking.php:169 tbl_structure.php:525 +#: tbl_structure.php:527 msgid "Track table" msgstr "" -#: db_tracking.php:199 +#: db_tracking.php:195 msgid "Database Log" msgstr "" @@ -797,12 +776,12 @@ msgstr "" msgid "Selected export type has to be saved in file!" msgstr "Valgte eksporttype skal gemmes som fil!" -#: export.php:153 export.php:178 export.php:620 +#: export.php:152 export.php:177 export.php:615 #, php-format msgid "Insufficient space to save the file %s." msgstr "Utilstrækkeligt plads til at gemme filen %s." -#: export.php:287 +#: export.php:286 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -810,17 +789,17 @@ msgstr "" "Filen %s findes allerede på serveren, lav filnavnet om eller tillad at der " "overskrives." -#: export.php:291 export.php:295 +#: export.php:290 export.php:294 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Webserveren har ikke tilladelse til at gemme filen %s." -#: export.php:622 +#: export.php:617 #, php-format msgid "Dump has been saved to file %s." msgstr "Dump er blevet gemt i filen %s." -#: import.php:59 +#: import.php:58 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -830,14 +809,14 @@ msgstr "" "%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:840 -#: libraries/File.class.php:950 +#: import.php:277 import.php:330 libraries/File.class.php:566 +#: libraries/File.class.php:676 msgid "File could not be read" msgstr "Filen kunne ikke læses" -#: import.php:286 import.php:295 import.php:314 import.php:323 -#: libraries/File.class.php:1020 libraries/File.class.php:1028 -#: libraries/File.class.php:1044 libraries/File.class.php:1052 +#: import.php:285 import.php:294 import.php:313 import.php:322 +#: libraries/File.class.php:746 libraries/File.class.php:754 +#: libraries/File.class.php:770 libraries/File.class.php:778 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -847,7 +826,7 @@ msgstr "" "Understøttelse af denne funktion er ikke implementeret eller ikke slået til " "for din konfiguration." -#: import.php:336 +#: import.php:335 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -857,29 +836,29 @@ msgstr "" "et filnavn, eller filstørrelsen kan have overskredet maksimalstørrelsen " "tilladt af din PHP-konfiguration. Se FAQ 1.16." -#: import.php:371 libraries/display_import.lib.php:23 +#: import.php:370 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "Kunne ikke indlæse importplugins, check venligst din installation!" -#: import.php:396 +#: import.php:395 msgid "The bookmark has been deleted." msgstr "Bogmærket er fjernet." -#: import.php:400 +#: import.php:399 msgid "Showing bookmark" msgstr "Viser bogmærke" -#: import.php:402 sql.php:625 +#: import.php:401 sql.php:618 #, php-format msgid "Bookmark %s created" msgstr "Bogmærke %s oprettet" -#: import.php:408 import.php:414 +#: import.php:407 import.php:413 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Importen er korrekt gennemført, %d forespørgsler udført." -#: import.php:423 +#: import.php:422 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -887,7 +866,7 @@ msgstr "" "Script timeout nået, hvis du vil afslutte importen, indsend venligst samme " "fil igen og importen vil fortsætte hvor den slap." -#: import.php:425 +#: import.php:424 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -896,20 +875,20 @@ msgstr "" "normalt at phpMyAdmin ikke vil være i stand til at gennemføre importen med " "mindre du forøger PHP-tidsbegrænsningerne." -#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:240 +#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:239 #: user_password.php:110 msgid "Back" msgstr "Tilbage" -#: index.php:188 +#: index.php:183 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" "phpMyAdmin er mere brugervenlig med en browser, der kan klare frames." -#: js/messages.php:25 server_synchronize.php:344 server_synchronize.php:356 -#: server_synchronize.php:372 server_synchronize.php:379 -#: server_synchronize.php:738 server_synchronize.php:766 -#: server_synchronize.php:794 server_synchronize.php:806 +#: js/messages.php:25 server_synchronize.php:343 server_synchronize.php:355 +#: server_synchronize.php:371 server_synchronize.php:378 +#: server_synchronize.php:737 server_synchronize.php:765 +#: server_synchronize.php:793 server_synchronize.php:805 msgid "Click to select" msgstr "" @@ -917,15 +896,15 @@ msgstr "" msgid "Click to unselect" msgstr "" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:88 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:87 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" erklæringer kan ikke bruges." -#: js/messages.php:30 libraries/mult_submits.inc.php:257 sql.php:187 +#: js/messages.php:30 libraries/mult_submits.inc.php:256 sql.php:186 msgid "Do you really want to " msgstr "Er du sikker på at du vil " -#: js/messages.php:31 libraries/mult_submits.inc.php:257 sql.php:171 +#: js/messages.php:31 libraries/mult_submits.inc.php:256 sql.php:170 msgid "You are about to DESTROY a complete database!" msgstr "Du er ved at DESTRUERE en komplet database!" @@ -954,11 +933,11 @@ msgstr "Der er intet værtsnavn!" msgid "The user name is empty!" msgstr "Intet brugernavn!" -#: js/messages.php:44 server_privileges.php:1228 user_password.php:65 +#: js/messages.php:44 server_privileges.php:1229 user_password.php:65 msgid "The password is empty!" msgstr "Der er ikke angivet noget kodeord!" -#: js/messages.php:45 server_privileges.php:1226 user_password.php:68 +#: js/messages.php:45 server_privileges.php:1227 user_password.php:68 msgid "The passwords aren't the same!" msgstr "De to kodeord er ikke ens!" @@ -966,27 +945,27 @@ msgstr "De to kodeord er ikke ens!" msgid "Cancel" msgstr "Annuller" -#: js/messages.php:52 pmd_save_pos.php:53 +#: js/messages.php:52 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "Rettelserne er gemt!" -#: js/messages.php:53 pmd_relation_upd.php:48 +#: js/messages.php:53 pmd_relation_upd.php:47 msgid "Relation deleted" msgstr "Relation slettet" -#: js/messages.php:54 pmd_relation_new.php:63 +#: js/messages.php:54 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:55 pmd_relation_new.php:85 +#: js/messages.php:55 pmd_relation_new.php:84 msgid "Internal relation added" msgstr "Intern relation tilføjet" -#: js/messages.php:56 pmd_relation_new.php:62 pmd_relation_new.php:87 +#: js/messages.php:56 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "Fejl: Relation ikke tilføjet." -#: js/messages.php:57 pmd_relation_new.php:30 +#: js/messages.php:57 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "Fejl: Relation findes allerede." @@ -994,13 +973,13 @@ msgstr "Fejl: Relation findes allerede." msgid "Error saving coordinates for Designer." msgstr "Fejl ved lagring af koordinater for Designer." -#: js/messages.php:59 libraries/relation.lib.php:94 -#: libraries/relation.lib.php:106 +#: js/messages.php:59 libraries/relation.lib.php:89 +#: libraries/relation.lib.php:101 msgid "General relation features" msgstr "Generelle relationsmuligheder" -#: js/messages.php:59 libraries/relation.lib.php:88 -#: libraries/relation.lib.php:95 +#: js/messages.php:59 libraries/relation.lib.php:83 +#: libraries/relation.lib.php:90 msgid "Disabled" msgstr "Slået fra" @@ -1016,7 +995,7 @@ msgstr "Vælg fremmednøgle" msgid "Please select the primary key or a unique key" msgstr "Vælg venligst den primære nøgle eller en unik nøgle" -#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:547 +#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" @@ -1047,10 +1026,10 @@ msgid "Prev" msgstr "Forrige" #. l10n: Display text for next month link in calendar -#: js/messages.php:81 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:337 -#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:422 -#: tbl_structure.php:800 +#: js/messages.php:81 libraries/common.lib.php:2358 +#: libraries/common.lib.php:2361 libraries/display_tbl.lib.php:336 +#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 +#: tbl_structure.php:798 msgid "Next" msgstr "Næste" @@ -1124,27 +1103,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1562 +#: js/messages.php:101 libraries/common.lib.php:1566 msgid "Jan" msgstr "jan" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1564 +#: js/messages.php:103 libraries/common.lib.php:1568 msgid "Feb" msgstr "feb" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1566 +#: js/messages.php:105 libraries/common.lib.php:1570 msgid "Mar" msgstr "mar" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1568 +#: js/messages.php:107 libraries/common.lib.php:1572 msgid "Apr" msgstr "apr" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1570 +#: js/messages.php:109 libraries/common.lib.php:1574 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1152,37 +1131,37 @@ msgid "May" msgstr "maj" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1572 +#: js/messages.php:111 libraries/common.lib.php:1576 msgid "Jun" msgstr "jun" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1574 +#: js/messages.php:113 libraries/common.lib.php:1578 msgid "Jul" msgstr "jul" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1576 +#: js/messages.php:115 libraries/common.lib.php:1580 msgid "Aug" msgstr "aug" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1578 +#: js/messages.php:117 libraries/common.lib.php:1582 msgid "Sep" msgstr "sep" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1580 +#: js/messages.php:119 libraries/common.lib.php:1584 msgid "Oct" msgstr "okt" #. l10n: Short month name -#: js/messages.php:121 libraries/common.lib.php:1582 +#: js/messages.php:121 libraries/common.lib.php:1586 msgid "Nov" msgstr "nov" #. l10n: Short month name -#: js/messages.php:123 libraries/common.lib.php:1584 +#: js/messages.php:123 libraries/common.lib.php:1588 msgid "Dec" msgstr "dec" @@ -1223,37 +1202,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1587 +#: js/messages.php:136 libraries/common.lib.php:1591 msgid "Sun" msgstr "søn" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1589 +#: js/messages.php:138 libraries/common.lib.php:1593 msgid "Mon" msgstr "man" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1591 +#: js/messages.php:140 libraries/common.lib.php:1595 msgid "Tue" msgstr "tir" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1593 +#: js/messages.php:142 libraries/common.lib.php:1597 msgid "Wed" msgstr "ons" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1595 +#: js/messages.php:144 libraries/common.lib.php:1599 msgid "Thu" msgstr "tor" #. l10n: Short week day name -#: js/messages.php:146 libraries/common.lib.php:1597 +#: js/messages.php:146 libraries/common.lib.php:1601 msgid "Fri" msgstr "fre" #. l10n: Short week day name -#: js/messages.php:148 libraries/common.lib.php:1599 +#: js/messages.php:148 libraries/common.lib.php:1603 msgid "Sat" msgstr "lør" @@ -1331,16 +1310,11 @@ msgstr "pr. sekund" msgid "Font size" msgstr "Skriftstørrelse" -#: libraries/File.class.php:336 libraries/File.class.php:424 -#: libraries/File.class.php:561 libraries/File.class.php:700 -msgid "Unknown error in file upload." -msgstr "Ukendt fejl i filupload." - -#: libraries/File.class.php:406 +#: libraries/File.class.php:315 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:409 +#: libraries/File.class.php:318 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -1348,59 +1322,63 @@ msgstr "" "Den uploadede fil overstiger MAX_FILE_SIZE direktivet som angivet i HTML-" "formularen." -#: libraries/File.class.php:412 +#: libraries/File.class.php:321 msgid "The uploaded file was only partially uploaded." msgstr "Den uploadede fil blev kun delvist uploaded." -#: libraries/File.class.php:415 +#: libraries/File.class.php:324 msgid "Missing a temporary folder." msgstr "Mangler en midlertidig mappe." -#: libraries/File.class.php:418 +#: libraries/File.class.php:327 msgid "Failed to write file to disk." msgstr "Kunne ikke skrive fil til disk." -#: libraries/File.class.php:421 +#: libraries/File.class.php:330 msgid "File upload stopped by extension." msgstr "Filupload stoppet af udvidelse." -#: libraries/File.class.php:898 +#: libraries/File.class.php:333 +msgid "Unknown error in file upload." +msgstr "Ukendt fejl i filupload." + +#: libraries/File.class.php:624 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:427 tbl_relation.php:528 +#: libraries/Index.class.php:427 tbl_relation.php:526 msgid "No index defined!" msgstr "Intet indeks defineret!" -#: libraries/Index.class.php:432 server_databases.php:131 tbl_tracking.php:315 +#: libraries/Index.class.php:432 server_databases.php:129 tbl_tracking.php:310 msgid "Indexes" msgstr "Indeks" #: libraries/Index.class.php:443 libraries/mult_submits.inc.php:102 -#: libraries/tbl_properties.inc.php:518 tbl_structure.php:32 -#: tbl_structure.php:154 tbl_structure.php:158 tbl_structure.php:473 -#: tbl_tracking.php:321 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:31 +#: tbl_structure.php:153 tbl_structure.php:157 tbl_structure.php:471 +#: tbl_tracking.php:316 msgid "Unique" msgstr "Unik" -#: libraries/Index.class.php:444 tbl_tracking.php:322 +#: libraries/Index.class.php:444 tbl_tracking.php:317 msgid "Packed" msgstr "" -#: libraries/Index.class.php:446 tbl_tracking.php:324 +#: libraries/Index.class.php:446 tbl_tracking.php:319 msgid "Cardinality" msgstr "Kardinalitet" -#: libraries/Index.class.php:449 tbl_tracking.php:278 tbl_tracking.php:327 +#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322 msgid "Comment" msgstr "" #: libraries/Index.class.php:465 libraries/common.lib.php:609 -#: libraries/common.lib.php:1198 libraries/display_tbl.lib.php:1116 +#: libraries/common.lib.php:1191 libraries/display_tbl.lib.php:1115 #: libraries/import.lib.php:1119 libraries/import.lib.php:1143 -#: pdf_pages.php:284 setup/frames/index.inc.php:124 +#: pdf_pages.php:283 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:349 tbl_row_action.php:68 msgid "Edit" msgstr "Ret" @@ -1422,15 +1400,15 @@ msgid "" msgstr "" #: libraries/List_Database.class.php:430 libraries/server_links.inc.php:40 -#: server_databases.php:87 server_privileges.php:1652 +#: server_databases.php:85 server_privileges.php:1656 #: setup/lib/messages.inc.php:107 test/theme.php:92 msgid "Databases" msgstr "Databaser" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:259 libraries/import.lib.php:134 pdf_schema.php:31 -#: pdf_schema.php:231 tbl_change.php:1023 tbl_operations.php:212 -#: tbl_relation.php:289 view_operations.php:61 +#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 +#: tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Fejl" @@ -1457,42 +1435,42 @@ msgid_plural "%1$d rows inserted." msgstr[0] "Ingen rækker valgt" msgstr[1] "Ingen rækker valgt" -#: libraries/StorageEngine.class.php:196 +#: libraries/StorageEngine.class.php:194 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:352 +#: libraries/StorageEngine.class.php:354 #, php-format msgid "%s is available on this MySQL server." msgstr "%s er tilgængelig på denne MySQL-server." -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:357 #, 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:359 +#: libraries/StorageEngine.class.php:361 #, 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:1018 +#: libraries/Table.class.php:1017 msgid "Invalid database" msgstr "Ugyldig database" -#: libraries/Table.class.php:1032 tbl_get_field.php:25 +#: libraries/Table.class.php:1031 tbl_get_field.php:25 msgid "Invalid table name" msgstr "Ugyldigt tabelnavn" -#: libraries/Table.class.php:1047 +#: libraries/Table.class.php:1046 #, 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:1131 +#: libraries/Table.class.php:1129 #, php-format msgid "Table %s has been renamed to %s" msgstr "Tabellen %s er nu omdøbt til %s" @@ -1510,22 +1488,22 @@ msgstr "Intet billede til rådighed." msgid "take it" msgstr "Vælg dette" -#: libraries/Theme_Manager.class.php:114 +#: libraries/Theme_Manager.class.php:109 #, php-format msgid "Default theme %s not found!" msgstr "Standardtema %s ikke fundet!" -#: libraries/Theme_Manager.class.php:152 +#: libraries/Theme_Manager.class.php:147 #, php-format msgid "Theme %s not found!" msgstr "Tema %s ikke fundet!" -#: libraries/Theme_Manager.class.php:220 +#: 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:296 test/theme.php:160 themes.php:20 +#: libraries/Theme_Manager.class.php:291 test/theme.php:160 themes.php:20 #: themes.php:40 msgid "Theme / Style" msgstr "Tema / Layout" @@ -1639,19 +1617,19 @@ msgstr "" msgid "Authenticating..." msgstr "" -#: libraries/blobstreaming.lib.php:689 +#: libraries/blobstreaming.lib.php:340 msgid "View image" msgstr "" -#: libraries/blobstreaming.lib.php:693 +#: libraries/blobstreaming.lib.php:344 msgid "Play audio" msgstr "" -#: libraries/blobstreaming.lib.php:698 +#: libraries/blobstreaming.lib.php:349 msgid "View video" msgstr "" -#: libraries/blobstreaming.lib.php:702 +#: libraries/blobstreaming.lib.php:353 msgid "Download file" msgstr "" @@ -1706,7 +1684,7 @@ msgstr "Server" msgid "Invalid authentication method set in configuration:" msgstr "Ugyldig autorisationsmetode sat i konfiguration:" -#: libraries/common.inc.php:909 +#: libraries/common.inc.php:908 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Du burde opdatere til %s %s eller senere." @@ -1731,7 +1709,8 @@ msgstr "en" #: libraries/common.lib.php:425 libraries/common.lib.php:427 #: libraries/common.lib.php:429 libraries/common.lib.php:445 #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 -#: libraries/display_export.lib.php:163 libraries/relation.lib.php:84 +#: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 +#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 #: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" @@ -1746,148 +1725,148 @@ msgstr "SQL-forespørgsel" msgid "MySQL said: " msgstr "MySQL returnerede: " -#: libraries/common.lib.php:1136 +#: libraries/common.lib.php:1129 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1174 setup/lib/messages.inc.php:350 +#: libraries/common.lib.php:1167 setup/lib/messages.inc.php:350 msgid "Explain SQL" msgstr "Forklar SQL" -#: libraries/common.lib.php:1177 +#: libraries/common.lib.php:1170 msgid "Skip Explain SQL" msgstr "Spring over Forklar SQL" -#: libraries/common.lib.php:1211 +#: libraries/common.lib.php:1204 msgid "Without PHP Code" msgstr "uden PHP-kode" -#: libraries/common.lib.php:1214 setup/lib/messages.inc.php:352 +#: libraries/common.lib.php:1207 setup/lib/messages.inc.php:352 msgid "Create PHP Code" msgstr "Fremstil PHP-kode" -#: libraries/common.lib.php:1232 server_status.php:451 +#: libraries/common.lib.php:1225 server_status.php:451 #: setup/lib/messages.inc.php:351 msgid "Refresh" msgstr "Opdatér" -#: libraries/common.lib.php:1241 +#: libraries/common.lib.php:1234 msgid "Skip Validate SQL" msgstr "Spring over Validér SQL" -#: libraries/common.lib.php:1244 setup/lib/messages.inc.php:353 +#: libraries/common.lib.php:1237 setup/lib/messages.inc.php:353 msgid "Validate SQL" msgstr "Validér SQL" -#: libraries/common.lib.php:1283 +#: libraries/common.lib.php:1287 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1285 +#: libraries/common.lib.php:1289 #, fuzzy #| msgid "Engines" msgid "Inline" msgstr "Lagre" -#: libraries/common.lib.php:1339 libraries/common.lib.php:1354 +#: libraries/common.lib.php:1343 libraries/common.lib.php:1358 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1358 libraries/tbl_triggers.lib.php:27 +#: libraries/common.lib.php:1362 libraries/tbl_triggers.lib.php:27 #: server_processlist.php:57 msgid "Time" msgstr "Tid" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "B" msgstr "B" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "KiB" msgstr "KiB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "MiB" msgstr "MiB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "GiB" msgstr "GiB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "TiB" msgstr "TiB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "PiB" msgstr "PiB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "EiB" msgstr "EiB" #. l10n: Thousands separator -#: libraries/common.lib.php:1424 +#: libraries/common.lib.php:1428 msgid "," msgstr "." #. l10n: Decimal separator -#: libraries/common.lib.php:1426 +#: libraries/common.lib.php:1430 msgid "." msgstr "," #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1603 +#: libraries/common.lib.php:1607 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%d. %m %Y kl. %H:%M:%S" -#: libraries/common.lib.php:1909 +#: libraries/common.lib.php:1913 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dage, %s timer, %s minutter og %s sekunder" -#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 -#: libraries/display_tbl.lib.php:289 server_status.php:718 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 +#: libraries/display_tbl.lib.php:288 server_status.php:718 msgid "Begin" msgstr "Start" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 -#: libraries/display_tbl.lib.php:290 server_binlog.php:154 +#: libraries/common.lib.php:2328 libraries/common.lib.php:2331 +#: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "Forrige" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 -#: libraries/display_tbl.lib.php:352 +#: libraries/common.lib.php:2359 libraries/common.lib.php:2362 +#: libraries/display_tbl.lib.php:351 msgid "End" msgstr "Slut" -#: libraries/common.lib.php:2429 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "Hop til database "%s"." -#: libraries/common.lib.php:2448 +#: libraries/common.lib.php:2453 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Funktionaliteten af %s er påvirket af en kendt fejl, se %s" -#: libraries/common.lib.php:2828 libraries/common.lib.php:2835 -#: libraries/db_links.inc.php:67 libraries/export/sql.php:24 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 +#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 -#: libraries/tbl_links.inc.php:59 querywindow.php:89 test/theme.php:96 +#: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2837 libraries/db_links.inc.php:103 -#: libraries/tbl_links.inc.php:94 libraries/tbl_links.inc.php:116 -#: view_operations.php:88 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: view_operations.php:87 msgid "Operations" msgstr "Operationer" -#: libraries/core.lib.php:282 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1903,38 +1882,38 @@ msgstr "" msgid "Name" msgstr "Navn" -#: libraries/db_links.inc.php:44 +#: libraries/db_links.inc.php:43 #, php-format msgid "Database %s has been dropped." msgstr "Database %s er slettet." -#: libraries/db_links.inc.php:56 libraries/db_links.inc.php:57 -#: libraries/db_links.inc.php:58 +#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 +#: libraries/db_links.inc.php:57 msgid "Database seems to be empty!" msgstr "Database ser ud til at være tom!" -#: libraries/db_links.inc.php:80 libraries/relation.lib.php:142 -#: libraries/tbl_links.inc.php:68 +#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:85 +#: libraries/db_links.inc.php:84 msgid "Query" msgstr "Foresp. via eks." -#: libraries/db_links.inc.php:90 libraries/relation.lib.php:138 +#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 msgid "Designer" msgstr "Designer" -#: libraries/db_links.inc.php:97 libraries/server_links.inc.php:87 -#: libraries/tbl_links.inc.php:90 pmd_pdf.php:83 pmd_pdf.php:109 +#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Import" -#: libraries/db_links.inc.php:110 libraries/server_links.inc.php:65 -#: server_privileges.php:111 server_privileges.php:1714 -#: server_privileges.php:2063 test/theme.php:116 +#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: server_privileges.php:110 server_privileges.php:1718 +#: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" msgstr "Privilegier" @@ -1946,14 +1925,14 @@ msgstr "Rutiner" msgid "Return type" msgstr "Retur type" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1847 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1806 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "Kan være anslået. Se FAQ 3.11" -#: libraries/db_structure.lib.php:60 server_databases.php:141 -#: tbl_printview.php:334 tbl_structure.php:681 +#: libraries/db_structure.lib.php:60 server_databases.php:139 +#: tbl_printview.php:333 tbl_structure.php:679 msgid "Overhead" msgstr "Overhead" @@ -1971,7 +1950,7 @@ msgstr "Serveren svarer ikke" 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:358 tbl_structure.php:607 +#: libraries/dbi/mysql.dbi.lib.php:358 tbl_structure.php:605 msgid "Details..." msgstr "" @@ -1981,22 +1960,22 @@ msgid "Change password" msgstr "Ændre kodeord" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:807 +#: libraries/replication_gui.lib.php:347 server_privileges.php:806 msgid "No Password" msgstr "Intet kodeord" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1530 server_synchronize.php:1174 +#: libraries/replication_gui.lib.php:351 server_privileges.php:795 +#: server_privileges.php:799 server_privileges.php:810 +#: server_privileges.php:1534 server_synchronize.php:1173 msgid "Password" msgstr "Kodeord" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:815 server_privileges.php:818 +#: server_privileges.php:814 server_privileges.php:817 msgid "Re-type" msgstr "Skriv igen" @@ -2019,8 +1998,8 @@ msgstr "Opret ny database" msgid "Create" msgstr "Opret" -#: libraries/display_create_database.lib.php:39 server_privileges.php:113 -#: server_privileges.php:1419 server_replication.php:34 +#: libraries/display_create_database.lib.php:39 server_privileges.php:112 +#: server_privileges.php:1423 server_replication.php:33 msgid "No Privileges" msgstr "Ingen privilegier" @@ -2041,50 +2020,50 @@ msgstr "Opret ny tabel i database %s" msgid "Number of columns" msgstr "Antal felter" -#: libraries/display_export.lib.php:41 +#: libraries/display_export.lib.php:35 msgid "Could not load export plugins, please check your installation!" msgstr "Kunne ikke indlæse eksportplugins, check venligst din installation!" -#: libraries/display_export.lib.php:106 +#: libraries/display_export.lib.php:100 #, fuzzy, php-format #| msgid "Dump %s row(s) starting at record # %s" msgid "Dump %s row(s) starting at row # %s" msgstr "Dump %s rækker startende med række %s." -#: libraries/display_export.lib.php:114 +#: libraries/display_export.lib.php:108 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:124 setup/lib/messages.inc.php:79 +#: libraries/display_export.lib.php:118 setup/lib/messages.inc.php:79 msgid "Save as file" msgstr "Send (download)" -#: libraries/display_export.lib.php:133 +#: libraries/display_export.lib.php:127 #, php-format msgid "Save on server in %s directory" msgstr "Gem på serveren i mappen %s " -#: libraries/display_export.lib.php:141 setup/lib/messages.inc.php:87 +#: libraries/display_export.lib.php:135 setup/lib/messages.inc.php:87 msgid "Overwrite existing file(s)" msgstr "Overskriv eksisterende fil(er)" -#: libraries/display_export.lib.php:147 +#: libraries/display_export.lib.php:141 msgid "File name template" msgstr "Skabelon for filnavn" -#: libraries/display_export.lib.php:151 +#: libraries/display_export.lib.php:145 msgid "server name" msgstr "servernavn" -#: libraries/display_export.lib.php:154 +#: libraries/display_export.lib.php:148 msgid "database name" msgstr "databasenavn" -#: libraries/display_export.lib.php:157 +#: libraries/display_export.lib.php:151 msgid "table name" msgstr "tabelnavn" -#: libraries/display_export.lib.php:161 +#: libraries/display_export.lib.php:155 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2095,39 +2074,39 @@ msgstr "" "strenge. Ydermere vil følgende transformationer foregå: %3$s. Anden tekst " "vil blive bevaret som det er." -#: libraries/display_export.lib.php:202 +#: libraries/display_export.lib.php:196 msgid "remember template" msgstr "husk skabelonen" -#: libraries/display_export.lib.php:210 libraries/display_import.lib.php:177 +#: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 #: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 msgid "Character set of the file:" msgstr "Tegnsæt for filen:" -#: libraries/display_export.lib.php:235 setup/lib/messages.inc.php:81 +#: libraries/display_export.lib.php:229 setup/lib/messages.inc.php:81 msgid "Compression" msgstr "Komprimering" -#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:196 -#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:529 -#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:574 -#: server_privileges.php:1867 server_processlist.php:74 +#: libraries/display_export.lib.php:234 libraries/display_import.lib.php:196 +#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:528 +#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:573 +#: server_privileges.php:1871 server_processlist.php:74 msgid "None" msgstr "Ingen" -#: libraries/display_export.lib.php:247 +#: libraries/display_export.lib.php:241 msgid "\"zipped\"" msgstr "\"zippet\"" -#: libraries/display_export.lib.php:253 +#: libraries/display_export.lib.php:247 msgid "\"gzipped\"" msgstr "\"gzipped\"" -#: libraries/display_export.lib.php:259 +#: libraries/display_export.lib.php:253 msgid "\"bzipped\"" msgstr "\"bzipped\"" -#: libraries/display_export.lib.php:274 libraries/export/sql.php:42 +#: libraries/display_export.lib.php:268 libraries/export/sql.php:42 #: libraries/import/sql.php:31 msgid "SQL compatibility mode" msgstr "SQL-kompatibilitetsmodus" @@ -2162,12 +2141,12 @@ msgid "File uploads are not allowed on this server." msgstr "Fil-uploads er ikke tilladte på denne server." #: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 -#: tbl_change.php:1024 +#: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "Mappen du har sat til upload-arbejde kan ikke findes" #: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 -#: tbl_change.php:1027 +#: tbl_change.php:925 msgid "web server upload directory" msgstr "webserver upload-mappe" @@ -2253,43 +2232,43 @@ msgstr "Papirstørrelse" msgid "Language" msgstr "Sprog" -#: libraries/display_tbl.lib.php:303 +#: libraries/display_tbl.lib.php:302 #, php-format msgid "%d is not valid row number." msgstr "%d er ikke et gyldigt rækkenummer." -#: libraries/display_tbl.lib.php:309 +#: libraries/display_tbl.lib.php:308 #, fuzzy #| msgid "row(s) starting from record #" msgid "row(s) starting from row #" msgstr "rækker startende fra post #" -#: libraries/display_tbl.lib.php:315 +#: libraries/display_tbl.lib.php:314 msgid "horizontal" msgstr "vandret" -#: libraries/display_tbl.lib.php:316 +#: libraries/display_tbl.lib.php:315 msgid "horizontal (rotated headers)" msgstr "horisontalt (roterede overskrifter)" -#: libraries/display_tbl.lib.php:317 +#: libraries/display_tbl.lib.php:316 msgid "vertical" msgstr "lodret" -#: libraries/display_tbl.lib.php:323 +#: libraries/display_tbl.lib.php:322 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "%s og gentag overskrifter efter %s celler" -#: libraries/display_tbl.lib.php:345 +#: libraries/display_tbl.lib.php:344 msgid "This operation could take a long time. Proceed anyway?" msgstr "Denne operation kan tage lang tid. Fortsæt alligevel?" -#: libraries/display_tbl.lib.php:511 +#: libraries/display_tbl.lib.php:510 msgid "Sort by key" msgstr "Sorteringsnøgle" -#: libraries/display_tbl.lib.php:554 libraries/export/codegen.php:38 +#: libraries/display_tbl.lib.php:553 libraries/export/codegen.php:38 #: libraries/export/csv.php:29 libraries/export/excel.php:34 #: libraries/export/htmlword.php:28 libraries/export/latex.php:32 #: libraries/export/mediawiki.php:21 libraries/export/ods.php:26 @@ -2299,99 +2278,99 @@ msgstr "Sorteringsnøgle" #: libraries/export/xlsx.php:26 libraries/export/xml.php:23 #: libraries/export/yaml.php:27 libraries/import.lib.php:1114 #: libraries/import.lib.php:1136 libraries/import/csv.php:31 -#: libraries/import/docsql.php:33 libraries/import/ldi.php:46 +#: libraries/import/docsql.php:32 libraries/import/ldi.php:46 #: libraries/import/ods.php:30 libraries/import/sql.php:19 #: libraries/import/xls.php:25 libraries/import/xlsx.php:25 -#: libraries/import/xml.php:25 tbl_select.php:264 tbl_structure.php:752 +#: libraries/import/xml.php:25 tbl_select.php:263 tbl_structure.php:750 msgid "Options" msgstr "Indstillinger" -#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:569 +#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:568 msgid "Partial Texts" msgstr "Delvise tekster" -#: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:573 +#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:572 msgid "Full Texts" msgstr "Komplette tekster" -#: libraries/display_tbl.lib.php:586 +#: libraries/display_tbl.lib.php:585 msgid "Relational key" msgstr "" -#: libraries/display_tbl.lib.php:587 +#: libraries/display_tbl.lib.php:586 #, fuzzy #| msgid "Relational schema" msgid "Relational display column" msgstr "Relationel skematik" -#: libraries/display_tbl.lib.php:594 +#: libraries/display_tbl.lib.php:593 msgid "Show binary contents" msgstr "" -#: libraries/display_tbl.lib.php:596 +#: libraries/display_tbl.lib.php:595 msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:598 +#: libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "" -#: libraries/display_tbl.lib.php:606 pmd_general.php:140 tbl_change.php:312 -#: tbl_change.php:318 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:307 +#: tbl_change.php:313 msgid "Hide" msgstr "Skjul" -#: libraries/display_tbl.lib.php:606 libraries/relation.lib.php:122 -#: libraries/tbl_properties.inc.php:143 transformation_overview.php:46 +#: libraries/display_tbl.lib.php:605 libraries/relation.lib.php:117 +#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46 msgid "Browser transformation" msgstr "Browser transformation" -#: libraries/display_tbl.lib.php:1125 libraries/display_tbl.lib.php:1129 -#: libraries/display_tbl.lib.php:1131 +#: libraries/display_tbl.lib.php:1124 libraries/display_tbl.lib.php:1128 +#: libraries/display_tbl.lib.php:1130 msgid "Execute bookmarked query" msgstr "Udfør forespørgsel iflg. bogmærke" -#: libraries/display_tbl.lib.php:1144 libraries/display_tbl.lib.php:1156 +#: libraries/display_tbl.lib.php:1143 libraries/display_tbl.lib.php:1155 msgid "The row has been deleted" msgstr "Rækken er slettet!" -#: libraries/display_tbl.lib.php:1183 libraries/display_tbl.lib.php:2055 +#: libraries/display_tbl.lib.php:1182 libraries/display_tbl.lib.php:2014 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "Dræb (Kill)" -#: libraries/display_tbl.lib.php:1933 +#: libraries/display_tbl.lib.php:1892 msgid "in query" msgstr "i forespørgsel" -#: libraries/display_tbl.lib.php:1951 +#: libraries/display_tbl.lib.php:1910 msgid "Showing rows" msgstr "Viser poster " -#: libraries/display_tbl.lib.php:1961 +#: libraries/display_tbl.lib.php:1920 msgid "total" msgstr "total" -#: libraries/display_tbl.lib.php:1969 sql.php:523 +#: libraries/display_tbl.lib.php:1928 sql.php:522 #, php-format msgid "Query took %01.4f sec" msgstr "Forepørgsel tog %01.4f sek" -#: libraries/display_tbl.lib.php:2088 libraries/mult_submits.inc.php:112 -#: querywindow.php:115 querywindow.php:119 querywindow.php:122 -#: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:469 +#: libraries/display_tbl.lib.php:2047 libraries/mult_submits.inc.php:112 +#: querywindow.php:114 querywindow.php:118 querywindow.php:121 +#: tbl_structure.php:23 tbl_structure.php:148 tbl_structure.php:467 msgid "Change" msgstr "Ændre" -#: libraries/display_tbl.lib.php:2158 +#: libraries/display_tbl.lib.php:2117 msgid "Query results operations" msgstr "Forespørgselsresultat operationer" -#: libraries/display_tbl.lib.php:2186 +#: libraries/display_tbl.lib.php:2145 msgid "Print view (with full texts)" msgstr "Udskrift-visning (med fulde tekster)" -#: libraries/display_tbl.lib.php:2359 +#: libraries/display_tbl.lib.php:2318 msgid "Link not found" msgstr "Link ikke fundet" @@ -2447,9 +2426,9 @@ msgstr "InnoDB status" msgid "Buffer Pool Usage" msgstr "Buffer Pool Forbrug" -#: libraries/engines/innodb.lib.php:168 server_databases.php:136 -#: server_databases.php:304 server_status.php:524 server_status.php:585 -#: server_status.php:606 tbl_printview.php:349 tbl_structure.php:695 +#: libraries/engines/innodb.lib.php:168 server_databases.php:134 +#: server_databases.php:302 server_status.php:524 server_status.php:585 +#: server_status.php:606 tbl_printview.php:348 tbl_structure.php:693 msgid "Total" msgstr "Total" @@ -2585,6 +2564,77 @@ msgstr "" "Bufferen der allokeres ved sortering af MyISAM indeks under en REPAIR TABLE " "eller når indeks oprettes med CREATE INDEX eller ALTER TABLE." +#: libraries/engines/pbms.lib.php:31 +msgid "Garbage Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:32 +msgid "The percentage of garbage in a repository file before it is compacted." +msgstr "" + +#: libraries/engines/pbms.lib.php:36 libraries/replication_gui.lib.php:69 +#: server_synchronize.php:1161 +msgid "Port" +msgstr "" + +#: libraries/engines/pbms.lib.php:37 +msgid "" +"The port for the PBMS stream-based communications. Setting this value to 0 " +"will disable HTTP communication with the daemon." +msgstr "" + +#: libraries/engines/pbms.lib.php:41 +msgid "Repository Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:42 +msgid "" +"The maximum size of a BLOB repository file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:46 +msgid "Temp Blob Timeout" +msgstr "" + +#: libraries/engines/pbms.lib.php:47 +msgid "" +"The timeout, in seconds, for temporary BLOBs. Uploaded BLOB data is removed " +"after this time, unless they are referenced by a record in the database." +msgstr "" + +#: libraries/engines/pbms.lib.php:51 +msgid "Temp Log Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:52 +msgid "" +"The maximum size of a temporary BLOB log file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:56 +msgid "Max Keep Alive" +msgstr "" + +#: libraries/engines/pbms.lib.php:57 +msgid "" +"The timeout for inactive connection with the keep-alive flag set. After this " +"time the connection will be closed. The time-out is in milliseconds (1/1000)." +msgstr "" + +#: libraries/engines/pbms.lib.php:61 +msgid "Metadata Headers" +msgstr "" + +#: libraries/engines/pbms.lib.php:62 +msgid "" +"A \":\" delimited list of metadata headers to be used to initialize the " +"pbms_metadata_header table when a database is created." +msgstr "" + #: libraries/engines/pbxt.lib.php:22 msgid "Index cache size" msgstr "" @@ -2708,7 +2758,7 @@ msgid "" msgstr "" #: libraries/export/codegen.php:36 setup/lib/messages.inc.php:85 -#: tbl_printview.php:374 tbl_structure.php:736 +#: tbl_printview.php:373 tbl_structure.php:734 msgid "Format" msgstr "Format" @@ -2779,9 +2829,9 @@ msgstr "Microsoft Word 2000" #: libraries/export/htmlword.php:23 libraries/export/latex.php:59 #: libraries/export/latex.php:205 libraries/export/odt.php:47 #: libraries/export/sql.php:105 libraries/export/sql.php:865 -#: libraries/export/texytext.php:27 server_databases.php:126 -#: server_privileges.php:576 server_replication.php:315 tbl_printview.php:315 -#: tbl_structure.php:664 +#: libraries/export/texytext.php:27 server_databases.php:124 +#: server_privileges.php:575 server_replication.php:314 tbl_printview.php:314 +#: tbl_structure.php:662 msgid "Data" msgstr "Data" @@ -2796,7 +2846,6 @@ msgid "Table structure for table" msgstr "Struktur-dump for tabellen" #: libraries/export/latex.php:13 -#| msgid "Content of table __TABLE__" msgid "Content of table @TABLE@" msgstr "Indhold af tabel @TABLE@" @@ -2805,7 +2854,6 @@ msgid "(continued)" msgstr "(fortsættes)" #: libraries/export/latex.php:15 -#| msgid "Structure of table __TABLE__" msgid "Structure of table @TABLE@" msgstr "Struktur for tabel @TABLE@" @@ -2830,13 +2878,13 @@ msgid "Label key" msgstr "Mærke nøgle" #: libraries/export/latex.php:46 libraries/export/odt.php:34 -#: libraries/export/sql.php:90 tbl_relation.php:398 +#: libraries/export/sql.php:90 tbl_relation.php:396 msgid "Relations" msgstr "Relationer" #: libraries/export/latex.php:52 libraries/export/odt.php:40 #: libraries/export/odt.php:317 libraries/export/sql.php:94 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "MIME-type" @@ -2844,10 +2892,10 @@ msgstr "MIME-type" #: libraries/export/xml.php:101 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1529 server_privileges.php:2061 -#: server_processlist.php:54 server_synchronize.php:1158 +#: libraries/replication_gui.lib.php:331 server_privileges.php:730 +#: server_privileges.php:733 server_privileges.php:789 +#: server_privileges.php:1533 server_privileges.php:2065 +#: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "Vært" @@ -3036,8 +3084,8 @@ msgstr "" msgid "Export contents" msgstr "" -#: libraries/footer.inc.php:182 libraries/footer.inc.php:193 -#: libraries/footer.inc.php:196 +#: libraries/footer.inc.php:180 libraries/footer.inc.php:191 +#: libraries/footer.inc.php:194 msgid "Open new phpMyAdmin window" msgstr "Åbn nyt phpMyAdmin vindue" @@ -3053,7 +3101,7 @@ msgstr "SQL-resultat" msgid "Generated by" msgstr "Genereret af" -#: libraries/import.lib.php:151 sql.php:519 tbl_change.php:180 +#: libraries/import.lib.php:151 sql.php:518 tbl_change.php:175 #: 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)." @@ -3109,7 +3157,7 @@ msgstr "Ignorér gentagne rækker" msgid "Column names in first row" msgstr "" -#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:501 +#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:500 #: view_create.php:147 msgid "Column names" msgstr "Kolonnenavne" @@ -3136,12 +3184,12 @@ msgstr "Ugyldigt format for CSV-input på linie %d." msgid "Invalid column count in CSV input on line %d." msgstr "Ugyldigt feltantal i CSV-input på linie %d." -#: libraries/import/docsql.php:28 +#: libraries/import/docsql.php:27 msgid "DocSQL" msgstr "DocSQL" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 -#: server_synchronize.php:427 server_synchronize.php:870 +#: libraries/import/docsql.php:30 libraries/tbl_properties.inc.php:616 +#: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "Tabelnavn" @@ -3197,26 +3245,26 @@ msgstr "Ingen" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:512 -#: tbl_structure.php:28 tbl_structure.php:152 tbl_structure.php:156 -#: tbl_structure.php:472 +#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:511 +#: tbl_structure.php:27 tbl_structure.php:151 tbl_structure.php:155 +#: tbl_structure.php:470 msgid "Primary" msgstr "Primær" #: libraries/mult_submits.inc.php:97 libraries/tbl_properties.inc.php:115 -#: libraries/tbl_properties.inc.php:524 tbl_printview.php:324 -#: tbl_structure.php:30 tbl_structure.php:153 tbl_structure.php:157 -#: tbl_structure.php:474 tbl_structure.php:672 +#: libraries/tbl_properties.inc.php:523 tbl_printview.php:323 +#: tbl_structure.php:29 tbl_structure.php:152 tbl_structure.php:156 +#: tbl_structure.php:472 tbl_structure.php:670 msgid "Index" msgstr "Indeks" -#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:530 -#: tbl_structure.php:34 tbl_structure.php:155 tbl_structure.php:159 -#: tbl_structure.php:477 +#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:529 +#: tbl_structure.php:33 tbl_structure.php:154 tbl_structure.php:158 +#: tbl_structure.php:475 msgid "Fulltext" msgstr "Fuldtekst" -#: libraries/mult_submits.inc.php:434 tbl_replace.php:330 +#: libraries/mult_submits.inc.php:433 tbl_replace.php:330 msgid "No change" msgstr "Ingen ændring" @@ -3224,190 +3272,190 @@ msgstr "Ingen ændring" msgid "Charset" msgstr "Tegnsæt" -#: libraries/mysql_charsets.lib.php:210 libraries/mysql_charsets.lib.php:411 -#: tbl_change.php:515 +#: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 +#: tbl_change.php:510 msgid "Binary" msgstr " Binært " -#: libraries/mysql_charsets.lib.php:222 +#: libraries/mysql_charsets.lib.php:214 msgid "Bulgarian" msgstr "Bulgarsk" -#: libraries/mysql_charsets.lib.php:226 libraries/mysql_charsets.lib.php:351 +#: libraries/mysql_charsets.lib.php:218 libraries/mysql_charsets.lib.php:343 msgid "Simplified Chinese" msgstr "Simplificeret Kinesisk" -#: libraries/mysql_charsets.lib.php:228 libraries/mysql_charsets.lib.php:371 +#: libraries/mysql_charsets.lib.php:220 libraries/mysql_charsets.lib.php:363 msgid "Traditional Chinese" msgstr "Traditionelt Kinesisk" -#: libraries/mysql_charsets.lib.php:232 libraries/mysql_charsets.lib.php:418 +#: libraries/mysql_charsets.lib.php:224 libraries/mysql_charsets.lib.php:410 msgid "case-insensitive" msgstr "ingen forskel på store/små bogstaver" -#: libraries/mysql_charsets.lib.php:235 libraries/mysql_charsets.lib.php:420 +#: libraries/mysql_charsets.lib.php:227 libraries/mysql_charsets.lib.php:412 msgid "case-sensitive" msgstr "forskel på store/små bogstaver" -#: libraries/mysql_charsets.lib.php:238 +#: libraries/mysql_charsets.lib.php:230 msgid "Croatian" msgstr "Kroatisk" -#: libraries/mysql_charsets.lib.php:241 +#: libraries/mysql_charsets.lib.php:233 msgid "Czech" msgstr "Tjekkisk" -#: libraries/mysql_charsets.lib.php:244 +#: libraries/mysql_charsets.lib.php:236 msgid "Danish" msgstr "Dansk" -#: libraries/mysql_charsets.lib.php:247 +#: libraries/mysql_charsets.lib.php:239 msgid "English" msgstr "Engelsk" -#: libraries/mysql_charsets.lib.php:250 +#: libraries/mysql_charsets.lib.php:242 msgid "Esperanto" msgstr "Esperanto" -#: libraries/mysql_charsets.lib.php:253 +#: libraries/mysql_charsets.lib.php:245 msgid "Estonian" msgstr "Estisk" -#: libraries/mysql_charsets.lib.php:256 libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:248 libraries/mysql_charsets.lib.php:251 msgid "German" msgstr "Tysk" -#: libraries/mysql_charsets.lib.php:256 +#: libraries/mysql_charsets.lib.php:248 msgid "dictionary" msgstr "ordbog" -#: libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:251 msgid "phone book" msgstr "telefonbog" -#: libraries/mysql_charsets.lib.php:262 +#: libraries/mysql_charsets.lib.php:254 msgid "Hungarian" msgstr "Ungarsk" -#: libraries/mysql_charsets.lib.php:265 +#: libraries/mysql_charsets.lib.php:257 msgid "Icelandic" msgstr "Islandsk" -#: libraries/mysql_charsets.lib.php:268 libraries/mysql_charsets.lib.php:358 +#: libraries/mysql_charsets.lib.php:260 libraries/mysql_charsets.lib.php:350 msgid "Japanese" msgstr "Japansk" -#: libraries/mysql_charsets.lib.php:271 +#: libraries/mysql_charsets.lib.php:263 msgid "Latvian" msgstr "Lettisk" -#: libraries/mysql_charsets.lib.php:274 +#: libraries/mysql_charsets.lib.php:266 msgid "Lithuanian" msgstr "Litauisk" -#: libraries/mysql_charsets.lib.php:277 libraries/mysql_charsets.lib.php:380 +#: libraries/mysql_charsets.lib.php:269 libraries/mysql_charsets.lib.php:372 msgid "Korean" msgstr "Koreansk" -#: libraries/mysql_charsets.lib.php:280 +#: libraries/mysql_charsets.lib.php:272 msgid "Persian" msgstr "Persisk" -#: libraries/mysql_charsets.lib.php:283 +#: libraries/mysql_charsets.lib.php:275 msgid "Polish" msgstr "Polsk" -#: libraries/mysql_charsets.lib.php:286 libraries/mysql_charsets.lib.php:334 +#: libraries/mysql_charsets.lib.php:278 libraries/mysql_charsets.lib.php:326 msgid "West European" msgstr "Vesteuropæisk" -#: libraries/mysql_charsets.lib.php:289 +#: libraries/mysql_charsets.lib.php:281 msgid "Romanian" msgstr "Rumænsk" -#: libraries/mysql_charsets.lib.php:292 +#: libraries/mysql_charsets.lib.php:284 msgid "Slovak" msgstr "Slovakisk" -#: libraries/mysql_charsets.lib.php:295 +#: libraries/mysql_charsets.lib.php:287 msgid "Slovenian" msgstr "Slovensk" -#: libraries/mysql_charsets.lib.php:298 +#: libraries/mysql_charsets.lib.php:290 msgid "Spanish" msgstr "Spansk" -#: libraries/mysql_charsets.lib.php:301 +#: libraries/mysql_charsets.lib.php:293 msgid "Traditional Spanish" msgstr "Traditionelt Spansk" -#: libraries/mysql_charsets.lib.php:304 libraries/mysql_charsets.lib.php:401 +#: libraries/mysql_charsets.lib.php:296 libraries/mysql_charsets.lib.php:393 msgid "Swedish" msgstr "Svensk" -#: libraries/mysql_charsets.lib.php:307 libraries/mysql_charsets.lib.php:404 +#: libraries/mysql_charsets.lib.php:299 libraries/mysql_charsets.lib.php:396 msgid "Thai" msgstr "Thai" -#: libraries/mysql_charsets.lib.php:310 libraries/mysql_charsets.lib.php:398 +#: libraries/mysql_charsets.lib.php:302 libraries/mysql_charsets.lib.php:390 msgid "Turkish" msgstr "Tyrkisk" -#: libraries/mysql_charsets.lib.php:313 libraries/mysql_charsets.lib.php:395 +#: libraries/mysql_charsets.lib.php:305 libraries/mysql_charsets.lib.php:387 msgid "Ukrainian" msgstr "Ukrainsk" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 msgid "Unicode" msgstr "Unicode" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 -#: libraries/mysql_charsets.lib.php:334 libraries/mysql_charsets.lib.php:341 -#: libraries/mysql_charsets.lib.php:363 libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 +#: libraries/mysql_charsets.lib.php:326 libraries/mysql_charsets.lib.php:333 +#: libraries/mysql_charsets.lib.php:355 libraries/mysql_charsets.lib.php:366 msgid "multilingual" msgstr "flersproget" -#: libraries/mysql_charsets.lib.php:341 +#: libraries/mysql_charsets.lib.php:333 msgid "Central European" msgstr "Centraleuropæisk" -#: libraries/mysql_charsets.lib.php:346 +#: libraries/mysql_charsets.lib.php:338 msgid "Russian" msgstr "Russisk" -#: libraries/mysql_charsets.lib.php:363 +#: libraries/mysql_charsets.lib.php:355 msgid "Baltic" msgstr "Baltisk" -#: libraries/mysql_charsets.lib.php:368 +#: libraries/mysql_charsets.lib.php:360 msgid "Armenian" msgstr "Armensk" -#: libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:366 msgid "Cyrillic" msgstr "Kyrillisk" -#: libraries/mysql_charsets.lib.php:377 +#: libraries/mysql_charsets.lib.php:369 msgid "Arabic" msgstr "Arabisk" -#: libraries/mysql_charsets.lib.php:383 +#: libraries/mysql_charsets.lib.php:375 msgid "Hebrew" msgstr "Hebræisk" -#: libraries/mysql_charsets.lib.php:386 +#: libraries/mysql_charsets.lib.php:378 msgid "Georgian" msgstr "Georgisk" -#: libraries/mysql_charsets.lib.php:389 +#: libraries/mysql_charsets.lib.php:381 msgid "Greek" msgstr "Græsk" -#: libraries/mysql_charsets.lib.php:392 +#: libraries/mysql_charsets.lib.php:384 msgid "Czech-Slovak" msgstr "Tjekkisk-Slovakisk" -#: libraries/mysql_charsets.lib.php:407 libraries/mysql_charsets.lib.php:414 +#: libraries/mysql_charsets.lib.php:399 libraries/mysql_charsets.lib.php:406 msgid "unknown" msgstr "ukendt" @@ -3433,69 +3481,69 @@ msgstr "Foresp. vindue" msgid "This format has no options" msgstr "Dette format har ingen indstillinger" -#: libraries/relation.lib.php:82 +#: libraries/relation.lib.php:77 msgid "not OK" msgstr "ikke OK" -#: libraries/relation.lib.php:86 pmd_general.php:339 +#: libraries/relation.lib.php:81 pmd_general.php:339 msgid "OK" msgstr "OK" -#: libraries/relation.lib.php:87 +#: libraries/relation.lib.php:82 msgid "Enabled" msgstr "Slået til" -#: libraries/relation.lib.php:110 +#: libraries/relation.lib.php:105 msgid "Display Features" msgstr "Vis muligheder" -#: libraries/relation.lib.php:116 +#: libraries/relation.lib.php:111 msgid "Creation of PDFs" msgstr "Oprettelse af PDFer" -#: libraries/relation.lib.php:120 +#: libraries/relation.lib.php:115 msgid "Displaying Column Comments" msgstr "Viser kolonne-kommentarer" -#: libraries/relation.lib.php:125 +#: libraries/relation.lib.php:120 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "Se venligst Dokumentationen for oplysninger om hvordan du opdaterer din " "Column_comments (kolonne-kommentarer) tabel" -#: libraries/relation.lib.php:130 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 msgid "Bookmarked SQL query" msgstr "SQL-forespørgsel med bogmærke" -#: libraries/relation.lib.php:134 querywindow.php:99 querywindow.php:207 +#: libraries/relation.lib.php:129 querywindow.php:98 querywindow.php:205 msgid "SQL history" msgstr "SQL-historik" -#: libraries/relation.lib.php:146 +#: libraries/relation.lib.php:141 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:148 +#: libraries/relation.lib.php:143 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" -#: libraries/relation.lib.php:149 +#: libraries/relation.lib.php:144 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:150 +#: libraries/relation.lib.php:145 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:151 +#: libraries/relation.lib.php:146 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1158 +#: libraries/relation.lib.php:1153 msgid "no description" msgstr "ingen beskrivelse" @@ -3503,7 +3551,7 @@ msgstr "ingen beskrivelse" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:53 server_replication.php:346 +#: libraries/replication_gui.lib.php:53 server_replication.php:345 msgid "Change or reconfigure master server" msgstr "" @@ -3515,16 +3563,12 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:711 -#: server_privileges.php:714 server_privileges.php:721 -#: server_synchronize.php:1170 +#: libraries/replication_gui.lib.php:261 server_privileges.php:710 +#: server_privileges.php:713 server_privileges.php:720 +#: server_synchronize.php:1169 msgid "User name" msgstr "Brugernavn" -#: libraries/replication_gui.lib.php:69 server_synchronize.php:1162 -msgid "Port" -msgstr "" - #: libraries/replication_gui.lib.php:105 msgid "Master status" msgstr "" @@ -3539,8 +3583,8 @@ msgid "Variable" msgstr "Variabel" #: libraries/replication_gui.lib.php:117 server_status.php:737 -#: tbl_change.php:322 tbl_printview.php:368 tbl_select.php:137 -#: tbl_structure.php:728 +#: tbl_change.php:317 tbl_printview.php:367 tbl_select.php:136 +#: tbl_structure.php:726 msgid "Value" msgstr "Værdi" @@ -3554,38 +3598,38 @@ msgid "" "this list." msgstr "" -#: libraries/replication_gui.lib.php:242 server_replication.php:193 +#: libraries/replication_gui.lib.php:242 server_replication.php:192 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:256 server_privileges.php:716 +#: libraries/replication_gui.lib.php:256 server_privileges.php:715 msgid "Any user" msgstr "Enhver bruger" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1920 server_privileges.php:1950 +#: libraries/replication_gui.lib.php:348 server_privileges.php:716 +#: server_privileges.php:783 server_privileges.php:807 +#: server_privileges.php:1924 server_privileges.php:1954 msgid "Use text field" msgstr "Brug tekstfelt" -#: libraries/replication_gui.lib.php:304 server_privileges.php:764 +#: libraries/replication_gui.lib.php:304 server_privileges.php:763 msgid "Any host" msgstr "Enhver vært" -#: libraries/replication_gui.lib.php:308 server_privileges.php:768 +#: libraries/replication_gui.lib.php:308 server_privileges.php:767 msgid "Local" msgstr "Lokal" -#: libraries/replication_gui.lib.php:314 server_privileges.php:773 +#: libraries/replication_gui.lib.php:314 server_privileges.php:772 msgid "This Host" msgstr "Denne Host" -#: libraries/replication_gui.lib.php:320 server_privileges.php:779 +#: libraries/replication_gui.lib.php:320 server_privileges.php:778 msgid "Use Host Table" msgstr "Brug Host Tabel" -#: libraries/replication_gui.lib.php:333 server_privileges.php:792 +#: libraries/replication_gui.lib.php:333 server_privileges.php:791 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3611,8 +3655,8 @@ msgstr "Ukendt sprog: %1$s." msgid "Servers" msgstr "Servere" -#: libraries/server_links.inc.php:52 server_engines.php:111 -#: server_engines.php:115 server_status.php:414 test/theme.php:104 +#: libraries/server_links.inc.php:52 server_engines.php:125 +#: server_engines.php:129 server_status.php:414 test/theme.php:104 msgid "Variables" msgstr "Variabler" @@ -3633,12 +3677,12 @@ msgstr "Binær log" msgid "Processes" msgstr "Processer" -#: libraries/server_links.inc.php:91 server_synchronize.php:1091 -#: server_synchronize.php:1099 +#: libraries/server_links.inc.php:91 server_synchronize.php:1090 +#: server_synchronize.php:1098 msgid "Synchronize" msgstr "" -#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1109 +#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1108 msgid "Source database" msgstr "" @@ -3656,7 +3700,7 @@ msgstr "" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1111 +#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1110 msgid "Target database" msgstr "" @@ -3676,11 +3720,11 @@ msgstr "Kør SQL-forspørgsel(er) på database %s" msgid "Columns" msgstr "Kolonnenavne" -#: libraries/sql_query_form.lib.php:342 sql.php:664 sql.php:665 sql.php:682 +#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "Lav bogmærke til denne SQL-forespørgsel" -#: libraries/sql_query_form.lib.php:349 sql.php:676 +#: libraries/sql_query_form.lib.php:349 sql.php:669 msgid "Let every user access this bookmark" msgstr "Lad alle brugere bruge dette bogmærke" @@ -3777,12 +3821,12 @@ msgstr "" "SQL-validatoren kunne ikke initialiseres. Check venligst at du har de " "nødvendige PHP-udvidelser installeret som beskrevet i %sdokumentationen%s." -#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:139 -#: libraries/tbl_links.inc.php:140 +#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 +#: libraries/tbl_links.inc.php:139 msgid "Table seems to be empty!" msgstr "Tabel ser ud til at være tom" -#: libraries/tbl_links.inc.php:148 +#: libraries/tbl_links.inc.php:147 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" @@ -3817,12 +3861,12 @@ msgstr "" "For standardværdier, indtast venligst kun en enkelt værdi, uden backslash " "escaping eller quotes, ud fra følgende format: a" -#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1263 -#: pdf_schema.php:1284 tbl_printview.php:142 tbl_structure.php:179 +#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1262 +#: pdf_schema.php:1283 tbl_printview.php:141 tbl_structure.php:178 msgid "Attributes" msgstr "Attributter" -#: libraries/tbl_properties.inc.php:136 +#: libraries/tbl_properties.inc.php:135 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -3831,11 +3875,11 @@ msgstr "" "For en liste over mulige transformationsindstillinger og deres MIME-type " "transformationer, klik på %stransformationsbeskrivelser%s" -#: libraries/tbl_properties.inc.php:144 +#: libraries/tbl_properties.inc.php:143 msgid "Transformation options" msgstr "Transformationsindstillinger" -#: libraries/tbl_properties.inc.php:145 +#: libraries/tbl_properties.inc.php:144 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
                            If you ever need to put a backslash (\"\\\") or a single " @@ -3847,18 +3891,18 @@ msgstr "" "\") eller en apostrof (\"'\") i værdierne, backslash det (for eksempel '\\" "\\xyz' eller 'a\\'b')." -#: libraries/tbl_properties.inc.php:392 +#: libraries/tbl_properties.inc.php:391 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "Ingen" -#: libraries/tbl_properties.inc.php:393 +#: libraries/tbl_properties.inc.php:392 msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:579 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:578 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
                            Please ask the " @@ -3867,29 +3911,29 @@ msgstr "" "Der er ingen beskrivelse af denne transformation.
                            Spørg venligst " "forfatteren, hvad %s gør." -#: libraries/tbl_properties.inc.php:725 server_engines.php:57 -#: tbl_operations.php:354 +#: libraries/tbl_properties.inc.php:724 server_engines.php:56 +#: tbl_operations.php:352 msgid "Storage Engine" msgstr "Datalager" -#: libraries/tbl_properties.inc.php:754 +#: libraries/tbl_properties.inc.php:753 msgid "PARTITION definition" msgstr "" -#: libraries/tbl_properties.inc.php:775 pdf_pages.php:502 +#: libraries/tbl_properties.inc.php:774 pdf_pages.php:501 #: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214 -#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1124 tbl_indexes.php:247 -#: tbl_relation.php:565 +#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1022 tbl_indexes.php:246 +#: tbl_relation.php:563 msgid "Save" msgstr "Gem" -#: libraries/tbl_properties.inc.php:779 tbl_structure.php:541 +#: libraries/tbl_properties.inc.php:778 tbl_structure.php:539 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "Tilføj %s felt(er)" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:535 +#: libraries/tbl_properties.inc.php:782 tbl_structure.php:533 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -4093,8 +4137,8 @@ msgstr "" msgid "Custom color" msgstr "" -#: main.php:162 pdf_pages.php:362 setup/lib/FormDisplay.tpl.php:216 -#: tbl_change.php:1173 +#: main.php:162 pdf_pages.php:361 setup/lib/FormDisplay.tpl.php:216 +#: tbl_change.php:1071 msgid "Reset" msgstr "Nulstil" @@ -4102,8 +4146,8 @@ msgstr "Nulstil" msgid "Protocol version" msgstr "Protokolversion" -#: main.php:188 server_privileges.php:1381 server_privileges.php:1528 -#: server_privileges.php:1642 server_privileges.php:2060 +#: main.php:188 server_privileges.php:1385 server_privileges.php:1532 +#: server_privileges.php:1646 server_privileges.php:2064 #: server_processlist.php:53 msgid "User" msgstr "Bruger" @@ -4188,14 +4232,23 @@ msgid "" "has been configured." msgstr "" -#: main.php:330 +#: main.php:314 +#, php-format +msgid "" +"The additional features for working with linked tables have been " +"deactivated. To find out why click %shere%s." +msgstr "" +"De ekstra features for at arbejde med linkede tabeller er deaktiveret. For " +"at se hvorfor, klik %sher%s." + +#: main.php:329 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:345 +#: main.php:344 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -4204,7 +4257,7 @@ msgstr "" "Din PHP MySQL-biblioteks version %s afviger fra din MySQL server version %s. " "Dette kan forårsage uforudsigelige resultater." -#: main.php:357 +#: main.php:356 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -4215,68 +4268,68 @@ msgstr "" msgid "Reload navigation frame" msgstr "" -#: navigation.php:204 server_databases.php:370 server_synchronize.php:1190 +#: navigation.php:203 server_databases.php:368 server_synchronize.php:1189 msgid "No databases" msgstr "Ingen databaser" -#: navigation.php:298 +#: navigation.php:297 msgid "Filter" msgstr "" -#: navigation.php:299 setup/frames/index.inc.php:218 +#: navigation.php:298 setup/frames/index.inc.php:218 #: setup/lib/messages.inc.php:41 msgid "Clear" msgstr "" -#: navigation.php:330 navigation.php:331 +#: navigation.php:329 navigation.php:330 #, fuzzy #| msgid "Create table" msgctxt "short form" msgid "Create table" msgstr "Opret tabel" -#: navigation.php:333 navigation.php:495 +#: navigation.php:332 navigation.php:494 msgid "Please select a database" msgstr "Vælg en database" -#: pdf_pages.php:40 pdf_pages.php:46 pdf_pages.php:52 pdf_pages.php:57 +#: pdf_pages.php:39 pdf_pages.php:45 pdf_pages.php:51 pdf_pages.php:56 #, php-format msgid "%s table not found or not set in %s" msgstr "Tabel %s findes ikke eller er ikke sat i %s" -#: pdf_pages.php:265 +#: pdf_pages.php:264 msgid "Please choose a page to edit" msgstr "Vælg en side der skal redigeres" -#: pdf_pages.php:303 pmd_pdf.php:113 +#: pdf_pages.php:302 pmd_pdf.php:111 msgid "Create a page" msgstr "Opret en ny side" -#: pdf_pages.php:309 +#: pdf_pages.php:308 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Side nummer:" -#: pdf_pages.php:313 +#: pdf_pages.php:312 #, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "Automatisk layout" -#: pdf_pages.php:315 +#: pdf_pages.php:314 msgid "Internal relations" msgstr "Interne relationer" -#: pdf_pages.php:338 +#: pdf_pages.php:337 msgid "Select Tables" msgstr "Vælg Tabeller" -#: pdf_pages.php:361 +#: pdf_pages.php:360 msgid "Toggle scratchboard" msgstr "tegnebræt til/fra" -#: pdf_pages.php:524 +#: pdf_pages.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -4284,37 +4337,37 @@ msgstr "" "Nuværende side har referencer til tabeller der ikke længere eksisterer. Vil " "du slette disse referencer?" -#: pdf_schema.php:635 +#: pdf_schema.php:634 #, fuzzy, php-format #| msgid "The \"%s\" table doesn't exist!" msgid "The %s table doesn't exist!" msgstr "Tabellen \"%s\" findes ikke!" -#: pdf_schema.php:671 +#: pdf_schema.php:670 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Konfigurér venligst koordinaterne for tabel %s" -#: pdf_schema.php:994 +#: pdf_schema.php:993 #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" msgstr "Skematik for databasen \"%s\" - Side %s" -#: pdf_schema.php:1012 +#: pdf_schema.php:1011 msgid "No tables" msgstr "Ingen tabeller" -#: pdf_schema.php:1031 pdf_schema.php:1140 +#: pdf_schema.php:1030 pdf_schema.php:1139 msgid "Relational schema" msgstr "Relationel skematik" -#: pdf_schema.php:1115 +#: pdf_schema.php:1114 msgid "Table of contents" msgstr "Indholdsfortegnelse" -#: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:145 -#: tbl_structure.php:182 tbl_tracking.php:277 +#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 +#: tbl_structure.php:181 tbl_tracking.php:272 msgid "Extra" msgstr "Ekstra" @@ -4326,7 +4379,7 @@ msgstr "Vis/skjul venstre menu" msgid "Save position" msgstr "Gem position" -#: pmd_general.php:70 server_synchronize.php:428 server_synchronize.php:871 +#: pmd_general.php:70 server_synchronize.php:427 server_synchronize.php:870 msgid "Create table" msgstr "Opret tabel" @@ -4405,31 +4458,31 @@ msgstr "" "visningsfelt, klik på \"Vælg felt der skal vises\" ikonet, og klik derefter " "på det pågældende feltnavn." -#: pmd_pdf.php:62 +#: pmd_pdf.php:60 msgid "Page has been created" msgstr "" -#: pmd_pdf.php:64 +#: pmd_pdf.php:62 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:84 +#: pmd_pdf.php:82 msgid "Export/Import to scale" msgstr "Eksporter/Importer til skala" -#: pmd_pdf.php:88 +#: pmd_pdf.php:86 msgid "recommended" msgstr "anbefalet" -#: pmd_pdf.php:93 +#: pmd_pdf.php:91 msgid "to/from page" msgstr "til/fra side" -#: querywindow.php:94 +#: querywindow.php:93 msgid "Import files" msgstr "Importér filer" -#: querywindow.php:105 +#: querywindow.php:104 msgid "All" msgstr "Alle" @@ -4475,67 +4528,67 @@ msgstr "Information" msgid "Character Sets and Collations" msgstr "Tegnsæt og kollationer (Collations)" -#: server_databases.php:51 +#: server_databases.php:49 msgid "No databases selected." msgstr "Ingen databaser valgt." -#: server_databases.php:62 +#: server_databases.php:60 #, php-format msgid "%s databases have been dropped successfully." msgstr "%s databaser er blevet droppet korrekt." -#: server_databases.php:87 +#: server_databases.php:85 msgid "Databases statistics" msgstr "Databasestatistik" -#: server_databases.php:116 server_status.php:370 +#: server_databases.php:114 server_status.php:370 #: setup/lib/messages.inc.php:114 msgid "Tables" msgstr "Tabeller" -#: server_databases.php:194 server_replication.php:180 -#: server_replication.php:208 +#: server_databases.php:192 server_replication.php:179 +#: server_replication.php:207 msgid "Master replication" msgstr "" -#: server_databases.php:196 server_replication.php:247 +#: server_databases.php:194 server_replication.php:246 msgid "Slave replication" msgstr "" -#: server_databases.php:229 +#: server_databases.php:227 #, fuzzy #| msgid "No databases" msgid "Jump to database" msgstr "Ingen databaser" -#: server_databases.php:266 +#: server_databases.php:264 msgid "Not replicated" msgstr "" -#: server_databases.php:272 +#: server_databases.php:270 #, fuzzy #| msgid "Replication" msgid "Replicated" msgstr "Replikering" -#: server_databases.php:288 +#: server_databases.php:286 #, php-format msgid "Check privileges for database "%s"." msgstr "Check privilegier for database "%s"." -#: server_databases.php:292 server_databases.php:293 +#: server_databases.php:290 server_databases.php:291 msgid "Check Privileges" msgstr "Check Privilegier" -#: server_databases.php:357 server_databases.php:358 +#: server_databases.php:355 server_databases.php:356 msgid "Enable Statistics" msgstr "Slå Statistikker til" -#: server_databases.php:361 server_databases.php:362 +#: server_databases.php:359 server_databases.php:360 msgid "Disable Statistics" msgstr "Slå Statistikker fra" -#: server_databases.php:365 +#: server_databases.php:363 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -4543,122 +4596,122 @@ msgstr "" "Bemærk: Aktivering af databasestatistikkerne hér kan forårsage tung trafik " "mellem webserveren og MySQL-serveren." -#: server_engines.php:48 +#: server_engines.php:47 msgid "Storage Engines" msgstr "Datalagre" -#: server_export.php:20 +#: server_export.php:18 msgid "View dump (schema) of databases" msgstr "Vis dump (skema) for databaser" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:23 server_privileges.php:265 msgid "Includes all privileges except GRANT." msgstr "Inkluderer alle privilegier pånær GRANT." -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:24 server_privileges.php:191 +#: server_privileges.php:514 msgid "Allows altering the structure of existing tables." msgstr "Tillader ændring af strukturen på eksisterende tabeller." -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:25 server_privileges.php:207 +#: server_privileges.php:520 msgid "Allows altering and dropping stored routines." msgstr "Tillader ændring og sletning af gemte rutiner." -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:26 server_privileges.php:183 +#: server_privileges.php:513 msgid "Allows creating new databases and tables." msgstr "Tillader oprettelse af nye databaser og tabeller." -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:27 server_privileges.php:206 +#: server_privileges.php:519 msgid "Allows creating stored routines." msgstr "Tillader oprettelse af gemte rutiner." -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:513 msgid "Allows creating new tables." msgstr "Tillader oprettelse af nye tabeller." -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:29 server_privileges.php:194 +#: server_privileges.php:517 msgid "Allows creating temporary tables." msgstr "Tillader oprettelse af midlertidige tabeller." -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:30 server_privileges.php:208 +#: server_privileges.php:553 msgid "Allows creating, dropping and renaming user accounts." msgstr "Tillader oprettelse, sletning og omdøbning af brugerkonti." -#: server_privileges.php:32 server_privileges.php:199 -#: server_privileges.php:203 server_privileges.php:526 -#: server_privileges.php:530 +#: server_privileges.php:31 server_privileges.php:198 +#: server_privileges.php:202 server_privileges.php:525 +#: server_privileges.php:529 msgid "Allows creating new views." msgstr "Tillader oprettelse af nye Allows creating new views." -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:32 server_privileges.php:182 +#: server_privileges.php:505 msgid "Allows deleting data." msgstr "Tillader sletning af data." -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:33 server_privileges.php:184 +#: server_privileges.php:516 msgid "Allows dropping databases and tables." msgstr "Tillader at droppe databaser og tabeller." -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:34 server_privileges.php:516 msgid "Allows dropping tables." msgstr "Tillader at droppe tabeller." -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:35 server_privileges.php:199 +#: server_privileges.php:533 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:36 server_privileges.php:209 +#: server_privileges.php:521 msgid "Allows executing stored routines." msgstr "Tillader udførelse af gemte rutiner." -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:37 server_privileges.php:188 +#: server_privileges.php:508 msgid "Allows importing data from and exporting data into files." msgstr "Tillader import af data fra og eksport af data til filer." -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:38 server_privileges.php:539 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Tillader oprettelse af brugere og privilegier uden at genindlæse privilegie-" "tabellerne." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:515 msgid "Allows creating and dropping indexes." msgstr "Tillader at skabe og droppe indeks." -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:40 server_privileges.php:180 +#: server_privileges.php:441 server_privileges.php:503 msgid "Allows inserting and replacing data." msgstr "Tillader indsættelse og erstatning af data." -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:41 server_privileges.php:195 +#: server_privileges.php:548 msgid "Allows locking tables for the current thread." msgstr "Tillader låsning af tabeller for nuværende tråd." -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:42 server_privileges.php:645 +#: server_privileges.php:647 msgid "Limits the number of new connections the user may open per hour." msgstr "Begrænser antallet af nye forbindelser brugeren må åbne pr. time." -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:43 server_privileges.php:633 +#: server_privileges.php:635 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Begrænser antallet af forespørgsler brugeren må sende til serveren pr. time." -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:44 server_privileges.php:639 +#: server_privileges.php:641 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -4666,58 +4719,58 @@ msgstr "" "Begrænser antallet af kommandoer som ændrer enhver tabel eller database " "brugeren må udføre pr. time." -#: server_privileges.php:46 server_privileges.php:652 -#: server_privileges.php:654 +#: server_privileges.php:45 server_privileges.php:651 +#: server_privileges.php:653 msgid "Limits the number of simultaneous connections the user may have." msgstr "Begrænser antallet af samtidige forbindelser brugere må have." -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:46 server_privileges.php:187 +#: server_privileges.php:543 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:47 server_privileges.php:189 +#: server_privileges.php:447 server_privileges.php:549 msgid "Has no effect in this MySQL version." msgstr "Har ingen effekt i denne MySQL version." -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:48 server_privileges.php:185 +#: server_privileges.php:544 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Tillader genindlæsning af serverindstillinger og tømning af caches." -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:197 +#: server_privileges.php:551 msgid "Allows the user to ask where the slaves / masters are." msgstr "Giver brugeren rettigheder til at spørge hvor Slaves / Masters er." -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:50 server_privileges.php:196 +#: server_privileges.php:552 msgid "Needed for the replication slaves." msgstr "Nødvendigt for replikationsslaverne." -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:51 server_privileges.php:179 +#: server_privileges.php:438 server_privileges.php:502 msgid "Allows reading data." msgstr "Tillader læsning af data." -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:52 server_privileges.php:192 +#: server_privileges.php:546 msgid "Gives access to the complete list of databases." msgstr "Giver adgang til den fuldstændige liste over databaser." -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:53 server_privileges.php:203 +#: server_privileges.php:205 server_privileges.php:518 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Tillader udførelse af SHOW CREATE VIEW forespørgsler." -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:54 server_privileges.php:186 +#: server_privileges.php:545 msgid "Allows shutting down the server." msgstr "Tillader nedlukning af serveren." -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:55 server_privileges.php:193 +#: server_privileges.php:542 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -4727,158 +4780,158 @@ msgstr "" "Nødvendigt for de fleste administrative operationer som indstilling af " "globale variabler eller for at dræbe andre brugeres tråde." -#: server_privileges.php:57 server_privileges.php:201 -#: server_privileges.php:535 +#: server_privileges.php:56 server_privileges.php:200 +#: server_privileges.php:534 msgid "Allows creating and dropping triggers" msgstr "" -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:57 server_privileges.php:181 +#: server_privileges.php:444 server_privileges.php:504 msgid "Allows changing data." msgstr "Tillader ændring af data." -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:58 server_privileges.php:259 msgid "No privileges." msgstr "Ingen privilegier." -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:301 server_privileges.php:302 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Ingen" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1710 server_privileges.php:1716 +#: server_privileges.php:430 server_privileges.php:565 +#: server_privileges.php:1714 server_privileges.php:1720 msgid "Table-specific privileges" msgstr "Tabel-specifikke privilegier" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1532 +#: server_privileges.php:431 server_privileges.php:573 +#: server_privileges.php:1536 msgid " Note: MySQL privilege names are expressed in English " msgstr " NB: Navne på MySQL privilegier er på engelsk " -#: server_privileges.php:563 server_privileges.php:1531 +#: server_privileges.php:562 server_privileges.php:1535 msgid "Global privileges" msgstr "Globale privilegier" -#: server_privileges.php:565 server_privileges.php:1710 +#: server_privileges.php:564 server_privileges.php:1714 msgid "Database-specific privileges" msgstr "Database-specifikke privilegier" -#: server_privileges.php:610 +#: server_privileges.php:609 msgid "Administration" msgstr "Administration" -#: server_privileges.php:630 +#: server_privileges.php:629 msgid "Resource limits" msgstr "Ressourcebegrænsninger" -#: server_privileges.php:631 +#: server_privileges.php:630 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" "Bemærk: Indstilling af disse værdier til 0 (nul) fjerner begrænsningen." -#: server_privileges.php:708 +#: server_privileges.php:707 msgid "Login Information" msgstr "Login-information" -#: server_privileges.php:802 +#: server_privileges.php:801 msgid "Do not change the password" msgstr "Kodeord må ikke ændres" -#: server_privileges.php:835 server_privileges.php:2197 +#: server_privileges.php:834 server_privileges.php:2201 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Ingen bruger(e) fundet." -#: server_privileges.php:879 +#: server_privileges.php:878 #, php-format msgid "The user %s already exists!" msgstr "Brugeren %s findes i forvejen!" -#: server_privileges.php:962 +#: server_privileges.php:961 msgid "You have added a new user." msgstr "Du har tilføjet en ny bruger." -#: server_privileges.php:1183 +#: server_privileges.php:1184 #, php-format msgid "You have updated the privileges for %s." msgstr "Du har opdateret privilegierne for %s." -#: server_privileges.php:1207 +#: server_privileges.php:1208 #, php-format msgid "You have revoked the privileges for %s" msgstr "Du har tilbagekaldt privilegierne for %s" -#: server_privileges.php:1243 +#: server_privileges.php:1244 #, php-format msgid "The password for %s was changed successfully." msgstr "Kodeordet for %s blev korrekt udskiftet." -#: server_privileges.php:1263 +#: server_privileges.php:1264 #, php-format msgid "Deleting %s" msgstr "Sletter %s" -#: server_privileges.php:1274 +#: server_privileges.php:1275 msgid "No users selected for deleting!" msgstr "Ingen brugere valgt til sletning!" -#: server_privileges.php:1277 +#: server_privileges.php:1278 msgid "Reloading the privileges" msgstr "Genindlæs privilegierne" -#: server_privileges.php:1292 +#: server_privileges.php:1296 msgid "The selected users have been deleted successfully." msgstr "De valgte brugere er blevet korrekt slettet." -#: server_privileges.php:1327 +#: server_privileges.php:1331 msgid "The privileges were reloaded successfully." msgstr "Privilegierne blev korrekt genindlæst." -#: server_privileges.php:1355 server_privileges.php:1641 +#: server_privileges.php:1359 server_privileges.php:1645 msgid "Edit Privileges" msgstr "Ret privilegier" -#: server_privileges.php:1364 +#: server_privileges.php:1368 msgid "Revoke" msgstr "Tilbagekald" -#: server_privileges.php:1396 +#: server_privileges.php:1400 msgid "User overview" msgstr "Brugeroversigt" -#: server_privileges.php:1533 server_privileges.php:1715 -#: server_privileges.php:2064 +#: server_privileges.php:1537 server_privileges.php:1719 +#: server_privileges.php:2068 msgid "Grant" msgstr "Tildel" -#: server_privileges.php:1552 server_privileges.php:2154 +#: server_privileges.php:1556 server_privileges.php:2158 msgid "Any" msgstr "Enhver" -#: server_privileges.php:1601 server_privileges.php:1625 -#: server_privileges.php:2019 server_privileges.php:2208 +#: server_privileges.php:1605 server_privileges.php:1629 +#: server_privileges.php:2023 server_privileges.php:2212 msgid "Add a new User" msgstr "Tilføj en ny bruger" -#: server_privileges.php:1606 +#: server_privileges.php:1610 msgid "Remove selected users" msgstr "Fjern valgte brugere" -#: server_privileges.php:1609 +#: server_privileges.php:1613 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Tilbagekald alle aktive privilegier fra brugerne og slet dem efterfølgende." -#: server_privileges.php:1610 server_privileges.php:1611 -#: server_privileges.php:1612 +#: server_privileges.php:1614 server_privileges.php:1615 +#: server_privileges.php:1616 msgid "Drop the databases that have the same names as the users." msgstr "Drop databaser der har samme navne som brugernes." -#: server_privileges.php:1628 +#: server_privileges.php:1632 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4892,50 +4945,50 @@ msgstr "" "ændringer i den. Hvis dette er tilfældet, bør du %sgenindlæse privilegierne" "%s før du fortsætter." -#: server_privileges.php:1676 +#: server_privileges.php:1680 msgid "The selected user was not found in the privilege table." msgstr "Den valgte bruger blev ikke fundet i privilegietabellen." -#: server_privileges.php:1716 +#: server_privileges.php:1720 msgid "Column-specific privileges" msgstr "Kolonne-specifikke privilegier" -#: server_privileges.php:1917 +#: server_privileges.php:1921 msgid "Add privileges on the following database" msgstr "Tilføj privilegier på følgende database" -#: server_privileges.php:1935 +#: server_privileges.php:1939 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:1938 +#: server_privileges.php:1942 msgid "Add privileges on the following table" msgstr "Tilføj privileges på følgende tabel" -#: server_privileges.php:1995 +#: server_privileges.php:1999 msgid "Change Login Information / Copy User" msgstr "Ret Login-information / Kopiér bruger" -#: server_privileges.php:1998 +#: server_privileges.php:2002 msgid "Create a new user with the same privileges and ..." msgstr "Opret en bruger med samme privilegier og ..." -#: server_privileges.php:2000 +#: server_privileges.php:2004 msgid "... keep the old one." msgstr "... behold den gamle." -#: server_privileges.php:2001 +#: server_privileges.php:2005 msgid " ... delete the old one from the user tables." msgstr " ... slet den gamle fra brugertabellerne." -#: server_privileges.php:2002 +#: server_privileges.php:2006 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "" " ... tilbagekald alle aktive privilegier fra den gamle og slet den " "efterfølgende." -#: server_privileges.php:2003 +#: server_privileges.php:2007 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -4943,44 +4996,44 @@ msgstr "" " ... slet den gamle fra brugertabellerne og genindlæs privilegierne " "efterfølgende." -#: server_privileges.php:2025 +#: server_privileges.php:2029 msgid "Database for user" msgstr "Database for bruger" -#: server_privileges.php:2029 +#: server_privileges.php:2033 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Ingen" -#: server_privileges.php:2030 +#: server_privileges.php:2034 msgid "Create database with same name and grant all privileges" msgstr "Opret database med samme navn og tildel alle privilegier" -#: server_privileges.php:2031 +#: server_privileges.php:2035 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Tildel alle privilegier til jokertegn-navn (brugernavn_%)" -#: server_privileges.php:2034 +#: server_privileges.php:2038 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: server_privileges.php:2057 +#: server_privileges.php:2061 #, php-format msgid "Users having access to "%s"" msgstr "Brugere med adgang til "%s"" -#: server_privileges.php:2165 +#: server_privileges.php:2169 msgid "global" msgstr "global" -#: server_privileges.php:2167 +#: server_privileges.php:2171 msgid "database-specific" msgstr "database-specifik" -#: server_privileges.php:2169 +#: server_privileges.php:2173 msgid "wildcard" msgstr "jokertegn" @@ -5000,53 +5053,53 @@ msgstr "" msgid "ID" msgstr "ID" -#: server_replication.php:50 +#: server_replication.php:49 msgid "Unknown error" msgstr "" -#: server_replication.php:57 +#: server_replication.php:56 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:64 +#: server_replication.php:63 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:70 +#: server_replication.php:69 msgid "Unable to change master" msgstr "" -#: server_replication.php:73 +#: server_replication.php:72 #, php-format msgid "Master server changed succesfully to %s" msgstr "" -#: server_replication.php:181 +#: server_replication.php:180 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:183 server_status.php:391 +#: server_replication.php:182 server_status.php:391 msgid "Show master status" msgstr "" -#: server_replication.php:186 +#: server_replication.php:185 msgid "Show connected slaves" msgstr "" -#: server_replication.php:209 +#: server_replication.php:208 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:216 +#: server_replication.php:215 msgid "Master configuration" msgstr "" -#: server_replication.php:217 +#: server_replication.php:216 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -5055,107 +5108,107 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:220 +#: server_replication.php:219 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:221 +#: server_replication.php:220 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:224 +#: server_replication.php:223 msgid "Please select databases:" msgstr "" -#: server_replication.php:227 +#: server_replication.php:226 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: server_replication.php:229 +#: server_replication.php:228 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: server_replication.php:292 +#: server_replication.php:291 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:295 +#: server_replication.php:294 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:304 +#: server_replication.php:303 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:307 +#: server_replication.php:306 msgid "See slave status table" msgstr "" -#: server_replication.php:310 +#: server_replication.php:309 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:321 +#: server_replication.php:320 msgid "Control slave:" msgstr "" -#: server_replication.php:324 +#: server_replication.php:323 msgid "Full start" msgstr "" -#: server_replication.php:324 +#: server_replication.php:323 msgid "Full stop" msgstr "" -#: server_replication.php:325 +#: server_replication.php:324 msgid "Reset slave" msgstr "" -#: server_replication.php:326 +#: server_replication.php:325 #, php-format msgid "SQL Thread %s only" msgstr "" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 msgid "Start" msgstr "" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 msgid "Stop" msgstr "" -#: server_replication.php:327 +#: server_replication.php:326 #, php-format msgid "IO Thread %s only" msgstr "" -#: server_replication.php:331 +#: server_replication.php:330 msgid "Error management:" msgstr "" -#: server_replication.php:333 +#: server_replication.php:332 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:335 +#: server_replication.php:334 msgid "Skip current error" msgstr "" -#: server_replication.php:336 +#: server_replication.php:335 msgid "Skip next" msgstr "" -#: server_replication.php:339 +#: server_replication.php:338 msgid "errors." msgstr "" -#: server_replication.php:354 +#: server_replication.php:353 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -5978,112 +6031,112 @@ msgstr "Forespørgselstype" msgid "Replication status" msgstr "" -#: server_synchronize.php:93 +#: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:96 +#: server_synchronize.php:95 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:121 server_synchronize.php:124 tbl_create.php:77 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:264 +#: server_synchronize.php:263 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:271 +#: server_synchronize.php:270 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:399 server_synchronize.php:838 +#: server_synchronize.php:398 server_synchronize.php:837 msgid "not present" msgstr "" -#: server_synchronize.php:423 server_synchronize.php:866 +#: server_synchronize.php:422 server_synchronize.php:865 msgid "Structure Difference" msgstr "" -#: server_synchronize.php:424 server_synchronize.php:867 +#: server_synchronize.php:423 server_synchronize.php:866 msgid "Data Difference" msgstr "" -#: server_synchronize.php:429 server_synchronize.php:872 +#: server_synchronize.php:428 server_synchronize.php:871 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:430 server_synchronize.php:873 +#: server_synchronize.php:429 server_synchronize.php:872 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:431 server_synchronize.php:874 +#: server_synchronize.php:430 server_synchronize.php:873 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:432 server_synchronize.php:875 +#: server_synchronize.php:431 server_synchronize.php:874 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:433 server_synchronize.php:876 +#: server_synchronize.php:432 server_synchronize.php:875 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:434 server_synchronize.php:877 +#: server_synchronize.php:433 server_synchronize.php:876 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:435 server_synchronize.php:878 +#: server_synchronize.php:434 server_synchronize.php:877 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:445 server_synchronize.php:889 +#: server_synchronize.php:444 server_synchronize.php:888 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:448 server_synchronize.php:893 +#: server_synchronize.php:447 server_synchronize.php:892 msgid "Apply Selected Changes" msgstr "" -#: server_synchronize.php:450 server_synchronize.php:895 +#: server_synchronize.php:449 server_synchronize.php:894 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:463 +#: server_synchronize.php:462 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:941 +#: server_synchronize.php:940 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:1002 +#: server_synchronize.php:1001 msgid "The following queries have been executed:" msgstr "" -#: server_synchronize.php:1121 +#: server_synchronize.php:1120 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1122 +#: server_synchronize.php:1121 #, fuzzy #| msgid "max. concurrent connections" msgid "Current connection" msgstr "maks. samtidige forbindelser" -#: server_synchronize.php:1151 +#: server_synchronize.php:1150 #, php-format msgid "Configuration: %s" msgstr "" -#: server_synchronize.php:1166 +#: server_synchronize.php:1165 msgid "Socket" msgstr "" -#: server_synchronize.php:1212 +#: server_synchronize.php:1211 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -6628,8 +6681,8 @@ msgstr "" #: setup/lib/messages.inc.php:128 msgid "" "Configure phpMyAdmin database to gain access to additional features, see " -"[a@../Documentation.html#linked-tables]linked-tables infrastructure[/a] in " -"documentation" +"[a@../Documentation.html#linked-tables]phpMyAdmin configuration storage[/a] " +"in documentation" msgstr "" #: setup/lib/messages.inc.php:129 setup/lib/messages.inc.php:290 @@ -7670,116 +7723,116 @@ msgstr "" msgid "ZIP" msgstr "" -#: sql.php:495 tbl_replace.php:385 +#: sql.php:494 tbl_replace.php:384 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: sql.php:512 +#: sql.php:511 msgid "Showing as PHP code" msgstr "Viser som PHP-kode" -#: sql.php:515 tbl_replace.php:359 +#: sql.php:514 tbl_replace.php:358 msgid "Showing SQL query" msgstr "Viser SQL-forespørgsel" -#: sql.php:517 +#: sql.php:516 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Validér SQL" -#: sql.php:638 +#: sql.php:631 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemer med indeksene på tabel `%s`" -#: sql.php:670 +#: sql.php:663 msgid "Label" msgstr "Mærke" -#: tbl_addfield.php:188 tbl_alter.php:102 tbl_indexes.php:97 +#: tbl_addfield.php:185 tbl_alter.php:100 tbl_indexes.php:97 #, php-format msgid "Table %1$s has been altered successfully" msgstr "" -#: tbl_change.php:250 tbl_select.php:26 tbl_select.php:27 tbl_select.php:30 -#: tbl_select.php:33 +#: tbl_change.php:245 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_select.php:32 msgid "Browse foreign values" msgstr "Bladre i fremmedværdier" -#: tbl_change.php:280 tbl_change.php:318 +#: tbl_change.php:275 tbl_change.php:313 msgid "Function" msgstr "Funktion" -#: tbl_change.php:300 tbl_indexes.php:199 tbl_indexes.php:224 +#: tbl_change.php:295 tbl_indexes.php:198 tbl_indexes.php:223 msgid "Ignore" msgstr "Ignorer" -#: tbl_change.php:725 +#: tbl_change.php:720 #, fuzzy #| msgid " Because of its length,
                            this field might not be editable " msgid " Because of its length,
                            this column might not be editable " msgstr " På grund af feltets længde,
                            kan det muligvis ikke ændres " -#: tbl_change.php:884 +#: tbl_change.php:835 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:890 +#: tbl_change.php:841 msgid "Binary - do not edit" msgstr " Binært - må ikke ændres " -#: tbl_change.php:983 +#: tbl_change.php:889 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:1128 +#: tbl_change.php:1026 msgid "Insert as new row" msgstr "Indsæt som ny række" -#: tbl_change.php:1129 +#: tbl_change.php:1027 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:1130 +#: tbl_change.php:1028 msgid "Show insert query" msgstr "" -#: tbl_change.php:1145 +#: tbl_change.php:1043 msgid "Go back to previous page" msgstr "Tilbage til foregående side" -#: tbl_change.php:1146 +#: tbl_change.php:1044 msgid "Insert another new row" msgstr "Indsæt endnu en ny række" -#: tbl_change.php:1150 +#: tbl_change.php:1048 msgid "Go back to this page" msgstr "Gå tilbage til denne side" -#: tbl_change.php:1158 +#: tbl_change.php:1056 msgid "Edit next row" msgstr "Redigér næste række" -#: tbl_change.php:1169 +#: tbl_change.php:1067 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Brug TAB-tasten for at flytte dig fra værdi til værdi, eller CTRL" "+piletasterne til at flytte frit omkring" -#: tbl_change.php:1207 +#: tbl_change.php:1105 #, php-format msgid "Restart insertion with %s rows" msgstr "" -#: tbl_create.php:57 +#: tbl_create.php:55 #, php-format msgid "Table %s already exists!" msgstr "Table %s already exists!" -#: tbl_create.php:244 +#: tbl_create.php:241 #, php-format msgid "Table %1$s has been created." msgstr "" @@ -7800,201 +7853,201 @@ msgstr "Kan ikke omdøbe indeks til PRIMARY!" msgid "No index parts defined!" msgstr "Ingen dele af indeks er defineret!" -#: tbl_indexes.php:159 +#: tbl_indexes.php:158 msgid "Create a new index" msgstr "Lav et nyt indeks" -#: tbl_indexes.php:161 +#: tbl_indexes.php:160 msgid "Modify an index" msgstr "Ændring af et indeks" -#: tbl_indexes.php:167 +#: tbl_indexes.php:166 msgid "Index name:" msgstr "Indeksnavn :" -#: tbl_indexes.php:173 +#: tbl_indexes.php:172 msgid "Index type:" msgstr "Indekstype :" -#: tbl_indexes.php:183 +#: tbl_indexes.php:182 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" "(\"PRIMARY\" skal være navnet på og kun på en primær nøgle!)" -#: tbl_indexes.php:250 +#: tbl_indexes.php:249 #, php-format msgid "Add to index  %s column(s)" msgstr "Føj til indeks  %s kolonne(r)" -#: tbl_indexes.php:255 tbl_structure.php:588 tbl_structure.php:599 +#: tbl_indexes.php:254 tbl_structure.php:586 tbl_structure.php:597 msgid "Column count has to be larger than zero." msgstr "Kolonneantal skal være større end nul." -#: tbl_move_copy.php:45 +#: tbl_move_copy.php:44 msgid "Can't move table to same one!" msgstr "Kan ikke flytte tabellen til den samme!" -#: tbl_move_copy.php:47 +#: tbl_move_copy.php:46 msgid "Can't copy table to same one!" msgstr "Kan ikke kopiere tabellen til den samme!" -#: tbl_move_copy.php:55 +#: tbl_move_copy.php:54 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabel %s er flyttet til %s." -#: tbl_move_copy.php:57 +#: tbl_move_copy.php:56 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabellen %s er nu kopieret til: %s." -#: tbl_move_copy.php:81 +#: tbl_move_copy.php:80 msgid "The table name is empty!" msgstr "Intet tabelnavn!" -#: tbl_operations.php:248 +#: tbl_operations.php:246 msgid "Alter table order by" msgstr "Arrangér tabelrækkefølge efter" -#: tbl_operations.php:257 +#: tbl_operations.php:255 msgid "(singly)" msgstr "(enkeltvis)" -#: tbl_operations.php:277 +#: tbl_operations.php:275 msgid "Move table to (database.table):" msgstr "Flyt tabel til (database.tabel):" -#: tbl_operations.php:335 +#: tbl_operations.php:333 msgid "Table options" msgstr "Tabel-indstillinger" -#: tbl_operations.php:339 +#: tbl_operations.php:337 msgid "Rename table to" msgstr "Omdøb tabel til" -#: tbl_operations.php:510 +#: tbl_operations.php:508 msgid "Copy table to (database.table):" msgstr "Kopier tabel til (database.tabel):" -#: tbl_operations.php:557 +#: tbl_operations.php:555 msgid "Switch to copied table" msgstr "Skift til den kopierede tabel" -#: tbl_operations.php:569 +#: tbl_operations.php:567 msgid "Table maintenance" msgstr "Tabelvedligeholdelse" -#: tbl_operations.php:590 +#: tbl_operations.php:588 msgid "Defragment table" msgstr "Defragmentér tabel" -#: tbl_operations.php:629 +#: tbl_operations.php:627 #, php-format msgid "Table %s has been flushed" msgstr "Tabel %s er blevet flushet" -#: tbl_operations.php:635 +#: tbl_operations.php:633 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Flush tabellen (\"FLUSH\")" -#: tbl_operations.php:650 +#: tbl_operations.php:648 msgid "Partition maintenance" msgstr "" -#: tbl_operations.php:658 +#: tbl_operations.php:656 #, php-format msgid "Partition %s" msgstr "" -#: tbl_operations.php:661 +#: tbl_operations.php:659 msgid "Analyze" msgstr "" -#: tbl_operations.php:662 +#: tbl_operations.php:660 msgid "Check" msgstr "" -#: tbl_operations.php:663 +#: tbl_operations.php:661 msgid "Optimize" msgstr "" -#: tbl_operations.php:664 +#: tbl_operations.php:662 msgid "Rebuild" msgstr "" -#: tbl_operations.php:665 +#: tbl_operations.php:663 msgid "Repair" msgstr "" -#: tbl_operations.php:677 +#: tbl_operations.php:675 msgid "Remove partitioning" msgstr "" -#: tbl_operations.php:703 +#: tbl_operations.php:701 msgid "Check referential integrity:" msgstr "Check reference-integriteten" -#: tbl_printview.php:73 +#: tbl_printview.php:72 msgid "Show tables" msgstr "Vis tabeller" -#: tbl_printview.php:308 tbl_structure.php:655 +#: tbl_printview.php:307 tbl_structure.php:653 msgid "Space usage" msgstr "Pladsforbrug" -#: tbl_printview.php:312 tbl_structure.php:659 +#: tbl_printview.php:311 tbl_structure.php:657 msgid "Usage" msgstr "Benyttelse" -#: tbl_printview.php:339 tbl_structure.php:686 +#: tbl_printview.php:338 tbl_structure.php:684 msgid "Effective" msgstr "Effektiv" -#: tbl_printview.php:364 tbl_structure.php:724 +#: tbl_printview.php:363 tbl_structure.php:722 msgid "Row Statistics" msgstr "Række-statistik" -#: tbl_printview.php:367 tbl_structure.php:727 +#: tbl_printview.php:366 tbl_structure.php:725 msgid "Statements" msgstr "Erklæringer" -#: tbl_printview.php:378 tbl_structure.php:739 +#: tbl_printview.php:377 tbl_structure.php:737 msgid "static" msgstr "" -#: tbl_printview.php:380 tbl_structure.php:741 +#: tbl_printview.php:379 tbl_structure.php:739 msgid "dynamic" msgstr "dynamisk" -#: tbl_printview.php:402 tbl_structure.php:784 +#: tbl_printview.php:401 tbl_structure.php:782 msgid "Row length" msgstr "Rækkelængde" -#: tbl_printview.php:412 tbl_structure.php:792 +#: tbl_printview.php:411 tbl_structure.php:790 msgid " Row size " msgstr " Rækkestørrelse " -#: tbl_relation.php:278 +#: tbl_relation.php:276 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" -#: tbl_relation.php:404 +#: tbl_relation.php:402 #, fuzzy #| msgid "Internal relations" msgid "Internal relation" msgstr "Interne relationer" -#: tbl_relation.php:406 +#: tbl_relation.php:404 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: tbl_relation.php:412 +#: tbl_relation.php:410 msgid "Foreign key constraint" msgstr "" @@ -8002,229 +8055,229 @@ msgstr "" msgid "No rows selected" msgstr "Ingen rækker valgt" -#: tbl_select.php:130 +#: tbl_select.php:129 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Kør en forespørgsel på felter (jokertegn: \"%\")" -#: tbl_select.php:136 +#: tbl_select.php:135 msgid "Operator" msgstr "Operatør" -#: tbl_select.php:267 +#: tbl_select.php:266 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "Vælg mindst eet felt:" -#: tbl_select.php:285 +#: tbl_select.php:284 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Tilføj søgekriterier (kroppen af \"WHERE\" sætningen):" -#: tbl_select.php:292 +#: tbl_select.php:291 msgid "Number of rows per page" msgstr "poster pr. side" -#: tbl_select.php:298 +#: tbl_select.php:297 msgid "Display order:" msgstr "Rækkefølge af visning:" -#: tbl_structure.php:160 +#: tbl_structure.php:159 msgid "Browse distinct values" msgstr "Gennemse bestemte værdier" -#: tbl_structure.php:360 +#: tbl_structure.php:358 #, fuzzy #| msgid "None" msgctxt "None for default" msgid "None" msgstr "Ingen" -#: tbl_structure.php:373 +#: tbl_structure.php:371 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Column %s has been dropped" msgstr "Tabel %s er slettet" -#: tbl_structure.php:384 +#: tbl_structure.php:382 #, php-format msgid "A primary key has been added on %s" msgstr "En primær nøgle er blevet tilføjet til %s" -#: tbl_structure.php:399 tbl_structure.php:413 tbl_structure.php:427 +#: tbl_structure.php:397 tbl_structure.php:411 tbl_structure.php:425 #, php-format msgid "An index has been added on %s" msgstr "Der er tilføjet et indeks til %s" -#: tbl_structure.php:505 tbl_structure.php:507 +#: tbl_structure.php:503 tbl_structure.php:505 msgid "Relation view" msgstr "Se Relationer" -#: tbl_structure.php:514 tbl_structure.php:516 +#: tbl_structure.php:512 tbl_structure.php:514 msgid "Propose table structure" msgstr "Foreslå tabelstruktur" -#: tbl_structure.php:539 +#: tbl_structure.php:537 #, fuzzy #| msgid "Add %s field(s)" msgid "Add column" msgstr "Tilføj %s felt(er)" -#: tbl_structure.php:553 +#: tbl_structure.php:551 msgid "At End of Table" msgstr "I slutningen af tabel" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At Beginning of Table" msgstr "I begyndelsen af tabel" -#: tbl_structure.php:555 +#: tbl_structure.php:553 #, php-format msgid "After %s" msgstr "Efter %s" -#: tbl_structure.php:593 +#: tbl_structure.php:591 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "Dan et indeks på %s kolonner" -#: tbl_structure.php:755 +#: tbl_structure.php:753 msgid "partitioned" msgstr "" -#: tbl_tracking.php:113 +#: tbl_tracking.php:109 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:186 +#: tbl_tracking.php:182 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "" -#: tbl_tracking.php:194 +#: tbl_tracking.php:190 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "" -#: tbl_tracking.php:202 +#: tbl_tracking.php:198 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "" -#: tbl_tracking.php:212 +#: tbl_tracking.php:208 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:219 +#: tbl_tracking.php:215 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:220 +#: tbl_tracking.php:216 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:229 +#: tbl_tracking.php:225 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:250 tbl_tracking.php:378 +#: tbl_tracking.php:245 tbl_tracking.php:373 msgid "Close" msgstr "" -#: tbl_tracking.php:261 +#: tbl_tracking.php:256 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:380 +#: tbl_tracking.php:375 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:396 tbl_tracking.php:503 +#: tbl_tracking.php:391 tbl_tracking.php:498 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "" -#: tbl_tracking.php:409 tbl_tracking.php:460 +#: tbl_tracking.php:404 tbl_tracking.php:455 msgid "Date" msgstr "" -#: tbl_tracking.php:410 tbl_tracking.php:461 +#: tbl_tracking.php:405 tbl_tracking.php:456 msgid "Username" msgstr "" -#: tbl_tracking.php:411 +#: tbl_tracking.php:406 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:462 +#: tbl_tracking.php:457 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:506 +#: tbl_tracking.php:501 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:507 +#: tbl_tracking.php:502 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:520 +#: tbl_tracking.php:515 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:560 +#: tbl_tracking.php:555 msgid "Show versions" msgstr "" -#: tbl_tracking.php:592 +#: tbl_tracking.php:587 msgid "Version" msgstr "" -#: tbl_tracking.php:639 +#: tbl_tracking.php:634 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "" -#: tbl_tracking.php:641 +#: tbl_tracking.php:636 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:652 +#: tbl_tracking.php:647 #, php-format msgid "Activate tracking for %s.%s" msgstr "" -#: tbl_tracking.php:654 +#: tbl_tracking.php:649 msgid "Activate now" msgstr "" -#: tbl_tracking.php:667 +#: tbl_tracking.php:662 #, php-format msgid "Create version %s of %s.%s" msgstr "" -#: tbl_tracking.php:671 +#: tbl_tracking.php:666 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:679 +#: tbl_tracking.php:674 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:687 +#: tbl_tracking.php:682 msgid "Create version" msgstr "" @@ -8274,10 +8327,28 @@ msgstr "Profilen er blevet opdateret." msgid "VIEW name" msgstr "VIEW navn" -#: view_operations.php:92 +#: view_operations.php:91 msgid "Rename view to" msgstr "" +#, fuzzy +#~| msgid "Enabled" +#~ msgctxt "BLOB repository" +#~ msgid "Enabled" +#~ msgstr "Slået til" + +#, fuzzy +#~| msgid "Repair table" +#~ msgctxt "BLOB repository" +#~ msgid "Repair" +#~ msgstr "Reparer tabel" + +#, fuzzy +#~| msgid "Disabled" +#~ msgctxt "BLOB repository" +#~ msgid "Disabled" +#~ msgstr "Slået fra" + #~ msgid "" #~ "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " #~ "extension. Please check your PHP configuration." diff --git a/po/de.po b/po/de.po index 4070a25c0..3cd742234 100644 --- a/po/de.po +++ b/po/de.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-21 13:53+0200\n" +"POT-Creation-Date: 2010-07-26 17:18+0200\n" "PO-Revision-Date: 2010-07-21 14:45+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: german \n" @@ -14,19 +14,19 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.1\n" -#: browse_foreigners.php:37 browse_foreigners.php:58 -#: libraries/display_tbl.lib.php:416 server_privileges.php:1506 +#: browse_foreigners.php:36 browse_foreigners.php:57 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1510 msgid "Show all" msgstr "Alles anzeigen" -#: browse_foreigners.php:81 libraries/common.lib.php:2313 -#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:393 -#: libraries/export/pdf.php:146 pdf_schema.php:282 pdf_schema.php:1122 -#: pdf_schema.php:1138 +#: browse_foreigners.php:80 libraries/common.lib.php:2318 +#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:392 +#: libraries/export/pdf.php:146 pdf_schema.php:281 pdf_schema.php:1121 +#: pdf_schema.php:1137 msgid "Page number:" msgstr "Seite:" -#: browse_foreigners.php:131 +#: browse_foreigners.php:130 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -36,139 +36,153 @@ msgstr "" "wurde das Ursprungsfenster geschlossen oder der Browser verhindert den " "Zugriff aufgrund von Ihren Sicherheitseinstellungen." -#: browse_foreigners.php:149 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2829 -#: libraries/common.lib.php:2836 libraries/db_links.inc.php:74 -#: libraries/tbl_links.inc.php:62 +#: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 +#: db_structure.php:89 db_structure.php:91 db_structure.php:102 +#: db_structure.php:104 libraries/common.lib.php:2834 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Suche" -#: browse_foreigners.php:152 db_operations.php:384 db_operations.php:428 -#: db_operations.php:498 db_operations.php:608 db_search.php:344 -#: db_structure.php:566 js/messages.php:48 libraries/Config.class.php:1043 -#: libraries/Theme_Manager.class.php:310 +#: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 +#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 +#: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 -#: libraries/common.lib.php:1340 libraries/common.lib.php:2289 +#: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 -#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:275 -#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:531 -#: libraries/display_tbl.lib.php:613 libraries/replication_gui.lib.php:75 +#: libraries/display_export.lib.php:269 libraries/display_import.lib.php:275 +#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 +#: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 #: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:781 -#: main.php:127 navigation.php:231 pdf_pages.php:291 pdf_pages.php:327 -#: pdf_pages.php:529 pmd_pdf.php:115 server_binlog.php:128 -#: server_privileges.php:664 server_privileges.php:1616 -#: server_privileges.php:1963 server_privileges.php:2010 -#: server_privileges.php:2049 server_replication.php:234 -#: server_replication.php:317 server_replication.php:340 -#: server_synchronize.php:1208 tbl_change.php:328 tbl_change.php:1172 -#: tbl_change.php:1209 tbl_indexes.php:253 tbl_operations.php:264 -#: tbl_operations.php:301 tbl_operations.php:498 tbl_operations.php:560 -#: tbl_operations.php:680 tbl_select.php:324 tbl_structure.php:561 -#: tbl_structure.php:596 tbl_tracking.php:394 tbl_tracking.php:511 -#: view_create.php:181 view_operations.php:100 +#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 +#: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 +#: server_privileges.php:663 server_privileges.php:1620 +#: server_privileges.php:1967 server_privileges.php:2014 +#: server_privileges.php:2053 server_replication.php:233 +#: server_replication.php:316 server_replication.php:339 +#: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 +#: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 +#: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 +#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "OK" -#: browse_foreigners.php:167 browse_foreigners.php:171 -#: libraries/Index.class.php:441 tbl_tracking.php:319 +#: browse_foreigners.php:166 browse_foreigners.php:170 +#: libraries/Index.class.php:441 tbl_tracking.php:314 msgid "Keyname" msgstr "Name" -#: browse_foreigners.php:168 browse_foreigners.php:170 -#: server_collations.php:54 server_collations.php:66 server_engines.php:58 +#: browse_foreigners.php:167 browse_foreigners.php:169 +#: server_collations.php:54 server_collations.php:66 server_engines.php:57 #: server_status.php:738 msgid "Description" msgstr "Beschreibung" -#: browse_foreigners.php:246 browse_foreigners.php:255 -#: browse_foreigners.php:267 browse_foreigners.php:275 +#: browse_foreigners.php:245 browse_foreigners.php:254 +#: browse_foreigners.php:266 browse_foreigners.php:274 msgid "Use this value" msgstr "Diesen Wert verwenden" -#: db_create.php:45 +#: bs_disp_as_mime_type.php:29 bs_play_media.php:35 +msgid "No blob streaming server configured!" +msgstr "" + +#: bs_disp_as_mime_type.php:35 +#, fuzzy +#| msgid "Failed to write file to disk." +msgid "Failed to fetch headers" +msgstr "Datei konnte gespeichert werden." + +#: bs_disp_as_mime_type.php:41 +msgid "Failed to open remote URL" +msgstr "" + +#: db_create.php:44 #, php-format msgid "Database %1$s has been created." msgstr "Die Datenbank %1$s wurde erzeugt." -#: db_datadict.php:48 db_operations.php:377 +#: db_datadict.php:48 db_operations.php:313 msgid "Database comment: " msgstr "Datenbankkommentar: " -#: db_datadict.php:164 libraries/tbl_properties.inc.php:723 -#: pdf_schema.php:1235 tbl_operations.php:346 tbl_printview.php:128 +#: db_datadict.php:164 libraries/tbl_properties.inc.php:722 +#: pdf_schema.php:1234 tbl_operations.php:344 tbl_printview.php:127 msgid "Table comments" msgstr "Tabellen-Kommentar" -#: db_datadict.php:173 db_qbe.php:173 libraries/Index.class.php:445 +#: db_datadict.php:173 db_qbe.php:170 libraries/Index.class.php:445 #: libraries/export/htmlword.php:243 libraries/export/latex.php:364 #: libraries/export/odt.php:293 libraries/export/texytext.php:233 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:274 -#: pdf_schema.php:1261 pdf_schema.php:1282 tbl_change.php:306 -#: tbl_indexes.php:188 tbl_printview.php:140 tbl_relation.php:401 -#: tbl_select.php:133 tbl_structure.php:176 tbl_tracking.php:272 -#: tbl_tracking.php:323 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 +#: pdf_schema.php:1260 pdf_schema.php:1281 tbl_change.php:301 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:132 tbl_structure.php:175 tbl_tracking.php:267 +#: tbl_tracking.php:318 #, fuzzy #| msgid "Column names" msgid "Column" msgstr "Spaltennamen" -#: db_datadict.php:174 db_printview.php:105 libraries/Index.class.php:442 +#: db_datadict.php:174 db_printview.php:104 libraries/Index.class.php:442 #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 #: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:244 #: libraries/export/latex.php:364 libraries/export/odt.php:296 #: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:99 -#: pdf_schema.php:1262 pdf_schema.php:1283 server_privileges.php:2062 -#: tbl_change.php:285 tbl_change.php:312 tbl_printview.php:141 -#: tbl_printview.php:311 tbl_select.php:134 tbl_structure.php:177 -#: tbl_structure.php:658 tbl_tracking.php:273 tbl_tracking.php:320 +#: pdf_schema.php:1261 pdf_schema.php:1282 server_privileges.php:2066 +#: tbl_change.php:280 tbl_change.php:307 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:133 tbl_structure.php:176 +#: tbl_structure.php:656 tbl_tracking.php:268 tbl_tracking.php:315 msgid "Type" msgstr "Typ" #: db_datadict.php:176 libraries/Index.class.php:448 #: libraries/export/htmlword.php:245 libraries/export/latex.php:364 #: libraries/export/odt.php:299 libraries/export/texytext.php:235 -#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1264 -#: pdf_schema.php:1285 tbl_change.php:321 tbl_printview.php:143 -#: tbl_structure.php:180 tbl_tracking.php:275 tbl_tracking.php:326 +#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1263 +#: pdf_schema.php:1284 tbl_change.php:316 tbl_printview.php:142 +#: tbl_structure.php:179 tbl_tracking.php:270 tbl_tracking.php:321 msgid "Null" msgstr "Null" -#: db_datadict.php:177 db_structure.php:500 libraries/export/htmlword.php:246 +#: db_datadict.php:177 db_structure.php:486 libraries/export/htmlword.php:246 #: libraries/export/latex.php:364 libraries/export/odt.php:302 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:105 -#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 -#: tbl_structure.php:181 tbl_tracking.php:276 +#: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:143 +#: tbl_structure.php:180 tbl_tracking.php:271 msgid "Default" msgstr "Standard" #: db_datadict.php:181 libraries/export/htmlword.php:248 #: libraries/export/latex.php:366 libraries/export/odt.php:306 -#: libraries/export/texytext.php:238 pdf_schema.php:1267 pdf_schema.php:1288 -#: tbl_printview.php:148 +#: libraries/export/texytext.php:238 pdf_schema.php:1266 pdf_schema.php:1287 +#: tbl_printview.php:147 msgid "Links to" msgstr "Verweise" -#: db_datadict.php:183 db_printview.php:111 libraries/export/htmlword.php:251 +#: db_datadict.php:183 db_printview.php:110 libraries/export/htmlword.php:251 #: libraries/export/latex.php:49 libraries/export/latex.php:369 #: libraries/export/odt.php:37 libraries/export/odt.php:311 #: libraries/export/sql.php:29 libraries/export/texytext.php:241 -#: libraries/tbl_properties.inc.php:129 pdf_schema.php:1278 -#: pdf_schema.php:1289 tbl_printview.php:150 +#: libraries/tbl_properties.inc.php:128 pdf_schema.php:1277 +#: pdf_schema.php:1288 tbl_printview.php:149 msgid "Comments" msgstr "Kommentare" #: db_datadict.php:266 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/export/htmlword.php:321 #: libraries/export/latex.php:434 libraries/export/odt.php:367 -#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:262 -#: pdf_schema.php:1343 server_privileges.php:1560 server_privileges.php:1571 -#: server_privileges.php:1881 server_privileges.php:1886 -#: server_privileges.php:2179 sql.php:131 sql.php:193 tbl_printview.php:227 -#: tbl_structure.php:349 tbl_tracking.php:336 tbl_tracking.php:341 +#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:261 +#: pdf_schema.php:1342 server_privileges.php:1564 server_privileges.php:1575 +#: server_privileges.php:1885 server_privileges.php:1890 +#: server_privileges.php:2183 sql.php:130 sql.php:192 tbl_printview.php:226 +#: tbl_structure.php:347 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "Nein" @@ -179,17 +193,17 @@ msgstr "Nein" #: libraries/mult_submits.inc.php:49 libraries/mult_submits.inc.php:54 #: libraries/mult_submits.inc.php:59 libraries/mult_submits.inc.php:91 #: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:105 -#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:261 -#: libraries/mult_submits.inc.php:272 pdf_schema.php:1343 -#: server_databases.php:63 server_privileges.php:1557 -#: server_privileges.php:1571 server_privileges.php:1881 -#: server_privileges.php:1884 server_privileges.php:2179 sql.php:192 -#: tbl_printview.php:227 tbl_structure.php:39 tbl_structure.php:349 -#: tbl_tracking.php:334 tbl_tracking.php:339 +#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:260 +#: libraries/mult_submits.inc.php:271 pdf_schema.php:1342 +#: server_databases.php:61 server_privileges.php:1561 +#: server_privileges.php:1575 server_privileges.php:1885 +#: server_privileges.php:1888 server_privileges.php:2183 sql.php:191 +#: tbl_printview.php:226 tbl_structure.php:38 tbl_structure.php:347 +#: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" msgstr "Ja" -#: db_datadict.php:321 db_printview.php:265 tbl_printview.php:496 +#: db_datadict.php:321 db_printview.php:264 tbl_printview.php:495 msgid "Print" msgstr "Drucken" @@ -197,280 +211,246 @@ msgstr "Drucken" msgid "View dump (schema) of database" msgstr "Dump (Schema) der Datenbank anzeigen" -#: db_export.php:32 db_printview.php:95 db_qbe.php:101 db_structure.php:50 -#: db_tracking.php:34 export.php:352 navigation.php:326 +#: db_export.php:32 db_printview.php:94 db_qbe.php:98 db_structure.php:49 +#: db_tracking.php:30 export.php:350 navigation.php:325 msgid "No tables found in database." msgstr "Es wurden keine Tabellen in der Datenbank gefunden." -#: db_export.php:42 db_search.php:326 server_export.php:26 +#: db_export.php:42 db_search.php:326 server_export.php:24 msgid "Select All" msgstr "Alle auswählen" -#: db_export.php:44 db_search.php:329 server_export.php:28 +#: db_export.php:44 db_search.php:329 server_export.php:26 msgid "Unselect All" msgstr "Auswahl entfernen" -#: db_operations.php:37 tbl_create.php:49 +#: db_operations.php:33 tbl_create.php:47 msgid "The database name is empty!" msgstr "Der Datenbankname ist leer!" -#: db_operations.php:235 +#: db_operations.php:231 #, php-format msgid "Database %s has been renamed to %s" msgstr "Datenbank %s wurde umbenannt zu %s" -#: db_operations.php:239 +#: db_operations.php:235 #, php-format msgid "Database %s has been copied to %s" msgstr "Datenbank %s wurde nach %s kopiert" -#: db_operations.php:411 +#: db_operations.php:347 msgid "Rename database to" msgstr "Datenbank umbenennen in" -#: db_operations.php:416 server_processlist.php:56 +#: db_operations.php:352 server_processlist.php:56 msgid "Command" msgstr "Befehl" -#: db_operations.php:428 tbl_change.php:1141 +#: db_operations.php:364 tbl_change.php:1039 msgid "and then" msgstr "und dann" -#: db_operations.php:454 +#: db_operations.php:390 msgid "Copy database to" msgstr "Datenbank kopieren nach" -#: db_operations.php:461 tbl_operations.php:527 tbl_tracking.php:387 +#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Nur Struktur" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:389 +#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Struktur und Daten" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:388 +#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Nur Daten" -#: db_operations.php:471 +#: db_operations.php:407 msgid "CREATE DATABASE before copying" msgstr "Vor dem Kopieren CREATE DATABASE ausführen." -#: db_operations.php:474 libraries/export/sql.php:51 +#: db_operations.php:410 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 -#: libraries/export/sql.php:81 tbl_operations.php:535 +#: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "Füge %s hinzu" -#: db_operations.php:478 libraries/export/sql.php:77 tbl_operations.php:298 -#: tbl_operations.php:537 +#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT-Wert hinzufügen" -#: db_operations.php:482 tbl_operations.php:544 +#: db_operations.php:418 tbl_operations.php:542 msgid "Add constraints" msgstr "Constraints hinzufügen" -#: db_operations.php:495 +#: db_operations.php:431 msgid "Switch to copied database" msgstr "Zu kopierter Datenbank wechseln" -#: db_operations.php:536 -msgid "BLOB Repository" -msgstr "BLOB-Repository" - -#: db_operations.php:539 db_tracking.php:75 libraries/common.lib.php:1357 -#: libraries/server_links.inc.php:48 server_processlist.php:58 -#: tbl_tracking.php:595 test/theme.php:100 -msgid "Status" -msgstr "Status" - -#: db_operations.php:547 -msgctxt "BLOB repository" -msgid "Enabled" -msgstr "Aktiviert" - -#: db_operations.php:551 -msgid "Disable" -msgstr "Deaktivieren" - -#: db_operations.php:561 -msgid "Damaged" -msgstr "Beschädigt" - -#: db_operations.php:565 -msgctxt "BLOB repository" -msgid "Repair" -msgstr "Reparieren" - -#: db_operations.php:573 -msgctxt "BLOB repository" -msgid "Disabled" -msgstr "Deaktiviert" - -#: db_operations.php:577 -msgid "Enable" -msgstr "Aktivieren" - -#: db_operations.php:601 libraries/Index.class.php:447 +#: db_operations.php:451 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 -#: server_collations.php:53 server_collations.php:65 server_databases.php:110 -#: tbl_operations.php:362 tbl_select.php:135 tbl_structure.php:178 -#: tbl_structure.php:766 tbl_tracking.php:274 tbl_tracking.php:325 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 +#: server_collations.php:53 server_collations.php:65 server_databases.php:108 +#: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:177 +#: tbl_structure.php:764 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "Kollation" -#: db_operations.php:614 main.php:315 pdf_schema.php:33 -#, php-format +#: db_operations.php:464 pdf_schema.php:32 +#, fuzzy, php-format +#| msgid "" +#| "The additional features for working with linked tables have been " +#| "deactivated. To find out why click %shere%s." msgid "" -"The additional features for working with linked tables have been " -"deactivated. To find out why click %shere%s." +"The phpMyAdmin configuration storage has been deactivated. To find out why " +"click %shere%s." msgstr "" "Die zusätzlichen Funktionen für verknüpfte Tabellen wurden automatisch " "deaktiviert. Klicken Sie %shier%s um herauszufinden warum." -#: db_operations.php:647 +#: db_operations.php:497 msgid "Edit PDF Pages" msgstr "PDF-Seiten bearbeiten" -#: db_printview.php:103 db_tracking.php:71 db_tracking.php:156 +#: db_printview.php:102 db_tracking.php:67 db_tracking.php:152 #: libraries/db_structure.lib.php:37 libraries/export/xml.php:327 -#: libraries/header.inc.php:125 pdf_pages.php:423 server_privileges.php:1657 -#: server_privileges.php:1713 server_privileges.php:1977 -#: server_synchronize.php:422 server_synchronize.php:865 tbl_tracking.php:591 +#: libraries/header.inc.php:125 pdf_pages.php:422 server_privileges.php:1661 +#: server_privileges.php:1717 server_privileges.php:1981 +#: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "Tabelle" -#: db_printview.php:104 libraries/db_structure.lib.php:47 +#: db_printview.php:103 libraries/db_structure.lib.php:47 #: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 -#: navigation.php:629 navigation.php:651 server_databases.php:121 -#: tbl_printview.php:392 tbl_structure.php:364 tbl_structure.php:776 +#: navigation.php:628 navigation.php:650 server_databases.php:119 +#: tbl_printview.php:391 tbl_structure.php:362 tbl_structure.php:774 msgid "Rows" msgstr "Zeilen" -#: db_printview.php:108 libraries/db_structure.lib.php:58 tbl_indexes.php:189 +#: db_printview.php:107 libraries/db_structure.lib.php:58 tbl_indexes.php:188 msgid "Size" msgstr "Größe" -#: db_printview.php:161 db_structure.php:456 libraries/export/sql.php:556 +#: db_printview.php:160 db_structure.php:442 libraries/export/sql.php:556 #: libraries/export/sql.php:896 msgid "in use" msgstr "in Benutzung" -#: db_printview.php:186 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:511 pdf_schema.php:1240 tbl_printview.php:432 -#: tbl_structure.php:808 +#: db_printview.php:185 libraries/db_info.inc.php:86 +#: libraries/export/sql.php:511 pdf_schema.php:1239 tbl_printview.php:431 +#: tbl_structure.php:806 msgid "Creation" msgstr "Erzeugt am" -#: db_printview.php:195 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:516 pdf_schema.php:1245 tbl_printview.php:442 -#: tbl_structure.php:816 +#: db_printview.php:194 libraries/db_info.inc.php:91 +#: libraries/export/sql.php:516 pdf_schema.php:1244 tbl_printview.php:441 +#: tbl_structure.php:814 msgid "Last update" msgstr "Aktualisiert am" -#: db_printview.php:204 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:521 pdf_schema.php:1250 tbl_printview.php:452 -#: tbl_structure.php:824 +#: db_printview.php:203 libraries/db_info.inc.php:96 +#: libraries/export/sql.php:521 pdf_schema.php:1249 tbl_printview.php:451 +#: tbl_structure.php:822 msgid "Last check" msgstr "Letzter Check am" -#: db_printview.php:221 db_structure.php:479 +#: db_printview.php:220 db_structure.php:465 #, php-format msgid "%s table" msgid_plural "%s tables" msgstr[0] "%s Tabelle" msgstr[1] "%s Tabellen" -#: db_qbe.php:28 import.php:453 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1980 libraries/sql_query_form.lib.php:138 -#: tbl_operations.php:212 tbl_relation.php:291 tbl_row_action.php:130 -#: view_operations.php:61 +#: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 +#: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "Ihr SQL-Befehl wurde erfolgreich ausgeführt." -#: db_qbe.php:41 +#: db_qbe.php:38 msgid "You have to choose at least one column to display" msgstr "Bitte wählen Sie mindestens eine anzuzeigende Spalte" -#: db_qbe.php:199 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:865 +#: db_qbe.php:196 libraries/db_structure.lib.php:95 +#: libraries/display_tbl.lib.php:864 msgid "Sort" msgstr "Sortierung" -#: db_qbe.php:208 db_qbe.php:242 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:522 libraries/display_tbl.lib.php:827 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:259 -#: tbl_select.php:311 +#: db_qbe.php:205 db_qbe.php:239 libraries/db_structure.lib.php:102 +#: libraries/display_tbl.lib.php:521 libraries/display_tbl.lib.php:826 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:257 +#: tbl_select.php:310 msgid "Ascending" msgstr "aufsteigend" -#: db_qbe.php:209 db_qbe.php:250 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:527 libraries/display_tbl.lib.php:824 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:260 -#: tbl_select.php:312 +#: db_qbe.php:206 db_qbe.php:247 libraries/db_structure.lib.php:110 +#: libraries/display_tbl.lib.php:526 libraries/display_tbl.lib.php:823 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:258 +#: tbl_select.php:311 msgid "Descending" msgstr "absteigend" -#: db_qbe.php:263 db_tracking.php:77 libraries/display_tbl.lib.php:307 -#: tbl_change.php:275 tbl_tracking.php:596 +#: db_qbe.php:260 db_tracking.php:73 libraries/display_tbl.lib.php:306 +#: tbl_change.php:270 tbl_tracking.php:591 msgid "Show" msgstr "Zeige" -#: db_qbe.php:299 +#: db_qbe.php:296 msgid "Criteria" msgstr "Kriterium" -#: db_qbe.php:352 db_qbe.php:434 db_qbe.php:526 db_qbe.php:557 +#: db_qbe.php:349 db_qbe.php:431 db_qbe.php:523 db_qbe.php:554 msgid "Ins" msgstr "Einf." -#: db_qbe.php:356 db_qbe.php:438 db_qbe.php:523 db_qbe.php:554 +#: db_qbe.php:353 db_qbe.php:435 db_qbe.php:520 db_qbe.php:551 msgid "And" msgstr "und" -#: db_qbe.php:365 db_qbe.php:446 db_qbe.php:528 db_qbe.php:559 +#: db_qbe.php:362 db_qbe.php:443 db_qbe.php:525 db_qbe.php:556 msgid "Del" msgstr "Entf." -#: db_qbe.php:369 db_qbe.php:450 db_qbe.php:521 db_qbe.php:552 -#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:778 -#: server_privileges.php:297 tbl_change.php:1027 tbl_indexes.php:249 -#: tbl_select.php:285 +#: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 +#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:777 +#: server_privileges.php:296 tbl_change.php:925 tbl_indexes.php:248 +#: tbl_select.php:284 msgid "Or" msgstr "oder" -#: db_qbe.php:506 +#: db_qbe.php:503 msgid "Modify" msgstr "Verändern" -#: db_qbe.php:583 +#: db_qbe.php:580 #, fuzzy #| msgid "Add/Delete Criteria Row" msgid "Add/Delete criteria rows" msgstr "Zeilen hinzufügen/entfernen" -#: db_qbe.php:595 +#: db_qbe.php:592 msgid "Add/Delete columns" msgstr "Spalten hinzufügen/entfernen" -#: db_qbe.php:608 db_qbe.php:633 +#: db_qbe.php:605 db_qbe.php:630 msgid "Update Query" msgstr "Aktualisieren" -#: db_qbe.php:616 +#: db_qbe.php:613 msgid "Use Tables" msgstr "Verwendete Tabellen" -#: db_qbe.php:639 +#: db_qbe.php:636 #, php-format msgid "SQL query on database %s:" msgstr "SQL-Befehl in der Datenbank %s:" -#: db_qbe.php:933 libraries/common.lib.php:1222 +#: db_qbe.php:930 libraries/common.lib.php:1215 msgid "Submit Query" msgstr "SQL-Befehl ausführen" @@ -510,17 +490,17 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s Treffer in der Tabelle %s" msgstr[1] "%s Treffer in der Tabelle %s" -#: db_search.php:249 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2831 -#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:49 -#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:466 +#: db_search.php:249 db_structure.php:75 db_structure.php:76 +#: db_structure.php:88 db_structure.php:90 db_structure.php:101 +#: db_structure.php:103 libraries/common.lib.php:2836 +#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 +#: tbl_structure.php:35 tbl_structure.php:47 tbl_structure.php:464 msgid "Browse" msgstr "Anzeigen" -#: db_search.php:254 libraries/display_tbl.lib.php:1164 -#: libraries/display_tbl.lib.php:2055 libraries/sql_query_form.lib.php:453 -#: pdf_pages.php:285 pdf_pages.php:424 pdf_pages.php:460 pdf_pages.php:488 +#: db_search.php:254 libraries/display_tbl.lib.php:1163 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 msgid "Delete" @@ -560,66 +540,66 @@ msgstr "In der / den Tabelle(n):" msgid "Inside column:" msgstr "Im Feld:" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2830 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:75 +#: db_structure.php:79 db_structure.php:80 db_structure.php:92 +#: db_structure.php:93 db_structure.php:105 db_structure.php:106 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 +#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Einfügen" -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2827 libraries/common.lib.php:2834 -#: libraries/db_links.inc.php:62 libraries/export/htmlword.php:22 +#: db_structure.php:81 db_structure.php:94 db_structure.php:107 +#: libraries/common.lib.php:2832 libraries/common.lib.php:2839 +#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 -#: libraries/tbl_links.inc.php:55 pmd_general.php:133 -#: server_privileges.php:593 server_replication.php:314 tbl_tracking.php:268 +#: libraries/tbl_links.inc.php:54 pmd_general.php:133 +#: server_privileges.php:592 server_replication.php:313 tbl_tracking.php:263 msgid "Structure" msgstr "Struktur" -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:544 db_structure.php:545 db_tracking.php:90 -#: libraries/Index.class.php:482 libraries/common.lib.php:1659 -#: libraries/db_links.inc.php:99 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:126 -#: server_databases.php:351 tbl_structure.php:26 tbl_structure.php:150 -#: tbl_structure.php:151 tbl_structure.php:470 +#: db_structure.php:82 db_structure.php:83 db_structure.php:95 +#: db_structure.php:96 db_structure.php:108 db_structure.php:109 +#: db_structure.php:530 db_structure.php:531 db_tracking.php:86 +#: libraries/Index.class.php:482 libraries/common.lib.php:1663 +#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 +#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 +#: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" msgstr "Löschen" -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:542 db_structure.php:543 libraries/common.lib.php:1658 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:104 +#: db_structure.php:84 db_structure.php:85 db_structure.php:97 +#: db_structure.php:98 db_structure.php:110 db_structure.php:111 +#: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 +#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 msgid "Empty" msgstr "Leeren" -#: db_structure.php:315 libraries/tbl_links.inc.php:99 +#: db_structure.php:301 libraries/tbl_links.inc.php:98 #, php-format msgid "Table %s has been emptied" msgstr "Die Tabelle %s wurde geleert." -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "View %s has been dropped" msgstr "Die Ansicht %s wurde gelöscht" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "Table %s has been dropped" msgstr "Die Tabelle %s wurde gelöscht." -#: db_structure.php:332 +#: db_structure.php:318 msgid "Tracking is active." msgstr "Tracking ist aktiviert." -#: db_structure.php:334 +#: db_structure.php:320 msgid "Tracking is not active." msgstr "Tracking ist nicht aktiviert." -#: db_structure.php:419 libraries/display_tbl.lib.php:1943 +#: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -628,160 +608,166 @@ msgstr "" "Dieser View hat mindestens diese Anzahl von Zeilen. Bitte lesen Sie die " "%sDokumentation%s." -#: db_structure.php:433 db_structure.php:447 libraries/header.inc.php:125 -#: libraries/tbl_info.inc.php:65 tbl_structure.php:184 test/theme.php:73 +#: db_structure.php:419 db_structure.php:433 libraries/header.inc.php:125 +#: libraries/tbl_info.inc.php:60 tbl_structure.php:183 test/theme.php:73 msgid "View" msgstr "Ansicht" -#: db_structure.php:484 libraries/db_structure.lib.php:40 -#: libraries/server_links.inc.php:69 server_replication.php:32 -#: server_replication.php:163 server_status.php:368 +#: db_structure.php:470 libraries/db_structure.lib.php:40 +#: libraries/server_links.inc.php:69 server_replication.php:31 +#: server_replication.php:162 server_status.php:368 msgid "Replication" msgstr "Replikation" -#: db_structure.php:488 +#: db_structure.php:474 msgid "Sum" msgstr "Gesamt" -#: db_structure.php:495 libraries/StorageEngine.class.php:349 +#: db_structure.php:481 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "Neue Tabellen werden standardmäßig im Format %s angelegt." -#: db_structure.php:523 db_structure.php:540 db_structure.php:541 -#: libraries/display_tbl.lib.php:2080 libraries/display_tbl.lib.php:2085 -#: libraries/mult_submits.inc.php:15 server_databases.php:345 -#: server_databases.php:350 server_privileges.php:1588 tbl_structure.php:454 -#: tbl_structure.php:463 +#: db_structure.php:509 db_structure.php:526 db_structure.php:527 +#: libraries/display_tbl.lib.php:2039 libraries/display_tbl.lib.php:2044 +#: libraries/mult_submits.inc.php:15 server_databases.php:343 +#: server_databases.php:348 server_privileges.php:1592 tbl_structure.php:452 +#: tbl_structure.php:461 msgid "With selected:" msgstr "markierte:" -#: db_structure.php:526 libraries/display_tbl.lib.php:2075 -#: server_databases.php:347 server_privileges.php:569 -#: server_privileges.php:1591 tbl_structure.php:457 +#: db_structure.php:512 libraries/display_tbl.lib.php:2034 +#: server_databases.php:345 server_privileges.php:568 +#: server_privileges.php:1595 tbl_structure.php:455 msgid "Check All" msgstr "Alle auswählen" -#: db_structure.php:530 libraries/display_tbl.lib.php:2076 -#: libraries/replication_gui.lib.php:35 server_databases.php:349 -#: server_privileges.php:572 server_privileges.php:1595 tbl_structure.php:461 +#: db_structure.php:516 libraries/display_tbl.lib.php:2035 +#: libraries/replication_gui.lib.php:35 server_databases.php:347 +#: server_privileges.php:571 server_privileges.php:1599 tbl_structure.php:459 msgid "Uncheck All" msgstr "Auswahl entfernen" -#: db_structure.php:535 +#: db_structure.php:521 msgid "Check tables having overhead" msgstr "Tabellen m. Überhang ausw." -#: db_structure.php:546 db_structure.php:547 db_structure.php:598 -#: libraries/display_tbl.lib.php:2179 libraries/mult_submits.inc.php:27 -#: tbl_structure.php:491 tbl_structure.php:493 +#: db_structure.php:532 db_structure.php:533 db_structure.php:584 +#: libraries/display_tbl.lib.php:2138 libraries/mult_submits.inc.php:27 +#: tbl_structure.php:489 tbl_structure.php:491 msgid "Print view" msgstr "Druckansicht" -#: db_structure.php:548 db_structure.php:549 libraries/mult_submits.inc.php:41 -#: tbl_operations.php:580 +#: db_structure.php:534 db_structure.php:535 libraries/mult_submits.inc.php:41 +#: tbl_operations.php:578 msgid "Check table" msgstr "Überprüfe Tabelle" -#: db_structure.php:550 db_structure.php:551 libraries/mult_submits.inc.php:46 -#: tbl_operations.php:620 tbl_structure.php:708 tbl_structure.php:710 +#: db_structure.php:536 db_structure.php:537 libraries/mult_submits.inc.php:46 +#: tbl_operations.php:618 tbl_structure.php:706 tbl_structure.php:708 msgid "Optimize table" msgstr "Optimiere Tabelle" -#: db_structure.php:552 db_structure.php:553 libraries/mult_submits.inc.php:51 -#: tbl_operations.php:610 +#: db_structure.php:538 db_structure.php:539 libraries/mult_submits.inc.php:51 +#: tbl_operations.php:608 msgid "Repair table" msgstr "Repariere Tabelle" -#: db_structure.php:554 db_structure.php:555 libraries/mult_submits.inc.php:56 -#: tbl_operations.php:600 +#: db_structure.php:540 db_structure.php:541 libraries/mult_submits.inc.php:56 +#: tbl_operations.php:598 msgid "Analyze table" msgstr "Analysiere Tabelle" -#: db_structure.php:556 db_structure.php:557 libraries/db_links.inc.php:70 -#: libraries/display_export.lib.php:82 libraries/display_tbl.lib.php:2093 -#: libraries/display_tbl.lib.php:2224 libraries/mult_submits.inc.php:61 -#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:81 -#: pmd_pdf.php:83 pmd_pdf.php:108 server_privileges.php:1372 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 +#: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 +#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 +#: pmd_pdf.php:81 pmd_pdf.php:106 server_privileges.php:1376 #: setup/frames/menu.inc.php:22 tbl_row_action.php:58 msgid "Export" msgstr "Exportieren" -#: db_structure.php:605 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:591 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "Strukturverzeichnis" -#: db_tracking.php:65 +#: db_tracking.php:61 msgid "Tracked tables" msgstr "Verfolgte Tabellen" -#: db_tracking.php:70 libraries/export/htmlword.php:85 +#: db_tracking.php:66 libraries/export/htmlword.php:85 #: libraries/export/latex.php:152 libraries/export/odt.php:112 #: libraries/export/sql.php:339 libraries/export/texytext.php:84 #: libraries/export/xml.php:254 libraries/header.inc.php:105 -#: libraries/header_printview.inc.php:57 server_databases.php:168 -#: server_privileges.php:1652 server_privileges.php:1713 -#: server_privileges.php:1971 server_processlist.php:55 -#: server_synchronize.php:1178 server_synchronize.php:1182 -#: tbl_tracking.php:590 test/theme.php:64 +#: libraries/header_printview.inc.php:57 server_databases.php:166 +#: server_privileges.php:1656 server_privileges.php:1717 +#: server_privileges.php:1975 server_processlist.php:55 +#: server_synchronize.php:1177 server_synchronize.php:1181 +#: tbl_tracking.php:585 test/theme.php:64 msgid "Database" msgstr "Datenbank" -#: db_tracking.php:72 +#: db_tracking.php:68 msgid "Last version" msgstr "Letzte Version" -#: db_tracking.php:73 tbl_tracking.php:593 +#: db_tracking.php:69 tbl_tracking.php:588 msgid "Created" msgstr "Erstellt" -#: db_tracking.php:74 tbl_tracking.php:594 +#: db_tracking.php:70 tbl_tracking.php:589 msgid "Updated" msgstr "Aktualisiert" -#: db_tracking.php:76 libraries/Index.class.php:439 -#: libraries/db_structure.lib.php:44 server_databases.php:202 -#: server_privileges.php:1534 server_privileges.php:1717 -#: server_privileges.php:2065 tbl_structure.php:186 +#: db_tracking.php:71 libraries/common.lib.php:1361 +#: libraries/server_links.inc.php:48 server_processlist.php:58 +#: tbl_tracking.php:590 test/theme.php:100 +msgid "Status" +msgstr "Status" + +#: db_tracking.php:72 libraries/Index.class.php:439 +#: libraries/db_structure.lib.php:44 server_databases.php:200 +#: server_privileges.php:1538 server_privileges.php:1721 +#: server_privileges.php:2069 tbl_structure.php:185 msgid "Action" msgstr "Aktion" -#: db_tracking.php:87 db_tracking.php:119 +#: db_tracking.php:83 db_tracking.php:115 msgid "Delete tracking data for this table" msgstr "Lösche die Verlaufsdaten für diese Tabelle" -#: db_tracking.php:105 tbl_tracking.php:547 tbl_tracking.php:605 -#: tbl_tracking.php:612 +#: db_tracking.php:101 tbl_tracking.php:542 tbl_tracking.php:600 +#: tbl_tracking.php:607 msgid "active" msgstr "aktiv" -#: db_tracking.php:107 tbl_tracking.php:549 tbl_tracking.php:607 -#: tbl_tracking.php:609 +#: db_tracking.php:103 tbl_tracking.php:544 tbl_tracking.php:602 +#: tbl_tracking.php:604 msgid "not active" msgstr "nicht aktiv" -#: db_tracking.php:120 +#: db_tracking.php:116 msgid "Versions" msgstr "Versionen" -#: db_tracking.php:121 tbl_tracking.php:378 tbl_tracking.php:623 +#: db_tracking.php:117 tbl_tracking.php:373 tbl_tracking.php:618 msgid "Tracking report" msgstr "Tracking Report" -#: db_tracking.php:122 tbl_tracking.php:250 tbl_tracking.php:623 +#: db_tracking.php:118 tbl_tracking.php:245 tbl_tracking.php:618 msgid "Structure snapshot" msgstr "Struktur Schnapschuss" -#: db_tracking.php:151 +#: db_tracking.php:147 msgid "Untracked tables" msgstr "Nicht verfolgte Tabellen" -#: db_tracking.php:171 db_tracking.php:173 tbl_structure.php:527 -#: tbl_structure.php:529 +#: db_tracking.php:167 db_tracking.php:169 tbl_structure.php:525 +#: tbl_structure.php:527 msgid "Track table" msgstr "Verfolge Tabelle" -#: db_tracking.php:199 +#: db_tracking.php:195 msgid "Database Log" msgstr "Datenbank-Log" @@ -789,12 +775,12 @@ msgstr "Datenbank-Log" msgid "Selected export type has to be saved in file!" msgstr "Der gewählte Export-Typ kann nur als Datei exportiert werden!" -#: export.php:153 export.php:178 export.php:620 +#: export.php:152 export.php:177 export.php:615 #, php-format msgid "Insufficient space to save the file %s." msgstr "Zu wenig Speicherplatz um die Datei %s zu speichern." -#: export.php:287 +#: export.php:286 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -802,17 +788,17 @@ msgstr "" "Die Datei %s besteht bereits auf dem Server. Bitte ändern Sie den Dateinamen " "oder wählen Sie die Überschreibungs-Option." -#: export.php:291 export.php:295 +#: export.php:290 export.php:294 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Der Webserver hat keine Schreibrechte um die Datei %s zu speichern." -#: export.php:622 +#: export.php:617 #, php-format msgid "Dump has been saved to file %s." msgstr "Dump (Schema) wurde in Datei %s gespeichert." -#: import.php:59 +#: import.php:58 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -821,14 +807,14 @@ msgstr "" "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:840 -#: libraries/File.class.php:950 +#: import.php:277 import.php:330 libraries/File.class.php:566 +#: libraries/File.class.php:676 msgid "File could not be read" msgstr "Die Datei konnte nicht gelesen werden" -#: import.php:286 import.php:295 import.php:314 import.php:323 -#: libraries/File.class.php:1020 libraries/File.class.php:1028 -#: libraries/File.class.php:1044 libraries/File.class.php:1052 +#: import.php:285 import.php:294 import.php:313 import.php:322 +#: libraries/File.class.php:746 libraries/File.class.php:754 +#: libraries/File.class.php:770 libraries/File.class.php:778 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -838,7 +824,7 @@ msgstr "" "Verfahren komprimiert wurde (%s). Entweder ist die Unterstützung für " "selbiges nicht implementiert oder in Ihrer Konfiguration deaktiviert." -#: import.php:336 +#: import.php:335 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -848,32 +834,32 @@ msgstr "" "ausgewählt, oder die Dateigröße hat die maximal erlaubte Größe der PHP " "Konfiguration überschritten. Siehe FAQ 1.16." -#: import.php:371 libraries/display_import.lib.php:23 +#: import.php:370 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "" "Die Import-Plugins konnten nicht geladen werden. Bitte überprüfen Sie Ihre " "phpMyAdmin-Installation." -#: import.php:396 +#: import.php:395 msgid "The bookmark has been deleted." msgstr "SQL-Abfrage wurde gelöscht." -#: import.php:400 +#: import.php:399 msgid "Showing bookmark" msgstr "Bookmark wird angezeigt" -#: import.php:402 sql.php:625 +#: import.php:401 sql.php:618 #, php-format msgid "Bookmark %s created" msgstr "Bookmark %s wurde gespeichert" -#: import.php:408 import.php:414 +#: import.php:407 import.php:413 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" "Der Import wurde erfolgreich abgeschlossen, %d Abfragen wurden ausgeführt." -#: import.php:423 +#: import.php:422 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -881,7 +867,7 @@ msgstr "" "Das Ausführungszeitlimit wurde erreicht. Wenn Sie die Datei erneut " "abschicken, wird der Import fortgesetzt." -#: import.php:425 +#: import.php:424 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -890,19 +876,19 @@ msgstr "" "dass phpMyAdmin nicht in der Lage sein wird, den Import zu beenden, sofern " "nicht die Ausführungszeitbeschränkungen von php gelockert werden." -#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:240 +#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:239 #: user_password.php:110 msgid "Back" msgstr "Zurück" -#: index.php:188 +#: index.php:183 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin arbeitet besser mit einem Frame-fähigen Browser." -#: js/messages.php:25 server_synchronize.php:344 server_synchronize.php:356 -#: server_synchronize.php:372 server_synchronize.php:379 -#: server_synchronize.php:738 server_synchronize.php:766 -#: server_synchronize.php:794 server_synchronize.php:806 +#: js/messages.php:25 server_synchronize.php:343 server_synchronize.php:355 +#: server_synchronize.php:371 server_synchronize.php:378 +#: server_synchronize.php:737 server_synchronize.php:765 +#: server_synchronize.php:793 server_synchronize.php:805 msgid "Click to select" msgstr "Zur Auswahl anklicken" @@ -910,15 +896,15 @@ msgstr "Zur Auswahl anklicken" msgid "Click to unselect" msgstr "Zum Abwählen anklicken" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:88 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:87 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Die Anweisung \"DROP DATABASE\" wurde deaktiviert." -#: js/messages.php:30 libraries/mult_submits.inc.php:257 sql.php:187 +#: js/messages.php:30 libraries/mult_submits.inc.php:256 sql.php:186 msgid "Do you really want to " msgstr "Möchten Sie wirklich diese Abfrage ausführen " -#: js/messages.php:31 libraries/mult_submits.inc.php:257 sql.php:171 +#: js/messages.php:31 libraries/mult_submits.inc.php:256 sql.php:170 msgid "You are about to DESTROY a complete database!" msgstr "Sie sind dabei eine komplette Datenbank zu ZERSTÖREN!" @@ -947,11 +933,11 @@ msgstr "Es wurde kein Host angegeben!" msgid "The user name is empty!" msgstr "Kein Benutzername eingegeben!" -#: js/messages.php:44 server_privileges.php:1228 user_password.php:65 +#: js/messages.php:44 server_privileges.php:1229 user_password.php:65 msgid "The password is empty!" msgstr "Es wurde kein Passwort angegeben!" -#: js/messages.php:45 server_privileges.php:1226 user_password.php:68 +#: js/messages.php:45 server_privileges.php:1227 user_password.php:68 msgid "The passwords aren't the same!" msgstr "Die eingegebenen Passwörter sind nicht identisch!" @@ -959,27 +945,27 @@ msgstr "Die eingegebenen Passwörter sind nicht identisch!" msgid "Cancel" msgstr "Abbrechen" -#: js/messages.php:52 pmd_save_pos.php:53 +#: js/messages.php:52 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "Änderungen gespeichert." -#: js/messages.php:53 pmd_relation_upd.php:48 +#: js/messages.php:53 pmd_relation_upd.php:47 msgid "Relation deleted" msgstr "Verknüpfung gelöscht" -#: js/messages.php:54 pmd_relation_new.php:63 +#: js/messages.php:54 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "FOREIGN KEY Relation hinzugefügt" -#: js/messages.php:55 pmd_relation_new.php:85 +#: js/messages.php:55 pmd_relation_new.php:84 msgid "Internal relation added" msgstr "Interne Verknüpfung hinzugefügt" -#: js/messages.php:56 pmd_relation_new.php:62 pmd_relation_new.php:87 +#: js/messages.php:56 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "Fehler: Verknüpfung nicht hinzugefügt." -#: js/messages.php:57 pmd_relation_new.php:30 +#: js/messages.php:57 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "Fehler: Verknüpfung existiert bereits." @@ -987,13 +973,13 @@ msgstr "Fehler: Verknüpfung existiert bereits." msgid "Error saving coordinates for Designer." msgstr "Fehler beim speichern der Koordinaten für den Designer." -#: js/messages.php:59 libraries/relation.lib.php:94 -#: libraries/relation.lib.php:106 +#: js/messages.php:59 libraries/relation.lib.php:89 +#: libraries/relation.lib.php:101 msgid "General relation features" msgstr "Allgemeine Verknüpfungsfunktionen" -#: js/messages.php:59 libraries/relation.lib.php:88 -#: libraries/relation.lib.php:95 +#: js/messages.php:59 libraries/relation.lib.php:83 +#: libraries/relation.lib.php:90 msgid "Disabled" msgstr "Deaktiviert" @@ -1009,7 +995,7 @@ msgstr "Wähle Fremdschlüssel" msgid "Please select the primary key or a unique key" msgstr "Bitte den PRIMARY KEY oder einen UNIQUE KEY wählen" -#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:547 +#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:545 msgid "Choose column to display" msgstr "Anzuzeigende Spalte auswählen" @@ -1034,10 +1020,10 @@ msgid "Prev" msgstr "Vorherige" #. l10n: Display text for next month link in calendar -#: js/messages.php:81 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:337 -#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:422 -#: tbl_structure.php:800 +#: js/messages.php:81 libraries/common.lib.php:2358 +#: libraries/common.lib.php:2361 libraries/display_tbl.lib.php:336 +#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 +#: tbl_structure.php:798 msgid "Next" msgstr "Nächste" @@ -1095,63 +1081,63 @@ msgid "December" msgstr "Dezember" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1562 +#: js/messages.php:101 libraries/common.lib.php:1566 msgid "Jan" msgstr "Januar" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1564 +#: js/messages.php:103 libraries/common.lib.php:1568 msgid "Feb" msgstr "Februar" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1566 +#: js/messages.php:105 libraries/common.lib.php:1570 msgid "Mar" msgstr "März" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1568 +#: js/messages.php:107 libraries/common.lib.php:1572 msgid "Apr" msgstr "April" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1570 +#: js/messages.php:109 libraries/common.lib.php:1574 msgctxt "Short month name" msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1572 +#: js/messages.php:111 libraries/common.lib.php:1576 msgid "Jun" msgstr "Juni" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1574 +#: js/messages.php:113 libraries/common.lib.php:1578 msgid "Jul" msgstr "Juli" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1576 +#: js/messages.php:115 libraries/common.lib.php:1580 msgid "Aug" msgstr "August" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1578 +#: js/messages.php:117 libraries/common.lib.php:1582 msgid "Sep" msgstr "September" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1580 +#: js/messages.php:119 libraries/common.lib.php:1584 msgid "Oct" msgstr "Oktober" #. l10n: Short month name -#: js/messages.php:121 libraries/common.lib.php:1582 +#: js/messages.php:121 libraries/common.lib.php:1586 msgid "Nov" msgstr "November" #. l10n: Short month name -#: js/messages.php:123 libraries/common.lib.php:1584 +#: js/messages.php:123 libraries/common.lib.php:1588 msgid "Dec" msgstr "Dezember" @@ -1184,37 +1170,37 @@ msgid "Saturday" msgstr "Samstag" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1587 +#: js/messages.php:136 libraries/common.lib.php:1591 msgid "Sun" msgstr "So" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1589 +#: js/messages.php:138 libraries/common.lib.php:1593 msgid "Mon" msgstr "Mo" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1591 +#: js/messages.php:140 libraries/common.lib.php:1595 msgid "Tue" msgstr "Di" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1593 +#: js/messages.php:142 libraries/common.lib.php:1597 msgid "Wed" msgstr "Mi" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1595 +#: js/messages.php:144 libraries/common.lib.php:1599 msgid "Thu" msgstr "Do" #. l10n: Short week day name -#: js/messages.php:146 libraries/common.lib.php:1597 +#: js/messages.php:146 libraries/common.lib.php:1601 msgid "Fri" msgstr "Fr" #. l10n: Short week day name -#: js/messages.php:148 libraries/common.lib.php:1599 +#: js/messages.php:148 libraries/common.lib.php:1603 msgid "Sat" msgstr "Sa" @@ -1274,18 +1260,13 @@ msgstr "Sekunde" msgid "Font size" msgstr "Schriftgröße" -#: libraries/File.class.php:336 libraries/File.class.php:424 -#: libraries/File.class.php:561 libraries/File.class.php:700 -msgid "Unknown error in file upload." -msgstr "Unbekannter Fehler beim Dateihochladen." - -#: libraries/File.class.php:406 +#: libraries/File.class.php:315 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:409 +#: libraries/File.class.php:318 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -1293,59 +1274,63 @@ msgstr "" "Die hochgeladene Datei ist größer als der in MAX_FILE_SIZE des HTML " "Formulars angegebene Wert." -#: libraries/File.class.php:412 +#: libraries/File.class.php:321 msgid "The uploaded file was only partially uploaded." msgstr "Die Datei wurde teilweise übertragen." -#: libraries/File.class.php:415 +#: libraries/File.class.php:324 msgid "Missing a temporary folder." msgstr "Kein gültiges Temporäres Verzeichnis für hochgeladene Dateien." -#: libraries/File.class.php:418 +#: libraries/File.class.php:327 msgid "Failed to write file to disk." msgstr "Datei konnte gespeichert werden." -#: libraries/File.class.php:421 +#: libraries/File.class.php:330 msgid "File upload stopped by extension." msgstr "Dateihochladen durch eine Erweiterung gestoppt." -#: libraries/File.class.php:898 +#: libraries/File.class.php:333 +msgid "Unknown error in file upload." +msgstr "Unbekannter Fehler beim Dateihochladen." + +#: libraries/File.class.php:624 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:427 tbl_relation.php:528 +#: libraries/Index.class.php:427 tbl_relation.php:526 msgid "No index defined!" msgstr "Kein Index definiert!" -#: libraries/Index.class.php:432 server_databases.php:131 tbl_tracking.php:315 +#: libraries/Index.class.php:432 server_databases.php:129 tbl_tracking.php:310 msgid "Indexes" msgstr "Indizes" #: libraries/Index.class.php:443 libraries/mult_submits.inc.php:102 -#: libraries/tbl_properties.inc.php:518 tbl_structure.php:32 -#: tbl_structure.php:154 tbl_structure.php:158 tbl_structure.php:473 -#: tbl_tracking.php:321 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:31 +#: tbl_structure.php:153 tbl_structure.php:157 tbl_structure.php:471 +#: tbl_tracking.php:316 msgid "Unique" msgstr "Unique" -#: libraries/Index.class.php:444 tbl_tracking.php:322 +#: libraries/Index.class.php:444 tbl_tracking.php:317 msgid "Packed" msgstr "Gepackt" -#: libraries/Index.class.php:446 tbl_tracking.php:324 +#: libraries/Index.class.php:446 tbl_tracking.php:319 msgid "Cardinality" msgstr "Kardinalität" -#: libraries/Index.class.php:449 tbl_tracking.php:278 tbl_tracking.php:327 +#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322 msgid "Comment" msgstr "Kommentar" #: libraries/Index.class.php:465 libraries/common.lib.php:609 -#: libraries/common.lib.php:1198 libraries/display_tbl.lib.php:1116 +#: libraries/common.lib.php:1191 libraries/display_tbl.lib.php:1115 #: libraries/import.lib.php:1119 libraries/import.lib.php:1143 -#: pdf_pages.php:284 setup/frames/index.inc.php:124 +#: pdf_pages.php:283 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:349 tbl_row_action.php:68 msgid "Edit" msgstr "Bearbeiten" @@ -1369,15 +1354,15 @@ msgstr "" "möglicherweise entfernt werden." #: libraries/List_Database.class.php:430 libraries/server_links.inc.php:40 -#: server_databases.php:87 server_privileges.php:1652 +#: server_databases.php:85 server_privileges.php:1656 #: setup/lib/messages.inc.php:107 test/theme.php:92 msgid "Databases" msgstr "Datenbanken" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:259 libraries/import.lib.php:134 pdf_schema.php:31 -#: pdf_schema.php:231 tbl_change.php:1023 tbl_operations.php:212 -#: tbl_relation.php:289 view_operations.php:61 +#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 +#: tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Fehler" @@ -1402,40 +1387,40 @@ msgid_plural "%1$d rows inserted." msgstr[0] "%1$d Zeile eingefügt." msgstr[1] "%1$d Zeilen eingefügt." -#: libraries/StorageEngine.class.php:196 +#: libraries/StorageEngine.class.php:194 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:352 +#: libraries/StorageEngine.class.php:354 #, php-format msgid "%s is available on this MySQL server." msgstr "%s ist auf diesem MySQL-Server verfügbar." -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:357 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s wurde auf diesem MySQL-Server deaktiviert." -#: libraries/StorageEngine.class.php:359 +#: libraries/StorageEngine.class.php:361 #, 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:1018 +#: libraries/Table.class.php:1017 msgid "Invalid database" msgstr "ungültige Datenbank" -#: libraries/Table.class.php:1032 tbl_get_field.php:25 +#: libraries/Table.class.php:1031 tbl_get_field.php:25 msgid "Invalid table name" msgstr "ungültiger Tabellenname" -#: libraries/Table.class.php:1047 +#: libraries/Table.class.php:1046 #, 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:1131 +#: libraries/Table.class.php:1129 #, php-format msgid "Table %s has been renamed to %s" msgstr "Tabelle %s wurde umbenannt in %s." @@ -1454,22 +1439,22 @@ msgstr "Keine Vorschau verfügbar." msgid "take it" msgstr "auswählen" -#: libraries/Theme_Manager.class.php:114 +#: 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:152 +#: libraries/Theme_Manager.class.php:147 #, php-format msgid "Theme %s not found!" msgstr "Oberflächendesign \"%s\" nicht gefunden!" -#: libraries/Theme_Manager.class.php:220 +#: 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:296 test/theme.php:160 themes.php:20 +#: libraries/Theme_Manager.class.php:291 test/theme.php:160 themes.php:20 #: themes.php:40 msgid "Theme / Style" msgstr "Oberflächendesign" @@ -1591,19 +1576,19 @@ msgstr "Kein gültiger Authentisierungsschlüssel angeschlossen" msgid "Authenticating..." msgstr "Authentifiziere ..." -#: libraries/blobstreaming.lib.php:689 +#: libraries/blobstreaming.lib.php:340 msgid "View image" msgstr "Bild anzeigen" -#: libraries/blobstreaming.lib.php:693 +#: libraries/blobstreaming.lib.php:344 msgid "Play audio" msgstr "Tonaufnahme abspielen" -#: libraries/blobstreaming.lib.php:698 +#: libraries/blobstreaming.lib.php:349 msgid "View video" msgstr "Filmaufnahme abspielen" -#: libraries/blobstreaming.lib.php:702 +#: libraries/blobstreaming.lib.php:353 msgid "Download file" msgstr "Datei herunterladen" @@ -1658,7 +1643,7 @@ msgstr "Server" msgid "Invalid authentication method set in configuration:" msgstr "Ungültige Authentifikationsmethode:" -#: libraries/common.inc.php:909 +#: libraries/common.inc.php:908 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Sie sollten auf %s %s oder neuer umsteigen." @@ -1683,7 +1668,8 @@ msgstr "en" #: libraries/common.lib.php:425 libraries/common.lib.php:427 #: libraries/common.lib.php:429 libraries/common.lib.php:445 #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 -#: libraries/display_export.lib.php:163 libraries/relation.lib.php:84 +#: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 +#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 #: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" @@ -1698,150 +1684,150 @@ msgstr "SQL-Befehl" msgid "MySQL said: " msgstr "MySQL meldet: " -#: libraries/common.lib.php:1136 +#: libraries/common.lib.php:1129 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "Failed to connect to SQL validator!" msgstr "Verbindungsaufbau zu MySQL-Server schlug fehl" -#: libraries/common.lib.php:1174 setup/lib/messages.inc.php:350 +#: libraries/common.lib.php:1167 setup/lib/messages.inc.php:350 msgid "Explain SQL" msgstr "SQL erklären" -#: libraries/common.lib.php:1177 +#: libraries/common.lib.php:1170 msgid "Skip Explain SQL" msgstr "SQL-Erklärung umgehen" -#: libraries/common.lib.php:1211 +#: libraries/common.lib.php:1204 msgid "Without PHP Code" msgstr "ohne PHP-Code" -#: libraries/common.lib.php:1214 setup/lib/messages.inc.php:352 +#: libraries/common.lib.php:1207 setup/lib/messages.inc.php:352 msgid "Create PHP Code" msgstr "PHP-Code erzeugen" -#: libraries/common.lib.php:1232 server_status.php:451 +#: libraries/common.lib.php:1225 server_status.php:451 #: setup/lib/messages.inc.php:351 msgid "Refresh" msgstr "Aktualisieren" -#: libraries/common.lib.php:1241 +#: libraries/common.lib.php:1234 msgid "Skip Validate SQL" msgstr "SQL-Validierung umgehen" -#: libraries/common.lib.php:1244 setup/lib/messages.inc.php:353 +#: libraries/common.lib.php:1237 setup/lib/messages.inc.php:353 msgid "Validate SQL" msgstr "SQL validieren" -#: libraries/common.lib.php:1283 +#: libraries/common.lib.php:1287 msgid "Inline edit of this query" msgstr "Inline-Bearbeiten dieses SQL-Befehls" -#: libraries/common.lib.php:1285 +#: libraries/common.lib.php:1289 msgid "Inline" msgstr "Inline" -#: libraries/common.lib.php:1339 libraries/common.lib.php:1354 +#: libraries/common.lib.php:1343 libraries/common.lib.php:1358 msgid "Profiling" msgstr "Messen" -#: libraries/common.lib.php:1358 libraries/tbl_triggers.lib.php:27 +#: libraries/common.lib.php:1362 libraries/tbl_triggers.lib.php:27 #: server_processlist.php:57 msgid "Time" msgstr "Dauer" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "B" msgstr "Bytes" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "KiB" msgstr "KiB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "MiB" msgstr "MiB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "GiB" msgstr "GiB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "TiB" msgstr "TiB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "PiB" msgstr "PiB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "EiB" msgstr "EiB" #. l10n: Thousands separator -#: libraries/common.lib.php:1424 +#: libraries/common.lib.php:1428 msgid "," msgstr "." #. l10n: Decimal separator -#: libraries/common.lib.php:1426 +#: libraries/common.lib.php:1430 msgid "." msgstr "," #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1603 +#: libraries/common.lib.php:1607 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%d. %B %Y um %H:%M" -#: libraries/common.lib.php:1909 +#: libraries/common.lib.php:1913 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s Tage, %s Stunden, %s Minuten und %s Sekunden" -#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 -#: libraries/display_tbl.lib.php:289 server_status.php:718 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 +#: libraries/display_tbl.lib.php:288 server_status.php:718 msgid "Begin" msgstr "Anfang" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 -#: libraries/display_tbl.lib.php:290 server_binlog.php:154 +#: libraries/common.lib.php:2328 libraries/common.lib.php:2331 +#: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "Vorherige" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 -#: libraries/display_tbl.lib.php:352 +#: libraries/common.lib.php:2359 libraries/common.lib.php:2362 +#: libraries/display_tbl.lib.php:351 msgid "End" msgstr "Ende" -#: libraries/common.lib.php:2429 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "Zur Datenbank "%s" springen." -#: libraries/common.lib.php:2448 +#: libraries/common.lib.php:2453 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" "Die Funktion \"%s\" wird durch einen bekannten Fehler beeinträchtigt, siehe " "%s" -#: libraries/common.lib.php:2828 libraries/common.lib.php:2835 -#: libraries/db_links.inc.php:67 libraries/export/sql.php:24 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 +#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 -#: libraries/tbl_links.inc.php:59 querywindow.php:89 test/theme.php:96 +#: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2837 libraries/db_links.inc.php:103 -#: libraries/tbl_links.inc.php:94 libraries/tbl_links.inc.php:116 -#: view_operations.php:88 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: view_operations.php:87 msgid "Operations" msgstr "Operationen" -#: libraries/core.lib.php:282 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1857,38 +1843,38 @@ msgstr "Ereignisse" msgid "Name" msgstr "Name" -#: libraries/db_links.inc.php:44 +#: libraries/db_links.inc.php:43 #, php-format msgid "Database %s has been dropped." msgstr "Datenbank %s wurde gelöscht." -#: libraries/db_links.inc.php:56 libraries/db_links.inc.php:57 -#: libraries/db_links.inc.php:58 +#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 +#: libraries/db_links.inc.php:57 msgid "Database seems to be empty!" msgstr "Die Datenbank scheint leer zu sein!" -#: libraries/db_links.inc.php:80 libraries/relation.lib.php:142 -#: libraries/tbl_links.inc.php:68 +#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "Tracking" -#: libraries/db_links.inc.php:85 +#: libraries/db_links.inc.php:84 msgid "Query" msgstr "Abfrageeditor" -#: libraries/db_links.inc.php:90 libraries/relation.lib.php:138 +#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 msgid "Designer" msgstr "Designer" -#: libraries/db_links.inc.php:97 libraries/server_links.inc.php:87 -#: libraries/tbl_links.inc.php:90 pmd_pdf.php:83 pmd_pdf.php:109 +#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importieren" -#: libraries/db_links.inc.php:110 libraries/server_links.inc.php:65 -#: server_privileges.php:111 server_privileges.php:1714 -#: server_privileges.php:2063 test/theme.php:116 +#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: server_privileges.php:110 server_privileges.php:1718 +#: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" msgstr "Rechte" @@ -1900,15 +1886,15 @@ msgstr "Routinen" msgid "Return type" msgstr "Rückgabe-Typ" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1847 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1806 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "" "Es kann sich hierbei um Näherungswerte handeln. Bitte lesen Sie auch FAQ 3.11" -#: libraries/db_structure.lib.php:60 server_databases.php:141 -#: tbl_printview.php:334 tbl_structure.php:681 +#: libraries/db_structure.lib.php:60 server_databases.php:139 +#: tbl_printview.php:333 tbl_structure.php:679 msgid "Overhead" msgstr "Überhang" @@ -1929,7 +1915,7 @@ msgstr "" "(evtl. ist auch der Socket des lokalen MySQL-Servers socket nicht korrekt " "konfiguriert)" -#: libraries/dbi/mysql.dbi.lib.php:358 tbl_structure.php:607 +#: libraries/dbi/mysql.dbi.lib.php:358 tbl_structure.php:605 msgid "Details..." msgstr "Details ..." @@ -1939,22 +1925,22 @@ msgid "Change password" msgstr "Passwort ändern" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:807 +#: libraries/replication_gui.lib.php:347 server_privileges.php:806 msgid "No Password" msgstr "Kein Passwort" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1530 server_synchronize.php:1174 +#: libraries/replication_gui.lib.php:351 server_privileges.php:795 +#: server_privileges.php:799 server_privileges.php:810 +#: server_privileges.php:1534 server_synchronize.php:1173 msgid "Password" msgstr "Passwort" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:815 server_privileges.php:818 +#: server_privileges.php:814 server_privileges.php:817 msgid "Re-type" msgstr "Wiederholen" @@ -1975,8 +1961,8 @@ msgstr "Neue Datenbank anlegen" msgid "Create" msgstr "Anlegen" -#: libraries/display_create_database.lib.php:39 server_privileges.php:113 -#: server_privileges.php:1419 server_replication.php:34 +#: libraries/display_create_database.lib.php:39 server_privileges.php:112 +#: server_privileges.php:1423 server_replication.php:33 msgid "No Privileges" msgstr "Keine Rechte" @@ -1997,51 +1983,51 @@ msgstr "Neue Tabelle in Datenbank %s erstellen" msgid "Number of columns" msgstr "Anzahl der Felder" -#: libraries/display_export.lib.php:41 +#: libraries/display_export.lib.php:35 msgid "Could not load export plugins, please check your installation!" msgstr "" "Export-Plugins konnten nicht geladen werden, bitte Installation überprüfen!" -#: libraries/display_export.lib.php:106 +#: libraries/display_export.lib.php:100 #, fuzzy, php-format #| msgid "Dump %s row(s) starting at record # %s" msgid "Dump %s row(s) starting at row # %s" msgstr "Exportiere %s Datensätze ab Zeile %s." -#: libraries/display_export.lib.php:114 +#: libraries/display_export.lib.php:108 msgid "Dump all rows" msgstr "Alle Datensätze exportieren" -#: libraries/display_export.lib.php:124 setup/lib/messages.inc.php:79 +#: libraries/display_export.lib.php:118 setup/lib/messages.inc.php:79 msgid "Save as file" msgstr "Senden" -#: libraries/display_export.lib.php:133 +#: libraries/display_export.lib.php:127 #, php-format msgid "Save on server in %s directory" msgstr "Datei auf dem Server in Verzeichnis %s speichern" -#: libraries/display_export.lib.php:141 setup/lib/messages.inc.php:87 +#: libraries/display_export.lib.php:135 setup/lib/messages.inc.php:87 msgid "Overwrite existing file(s)" msgstr "Bestehende Datei(en) überschreiben" -#: libraries/display_export.lib.php:147 +#: libraries/display_export.lib.php:141 msgid "File name template" msgstr "Dateinamenskonvention" -#: libraries/display_export.lib.php:151 +#: libraries/display_export.lib.php:145 msgid "server name" msgstr "Server-Name" -#: libraries/display_export.lib.php:154 +#: libraries/display_export.lib.php:148 msgid "database name" msgstr "Datenbank-Name" -#: libraries/display_export.lib.php:157 +#: libraries/display_export.lib.php:151 msgid "table name" msgstr "Tabellen-Name" -#: libraries/display_export.lib.php:161 +#: libraries/display_export.lib.php:155 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2052,39 +2038,39 @@ msgstr "" "für Datum und Uhrzeit verwenden. Darüber hinaus werden folgende Umformungen " "durchgeführt: %3$s. Der übrige Text bleibt unberührt." -#: libraries/display_export.lib.php:202 +#: libraries/display_export.lib.php:196 msgid "remember template" msgstr "Konvention merken" -#: libraries/display_export.lib.php:210 libraries/display_import.lib.php:177 +#: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 #: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 msgid "Character set of the file:" msgstr "Zeichencodierung der Datei:" -#: libraries/display_export.lib.php:235 setup/lib/messages.inc.php:81 +#: libraries/display_export.lib.php:229 setup/lib/messages.inc.php:81 msgid "Compression" msgstr "Kompression" -#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:196 -#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:529 -#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:574 -#: server_privileges.php:1867 server_processlist.php:74 +#: libraries/display_export.lib.php:234 libraries/display_import.lib.php:196 +#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:528 +#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:573 +#: server_privileges.php:1871 server_processlist.php:74 msgid "None" msgstr "keine" -#: libraries/display_export.lib.php:247 +#: libraries/display_export.lib.php:241 msgid "\"zipped\"" msgstr "Zip-komprimiert" -#: libraries/display_export.lib.php:253 +#: libraries/display_export.lib.php:247 msgid "\"gzipped\"" msgstr "GZip-komprimiert" -#: libraries/display_export.lib.php:259 +#: libraries/display_export.lib.php:253 msgid "\"bzipped\"" msgstr "BZip-komprimiert" -#: libraries/display_export.lib.php:274 libraries/export/sql.php:42 +#: libraries/display_export.lib.php:268 libraries/export/sql.php:42 #: libraries/import/sql.php:31 msgid "SQL compatibility mode" msgstr "SQL-Kompatibilitätsmodus" @@ -2125,12 +2111,12 @@ msgid "File uploads are not allowed on this server." msgstr "Das hochladen von Dateien ist auf diesem Server nicht erlaubt." #: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 -#: tbl_change.php:1024 +#: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "Auf das festgelegte Upload-Verzeichnis kann nicht zugegriffen werden." #: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 -#: tbl_change.php:1027 +#: tbl_change.php:925 msgid "web server upload directory" msgstr "Upload-Verzeichnis auf dem Webserver" @@ -2215,44 +2201,44 @@ msgstr "Papiergröße" msgid "Language" msgstr "Sprache" -#: libraries/display_tbl.lib.php:303 +#: libraries/display_tbl.lib.php:302 #, php-format msgid "%d is not valid row number." msgstr "%d ist keine gültige Zeilennummer." -#: libraries/display_tbl.lib.php:309 +#: libraries/display_tbl.lib.php:308 #, fuzzy #| msgid "row(s) starting from record #" msgid "row(s) starting from row #" msgstr "Datensätze, beginnend ab" -#: libraries/display_tbl.lib.php:315 +#: libraries/display_tbl.lib.php:314 msgid "horizontal" msgstr "untereinander" -#: libraries/display_tbl.lib.php:316 +#: libraries/display_tbl.lib.php:315 msgid "horizontal (rotated headers)" msgstr "horizontal (gedrehte Bezeichner)" -#: libraries/display_tbl.lib.php:317 +#: libraries/display_tbl.lib.php:316 msgid "vertical" msgstr "nebeneinander" -#: libraries/display_tbl.lib.php:323 +#: libraries/display_tbl.lib.php:322 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "%s angeordnet und wiederhole die Kopfzeilen nach %s Datensätzen." -#: libraries/display_tbl.lib.php:345 +#: libraries/display_tbl.lib.php:344 msgid "This operation could take a long time. Proceed anyway?" msgstr "" "Diese Operation könnte einige Zeit beanspruchen. Trotzdem weitermachen?" -#: libraries/display_tbl.lib.php:511 +#: libraries/display_tbl.lib.php:510 msgid "Sort by key" msgstr "Nach Schlüssel sortieren" -#: libraries/display_tbl.lib.php:554 libraries/export/codegen.php:38 +#: libraries/display_tbl.lib.php:553 libraries/export/codegen.php:38 #: libraries/export/csv.php:29 libraries/export/excel.php:34 #: libraries/export/htmlword.php:28 libraries/export/latex.php:32 #: libraries/export/mediawiki.php:21 libraries/export/ods.php:26 @@ -2262,100 +2248,100 @@ msgstr "Nach Schlüssel sortieren" #: libraries/export/xlsx.php:26 libraries/export/xml.php:23 #: libraries/export/yaml.php:27 libraries/import.lib.php:1114 #: libraries/import.lib.php:1136 libraries/import/csv.php:31 -#: libraries/import/docsql.php:33 libraries/import/ldi.php:46 +#: libraries/import/docsql.php:32 libraries/import/ldi.php:46 #: libraries/import/ods.php:30 libraries/import/sql.php:19 #: libraries/import/xls.php:25 libraries/import/xlsx.php:25 -#: libraries/import/xml.php:25 tbl_select.php:264 tbl_structure.php:752 +#: libraries/import/xml.php:25 tbl_select.php:263 tbl_structure.php:750 msgid "Options" msgstr "Optionen" -#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:569 +#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:568 msgid "Partial Texts" msgstr "gekürzte Textfelder" -#: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:573 +#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:572 msgid "Full Texts" msgstr "vollständige Textfelder" -#: libraries/display_tbl.lib.php:586 +#: libraries/display_tbl.lib.php:585 msgid "Relational key" msgstr "Relationaler Schlüssel" -#: libraries/display_tbl.lib.php:587 +#: libraries/display_tbl.lib.php:586 #, fuzzy #| msgid "Relational display field" msgid "Relational display column" msgstr "Relationaler Wert" -#: libraries/display_tbl.lib.php:594 +#: libraries/display_tbl.lib.php:593 msgid "Show binary contents" msgstr "Binäre Inhalte anzeigen" -#: libraries/display_tbl.lib.php:596 +#: libraries/display_tbl.lib.php:595 msgid "Show BLOB contents" msgstr "BLOB Inhalte anzeigen" -#: libraries/display_tbl.lib.php:598 +#: libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "Binäre Inhalte in hexadezimal anzeigen" # Hide heist im deutschen in der EDV ausblenden -#: libraries/display_tbl.lib.php:606 pmd_general.php:140 tbl_change.php:312 -#: tbl_change.php:318 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:307 +#: tbl_change.php:313 msgid "Hide" msgstr "Verstecken" -#: libraries/display_tbl.lib.php:606 libraries/relation.lib.php:122 -#: libraries/tbl_properties.inc.php:143 transformation_overview.php:46 +#: libraries/display_tbl.lib.php:605 libraries/relation.lib.php:117 +#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46 msgid "Browser transformation" msgstr "Darstellungsumwandlung" -#: libraries/display_tbl.lib.php:1125 libraries/display_tbl.lib.php:1129 -#: libraries/display_tbl.lib.php:1131 +#: libraries/display_tbl.lib.php:1124 libraries/display_tbl.lib.php:1128 +#: libraries/display_tbl.lib.php:1130 msgid "Execute bookmarked query" msgstr "Gespeicherte SQL-Anfrage ausführen" -#: libraries/display_tbl.lib.php:1144 libraries/display_tbl.lib.php:1156 +#: libraries/display_tbl.lib.php:1143 libraries/display_tbl.lib.php:1155 msgid "The row has been deleted" msgstr "Die Zeile wurde gelöscht." -#: libraries/display_tbl.lib.php:1183 libraries/display_tbl.lib.php:2055 +#: libraries/display_tbl.lib.php:1182 libraries/display_tbl.lib.php:2014 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "Beenden" -#: libraries/display_tbl.lib.php:1933 +#: libraries/display_tbl.lib.php:1892 msgid "in query" msgstr "in der Abfrage" -#: libraries/display_tbl.lib.php:1951 +#: libraries/display_tbl.lib.php:1910 msgid "Showing rows" msgstr "Zeige Datensätze " -#: libraries/display_tbl.lib.php:1961 +#: libraries/display_tbl.lib.php:1920 msgid "total" msgstr "insgesamt" -#: libraries/display_tbl.lib.php:1969 sql.php:523 +#: libraries/display_tbl.lib.php:1928 sql.php:522 #, php-format msgid "Query took %01.4f sec" msgstr "die Abfrage dauerte %01.4f sek." -#: libraries/display_tbl.lib.php:2088 libraries/mult_submits.inc.php:112 -#: querywindow.php:115 querywindow.php:119 querywindow.php:122 -#: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:469 +#: libraries/display_tbl.lib.php:2047 libraries/mult_submits.inc.php:112 +#: querywindow.php:114 querywindow.php:118 querywindow.php:121 +#: tbl_structure.php:23 tbl_structure.php:148 tbl_structure.php:467 msgid "Change" msgstr "Ändern" -#: libraries/display_tbl.lib.php:2158 +#: libraries/display_tbl.lib.php:2117 msgid "Query results operations" msgstr "Operationen für das Abfrageergebnis" -#: libraries/display_tbl.lib.php:2186 +#: libraries/display_tbl.lib.php:2145 msgid "Print view (with full texts)" msgstr "Druckansicht (vollständige Textfelder)" -#: libraries/display_tbl.lib.php:2359 +#: libraries/display_tbl.lib.php:2318 msgid "Link not found" msgstr "Der Verweis wurde nicht gefunden." @@ -2411,9 +2397,9 @@ msgstr "InnoDB-Status" msgid "Buffer Pool Usage" msgstr "Auslastung des Puffer-Pools" -#: libraries/engines/innodb.lib.php:168 server_databases.php:136 -#: server_databases.php:304 server_status.php:524 server_status.php:585 -#: server_status.php:606 tbl_printview.php:349 tbl_structure.php:695 +#: libraries/engines/innodb.lib.php:168 server_databases.php:134 +#: server_databases.php:302 server_status.php:524 server_status.php:585 +#: server_status.php:606 tbl_printview.php:348 tbl_structure.php:693 msgid "Total" msgstr "Insgesamt" @@ -2549,6 +2535,87 @@ msgstr "" "Der Puffer, der beim Sortieren des Indexes zugewiesen wird, wenn man ein " "REPAIR oder ausführt oder Indizes mit CREATE INDEX oder ALTER TABLE erzeugt." +#: libraries/engines/pbms.lib.php:31 +#, fuzzy +#| msgid "Garbage threshold" +msgid "Garbage Threshold" +msgstr "Müll-Grenzwert" + +#: libraries/engines/pbms.lib.php:32 +#, fuzzy +#| msgid "" +#| "The percentage of garbage in a data log file before it is compacted. This " +#| "is a value between 1 and 99. The default is 50." +msgid "The percentage of garbage in a repository file before it is compacted." +msgstr "" +"Der Prozentsatz an Müll in einer Logdatei bevor sie komprimiert wird. Der " +"Wert kann zwischen 1 und 99 liegen, Voreinstellung ist 50." + +#: libraries/engines/pbms.lib.php:36 libraries/replication_gui.lib.php:69 +#: server_synchronize.php:1161 +msgid "Port" +msgstr "Port" + +#: libraries/engines/pbms.lib.php:37 +msgid "" +"The port for the PBMS stream-based communications. Setting this value to 0 " +"will disable HTTP communication with the daemon." +msgstr "" + +#: libraries/engines/pbms.lib.php:41 +msgid "Repository Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:42 +msgid "" +"The maximum size of a BLOB repository file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:46 +msgid "Temp Blob Timeout" +msgstr "" + +#: libraries/engines/pbms.lib.php:47 +msgid "" +"The timeout, in seconds, for temporary BLOBs. Uploaded BLOB data is removed " +"after this time, unless they are referenced by a record in the database." +msgstr "" + +#: libraries/engines/pbms.lib.php:51 +#, fuzzy +#| msgid "Log file threshold" +msgid "Temp Log Threshold" +msgstr "Logdatei Grenzwert" + +#: libraries/engines/pbms.lib.php:52 +msgid "" +"The maximum size of a temporary BLOB log file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:56 +msgid "Max Keep Alive" +msgstr "" + +#: libraries/engines/pbms.lib.php:57 +msgid "" +"The timeout for inactive connection with the keep-alive flag set. After this " +"time the connection will be closed. The time-out is in milliseconds (1/1000)." +msgstr "" + +#: libraries/engines/pbms.lib.php:61 +msgid "Metadata Headers" +msgstr "" + +#: libraries/engines/pbms.lib.php:62 +msgid "" +"A \":\" delimited list of metadata headers to be used to initialize the " +"pbms_metadata_header table when a database is created." +msgstr "" + #: libraries/engines/pbxt.lib.php:22 msgid "Index cache size" msgstr "Index-Cache Größe" @@ -2697,7 +2764,7 @@ msgstr "" "ansonsten werden sie umbenannt und bekommen die nächsthöhere Nummer." #: libraries/export/codegen.php:36 setup/lib/messages.inc.php:85 -#: tbl_printview.php:374 tbl_structure.php:736 +#: tbl_printview.php:373 tbl_structure.php:734 msgid "Format" msgstr "Format" @@ -2768,9 +2835,9 @@ msgstr "Microsoft Word 2000" #: libraries/export/htmlword.php:23 libraries/export/latex.php:59 #: libraries/export/latex.php:205 libraries/export/odt.php:47 #: libraries/export/sql.php:105 libraries/export/sql.php:865 -#: libraries/export/texytext.php:27 server_databases.php:126 -#: server_privileges.php:576 server_replication.php:315 tbl_printview.php:315 -#: tbl_structure.php:664 +#: libraries/export/texytext.php:27 server_databases.php:124 +#: server_privileges.php:575 server_replication.php:314 tbl_printview.php:314 +#: tbl_structure.php:662 msgid "Data" msgstr "Daten" @@ -2785,7 +2852,6 @@ msgid "Table structure for table" msgstr "Tabellenstruktur für Tabelle" #: libraries/export/latex.php:13 -#| msgid "Content of table __TABLE__" msgid "Content of table @TABLE@" msgstr "Inhalt der Tabelle @TABLE@" @@ -2794,7 +2860,6 @@ msgid "(continued)" msgstr "(Fortsetzung)" #: libraries/export/latex.php:15 -#| msgid "Structure of table __TABLE__" msgid "Structure of table @TABLE@" msgstr "Struktur der Tabelle @TABLE@" @@ -2819,13 +2884,13 @@ msgid "Label key" msgstr "Kennzeichen" #: libraries/export/latex.php:46 libraries/export/odt.php:34 -#: libraries/export/sql.php:90 tbl_relation.php:398 +#: libraries/export/sql.php:90 tbl_relation.php:396 msgid "Relations" msgstr "Tabellenverknüpfungen" #: libraries/export/latex.php:52 libraries/export/odt.php:40 #: libraries/export/odt.php:317 libraries/export/sql.php:94 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "MIME-Typ" @@ -2833,10 +2898,10 @@ msgstr "MIME-Typ" #: libraries/export/xml.php:101 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1529 server_privileges.php:2061 -#: server_processlist.php:54 server_synchronize.php:1158 +#: libraries/replication_gui.lib.php:331 server_privileges.php:730 +#: server_privileges.php:733 server_privileges.php:789 +#: server_privileges.php:1533 server_privileges.php:2065 +#: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "Host" @@ -3026,8 +3091,8 @@ msgstr "Export-Ansichten" msgid "Export contents" msgstr "Export-Inhalte" -#: libraries/footer.inc.php:182 libraries/footer.inc.php:193 -#: libraries/footer.inc.php:196 +#: libraries/footer.inc.php:180 libraries/footer.inc.php:191 +#: libraries/footer.inc.php:194 msgid "Open new phpMyAdmin window" msgstr "Neues phpMyAdmin-Fenster" @@ -3043,7 +3108,7 @@ msgstr "SQL-Abfrageergebnis" msgid "Generated by" msgstr "Erstellt von" -#: libraries/import.lib.php:151 sql.php:519 tbl_change.php:180 +#: libraries/import.lib.php:151 sql.php:518 tbl_change.php:175 #: 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)." @@ -3102,7 +3167,7 @@ msgstr "Ignoriere doppelte Zeilen" msgid "Column names in first row" msgstr "Spaltennamen in der ersten Zeile" -#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:501 +#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:500 #: view_create.php:147 msgid "Column names" msgstr "Spaltennamen" @@ -3129,12 +3194,12 @@ msgstr "Ungültiges Format in Zeile %d." msgid "Invalid column count in CSV input on line %d." msgstr "Ungültige Anzahl an Feldern in Zeile %d." -#: libraries/import/docsql.php:28 +#: libraries/import/docsql.php:27 msgid "DocSQL" msgstr "DocSQL" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 -#: server_synchronize.php:427 server_synchronize.php:870 +#: libraries/import/docsql.php:30 libraries/tbl_properties.inc.php:616 +#: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "Tabellenname" @@ -3190,26 +3255,26 @@ msgstr "keine" msgid "Convert to Kana" msgstr "Nach Kana konvertieren" -#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:512 -#: tbl_structure.php:28 tbl_structure.php:152 tbl_structure.php:156 -#: tbl_structure.php:472 +#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:511 +#: tbl_structure.php:27 tbl_structure.php:151 tbl_structure.php:155 +#: tbl_structure.php:470 msgid "Primary" msgstr "Primärschlüssel" #: libraries/mult_submits.inc.php:97 libraries/tbl_properties.inc.php:115 -#: libraries/tbl_properties.inc.php:524 tbl_printview.php:324 -#: tbl_structure.php:30 tbl_structure.php:153 tbl_structure.php:157 -#: tbl_structure.php:474 tbl_structure.php:672 +#: libraries/tbl_properties.inc.php:523 tbl_printview.php:323 +#: tbl_structure.php:29 tbl_structure.php:152 tbl_structure.php:156 +#: tbl_structure.php:472 tbl_structure.php:670 msgid "Index" msgstr "Index" -#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:530 -#: tbl_structure.php:34 tbl_structure.php:155 tbl_structure.php:159 -#: tbl_structure.php:477 +#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:529 +#: tbl_structure.php:33 tbl_structure.php:154 tbl_structure.php:158 +#: tbl_structure.php:475 msgid "Fulltext" msgstr "Volltext" -#: libraries/mult_submits.inc.php:434 tbl_replace.php:330 +#: libraries/mult_submits.inc.php:433 tbl_replace.php:330 msgid "No change" msgstr "Keine Änderung" @@ -3217,190 +3282,190 @@ msgstr "Keine Änderung" msgid "Charset" msgstr "Zeichensatz" -#: libraries/mysql_charsets.lib.php:210 libraries/mysql_charsets.lib.php:411 -#: tbl_change.php:515 +#: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 +#: tbl_change.php:510 msgid "Binary" msgstr "Binär" -#: libraries/mysql_charsets.lib.php:222 +#: libraries/mysql_charsets.lib.php:214 msgid "Bulgarian" msgstr "Bulgarisch" -#: libraries/mysql_charsets.lib.php:226 libraries/mysql_charsets.lib.php:351 +#: libraries/mysql_charsets.lib.php:218 libraries/mysql_charsets.lib.php:343 msgid "Simplified Chinese" msgstr "Vereinfachtes Chinesisch" -#: libraries/mysql_charsets.lib.php:228 libraries/mysql_charsets.lib.php:371 +#: libraries/mysql_charsets.lib.php:220 libraries/mysql_charsets.lib.php:363 msgid "Traditional Chinese" msgstr "Traditionelles Chinesisch" -#: libraries/mysql_charsets.lib.php:232 libraries/mysql_charsets.lib.php:418 +#: libraries/mysql_charsets.lib.php:224 libraries/mysql_charsets.lib.php:410 msgid "case-insensitive" msgstr "case-insensitive" -#: libraries/mysql_charsets.lib.php:235 libraries/mysql_charsets.lib.php:420 +#: libraries/mysql_charsets.lib.php:227 libraries/mysql_charsets.lib.php:412 msgid "case-sensitive" msgstr "case-sensitive" -#: libraries/mysql_charsets.lib.php:238 +#: libraries/mysql_charsets.lib.php:230 msgid "Croatian" msgstr "Kroatisch" -#: libraries/mysql_charsets.lib.php:241 +#: libraries/mysql_charsets.lib.php:233 msgid "Czech" msgstr "Tschechisch" -#: libraries/mysql_charsets.lib.php:244 +#: libraries/mysql_charsets.lib.php:236 msgid "Danish" msgstr "Dänisch" -#: libraries/mysql_charsets.lib.php:247 +#: libraries/mysql_charsets.lib.php:239 msgid "English" msgstr "Englisch" -#: libraries/mysql_charsets.lib.php:250 +#: libraries/mysql_charsets.lib.php:242 msgid "Esperanto" msgstr "Esperanto" -#: libraries/mysql_charsets.lib.php:253 +#: libraries/mysql_charsets.lib.php:245 msgid "Estonian" msgstr "Estnisch" -#: libraries/mysql_charsets.lib.php:256 libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:248 libraries/mysql_charsets.lib.php:251 msgid "German" msgstr "Deutsch" -#: libraries/mysql_charsets.lib.php:256 +#: libraries/mysql_charsets.lib.php:248 msgid "dictionary" msgstr "Wörterbuch" -#: libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:251 msgid "phone book" msgstr "Telefonbuch" -#: libraries/mysql_charsets.lib.php:262 +#: libraries/mysql_charsets.lib.php:254 msgid "Hungarian" msgstr "Ungarisch" -#: libraries/mysql_charsets.lib.php:265 +#: libraries/mysql_charsets.lib.php:257 msgid "Icelandic" msgstr "Isländisch" -#: libraries/mysql_charsets.lib.php:268 libraries/mysql_charsets.lib.php:358 +#: libraries/mysql_charsets.lib.php:260 libraries/mysql_charsets.lib.php:350 msgid "Japanese" msgstr "Japanisch" -#: libraries/mysql_charsets.lib.php:271 +#: libraries/mysql_charsets.lib.php:263 msgid "Latvian" msgstr "Lettisch" -#: libraries/mysql_charsets.lib.php:274 +#: libraries/mysql_charsets.lib.php:266 msgid "Lithuanian" msgstr "Litauisch" -#: libraries/mysql_charsets.lib.php:277 libraries/mysql_charsets.lib.php:380 +#: libraries/mysql_charsets.lib.php:269 libraries/mysql_charsets.lib.php:372 msgid "Korean" msgstr "Koreanisch" -#: libraries/mysql_charsets.lib.php:280 +#: libraries/mysql_charsets.lib.php:272 msgid "Persian" msgstr "Persisch" -#: libraries/mysql_charsets.lib.php:283 +#: libraries/mysql_charsets.lib.php:275 msgid "Polish" msgstr "Polnisch" -#: libraries/mysql_charsets.lib.php:286 libraries/mysql_charsets.lib.php:334 +#: libraries/mysql_charsets.lib.php:278 libraries/mysql_charsets.lib.php:326 msgid "West European" msgstr "Westeuropäisch" -#: libraries/mysql_charsets.lib.php:289 +#: libraries/mysql_charsets.lib.php:281 msgid "Romanian" msgstr "Rumänisch" -#: libraries/mysql_charsets.lib.php:292 +#: libraries/mysql_charsets.lib.php:284 msgid "Slovak" msgstr "Slovakisch" -#: libraries/mysql_charsets.lib.php:295 +#: libraries/mysql_charsets.lib.php:287 msgid "Slovenian" msgstr "Slovenisch" -#: libraries/mysql_charsets.lib.php:298 +#: libraries/mysql_charsets.lib.php:290 msgid "Spanish" msgstr "Spanisch" -#: libraries/mysql_charsets.lib.php:301 +#: libraries/mysql_charsets.lib.php:293 msgid "Traditional Spanish" msgstr "Traditionelles Spanisch" -#: libraries/mysql_charsets.lib.php:304 libraries/mysql_charsets.lib.php:401 +#: libraries/mysql_charsets.lib.php:296 libraries/mysql_charsets.lib.php:393 msgid "Swedish" msgstr "Schwedisch" -#: libraries/mysql_charsets.lib.php:307 libraries/mysql_charsets.lib.php:404 +#: libraries/mysql_charsets.lib.php:299 libraries/mysql_charsets.lib.php:396 msgid "Thai" msgstr "Thai" -#: libraries/mysql_charsets.lib.php:310 libraries/mysql_charsets.lib.php:398 +#: libraries/mysql_charsets.lib.php:302 libraries/mysql_charsets.lib.php:390 msgid "Turkish" msgstr "Türkisch" -#: libraries/mysql_charsets.lib.php:313 libraries/mysql_charsets.lib.php:395 +#: libraries/mysql_charsets.lib.php:305 libraries/mysql_charsets.lib.php:387 msgid "Ukrainian" msgstr "Ukrainisch" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 msgid "Unicode" msgstr "Unicode" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 -#: libraries/mysql_charsets.lib.php:334 libraries/mysql_charsets.lib.php:341 -#: libraries/mysql_charsets.lib.php:363 libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 +#: libraries/mysql_charsets.lib.php:326 libraries/mysql_charsets.lib.php:333 +#: libraries/mysql_charsets.lib.php:355 libraries/mysql_charsets.lib.php:366 msgid "multilingual" msgstr "mehrsprachig" -#: libraries/mysql_charsets.lib.php:341 +#: libraries/mysql_charsets.lib.php:333 msgid "Central European" msgstr "Mitteleuropäisch" -#: libraries/mysql_charsets.lib.php:346 +#: libraries/mysql_charsets.lib.php:338 msgid "Russian" msgstr "Russisch" -#: libraries/mysql_charsets.lib.php:363 +#: libraries/mysql_charsets.lib.php:355 msgid "Baltic" msgstr "Baltisch" -#: libraries/mysql_charsets.lib.php:368 +#: libraries/mysql_charsets.lib.php:360 msgid "Armenian" msgstr "Armenisch" -#: libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:366 msgid "Cyrillic" msgstr "Kyrillisch" -#: libraries/mysql_charsets.lib.php:377 +#: libraries/mysql_charsets.lib.php:369 msgid "Arabic" msgstr "Arabisch" -#: libraries/mysql_charsets.lib.php:383 +#: libraries/mysql_charsets.lib.php:375 msgid "Hebrew" msgstr "Hebräisch" -#: libraries/mysql_charsets.lib.php:386 +#: libraries/mysql_charsets.lib.php:378 msgid "Georgian" msgstr "Georgisch" -#: libraries/mysql_charsets.lib.php:389 +#: libraries/mysql_charsets.lib.php:381 msgid "Greek" msgstr "Griechisch" -#: libraries/mysql_charsets.lib.php:392 +#: libraries/mysql_charsets.lib.php:384 msgid "Czech-Slovak" msgstr "Tschechoslowakisch" -#: libraries/mysql_charsets.lib.php:407 libraries/mysql_charsets.lib.php:414 +#: libraries/mysql_charsets.lib.php:399 libraries/mysql_charsets.lib.php:406 msgid "unknown" msgstr "unbekannt" @@ -3426,61 +3491,61 @@ msgstr "Abfragefenster" msgid "This format has no options" msgstr "Für dieses Format sind keine Optionen vorhanden" -#: libraries/relation.lib.php:82 +#: libraries/relation.lib.php:77 msgid "not OK" msgstr "fehlerhaft" -#: libraries/relation.lib.php:86 pmd_general.php:339 +#: libraries/relation.lib.php:81 pmd_general.php:339 msgid "OK" msgstr "OK" -#: libraries/relation.lib.php:87 +#: libraries/relation.lib.php:82 msgid "Enabled" msgstr "Aktiviert" -#: libraries/relation.lib.php:110 +#: libraries/relation.lib.php:105 msgid "Display Features" msgstr "Anzeige verknüpfter Daten" -#: libraries/relation.lib.php:116 +#: libraries/relation.lib.php:111 msgid "Creation of PDFs" msgstr "Erzeugen von PDFs" -#: libraries/relation.lib.php:120 +#: libraries/relation.lib.php:115 msgid "Displaying Column Comments" msgstr "Darstellung von Spaltenkommentaren" -#: libraries/relation.lib.php:125 +#: libraries/relation.lib.php:120 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "Bitte lesen Sie in der Dokumentation nach, wie Sie die Struktur Ihrer " "Spaltenkommentartabelle aktualisieren können" -#: libraries/relation.lib.php:130 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 msgid "Bookmarked SQL query" msgstr "Gespeicherte SQL-Abfrage" -#: libraries/relation.lib.php:134 querywindow.php:99 querywindow.php:207 +#: libraries/relation.lib.php:129 querywindow.php:98 querywindow.php:205 msgid "SQL history" msgstr "SQL-Verlaufsprotokoll" -#: libraries/relation.lib.php:146 +#: libraries/relation.lib.php:141 msgid "Quick steps to setup advanced features:" msgstr "Kurzanleitung zum Einrichten der zusätzlichen Funktionen:" -#: libraries/relation.lib.php:148 +#: libraries/relation.lib.php:143 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" "Erstellen der benötigten Tabellen mittels script/create_tables.sql." -#: libraries/relation.lib.php:149 +#: libraries/relation.lib.php:144 msgid "Create a pma user and give access to these tables." msgstr "Den Benutzer pma einrichten und Zugriff auf diese Tabellen geben." -#: libraries/relation.lib.php:150 +#: libraries/relation.lib.php:145 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." @@ -3489,12 +3554,12 @@ msgstr "" "php) aktiviert werden. Beispiele finden sich in der config." "sample.inc.php." -#: libraries/relation.lib.php:151 +#: libraries/relation.lib.php:146 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" "Erneut in phpMyAdmin anmelden um die neue Konfigurationsdatei zu laden." -#: libraries/relation.lib.php:1158 +#: libraries/relation.lib.php:1153 msgid "no description" msgstr "keine Beschreibung" @@ -3502,7 +3567,7 @@ msgstr "keine Beschreibung" msgid "Slave configuration" msgstr "Slave-Konfiguration" -#: libraries/replication_gui.lib.php:53 server_replication.php:346 +#: libraries/replication_gui.lib.php:53 server_replication.php:345 msgid "Change or reconfigure master server" msgstr "Master-Server wechseln oder neu konfigurieren" @@ -3517,16 +3582,12 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:711 -#: server_privileges.php:714 server_privileges.php:721 -#: server_synchronize.php:1170 +#: libraries/replication_gui.lib.php:261 server_privileges.php:710 +#: server_privileges.php:713 server_privileges.php:720 +#: server_synchronize.php:1169 msgid "User name" msgstr "Benutzername" -#: libraries/replication_gui.lib.php:69 server_synchronize.php:1162 -msgid "Port" -msgstr "Port" - #: libraries/replication_gui.lib.php:105 msgid "Master status" msgstr "Master-Status" @@ -3541,8 +3602,8 @@ msgid "Variable" msgstr "Variable" #: libraries/replication_gui.lib.php:117 server_status.php:737 -#: tbl_change.php:322 tbl_printview.php:368 tbl_select.php:137 -#: tbl_structure.php:728 +#: tbl_change.php:317 tbl_printview.php:367 tbl_select.php:136 +#: tbl_structure.php:726 msgid "Value" msgstr "Wert" @@ -3558,38 +3619,38 @@ msgstr "" "Nur Slaves, die mit der Option --report-host=host_name gestartet wurden, " "sind in dieser Liste sichtbar" -#: libraries/replication_gui.lib.php:242 server_replication.php:193 +#: libraries/replication_gui.lib.php:242 server_replication.php:192 msgid "Add slave replication user" msgstr "Benutzer für den Replication-Slave hinzufügen" -#: libraries/replication_gui.lib.php:256 server_privileges.php:716 +#: libraries/replication_gui.lib.php:256 server_privileges.php:715 msgid "Any user" msgstr "Jeder Benutzer" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1920 server_privileges.php:1950 +#: libraries/replication_gui.lib.php:348 server_privileges.php:716 +#: server_privileges.php:783 server_privileges.php:807 +#: server_privileges.php:1924 server_privileges.php:1954 msgid "Use text field" msgstr "Textfeld verwenden" -#: libraries/replication_gui.lib.php:304 server_privileges.php:764 +#: libraries/replication_gui.lib.php:304 server_privileges.php:763 msgid "Any host" msgstr "Jeder Host" -#: libraries/replication_gui.lib.php:308 server_privileges.php:768 +#: libraries/replication_gui.lib.php:308 server_privileges.php:767 msgid "Local" msgstr "Lokal" -#: libraries/replication_gui.lib.php:314 server_privileges.php:773 +#: libraries/replication_gui.lib.php:314 server_privileges.php:772 msgid "This Host" msgstr "Dieser Host" -#: libraries/replication_gui.lib.php:320 server_privileges.php:779 +#: libraries/replication_gui.lib.php:320 server_privileges.php:778 msgid "Use Host Table" msgstr "Verwende Hosttabelle" -#: libraries/replication_gui.lib.php:333 server_privileges.php:792 +#: libraries/replication_gui.lib.php:333 server_privileges.php:791 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3617,8 +3678,8 @@ msgstr "Unbekannte Sprache: \"%1$s\"." msgid "Servers" msgstr "Server" -#: libraries/server_links.inc.php:52 server_engines.php:111 -#: server_engines.php:115 server_status.php:414 test/theme.php:104 +#: libraries/server_links.inc.php:52 server_engines.php:125 +#: server_engines.php:129 server_status.php:414 test/theme.php:104 msgid "Variables" msgstr "Variablen" @@ -3639,13 +3700,13 @@ msgstr "Binäres Protokoll" msgid "Processes" msgstr "Prozesse" -#: libraries/server_links.inc.php:91 server_synchronize.php:1091 -#: server_synchronize.php:1099 +#: libraries/server_links.inc.php:91 server_synchronize.php:1090 +#: server_synchronize.php:1098 msgid "Synchronize" msgstr "Gleiche ab" # source != search / Source != Suche -#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1109 +#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1108 msgid "Source database" msgstr "Quell-Datenbank" @@ -3663,7 +3724,7 @@ msgstr "Entfernter Server" msgid "Difference" msgstr "Unterschied" -#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1111 +#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1110 msgid "Target database" msgstr "Ziel-Datenbank" @@ -3683,11 +3744,11 @@ msgstr "SQL-Befehl(e) in Datenbank %s ausführen" msgid "Columns" msgstr "Spaltennamen" -#: libraries/sql_query_form.lib.php:342 sql.php:664 sql.php:665 sql.php:682 +#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "SQL-Abfrage speichern" -#: libraries/sql_query_form.lib.php:349 sql.php:676 +#: libraries/sql_query_form.lib.php:349 sql.php:669 msgid "Let every user access this bookmark" msgstr "Diese gespeicherte SQL-Abfrage für jeden Benutzer verfügbar machen" @@ -3786,12 +3847,12 @@ msgstr "" "überprüfen Sie, ob Sie die in der %sDokumentation%s beschriebenen php-" "Erweiterungen installiert haben." -#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:139 -#: libraries/tbl_links.inc.php:140 +#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 +#: libraries/tbl_links.inc.php:139 msgid "Table seems to be empty!" msgstr "Die Tabelle scheint leer zu sein!" -#: libraries/tbl_links.inc.php:148 +#: libraries/tbl_links.inc.php:147 #, php-format msgid "Tracking of %s.%s is activated." msgstr "Tracking der Tabelle %s.%s ist aktiviert." @@ -3826,12 +3887,12 @@ msgstr "" "Bitte geben Sie jeweils nur einen Standardwert ohne Escape- oder " "Anführungszeichen an." -#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1263 -#: pdf_schema.php:1284 tbl_printview.php:142 tbl_structure.php:179 +#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1262 +#: pdf_schema.php:1283 tbl_printview.php:141 tbl_structure.php:178 msgid "Attributes" msgstr "Attribute" -#: libraries/tbl_properties.inc.php:136 +#: libraries/tbl_properties.inc.php:135 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -3840,11 +3901,11 @@ msgstr "" "Um eine Liste aller verfügbaren MIME-Typen-Umwandlungen und deren Optionen " "zu sehen, klicken Sie bitte auf %sUmwandlungen%s" -#: libraries/tbl_properties.inc.php:144 +#: libraries/tbl_properties.inc.php:143 msgid "Transformation options" msgstr "Umwandlungsoptionen" -#: libraries/tbl_properties.inc.php:145 +#: libraries/tbl_properties.inc.php:144 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
                            If you ever need to put a backslash (\"\\\") or a single " @@ -3856,16 +3917,16 @@ msgstr "" "Anführungszeichen (\"'\") verwenden, setzen Sie bitte ein Backslash vor das " "Zeichen. (z. B.: '\\\\xyz' oder 'a\\'b')." -#: libraries/tbl_properties.inc.php:392 +#: libraries/tbl_properties.inc.php:391 msgctxt "for default" msgid "None" msgstr "Kein(e)" -#: libraries/tbl_properties.inc.php:393 +#: libraries/tbl_properties.inc.php:392 msgid "As defined:" msgstr "Wie definiert:" -#: libraries/tbl_properties.inc.php:579 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:578 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
                            Please ask the " @@ -3875,28 +3936,28 @@ msgstr "" "Informationen wenden Sie sich bitte an den Autoren der Funktion "" "%s"." -#: libraries/tbl_properties.inc.php:725 server_engines.php:57 -#: tbl_operations.php:354 +#: libraries/tbl_properties.inc.php:724 server_engines.php:56 +#: tbl_operations.php:352 msgid "Storage Engine" msgstr "Tabellenformat" -#: libraries/tbl_properties.inc.php:754 +#: libraries/tbl_properties.inc.php:753 msgid "PARTITION definition" msgstr "PARTITION Definition" -#: libraries/tbl_properties.inc.php:775 pdf_pages.php:502 +#: libraries/tbl_properties.inc.php:774 pdf_pages.php:501 #: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214 -#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1124 tbl_indexes.php:247 -#: tbl_relation.php:565 +#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1022 tbl_indexes.php:246 +#: tbl_relation.php:563 msgid "Save" msgstr "Speichern" -#: libraries/tbl_properties.inc.php:779 tbl_structure.php:541 +#: libraries/tbl_properties.inc.php:778 tbl_structure.php:539 #, php-format msgid "Add %s column(s)" msgstr "%s Spalte(n) einfügen" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:535 +#: libraries/tbl_properties.inc.php:782 tbl_structure.php:533 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -4112,8 +4173,8 @@ msgstr "Oberfläche" msgid "Custom color" msgstr "Benutzerdefinierte Farbe" -#: main.php:162 pdf_pages.php:362 setup/lib/FormDisplay.tpl.php:216 -#: tbl_change.php:1173 +#: main.php:162 pdf_pages.php:361 setup/lib/FormDisplay.tpl.php:216 +#: tbl_change.php:1071 msgid "Reset" msgstr "Zurücksetzen" @@ -4121,8 +4182,8 @@ msgstr "Zurücksetzen" msgid "Protocol version" msgstr "Protokoll-Version" -#: main.php:188 server_privileges.php:1381 server_privileges.php:1528 -#: server_privileges.php:1642 server_privileges.php:2060 +#: main.php:188 server_privileges.php:1385 server_privileges.php:1532 +#: server_privileges.php:1646 server_privileges.php:2064 #: server_processlist.php:53 msgid "User" msgstr "Benutzer" @@ -4216,7 +4277,16 @@ msgstr "" "Das [code]config[/code] Unterverzeichnis des Installationsskripts ist noch " "vorhanden. Sie sollten es nach der Konfiguration von phpMyAdmin entfernen." -#: main.php:330 +#: main.php:314 +#, php-format +msgid "" +"The additional features for working with linked tables have been " +"deactivated. To find out why click %shere%s." +msgstr "" +"Die zusätzlichen Funktionen für verknüpfte Tabellen wurden automatisch " +"deaktiviert. Klicken Sie %shier%s um herauszufinden warum." + +#: main.php:329 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " @@ -4226,7 +4296,7 @@ msgstr "" "von phpMyAdmin stehen daher nicht zur Verfügung. Zum Beispiel wird die " "Navigation nicht automatisch aktualisiert." -#: main.php:345 +#: main.php:344 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -4235,7 +4305,7 @@ msgstr "" "Die Version der verwendeten PHP MySQL Bibliothek %s unterscheidet sich von " "der Version des MySQL Servers %s. Dies kann zu unerwartetem Verhalten führen." -#: main.php:357 +#: main.php:356 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -4248,68 +4318,68 @@ msgstr "" msgid "Reload navigation frame" msgstr "Navigations-Frame aktualisieren" -#: navigation.php:204 server_databases.php:370 server_synchronize.php:1190 +#: navigation.php:203 server_databases.php:368 server_synchronize.php:1189 msgid "No databases" msgstr "Keine Datenbanken" -#: navigation.php:298 +#: navigation.php:297 msgid "Filter" msgstr "Filter" -#: navigation.php:299 setup/frames/index.inc.php:218 +#: navigation.php:298 setup/frames/index.inc.php:218 #: setup/lib/messages.inc.php:41 msgid "Clear" msgstr "Werte löschen" -#: navigation.php:330 navigation.php:331 +#: navigation.php:329 navigation.php:330 msgctxt "short form" msgid "Create table" msgstr "Erzeuge Tabelle" -#: navigation.php:333 navigation.php:495 +#: navigation.php:332 navigation.php:494 msgid "Please select a database" msgstr "Bitte Datenbank auswählen" -#: pdf_pages.php:40 pdf_pages.php:46 pdf_pages.php:52 pdf_pages.php:57 +#: pdf_pages.php:39 pdf_pages.php:45 pdf_pages.php:51 pdf_pages.php:56 #, php-format msgid "%s table not found or not set in %s" msgstr "" "Die Tabelle %s wurde entweder nicht gefunden oder in der " "Kofigurationsdatei %s nicht gesetzt." -#: pdf_pages.php:265 +#: pdf_pages.php:264 msgid "Please choose a page to edit" msgstr "Bitte wählen Sie die zu bearbeitende Seite." -#: pdf_pages.php:303 pmd_pdf.php:113 +#: pdf_pages.php:302 pmd_pdf.php:111 msgid "Create a page" msgstr "Neue Seite erstellen" -#: pdf_pages.php:309 +#: pdf_pages.php:308 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Seite:" -#: pdf_pages.php:313 +#: pdf_pages.php:312 #, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "Automatische Anordnung" -#: pdf_pages.php:315 +#: pdf_pages.php:314 msgid "Internal relations" msgstr "Interne Beziehungen" -#: pdf_pages.php:338 +#: pdf_pages.php:337 msgid "Select Tables" msgstr "Tabellenauswahl" -#: pdf_pages.php:361 +#: pdf_pages.php:360 msgid "Toggle scratchboard" msgstr "Klemmbrett anzeigen" -#: pdf_pages.php:524 +#: pdf_pages.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -4317,35 +4387,35 @@ msgstr "" "Auf der aktuellen Seite bestehen Referenzen zu Tabellen, die nicht mehr " "existieren. Sollen diese Referenzen gelöscht werden?" -#: pdf_schema.php:635 +#: pdf_schema.php:634 #, php-format msgid "The %s table doesn't exist!" msgstr "Die Tabelle \"%s\" existiert nicht!" -#: pdf_schema.php:671 +#: pdf_schema.php:670 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Bitte konfigurieren Sie die Koordinaten für die Tabelle %s" -#: pdf_schema.php:994 +#: pdf_schema.php:993 #, php-format msgid "Schema of the %s database - Page %s" msgstr "Schema der Datenbank \"%s\" - Seite %s" -#: pdf_schema.php:1012 +#: pdf_schema.php:1011 msgid "No tables" msgstr "keine Tabellen" -#: pdf_schema.php:1031 pdf_schema.php:1140 +#: pdf_schema.php:1030 pdf_schema.php:1139 msgid "Relational schema" msgstr "Beziehungsschema" -#: pdf_schema.php:1115 +#: pdf_schema.php:1114 msgid "Table of contents" msgstr "Inhalt" -#: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:145 -#: tbl_structure.php:182 tbl_tracking.php:277 +#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 +#: tbl_structure.php:181 tbl_tracking.php:272 msgid "Extra" msgstr "Extra" @@ -4357,7 +4427,7 @@ msgstr "Zeige/Verstecke linkes Menü" msgid "Save position" msgstr "Speichere Position" -#: pmd_general.php:70 server_synchronize.php:428 server_synchronize.php:871 +#: pmd_general.php:70 server_synchronize.php:427 server_synchronize.php:870 msgid "Create table" msgstr "Erzeuge Tabelle" @@ -4436,31 +4506,31 @@ msgstr "" "nicht, klicken Sie auf das \"Anzeige-Wahl-Bild\", dann auf den passenden " "Feldnamen." -#: pmd_pdf.php:62 +#: pmd_pdf.php:60 msgid "Page has been created" msgstr "Seite wurde erstellt" -#: pmd_pdf.php:64 +#: pmd_pdf.php:62 msgid "Page creation failed" msgstr "Seitenerstellung fehlgeschlagen" -#: pmd_pdf.php:84 +#: pmd_pdf.php:82 msgid "Export/Import to scale" msgstr "Export/Import skalieren" -#: pmd_pdf.php:88 +#: pmd_pdf.php:86 msgid "recommended" msgstr "empfohlen" -#: pmd_pdf.php:93 +#: pmd_pdf.php:91 msgid "to/from page" msgstr "nach/von Seite" -#: querywindow.php:94 +#: querywindow.php:93 msgid "Import files" msgstr "Dateiimport" -#: querywindow.php:105 +#: querywindow.php:104 msgid "All" msgstr "Alle" @@ -4506,67 +4576,67 @@ msgstr "Information" msgid "Character Sets and Collations" msgstr "Zeichensätze und Kollationen" -#: server_databases.php:51 +#: server_databases.php:49 msgid "No databases selected." msgstr "Es wurden keine Datenbanken ausgewählt." -#: server_databases.php:62 +#: server_databases.php:60 #, php-format msgid "%s databases have been dropped successfully." msgstr "Es wurden %s Datenbanken gelöscht." -#: server_databases.php:87 +#: server_databases.php:85 msgid "Databases statistics" msgstr "Statistik über alle Datenbanken" -#: server_databases.php:116 server_status.php:370 +#: server_databases.php:114 server_status.php:370 #: setup/lib/messages.inc.php:114 msgid "Tables" msgstr "Tabellen" -#: server_databases.php:194 server_replication.php:180 -#: server_replication.php:208 +#: server_databases.php:192 server_replication.php:179 +#: server_replication.php:207 msgid "Master replication" msgstr "Master Replikation" -#: server_databases.php:196 server_replication.php:247 +#: server_databases.php:194 server_replication.php:246 msgid "Slave replication" msgstr "Slave Replikation" -#: server_databases.php:229 +#: server_databases.php:227 msgid "Jump to database" msgstr "Springe zu Datenbank" -#: server_databases.php:266 +#: server_databases.php:264 #, fuzzy #| msgid "Master replication" msgid "Not replicated" msgstr "Master Replikation" -#: server_databases.php:272 +#: server_databases.php:270 #, fuzzy #| msgid "Replication" msgid "Replicated" msgstr "Replikation" -#: server_databases.php:288 +#: server_databases.php:286 #, php-format msgid "Check privileges for database "%s"." msgstr "Überprüft die Rechte für die Datenbank "%s"." -#: server_databases.php:292 server_databases.php:293 +#: server_databases.php:290 server_databases.php:291 msgid "Check Privileges" msgstr "Rechte überprüfen" -#: server_databases.php:357 server_databases.php:358 +#: server_databases.php:355 server_databases.php:356 msgid "Enable Statistics" msgstr "Datenbankstatistiken aktivieren" -#: server_databases.php:361 server_databases.php:362 +#: server_databases.php:359 server_databases.php:360 msgid "Disable Statistics" msgstr "Datenbankstatistiken deaktivieren" -#: server_databases.php:365 +#: server_databases.php:363 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -4574,125 +4644,125 @@ msgstr "" "Bitte beachten Sie: Das Aktivieren der Datenbankstatistiken kann starken " "Traffic zwischen dem Web- und dem MySQL-Server zur Folge haben." -#: server_engines.php:48 +#: server_engines.php:47 msgid "Storage Engines" msgstr "Tabellenformate" -#: server_export.php:20 +#: server_export.php:18 msgid "View dump (schema) of databases" msgstr "Dump (Schema) der Datenbanken anzeigen" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:23 server_privileges.php:265 msgid "Includes all privileges except GRANT." msgstr "Enthält alle Rechte bis auf GRANT." -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:24 server_privileges.php:191 +#: server_privileges.php:514 msgid "Allows altering the structure of existing tables." msgstr "Erlaubt das Verändern der Struktur bestehender Tabellen." -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:25 server_privileges.php:207 +#: server_privileges.php:520 msgid "Allows altering and dropping stored routines." msgstr "Erlaubt das Verändern und Löschen von Routinen." -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:26 server_privileges.php:183 +#: server_privileges.php:513 msgid "Allows creating new databases and tables." msgstr "Erlaubt das Erstellen neuer Datenbanken und Tabellen." -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:27 server_privileges.php:206 +#: server_privileges.php:519 msgid "Allows creating stored routines." msgstr "Erlaubt das Erstellen von gespeicherten Routinen." -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:513 msgid "Allows creating new tables." msgstr "Erlaubt das Erstellen neuer Tabellen." -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:29 server_privileges.php:194 +#: server_privileges.php:517 msgid "Allows creating temporary tables." msgstr "Erlaubt das Erstellen temporärer Tabellen." -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:30 server_privileges.php:208 +#: server_privileges.php:553 msgid "Allows creating, dropping and renaming user accounts." msgstr "Erlaubt das Erstellen, Löschen und Umbenennen von Benutzern." -#: server_privileges.php:32 server_privileges.php:199 -#: server_privileges.php:203 server_privileges.php:526 -#: server_privileges.php:530 +#: server_privileges.php:31 server_privileges.php:198 +#: server_privileges.php:202 server_privileges.php:525 +#: server_privileges.php:529 msgid "Allows creating new views." msgstr "Erlaubt das Erstellen von Views." -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:32 server_privileges.php:182 +#: server_privileges.php:505 msgid "Allows deleting data." msgstr "Erlaubt das Löschen von Daten." -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:33 server_privileges.php:184 +#: server_privileges.php:516 msgid "Allows dropping databases and tables." msgstr "Erlaubt das Löschen ganzer Datenbanken und Tabellen." -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:34 server_privileges.php:516 msgid "Allows dropping tables." msgstr "Erlaubt das Löschen ganzer Tabellen." -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:35 server_privileges.php:199 +#: server_privileges.php:533 msgid "Allows to set up events for the event scheduler" msgstr "Erlaubt das Anlegen von Events für den Event-Scheduler" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:36 server_privileges.php:209 +#: server_privileges.php:521 msgid "Allows executing stored routines." msgstr "Erlaubt das Ausführen von Routinen." -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:37 server_privileges.php:188 +#: server_privileges.php:508 msgid "Allows importing data from and exporting data into files." msgstr "" "Erlaubt das Importieren von Daten aus und das Exportieren in externe Dateien." -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:38 server_privileges.php:539 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Erlaubt das Hinzufügen von Benutzern und Rechten ohne den die " "Benutzerprofile neu laden zu müssen." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:515 msgid "Allows creating and dropping indexes." msgstr "Erlaubt das Erstellen und Löschen von Indizes." -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:40 server_privileges.php:180 +#: server_privileges.php:441 server_privileges.php:503 msgid "Allows inserting and replacing data." msgstr "Erlaubt das Hinzufügen und Ersetzen von Daten." -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:41 server_privileges.php:195 +#: server_privileges.php:548 msgid "Allows locking tables for the current thread." msgstr "Erlaubt die Sperrung bestimmter Tabellen." -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:42 server_privileges.php:645 +#: server_privileges.php:647 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Begrenzt die Anzahl neuer Verbindungen, welche ein Benutzer pro Stunde " "aufbauen darf." -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:43 server_privileges.php:633 +#: server_privileges.php:635 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Begrenzt die Anzahl der Abfragen, welche ein Benutzer pro Stunde senden darf." -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:44 server_privileges.php:639 +#: server_privileges.php:641 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -4700,63 +4770,63 @@ msgstr "" "Begrenzt die Anzahl der Veränderungen, welche ein Benutzer pro Stunde an " "allen Datenbanken und Tabellen vornehmen darf." -#: server_privileges.php:46 server_privileges.php:652 -#: server_privileges.php:654 +#: server_privileges.php:45 server_privileges.php:651 +#: server_privileges.php:653 msgid "Limits the number of simultaneous connections the user may have." msgstr "" "Beschränkt die Anzahl der gleichzeitigen Verbindungen für diesen Benutzer." -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:46 server_privileges.php:187 +#: server_privileges.php:543 msgid "Allows viewing processes of all users" msgstr "Erlaubt die Anzeige der Prozesse aller Benutzer" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:47 server_privileges.php:189 +#: server_privileges.php:447 server_privileges.php:549 msgid "Has no effect in this MySQL version." msgstr "Hat keinen Effekt in dieser MySQL-Version." -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:48 server_privileges.php:185 +#: server_privileges.php:544 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Erlaubt das erneute Laden von Servereinstellungen und das Leeren der " "Zwischenspeicher zur Laufzeit." -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:197 +#: server_privileges.php:551 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Erlaubt dem Benutzer zu fragen, wo sich die Master- bzw. Slave-Systeme " "befinden" -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:50 server_privileges.php:196 +#: server_privileges.php:552 msgid "Needed for the replication slaves." msgstr "Wird für die Replication-Slave-Systeme benötigt." -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:51 server_privileges.php:179 +#: server_privileges.php:438 server_privileges.php:502 msgid "Allows reading data." msgstr "Erlaubt das Auslesen von Daten." -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:52 server_privileges.php:192 +#: server_privileges.php:546 msgid "Gives access to the complete list of databases." msgstr "Gewährt Zugang zur vollständigen Datenbankliste." -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:53 server_privileges.php:203 +#: server_privileges.php:205 server_privileges.php:518 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Erlaubt das Ausführen von 'SHOW CREATE VIEW'." -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:54 server_privileges.php:186 +#: server_privileges.php:545 msgid "Allows shutting down the server." msgstr "Erlaubt das Beenden des Servers." -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:55 server_privileges.php:193 +#: server_privileges.php:542 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -4766,154 +4836,154 @@ msgstr "" "bereits erreicht ist; Wird für viele administrative Operationen, wie das " "Setzen globaler Variables oder das Beenden fremder Prozesse, vorausgesetzt." -#: server_privileges.php:57 server_privileges.php:201 -#: server_privileges.php:535 +#: server_privileges.php:56 server_privileges.php:200 +#: server_privileges.php:534 msgid "Allows creating and dropping triggers" msgstr "Erlaubt das Erzeugen und Löschen Triggern" -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:57 server_privileges.php:181 +#: server_privileges.php:444 server_privileges.php:504 msgid "Allows changing data." msgstr "Erlaubt das Verändern von gespeicherten Daten." -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:58 server_privileges.php:259 msgid "No privileges." msgstr "Keine Rechte." -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:301 server_privileges.php:302 msgctxt "None privileges" msgid "None" msgstr "Kein(e)" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1710 server_privileges.php:1716 +#: server_privileges.php:430 server_privileges.php:565 +#: server_privileges.php:1714 server_privileges.php:1720 msgid "Table-specific privileges" msgstr "Tabellenspezifische Rechte" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1532 +#: server_privileges.php:431 server_privileges.php:573 +#: server_privileges.php:1536 msgid " Note: MySQL privilege names are expressed in English " msgstr "MySQL-Rechte werden auf Englisch angegeben." -#: server_privileges.php:563 server_privileges.php:1531 +#: server_privileges.php:562 server_privileges.php:1535 msgid "Global privileges" msgstr "Globale Rechte" -#: server_privileges.php:565 server_privileges.php:1710 +#: server_privileges.php:564 server_privileges.php:1714 msgid "Database-specific privileges" msgstr "Datenbankspezifische Rechte" -#: server_privileges.php:610 +#: server_privileges.php:609 msgid "Administration" msgstr "Administration" -#: server_privileges.php:630 +#: server_privileges.php:629 msgid "Resource limits" msgstr "Ressourcenbeschränkungen" -#: server_privileges.php:631 +#: server_privileges.php:630 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Der Wert 0 (null) entfernt die Beschränkung." -#: server_privileges.php:708 +#: server_privileges.php:707 msgid "Login Information" msgstr "Anmelde-Informationen" -#: server_privileges.php:802 +#: server_privileges.php:801 msgid "Do not change the password" msgstr "Passwort nicht verändert" -#: server_privileges.php:835 server_privileges.php:2197 +#: server_privileges.php:834 server_privileges.php:2201 msgid "No user found." msgstr "Es wurde kein Benutzer gefunden." -#: server_privileges.php:879 +#: server_privileges.php:878 #, php-format msgid "The user %s already exists!" msgstr "Der Benutzer %s existiert bereits!" -#: server_privileges.php:962 +#: server_privileges.php:961 msgid "You have added a new user." msgstr "Der Benutzer wurde hinzugefügt." -#: server_privileges.php:1183 +#: server_privileges.php:1184 #, php-format msgid "You have updated the privileges for %s." msgstr "Die Rechte für %s wurden geändert." -#: server_privileges.php:1207 +#: server_privileges.php:1208 #, php-format msgid "You have revoked the privileges for %s" msgstr "Sie haben die Rechte für %s entfernt." -#: server_privileges.php:1243 +#: server_privileges.php:1244 #, php-format msgid "The password for %s was changed successfully." msgstr "Das Passwort für %s wurde geändert." -#: server_privileges.php:1263 +#: server_privileges.php:1264 #, php-format msgid "Deleting %s" msgstr "Lösche %s" -#: server_privileges.php:1274 +#: server_privileges.php:1275 msgid "No users selected for deleting!" msgstr "Es wurden keine Benutzer zum Löschen ausgewählt!" -#: server_privileges.php:1277 +#: server_privileges.php:1278 msgid "Reloading the privileges" msgstr "Lade die Benutzertabellen neu" -#: server_privileges.php:1292 +#: server_privileges.php:1296 msgid "The selected users have been deleted successfully." msgstr "Die gewählten Benutzer wurden gelöscht." -#: server_privileges.php:1327 +#: server_privileges.php:1331 msgid "The privileges were reloaded successfully." msgstr "Die Benutzerprofile wurden neu geladen." -#: server_privileges.php:1355 server_privileges.php:1641 +#: server_privileges.php:1359 server_privileges.php:1645 msgid "Edit Privileges" msgstr "Rechte ändern" -#: server_privileges.php:1364 +#: server_privileges.php:1368 msgid "Revoke" msgstr "Entfernen" -#: server_privileges.php:1396 +#: server_privileges.php:1400 msgid "User overview" msgstr "Benutzerübersicht" -#: server_privileges.php:1533 server_privileges.php:1715 -#: server_privileges.php:2064 +#: server_privileges.php:1537 server_privileges.php:1719 +#: server_privileges.php:2068 msgid "Grant" msgstr "GRANT" -#: server_privileges.php:1552 server_privileges.php:2154 +#: server_privileges.php:1556 server_privileges.php:2158 msgid "Any" msgstr "Jeder" -#: server_privileges.php:1601 server_privileges.php:1625 -#: server_privileges.php:2019 server_privileges.php:2208 +#: server_privileges.php:1605 server_privileges.php:1629 +#: server_privileges.php:2023 server_privileges.php:2212 msgid "Add a new User" msgstr "Neuen Benutzer hinzufügen" -#: server_privileges.php:1606 +#: server_privileges.php:1610 msgid "Remove selected users" msgstr "Die ausgewählten Benutzer löschen" -#: server_privileges.php:1609 +#: server_privileges.php:1613 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Den Benutzern alle Rechte entziehen und sie anschließend aus den " "Benutzertabellen löschen." -#: server_privileges.php:1610 server_privileges.php:1611 -#: server_privileges.php:1612 +#: server_privileges.php:1614 server_privileges.php:1615 +#: server_privileges.php:1616 msgid "Drop the databases that have the same names as the users." msgstr "Die gleichnamigen Datenbanken löschen." -#: server_privileges.php:1628 +#: server_privileges.php:1632 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4927,93 +4997,93 @@ msgstr "" "vorgenommen wurden. In diesem Fall sollten Sie %sdie Benutzerprofile neu " "laden%s bevor Sie fortfahren." -#: server_privileges.php:1676 +#: server_privileges.php:1680 msgid "The selected user was not found in the privilege table." msgstr "Der gewählte Benutzer wurde in der Benutzertabelle nicht gefunden." -#: server_privileges.php:1716 +#: server_privileges.php:1720 msgid "Column-specific privileges" msgstr "Spaltenspezifische Rechte" -#: server_privileges.php:1917 +#: server_privileges.php:1921 msgid "Add privileges on the following database" msgstr "Rechte zu folgender Datenbank hinzufügen" -#: server_privileges.php:1935 +#: server_privileges.php:1939 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "Platzhalter _ und % sollten mit einem \\ escaped werden, um das gewünschte " "Sonderzeichen einzubinden" -#: server_privileges.php:1938 +#: server_privileges.php:1942 msgid "Add privileges on the following table" msgstr "Rechte zu folgender Tabelle hinzufügen" -#: server_privileges.php:1995 +#: server_privileges.php:1999 msgid "Change Login Information / Copy User" msgstr "Anmelde-Information ändern / Benutzer kopieren" -#: server_privileges.php:1998 +#: server_privileges.php:2002 msgid "Create a new user with the same privileges and ..." msgstr "Erstelle einen neuen Benutzer mit identischen Rechten und ..." -#: server_privileges.php:2000 +#: server_privileges.php:2004 msgid "... keep the old one." msgstr "... behalte den alten bei." -#: server_privileges.php:2001 +#: server_privileges.php:2005 msgid " ... delete the old one from the user tables." msgstr " ... lösche den alten von den Benutzertabellen." -#: server_privileges.php:2002 +#: server_privileges.php:2006 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr " ... entziehe dem alten alle Rechte und lösche ihn anschließend." -#: server_privileges.php:2003 +#: server_privileges.php:2007 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr " ... lösche den alten und lade anschließend die Benutzertabellen neu." -#: server_privileges.php:2025 +#: server_privileges.php:2029 msgid "Database for user" msgstr "Datenbank für Benutzer" -#: server_privileges.php:2029 +#: server_privileges.php:2033 msgctxt "Create none database for user" msgid "None" msgstr "Kein(e)" -#: server_privileges.php:2030 +#: server_privileges.php:2034 msgid "Create database with same name and grant all privileges" msgstr "Erstelle eine Datenbank mit gleichem Namen und gewähre alle Rechte" -#: server_privileges.php:2031 +#: server_privileges.php:2035 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" "Gewähre alle Rechte auf Datenbanken die mit dem Benuterznamen beginnen " "(username\\_%)" -#: server_privileges.php:2034 +#: server_privileges.php:2038 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Gewähre alle Rechte auf die Datenbank "%s"" -#: server_privileges.php:2057 +#: server_privileges.php:2061 #, php-format msgid "Users having access to "%s"" msgstr "Benutzer mit Zugriff auf "%s"" -#: server_privileges.php:2165 +#: server_privileges.php:2169 msgid "global" msgstr "global" -#: server_privileges.php:2167 +#: server_privileges.php:2171 msgid "database-specific" msgstr "datenbankspezifisch" -#: server_privileges.php:2169 +#: server_privileges.php:2173 msgid "wildcard" msgstr "Platzhalter" @@ -5034,43 +5104,43 @@ msgstr "" msgid "ID" msgstr "ID" -#: server_replication.php:50 +#: server_replication.php:49 msgid "Unknown error" msgstr "Unbekannter Fehler" -#: server_replication.php:57 +#: server_replication.php:56 #, php-format msgid "Unable to connect to master %s." msgstr "Verbindung zu Master %s fehlgeschlagen." -#: server_replication.php:64 +#: server_replication.php:63 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "\"log position\" auf Master nicht lesbar. Rechteproblem?" -#: server_replication.php:70 +#: server_replication.php:69 msgid "Unable to change master" msgstr "Kann Master nicht wechseln" -#: server_replication.php:73 +#: server_replication.php:72 #, php-format msgid "Master server changed succesfully to %s" msgstr "Master-Server wurde erfolgreich auf %s geändert." -#: server_replication.php:181 +#: server_replication.php:180 msgid "This server is configured as master in a replication process." msgstr "" "Dieser Server ist als Master in einem Replikations-Prozess konfiguriert." -#: server_replication.php:183 server_status.php:391 +#: server_replication.php:182 server_status.php:391 msgid "Show master status" msgstr "Zeige den Master-Status" -#: server_replication.php:186 +#: server_replication.php:185 msgid "Show connected slaves" msgstr "Zeige verbundene Slaves" -#: server_replication.php:209 +#: server_replication.php:208 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -5079,11 +5149,11 @@ msgstr "" "Dieser Server ist als nicht Master in einem Replikations-Prozess " "konfiguriert. Möchten Sie ihn konfigurieren?" -#: server_replication.php:216 +#: server_replication.php:215 msgid "Master configuration" msgstr "Master-Konfiguration" -#: server_replication.php:217 +#: server_replication.php:216 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -5097,19 +5167,19 @@ msgstr "" "repliziert werden soll)/nNur bestimmte Datenbanken replizieren/nBitte wählen " "Sie:" -#: server_replication.php:220 +#: server_replication.php:219 msgid "Replicate all databases; Ignore:" msgstr "Repliziere alle Datenbanken bis auf:" -#: server_replication.php:221 +#: server_replication.php:220 msgid "Ignore all databases; Replicate:" msgstr "Repliziere nur:" -#: server_replication.php:224 +#: server_replication.php:223 msgid "Please select databases:" msgstr "Bitte Datenbank auswählen" -#: server_replication.php:227 +#: server_replication.php:226 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -5117,7 +5187,7 @@ msgstr "" "Nun die folgenden Zeilen am Ende des [mysqld] Abschnitts in der my.cnf " "hinzufügen. Danach den MySQL-Server neu starten." -#: server_replication.php:229 +#: server_replication.php:228 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " @@ -5127,86 +5197,86 @@ msgstr "" "Daraufhin sollten Sie eien Meldung sehen, dass dieser Server als Master " "konfiguriert ist ." -#: server_replication.php:292 +#: server_replication.php:291 msgid "Slave SQL Thread not running!" msgstr "Slave SQL Thread läuft nicht!" -#: server_replication.php:295 +#: server_replication.php:294 msgid "Slave IO Thread not running!" msgstr "Slave IO Thread läuft nicht!" -#: server_replication.php:304 +#: server_replication.php:303 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" "Dieser Server ist als Slave in eienem Replikations Prozess konfiguriert. " "Möchten Sie:" -#: server_replication.php:307 +#: server_replication.php:306 msgid "See slave status table" msgstr "Die Slave Statustabelle sehen" -#: server_replication.php:310 +#: server_replication.php:309 msgid "Synchronize databases with master" msgstr "Die Datenbanken mit dem Master abgleichen" -#: server_replication.php:321 +#: server_replication.php:320 msgid "Control slave:" msgstr "Kontrol-Slave" -#: server_replication.php:324 +#: server_replication.php:323 msgid "Full start" msgstr "Alles starten" -#: server_replication.php:324 +#: server_replication.php:323 msgid "Full stop" msgstr "Alles stoppen" -#: server_replication.php:325 +#: server_replication.php:324 msgid "Reset slave" msgstr "Slave zurücksetzen" -#: server_replication.php:326 +#: server_replication.php:325 #, php-format msgid "SQL Thread %s only" msgstr "Nur SQL Thread %s" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 msgid "Start" msgstr "Start" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 msgid "Stop" msgstr "Stop" -#: server_replication.php:327 +#: server_replication.php:326 #, php-format msgid "IO Thread %s only" msgstr "Nur IO Thread %s" -#: server_replication.php:331 +#: server_replication.php:330 msgid "Error management:" msgstr "Fehlerbehandlung:" -#: server_replication.php:333 +#: server_replication.php:332 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" "Überspringen von Fehlern kann zu Synchronisationsverlust zwischen Master und " "Slave führen!" -#: server_replication.php:335 +#: server_replication.php:334 msgid "Skip current error" msgstr "Überspringe aktuellen Fehler" -#: server_replication.php:336 +#: server_replication.php:335 msgid "Skip next" msgstr "Überspringe nächsten" -#: server_replication.php:339 +#: server_replication.php:338 msgid "errors." msgstr "Fehler." -#: server_replication.php:354 +#: server_replication.php:353 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -6054,110 +6124,110 @@ msgstr "Abfrageart" msgid "Replication status" msgstr "Replikations-Status" -#: server_synchronize.php:93 +#: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "Es konnte keine Verbindung zu Quell-Datenbank hergestellt werden" -#: server_synchronize.php:96 +#: server_synchronize.php:95 msgid "Could not connect to the target" msgstr "Es konnte keine Verbindung zu Ziel-Datenbank hergestellt werden" -#: server_synchronize.php:121 server_synchronize.php:124 tbl_create.php:77 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "Datenbank '%s' existiert nicht." -#: server_synchronize.php:264 +#: server_synchronize.php:263 msgid "Structure Synchronization" msgstr "Strukturabgleich" -#: server_synchronize.php:271 +#: server_synchronize.php:270 msgid "Data Synchronization" msgstr "Datenabgleich" -#: server_synchronize.php:399 server_synchronize.php:838 +#: server_synchronize.php:398 server_synchronize.php:837 msgid "not present" msgstr "nicht vorhanden" -#: server_synchronize.php:423 server_synchronize.php:866 +#: server_synchronize.php:422 server_synchronize.php:865 msgid "Structure Difference" msgstr "Struktur-Unterschied" -#: server_synchronize.php:424 server_synchronize.php:867 +#: server_synchronize.php:423 server_synchronize.php:866 msgid "Data Difference" msgstr "Daten-Unterschied" -#: server_synchronize.php:429 server_synchronize.php:872 +#: server_synchronize.php:428 server_synchronize.php:871 msgid "Add column(s)" msgstr "Spalte(n) einfügen" -#: server_synchronize.php:430 server_synchronize.php:873 +#: server_synchronize.php:429 server_synchronize.php:872 msgid "Remove column(s)" msgstr "Spalte(n) entfernen" -#: server_synchronize.php:431 server_synchronize.php:874 +#: server_synchronize.php:430 server_synchronize.php:873 msgid "Alter column(s)" msgstr "Spalte(n) ändern" -#: server_synchronize.php:432 server_synchronize.php:875 +#: server_synchronize.php:431 server_synchronize.php:874 msgid "Remove index(s)" msgstr "Index/Indices entfernen" -#: server_synchronize.php:433 server_synchronize.php:876 +#: server_synchronize.php:432 server_synchronize.php:875 msgid "Apply index(s)" msgstr "Index/Indices anwenden" -#: server_synchronize.php:434 server_synchronize.php:877 +#: server_synchronize.php:433 server_synchronize.php:876 msgid "Update row(s)" msgstr "Zeile(n) updaten" -#: server_synchronize.php:435 server_synchronize.php:878 +#: server_synchronize.php:434 server_synchronize.php:877 msgid "Insert row(s)" msgstr "Zeile(n) einfügen" -#: server_synchronize.php:445 server_synchronize.php:889 +#: server_synchronize.php:444 server_synchronize.php:888 msgid "Would you like to delete all the previous rows from target tables?" msgstr "Möchten Sie alle vorhergehenden zeilen aus den Ziel-Tabellen löschen?" -#: server_synchronize.php:448 server_synchronize.php:893 +#: server_synchronize.php:447 server_synchronize.php:892 msgid "Apply Selected Changes" msgstr "Ausgewählte Änderungen anwenden" -#: server_synchronize.php:450 server_synchronize.php:895 +#: server_synchronize.php:449 server_synchronize.php:894 msgid "Synchronize Databases" msgstr "Datenbanken abgleichen" -#: server_synchronize.php:463 +#: server_synchronize.php:462 msgid "Selected target tables have been synchronized with source tables." msgstr "Ausgewählte Ziel-Tabellen wurden mit Quell-Tabellen abgeglichen." -#: server_synchronize.php:941 +#: server_synchronize.php:940 msgid "Target database has been synchronized with source database" msgstr "Ziel-Tabelle wurde mit Quell-Tabelle abgeglichen" -#: server_synchronize.php:1002 +#: server_synchronize.php:1001 msgid "The following queries have been executed:" msgstr "Die folgenden Abfragen wurden ausgeführt:" -#: server_synchronize.php:1121 +#: server_synchronize.php:1120 msgid "Enter manually" msgstr "Manuell eingeben" -#: server_synchronize.php:1122 +#: server_synchronize.php:1121 msgid "Current connection" msgstr "Aktuelle Verbindung" -#: server_synchronize.php:1151 +#: server_synchronize.php:1150 #, php-format msgid "Configuration: %s" msgstr "Konfiguration: %s" -#: server_synchronize.php:1166 +#: server_synchronize.php:1165 msgid "Socket" msgstr "Socket" -#: server_synchronize.php:1212 +#: server_synchronize.php:1211 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -6758,10 +6828,15 @@ msgid "Signon login options" msgstr "Optionen für Signon-Login" #: setup/lib/messages.inc.php:128 +#, fuzzy +#| msgid "" +#| "Configure phpMyAdmin database to gain access to additional features, see " +#| "[a@../Documentation.html#linked-tables]linked-tables infrastructure[/a] " +#| "in documentation" msgid "" "Configure phpMyAdmin database to gain access to additional features, see " -"[a@../Documentation.html#linked-tables]linked-tables infrastructure[/a] in " -"documentation" +"[a@../Documentation.html#linked-tables]phpMyAdmin configuration storage[/a] " +"in documentation" msgstr "" "Konfigurieren Sie eine phpMyAdmin-Datenbank um zusätzliche Features zu " "erhalten, siehe [a@../Documentation.html#linked-tables]linked-tables " @@ -7971,116 +8046,116 @@ msgstr "" msgid "ZIP" msgstr "ZIP" -#: sql.php:495 tbl_replace.php:385 +#: sql.php:494 tbl_replace.php:384 #, php-format msgid "Inserted row id: %1$d" msgstr "ID der eingefügten Zeile: %1$d" -#: sql.php:512 +#: sql.php:511 msgid "Showing as PHP code" msgstr "Ansicht als PHP Code" -#: sql.php:515 tbl_replace.php:359 +#: sql.php:514 tbl_replace.php:358 msgid "Showing SQL query" msgstr "Ansicht als SQL Abfrage" -#: sql.php:517 +#: sql.php:516 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "SQL validieren" -#: sql.php:638 +#: sql.php:631 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Warnungen bei den Indizes der Tabelle `%s`" -#: sql.php:670 +#: sql.php:663 msgid "Label" msgstr "Titel" -#: tbl_addfield.php:188 tbl_alter.php:102 tbl_indexes.php:97 +#: tbl_addfield.php:185 tbl_alter.php:100 tbl_indexes.php:97 #, php-format msgid "Table %1$s has been altered successfully" msgstr "Die Tabelle %1$s wurde erfolgreich geändert" -#: tbl_change.php:250 tbl_select.php:26 tbl_select.php:27 tbl_select.php:30 -#: tbl_select.php:33 +#: tbl_change.php:245 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_select.php:32 msgid "Browse foreign values" msgstr "Fremdschlüsselwerte ansehen" -#: tbl_change.php:280 tbl_change.php:318 +#: tbl_change.php:275 tbl_change.php:313 msgid "Function" msgstr "Funktion" -#: tbl_change.php:300 tbl_indexes.php:199 tbl_indexes.php:224 +#: tbl_change.php:295 tbl_indexes.php:198 tbl_indexes.php:223 msgid "Ignore" msgstr "Ignorieren" -#: tbl_change.php:725 +#: tbl_change.php:720 #, fuzzy #| msgid " Because of its length,
                            this field might not be editable " msgid " Because of its length,
                            this column might not be editable " msgstr "Wegen seiner Länge ist dieses
                            Feld vielleicht nicht editierbar." -#: tbl_change.php:884 +#: tbl_change.php:835 msgid "Remove BLOB Repository Reference" msgstr "BLOB-Referenz entfernen" -#: tbl_change.php:890 +#: tbl_change.php:841 msgid "Binary - do not edit" msgstr "Binär - nicht editierbar!" -#: tbl_change.php:983 +#: tbl_change.php:889 msgid "Upload to BLOB repository" msgstr "Zu BLOB-Repository hochladen" -#: tbl_change.php:1128 +#: tbl_change.php:1026 msgid "Insert as new row" msgstr "Als neuen Datensatz speichern " -#: tbl_change.php:1129 +#: tbl_change.php:1027 msgid "Insert as new row and ignore errors" msgstr "Als neue Zeile einfügen und Fehler ignorieren" -#: tbl_change.php:1130 +#: tbl_change.php:1028 msgid "Show insert query" msgstr "Zeige insert Abfrage" -#: tbl_change.php:1145 +#: tbl_change.php:1043 msgid "Go back to previous page" msgstr "zurück" -#: tbl_change.php:1146 +#: tbl_change.php:1044 msgid "Insert another new row" msgstr "anschließend einen weiteren Datensatz einfügen" -#: tbl_change.php:1150 +#: tbl_change.php:1048 msgid "Go back to this page" msgstr "Zurück zu dieser Seite" -#: tbl_change.php:1158 +#: tbl_change.php:1056 msgid "Edit next row" msgstr "nächste Zeile bearbeiten" -#: tbl_change.php:1169 +#: tbl_change.php:1067 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Mittels TAB-Taste von Feld zu Feld springen, oder mit STRG+Pfeiltasten " "beliebig bewegen" -#: tbl_change.php:1207 +#: tbl_change.php:1105 #, php-format msgid "Restart insertion with %s rows" msgstr "Einfügen mit %s Zeilen neu starten" -#: tbl_create.php:57 +#: tbl_create.php:55 #, php-format msgid "Table %s already exists!" msgstr "Die Tabelle %s existiert bereits!" -#: tbl_create.php:244 +#: tbl_create.php:241 #, php-format msgid "Table %1$s has been created." msgstr "Die Tabelle %1$s wurde erzeugt." @@ -8101,193 +8176,193 @@ msgstr "Kann Index nicht in PRIMARY umbenennen!" msgid "No index parts defined!" msgstr "Keine Indizes definiert." -#: tbl_indexes.php:159 +#: tbl_indexes.php:158 msgid "Create a new index" msgstr "Neuen Index anlegen" -#: tbl_indexes.php:161 +#: tbl_indexes.php:160 msgid "Modify an index" msgstr "Index modifizieren" -#: tbl_indexes.php:167 +#: tbl_indexes.php:166 msgid "Index name:" msgstr "Indexname:" -#: tbl_indexes.php:173 +#: tbl_indexes.php:172 msgid "Index type:" msgstr "Indextyp:" -#: tbl_indexes.php:183 +#: tbl_indexes.php:182 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "Der Name des Primärschlüssels darf nur \"PRIMARY\" lauten." -#: tbl_indexes.php:250 +#: tbl_indexes.php:249 #, php-format msgid "Add to index  %s column(s)" msgstr "%s Spalten zum Index hinzufügen" -#: tbl_indexes.php:255 tbl_structure.php:588 tbl_structure.php:599 +#: tbl_indexes.php:254 tbl_structure.php:586 tbl_structure.php:597 msgid "Column count has to be larger than zero." msgstr "Die Spaltenanzahl muss größer als 0 sein." -#: tbl_move_copy.php:45 +#: tbl_move_copy.php:44 msgid "Can't move table to same one!" msgstr "Tabelle kann nicht mit gleichem Namen verschoben werden!" -#: tbl_move_copy.php:47 +#: tbl_move_copy.php:46 msgid "Can't copy table to same one!" msgstr "Tabelle kann nicht mit gleichem Namen kopiert werden!" -#: tbl_move_copy.php:55 +#: tbl_move_copy.php:54 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabelle %s wurde nach %s verschoben." -#: tbl_move_copy.php:57 +#: tbl_move_copy.php:56 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabelle %s wurde nach %s kopiert." -#: tbl_move_copy.php:81 +#: tbl_move_copy.php:80 msgid "The table name is empty!" msgstr "Der Tabellenname ist leer!" -#: tbl_operations.php:248 +#: tbl_operations.php:246 msgid "Alter table order by" msgstr "Tabelle sortieren nach" -#: tbl_operations.php:257 +#: tbl_operations.php:255 msgid "(singly)" msgstr "(einmalig)" -#: tbl_operations.php:277 +#: tbl_operations.php:275 msgid "Move table to (database.table):" msgstr "Verschiebe Tabelle nach (Datenbank.Tabellenname):" -#: tbl_operations.php:335 +#: tbl_operations.php:333 msgid "Table options" msgstr "Tabellenoptionen" -#: tbl_operations.php:339 +#: tbl_operations.php:337 msgid "Rename table to" msgstr "Tabelle umbenennen in" -#: tbl_operations.php:510 +#: tbl_operations.php:508 msgid "Copy table to (database.table):" msgstr "Kopiere Tabelle nach (Datenbank.Tabellenname):" -#: tbl_operations.php:557 +#: tbl_operations.php:555 msgid "Switch to copied table" msgstr "Zur kopierten Tabelle wechseln" -#: tbl_operations.php:569 +#: tbl_operations.php:567 msgid "Table maintenance" msgstr "Hilfsmittel" -#: tbl_operations.php:590 +#: tbl_operations.php:588 msgid "Defragment table" msgstr "Tabelle defragmentieren" -#: tbl_operations.php:629 +#: tbl_operations.php:627 #, php-format msgid "Table %s has been flushed" msgstr "" "Die Tabelle %s wurde geschlossen und zwischengespeicherte Daten gespeichert." -#: tbl_operations.php:635 +#: tbl_operations.php:633 msgid "Flush the table (FLUSH)" msgstr "Leeren des Tabellencaches (\"FLUSH\")" -#: tbl_operations.php:650 +#: tbl_operations.php:648 msgid "Partition maintenance" msgstr "Partitions-Hilfsmittel" -#: tbl_operations.php:658 +#: tbl_operations.php:656 #, php-format msgid "Partition %s" msgstr "Partition %s" -#: tbl_operations.php:661 +#: tbl_operations.php:659 msgid "Analyze" msgstr "Analysieren" -#: tbl_operations.php:662 +#: tbl_operations.php:660 msgid "Check" msgstr "Überprüfen" -#: tbl_operations.php:663 +#: tbl_operations.php:661 msgid "Optimize" msgstr "Optimieren" -#: tbl_operations.php:664 +#: tbl_operations.php:662 msgid "Rebuild" msgstr "Neuaufbauen" -#: tbl_operations.php:665 +#: tbl_operations.php:663 msgid "Repair" msgstr "Reparieren" -#: tbl_operations.php:677 +#: tbl_operations.php:675 msgid "Remove partitioning" msgstr "Entferne die Partitionierung" -#: tbl_operations.php:703 +#: tbl_operations.php:701 msgid "Check referential integrity:" msgstr "Prüfe referentielle Integrität:" -#: tbl_printview.php:73 +#: tbl_printview.php:72 msgid "Show tables" msgstr "Tabellen anzeigen" -#: tbl_printview.php:308 tbl_structure.php:655 +#: tbl_printview.php:307 tbl_structure.php:653 msgid "Space usage" msgstr "Speicherplatzverbrauch" -#: tbl_printview.php:312 tbl_structure.php:659 +#: tbl_printview.php:311 tbl_structure.php:657 msgid "Usage" msgstr "Verbrauch" -#: tbl_printview.php:339 tbl_structure.php:686 +#: tbl_printview.php:338 tbl_structure.php:684 msgid "Effective" msgstr "Effektiv" -#: tbl_printview.php:364 tbl_structure.php:724 +#: tbl_printview.php:363 tbl_structure.php:722 msgid "Row Statistics" msgstr "Zeilenstatistik" -#: tbl_printview.php:367 tbl_structure.php:727 +#: tbl_printview.php:366 tbl_structure.php:725 msgid "Statements" msgstr "Angaben" -#: tbl_printview.php:378 tbl_structure.php:739 +#: tbl_printview.php:377 tbl_structure.php:737 msgid "static" msgstr "statisch" -#: tbl_printview.php:380 tbl_structure.php:741 +#: tbl_printview.php:379 tbl_structure.php:739 msgid "dynamic" msgstr "dynamisch" -#: tbl_printview.php:402 tbl_structure.php:784 +#: tbl_printview.php:401 tbl_structure.php:782 msgid "Row length" msgstr "Zeilenlänge" -#: tbl_printview.php:412 tbl_structure.php:792 +#: tbl_printview.php:411 tbl_structure.php:790 msgid " Row size " msgstr "Zeilengröße" -#: tbl_relation.php:278 +#: tbl_relation.php:276 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" "Fehler beim Erzeugen eines Fremdschlüssels für %1$s (überprüfen Sie die " "Datentypen)" -#: tbl_relation.php:404 +#: tbl_relation.php:402 msgid "Internal relation" msgstr "Interne Beziehung" -#: tbl_relation.php:406 +#: tbl_relation.php:404 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -8295,7 +8370,7 @@ msgstr "" "Eine interne Beziehung ist nicht notwendig, wenn bereits ein entsprechender " "FOREIGN KEY existiert." -#: tbl_relation.php:412 +#: tbl_relation.php:410 msgid "Foreign key constraint" msgstr "Beschränkung für auswärtige Schlüssel" @@ -8303,118 +8378,118 @@ msgstr "Beschränkung für auswärtige Schlüssel" msgid "No rows selected" msgstr "Es wurden keine Datensätze ausgewählt." -#: tbl_select.php:130 +#: tbl_select.php:129 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Suche über Beispielwerte (\"query by example\") (Platzhalter: \"%\")" -#: tbl_select.php:136 +#: tbl_select.php:135 msgid "Operator" msgstr "Operator" -#: tbl_select.php:267 +#: tbl_select.php:266 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "Felder auswählen (min. eines):" -#: tbl_select.php:285 +#: tbl_select.php:284 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Eigenes Filterkriterium (Argumente für den WHERE-Ausdruck):" -#: tbl_select.php:292 +#: tbl_select.php:291 msgid "Number of rows per page" msgstr "Einträge pro Seite" -#: tbl_select.php:298 +#: tbl_select.php:297 msgid "Display order:" msgstr "Sortierung nach:" -#: tbl_structure.php:160 +#: tbl_structure.php:159 msgid "Browse distinct values" msgstr "Zeige nur unterschiedliche Werte" -#: tbl_structure.php:360 +#: tbl_structure.php:358 msgctxt "None for default" msgid "None" msgstr "kein(e)" -#: tbl_structure.php:373 +#: tbl_structure.php:371 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Column %s has been dropped" msgstr "Die Tabelle %s wurde gelöscht." -#: tbl_structure.php:384 +#: tbl_structure.php:382 #, php-format msgid "A primary key has been added on %s" msgstr "Ein Primärschlüssel wurde in %s erzeugt" -#: tbl_structure.php:399 tbl_structure.php:413 tbl_structure.php:427 +#: tbl_structure.php:397 tbl_structure.php:411 tbl_structure.php:425 #, php-format msgid "An index has been added on %s" msgstr "Ein Index wurde in %s erzeugt" -#: tbl_structure.php:505 tbl_structure.php:507 +#: tbl_structure.php:503 tbl_structure.php:505 msgid "Relation view" msgstr "Beziehungsübersicht" -#: tbl_structure.php:514 tbl_structure.php:516 +#: tbl_structure.php:512 tbl_structure.php:514 msgid "Propose table structure" msgstr "Tabellenstruktur analysieren" -#: tbl_structure.php:539 +#: tbl_structure.php:537 #, fuzzy #| msgid "Add column(s)" msgid "Add column" msgstr "Spalte(n) einfügen" -#: tbl_structure.php:553 +#: tbl_structure.php:551 msgid "At End of Table" msgstr "An das Ende der Tabelle" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At Beginning of Table" msgstr "An den Anfang der Tabelle" -#: tbl_structure.php:555 +#: tbl_structure.php:553 #, php-format msgid "After %s" msgstr "Nach %s" -#: tbl_structure.php:593 +#: tbl_structure.php:591 #, php-format msgid "Create an index on  %s columns" msgstr "Index über %s Spalten anlegen" -#: tbl_structure.php:755 +#: tbl_structure.php:753 msgid "partitioned" msgstr "partitioniert" -#: tbl_tracking.php:113 +#: tbl_tracking.php:109 #, php-format msgid "Tracking report for table `%s`" msgstr "Verlaufs-Report für Tabelle %s" -#: tbl_tracking.php:186 +#: tbl_tracking.php:182 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "Version %s ist erstellt, Tracking von %s.%s ist aktiviert." -#: tbl_tracking.php:194 +#: tbl_tracking.php:190 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "Tracking von %s.%s , Version %s ist deaktiviert." -#: tbl_tracking.php:202 +#: tbl_tracking.php:198 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "Tracking von %s.%s , Version %s ist aktiviert." -#: tbl_tracking.php:212 +#: tbl_tracking.php:208 msgid "SQL statements executed." msgstr "SQL Befehle ausgeführt." -#: tbl_tracking.php:219 +#: tbl_tracking.php:215 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -8423,110 +8498,110 @@ msgstr "" "Datenbank realisieren. Bitte stellen Sie sicher, dass Sie die dafür " "benötigten Rechte besitzen." -#: tbl_tracking.php:220 +#: tbl_tracking.php:216 msgid "Comment out these two lines if you do not need them." msgstr "" "Kommentieren Sie diese beiden Zeilen aus, wenn Sie diese nicht benötigen." -#: tbl_tracking.php:229 +#: tbl_tracking.php:225 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "SQL Befehle exportiert." -#: tbl_tracking.php:250 tbl_tracking.php:378 +#: tbl_tracking.php:245 tbl_tracking.php:373 msgid "Close" msgstr "Schliesse" -#: tbl_tracking.php:261 +#: tbl_tracking.php:256 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Version %s Schnapschuss (SQL code)" -#: tbl_tracking.php:380 +#: tbl_tracking.php:375 msgid "Tracking statements" msgstr "Verfolge die Befehle" -#: tbl_tracking.php:396 tbl_tracking.php:503 +#: tbl_tracking.php:391 tbl_tracking.php:498 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "Zeige %s mit Datum von %s bis %s und Benutzer %s %s" -#: tbl_tracking.php:409 tbl_tracking.php:460 +#: tbl_tracking.php:404 tbl_tracking.php:455 msgid "Date" msgstr "Datum" -#: tbl_tracking.php:410 tbl_tracking.php:461 +#: tbl_tracking.php:405 tbl_tracking.php:456 msgid "Username" msgstr "Benutzername" -#: tbl_tracking.php:411 +#: tbl_tracking.php:406 msgid "Data definition statement" msgstr "DDL Befehl" -#: tbl_tracking.php:462 +#: tbl_tracking.php:457 msgid "Data manipulation statement" msgstr "DML Befehl" -#: tbl_tracking.php:506 +#: tbl_tracking.php:501 msgid "SQL dump (file download)" msgstr "SQL Dump (Datei Download)" -#: tbl_tracking.php:507 +#: tbl_tracking.php:502 msgid "SQL dump" msgstr "SQL Dump" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "This option will replace your table and contained data." msgstr "Diese Option ersetzt Ihre Tabelle und enthaltene Daten." -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "SQL execution" msgstr "SQL Ausführung" -#: tbl_tracking.php:520 +#: tbl_tracking.php:515 #, php-format msgid "Export as %s" msgstr "Export als %s" -#: tbl_tracking.php:560 +#: tbl_tracking.php:555 msgid "Show versions" msgstr "Zeige Versionen" -#: tbl_tracking.php:592 +#: tbl_tracking.php:587 msgid "Version" msgstr "Version" -#: tbl_tracking.php:639 +#: tbl_tracking.php:634 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "Deaktiviere Tracking Mechanismus für %s.%s" -#: tbl_tracking.php:641 +#: tbl_tracking.php:636 msgid "Deactivate now" msgstr "Jetzt deaktivieren" -#: tbl_tracking.php:652 +#: tbl_tracking.php:647 #, php-format msgid "Activate tracking for %s.%s" msgstr "Aktiviere tracking mechanismus für %s.%s" -#: tbl_tracking.php:654 +#: tbl_tracking.php:649 msgid "Activate now" msgstr "Jetzt aktivieren" -#: tbl_tracking.php:667 +#: tbl_tracking.php:662 #, php-format msgid "Create version %s of %s.%s" msgstr "Erzeuge Version %s von %s.%s" -#: tbl_tracking.php:671 +#: tbl_tracking.php:666 msgid "Track these data definition statements:" msgstr "Verfolge diese Datenbeschreibungsbefehle (DDL):" -#: tbl_tracking.php:679 +#: tbl_tracking.php:674 msgid "Track these data manipulation statements:" msgstr "Verfolge diese Datenbearbeitungsbefehle (DML):" -#: tbl_tracking.php:687 +#: tbl_tracking.php:682 msgid "Create version" msgstr "Erzeuge Version" @@ -8574,10 +8649,34 @@ msgstr "Benutzer wurde geändert." msgid "VIEW name" msgstr "VIEW Name" -#: view_operations.php:92 +#: view_operations.php:91 msgid "Rename view to" msgstr "View umbenennen in" +#~ msgid "BLOB Repository" +#~ msgstr "BLOB-Repository" + +#~ msgctxt "BLOB repository" +#~ msgid "Enabled" +#~ msgstr "Aktiviert" + +#~ msgid "Disable" +#~ msgstr "Deaktivieren" + +#~ msgid "Damaged" +#~ msgstr "Beschädigt" + +#~ msgctxt "BLOB repository" +#~ msgid "Repair" +#~ msgstr "Reparieren" + +#~ msgctxt "BLOB repository" +#~ msgid "Disabled" +#~ msgstr "Deaktiviert" + +#~ msgid "Enable" +#~ msgstr "Aktivieren" + #~ msgid "" #~ "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " #~ "extension. Please check your PHP configuration." diff --git a/po/el.po b/po/el.po index 2c3f93eb0..7dfa00393 100644 --- a/po/el.po +++ b/po/el.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-21 13:53+0200\n" +"POT-Creation-Date: 2010-07-26 17:18+0200\n" "PO-Revision-Date: 2010-03-30 23:16+0200\n" "Last-Translator: Michal \n" "Language-Team: greek \n" @@ -14,19 +14,19 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.1\n" -#: browse_foreigners.php:37 browse_foreigners.php:58 -#: libraries/display_tbl.lib.php:416 server_privileges.php:1506 +#: browse_foreigners.php:36 browse_foreigners.php:57 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1510 msgid "Show all" msgstr "Εμφάνιση όλων" -#: browse_foreigners.php:81 libraries/common.lib.php:2313 -#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:393 -#: libraries/export/pdf.php:146 pdf_schema.php:282 pdf_schema.php:1122 -#: pdf_schema.php:1138 +#: browse_foreigners.php:80 libraries/common.lib.php:2318 +#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:392 +#: libraries/export/pdf.php:146 pdf_schema.php:281 pdf_schema.php:1121 +#: pdf_schema.php:1137 msgid "Page number:" msgstr "Σελίδα:" -#: browse_foreigners.php:131 +#: browse_foreigners.php:130 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -36,139 +36,153 @@ msgstr "" "κλείσατε το μητρικό παράθυρο ή ο περιηγητής σας δεν επιτρέπει τις ανανεώσεις " "μεταξύ παραθύρων λόγω ρυθμίσεων ασφαλείας." -#: browse_foreigners.php:149 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2829 -#: libraries/common.lib.php:2836 libraries/db_links.inc.php:74 -#: libraries/tbl_links.inc.php:62 +#: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 +#: db_structure.php:89 db_structure.php:91 db_structure.php:102 +#: db_structure.php:104 libraries/common.lib.php:2834 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Αναζήτηση" -#: browse_foreigners.php:152 db_operations.php:384 db_operations.php:428 -#: db_operations.php:498 db_operations.php:608 db_search.php:344 -#: db_structure.php:566 js/messages.php:48 libraries/Config.class.php:1043 -#: libraries/Theme_Manager.class.php:310 +#: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 +#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 +#: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 -#: libraries/common.lib.php:1340 libraries/common.lib.php:2289 +#: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 -#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:275 -#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:531 -#: libraries/display_tbl.lib.php:613 libraries/replication_gui.lib.php:75 +#: libraries/display_export.lib.php:269 libraries/display_import.lib.php:275 +#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 +#: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 #: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:781 -#: main.php:127 navigation.php:231 pdf_pages.php:291 pdf_pages.php:327 -#: pdf_pages.php:529 pmd_pdf.php:115 server_binlog.php:128 -#: server_privileges.php:664 server_privileges.php:1616 -#: server_privileges.php:1963 server_privileges.php:2010 -#: server_privileges.php:2049 server_replication.php:234 -#: server_replication.php:317 server_replication.php:340 -#: server_synchronize.php:1208 tbl_change.php:328 tbl_change.php:1172 -#: tbl_change.php:1209 tbl_indexes.php:253 tbl_operations.php:264 -#: tbl_operations.php:301 tbl_operations.php:498 tbl_operations.php:560 -#: tbl_operations.php:680 tbl_select.php:324 tbl_structure.php:561 -#: tbl_structure.php:596 tbl_tracking.php:394 tbl_tracking.php:511 -#: view_create.php:181 view_operations.php:100 +#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 +#: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 +#: server_privileges.php:663 server_privileges.php:1620 +#: server_privileges.php:1967 server_privileges.php:2014 +#: server_privileges.php:2053 server_replication.php:233 +#: server_replication.php:316 server_replication.php:339 +#: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 +#: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 +#: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 +#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "Εκτέλεση" -#: browse_foreigners.php:167 browse_foreigners.php:171 -#: libraries/Index.class.php:441 tbl_tracking.php:319 +#: browse_foreigners.php:166 browse_foreigners.php:170 +#: libraries/Index.class.php:441 tbl_tracking.php:314 msgid "Keyname" msgstr "Όνομα κλειδιού" -#: browse_foreigners.php:168 browse_foreigners.php:170 -#: server_collations.php:54 server_collations.php:66 server_engines.php:58 +#: browse_foreigners.php:167 browse_foreigners.php:169 +#: server_collations.php:54 server_collations.php:66 server_engines.php:57 #: server_status.php:738 msgid "Description" msgstr "Περιγραφή" -#: browse_foreigners.php:246 browse_foreigners.php:255 -#: browse_foreigners.php:267 browse_foreigners.php:275 +#: browse_foreigners.php:245 browse_foreigners.php:254 +#: browse_foreigners.php:266 browse_foreigners.php:274 msgid "Use this value" msgstr "Χρήση αυτής της τιμής" -#: db_create.php:45 +#: bs_disp_as_mime_type.php:29 bs_play_media.php:35 +msgid "No blob streaming server configured!" +msgstr "" + +#: bs_disp_as_mime_type.php:35 +#, fuzzy +#| msgid "Failed to write file to disk." +msgid "Failed to fetch headers" +msgstr "Αποτυχία εγγραφής του αρχείου στο δίσκο." + +#: bs_disp_as_mime_type.php:41 +msgid "Failed to open remote URL" +msgstr "" + +#: db_create.php:44 #, php-format msgid "Database %1$s has been created." msgstr "Δημιουργήθηκε η βάση δεδομένων %1$s." -#: db_datadict.php:48 db_operations.php:377 +#: db_datadict.php:48 db_operations.php:313 msgid "Database comment: " msgstr "Σχόλιο βάσης: " -#: db_datadict.php:164 libraries/tbl_properties.inc.php:723 -#: pdf_schema.php:1235 tbl_operations.php:346 tbl_printview.php:128 +#: db_datadict.php:164 libraries/tbl_properties.inc.php:722 +#: pdf_schema.php:1234 tbl_operations.php:344 tbl_printview.php:127 msgid "Table comments" msgstr "Σχόλια Πίνακα" -#: db_datadict.php:173 db_qbe.php:173 libraries/Index.class.php:445 +#: db_datadict.php:173 db_qbe.php:170 libraries/Index.class.php:445 #: libraries/export/htmlword.php:243 libraries/export/latex.php:364 #: libraries/export/odt.php:293 libraries/export/texytext.php:233 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:274 -#: pdf_schema.php:1261 pdf_schema.php:1282 tbl_change.php:306 -#: tbl_indexes.php:188 tbl_printview.php:140 tbl_relation.php:401 -#: tbl_select.php:133 tbl_structure.php:176 tbl_tracking.php:272 -#: tbl_tracking.php:323 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 +#: pdf_schema.php:1260 pdf_schema.php:1281 tbl_change.php:301 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:132 tbl_structure.php:175 tbl_tracking.php:267 +#: tbl_tracking.php:318 #, fuzzy #| msgid "Column names" msgid "Column" msgstr "Ονόματα στηλών" -#: db_datadict.php:174 db_printview.php:105 libraries/Index.class.php:442 +#: db_datadict.php:174 db_printview.php:104 libraries/Index.class.php:442 #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 #: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:244 #: libraries/export/latex.php:364 libraries/export/odt.php:296 #: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:99 -#: pdf_schema.php:1262 pdf_schema.php:1283 server_privileges.php:2062 -#: tbl_change.php:285 tbl_change.php:312 tbl_printview.php:141 -#: tbl_printview.php:311 tbl_select.php:134 tbl_structure.php:177 -#: tbl_structure.php:658 tbl_tracking.php:273 tbl_tracking.php:320 +#: pdf_schema.php:1261 pdf_schema.php:1282 server_privileges.php:2066 +#: tbl_change.php:280 tbl_change.php:307 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:133 tbl_structure.php:176 +#: tbl_structure.php:656 tbl_tracking.php:268 tbl_tracking.php:315 msgid "Type" msgstr "Τύπος" #: db_datadict.php:176 libraries/Index.class.php:448 #: libraries/export/htmlword.php:245 libraries/export/latex.php:364 #: libraries/export/odt.php:299 libraries/export/texytext.php:235 -#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1264 -#: pdf_schema.php:1285 tbl_change.php:321 tbl_printview.php:143 -#: tbl_structure.php:180 tbl_tracking.php:275 tbl_tracking.php:326 +#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1263 +#: pdf_schema.php:1284 tbl_change.php:316 tbl_printview.php:142 +#: tbl_structure.php:179 tbl_tracking.php:270 tbl_tracking.php:321 msgid "Null" msgstr "Κενό" -#: db_datadict.php:177 db_structure.php:500 libraries/export/htmlword.php:246 +#: db_datadict.php:177 db_structure.php:486 libraries/export/htmlword.php:246 #: libraries/export/latex.php:364 libraries/export/odt.php:302 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:105 -#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 -#: tbl_structure.php:181 tbl_tracking.php:276 +#: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:143 +#: tbl_structure.php:180 tbl_tracking.php:271 msgid "Default" msgstr "Προκαθορισμένο" #: db_datadict.php:181 libraries/export/htmlword.php:248 #: libraries/export/latex.php:366 libraries/export/odt.php:306 -#: libraries/export/texytext.php:238 pdf_schema.php:1267 pdf_schema.php:1288 -#: tbl_printview.php:148 +#: libraries/export/texytext.php:238 pdf_schema.php:1266 pdf_schema.php:1287 +#: tbl_printview.php:147 msgid "Links to" msgstr "Σύνδεση με" -#: db_datadict.php:183 db_printview.php:111 libraries/export/htmlword.php:251 +#: db_datadict.php:183 db_printview.php:110 libraries/export/htmlword.php:251 #: libraries/export/latex.php:49 libraries/export/latex.php:369 #: libraries/export/odt.php:37 libraries/export/odt.php:311 #: libraries/export/sql.php:29 libraries/export/texytext.php:241 -#: libraries/tbl_properties.inc.php:129 pdf_schema.php:1278 -#: pdf_schema.php:1289 tbl_printview.php:150 +#: libraries/tbl_properties.inc.php:128 pdf_schema.php:1277 +#: pdf_schema.php:1288 tbl_printview.php:149 msgid "Comments" msgstr "Σχόλια" #: db_datadict.php:266 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/export/htmlword.php:321 #: libraries/export/latex.php:434 libraries/export/odt.php:367 -#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:262 -#: pdf_schema.php:1343 server_privileges.php:1560 server_privileges.php:1571 -#: server_privileges.php:1881 server_privileges.php:1886 -#: server_privileges.php:2179 sql.php:131 sql.php:193 tbl_printview.php:227 -#: tbl_structure.php:349 tbl_tracking.php:336 tbl_tracking.php:341 +#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:261 +#: pdf_schema.php:1342 server_privileges.php:1564 server_privileges.php:1575 +#: server_privileges.php:1885 server_privileges.php:1890 +#: server_privileges.php:2183 sql.php:130 sql.php:192 tbl_printview.php:226 +#: tbl_structure.php:347 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "Όχι" @@ -179,17 +193,17 @@ msgstr "Όχι" #: libraries/mult_submits.inc.php:49 libraries/mult_submits.inc.php:54 #: libraries/mult_submits.inc.php:59 libraries/mult_submits.inc.php:91 #: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:105 -#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:261 -#: libraries/mult_submits.inc.php:272 pdf_schema.php:1343 -#: server_databases.php:63 server_privileges.php:1557 -#: server_privileges.php:1571 server_privileges.php:1881 -#: server_privileges.php:1884 server_privileges.php:2179 sql.php:192 -#: tbl_printview.php:227 tbl_structure.php:39 tbl_structure.php:349 -#: tbl_tracking.php:334 tbl_tracking.php:339 +#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:260 +#: libraries/mult_submits.inc.php:271 pdf_schema.php:1342 +#: server_databases.php:61 server_privileges.php:1561 +#: server_privileges.php:1575 server_privileges.php:1885 +#: server_privileges.php:1888 server_privileges.php:2183 sql.php:191 +#: tbl_printview.php:226 tbl_structure.php:38 tbl_structure.php:347 +#: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" msgstr "Ναι" -#: db_datadict.php:321 db_printview.php:265 tbl_printview.php:496 +#: db_datadict.php:321 db_printview.php:264 tbl_printview.php:495 msgid "Print" msgstr "Εκτύπωση" @@ -197,191 +211,154 @@ msgstr "Εκτύπωση" msgid "View dump (schema) of database" msgstr "Εμφάνιση σχήματος της βάσης δεδομένων" -#: db_export.php:32 db_printview.php:95 db_qbe.php:101 db_structure.php:50 -#: db_tracking.php:34 export.php:352 navigation.php:326 +#: db_export.php:32 db_printview.php:94 db_qbe.php:98 db_structure.php:49 +#: db_tracking.php:30 export.php:350 navigation.php:325 msgid "No tables found in database." msgstr "Δεν βρέθηκαν Πίνακες στη βάση δεδομένων." -#: db_export.php:42 db_search.php:326 server_export.php:26 +#: db_export.php:42 db_search.php:326 server_export.php:24 msgid "Select All" msgstr "Επιλογή όλων" -#: db_export.php:44 db_search.php:329 server_export.php:28 +#: db_export.php:44 db_search.php:329 server_export.php:26 msgid "Unselect All" msgstr "Απεπιλογή όλων" -#: db_operations.php:37 tbl_create.php:49 +#: db_operations.php:33 tbl_create.php:47 msgid "The database name is empty!" msgstr "Το όνομα της βάσης δεδομένων είναι κενό!" -#: db_operations.php:235 +#: db_operations.php:231 #, php-format msgid "Database %s has been renamed to %s" msgstr "Η βάση δεδομένων %s μετονομάστηκε σε %s" -#: db_operations.php:239 +#: db_operations.php:235 #, php-format msgid "Database %s has been copied to %s" msgstr "Η βάση δεδομένων %s αντιγράφηκε στη %s" -#: db_operations.php:411 +#: db_operations.php:347 msgid "Rename database to" msgstr "Μετονομασία βάσης δεδομένων σε" -#: db_operations.php:416 server_processlist.php:56 +#: db_operations.php:352 server_processlist.php:56 msgid "Command" msgstr "Εντολή" -#: db_operations.php:428 tbl_change.php:1141 +#: db_operations.php:364 tbl_change.php:1039 msgid "and then" msgstr "και μετά" -#: db_operations.php:454 +#: db_operations.php:390 msgid "Copy database to" msgstr "Αντιγραφή βάσης δεδομένων σε" -#: db_operations.php:461 tbl_operations.php:527 tbl_tracking.php:387 +#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Μόνο η δομή" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:389 +#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Δομή και δεδομένα" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:388 +#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Μόνο τα δεδομένα" -#: db_operations.php:471 +#: db_operations.php:407 msgid "CREATE DATABASE before copying" msgstr "ΔΗΜΙΟΥΡΓΙΑ ΒΑΣΗΣ ΔΕΔΟΜΕΝΩΝ πριν την αντιγραφή" -#: db_operations.php:474 libraries/export/sql.php:51 +#: db_operations.php:410 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 -#: libraries/export/sql.php:81 tbl_operations.php:535 +#: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "Προσθήκη %s" -#: db_operations.php:478 libraries/export/sql.php:77 tbl_operations.php:298 -#: tbl_operations.php:537 +#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Προσθήκη τιμής AUTO_INCREMENT" -#: db_operations.php:482 tbl_operations.php:544 +#: db_operations.php:418 tbl_operations.php:542 msgid "Add constraints" msgstr "Προσθήκη περιορισμών" -#: db_operations.php:495 +#: db_operations.php:431 msgid "Switch to copied database" msgstr "Αλλαγή στο αντίγραφο της βάσης δεδομένων" -#: db_operations.php:536 -msgid "BLOB Repository" -msgstr "Αποθήκη BLOB" - -#: db_operations.php:539 db_tracking.php:75 libraries/common.lib.php:1357 -#: libraries/server_links.inc.php:48 server_processlist.php:58 -#: tbl_tracking.php:595 test/theme.php:100 -msgid "Status" -msgstr "Κατάσταση" - -#: db_operations.php:547 -#, fuzzy -msgctxt "BLOB repository" -msgid "Enabled" -msgstr "Ενεργοποιημένο" - -#: db_operations.php:551 -msgid "Disable" -msgstr "Απενεργοποίηση" - -#: db_operations.php:561 -msgid "Damaged" -msgstr "Καταστράφηκε" - -#: db_operations.php:565 -#, fuzzy -msgctxt "BLOB repository" -msgid "Repair" -msgstr "Επιδιόρθωση" - -#: db_operations.php:573 -#, fuzzy -msgctxt "BLOB repository" -msgid "Disabled" -msgstr "Απενεργοποιημένο" - -#: db_operations.php:577 -msgid "Enable" -msgstr "Ενεργοποίηση" - -#: db_operations.php:601 libraries/Index.class.php:447 +#: db_operations.php:451 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 -#: server_collations.php:53 server_collations.php:65 server_databases.php:110 -#: tbl_operations.php:362 tbl_select.php:135 tbl_structure.php:178 -#: tbl_structure.php:766 tbl_tracking.php:274 tbl_tracking.php:325 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 +#: server_collations.php:53 server_collations.php:65 server_databases.php:108 +#: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:177 +#: tbl_structure.php:764 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "Σύνθεση" -#: db_operations.php:614 main.php:315 pdf_schema.php:33 -#, php-format +#: db_operations.php:464 pdf_schema.php:32 +#, fuzzy, php-format +#| msgid "" +#| "The additional features for working with linked tables have been " +#| "deactivated. To find out why click %shere%s." msgid "" -"The additional features for working with linked tables have been " -"deactivated. To find out why click %shere%s." +"The phpMyAdmin configuration storage has been deactivated. To find out why " +"click %shere%s." msgstr "" "Οι επιπρόσθετες λειτουργίες για εργασία με συσχετισμένους πίνακες έχουν " "απενεργοποιηθεί. Για να μάθετε γιατί, πατήστε %sεδώ%s." -#: db_operations.php:647 +#: db_operations.php:497 msgid "Edit PDF Pages" msgstr "Αλλαγή σελίδων PDF" -#: db_printview.php:103 db_tracking.php:71 db_tracking.php:156 +#: db_printview.php:102 db_tracking.php:67 db_tracking.php:152 #: libraries/db_structure.lib.php:37 libraries/export/xml.php:327 -#: libraries/header.inc.php:125 pdf_pages.php:423 server_privileges.php:1657 -#: server_privileges.php:1713 server_privileges.php:1977 -#: server_synchronize.php:422 server_synchronize.php:865 tbl_tracking.php:591 +#: libraries/header.inc.php:125 pdf_pages.php:422 server_privileges.php:1661 +#: server_privileges.php:1717 server_privileges.php:1981 +#: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "Πίνακας " -#: db_printview.php:104 libraries/db_structure.lib.php:47 +#: db_printview.php:103 libraries/db_structure.lib.php:47 #: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 -#: navigation.php:629 navigation.php:651 server_databases.php:121 -#: tbl_printview.php:392 tbl_structure.php:364 tbl_structure.php:776 +#: navigation.php:628 navigation.php:650 server_databases.php:119 +#: tbl_printview.php:391 tbl_structure.php:362 tbl_structure.php:774 msgid "Rows" msgstr "Εγγραφές" -#: db_printview.php:108 libraries/db_structure.lib.php:58 tbl_indexes.php:189 +#: db_printview.php:107 libraries/db_structure.lib.php:58 tbl_indexes.php:188 msgid "Size" msgstr "Μέγεθος" -#: db_printview.php:161 db_structure.php:456 libraries/export/sql.php:556 +#: db_printview.php:160 db_structure.php:442 libraries/export/sql.php:556 #: libraries/export/sql.php:896 msgid "in use" msgstr "σε χρήση" -#: db_printview.php:186 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:511 pdf_schema.php:1240 tbl_printview.php:432 -#: tbl_structure.php:808 +#: db_printview.php:185 libraries/db_info.inc.php:86 +#: libraries/export/sql.php:511 pdf_schema.php:1239 tbl_printview.php:431 +#: tbl_structure.php:806 msgid "Creation" msgstr "Δημιουργία" -#: db_printview.php:195 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:516 pdf_schema.php:1245 tbl_printview.php:442 -#: tbl_structure.php:816 +#: db_printview.php:194 libraries/db_info.inc.php:91 +#: libraries/export/sql.php:516 pdf_schema.php:1244 tbl_printview.php:441 +#: tbl_structure.php:814 msgid "Last update" msgstr "Τελευταία ενημέρωση" -#: db_printview.php:204 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:521 pdf_schema.php:1250 tbl_printview.php:452 -#: tbl_structure.php:824 +#: db_printview.php:203 libraries/db_info.inc.php:96 +#: libraries/export/sql.php:521 pdf_schema.php:1249 tbl_printview.php:451 +#: tbl_structure.php:822 msgid "Last check" msgstr "τελευταίος έλεγχος" -#: db_printview.php:221 db_structure.php:479 +#: db_printview.php:220 db_structure.php:465 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -389,94 +366,94 @@ msgid_plural "%s tables" msgstr[0] "%s Πίνακας/Πίνακες" msgstr[1] "%s Πίνακας/Πίνακες" -#: db_qbe.php:28 import.php:453 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1980 libraries/sql_query_form.lib.php:138 -#: tbl_operations.php:212 tbl_relation.php:291 tbl_row_action.php:130 -#: view_operations.php:61 +#: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 +#: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "Η SQL εντολή σας εκτελέσθηκε επιτυχώς" -#: db_qbe.php:41 +#: db_qbe.php:38 msgid "You have to choose at least one column to display" msgstr "Πρέπει να επιλέξετε τουλάχιστον μία στήλη για εμφάνιση" -#: db_qbe.php:199 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:865 +#: db_qbe.php:196 libraries/db_structure.lib.php:95 +#: libraries/display_tbl.lib.php:864 msgid "Sort" msgstr "Ταξινόμηση" -#: db_qbe.php:208 db_qbe.php:242 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:522 libraries/display_tbl.lib.php:827 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:259 -#: tbl_select.php:311 +#: db_qbe.php:205 db_qbe.php:239 libraries/db_structure.lib.php:102 +#: libraries/display_tbl.lib.php:521 libraries/display_tbl.lib.php:826 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:257 +#: tbl_select.php:310 msgid "Ascending" msgstr "Αύξουσα" -#: db_qbe.php:209 db_qbe.php:250 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:527 libraries/display_tbl.lib.php:824 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:260 -#: tbl_select.php:312 +#: db_qbe.php:206 db_qbe.php:247 libraries/db_structure.lib.php:110 +#: libraries/display_tbl.lib.php:526 libraries/display_tbl.lib.php:823 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:258 +#: tbl_select.php:311 msgid "Descending" msgstr "Φθίνουσα" -#: db_qbe.php:263 db_tracking.php:77 libraries/display_tbl.lib.php:307 -#: tbl_change.php:275 tbl_tracking.php:596 +#: db_qbe.php:260 db_tracking.php:73 libraries/display_tbl.lib.php:306 +#: tbl_change.php:270 tbl_tracking.php:591 msgid "Show" msgstr "Εμφάνιση" -#: db_qbe.php:299 +#: db_qbe.php:296 msgid "Criteria" msgstr "Κριτήρια" -#: db_qbe.php:352 db_qbe.php:434 db_qbe.php:526 db_qbe.php:557 +#: db_qbe.php:349 db_qbe.php:431 db_qbe.php:523 db_qbe.php:554 msgid "Ins" msgstr "Εισαγωγή" -#: db_qbe.php:356 db_qbe.php:438 db_qbe.php:523 db_qbe.php:554 +#: db_qbe.php:353 db_qbe.php:435 db_qbe.php:520 db_qbe.php:551 msgid "And" msgstr "Και" -#: db_qbe.php:365 db_qbe.php:446 db_qbe.php:528 db_qbe.php:559 +#: db_qbe.php:362 db_qbe.php:443 db_qbe.php:525 db_qbe.php:556 msgid "Del" msgstr "Διαγραφή" -#: db_qbe.php:369 db_qbe.php:450 db_qbe.php:521 db_qbe.php:552 -#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:778 -#: server_privileges.php:297 tbl_change.php:1027 tbl_indexes.php:249 -#: tbl_select.php:285 +#: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 +#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:777 +#: server_privileges.php:296 tbl_change.php:925 tbl_indexes.php:248 +#: tbl_select.php:284 msgid "Or" msgstr "Ή" -#: db_qbe.php:506 +#: db_qbe.php:503 msgid "Modify" msgstr "Τροποποίηση" -#: db_qbe.php:583 +#: db_qbe.php:580 #, fuzzy #| msgid "Add/Delete Criteria Row" msgid "Add/Delete criteria rows" msgstr "Προσθήκη/Αφαίρεση Γραμμής Κριτηρίων" -#: db_qbe.php:595 +#: db_qbe.php:592 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Add/Delete columns" msgstr "Προσθήκη/Αφαίρεση Στήλης Πεδίου" -#: db_qbe.php:608 db_qbe.php:633 +#: db_qbe.php:605 db_qbe.php:630 msgid "Update Query" msgstr "Ενημέρωση της εντολής" -#: db_qbe.php:616 +#: db_qbe.php:613 msgid "Use Tables" msgstr "Χρήση Πινάκων" -#: db_qbe.php:639 +#: db_qbe.php:636 #, php-format msgid "SQL query on database %s:" msgstr "Εντολή SQL στη βάση %s:" -#: db_qbe.php:933 libraries/common.lib.php:1222 +#: db_qbe.php:930 libraries/common.lib.php:1215 msgid "Submit Query" msgstr "Υποβολή ερωτήματος" @@ -516,17 +493,17 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s αποτελέσματα στον πίνακα %s" msgstr[1] "%s αποτελέσματα στον πίνακα %s" -#: db_search.php:249 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2831 -#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:49 -#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:466 +#: db_search.php:249 db_structure.php:75 db_structure.php:76 +#: db_structure.php:88 db_structure.php:90 db_structure.php:101 +#: db_structure.php:103 libraries/common.lib.php:2836 +#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 +#: tbl_structure.php:35 tbl_structure.php:47 tbl_structure.php:464 msgid "Browse" msgstr "Περιήγηση" -#: db_search.php:254 libraries/display_tbl.lib.php:1164 -#: libraries/display_tbl.lib.php:2055 libraries/sql_query_form.lib.php:453 -#: pdf_pages.php:285 pdf_pages.php:424 pdf_pages.php:460 pdf_pages.php:488 +#: db_search.php:254 libraries/display_tbl.lib.php:1163 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 msgid "Delete" @@ -566,66 +543,66 @@ msgstr "Μέσα στους πίνακες:" msgid "Inside column:" msgstr "Εσωτερικό πεδίο:" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2830 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:75 +#: db_structure.php:79 db_structure.php:80 db_structure.php:92 +#: db_structure.php:93 db_structure.php:105 db_structure.php:106 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 +#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Προσθήκη" -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2827 libraries/common.lib.php:2834 -#: libraries/db_links.inc.php:62 libraries/export/htmlword.php:22 +#: db_structure.php:81 db_structure.php:94 db_structure.php:107 +#: libraries/common.lib.php:2832 libraries/common.lib.php:2839 +#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 -#: libraries/tbl_links.inc.php:55 pmd_general.php:133 -#: server_privileges.php:593 server_replication.php:314 tbl_tracking.php:268 +#: libraries/tbl_links.inc.php:54 pmd_general.php:133 +#: server_privileges.php:592 server_replication.php:313 tbl_tracking.php:263 msgid "Structure" msgstr "Δομή" -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:544 db_structure.php:545 db_tracking.php:90 -#: libraries/Index.class.php:482 libraries/common.lib.php:1659 -#: libraries/db_links.inc.php:99 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:126 -#: server_databases.php:351 tbl_structure.php:26 tbl_structure.php:150 -#: tbl_structure.php:151 tbl_structure.php:470 +#: db_structure.php:82 db_structure.php:83 db_structure.php:95 +#: db_structure.php:96 db_structure.php:108 db_structure.php:109 +#: db_structure.php:530 db_structure.php:531 db_tracking.php:86 +#: libraries/Index.class.php:482 libraries/common.lib.php:1663 +#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 +#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 +#: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" msgstr "Διαγραφή" -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:542 db_structure.php:543 libraries/common.lib.php:1658 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:104 +#: db_structure.php:84 db_structure.php:85 db_structure.php:97 +#: db_structure.php:98 db_structure.php:110 db_structure.php:111 +#: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 +#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 msgid "Empty" msgstr "Άδειασμα" -#: db_structure.php:315 libraries/tbl_links.inc.php:99 +#: db_structure.php:301 libraries/tbl_links.inc.php:98 #, php-format msgid "Table %s has been emptied" msgstr "Ο Πίνακας %s άδειασε" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "View %s has been dropped" msgstr "Η προβολή %s διαγράφτηκε" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "Table %s has been dropped" msgstr "Ο Πίνακας %s διεγράφη" -#: db_structure.php:332 +#: db_structure.php:318 msgid "Tracking is active." msgstr "Η παρακολούθηση είναι ενεργοποιημένη." -#: db_structure.php:334 +#: db_structure.php:320 msgid "Tracking is not active." msgstr "Η παρακολούθηση δεν έιναι ενεργοποιημένη." -#: db_structure.php:419 libraries/display_tbl.lib.php:1943 +#: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -634,161 +611,167 @@ msgstr "" "Αυτή η προβολή έχει τουλάχιστον αυτό τον αριθμό γραμμών. Λεπτομέρειες στην " "%sτεκμηρίωση%s." -#: db_structure.php:433 db_structure.php:447 libraries/header.inc.php:125 -#: libraries/tbl_info.inc.php:65 tbl_structure.php:184 test/theme.php:73 +#: db_structure.php:419 db_structure.php:433 libraries/header.inc.php:125 +#: libraries/tbl_info.inc.php:60 tbl_structure.php:183 test/theme.php:73 msgid "View" msgstr "Προβολή" -#: db_structure.php:484 libraries/db_structure.lib.php:40 -#: libraries/server_links.inc.php:69 server_replication.php:32 -#: server_replication.php:163 server_status.php:368 +#: db_structure.php:470 libraries/db_structure.lib.php:40 +#: libraries/server_links.inc.php:69 server_replication.php:31 +#: server_replication.php:162 server_status.php:368 msgid "Replication" msgstr "Αναπαραγωγή" -#: db_structure.php:488 +#: db_structure.php:474 msgid "Sum" msgstr "Σύνολο" -#: db_structure.php:495 libraries/StorageEngine.class.php:349 +#: db_structure.php:481 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" "Η %s είναι η προεπιλεγμένη μηχανή αποθήκευσης σε αυτόν τον διακομιστή MySQL." -#: db_structure.php:523 db_structure.php:540 db_structure.php:541 -#: libraries/display_tbl.lib.php:2080 libraries/display_tbl.lib.php:2085 -#: libraries/mult_submits.inc.php:15 server_databases.php:345 -#: server_databases.php:350 server_privileges.php:1588 tbl_structure.php:454 -#: tbl_structure.php:463 +#: db_structure.php:509 db_structure.php:526 db_structure.php:527 +#: libraries/display_tbl.lib.php:2039 libraries/display_tbl.lib.php:2044 +#: libraries/mult_submits.inc.php:15 server_databases.php:343 +#: server_databases.php:348 server_privileges.php:1592 tbl_structure.php:452 +#: tbl_structure.php:461 msgid "With selected:" msgstr "Με τους επιλεγμένους:" -#: db_structure.php:526 libraries/display_tbl.lib.php:2075 -#: server_databases.php:347 server_privileges.php:569 -#: server_privileges.php:1591 tbl_structure.php:457 +#: db_structure.php:512 libraries/display_tbl.lib.php:2034 +#: server_databases.php:345 server_privileges.php:568 +#: server_privileges.php:1595 tbl_structure.php:455 msgid "Check All" msgstr "Επιλογή όλων" -#: db_structure.php:530 libraries/display_tbl.lib.php:2076 -#: libraries/replication_gui.lib.php:35 server_databases.php:349 -#: server_privileges.php:572 server_privileges.php:1595 tbl_structure.php:461 +#: db_structure.php:516 libraries/display_tbl.lib.php:2035 +#: libraries/replication_gui.lib.php:35 server_databases.php:347 +#: server_privileges.php:571 server_privileges.php:1599 tbl_structure.php:459 msgid "Uncheck All" msgstr "Απεπιλογή όλων" -#: db_structure.php:535 +#: db_structure.php:521 msgid "Check tables having overhead" msgstr "Επιλογή πινάκων με περίσσεια" -#: db_structure.php:546 db_structure.php:547 db_structure.php:598 -#: libraries/display_tbl.lib.php:2179 libraries/mult_submits.inc.php:27 -#: tbl_structure.php:491 tbl_structure.php:493 +#: db_structure.php:532 db_structure.php:533 db_structure.php:584 +#: libraries/display_tbl.lib.php:2138 libraries/mult_submits.inc.php:27 +#: tbl_structure.php:489 tbl_structure.php:491 msgid "Print view" msgstr "Εμφάνιση για εκτύπωση" -#: db_structure.php:548 db_structure.php:549 libraries/mult_submits.inc.php:41 -#: tbl_operations.php:580 +#: db_structure.php:534 db_structure.php:535 libraries/mult_submits.inc.php:41 +#: tbl_operations.php:578 msgid "Check table" msgstr "Έλεγχος πίνακα" -#: db_structure.php:550 db_structure.php:551 libraries/mult_submits.inc.php:46 -#: tbl_operations.php:620 tbl_structure.php:708 tbl_structure.php:710 +#: db_structure.php:536 db_structure.php:537 libraries/mult_submits.inc.php:46 +#: tbl_operations.php:618 tbl_structure.php:706 tbl_structure.php:708 msgid "Optimize table" msgstr "Βελτιστοποίηση Πίνακα" -#: db_structure.php:552 db_structure.php:553 libraries/mult_submits.inc.php:51 -#: tbl_operations.php:610 +#: db_structure.php:538 db_structure.php:539 libraries/mult_submits.inc.php:51 +#: tbl_operations.php:608 msgid "Repair table" msgstr "Επιδιόρθωση πίνακα" -#: db_structure.php:554 db_structure.php:555 libraries/mult_submits.inc.php:56 -#: tbl_operations.php:600 +#: db_structure.php:540 db_structure.php:541 libraries/mult_submits.inc.php:56 +#: tbl_operations.php:598 msgid "Analyze table" msgstr "Ανάλυση Πίνακα" -#: db_structure.php:556 db_structure.php:557 libraries/db_links.inc.php:70 -#: libraries/display_export.lib.php:82 libraries/display_tbl.lib.php:2093 -#: libraries/display_tbl.lib.php:2224 libraries/mult_submits.inc.php:61 -#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:81 -#: pmd_pdf.php:83 pmd_pdf.php:108 server_privileges.php:1372 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 +#: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 +#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 +#: pmd_pdf.php:81 pmd_pdf.php:106 server_privileges.php:1376 #: setup/frames/menu.inc.php:22 tbl_row_action.php:58 msgid "Export" msgstr "Εξαγωγή" -#: db_structure.php:605 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:591 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "Περιληπτικός πίνακας δεδομένων" -#: db_tracking.php:65 +#: db_tracking.php:61 msgid "Tracked tables" msgstr "Παρακολουθούμενοι πίνακες" -#: db_tracking.php:70 libraries/export/htmlword.php:85 +#: db_tracking.php:66 libraries/export/htmlword.php:85 #: libraries/export/latex.php:152 libraries/export/odt.php:112 #: libraries/export/sql.php:339 libraries/export/texytext.php:84 #: libraries/export/xml.php:254 libraries/header.inc.php:105 -#: libraries/header_printview.inc.php:57 server_databases.php:168 -#: server_privileges.php:1652 server_privileges.php:1713 -#: server_privileges.php:1971 server_processlist.php:55 -#: server_synchronize.php:1178 server_synchronize.php:1182 -#: tbl_tracking.php:590 test/theme.php:64 +#: libraries/header_printview.inc.php:57 server_databases.php:166 +#: server_privileges.php:1656 server_privileges.php:1717 +#: server_privileges.php:1975 server_processlist.php:55 +#: server_synchronize.php:1177 server_synchronize.php:1181 +#: tbl_tracking.php:585 test/theme.php:64 msgid "Database" msgstr "Βάση" -#: db_tracking.php:72 +#: db_tracking.php:68 msgid "Last version" msgstr "Τελευταία έκδοση" -#: db_tracking.php:73 tbl_tracking.php:593 +#: db_tracking.php:69 tbl_tracking.php:588 msgid "Created" msgstr "Δημιουργήθηκε" -#: db_tracking.php:74 tbl_tracking.php:594 +#: db_tracking.php:70 tbl_tracking.php:589 msgid "Updated" msgstr "Ενημερώθηκε" -#: db_tracking.php:76 libraries/Index.class.php:439 -#: libraries/db_structure.lib.php:44 server_databases.php:202 -#: server_privileges.php:1534 server_privileges.php:1717 -#: server_privileges.php:2065 tbl_structure.php:186 +#: db_tracking.php:71 libraries/common.lib.php:1361 +#: libraries/server_links.inc.php:48 server_processlist.php:58 +#: tbl_tracking.php:590 test/theme.php:100 +msgid "Status" +msgstr "Κατάσταση" + +#: db_tracking.php:72 libraries/Index.class.php:439 +#: libraries/db_structure.lib.php:44 server_databases.php:200 +#: server_privileges.php:1538 server_privileges.php:1721 +#: server_privileges.php:2069 tbl_structure.php:185 msgid "Action" msgstr "Ενέργεια" -#: db_tracking.php:87 db_tracking.php:119 +#: db_tracking.php:83 db_tracking.php:115 msgid "Delete tracking data for this table" msgstr "Διαγραφή δεδομένων παρακολούθησης για αυτόν τον πίνακα" -#: db_tracking.php:105 tbl_tracking.php:547 tbl_tracking.php:605 -#: tbl_tracking.php:612 +#: db_tracking.php:101 tbl_tracking.php:542 tbl_tracking.php:600 +#: tbl_tracking.php:607 msgid "active" msgstr "ενεργή" -#: db_tracking.php:107 tbl_tracking.php:549 tbl_tracking.php:607 -#: tbl_tracking.php:609 +#: db_tracking.php:103 tbl_tracking.php:544 tbl_tracking.php:602 +#: tbl_tracking.php:604 msgid "not active" msgstr "μη ενεργή" -#: db_tracking.php:120 +#: db_tracking.php:116 msgid "Versions" msgstr "Εκδόσεις" -#: db_tracking.php:121 tbl_tracking.php:378 tbl_tracking.php:623 +#: db_tracking.php:117 tbl_tracking.php:373 tbl_tracking.php:618 msgid "Tracking report" msgstr "Αναφορά παρακολούθησης" -#: db_tracking.php:122 tbl_tracking.php:250 tbl_tracking.php:623 +#: db_tracking.php:118 tbl_tracking.php:245 tbl_tracking.php:618 msgid "Structure snapshot" msgstr "Στιγμιότυπο δομής" -#: db_tracking.php:151 +#: db_tracking.php:147 msgid "Untracked tables" msgstr "Μη παρακολουθούμενοι πίνακες" -#: db_tracking.php:171 db_tracking.php:173 tbl_structure.php:527 -#: tbl_structure.php:529 +#: db_tracking.php:167 db_tracking.php:169 tbl_structure.php:525 +#: tbl_structure.php:527 msgid "Track table" msgstr "Παρακολούθηση πίνακα" -#: db_tracking.php:199 +#: db_tracking.php:195 msgid "Database Log" msgstr "Καταγραφή Βάσης Δεδομένων" @@ -796,12 +779,12 @@ msgstr "Καταγραφή Βάσης Δεδομένων" msgid "Selected export type has to be saved in file!" msgstr "Ο επιλεγμένος τύπος εξαγωγής πρέπει να αποθηκευτεί σε αρχείο!" -#: export.php:153 export.php:178 export.php:620 +#: export.php:152 export.php:177 export.php:615 #, php-format msgid "Insufficient space to save the file %s." msgstr "Δεν υπάρχει διαθέσιμος χώρος για την αποθήκευση του αρχείου %s." -#: export.php:287 +#: export.php:286 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -809,17 +792,17 @@ msgstr "" "Το αρχείο %s υπάρχει ήδη στον διακομιστή. Επιλέξτε διαφορετικό όνομα αρχείου " "ή ενεργοποιήστε την επιλογή αντικατάστασης." -#: export.php:291 export.php:295 +#: export.php:290 export.php:294 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Ο διακομιστής δεν έχει δικαιώματα αποθήκευσης του αρχείου %s." -#: export.php:622 +#: export.php:617 #, php-format msgid "Dump has been saved to file %s." msgstr "Το αρχείο εξόδου αποθηκεύτηκε ως %s." -#: import.php:59 +#: import.php:58 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -828,14 +811,14 @@ msgstr "" "Πιθανόν προσπαθείτε να αποστείλετε πολύ μεγάλο αρχείο. Λεπτομέρειες στην " "%sτεκμηρίωση%s για τρόπους αντιμετώπισης αυτού του περιορισμού." -#: import.php:278 import.php:331 libraries/File.class.php:840 -#: libraries/File.class.php:950 +#: import.php:277 import.php:330 libraries/File.class.php:566 +#: libraries/File.class.php:676 msgid "File could not be read" msgstr "Δεν ήταν δυνατή η ανάγνωση του αρχείου" -#: import.php:286 import.php:295 import.php:314 import.php:323 -#: libraries/File.class.php:1020 libraries/File.class.php:1028 -#: libraries/File.class.php:1044 libraries/File.class.php:1052 +#: import.php:285 import.php:294 import.php:313 import.php:322 +#: libraries/File.class.php:746 libraries/File.class.php:754 +#: libraries/File.class.php:770 libraries/File.class.php:778 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -845,7 +828,7 @@ msgstr "" "υποστήριξη για αυτή δεν έχει εφαρμοστεί ή απενεργοποιηθεί από τις ρυθμίσεις " "σας." -#: import.php:336 +#: import.php:335 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -855,29 +838,29 @@ msgstr "" "μέγεθος του αρχείου υπερβαίνει το μέγιστο επιτρεπτό μέγεθος από τη ρύθμιση " "της ΡΗΡ. Δείτε τις ΣΑΕ 1.16." -#: import.php:371 libraries/display_import.lib.php:23 +#: import.php:370 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "Αδύνατη η φόρτωση προσθέτων εισαγωγής. Ελέξτε την εγκατάστασή σας!" -#: import.php:396 +#: import.php:395 msgid "The bookmark has been deleted." msgstr "Η ετικέτα διεγράφη." -#: import.php:400 +#: import.php:399 msgid "Showing bookmark" msgstr "Εμφάνιση σελιδοδείκτη" -#: import.php:402 sql.php:625 +#: import.php:401 sql.php:618 #, php-format msgid "Bookmark %s created" msgstr "Ο σελιδοδείκτης %s δημιουργήθηκε" -#: import.php:408 import.php:414 +#: import.php:407 import.php:413 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Η εισαγωγή ολοκληρώθηκε επιτυχώς, %d ερωτήματα εκτελέστηκαν." -#: import.php:423 +#: import.php:422 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -885,7 +868,7 @@ msgstr "" "Το χρονικό όριο του κώδικα εξαντλήθηκε. Αν θέλετε να τελειώσετε την " "εισαγωγή, επανυποβάλτε το ίδιο αρχείο και η εισαγωγή θα συνεχίσει." -#: import.php:425 +#: import.php:424 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -894,21 +877,21 @@ msgstr "" "σημαίνει ότι το phpMyAdmin δεν θα μπορέσει να τελειώσει την εισαγωγή εκτός " "και αν αυξήσετε τα χρονικά όρια της php." -#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:240 +#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:239 #: user_password.php:110 msgid "Back" msgstr "Επιστροφή" -#: index.php:188 +#: index.php:183 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" "Το phpMyAdmin είναι πιο φιλικό με έναν browser που υποστηρίζει πλαίσια " "(frames)." -#: js/messages.php:25 server_synchronize.php:344 server_synchronize.php:356 -#: server_synchronize.php:372 server_synchronize.php:379 -#: server_synchronize.php:738 server_synchronize.php:766 -#: server_synchronize.php:794 server_synchronize.php:806 +#: js/messages.php:25 server_synchronize.php:343 server_synchronize.php:355 +#: server_synchronize.php:371 server_synchronize.php:378 +#: server_synchronize.php:737 server_synchronize.php:765 +#: server_synchronize.php:793 server_synchronize.php:805 msgid "Click to select" msgstr "Πατήστε για επιλογή" @@ -916,15 +899,15 @@ msgstr "Πατήστε για επιλογή" msgid "Click to unselect" msgstr "Πατήστε για απεπιλογή" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:88 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:87 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Οι εντολές «DROP DATABASE» έχουν απενεργοποιηθεί." -#: js/messages.php:30 libraries/mult_submits.inc.php:257 sql.php:187 +#: js/messages.php:30 libraries/mult_submits.inc.php:256 sql.php:186 msgid "Do you really want to " msgstr "Θέλετε να εκτελέσετε την εντολή" -#: js/messages.php:31 libraries/mult_submits.inc.php:257 sql.php:171 +#: js/messages.php:31 libraries/mult_submits.inc.php:256 sql.php:170 msgid "You are about to DESTROY a complete database!" msgstr "Πρόκειται να ΚΑΤΑΣΤΡΕΨΕΤΕ (DESTROY) μια ολόκληρη βάση δεδομένων!" @@ -954,11 +937,11 @@ msgstr "Το όνομα του Συστήματος είναι κενό!" msgid "The user name is empty!" msgstr "Το όνομα του χρήστη είναι κενό!" -#: js/messages.php:44 server_privileges.php:1228 user_password.php:65 +#: js/messages.php:44 server_privileges.php:1229 user_password.php:65 msgid "The password is empty!" msgstr "Ο Κωδικός Πρόσβασης είναι κενός!" -#: js/messages.php:45 server_privileges.php:1226 user_password.php:68 +#: js/messages.php:45 server_privileges.php:1227 user_password.php:68 msgid "The passwords aren't the same!" msgstr "Οι κωδικοί πρόσβασης δεν είναι ίδιοι!" @@ -966,27 +949,27 @@ msgstr "Οι κωδικοί πρόσβασης δεν είναι ίδιοι!" msgid "Cancel" msgstr "Άκυρο" -#: js/messages.php:52 pmd_save_pos.php:53 +#: js/messages.php:52 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "Οι αλλαγές αποθηκεύτηκαν" -#: js/messages.php:53 pmd_relation_upd.php:48 +#: js/messages.php:53 pmd_relation_upd.php:47 msgid "Relation deleted" msgstr "Η συσχέτιση διαγράφηκε" -#: js/messages.php:54 pmd_relation_new.php:63 +#: js/messages.php:54 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "Προστέθηκε η συσχέτιση ΜΗ ΔΙΑΚΡΙΤΟΥ ΚΛΕΙΔΙΟΥ (FOREIGN KEY)" -#: js/messages.php:55 pmd_relation_new.php:85 +#: js/messages.php:55 pmd_relation_new.php:84 msgid "Internal relation added" msgstr "Η εσωτερική συσχέτιση προστέθηκε" -#: js/messages.php:56 pmd_relation_new.php:62 pmd_relation_new.php:87 +#: js/messages.php:56 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "Σφάλμα: Δεν προστέθηκε η συσχέτιση." -#: js/messages.php:57 pmd_relation_new.php:30 +#: js/messages.php:57 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "Σφάλμα: Η συσχέτιση υπαρχει ήδη." @@ -994,13 +977,13 @@ msgstr "Σφάλμα: Η συσχέτιση υπαρχει ήδη." msgid "Error saving coordinates for Designer." msgstr "Σφάλμα αποθήκευσης συντεταγμένων για τον Σχεδιαστή." -#: js/messages.php:59 libraries/relation.lib.php:94 -#: libraries/relation.lib.php:106 +#: js/messages.php:59 libraries/relation.lib.php:89 +#: libraries/relation.lib.php:101 msgid "General relation features" msgstr "Γενικές λειτουργίες συσχέτισης" -#: js/messages.php:59 libraries/relation.lib.php:88 -#: libraries/relation.lib.php:95 +#: js/messages.php:59 libraries/relation.lib.php:83 +#: libraries/relation.lib.php:90 msgid "Disabled" msgstr "Απενεργοποιημένη" @@ -1016,7 +999,7 @@ msgstr "Επιλέξτε Μη Διακριτό Κλειδί" msgid "Please select the primary key or a unique key" msgstr "Επιλέξτε το πρωτεύον κλειδί ή ένα μοναδικό κλειδί" -#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:547 +#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" @@ -1045,10 +1028,10 @@ msgid "Prev" msgstr "Προηγούμενο" #. l10n: Display text for next month link in calendar -#: js/messages.php:81 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:337 -#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:422 -#: tbl_structure.php:800 +#: js/messages.php:81 libraries/common.lib.php:2358 +#: libraries/common.lib.php:2361 libraries/display_tbl.lib.php:336 +#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 +#: tbl_structure.php:798 msgid "Next" msgstr "Επόμενο" @@ -1114,64 +1097,64 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1562 +#: js/messages.php:101 libraries/common.lib.php:1566 msgid "Jan" msgstr "Ιανουαρίου" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1564 +#: js/messages.php:103 libraries/common.lib.php:1568 msgid "Feb" msgstr "Φεβρουαρίου" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1566 +#: js/messages.php:105 libraries/common.lib.php:1570 msgid "Mar" msgstr "Μαρτίου" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1568 +#: js/messages.php:107 libraries/common.lib.php:1572 msgid "Apr" msgstr "Απριλίου" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1570 +#: js/messages.php:109 libraries/common.lib.php:1574 #, fuzzy msgctxt "Short month name" msgid "May" msgstr "Μαΐου" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1572 +#: js/messages.php:111 libraries/common.lib.php:1576 msgid "Jun" msgstr "Ιουνίου" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1574 +#: js/messages.php:113 libraries/common.lib.php:1578 msgid "Jul" msgstr "Ιουλίου" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1576 +#: js/messages.php:115 libraries/common.lib.php:1580 msgid "Aug" msgstr "Αυγούστου" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1578 +#: js/messages.php:117 libraries/common.lib.php:1582 msgid "Sep" msgstr "Σεπτεμβρίου" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1580 +#: js/messages.php:119 libraries/common.lib.php:1584 msgid "Oct" msgstr "Οκτωβρίου" #. l10n: Short month name -#: js/messages.php:121 libraries/common.lib.php:1582 +#: js/messages.php:121 libraries/common.lib.php:1586 msgid "Nov" msgstr "Νοεμβρίου" #. l10n: Short month name -#: js/messages.php:123 libraries/common.lib.php:1584 +#: js/messages.php:123 libraries/common.lib.php:1588 msgid "Dec" msgstr "Δεκεμβρίου" @@ -1208,37 +1191,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1587 +#: js/messages.php:136 libraries/common.lib.php:1591 msgid "Sun" msgstr "Κυριακή" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1589 +#: js/messages.php:138 libraries/common.lib.php:1593 msgid "Mon" msgstr "Δευτέρα" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1591 +#: js/messages.php:140 libraries/common.lib.php:1595 msgid "Tue" msgstr "Τρίτη" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1593 +#: js/messages.php:142 libraries/common.lib.php:1597 msgid "Wed" msgstr "Τετάρτη" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1595 +#: js/messages.php:144 libraries/common.lib.php:1599 msgid "Thu" msgstr "Πέμπτη" #. l10n: Short week day name -#: js/messages.php:146 libraries/common.lib.php:1597 +#: js/messages.php:146 libraries/common.lib.php:1601 msgid "Fri" msgstr "Παρασκευή" #. l10n: Short week day name -#: js/messages.php:148 libraries/common.lib.php:1599 +#: js/messages.php:148 libraries/common.lib.php:1603 msgid "Sat" msgstr "Σάββατο" @@ -1308,18 +1291,13 @@ msgstr "ανά δευτερόλεπτο" msgid "Font size" msgstr "Μέγεθος γραμματοσειράς" -#: libraries/File.class.php:336 libraries/File.class.php:424 -#: libraries/File.class.php:561 libraries/File.class.php:700 -msgid "Unknown error in file upload." -msgstr "Άγνωστο σφάλμα στην αποστολή αρχείου." - -#: libraries/File.class.php:406 +#: libraries/File.class.php:315 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "Το προς αποστολή αρχείο υπερβαίνει την οδηγία upload_max_filesize στο php." "ini." -#: libraries/File.class.php:409 +#: libraries/File.class.php:318 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -1327,59 +1305,63 @@ msgstr "" "Το προς αποστολή αρχείο υπερβαίνει την οδηγία MAX_FILE_SIZE όπως ορίστηκε " "στη φόρμα HTML." -#: libraries/File.class.php:412 +#: libraries/File.class.php:321 msgid "The uploaded file was only partially uploaded." msgstr "Το απεσταλμένο αρχείο εστάλει μόνο μερικώς." -#: libraries/File.class.php:415 +#: libraries/File.class.php:324 msgid "Missing a temporary folder." msgstr "Χάθηκε ένας προσωρινός φάκελος." -#: libraries/File.class.php:418 +#: libraries/File.class.php:327 msgid "Failed to write file to disk." msgstr "Αποτυχία εγγραφής του αρχείου στο δίσκο." -#: libraries/File.class.php:421 +#: libraries/File.class.php:330 msgid "File upload stopped by extension." msgstr "Η αποστολή του αρχείου σταμάτησε λόγω επέκτασης." -#: libraries/File.class.php:898 +#: libraries/File.class.php:333 +msgid "Unknown error in file upload." +msgstr "Άγνωστο σφάλμα στην αποστολή αρχείου." + +#: libraries/File.class.php:624 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "Σφάλμα μετακίνησης του αρχείου αποστολής. Δείτε τις ΣΑΕ 1.11" -#: libraries/Index.class.php:427 tbl_relation.php:528 +#: libraries/Index.class.php:427 tbl_relation.php:526 msgid "No index defined!" msgstr "Δεν ορίστηκε ευρετήριο!" -#: libraries/Index.class.php:432 server_databases.php:131 tbl_tracking.php:315 +#: libraries/Index.class.php:432 server_databases.php:129 tbl_tracking.php:310 msgid "Indexes" msgstr "Ευρετήρια" #: libraries/Index.class.php:443 libraries/mult_submits.inc.php:102 -#: libraries/tbl_properties.inc.php:518 tbl_structure.php:32 -#: tbl_structure.php:154 tbl_structure.php:158 tbl_structure.php:473 -#: tbl_tracking.php:321 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:31 +#: tbl_structure.php:153 tbl_structure.php:157 tbl_structure.php:471 +#: tbl_tracking.php:316 msgid "Unique" msgstr "Μοναδικό" -#: libraries/Index.class.php:444 tbl_tracking.php:322 +#: libraries/Index.class.php:444 tbl_tracking.php:317 msgid "Packed" msgstr "Συμπιεσμένο" -#: libraries/Index.class.php:446 tbl_tracking.php:324 +#: libraries/Index.class.php:446 tbl_tracking.php:319 msgid "Cardinality" msgstr "Μοναδικότητα" -#: libraries/Index.class.php:449 tbl_tracking.php:278 tbl_tracking.php:327 +#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322 msgid "Comment" msgstr "Σχόλιο" #: libraries/Index.class.php:465 libraries/common.lib.php:609 -#: libraries/common.lib.php:1198 libraries/display_tbl.lib.php:1116 +#: libraries/common.lib.php:1191 libraries/display_tbl.lib.php:1115 #: libraries/import.lib.php:1119 libraries/import.lib.php:1143 -#: pdf_pages.php:284 setup/frames/index.inc.php:124 +#: pdf_pages.php:283 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:349 tbl_row_action.php:68 msgid "Edit" msgstr "Επεξεργασία" @@ -1403,15 +1385,15 @@ msgstr "" "απομακρυνθεί." #: libraries/List_Database.class.php:430 libraries/server_links.inc.php:40 -#: server_databases.php:87 server_privileges.php:1652 +#: server_databases.php:85 server_privileges.php:1656 #: setup/lib/messages.inc.php:107 test/theme.php:92 msgid "Databases" msgstr "Βάσεις Δεδομένων" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:259 libraries/import.lib.php:134 pdf_schema.php:31 -#: pdf_schema.php:231 tbl_change.php:1023 tbl_operations.php:212 -#: tbl_relation.php:289 view_operations.php:61 +#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 +#: tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "λάθος" @@ -1436,42 +1418,42 @@ msgid_plural "%1$d rows inserted." msgstr[0] "Εισήχθηκε(αν) %1$d γραμμή(ές)." msgstr[1] "Εισήχθηκε(αν) %1$d γραμμή(ές)." -#: libraries/StorageEngine.class.php:196 +#: libraries/StorageEngine.class.php:194 msgid "" "There is no detailed status information available for this storage engine." msgstr "" "Δεν υπάρχουν λεπτομερείς πληροφορίες κατάστασης για αυτή τη μηχανή " "αποθήκευσης." -#: libraries/StorageEngine.class.php:352 +#: libraries/StorageEngine.class.php:354 #, php-format msgid "%s is available on this MySQL server." msgstr "Η %s είναι διαθέσιμη σε αυτό το διακομιστή MySQL." -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:357 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "Η %s έχει απενεργοποιήθεί σε αυτό το διακομιστή MySQL." -#: libraries/StorageEngine.class.php:359 +#: libraries/StorageEngine.class.php:361 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "Αύτος ο διακομιστής MySQL δεν υποστηρίζει τη μηχανή αποθήκευσης %s." -#: libraries/Table.class.php:1018 +#: libraries/Table.class.php:1017 msgid "Invalid database" msgstr "Μη έγκυρη βάση δεδομένων" -#: libraries/Table.class.php:1032 tbl_get_field.php:25 +#: libraries/Table.class.php:1031 tbl_get_field.php:25 msgid "Invalid table name" msgstr "Μη έγκυρο όνομα πίνακα" -#: libraries/Table.class.php:1047 +#: libraries/Table.class.php:1046 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "Σφάλμα μετονομασίας του πίνακα %1$s σε %2$s" -#: libraries/Table.class.php:1131 +#: libraries/Table.class.php:1129 #, php-format msgid "Table %s has been renamed to %s" msgstr "Ο Πίνακας %s μετονομάσθηκε σε %s" @@ -1489,22 +1471,22 @@ msgstr "Προεπισκόπηση μη διαθέσιμη." msgid "take it" msgstr "πάρτε το" -#: libraries/Theme_Manager.class.php:114 +#: libraries/Theme_Manager.class.php:109 #, php-format msgid "Default theme %s not found!" msgstr "Το προεπιλεγμένο θέμα %s δεν βρέθηκε!" -#: libraries/Theme_Manager.class.php:152 +#: libraries/Theme_Manager.class.php:147 #, php-format msgid "Theme %s not found!" msgstr "Το θέμα %s δεν βρέθηκε!" -#: libraries/Theme_Manager.class.php:220 +#: libraries/Theme_Manager.class.php:215 #, php-format msgid "Theme path not found for theme %s!" msgstr "Η διαδρομή θέματος δεν βρέθηκε για το θέμα %s!" -#: libraries/Theme_Manager.class.php:296 test/theme.php:160 themes.php:20 +#: libraries/Theme_Manager.class.php:291 test/theme.php:160 themes.php:20 #: themes.php:40 msgid "Theme / Style" msgstr "Θέμα / Στυλ" @@ -1623,19 +1605,19 @@ msgstr "Δεν τοποθετήθηκε κανένα έγκυρο κλειδί msgid "Authenticating..." msgstr "Επικύρωση..." -#: libraries/blobstreaming.lib.php:689 +#: libraries/blobstreaming.lib.php:340 msgid "View image" msgstr "Προβολή εικόνας" -#: libraries/blobstreaming.lib.php:693 +#: libraries/blobstreaming.lib.php:344 msgid "Play audio" msgstr "Αναπαραγωγή ήχου" -#: libraries/blobstreaming.lib.php:698 +#: libraries/blobstreaming.lib.php:349 msgid "View video" msgstr "Προβολή βίντεο" -#: libraries/blobstreaming.lib.php:702 +#: libraries/blobstreaming.lib.php:353 msgid "Download file" msgstr "Λήψη αρχείου" @@ -1691,7 +1673,7 @@ msgstr "Διακομιστής" msgid "Invalid authentication method set in configuration:" msgstr "Ορίστηκε εσφαλμένη μέθοδος πιστοποίησης στη ρύθμιση:" -#: libraries/common.inc.php:909 +#: libraries/common.inc.php:908 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Πρέπει να αναβαθμίσετε σε %s %s ή νεότερη." @@ -1716,7 +1698,8 @@ msgstr "en" #: libraries/common.lib.php:425 libraries/common.lib.php:427 #: libraries/common.lib.php:429 libraries/common.lib.php:445 #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 -#: libraries/display_export.lib.php:163 libraries/relation.lib.php:84 +#: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 +#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 #: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" @@ -1731,149 +1714,149 @@ msgstr "Εντολή SQL" msgid "MySQL said: " msgstr "Η MySQL επέστρεψε το μύνημα: " -#: libraries/common.lib.php:1136 +#: libraries/common.lib.php:1129 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "Failed to connect to SQL validator!" msgstr "Αδύνατη η σύνδεση στο διακομιστή MySQL" -#: libraries/common.lib.php:1174 setup/lib/messages.inc.php:350 +#: libraries/common.lib.php:1167 setup/lib/messages.inc.php:350 msgid "Explain SQL" msgstr "Ανάλυση SQL" -#: libraries/common.lib.php:1177 +#: libraries/common.lib.php:1170 msgid "Skip Explain SQL" msgstr "Χωρίς ανάλυση SQL" -#: libraries/common.lib.php:1211 +#: libraries/common.lib.php:1204 msgid "Without PHP Code" msgstr "χωρίς κώδικα PHP" -#: libraries/common.lib.php:1214 setup/lib/messages.inc.php:352 +#: libraries/common.lib.php:1207 setup/lib/messages.inc.php:352 msgid "Create PHP Code" msgstr "Δημιουργία κώδικα PHP" -#: libraries/common.lib.php:1232 server_status.php:451 +#: libraries/common.lib.php:1225 server_status.php:451 #: setup/lib/messages.inc.php:351 msgid "Refresh" msgstr "Ανανέωση" -#: libraries/common.lib.php:1241 +#: libraries/common.lib.php:1234 msgid "Skip Validate SQL" msgstr "Παράβλεψη επικύρωσης SQL" -#: libraries/common.lib.php:1244 setup/lib/messages.inc.php:353 +#: libraries/common.lib.php:1237 setup/lib/messages.inc.php:353 msgid "Validate SQL" msgstr "Επικύρωση SQL" -#: libraries/common.lib.php:1283 +#: libraries/common.lib.php:1287 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1285 +#: libraries/common.lib.php:1289 #, fuzzy msgid "Inline" msgstr "Μηχανές" -#: libraries/common.lib.php:1339 libraries/common.lib.php:1354 +#: libraries/common.lib.php:1343 libraries/common.lib.php:1358 msgid "Profiling" msgstr "Δημιουργία προφίλ" -#: libraries/common.lib.php:1358 libraries/tbl_triggers.lib.php:27 +#: libraries/common.lib.php:1362 libraries/tbl_triggers.lib.php:27 #: server_processlist.php:57 msgid "Time" msgstr "Χρόνος" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "B" msgstr "Bytes" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "KiB" msgstr "KB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "MiB" msgstr "MB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "GiB" msgstr "GB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "TiB" msgstr "TB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "PiB" msgstr "PB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "EiB" msgstr "EB" #. l10n: Thousands separator -#: libraries/common.lib.php:1424 +#: libraries/common.lib.php:1428 msgid "," msgstr "." #. l10n: Decimal separator -#: libraries/common.lib.php:1426 +#: libraries/common.lib.php:1430 msgid "." msgstr "," #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1603 +#: libraries/common.lib.php:1607 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y στις %H:%M:%S" -#: libraries/common.lib.php:1909 +#: libraries/common.lib.php:1913 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s μέρες, %s ώρες, %s λεπτά %s δευτερόλεπτα" -#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 -#: libraries/display_tbl.lib.php:289 server_status.php:718 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 +#: libraries/display_tbl.lib.php:288 server_status.php:718 msgid "Begin" msgstr "Κορυφή" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 -#: libraries/display_tbl.lib.php:290 server_binlog.php:154 +#: libraries/common.lib.php:2328 libraries/common.lib.php:2331 +#: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "Προηγούμενο" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 -#: libraries/display_tbl.lib.php:352 +#: libraries/common.lib.php:2359 libraries/common.lib.php:2362 +#: libraries/display_tbl.lib.php:351 msgid "End" msgstr "Τέλος" -#: libraries/common.lib.php:2429 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "Μεταπήδηση στην βάση «%s»." -#: libraries/common.lib.php:2448 +#: libraries/common.lib.php:2453 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Η λειτουργία %s έχει επηρρεαστεί από ένα γνωστό σφάλμα. Δείτε %s" -#: libraries/common.lib.php:2828 libraries/common.lib.php:2835 -#: libraries/db_links.inc.php:67 libraries/export/sql.php:24 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 +#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 -#: libraries/tbl_links.inc.php:59 querywindow.php:89 test/theme.php:96 +#: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "Κώδικας SQL" -#: libraries/common.lib.php:2837 libraries/db_links.inc.php:103 -#: libraries/tbl_links.inc.php:94 libraries/tbl_links.inc.php:116 -#: view_operations.php:88 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: view_operations.php:87 msgid "Operations" msgstr "Λειτουργίες" -#: libraries/core.lib.php:282 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1889,38 +1872,38 @@ msgstr "Συμβάντα" msgid "Name" msgstr "Όνομα" -#: libraries/db_links.inc.php:44 +#: libraries/db_links.inc.php:43 #, php-format msgid "Database %s has been dropped." msgstr "Η βάση δεδομένων %s διεγράφη." -#: libraries/db_links.inc.php:56 libraries/db_links.inc.php:57 -#: libraries/db_links.inc.php:58 +#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 +#: libraries/db_links.inc.php:57 msgid "Database seems to be empty!" msgstr "Η βάση δεδομένων φαίνεται να είναι άδεια!" -#: libraries/db_links.inc.php:80 libraries/relation.lib.php:142 -#: libraries/tbl_links.inc.php:68 +#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "Παρακολούθηση" -#: libraries/db_links.inc.php:85 +#: libraries/db_links.inc.php:84 msgid "Query" msgstr "Επερώτημα κατά παράδειγμα" -#: libraries/db_links.inc.php:90 libraries/relation.lib.php:138 +#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 msgid "Designer" msgstr "Σχεδιαστής" -#: libraries/db_links.inc.php:97 libraries/server_links.inc.php:87 -#: libraries/tbl_links.inc.php:90 pmd_pdf.php:83 pmd_pdf.php:109 +#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Εισαγωγή" -#: libraries/db_links.inc.php:110 libraries/server_links.inc.php:65 -#: server_privileges.php:111 server_privileges.php:1714 -#: server_privileges.php:2063 test/theme.php:116 +#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: server_privileges.php:110 server_privileges.php:1718 +#: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" msgstr "Δικαιώματα" @@ -1932,14 +1915,14 @@ msgstr "Εργασίες" msgid "Return type" msgstr "Τύπος επιστροφής" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1847 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1806 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "Ίσως είναι κατά προσέγγιση. Δείτε τις ΣΑΕ 3.11" -#: libraries/db_structure.lib.php:60 server_databases.php:141 -#: tbl_printview.php:334 tbl_structure.php:681 +#: libraries/db_structure.lib.php:60 server_databases.php:139 +#: tbl_printview.php:333 tbl_structure.php:679 msgid "Overhead" msgstr "Περίσσεια" @@ -1956,7 +1939,7 @@ msgstr "Ο διακομιστής δεν αποκρίνεται" msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "(ή η τοπική υποδοχή του διακομιστή MySQL δεν έχει ρυθμιστεί σωστά)" -#: libraries/dbi/mysql.dbi.lib.php:358 tbl_structure.php:607 +#: libraries/dbi/mysql.dbi.lib.php:358 tbl_structure.php:605 msgid "Details..." msgstr "Λεπτομέρειες..." @@ -1966,22 +1949,22 @@ msgid "Change password" msgstr "Αλλαγή κωδικού πρόσβασης" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:807 +#: libraries/replication_gui.lib.php:347 server_privileges.php:806 msgid "No Password" msgstr "Χωρίς Κωδικό Πρόσβασης" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1530 server_synchronize.php:1174 +#: libraries/replication_gui.lib.php:351 server_privileges.php:795 +#: server_privileges.php:799 server_privileges.php:810 +#: server_privileges.php:1534 server_synchronize.php:1173 msgid "Password" msgstr "Κωδικός Πρόσβασης" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:815 server_privileges.php:818 +#: server_privileges.php:814 server_privileges.php:817 msgid "Re-type" msgstr "Επαναεισαγωγή" @@ -2003,8 +1986,8 @@ msgstr "Δημιουργία νέας βάσης" msgid "Create" msgstr "Δημιουργία" -#: libraries/display_create_database.lib.php:39 server_privileges.php:113 -#: server_privileges.php:1419 server_replication.php:34 +#: libraries/display_create_database.lib.php:39 server_privileges.php:112 +#: server_privileges.php:1423 server_replication.php:33 msgid "No Privileges" msgstr "Χωρίς Δικαιώματα" @@ -2025,50 +2008,50 @@ msgstr "Δημιουργία νέου πίνακα στη βάση %s" msgid "Number of columns" msgstr "Αριθμός πεδίων" -#: libraries/display_export.lib.php:41 +#: libraries/display_export.lib.php:35 msgid "Could not load export plugins, please check your installation!" msgstr "Αδύνατη η φόρτωση προσθέτων εξαγωγής. Ελέξτε την εγκατάστασή σας!" -#: libraries/display_export.lib.php:106 +#: libraries/display_export.lib.php:100 #, fuzzy, php-format #| msgid "Dump %s row(s) starting at record # %s" msgid "Dump %s row(s) starting at row # %s" msgstr "Εμφάνιση %s εγγραφών ξεκινώντας από την εγγραφή %s." -#: libraries/display_export.lib.php:114 +#: libraries/display_export.lib.php:108 msgid "Dump all rows" msgstr "Αχρήστευση όλων των γραμμών" -#: libraries/display_export.lib.php:124 setup/lib/messages.inc.php:79 +#: libraries/display_export.lib.php:118 setup/lib/messages.inc.php:79 msgid "Save as file" msgstr "Αποστολή" -#: libraries/display_export.lib.php:133 +#: libraries/display_export.lib.php:127 #, php-format msgid "Save on server in %s directory" msgstr "Αποθήκευση στον διακομιστή στον φάκελο %s" -#: libraries/display_export.lib.php:141 setup/lib/messages.inc.php:87 +#: libraries/display_export.lib.php:135 setup/lib/messages.inc.php:87 msgid "Overwrite existing file(s)" msgstr "Αντικατάσταση υπαρχόντων αρχείων" -#: libraries/display_export.lib.php:147 +#: libraries/display_export.lib.php:141 msgid "File name template" msgstr "Μορφή ονόματος αρχείου" -#: libraries/display_export.lib.php:151 +#: libraries/display_export.lib.php:145 msgid "server name" msgstr "όνομα διακομιστή" -#: libraries/display_export.lib.php:154 +#: libraries/display_export.lib.php:148 msgid "database name" msgstr "όνομα βάσης δεδομένων" -#: libraries/display_export.lib.php:157 +#: libraries/display_export.lib.php:151 msgid "table name" msgstr "όνομα πίνακα" -#: libraries/display_export.lib.php:161 +#: libraries/display_export.lib.php:155 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2080,39 +2063,39 @@ msgstr "" "και οι ακόλουθες μετατροπές: %3$s. Το υπόλοιπο κείμενο θα παραμείνει όπως " "είναι." -#: libraries/display_export.lib.php:202 +#: libraries/display_export.lib.php:196 msgid "remember template" msgstr "αποθήκευση μορφής" -#: libraries/display_export.lib.php:210 libraries/display_import.lib.php:177 +#: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 #: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 msgid "Character set of the file:" msgstr "Σύνολο χαρακτήρων του αρχείου:" -#: libraries/display_export.lib.php:235 setup/lib/messages.inc.php:81 +#: libraries/display_export.lib.php:229 setup/lib/messages.inc.php:81 msgid "Compression" msgstr "Συμπίεση" -#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:196 -#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:529 -#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:574 -#: server_privileges.php:1867 server_processlist.php:74 +#: libraries/display_export.lib.php:234 libraries/display_import.lib.php:196 +#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:528 +#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:573 +#: server_privileges.php:1871 server_processlist.php:74 msgid "None" msgstr "Καμία" -#: libraries/display_export.lib.php:247 +#: libraries/display_export.lib.php:241 msgid "\"zipped\"" msgstr "συμπίεση «zip»" -#: libraries/display_export.lib.php:253 +#: libraries/display_export.lib.php:247 msgid "\"gzipped\"" msgstr "συμπίεση «gzip»" -#: libraries/display_export.lib.php:259 +#: libraries/display_export.lib.php:253 msgid "\"bzipped\"" msgstr "συμπίεση «bzip»" -#: libraries/display_export.lib.php:274 libraries/export/sql.php:42 +#: libraries/display_export.lib.php:268 libraries/export/sql.php:42 #: libraries/import/sql.php:31 msgid "SQL compatibility mode" msgstr "Κατάσταση συμβατότητας SQL" @@ -2152,13 +2135,13 @@ msgid "File uploads are not allowed on this server." msgstr "Οι αποστολές αρχείων δεν επιτρέπονται σε αυτό τον διακομιστή." #: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 -#: tbl_change.php:1024 +#: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "" "Ο υποκατάλογος που ορίσατε για την αποθήκευση αρχείων δεν μπόρεσε να βρεθεί" #: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 -#: tbl_change.php:1027 +#: tbl_change.php:925 msgid "web server upload directory" msgstr "Υποκατάλογος αποθήκευσης αρχείων διακομιστή" @@ -2244,43 +2227,43 @@ msgstr "Μέγεθος χαρτιού" msgid "Language" msgstr "Γλώσσα" -#: libraries/display_tbl.lib.php:303 +#: libraries/display_tbl.lib.php:302 #, php-format msgid "%d is not valid row number." msgstr "Ο αριθμός %d δεν είναι έγκυρος αριθμός γραμμών." -#: libraries/display_tbl.lib.php:309 +#: libraries/display_tbl.lib.php:308 #, fuzzy #| msgid "row(s) starting from record #" msgid "row(s) starting from row #" msgstr "Εγγραφές αρχίζοντας από την εγγραφή" -#: libraries/display_tbl.lib.php:315 +#: libraries/display_tbl.lib.php:314 msgid "horizontal" msgstr "οριζόντια" -#: libraries/display_tbl.lib.php:316 +#: libraries/display_tbl.lib.php:315 msgid "horizontal (rotated headers)" msgstr "οριζόντια (στραμμένες επικεφαλίδες)" -#: libraries/display_tbl.lib.php:317 +#: libraries/display_tbl.lib.php:316 msgid "vertical" msgstr "κάθετη" -#: libraries/display_tbl.lib.php:323 +#: libraries/display_tbl.lib.php:322 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "σε %s μορφή με επανάληψη επικεφαλίδων ανά %s κελιά" -#: libraries/display_tbl.lib.php:345 +#: libraries/display_tbl.lib.php:344 msgid "This operation could take a long time. Proceed anyway?" msgstr "Αυτή η διαδικασία ίσως κρατήσει αρκετά. Θέλετε να συνεχίσετε;" -#: libraries/display_tbl.lib.php:511 +#: libraries/display_tbl.lib.php:510 msgid "Sort by key" msgstr "Ταξινόμηση ανά κλειδί" -#: libraries/display_tbl.lib.php:554 libraries/export/codegen.php:38 +#: libraries/display_tbl.lib.php:553 libraries/export/codegen.php:38 #: libraries/export/csv.php:29 libraries/export/excel.php:34 #: libraries/export/htmlword.php:28 libraries/export/latex.php:32 #: libraries/export/mediawiki.php:21 libraries/export/ods.php:26 @@ -2290,99 +2273,99 @@ msgstr "Ταξινόμηση ανά κλειδί" #: libraries/export/xlsx.php:26 libraries/export/xml.php:23 #: libraries/export/yaml.php:27 libraries/import.lib.php:1114 #: libraries/import.lib.php:1136 libraries/import/csv.php:31 -#: libraries/import/docsql.php:33 libraries/import/ldi.php:46 +#: libraries/import/docsql.php:32 libraries/import/ldi.php:46 #: libraries/import/ods.php:30 libraries/import/sql.php:19 #: libraries/import/xls.php:25 libraries/import/xlsx.php:25 -#: libraries/import/xml.php:25 tbl_select.php:264 tbl_structure.php:752 +#: libraries/import/xml.php:25 tbl_select.php:263 tbl_structure.php:750 msgid "Options" msgstr "Επιλογές" -#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:569 +#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:568 msgid "Partial Texts" msgstr "Περιληπτικά κείμενα" -#: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:573 +#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:572 msgid "Full Texts" msgstr "Πλήρη κείμενα" -#: libraries/display_tbl.lib.php:586 +#: libraries/display_tbl.lib.php:585 msgid "Relational key" msgstr "Κλειδί συσχέτισης" -#: libraries/display_tbl.lib.php:587 +#: libraries/display_tbl.lib.php:586 #, fuzzy #| msgid "Relational display field" msgid "Relational display column" msgstr "Πεδίο προβολής συσχέτισης" -#: libraries/display_tbl.lib.php:594 +#: libraries/display_tbl.lib.php:593 msgid "Show binary contents" msgstr "Εμφάνιση δυαδικών περιεχομένων" -#: libraries/display_tbl.lib.php:596 +#: libraries/display_tbl.lib.php:595 msgid "Show BLOB contents" msgstr "Εμφάνιση περιεχομένων BLOB" -#: libraries/display_tbl.lib.php:598 +#: libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "Εμφάνιση δυαδικών περιεχομένων ως Δεκαεξαδικά" -#: libraries/display_tbl.lib.php:606 pmd_general.php:140 tbl_change.php:312 -#: tbl_change.php:318 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:307 +#: tbl_change.php:313 msgid "Hide" msgstr "Απόκρυψη" -#: libraries/display_tbl.lib.php:606 libraries/relation.lib.php:122 -#: libraries/tbl_properties.inc.php:143 transformation_overview.php:46 +#: libraries/display_tbl.lib.php:605 libraries/relation.lib.php:117 +#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46 msgid "Browser transformation" msgstr "Μετατροπή περιηγητή" -#: libraries/display_tbl.lib.php:1125 libraries/display_tbl.lib.php:1129 -#: libraries/display_tbl.lib.php:1131 +#: libraries/display_tbl.lib.php:1124 libraries/display_tbl.lib.php:1128 +#: libraries/display_tbl.lib.php:1130 msgid "Execute bookmarked query" msgstr "Εκτέλεση αποθηκευμένου ερωτήματος" -#: libraries/display_tbl.lib.php:1144 libraries/display_tbl.lib.php:1156 +#: libraries/display_tbl.lib.php:1143 libraries/display_tbl.lib.php:1155 msgid "The row has been deleted" msgstr "Η Εγγραφή έχει διαγραφεί" -#: libraries/display_tbl.lib.php:1183 libraries/display_tbl.lib.php:2055 +#: libraries/display_tbl.lib.php:1182 libraries/display_tbl.lib.php:2014 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "Τερματισμός" -#: libraries/display_tbl.lib.php:1933 +#: libraries/display_tbl.lib.php:1892 msgid "in query" msgstr "στην εντολή" -#: libraries/display_tbl.lib.php:1951 +#: libraries/display_tbl.lib.php:1910 msgid "Showing rows" msgstr "Εμφάνιση εγγραφής " -#: libraries/display_tbl.lib.php:1961 +#: libraries/display_tbl.lib.php:1920 msgid "total" msgstr "συνολικά" -#: libraries/display_tbl.lib.php:1969 sql.php:523 +#: libraries/display_tbl.lib.php:1928 sql.php:522 #, php-format msgid "Query took %01.4f sec" msgstr "Το ερώτημα χρειάστηκε %01.4f δευτερόλεπτα" -#: libraries/display_tbl.lib.php:2088 libraries/mult_submits.inc.php:112 -#: querywindow.php:115 querywindow.php:119 querywindow.php:122 -#: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:469 +#: libraries/display_tbl.lib.php:2047 libraries/mult_submits.inc.php:112 +#: querywindow.php:114 querywindow.php:118 querywindow.php:121 +#: tbl_structure.php:23 tbl_structure.php:148 tbl_structure.php:467 msgid "Change" msgstr "Αλλαγή" -#: libraries/display_tbl.lib.php:2158 +#: libraries/display_tbl.lib.php:2117 msgid "Query results operations" msgstr "Λειτουργίες αποτελεσμάτων ερωτήματος" -#: libraries/display_tbl.lib.php:2186 +#: libraries/display_tbl.lib.php:2145 msgid "Print view (with full texts)" msgstr "Προβολή εκτύπωσης (με πλήρη κείμενα)" -#: libraries/display_tbl.lib.php:2359 +#: libraries/display_tbl.lib.php:2318 msgid "Link not found" msgstr "Δεν βρέθηκε η σύνδεση" @@ -2439,9 +2422,9 @@ msgstr "Κατάσταση InnoDB" msgid "Buffer Pool Usage" msgstr "Χρήση Buffer Pool" -#: libraries/engines/innodb.lib.php:168 server_databases.php:136 -#: server_databases.php:304 server_status.php:524 server_status.php:585 -#: server_status.php:606 tbl_printview.php:349 tbl_structure.php:695 +#: libraries/engines/innodb.lib.php:168 server_databases.php:134 +#: server_databases.php:302 server_status.php:524 server_status.php:585 +#: server_status.php:606 tbl_printview.php:348 tbl_structure.php:693 msgid "Total" msgstr "Σύνολο" @@ -2580,6 +2563,87 @@ msgstr "" "εκτέλεση της εντολής REPAIR TABLE ή όταν δημιουργούνται ευρετήρια με τις " "εντολές CREATE INDEX ή ALTER TABLE." +#: libraries/engines/pbms.lib.php:31 +#, fuzzy +#| msgid "Garbage threshold" +msgid "Garbage Threshold" +msgstr "Όριο σκουπιδιών" + +#: libraries/engines/pbms.lib.php:32 +#, fuzzy +#| msgid "" +#| "The percentage of garbage in a data log file before it is compacted. This " +#| "is a value between 1 and 99. The default is 50." +msgid "The percentage of garbage in a repository file before it is compacted." +msgstr "" +"Το ποσοστό των σκουπιδιών στο αρχείο καταγραφής δεδομένων πριν συμπιεστεί. " +"Λαμβάνει τιμές από 1 έως 99. Προεπιλεγμένη τιμή είναι το 50." + +#: libraries/engines/pbms.lib.php:36 libraries/replication_gui.lib.php:69 +#: server_synchronize.php:1161 +msgid "Port" +msgstr "Θύρα" + +#: libraries/engines/pbms.lib.php:37 +msgid "" +"The port for the PBMS stream-based communications. Setting this value to 0 " +"will disable HTTP communication with the daemon." +msgstr "" + +#: libraries/engines/pbms.lib.php:41 +msgid "Repository Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:42 +msgid "" +"The maximum size of a BLOB repository file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:46 +msgid "Temp Blob Timeout" +msgstr "" + +#: libraries/engines/pbms.lib.php:47 +msgid "" +"The timeout, in seconds, for temporary BLOBs. Uploaded BLOB data is removed " +"after this time, unless they are referenced by a record in the database." +msgstr "" + +#: libraries/engines/pbms.lib.php:51 +#, fuzzy +#| msgid "Log file threshold" +msgid "Temp Log Threshold" +msgstr "Όριο αρχείου καταγραφής" + +#: libraries/engines/pbms.lib.php:52 +msgid "" +"The maximum size of a temporary BLOB log file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:56 +msgid "Max Keep Alive" +msgstr "" + +#: libraries/engines/pbms.lib.php:57 +msgid "" +"The timeout for inactive connection with the keep-alive flag set. After this " +"time the connection will be closed. The time-out is in milliseconds (1/1000)." +msgstr "" + +#: libraries/engines/pbms.lib.php:61 +msgid "Metadata Headers" +msgstr "" + +#: libraries/engines/pbms.lib.php:62 +msgid "" +"A \":\" delimited list of metadata headers to be used to initialize the " +"pbms_metadata_header table when a database is created." +msgstr "" + #: libraries/engines/pbxt.lib.php:22 msgid "Index cache size" msgstr "Μέγεθος λανθάνουσας μνήμης ευρετηρίου" @@ -2733,7 +2797,7 @@ msgstr "" "τους δίδεται ο επόμενος αύξων αριθμός." #: libraries/export/codegen.php:36 setup/lib/messages.inc.php:85 -#: tbl_printview.php:374 tbl_structure.php:736 +#: tbl_printview.php:373 tbl_structure.php:734 msgid "Format" msgstr "Μορφοποίηση" @@ -2806,9 +2870,9 @@ msgstr "Έγγραφο Microsoft Word 2000" #: libraries/export/htmlword.php:23 libraries/export/latex.php:59 #: libraries/export/latex.php:205 libraries/export/odt.php:47 #: libraries/export/sql.php:105 libraries/export/sql.php:865 -#: libraries/export/texytext.php:27 server_databases.php:126 -#: server_privileges.php:576 server_replication.php:315 tbl_printview.php:315 -#: tbl_structure.php:664 +#: libraries/export/texytext.php:27 server_databases.php:124 +#: server_privileges.php:575 server_replication.php:314 tbl_printview.php:314 +#: tbl_structure.php:662 msgid "Data" msgstr "Δεδομένα" @@ -2859,13 +2923,13 @@ msgid "Label key" msgstr "Κλειδί ετικέτας" #: libraries/export/latex.php:46 libraries/export/odt.php:34 -#: libraries/export/sql.php:90 tbl_relation.php:398 +#: libraries/export/sql.php:90 tbl_relation.php:396 msgid "Relations" msgstr "Συσχετίσεις" #: libraries/export/latex.php:52 libraries/export/odt.php:40 #: libraries/export/odt.php:317 libraries/export/sql.php:94 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "Τύπος MIME" @@ -2873,10 +2937,10 @@ msgstr "Τύπος MIME" #: libraries/export/xml.php:101 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1529 server_privileges.php:2061 -#: server_processlist.php:54 server_synchronize.php:1158 +#: libraries/replication_gui.lib.php:331 server_privileges.php:730 +#: server_privileges.php:733 server_privileges.php:789 +#: server_privileges.php:1533 server_privileges.php:2065 +#: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "Σύστημα" @@ -3065,8 +3129,8 @@ msgstr "Εξαγωγή προβολών" msgid "Export contents" msgstr "Εξαγωγή περιεχομένων" -#: libraries/footer.inc.php:182 libraries/footer.inc.php:193 -#: libraries/footer.inc.php:196 +#: libraries/footer.inc.php:180 libraries/footer.inc.php:191 +#: libraries/footer.inc.php:194 msgid "Open new phpMyAdmin window" msgstr "Άνοιγμα νέου παραθύρου phpMyAdmin" @@ -3082,7 +3146,7 @@ msgstr "αποτέλεσμα SQL" msgid "Generated by" msgstr "Δημιουργήθηκε από:" -#: libraries/import.lib.php:151 sql.php:519 tbl_change.php:180 +#: libraries/import.lib.php:151 sql.php:518 tbl_change.php:175 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" @@ -3139,7 +3203,7 @@ msgstr "Παράβλεψη διπλών γραμμών" msgid "Column names in first row" msgstr "Ονόματα στήλης στην πρώτη γραμμή" -#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:501 +#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:500 #: view_create.php:147 msgid "Column names" msgstr "Ονόματα στηλών" @@ -3166,12 +3230,12 @@ msgstr "Μη έγκυρη μορφή στο εισαχθέν CSV στη γραμ msgid "Invalid column count in CSV input on line %d." msgstr "Μη έγκυρο πλήθος πεδίων στο εισαχθέν CSV στη γραμμή %d." -#: libraries/import/docsql.php:28 +#: libraries/import/docsql.php:27 msgid "DocSQL" msgstr "DocSQL" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 -#: server_synchronize.php:427 server_synchronize.php:870 +#: libraries/import/docsql.php:30 libraries/tbl_properties.inc.php:616 +#: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "Ονομασία πίνακας" @@ -3229,26 +3293,26 @@ msgstr "Καμία" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:512 -#: tbl_structure.php:28 tbl_structure.php:152 tbl_structure.php:156 -#: tbl_structure.php:472 +#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:511 +#: tbl_structure.php:27 tbl_structure.php:151 tbl_structure.php:155 +#: tbl_structure.php:470 msgid "Primary" msgstr "Πρωτεύον" #: libraries/mult_submits.inc.php:97 libraries/tbl_properties.inc.php:115 -#: libraries/tbl_properties.inc.php:524 tbl_printview.php:324 -#: tbl_structure.php:30 tbl_structure.php:153 tbl_structure.php:157 -#: tbl_structure.php:474 tbl_structure.php:672 +#: libraries/tbl_properties.inc.php:523 tbl_printview.php:323 +#: tbl_structure.php:29 tbl_structure.php:152 tbl_structure.php:156 +#: tbl_structure.php:472 tbl_structure.php:670 msgid "Index" msgstr "Ευρετήριο" -#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:530 -#: tbl_structure.php:34 tbl_structure.php:155 tbl_structure.php:159 -#: tbl_structure.php:477 +#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:529 +#: tbl_structure.php:33 tbl_structure.php:154 tbl_structure.php:158 +#: tbl_structure.php:475 msgid "Fulltext" msgstr "Πλήρες κείμενο" -#: libraries/mult_submits.inc.php:434 tbl_replace.php:330 +#: libraries/mult_submits.inc.php:433 tbl_replace.php:330 msgid "No change" msgstr "Χωρίς αλλαγή" @@ -3256,190 +3320,190 @@ msgstr "Χωρίς αλλαγή" msgid "Charset" msgstr "Σύνολο χαρακτήρων" -#: libraries/mysql_charsets.lib.php:210 libraries/mysql_charsets.lib.php:411 -#: tbl_change.php:515 +#: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 +#: tbl_change.php:510 msgid "Binary" msgstr "Δυαδικό" -#: libraries/mysql_charsets.lib.php:222 +#: libraries/mysql_charsets.lib.php:214 msgid "Bulgarian" msgstr "Βουλγαρικά" -#: libraries/mysql_charsets.lib.php:226 libraries/mysql_charsets.lib.php:351 +#: libraries/mysql_charsets.lib.php:218 libraries/mysql_charsets.lib.php:343 msgid "Simplified Chinese" msgstr "Απλοποιημένα Κινεζικά" -#: libraries/mysql_charsets.lib.php:228 libraries/mysql_charsets.lib.php:371 +#: libraries/mysql_charsets.lib.php:220 libraries/mysql_charsets.lib.php:363 msgid "Traditional Chinese" msgstr "Παραδοσιακά Κινεζικά" -#: libraries/mysql_charsets.lib.php:232 libraries/mysql_charsets.lib.php:418 +#: libraries/mysql_charsets.lib.php:224 libraries/mysql_charsets.lib.php:410 msgid "case-insensitive" msgstr "χωρίς ταίριασμα πεζών-κεφαλαίων" -#: libraries/mysql_charsets.lib.php:235 libraries/mysql_charsets.lib.php:420 +#: libraries/mysql_charsets.lib.php:227 libraries/mysql_charsets.lib.php:412 msgid "case-sensitive" msgstr "ταίριασμα πεζών-κεφαλαίων" -#: libraries/mysql_charsets.lib.php:238 +#: libraries/mysql_charsets.lib.php:230 msgid "Croatian" msgstr "Κροατικά" -#: libraries/mysql_charsets.lib.php:241 +#: libraries/mysql_charsets.lib.php:233 msgid "Czech" msgstr "Τσεχικά" -#: libraries/mysql_charsets.lib.php:244 +#: libraries/mysql_charsets.lib.php:236 msgid "Danish" msgstr "Δανικά" -#: libraries/mysql_charsets.lib.php:247 +#: libraries/mysql_charsets.lib.php:239 msgid "English" msgstr "Αγγλικά" -#: libraries/mysql_charsets.lib.php:250 +#: libraries/mysql_charsets.lib.php:242 msgid "Esperanto" msgstr "Εσπεράντο" -#: libraries/mysql_charsets.lib.php:253 +#: libraries/mysql_charsets.lib.php:245 msgid "Estonian" msgstr "Εσθονικά" -#: libraries/mysql_charsets.lib.php:256 libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:248 libraries/mysql_charsets.lib.php:251 msgid "German" msgstr "Γερμανικά" -#: libraries/mysql_charsets.lib.php:256 +#: libraries/mysql_charsets.lib.php:248 msgid "dictionary" msgstr "περιληπτικός πίνακας" -#: libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:251 msgid "phone book" msgstr "τηλ. κατάλογος" -#: libraries/mysql_charsets.lib.php:262 +#: libraries/mysql_charsets.lib.php:254 msgid "Hungarian" msgstr "Ουγγρικά" -#: libraries/mysql_charsets.lib.php:265 +#: libraries/mysql_charsets.lib.php:257 msgid "Icelandic" msgstr "Ισλανδικά" -#: libraries/mysql_charsets.lib.php:268 libraries/mysql_charsets.lib.php:358 +#: libraries/mysql_charsets.lib.php:260 libraries/mysql_charsets.lib.php:350 msgid "Japanese" msgstr "Ιαπωνικά" -#: libraries/mysql_charsets.lib.php:271 +#: libraries/mysql_charsets.lib.php:263 msgid "Latvian" msgstr "Λιθουανικά" -#: libraries/mysql_charsets.lib.php:274 +#: libraries/mysql_charsets.lib.php:266 msgid "Lithuanian" msgstr "Λιθουανικά" -#: libraries/mysql_charsets.lib.php:277 libraries/mysql_charsets.lib.php:380 +#: libraries/mysql_charsets.lib.php:269 libraries/mysql_charsets.lib.php:372 msgid "Korean" msgstr "Κορεατικά" -#: libraries/mysql_charsets.lib.php:280 +#: libraries/mysql_charsets.lib.php:272 msgid "Persian" msgstr "Περσικά" -#: libraries/mysql_charsets.lib.php:283 +#: libraries/mysql_charsets.lib.php:275 msgid "Polish" msgstr "Πολωνικά" -#: libraries/mysql_charsets.lib.php:286 libraries/mysql_charsets.lib.php:334 +#: libraries/mysql_charsets.lib.php:278 libraries/mysql_charsets.lib.php:326 msgid "West European" msgstr "Δυτικής Ευρώπης" -#: libraries/mysql_charsets.lib.php:289 +#: libraries/mysql_charsets.lib.php:281 msgid "Romanian" msgstr "Ρουμάνικα" -#: libraries/mysql_charsets.lib.php:292 +#: libraries/mysql_charsets.lib.php:284 msgid "Slovak" msgstr "Σλοβάκικα" -#: libraries/mysql_charsets.lib.php:295 +#: libraries/mysql_charsets.lib.php:287 msgid "Slovenian" msgstr "Σλοβένικα" -#: libraries/mysql_charsets.lib.php:298 +#: libraries/mysql_charsets.lib.php:290 msgid "Spanish" msgstr "Ισπανικά" -#: libraries/mysql_charsets.lib.php:301 +#: libraries/mysql_charsets.lib.php:293 msgid "Traditional Spanish" msgstr "Παραδοσιακά Ισπανικά" -#: libraries/mysql_charsets.lib.php:304 libraries/mysql_charsets.lib.php:401 +#: libraries/mysql_charsets.lib.php:296 libraries/mysql_charsets.lib.php:393 msgid "Swedish" msgstr "Σουηδικά" -#: libraries/mysql_charsets.lib.php:307 libraries/mysql_charsets.lib.php:404 +#: libraries/mysql_charsets.lib.php:299 libraries/mysql_charsets.lib.php:396 msgid "Thai" msgstr "Ταϊλανδικά" -#: libraries/mysql_charsets.lib.php:310 libraries/mysql_charsets.lib.php:398 +#: libraries/mysql_charsets.lib.php:302 libraries/mysql_charsets.lib.php:390 msgid "Turkish" msgstr "Τουρκικά" -#: libraries/mysql_charsets.lib.php:313 libraries/mysql_charsets.lib.php:395 +#: libraries/mysql_charsets.lib.php:305 libraries/mysql_charsets.lib.php:387 msgid "Ukrainian" msgstr "Ουκρανικά" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 msgid "Unicode" msgstr "Unicode" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 -#: libraries/mysql_charsets.lib.php:334 libraries/mysql_charsets.lib.php:341 -#: libraries/mysql_charsets.lib.php:363 libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 +#: libraries/mysql_charsets.lib.php:326 libraries/mysql_charsets.lib.php:333 +#: libraries/mysql_charsets.lib.php:355 libraries/mysql_charsets.lib.php:366 msgid "multilingual" msgstr "πολυγλωσσικό" -#: libraries/mysql_charsets.lib.php:341 +#: libraries/mysql_charsets.lib.php:333 msgid "Central European" msgstr "Κεντρικής Ευρώπης" -#: libraries/mysql_charsets.lib.php:346 +#: libraries/mysql_charsets.lib.php:338 msgid "Russian" msgstr "Ρωσικά" -#: libraries/mysql_charsets.lib.php:363 +#: libraries/mysql_charsets.lib.php:355 msgid "Baltic" msgstr "Βαλτικής" -#: libraries/mysql_charsets.lib.php:368 +#: libraries/mysql_charsets.lib.php:360 msgid "Armenian" msgstr "Αρμενικά" -#: libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:366 msgid "Cyrillic" msgstr "Κυριλλικά" -#: libraries/mysql_charsets.lib.php:377 +#: libraries/mysql_charsets.lib.php:369 msgid "Arabic" msgstr "Αραβικά" -#: libraries/mysql_charsets.lib.php:383 +#: libraries/mysql_charsets.lib.php:375 msgid "Hebrew" msgstr "Εβραϊκά" -#: libraries/mysql_charsets.lib.php:386 +#: libraries/mysql_charsets.lib.php:378 msgid "Georgian" msgstr "Γεωργιανά" -#: libraries/mysql_charsets.lib.php:389 +#: libraries/mysql_charsets.lib.php:381 msgid "Greek" msgstr "Ελληνικά" -#: libraries/mysql_charsets.lib.php:392 +#: libraries/mysql_charsets.lib.php:384 msgid "Czech-Slovak" msgstr "Τσέχο-Σλοβάκικα" -#: libraries/mysql_charsets.lib.php:407 libraries/mysql_charsets.lib.php:414 +#: libraries/mysql_charsets.lib.php:399 libraries/mysql_charsets.lib.php:406 msgid "unknown" msgstr "άγνωστο" @@ -3465,69 +3529,69 @@ msgstr "Παράθυρο ερωτήματος" msgid "This format has no options" msgstr "Αυτή η μορφή δεν έχει επιλογές" -#: libraries/relation.lib.php:82 +#: libraries/relation.lib.php:77 msgid "not OK" msgstr "ΛΑΘΟΣ" -#: libraries/relation.lib.php:86 pmd_general.php:339 +#: libraries/relation.lib.php:81 pmd_general.php:339 msgid "OK" msgstr "Εντάξει" -#: libraries/relation.lib.php:87 +#: libraries/relation.lib.php:82 msgid "Enabled" msgstr "Ενεργοποιημένη" -#: libraries/relation.lib.php:110 +#: libraries/relation.lib.php:105 msgid "Display Features" msgstr "Λειτουργίες εμφάνισης" -#: libraries/relation.lib.php:116 +#: libraries/relation.lib.php:111 msgid "Creation of PDFs" msgstr "Δημιουργία αρχείων PDF" -#: libraries/relation.lib.php:120 +#: libraries/relation.lib.php:115 msgid "Displaying Column Comments" msgstr "Εμφάνιση σχολίων πεδίων" -#: libraries/relation.lib.php:125 +#: libraries/relation.lib.php:120 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "Παρακαλώ διαβάστε στην τεκμηρίωση για το πως μπορείτε να ανανεώσετε τον " "πίνακα Column_comments" -#: libraries/relation.lib.php:130 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 msgid "Bookmarked SQL query" msgstr "Αποθηκευμένο ερώτημα SQL" -#: libraries/relation.lib.php:134 querywindow.php:99 querywindow.php:207 +#: libraries/relation.lib.php:129 querywindow.php:98 querywindow.php:205 msgid "SQL history" msgstr "Ιστορικό SQL" -#: libraries/relation.lib.php:146 +#: libraries/relation.lib.php:141 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:148 +#: libraries/relation.lib.php:143 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" -#: libraries/relation.lib.php:149 +#: libraries/relation.lib.php:144 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:150 +#: libraries/relation.lib.php:145 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:151 +#: libraries/relation.lib.php:146 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1158 +#: libraries/relation.lib.php:1153 msgid "no description" msgstr "χωρίς περιγραφή" @@ -3535,7 +3599,7 @@ msgstr "χωρίς περιγραφή" msgid "Slave configuration" msgstr "Ρύθμιση δευτερεύοντος" -#: libraries/replication_gui.lib.php:53 server_replication.php:346 +#: libraries/replication_gui.lib.php:53 server_replication.php:345 msgid "Change or reconfigure master server" msgstr "Αλλαγή ή επαναρύθμιση του πρωτεύοντος διακομιστή" @@ -3549,16 +3613,12 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:711 -#: server_privileges.php:714 server_privileges.php:721 -#: server_synchronize.php:1170 +#: libraries/replication_gui.lib.php:261 server_privileges.php:710 +#: server_privileges.php:713 server_privileges.php:720 +#: server_synchronize.php:1169 msgid "User name" msgstr "Όνομα χρήστη" -#: libraries/replication_gui.lib.php:69 server_synchronize.php:1162 -msgid "Port" -msgstr "Θύρα" - #: libraries/replication_gui.lib.php:105 msgid "Master status" msgstr "Κατάσταση πρωτεύοντος" @@ -3573,8 +3633,8 @@ msgid "Variable" msgstr "Μεταβλητή" #: libraries/replication_gui.lib.php:117 server_status.php:737 -#: tbl_change.php:322 tbl_printview.php:368 tbl_select.php:137 -#: tbl_structure.php:728 +#: tbl_change.php:317 tbl_printview.php:367 tbl_select.php:136 +#: tbl_structure.php:726 msgid "Value" msgstr "Τιμή" @@ -3590,38 +3650,38 @@ msgstr "" "Μόνο οι δευτερεύοντες που εκκινούν με την ρύθμιση --report-host=host_name " "είναι ορατοί σε αυτή τη λίστα." -#: libraries/replication_gui.lib.php:242 server_replication.php:193 +#: libraries/replication_gui.lib.php:242 server_replication.php:192 msgid "Add slave replication user" msgstr "Προσθήκη δευτερέοντα χρήστη αναπαραγωγής" -#: libraries/replication_gui.lib.php:256 server_privileges.php:716 +#: libraries/replication_gui.lib.php:256 server_privileges.php:715 msgid "Any user" msgstr "Οποιοσδήποτε Χρήστης" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1920 server_privileges.php:1950 +#: libraries/replication_gui.lib.php:348 server_privileges.php:716 +#: server_privileges.php:783 server_privileges.php:807 +#: server_privileges.php:1924 server_privileges.php:1954 msgid "Use text field" msgstr "Χρησιμοποιήστε το πεδίο κειμένου" -#: libraries/replication_gui.lib.php:304 server_privileges.php:764 +#: libraries/replication_gui.lib.php:304 server_privileges.php:763 msgid "Any host" msgstr "Οποιοδήποτε Σύστημα" -#: libraries/replication_gui.lib.php:308 server_privileges.php:768 +#: libraries/replication_gui.lib.php:308 server_privileges.php:767 msgid "Local" msgstr "Τοπικό" -#: libraries/replication_gui.lib.php:314 server_privileges.php:773 +#: libraries/replication_gui.lib.php:314 server_privileges.php:772 msgid "This Host" msgstr "Αυτός ο διακομιστής" -#: libraries/replication_gui.lib.php:320 server_privileges.php:779 +#: libraries/replication_gui.lib.php:320 server_privileges.php:778 msgid "Use Host Table" msgstr "Χρήση Οικείου Πίνακα" -#: libraries/replication_gui.lib.php:333 server_privileges.php:792 +#: libraries/replication_gui.lib.php:333 server_privileges.php:791 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3649,8 +3709,8 @@ msgstr "Άγνωστη γλώσσα: %1$s." msgid "Servers" msgstr "Διακομιστές" -#: libraries/server_links.inc.php:52 server_engines.php:111 -#: server_engines.php:115 server_status.php:414 test/theme.php:104 +#: libraries/server_links.inc.php:52 server_engines.php:125 +#: server_engines.php:129 server_status.php:414 test/theme.php:104 msgid "Variables" msgstr "Μεταβλητές" @@ -3671,12 +3731,12 @@ msgstr "Δυαδικό αρχείο καταγραφής" msgid "Processes" msgstr "Διεργασίες" -#: libraries/server_links.inc.php:91 server_synchronize.php:1091 -#: server_synchronize.php:1099 +#: libraries/server_links.inc.php:91 server_synchronize.php:1090 +#: server_synchronize.php:1098 msgid "Synchronize" msgstr "Συγχρονισμός" -#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1109 +#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1108 msgid "Source database" msgstr "Βάση δεδομένων προέλευσης" @@ -3694,7 +3754,7 @@ msgstr "Απομακρυσμένος διακομιστής" msgid "Difference" msgstr "Διαφορά" -#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1111 +#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1110 msgid "Target database" msgstr "Βάση δεδομένων προορισμού" @@ -3714,11 +3774,11 @@ msgstr "Εκτέλεση εντολής/εντολών SQL στη βάση δε msgid "Columns" msgstr "Ονόματα στηλών" -#: libraries/sql_query_form.lib.php:342 sql.php:664 sql.php:665 sql.php:682 +#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "Αποθήκευση αυτού του ερωτήματος SQL" -#: libraries/sql_query_form.lib.php:349 sql.php:676 +#: libraries/sql_query_form.lib.php:349 sql.php:669 msgid "Let every user access this bookmark" msgstr "Δικαίωμα πρόσβασης στο σελίδοδείκτη σε κάθε χρήστη" @@ -3815,12 +3875,12 @@ msgstr "" "εγκαταστήσει της απαραίτητες επεκτάσεις της php όπως περιγράφεται στην " "%sτεκμηρίωση%s." -#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:139 -#: libraries/tbl_links.inc.php:140 +#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 +#: libraries/tbl_links.inc.php:139 msgid "Table seems to be empty!" msgstr "Ο πίνακας φαίνεται να είναι άδειος!" -#: libraries/tbl_links.inc.php:148 +#: libraries/tbl_links.inc.php:147 #, php-format msgid "Tracking of %s.%s is activated." msgstr "Παρακολούθηση του %s.%s ενεργοποιήθηκε." @@ -3855,12 +3915,12 @@ msgstr "" "Για προκαθορισμένες τιμές, παρακαλώ εισάγετε μία τιμή, χωρίς χαρακτήρες " "διαφυγής ή εισαγωγικά, χρησιμοποιώντας τη μορφή: a" -#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1263 -#: pdf_schema.php:1284 tbl_printview.php:142 tbl_structure.php:179 +#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1262 +#: pdf_schema.php:1283 tbl_printview.php:141 tbl_structure.php:178 msgid "Attributes" msgstr "Χαρακτηριστικά" -#: libraries/tbl_properties.inc.php:136 +#: libraries/tbl_properties.inc.php:135 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -3869,11 +3929,11 @@ msgstr "" "Για μία λίστα με τις διαθέσιμες μετατροπές και τις μετατροπές τύπου MIME, " "πατήστε %sπεριγραφές μετατροπών%s" -#: libraries/tbl_properties.inc.php:144 +#: libraries/tbl_properties.inc.php:143 msgid "Transformation options" msgstr "Επιλογές μετατροπής" -#: libraries/tbl_properties.inc.php:145 +#: libraries/tbl_properties.inc.php:144 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
                            If you ever need to put a backslash (\"\\\") or a single " @@ -3885,17 +3945,17 @@ msgstr "" "εισαγωγικά («'») στις τιμές, χρησιμοποιείτε καθέτους (παράδειγμα '\\\\χψω' ή " "'α\\'β')." -#: libraries/tbl_properties.inc.php:392 +#: libraries/tbl_properties.inc.php:391 #, fuzzy msgctxt "for default" msgid "None" msgstr "Καμία" -#: libraries/tbl_properties.inc.php:393 +#: libraries/tbl_properties.inc.php:392 msgid "As defined:" msgstr "Όπως ορίστηκε:" -#: libraries/tbl_properties.inc.php:579 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:578 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
                            Please ask the " @@ -3904,29 +3964,29 @@ msgstr "" "Δεν υπάρχει διαθέσιμη περιγραφή για αυτή τη μετατροπή.
                            Απευθύνθείτε " "στον δημιουργό της για να μάθετε τι κάνει η μετατροπή %s." -#: libraries/tbl_properties.inc.php:725 server_engines.php:57 -#: tbl_operations.php:354 +#: libraries/tbl_properties.inc.php:724 server_engines.php:56 +#: tbl_operations.php:352 msgid "Storage Engine" msgstr "Μηχανή αποθήκευσης" -#: libraries/tbl_properties.inc.php:754 +#: libraries/tbl_properties.inc.php:753 msgid "PARTITION definition" msgstr "Ορισμός ΚΑΤΑΤΜΗΣΗΣ (PARTITION)" -#: libraries/tbl_properties.inc.php:775 pdf_pages.php:502 +#: libraries/tbl_properties.inc.php:774 pdf_pages.php:501 #: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214 -#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1124 tbl_indexes.php:247 -#: tbl_relation.php:565 +#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1022 tbl_indexes.php:246 +#: tbl_relation.php:563 msgid "Save" msgstr "Αποθήκευση" -#: libraries/tbl_properties.inc.php:779 tbl_structure.php:541 +#: libraries/tbl_properties.inc.php:778 tbl_structure.php:539 #, fuzzy, php-format #| msgid "Add column(s)" msgid "Add %s column(s)" msgstr "Προσθήκη στήλης(ών)" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:535 +#: libraries/tbl_properties.inc.php:782 tbl_structure.php:533 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -4137,8 +4197,8 @@ msgstr "Περιβάλλον εργασίας" msgid "Custom color" msgstr "Προσαρμοσμένο χρώμα" -#: main.php:162 pdf_pages.php:362 setup/lib/FormDisplay.tpl.php:216 -#: tbl_change.php:1173 +#: main.php:162 pdf_pages.php:361 setup/lib/FormDisplay.tpl.php:216 +#: tbl_change.php:1071 msgid "Reset" msgstr "Επαναφορά" @@ -4146,8 +4206,8 @@ msgstr "Επαναφορά" msgid "Protocol version" msgstr "Έκδοση πρωτοκόλλου" -#: main.php:188 server_privileges.php:1381 server_privileges.php:1528 -#: server_privileges.php:1642 server_privileges.php:2060 +#: main.php:188 server_privileges.php:1385 server_privileges.php:1532 +#: server_privileges.php:1646 server_privileges.php:2064 #: server_processlist.php:53 msgid "User" msgstr "Χρήστης" @@ -4241,7 +4301,16 @@ msgstr "" "εγκατάστασης, υπάρχει ακόμα στο φάκελο phpMyAdmin. Πρέπει να τον διαγράψετε " "μόλις ρυθμιστεί το phpMyAdmin." -#: main.php:330 +#: main.php:314 +#, php-format +msgid "" +"The additional features for working with linked tables have been " +"deactivated. To find out why click %shere%s." +msgstr "" +"Οι επιπρόσθετες λειτουργίες για εργασία με συσχετισμένους πίνακες έχουν " +"απενεργοποιηθεί. Για να μάθετε γιατί, πατήστε %sεδώ%s." + +#: main.php:329 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " @@ -4251,7 +4320,7 @@ msgstr "" "σας. Μερικές λειτουργίες του phpMyAdmin δεν θα υφίσταται. Για παράδειγμα το " "πλαίσιο πλοήγησης δεν θα ανανεώνεται αυτόματα." -#: main.php:345 +#: main.php:344 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -4260,7 +4329,7 @@ msgstr "" "Η έκδοση της βιβλιοθήκης PHP MySQL (%s) διαφέρει από την έκδοση του " "διακομιστή MySQL (%s). Αυτό ίσως έχει μη προβλέψιμα αποτελέσματα." -#: main.php:357 +#: main.php:356 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -4274,67 +4343,67 @@ msgstr "" msgid "Reload navigation frame" msgstr "Προσαρμογή πλαισίου πλοήγησης" -#: navigation.php:204 server_databases.php:370 server_synchronize.php:1190 +#: navigation.php:203 server_databases.php:368 server_synchronize.php:1189 msgid "No databases" msgstr "Δεν υπάρχουν βάσεις δεδομένων" -#: navigation.php:298 +#: navigation.php:297 msgid "Filter" msgstr "Φίλτρο" -#: navigation.php:299 setup/frames/index.inc.php:218 +#: navigation.php:298 setup/frames/index.inc.php:218 #: setup/lib/messages.inc.php:41 msgid "Clear" msgstr "Καθάρισμα" -#: navigation.php:330 navigation.php:331 +#: navigation.php:329 navigation.php:330 #, fuzzy msgctxt "short form" msgid "Create table" msgstr "Δημιουργία πίνακα" -#: navigation.php:333 navigation.php:495 +#: navigation.php:332 navigation.php:494 msgid "Please select a database" msgstr "Παρακαλώ επιλέξτε μία βάση δεδομένων" -#: pdf_pages.php:40 pdf_pages.php:46 pdf_pages.php:52 pdf_pages.php:57 +#: pdf_pages.php:39 pdf_pages.php:45 pdf_pages.php:51 pdf_pages.php:56 #, php-format msgid "%s table not found or not set in %s" msgstr "Ο πίνακας %s δεν βρέθηκε ή δεν ορίστηκε στη %s" -#: pdf_pages.php:265 +#: pdf_pages.php:264 msgid "Please choose a page to edit" msgstr "Παρακαλώ επιλέξτε σελίδα για αλλαγή" -#: pdf_pages.php:303 pmd_pdf.php:113 +#: pdf_pages.php:302 pmd_pdf.php:111 msgid "Create a page" msgstr "Δημιουργία νέας σελίδας" -#: pdf_pages.php:309 +#: pdf_pages.php:308 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Σελίδα:" -#: pdf_pages.php:313 +#: pdf_pages.php:312 #, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "Αυτόματη διάταξη" -#: pdf_pages.php:315 +#: pdf_pages.php:314 msgid "Internal relations" msgstr "Εσωτερικές συσχετίσεις" -#: pdf_pages.php:338 +#: pdf_pages.php:337 msgid "Select Tables" msgstr "Επιλογή Πινάκων" -#: pdf_pages.php:361 +#: pdf_pages.php:360 msgid "Toggle scratchboard" msgstr "(Απ)ενεργοποίηση πίνακα σχεδιασμού" -#: pdf_pages.php:524 +#: pdf_pages.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -4342,35 +4411,35 @@ msgstr "" "Η τρέχουσα σελίδα έχει αναφορές σε πίνακες που δεν υπάρχουν πια. Θέλετε να " "διαγραφές αυτές οι αναφορές;" -#: pdf_schema.php:635 +#: pdf_schema.php:634 #, fuzzy, php-format msgid "The %s table doesn't exist!" msgstr "Ο πίνακας «%s» δεν υπάρχει!" -#: pdf_schema.php:671 +#: pdf_schema.php:670 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Παρακαλώ ορίστε τις συντεταγμένες για τον πίνακα %s" -#: pdf_schema.php:994 +#: pdf_schema.php:993 #, fuzzy, php-format msgid "Schema of the %s database - Page %s" msgstr "Σχήμα της βάσης «%s» - Σελίδα %s" -#: pdf_schema.php:1012 +#: pdf_schema.php:1011 msgid "No tables" msgstr "Δεν υπάρχουν πίνακες" -#: pdf_schema.php:1031 pdf_schema.php:1140 +#: pdf_schema.php:1030 pdf_schema.php:1139 msgid "Relational schema" msgstr "Σχεσιακό σχήμα" -#: pdf_schema.php:1115 +#: pdf_schema.php:1114 msgid "Table of contents" msgstr "Πίνακας περιεχομένων" -#: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:145 -#: tbl_structure.php:182 tbl_tracking.php:277 +#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 +#: tbl_structure.php:181 tbl_tracking.php:272 msgid "Extra" msgstr "Πρόσθετα" @@ -4382,7 +4451,7 @@ msgstr "Εμφάνιση/Απόκρυψη αριστερού μενού" msgid "Save position" msgstr "Αποθήκευση θέσης" -#: pmd_general.php:70 server_synchronize.php:428 server_synchronize.php:871 +#: pmd_general.php:70 server_synchronize.php:427 server_synchronize.php:870 msgid "Create table" msgstr "Δημιουργία πίνακα" @@ -4461,31 +4530,31 @@ msgstr "" "εμφανιζόμενο πεδίο, πατήστε το εικονίδιο «Επιλογή πεδίο για εμφάνιση» και " "μετά πατήστε το κατάλληλο όνομα πεδίου." -#: pmd_pdf.php:62 +#: pmd_pdf.php:60 msgid "Page has been created" msgstr "Η σελίδα δημιουργήθηκε" -#: pmd_pdf.php:64 +#: pmd_pdf.php:62 msgid "Page creation failed" msgstr "Η δημιουργία σελίδας απέτυχε" -#: pmd_pdf.php:84 +#: pmd_pdf.php:82 msgid "Export/Import to scale" msgstr "Εξαγωγή/Εισαγωγή σε κλίμακα" -#: pmd_pdf.php:88 +#: pmd_pdf.php:86 msgid "recommended" msgstr "προτείνεται" -#: pmd_pdf.php:93 +#: pmd_pdf.php:91 msgid "to/from page" msgstr "από/προς τη σελίδα" -#: querywindow.php:94 +#: querywindow.php:93 msgid "Import files" msgstr "Εισαγωγή αρχείων" -#: querywindow.php:105 +#: querywindow.php:104 msgid "All" msgstr "Όλα" @@ -4531,68 +4600,68 @@ msgstr "Πληροφορία" msgid "Character Sets and Collations" msgstr "Σύνολα και Συνθέσεις Χαρακτήρων" -#: server_databases.php:51 +#: server_databases.php:49 msgid "No databases selected." msgstr "Δεν έχετε επιλέξει βάσεις δεδομένων." -#: server_databases.php:62 +#: server_databases.php:60 #, php-format msgid "%s databases have been dropped successfully." msgstr "%s βάσεις δεδομένων διεγράφησαν επιτυχώς." -#: server_databases.php:87 +#: server_databases.php:85 msgid "Databases statistics" msgstr "Στατιστικά βάσης" -#: server_databases.php:116 server_status.php:370 +#: server_databases.php:114 server_status.php:370 #: setup/lib/messages.inc.php:114 msgid "Tables" msgstr "Πίνακες" -#: server_databases.php:194 server_replication.php:180 -#: server_replication.php:208 +#: server_databases.php:192 server_replication.php:179 +#: server_replication.php:207 msgid "Master replication" msgstr "Πρωτεύουσα αναπαραγωγή" -#: server_databases.php:196 server_replication.php:247 +#: server_databases.php:194 server_replication.php:246 msgid "Slave replication" msgstr "Δευτερεύουσα αναπαραγωγή" -#: server_databases.php:229 +#: server_databases.php:227 #, fuzzy msgid "Jump to database" msgstr "Μετάβαση στη βάση δεδομένων" -#: server_databases.php:266 +#: server_databases.php:264 #, fuzzy #| msgid "Master replication" msgid "Not replicated" msgstr "Πρωτεύουσα αναπαραγωγή" -#: server_databases.php:272 +#: server_databases.php:270 #, fuzzy #| msgid "Replication" msgid "Replicated" msgstr "Αναπαραγωγή" -#: server_databases.php:288 +#: server_databases.php:286 #, php-format msgid "Check privileges for database "%s"." msgstr "Έλεγχος δικαιωμάτων για τη βάση «%s»." -#: server_databases.php:292 server_databases.php:293 +#: server_databases.php:290 server_databases.php:291 msgid "Check Privileges" msgstr "Έλεγχος Δικαιωμάτων" -#: server_databases.php:357 server_databases.php:358 +#: server_databases.php:355 server_databases.php:356 msgid "Enable Statistics" msgstr "Ενεργοποίηση Στατιστικών" -#: server_databases.php:361 server_databases.php:362 +#: server_databases.php:359 server_databases.php:360 msgid "Disable Statistics" msgstr "Απενεργοποίηση Στατιστικών" -#: server_databases.php:365 +#: server_databases.php:363 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -4600,125 +4669,125 @@ msgstr "" "Σημείωση: Η ενεργοποίηση στατιστικών μπορεί να προκαλέσει μεγάλη μεταφορά " "δεδομένων μεταξύ του διακομιστή ιστού και του διακομιστή MySQL." -#: server_engines.php:48 +#: server_engines.php:47 msgid "Storage Engines" msgstr "Μηχανές αποθήκευσης" -#: server_export.php:20 +#: server_export.php:18 msgid "View dump (schema) of databases" msgstr "Εμφάνισης σχήματος βάσεων" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:23 server_privileges.php:265 msgid "Includes all privileges except GRANT." msgstr "Περιλαμβάνει όλα τα δικαιώματα εκτός από το GRANT." -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:24 server_privileges.php:191 +#: server_privileges.php:514 msgid "Allows altering the structure of existing tables." msgstr "Επιτρέπει την αλλαγή δομής των υπαρχόντων πινάκων." -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:25 server_privileges.php:207 +#: server_privileges.php:520 msgid "Allows altering and dropping stored routines." msgstr "Επιτρέπει την αλλαγή και διαγραφή αποθηκευμένων εργασιών." -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:26 server_privileges.php:183 +#: server_privileges.php:513 msgid "Allows creating new databases and tables." msgstr "Επιτρέπει τη δημιουργία νέων βάσεων και πινάκων." -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:27 server_privileges.php:206 +#: server_privileges.php:519 msgid "Allows creating stored routines." msgstr "Επιτρέπει τη δημιουργία αποθηκευμένων εργασιών." -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:513 msgid "Allows creating new tables." msgstr "Επιτρέπει τη δημιουργία νέων πινάκων." -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:29 server_privileges.php:194 +#: server_privileges.php:517 msgid "Allows creating temporary tables." msgstr "Επιτρέπει τη δημιουργία προσωρινών πινάκων." -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:30 server_privileges.php:208 +#: server_privileges.php:553 msgid "Allows creating, dropping and renaming user accounts." msgstr "Επιτρέπει τη δημιουργία, διαγραφή και μετονομασία λογαριασμών χρηστών." -#: server_privileges.php:32 server_privileges.php:199 -#: server_privileges.php:203 server_privileges.php:526 -#: server_privileges.php:530 +#: server_privileges.php:31 server_privileges.php:198 +#: server_privileges.php:202 server_privileges.php:525 +#: server_privileges.php:529 msgid "Allows creating new views." msgstr "Επιτρέπει τη δημιουργία νέων προβολών." -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:32 server_privileges.php:182 +#: server_privileges.php:505 msgid "Allows deleting data." msgstr "Επιτρέπει τη διαγραφή δεδομένων." -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:33 server_privileges.php:184 +#: server_privileges.php:516 msgid "Allows dropping databases and tables." msgstr "Επιτρέπει τη διαγραφή βάσεων και πινάκων." -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:34 server_privileges.php:516 msgid "Allows dropping tables." msgstr "Επιτρέπει τη διαγραφή πινάκων." -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:35 server_privileges.php:199 +#: server_privileges.php:533 msgid "Allows to set up events for the event scheduler" msgstr "Επιτρέπει τον ορισμό συμβάντων για τον προγραμματιστή συμβάντων" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:36 server_privileges.php:209 +#: server_privileges.php:521 msgid "Allows executing stored routines." msgstr "Επιτρέπει την εκτέλεση αποθηκευμένων εργασιών." -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:37 server_privileges.php:188 +#: server_privileges.php:508 msgid "Allows importing data from and exporting data into files." msgstr "Επιτρέπει την εισαγωγή και εξαγωγή δεδομένων από και σε αρχεία." -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:38 server_privileges.php:539 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Επιτρέπει την προσθήκη χρηστών και δικαιωμάτων χωρίς να επαναφορτώσετε τους " "πίνακες δικαιωμάτων." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:515 msgid "Allows creating and dropping indexes." msgstr "Επιτρέπει την δημιουργία και την διαγραφή ευρετηρίων." -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:40 server_privileges.php:180 +#: server_privileges.php:441 server_privileges.php:503 msgid "Allows inserting and replacing data." msgstr "Επιτρέπει την εισαγωγή και την αντικατάσταση δεδομένων." -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:41 server_privileges.php:195 +#: server_privileges.php:548 msgid "Allows locking tables for the current thread." msgstr "Επιτρέπει το κλείδωμα πινάκων για την τρέχουσα λειτουργία." -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:42 server_privileges.php:645 +#: server_privileges.php:647 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Περιορίζει τον αριθμό των νέων συνδέσεων που ο χρήστης μπορεί να ξεκινήσει " "ανά ώρα." -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:43 server_privileges.php:633 +#: server_privileges.php:635 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Περιορίζει τον αριθμό των ερωτημάτων που ο χρήστης μπορεί να στείλει στον " "διακομιστή ανά ώρα." -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:44 server_privileges.php:639 +#: server_privileges.php:641 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -4726,63 +4795,63 @@ msgstr "" "Περιορίζει τον αριθμό των αλλαγής πινάκων ή βάσεων που ο χρήστης μπορεί να " "εκετελέσει ανά ώρα." -#: server_privileges.php:46 server_privileges.php:652 -#: server_privileges.php:654 +#: server_privileges.php:45 server_privileges.php:651 +#: server_privileges.php:653 msgid "Limits the number of simultaneous connections the user may have." msgstr "" "Περιορίζει τον αριθμό των ταυτόχρονων συνδέσεων που μπορεί να έχει ο χρήστης." -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:46 server_privileges.php:187 +#: server_privileges.php:543 msgid "Allows viewing processes of all users" msgstr "Επιτρέπει την προβολή διεργασιών όλων των χρηστών" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:47 server_privileges.php:189 +#: server_privileges.php:447 server_privileges.php:549 msgid "Has no effect in this MySQL version." msgstr "Δεν έχει χρήση σε αυτήν την έκδοση MySQL." -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:48 server_privileges.php:185 +#: server_privileges.php:544 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Επιτρέπει την επανεκκίνηση του διακομιστή και τον καθαρισμό των προσωρινών " "αρχείων του." -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:197 +#: server_privileges.php:551 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Δίνει το δικαίωμα στον χρήστη να βρει που είναι οι κύριοι και δευτερεύοντες " "διακομιστές." -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:50 server_privileges.php:196 +#: server_privileges.php:552 msgid "Needed for the replication slaves." msgstr "Απαιτείται για τους δευτερευόντες διακομιστές αναπαραγωγής." -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:51 server_privileges.php:179 +#: server_privileges.php:438 server_privileges.php:502 msgid "Allows reading data." msgstr "Επιτρέπει την ανάγνωση δεδομένων." -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:52 server_privileges.php:192 +#: server_privileges.php:546 msgid "Gives access to the complete list of databases." msgstr "Δίνει πρόσβαση στην πλήρη λίστα των βάσεων δεδομένων." -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:53 server_privileges.php:203 +#: server_privileges.php:205 server_privileges.php:518 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Επιτρέπει την εκτέλεση ερωτημάτων της μορφής SHOW CREATE VIEW." -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:54 server_privileges.php:186 +#: server_privileges.php:545 msgid "Allows shutting down the server." msgstr "Επιτρέπει την διακοπή λειτουργίας του διακομιστή." -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:55 server_privileges.php:193 +#: server_privileges.php:542 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -4792,157 +4861,157 @@ msgstr "" "καλυθφεί; Απαιτείται για τις περισσότερες λειτουργίες διαχείρισης όπως ο " "ορισμός γενικών μεταβλητών ή τη διακοπή λειτουργιών άλλων χρηστών." -#: server_privileges.php:57 server_privileges.php:201 -#: server_privileges.php:535 +#: server_privileges.php:56 server_privileges.php:200 +#: server_privileges.php:534 msgid "Allows creating and dropping triggers" msgstr "Επιτρέπει τη δημιουργία και διαγραφή υποδείξεων" -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:57 server_privileges.php:181 +#: server_privileges.php:444 server_privileges.php:504 msgid "Allows changing data." msgstr "Επιτρέπει την αλλαγή δεδομένων." -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:58 server_privileges.php:259 msgid "No privileges." msgstr "Χωρίς δικαιώματα." -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:301 server_privileges.php:302 #, fuzzy msgctxt "None privileges" msgid "None" msgstr "Καμία" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1710 server_privileges.php:1716 +#: server_privileges.php:430 server_privileges.php:565 +#: server_privileges.php:1714 server_privileges.php:1720 msgid "Table-specific privileges" msgstr "Δικαιώματα πινάκων" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1532 +#: server_privileges.php:431 server_privileges.php:573 +#: server_privileges.php:1536 msgid " Note: MySQL privilege names are expressed in English " msgstr " Σημείωση: Τα ονόματα δικαιωμάτων της MySQL εκφράζονται στα Αγγλικά " -#: server_privileges.php:563 server_privileges.php:1531 +#: server_privileges.php:562 server_privileges.php:1535 msgid "Global privileges" msgstr "Γενικά δικαιώματα" -#: server_privileges.php:565 server_privileges.php:1710 +#: server_privileges.php:564 server_privileges.php:1714 msgid "Database-specific privileges" msgstr "Δικαιώματα βάσης δεδομένων" -#: server_privileges.php:610 +#: server_privileges.php:609 msgid "Administration" msgstr "Διαχείριση" -#: server_privileges.php:630 +#: server_privileges.php:629 msgid "Resource limits" msgstr "Όρια πόρων" -#: server_privileges.php:631 +#: server_privileges.php:630 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" "Σημείωση: Αν ορίσετε αυτές τις επιλογές σε 0 (μηδέν) αφαιρείτε ο περιορισμός." -#: server_privileges.php:708 +#: server_privileges.php:707 msgid "Login Information" msgstr "Πληροφορίες Σύνδεσης" -#: server_privileges.php:802 +#: server_privileges.php:801 msgid "Do not change the password" msgstr "Διατήρηση κωδικού πρόσβασης" -#: server_privileges.php:835 server_privileges.php:2197 +#: server_privileges.php:834 server_privileges.php:2201 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Δεν βρέθηκαν χρήστες." -#: server_privileges.php:879 +#: server_privileges.php:878 #, php-format msgid "The user %s already exists!" msgstr "Ο χρήστης %s υπάρχει ήδη!" -#: server_privileges.php:962 +#: server_privileges.php:961 msgid "You have added a new user." msgstr "Προσθέσατε ένα νέο χρήστη." -#: server_privileges.php:1183 +#: server_privileges.php:1184 #, php-format msgid "You have updated the privileges for %s." msgstr "Τα δικαιώματα του χρήστη %s ενημερώθηκαν." -#: server_privileges.php:1207 +#: server_privileges.php:1208 #, php-format msgid "You have revoked the privileges for %s" msgstr "Ανακαλέσατε τα δικαιώματα για %s" -#: server_privileges.php:1243 +#: server_privileges.php:1244 #, php-format msgid "The password for %s was changed successfully." msgstr "Ο Κωδικός Πρόσβασης για τον χρήστη %s άλλαξε επιτυχώς." -#: server_privileges.php:1263 +#: server_privileges.php:1264 #, php-format msgid "Deleting %s" msgstr "Διαγραφή %s" -#: server_privileges.php:1274 +#: server_privileges.php:1275 msgid "No users selected for deleting!" msgstr "Δεν επιλέχθηκαν χρήστες για διαγραφή!" -#: server_privileges.php:1277 +#: server_privileges.php:1278 msgid "Reloading the privileges" msgstr "Επαναφόρτωση δικαιωμάτων" -#: server_privileges.php:1292 +#: server_privileges.php:1296 msgid "The selected users have been deleted successfully." msgstr "Οι επιλεγμένοι χρήστες διεγράφησαν επιτυχώς." -#: server_privileges.php:1327 +#: server_privileges.php:1331 msgid "The privileges were reloaded successfully." msgstr "Τα δικαιώματα επαναφορτώθηκαν επιτυχώς." -#: server_privileges.php:1355 server_privileges.php:1641 +#: server_privileges.php:1359 server_privileges.php:1645 msgid "Edit Privileges" msgstr "Επεξεργασία Δικαιωμάτων" -#: server_privileges.php:1364 +#: server_privileges.php:1368 msgid "Revoke" msgstr "Ανάκληση" -#: server_privileges.php:1396 +#: server_privileges.php:1400 msgid "User overview" msgstr "Περίληψη χρηστών" -#: server_privileges.php:1533 server_privileges.php:1715 -#: server_privileges.php:2064 +#: server_privileges.php:1537 server_privileges.php:1719 +#: server_privileges.php:2068 msgid "Grant" msgstr "Χορήγηση" -#: server_privileges.php:1552 server_privileges.php:2154 +#: server_privileges.php:1556 server_privileges.php:2158 msgid "Any" msgstr "Οποιοδήποτε" -#: server_privileges.php:1601 server_privileges.php:1625 -#: server_privileges.php:2019 server_privileges.php:2208 +#: server_privileges.php:1605 server_privileges.php:1629 +#: server_privileges.php:2023 server_privileges.php:2212 msgid "Add a new User" msgstr "Προσθήκη νέου Χρήστη" -#: server_privileges.php:1606 +#: server_privileges.php:1610 msgid "Remove selected users" msgstr "Διαγραφή των επιλεγμένων χρηστών" -#: server_privileges.php:1609 +#: server_privileges.php:1613 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Ανάκληση όλων των ενεργών δικαιώματα από τους χρήστες και διαγραφή τους." -#: server_privileges.php:1610 server_privileges.php:1611 -#: server_privileges.php:1612 +#: server_privileges.php:1614 server_privileges.php:1615 +#: server_privileges.php:1616 msgid "Drop the databases that have the same names as the users." msgstr "Διαγραφή βάσεων δεδομένων που έχουν ίδια ονόματα με χρήστες." -#: server_privileges.php:1628 +#: server_privileges.php:1632 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4956,50 +5025,50 @@ msgstr "" "αλλαγές χειροκίνητα. Σε αυτήν την περίπτωση, θα πρέπει να %sεπαναφορτώσετε " "τα δικαιώματα%s πριν συνεχίσετε." -#: server_privileges.php:1676 +#: server_privileges.php:1680 msgid "The selected user was not found in the privilege table." msgstr "Ο επιλεγμένος χρήστης δεν βρέθηκε στον πίνακα δικαιωμάτων." -#: server_privileges.php:1716 +#: server_privileges.php:1720 msgid "Column-specific privileges" msgstr "Δικαιώματα πεδίων" -#: server_privileges.php:1917 +#: server_privileges.php:1921 msgid "Add privileges on the following database" msgstr "Προσθήκη δικαιωμάτων στην ακόλουθη βάση δεδομένων" -#: server_privileges.php:1935 +#: server_privileges.php:1939 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "Οι χαρακτήρες μπαλαντέρ _ και % πρέπει να γραφούν μπροστά με \\ για να " "χρησιμοποιηθούν" -#: server_privileges.php:1938 +#: server_privileges.php:1942 msgid "Add privileges on the following table" msgstr "Προσθήκη δεδομένων στον ακόλουθο πίνακα" -#: server_privileges.php:1995 +#: server_privileges.php:1999 msgid "Change Login Information / Copy User" msgstr "Αλλαγή Στοιχείων Πρόσβασης / Αντιγραφή Χρήστη" -#: server_privileges.php:1998 +#: server_privileges.php:2002 msgid "Create a new user with the same privileges and ..." msgstr "Δημιουργία νέου χρήστη με τα ίδια δικαιώματα και ..." -#: server_privileges.php:2000 +#: server_privileges.php:2004 msgid "... keep the old one." msgstr "... διατήρηση του παλιού χρήστη." -#: server_privileges.php:2001 +#: server_privileges.php:2005 msgid " ... delete the old one from the user tables." msgstr " ... διαγραφή του παλιού χρήστη από τους πίνακες χρηστών." -#: server_privileges.php:2002 +#: server_privileges.php:2006 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr " ... ανάκληση των δικαιωμάτων του παλιού χρήστη και διαγραφή του." -#: server_privileges.php:2003 +#: server_privileges.php:2007 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -5007,44 +5076,44 @@ msgstr "" " ... διαγραφή του παλιού χρήστη από τους πίνακες χρηστών και επαναφόρτωση " "των δικαιωμάτων." -#: server_privileges.php:2025 +#: server_privileges.php:2029 msgid "Database for user" msgstr "Βάση δεδομένων για χρήστη" -#: server_privileges.php:2029 +#: server_privileges.php:2033 #, fuzzy msgctxt "Create none database for user" msgid "None" msgstr "Καμία" -#: server_privileges.php:2030 +#: server_privileges.php:2034 msgid "Create database with same name and grant all privileges" msgstr "" "Δημιουργία βάσης δεδομένων με το ίδιο όνομα και με πλήρη δικαιώματα χρήσης" -#: server_privileges.php:2031 +#: server_privileges.php:2035 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Πλήρη δικαιώματα σε όνομα μπαλαντέρ (username\\_%)" -#: server_privileges.php:2034 +#: server_privileges.php:2038 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Πλήρη δικαιώματα στη βάση δεδομένων «%s»" -#: server_privileges.php:2057 +#: server_privileges.php:2061 #, php-format msgid "Users having access to "%s"" msgstr "Χρήστες με πρόσβαση στη βάση «%s»" -#: server_privileges.php:2165 +#: server_privileges.php:2169 msgid "global" msgstr "Γενικός" -#: server_privileges.php:2167 +#: server_privileges.php:2171 msgid "database-specific" msgstr "Χρήστης Βάσης" -#: server_privileges.php:2169 +#: server_privileges.php:2173 msgid "wildcard" msgstr "μπαλαντέρ" @@ -5065,46 +5134,46 @@ msgstr "" msgid "ID" msgstr "ID" -#: server_replication.php:50 +#: server_replication.php:49 msgid "Unknown error" msgstr "Άγνωστο σφάλμα" -#: server_replication.php:57 +#: server_replication.php:56 #, php-format msgid "Unable to connect to master %s." msgstr "Αδύνατη η σύνδεση στον πρωτεύοντα %s." -#: server_replication.php:64 +#: server_replication.php:63 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" "Αδύνατη η ανάγνωση της θέσης πρωτεύουσας καταγραφής. Πιθανό πρόβλημα " "δικαιωμάτων." -#: server_replication.php:70 +#: server_replication.php:69 msgid "Unable to change master" msgstr "Αδύνατη η αλλαγή της πρωτεύουσας" -#: server_replication.php:73 +#: server_replication.php:72 #, php-format msgid "Master server changed succesfully to %s" msgstr "Ο πρωτεύων διακομιστής άλλαξε επιτυχώς σε %s" -#: server_replication.php:181 +#: server_replication.php:180 msgid "This server is configured as master in a replication process." msgstr "" "Αυτός ο διακομιστής έχει ρυθμιστεί ως πρωτεύων σε μια αναπαραγωγική " "διαδικασία." -#: server_replication.php:183 server_status.php:391 +#: server_replication.php:182 server_status.php:391 msgid "Show master status" msgstr "Προβολή κατάστασης πρωτεύοντος" -#: server_replication.php:186 +#: server_replication.php:185 msgid "Show connected slaves" msgstr "Προβολή συνδεδεμένων δευτερευόντων" -#: server_replication.php:209 +#: server_replication.php:208 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -5113,11 +5182,11 @@ msgstr "" "Αυτός ο διακομιστής δεν έχει ρυθμιστεί ως πρωτεύων σε μια διαδικασία " "αναπαραγωγής. Θέλετε να τον ρυθμίσετε;" -#: server_replication.php:216 +#: server_replication.php:215 msgid "Master configuration" msgstr "Ρύθμιση πρωτεύοντος" -#: server_replication.php:217 +#: server_replication.php:216 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -5132,19 +5201,19 @@ msgstr "" "παραβλέψετε όλες τις βάσεις δεδομένων ως προεπιλογή και να επιτρέψετε μόνο " "σε ορισμένες να αναπαράγονται. Επιλέξτε:" -#: server_replication.php:220 +#: server_replication.php:219 msgid "Replicate all databases; Ignore:" msgstr "Αναπαραγωγή όλων των βάσεων δεδομένων. Παράβλεψη:" -#: server_replication.php:221 +#: server_replication.php:220 msgid "Ignore all databases; Replicate:" msgstr "Παράβλεψη όλων των βάσεων δεδομένων. Αναπαραγωγή:" -#: server_replication.php:224 +#: server_replication.php:223 msgid "Please select databases:" msgstr "Επιλέξτε βάσεις δεδομένων:" -#: server_replication.php:227 +#: server_replication.php:226 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -5152,7 +5221,7 @@ msgstr "" "Τώρα, προσθέστε της ακόλουθες γραμμές στο τέλος του αρχείου my.cnf και " "επανεκκινήστε τον διακομιστή MySQL." -#: server_replication.php:229 +#: server_replication.php:228 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " @@ -5162,68 +5231,68 @@ msgstr "" "θα πρέπει να δείτε ένα μύνημα που να σας πληροφορεί ότι αυτός ο διακομιστής " "έχει ρυθμιστεί ως πρωτεύων" -#: server_replication.php:292 +#: server_replication.php:291 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:295 +#: server_replication.php:294 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:304 +#: server_replication.php:303 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" "Ο διακομιστής ρυθμίστηκε ως δευτερεύων σε μια διαδικασία αναπαραγωγής. " "Θέλετε να:" -#: server_replication.php:307 +#: server_replication.php:306 msgid "See slave status table" msgstr "Δείτε τον πίνακα κατάστασης δευτερεύοντος" -#: server_replication.php:310 +#: server_replication.php:309 msgid "Synchronize databases with master" msgstr "Συγχρονισμός βάσεων δεδομένων με την πρωτεύουσα" -#: server_replication.php:321 +#: server_replication.php:320 msgid "Control slave:" msgstr "Έλεγχος δευτερεύοντος:" -#: server_replication.php:324 +#: server_replication.php:323 msgid "Full start" msgstr "Πλήρης εκκίνηση" -#: server_replication.php:324 +#: server_replication.php:323 msgid "Full stop" msgstr "Πλήρες σταμάτημα" -#: server_replication.php:325 +#: server_replication.php:324 msgid "Reset slave" msgstr "Επαναφορά δευτερεύοντος" -#: server_replication.php:326 +#: server_replication.php:325 #, php-format msgid "SQL Thread %s only" msgstr "Διεργασία SQL %s μόνο" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 msgid "Start" msgstr "Εκκίνηση" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 msgid "Stop" msgstr "Σταμάτημα" -#: server_replication.php:327 +#: server_replication.php:326 #, php-format msgid "IO Thread %s only" msgstr "Διεργασία IO %s μόνο" -#: server_replication.php:331 +#: server_replication.php:330 msgid "Error management:" msgstr "Διαχείριση σφάλματος:" -#: server_replication.php:333 +#: server_replication.php:332 #, fuzzy #| msgid "Skipping error(s) might lead into unsynchronized master and slave!" msgid "Skipping errors might lead into unsynchronized master and slave!" @@ -5231,19 +5300,19 @@ msgstr "" "Η παράβλεψη σφαλμάτων μπορεί να οδηγήσει στο μη συγχρονισμό πρωτεύοντος και " "δευτερεύοντος!" -#: server_replication.php:335 +#: server_replication.php:334 msgid "Skip current error" msgstr "Παράβλεψη τρέχοντος σφάλματος" -#: server_replication.php:336 +#: server_replication.php:335 msgid "Skip next" msgstr "Παράβλεψη επόμενου" -#: server_replication.php:339 +#: server_replication.php:338 msgid "errors." msgstr "σφάλματα." -#: server_replication.php:354 +#: server_replication.php:353 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -6112,116 +6181,116 @@ msgstr "Τύπος ερωτήματος" msgid "Replication status" msgstr "Κατάσταση αναπαραγωγής" -#: server_synchronize.php:93 +#: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "Αδύνατη η σύνδεση με την προέλευση" -#: server_synchronize.php:96 +#: server_synchronize.php:95 msgid "Could not connect to the target" msgstr "Αδύνατη η σύνδεση με τον προορισμό" -#: server_synchronize.php:121 server_synchronize.php:124 tbl_create.php:77 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "Η βάση δεδομένων «%s» δεν υπάρχει." -#: server_synchronize.php:264 +#: server_synchronize.php:263 msgid "Structure Synchronization" msgstr "Συγχρονισμός δομής" -#: server_synchronize.php:271 +#: server_synchronize.php:270 msgid "Data Synchronization" msgstr "Συγχρονισμός Δεδομένων" -#: server_synchronize.php:399 server_synchronize.php:838 +#: server_synchronize.php:398 server_synchronize.php:837 msgid "not present" msgstr "δεν υφίσταται" -#: server_synchronize.php:423 server_synchronize.php:866 +#: server_synchronize.php:422 server_synchronize.php:865 msgid "Structure Difference" msgstr "Διαφορά δομής" -#: server_synchronize.php:424 server_synchronize.php:867 +#: server_synchronize.php:423 server_synchronize.php:866 msgid "Data Difference" msgstr "Διαφορά Δεδομένων" -#: server_synchronize.php:429 server_synchronize.php:872 +#: server_synchronize.php:428 server_synchronize.php:871 msgid "Add column(s)" msgstr "Προσθήκη στήλης(ών)" -#: server_synchronize.php:430 server_synchronize.php:873 +#: server_synchronize.php:429 server_synchronize.php:872 msgid "Remove column(s)" msgstr "Απομάκρυνση στήλης(ών)" -#: server_synchronize.php:431 server_synchronize.php:874 +#: server_synchronize.php:430 server_synchronize.php:873 msgid "Alter column(s)" msgstr "Αλλαγή στήλης(ών)" -#: server_synchronize.php:432 server_synchronize.php:875 +#: server_synchronize.php:431 server_synchronize.php:874 msgid "Remove index(s)" msgstr "Απομάκρυνση ευρετηρίου(ων)" -#: server_synchronize.php:433 server_synchronize.php:876 +#: server_synchronize.php:432 server_synchronize.php:875 msgid "Apply index(s)" msgstr "Εφαρμογή ευρετηρίου(ων)" -#: server_synchronize.php:434 server_synchronize.php:877 +#: server_synchronize.php:433 server_synchronize.php:876 msgid "Update row(s)" msgstr "Ενημέρωση γραμμής(ών)" -#: server_synchronize.php:435 server_synchronize.php:878 +#: server_synchronize.php:434 server_synchronize.php:877 msgid "Insert row(s)" msgstr "Εισαγωγή γραμμής(ών)" -#: server_synchronize.php:445 server_synchronize.php:889 +#: server_synchronize.php:444 server_synchronize.php:888 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" "Θέλετε να διαγράψετε όλες τις προηγούμενες γραμμές από τους πίνακες " "προορισμού;" -#: server_synchronize.php:448 server_synchronize.php:893 +#: server_synchronize.php:447 server_synchronize.php:892 msgid "Apply Selected Changes" msgstr "Εφαρμογή Επιλεγμένων Αλλαγών" -#: server_synchronize.php:450 server_synchronize.php:895 +#: server_synchronize.php:449 server_synchronize.php:894 msgid "Synchronize Databases" msgstr "Συγχρονισμός Βάσεων δεδομένων" -#: server_synchronize.php:463 +#: server_synchronize.php:462 msgid "Selected target tables have been synchronized with source tables." msgstr "" "Οι επιλεγμένοι πίνακες προορισμου έχουν συγχρονιστεί με τους πίνακες " "προέλευσης." -#: server_synchronize.php:941 +#: server_synchronize.php:940 msgid "Target database has been synchronized with source database" msgstr "" "Η βάση δεδομένων προορισμού συγχρονίστηκε με τη βάση δεδομένων προέλευσης" -#: server_synchronize.php:1002 +#: server_synchronize.php:1001 msgid "The following queries have been executed:" msgstr "Τα ακόλουθα ερωτήματα εκτελέστηκαν:" -#: server_synchronize.php:1121 +#: server_synchronize.php:1120 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1122 +#: server_synchronize.php:1121 #, fuzzy msgid "Current connection" msgstr "Μη ασφαλής σύνδεση" -#: server_synchronize.php:1151 +#: server_synchronize.php:1150 #, fuzzy, php-format msgid "Configuration: %s" msgstr "Αρχείο ρυθμίσεων" -#: server_synchronize.php:1166 +#: server_synchronize.php:1165 msgid "Socket" msgstr "Υποδοχή" -#: server_synchronize.php:1212 +#: server_synchronize.php:1211 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -6828,10 +6897,15 @@ msgid "Signon login options" msgstr "Επιλογές σύνδεσης" #: setup/lib/messages.inc.php:128 +#, fuzzy +#| msgid "" +#| "Configure phpMyAdmin database to gain access to additional features, see " +#| "[a@../Documentation.html#linked-tables]linked-tables infrastructure[/a] " +#| "in documentation" msgid "" "Configure phpMyAdmin database to gain access to additional features, see " -"[a@../Documentation.html#linked-tables]linked-tables infrastructure[/a] in " -"documentation" +"[a@../Documentation.html#linked-tables]phpMyAdmin configuration storage[/a] " +"in documentation" msgstr "" "Προσαρμογή βάσης δεδομένων phpMyAdmin για παροχή πρόσβασης σε πρόσθετα " "χαρακτηριστικά. Δείτε την [a@../Documentation.html#linked-tables]υποδομή " @@ -8042,53 +8116,53 @@ msgstr "" msgid "ZIP" msgstr "ZIP" -#: sql.php:495 tbl_replace.php:385 +#: sql.php:494 tbl_replace.php:384 #, php-format msgid "Inserted row id: %1$d" msgstr "Ταυτότητα εισερχόμενης εγγραφής: %1$d" -#: sql.php:512 +#: sql.php:511 msgid "Showing as PHP code" msgstr "Εμφάνιση ως κώδικά PHP" -#: sql.php:515 tbl_replace.php:359 +#: sql.php:514 tbl_replace.php:358 msgid "Showing SQL query" msgstr "Εμφάνιση ερωτήματος SQL" -#: sql.php:517 +#: sql.php:516 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Επικύρωση SQL" -#: sql.php:638 +#: sql.php:631 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Προβλήματα με τα ευρετήρια στον πίνακα «%s»" -#: sql.php:670 +#: sql.php:663 msgid "Label" msgstr "Τίτλος" -#: tbl_addfield.php:188 tbl_alter.php:102 tbl_indexes.php:97 +#: tbl_addfield.php:185 tbl_alter.php:100 tbl_indexes.php:97 #, php-format msgid "Table %1$s has been altered successfully" msgstr "Ο πίνακας %1$s αλλάχτηκε επιτυχώς" -#: tbl_change.php:250 tbl_select.php:26 tbl_select.php:27 tbl_select.php:30 -#: tbl_select.php:33 +#: tbl_change.php:245 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_select.php:32 msgid "Browse foreign values" msgstr "Αναζήτηση μη διακριτών τιμών" -#: tbl_change.php:280 tbl_change.php:318 +#: tbl_change.php:275 tbl_change.php:313 msgid "Function" msgstr "Έλεγχος" -#: tbl_change.php:300 tbl_indexes.php:199 tbl_indexes.php:224 +#: tbl_change.php:295 tbl_indexes.php:198 tbl_indexes.php:223 msgid "Ignore" msgstr "Παράληψη" -#: tbl_change.php:725 +#: tbl_change.php:720 #, fuzzy #| msgid " Because of its length,
                            this field might not be editable " msgid " Because of its length,
                            this column might not be editable " @@ -8096,65 +8170,65 @@ msgstr "" " Εξαιτίας του μεγέθος του,
                            αυτό το πεδίο ίσως να μη μπορεί να " "διορθωθεί " -#: tbl_change.php:884 +#: tbl_change.php:835 msgid "Remove BLOB Repository Reference" msgstr "Απομάκρυνση της Αναφοράς Αποθήκης BLOB" -#: tbl_change.php:890 +#: tbl_change.php:841 msgid "Binary - do not edit" msgstr "Δυαδικό - χωρίς δυνατότητα επεξεργασίας" -#: tbl_change.php:983 +#: tbl_change.php:889 msgid "Upload to BLOB repository" msgstr "Μεταφορά στην αποθήκη BLOB" -#: tbl_change.php:1128 +#: tbl_change.php:1026 msgid "Insert as new row" msgstr "Εισαγωγή ως νέα εγγραφή" -#: tbl_change.php:1129 +#: tbl_change.php:1027 msgid "Insert as new row and ignore errors" msgstr "Εισαγωγή ως νέα γραμμή και παράβλεψη σφαλμάτων" -#: tbl_change.php:1130 +#: tbl_change.php:1028 #, fuzzy msgid "Show insert query" msgstr "Εμφάνιση ερωτήματος SQL" -#: tbl_change.php:1145 +#: tbl_change.php:1043 msgid "Go back to previous page" msgstr "Επιστροφή" -#: tbl_change.php:1146 +#: tbl_change.php:1044 msgid "Insert another new row" msgstr "Εισαγωγή νέας εγγραφής" -#: tbl_change.php:1150 +#: tbl_change.php:1048 msgid "Go back to this page" msgstr "Επιστροφή σε αυτή τη σελίδα" -#: tbl_change.php:1158 +#: tbl_change.php:1056 msgid "Edit next row" msgstr "Επεξεργασία επόμενης γραμμής" -#: tbl_change.php:1169 +#: tbl_change.php:1067 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Χρήση του πλήκτρου TAB για μετακίνηση από τιμή σε τιμή ή CTRL+βέλη για " "μετακίνηση παντού" -#: tbl_change.php:1207 +#: tbl_change.php:1105 #, php-format msgid "Restart insertion with %s rows" msgstr "Επανεκκίνηση εισαγωγής με %s εγγραφές" -#: tbl_create.php:57 +#: tbl_create.php:55 #, php-format msgid "Table %s already exists!" msgstr "Ο πίνακας %s υπάρχει ήδη!" -#: tbl_create.php:244 +#: tbl_create.php:241 #, php-format msgid "Table %1$s has been created." msgstr "Ο πίνακας %1$s έχει δημιουργηθεί." @@ -8175,196 +8249,196 @@ msgstr "Η μετατροπή του ευρετηρίου σε ΠΡΩΤΕΥΟΝ msgid "No index parts defined!" msgstr "Δεν ορίστηκαν τα στοιχεία του ευρετηρίου!" -#: tbl_indexes.php:159 +#: tbl_indexes.php:158 msgid "Create a new index" msgstr "Δημιουργία νέου ευρετηρίου" -#: tbl_indexes.php:161 +#: tbl_indexes.php:160 msgid "Modify an index" msgstr "Αλλαγή ενός ευρετηρίου" -#: tbl_indexes.php:167 +#: tbl_indexes.php:166 msgid "Index name:" msgstr "Όνομα ευρετηρίου :" -#: tbl_indexes.php:173 +#: tbl_indexes.php:172 msgid "Index type:" msgstr "Τύπος ευρετηρίου :" -#: tbl_indexes.php:183 +#: tbl_indexes.php:182 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" "(«PRIMARY» πρέπει να είναι το όνομα του πρωτεύοντος κλειδιού και " "μόνο αυτού !)" -#: tbl_indexes.php:250 +#: tbl_indexes.php:249 #, php-format msgid "Add to index  %s column(s)" msgstr "Προσθήκη στο ευρετήριο «%s» στήλης(ών)" -#: tbl_indexes.php:255 tbl_structure.php:588 tbl_structure.php:599 +#: tbl_indexes.php:254 tbl_structure.php:586 tbl_structure.php:597 msgid "Column count has to be larger than zero." msgstr "Το πλήθος των στηλών δεν πρέπει να είναι μηδέν." -#: tbl_move_copy.php:45 +#: tbl_move_copy.php:44 msgid "Can't move table to same one!" msgstr "Δεν είναι δυνατή η μεταφορά του πίνακα στον εαυτό του!" -#: tbl_move_copy.php:47 +#: tbl_move_copy.php:46 msgid "Can't copy table to same one!" msgstr "Δεν είναι δυνατή η αντιγραφή του πίνακα στον εαυτό του!" -#: tbl_move_copy.php:55 +#: tbl_move_copy.php:54 #, php-format msgid "Table %s has been moved to %s." msgstr "Ο πίνακας %s μεταφέρθηκε στο %s." -#: tbl_move_copy.php:57 +#: tbl_move_copy.php:56 #, php-format msgid "Table %s has been copied to %s." msgstr "Ο Πίνακας %s αντιγράφηκε στο %s." -#: tbl_move_copy.php:81 +#: tbl_move_copy.php:80 msgid "The table name is empty!" msgstr "Το όνομα του Πίνακα είναι κενό!" -#: tbl_operations.php:248 +#: tbl_operations.php:246 msgid "Alter table order by" msgstr "Αλλαγή ταξινόμησης Πίνακα κατά" -#: tbl_operations.php:257 +#: tbl_operations.php:255 msgid "(singly)" msgstr "(μοναδικά)" -#: tbl_operations.php:277 +#: tbl_operations.php:275 msgid "Move table to (database.table):" msgstr "Μεταφορά πίνακα σε (βάση.πίνακας):" -#: tbl_operations.php:335 +#: tbl_operations.php:333 msgid "Table options" msgstr "Επιλογές πίνακα" -#: tbl_operations.php:339 +#: tbl_operations.php:337 msgid "Rename table to" msgstr "Μετονομασία πίνακα σε" -#: tbl_operations.php:510 +#: tbl_operations.php:508 msgid "Copy table to (database.table):" msgstr "Αντιγραφή πίνακα σε (βάση.πίνακας):" -#: tbl_operations.php:557 +#: tbl_operations.php:555 msgid "Switch to copied table" msgstr "Μεταφορά στον αντεγραμμένο πίνακα" -#: tbl_operations.php:569 +#: tbl_operations.php:567 msgid "Table maintenance" msgstr "Συντήρηση Πίνακα" -#: tbl_operations.php:590 +#: tbl_operations.php:588 msgid "Defragment table" msgstr "Ανασυγκρότηση πίνακα" -#: tbl_operations.php:629 +#: tbl_operations.php:627 #, php-format msgid "Table %s has been flushed" msgstr "Ο Πίνακας %s εκκαθαρίστηκε («FLUSH»)" -#: tbl_operations.php:635 +#: tbl_operations.php:633 #, fuzzy msgid "Flush the table (FLUSH)" msgstr "Εκκαθάριση («FLUSH») πίνακα" -#: tbl_operations.php:650 +#: tbl_operations.php:648 msgid "Partition maintenance" msgstr "Συντήρηση κατάτμησης" -#: tbl_operations.php:658 +#: tbl_operations.php:656 #, php-format msgid "Partition %s" msgstr "Κατάτμηση %s" -#: tbl_operations.php:661 +#: tbl_operations.php:659 msgid "Analyze" msgstr "Ανάλυση" -#: tbl_operations.php:662 +#: tbl_operations.php:660 msgid "Check" msgstr "Έλεγχος" -#: tbl_operations.php:663 +#: tbl_operations.php:661 msgid "Optimize" msgstr "Βελτιστοποίηση" -#: tbl_operations.php:664 +#: tbl_operations.php:662 msgid "Rebuild" msgstr "Επανακατασκευή" -#: tbl_operations.php:665 +#: tbl_operations.php:663 msgid "Repair" msgstr "Επισκευή" -#: tbl_operations.php:677 +#: tbl_operations.php:675 msgid "Remove partitioning" msgstr "Απομάκρυνση κατάτμησης" -#: tbl_operations.php:703 +#: tbl_operations.php:701 msgid "Check referential integrity:" msgstr "Έλεγχος ακεραιότητας συσχετίσεων:" -#: tbl_printview.php:73 +#: tbl_printview.php:72 msgid "Show tables" msgstr "Εμφάνιση πινάκων" -#: tbl_printview.php:308 tbl_structure.php:655 +#: tbl_printview.php:307 tbl_structure.php:653 msgid "Space usage" msgstr "Χρήση χώρου" -#: tbl_printview.php:312 tbl_structure.php:659 +#: tbl_printview.php:311 tbl_structure.php:657 msgid "Usage" msgstr "Χρήση" -#: tbl_printview.php:339 tbl_structure.php:686 +#: tbl_printview.php:338 tbl_structure.php:684 msgid "Effective" msgstr "Αποτελεσματικός" -#: tbl_printview.php:364 tbl_structure.php:724 +#: tbl_printview.php:363 tbl_structure.php:722 msgid "Row Statistics" msgstr "Στατιστικά Εγγραφών" -#: tbl_printview.php:367 tbl_structure.php:727 +#: tbl_printview.php:366 tbl_structure.php:725 msgid "Statements" msgstr "Δηλώσεις" -#: tbl_printview.php:378 tbl_structure.php:739 +#: tbl_printview.php:377 tbl_structure.php:737 msgid "static" msgstr "στατικό" -#: tbl_printview.php:380 tbl_structure.php:741 +#: tbl_printview.php:379 tbl_structure.php:739 msgid "dynamic" msgstr "δυναμικά" -#: tbl_printview.php:402 tbl_structure.php:784 +#: tbl_printview.php:401 tbl_structure.php:782 msgid "Row length" msgstr "Μέγεθος Γραμμής" -#: tbl_printview.php:412 tbl_structure.php:792 +#: tbl_printview.php:411 tbl_structure.php:790 msgid " Row size " msgstr " Μέγεθος Εγγραφής " -#: tbl_relation.php:278 +#: tbl_relation.php:276 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" "Σφάλμα δημιουργίας μη διακριτού κλειδιού στο %1$s (ελέξτε τους τύπους " "δεδομένων)" -#: tbl_relation.php:404 +#: tbl_relation.php:402 #, fuzzy msgid "Internal relation" msgstr "Εσωτερικές συσχετίσεις" -#: tbl_relation.php:406 +#: tbl_relation.php:404 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -8372,7 +8446,7 @@ msgstr "" "Μια εσωτερική συσχέτιση δεν είναι απαραίτητη όταν υπάρχει μια αντίστοιχη " "συσχέτιση ΜΗ ΔΙΑΚΡΙΤΟΥ ΚΛΕΙΔΙΟΥ (FOREIGN KEY)." -#: tbl_relation.php:412 +#: tbl_relation.php:410 #, fuzzy msgid "Foreign key constraint" msgstr "Όριο μη διακριτού κλειδιού" @@ -8381,119 +8455,119 @@ msgstr "Όριο μη διακριτού κλειδιού" msgid "No rows selected" msgstr "Δεν επιλέχθηκαν γραμμές" -#: tbl_select.php:130 +#: tbl_select.php:129 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Εκτέλεσε ένα «επερώτημα κατά παράδειγμα» (χαρακτήρας μπαλαντέρ «%»)" -#: tbl_select.php:136 +#: tbl_select.php:135 msgid "Operator" msgstr "Τελεστής" -#: tbl_select.php:267 +#: tbl_select.php:266 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "Επιλογή πεδίων (τουλάχιστον ένα)" -#: tbl_select.php:285 +#: tbl_select.php:284 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Προσθήκη νέου όρου (σώμα της πρότασης «where» πρότασης):" -#: tbl_select.php:292 +#: tbl_select.php:291 msgid "Number of rows per page" msgstr "Εγγραφές ανά σελίδα" -#: tbl_select.php:298 +#: tbl_select.php:297 msgid "Display order:" msgstr "Σειρά εμφάνισης:" -#: tbl_structure.php:160 +#: tbl_structure.php:159 msgid "Browse distinct values" msgstr "Αναζήτηση διακριτων τιμών" -#: tbl_structure.php:360 +#: tbl_structure.php:358 #, fuzzy msgctxt "None for default" msgid "None" msgstr "Καμία" -#: tbl_structure.php:373 +#: tbl_structure.php:371 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Column %s has been dropped" msgstr "Ο Πίνακας %s διεγράφη" -#: tbl_structure.php:384 +#: tbl_structure.php:382 #, php-format msgid "A primary key has been added on %s" msgstr "Ένα πρωτεύον κλειδί προστέθηκε στο %s" -#: tbl_structure.php:399 tbl_structure.php:413 tbl_structure.php:427 +#: tbl_structure.php:397 tbl_structure.php:411 tbl_structure.php:425 #, php-format msgid "An index has been added on %s" msgstr "Ένα ευρετήριο προστέθηκε στο %s" -#: tbl_structure.php:505 tbl_structure.php:507 +#: tbl_structure.php:503 tbl_structure.php:505 msgid "Relation view" msgstr "Εμφάνιση συσχετίσεων" -#: tbl_structure.php:514 tbl_structure.php:516 +#: tbl_structure.php:512 tbl_structure.php:514 msgid "Propose table structure" msgstr "Προτεινόμενη δομή πίνακα" -#: tbl_structure.php:539 +#: tbl_structure.php:537 #, fuzzy #| msgid "Add column(s)" msgid "Add column" msgstr "Προσθήκη στήλης(ών)" -#: tbl_structure.php:553 +#: tbl_structure.php:551 msgid "At End of Table" msgstr "Στο τέλος του Πίνακα" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At Beginning of Table" msgstr "Στην αρχή του Πίνακα" -#: tbl_structure.php:555 +#: tbl_structure.php:553 #, php-format msgid "After %s" msgstr "Μετά το %s" -#: tbl_structure.php:593 +#: tbl_structure.php:591 #, fuzzy, php-format msgid "Create an index on  %s columns" msgstr "Δημιουργία ευρετηρίου σε «%s» πεδία" -#: tbl_structure.php:755 +#: tbl_structure.php:753 msgid "partitioned" msgstr "κατατμήθηκε" -#: tbl_tracking.php:113 +#: tbl_tracking.php:109 #, php-format msgid "Tracking report for table `%s`" msgstr "Αναφορά παρακολούθησης για τον πίνακα «%s»" -#: tbl_tracking.php:186 +#: tbl_tracking.php:182 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "Η έκδοση %s δημιουργήθηκε, η παρακολούθηση του %s.%s ενεργοποιήθηκε." -#: tbl_tracking.php:194 +#: tbl_tracking.php:190 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "Η παρακολούθηση του %s.%s , η έκδοση %s είναι απενεργοποιημένη." -#: tbl_tracking.php:202 +#: tbl_tracking.php:198 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "Η παρακολούθηση του %s.%s , η έκδοση %s είναι ενεργοποιημένη." -#: tbl_tracking.php:212 +#: tbl_tracking.php:208 msgid "SQL statements executed." msgstr "Οι δηλώσεις SQL εκτελέστηκαν." -#: tbl_tracking.php:219 +#: tbl_tracking.php:215 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -8501,110 +8575,110 @@ msgstr "" "Μπορείτε να εκτελέσετε τον κάδο δημιουργώντας και χρησιμοποιώντας μι " "προσωρινή βάση δεδομένων. Σιγουρευτείτε ότι έχετε τα δικαιώματα για αυτό." -#: tbl_tracking.php:220 +#: tbl_tracking.php:216 msgid "Comment out these two lines if you do not need them." msgstr "Κάντε σχόλια αυτές τις δύο γραμμές αν δεν τις χρειάζεστε." -#: tbl_tracking.php:229 +#: tbl_tracking.php:225 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "Οι δηλώσεις SQL εξήχθησαν. Αντιγράψτε τον κάδο ή εκτελέστε τον." -#: tbl_tracking.php:250 tbl_tracking.php:378 +#: tbl_tracking.php:245 tbl_tracking.php:373 msgid "Close" msgstr "Κλείσιμο" -#: tbl_tracking.php:261 +#: tbl_tracking.php:256 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Στιγμιότυπο έκδοσης %s (κώδικας SQL)" -#: tbl_tracking.php:380 +#: tbl_tracking.php:375 msgid "Tracking statements" msgstr "Δηλώσεις παρακολούθησης" -#: tbl_tracking.php:396 tbl_tracking.php:503 +#: tbl_tracking.php:391 tbl_tracking.php:498 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "Εμφάνιση %s με ημερομηνίες από %s έως %s από χρήστη %s %s" -#: tbl_tracking.php:409 tbl_tracking.php:460 +#: tbl_tracking.php:404 tbl_tracking.php:455 msgid "Date" msgstr "Ημερομηνία" -#: tbl_tracking.php:410 tbl_tracking.php:461 +#: tbl_tracking.php:405 tbl_tracking.php:456 msgid "Username" msgstr "Όνομα χρήστη" -#: tbl_tracking.php:411 +#: tbl_tracking.php:406 msgid "Data definition statement" msgstr "Δήλωση ορισμού δεδομένων" -#: tbl_tracking.php:462 +#: tbl_tracking.php:457 msgid "Data manipulation statement" msgstr "Δήλωση χειρισμού δεδομένων" -#: tbl_tracking.php:506 +#: tbl_tracking.php:501 msgid "SQL dump (file download)" msgstr "Κάδος SQL (λήψη αρχείου)" -#: tbl_tracking.php:507 +#: tbl_tracking.php:502 msgid "SQL dump" msgstr "Κάδος SQL" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "This option will replace your table and contained data." msgstr "" "Αυτή η επιλογή θα αντικαταστήσει τον πίνακα και τα περιεχόμενά δεδομένα." -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "SQL execution" msgstr "Εκτέλεση SQL" -#: tbl_tracking.php:520 +#: tbl_tracking.php:515 #, php-format msgid "Export as %s" msgstr "Εξαγωγή ως %s" -#: tbl_tracking.php:560 +#: tbl_tracking.php:555 msgid "Show versions" msgstr "Εμφάνιση εκδόσεων" -#: tbl_tracking.php:592 +#: tbl_tracking.php:587 msgid "Version" msgstr "Έκδοση" -#: tbl_tracking.php:639 +#: tbl_tracking.php:634 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "Απενεργοποιήση παρακολούθησης για το %s.%s" -#: tbl_tracking.php:641 +#: tbl_tracking.php:636 msgid "Deactivate now" msgstr "Απενεργοποιήση τώρα" -#: tbl_tracking.php:652 +#: tbl_tracking.php:647 #, php-format msgid "Activate tracking for %s.%s" msgstr "Ενεργοποίηση παρακολούθησης για το %s.%s" -#: tbl_tracking.php:654 +#: tbl_tracking.php:649 msgid "Activate now" msgstr "Ενεργοποιήση τώρα" -#: tbl_tracking.php:667 +#: tbl_tracking.php:662 #, php-format msgid "Create version %s of %s.%s" msgstr "Δημιουργία έκδοσης %s του %s.%s" -#: tbl_tracking.php:671 +#: tbl_tracking.php:666 msgid "Track these data definition statements:" msgstr "Παρακολούθηση αυτών των δηλώσεων ορισμού δεδομένων:" -#: tbl_tracking.php:679 +#: tbl_tracking.php:674 msgid "Track these data manipulation statements:" msgstr "Παρακολούθηση αυτών των δηλώσεων χειρισμού δεδομένων:" -#: tbl_tracking.php:687 +#: tbl_tracking.php:682 msgid "Create version" msgstr "Δημιουργία έκδοσης" @@ -8654,11 +8728,38 @@ msgstr "Τα στοιχεία ανανεώθηκαν." msgid "VIEW name" msgstr "ΠΡΟΒΟΛΗ ονόματος" -#: view_operations.php:92 +#: view_operations.php:91 #, fuzzy msgid "Rename view to" msgstr "Μετονομασία πίνακα σε" +#~ msgid "BLOB Repository" +#~ msgstr "Αποθήκη BLOB" + +#, fuzzy +#~ msgctxt "BLOB repository" +#~ msgid "Enabled" +#~ msgstr "Ενεργοποιημένο" + +#~ msgid "Disable" +#~ msgstr "Απενεργοποίηση" + +#~ msgid "Damaged" +#~ msgstr "Καταστράφηκε" + +#, fuzzy +#~ msgctxt "BLOB repository" +#~ msgid "Repair" +#~ msgstr "Επιδιόρθωση" + +#, fuzzy +#~ msgctxt "BLOB repository" +#~ msgid "Disabled" +#~ msgstr "Απενεργοποιημένο" + +#~ msgid "Enable" +#~ msgstr "Ενεργοποίηση" + #~ msgid "" #~ "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " #~ "extension. Please check your PHP configuration." diff --git a/po/en_GB.po b/po/en_GB.po index a1a3b9a46..a62bfc52e 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-21 13:53+0200\n" +"POT-Creation-Date: 2010-07-26 17:18+0200\n" "PO-Revision-Date: 2010-07-26 16:54+0200\n" "Last-Translator: Robert Readman \n" "Language-Team: english-gb \n" @@ -14,19 +14,19 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.1\n" -#: browse_foreigners.php:37 browse_foreigners.php:58 -#: libraries/display_tbl.lib.php:416 server_privileges.php:1506 +#: browse_foreigners.php:36 browse_foreigners.php:57 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1510 msgid "Show all" msgstr "Show all" -#: browse_foreigners.php:81 libraries/common.lib.php:2313 -#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:393 -#: libraries/export/pdf.php:146 pdf_schema.php:282 pdf_schema.php:1122 -#: pdf_schema.php:1138 +#: browse_foreigners.php:80 libraries/common.lib.php:2318 +#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:392 +#: libraries/export/pdf.php:146 pdf_schema.php:281 pdf_schema.php:1121 +#: pdf_schema.php:1137 msgid "Page number:" msgstr "Page number:" -#: browse_foreigners.php:131 +#: browse_foreigners.php:130 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -36,137 +36,151 @@ msgstr "" "parent window, or your browser's security settings are configured to block " "cross-window updates." -#: browse_foreigners.php:149 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2829 -#: libraries/common.lib.php:2836 libraries/db_links.inc.php:74 -#: libraries/tbl_links.inc.php:62 +#: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 +#: db_structure.php:89 db_structure.php:91 db_structure.php:102 +#: db_structure.php:104 libraries/common.lib.php:2834 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Search" -#: browse_foreigners.php:152 db_operations.php:384 db_operations.php:428 -#: db_operations.php:498 db_operations.php:608 db_search.php:344 -#: db_structure.php:566 js/messages.php:48 libraries/Config.class.php:1043 -#: libraries/Theme_Manager.class.php:310 +#: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 +#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 +#: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 -#: libraries/common.lib.php:1340 libraries/common.lib.php:2289 +#: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 -#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:275 -#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:531 -#: libraries/display_tbl.lib.php:613 libraries/replication_gui.lib.php:75 +#: libraries/display_export.lib.php:269 libraries/display_import.lib.php:275 +#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 +#: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 #: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:781 -#: main.php:127 navigation.php:231 pdf_pages.php:291 pdf_pages.php:327 -#: pdf_pages.php:529 pmd_pdf.php:115 server_binlog.php:128 -#: server_privileges.php:664 server_privileges.php:1616 -#: server_privileges.php:1963 server_privileges.php:2010 -#: server_privileges.php:2049 server_replication.php:234 -#: server_replication.php:317 server_replication.php:340 -#: server_synchronize.php:1208 tbl_change.php:328 tbl_change.php:1172 -#: tbl_change.php:1209 tbl_indexes.php:253 tbl_operations.php:264 -#: tbl_operations.php:301 tbl_operations.php:498 tbl_operations.php:560 -#: tbl_operations.php:680 tbl_select.php:324 tbl_structure.php:561 -#: tbl_structure.php:596 tbl_tracking.php:394 tbl_tracking.php:511 -#: view_create.php:181 view_operations.php:100 +#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 +#: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 +#: server_privileges.php:663 server_privileges.php:1620 +#: server_privileges.php:1967 server_privileges.php:2014 +#: server_privileges.php:2053 server_replication.php:233 +#: server_replication.php:316 server_replication.php:339 +#: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 +#: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 +#: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 +#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "Go" -#: browse_foreigners.php:167 browse_foreigners.php:171 -#: libraries/Index.class.php:441 tbl_tracking.php:319 +#: browse_foreigners.php:166 browse_foreigners.php:170 +#: libraries/Index.class.php:441 tbl_tracking.php:314 msgid "Keyname" msgstr "Keyname" -#: browse_foreigners.php:168 browse_foreigners.php:170 -#: server_collations.php:54 server_collations.php:66 server_engines.php:58 +#: browse_foreigners.php:167 browse_foreigners.php:169 +#: server_collations.php:54 server_collations.php:66 server_engines.php:57 #: server_status.php:738 msgid "Description" msgstr "Description" -#: browse_foreigners.php:246 browse_foreigners.php:255 -#: browse_foreigners.php:267 browse_foreigners.php:275 +#: browse_foreigners.php:245 browse_foreigners.php:254 +#: browse_foreigners.php:266 browse_foreigners.php:274 msgid "Use this value" msgstr "Use this value" -#: db_create.php:45 +#: bs_disp_as_mime_type.php:29 bs_play_media.php:35 +msgid "No blob streaming server configured!" +msgstr "" + +#: bs_disp_as_mime_type.php:35 +#, fuzzy +#| msgid "Failed to write file to disk." +msgid "Failed to fetch headers" +msgstr "Failed to write file to disk." + +#: bs_disp_as_mime_type.php:41 +msgid "Failed to open remote URL" +msgstr "" + +#: db_create.php:44 #, php-format msgid "Database %1$s has been created." msgstr "Database %1$s has been created." -#: db_datadict.php:48 db_operations.php:377 +#: db_datadict.php:48 db_operations.php:313 msgid "Database comment: " msgstr "Database comment: " -#: db_datadict.php:164 libraries/tbl_properties.inc.php:723 -#: pdf_schema.php:1235 tbl_operations.php:346 tbl_printview.php:128 +#: db_datadict.php:164 libraries/tbl_properties.inc.php:722 +#: pdf_schema.php:1234 tbl_operations.php:344 tbl_printview.php:127 msgid "Table comments" msgstr "Table comments" -#: db_datadict.php:173 db_qbe.php:173 libraries/Index.class.php:445 +#: db_datadict.php:173 db_qbe.php:170 libraries/Index.class.php:445 #: libraries/export/htmlword.php:243 libraries/export/latex.php:364 #: libraries/export/odt.php:293 libraries/export/texytext.php:233 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:274 -#: pdf_schema.php:1261 pdf_schema.php:1282 tbl_change.php:306 -#: tbl_indexes.php:188 tbl_printview.php:140 tbl_relation.php:401 -#: tbl_select.php:133 tbl_structure.php:176 tbl_tracking.php:272 -#: tbl_tracking.php:323 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 +#: pdf_schema.php:1260 pdf_schema.php:1281 tbl_change.php:301 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:132 tbl_structure.php:175 tbl_tracking.php:267 +#: tbl_tracking.php:318 msgid "Column" msgstr "Column" -#: db_datadict.php:174 db_printview.php:105 libraries/Index.class.php:442 +#: db_datadict.php:174 db_printview.php:104 libraries/Index.class.php:442 #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 #: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:244 #: libraries/export/latex.php:364 libraries/export/odt.php:296 #: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:99 -#: pdf_schema.php:1262 pdf_schema.php:1283 server_privileges.php:2062 -#: tbl_change.php:285 tbl_change.php:312 tbl_printview.php:141 -#: tbl_printview.php:311 tbl_select.php:134 tbl_structure.php:177 -#: tbl_structure.php:658 tbl_tracking.php:273 tbl_tracking.php:320 +#: pdf_schema.php:1261 pdf_schema.php:1282 server_privileges.php:2066 +#: tbl_change.php:280 tbl_change.php:307 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:133 tbl_structure.php:176 +#: tbl_structure.php:656 tbl_tracking.php:268 tbl_tracking.php:315 msgid "Type" msgstr "Type" #: db_datadict.php:176 libraries/Index.class.php:448 #: libraries/export/htmlword.php:245 libraries/export/latex.php:364 #: libraries/export/odt.php:299 libraries/export/texytext.php:235 -#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1264 -#: pdf_schema.php:1285 tbl_change.php:321 tbl_printview.php:143 -#: tbl_structure.php:180 tbl_tracking.php:275 tbl_tracking.php:326 +#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1263 +#: pdf_schema.php:1284 tbl_change.php:316 tbl_printview.php:142 +#: tbl_structure.php:179 tbl_tracking.php:270 tbl_tracking.php:321 msgid "Null" msgstr "Null" -#: db_datadict.php:177 db_structure.php:500 libraries/export/htmlword.php:246 +#: db_datadict.php:177 db_structure.php:486 libraries/export/htmlword.php:246 #: libraries/export/latex.php:364 libraries/export/odt.php:302 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:105 -#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 -#: tbl_structure.php:181 tbl_tracking.php:276 +#: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:143 +#: tbl_structure.php:180 tbl_tracking.php:271 msgid "Default" msgstr "Default" #: db_datadict.php:181 libraries/export/htmlword.php:248 #: libraries/export/latex.php:366 libraries/export/odt.php:306 -#: libraries/export/texytext.php:238 pdf_schema.php:1267 pdf_schema.php:1288 -#: tbl_printview.php:148 +#: libraries/export/texytext.php:238 pdf_schema.php:1266 pdf_schema.php:1287 +#: tbl_printview.php:147 msgid "Links to" msgstr "Links to" -#: db_datadict.php:183 db_printview.php:111 libraries/export/htmlword.php:251 +#: db_datadict.php:183 db_printview.php:110 libraries/export/htmlword.php:251 #: libraries/export/latex.php:49 libraries/export/latex.php:369 #: libraries/export/odt.php:37 libraries/export/odt.php:311 #: libraries/export/sql.php:29 libraries/export/texytext.php:241 -#: libraries/tbl_properties.inc.php:129 pdf_schema.php:1278 -#: pdf_schema.php:1289 tbl_printview.php:150 +#: libraries/tbl_properties.inc.php:128 pdf_schema.php:1277 +#: pdf_schema.php:1288 tbl_printview.php:149 msgid "Comments" msgstr "Comments" #: db_datadict.php:266 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/export/htmlword.php:321 #: libraries/export/latex.php:434 libraries/export/odt.php:367 -#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:262 -#: pdf_schema.php:1343 server_privileges.php:1560 server_privileges.php:1571 -#: server_privileges.php:1881 server_privileges.php:1886 -#: server_privileges.php:2179 sql.php:131 sql.php:193 tbl_printview.php:227 -#: tbl_structure.php:349 tbl_tracking.php:336 tbl_tracking.php:341 +#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:261 +#: pdf_schema.php:1342 server_privileges.php:1564 server_privileges.php:1575 +#: server_privileges.php:1885 server_privileges.php:1890 +#: server_privileges.php:2183 sql.php:130 sql.php:192 tbl_printview.php:226 +#: tbl_structure.php:347 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "No" @@ -177,17 +191,17 @@ msgstr "No" #: libraries/mult_submits.inc.php:49 libraries/mult_submits.inc.php:54 #: libraries/mult_submits.inc.php:59 libraries/mult_submits.inc.php:91 #: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:105 -#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:261 -#: libraries/mult_submits.inc.php:272 pdf_schema.php:1343 -#: server_databases.php:63 server_privileges.php:1557 -#: server_privileges.php:1571 server_privileges.php:1881 -#: server_privileges.php:1884 server_privileges.php:2179 sql.php:192 -#: tbl_printview.php:227 tbl_structure.php:39 tbl_structure.php:349 -#: tbl_tracking.php:334 tbl_tracking.php:339 +#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:260 +#: libraries/mult_submits.inc.php:271 pdf_schema.php:1342 +#: server_databases.php:61 server_privileges.php:1561 +#: server_privileges.php:1575 server_privileges.php:1885 +#: server_privileges.php:1888 server_privileges.php:2183 sql.php:191 +#: tbl_printview.php:226 tbl_structure.php:38 tbl_structure.php:347 +#: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" msgstr "Yes" -#: db_datadict.php:321 db_printview.php:265 tbl_printview.php:496 +#: db_datadict.php:321 db_printview.php:264 tbl_printview.php:495 msgid "Print" msgstr "Print" @@ -195,278 +209,244 @@ msgstr "Print" msgid "View dump (schema) of database" msgstr "View dump (schema) of database" -#: db_export.php:32 db_printview.php:95 db_qbe.php:101 db_structure.php:50 -#: db_tracking.php:34 export.php:352 navigation.php:326 +#: db_export.php:32 db_printview.php:94 db_qbe.php:98 db_structure.php:49 +#: db_tracking.php:30 export.php:350 navigation.php:325 msgid "No tables found in database." msgstr "No tables found in database." -#: db_export.php:42 db_search.php:326 server_export.php:26 +#: db_export.php:42 db_search.php:326 server_export.php:24 msgid "Select All" msgstr "Select All" -#: db_export.php:44 db_search.php:329 server_export.php:28 +#: db_export.php:44 db_search.php:329 server_export.php:26 msgid "Unselect All" msgstr "Unselect All" -#: db_operations.php:37 tbl_create.php:49 +#: db_operations.php:33 tbl_create.php:47 msgid "The database name is empty!" msgstr "The database name is empty!" -#: db_operations.php:235 +#: db_operations.php:231 #, php-format msgid "Database %s has been renamed to %s" msgstr "Database %s has been renamed to %s" -#: db_operations.php:239 +#: db_operations.php:235 #, php-format msgid "Database %s has been copied to %s" msgstr "Database %s has been copied to %s" -#: db_operations.php:411 +#: db_operations.php:347 msgid "Rename database to" msgstr "Rename database to" -#: db_operations.php:416 server_processlist.php:56 +#: db_operations.php:352 server_processlist.php:56 msgid "Command" msgstr "Command" -#: db_operations.php:428 tbl_change.php:1141 +#: db_operations.php:364 tbl_change.php:1039 msgid "and then" msgstr "and then" -#: db_operations.php:454 +#: db_operations.php:390 msgid "Copy database to" msgstr "Copy database to" -#: db_operations.php:461 tbl_operations.php:527 tbl_tracking.php:387 +#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Structure only" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:389 +#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Structure and data" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:388 +#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Data only" -#: db_operations.php:471 +#: db_operations.php:407 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE before copying" -#: db_operations.php:474 libraries/export/sql.php:51 +#: db_operations.php:410 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 -#: libraries/export/sql.php:81 tbl_operations.php:535 +#: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "Add %s" -#: db_operations.php:478 libraries/export/sql.php:77 tbl_operations.php:298 -#: tbl_operations.php:537 +#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Add AUTO_INCREMENT value" -#: db_operations.php:482 tbl_operations.php:544 +#: db_operations.php:418 tbl_operations.php:542 msgid "Add constraints" msgstr "Add constraints" -#: db_operations.php:495 +#: db_operations.php:431 msgid "Switch to copied database" msgstr "Switch to copied database" -#: db_operations.php:536 -msgid "BLOB Repository" -msgstr "BLOB Repository" - -#: db_operations.php:539 db_tracking.php:75 libraries/common.lib.php:1357 -#: libraries/server_links.inc.php:48 server_processlist.php:58 -#: tbl_tracking.php:595 test/theme.php:100 -msgid "Status" -msgstr "Status" - -#: db_operations.php:547 -msgctxt "BLOB repository" -msgid "Enabled" -msgstr "Enabled" - -#: db_operations.php:551 -msgid "Disable" -msgstr "Disable" - -#: db_operations.php:561 -msgid "Damaged" -msgstr "Damaged" - -#: db_operations.php:565 -msgctxt "BLOB repository" -msgid "Repair" -msgstr "Repair" - -#: db_operations.php:573 -msgctxt "BLOB repository" -msgid "Disabled" -msgstr "Disabled" - -#: db_operations.php:577 -msgid "Enable" -msgstr "Enable" - -#: db_operations.php:601 libraries/Index.class.php:447 +#: db_operations.php:451 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 -#: server_collations.php:53 server_collations.php:65 server_databases.php:110 -#: tbl_operations.php:362 tbl_select.php:135 tbl_structure.php:178 -#: tbl_structure.php:766 tbl_tracking.php:274 tbl_tracking.php:325 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 +#: server_collations.php:53 server_collations.php:65 server_databases.php:108 +#: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:177 +#: tbl_structure.php:764 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "Collation" -#: db_operations.php:614 main.php:315 pdf_schema.php:33 -#, php-format +#: db_operations.php:464 pdf_schema.php:32 +#, fuzzy, php-format +#| msgid "" +#| "The additional features for working with linked tables have been " +#| "deactivated. To find out why click %shere%s." msgid "" -"The additional features for working with linked tables have been " -"deactivated. To find out why click %shere%s." +"The phpMyAdmin configuration storage has been deactivated. To find out why " +"click %shere%s." msgstr "" "The additional features for working with linked tables have been " "deactivated. To find out why click %shere%s." -#: db_operations.php:647 +#: db_operations.php:497 msgid "Edit PDF Pages" msgstr "Edit PDF Pages" -#: db_printview.php:103 db_tracking.php:71 db_tracking.php:156 +#: db_printview.php:102 db_tracking.php:67 db_tracking.php:152 #: libraries/db_structure.lib.php:37 libraries/export/xml.php:327 -#: libraries/header.inc.php:125 pdf_pages.php:423 server_privileges.php:1657 -#: server_privileges.php:1713 server_privileges.php:1977 -#: server_synchronize.php:422 server_synchronize.php:865 tbl_tracking.php:591 +#: libraries/header.inc.php:125 pdf_pages.php:422 server_privileges.php:1661 +#: server_privileges.php:1717 server_privileges.php:1981 +#: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "Table" -#: db_printview.php:104 libraries/db_structure.lib.php:47 +#: db_printview.php:103 libraries/db_structure.lib.php:47 #: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 -#: navigation.php:629 navigation.php:651 server_databases.php:121 -#: tbl_printview.php:392 tbl_structure.php:364 tbl_structure.php:776 +#: navigation.php:628 navigation.php:650 server_databases.php:119 +#: tbl_printview.php:391 tbl_structure.php:362 tbl_structure.php:774 msgid "Rows" msgstr "Rows" -#: db_printview.php:108 libraries/db_structure.lib.php:58 tbl_indexes.php:189 +#: db_printview.php:107 libraries/db_structure.lib.php:58 tbl_indexes.php:188 msgid "Size" msgstr "Size" -#: db_printview.php:161 db_structure.php:456 libraries/export/sql.php:556 +#: db_printview.php:160 db_structure.php:442 libraries/export/sql.php:556 #: libraries/export/sql.php:896 msgid "in use" msgstr "in use" -#: db_printview.php:186 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:511 pdf_schema.php:1240 tbl_printview.php:432 -#: tbl_structure.php:808 +#: db_printview.php:185 libraries/db_info.inc.php:86 +#: libraries/export/sql.php:511 pdf_schema.php:1239 tbl_printview.php:431 +#: tbl_structure.php:806 msgid "Creation" msgstr "Creation" -#: db_printview.php:195 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:516 pdf_schema.php:1245 tbl_printview.php:442 -#: tbl_structure.php:816 +#: db_printview.php:194 libraries/db_info.inc.php:91 +#: libraries/export/sql.php:516 pdf_schema.php:1244 tbl_printview.php:441 +#: tbl_structure.php:814 msgid "Last update" msgstr "Last update" -#: db_printview.php:204 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:521 pdf_schema.php:1250 tbl_printview.php:452 -#: tbl_structure.php:824 +#: db_printview.php:203 libraries/db_info.inc.php:96 +#: libraries/export/sql.php:521 pdf_schema.php:1249 tbl_printview.php:451 +#: tbl_structure.php:822 msgid "Last check" msgstr "Last check" -#: db_printview.php:221 db_structure.php:479 +#: db_printview.php:220 db_structure.php:465 #, php-format msgid "%s table" msgid_plural "%s tables" msgstr[0] "%s table" msgstr[1] "%s tables" -#: db_qbe.php:28 import.php:453 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1980 libraries/sql_query_form.lib.php:138 -#: tbl_operations.php:212 tbl_relation.php:291 tbl_row_action.php:130 -#: view_operations.php:61 +#: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 +#: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "Your SQL query has been executed successfully" -#: db_qbe.php:41 +#: db_qbe.php:38 msgid "You have to choose at least one column to display" msgstr "You have to choose at least one column to display" -#: db_qbe.php:199 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:865 +#: db_qbe.php:196 libraries/db_structure.lib.php:95 +#: libraries/display_tbl.lib.php:864 msgid "Sort" msgstr "Sort" -#: db_qbe.php:208 db_qbe.php:242 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:522 libraries/display_tbl.lib.php:827 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:259 -#: tbl_select.php:311 +#: db_qbe.php:205 db_qbe.php:239 libraries/db_structure.lib.php:102 +#: libraries/display_tbl.lib.php:521 libraries/display_tbl.lib.php:826 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:257 +#: tbl_select.php:310 msgid "Ascending" msgstr "Ascending" -#: db_qbe.php:209 db_qbe.php:250 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:527 libraries/display_tbl.lib.php:824 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:260 -#: tbl_select.php:312 +#: db_qbe.php:206 db_qbe.php:247 libraries/db_structure.lib.php:110 +#: libraries/display_tbl.lib.php:526 libraries/display_tbl.lib.php:823 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:258 +#: tbl_select.php:311 msgid "Descending" msgstr "Descending" -#: db_qbe.php:263 db_tracking.php:77 libraries/display_tbl.lib.php:307 -#: tbl_change.php:275 tbl_tracking.php:596 +#: db_qbe.php:260 db_tracking.php:73 libraries/display_tbl.lib.php:306 +#: tbl_change.php:270 tbl_tracking.php:591 msgid "Show" msgstr "Show" -#: db_qbe.php:299 +#: db_qbe.php:296 msgid "Criteria" msgstr "Criteria" -#: db_qbe.php:352 db_qbe.php:434 db_qbe.php:526 db_qbe.php:557 +#: db_qbe.php:349 db_qbe.php:431 db_qbe.php:523 db_qbe.php:554 msgid "Ins" msgstr "Ins" -#: db_qbe.php:356 db_qbe.php:438 db_qbe.php:523 db_qbe.php:554 +#: db_qbe.php:353 db_qbe.php:435 db_qbe.php:520 db_qbe.php:551 msgid "And" msgstr "And" -#: db_qbe.php:365 db_qbe.php:446 db_qbe.php:528 db_qbe.php:559 +#: db_qbe.php:362 db_qbe.php:443 db_qbe.php:525 db_qbe.php:556 msgid "Del" msgstr "Del" -#: db_qbe.php:369 db_qbe.php:450 db_qbe.php:521 db_qbe.php:552 -#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:778 -#: server_privileges.php:297 tbl_change.php:1027 tbl_indexes.php:249 -#: tbl_select.php:285 +#: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 +#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:777 +#: server_privileges.php:296 tbl_change.php:925 tbl_indexes.php:248 +#: tbl_select.php:284 msgid "Or" msgstr "Or" -#: db_qbe.php:506 +#: db_qbe.php:503 msgid "Modify" msgstr "Modify" -#: db_qbe.php:583 +#: db_qbe.php:580 msgid "Add/Delete criteria rows" msgstr "Add/Delete criteria rows" -#: db_qbe.php:595 +#: db_qbe.php:592 msgid "Add/Delete columns" msgstr "Add/Delete columns" -#: db_qbe.php:608 db_qbe.php:633 +#: db_qbe.php:605 db_qbe.php:630 msgid "Update Query" msgstr "Update Query" -#: db_qbe.php:616 +#: db_qbe.php:613 msgid "Use Tables" msgstr "Use Tables" -#: db_qbe.php:639 +#: db_qbe.php:636 #, php-format msgid "SQL query on database %s:" msgstr "SQL query on database %s:" -#: db_qbe.php:933 libraries/common.lib.php:1222 +#: db_qbe.php:930 libraries/common.lib.php:1215 msgid "Submit Query" msgstr "Submit Query" @@ -505,17 +485,17 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s match inside table %s" msgstr[1] "%s matches inside table %s" -#: db_search.php:249 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2831 -#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:49 -#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:466 +#: db_search.php:249 db_structure.php:75 db_structure.php:76 +#: db_structure.php:88 db_structure.php:90 db_structure.php:101 +#: db_structure.php:103 libraries/common.lib.php:2836 +#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 +#: tbl_structure.php:35 tbl_structure.php:47 tbl_structure.php:464 msgid "Browse" msgstr "Browse" -#: db_search.php:254 libraries/display_tbl.lib.php:1164 -#: libraries/display_tbl.lib.php:2055 libraries/sql_query_form.lib.php:453 -#: pdf_pages.php:285 pdf_pages.php:424 pdf_pages.php:460 pdf_pages.php:488 +#: db_search.php:254 libraries/display_tbl.lib.php:1163 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 msgid "Delete" @@ -552,66 +532,66 @@ msgstr "Inside table(s):" msgid "Inside column:" msgstr "Inside column:" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2830 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:75 +#: db_structure.php:79 db_structure.php:80 db_structure.php:92 +#: db_structure.php:93 db_structure.php:105 db_structure.php:106 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 +#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Insert" -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2827 libraries/common.lib.php:2834 -#: libraries/db_links.inc.php:62 libraries/export/htmlword.php:22 +#: db_structure.php:81 db_structure.php:94 db_structure.php:107 +#: libraries/common.lib.php:2832 libraries/common.lib.php:2839 +#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 -#: libraries/tbl_links.inc.php:55 pmd_general.php:133 -#: server_privileges.php:593 server_replication.php:314 tbl_tracking.php:268 +#: libraries/tbl_links.inc.php:54 pmd_general.php:133 +#: server_privileges.php:592 server_replication.php:313 tbl_tracking.php:263 msgid "Structure" msgstr "Structure" -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:544 db_structure.php:545 db_tracking.php:90 -#: libraries/Index.class.php:482 libraries/common.lib.php:1659 -#: libraries/db_links.inc.php:99 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:126 -#: server_databases.php:351 tbl_structure.php:26 tbl_structure.php:150 -#: tbl_structure.php:151 tbl_structure.php:470 +#: db_structure.php:82 db_structure.php:83 db_structure.php:95 +#: db_structure.php:96 db_structure.php:108 db_structure.php:109 +#: db_structure.php:530 db_structure.php:531 db_tracking.php:86 +#: libraries/Index.class.php:482 libraries/common.lib.php:1663 +#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 +#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 +#: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" msgstr "Drop" -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:542 db_structure.php:543 libraries/common.lib.php:1658 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:104 +#: db_structure.php:84 db_structure.php:85 db_structure.php:97 +#: db_structure.php:98 db_structure.php:110 db_structure.php:111 +#: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 +#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 msgid "Empty" msgstr "Empty" -#: db_structure.php:315 libraries/tbl_links.inc.php:99 +#: db_structure.php:301 libraries/tbl_links.inc.php:98 #, php-format msgid "Table %s has been emptied" msgstr "Table %s has been emptied" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "View %s has been dropped" msgstr "View %s has been dropped" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "Table %s has been dropped" msgstr "Table %s has been dropped" -#: db_structure.php:332 +#: db_structure.php:318 msgid "Tracking is active." msgstr "Tracking is active." -#: db_structure.php:334 +#: db_structure.php:320 msgid "Tracking is not active." msgstr "Tracking is not active." -#: db_structure.php:419 libraries/display_tbl.lib.php:1943 +#: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -620,160 +600,166 @@ msgstr "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." -#: db_structure.php:433 db_structure.php:447 libraries/header.inc.php:125 -#: libraries/tbl_info.inc.php:65 tbl_structure.php:184 test/theme.php:73 +#: db_structure.php:419 db_structure.php:433 libraries/header.inc.php:125 +#: libraries/tbl_info.inc.php:60 tbl_structure.php:183 test/theme.php:73 msgid "View" msgstr "View" -#: db_structure.php:484 libraries/db_structure.lib.php:40 -#: libraries/server_links.inc.php:69 server_replication.php:32 -#: server_replication.php:163 server_status.php:368 +#: db_structure.php:470 libraries/db_structure.lib.php:40 +#: libraries/server_links.inc.php:69 server_replication.php:31 +#: server_replication.php:162 server_status.php:368 msgid "Replication" msgstr "Replication" -#: db_structure.php:488 +#: db_structure.php:474 msgid "Sum" msgstr "Sum" -#: db_structure.php:495 libraries/StorageEngine.class.php:349 +#: db_structure.php:481 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s is the default storage engine on this MySQL server." -#: db_structure.php:523 db_structure.php:540 db_structure.php:541 -#: libraries/display_tbl.lib.php:2080 libraries/display_tbl.lib.php:2085 -#: libraries/mult_submits.inc.php:15 server_databases.php:345 -#: server_databases.php:350 server_privileges.php:1588 tbl_structure.php:454 -#: tbl_structure.php:463 +#: db_structure.php:509 db_structure.php:526 db_structure.php:527 +#: libraries/display_tbl.lib.php:2039 libraries/display_tbl.lib.php:2044 +#: libraries/mult_submits.inc.php:15 server_databases.php:343 +#: server_databases.php:348 server_privileges.php:1592 tbl_structure.php:452 +#: tbl_structure.php:461 msgid "With selected:" msgstr "With selected:" -#: db_structure.php:526 libraries/display_tbl.lib.php:2075 -#: server_databases.php:347 server_privileges.php:569 -#: server_privileges.php:1591 tbl_structure.php:457 +#: db_structure.php:512 libraries/display_tbl.lib.php:2034 +#: server_databases.php:345 server_privileges.php:568 +#: server_privileges.php:1595 tbl_structure.php:455 msgid "Check All" msgstr "Check All" -#: db_structure.php:530 libraries/display_tbl.lib.php:2076 -#: libraries/replication_gui.lib.php:35 server_databases.php:349 -#: server_privileges.php:572 server_privileges.php:1595 tbl_structure.php:461 +#: db_structure.php:516 libraries/display_tbl.lib.php:2035 +#: libraries/replication_gui.lib.php:35 server_databases.php:347 +#: server_privileges.php:571 server_privileges.php:1599 tbl_structure.php:459 msgid "Uncheck All" msgstr "Uncheck All" -#: db_structure.php:535 +#: db_structure.php:521 msgid "Check tables having overhead" msgstr "Check tables having overhead" -#: db_structure.php:546 db_structure.php:547 db_structure.php:598 -#: libraries/display_tbl.lib.php:2179 libraries/mult_submits.inc.php:27 -#: tbl_structure.php:491 tbl_structure.php:493 +#: db_structure.php:532 db_structure.php:533 db_structure.php:584 +#: libraries/display_tbl.lib.php:2138 libraries/mult_submits.inc.php:27 +#: tbl_structure.php:489 tbl_structure.php:491 msgid "Print view" msgstr "Print view" -#: db_structure.php:548 db_structure.php:549 libraries/mult_submits.inc.php:41 -#: tbl_operations.php:580 +#: db_structure.php:534 db_structure.php:535 libraries/mult_submits.inc.php:41 +#: tbl_operations.php:578 msgid "Check table" msgstr "Check table" -#: db_structure.php:550 db_structure.php:551 libraries/mult_submits.inc.php:46 -#: tbl_operations.php:620 tbl_structure.php:708 tbl_structure.php:710 +#: db_structure.php:536 db_structure.php:537 libraries/mult_submits.inc.php:46 +#: tbl_operations.php:618 tbl_structure.php:706 tbl_structure.php:708 msgid "Optimize table" msgstr "Optimise table" -#: db_structure.php:552 db_structure.php:553 libraries/mult_submits.inc.php:51 -#: tbl_operations.php:610 +#: db_structure.php:538 db_structure.php:539 libraries/mult_submits.inc.php:51 +#: tbl_operations.php:608 msgid "Repair table" msgstr "Repair table" -#: db_structure.php:554 db_structure.php:555 libraries/mult_submits.inc.php:56 -#: tbl_operations.php:600 +#: db_structure.php:540 db_structure.php:541 libraries/mult_submits.inc.php:56 +#: tbl_operations.php:598 msgid "Analyze table" msgstr "Analyse table" -#: db_structure.php:556 db_structure.php:557 libraries/db_links.inc.php:70 -#: libraries/display_export.lib.php:82 libraries/display_tbl.lib.php:2093 -#: libraries/display_tbl.lib.php:2224 libraries/mult_submits.inc.php:61 -#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:81 -#: pmd_pdf.php:83 pmd_pdf.php:108 server_privileges.php:1372 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 +#: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 +#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 +#: pmd_pdf.php:81 pmd_pdf.php:106 server_privileges.php:1376 #: setup/frames/menu.inc.php:22 tbl_row_action.php:58 msgid "Export" msgstr "Export" -#: db_structure.php:605 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:591 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "Data Dictionary" -#: db_tracking.php:65 +#: db_tracking.php:61 msgid "Tracked tables" msgstr "Tracked tables" -#: db_tracking.php:70 libraries/export/htmlword.php:85 +#: db_tracking.php:66 libraries/export/htmlword.php:85 #: libraries/export/latex.php:152 libraries/export/odt.php:112 #: libraries/export/sql.php:339 libraries/export/texytext.php:84 #: libraries/export/xml.php:254 libraries/header.inc.php:105 -#: libraries/header_printview.inc.php:57 server_databases.php:168 -#: server_privileges.php:1652 server_privileges.php:1713 -#: server_privileges.php:1971 server_processlist.php:55 -#: server_synchronize.php:1178 server_synchronize.php:1182 -#: tbl_tracking.php:590 test/theme.php:64 +#: libraries/header_printview.inc.php:57 server_databases.php:166 +#: server_privileges.php:1656 server_privileges.php:1717 +#: server_privileges.php:1975 server_processlist.php:55 +#: server_synchronize.php:1177 server_synchronize.php:1181 +#: tbl_tracking.php:585 test/theme.php:64 msgid "Database" msgstr "Database" -#: db_tracking.php:72 +#: db_tracking.php:68 msgid "Last version" msgstr "Last version" -#: db_tracking.php:73 tbl_tracking.php:593 +#: db_tracking.php:69 tbl_tracking.php:588 msgid "Created" msgstr "Created" -#: db_tracking.php:74 tbl_tracking.php:594 +#: db_tracking.php:70 tbl_tracking.php:589 msgid "Updated" msgstr "Updated" -#: db_tracking.php:76 libraries/Index.class.php:439 -#: libraries/db_structure.lib.php:44 server_databases.php:202 -#: server_privileges.php:1534 server_privileges.php:1717 -#: server_privileges.php:2065 tbl_structure.php:186 +#: db_tracking.php:71 libraries/common.lib.php:1361 +#: libraries/server_links.inc.php:48 server_processlist.php:58 +#: tbl_tracking.php:590 test/theme.php:100 +msgid "Status" +msgstr "Status" + +#: db_tracking.php:72 libraries/Index.class.php:439 +#: libraries/db_structure.lib.php:44 server_databases.php:200 +#: server_privileges.php:1538 server_privileges.php:1721 +#: server_privileges.php:2069 tbl_structure.php:185 msgid "Action" msgstr "Action" -#: db_tracking.php:87 db_tracking.php:119 +#: db_tracking.php:83 db_tracking.php:115 msgid "Delete tracking data for this table" msgstr "Delete tracking data for this table" -#: db_tracking.php:105 tbl_tracking.php:547 tbl_tracking.php:605 -#: tbl_tracking.php:612 +#: db_tracking.php:101 tbl_tracking.php:542 tbl_tracking.php:600 +#: tbl_tracking.php:607 msgid "active" msgstr "active" -#: db_tracking.php:107 tbl_tracking.php:549 tbl_tracking.php:607 -#: tbl_tracking.php:609 +#: db_tracking.php:103 tbl_tracking.php:544 tbl_tracking.php:602 +#: tbl_tracking.php:604 msgid "not active" msgstr "not active" -#: db_tracking.php:120 +#: db_tracking.php:116 msgid "Versions" msgstr "Versions" -#: db_tracking.php:121 tbl_tracking.php:378 tbl_tracking.php:623 +#: db_tracking.php:117 tbl_tracking.php:373 tbl_tracking.php:618 msgid "Tracking report" msgstr "Tracking report" -#: db_tracking.php:122 tbl_tracking.php:250 tbl_tracking.php:623 +#: db_tracking.php:118 tbl_tracking.php:245 tbl_tracking.php:618 msgid "Structure snapshot" msgstr "Structure snapshot" -#: db_tracking.php:151 +#: db_tracking.php:147 msgid "Untracked tables" msgstr "Untracked tables" -#: db_tracking.php:171 db_tracking.php:173 tbl_structure.php:527 -#: tbl_structure.php:529 +#: db_tracking.php:167 db_tracking.php:169 tbl_structure.php:525 +#: tbl_structure.php:527 msgid "Track table" msgstr "Track table" -#: db_tracking.php:199 +#: db_tracking.php:195 msgid "Database Log" msgstr "Database Log" @@ -781,29 +767,29 @@ msgstr "Database Log" msgid "Selected export type has to be saved in file!" msgstr "Selected export type has to be saved in file!" -#: export.php:153 export.php:178 export.php:620 +#: export.php:152 export.php:177 export.php:615 #, php-format msgid "Insufficient space to save the file %s." msgstr "Insufficient space to save the file %s." -#: export.php:287 +#: export.php:286 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "" "File %s already exists on server, change filename or check overwrite option." -#: export.php:291 export.php:295 +#: export.php:290 export.php:294 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "The web server does not have permission to save the file %s." -#: export.php:622 +#: export.php:617 #, php-format msgid "Dump has been saved to file %s." msgstr "Dump has been saved to file %s." -#: import.php:59 +#: import.php:58 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -812,14 +798,14 @@ msgstr "" "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:840 -#: libraries/File.class.php:950 +#: import.php:277 import.php:330 libraries/File.class.php:566 +#: libraries/File.class.php:676 msgid "File could not be read" msgstr "File could not be read" -#: import.php:286 import.php:295 import.php:314 import.php:323 -#: libraries/File.class.php:1020 libraries/File.class.php:1028 -#: libraries/File.class.php:1044 libraries/File.class.php:1052 +#: import.php:285 import.php:294 import.php:313 import.php:322 +#: libraries/File.class.php:746 libraries/File.class.php:754 +#: libraries/File.class.php:770 libraries/File.class.php:778 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -828,7 +814,7 @@ msgstr "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." -#: import.php:336 +#: import.php:335 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -838,29 +824,29 @@ msgstr "" "file size exceeded the maximum size permitted by your PHP configuration. See " "[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." -#: import.php:371 libraries/display_import.lib.php:23 +#: import.php:370 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "Could not load import plug-ins, please check your installation!" -#: import.php:396 +#: import.php:395 msgid "The bookmark has been deleted." msgstr "The bookmark has been deleted." -#: import.php:400 +#: import.php:399 msgid "Showing bookmark" msgstr "Showing bookmark" -#: import.php:402 sql.php:625 +#: import.php:401 sql.php:618 #, php-format msgid "Bookmark %s created" msgstr "Bookmark %s created" -#: import.php:408 import.php:414 +#: import.php:407 import.php:413 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Import has been successfully finished, %d queries executed." -#: import.php:423 +#: import.php:422 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -868,7 +854,7 @@ msgstr "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." -#: import.php:425 +#: import.php:424 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -876,19 +862,19 @@ msgstr "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." -#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:240 +#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:239 #: user_password.php:110 msgid "Back" msgstr "Back" -#: index.php:188 +#: index.php:183 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin is more friendly with a frames-capable browser." -#: js/messages.php:25 server_synchronize.php:344 server_synchronize.php:356 -#: server_synchronize.php:372 server_synchronize.php:379 -#: server_synchronize.php:738 server_synchronize.php:766 -#: server_synchronize.php:794 server_synchronize.php:806 +#: js/messages.php:25 server_synchronize.php:343 server_synchronize.php:355 +#: server_synchronize.php:371 server_synchronize.php:378 +#: server_synchronize.php:737 server_synchronize.php:765 +#: server_synchronize.php:793 server_synchronize.php:805 msgid "Click to select" msgstr "Click to select" @@ -896,15 +882,15 @@ msgstr "Click to select" msgid "Click to unselect" msgstr "Click to unselect" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:88 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:87 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" statements are disabled." -#: js/messages.php:30 libraries/mult_submits.inc.php:257 sql.php:187 +#: js/messages.php:30 libraries/mult_submits.inc.php:256 sql.php:186 msgid "Do you really want to " msgstr "Do you really want to " -#: js/messages.php:31 libraries/mult_submits.inc.php:257 sql.php:171 +#: js/messages.php:31 libraries/mult_submits.inc.php:256 sql.php:170 msgid "You are about to DESTROY a complete database!" msgstr "You are about to DESTROY a complete database!" @@ -933,11 +919,11 @@ msgstr "The host name is empty!" msgid "The user name is empty!" msgstr "The user name is empty!" -#: js/messages.php:44 server_privileges.php:1228 user_password.php:65 +#: js/messages.php:44 server_privileges.php:1229 user_password.php:65 msgid "The password is empty!" msgstr "The password is empty!" -#: js/messages.php:45 server_privileges.php:1226 user_password.php:68 +#: js/messages.php:45 server_privileges.php:1227 user_password.php:68 msgid "The passwords aren't the same!" msgstr "The passwords aren't the same!" @@ -945,27 +931,27 @@ msgstr "The passwords aren't the same!" msgid "Cancel" msgstr "Cancel" -#: js/messages.php:52 pmd_save_pos.php:53 +#: js/messages.php:52 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "Modifications have been saved" -#: js/messages.php:53 pmd_relation_upd.php:48 +#: js/messages.php:53 pmd_relation_upd.php:47 msgid "Relation deleted" msgstr "Relation deleted" -#: js/messages.php:54 pmd_relation_new.php:63 +#: js/messages.php:54 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "FOREIGN KEY relation added" -#: js/messages.php:55 pmd_relation_new.php:85 +#: js/messages.php:55 pmd_relation_new.php:84 msgid "Internal relation added" msgstr "Internal relation added" -#: js/messages.php:56 pmd_relation_new.php:62 pmd_relation_new.php:87 +#: js/messages.php:56 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "Error: Relation not added." -#: js/messages.php:57 pmd_relation_new.php:30 +#: js/messages.php:57 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "Error: relation already exists." @@ -973,13 +959,13 @@ msgstr "Error: relation already exists." msgid "Error saving coordinates for Designer." msgstr "Error saving coordinates for Designer." -#: js/messages.php:59 libraries/relation.lib.php:94 -#: libraries/relation.lib.php:106 +#: js/messages.php:59 libraries/relation.lib.php:89 +#: libraries/relation.lib.php:101 msgid "General relation features" msgstr "General relation features" -#: js/messages.php:59 libraries/relation.lib.php:88 -#: libraries/relation.lib.php:95 +#: js/messages.php:59 libraries/relation.lib.php:83 +#: libraries/relation.lib.php:90 msgid "Disabled" msgstr "Disabled" @@ -995,7 +981,7 @@ msgstr "Select Foreign Key" msgid "Please select the primary key or a unique key" msgstr "Please select the primary key or a unique key" -#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:547 +#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:545 msgid "Choose column to display" msgstr "Choose column to display" @@ -1018,10 +1004,10 @@ msgid "Prev" msgstr "Prev" #. l10n: Display text for next month link in calendar -#: js/messages.php:81 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:337 -#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:422 -#: tbl_structure.php:800 +#: js/messages.php:81 libraries/common.lib.php:2358 +#: libraries/common.lib.php:2361 libraries/display_tbl.lib.php:336 +#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 +#: tbl_structure.php:798 msgid "Next" msgstr "Next" @@ -1079,63 +1065,63 @@ msgid "December" msgstr "December" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1562 +#: js/messages.php:101 libraries/common.lib.php:1566 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1564 +#: js/messages.php:103 libraries/common.lib.php:1568 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1566 +#: js/messages.php:105 libraries/common.lib.php:1570 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1568 +#: js/messages.php:107 libraries/common.lib.php:1572 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1570 +#: js/messages.php:109 libraries/common.lib.php:1574 msgctxt "Short month name" msgid "May" msgstr "May" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1572 +#: js/messages.php:111 libraries/common.lib.php:1576 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1574 +#: js/messages.php:113 libraries/common.lib.php:1578 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1576 +#: js/messages.php:115 libraries/common.lib.php:1580 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1578 +#: js/messages.php:117 libraries/common.lib.php:1582 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1580 +#: js/messages.php:119 libraries/common.lib.php:1584 msgid "Oct" msgstr "Oct" #. l10n: Short month name -#: js/messages.php:121 libraries/common.lib.php:1582 +#: js/messages.php:121 libraries/common.lib.php:1586 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:123 libraries/common.lib.php:1584 +#: js/messages.php:123 libraries/common.lib.php:1588 msgid "Dec" msgstr "Dec" @@ -1168,37 +1154,37 @@ msgid "Saturday" msgstr "Saturday" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1587 +#: js/messages.php:136 libraries/common.lib.php:1591 msgid "Sun" msgstr "Sun" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1589 +#: js/messages.php:138 libraries/common.lib.php:1593 msgid "Mon" msgstr "Mon" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1591 +#: js/messages.php:140 libraries/common.lib.php:1595 msgid "Tue" msgstr "Tue" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1593 +#: js/messages.php:142 libraries/common.lib.php:1597 msgid "Wed" msgstr "Wed" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1595 +#: js/messages.php:144 libraries/common.lib.php:1599 msgid "Thu" msgstr "Thu" #. l10n: Short week day name -#: js/messages.php:146 libraries/common.lib.php:1597 +#: js/messages.php:146 libraries/common.lib.php:1601 msgid "Fri" msgstr "Fri" #. l10n: Short week day name -#: js/messages.php:148 libraries/common.lib.php:1599 +#: js/messages.php:148 libraries/common.lib.php:1603 msgid "Sat" msgstr "Sat" @@ -1258,17 +1244,12 @@ msgstr "Second" msgid "Font size" msgstr "Font size" -#: libraries/File.class.php:336 libraries/File.class.php:424 -#: libraries/File.class.php:561 libraries/File.class.php:700 -msgid "Unknown error in file upload." -msgstr "Unknown error in file upload." - -#: libraries/File.class.php:406 +#: libraries/File.class.php:315 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:409 +#: libraries/File.class.php:318 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -1276,23 +1257,27 @@ msgstr "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." -#: libraries/File.class.php:412 +#: libraries/File.class.php:321 msgid "The uploaded file was only partially uploaded." msgstr "The uploaded file was only partially uploaded." -#: libraries/File.class.php:415 +#: libraries/File.class.php:324 msgid "Missing a temporary folder." msgstr "Missing a temporary folder." -#: libraries/File.class.php:418 +#: libraries/File.class.php:327 msgid "Failed to write file to disk." msgstr "Failed to write file to disk." -#: libraries/File.class.php:421 +#: libraries/File.class.php:330 msgid "File upload stopped by extension." msgstr "File upload stopped by extension." -#: libraries/File.class.php:898 +#: libraries/File.class.php:333 +msgid "Unknown error in file upload." +msgstr "Unknown error in file upload." + +#: libraries/File.class.php:624 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -1300,37 +1285,37 @@ msgstr "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" -#: libraries/Index.class.php:427 tbl_relation.php:528 +#: libraries/Index.class.php:427 tbl_relation.php:526 msgid "No index defined!" msgstr "No index defined!" -#: libraries/Index.class.php:432 server_databases.php:131 tbl_tracking.php:315 +#: libraries/Index.class.php:432 server_databases.php:129 tbl_tracking.php:310 msgid "Indexes" msgstr "Indexes" #: libraries/Index.class.php:443 libraries/mult_submits.inc.php:102 -#: libraries/tbl_properties.inc.php:518 tbl_structure.php:32 -#: tbl_structure.php:154 tbl_structure.php:158 tbl_structure.php:473 -#: tbl_tracking.php:321 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:31 +#: tbl_structure.php:153 tbl_structure.php:157 tbl_structure.php:471 +#: tbl_tracking.php:316 msgid "Unique" msgstr "Unique" -#: libraries/Index.class.php:444 tbl_tracking.php:322 +#: libraries/Index.class.php:444 tbl_tracking.php:317 msgid "Packed" msgstr "Packed" -#: libraries/Index.class.php:446 tbl_tracking.php:324 +#: libraries/Index.class.php:446 tbl_tracking.php:319 msgid "Cardinality" msgstr "Cardinality" -#: libraries/Index.class.php:449 tbl_tracking.php:278 tbl_tracking.php:327 +#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322 msgid "Comment" msgstr "Comment" #: libraries/Index.class.php:465 libraries/common.lib.php:609 -#: libraries/common.lib.php:1198 libraries/display_tbl.lib.php:1116 +#: libraries/common.lib.php:1191 libraries/display_tbl.lib.php:1115 #: libraries/import.lib.php:1119 libraries/import.lib.php:1143 -#: pdf_pages.php:284 setup/frames/index.inc.php:124 +#: pdf_pages.php:283 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:349 tbl_row_action.php:68 msgid "Edit" msgstr "Edit" @@ -1354,15 +1339,15 @@ msgstr "" "removed." #: libraries/List_Database.class.php:430 libraries/server_links.inc.php:40 -#: server_databases.php:87 server_privileges.php:1652 +#: server_databases.php:85 server_privileges.php:1656 #: setup/lib/messages.inc.php:107 test/theme.php:92 msgid "Databases" msgstr "Databases" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:259 libraries/import.lib.php:134 pdf_schema.php:31 -#: pdf_schema.php:231 tbl_change.php:1023 tbl_operations.php:212 -#: tbl_relation.php:289 view_operations.php:61 +#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 +#: tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Error" @@ -1387,41 +1372,41 @@ msgid_plural "%1$d rows inserted." msgstr[0] "%1$d row inserted." msgstr[1] "%1$d rows inserted." -#: libraries/StorageEngine.class.php:196 +#: libraries/StorageEngine.class.php:194 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:352 +#: libraries/StorageEngine.class.php:354 #, php-format msgid "%s is available on this MySQL server." msgstr "%s is available on this MySQL server." -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:357 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s has been disabled for this MySQL server." -#: libraries/StorageEngine.class.php:359 +#: libraries/StorageEngine.class.php:361 #, 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:1018 +#: libraries/Table.class.php:1017 msgid "Invalid database" msgstr "Invalid database" -#: libraries/Table.class.php:1032 tbl_get_field.php:25 +#: libraries/Table.class.php:1031 tbl_get_field.php:25 msgid "Invalid table name" msgstr "Invalid table name" -#: libraries/Table.class.php:1047 +#: libraries/Table.class.php:1046 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "Error renaming table %1$s to %2$s" -#: libraries/Table.class.php:1131 +#: libraries/Table.class.php:1129 #, php-format msgid "Table %s has been renamed to %s" msgstr "Table %s has been renamed to %s" @@ -1439,22 +1424,22 @@ msgstr "No preview available." msgid "take it" msgstr "take it" -#: libraries/Theme_Manager.class.php:114 +#: 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:152 +#: libraries/Theme_Manager.class.php:147 #, php-format msgid "Theme %s not found!" msgstr "Theme %s not found!" -#: libraries/Theme_Manager.class.php:220 +#: 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:296 test/theme.php:160 themes.php:20 +#: libraries/Theme_Manager.class.php:291 test/theme.php:160 themes.php:20 #: themes.php:40 msgid "Theme / Style" msgstr "Theme / Style" @@ -1568,19 +1553,19 @@ msgstr "No valid authentication key plugged" msgid "Authenticating..." msgstr "Authenticating..." -#: libraries/blobstreaming.lib.php:689 +#: libraries/blobstreaming.lib.php:340 msgid "View image" msgstr "View image" -#: libraries/blobstreaming.lib.php:693 +#: libraries/blobstreaming.lib.php:344 msgid "Play audio" msgstr "Play audio" -#: libraries/blobstreaming.lib.php:698 +#: libraries/blobstreaming.lib.php:349 msgid "View video" msgstr "View video" -#: libraries/blobstreaming.lib.php:702 +#: libraries/blobstreaming.lib.php:353 msgid "Download file" msgstr "Download file" @@ -1633,7 +1618,7 @@ msgstr "Server" msgid "Invalid authentication method set in configuration:" msgstr "Invalid authentication method set in configuration:" -#: libraries/common.inc.php:909 +#: libraries/common.inc.php:908 #, php-format msgid "You should upgrade to %s %s or later." msgstr "You should upgrade to %s %s or later." @@ -1658,7 +1643,8 @@ msgstr "en" #: libraries/common.lib.php:425 libraries/common.lib.php:427 #: libraries/common.lib.php:429 libraries/common.lib.php:445 #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 -#: libraries/display_export.lib.php:163 libraries/relation.lib.php:84 +#: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 +#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 #: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" @@ -1673,147 +1659,146 @@ msgstr "SQL query" msgid "MySQL said: " msgstr "MySQL said: " -#: libraries/common.lib.php:1136 -#| msgid "Could not connect to MySQL server" +#: libraries/common.lib.php:1129 msgid "Failed to connect to SQL validator!" msgstr "Failed to connect to SQL validator!" -#: libraries/common.lib.php:1174 setup/lib/messages.inc.php:350 +#: libraries/common.lib.php:1167 setup/lib/messages.inc.php:350 msgid "Explain SQL" msgstr "Explain SQL" -#: libraries/common.lib.php:1177 +#: libraries/common.lib.php:1170 msgid "Skip Explain SQL" msgstr "Skip Explain SQL" -#: libraries/common.lib.php:1211 +#: libraries/common.lib.php:1204 msgid "Without PHP Code" msgstr "Without PHP Code" -#: libraries/common.lib.php:1214 setup/lib/messages.inc.php:352 +#: libraries/common.lib.php:1207 setup/lib/messages.inc.php:352 msgid "Create PHP Code" msgstr "Create PHP Code" -#: libraries/common.lib.php:1232 server_status.php:451 +#: libraries/common.lib.php:1225 server_status.php:451 #: setup/lib/messages.inc.php:351 msgid "Refresh" msgstr "Refresh" -#: libraries/common.lib.php:1241 +#: libraries/common.lib.php:1234 msgid "Skip Validate SQL" msgstr "Skip Validate SQL" -#: libraries/common.lib.php:1244 setup/lib/messages.inc.php:353 +#: libraries/common.lib.php:1237 setup/lib/messages.inc.php:353 msgid "Validate SQL" msgstr "Validate SQL" -#: libraries/common.lib.php:1283 +#: libraries/common.lib.php:1287 msgid "Inline edit of this query" msgstr "Inline edit of this query" -#: libraries/common.lib.php:1285 +#: libraries/common.lib.php:1289 msgid "Inline" msgstr "Inline" -#: libraries/common.lib.php:1339 libraries/common.lib.php:1354 +#: libraries/common.lib.php:1343 libraries/common.lib.php:1358 msgid "Profiling" msgstr "Profiling" -#: libraries/common.lib.php:1358 libraries/tbl_triggers.lib.php:27 +#: libraries/common.lib.php:1362 libraries/tbl_triggers.lib.php:27 #: server_processlist.php:57 msgid "Time" msgstr "Time" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "B" msgstr "B" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "KiB" msgstr "KiB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "MiB" msgstr "MiB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "GiB" msgstr "GiB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "TiB" msgstr "TiB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "PiB" msgstr "PiB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "EiB" msgstr "EiB" #. l10n: Thousands separator -#: libraries/common.lib.php:1424 +#: libraries/common.lib.php:1428 msgid "," msgstr "," #. l10n: Decimal separator -#: libraries/common.lib.php:1426 +#: libraries/common.lib.php:1430 msgid "." msgstr "." #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1603 +#: libraries/common.lib.php:1607 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y at %I:%M %p" -#: libraries/common.lib.php:1909 +#: libraries/common.lib.php:1913 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s days, %s hours, %s minutes and %s seconds" -#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 -#: libraries/display_tbl.lib.php:289 server_status.php:718 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 +#: libraries/display_tbl.lib.php:288 server_status.php:718 msgid "Begin" msgstr "Begin" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 -#: libraries/display_tbl.lib.php:290 server_binlog.php:154 +#: libraries/common.lib.php:2328 libraries/common.lib.php:2331 +#: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "Previous" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 -#: libraries/display_tbl.lib.php:352 +#: libraries/common.lib.php:2359 libraries/common.lib.php:2362 +#: libraries/display_tbl.lib.php:351 msgid "End" msgstr "End" -#: libraries/common.lib.php:2429 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "Jump to database "%s"." -#: libraries/common.lib.php:2448 +#: libraries/common.lib.php:2453 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "The %s functionality is affected by a known bug, see %s" -#: libraries/common.lib.php:2828 libraries/common.lib.php:2835 -#: libraries/db_links.inc.php:67 libraries/export/sql.php:24 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 +#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 -#: libraries/tbl_links.inc.php:59 querywindow.php:89 test/theme.php:96 +#: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2837 libraries/db_links.inc.php:103 -#: libraries/tbl_links.inc.php:94 libraries/tbl_links.inc.php:116 -#: view_operations.php:88 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: view_operations.php:87 msgid "Operations" msgstr "Operations" -#: libraries/core.lib.php:282 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "The %s extension is missing. Please check your PHP configuration." @@ -1829,38 +1814,38 @@ msgstr "Events" msgid "Name" msgstr "Name" -#: libraries/db_links.inc.php:44 +#: libraries/db_links.inc.php:43 #, php-format msgid "Database %s has been dropped." msgstr "Database %s has been dropped." -#: libraries/db_links.inc.php:56 libraries/db_links.inc.php:57 -#: libraries/db_links.inc.php:58 +#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 +#: libraries/db_links.inc.php:57 msgid "Database seems to be empty!" msgstr "Database seems to be empty!" -#: libraries/db_links.inc.php:80 libraries/relation.lib.php:142 -#: libraries/tbl_links.inc.php:68 +#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "Tracking" -#: libraries/db_links.inc.php:85 +#: libraries/db_links.inc.php:84 msgid "Query" msgstr "Query" -#: libraries/db_links.inc.php:90 libraries/relation.lib.php:138 +#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 msgid "Designer" msgstr "Designer" -#: libraries/db_links.inc.php:97 libraries/server_links.inc.php:87 -#: libraries/tbl_links.inc.php:90 pmd_pdf.php:83 pmd_pdf.php:109 +#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Import" -#: libraries/db_links.inc.php:110 libraries/server_links.inc.php:65 -#: server_privileges.php:111 server_privileges.php:1714 -#: server_privileges.php:2063 test/theme.php:116 +#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: server_privileges.php:110 server_privileges.php:1718 +#: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" msgstr "Privileges" @@ -1872,7 +1857,7 @@ msgstr "Routines" msgid "Return type" msgstr "Return type" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1847 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1806 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -1880,8 +1865,8 @@ msgstr "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" -#: libraries/db_structure.lib.php:60 server_databases.php:141 -#: tbl_printview.php:334 tbl_structure.php:681 +#: libraries/db_structure.lib.php:60 server_databases.php:139 +#: tbl_printview.php:333 tbl_structure.php:679 msgid "Overhead" msgstr "Overhead" @@ -1898,7 +1883,7 @@ msgstr "The server is not responding" 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:358 tbl_structure.php:607 +#: libraries/dbi/mysql.dbi.lib.php:358 tbl_structure.php:605 msgid "Details..." msgstr "Details..." @@ -1908,22 +1893,22 @@ msgid "Change password" msgstr "Change password" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:807 +#: libraries/replication_gui.lib.php:347 server_privileges.php:806 msgid "No Password" msgstr "No Password" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1530 server_synchronize.php:1174 +#: libraries/replication_gui.lib.php:351 server_privileges.php:795 +#: server_privileges.php:799 server_privileges.php:810 +#: server_privileges.php:1534 server_synchronize.php:1173 msgid "Password" msgstr "Password" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:815 server_privileges.php:818 +#: server_privileges.php:814 server_privileges.php:817 msgid "Re-type" msgstr "Re-type" @@ -1944,8 +1929,8 @@ msgstr "Create new database" msgid "Create" msgstr "Create" -#: libraries/display_create_database.lib.php:39 server_privileges.php:113 -#: server_privileges.php:1419 server_replication.php:34 +#: libraries/display_create_database.lib.php:39 server_privileges.php:112 +#: server_privileges.php:1423 server_replication.php:33 msgid "No Privileges" msgstr "No Privileges" @@ -1962,49 +1947,49 @@ msgstr "Create table on database %s" msgid "Number of columns" msgstr "Number of columns" -#: libraries/display_export.lib.php:41 +#: libraries/display_export.lib.php:35 msgid "Could not load export plugins, please check your installation!" msgstr "Could not load export plug-ins, please check your installation!" -#: libraries/display_export.lib.php:106 +#: libraries/display_export.lib.php:100 #, php-format msgid "Dump %s row(s) starting at row # %s" msgstr "Dump %s row(s) starting at row # %s" -#: libraries/display_export.lib.php:114 +#: libraries/display_export.lib.php:108 msgid "Dump all rows" msgstr "Dump all rows" -#: libraries/display_export.lib.php:124 setup/lib/messages.inc.php:79 +#: libraries/display_export.lib.php:118 setup/lib/messages.inc.php:79 msgid "Save as file" msgstr "Save as file" -#: libraries/display_export.lib.php:133 +#: libraries/display_export.lib.php:127 #, php-format msgid "Save on server in %s directory" msgstr "Save on server in %s directory" -#: libraries/display_export.lib.php:141 setup/lib/messages.inc.php:87 +#: libraries/display_export.lib.php:135 setup/lib/messages.inc.php:87 msgid "Overwrite existing file(s)" msgstr "Overwrite existing file(s)" -#: libraries/display_export.lib.php:147 +#: libraries/display_export.lib.php:141 msgid "File name template" msgstr "File name template" -#: libraries/display_export.lib.php:151 +#: libraries/display_export.lib.php:145 msgid "server name" msgstr "server name" -#: libraries/display_export.lib.php:154 +#: libraries/display_export.lib.php:148 msgid "database name" msgstr "database name" -#: libraries/display_export.lib.php:157 +#: libraries/display_export.lib.php:151 msgid "table name" msgstr "table name" -#: libraries/display_export.lib.php:161 +#: libraries/display_export.lib.php:155 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2015,39 +2000,39 @@ msgstr "" "formatting strings. Additionally the following transformations will happen: " "%3$s. Other text will be kept as is." -#: libraries/display_export.lib.php:202 +#: libraries/display_export.lib.php:196 msgid "remember template" msgstr "remember template" -#: libraries/display_export.lib.php:210 libraries/display_import.lib.php:177 +#: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 #: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 msgid "Character set of the file:" msgstr "Character set of the file:" -#: libraries/display_export.lib.php:235 setup/lib/messages.inc.php:81 +#: libraries/display_export.lib.php:229 setup/lib/messages.inc.php:81 msgid "Compression" msgstr "Compression" -#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:196 -#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:529 -#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:574 -#: server_privileges.php:1867 server_processlist.php:74 +#: libraries/display_export.lib.php:234 libraries/display_import.lib.php:196 +#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:528 +#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:573 +#: server_privileges.php:1871 server_processlist.php:74 msgid "None" msgstr "None" -#: libraries/display_export.lib.php:247 +#: libraries/display_export.lib.php:241 msgid "\"zipped\"" msgstr "\"zipped\"" -#: libraries/display_export.lib.php:253 +#: libraries/display_export.lib.php:247 msgid "\"gzipped\"" msgstr "\"gzipped\"" -#: libraries/display_export.lib.php:259 +#: libraries/display_export.lib.php:253 msgid "\"bzipped\"" msgstr "\"bzipped\"" -#: libraries/display_export.lib.php:274 libraries/export/sql.php:42 +#: libraries/display_export.lib.php:268 libraries/export/sql.php:42 #: libraries/import/sql.php:31 msgid "SQL compatibility mode" msgstr "SQL compatibility mode" @@ -2087,12 +2072,12 @@ msgid "File uploads are not allowed on this server." msgstr "File uploads are not allowed on this server." #: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 -#: tbl_change.php:1024 +#: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "The directory you set for upload work cannot be reached" #: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 -#: tbl_change.php:1027 +#: tbl_change.php:925 msgid "web server upload directory" msgstr "web server upload directory" @@ -2175,41 +2160,41 @@ msgstr "Paper size" msgid "Language" msgstr "Language" -#: libraries/display_tbl.lib.php:303 +#: libraries/display_tbl.lib.php:302 #, php-format msgid "%d is not valid row number." msgstr "%d is not valid row number." -#: libraries/display_tbl.lib.php:309 +#: libraries/display_tbl.lib.php:308 msgid "row(s) starting from row #" msgstr "row(s) starting from row #" -#: libraries/display_tbl.lib.php:315 +#: libraries/display_tbl.lib.php:314 msgid "horizontal" msgstr "horizontal" -#: libraries/display_tbl.lib.php:316 +#: libraries/display_tbl.lib.php:315 msgid "horizontal (rotated headers)" msgstr "horizontal (rotated headers)" -#: libraries/display_tbl.lib.php:317 +#: libraries/display_tbl.lib.php:316 msgid "vertical" msgstr "vertical" -#: libraries/display_tbl.lib.php:323 +#: libraries/display_tbl.lib.php:322 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "in %s mode and repeat headers after %s cells" -#: libraries/display_tbl.lib.php:345 +#: libraries/display_tbl.lib.php:344 msgid "This operation could take a long time. Proceed anyway?" msgstr "This operation could take a long time. Proceed anyway?" -#: libraries/display_tbl.lib.php:511 +#: libraries/display_tbl.lib.php:510 msgid "Sort by key" msgstr "Sort by key" -#: libraries/display_tbl.lib.php:554 libraries/export/codegen.php:38 +#: libraries/display_tbl.lib.php:553 libraries/export/codegen.php:38 #: libraries/export/csv.php:29 libraries/export/excel.php:34 #: libraries/export/htmlword.php:28 libraries/export/latex.php:32 #: libraries/export/mediawiki.php:21 libraries/export/ods.php:26 @@ -2219,97 +2204,97 @@ msgstr "Sort by key" #: libraries/export/xlsx.php:26 libraries/export/xml.php:23 #: libraries/export/yaml.php:27 libraries/import.lib.php:1114 #: libraries/import.lib.php:1136 libraries/import/csv.php:31 -#: libraries/import/docsql.php:33 libraries/import/ldi.php:46 +#: libraries/import/docsql.php:32 libraries/import/ldi.php:46 #: libraries/import/ods.php:30 libraries/import/sql.php:19 #: libraries/import/xls.php:25 libraries/import/xlsx.php:25 -#: libraries/import/xml.php:25 tbl_select.php:264 tbl_structure.php:752 +#: libraries/import/xml.php:25 tbl_select.php:263 tbl_structure.php:750 msgid "Options" msgstr "Options" -#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:569 +#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:568 msgid "Partial Texts" msgstr "Partial Texts" -#: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:573 +#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:572 msgid "Full Texts" msgstr "Full Texts" -#: libraries/display_tbl.lib.php:586 +#: libraries/display_tbl.lib.php:585 msgid "Relational key" msgstr "Relational key" -#: libraries/display_tbl.lib.php:587 +#: libraries/display_tbl.lib.php:586 msgid "Relational display column" msgstr "Relational display column" -#: libraries/display_tbl.lib.php:594 +#: libraries/display_tbl.lib.php:593 msgid "Show binary contents" msgstr "Show binary contents" -#: libraries/display_tbl.lib.php:596 +#: libraries/display_tbl.lib.php:595 msgid "Show BLOB contents" msgstr "Show BLOB contents" -#: libraries/display_tbl.lib.php:598 +#: libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "Show binary contents as HEX" -#: libraries/display_tbl.lib.php:606 pmd_general.php:140 tbl_change.php:312 -#: tbl_change.php:318 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:307 +#: tbl_change.php:313 msgid "Hide" msgstr "Hide" -#: libraries/display_tbl.lib.php:606 libraries/relation.lib.php:122 -#: libraries/tbl_properties.inc.php:143 transformation_overview.php:46 +#: libraries/display_tbl.lib.php:605 libraries/relation.lib.php:117 +#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46 msgid "Browser transformation" msgstr "Browser transformation" -#: libraries/display_tbl.lib.php:1125 libraries/display_tbl.lib.php:1129 -#: libraries/display_tbl.lib.php:1131 +#: libraries/display_tbl.lib.php:1124 libraries/display_tbl.lib.php:1128 +#: libraries/display_tbl.lib.php:1130 msgid "Execute bookmarked query" msgstr "Execute bookmarked query" -#: libraries/display_tbl.lib.php:1144 libraries/display_tbl.lib.php:1156 +#: libraries/display_tbl.lib.php:1143 libraries/display_tbl.lib.php:1155 msgid "The row has been deleted" msgstr "The row has been deleted" -#: libraries/display_tbl.lib.php:1183 libraries/display_tbl.lib.php:2055 +#: libraries/display_tbl.lib.php:1182 libraries/display_tbl.lib.php:2014 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "Kill" -#: libraries/display_tbl.lib.php:1933 +#: libraries/display_tbl.lib.php:1892 msgid "in query" msgstr "in query" -#: libraries/display_tbl.lib.php:1951 +#: libraries/display_tbl.lib.php:1910 msgid "Showing rows" msgstr "Showing rows" -#: libraries/display_tbl.lib.php:1961 +#: libraries/display_tbl.lib.php:1920 msgid "total" msgstr "total" -#: libraries/display_tbl.lib.php:1969 sql.php:523 +#: libraries/display_tbl.lib.php:1928 sql.php:522 #, php-format msgid "Query took %01.4f sec" msgstr "Query took %01.4f sec" -#: libraries/display_tbl.lib.php:2088 libraries/mult_submits.inc.php:112 -#: querywindow.php:115 querywindow.php:119 querywindow.php:122 -#: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:469 +#: libraries/display_tbl.lib.php:2047 libraries/mult_submits.inc.php:112 +#: querywindow.php:114 querywindow.php:118 querywindow.php:121 +#: tbl_structure.php:23 tbl_structure.php:148 tbl_structure.php:467 msgid "Change" msgstr "Change" -#: libraries/display_tbl.lib.php:2158 +#: libraries/display_tbl.lib.php:2117 msgid "Query results operations" msgstr "Query results operations" -#: libraries/display_tbl.lib.php:2186 +#: libraries/display_tbl.lib.php:2145 msgid "Print view (with full texts)" msgstr "Print view (with full texts)" -#: libraries/display_tbl.lib.php:2359 +#: libraries/display_tbl.lib.php:2318 msgid "Link not found" msgstr "Link not found" @@ -2365,9 +2350,9 @@ msgstr "InnoDB Status" msgid "Buffer Pool Usage" msgstr "Buffer Pool Usage" -#: libraries/engines/innodb.lib.php:168 server_databases.php:136 -#: server_databases.php:304 server_status.php:524 server_status.php:585 -#: server_status.php:606 tbl_printview.php:349 tbl_structure.php:695 +#: libraries/engines/innodb.lib.php:168 server_databases.php:134 +#: server_databases.php:302 server_status.php:524 server_status.php:585 +#: server_status.php:606 tbl_printview.php:348 tbl_structure.php:693 msgid "Total" msgstr "Total" @@ -2503,6 +2488,87 @@ msgstr "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." +#: libraries/engines/pbms.lib.php:31 +#, fuzzy +#| msgid "Garbage threshold" +msgid "Garbage Threshold" +msgstr "Garbage threshold" + +#: libraries/engines/pbms.lib.php:32 +#, fuzzy +#| msgid "" +#| "The percentage of garbage in a data log file before it is compacted. This " +#| "is a value between 1 and 99. The default is 50." +msgid "The percentage of garbage in a repository file before it is compacted." +msgstr "" +"The percentage of garbage in a data log file before it is compacted. This is " +"a value between 1 and 99. The default is 50." + +#: libraries/engines/pbms.lib.php:36 libraries/replication_gui.lib.php:69 +#: server_synchronize.php:1161 +msgid "Port" +msgstr "Port" + +#: libraries/engines/pbms.lib.php:37 +msgid "" +"The port for the PBMS stream-based communications. Setting this value to 0 " +"will disable HTTP communication with the daemon." +msgstr "" + +#: libraries/engines/pbms.lib.php:41 +msgid "Repository Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:42 +msgid "" +"The maximum size of a BLOB repository file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:46 +msgid "Temp Blob Timeout" +msgstr "" + +#: libraries/engines/pbms.lib.php:47 +msgid "" +"The timeout, in seconds, for temporary BLOBs. Uploaded BLOB data is removed " +"after this time, unless they are referenced by a record in the database." +msgstr "" + +#: libraries/engines/pbms.lib.php:51 +#, fuzzy +#| msgid "Log file threshold" +msgid "Temp Log Threshold" +msgstr "Log file threshold" + +#: libraries/engines/pbms.lib.php:52 +msgid "" +"The maximum size of a temporary BLOB log file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:56 +msgid "Max Keep Alive" +msgstr "" + +#: libraries/engines/pbms.lib.php:57 +msgid "" +"The timeout for inactive connection with the keep-alive flag set. After this " +"time the connection will be closed. The time-out is in milliseconds (1/1000)." +msgstr "" + +#: libraries/engines/pbms.lib.php:61 +msgid "Metadata Headers" +msgstr "" + +#: libraries/engines/pbms.lib.php:62 +msgid "" +"A \":\" delimited list of metadata headers to be used to initialize the " +"pbms_metadata_header table when a database is created." +msgstr "" + #: libraries/engines/pbxt.lib.php:22 msgid "Index cache size" msgstr "Index cache size" @@ -2652,7 +2718,7 @@ msgstr "" "number." #: libraries/export/codegen.php:36 setup/lib/messages.inc.php:85 -#: tbl_printview.php:374 tbl_structure.php:736 +#: tbl_printview.php:373 tbl_structure.php:734 msgid "Format" msgstr "Format" @@ -2715,9 +2781,9 @@ msgstr "Microsoft Word 2000" #: libraries/export/htmlword.php:23 libraries/export/latex.php:59 #: libraries/export/latex.php:205 libraries/export/odt.php:47 #: libraries/export/sql.php:105 libraries/export/sql.php:865 -#: libraries/export/texytext.php:27 server_databases.php:126 -#: server_privileges.php:576 server_replication.php:315 tbl_printview.php:315 -#: tbl_structure.php:664 +#: libraries/export/texytext.php:27 server_databases.php:124 +#: server_privileges.php:575 server_replication.php:314 tbl_printview.php:314 +#: tbl_structure.php:662 msgid "Data" msgstr "Data" @@ -2732,7 +2798,6 @@ msgid "Table structure for table" msgstr "Table structure for table" #: libraries/export/latex.php:13 -#| msgid "Content of table __TABLE__" msgid "Content of table @TABLE@" msgstr "Content of table @TABLE@" @@ -2741,7 +2806,6 @@ msgid "(continued)" msgstr "(continued)" #: libraries/export/latex.php:15 -#| msgid "Structure of table __TABLE__" msgid "Structure of table @TABLE@" msgstr "Structure of table @TABLE@" @@ -2766,13 +2830,13 @@ msgid "Label key" msgstr "Label key" #: libraries/export/latex.php:46 libraries/export/odt.php:34 -#: libraries/export/sql.php:90 tbl_relation.php:398 +#: libraries/export/sql.php:90 tbl_relation.php:396 msgid "Relations" msgstr "Relations" #: libraries/export/latex.php:52 libraries/export/odt.php:40 #: libraries/export/odt.php:317 libraries/export/sql.php:94 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "MIME type" @@ -2780,10 +2844,10 @@ msgstr "MIME type" #: libraries/export/xml.php:101 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1529 server_privileges.php:2061 -#: server_processlist.php:54 server_synchronize.php:1158 +#: libraries/replication_gui.lib.php:331 server_privileges.php:730 +#: server_privileges.php:733 server_privileges.php:789 +#: server_privileges.php:1533 server_privileges.php:2065 +#: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "Host" @@ -2970,8 +3034,8 @@ msgstr "Export views" msgid "Export contents" msgstr "Export contents" -#: libraries/footer.inc.php:182 libraries/footer.inc.php:193 -#: libraries/footer.inc.php:196 +#: libraries/footer.inc.php:180 libraries/footer.inc.php:191 +#: libraries/footer.inc.php:194 msgid "Open new phpMyAdmin window" msgstr "Open new phpMyAdmin window" @@ -2987,7 +3051,7 @@ msgstr "SQL result" msgid "Generated by" msgstr "Generated by" -#: libraries/import.lib.php:151 sql.php:519 tbl_change.php:180 +#: libraries/import.lib.php:151 sql.php:518 tbl_change.php:175 #: 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)." @@ -3045,7 +3109,7 @@ msgstr "Ignore duplicate rows" msgid "Column names in first row" msgstr "Column names in first row" -#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:501 +#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:500 #: view_create.php:147 msgid "Column names" msgstr "Column names" @@ -3071,12 +3135,12 @@ msgstr "Invalid format of CSV input on line %d." msgid "Invalid column count in CSV input on line %d." msgstr "Invalid column count in CSV input on line %d." -#: libraries/import/docsql.php:28 +#: libraries/import/docsql.php:27 msgid "DocSQL" msgstr "DocSQL" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 -#: server_synchronize.php:427 server_synchronize.php:870 +#: libraries/import/docsql.php:30 libraries/tbl_properties.inc.php:616 +#: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "Table name" @@ -3132,26 +3196,26 @@ msgstr "None" msgid "Convert to Kana" msgstr "Convert to Kana" -#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:512 -#: tbl_structure.php:28 tbl_structure.php:152 tbl_structure.php:156 -#: tbl_structure.php:472 +#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:511 +#: tbl_structure.php:27 tbl_structure.php:151 tbl_structure.php:155 +#: tbl_structure.php:470 msgid "Primary" msgstr "Primary" #: libraries/mult_submits.inc.php:97 libraries/tbl_properties.inc.php:115 -#: libraries/tbl_properties.inc.php:524 tbl_printview.php:324 -#: tbl_structure.php:30 tbl_structure.php:153 tbl_structure.php:157 -#: tbl_structure.php:474 tbl_structure.php:672 +#: libraries/tbl_properties.inc.php:523 tbl_printview.php:323 +#: tbl_structure.php:29 tbl_structure.php:152 tbl_structure.php:156 +#: tbl_structure.php:472 tbl_structure.php:670 msgid "Index" msgstr "Index" -#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:530 -#: tbl_structure.php:34 tbl_structure.php:155 tbl_structure.php:159 -#: tbl_structure.php:477 +#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:529 +#: tbl_structure.php:33 tbl_structure.php:154 tbl_structure.php:158 +#: tbl_structure.php:475 msgid "Fulltext" msgstr "Fulltext" -#: libraries/mult_submits.inc.php:434 tbl_replace.php:330 +#: libraries/mult_submits.inc.php:433 tbl_replace.php:330 msgid "No change" msgstr "No change" @@ -3159,190 +3223,190 @@ msgstr "No change" msgid "Charset" msgstr "Charset" -#: libraries/mysql_charsets.lib.php:210 libraries/mysql_charsets.lib.php:411 -#: tbl_change.php:515 +#: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 +#: tbl_change.php:510 msgid "Binary" msgstr "Binary" -#: libraries/mysql_charsets.lib.php:222 +#: libraries/mysql_charsets.lib.php:214 msgid "Bulgarian" msgstr "Bulgarian" -#: libraries/mysql_charsets.lib.php:226 libraries/mysql_charsets.lib.php:351 +#: libraries/mysql_charsets.lib.php:218 libraries/mysql_charsets.lib.php:343 msgid "Simplified Chinese" msgstr "Simplified Chinese" -#: libraries/mysql_charsets.lib.php:228 libraries/mysql_charsets.lib.php:371 +#: libraries/mysql_charsets.lib.php:220 libraries/mysql_charsets.lib.php:363 msgid "Traditional Chinese" msgstr "Traditional Chinese" -#: libraries/mysql_charsets.lib.php:232 libraries/mysql_charsets.lib.php:418 +#: libraries/mysql_charsets.lib.php:224 libraries/mysql_charsets.lib.php:410 msgid "case-insensitive" msgstr "case-insensitive" -#: libraries/mysql_charsets.lib.php:235 libraries/mysql_charsets.lib.php:420 +#: libraries/mysql_charsets.lib.php:227 libraries/mysql_charsets.lib.php:412 msgid "case-sensitive" msgstr "case-sensitive" -#: libraries/mysql_charsets.lib.php:238 +#: libraries/mysql_charsets.lib.php:230 msgid "Croatian" msgstr "Croatian" -#: libraries/mysql_charsets.lib.php:241 +#: libraries/mysql_charsets.lib.php:233 msgid "Czech" msgstr "Czech" -#: libraries/mysql_charsets.lib.php:244 +#: libraries/mysql_charsets.lib.php:236 msgid "Danish" msgstr "Danish" -#: libraries/mysql_charsets.lib.php:247 +#: libraries/mysql_charsets.lib.php:239 msgid "English" msgstr "English" -#: libraries/mysql_charsets.lib.php:250 +#: libraries/mysql_charsets.lib.php:242 msgid "Esperanto" msgstr "Esperanto" -#: libraries/mysql_charsets.lib.php:253 +#: libraries/mysql_charsets.lib.php:245 msgid "Estonian" msgstr "Estonian" -#: libraries/mysql_charsets.lib.php:256 libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:248 libraries/mysql_charsets.lib.php:251 msgid "German" msgstr "German" -#: libraries/mysql_charsets.lib.php:256 +#: libraries/mysql_charsets.lib.php:248 msgid "dictionary" msgstr "dictionary" -#: libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:251 msgid "phone book" msgstr "phone book" -#: libraries/mysql_charsets.lib.php:262 +#: libraries/mysql_charsets.lib.php:254 msgid "Hungarian" msgstr "Hungarian" -#: libraries/mysql_charsets.lib.php:265 +#: libraries/mysql_charsets.lib.php:257 msgid "Icelandic" msgstr "Icelandic" -#: libraries/mysql_charsets.lib.php:268 libraries/mysql_charsets.lib.php:358 +#: libraries/mysql_charsets.lib.php:260 libraries/mysql_charsets.lib.php:350 msgid "Japanese" msgstr "Japanese" -#: libraries/mysql_charsets.lib.php:271 +#: libraries/mysql_charsets.lib.php:263 msgid "Latvian" msgstr "Latvian" -#: libraries/mysql_charsets.lib.php:274 +#: libraries/mysql_charsets.lib.php:266 msgid "Lithuanian" msgstr "Lithuanian" -#: libraries/mysql_charsets.lib.php:277 libraries/mysql_charsets.lib.php:380 +#: libraries/mysql_charsets.lib.php:269 libraries/mysql_charsets.lib.php:372 msgid "Korean" msgstr "Korean" -#: libraries/mysql_charsets.lib.php:280 +#: libraries/mysql_charsets.lib.php:272 msgid "Persian" msgstr "Persian" -#: libraries/mysql_charsets.lib.php:283 +#: libraries/mysql_charsets.lib.php:275 msgid "Polish" msgstr "Polish" -#: libraries/mysql_charsets.lib.php:286 libraries/mysql_charsets.lib.php:334 +#: libraries/mysql_charsets.lib.php:278 libraries/mysql_charsets.lib.php:326 msgid "West European" msgstr "West European" -#: libraries/mysql_charsets.lib.php:289 +#: libraries/mysql_charsets.lib.php:281 msgid "Romanian" msgstr "Romanian" -#: libraries/mysql_charsets.lib.php:292 +#: libraries/mysql_charsets.lib.php:284 msgid "Slovak" msgstr "Slovak" -#: libraries/mysql_charsets.lib.php:295 +#: libraries/mysql_charsets.lib.php:287 msgid "Slovenian" msgstr "Slovenian" -#: libraries/mysql_charsets.lib.php:298 +#: libraries/mysql_charsets.lib.php:290 msgid "Spanish" msgstr "Spanish" -#: libraries/mysql_charsets.lib.php:301 +#: libraries/mysql_charsets.lib.php:293 msgid "Traditional Spanish" msgstr "Traditional Spanish" -#: libraries/mysql_charsets.lib.php:304 libraries/mysql_charsets.lib.php:401 +#: libraries/mysql_charsets.lib.php:296 libraries/mysql_charsets.lib.php:393 msgid "Swedish" msgstr "Swedish" -#: libraries/mysql_charsets.lib.php:307 libraries/mysql_charsets.lib.php:404 +#: libraries/mysql_charsets.lib.php:299 libraries/mysql_charsets.lib.php:396 msgid "Thai" msgstr "Thai" -#: libraries/mysql_charsets.lib.php:310 libraries/mysql_charsets.lib.php:398 +#: libraries/mysql_charsets.lib.php:302 libraries/mysql_charsets.lib.php:390 msgid "Turkish" msgstr "Turkish" -#: libraries/mysql_charsets.lib.php:313 libraries/mysql_charsets.lib.php:395 +#: libraries/mysql_charsets.lib.php:305 libraries/mysql_charsets.lib.php:387 msgid "Ukrainian" msgstr "Ukrainian" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 msgid "Unicode" msgstr "Unicode" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 -#: libraries/mysql_charsets.lib.php:334 libraries/mysql_charsets.lib.php:341 -#: libraries/mysql_charsets.lib.php:363 libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 +#: libraries/mysql_charsets.lib.php:326 libraries/mysql_charsets.lib.php:333 +#: libraries/mysql_charsets.lib.php:355 libraries/mysql_charsets.lib.php:366 msgid "multilingual" msgstr "multilingual" -#: libraries/mysql_charsets.lib.php:341 +#: libraries/mysql_charsets.lib.php:333 msgid "Central European" msgstr "Central European" -#: libraries/mysql_charsets.lib.php:346 +#: libraries/mysql_charsets.lib.php:338 msgid "Russian" msgstr "Russian" -#: libraries/mysql_charsets.lib.php:363 +#: libraries/mysql_charsets.lib.php:355 msgid "Baltic" msgstr "Baltic" -#: libraries/mysql_charsets.lib.php:368 +#: libraries/mysql_charsets.lib.php:360 msgid "Armenian" msgstr "Armenian" -#: libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:366 msgid "Cyrillic" msgstr "Cyrillic" -#: libraries/mysql_charsets.lib.php:377 +#: libraries/mysql_charsets.lib.php:369 msgid "Arabic" msgstr "Arabic" -#: libraries/mysql_charsets.lib.php:383 +#: libraries/mysql_charsets.lib.php:375 msgid "Hebrew" msgstr "Hebrew" -#: libraries/mysql_charsets.lib.php:386 +#: libraries/mysql_charsets.lib.php:378 msgid "Georgian" msgstr "Georgian" -#: libraries/mysql_charsets.lib.php:389 +#: libraries/mysql_charsets.lib.php:381 msgid "Greek" msgstr "Greek" -#: libraries/mysql_charsets.lib.php:392 +#: libraries/mysql_charsets.lib.php:384 msgid "Czech-Slovak" msgstr "Czech-Slovak" -#: libraries/mysql_charsets.lib.php:407 libraries/mysql_charsets.lib.php:414 +#: libraries/mysql_charsets.lib.php:399 libraries/mysql_charsets.lib.php:406 msgid "unknown" msgstr "unknown" @@ -3368,59 +3432,59 @@ msgstr "Query window" msgid "This format has no options" msgstr "This format has no options" -#: libraries/relation.lib.php:82 +#: libraries/relation.lib.php:77 msgid "not OK" msgstr "not OK" -#: libraries/relation.lib.php:86 pmd_general.php:339 +#: libraries/relation.lib.php:81 pmd_general.php:339 msgid "OK" msgstr "OK" -#: libraries/relation.lib.php:87 +#: libraries/relation.lib.php:82 msgid "Enabled" msgstr "Enabled" -#: libraries/relation.lib.php:110 +#: libraries/relation.lib.php:105 msgid "Display Features" msgstr "Display Features" -#: libraries/relation.lib.php:116 +#: libraries/relation.lib.php:111 msgid "Creation of PDFs" msgstr "Creation of PDFs" -#: libraries/relation.lib.php:120 +#: libraries/relation.lib.php:115 msgid "Displaying Column Comments" msgstr "Displaying Column Comments" -#: libraries/relation.lib.php:125 +#: libraries/relation.lib.php:120 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "Please see the documentation on how to update your column_comments table" -#: libraries/relation.lib.php:130 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 msgid "Bookmarked SQL query" msgstr "Bookmarked SQL query" -#: libraries/relation.lib.php:134 querywindow.php:99 querywindow.php:207 +#: libraries/relation.lib.php:129 querywindow.php:98 querywindow.php:205 msgid "SQL history" msgstr "SQL history" -#: libraries/relation.lib.php:146 +#: libraries/relation.lib.php:141 msgid "Quick steps to setup advanced features:" msgstr "Quick steps to setup advanced features:" -#: libraries/relation.lib.php:148 +#: libraries/relation.lib.php:143 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" "Create the needed tables with the script/create_tables.sql." -#: libraries/relation.lib.php:149 +#: libraries/relation.lib.php:144 msgid "Create a pma user and give access to these tables." msgstr "Create a pma user and give access to these tables." -#: libraries/relation.lib.php:150 +#: libraries/relation.lib.php:145 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." @@ -3428,11 +3492,11 @@ msgstr "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." -#: libraries/relation.lib.php:151 +#: libraries/relation.lib.php:146 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "Re-login to phpMyAdmin to load the updated configuration file." -#: libraries/relation.lib.php:1158 +#: libraries/relation.lib.php:1153 msgid "no description" msgstr "no description" @@ -3440,7 +3504,7 @@ msgstr "no description" msgid "Slave configuration" msgstr "Slave configuration" -#: libraries/replication_gui.lib.php:53 server_replication.php:346 +#: libraries/replication_gui.lib.php:53 server_replication.php:345 msgid "Change or reconfigure master server" msgstr "Change or reconfigure master server" @@ -3454,16 +3518,12 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:711 -#: server_privileges.php:714 server_privileges.php:721 -#: server_synchronize.php:1170 +#: libraries/replication_gui.lib.php:261 server_privileges.php:710 +#: server_privileges.php:713 server_privileges.php:720 +#: server_synchronize.php:1169 msgid "User name" msgstr "User name" -#: libraries/replication_gui.lib.php:69 server_synchronize.php:1162 -msgid "Port" -msgstr "Port" - #: libraries/replication_gui.lib.php:105 msgid "Master status" msgstr "Master status" @@ -3478,8 +3538,8 @@ msgid "Variable" msgstr "Variable" #: libraries/replication_gui.lib.php:117 server_status.php:737 -#: tbl_change.php:322 tbl_printview.php:368 tbl_select.php:137 -#: tbl_structure.php:728 +#: tbl_change.php:317 tbl_printview.php:367 tbl_select.php:136 +#: tbl_structure.php:726 msgid "Value" msgstr "Value" @@ -3495,38 +3555,38 @@ msgstr "" "Only slaves started with the --report-host=host_name option are visible in " "this list." -#: libraries/replication_gui.lib.php:242 server_replication.php:193 +#: libraries/replication_gui.lib.php:242 server_replication.php:192 msgid "Add slave replication user" msgstr "Add slave replication user" -#: libraries/replication_gui.lib.php:256 server_privileges.php:716 +#: libraries/replication_gui.lib.php:256 server_privileges.php:715 msgid "Any user" msgstr "Any user" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1920 server_privileges.php:1950 +#: libraries/replication_gui.lib.php:348 server_privileges.php:716 +#: server_privileges.php:783 server_privileges.php:807 +#: server_privileges.php:1924 server_privileges.php:1954 msgid "Use text field" msgstr "Use text field" -#: libraries/replication_gui.lib.php:304 server_privileges.php:764 +#: libraries/replication_gui.lib.php:304 server_privileges.php:763 msgid "Any host" msgstr "Any host" -#: libraries/replication_gui.lib.php:308 server_privileges.php:768 +#: libraries/replication_gui.lib.php:308 server_privileges.php:767 msgid "Local" msgstr "Local" -#: libraries/replication_gui.lib.php:314 server_privileges.php:773 +#: libraries/replication_gui.lib.php:314 server_privileges.php:772 msgid "This Host" msgstr "This Host" -#: libraries/replication_gui.lib.php:320 server_privileges.php:779 +#: libraries/replication_gui.lib.php:320 server_privileges.php:778 msgid "Use Host Table" msgstr "Use Host Table" -#: libraries/replication_gui.lib.php:333 server_privileges.php:792 +#: libraries/replication_gui.lib.php:333 server_privileges.php:791 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3554,8 +3614,8 @@ msgstr "Unknown language: %1$s." msgid "Servers" msgstr "Servers" -#: libraries/server_links.inc.php:52 server_engines.php:111 -#: server_engines.php:115 server_status.php:414 test/theme.php:104 +#: libraries/server_links.inc.php:52 server_engines.php:125 +#: server_engines.php:129 server_status.php:414 test/theme.php:104 msgid "Variables" msgstr "Variables" @@ -3576,12 +3636,12 @@ msgstr "Binary log" msgid "Processes" msgstr "Processes" -#: libraries/server_links.inc.php:91 server_synchronize.php:1091 -#: server_synchronize.php:1099 +#: libraries/server_links.inc.php:91 server_synchronize.php:1090 +#: server_synchronize.php:1098 msgid "Synchronize" msgstr "Synchronise" -#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1109 +#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1108 msgid "Source database" msgstr "Source database" @@ -3599,7 +3659,7 @@ msgstr "Remote server" msgid "Difference" msgstr "Difference" -#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1111 +#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1110 msgid "Target database" msgstr "Target database" @@ -3617,11 +3677,11 @@ msgstr "Run SQL query/queries on database %s" msgid "Columns" msgstr "Columns" -#: libraries/sql_query_form.lib.php:342 sql.php:664 sql.php:665 sql.php:682 +#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "Bookmark this SQL query" -#: libraries/sql_query_form.lib.php:349 sql.php:676 +#: libraries/sql_query_form.lib.php:349 sql.php:669 msgid "Let every user access this bookmark" msgstr "Let every user access this bookmark" @@ -3716,12 +3776,12 @@ 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/tbl_links.inc.php:106 libraries/tbl_links.inc.php:139 -#: libraries/tbl_links.inc.php:140 +#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 +#: libraries/tbl_links.inc.php:139 msgid "Table seems to be empty!" msgstr "Table seems to be empty!" -#: libraries/tbl_links.inc.php:148 +#: libraries/tbl_links.inc.php:147 #, php-format msgid "Tracking of %s.%s is activated." msgstr "Tracking of %s.%s is activated." @@ -3750,12 +3810,12 @@ msgstr "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" -#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1263 -#: pdf_schema.php:1284 tbl_printview.php:142 tbl_structure.php:179 +#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1262 +#: pdf_schema.php:1283 tbl_printview.php:141 tbl_structure.php:178 msgid "Attributes" msgstr "Attributes" -#: libraries/tbl_properties.inc.php:136 +#: libraries/tbl_properties.inc.php:135 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -3764,11 +3824,11 @@ msgstr "" "For a list of available transformation options and their MIME type " "transformations, click on %stransformation descriptions%s" -#: libraries/tbl_properties.inc.php:144 +#: libraries/tbl_properties.inc.php:143 msgid "Transformation options" msgstr "Transformation options" -#: libraries/tbl_properties.inc.php:145 +#: libraries/tbl_properties.inc.php:144 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
                            If you ever need to put a backslash (\"\\\") or a single " @@ -3780,16 +3840,16 @@ msgstr "" "quote (\"'\") amongst those values, precede it with a backslash (for example " "'\\\\xyz' or 'a\\'b')." -#: libraries/tbl_properties.inc.php:392 +#: libraries/tbl_properties.inc.php:391 msgctxt "for default" msgid "None" msgstr "None" -#: libraries/tbl_properties.inc.php:393 +#: libraries/tbl_properties.inc.php:392 msgid "As defined:" msgstr "As defined:" -#: libraries/tbl_properties.inc.php:579 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:578 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
                            Please ask the " @@ -3798,28 +3858,28 @@ msgstr "" "No description is available for this transformation.
                            Please ask the " "author what %s does." -#: libraries/tbl_properties.inc.php:725 server_engines.php:57 -#: tbl_operations.php:354 +#: libraries/tbl_properties.inc.php:724 server_engines.php:56 +#: tbl_operations.php:352 msgid "Storage Engine" msgstr "Storage Engine" -#: libraries/tbl_properties.inc.php:754 +#: libraries/tbl_properties.inc.php:753 msgid "PARTITION definition" msgstr "PARTITION definition" -#: libraries/tbl_properties.inc.php:775 pdf_pages.php:502 +#: libraries/tbl_properties.inc.php:774 pdf_pages.php:501 #: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214 -#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1124 tbl_indexes.php:247 -#: tbl_relation.php:565 +#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1022 tbl_indexes.php:246 +#: tbl_relation.php:563 msgid "Save" msgstr "Save" -#: libraries/tbl_properties.inc.php:779 tbl_structure.php:541 +#: libraries/tbl_properties.inc.php:778 tbl_structure.php:539 #, php-format msgid "Add %s column(s)" msgstr "Add %s column(s)" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:535 +#: libraries/tbl_properties.inc.php:782 tbl_structure.php:533 msgid "You have to add at least one column." msgstr "You have to add at least one column." @@ -3983,8 +4043,8 @@ msgstr "Interface" msgid "Custom color" msgstr "Custom colour" -#: main.php:162 pdf_pages.php:362 setup/lib/FormDisplay.tpl.php:216 -#: tbl_change.php:1173 +#: main.php:162 pdf_pages.php:361 setup/lib/FormDisplay.tpl.php:216 +#: tbl_change.php:1071 msgid "Reset" msgstr "Reset" @@ -3992,8 +4052,8 @@ msgstr "Reset" msgid "Protocol version" msgstr "Protocol version" -#: main.php:188 server_privileges.php:1381 server_privileges.php:1528 -#: server_privileges.php:1642 server_privileges.php:2060 +#: main.php:188 server_privileges.php:1385 server_privileges.php:1532 +#: server_privileges.php:1646 server_privileges.php:2064 #: server_processlist.php:53 msgid "User" msgstr "User" @@ -4085,7 +4145,16 @@ msgstr "" "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." -#: main.php:330 +#: main.php:314 +#, php-format +msgid "" +"The additional features for working with linked tables have been " +"deactivated. To find out why click %shere%s." +msgstr "" +"The additional features for working with linked tables have been " +"deactivated. To find out why click %shere%s." + +#: main.php:329 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " @@ -4095,7 +4164,7 @@ msgstr "" "functionality will be missing. For example navigation frame will not refresh " "automatically." -#: main.php:345 +#: main.php:344 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -4104,7 +4173,7 @@ msgstr "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behaviour." -#: main.php:357 +#: main.php:356 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -4117,62 +4186,62 @@ msgstr "" msgid "Reload navigation frame" msgstr "Reload navigation frame" -#: navigation.php:204 server_databases.php:370 server_synchronize.php:1190 +#: navigation.php:203 server_databases.php:368 server_synchronize.php:1189 msgid "No databases" msgstr "No databases" -#: navigation.php:298 +#: navigation.php:297 msgid "Filter" msgstr "Filter" -#: navigation.php:299 setup/frames/index.inc.php:218 +#: navigation.php:298 setup/frames/index.inc.php:218 #: setup/lib/messages.inc.php:41 msgid "Clear" msgstr "Clear" -#: navigation.php:330 navigation.php:331 +#: navigation.php:329 navigation.php:330 msgctxt "short form" msgid "Create table" msgstr "Create table" -#: navigation.php:333 navigation.php:495 +#: navigation.php:332 navigation.php:494 msgid "Please select a database" msgstr "Please select a database" -#: pdf_pages.php:40 pdf_pages.php:46 pdf_pages.php:52 pdf_pages.php:57 +#: pdf_pages.php:39 pdf_pages.php:45 pdf_pages.php:51 pdf_pages.php:56 #, php-format msgid "%s table not found or not set in %s" msgstr "%s table not found or not set in %s" -#: pdf_pages.php:265 +#: pdf_pages.php:264 msgid "Please choose a page to edit" msgstr "Please choose a page to edit" -#: pdf_pages.php:303 pmd_pdf.php:113 +#: pdf_pages.php:302 pmd_pdf.php:111 msgid "Create a page" msgstr "Create a page" -#: pdf_pages.php:309 +#: pdf_pages.php:308 msgid "Page name" msgstr "Page name" -#: pdf_pages.php:313 +#: pdf_pages.php:312 msgid "Automatic layout based on" msgstr "Automatic layout based on" -#: pdf_pages.php:315 +#: pdf_pages.php:314 msgid "Internal relations" msgstr "Internal relations" -#: pdf_pages.php:338 +#: pdf_pages.php:337 msgid "Select Tables" msgstr "Select Tables" -#: pdf_pages.php:361 +#: pdf_pages.php:360 msgid "Toggle scratchboard" msgstr "Toggle scratchboard" -#: pdf_pages.php:524 +#: pdf_pages.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -4180,35 +4249,35 @@ msgstr "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" -#: pdf_schema.php:635 +#: pdf_schema.php:634 #, php-format msgid "The %s table doesn't exist!" msgstr "The %s table doesn't exist!" -#: pdf_schema.php:671 +#: pdf_schema.php:670 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Please configure the coordinates for table %s" -#: pdf_schema.php:994 +#: pdf_schema.php:993 #, php-format msgid "Schema of the %s database - Page %s" msgstr "Schema of the %s database - Page %s" -#: pdf_schema.php:1012 +#: pdf_schema.php:1011 msgid "No tables" msgstr "No tables" -#: pdf_schema.php:1031 pdf_schema.php:1140 +#: pdf_schema.php:1030 pdf_schema.php:1139 msgid "Relational schema" msgstr "Relational schema" -#: pdf_schema.php:1115 +#: pdf_schema.php:1114 msgid "Table of contents" msgstr "Table of contents" -#: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:145 -#: tbl_structure.php:182 tbl_tracking.php:277 +#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 +#: tbl_structure.php:181 tbl_tracking.php:272 msgid "Extra" msgstr "Extra" @@ -4220,7 +4289,7 @@ msgstr "Show/Hide left menu" msgid "Save position" msgstr "Save position" -#: pmd_general.php:70 server_synchronize.php:428 server_synchronize.php:871 +#: pmd_general.php:70 server_synchronize.php:427 server_synchronize.php:870 msgid "Create table" msgstr "Create table" @@ -4294,31 +4363,31 @@ msgstr "" "column, click the \"Choose column to display\" icon, then click on the " "appropriate column name." -#: pmd_pdf.php:62 +#: pmd_pdf.php:60 msgid "Page has been created" msgstr "Page has been created" -#: pmd_pdf.php:64 +#: pmd_pdf.php:62 msgid "Page creation failed" msgstr "Page creation failed" -#: pmd_pdf.php:84 +#: pmd_pdf.php:82 msgid "Export/Import to scale" msgstr "Export/Import to scale" -#: pmd_pdf.php:88 +#: pmd_pdf.php:86 msgid "recommended" msgstr "recommended" -#: pmd_pdf.php:93 +#: pmd_pdf.php:91 msgid "to/from page" msgstr "to/from page" -#: querywindow.php:94 +#: querywindow.php:93 msgid "Import files" msgstr "Import files" -#: querywindow.php:105 +#: querywindow.php:104 msgid "All" msgstr "All" @@ -4364,63 +4433,63 @@ msgstr "Information" msgid "Character Sets and Collations" msgstr "Character Sets and Collations" -#: server_databases.php:51 +#: server_databases.php:49 msgid "No databases selected." msgstr "No databases selected." -#: server_databases.php:62 +#: server_databases.php:60 #, php-format msgid "%s databases have been dropped successfully." msgstr "%s databases have been dropped successfully." -#: server_databases.php:87 +#: server_databases.php:85 msgid "Databases statistics" msgstr "Databases statistics" -#: server_databases.php:116 server_status.php:370 +#: server_databases.php:114 server_status.php:370 #: setup/lib/messages.inc.php:114 msgid "Tables" msgstr "Tables" -#: server_databases.php:194 server_replication.php:180 -#: server_replication.php:208 +#: server_databases.php:192 server_replication.php:179 +#: server_replication.php:207 msgid "Master replication" msgstr "Master replication" -#: server_databases.php:196 server_replication.php:247 +#: server_databases.php:194 server_replication.php:246 msgid "Slave replication" msgstr "Slave replication" -#: server_databases.php:229 +#: server_databases.php:227 msgid "Jump to database" msgstr "Jump to database" -#: server_databases.php:266 +#: server_databases.php:264 msgid "Not replicated" msgstr "Not replicated" -#: server_databases.php:272 +#: server_databases.php:270 msgid "Replicated" msgstr "Replicated" -#: server_databases.php:288 +#: server_databases.php:286 #, php-format msgid "Check privileges for database "%s"." msgstr "Check privileges for database "%s"." -#: server_databases.php:292 server_databases.php:293 +#: server_databases.php:290 server_databases.php:291 msgid "Check Privileges" msgstr "Check Privileges" -#: server_databases.php:357 server_databases.php:358 +#: server_databases.php:355 server_databases.php:356 msgid "Enable Statistics" msgstr "Enable Statistics" -#: server_databases.php:361 server_databases.php:362 +#: server_databases.php:359 server_databases.php:360 msgid "Disable Statistics" msgstr "Disable Statistics" -#: server_databases.php:365 +#: server_databases.php:363 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -4428,120 +4497,120 @@ msgstr "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." -#: server_engines.php:48 +#: server_engines.php:47 msgid "Storage Engines" msgstr "Storage Engines" -#: server_export.php:20 +#: server_export.php:18 msgid "View dump (schema) of databases" msgstr "View dump (schema) of databases" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:23 server_privileges.php:265 msgid "Includes all privileges except GRANT." msgstr "Includes all privileges except GRANT." -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:24 server_privileges.php:191 +#: server_privileges.php:514 msgid "Allows altering the structure of existing tables." msgstr "Allows altering the structure of existing tables." -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:25 server_privileges.php:207 +#: server_privileges.php:520 msgid "Allows altering and dropping stored routines." msgstr "Allows altering and dropping stored routines." -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:26 server_privileges.php:183 +#: server_privileges.php:513 msgid "Allows creating new databases and tables." msgstr "Allows creating new databases and tables." -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:27 server_privileges.php:206 +#: server_privileges.php:519 msgid "Allows creating stored routines." msgstr "Allows creating stored routines." -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:513 msgid "Allows creating new tables." msgstr "Allows creating new tables." -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:29 server_privileges.php:194 +#: server_privileges.php:517 msgid "Allows creating temporary tables." msgstr "Allows creating temporary tables." -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:30 server_privileges.php:208 +#: server_privileges.php:553 msgid "Allows creating, dropping and renaming user accounts." msgstr "Allows creating, dropping and renaming user accounts." -#: server_privileges.php:32 server_privileges.php:199 -#: server_privileges.php:203 server_privileges.php:526 -#: server_privileges.php:530 +#: server_privileges.php:31 server_privileges.php:198 +#: server_privileges.php:202 server_privileges.php:525 +#: server_privileges.php:529 msgid "Allows creating new views." msgstr "Allows creating new views." -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:32 server_privileges.php:182 +#: server_privileges.php:505 msgid "Allows deleting data." msgstr "Allows deleting data." -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:33 server_privileges.php:184 +#: server_privileges.php:516 msgid "Allows dropping databases and tables." msgstr "Allows dropping databases and tables." -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:34 server_privileges.php:516 msgid "Allows dropping tables." msgstr "Allows dropping tables." -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:35 server_privileges.php:199 +#: server_privileges.php:533 msgid "Allows to set up events for the event scheduler" msgstr "Allows to set up events for the event scheduler" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:36 server_privileges.php:209 +#: server_privileges.php:521 msgid "Allows executing stored routines." msgstr "Allows executing stored routines." -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:37 server_privileges.php:188 +#: server_privileges.php:508 msgid "Allows importing data from and exporting data into files." msgstr "Allows importing data from and exporting data into files." -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:38 server_privileges.php:539 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Allows adding users and privileges without reloading the privilege tables." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:515 msgid "Allows creating and dropping indexes." msgstr "Allows creating and dropping indexes." -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:40 server_privileges.php:180 +#: server_privileges.php:441 server_privileges.php:503 msgid "Allows inserting and replacing data." msgstr "Allows inserting and replacing data." -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:41 server_privileges.php:195 +#: server_privileges.php:548 msgid "Allows locking tables for the current thread." msgstr "Allows locking tables for the current thread." -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:42 server_privileges.php:645 +#: server_privileges.php:647 msgid "Limits the number of new connections the user may open per hour." msgstr "Limits the number of new connections the user may open per hour." -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:43 server_privileges.php:633 +#: server_privileges.php:635 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Limits the number of queries the user may send to the server per hour." -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:44 server_privileges.php:639 +#: server_privileges.php:641 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -4549,58 +4618,58 @@ msgstr "" "Limits the number of commands that change any table or database the user may " "execute per hour." -#: server_privileges.php:46 server_privileges.php:652 -#: server_privileges.php:654 +#: server_privileges.php:45 server_privileges.php:651 +#: server_privileges.php:653 msgid "Limits the number of simultaneous connections the user may have." msgstr "Limits the number of simultaneous connections the user may have." -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:46 server_privileges.php:187 +#: server_privileges.php:543 msgid "Allows viewing processes of all users" msgstr "Allows viewing processes of all users" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:47 server_privileges.php:189 +#: server_privileges.php:447 server_privileges.php:549 msgid "Has no effect in this MySQL version." msgstr "Has no effect in this MySQL version." -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:48 server_privileges.php:185 +#: server_privileges.php:544 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Allows reloading server settings and flushing the server's caches." -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:197 +#: server_privileges.php:551 msgid "Allows the user to ask where the slaves / masters are." msgstr "Allows the user to ask where the slaves / masters are." -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:50 server_privileges.php:196 +#: server_privileges.php:552 msgid "Needed for the replication slaves." msgstr "Needed for the replication slaves." -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:51 server_privileges.php:179 +#: server_privileges.php:438 server_privileges.php:502 msgid "Allows reading data." msgstr "Allows reading data." -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:52 server_privileges.php:192 +#: server_privileges.php:546 msgid "Gives access to the complete list of databases." msgstr "Gives access to the complete list of databases." -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:53 server_privileges.php:203 +#: server_privileges.php:205 server_privileges.php:518 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Allows performing SHOW CREATE VIEW queries." -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:54 server_privileges.php:186 +#: server_privileges.php:545 msgid "Allows shutting down the server." msgstr "Allows shutting down the server." -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:55 server_privileges.php:193 +#: server_privileges.php:542 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -4610,153 +4679,153 @@ msgstr "" "required for most administrative operations like setting global variables or " "killing threads of other users." -#: server_privileges.php:57 server_privileges.php:201 -#: server_privileges.php:535 +#: server_privileges.php:56 server_privileges.php:200 +#: server_privileges.php:534 msgid "Allows creating and dropping triggers" msgstr "Allows creating and dropping triggers" -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:57 server_privileges.php:181 +#: server_privileges.php:444 server_privileges.php:504 msgid "Allows changing data." msgstr "Allows changing data." -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:58 server_privileges.php:259 msgid "No privileges." msgstr "No privileges." -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:301 server_privileges.php:302 msgctxt "None privileges" msgid "None" msgstr "None" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1710 server_privileges.php:1716 +#: server_privileges.php:430 server_privileges.php:565 +#: server_privileges.php:1714 server_privileges.php:1720 msgid "Table-specific privileges" msgstr "Table-specific privileges" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1532 +#: server_privileges.php:431 server_privileges.php:573 +#: server_privileges.php:1536 msgid " Note: MySQL privilege names are expressed in English " msgstr " Note: MySQL privilege names are expressed in English " -#: server_privileges.php:563 server_privileges.php:1531 +#: server_privileges.php:562 server_privileges.php:1535 msgid "Global privileges" msgstr "Global privileges" -#: server_privileges.php:565 server_privileges.php:1710 +#: server_privileges.php:564 server_privileges.php:1714 msgid "Database-specific privileges" msgstr "Database-specific privileges" -#: server_privileges.php:610 +#: server_privileges.php:609 msgid "Administration" msgstr "Administration" -#: server_privileges.php:630 +#: server_privileges.php:629 msgid "Resource limits" msgstr "Resource limits" -#: server_privileges.php:631 +#: server_privileges.php:630 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Note: Setting these options to 0 (zero) removes the limit." -#: server_privileges.php:708 +#: server_privileges.php:707 msgid "Login Information" msgstr "Login Information" -#: server_privileges.php:802 +#: server_privileges.php:801 msgid "Do not change the password" msgstr "Do not change the password" -#: server_privileges.php:835 server_privileges.php:2197 +#: server_privileges.php:834 server_privileges.php:2201 msgid "No user found." msgstr "No user found." -#: server_privileges.php:879 +#: server_privileges.php:878 #, php-format msgid "The user %s already exists!" msgstr "The user %s already exists!" -#: server_privileges.php:962 +#: server_privileges.php:961 msgid "You have added a new user." msgstr "You have added a new user." -#: server_privileges.php:1183 +#: server_privileges.php:1184 #, php-format msgid "You have updated the privileges for %s." msgstr "You have updated the privileges for %s." -#: server_privileges.php:1207 +#: server_privileges.php:1208 #, php-format msgid "You have revoked the privileges for %s" msgstr "You have revoked the privileges for %s" -#: server_privileges.php:1243 +#: server_privileges.php:1244 #, php-format msgid "The password for %s was changed successfully." msgstr "The password for %s was changed successfully." -#: server_privileges.php:1263 +#: server_privileges.php:1264 #, php-format msgid "Deleting %s" msgstr "Deleting %s" -#: server_privileges.php:1274 +#: server_privileges.php:1275 msgid "No users selected for deleting!" msgstr "No users selected for deleting!" -#: server_privileges.php:1277 +#: server_privileges.php:1278 msgid "Reloading the privileges" msgstr "Reloading the privileges" -#: server_privileges.php:1292 +#: server_privileges.php:1296 msgid "The selected users have been deleted successfully." msgstr "The selected users have been deleted successfully." -#: server_privileges.php:1327 +#: server_privileges.php:1331 msgid "The privileges were reloaded successfully." msgstr "The privileges were reloaded successfully." -#: server_privileges.php:1355 server_privileges.php:1641 +#: server_privileges.php:1359 server_privileges.php:1645 msgid "Edit Privileges" msgstr "Edit Privileges" -#: server_privileges.php:1364 +#: server_privileges.php:1368 msgid "Revoke" msgstr "Revoke" -#: server_privileges.php:1396 +#: server_privileges.php:1400 msgid "User overview" msgstr "User overview" -#: server_privileges.php:1533 server_privileges.php:1715 -#: server_privileges.php:2064 +#: server_privileges.php:1537 server_privileges.php:1719 +#: server_privileges.php:2068 msgid "Grant" msgstr "Grant" -#: server_privileges.php:1552 server_privileges.php:2154 +#: server_privileges.php:1556 server_privileges.php:2158 msgid "Any" msgstr "Any" -#: server_privileges.php:1601 server_privileges.php:1625 -#: server_privileges.php:2019 server_privileges.php:2208 +#: server_privileges.php:1605 server_privileges.php:1629 +#: server_privileges.php:2023 server_privileges.php:2212 msgid "Add a new User" msgstr "Add a new User" -#: server_privileges.php:1606 +#: server_privileges.php:1610 msgid "Remove selected users" msgstr "Remove selected users" -#: server_privileges.php:1609 +#: server_privileges.php:1613 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Revoke all active privileges from the users and delete them afterwards." -#: server_privileges.php:1610 server_privileges.php:1611 -#: server_privileges.php:1612 +#: server_privileges.php:1614 server_privileges.php:1615 +#: server_privileges.php:1616 msgid "Drop the databases that have the same names as the users." msgstr "Drop the databases that have the same names as the users." -#: server_privileges.php:1628 +#: server_privileges.php:1632 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4769,49 +4838,49 @@ msgstr "" "server uses, if they have been changed manually. In this case, you should " "%sreload the privileges%s before you continue." -#: server_privileges.php:1676 +#: server_privileges.php:1680 msgid "The selected user was not found in the privilege table." msgstr "The selected user was not found in the privilege table." -#: server_privileges.php:1716 +#: server_privileges.php:1720 msgid "Column-specific privileges" msgstr "Column-specific privileges" -#: server_privileges.php:1917 +#: server_privileges.php:1921 msgid "Add privileges on the following database" msgstr "Add privileges on the following database" -#: server_privileges.php:1935 +#: server_privileges.php:1939 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "Wildcards % and _ should be escaped with a \\ to use them literally" -#: server_privileges.php:1938 +#: server_privileges.php:1942 msgid "Add privileges on the following table" msgstr "Add privileges on the following table" -#: server_privileges.php:1995 +#: server_privileges.php:1999 msgid "Change Login Information / Copy User" msgstr "Change Login Information / Copy User" -#: server_privileges.php:1998 +#: server_privileges.php:2002 msgid "Create a new user with the same privileges and ..." msgstr "Create a new user with the same privileges and ..." -#: server_privileges.php:2000 +#: server_privileges.php:2004 msgid "... keep the old one." msgstr "... keep the old one." -#: server_privileges.php:2001 +#: server_privileges.php:2005 msgid " ... delete the old one from the user tables." msgstr " ... delete the old one from the user tables." -#: server_privileges.php:2002 +#: server_privileges.php:2006 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "" " ... revoke all active privileges from the old one and delete it afterwards." -#: server_privileges.php:2003 +#: server_privileges.php:2007 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -4819,42 +4888,42 @@ msgstr "" " ... delete the old one from the user tables and reload the privileges " "afterwards." -#: server_privileges.php:2025 +#: server_privileges.php:2029 msgid "Database for user" msgstr "Database for user" -#: server_privileges.php:2029 +#: server_privileges.php:2033 msgctxt "Create none database for user" msgid "None" msgstr "None" -#: server_privileges.php:2030 +#: server_privileges.php:2034 msgid "Create database with same name and grant all privileges" msgstr "Create database with same name and grant all privileges" -#: server_privileges.php:2031 +#: server_privileges.php:2035 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Grant all privileges on wildcard name (username\\_%)" -#: server_privileges.php:2034 +#: server_privileges.php:2038 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Grant all privileges on database "%s"" -#: server_privileges.php:2057 +#: server_privileges.php:2061 #, php-format msgid "Users having access to "%s"" msgstr "Users having access to "%s"" -#: server_privileges.php:2165 +#: server_privileges.php:2169 msgid "global" msgstr "global" -#: server_privileges.php:2167 +#: server_privileges.php:2171 msgid "database-specific" msgstr "database-specific" -#: server_privileges.php:2169 +#: server_privileges.php:2173 msgid "wildcard" msgstr "wildcard" @@ -4874,43 +4943,43 @@ msgstr "" msgid "ID" msgstr "ID" -#: server_replication.php:50 +#: server_replication.php:49 msgid "Unknown error" msgstr "Unknown error" -#: server_replication.php:57 +#: server_replication.php:56 #, php-format msgid "Unable to connect to master %s." msgstr "Unable to connect to master %s." -#: server_replication.php:64 +#: server_replication.php:63 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" "Unable to read master log position. Possible privilege problem on master." -#: server_replication.php:70 +#: server_replication.php:69 msgid "Unable to change master" msgstr "Unable to change master" -#: server_replication.php:73 +#: server_replication.php:72 #, php-format msgid "Master server changed succesfully to %s" msgstr "Master server changed succesfully to %s" -#: server_replication.php:181 +#: server_replication.php:180 msgid "This server is configured as master in a replication process." msgstr "This server is configured as master in a replication process." -#: server_replication.php:183 server_status.php:391 +#: server_replication.php:182 server_status.php:391 msgid "Show master status" msgstr "Show master status" -#: server_replication.php:186 +#: server_replication.php:185 msgid "Show connected slaves" msgstr "Show connected slaves" -#: server_replication.php:209 +#: server_replication.php:208 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -4919,11 +4988,11 @@ msgstr "" "This server is not configured as master in a replication process. Would you " "like to configure it?" -#: server_replication.php:216 +#: server_replication.php:215 msgid "Master configuration" msgstr "Master configuration" -#: server_replication.php:217 +#: server_replication.php:216 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -4937,19 +5006,19 @@ msgstr "" "ignore all databases by default and allow only certain databases to be " "replicated. Please select the mode:" -#: server_replication.php:220 +#: server_replication.php:219 msgid "Replicate all databases; Ignore:" msgstr "Replicate all databases; Ignore:" -#: server_replication.php:221 +#: server_replication.php:220 msgid "Ignore all databases; Replicate:" msgstr "Ignore all databases; Replicate:" -#: server_replication.php:224 +#: server_replication.php:223 msgid "Please select databases:" msgstr "Please select databases:" -#: server_replication.php:227 +#: server_replication.php:226 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -4957,7 +5026,7 @@ msgstr "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." -#: server_replication.php:229 +#: server_replication.php:228 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " @@ -4967,83 +5036,83 @@ msgstr "" "should see a message informing you, that this server is configured as " "master" -#: server_replication.php:292 +#: server_replication.php:291 msgid "Slave SQL Thread not running!" msgstr "Slave SQL Thread not running!" -#: server_replication.php:295 +#: server_replication.php:294 msgid "Slave IO Thread not running!" msgstr "Slave IO Thread not running!" -#: server_replication.php:304 +#: server_replication.php:303 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" "Server is configured as slave in a replication process. Would you like to:" -#: server_replication.php:307 +#: server_replication.php:306 msgid "See slave status table" msgstr "See slave status table" -#: server_replication.php:310 +#: server_replication.php:309 msgid "Synchronize databases with master" msgstr "Synchronise databases with master" -#: server_replication.php:321 +#: server_replication.php:320 msgid "Control slave:" msgstr "Control slave:" -#: server_replication.php:324 +#: server_replication.php:323 msgid "Full start" msgstr "Full start" -#: server_replication.php:324 +#: server_replication.php:323 msgid "Full stop" msgstr "Full stop" -#: server_replication.php:325 +#: server_replication.php:324 msgid "Reset slave" msgstr "Reset slave" -#: server_replication.php:326 +#: server_replication.php:325 #, php-format msgid "SQL Thread %s only" msgstr "SQL Thread %s only" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 msgid "Start" msgstr "Start" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 msgid "Stop" msgstr "Stop" -#: server_replication.php:327 +#: server_replication.php:326 #, php-format msgid "IO Thread %s only" msgstr "IO Thread %s only" -#: server_replication.php:331 +#: server_replication.php:330 msgid "Error management:" msgstr "Error management:" -#: server_replication.php:333 +#: server_replication.php:332 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "Skipping errors might lead into unsynchronised master and slave!" -#: server_replication.php:335 +#: server_replication.php:334 msgid "Skip current error" msgstr "Skip current error" -#: server_replication.php:336 +#: server_replication.php:335 msgid "Skip next" msgstr "Skip next" -#: server_replication.php:339 +#: server_replication.php:338 msgid "errors." msgstr "errors." -#: server_replication.php:354 +#: server_replication.php:353 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -5859,110 +5928,110 @@ msgstr "Query type" msgid "Replication status" msgstr "Replication status" -#: server_synchronize.php:93 +#: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "Could not connect to the source" -#: server_synchronize.php:96 +#: server_synchronize.php:95 msgid "Could not connect to the target" msgstr "Could not connect to the target" -#: server_synchronize.php:121 server_synchronize.php:124 tbl_create.php:77 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "'%s' database does not exist." -#: server_synchronize.php:264 +#: server_synchronize.php:263 msgid "Structure Synchronization" msgstr "Structure Synchronisation" -#: server_synchronize.php:271 +#: server_synchronize.php:270 msgid "Data Synchronization" msgstr "Data Synchronisation" -#: server_synchronize.php:399 server_synchronize.php:838 +#: server_synchronize.php:398 server_synchronize.php:837 msgid "not present" msgstr "not present" -#: server_synchronize.php:423 server_synchronize.php:866 +#: server_synchronize.php:422 server_synchronize.php:865 msgid "Structure Difference" msgstr "Structure Difference" -#: server_synchronize.php:424 server_synchronize.php:867 +#: server_synchronize.php:423 server_synchronize.php:866 msgid "Data Difference" msgstr "Data Difference" -#: server_synchronize.php:429 server_synchronize.php:872 +#: server_synchronize.php:428 server_synchronize.php:871 msgid "Add column(s)" msgstr "Add column(s)" -#: server_synchronize.php:430 server_synchronize.php:873 +#: server_synchronize.php:429 server_synchronize.php:872 msgid "Remove column(s)" msgstr "Remove column(s)" -#: server_synchronize.php:431 server_synchronize.php:874 +#: server_synchronize.php:430 server_synchronize.php:873 msgid "Alter column(s)" msgstr "Alter column(s)" -#: server_synchronize.php:432 server_synchronize.php:875 +#: server_synchronize.php:431 server_synchronize.php:874 msgid "Remove index(s)" msgstr "Remove index(s)" -#: server_synchronize.php:433 server_synchronize.php:876 +#: server_synchronize.php:432 server_synchronize.php:875 msgid "Apply index(s)" msgstr "Apply index(s)" -#: server_synchronize.php:434 server_synchronize.php:877 +#: server_synchronize.php:433 server_synchronize.php:876 msgid "Update row(s)" msgstr "Update row(s)" -#: server_synchronize.php:435 server_synchronize.php:878 +#: server_synchronize.php:434 server_synchronize.php:877 msgid "Insert row(s)" msgstr "Insert row(s)" -#: server_synchronize.php:445 server_synchronize.php:889 +#: server_synchronize.php:444 server_synchronize.php:888 msgid "Would you like to delete all the previous rows from target tables?" msgstr "Would you like to delete all the previous rows from target tables?" -#: server_synchronize.php:448 server_synchronize.php:893 +#: server_synchronize.php:447 server_synchronize.php:892 msgid "Apply Selected Changes" msgstr "Apply Selected Changes" -#: server_synchronize.php:450 server_synchronize.php:895 +#: server_synchronize.php:449 server_synchronize.php:894 msgid "Synchronize Databases" msgstr "Synchronise Databases" -#: server_synchronize.php:463 +#: server_synchronize.php:462 msgid "Selected target tables have been synchronized with source tables." msgstr "Selected target tables have been synchronised with source tables." -#: server_synchronize.php:941 +#: server_synchronize.php:940 msgid "Target database has been synchronized with source database" msgstr "Target database has been synchronised with source database" -#: server_synchronize.php:1002 +#: server_synchronize.php:1001 msgid "The following queries have been executed:" msgstr "The following queries have been executed:" -#: server_synchronize.php:1121 +#: server_synchronize.php:1120 msgid "Enter manually" msgstr "Enter manually" -#: server_synchronize.php:1122 +#: server_synchronize.php:1121 msgid "Current connection" msgstr "Current connection" -#: server_synchronize.php:1151 +#: server_synchronize.php:1150 #, php-format msgid "Configuration: %s" msgstr "Configuration: %s" -#: server_synchronize.php:1166 +#: server_synchronize.php:1165 msgid "Socket" msgstr "Socket" -#: server_synchronize.php:1212 +#: server_synchronize.php:1211 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -6548,10 +6617,15 @@ msgid "Signon login options" msgstr "Signon login options" #: setup/lib/messages.inc.php:128 +#, fuzzy +#| msgid "" +#| "Configure phpMyAdmin database to gain access to additional features, see " +#| "[a@../Documentation.html#linked-tables]linked-tables infrastructure[/a] " +#| "in documentation" msgid "" "Configure phpMyAdmin database to gain access to additional features, see " -"[a@../Documentation.html#linked-tables]linked-tables infrastructure[/a] in " -"documentation" +"[a@../Documentation.html#linked-tables]phpMyAdmin configuration storage[/a] " +"in documentation" msgstr "" "Configure phpMyAdmin database to gain access to additional features, see " "[a@../Documentation.html#linked-tables]linked-tables infrastructure[/a] in " @@ -7721,112 +7795,111 @@ msgstr "" msgid "ZIP" msgstr "ZIP" -#: sql.php:495 tbl_replace.php:385 +#: sql.php:494 tbl_replace.php:384 #, php-format msgid "Inserted row id: %1$d" msgstr "Inserted row id: %1$d" -#: sql.php:512 +#: sql.php:511 msgid "Showing as PHP code" msgstr "Showing as PHP code" -#: sql.php:515 tbl_replace.php:359 +#: sql.php:514 tbl_replace.php:358 msgid "Showing SQL query" msgstr "Showing SQL query" -#: sql.php:517 -#| msgid "Validate SQL" +#: sql.php:516 msgid "Validated SQL" msgstr "Validated SQL" -#: sql.php:638 +#: sql.php:631 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problems with indexes of table `%s`" -#: sql.php:670 +#: sql.php:663 msgid "Label" msgstr "Label" -#: tbl_addfield.php:188 tbl_alter.php:102 tbl_indexes.php:97 +#: tbl_addfield.php:185 tbl_alter.php:100 tbl_indexes.php:97 #, php-format msgid "Table %1$s has been altered successfully" msgstr "Table %1$s has been altered successfully" -#: tbl_change.php:250 tbl_select.php:26 tbl_select.php:27 tbl_select.php:30 -#: tbl_select.php:33 +#: tbl_change.php:245 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_select.php:32 msgid "Browse foreign values" msgstr "Browse foreign values" -#: tbl_change.php:280 tbl_change.php:318 +#: tbl_change.php:275 tbl_change.php:313 msgid "Function" msgstr "Function" -#: tbl_change.php:300 tbl_indexes.php:199 tbl_indexes.php:224 +#: tbl_change.php:295 tbl_indexes.php:198 tbl_indexes.php:223 msgid "Ignore" msgstr "Ignore" -#: tbl_change.php:725 +#: tbl_change.php:720 msgid " Because of its length,
                            this column might not be editable " msgstr " Because of its length,
                            this column might not be editable " -#: tbl_change.php:884 +#: tbl_change.php:835 msgid "Remove BLOB Repository Reference" msgstr "Remove BLOB Repository Reference" -#: tbl_change.php:890 +#: tbl_change.php:841 msgid "Binary - do not edit" msgstr "Binary - do not edit" -#: tbl_change.php:983 +#: tbl_change.php:889 msgid "Upload to BLOB repository" msgstr "Upload to BLOB repository" -#: tbl_change.php:1128 +#: tbl_change.php:1026 msgid "Insert as new row" msgstr "Insert as new row" -#: tbl_change.php:1129 +#: tbl_change.php:1027 msgid "Insert as new row and ignore errors" msgstr "Insert as new row and ignore errors" -#: tbl_change.php:1130 +#: tbl_change.php:1028 msgid "Show insert query" msgstr "Show insert query" -#: tbl_change.php:1145 +#: tbl_change.php:1043 msgid "Go back to previous page" msgstr "Go back to previous page" -#: tbl_change.php:1146 +#: tbl_change.php:1044 msgid "Insert another new row" msgstr "Insert another new row" -#: tbl_change.php:1150 +#: tbl_change.php:1048 msgid "Go back to this page" msgstr "Go back to this page" -#: tbl_change.php:1158 +#: tbl_change.php:1056 msgid "Edit next row" msgstr "Edit next row" -#: tbl_change.php:1169 +#: tbl_change.php:1067 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" -#: tbl_change.php:1207 +#: tbl_change.php:1105 #, php-format msgid "Restart insertion with %s rows" msgstr "Restart insertion with %s rows" -#: tbl_create.php:57 +#: tbl_create.php:55 #, php-format msgid "Table %s already exists!" msgstr "Table %s already exists!" -#: tbl_create.php:244 +#: tbl_create.php:241 #, php-format msgid "Table %1$s has been created." msgstr "Table %1$s has been created." @@ -7847,191 +7920,191 @@ msgstr "Can't rename index to PRIMARY!" msgid "No index parts defined!" msgstr "No index parts defined!" -#: tbl_indexes.php:159 +#: tbl_indexes.php:158 msgid "Create a new index" msgstr "Create a new index" -#: tbl_indexes.php:161 +#: tbl_indexes.php:160 msgid "Modify an index" msgstr "Modify an index" -#: tbl_indexes.php:167 +#: tbl_indexes.php:166 msgid "Index name:" msgstr "Index name:" -#: tbl_indexes.php:173 +#: tbl_indexes.php:172 msgid "Index type:" msgstr "Index type:" -#: tbl_indexes.php:183 +#: tbl_indexes.php:182 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" "(\"PRIMARY\" must be the name of and only of a primary key!)" -#: tbl_indexes.php:250 +#: tbl_indexes.php:249 #, php-format msgid "Add to index  %s column(s)" msgstr "Add to index  %s column(s)" -#: tbl_indexes.php:255 tbl_structure.php:588 tbl_structure.php:599 +#: tbl_indexes.php:254 tbl_structure.php:586 tbl_structure.php:597 msgid "Column count has to be larger than zero." msgstr "Column count has to be larger than zero." -#: tbl_move_copy.php:45 +#: tbl_move_copy.php:44 msgid "Can't move table to same one!" msgstr "Can't move table to same one!" -#: tbl_move_copy.php:47 +#: tbl_move_copy.php:46 msgid "Can't copy table to same one!" msgstr "Can't copy table to same one!" -#: tbl_move_copy.php:55 +#: tbl_move_copy.php:54 #, php-format msgid "Table %s has been moved to %s." msgstr "Table %s has been moved to %s." -#: tbl_move_copy.php:57 +#: tbl_move_copy.php:56 #, php-format msgid "Table %s has been copied to %s." msgstr "Table %s has been copied to %s." -#: tbl_move_copy.php:81 +#: tbl_move_copy.php:80 msgid "The table name is empty!" msgstr "The table name is empty!" -#: tbl_operations.php:248 +#: tbl_operations.php:246 msgid "Alter table order by" msgstr "Alter table order by" -#: tbl_operations.php:257 +#: tbl_operations.php:255 msgid "(singly)" msgstr "(singly)" -#: tbl_operations.php:277 +#: tbl_operations.php:275 msgid "Move table to (database.table):" msgstr "Move table to (database.table):" -#: tbl_operations.php:335 +#: tbl_operations.php:333 msgid "Table options" msgstr "Table options" -#: tbl_operations.php:339 +#: tbl_operations.php:337 msgid "Rename table to" msgstr "Rename table to" -#: tbl_operations.php:510 +#: tbl_operations.php:508 msgid "Copy table to (database.table):" msgstr "Copy table to (database.table):" -#: tbl_operations.php:557 +#: tbl_operations.php:555 msgid "Switch to copied table" msgstr "Switch to copied table" -#: tbl_operations.php:569 +#: tbl_operations.php:567 msgid "Table maintenance" msgstr "Table maintenance" -#: tbl_operations.php:590 +#: tbl_operations.php:588 msgid "Defragment table" msgstr "Defragment table" -#: tbl_operations.php:629 +#: tbl_operations.php:627 #, php-format msgid "Table %s has been flushed" msgstr "Table %s has been flushed" -#: tbl_operations.php:635 +#: tbl_operations.php:633 msgid "Flush the table (FLUSH)" msgstr "Flush the table (FLUSH)" -#: tbl_operations.php:650 +#: tbl_operations.php:648 msgid "Partition maintenance" msgstr "Partition maintenance" -#: tbl_operations.php:658 +#: tbl_operations.php:656 #, php-format msgid "Partition %s" msgstr "Partition %s" -#: tbl_operations.php:661 +#: tbl_operations.php:659 msgid "Analyze" msgstr "Analyse" -#: tbl_operations.php:662 +#: tbl_operations.php:660 msgid "Check" msgstr "Check" -#: tbl_operations.php:663 +#: tbl_operations.php:661 msgid "Optimize" msgstr "Optimise" -#: tbl_operations.php:664 +#: tbl_operations.php:662 msgid "Rebuild" msgstr "Rebuild" -#: tbl_operations.php:665 +#: tbl_operations.php:663 msgid "Repair" msgstr "Repair" -#: tbl_operations.php:677 +#: tbl_operations.php:675 msgid "Remove partitioning" msgstr "Remove partitioning" -#: tbl_operations.php:703 +#: tbl_operations.php:701 msgid "Check referential integrity:" msgstr "Check referential integrity:" -#: tbl_printview.php:73 +#: tbl_printview.php:72 msgid "Show tables" msgstr "Show tables" -#: tbl_printview.php:308 tbl_structure.php:655 +#: tbl_printview.php:307 tbl_structure.php:653 msgid "Space usage" msgstr "Space usage" -#: tbl_printview.php:312 tbl_structure.php:659 +#: tbl_printview.php:311 tbl_structure.php:657 msgid "Usage" msgstr "Usage" -#: tbl_printview.php:339 tbl_structure.php:686 +#: tbl_printview.php:338 tbl_structure.php:684 msgid "Effective" msgstr "Effective" -#: tbl_printview.php:364 tbl_structure.php:724 +#: tbl_printview.php:363 tbl_structure.php:722 msgid "Row Statistics" msgstr "Row Statistics" -#: tbl_printview.php:367 tbl_structure.php:727 +#: tbl_printview.php:366 tbl_structure.php:725 msgid "Statements" msgstr "Statements" -#: tbl_printview.php:378 tbl_structure.php:739 +#: tbl_printview.php:377 tbl_structure.php:737 msgid "static" msgstr "static" -#: tbl_printview.php:380 tbl_structure.php:741 +#: tbl_printview.php:379 tbl_structure.php:739 msgid "dynamic" msgstr "dynamic" -#: tbl_printview.php:402 tbl_structure.php:784 +#: tbl_printview.php:401 tbl_structure.php:782 msgid "Row length" msgstr "Row length" -#: tbl_printview.php:412 tbl_structure.php:792 +#: tbl_printview.php:411 tbl_structure.php:790 msgid " Row size " msgstr " Row size " -#: tbl_relation.php:278 +#: tbl_relation.php:276 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "Error creating foreign key on %1$s (check data types)" -#: tbl_relation.php:404 +#: tbl_relation.php:402 msgid "Internal relation" msgstr "Internal relation" -#: tbl_relation.php:406 +#: tbl_relation.php:404 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -8039,7 +8112,7 @@ msgstr "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." -#: tbl_relation.php:412 +#: tbl_relation.php:410 msgid "Foreign key constraint" msgstr "Foreign key constraint" @@ -8047,113 +8120,113 @@ msgstr "Foreign key constraint" msgid "No rows selected" msgstr "No rows selected" -#: tbl_select.php:130 +#: tbl_select.php:129 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Do a \"query by example\" (wildcard: \"%\")" -#: tbl_select.php:136 +#: tbl_select.php:135 msgid "Operator" msgstr "Operator" -#: tbl_select.php:267 +#: tbl_select.php:266 msgid "Select columns (at least one):" msgstr "Select columns (at least one):" -#: tbl_select.php:285 +#: tbl_select.php:284 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Add search conditions (body of the \"where\" clause):" -#: tbl_select.php:292 +#: tbl_select.php:291 msgid "Number of rows per page" msgstr "Number of rows per page" -#: tbl_select.php:298 +#: tbl_select.php:297 msgid "Display order:" msgstr "Display order:" -#: tbl_structure.php:160 +#: tbl_structure.php:159 msgid "Browse distinct values" msgstr "Browse distinct values" -#: tbl_structure.php:360 +#: tbl_structure.php:358 msgctxt "None for default" msgid "None" msgstr "None" -#: tbl_structure.php:373 +#: tbl_structure.php:371 #, php-format msgid "Column %s has been dropped" msgstr "Column %s has been dropped" -#: tbl_structure.php:384 +#: tbl_structure.php:382 #, php-format msgid "A primary key has been added on %s" msgstr "A primary key has been added on %s" -#: tbl_structure.php:399 tbl_structure.php:413 tbl_structure.php:427 +#: tbl_structure.php:397 tbl_structure.php:411 tbl_structure.php:425 #, php-format msgid "An index has been added on %s" msgstr "An index has been added on %s" -#: tbl_structure.php:505 tbl_structure.php:507 +#: tbl_structure.php:503 tbl_structure.php:505 msgid "Relation view" msgstr "Relation view" -#: tbl_structure.php:514 tbl_structure.php:516 +#: tbl_structure.php:512 tbl_structure.php:514 msgid "Propose table structure" msgstr "Propose table structure" -#: tbl_structure.php:539 +#: tbl_structure.php:537 msgid "Add column" msgstr "Add column" -#: tbl_structure.php:553 +#: tbl_structure.php:551 msgid "At End of Table" msgstr "At End of Table" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At Beginning of Table" msgstr "At Beginning of Table" -#: tbl_structure.php:555 +#: tbl_structure.php:553 #, php-format msgid "After %s" msgstr "After %s" -#: tbl_structure.php:593 +#: tbl_structure.php:591 #, php-format msgid "Create an index on  %s columns" msgstr "Create an index on  %s columns" -#: tbl_structure.php:755 +#: tbl_structure.php:753 msgid "partitioned" msgstr "partitioned" -#: tbl_tracking.php:113 +#: tbl_tracking.php:109 #, php-format msgid "Tracking report for table `%s`" msgstr "Tracking report for table `%s`" -#: tbl_tracking.php:186 +#: tbl_tracking.php:182 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "Version %s is created, tracking for %s.%s is activated." -#: tbl_tracking.php:194 +#: tbl_tracking.php:190 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "Tracking for %s.%s , version %s is deactivated." -#: tbl_tracking.php:202 +#: tbl_tracking.php:198 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "Tracking for %s.%s , version %s is activated." -#: tbl_tracking.php:212 +#: tbl_tracking.php:208 msgid "SQL statements executed." msgstr "SQL statements executed." -#: tbl_tracking.php:219 +#: tbl_tracking.php:215 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -8161,109 +8234,109 @@ msgstr "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." -#: tbl_tracking.php:220 +#: tbl_tracking.php:216 msgid "Comment out these two lines if you do not need them." msgstr "Comment out these two lines if you do not need them." -#: tbl_tracking.php:229 +#: tbl_tracking.php:225 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "SQL statements exported. Please copy the dump or execute it." -#: tbl_tracking.php:250 tbl_tracking.php:378 +#: tbl_tracking.php:245 tbl_tracking.php:373 msgid "Close" msgstr "Close" -#: tbl_tracking.php:261 +#: tbl_tracking.php:256 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Version %s snapshot (SQL code)" -#: tbl_tracking.php:380 +#: tbl_tracking.php:375 msgid "Tracking statements" msgstr "Tracking statements" -#: tbl_tracking.php:396 tbl_tracking.php:503 +#: tbl_tracking.php:391 tbl_tracking.php:498 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "Show %s with dates from %s to %s by user %s %s" -#: tbl_tracking.php:409 tbl_tracking.php:460 +#: tbl_tracking.php:404 tbl_tracking.php:455 msgid "Date" msgstr "Date" -#: tbl_tracking.php:410 tbl_tracking.php:461 +#: tbl_tracking.php:405 tbl_tracking.php:456 msgid "Username" msgstr "Username" -#: tbl_tracking.php:411 +#: tbl_tracking.php:406 msgid "Data definition statement" msgstr "Data definition statement" -#: tbl_tracking.php:462 +#: tbl_tracking.php:457 msgid "Data manipulation statement" msgstr "Data manipulation statement" -#: tbl_tracking.php:506 +#: tbl_tracking.php:501 msgid "SQL dump (file download)" msgstr "SQL dump (file download)" -#: tbl_tracking.php:507 +#: tbl_tracking.php:502 msgid "SQL dump" msgstr "SQL dump" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "This option will replace your table and contained data." msgstr "This option will replace your table and contained data." -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "SQL execution" msgstr "SQL execution" -#: tbl_tracking.php:520 +#: tbl_tracking.php:515 #, php-format msgid "Export as %s" msgstr "Export as %s" -#: tbl_tracking.php:560 +#: tbl_tracking.php:555 msgid "Show versions" msgstr "Show versions" -#: tbl_tracking.php:592 +#: tbl_tracking.php:587 msgid "Version" msgstr "Version" -#: tbl_tracking.php:639 +#: tbl_tracking.php:634 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "Deactivate tracking for %s.%s" -#: tbl_tracking.php:641 +#: tbl_tracking.php:636 msgid "Deactivate now" msgstr "Deactivate now" -#: tbl_tracking.php:652 +#: tbl_tracking.php:647 #, php-format msgid "Activate tracking for %s.%s" msgstr "Activate tracking for %s.%s" -#: tbl_tracking.php:654 +#: tbl_tracking.php:649 msgid "Activate now" msgstr "Activate now" -#: tbl_tracking.php:667 +#: tbl_tracking.php:662 #, php-format msgid "Create version %s of %s.%s" msgstr "Create version %s of %s.%s" -#: tbl_tracking.php:671 +#: tbl_tracking.php:666 msgid "Track these data definition statements:" msgstr "Track these data definition statements:" -#: tbl_tracking.php:679 +#: tbl_tracking.php:674 msgid "Track these data manipulation statements:" msgstr "Track these data manipulation statements:" -#: tbl_tracking.php:687 +#: tbl_tracking.php:682 msgid "Create version" msgstr "Create version" @@ -8311,10 +8384,34 @@ msgstr "The profile has been updated." msgid "VIEW name" msgstr "VIEW name" -#: view_operations.php:92 +#: view_operations.php:91 msgid "Rename view to" msgstr "Rename view to" +#~ msgid "BLOB Repository" +#~ msgstr "BLOB Repository" + +#~ msgctxt "BLOB repository" +#~ msgid "Enabled" +#~ msgstr "Enabled" + +#~ msgid "Disable" +#~ msgstr "Disable" + +#~ msgid "Damaged" +#~ msgstr "Damaged" + +#~ msgctxt "BLOB repository" +#~ msgid "Repair" +#~ msgstr "Repair" + +#~ msgctxt "BLOB repository" +#~ msgid "Disabled" +#~ msgstr "Disabled" + +#~ msgid "Enable" +#~ msgstr "Enable" + #~ msgid "" #~ "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " #~ "extension. Please check your PHP configuration." diff --git a/po/es.po b/po/es.po index 5b4de4fa4..093d82a92 100644 --- a/po/es.po +++ b/po/es.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-21 13:53+0200\n" +"POT-Creation-Date: 2010-07-26 17:18+0200\n" "PO-Revision-Date: 2010-03-12 11:23+0200\n" "Last-Translator: Michal \n" "Language-Team: spanish \n" @@ -14,19 +14,19 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.1\n" -#: browse_foreigners.php:37 browse_foreigners.php:58 -#: libraries/display_tbl.lib.php:416 server_privileges.php:1506 +#: browse_foreigners.php:36 browse_foreigners.php:57 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1510 msgid "Show all" msgstr "Mostrar todo" -#: browse_foreigners.php:81 libraries/common.lib.php:2313 -#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:393 -#: libraries/export/pdf.php:146 pdf_schema.php:282 pdf_schema.php:1122 -#: pdf_schema.php:1138 +#: browse_foreigners.php:80 libraries/common.lib.php:2318 +#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:392 +#: libraries/export/pdf.php:146 pdf_schema.php:281 pdf_schema.php:1121 +#: pdf_schema.php:1137 msgid "Page number:" msgstr "Número de página:" -#: browse_foreigners.php:131 +#: browse_foreigners.php:130 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -36,139 +36,153 @@ msgstr "" "principal o su navegador está bloqueando las actualizaciones en ventanas " "múltiples debido a sus parámetros de seguridad." -#: browse_foreigners.php:149 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2829 -#: libraries/common.lib.php:2836 libraries/db_links.inc.php:74 -#: libraries/tbl_links.inc.php:62 +#: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 +#: db_structure.php:89 db_structure.php:91 db_structure.php:102 +#: db_structure.php:104 libraries/common.lib.php:2834 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Buscar" -#: browse_foreigners.php:152 db_operations.php:384 db_operations.php:428 -#: db_operations.php:498 db_operations.php:608 db_search.php:344 -#: db_structure.php:566 js/messages.php:48 libraries/Config.class.php:1043 -#: libraries/Theme_Manager.class.php:310 +#: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 +#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 +#: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 -#: libraries/common.lib.php:1340 libraries/common.lib.php:2289 +#: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 -#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:275 -#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:531 -#: libraries/display_tbl.lib.php:613 libraries/replication_gui.lib.php:75 +#: libraries/display_export.lib.php:269 libraries/display_import.lib.php:275 +#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 +#: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 #: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:781 -#: main.php:127 navigation.php:231 pdf_pages.php:291 pdf_pages.php:327 -#: pdf_pages.php:529 pmd_pdf.php:115 server_binlog.php:128 -#: server_privileges.php:664 server_privileges.php:1616 -#: server_privileges.php:1963 server_privileges.php:2010 -#: server_privileges.php:2049 server_replication.php:234 -#: server_replication.php:317 server_replication.php:340 -#: server_synchronize.php:1208 tbl_change.php:328 tbl_change.php:1172 -#: tbl_change.php:1209 tbl_indexes.php:253 tbl_operations.php:264 -#: tbl_operations.php:301 tbl_operations.php:498 tbl_operations.php:560 -#: tbl_operations.php:680 tbl_select.php:324 tbl_structure.php:561 -#: tbl_structure.php:596 tbl_tracking.php:394 tbl_tracking.php:511 -#: view_create.php:181 view_operations.php:100 +#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 +#: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 +#: server_privileges.php:663 server_privileges.php:1620 +#: server_privileges.php:1967 server_privileges.php:2014 +#: server_privileges.php:2053 server_replication.php:233 +#: server_replication.php:316 server_replication.php:339 +#: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 +#: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 +#: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 +#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "Continuar" -#: browse_foreigners.php:167 browse_foreigners.php:171 -#: libraries/Index.class.php:441 tbl_tracking.php:319 +#: browse_foreigners.php:166 browse_foreigners.php:170 +#: libraries/Index.class.php:441 tbl_tracking.php:314 msgid "Keyname" msgstr "Nombre de la clave" -#: browse_foreigners.php:168 browse_foreigners.php:170 -#: server_collations.php:54 server_collations.php:66 server_engines.php:58 +#: browse_foreigners.php:167 browse_foreigners.php:169 +#: server_collations.php:54 server_collations.php:66 server_engines.php:57 #: server_status.php:738 msgid "Description" msgstr "Descripción" -#: browse_foreigners.php:246 browse_foreigners.php:255 -#: browse_foreigners.php:267 browse_foreigners.php:275 +#: browse_foreigners.php:245 browse_foreigners.php:254 +#: browse_foreigners.php:266 browse_foreigners.php:274 msgid "Use this value" msgstr "Use este valor" -#: db_create.php:45 +#: bs_disp_as_mime_type.php:29 bs_play_media.php:35 +msgid "No blob streaming server configured!" +msgstr "" + +#: bs_disp_as_mime_type.php:35 +#, fuzzy +#| msgid "Failed to write file to disk." +msgid "Failed to fetch headers" +msgstr "No fue posible grabar el archivo al disco." + +#: bs_disp_as_mime_type.php:41 +msgid "Failed to open remote URL" +msgstr "" + +#: db_create.php:44 #, php-format msgid "Database %1$s has been created." msgstr "La base de datos %1$s se creó." -#: db_datadict.php:48 db_operations.php:377 +#: db_datadict.php:48 db_operations.php:313 msgid "Database comment: " msgstr "Comentario de la base de datos: " -#: db_datadict.php:164 libraries/tbl_properties.inc.php:723 -#: pdf_schema.php:1235 tbl_operations.php:346 tbl_printview.php:128 +#: db_datadict.php:164 libraries/tbl_properties.inc.php:722 +#: pdf_schema.php:1234 tbl_operations.php:344 tbl_printview.php:127 msgid "Table comments" msgstr "Comentarios de la tabla" -#: db_datadict.php:173 db_qbe.php:173 libraries/Index.class.php:445 +#: db_datadict.php:173 db_qbe.php:170 libraries/Index.class.php:445 #: libraries/export/htmlword.php:243 libraries/export/latex.php:364 #: libraries/export/odt.php:293 libraries/export/texytext.php:233 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:274 -#: pdf_schema.php:1261 pdf_schema.php:1282 tbl_change.php:306 -#: tbl_indexes.php:188 tbl_printview.php:140 tbl_relation.php:401 -#: tbl_select.php:133 tbl_structure.php:176 tbl_tracking.php:272 -#: tbl_tracking.php:323 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 +#: pdf_schema.php:1260 pdf_schema.php:1281 tbl_change.php:301 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:132 tbl_structure.php:175 tbl_tracking.php:267 +#: tbl_tracking.php:318 #, fuzzy #| msgid "Column names" msgid "Column" msgstr "Nombre de las columnas" -#: db_datadict.php:174 db_printview.php:105 libraries/Index.class.php:442 +#: db_datadict.php:174 db_printview.php:104 libraries/Index.class.php:442 #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 #: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:244 #: libraries/export/latex.php:364 libraries/export/odt.php:296 #: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:99 -#: pdf_schema.php:1262 pdf_schema.php:1283 server_privileges.php:2062 -#: tbl_change.php:285 tbl_change.php:312 tbl_printview.php:141 -#: tbl_printview.php:311 tbl_select.php:134 tbl_structure.php:177 -#: tbl_structure.php:658 tbl_tracking.php:273 tbl_tracking.php:320 +#: pdf_schema.php:1261 pdf_schema.php:1282 server_privileges.php:2066 +#: tbl_change.php:280 tbl_change.php:307 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:133 tbl_structure.php:176 +#: tbl_structure.php:656 tbl_tracking.php:268 tbl_tracking.php:315 msgid "Type" msgstr "Tipo" #: db_datadict.php:176 libraries/Index.class.php:448 #: libraries/export/htmlword.php:245 libraries/export/latex.php:364 #: libraries/export/odt.php:299 libraries/export/texytext.php:235 -#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1264 -#: pdf_schema.php:1285 tbl_change.php:321 tbl_printview.php:143 -#: tbl_structure.php:180 tbl_tracking.php:275 tbl_tracking.php:326 +#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1263 +#: pdf_schema.php:1284 tbl_change.php:316 tbl_printview.php:142 +#: tbl_structure.php:179 tbl_tracking.php:270 tbl_tracking.php:321 msgid "Null" msgstr "Nulo" -#: db_datadict.php:177 db_structure.php:500 libraries/export/htmlword.php:246 +#: db_datadict.php:177 db_structure.php:486 libraries/export/htmlword.php:246 #: libraries/export/latex.php:364 libraries/export/odt.php:302 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:105 -#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 -#: tbl_structure.php:181 tbl_tracking.php:276 +#: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:143 +#: tbl_structure.php:180 tbl_tracking.php:271 msgid "Default" msgstr "Predeterminado" #: db_datadict.php:181 libraries/export/htmlword.php:248 #: libraries/export/latex.php:366 libraries/export/odt.php:306 -#: libraries/export/texytext.php:238 pdf_schema.php:1267 pdf_schema.php:1288 -#: tbl_printview.php:148 +#: libraries/export/texytext.php:238 pdf_schema.php:1266 pdf_schema.php:1287 +#: tbl_printview.php:147 msgid "Links to" msgstr "Enlaces a" -#: db_datadict.php:183 db_printview.php:111 libraries/export/htmlword.php:251 +#: db_datadict.php:183 db_printview.php:110 libraries/export/htmlword.php:251 #: libraries/export/latex.php:49 libraries/export/latex.php:369 #: libraries/export/odt.php:37 libraries/export/odt.php:311 #: libraries/export/sql.php:29 libraries/export/texytext.php:241 -#: libraries/tbl_properties.inc.php:129 pdf_schema.php:1278 -#: pdf_schema.php:1289 tbl_printview.php:150 +#: libraries/tbl_properties.inc.php:128 pdf_schema.php:1277 +#: pdf_schema.php:1288 tbl_printview.php:149 msgid "Comments" msgstr "Comentarios" #: db_datadict.php:266 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/export/htmlword.php:321 #: libraries/export/latex.php:434 libraries/export/odt.php:367 -#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:262 -#: pdf_schema.php:1343 server_privileges.php:1560 server_privileges.php:1571 -#: server_privileges.php:1881 server_privileges.php:1886 -#: server_privileges.php:2179 sql.php:131 sql.php:193 tbl_printview.php:227 -#: tbl_structure.php:349 tbl_tracking.php:336 tbl_tracking.php:341 +#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:261 +#: pdf_schema.php:1342 server_privileges.php:1564 server_privileges.php:1575 +#: server_privileges.php:1885 server_privileges.php:1890 +#: server_privileges.php:2183 sql.php:130 sql.php:192 tbl_printview.php:226 +#: tbl_structure.php:347 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "No" @@ -179,17 +193,17 @@ msgstr "No" #: libraries/mult_submits.inc.php:49 libraries/mult_submits.inc.php:54 #: libraries/mult_submits.inc.php:59 libraries/mult_submits.inc.php:91 #: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:105 -#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:261 -#: libraries/mult_submits.inc.php:272 pdf_schema.php:1343 -#: server_databases.php:63 server_privileges.php:1557 -#: server_privileges.php:1571 server_privileges.php:1881 -#: server_privileges.php:1884 server_privileges.php:2179 sql.php:192 -#: tbl_printview.php:227 tbl_structure.php:39 tbl_structure.php:349 -#: tbl_tracking.php:334 tbl_tracking.php:339 +#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:260 +#: libraries/mult_submits.inc.php:271 pdf_schema.php:1342 +#: server_databases.php:61 server_privileges.php:1561 +#: server_privileges.php:1575 server_privileges.php:1885 +#: server_privileges.php:1888 server_privileges.php:2183 sql.php:191 +#: tbl_printview.php:226 tbl_structure.php:38 tbl_structure.php:347 +#: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" msgstr "Sí" -#: db_datadict.php:321 db_printview.php:265 tbl_printview.php:496 +#: db_datadict.php:321 db_printview.php:264 tbl_printview.php:495 msgid "Print" msgstr "Imprimir" @@ -197,194 +211,154 @@ msgstr "Imprimir" msgid "View dump (schema) of database" msgstr "Ver el volcado esquema de la base de datos" -#: db_export.php:32 db_printview.php:95 db_qbe.php:101 db_structure.php:50 -#: db_tracking.php:34 export.php:352 navigation.php:326 +#: db_export.php:32 db_printview.php:94 db_qbe.php:98 db_structure.php:49 +#: db_tracking.php:30 export.php:350 navigation.php:325 msgid "No tables found in database." msgstr "No se han encontrado tablas en la base de datos." -#: db_export.php:42 db_search.php:326 server_export.php:26 +#: db_export.php:42 db_search.php:326 server_export.php:24 msgid "Select All" msgstr "Seleccionar todo" -#: db_export.php:44 db_search.php:329 server_export.php:28 +#: db_export.php:44 db_search.php:329 server_export.php:26 msgid "Unselect All" msgstr "Deseleccionar todo" -#: db_operations.php:37 tbl_create.php:49 +#: db_operations.php:33 tbl_create.php:47 msgid "The database name is empty!" msgstr "¡El nombre de la base de datos está vacío!" -#: db_operations.php:235 +#: db_operations.php:231 #, php-format msgid "Database %s has been renamed to %s" msgstr "La base de datos %s ha sido cambiada de nombre a %s" -#: db_operations.php:239 +#: db_operations.php:235 #, php-format msgid "Database %s has been copied to %s" msgstr "La base de datos %s ha sido copiada a %s" -#: db_operations.php:411 +#: db_operations.php:347 msgid "Rename database to" msgstr "Cambiar el nombre de la base de datos a" -#: db_operations.php:416 server_processlist.php:56 +#: db_operations.php:352 server_processlist.php:56 msgid "Command" msgstr "Comando" -#: db_operations.php:428 tbl_change.php:1141 +#: db_operations.php:364 tbl_change.php:1039 msgid "and then" msgstr "y luego" -#: db_operations.php:454 +#: db_operations.php:390 msgid "Copy database to" msgstr "Copiar la base de datos a" -#: db_operations.php:461 tbl_operations.php:527 tbl_tracking.php:387 +#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Únicamente la estructura " -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:389 +#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Estructura y datos" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:388 +#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Solamente datos" -#: db_operations.php:471 +#: db_operations.php:407 msgid "CREATE DATABASE before copying" msgstr "CREAR BASE DE DATOS antes de copiar" -#: db_operations.php:474 libraries/export/sql.php:51 +#: db_operations.php:410 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 -#: libraries/export/sql.php:81 tbl_operations.php:535 +#: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "Añada %s" -#: db_operations.php:478 libraries/export/sql.php:77 tbl_operations.php:298 -#: tbl_operations.php:537 +#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Añadir el valor AUTO_INCREMENT" -#: db_operations.php:482 tbl_operations.php:544 +#: db_operations.php:418 tbl_operations.php:542 msgid "Add constraints" msgstr "Añadir restricciones" -#: db_operations.php:495 +#: db_operations.php:431 msgid "Switch to copied database" msgstr "Seleccionar la base de datos copiada" -#: db_operations.php:536 -msgid "BLOB Repository" -msgstr "Repositorio BLOB" - -#: db_operations.php:539 db_tracking.php:75 libraries/common.lib.php:1357 -#: libraries/server_links.inc.php:48 server_processlist.php:58 -#: tbl_tracking.php:595 test/theme.php:100 -msgid "Status" -msgstr "Estado actual" - -#: db_operations.php:547 -#, fuzzy -#| msgid "Enabled" -msgctxt "BLOB repository" -msgid "Enabled" -msgstr "Habilitado" - -#: db_operations.php:551 -msgid "Disable" -msgstr "Deshabilite" - -#: db_operations.php:561 -msgid "Damaged" -msgstr "Dañado" - -#: db_operations.php:565 -#, fuzzy -#| msgid "Repair" -msgctxt "BLOB repository" -msgid "Repair" -msgstr "Repare" - -#: db_operations.php:573 -#, fuzzy -#| msgid "Disabled" -msgctxt "BLOB repository" -msgid "Disabled" -msgstr "Deshabilitado" - -#: db_operations.php:577 -msgid "Enable" -msgstr "Habilite" - -#: db_operations.php:601 libraries/Index.class.php:447 +#: db_operations.php:451 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 -#: server_collations.php:53 server_collations.php:65 server_databases.php:110 -#: tbl_operations.php:362 tbl_select.php:135 tbl_structure.php:178 -#: tbl_structure.php:766 tbl_tracking.php:274 tbl_tracking.php:325 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 +#: server_collations.php:53 server_collations.php:65 server_databases.php:108 +#: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:177 +#: tbl_structure.php:764 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "Cotejamiento" -#: db_operations.php:614 main.php:315 pdf_schema.php:33 -#, php-format +#: db_operations.php:464 pdf_schema.php:32 +#, fuzzy, php-format +#| msgid "" +#| "The additional features for working with linked tables have been " +#| "deactivated. To find out why click %shere%s." msgid "" -"The additional features for working with linked tables have been " -"deactivated. To find out why click %shere%s." +"The phpMyAdmin configuration storage has been deactivated. To find out why " +"click %shere%s." msgstr "" "Las opciones adicionales para trabajar con tablas vinculadas fueron " "desactivadas. Para saber porqué, dé clic %saquí%s." -#: db_operations.php:647 +#: db_operations.php:497 msgid "Edit PDF Pages" msgstr "Editar las páginas PDF" -#: db_printview.php:103 db_tracking.php:71 db_tracking.php:156 +#: db_printview.php:102 db_tracking.php:67 db_tracking.php:152 #: libraries/db_structure.lib.php:37 libraries/export/xml.php:327 -#: libraries/header.inc.php:125 pdf_pages.php:423 server_privileges.php:1657 -#: server_privileges.php:1713 server_privileges.php:1977 -#: server_synchronize.php:422 server_synchronize.php:865 tbl_tracking.php:591 +#: libraries/header.inc.php:125 pdf_pages.php:422 server_privileges.php:1661 +#: server_privileges.php:1717 server_privileges.php:1981 +#: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "Tabla" -#: db_printview.php:104 libraries/db_structure.lib.php:47 +#: db_printview.php:103 libraries/db_structure.lib.php:47 #: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 -#: navigation.php:629 navigation.php:651 server_databases.php:121 -#: tbl_printview.php:392 tbl_structure.php:364 tbl_structure.php:776 +#: navigation.php:628 navigation.php:650 server_databases.php:119 +#: tbl_printview.php:391 tbl_structure.php:362 tbl_structure.php:774 msgid "Rows" msgstr "Filas" -#: db_printview.php:108 libraries/db_structure.lib.php:58 tbl_indexes.php:189 +#: db_printview.php:107 libraries/db_structure.lib.php:58 tbl_indexes.php:188 msgid "Size" msgstr "Tamaño" -#: db_printview.php:161 db_structure.php:456 libraries/export/sql.php:556 +#: db_printview.php:160 db_structure.php:442 libraries/export/sql.php:556 #: libraries/export/sql.php:896 msgid "in use" msgstr "en uso" -#: db_printview.php:186 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:511 pdf_schema.php:1240 tbl_printview.php:432 -#: tbl_structure.php:808 +#: db_printview.php:185 libraries/db_info.inc.php:86 +#: libraries/export/sql.php:511 pdf_schema.php:1239 tbl_printview.php:431 +#: tbl_structure.php:806 msgid "Creation" msgstr "Creación" -#: db_printview.php:195 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:516 pdf_schema.php:1245 tbl_printview.php:442 -#: tbl_structure.php:816 +#: db_printview.php:194 libraries/db_info.inc.php:91 +#: libraries/export/sql.php:516 pdf_schema.php:1244 tbl_printview.php:441 +#: tbl_structure.php:814 msgid "Last update" msgstr "Última actualización" -#: db_printview.php:204 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:521 pdf_schema.php:1250 tbl_printview.php:452 -#: tbl_structure.php:824 +#: db_printview.php:203 libraries/db_info.inc.php:96 +#: libraries/export/sql.php:521 pdf_schema.php:1249 tbl_printview.php:451 +#: tbl_structure.php:822 msgid "Last check" msgstr "Última revisión" -#: db_printview.php:221 db_structure.php:479 +#: db_printview.php:220 db_structure.php:465 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -392,94 +366,94 @@ msgid_plural "%s tables" msgstr[0] "%s tabla(s)" msgstr[1] "%s tabla(s)" -#: db_qbe.php:28 import.php:453 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1980 libraries/sql_query_form.lib.php:138 -#: tbl_operations.php:212 tbl_relation.php:291 tbl_row_action.php:130 -#: view_operations.php:61 +#: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 +#: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "Su consulta se ejecutó con éxito" -#: db_qbe.php:41 +#: db_qbe.php:38 msgid "You have to choose at least one column to display" msgstr "Debe elegir al menos una columna para mostrar" -#: db_qbe.php:199 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:865 +#: db_qbe.php:196 libraries/db_structure.lib.php:95 +#: libraries/display_tbl.lib.php:864 msgid "Sort" msgstr "Ordenar" -#: db_qbe.php:208 db_qbe.php:242 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:522 libraries/display_tbl.lib.php:827 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:259 -#: tbl_select.php:311 +#: db_qbe.php:205 db_qbe.php:239 libraries/db_structure.lib.php:102 +#: libraries/display_tbl.lib.php:521 libraries/display_tbl.lib.php:826 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:257 +#: tbl_select.php:310 msgid "Ascending" msgstr "Ascendente" -#: db_qbe.php:209 db_qbe.php:250 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:527 libraries/display_tbl.lib.php:824 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:260 -#: tbl_select.php:312 +#: db_qbe.php:206 db_qbe.php:247 libraries/db_structure.lib.php:110 +#: libraries/display_tbl.lib.php:526 libraries/display_tbl.lib.php:823 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:258 +#: tbl_select.php:311 msgid "Descending" msgstr "Descendente" -#: db_qbe.php:263 db_tracking.php:77 libraries/display_tbl.lib.php:307 -#: tbl_change.php:275 tbl_tracking.php:596 +#: db_qbe.php:260 db_tracking.php:73 libraries/display_tbl.lib.php:306 +#: tbl_change.php:270 tbl_tracking.php:591 msgid "Show" msgstr "Mostrar" -#: db_qbe.php:299 +#: db_qbe.php:296 msgid "Criteria" msgstr "Criterio" -#: db_qbe.php:352 db_qbe.php:434 db_qbe.php:526 db_qbe.php:557 +#: db_qbe.php:349 db_qbe.php:431 db_qbe.php:523 db_qbe.php:554 msgid "Ins" msgstr "Insertar" -#: db_qbe.php:356 db_qbe.php:438 db_qbe.php:523 db_qbe.php:554 +#: db_qbe.php:353 db_qbe.php:435 db_qbe.php:520 db_qbe.php:551 msgid "And" msgstr "y luego" -#: db_qbe.php:365 db_qbe.php:446 db_qbe.php:528 db_qbe.php:559 +#: db_qbe.php:362 db_qbe.php:443 db_qbe.php:525 db_qbe.php:556 msgid "Del" msgstr "Borrar" -#: db_qbe.php:369 db_qbe.php:450 db_qbe.php:521 db_qbe.php:552 -#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:778 -#: server_privileges.php:297 tbl_change.php:1027 tbl_indexes.php:249 -#: tbl_select.php:285 +#: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 +#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:777 +#: server_privileges.php:296 tbl_change.php:925 tbl_indexes.php:248 +#: tbl_select.php:284 msgid "Or" msgstr "O" -#: db_qbe.php:506 +#: db_qbe.php:503 msgid "Modify" msgstr "Modificar" -#: db_qbe.php:583 +#: db_qbe.php:580 #, fuzzy #| msgid "Add/Delete Criteria Row" msgid "Add/Delete criteria rows" msgstr "Añadir/borrar fila de criterio" -#: db_qbe.php:595 +#: db_qbe.php:592 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Add/Delete columns" msgstr "Añadir/borrar columna de criterio" -#: db_qbe.php:608 db_qbe.php:633 +#: db_qbe.php:605 db_qbe.php:630 msgid "Update Query" msgstr "Modificar la consulta" -#: db_qbe.php:616 +#: db_qbe.php:613 msgid "Use Tables" msgstr "Usar tablas" -#: db_qbe.php:639 +#: db_qbe.php:636 #, php-format msgid "SQL query on database %s:" msgstr "Consulta a la base de datos %s:" -#: db_qbe.php:933 libraries/common.lib.php:1222 +#: db_qbe.php:930 libraries/common.lib.php:1215 msgid "Submit Query" msgstr "Ejecutar la consulta" @@ -519,17 +493,17 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s resultado(s) en la tabla %s" msgstr[1] "%s resultado(s) en la tabla %s" -#: db_search.php:249 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2831 -#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:49 -#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:466 +#: db_search.php:249 db_structure.php:75 db_structure.php:76 +#: db_structure.php:88 db_structure.php:90 db_structure.php:101 +#: db_structure.php:103 libraries/common.lib.php:2836 +#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 +#: tbl_structure.php:35 tbl_structure.php:47 tbl_structure.php:464 msgid "Browse" msgstr "Examinar" -#: db_search.php:254 libraries/display_tbl.lib.php:1164 -#: libraries/display_tbl.lib.php:2055 libraries/sql_query_form.lib.php:453 -#: pdf_pages.php:285 pdf_pages.php:424 pdf_pages.php:460 pdf_pages.php:488 +#: db_search.php:254 libraries/display_tbl.lib.php:1163 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 msgid "Delete" @@ -569,66 +543,66 @@ msgstr "En la(s) tabla(s):" msgid "Inside column:" msgstr "Dentro del campo:" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2830 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:75 +#: db_structure.php:79 db_structure.php:80 db_structure.php:92 +#: db_structure.php:93 db_structure.php:105 db_structure.php:106 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 +#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Insertar" -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2827 libraries/common.lib.php:2834 -#: libraries/db_links.inc.php:62 libraries/export/htmlword.php:22 +#: db_structure.php:81 db_structure.php:94 db_structure.php:107 +#: libraries/common.lib.php:2832 libraries/common.lib.php:2839 +#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 -#: libraries/tbl_links.inc.php:55 pmd_general.php:133 -#: server_privileges.php:593 server_replication.php:314 tbl_tracking.php:268 +#: libraries/tbl_links.inc.php:54 pmd_general.php:133 +#: server_privileges.php:592 server_replication.php:313 tbl_tracking.php:263 msgid "Structure" msgstr "Estructura" -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:544 db_structure.php:545 db_tracking.php:90 -#: libraries/Index.class.php:482 libraries/common.lib.php:1659 -#: libraries/db_links.inc.php:99 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:126 -#: server_databases.php:351 tbl_structure.php:26 tbl_structure.php:150 -#: tbl_structure.php:151 tbl_structure.php:470 +#: db_structure.php:82 db_structure.php:83 db_structure.php:95 +#: db_structure.php:96 db_structure.php:108 db_structure.php:109 +#: db_structure.php:530 db_structure.php:531 db_tracking.php:86 +#: libraries/Index.class.php:482 libraries/common.lib.php:1663 +#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 +#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 +#: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" msgstr "Eliminar" -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:542 db_structure.php:543 libraries/common.lib.php:1658 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:104 +#: db_structure.php:84 db_structure.php:85 db_structure.php:97 +#: db_structure.php:98 db_structure.php:110 db_structure.php:111 +#: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 +#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 msgid "Empty" msgstr "Vaciar" -#: db_structure.php:315 libraries/tbl_links.inc.php:99 +#: db_structure.php:301 libraries/tbl_links.inc.php:98 #, php-format msgid "Table %s has been emptied" msgstr "Se ha vaciado la tabla %s" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "View %s has been dropped" msgstr "Se descartó el modo de visualización %s" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "Table %s has been dropped" msgstr "Se ha eliminado la tabla %s" -#: db_structure.php:332 +#: db_structure.php:318 msgid "Tracking is active." msgstr "" -#: db_structure.php:334 +#: db_structure.php:320 msgid "Tracking is not active." msgstr "" -#: db_structure.php:419 libraries/display_tbl.lib.php:1943 +#: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -637,168 +611,174 @@ msgstr "" "Esta vista tiene al menos este número de filas. Por favor, refiérase a la " "%sdocumentation%s." -#: db_structure.php:433 db_structure.php:447 libraries/header.inc.php:125 -#: libraries/tbl_info.inc.php:65 tbl_structure.php:184 test/theme.php:73 +#: db_structure.php:419 db_structure.php:433 libraries/header.inc.php:125 +#: libraries/tbl_info.inc.php:60 tbl_structure.php:183 test/theme.php:73 msgid "View" msgstr "Visualizar" -#: db_structure.php:484 libraries/db_structure.lib.php:40 -#: libraries/server_links.inc.php:69 server_replication.php:32 -#: server_replication.php:163 server_status.php:368 +#: db_structure.php:470 libraries/db_structure.lib.php:40 +#: libraries/server_links.inc.php:69 server_replication.php:31 +#: server_replication.php:162 server_status.php:368 msgid "Replication" msgstr "Replicación" -#: db_structure.php:488 +#: db_structure.php:474 msgid "Sum" msgstr "Número de filas" -#: db_structure.php:495 libraries/StorageEngine.class.php:349 +#: db_structure.php:481 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" "%s es el motor de almacenamiento predeterminado en este servidor MySQL." -#: db_structure.php:523 db_structure.php:540 db_structure.php:541 -#: libraries/display_tbl.lib.php:2080 libraries/display_tbl.lib.php:2085 -#: libraries/mult_submits.inc.php:15 server_databases.php:345 -#: server_databases.php:350 server_privileges.php:1588 tbl_structure.php:454 -#: tbl_structure.php:463 +#: db_structure.php:509 db_structure.php:526 db_structure.php:527 +#: libraries/display_tbl.lib.php:2039 libraries/display_tbl.lib.php:2044 +#: libraries/mult_submits.inc.php:15 server_databases.php:343 +#: server_databases.php:348 server_privileges.php:1592 tbl_structure.php:452 +#: tbl_structure.php:461 msgid "With selected:" msgstr "Para los elementos que están marcados:" -#: db_structure.php:526 libraries/display_tbl.lib.php:2075 -#: server_databases.php:347 server_privileges.php:569 -#: server_privileges.php:1591 tbl_structure.php:457 +#: db_structure.php:512 libraries/display_tbl.lib.php:2034 +#: server_databases.php:345 server_privileges.php:568 +#: server_privileges.php:1595 tbl_structure.php:455 msgid "Check All" msgstr "Marcar todos/as" -#: db_structure.php:530 libraries/display_tbl.lib.php:2076 -#: libraries/replication_gui.lib.php:35 server_databases.php:349 -#: server_privileges.php:572 server_privileges.php:1595 tbl_structure.php:461 +#: db_structure.php:516 libraries/display_tbl.lib.php:2035 +#: libraries/replication_gui.lib.php:35 server_databases.php:347 +#: server_privileges.php:571 server_privileges.php:1599 tbl_structure.php:459 msgid "Uncheck All" msgstr "Desmarcar todos" -#: db_structure.php:535 +#: db_structure.php:521 msgid "Check tables having overhead" msgstr "Marcar las tablas con residuo a depurar" -#: db_structure.php:546 db_structure.php:547 db_structure.php:598 -#: libraries/display_tbl.lib.php:2179 libraries/mult_submits.inc.php:27 -#: tbl_structure.php:491 tbl_structure.php:493 +#: db_structure.php:532 db_structure.php:533 db_structure.php:584 +#: libraries/display_tbl.lib.php:2138 libraries/mult_submits.inc.php:27 +#: tbl_structure.php:489 tbl_structure.php:491 msgid "Print view" msgstr "Vista de impresión" -#: db_structure.php:548 db_structure.php:549 libraries/mult_submits.inc.php:41 -#: tbl_operations.php:580 +#: db_structure.php:534 db_structure.php:535 libraries/mult_submits.inc.php:41 +#: tbl_operations.php:578 msgid "Check table" msgstr "Revisar la tabla" -#: db_structure.php:550 db_structure.php:551 libraries/mult_submits.inc.php:46 -#: tbl_operations.php:620 tbl_structure.php:708 tbl_structure.php:710 +#: db_structure.php:536 db_structure.php:537 libraries/mult_submits.inc.php:46 +#: tbl_operations.php:618 tbl_structure.php:706 tbl_structure.php:708 msgid "Optimize table" msgstr "Optimizar la tabla" -#: db_structure.php:552 db_structure.php:553 libraries/mult_submits.inc.php:51 -#: tbl_operations.php:610 +#: db_structure.php:538 db_structure.php:539 libraries/mult_submits.inc.php:51 +#: tbl_operations.php:608 msgid "Repair table" msgstr "Reparar la tabla" -#: db_structure.php:554 db_structure.php:555 libraries/mult_submits.inc.php:56 -#: tbl_operations.php:600 +#: db_structure.php:540 db_structure.php:541 libraries/mult_submits.inc.php:56 +#: tbl_operations.php:598 msgid "Analyze table" msgstr "Analizar la tabla" -#: db_structure.php:556 db_structure.php:557 libraries/db_links.inc.php:70 -#: libraries/display_export.lib.php:82 libraries/display_tbl.lib.php:2093 -#: libraries/display_tbl.lib.php:2224 libraries/mult_submits.inc.php:61 -#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:81 -#: pmd_pdf.php:83 pmd_pdf.php:108 server_privileges.php:1372 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 +#: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 +#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 +#: pmd_pdf.php:81 pmd_pdf.php:106 server_privileges.php:1376 #: setup/frames/menu.inc.php:22 tbl_row_action.php:58 msgid "Export" msgstr "Exportar" -#: db_structure.php:605 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:591 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "Diccionario de datos" -#: db_tracking.php:65 +#: db_tracking.php:61 #, fuzzy msgid "Tracked tables" msgstr "Saltarse las tablas bloqueadas" -#: db_tracking.php:70 libraries/export/htmlword.php:85 +#: db_tracking.php:66 libraries/export/htmlword.php:85 #: libraries/export/latex.php:152 libraries/export/odt.php:112 #: libraries/export/sql.php:339 libraries/export/texytext.php:84 #: libraries/export/xml.php:254 libraries/header.inc.php:105 -#: libraries/header_printview.inc.php:57 server_databases.php:168 -#: server_privileges.php:1652 server_privileges.php:1713 -#: server_privileges.php:1971 server_processlist.php:55 -#: server_synchronize.php:1178 server_synchronize.php:1182 -#: tbl_tracking.php:590 test/theme.php:64 +#: libraries/header_printview.inc.php:57 server_databases.php:166 +#: server_privileges.php:1656 server_privileges.php:1717 +#: server_privileges.php:1975 server_processlist.php:55 +#: server_synchronize.php:1177 server_synchronize.php:1181 +#: tbl_tracking.php:585 test/theme.php:64 msgid "Database" msgstr "Base de datos" -#: db_tracking.php:72 +#: db_tracking.php:68 #, fuzzy msgid "Last version" msgstr "Crear relación" -#: db_tracking.php:73 tbl_tracking.php:593 +#: db_tracking.php:69 tbl_tracking.php:588 #, fuzzy msgid "Created" msgstr "Crear" -#: db_tracking.php:74 tbl_tracking.php:594 +#: db_tracking.php:70 tbl_tracking.php:589 msgid "Updated" msgstr "" -#: db_tracking.php:76 libraries/Index.class.php:439 -#: libraries/db_structure.lib.php:44 server_databases.php:202 -#: server_privileges.php:1534 server_privileges.php:1717 -#: server_privileges.php:2065 tbl_structure.php:186 +#: db_tracking.php:71 libraries/common.lib.php:1361 +#: libraries/server_links.inc.php:48 server_processlist.php:58 +#: tbl_tracking.php:590 test/theme.php:100 +msgid "Status" +msgstr "Estado actual" + +#: db_tracking.php:72 libraries/Index.class.php:439 +#: libraries/db_structure.lib.php:44 server_databases.php:200 +#: server_privileges.php:1538 server_privileges.php:1721 +#: server_privileges.php:2069 tbl_structure.php:185 msgid "Action" msgstr "Acción" -#: db_tracking.php:87 db_tracking.php:119 +#: db_tracking.php:83 db_tracking.php:115 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:105 tbl_tracking.php:547 tbl_tracking.php:605 -#: tbl_tracking.php:612 +#: db_tracking.php:101 tbl_tracking.php:542 tbl_tracking.php:600 +#: tbl_tracking.php:607 msgid "active" msgstr "" -#: db_tracking.php:107 tbl_tracking.php:549 tbl_tracking.php:607 -#: tbl_tracking.php:609 +#: db_tracking.php:103 tbl_tracking.php:544 tbl_tracking.php:602 +#: tbl_tracking.php:604 msgid "not active" msgstr "" -#: db_tracking.php:120 +#: db_tracking.php:116 #, fuzzy msgid "Versions" msgstr "Persa" -#: db_tracking.php:121 tbl_tracking.php:378 tbl_tracking.php:623 +#: db_tracking.php:117 tbl_tracking.php:373 tbl_tracking.php:618 msgid "Tracking report" msgstr "" -#: db_tracking.php:122 tbl_tracking.php:250 tbl_tracking.php:623 +#: db_tracking.php:118 tbl_tracking.php:245 tbl_tracking.php:618 #, fuzzy msgid "Structure snapshot" msgstr "Únicamente la estructura " -#: db_tracking.php:151 +#: db_tracking.php:147 #, fuzzy msgid "Untracked tables" msgstr "Saltarse las tablas bloqueadas" -#: db_tracking.php:171 db_tracking.php:173 tbl_structure.php:527 -#: tbl_structure.php:529 +#: db_tracking.php:167 db_tracking.php:169 tbl_structure.php:525 +#: tbl_structure.php:527 #, fuzzy msgid "Track table" msgstr "Revisar la tabla" -#: db_tracking.php:199 +#: db_tracking.php:195 #, fuzzy msgid "Database Log" msgstr "Base de datos" @@ -807,12 +787,12 @@ msgstr "Base de datos" msgid "Selected export type has to be saved in file!" msgstr "El formato de exportación seleccionado ¡debe grabarse en el archivo!" -#: export.php:153 export.php:178 export.php:620 +#: export.php:152 export.php:177 export.php:615 #, php-format msgid "Insufficient space to save the file %s." msgstr "No hay suficiente espacio para guardar el archivo %s." -#: export.php:287 +#: export.php:286 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -820,17 +800,17 @@ msgstr "" "El archivo %s ya existe en el servidor, cambie el nombre del archivo o " "revise la opción de sobreescritura." -#: export.php:291 export.php:295 +#: export.php:290 export.php:294 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "El servidor web no tiene permiso para guardar el archivo %s." -#: export.php:622 +#: export.php:617 #, php-format msgid "Dump has been saved to file %s." msgstr "Su archivo (MySQL dump) ha sido guardado con el nombre %s." -#: import.php:59 +#: import.php:58 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -839,14 +819,14 @@ msgstr "" "Usted probablemente intentó cargar un archivo demasiado grande. Por favor, " "refiérase a %sdocumentation%s para hallar modos de superar esta limitante." -#: import.php:278 import.php:331 libraries/File.class.php:840 -#: libraries/File.class.php:950 +#: import.php:277 import.php:330 libraries/File.class.php:566 +#: libraries/File.class.php:676 msgid "File could not be read" msgstr "No fue posible leer el archivo" -#: import.php:286 import.php:295 import.php:314 import.php:323 -#: libraries/File.class.php:1020 libraries/File.class.php:1028 -#: libraries/File.class.php:1044 libraries/File.class.php:1052 +#: import.php:285 import.php:294 import.php:313 import.php:322 +#: libraries/File.class.php:746 libraries/File.class.php:754 +#: libraries/File.class.php:770 libraries/File.class.php:778 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -856,7 +836,7 @@ msgstr "" "Este tipo de compresión puede no estar implementado o quizá no ha sido " "habilitado en su archivo de configuración." -#: import.php:336 +#: import.php:335 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -866,31 +846,31 @@ msgstr "" "el tamaño del archivo excedió el máximo permitido por su configuración PHP. " "Por favor, lea el FAQ 1.16." -#: import.php:371 libraries/display_import.lib.php:23 +#: import.php:370 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "" "No se pudieron cargar los plugins de importación, por favor revise su " "instalación" -#: import.php:396 +#: import.php:395 msgid "The bookmark has been deleted." msgstr "El favorito ha sido borrado." -#: import.php:400 +#: import.php:399 msgid "Showing bookmark" msgstr "Mostrando el favorito" -#: import.php:402 sql.php:625 +#: import.php:401 sql.php:618 #, php-format msgid "Bookmark %s created" msgstr "El favorito %s fue creado" -#: import.php:408 import.php:414 +#: import.php:407 import.php:413 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "La importación se ejecutó exitosamente, se ejecutaron %d consultas." -#: import.php:423 +#: import.php:422 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -898,7 +878,7 @@ msgstr "" "Se ha agotado el tiempo de ejecución del script; si desea completar la " "importación, por favor, reenvíe el mismo archivo y la importación continuará." -#: import.php:425 +#: import.php:424 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -907,19 +887,19 @@ msgstr "" "usualmente significa que phpMyAdmin no será capaz de completar esta " "importación a menos que usted incremente el tiempo de ejecución de php." -#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:240 +#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:239 #: user_password.php:110 msgid "Back" msgstr "Volver" -#: index.php:188 +#: index.php:183 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin funciona mejor con un navegador que reconoce frames." -#: js/messages.php:25 server_synchronize.php:344 server_synchronize.php:356 -#: server_synchronize.php:372 server_synchronize.php:379 -#: server_synchronize.php:738 server_synchronize.php:766 -#: server_synchronize.php:794 server_synchronize.php:806 +#: js/messages.php:25 server_synchronize.php:343 server_synchronize.php:355 +#: server_synchronize.php:371 server_synchronize.php:378 +#: server_synchronize.php:737 server_synchronize.php:765 +#: server_synchronize.php:793 server_synchronize.php:805 msgid "Click to select" msgstr "" @@ -927,15 +907,15 @@ msgstr "" msgid "Click to unselect" msgstr "" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:88 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:87 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Los enunciados \\\"DROP DATABASE\\\" están deshabilitados." -#: js/messages.php:30 libraries/mult_submits.inc.php:257 sql.php:187 +#: js/messages.php:30 libraries/mult_submits.inc.php:256 sql.php:186 msgid "Do you really want to " msgstr "Realmente desea " -#: js/messages.php:31 libraries/mult_submits.inc.php:257 sql.php:171 +#: js/messages.php:31 libraries/mult_submits.inc.php:256 sql.php:170 msgid "You are about to DESTROY a complete database!" msgstr "¡Está a punto de DESTRUIR una base de datos completa!" @@ -966,11 +946,11 @@ msgstr "¡¡El nombre del servidor está vacío!!" msgid "The user name is empty!" msgstr "¡El nombre de usuario está vacío!" -#: js/messages.php:44 server_privileges.php:1228 user_password.php:65 +#: js/messages.php:44 server_privileges.php:1229 user_password.php:65 msgid "The password is empty!" msgstr "¡La contraseña está vacía!" -#: js/messages.php:45 server_privileges.php:1226 user_password.php:68 +#: js/messages.php:45 server_privileges.php:1227 user_password.php:68 msgid "The passwords aren't the same!" msgstr "¡Las contraseñas no coinciden!" @@ -978,27 +958,27 @@ msgstr "¡Las contraseñas no coinciden!" msgid "Cancel" msgstr "Cancelar" -#: js/messages.php:52 pmd_save_pos.php:53 +#: js/messages.php:52 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "Se han guardado las modificaciones" -#: js/messages.php:53 pmd_relation_upd.php:48 +#: js/messages.php:53 pmd_relation_upd.php:47 msgid "Relation deleted" msgstr "La relación fue eliminada" -#: js/messages.php:54 pmd_relation_new.php:63 +#: js/messages.php:54 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "Se añadió una relación FOREIGN KEY" -#: js/messages.php:55 pmd_relation_new.php:85 +#: js/messages.php:55 pmd_relation_new.php:84 msgid "Internal relation added" msgstr "Se añadió la relación interna" -#: js/messages.php:56 pmd_relation_new.php:62 pmd_relation_new.php:87 +#: js/messages.php:56 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "Error: no se añadió la relación." -#: js/messages.php:57 pmd_relation_new.php:30 +#: js/messages.php:57 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "Error: la relación ya existe." @@ -1006,13 +986,13 @@ msgstr "Error: la relación ya existe." msgid "Error saving coordinates for Designer." msgstr "Error guardando las coordenadas para el Diseñador." -#: js/messages.php:59 libraries/relation.lib.php:94 -#: libraries/relation.lib.php:106 +#: js/messages.php:59 libraries/relation.lib.php:89 +#: libraries/relation.lib.php:101 msgid "General relation features" msgstr "Opciones de relación general" -#: js/messages.php:59 libraries/relation.lib.php:88 -#: libraries/relation.lib.php:95 +#: js/messages.php:59 libraries/relation.lib.php:83 +#: libraries/relation.lib.php:90 msgid "Disabled" msgstr "Deshabilitado" @@ -1028,7 +1008,7 @@ msgstr "Seleccione la llave extranjera (foreign key)" msgid "Please select the primary key or a unique key" msgstr "Por favor, seleccione la clave primaria o una clave única" -#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:547 +#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" @@ -1059,10 +1039,10 @@ msgid "Prev" msgstr "Previo" #. l10n: Display text for next month link in calendar -#: js/messages.php:81 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:337 -#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:422 -#: tbl_structure.php:800 +#: js/messages.php:81 libraries/common.lib.php:2358 +#: libraries/common.lib.php:2361 libraries/display_tbl.lib.php:336 +#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 +#: tbl_structure.php:798 msgid "Next" msgstr "Próxima" @@ -1136,27 +1116,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1562 +#: js/messages.php:101 libraries/common.lib.php:1566 msgid "Jan" msgstr "Ene" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1564 +#: js/messages.php:103 libraries/common.lib.php:1568 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1566 +#: js/messages.php:105 libraries/common.lib.php:1570 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1568 +#: js/messages.php:107 libraries/common.lib.php:1572 msgid "Apr" msgstr "Abr" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1570 +#: js/messages.php:109 libraries/common.lib.php:1574 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1164,37 +1144,37 @@ msgid "May" msgstr "May" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1572 +#: js/messages.php:111 libraries/common.lib.php:1576 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1574 +#: js/messages.php:113 libraries/common.lib.php:1578 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1576 +#: js/messages.php:115 libraries/common.lib.php:1580 msgid "Aug" msgstr "Ago" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1578 +#: js/messages.php:117 libraries/common.lib.php:1582 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1580 +#: js/messages.php:119 libraries/common.lib.php:1584 msgid "Oct" msgstr "Oct" #. l10n: Short month name -#: js/messages.php:121 libraries/common.lib.php:1582 +#: js/messages.php:121 libraries/common.lib.php:1586 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:123 libraries/common.lib.php:1584 +#: js/messages.php:123 libraries/common.lib.php:1588 msgid "Dec" msgstr "Dic" @@ -1235,37 +1215,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1587 +#: js/messages.php:136 libraries/common.lib.php:1591 msgid "Sun" msgstr "Dom" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1589 +#: js/messages.php:138 libraries/common.lib.php:1593 msgid "Mon" msgstr "Lun" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1591 +#: js/messages.php:140 libraries/common.lib.php:1595 msgid "Tue" msgstr "Mar" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1593 +#: js/messages.php:142 libraries/common.lib.php:1597 msgid "Wed" msgstr "Mie" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1595 +#: js/messages.php:144 libraries/common.lib.php:1599 msgid "Thu" msgstr "Jue" #. l10n: Short week day name -#: js/messages.php:146 libraries/common.lib.php:1597 +#: js/messages.php:146 libraries/common.lib.php:1601 msgid "Fri" msgstr "Vie" #. l10n: Short week day name -#: js/messages.php:148 libraries/common.lib.php:1599 +#: js/messages.php:148 libraries/common.lib.php:1603 msgid "Sat" msgstr "Sab" @@ -1345,18 +1325,13 @@ msgstr "por segundo" msgid "Font size" msgstr "Tamaño del font" -#: libraries/File.class.php:336 libraries/File.class.php:424 -#: libraries/File.class.php:561 libraries/File.class.php:700 -msgid "Unknown error in file upload." -msgstr "Error desconocido durante la carga del archivo." - -#: libraries/File.class.php:406 +#: libraries/File.class.php:315 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "El archivo que intentó cargar excede la directiva upload_max_filesize en php." "ini." -#: libraries/File.class.php:409 +#: libraries/File.class.php:318 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -1364,59 +1339,63 @@ msgstr "" "El archivo que intentó cargar excede la directiva MAX_FILE_SIZE especificada " "en el formulario HTML." -#: libraries/File.class.php:412 +#: libraries/File.class.php:321 msgid "The uploaded file was only partially uploaded." msgstr "El archivo que intentó cargar no alcanzó el 100%." -#: libraries/File.class.php:415 +#: libraries/File.class.php:324 msgid "Missing a temporary folder." msgstr "No existe una carpeta temporal." -#: libraries/File.class.php:418 +#: libraries/File.class.php:327 msgid "Failed to write file to disk." msgstr "No fue posible grabar el archivo al disco." -#: libraries/File.class.php:421 +#: libraries/File.class.php:330 msgid "File upload stopped by extension." msgstr "La carga del archivo fue detenida por extensión." -#: libraries/File.class.php:898 +#: libraries/File.class.php:333 +msgid "Unknown error in file upload." +msgstr "Error desconocido durante la carga del archivo." + +#: libraries/File.class.php:624 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "Se detectó un error al trasladar el archivo cargado, ver FAQ 1.11" -#: libraries/Index.class.php:427 tbl_relation.php:528 +#: libraries/Index.class.php:427 tbl_relation.php:526 msgid "No index defined!" msgstr "¡No se ha definido el índice!" -#: libraries/Index.class.php:432 server_databases.php:131 tbl_tracking.php:315 +#: libraries/Index.class.php:432 server_databases.php:129 tbl_tracking.php:310 msgid "Indexes" msgstr "Índices" #: libraries/Index.class.php:443 libraries/mult_submits.inc.php:102 -#: libraries/tbl_properties.inc.php:518 tbl_structure.php:32 -#: tbl_structure.php:154 tbl_structure.php:158 tbl_structure.php:473 -#: tbl_tracking.php:321 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:31 +#: tbl_structure.php:153 tbl_structure.php:157 tbl_structure.php:471 +#: tbl_tracking.php:316 msgid "Unique" msgstr "Único" -#: libraries/Index.class.php:444 tbl_tracking.php:322 +#: libraries/Index.class.php:444 tbl_tracking.php:317 msgid "Packed" msgstr "Empacado" -#: libraries/Index.class.php:446 tbl_tracking.php:324 +#: libraries/Index.class.php:446 tbl_tracking.php:319 msgid "Cardinality" msgstr "Cardinalidad" -#: libraries/Index.class.php:449 tbl_tracking.php:278 tbl_tracking.php:327 +#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322 msgid "Comment" msgstr "Comentario" #: libraries/Index.class.php:465 libraries/common.lib.php:609 -#: libraries/common.lib.php:1198 libraries/display_tbl.lib.php:1116 +#: libraries/common.lib.php:1191 libraries/display_tbl.lib.php:1115 #: libraries/import.lib.php:1119 libraries/import.lib.php:1143 -#: pdf_pages.php:284 setup/frames/index.inc.php:124 +#: pdf_pages.php:283 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:349 tbl_row_action.php:68 msgid "Edit" msgstr "Editar" @@ -1440,15 +1419,15 @@ msgstr "" "uno." #: libraries/List_Database.class.php:430 libraries/server_links.inc.php:40 -#: server_databases.php:87 server_privileges.php:1652 +#: server_databases.php:85 server_privileges.php:1656 #: setup/lib/messages.inc.php:107 test/theme.php:92 msgid "Databases" msgstr "Bases de datos" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:259 libraries/import.lib.php:134 pdf_schema.php:31 -#: pdf_schema.php:231 tbl_change.php:1023 tbl_operations.php:212 -#: tbl_relation.php:289 view_operations.php:61 +#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 +#: tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Error" @@ -1476,43 +1455,43 @@ msgid_plural "%1$d rows inserted." msgstr[0] "%1$d filas(s) fueron insertadas." msgstr[1] "%1$d filas(s) fueron insertadas." -#: libraries/StorageEngine.class.php:196 +#: libraries/StorageEngine.class.php:194 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:352 +#: libraries/StorageEngine.class.php:354 #, php-format msgid "%s is available on this MySQL server." msgstr "%s está disponible en este servidor MySQL." -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:357 #, 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:359 +#: libraries/StorageEngine.class.php:361 #, 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:1018 +#: libraries/Table.class.php:1017 msgid "Invalid database" msgstr "La base de datos no es válida" -#: libraries/Table.class.php:1032 tbl_get_field.php:25 +#: libraries/Table.class.php:1031 tbl_get_field.php:25 msgid "Invalid table name" msgstr "El nombre de la tabla no es válido" -#: libraries/Table.class.php:1047 +#: libraries/Table.class.php:1046 #, 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:1131 +#: libraries/Table.class.php:1129 #, php-format msgid "Table %s has been renamed to %s" msgstr "Tabla %s ahora se llama %s" @@ -1531,24 +1510,24 @@ msgstr "No existe una previsualización disponible." msgid "take it" msgstr "tómelo" -#: libraries/Theme_Manager.class.php:114 +#: libraries/Theme_Manager.class.php:109 #, php-format msgid "Default theme %s not found!" msgstr "¡No se halló la plantilla de interfaz (theme) predeterminada %s!" -#: libraries/Theme_Manager.class.php:152 +#: libraries/Theme_Manager.class.php:147 #, php-format msgid "Theme %s not found!" msgstr "¡No se halló la plantilla de interfaz (theme) %s!" -#: libraries/Theme_Manager.class.php:220 +#: libraries/Theme_Manager.class.php:215 #, php-format msgid "Theme path not found for theme %s!" msgstr "" "¡No se halló la ruta de la plantilla de interfaz (theme) para la plantilla " "%s!" -#: libraries/Theme_Manager.class.php:296 test/theme.php:160 themes.php:20 +#: libraries/Theme_Manager.class.php:291 test/theme.php:160 themes.php:20 #: themes.php:40 msgid "Theme / Style" msgstr "Tema / Estilo" @@ -1666,19 +1645,19 @@ msgstr "No se ha conectado una llave de autenticación válida" msgid "Authenticating..." msgstr "Autenticando..." -#: libraries/blobstreaming.lib.php:689 +#: libraries/blobstreaming.lib.php:340 msgid "View image" msgstr "Ver imagen" -#: libraries/blobstreaming.lib.php:693 +#: libraries/blobstreaming.lib.php:344 msgid "Play audio" msgstr "Tocar audio" -#: libraries/blobstreaming.lib.php:698 +#: libraries/blobstreaming.lib.php:349 msgid "View video" msgstr "Ver vídeo" -#: libraries/blobstreaming.lib.php:702 +#: libraries/blobstreaming.lib.php:353 msgid "Download file" msgstr "Descargar archivo" @@ -1735,7 +1714,7 @@ msgstr "Servidor" msgid "Invalid authentication method set in configuration:" msgstr "El método de autenticación no es válido en la configuración actual:" -#: libraries/common.inc.php:909 +#: libraries/common.inc.php:908 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Usted debería actualizar su %s a la versión %s o más reciente." @@ -1760,7 +1739,8 @@ msgstr "es" #: libraries/common.lib.php:425 libraries/common.lib.php:427 #: libraries/common.lib.php:429 libraries/common.lib.php:445 #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 -#: libraries/display_export.lib.php:163 libraries/relation.lib.php:84 +#: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 +#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 #: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" @@ -1775,150 +1755,150 @@ msgstr "consulta SQL" msgid "MySQL said: " msgstr "MySQL ha dicho: " -#: libraries/common.lib.php:1136 +#: libraries/common.lib.php:1129 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "Failed to connect to SQL validator!" msgstr "No pudo conectarse con un servidor MySQL" -#: libraries/common.lib.php:1174 setup/lib/messages.inc.php:350 +#: libraries/common.lib.php:1167 setup/lib/messages.inc.php:350 msgid "Explain SQL" msgstr "Explicar el SQL" -#: libraries/common.lib.php:1177 +#: libraries/common.lib.php:1170 msgid "Skip Explain SQL" msgstr "Salir de la explicación del SQL" -#: libraries/common.lib.php:1211 +#: libraries/common.lib.php:1204 msgid "Without PHP Code" msgstr "Sin código PHP" -#: libraries/common.lib.php:1214 setup/lib/messages.inc.php:352 +#: libraries/common.lib.php:1207 setup/lib/messages.inc.php:352 msgid "Create PHP Code" msgstr "Crear código PHP" -#: libraries/common.lib.php:1232 server_status.php:451 +#: libraries/common.lib.php:1225 server_status.php:451 #: setup/lib/messages.inc.php:351 msgid "Refresh" msgstr "Actualizar" -#: libraries/common.lib.php:1241 +#: libraries/common.lib.php:1234 msgid "Skip Validate SQL" msgstr "Salir de la validación del SQL" -#: libraries/common.lib.php:1244 setup/lib/messages.inc.php:353 +#: libraries/common.lib.php:1237 setup/lib/messages.inc.php:353 msgid "Validate SQL" msgstr "Validar el SQL" -#: libraries/common.lib.php:1283 +#: libraries/common.lib.php:1287 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1285 +#: libraries/common.lib.php:1289 #, fuzzy #| msgid "Engines" msgid "Inline" msgstr "Motores" -#: libraries/common.lib.php:1339 libraries/common.lib.php:1354 +#: libraries/common.lib.php:1343 libraries/common.lib.php:1358 msgid "Profiling" msgstr "Perfil/Perfilamiento" -#: libraries/common.lib.php:1358 libraries/tbl_triggers.lib.php:27 +#: libraries/common.lib.php:1362 libraries/tbl_triggers.lib.php:27 #: server_processlist.php:57 msgid "Time" msgstr "Tiempo" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "B" msgstr "Bytes" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "KiB" msgstr "KB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "MiB" msgstr "MB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "GiB" msgstr "GB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "TiB" msgstr "TB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "PiB" msgstr "PB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "EiB" msgstr "EB" #. l10n: Thousands separator -#: libraries/common.lib.php:1424 +#: libraries/common.lib.php:1428 msgid "," msgstr "," #. l10n: Decimal separator -#: libraries/common.lib.php:1426 +#: libraries/common.lib.php:1430 msgid "." msgstr "." #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1603 +#: libraries/common.lib.php:1607 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%d-%m-%Y a las %H:%M:%S" -#: libraries/common.lib.php:1909 +#: libraries/common.lib.php:1913 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s días, %s horas, %s minutos y %s segundos" -#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 -#: libraries/display_tbl.lib.php:289 server_status.php:718 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 +#: libraries/display_tbl.lib.php:288 server_status.php:718 msgid "Begin" msgstr "Empezar" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 -#: libraries/display_tbl.lib.php:290 server_binlog.php:154 +#: libraries/common.lib.php:2328 libraries/common.lib.php:2331 +#: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "Previo" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 -#: libraries/display_tbl.lib.php:352 +#: libraries/common.lib.php:2359 libraries/common.lib.php:2362 +#: libraries/display_tbl.lib.php:351 msgid "End" msgstr "Fin" -#: libraries/common.lib.php:2429 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "Saltar a la base de datos "%s"." -#: libraries/common.lib.php:2448 +#: libraries/common.lib.php:2453 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "La funcionalidad %s está afectada por un fallo conocido, vea %s" -#: libraries/common.lib.php:2828 libraries/common.lib.php:2835 -#: libraries/db_links.inc.php:67 libraries/export/sql.php:24 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 +#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 -#: libraries/tbl_links.inc.php:59 querywindow.php:89 test/theme.php:96 +#: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2837 libraries/db_links.inc.php:103 -#: libraries/tbl_links.inc.php:94 libraries/tbl_links.inc.php:116 -#: view_operations.php:88 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: view_operations.php:87 msgid "Operations" msgstr "Operaciones" -#: libraries/core.lib.php:282 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1934,38 +1914,38 @@ msgstr "Eventos" msgid "Name" msgstr "Nombre" -#: libraries/db_links.inc.php:44 +#: libraries/db_links.inc.php:43 #, php-format msgid "Database %s has been dropped." msgstr "La base de datos %s ha sido eliminada." -#: libraries/db_links.inc.php:56 libraries/db_links.inc.php:57 -#: libraries/db_links.inc.php:58 +#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 +#: libraries/db_links.inc.php:57 msgid "Database seems to be empty!" msgstr "La base de datos, ¡parece estar vacía!" -#: libraries/db_links.inc.php:80 libraries/relation.lib.php:142 -#: libraries/tbl_links.inc.php:68 +#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:85 +#: libraries/db_links.inc.php:84 msgid "Query" msgstr "Generar una consulta" -#: libraries/db_links.inc.php:90 libraries/relation.lib.php:138 +#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 msgid "Designer" msgstr "Diseñador" -#: libraries/db_links.inc.php:97 libraries/server_links.inc.php:87 -#: libraries/tbl_links.inc.php:90 pmd_pdf.php:83 pmd_pdf.php:109 +#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importar" -#: libraries/db_links.inc.php:110 libraries/server_links.inc.php:65 -#: server_privileges.php:111 server_privileges.php:1714 -#: server_privileges.php:2063 test/theme.php:116 +#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: server_privileges.php:110 server_privileges.php:1718 +#: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" msgstr "Privilegios" @@ -1977,14 +1957,14 @@ msgstr "Rutinas" msgid "Return type" msgstr "Muestre el tipo" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1847 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1806 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "Podría ser aproximado. Léase la FAQ 3.11" -#: libraries/db_structure.lib.php:60 server_databases.php:141 -#: tbl_printview.php:334 tbl_structure.php:681 +#: libraries/db_structure.lib.php:60 server_databases.php:139 +#: tbl_printview.php:333 tbl_structure.php:679 msgid "Overhead" msgstr "Residuo a depurar" @@ -2004,7 +1984,7 @@ 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:358 tbl_structure.php:607 +#: libraries/dbi/mysql.dbi.lib.php:358 tbl_structure.php:605 msgid "Details..." msgstr "Detalles..." @@ -2014,22 +1994,22 @@ msgid "Change password" msgstr "Cambio de contraseña" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:807 +#: libraries/replication_gui.lib.php:347 server_privileges.php:806 msgid "No Password" msgstr "Sin contraseña" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1530 server_synchronize.php:1174 +#: libraries/replication_gui.lib.php:351 server_privileges.php:795 +#: server_privileges.php:799 server_privileges.php:810 +#: server_privileges.php:1534 server_synchronize.php:1173 msgid "Password" msgstr "Contraseña" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:815 server_privileges.php:818 +#: server_privileges.php:814 server_privileges.php:817 msgid "Re-type" msgstr "Debe volver a escribir" @@ -2052,8 +2032,8 @@ msgstr "Crear nueva base de datos" msgid "Create" msgstr "Crear" -#: libraries/display_create_database.lib.php:39 server_privileges.php:113 -#: server_privileges.php:1419 server_replication.php:34 +#: libraries/display_create_database.lib.php:39 server_privileges.php:112 +#: server_privileges.php:1423 server_replication.php:33 msgid "No Privileges" msgstr "Sin privilegios" @@ -2074,52 +2054,52 @@ msgstr "Crear nueva tabla en la base de datos %s" msgid "Number of columns" msgstr "Número de campos" -#: libraries/display_export.lib.php:41 +#: libraries/display_export.lib.php:35 msgid "Could not load export plugins, please check your installation!" msgstr "" "No se cargaron los plugins de exportación. Por favor, ¡revise su " "instalación!" -#: libraries/display_export.lib.php:106 +#: libraries/display_export.lib.php:100 #, fuzzy, php-format #| msgid "Dump %s row(s) starting at record # %s" msgid "Dump %s row(s) starting at row # %s" msgstr "Volcar %s filas empezando por la fila %s." -#: libraries/display_export.lib.php:114 +#: libraries/display_export.lib.php:108 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:124 setup/lib/messages.inc.php:79 +#: libraries/display_export.lib.php:118 setup/lib/messages.inc.php:79 msgid "Save as file" msgstr "Enviar (genera un archivo descargable)" -#: libraries/display_export.lib.php:133 +#: libraries/display_export.lib.php:127 #, php-format msgid "Save on server in %s directory" msgstr "Guardar en el servidor, en el directorio %s " -#: libraries/display_export.lib.php:141 setup/lib/messages.inc.php:87 +#: libraries/display_export.lib.php:135 setup/lib/messages.inc.php:87 msgid "Overwrite existing file(s)" msgstr "Sobreescribir el(los) archivo(s) existente(s)" -#: libraries/display_export.lib.php:147 +#: libraries/display_export.lib.php:141 msgid "File name template" msgstr "Plantilla del nombre del archivo" -#: libraries/display_export.lib.php:151 +#: libraries/display_export.lib.php:145 msgid "server name" msgstr "nombre del servidor" -#: libraries/display_export.lib.php:154 +#: libraries/display_export.lib.php:148 msgid "database name" msgstr "nombre de la base de datos" -#: libraries/display_export.lib.php:157 +#: libraries/display_export.lib.php:151 msgid "table name" msgstr "nombre de la tabla" -#: libraries/display_export.lib.php:161 +#: libraries/display_export.lib.php:155 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2131,39 +2111,39 @@ msgstr "" "sucederán las siguientes transformaciones: %3$s. El texto restante se " "mantendrá como está." -#: libraries/display_export.lib.php:202 +#: libraries/display_export.lib.php:196 msgid "remember template" msgstr "recordar la plantilla" -#: libraries/display_export.lib.php:210 libraries/display_import.lib.php:177 +#: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 #: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 msgid "Character set of the file:" msgstr "Juego de caracteres del archivo:" -#: libraries/display_export.lib.php:235 setup/lib/messages.inc.php:81 +#: libraries/display_export.lib.php:229 setup/lib/messages.inc.php:81 msgid "Compression" msgstr "Compresión" -#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:196 -#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:529 -#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:574 -#: server_privileges.php:1867 server_processlist.php:74 +#: libraries/display_export.lib.php:234 libraries/display_import.lib.php:196 +#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:528 +#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:573 +#: server_privileges.php:1871 server_processlist.php:74 msgid "None" msgstr "Ninguna" -#: libraries/display_export.lib.php:247 +#: libraries/display_export.lib.php:241 msgid "\"zipped\"" msgstr "\"comprimido con zip\"" -#: libraries/display_export.lib.php:253 +#: libraries/display_export.lib.php:247 msgid "\"gzipped\"" msgstr "\"Comprimido con gzip\"" -#: libraries/display_export.lib.php:259 +#: libraries/display_export.lib.php:253 msgid "\"bzipped\"" msgstr "\"Comprimido con bzip\"" -#: libraries/display_export.lib.php:274 libraries/export/sql.php:42 +#: libraries/display_export.lib.php:268 libraries/export/sql.php:42 #: libraries/import/sql.php:31 msgid "SQL compatibility mode" msgstr "Modalidad compatible con SQL" @@ -2198,13 +2178,13 @@ msgid "File uploads are not allowed on this server." msgstr "No está permitido subir archivos a este servidor." #: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 -#: tbl_change.php:1024 +#: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "" "No está disponible el directorio que usted habilitó para subir las tareas" #: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 -#: tbl_change.php:1027 +#: tbl_change.php:925 msgid "web server upload directory" msgstr "directorio en el servidor web para subir los archivos" @@ -2293,43 +2273,43 @@ msgstr "Tamaño del papel" msgid "Language" msgstr "Idioma" -#: libraries/display_tbl.lib.php:303 +#: libraries/display_tbl.lib.php:302 #, php-format msgid "%d is not valid row number." msgstr "%d no es un número de fila válido." -#: libraries/display_tbl.lib.php:309 +#: libraries/display_tbl.lib.php:308 #, fuzzy #| msgid "row(s) starting from record #" msgid "row(s) starting from row #" msgstr "filas empezando de" -#: libraries/display_tbl.lib.php:315 +#: libraries/display_tbl.lib.php:314 msgid "horizontal" msgstr "horizontal" -#: libraries/display_tbl.lib.php:316 +#: libraries/display_tbl.lib.php:315 msgid "horizontal (rotated headers)" msgstr "horizontal (encabezados rotados)" -#: libraries/display_tbl.lib.php:317 +#: libraries/display_tbl.lib.php:316 msgid "vertical" msgstr "vertical" -#: libraries/display_tbl.lib.php:323 +#: libraries/display_tbl.lib.php:322 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "en modo %s y repetir los encabezados cada %s celdas" -#: libraries/display_tbl.lib.php:345 +#: libraries/display_tbl.lib.php:344 msgid "This operation could take a long time. Proceed anyway?" msgstr "Esta operación podría tomar algún tiempo. ¿Proceder de todas formas?" -#: libraries/display_tbl.lib.php:511 +#: libraries/display_tbl.lib.php:510 msgid "Sort by key" msgstr "Organizar según la clave" -#: libraries/display_tbl.lib.php:554 libraries/export/codegen.php:38 +#: libraries/display_tbl.lib.php:553 libraries/export/codegen.php:38 #: libraries/export/csv.php:29 libraries/export/excel.php:34 #: libraries/export/htmlword.php:28 libraries/export/latex.php:32 #: libraries/export/mediawiki.php:21 libraries/export/ods.php:26 @@ -2339,99 +2319,99 @@ msgstr "Organizar según la clave" #: libraries/export/xlsx.php:26 libraries/export/xml.php:23 #: libraries/export/yaml.php:27 libraries/import.lib.php:1114 #: libraries/import.lib.php:1136 libraries/import/csv.php:31 -#: libraries/import/docsql.php:33 libraries/import/ldi.php:46 +#: libraries/import/docsql.php:32 libraries/import/ldi.php:46 #: libraries/import/ods.php:30 libraries/import/sql.php:19 #: libraries/import/xls.php:25 libraries/import/xlsx.php:25 -#: libraries/import/xml.php:25 tbl_select.php:264 tbl_structure.php:752 +#: libraries/import/xml.php:25 tbl_select.php:263 tbl_structure.php:750 msgid "Options" msgstr "Opciones" -#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:569 +#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:568 msgid "Partial Texts" msgstr "Textos parciales" -#: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:573 +#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:572 msgid "Full Texts" msgstr "Textos completos" -#: libraries/display_tbl.lib.php:586 +#: libraries/display_tbl.lib.php:585 msgid "Relational key" msgstr "Llave relacional" -#: libraries/display_tbl.lib.php:587 +#: libraries/display_tbl.lib.php:586 #, fuzzy #| msgid "Relational display field" msgid "Relational display column" msgstr "Campo que muestra las relaciones" -#: libraries/display_tbl.lib.php:594 +#: libraries/display_tbl.lib.php:593 msgid "Show binary contents" msgstr "" -#: libraries/display_tbl.lib.php:596 +#: libraries/display_tbl.lib.php:595 msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:598 +#: libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "" -#: libraries/display_tbl.lib.php:606 pmd_general.php:140 tbl_change.php:312 -#: tbl_change.php:318 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:307 +#: tbl_change.php:313 msgid "Hide" msgstr "Ocultar" -#: libraries/display_tbl.lib.php:606 libraries/relation.lib.php:122 -#: libraries/tbl_properties.inc.php:143 transformation_overview.php:46 +#: libraries/display_tbl.lib.php:605 libraries/relation.lib.php:117 +#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46 msgid "Browser transformation" msgstr "Transformación del navegador" -#: libraries/display_tbl.lib.php:1125 libraries/display_tbl.lib.php:1129 -#: libraries/display_tbl.lib.php:1131 +#: libraries/display_tbl.lib.php:1124 libraries/display_tbl.lib.php:1128 +#: libraries/display_tbl.lib.php:1130 msgid "Execute bookmarked query" msgstr "Ejecute la consulta marcada previamente" -#: libraries/display_tbl.lib.php:1144 libraries/display_tbl.lib.php:1156 +#: libraries/display_tbl.lib.php:1143 libraries/display_tbl.lib.php:1155 msgid "The row has been deleted" msgstr "La fila se ha borrado" -#: libraries/display_tbl.lib.php:1183 libraries/display_tbl.lib.php:2055 +#: libraries/display_tbl.lib.php:1182 libraries/display_tbl.lib.php:2014 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "Matar el proceso" -#: libraries/display_tbl.lib.php:1933 +#: libraries/display_tbl.lib.php:1892 msgid "in query" msgstr "en la consulta" -#: libraries/display_tbl.lib.php:1951 +#: libraries/display_tbl.lib.php:1910 msgid "Showing rows" msgstr "Mostrando registros " -#: libraries/display_tbl.lib.php:1961 +#: libraries/display_tbl.lib.php:1920 msgid "total" msgstr "total" -#: libraries/display_tbl.lib.php:1969 sql.php:523 +#: libraries/display_tbl.lib.php:1928 sql.php:522 #, php-format msgid "Query took %01.4f sec" msgstr "La consulta tardó %01.4f seg" -#: libraries/display_tbl.lib.php:2088 libraries/mult_submits.inc.php:112 -#: querywindow.php:115 querywindow.php:119 querywindow.php:122 -#: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:469 +#: libraries/display_tbl.lib.php:2047 libraries/mult_submits.inc.php:112 +#: querywindow.php:114 querywindow.php:118 querywindow.php:121 +#: tbl_structure.php:23 tbl_structure.php:148 tbl_structure.php:467 msgid "Change" msgstr "Cambiar" -#: libraries/display_tbl.lib.php:2158 +#: libraries/display_tbl.lib.php:2117 msgid "Query results operations" msgstr "Operaciones sobre los resultados de la consulta" -#: libraries/display_tbl.lib.php:2186 +#: libraries/display_tbl.lib.php:2145 msgid "Print view (with full texts)" msgstr "Previsualización para imprimir (documento completo)" -#: libraries/display_tbl.lib.php:2359 +#: libraries/display_tbl.lib.php:2318 msgid "Link not found" msgstr "No se encontró el enlace" @@ -2489,9 +2469,9 @@ msgstr "Estado del InnoDB" msgid "Buffer Pool Usage" msgstr "Total de memoria del búfer consumido" -#: libraries/engines/innodb.lib.php:168 server_databases.php:136 -#: server_databases.php:304 server_status.php:524 server_status.php:585 -#: server_status.php:606 tbl_printview.php:349 tbl_structure.php:695 +#: libraries/engines/innodb.lib.php:168 server_databases.php:134 +#: server_databases.php:302 server_status.php:524 server_status.php:585 +#: server_status.php:606 tbl_printview.php:348 tbl_structure.php:693 msgid "Total" msgstr "Total" @@ -2633,6 +2613,88 @@ msgstr "" "durante la operación REPAIR TABLE o cuando se generan índices con CREATE " "INDEX o ALTER TABLE." +#: libraries/engines/pbms.lib.php:31 +#, fuzzy +#| msgid "Garbage threshold" +msgid "Garbage Threshold" +msgstr "Umbral de chatarra" + +#: libraries/engines/pbms.lib.php:32 +#, fuzzy +#| msgid "" +#| "The percentage of garbage in a data log file before it is compacted. This " +#| "is a value between 1 and 99. The default is 50." +msgid "The percentage of garbage in a repository file before it is compacted." +msgstr "" +"El porcentaje de chatarra en un archivo bitácora de datos antes de ser " +"compactado. Este es un valor entre 1 y 99. El valor predeterminado es 50." + +#: libraries/engines/pbms.lib.php:36 libraries/replication_gui.lib.php:69 +#: server_synchronize.php:1161 +#, fuzzy +msgid "Port" +msgstr "Ordenar" + +#: libraries/engines/pbms.lib.php:37 +msgid "" +"The port for the PBMS stream-based communications. Setting this value to 0 " +"will disable HTTP communication with the daemon." +msgstr "" + +#: libraries/engines/pbms.lib.php:41 +msgid "Repository Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:42 +msgid "" +"The maximum size of a BLOB repository file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:46 +msgid "Temp Blob Timeout" +msgstr "" + +#: libraries/engines/pbms.lib.php:47 +msgid "" +"The timeout, in seconds, for temporary BLOBs. Uploaded BLOB data is removed " +"after this time, unless they are referenced by a record in the database." +msgstr "" + +#: libraries/engines/pbms.lib.php:51 +#, fuzzy +#| msgid "Log file threshold" +msgid "Temp Log Threshold" +msgstr "Umbral del archivo bitácora" + +#: libraries/engines/pbms.lib.php:52 +msgid "" +"The maximum size of a temporary BLOB log file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:56 +msgid "Max Keep Alive" +msgstr "" + +#: libraries/engines/pbms.lib.php:57 +msgid "" +"The timeout for inactive connection with the keep-alive flag set. After this " +"time the connection will be closed. The time-out is in milliseconds (1/1000)." +msgstr "" + +#: libraries/engines/pbms.lib.php:61 +msgid "Metadata Headers" +msgstr "" + +#: libraries/engines/pbms.lib.php:62 +msgid "" +"A \":\" delimited list of metadata headers to be used to initialize the " +"pbms_metadata_header table when a database is created." +msgstr "" + #: libraries/engines/pbxt.lib.php:22 msgid "Index cache size" msgstr "Tamaño del caché del índice" @@ -2787,7 +2849,7 @@ msgstr "" "reciben el siguiente número más alto." #: libraries/export/codegen.php:36 setup/lib/messages.inc.php:85 -#: tbl_printview.php:374 tbl_structure.php:736 +#: tbl_printview.php:373 tbl_structure.php:734 msgid "Format" msgstr "Formato" @@ -2858,9 +2920,9 @@ msgstr "Microsoft Word 2000" #: libraries/export/htmlword.php:23 libraries/export/latex.php:59 #: libraries/export/latex.php:205 libraries/export/odt.php:47 #: libraries/export/sql.php:105 libraries/export/sql.php:865 -#: libraries/export/texytext.php:27 server_databases.php:126 -#: server_privileges.php:576 server_replication.php:315 tbl_printview.php:315 -#: tbl_structure.php:664 +#: libraries/export/texytext.php:27 server_databases.php:124 +#: server_privileges.php:575 server_replication.php:314 tbl_printview.php:314 +#: tbl_structure.php:662 msgid "Data" msgstr "Datos" @@ -2911,13 +2973,13 @@ msgid "Label key" msgstr "Clave de la etiqueta" #: libraries/export/latex.php:46 libraries/export/odt.php:34 -#: libraries/export/sql.php:90 tbl_relation.php:398 +#: libraries/export/sql.php:90 tbl_relation.php:396 msgid "Relations" msgstr "Relaciones" #: libraries/export/latex.php:52 libraries/export/odt.php:40 #: libraries/export/odt.php:317 libraries/export/sql.php:94 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "MIME-type" @@ -2925,10 +2987,10 @@ msgstr "MIME-type" #: libraries/export/xml.php:101 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1529 server_privileges.php:2061 -#: server_processlist.php:54 server_synchronize.php:1158 +#: libraries/replication_gui.lib.php:331 server_privileges.php:730 +#: server_privileges.php:733 server_privileges.php:789 +#: server_privileges.php:1533 server_privileges.php:2065 +#: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "Servidor" @@ -3123,8 +3185,8 @@ msgstr "Exportar las opciones predeterminadas" msgid "Export contents" msgstr "Exportar las opciones predeterminadas" -#: libraries/footer.inc.php:182 libraries/footer.inc.php:193 -#: libraries/footer.inc.php:196 +#: libraries/footer.inc.php:180 libraries/footer.inc.php:191 +#: libraries/footer.inc.php:194 msgid "Open new phpMyAdmin window" msgstr "Abrir nueva ventana de phpMyAdmin" @@ -3141,7 +3203,7 @@ msgstr "Resultado SQL" msgid "Generated by" msgstr "Generado por" -#: libraries/import.lib.php:151 sql.php:519 tbl_change.php:180 +#: libraries/import.lib.php:151 sql.php:518 tbl_change.php:175 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL ha devuelto un valor vacío (i.e., cero columnas)." @@ -3200,7 +3262,7 @@ msgstr "Ignore las filas duplicadas" msgid "Column names in first row" msgstr "" -#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:501 +#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:500 #: view_create.php:147 msgid "Column names" msgstr "Nombre de las columnas" @@ -3227,12 +3289,12 @@ msgstr "El formato de los datos CSV en la línea %d no es válido." msgid "Invalid column count in CSV input on line %d." msgstr "El número de campos de los datos CSV en la línea %d no es válido." -#: libraries/import/docsql.php:28 +#: libraries/import/docsql.php:27 msgid "DocSQL" msgstr "DocSQL" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 -#: server_synchronize.php:427 server_synchronize.php:870 +#: libraries/import/docsql.php:30 libraries/tbl_properties.inc.php:616 +#: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "Nombre de la tabla" @@ -3290,26 +3352,26 @@ msgstr "Ninguna" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:512 -#: tbl_structure.php:28 tbl_structure.php:152 tbl_structure.php:156 -#: tbl_structure.php:472 +#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:511 +#: tbl_structure.php:27 tbl_structure.php:151 tbl_structure.php:155 +#: tbl_structure.php:470 msgid "Primary" msgstr "Primaria" #: libraries/mult_submits.inc.php:97 libraries/tbl_properties.inc.php:115 -#: libraries/tbl_properties.inc.php:524 tbl_printview.php:324 -#: tbl_structure.php:30 tbl_structure.php:153 tbl_structure.php:157 -#: tbl_structure.php:474 tbl_structure.php:672 +#: libraries/tbl_properties.inc.php:523 tbl_printview.php:323 +#: tbl_structure.php:29 tbl_structure.php:152 tbl_structure.php:156 +#: tbl_structure.php:472 tbl_structure.php:670 msgid "Index" msgstr "Índice" -#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:530 -#: tbl_structure.php:34 tbl_structure.php:155 tbl_structure.php:159 -#: tbl_structure.php:477 +#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:529 +#: tbl_structure.php:33 tbl_structure.php:154 tbl_structure.php:158 +#: tbl_structure.php:475 msgid "Fulltext" msgstr "Texto completo" -#: libraries/mult_submits.inc.php:434 tbl_replace.php:330 +#: libraries/mult_submits.inc.php:433 tbl_replace.php:330 msgid "No change" msgstr "Sin cambios" @@ -3317,190 +3379,190 @@ msgstr "Sin cambios" msgid "Charset" msgstr "Juego de caracteres" -#: libraries/mysql_charsets.lib.php:210 libraries/mysql_charsets.lib.php:411 -#: tbl_change.php:515 +#: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 +#: tbl_change.php:510 msgid "Binary" msgstr " Binario " -#: libraries/mysql_charsets.lib.php:222 +#: libraries/mysql_charsets.lib.php:214 msgid "Bulgarian" msgstr "Búlgaro" -#: libraries/mysql_charsets.lib.php:226 libraries/mysql_charsets.lib.php:351 +#: libraries/mysql_charsets.lib.php:218 libraries/mysql_charsets.lib.php:343 msgid "Simplified Chinese" msgstr "Chino simplificado" -#: libraries/mysql_charsets.lib.php:228 libraries/mysql_charsets.lib.php:371 +#: libraries/mysql_charsets.lib.php:220 libraries/mysql_charsets.lib.php:363 msgid "Traditional Chinese" msgstr "Chino tradicional" -#: libraries/mysql_charsets.lib.php:232 libraries/mysql_charsets.lib.php:418 +#: libraries/mysql_charsets.lib.php:224 libraries/mysql_charsets.lib.php:410 msgid "case-insensitive" msgstr "independiente de mayúsculas y minúsculas" -#: libraries/mysql_charsets.lib.php:235 libraries/mysql_charsets.lib.php:420 +#: libraries/mysql_charsets.lib.php:227 libraries/mysql_charsets.lib.php:412 msgid "case-sensitive" msgstr "dependiente de mayúsculas y minúsculas" -#: libraries/mysql_charsets.lib.php:238 +#: libraries/mysql_charsets.lib.php:230 msgid "Croatian" msgstr "Croata" -#: libraries/mysql_charsets.lib.php:241 +#: libraries/mysql_charsets.lib.php:233 msgid "Czech" msgstr "Checo" -#: libraries/mysql_charsets.lib.php:244 +#: libraries/mysql_charsets.lib.php:236 msgid "Danish" msgstr "Danés" -#: libraries/mysql_charsets.lib.php:247 +#: libraries/mysql_charsets.lib.php:239 msgid "English" msgstr "Inglés" -#: libraries/mysql_charsets.lib.php:250 +#: libraries/mysql_charsets.lib.php:242 msgid "Esperanto" msgstr "Esperanto" -#: libraries/mysql_charsets.lib.php:253 +#: libraries/mysql_charsets.lib.php:245 msgid "Estonian" msgstr "Estonio" -#: libraries/mysql_charsets.lib.php:256 libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:248 libraries/mysql_charsets.lib.php:251 msgid "German" msgstr "Alemán" -#: libraries/mysql_charsets.lib.php:256 +#: libraries/mysql_charsets.lib.php:248 msgid "dictionary" msgstr "diccionario" -#: libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:251 msgid "phone book" msgstr "directorio telefónico" -#: libraries/mysql_charsets.lib.php:262 +#: libraries/mysql_charsets.lib.php:254 msgid "Hungarian" msgstr "Húngaro" -#: libraries/mysql_charsets.lib.php:265 +#: libraries/mysql_charsets.lib.php:257 msgid "Icelandic" msgstr "Islandés" -#: libraries/mysql_charsets.lib.php:268 libraries/mysql_charsets.lib.php:358 +#: libraries/mysql_charsets.lib.php:260 libraries/mysql_charsets.lib.php:350 msgid "Japanese" msgstr "Japonés" -#: libraries/mysql_charsets.lib.php:271 +#: libraries/mysql_charsets.lib.php:263 msgid "Latvian" msgstr "Letón" -#: libraries/mysql_charsets.lib.php:274 +#: libraries/mysql_charsets.lib.php:266 msgid "Lithuanian" msgstr "Lituano" -#: libraries/mysql_charsets.lib.php:277 libraries/mysql_charsets.lib.php:380 +#: libraries/mysql_charsets.lib.php:269 libraries/mysql_charsets.lib.php:372 msgid "Korean" msgstr "Coreano" -#: libraries/mysql_charsets.lib.php:280 +#: libraries/mysql_charsets.lib.php:272 msgid "Persian" msgstr "Persa" -#: libraries/mysql_charsets.lib.php:283 +#: libraries/mysql_charsets.lib.php:275 msgid "Polish" msgstr "Polaco" -#: libraries/mysql_charsets.lib.php:286 libraries/mysql_charsets.lib.php:334 +#: libraries/mysql_charsets.lib.php:278 libraries/mysql_charsets.lib.php:326 msgid "West European" msgstr "Europea occidental" -#: libraries/mysql_charsets.lib.php:289 +#: libraries/mysql_charsets.lib.php:281 msgid "Romanian" msgstr "Rumano" -#: libraries/mysql_charsets.lib.php:292 +#: libraries/mysql_charsets.lib.php:284 msgid "Slovak" msgstr "Eslovaco" -#: libraries/mysql_charsets.lib.php:295 +#: libraries/mysql_charsets.lib.php:287 msgid "Slovenian" msgstr "Esloveno" -#: libraries/mysql_charsets.lib.php:298 +#: libraries/mysql_charsets.lib.php:290 msgid "Spanish" msgstr "Español" -#: libraries/mysql_charsets.lib.php:301 +#: libraries/mysql_charsets.lib.php:293 msgid "Traditional Spanish" msgstr "Español tradicional" -#: libraries/mysql_charsets.lib.php:304 libraries/mysql_charsets.lib.php:401 +#: libraries/mysql_charsets.lib.php:296 libraries/mysql_charsets.lib.php:393 msgid "Swedish" msgstr "Sueco" -#: libraries/mysql_charsets.lib.php:307 libraries/mysql_charsets.lib.php:404 +#: libraries/mysql_charsets.lib.php:299 libraries/mysql_charsets.lib.php:396 msgid "Thai" msgstr "Tailandés" -#: libraries/mysql_charsets.lib.php:310 libraries/mysql_charsets.lib.php:398 +#: libraries/mysql_charsets.lib.php:302 libraries/mysql_charsets.lib.php:390 msgid "Turkish" msgstr "Turco" -#: libraries/mysql_charsets.lib.php:313 libraries/mysql_charsets.lib.php:395 +#: libraries/mysql_charsets.lib.php:305 libraries/mysql_charsets.lib.php:387 msgid "Ukrainian" msgstr "Ucraniano" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 msgid "Unicode" msgstr "Unicode" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 -#: libraries/mysql_charsets.lib.php:334 libraries/mysql_charsets.lib.php:341 -#: libraries/mysql_charsets.lib.php:363 libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 +#: libraries/mysql_charsets.lib.php:326 libraries/mysql_charsets.lib.php:333 +#: libraries/mysql_charsets.lib.php:355 libraries/mysql_charsets.lib.php:366 msgid "multilingual" msgstr "multilingüe" -#: libraries/mysql_charsets.lib.php:341 +#: libraries/mysql_charsets.lib.php:333 msgid "Central European" msgstr "Europeo central" -#: libraries/mysql_charsets.lib.php:346 +#: libraries/mysql_charsets.lib.php:338 msgid "Russian" msgstr "Ruso" -#: libraries/mysql_charsets.lib.php:363 +#: libraries/mysql_charsets.lib.php:355 msgid "Baltic" msgstr "Báltico" -#: libraries/mysql_charsets.lib.php:368 +#: libraries/mysql_charsets.lib.php:360 msgid "Armenian" msgstr "Armenio" -#: libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:366 msgid "Cyrillic" msgstr "Cirílico" -#: libraries/mysql_charsets.lib.php:377 +#: libraries/mysql_charsets.lib.php:369 msgid "Arabic" msgstr "Árabe" -#: libraries/mysql_charsets.lib.php:383 +#: libraries/mysql_charsets.lib.php:375 msgid "Hebrew" msgstr "Hebreo" -#: libraries/mysql_charsets.lib.php:386 +#: libraries/mysql_charsets.lib.php:378 msgid "Georgian" msgstr "Georgiano" -#: libraries/mysql_charsets.lib.php:389 +#: libraries/mysql_charsets.lib.php:381 msgid "Greek" msgstr "Griego" -#: libraries/mysql_charsets.lib.php:392 +#: libraries/mysql_charsets.lib.php:384 msgid "Czech-Slovak" msgstr "Checo-Eslovaco" -#: libraries/mysql_charsets.lib.php:407 libraries/mysql_charsets.lib.php:414 +#: libraries/mysql_charsets.lib.php:399 libraries/mysql_charsets.lib.php:406 msgid "unknown" msgstr "desconocido" @@ -3526,69 +3588,69 @@ msgstr "Ventana de consulta" msgid "This format has no options" msgstr "Este formato no tiene opciones" -#: libraries/relation.lib.php:82 +#: libraries/relation.lib.php:77 msgid "not OK" msgstr "no recibió el OK" -#: libraries/relation.lib.php:86 pmd_general.php:339 +#: libraries/relation.lib.php:81 pmd_general.php:339 msgid "OK" msgstr "OK" -#: libraries/relation.lib.php:87 +#: libraries/relation.lib.php:82 msgid "Enabled" msgstr "Habilitado" -#: libraries/relation.lib.php:110 +#: libraries/relation.lib.php:105 msgid "Display Features" msgstr "Mostrar las opciones" -#: libraries/relation.lib.php:116 +#: libraries/relation.lib.php:111 msgid "Creation of PDFs" msgstr "Creación de los PDF" -#: libraries/relation.lib.php:120 +#: libraries/relation.lib.php:115 msgid "Displaying Column Comments" msgstr "Mostrando los comentarios de la columna" -#: libraries/relation.lib.php:125 +#: libraries/relation.lib.php:120 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "Para actualizar su tabla Columna_comentarios (Column_comments), por favor " "revise la documentación" -#: libraries/relation.lib.php:130 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 msgid "Bookmarked SQL query" msgstr "Consulta guardada en favoritos" -#: libraries/relation.lib.php:134 querywindow.php:99 querywindow.php:207 +#: libraries/relation.lib.php:129 querywindow.php:98 querywindow.php:205 msgid "SQL history" msgstr "Historial-SQL" -#: libraries/relation.lib.php:146 +#: libraries/relation.lib.php:141 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:148 +#: libraries/relation.lib.php:143 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" -#: libraries/relation.lib.php:149 +#: libraries/relation.lib.php:144 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:150 +#: libraries/relation.lib.php:145 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:151 +#: libraries/relation.lib.php:146 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1158 +#: libraries/relation.lib.php:1153 msgid "no description" msgstr "Sin descripción" @@ -3597,7 +3659,7 @@ msgstr "Sin descripción" msgid "Slave configuration" msgstr "Configuración del servidor" -#: libraries/replication_gui.lib.php:53 server_replication.php:346 +#: libraries/replication_gui.lib.php:53 server_replication.php:345 msgid "Change or reconfigure master server" msgstr "" @@ -3609,17 +3671,12 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:711 -#: server_privileges.php:714 server_privileges.php:721 -#: server_synchronize.php:1170 +#: libraries/replication_gui.lib.php:261 server_privileges.php:710 +#: server_privileges.php:713 server_privileges.php:720 +#: server_synchronize.php:1169 msgid "User name" msgstr "Nombre de usuario" -#: libraries/replication_gui.lib.php:69 server_synchronize.php:1162 -#, fuzzy -msgid "Port" -msgstr "Ordenar" - #: libraries/replication_gui.lib.php:105 #, fuzzy msgid "Master status" @@ -3636,8 +3693,8 @@ msgid "Variable" msgstr "Variable" #: libraries/replication_gui.lib.php:117 server_status.php:737 -#: tbl_change.php:322 tbl_printview.php:368 tbl_select.php:137 -#: tbl_structure.php:728 +#: tbl_change.php:317 tbl_printview.php:367 tbl_select.php:136 +#: tbl_structure.php:726 msgid "Value" msgstr "Valor" @@ -3651,38 +3708,38 @@ msgid "" "this list." msgstr "" -#: libraries/replication_gui.lib.php:242 server_replication.php:193 +#: libraries/replication_gui.lib.php:242 server_replication.php:192 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:256 server_privileges.php:716 +#: libraries/replication_gui.lib.php:256 server_privileges.php:715 msgid "Any user" msgstr "Cualquier usuario" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1920 server_privileges.php:1950 +#: libraries/replication_gui.lib.php:348 server_privileges.php:716 +#: server_privileges.php:783 server_privileges.php:807 +#: server_privileges.php:1924 server_privileges.php:1954 msgid "Use text field" msgstr "Use el campo de texto" -#: libraries/replication_gui.lib.php:304 server_privileges.php:764 +#: libraries/replication_gui.lib.php:304 server_privileges.php:763 msgid "Any host" msgstr "Cualquier servidor" -#: libraries/replication_gui.lib.php:308 server_privileges.php:768 +#: libraries/replication_gui.lib.php:308 server_privileges.php:767 msgid "Local" msgstr "Local" -#: libraries/replication_gui.lib.php:314 server_privileges.php:773 +#: libraries/replication_gui.lib.php:314 server_privileges.php:772 msgid "This Host" msgstr "Este Host" -#: libraries/replication_gui.lib.php:320 server_privileges.php:779 +#: libraries/replication_gui.lib.php:320 server_privileges.php:778 msgid "Use Host Table" msgstr "Usar la tabla Anfitrión (Host)" -#: libraries/replication_gui.lib.php:333 server_privileges.php:792 +#: libraries/replication_gui.lib.php:333 server_privileges.php:791 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3708,8 +3765,8 @@ msgstr "Idioma desconocido: %1$s." msgid "Servers" msgstr "Servidores" -#: libraries/server_links.inc.php:52 server_engines.php:111 -#: server_engines.php:115 server_status.php:414 test/theme.php:104 +#: libraries/server_links.inc.php:52 server_engines.php:125 +#: server_engines.php:129 server_status.php:414 test/theme.php:104 msgid "Variables" msgstr "Variables" @@ -3730,12 +3787,12 @@ msgstr "Log binario" msgid "Processes" msgstr "Procesos" -#: libraries/server_links.inc.php:91 server_synchronize.php:1091 -#: server_synchronize.php:1099 +#: libraries/server_links.inc.php:91 server_synchronize.php:1090 +#: server_synchronize.php:1098 msgid "Synchronize" msgstr "" -#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1109 +#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1108 #, fuzzy msgid "Source database" msgstr "Buscar en la base de datos" @@ -3755,7 +3812,7 @@ msgstr "Nuevo servidor" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1111 +#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1110 #, fuzzy msgid "Target database" msgstr "Buscar en la base de datos" @@ -3776,11 +3833,11 @@ msgstr "Ejecutar la(s) consulta(s) SQL en la base de datos %s" msgid "Columns" msgstr "Nombre de las columnas" -#: libraries/sql_query_form.lib.php:342 sql.php:664 sql.php:665 sql.php:682 +#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "Guardar esta consulta en favoritos" -#: libraries/sql_query_form.lib.php:349 sql.php:676 +#: libraries/sql_query_form.lib.php:349 sql.php:669 msgid "Let every user access this bookmark" msgstr "Permitir que todo usuario pueda acceder a este favorito" @@ -3878,12 +3935,12 @@ 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/tbl_links.inc.php:106 libraries/tbl_links.inc.php:139 -#: libraries/tbl_links.inc.php:140 +#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 +#: libraries/tbl_links.inc.php:139 msgid "Table seems to be empty!" msgstr "La tabla, ¡parece estar vacía!" -#: libraries/tbl_links.inc.php:148 +#: libraries/tbl_links.inc.php:147 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" @@ -3918,12 +3975,12 @@ msgstr "" "Para valores predeterminados, por favor ingrese solamente un valor, sin " "caracteres de escape \\\"\\\\\" ni comillas, usando este formato: a" -#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1263 -#: pdf_schema.php:1284 tbl_printview.php:142 tbl_structure.php:179 +#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1262 +#: pdf_schema.php:1283 tbl_printview.php:141 tbl_structure.php:178 msgid "Attributes" msgstr "Atributos" -#: libraries/tbl_properties.inc.php:136 +#: libraries/tbl_properties.inc.php:135 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -3933,11 +3990,11 @@ msgstr "" "transformaciones MIME-type transformations, dé clic en %stransformation " "descriptions%s" -#: libraries/tbl_properties.inc.php:144 +#: libraries/tbl_properties.inc.php:143 msgid "Transformation options" msgstr "Opciones de transformación" -#: libraries/tbl_properties.inc.php:145 +#: libraries/tbl_properties.inc.php:144 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
                            If you ever need to put a backslash (\"\\\") or a single " @@ -3949,18 +4006,18 @@ msgstr "" "Backslash (\"\\\") o comilla sencilla (\"'\") entre esos valores, use " "backslash (por ejemplo '\\\\xyz' o 'a\\'b')." -#: libraries/tbl_properties.inc.php:392 +#: libraries/tbl_properties.inc.php:391 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "Ninguna" -#: libraries/tbl_properties.inc.php:393 +#: libraries/tbl_properties.inc.php:392 msgid "As defined:" msgstr "Como fuera definido:" -#: libraries/tbl_properties.inc.php:579 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:578 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
                            Please ask the " @@ -3969,29 +4026,29 @@ msgstr "" "No hay una descripción disponible para esta transformación.
                            Por favor " "pregunte al autor lo que %s hace." -#: libraries/tbl_properties.inc.php:725 server_engines.php:57 -#: tbl_operations.php:354 +#: libraries/tbl_properties.inc.php:724 server_engines.php:56 +#: tbl_operations.php:352 msgid "Storage Engine" msgstr "Motor de almacenamiento" -#: libraries/tbl_properties.inc.php:754 +#: libraries/tbl_properties.inc.php:753 msgid "PARTITION definition" msgstr "definición de la PARTICIÓN" -#: libraries/tbl_properties.inc.php:775 pdf_pages.php:502 +#: libraries/tbl_properties.inc.php:774 pdf_pages.php:501 #: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214 -#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1124 tbl_indexes.php:247 -#: tbl_relation.php:565 +#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1022 tbl_indexes.php:246 +#: tbl_relation.php:563 msgid "Save" msgstr "Grabar" -#: libraries/tbl_properties.inc.php:779 tbl_structure.php:541 +#: libraries/tbl_properties.inc.php:778 tbl_structure.php:539 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "Añadir %s campo(s)" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:535 +#: libraries/tbl_properties.inc.php:782 tbl_structure.php:533 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -4199,8 +4256,8 @@ msgstr "Interfaz" msgid "Custom color" msgstr "Cambiar el color" -#: main.php:162 pdf_pages.php:362 setup/lib/FormDisplay.tpl.php:216 -#: tbl_change.php:1173 +#: main.php:162 pdf_pages.php:361 setup/lib/FormDisplay.tpl.php:216 +#: tbl_change.php:1071 msgid "Reset" msgstr "Reiniciar" @@ -4208,8 +4265,8 @@ msgstr "Reiniciar" msgid "Protocol version" msgstr "Versión del protocolo" -#: main.php:188 server_privileges.php:1381 server_privileges.php:1528 -#: server_privileges.php:1642 server_privileges.php:2060 +#: main.php:188 server_privileges.php:1385 server_privileges.php:1532 +#: server_privileges.php:1646 server_privileges.php:2064 #: server_processlist.php:53 msgid "User" msgstr "Usuario" @@ -4298,14 +4355,23 @@ msgid "" "has been configured." msgstr "" -#: main.php:330 +#: main.php:314 +#, php-format +msgid "" +"The additional features for working with linked tables have been " +"deactivated. To find out why click %shere%s." +msgstr "" +"Las opciones adicionales para trabajar con tablas vinculadas fueron " +"desactivadas. Para saber porqué, dé clic %saquí%s." + +#: main.php:329 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:345 +#: main.php:344 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -4314,7 +4380,7 @@ msgstr "" "Su versión de librería PHP MySQL %s es distinta de aquella de su versión de " "servidor MySQL %s. Esto puede ocasionar un comportamiento impredecible." -#: main.php:357 +#: main.php:356 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -4328,69 +4394,69 @@ msgstr "" msgid "Reload navigation frame" msgstr "Personalizar el marco de navegación" -#: navigation.php:204 server_databases.php:370 server_synchronize.php:1190 +#: navigation.php:203 server_databases.php:368 server_synchronize.php:1189 msgid "No databases" msgstr "No hay bases de datos" -#: navigation.php:298 +#: navigation.php:297 #, fuzzy msgid "Filter" msgstr "Archivos" -#: navigation.php:299 setup/frames/index.inc.php:218 +#: navigation.php:298 setup/frames/index.inc.php:218 #: setup/lib/messages.inc.php:41 msgid "Clear" msgstr "Limpiar" -#: navigation.php:330 navigation.php:331 +#: navigation.php:329 navigation.php:330 #, fuzzy #| msgid "Create table" msgctxt "short form" msgid "Create table" msgstr "Crear tabla" -#: navigation.php:333 navigation.php:495 +#: navigation.php:332 navigation.php:494 msgid "Please select a database" msgstr "Seleccionar una base de datos" -#: pdf_pages.php:40 pdf_pages.php:46 pdf_pages.php:52 pdf_pages.php:57 +#: pdf_pages.php:39 pdf_pages.php:45 pdf_pages.php:51 pdf_pages.php:56 #, php-format msgid "%s table not found or not set in %s" msgstr "La tabla %s no fue hallada o no fue definida en %s" -#: pdf_pages.php:265 +#: pdf_pages.php:264 msgid "Please choose a page to edit" msgstr "Elegir la página a editar" -#: pdf_pages.php:303 pmd_pdf.php:113 +#: pdf_pages.php:302 pmd_pdf.php:111 msgid "Create a page" msgstr "Crear una nueva página" -#: pdf_pages.php:309 +#: pdf_pages.php:308 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Número de página:" -#: pdf_pages.php:313 +#: pdf_pages.php:312 #, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "Diseño automático" -#: pdf_pages.php:315 +#: pdf_pages.php:314 msgid "Internal relations" msgstr "Relaciones internas" -#: pdf_pages.php:338 +#: pdf_pages.php:337 msgid "Select Tables" msgstr "Seleccionar tablas" -#: pdf_pages.php:361 +#: pdf_pages.php:360 msgid "Toggle scratchboard" msgstr "cambiar el estado del scratchboard" -#: pdf_pages.php:524 +#: pdf_pages.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -4398,37 +4464,37 @@ msgstr "" "La página actual tiene referencias a tablas que ya no existen. ¿Desea " "eliminar esas referencias?" -#: pdf_schema.php:635 +#: pdf_schema.php:634 #, fuzzy, php-format #| msgid "The \"%s\" table doesn't exist!" msgid "The %s table doesn't exist!" msgstr "¡La tabla \"%s\" no existe!" -#: pdf_schema.php:671 +#: pdf_schema.php:670 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Configure las coordenadas para la tabla %s" -#: pdf_schema.php:994 +#: pdf_schema.php:993 #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" msgstr "Esquema de la base de datos \"%s\" - Página %s" -#: pdf_schema.php:1012 +#: pdf_schema.php:1011 msgid "No tables" msgstr "No existen tablas" -#: pdf_schema.php:1031 pdf_schema.php:1140 +#: pdf_schema.php:1030 pdf_schema.php:1139 msgid "Relational schema" msgstr "Esquema relacionado" -#: pdf_schema.php:1115 +#: pdf_schema.php:1114 msgid "Table of contents" msgstr "Tabla de contenidos" -#: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:145 -#: tbl_structure.php:182 tbl_tracking.php:277 +#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 +#: tbl_structure.php:181 tbl_tracking.php:272 msgid "Extra" msgstr "Extra" @@ -4440,7 +4506,7 @@ msgstr "Ocultar/mostrar menú izquierdo" msgid "Save position" msgstr "Guardar posición" -#: pmd_general.php:70 server_synchronize.php:428 server_synchronize.php:871 +#: pmd_general.php:70 server_synchronize.php:427 server_synchronize.php:870 msgid "Create table" msgstr "Crear tabla" @@ -4519,32 +4585,32 @@ msgstr "" "campo como un campo Display, dé clic en el ícono \"Seleccione el campo a " "mostrar\", luego dé clic en el nombre apropiado del campo." -#: pmd_pdf.php:62 +#: pmd_pdf.php:60 #, fuzzy msgid "Page has been created" msgstr "La Tabla %1$s se creó." -#: pmd_pdf.php:64 +#: pmd_pdf.php:62 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:84 +#: pmd_pdf.php:82 msgid "Export/Import to scale" msgstr "Exporte/Importe a escala" -#: pmd_pdf.php:88 +#: pmd_pdf.php:86 msgid "recommended" msgstr "recomendado" -#: pmd_pdf.php:93 +#: pmd_pdf.php:91 msgid "to/from page" msgstr "página de/a la" -#: querywindow.php:94 +#: querywindow.php:93 msgid "Import files" msgstr "Importar archivos" -#: querywindow.php:105 +#: querywindow.php:104 msgid "All" msgstr "Todos/as" @@ -4590,69 +4656,69 @@ msgstr "Información" msgid "Character Sets and Collations" msgstr "Juego de caracteres y sus cotejamientos" -#: server_databases.php:51 +#: server_databases.php:49 msgid "No databases selected." msgstr "No se seleccionaron bases de datos." -#: server_databases.php:62 +#: server_databases.php:60 #, php-format msgid "%s databases have been dropped successfully." msgstr "%s bases de datos han sido eliminadas exitosamente." -#: server_databases.php:87 +#: server_databases.php:85 msgid "Databases statistics" msgstr "Estadísticas de la base" -#: server_databases.php:116 server_status.php:370 +#: server_databases.php:114 server_status.php:370 #: setup/lib/messages.inc.php:114 msgid "Tables" msgstr "Tablas" -#: server_databases.php:194 server_replication.php:180 -#: server_replication.php:208 +#: server_databases.php:192 server_replication.php:179 +#: server_replication.php:207 #, fuzzy msgid "Master replication" msgstr "Configuración del servidor" -#: server_databases.php:196 server_replication.php:247 +#: server_databases.php:194 server_replication.php:246 #, fuzzy msgid "Slave replication" msgstr "Configuración del servidor" -#: server_databases.php:229 +#: server_databases.php:227 #, fuzzy msgid "Jump to database" msgstr "No hay bases de datos" -#: server_databases.php:266 +#: server_databases.php:264 #, fuzzy msgid "Not replicated" msgstr "Configuración del servidor" -#: server_databases.php:272 +#: server_databases.php:270 #, fuzzy #| msgid "Replication" msgid "Replicated" msgstr "Replicación" -#: server_databases.php:288 +#: server_databases.php:286 #, php-format msgid "Check privileges for database "%s"." msgstr "Revisar los privilegios para la base de datos "%s"." -#: server_databases.php:292 server_databases.php:293 +#: server_databases.php:290 server_databases.php:291 msgid "Check Privileges" msgstr "Revisar los privilegios" -#: server_databases.php:357 server_databases.php:358 +#: server_databases.php:355 server_databases.php:356 msgid "Enable Statistics" msgstr "Activar las estadísticas" -#: server_databases.php:361 server_databases.php:362 +#: server_databases.php:359 server_databases.php:360 msgid "Disable Statistics" msgstr "Desactivar las estadísticas" -#: server_databases.php:365 +#: server_databases.php:363 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -4660,124 +4726,124 @@ msgstr "" "Nota: Activar aquí las estadísticas de la base de datos podría causar " "tráfico pesado entre el servidor web y el servidor MySQL." -#: server_engines.php:48 +#: server_engines.php:47 msgid "Storage Engines" msgstr "Motores de almacenamiento" -#: server_export.php:20 +#: server_export.php:18 msgid "View dump (schema) of databases" msgstr "Ver el volcado (schema) de la base de datos" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:23 server_privileges.php:265 msgid "Includes all privileges except GRANT." msgstr "Incluye todos los privilegios excepto GRANT (CONCEDER)." -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:24 server_privileges.php:191 +#: server_privileges.php:514 msgid "Allows altering the structure of existing tables." msgstr "Permite alterar la estructura de las tablas existentes." -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:25 server_privileges.php:207 +#: server_privileges.php:520 msgid "Allows altering and dropping stored routines." msgstr "Permite alterar y eliminar las rutinas almacenadas." -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:26 server_privileges.php:183 +#: server_privileges.php:513 msgid "Allows creating new databases and tables." msgstr "Permite crear nuevas bases de datos y tablas." -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:27 server_privileges.php:206 +#: server_privileges.php:519 msgid "Allows creating stored routines." msgstr "Permite crear el almacenamiento de rutinas." -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:513 msgid "Allows creating new tables." msgstr "Permite la creación de tablas nuevas." -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:29 server_privileges.php:194 +#: server_privileges.php:517 msgid "Allows creating temporary tables." msgstr "Permite la creación de tablas temporales." -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:30 server_privileges.php:208 +#: server_privileges.php:553 msgid "Allows creating, dropping and renaming user accounts." msgstr "Permite crear, eliminar y cambiar el nombre de las cuentas de usuario." -#: server_privileges.php:32 server_privileges.php:199 -#: server_privileges.php:203 server_privileges.php:526 -#: server_privileges.php:530 +#: server_privileges.php:31 server_privileges.php:198 +#: server_privileges.php:202 server_privileges.php:525 +#: server_privileges.php:529 msgid "Allows creating new views." msgstr "Permite crear nuevas vistas." -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:32 server_privileges.php:182 +#: server_privileges.php:505 msgid "Allows deleting data." msgstr "Permite borrar datos." -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:33 server_privileges.php:184 +#: server_privileges.php:516 msgid "Allows dropping databases and tables." msgstr "Permite eliminar bases de datos y tablas." -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:34 server_privileges.php:516 msgid "Allows dropping tables." msgstr "Permite eliminar tablas." -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:35 server_privileges.php:199 +#: server_privileges.php:533 msgid "Allows to set up events for the event scheduler" msgstr "Permite organizar los eventos para el gestor de eventos" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:36 server_privileges.php:209 +#: server_privileges.php:521 msgid "Allows executing stored routines." msgstr "Permite ejecutar las rutinas almacenadas." -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:37 server_privileges.php:188 +#: server_privileges.php:508 msgid "Allows importing data from and exporting data into files." msgstr "Permite importar y exportar datos de y hacia archivos." -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:38 server_privileges.php:539 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Permite añadir usuarios y privilegios sin conectarse nuevamente a la tabla " "de privilegios." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:515 msgid "Allows creating and dropping indexes." msgstr "Permite crear y eliminar índices." -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:40 server_privileges.php:180 +#: server_privileges.php:441 server_privileges.php:503 msgid "Allows inserting and replacing data." msgstr "Permite insertar y reemplazar datos." -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:41 server_privileges.php:195 +#: server_privileges.php:548 msgid "Allows locking tables for the current thread." msgstr "Permite poner candados a las tablas para el proceso actual." -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:42 server_privileges.php:645 +#: server_privileges.php:647 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Limita el número de conexiones nuevas que el usuario puede abrir por hora." -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:43 server_privileges.php:633 +#: server_privileges.php:635 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Limita el número de consultas que el usuario puede enviar al servidor por " "hora." -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:44 server_privileges.php:639 +#: server_privileges.php:641 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -4785,63 +4851,63 @@ msgstr "" "Limita el número de comandos que cambian cualquier tabla o base de datos que " "el usuario puede ejecutar por hora." -#: server_privileges.php:46 server_privileges.php:652 -#: server_privileges.php:654 +#: server_privileges.php:45 server_privileges.php:651 +#: server_privileges.php:653 msgid "Limits the number of simultaneous connections the user may have." msgstr "Limita el número de conexiones simultáneas que el usuario pueda tener." -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:46 server_privileges.php:187 +#: server_privileges.php:543 msgid "Allows viewing processes of all users" msgstr "Permite ver los procesos de todos los usuarios" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:47 server_privileges.php:189 +#: server_privileges.php:447 server_privileges.php:549 msgid "Has no effect in this MySQL version." msgstr "No tiene efecto en esta versión de MySQL." -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:48 server_privileges.php:185 +#: server_privileges.php:544 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Permite volver a cargar los parámetros del servidor y depurar los cachés del " "servidor." -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:197 +#: server_privileges.php:551 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Da el derecho al usuario para preguntar dónde están los \"esclavos / masters" "\"." -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:50 server_privileges.php:196 +#: server_privileges.php:552 msgid "Needed for the replication slaves." msgstr "Necesario para los \"esclavos\" de replicación." -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:51 server_privileges.php:179 +#: server_privileges.php:438 server_privileges.php:502 msgid "Allows reading data." msgstr "Permite leer los datos." -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:52 server_privileges.php:192 +#: server_privileges.php:546 msgid "Gives access to the complete list of databases." msgstr "Concede acceso a la lista completa de bases de datos." -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:53 server_privileges.php:203 +#: server_privileges.php:205 server_privileges.php:518 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" "Permite llevar a cabo las consultas SHOW CREATE VIEW (MOSTRAR CREAR VER)." -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:54 server_privileges.php:186 +#: server_privileges.php:545 msgid "Allows shutting down the server." msgstr "Permite desconectar el servidor." -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:55 server_privileges.php:193 +#: server_privileges.php:542 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -4852,161 +4918,161 @@ msgstr "" "tales como montar parámetros de variables globales o matar procesos de otros " "usuarios." -#: server_privileges.php:57 server_privileges.php:201 -#: server_privileges.php:535 +#: server_privileges.php:56 server_privileges.php:200 +#: server_privileges.php:534 msgid "Allows creating and dropping triggers" msgstr "Permite crear y eliminar un evento desencadenante" -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:57 server_privileges.php:181 +#: server_privileges.php:444 server_privileges.php:504 msgid "Allows changing data." msgstr "Permite cambiar los datos." -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:58 server_privileges.php:259 msgid "No privileges." msgstr "Sin privilegios." -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:301 server_privileges.php:302 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Ninguna" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1710 server_privileges.php:1716 +#: server_privileges.php:430 server_privileges.php:565 +#: server_privileges.php:1714 server_privileges.php:1720 msgid "Table-specific privileges" msgstr "Privilegios específicos para la tabla" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1532 +#: server_privileges.php:431 server_privileges.php:573 +#: server_privileges.php:1536 msgid " Note: MySQL privilege names are expressed in English " msgstr "" " Nota: Los nombres de los privilegios de MySQL están expresados en inglés " -#: server_privileges.php:563 server_privileges.php:1531 +#: server_privileges.php:562 server_privileges.php:1535 msgid "Global privileges" msgstr "Privilegios globales" -#: server_privileges.php:565 server_privileges.php:1710 +#: server_privileges.php:564 server_privileges.php:1714 msgid "Database-specific privileges" msgstr "Privilegios específicos para la base de datos" -#: server_privileges.php:610 +#: server_privileges.php:609 msgid "Administration" msgstr "Administración" -#: server_privileges.php:630 +#: server_privileges.php:629 msgid "Resource limits" msgstr "Límites de recursos" -#: server_privileges.php:631 +#: server_privileges.php:630 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" "Nota: si cambia los parámetros de estas opciones a 0 (cero), remueve el " "límite." -#: server_privileges.php:708 +#: server_privileges.php:707 msgid "Login Information" msgstr "Información de la cuenta" -#: server_privileges.php:802 +#: server_privileges.php:801 msgid "Do not change the password" msgstr "No cambiar la contraseña" -#: server_privileges.php:835 server_privileges.php:2197 +#: server_privileges.php:834 server_privileges.php:2201 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Usuario(s) no encontrado(s)." -#: server_privileges.php:879 +#: server_privileges.php:878 #, php-format msgid "The user %s already exists!" msgstr "¡El usuario %s ya existe!" -#: server_privileges.php:962 +#: server_privileges.php:961 msgid "You have added a new user." msgstr "Ha agregado un nuevo usuario." -#: server_privileges.php:1183 +#: server_privileges.php:1184 #, php-format msgid "You have updated the privileges for %s." msgstr "Ha actualizado los privilegios para %s." -#: server_privileges.php:1207 +#: server_privileges.php:1208 #, php-format msgid "You have revoked the privileges for %s" msgstr "Ha revocado los privilegios para %s" -#: server_privileges.php:1243 +#: server_privileges.php:1244 #, php-format msgid "The password for %s was changed successfully." msgstr "La contraseña para %s se cambió exitosamente." -#: server_privileges.php:1263 +#: server_privileges.php:1264 #, php-format msgid "Deleting %s" msgstr "Borrando %s" -#: server_privileges.php:1274 +#: server_privileges.php:1275 msgid "No users selected for deleting!" msgstr "¡No se han seleccionado usuarios para eliminar!" -#: server_privileges.php:1277 +#: server_privileges.php:1278 msgid "Reloading the privileges" msgstr "Cargando los privilegios nuevamente" -#: server_privileges.php:1292 +#: server_privileges.php:1296 msgid "The selected users have been deleted successfully." msgstr "Los usuarios seleccionados fueron borrados exitosamente." -#: server_privileges.php:1327 +#: server_privileges.php:1331 msgid "The privileges were reloaded successfully." msgstr "Los privilegios fueron cargados nuevamente de manera exitosa." -#: server_privileges.php:1355 server_privileges.php:1641 +#: server_privileges.php:1359 server_privileges.php:1645 msgid "Edit Privileges" msgstr "Editar los privilegios" -#: server_privileges.php:1364 +#: server_privileges.php:1368 msgid "Revoke" msgstr "Revocar" -#: server_privileges.php:1396 +#: server_privileges.php:1400 msgid "User overview" msgstr "Vista global de usuarios" -#: server_privileges.php:1533 server_privileges.php:1715 -#: server_privileges.php:2064 +#: server_privileges.php:1537 server_privileges.php:1719 +#: server_privileges.php:2068 msgid "Grant" msgstr "Conceder" -#: server_privileges.php:1552 server_privileges.php:2154 +#: server_privileges.php:1556 server_privileges.php:2158 msgid "Any" msgstr "cualquiera" -#: server_privileges.php:1601 server_privileges.php:1625 -#: server_privileges.php:2019 server_privileges.php:2208 +#: server_privileges.php:1605 server_privileges.php:1629 +#: server_privileges.php:2023 server_privileges.php:2212 msgid "Add a new User" msgstr "Agregar un nuevo usuario" -#: server_privileges.php:1606 +#: server_privileges.php:1610 msgid "Remove selected users" msgstr "Eliminar a los usuarios seleccionados" -#: server_privileges.php:1609 +#: server_privileges.php:1613 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Revocar todos los privilegios activos de los usuarios y borrarlos después." -#: server_privileges.php:1610 server_privileges.php:1611 -#: server_privileges.php:1612 +#: server_privileges.php:1614 server_privileges.php:1615 +#: server_privileges.php:1616 msgid "Drop the databases that have the same names as the users." msgstr "" "Eliminar las bases de datos que tienen los mismos nombres que los usuarios." -#: server_privileges.php:1628 +#: server_privileges.php:1632 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -5020,50 +5086,50 @@ msgstr "" "manuales en él. En este caso, nuevamente deberá %scargar la página de " "privilegios%s antes de continuar." -#: server_privileges.php:1676 +#: server_privileges.php:1680 msgid "The selected user was not found in the privilege table." msgstr "El usuario que seleccionó no se halló en la tabla de privilegios." -#: server_privileges.php:1716 +#: server_privileges.php:1720 msgid "Column-specific privileges" msgstr "Privilegios específicos para la columna" -#: server_privileges.php:1917 +#: server_privileges.php:1921 msgid "Add privileges on the following database" msgstr "Añadir privilegios a esta base de datos" -#: server_privileges.php:1935 +#: server_privileges.php:1939 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "Los comodines _ y % deben acompañarse de \\ para usarlos de manera literal" -#: server_privileges.php:1938 +#: server_privileges.php:1942 msgid "Add privileges on the following table" msgstr "Añadir privilegios a esta tabla" -#: server_privileges.php:1995 +#: server_privileges.php:1999 msgid "Change Login Information / Copy User" msgstr "Cambiar la información de la cuenta / Copiar el usuario" -#: server_privileges.php:1998 +#: server_privileges.php:2002 msgid "Create a new user with the same privileges and ..." msgstr "Crear un nuevo usuario con los mismos privilegios y..." -#: server_privileges.php:2000 +#: server_privileges.php:2004 msgid "... keep the old one." msgstr "...mantener el anterior." -#: server_privileges.php:2001 +#: server_privileges.php:2005 msgid " ... delete the old one from the user tables." msgstr " ...borrar el viejo de las tablas de usuario." -#: server_privileges.php:2002 +#: server_privileges.php:2006 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "" " ...revocar todos los privilegios activos del viejo y eliminarlo después." -#: server_privileges.php:2003 +#: server_privileges.php:2007 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -5071,46 +5137,46 @@ msgstr "" " ...borrar el viejo de las tablas de usuario y luego volver a cargar los " "privilegios." -#: server_privileges.php:2025 +#: server_privileges.php:2029 msgid "Database for user" msgstr "Base de datos para el usuario" -#: server_privileges.php:2029 +#: server_privileges.php:2033 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Ninguna" -#: server_privileges.php:2030 +#: server_privileges.php:2034 msgid "Create database with same name and grant all privileges" msgstr "" "Crear base de datos con el mismo nombre y otorgue todos los privilegios" -#: server_privileges.php:2031 +#: server_privileges.php:2035 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" "Otorgue todos los privilegios al nombre que contiene comodín (username\\_%)" -#: server_privileges.php:2034 +#: server_privileges.php:2038 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "Revisar los privilegios para la base de datos "%s"." -#: server_privileges.php:2057 +#: server_privileges.php:2061 #, php-format msgid "Users having access to "%s"" msgstr "Usuarios con acceso a "%s"" -#: server_privileges.php:2165 +#: server_privileges.php:2169 msgid "global" msgstr "global" -#: server_privileges.php:2167 +#: server_privileges.php:2171 msgid "database-specific" msgstr "específico para la base de datos" -#: server_privileges.php:2169 +#: server_privileges.php:2173 msgid "wildcard" msgstr "comodín" @@ -5131,55 +5197,55 @@ msgstr "" msgid "ID" msgstr "Identificación" -#: server_replication.php:50 +#: server_replication.php:49 msgid "Unknown error" msgstr "" -#: server_replication.php:57 +#: server_replication.php:56 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:64 +#: server_replication.php:63 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:70 +#: server_replication.php:69 msgid "Unable to change master" msgstr "" -#: server_replication.php:73 +#: server_replication.php:72 #, php-format msgid "Master server changed succesfully to %s" msgstr "" -#: server_replication.php:181 +#: server_replication.php:180 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:183 server_status.php:391 +#: server_replication.php:182 server_status.php:391 #, fuzzy msgid "Show master status" msgstr "Mostrar el estado del esclavo" -#: server_replication.php:186 +#: server_replication.php:185 msgid "Show connected slaves" msgstr "" -#: server_replication.php:209 +#: server_replication.php:208 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:216 +#: server_replication.php:215 #, fuzzy msgid "Master configuration" msgstr "Configuración del servidor" -#: server_replication.php:217 +#: server_replication.php:216 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -5188,112 +5254,112 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:220 +#: server_replication.php:219 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:221 +#: server_replication.php:220 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:224 +#: server_replication.php:223 #, fuzzy msgid "Please select databases:" msgstr "Seleccionar una base de datos" -#: server_replication.php:227 +#: server_replication.php:226 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: server_replication.php:229 +#: server_replication.php:228 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: server_replication.php:292 +#: server_replication.php:291 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:295 +#: server_replication.php:294 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:304 +#: server_replication.php:303 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:307 +#: server_replication.php:306 msgid "See slave status table" msgstr "" -#: server_replication.php:310 +#: server_replication.php:309 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:321 +#: server_replication.php:320 #, fuzzy msgid "Control slave:" msgstr "Controlar al usuario" -#: server_replication.php:324 +#: server_replication.php:323 #, fuzzy msgid "Full start" msgstr "Texto completo" -#: server_replication.php:324 +#: server_replication.php:323 #, fuzzy msgid "Full stop" msgstr "Texto completo" -#: server_replication.php:325 +#: server_replication.php:324 msgid "Reset slave" msgstr "" -#: server_replication.php:326 +#: server_replication.php:325 #, php-format msgid "SQL Thread %s only" msgstr "" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 #, fuzzy msgid "Start" msgstr "Inicio" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 msgid "Stop" msgstr "" -#: server_replication.php:327 +#: server_replication.php:326 #, php-format msgid "IO Thread %s only" msgstr "" -#: server_replication.php:331 +#: server_replication.php:330 msgid "Error management:" msgstr "" -#: server_replication.php:333 +#: server_replication.php:332 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:335 +#: server_replication.php:334 msgid "Skip current error" msgstr "" -#: server_replication.php:336 +#: server_replication.php:335 msgid "Skip next" msgstr "" -#: server_replication.php:339 +#: server_replication.php:338 msgid "errors." msgstr "" -#: server_replication.php:354 +#: server_replication.php:353 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -6139,117 +6205,117 @@ msgstr "Tipo de consulta" msgid "Replication status" msgstr "Replicación" -#: server_synchronize.php:93 +#: server_synchronize.php:92 #, fuzzy msgid "Could not connect to the source" msgstr "No pudo conectarse con un servidor MySQL" -#: server_synchronize.php:96 +#: server_synchronize.php:95 #, fuzzy msgid "Could not connect to the target" msgstr "No pudo conectarse con un servidor MySQL" -#: server_synchronize.php:121 server_synchronize.php:124 tbl_create.php:77 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:264 +#: server_synchronize.php:263 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:271 +#: server_synchronize.php:270 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:399 server_synchronize.php:838 +#: server_synchronize.php:398 server_synchronize.php:837 msgid "not present" msgstr "" -#: server_synchronize.php:423 server_synchronize.php:866 +#: server_synchronize.php:422 server_synchronize.php:865 #, fuzzy msgid "Structure Difference" msgstr "Estructura para la vista" -#: server_synchronize.php:424 server_synchronize.php:867 +#: server_synchronize.php:423 server_synchronize.php:866 #, fuzzy msgid "Data Difference" msgstr "Estructura para la vista" -#: server_synchronize.php:429 server_synchronize.php:872 +#: server_synchronize.php:428 server_synchronize.php:871 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:430 server_synchronize.php:873 +#: server_synchronize.php:429 server_synchronize.php:872 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:431 server_synchronize.php:874 +#: server_synchronize.php:430 server_synchronize.php:873 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:432 server_synchronize.php:875 +#: server_synchronize.php:431 server_synchronize.php:874 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:433 server_synchronize.php:876 +#: server_synchronize.php:432 server_synchronize.php:875 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:434 server_synchronize.php:877 +#: server_synchronize.php:433 server_synchronize.php:876 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:435 server_synchronize.php:878 +#: server_synchronize.php:434 server_synchronize.php:877 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:445 server_synchronize.php:889 +#: server_synchronize.php:444 server_synchronize.php:888 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:448 server_synchronize.php:893 +#: server_synchronize.php:447 server_synchronize.php:892 msgid "Apply Selected Changes" msgstr "" -#: server_synchronize.php:450 server_synchronize.php:895 +#: server_synchronize.php:449 server_synchronize.php:894 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:463 +#: server_synchronize.php:462 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:941 +#: server_synchronize.php:940 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:1002 +#: server_synchronize.php:1001 msgid "The following queries have been executed:" msgstr "" -#: server_synchronize.php:1121 +#: server_synchronize.php:1120 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1122 +#: server_synchronize.php:1121 #, fuzzy #| msgid "Insecure connection" msgid "Current connection" msgstr "Conexión insegura" -#: server_synchronize.php:1151 +#: server_synchronize.php:1150 #, fuzzy, php-format #| msgid "Configuration file" msgid "Configuration: %s" msgstr "Archivo de configuración" -#: server_synchronize.php:1166 +#: server_synchronize.php:1165 msgid "Socket" msgstr "" -#: server_synchronize.php:1212 +#: server_synchronize.php:1211 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -6857,10 +6923,15 @@ msgid "Signon login options" msgstr "Opciones previo al ingreso de nombre y contraseña" #: setup/lib/messages.inc.php:128 +#, fuzzy +#| msgid "" +#| "Configure phpMyAdmin database to gain access to additional features, see " +#| "[a@../Documentation.html#linked-tables]linked-tables infrastructure[/a] " +#| "in documentation" msgid "" "Configure phpMyAdmin database to gain access to additional features, see " -"[a@../Documentation.html#linked-tables]linked-tables infrastructure[/a] in " -"documentation" +"[a@../Documentation.html#linked-tables]phpMyAdmin configuration storage[/a] " +"in documentation" msgstr "" "Configure la base de datos de phpMyAdmin para ganar acceso a funciones " "adicionales, mire [a@../Documentation.html#linked-tables]linked-tables " @@ -8025,117 +8096,117 @@ msgstr "" msgid "ZIP" msgstr "ZIP" -#: sql.php:495 tbl_replace.php:385 +#: sql.php:494 tbl_replace.php:384 #, php-format msgid "Inserted row id: %1$d" msgstr "La Id de la fila insertada es: %1$d" -#: sql.php:512 +#: sql.php:511 msgid "Showing as PHP code" msgstr "Mostrar como código PHP" -#: sql.php:515 tbl_replace.php:359 +#: sql.php:514 tbl_replace.php:358 msgid "Showing SQL query" msgstr "Mostrando la consulta SQL" -#: sql.php:517 +#: sql.php:516 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Validar el SQL" -#: sql.php:638 +#: sql.php:631 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemas con los índices de la tabla `%s`" -#: sql.php:670 +#: sql.php:663 msgid "Label" msgstr "Etiqueta" -#: tbl_addfield.php:188 tbl_alter.php:102 tbl_indexes.php:97 +#: tbl_addfield.php:185 tbl_alter.php:100 tbl_indexes.php:97 #, php-format msgid "Table %1$s has been altered successfully" msgstr "Los cambios en la Tabla %1$s se hicieron exitosamente" -#: tbl_change.php:250 tbl_select.php:26 tbl_select.php:27 tbl_select.php:30 -#: tbl_select.php:33 +#: tbl_change.php:245 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_select.php:32 msgid "Browse foreign values" msgstr "Mostrar los valores extranjeros" -#: tbl_change.php:280 tbl_change.php:318 +#: tbl_change.php:275 tbl_change.php:313 msgid "Function" msgstr "Función" -#: tbl_change.php:300 tbl_indexes.php:199 tbl_indexes.php:224 +#: tbl_change.php:295 tbl_indexes.php:198 tbl_indexes.php:223 msgid "Ignore" msgstr "Ignorar" -#: tbl_change.php:725 +#: tbl_change.php:720 #, fuzzy #| msgid " Because of its length,
                            this field might not be editable " msgid " Because of its length,
                            this column might not be editable " msgstr " Debido a su longitud,
                            este campo podría no ser editable " -#: tbl_change.php:884 +#: tbl_change.php:835 msgid "Remove BLOB Repository Reference" msgstr "Remueva la referencia al repositorio BLOB" -#: tbl_change.php:890 +#: tbl_change.php:841 msgid "Binary - do not edit" msgstr " Binario - ¡no editar! " -#: tbl_change.php:983 +#: tbl_change.php:889 msgid "Upload to BLOB repository" msgstr "Cargar al repositorio BLOB" -#: tbl_change.php:1128 +#: tbl_change.php:1026 msgid "Insert as new row" msgstr "Insertar como una nueva fila" -#: tbl_change.php:1129 +#: tbl_change.php:1027 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:1130 +#: tbl_change.php:1028 #, fuzzy msgid "Show insert query" msgstr "Mostrando la consulta SQL" -#: tbl_change.php:1145 +#: tbl_change.php:1043 msgid "Go back to previous page" msgstr "Volver" -#: tbl_change.php:1146 +#: tbl_change.php:1044 msgid "Insert another new row" msgstr "Insertar un nuevo registro" -#: tbl_change.php:1150 +#: tbl_change.php:1048 msgid "Go back to this page" msgstr "Volver a esta página" -#: tbl_change.php:1158 +#: tbl_change.php:1056 msgid "Edit next row" msgstr "Editar la siguiente fila" -#: tbl_change.php:1169 +#: tbl_change.php:1067 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Use la tecla TAB para saltar de un valor a otro, o CTRL+flechas para moverse " "a cualquier parte" -#: tbl_change.php:1207 +#: tbl_change.php:1105 #, php-format msgid "Restart insertion with %s rows" msgstr "Reinicie la inserción con %s filas" -#: tbl_create.php:57 +#: tbl_create.php:55 #, php-format msgid "Table %s already exists!" msgstr "¡La tabla %s ya existe!" -#: tbl_create.php:244 +#: tbl_create.php:241 #, php-format msgid "Table %1$s has been created." msgstr "La Tabla %1$s se creó." @@ -8156,197 +8227,197 @@ msgstr "No puede cambiar el nombre del índice a ¡PRIMARY!" msgid "No index parts defined!" msgstr "¡No se han definido las partes del índice!" -#: tbl_indexes.php:159 +#: tbl_indexes.php:158 msgid "Create a new index" msgstr "Crear un nuevo índice" -#: tbl_indexes.php:161 +#: tbl_indexes.php:160 msgid "Modify an index" msgstr "Modificar un índice" -#: tbl_indexes.php:167 +#: tbl_indexes.php:166 msgid "Index name:" msgstr "Nombre del índice :" -#: tbl_indexes.php:173 +#: tbl_indexes.php:172 msgid "Index type:" msgstr "Tipo de índice :" -#: tbl_indexes.php:183 +#: tbl_indexes.php:182 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" "(\"PRIMARY\" exclusivamente debe ser el nombre de ¡una clave " "primaria!)" -#: tbl_indexes.php:250 +#: tbl_indexes.php:249 #, php-format msgid "Add to index  %s column(s)" msgstr "Añadir al índice  %s columna(s)" -#: tbl_indexes.php:255 tbl_structure.php:588 tbl_structure.php:599 +#: tbl_indexes.php:254 tbl_structure.php:586 tbl_structure.php:597 msgid "Column count has to be larger than zero." msgstr "El número de columnas debe ser superior a cero." -#: tbl_move_copy.php:45 +#: tbl_move_copy.php:44 msgid "Can't move table to same one!" msgstr "¡No es posible mover la tabla a la misma!" -#: tbl_move_copy.php:47 +#: tbl_move_copy.php:46 msgid "Can't copy table to same one!" msgstr "¡No es posible copiar la tabla a la misma!" -#: tbl_move_copy.php:55 +#: tbl_move_copy.php:54 #, php-format msgid "Table %s has been moved to %s." msgstr "La tabla %s ha sido movida a %s." -#: tbl_move_copy.php:57 +#: tbl_move_copy.php:56 #, php-format msgid "Table %s has been copied to %s." msgstr "La tabla %s se copió a %s." -#: tbl_move_copy.php:81 +#: tbl_move_copy.php:80 msgid "The table name is empty!" msgstr "¡El nombre de la tabla está vacío!" -#: tbl_operations.php:248 +#: tbl_operations.php:246 msgid "Alter table order by" msgstr "Modificar el ORDER BY de la tabla" -#: tbl_operations.php:257 +#: tbl_operations.php:255 msgid "(singly)" msgstr "(solamente)" -#: tbl_operations.php:277 +#: tbl_operations.php:275 msgid "Move table to (database.table):" msgstr "Mover tabla a (Base de datos.tabla):" -#: tbl_operations.php:335 +#: tbl_operations.php:333 msgid "Table options" msgstr "Opciones de la tabla" -#: tbl_operations.php:339 +#: tbl_operations.php:337 msgid "Rename table to" msgstr "Cambiar el nombre de la tabla a" -#: tbl_operations.php:510 +#: tbl_operations.php:508 msgid "Copy table to (database.table):" msgstr "Copiar la tabla a (base de datos.tabla):" -#: tbl_operations.php:557 +#: tbl_operations.php:555 msgid "Switch to copied table" msgstr "Cambiar (switch) a la tabla copiada" -#: tbl_operations.php:569 +#: tbl_operations.php:567 msgid "Table maintenance" msgstr "Mantenimiento de la tabla" -#: tbl_operations.php:590 +#: tbl_operations.php:588 msgid "Defragment table" msgstr "Defragmentar la tabla" -#: tbl_operations.php:629 +#: tbl_operations.php:627 #, php-format msgid "Table %s has been flushed" msgstr "Se ha vaciado el caché de la tabla %s" -#: tbl_operations.php:635 +#: tbl_operations.php:633 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Vaciar el caché de la tabla (\"FLUSH\")" -#: tbl_operations.php:650 +#: tbl_operations.php:648 msgid "Partition maintenance" msgstr "Mantenimiento de la partición" -#: tbl_operations.php:658 +#: tbl_operations.php:656 #, php-format msgid "Partition %s" msgstr "Partición %s" -#: tbl_operations.php:661 +#: tbl_operations.php:659 msgid "Analyze" msgstr "Analice" -#: tbl_operations.php:662 +#: tbl_operations.php:660 msgid "Check" msgstr "Revise" -#: tbl_operations.php:663 +#: tbl_operations.php:661 msgid "Optimize" msgstr "Optimice" -#: tbl_operations.php:664 +#: tbl_operations.php:662 msgid "Rebuild" msgstr "Reconstruya" -#: tbl_operations.php:665 +#: tbl_operations.php:663 msgid "Repair" msgstr "Repare" -#: tbl_operations.php:677 +#: tbl_operations.php:675 msgid "Remove partitioning" msgstr "Remueva la partición" -#: tbl_operations.php:703 +#: tbl_operations.php:701 msgid "Check referential integrity:" msgstr "Comprobar la integridad referencial:" -#: tbl_printview.php:73 +#: tbl_printview.php:72 msgid "Show tables" msgstr "Mostrar las tablas" -#: tbl_printview.php:308 tbl_structure.php:655 +#: tbl_printview.php:307 tbl_structure.php:653 msgid "Space usage" msgstr "Espacio utilizado" -#: tbl_printview.php:312 tbl_structure.php:659 +#: tbl_printview.php:311 tbl_structure.php:657 msgid "Usage" msgstr "Uso" -#: tbl_printview.php:339 tbl_structure.php:686 +#: tbl_printview.php:338 tbl_structure.php:684 msgid "Effective" msgstr "Efectivo/a" -#: tbl_printview.php:364 tbl_structure.php:724 +#: tbl_printview.php:363 tbl_structure.php:722 msgid "Row Statistics" msgstr "Estadísticas de la fila" -#: tbl_printview.php:367 tbl_structure.php:727 +#: tbl_printview.php:366 tbl_structure.php:725 msgid "Statements" msgstr "Enunciado" -#: tbl_printview.php:378 tbl_structure.php:739 +#: tbl_printview.php:377 tbl_structure.php:737 msgid "static" msgstr "" -#: tbl_printview.php:380 tbl_structure.php:741 +#: tbl_printview.php:379 tbl_structure.php:739 msgid "dynamic" msgstr "dinámico/a" -#: tbl_printview.php:402 tbl_structure.php:784 +#: tbl_printview.php:401 tbl_structure.php:782 msgid "Row length" msgstr "Longitud de la fila" -#: tbl_printview.php:412 tbl_structure.php:792 +#: tbl_printview.php:411 tbl_structure.php:790 msgid " Row size " msgstr " Tamaño de la fila " -#: tbl_relation.php:278 +#: tbl_relation.php:276 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" "Ocurrió un error al crear la llave extranjera en %1$s (revise los data types)" -#: tbl_relation.php:404 +#: tbl_relation.php:402 #, fuzzy #| msgid "Internal relations" msgid "Internal relation" msgstr "Relaciones internas" -#: tbl_relation.php:406 +#: tbl_relation.php:404 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -8354,7 +8425,7 @@ msgstr "" "No es necesaria una relación interna cuando existe una relación LLAVE " "EXTRANJERA correspondiente." -#: tbl_relation.php:412 +#: tbl_relation.php:410 #, fuzzy #| msgid "Foreign key limit" msgid "Foreign key constraint" @@ -8364,233 +8435,233 @@ msgstr "Límite de las llaves extranjeras" msgid "No rows selected" msgstr "No se seleccionaron filas" -#: tbl_select.php:130 +#: tbl_select.php:129 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Hacer una consulta (comodín: \"%\")" -#: tbl_select.php:136 +#: tbl_select.php:135 msgid "Operator" msgstr "Operador" -#: tbl_select.php:267 +#: tbl_select.php:266 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "Seleccionar campos (al menos uno):" -#: tbl_select.php:285 +#: tbl_select.php:284 msgid "Add search conditions (body of the \"where\" clause):" msgstr "" "Insertar las condiciones de búsqueda (cuerpo de la cláusula \"where\"):" -#: tbl_select.php:292 +#: tbl_select.php:291 msgid "Number of rows per page" msgstr "registros por página" -#: tbl_select.php:298 +#: tbl_select.php:297 msgid "Display order:" msgstr "Mostrar en este orden:" -#: tbl_structure.php:160 +#: tbl_structure.php:159 msgid "Browse distinct values" msgstr "Navegar los valores distintivos" -#: tbl_structure.php:360 +#: tbl_structure.php:358 #, fuzzy #| msgid "None" msgctxt "None for default" msgid "None" msgstr "Ninguna" -#: tbl_structure.php:373 +#: tbl_structure.php:371 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Column %s has been dropped" msgstr "Se ha eliminado la tabla %s" -#: tbl_structure.php:384 +#: tbl_structure.php:382 #, php-format msgid "A primary key has been added on %s" msgstr "Se añadió una clave primaria en %s" -#: tbl_structure.php:399 tbl_structure.php:413 tbl_structure.php:427 +#: tbl_structure.php:397 tbl_structure.php:411 tbl_structure.php:425 #, php-format msgid "An index has been added on %s" msgstr "Se añadió un índice en %s" -#: tbl_structure.php:505 tbl_structure.php:507 +#: tbl_structure.php:503 tbl_structure.php:505 msgid "Relation view" msgstr "Vista de relaciones" -#: tbl_structure.php:514 tbl_structure.php:516 +#: tbl_structure.php:512 tbl_structure.php:514 msgid "Propose table structure" msgstr "Planteamiento de la estructura de tabla" -#: tbl_structure.php:539 +#: tbl_structure.php:537 #, fuzzy #| msgid "Add %s field(s)" msgid "Add column" msgstr "Añadir %s campo(s)" -#: tbl_structure.php:553 +#: tbl_structure.php:551 msgid "At End of Table" msgstr "Al final de la tabla" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At Beginning of Table" msgstr "Al comienzo de la tabla" -#: tbl_structure.php:555 +#: tbl_structure.php:553 #, php-format msgid "After %s" msgstr "Después de %s" -#: tbl_structure.php:593 +#: tbl_structure.php:591 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "Crear un índice en %s columna(s)" -#: tbl_structure.php:755 +#: tbl_structure.php:753 msgid "partitioned" msgstr "particionado" -#: tbl_tracking.php:113 +#: tbl_tracking.php:109 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:186 +#: tbl_tracking.php:182 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "" -#: tbl_tracking.php:194 +#: tbl_tracking.php:190 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "" -#: tbl_tracking.php:202 +#: tbl_tracking.php:198 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "" -#: tbl_tracking.php:212 +#: tbl_tracking.php:208 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:219 +#: tbl_tracking.php:215 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:220 +#: tbl_tracking.php:216 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:229 +#: tbl_tracking.php:225 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:250 tbl_tracking.php:378 +#: tbl_tracking.php:245 tbl_tracking.php:373 msgid "Close" msgstr "" -#: tbl_tracking.php:261 +#: tbl_tracking.php:256 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:380 +#: tbl_tracking.php:375 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:396 tbl_tracking.php:503 +#: tbl_tracking.php:391 tbl_tracking.php:498 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "" -#: tbl_tracking.php:409 tbl_tracking.php:460 +#: tbl_tracking.php:404 tbl_tracking.php:455 #, fuzzy msgid "Date" msgstr "Datos" -#: tbl_tracking.php:410 tbl_tracking.php:461 +#: tbl_tracking.php:405 tbl_tracking.php:456 #, fuzzy msgid "Username" msgstr "Usuario:" -#: tbl_tracking.php:411 +#: tbl_tracking.php:406 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:462 +#: tbl_tracking.php:457 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:506 +#: tbl_tracking.php:501 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:507 +#: tbl_tracking.php:502 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:520 +#: tbl_tracking.php:515 #, fuzzy, php-format msgid "Export as %s" msgstr "Exportar las opciones predeterminadas" -#: tbl_tracking.php:560 +#: tbl_tracking.php:555 msgid "Show versions" msgstr "" -#: tbl_tracking.php:592 +#: tbl_tracking.php:587 #, fuzzy msgid "Version" msgstr "Persa" -#: tbl_tracking.php:639 +#: tbl_tracking.php:634 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "" -#: tbl_tracking.php:641 +#: tbl_tracking.php:636 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:652 +#: tbl_tracking.php:647 #, php-format msgid "Activate tracking for %s.%s" msgstr "" -#: tbl_tracking.php:654 +#: tbl_tracking.php:649 msgid "Activate now" msgstr "" -#: tbl_tracking.php:667 +#: tbl_tracking.php:662 #, php-format msgid "Create version %s of %s.%s" msgstr "" -#: tbl_tracking.php:671 +#: tbl_tracking.php:666 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:679 +#: tbl_tracking.php:674 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:687 +#: tbl_tracking.php:682 #, fuzzy msgid "Create version" msgstr "Crear relación" @@ -8642,11 +8713,41 @@ msgstr "Se actualizó el perfil." msgid "VIEW name" msgstr "(VIEW) VER nombre" -#: view_operations.php:92 +#: view_operations.php:91 #, fuzzy msgid "Rename view to" msgstr "Cambiar el nombre de la tabla a" +#~ msgid "BLOB Repository" +#~ msgstr "Repositorio BLOB" + +#, fuzzy +#~| msgid "Enabled" +#~ msgctxt "BLOB repository" +#~ msgid "Enabled" +#~ msgstr "Habilitado" + +#~ msgid "Disable" +#~ msgstr "Deshabilite" + +#~ msgid "Damaged" +#~ msgstr "Dañado" + +#, fuzzy +#~| msgid "Repair" +#~ msgctxt "BLOB repository" +#~ msgid "Repair" +#~ msgstr "Repare" + +#, fuzzy +#~| msgid "Disabled" +#~ msgctxt "BLOB repository" +#~ msgid "Disabled" +#~ msgstr "Deshabilitado" + +#~ msgid "Enable" +#~ msgstr "Habilite" + #~ msgid "" #~ "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " #~ "extension. Please check your PHP configuration." diff --git a/po/et.po b/po/et.po index cd9946290..166762664 100644 --- a/po/et.po +++ b/po/et.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-21 13:53+0200\n" +"POT-Creation-Date: 2010-07-26 17:18+0200\n" "PO-Revision-Date: 2010-03-12 09:14+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: estonian \n" @@ -13,19 +13,19 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.5.3\n" -#: browse_foreigners.php:37 browse_foreigners.php:58 -#: libraries/display_tbl.lib.php:416 server_privileges.php:1506 +#: browse_foreigners.php:36 browse_foreigners.php:57 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1510 msgid "Show all" msgstr "Näita kõiki" -#: browse_foreigners.php:81 libraries/common.lib.php:2313 -#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:393 -#: libraries/export/pdf.php:146 pdf_schema.php:282 pdf_schema.php:1122 -#: pdf_schema.php:1138 +#: browse_foreigners.php:80 libraries/common.lib.php:2318 +#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:392 +#: libraries/export/pdf.php:146 pdf_schema.php:281 pdf_schema.php:1121 +#: pdf_schema.php:1137 msgid "Page number:" msgstr "Lehenumber:" -#: browse_foreigners.php:131 +#: browse_foreigners.php:130 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -35,139 +35,151 @@ msgstr "" "sulgenud või Teie sirvija ei luba akendevahelist suhtlist tänu " "turvaseadetele." -#: browse_foreigners.php:149 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2829 -#: libraries/common.lib.php:2836 libraries/db_links.inc.php:74 -#: libraries/tbl_links.inc.php:62 +#: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 +#: db_structure.php:89 db_structure.php:91 db_structure.php:102 +#: db_structure.php:104 libraries/common.lib.php:2834 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Otsi" -#: browse_foreigners.php:152 db_operations.php:384 db_operations.php:428 -#: db_operations.php:498 db_operations.php:608 db_search.php:344 -#: db_structure.php:566 js/messages.php:48 libraries/Config.class.php:1043 -#: libraries/Theme_Manager.class.php:310 +#: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 +#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 +#: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 -#: libraries/common.lib.php:1340 libraries/common.lib.php:2289 +#: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 -#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:275 -#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:531 -#: libraries/display_tbl.lib.php:613 libraries/replication_gui.lib.php:75 +#: libraries/display_export.lib.php:269 libraries/display_import.lib.php:275 +#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 +#: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 #: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:781 -#: main.php:127 navigation.php:231 pdf_pages.php:291 pdf_pages.php:327 -#: pdf_pages.php:529 pmd_pdf.php:115 server_binlog.php:128 -#: server_privileges.php:664 server_privileges.php:1616 -#: server_privileges.php:1963 server_privileges.php:2010 -#: server_privileges.php:2049 server_replication.php:234 -#: server_replication.php:317 server_replication.php:340 -#: server_synchronize.php:1208 tbl_change.php:328 tbl_change.php:1172 -#: tbl_change.php:1209 tbl_indexes.php:253 tbl_operations.php:264 -#: tbl_operations.php:301 tbl_operations.php:498 tbl_operations.php:560 -#: tbl_operations.php:680 tbl_select.php:324 tbl_structure.php:561 -#: tbl_structure.php:596 tbl_tracking.php:394 tbl_tracking.php:511 -#: view_create.php:181 view_operations.php:100 +#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 +#: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 +#: server_privileges.php:663 server_privileges.php:1620 +#: server_privileges.php:1967 server_privileges.php:2014 +#: server_privileges.php:2053 server_replication.php:233 +#: server_replication.php:316 server_replication.php:339 +#: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 +#: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 +#: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 +#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "Mine" -#: browse_foreigners.php:167 browse_foreigners.php:171 -#: libraries/Index.class.php:441 tbl_tracking.php:319 +#: browse_foreigners.php:166 browse_foreigners.php:170 +#: libraries/Index.class.php:441 tbl_tracking.php:314 msgid "Keyname" msgstr "Võtme nimi" -#: browse_foreigners.php:168 browse_foreigners.php:170 -#: server_collations.php:54 server_collations.php:66 server_engines.php:58 +#: browse_foreigners.php:167 browse_foreigners.php:169 +#: server_collations.php:54 server_collations.php:66 server_engines.php:57 #: server_status.php:738 msgid "Description" msgstr "Kirjeldus" -#: browse_foreigners.php:246 browse_foreigners.php:255 -#: browse_foreigners.php:267 browse_foreigners.php:275 +#: browse_foreigners.php:245 browse_foreigners.php:254 +#: browse_foreigners.php:266 browse_foreigners.php:274 msgid "Use this value" msgstr "Kasuta seda väärtust" -#: db_create.php:45 +#: bs_disp_as_mime_type.php:29 bs_play_media.php:35 +msgid "No blob streaming server configured!" +msgstr "" + +#: bs_disp_as_mime_type.php:35 +msgid "Failed to fetch headers" +msgstr "" + +#: bs_disp_as_mime_type.php:41 +msgid "Failed to open remote URL" +msgstr "" + +#: db_create.php:44 #, fuzzy, php-format msgid "Database %1$s has been created." msgstr "Andmebaas %s kustutatud." -#: db_datadict.php:48 db_operations.php:377 +#: db_datadict.php:48 db_operations.php:313 msgid "Database comment: " msgstr "Andmebaasi kommentaar: " -#: db_datadict.php:164 libraries/tbl_properties.inc.php:723 -#: pdf_schema.php:1235 tbl_operations.php:346 tbl_printview.php:128 +#: db_datadict.php:164 libraries/tbl_properties.inc.php:722 +#: pdf_schema.php:1234 tbl_operations.php:344 tbl_printview.php:127 msgid "Table comments" msgstr "Tabeli kommentaarid" -#: db_datadict.php:173 db_qbe.php:173 libraries/Index.class.php:445 +#: db_datadict.php:173 db_qbe.php:170 libraries/Index.class.php:445 #: libraries/export/htmlword.php:243 libraries/export/latex.php:364 #: libraries/export/odt.php:293 libraries/export/texytext.php:233 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:274 -#: pdf_schema.php:1261 pdf_schema.php:1282 tbl_change.php:306 -#: tbl_indexes.php:188 tbl_printview.php:140 tbl_relation.php:401 -#: tbl_select.php:133 tbl_structure.php:176 tbl_tracking.php:272 -#: tbl_tracking.php:323 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 +#: pdf_schema.php:1260 pdf_schema.php:1281 tbl_change.php:301 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:132 tbl_structure.php:175 tbl_tracking.php:267 +#: tbl_tracking.php:318 #, fuzzy #| msgid "Column names" msgid "Column" msgstr "Väljade nimed" -#: db_datadict.php:174 db_printview.php:105 libraries/Index.class.php:442 +#: db_datadict.php:174 db_printview.php:104 libraries/Index.class.php:442 #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 #: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:244 #: libraries/export/latex.php:364 libraries/export/odt.php:296 #: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:99 -#: pdf_schema.php:1262 pdf_schema.php:1283 server_privileges.php:2062 -#: tbl_change.php:285 tbl_change.php:312 tbl_printview.php:141 -#: tbl_printview.php:311 tbl_select.php:134 tbl_structure.php:177 -#: tbl_structure.php:658 tbl_tracking.php:273 tbl_tracking.php:320 +#: pdf_schema.php:1261 pdf_schema.php:1282 server_privileges.php:2066 +#: tbl_change.php:280 tbl_change.php:307 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:133 tbl_structure.php:176 +#: tbl_structure.php:656 tbl_tracking.php:268 tbl_tracking.php:315 msgid "Type" msgstr "Tüüp" #: db_datadict.php:176 libraries/Index.class.php:448 #: libraries/export/htmlword.php:245 libraries/export/latex.php:364 #: libraries/export/odt.php:299 libraries/export/texytext.php:235 -#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1264 -#: pdf_schema.php:1285 tbl_change.php:321 tbl_printview.php:143 -#: tbl_structure.php:180 tbl_tracking.php:275 tbl_tracking.php:326 +#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1263 +#: pdf_schema.php:1284 tbl_change.php:316 tbl_printview.php:142 +#: tbl_structure.php:179 tbl_tracking.php:270 tbl_tracking.php:321 msgid "Null" msgstr "Null" -#: db_datadict.php:177 db_structure.php:500 libraries/export/htmlword.php:246 +#: db_datadict.php:177 db_structure.php:486 libraries/export/htmlword.php:246 #: libraries/export/latex.php:364 libraries/export/odt.php:302 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:105 -#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 -#: tbl_structure.php:181 tbl_tracking.php:276 +#: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:143 +#: tbl_structure.php:180 tbl_tracking.php:271 msgid "Default" msgstr "Vaikimisi" #: db_datadict.php:181 libraries/export/htmlword.php:248 #: libraries/export/latex.php:366 libraries/export/odt.php:306 -#: libraries/export/texytext.php:238 pdf_schema.php:1267 pdf_schema.php:1288 -#: tbl_printview.php:148 +#: libraries/export/texytext.php:238 pdf_schema.php:1266 pdf_schema.php:1287 +#: tbl_printview.php:147 msgid "Links to" msgstr "Lingib " -#: db_datadict.php:183 db_printview.php:111 libraries/export/htmlword.php:251 +#: db_datadict.php:183 db_printview.php:110 libraries/export/htmlword.php:251 #: libraries/export/latex.php:49 libraries/export/latex.php:369 #: libraries/export/odt.php:37 libraries/export/odt.php:311 #: libraries/export/sql.php:29 libraries/export/texytext.php:241 -#: libraries/tbl_properties.inc.php:129 pdf_schema.php:1278 -#: pdf_schema.php:1289 tbl_printview.php:150 +#: libraries/tbl_properties.inc.php:128 pdf_schema.php:1277 +#: pdf_schema.php:1288 tbl_printview.php:149 msgid "Comments" msgstr "Kommentaarid" #: db_datadict.php:266 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/export/htmlword.php:321 #: libraries/export/latex.php:434 libraries/export/odt.php:367 -#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:262 -#: pdf_schema.php:1343 server_privileges.php:1560 server_privileges.php:1571 -#: server_privileges.php:1881 server_privileges.php:1886 -#: server_privileges.php:2179 sql.php:131 sql.php:193 tbl_printview.php:227 -#: tbl_structure.php:349 tbl_tracking.php:336 tbl_tracking.php:341 +#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:261 +#: pdf_schema.php:1342 server_privileges.php:1564 server_privileges.php:1575 +#: server_privileges.php:1885 server_privileges.php:1890 +#: server_privileges.php:2183 sql.php:130 sql.php:192 tbl_printview.php:226 +#: tbl_structure.php:347 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "Ei" @@ -178,17 +190,17 @@ msgstr "Ei" #: libraries/mult_submits.inc.php:49 libraries/mult_submits.inc.php:54 #: libraries/mult_submits.inc.php:59 libraries/mult_submits.inc.php:91 #: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:105 -#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:261 -#: libraries/mult_submits.inc.php:272 pdf_schema.php:1343 -#: server_databases.php:63 server_privileges.php:1557 -#: server_privileges.php:1571 server_privileges.php:1881 -#: server_privileges.php:1884 server_privileges.php:2179 sql.php:192 -#: tbl_printview.php:227 tbl_structure.php:39 tbl_structure.php:349 -#: tbl_tracking.php:334 tbl_tracking.php:339 +#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:260 +#: libraries/mult_submits.inc.php:271 pdf_schema.php:1342 +#: server_databases.php:61 server_privileges.php:1561 +#: server_privileges.php:1575 server_privileges.php:1885 +#: server_privileges.php:1888 server_privileges.php:2183 sql.php:191 +#: tbl_printview.php:226 tbl_structure.php:38 tbl_structure.php:347 +#: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" msgstr "Jah" -#: db_datadict.php:321 db_printview.php:265 tbl_printview.php:496 +#: db_datadict.php:321 db_printview.php:264 tbl_printview.php:495 msgid "Print" msgstr "Prindi" @@ -196,195 +208,154 @@ msgstr "Prindi" msgid "View dump (schema) of database" msgstr "Vaata andmebaasi väljundit (skeemi)" -#: db_export.php:32 db_printview.php:95 db_qbe.php:101 db_structure.php:50 -#: db_tracking.php:34 export.php:352 navigation.php:326 +#: db_export.php:32 db_printview.php:94 db_qbe.php:98 db_structure.php:49 +#: db_tracking.php:30 export.php:350 navigation.php:325 msgid "No tables found in database." msgstr "Andmebaasist ei leitud tabeleid." -#: db_export.php:42 db_search.php:326 server_export.php:26 +#: db_export.php:42 db_search.php:326 server_export.php:24 msgid "Select All" msgstr "Märgista kõik" -#: db_export.php:44 db_search.php:329 server_export.php:28 +#: db_export.php:44 db_search.php:329 server_export.php:26 msgid "Unselect All" msgstr "Puhasta kõik" -#: db_operations.php:37 tbl_create.php:49 +#: db_operations.php:33 tbl_create.php:47 msgid "The database name is empty!" msgstr "Andmebaasi nimi on tühi!" -#: db_operations.php:235 +#: db_operations.php:231 #, php-format msgid "Database %s has been renamed to %s" msgstr "Andmebaas %s on ümber nimetatud %s" -#: db_operations.php:239 +#: db_operations.php:235 #, php-format msgid "Database %s has been copied to %s" msgstr "Andmebaas %s on kopeeritud %s" -#: db_operations.php:411 +#: db_operations.php:347 msgid "Rename database to" msgstr "Nimeta andmebaas ümber" -#: db_operations.php:416 server_processlist.php:56 +#: db_operations.php:352 server_processlist.php:56 msgid "Command" msgstr "Käsk" -#: db_operations.php:428 tbl_change.php:1141 +#: db_operations.php:364 tbl_change.php:1039 msgid "and then" msgstr "ja siis" -#: db_operations.php:454 +#: db_operations.php:390 msgid "Copy database to" msgstr "Kopeeri andmebaas" -#: db_operations.php:461 tbl_operations.php:527 tbl_tracking.php:387 +#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Ainult struktuur" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:389 +#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Struktuur ja andmed" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:388 +#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Ainult andmed" -#: db_operations.php:471 +#: db_operations.php:407 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE enne kopeerimist" -#: db_operations.php:474 libraries/export/sql.php:51 +#: db_operations.php:410 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 -#: libraries/export/sql.php:81 tbl_operations.php:535 +#: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "Lisa %s" -#: db_operations.php:478 libraries/export/sql.php:77 tbl_operations.php:298 -#: tbl_operations.php:537 +#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Lisa AUTO_INCREMENT väärtus" -#: db_operations.php:482 tbl_operations.php:544 +#: db_operations.php:418 tbl_operations.php:542 msgid "Add constraints" msgstr "Lisa piirangud" -#: db_operations.php:495 +#: db_operations.php:431 msgid "Switch to copied database" msgstr "Mine kopeeritud andmebaasile" -#: db_operations.php:536 -msgid "BLOB Repository" -msgstr "" - -#: db_operations.php:539 db_tracking.php:75 libraries/common.lib.php:1357 -#: libraries/server_links.inc.php:48 server_processlist.php:58 -#: tbl_tracking.php:595 test/theme.php:100 -msgid "Status" -msgstr "Staatus" - -#: db_operations.php:547 -#, fuzzy -#| msgid "Enabled" -msgctxt "BLOB repository" -msgid "Enabled" -msgstr "Lubatud" - -#: db_operations.php:551 -#, fuzzy -msgid "Disable" -msgstr "Keelatud" - -#: db_operations.php:561 -msgid "Damaged" -msgstr "" - -#: db_operations.php:565 -#, fuzzy -msgctxt "BLOB repository" -msgid "Repair" -msgstr "Paranda tabelit" - -#: db_operations.php:573 -#, fuzzy -#| msgid "Disabled" -msgctxt "BLOB repository" -msgid "Disabled" -msgstr "Keelatud" - -#: db_operations.php:577 -#, fuzzy -msgid "Enable" -msgstr "Lubatud" - -#: db_operations.php:601 libraries/Index.class.php:447 +#: db_operations.php:451 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 -#: server_collations.php:53 server_collations.php:65 server_databases.php:110 -#: tbl_operations.php:362 tbl_select.php:135 tbl_structure.php:178 -#: tbl_structure.php:766 tbl_tracking.php:274 tbl_tracking.php:325 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 +#: server_collations.php:53 server_collations.php:65 server_databases.php:108 +#: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:177 +#: tbl_structure.php:764 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "Määrang" -#: db_operations.php:614 main.php:315 pdf_schema.php:33 -#, php-format +#: db_operations.php:464 pdf_schema.php:32 +#, fuzzy, php-format +#| msgid "" +#| "The additional features for working with linked tables have been " +#| "deactivated. To find out why click %shere%s." msgid "" -"The additional features for working with linked tables have been " -"deactivated. To find out why click %shere%s." +"The phpMyAdmin configuration storage has been deactivated. To find out why " +"click %shere%s." msgstr "" "Lisavõimalused töötamiseks lingitud tabelitega on deaktiveeritud. Et lugeda " "miks see nii on, vajutage %ssiia%s." -#: db_operations.php:647 +#: db_operations.php:497 msgid "Edit PDF Pages" msgstr "Muuda PDF lehti" -#: db_printview.php:103 db_tracking.php:71 db_tracking.php:156 +#: db_printview.php:102 db_tracking.php:67 db_tracking.php:152 #: libraries/db_structure.lib.php:37 libraries/export/xml.php:327 -#: libraries/header.inc.php:125 pdf_pages.php:423 server_privileges.php:1657 -#: server_privileges.php:1713 server_privileges.php:1977 -#: server_synchronize.php:422 server_synchronize.php:865 tbl_tracking.php:591 +#: libraries/header.inc.php:125 pdf_pages.php:422 server_privileges.php:1661 +#: server_privileges.php:1717 server_privileges.php:1981 +#: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "Tabel" -#: db_printview.php:104 libraries/db_structure.lib.php:47 +#: db_printview.php:103 libraries/db_structure.lib.php:47 #: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 -#: navigation.php:629 navigation.php:651 server_databases.php:121 -#: tbl_printview.php:392 tbl_structure.php:364 tbl_structure.php:776 +#: navigation.php:628 navigation.php:650 server_databases.php:119 +#: tbl_printview.php:391 tbl_structure.php:362 tbl_structure.php:774 msgid "Rows" msgstr "Ridu" -#: db_printview.php:108 libraries/db_structure.lib.php:58 tbl_indexes.php:189 +#: db_printview.php:107 libraries/db_structure.lib.php:58 tbl_indexes.php:188 msgid "Size" msgstr "Suurus" -#: db_printview.php:161 db_structure.php:456 libraries/export/sql.php:556 +#: db_printview.php:160 db_structure.php:442 libraries/export/sql.php:556 #: libraries/export/sql.php:896 msgid "in use" msgstr "kasutusel" -#: db_printview.php:186 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:511 pdf_schema.php:1240 tbl_printview.php:432 -#: tbl_structure.php:808 +#: db_printview.php:185 libraries/db_info.inc.php:86 +#: libraries/export/sql.php:511 pdf_schema.php:1239 tbl_printview.php:431 +#: tbl_structure.php:806 msgid "Creation" msgstr "Loodud" -#: db_printview.php:195 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:516 pdf_schema.php:1245 tbl_printview.php:442 -#: tbl_structure.php:816 +#: db_printview.php:194 libraries/db_info.inc.php:91 +#: libraries/export/sql.php:516 pdf_schema.php:1244 tbl_printview.php:441 +#: tbl_structure.php:814 msgid "Last update" msgstr "Viimane muudatus" -#: db_printview.php:204 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:521 pdf_schema.php:1250 tbl_printview.php:452 -#: tbl_structure.php:824 +#: db_printview.php:203 libraries/db_info.inc.php:96 +#: libraries/export/sql.php:521 pdf_schema.php:1249 tbl_printview.php:451 +#: tbl_structure.php:822 msgid "Last check" msgstr "Viimane vaatamine" -#: db_printview.php:221 db_structure.php:479 +#: db_printview.php:220 db_structure.php:465 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -392,94 +363,94 @@ msgid_plural "%s tables" msgstr[0] "%s tabel(it)" msgstr[1] "%s tabel(it)" -#: db_qbe.php:28 import.php:453 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1980 libraries/sql_query_form.lib.php:138 -#: tbl_operations.php:212 tbl_relation.php:291 tbl_row_action.php:130 -#: view_operations.php:61 +#: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 +#: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "Teie SQL päring täideti edukalt" -#: db_qbe.php:41 +#: db_qbe.php:38 msgid "You have to choose at least one column to display" msgstr "Te peate valima vähemalt ühe veeru kuvamiseks" -#: db_qbe.php:199 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:865 +#: db_qbe.php:196 libraries/db_structure.lib.php:95 +#: libraries/display_tbl.lib.php:864 msgid "Sort" msgstr "Sorteeri" -#: db_qbe.php:208 db_qbe.php:242 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:522 libraries/display_tbl.lib.php:827 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:259 -#: tbl_select.php:311 +#: db_qbe.php:205 db_qbe.php:239 libraries/db_structure.lib.php:102 +#: libraries/display_tbl.lib.php:521 libraries/display_tbl.lib.php:826 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:257 +#: tbl_select.php:310 msgid "Ascending" msgstr "Kasvav" -#: db_qbe.php:209 db_qbe.php:250 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:527 libraries/display_tbl.lib.php:824 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:260 -#: tbl_select.php:312 +#: db_qbe.php:206 db_qbe.php:247 libraries/db_structure.lib.php:110 +#: libraries/display_tbl.lib.php:526 libraries/display_tbl.lib.php:823 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:258 +#: tbl_select.php:311 msgid "Descending" msgstr "Kahanev" -#: db_qbe.php:263 db_tracking.php:77 libraries/display_tbl.lib.php:307 -#: tbl_change.php:275 tbl_tracking.php:596 +#: db_qbe.php:260 db_tracking.php:73 libraries/display_tbl.lib.php:306 +#: tbl_change.php:270 tbl_tracking.php:591 msgid "Show" msgstr "Näita" -#: db_qbe.php:299 +#: db_qbe.php:296 msgid "Criteria" msgstr "Kriteerium" -#: db_qbe.php:352 db_qbe.php:434 db_qbe.php:526 db_qbe.php:557 +#: db_qbe.php:349 db_qbe.php:431 db_qbe.php:523 db_qbe.php:554 msgid "Ins" msgstr "Ins" -#: db_qbe.php:356 db_qbe.php:438 db_qbe.php:523 db_qbe.php:554 +#: db_qbe.php:353 db_qbe.php:435 db_qbe.php:520 db_qbe.php:551 msgid "And" msgstr "ja" -#: db_qbe.php:365 db_qbe.php:446 db_qbe.php:528 db_qbe.php:559 +#: db_qbe.php:362 db_qbe.php:443 db_qbe.php:525 db_qbe.php:556 msgid "Del" msgstr "Del" -#: db_qbe.php:369 db_qbe.php:450 db_qbe.php:521 db_qbe.php:552 -#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:778 -#: server_privileges.php:297 tbl_change.php:1027 tbl_indexes.php:249 -#: tbl_select.php:285 +#: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 +#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:777 +#: server_privileges.php:296 tbl_change.php:925 tbl_indexes.php:248 +#: tbl_select.php:284 msgid "Or" msgstr "või" -#: db_qbe.php:506 +#: db_qbe.php:503 msgid "Modify" msgstr "Muuda" -#: db_qbe.php:583 +#: db_qbe.php:580 #, fuzzy #| msgid "Add/Delete Criteria Row" msgid "Add/Delete criteria rows" msgstr "Lisa/Kustuta kriteeriumirida" -#: db_qbe.php:595 +#: db_qbe.php:592 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Add/Delete columns" msgstr "Lisa/Kustuta välja veerud" -#: db_qbe.php:608 db_qbe.php:633 +#: db_qbe.php:605 db_qbe.php:630 msgid "Update Query" msgstr "Uuenda päringut" -#: db_qbe.php:616 +#: db_qbe.php:613 msgid "Use Tables" msgstr "Kasuta tabeleid" -#: db_qbe.php:639 +#: db_qbe.php:636 #, php-format msgid "SQL query on database %s:" msgstr "SQL-päring andmebaasist %s:" -#: db_qbe.php:933 libraries/common.lib.php:1222 +#: db_qbe.php:930 libraries/common.lib.php:1215 msgid "Submit Query" msgstr "Lae päring" @@ -519,17 +490,17 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s vaste(t) tabelis %s" msgstr[1] "%s vaste(t) tabelis %s" -#: db_search.php:249 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2831 -#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:49 -#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:466 +#: db_search.php:249 db_structure.php:75 db_structure.php:76 +#: db_structure.php:88 db_structure.php:90 db_structure.php:101 +#: db_structure.php:103 libraries/common.lib.php:2836 +#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 +#: tbl_structure.php:35 tbl_structure.php:47 tbl_structure.php:464 msgid "Browse" msgstr "Vaata" -#: db_search.php:254 libraries/display_tbl.lib.php:1164 -#: libraries/display_tbl.lib.php:2055 libraries/sql_query_form.lib.php:453 -#: pdf_pages.php:285 pdf_pages.php:424 pdf_pages.php:460 pdf_pages.php:488 +#: db_search.php:254 libraries/display_tbl.lib.php:1163 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 msgid "Delete" @@ -569,233 +540,239 @@ msgstr "Otsi tabeli(te)st:" msgid "Inside column:" msgstr "Otsi tabeli(te)st:" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2830 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:75 +#: db_structure.php:79 db_structure.php:80 db_structure.php:92 +#: db_structure.php:93 db_structure.php:105 db_structure.php:106 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 +#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Lisa" -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2827 libraries/common.lib.php:2834 -#: libraries/db_links.inc.php:62 libraries/export/htmlword.php:22 +#: db_structure.php:81 db_structure.php:94 db_structure.php:107 +#: libraries/common.lib.php:2832 libraries/common.lib.php:2839 +#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 -#: libraries/tbl_links.inc.php:55 pmd_general.php:133 -#: server_privileges.php:593 server_replication.php:314 tbl_tracking.php:268 +#: libraries/tbl_links.inc.php:54 pmd_general.php:133 +#: server_privileges.php:592 server_replication.php:313 tbl_tracking.php:263 msgid "Structure" msgstr "Struktuur" -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:544 db_structure.php:545 db_tracking.php:90 -#: libraries/Index.class.php:482 libraries/common.lib.php:1659 -#: libraries/db_links.inc.php:99 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:126 -#: server_databases.php:351 tbl_structure.php:26 tbl_structure.php:150 -#: tbl_structure.php:151 tbl_structure.php:470 +#: db_structure.php:82 db_structure.php:83 db_structure.php:95 +#: db_structure.php:96 db_structure.php:108 db_structure.php:109 +#: db_structure.php:530 db_structure.php:531 db_tracking.php:86 +#: libraries/Index.class.php:482 libraries/common.lib.php:1663 +#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 +#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 +#: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" msgstr "Kustuta" -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:542 db_structure.php:543 libraries/common.lib.php:1658 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:104 +#: db_structure.php:84 db_structure.php:85 db_structure.php:97 +#: db_structure.php:98 db_structure.php:110 db_structure.php:111 +#: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 +#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 msgid "Empty" msgstr "Tühjenda" -#: db_structure.php:315 libraries/tbl_links.inc.php:99 +#: db_structure.php:301 libraries/tbl_links.inc.php:98 #, php-format msgid "Table %s has been emptied" msgstr "Tabel %s tühjendatud" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "View %s has been dropped" msgstr "Vaade %s on kustutatud" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "Table %s has been dropped" msgstr "Tabel %s kustutatud" -#: db_structure.php:332 +#: db_structure.php:318 msgid "Tracking is active." msgstr "" -#: db_structure.php:334 +#: db_structure.php:320 msgid "Tracking is not active." msgstr "" -#: db_structure.php:419 libraries/display_tbl.lib.php:1943 +#: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -#: db_structure.php:433 db_structure.php:447 libraries/header.inc.php:125 -#: libraries/tbl_info.inc.php:65 tbl_structure.php:184 test/theme.php:73 +#: db_structure.php:419 db_structure.php:433 libraries/header.inc.php:125 +#: libraries/tbl_info.inc.php:60 tbl_structure.php:183 test/theme.php:73 msgid "View" msgstr "Vaade" -#: db_structure.php:484 libraries/db_structure.lib.php:40 -#: libraries/server_links.inc.php:69 server_replication.php:32 -#: server_replication.php:163 server_status.php:368 +#: db_structure.php:470 libraries/db_structure.lib.php:40 +#: libraries/server_links.inc.php:69 server_replication.php:31 +#: server_replication.php:162 server_status.php:368 msgid "Replication" msgstr "Tiražeerimine" -#: db_structure.php:488 +#: db_structure.php:474 msgid "Sum" msgstr "Summa" -#: db_structure.php:495 libraries/StorageEngine.class.php:349 +#: db_structure.php:481 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s on vaikimisi varundusmootor sellele MySQL serverile." -#: db_structure.php:523 db_structure.php:540 db_structure.php:541 -#: libraries/display_tbl.lib.php:2080 libraries/display_tbl.lib.php:2085 -#: libraries/mult_submits.inc.php:15 server_databases.php:345 -#: server_databases.php:350 server_privileges.php:1588 tbl_structure.php:454 -#: tbl_structure.php:463 +#: db_structure.php:509 db_structure.php:526 db_structure.php:527 +#: libraries/display_tbl.lib.php:2039 libraries/display_tbl.lib.php:2044 +#: libraries/mult_submits.inc.php:15 server_databases.php:343 +#: server_databases.php:348 server_privileges.php:1592 tbl_structure.php:452 +#: tbl_structure.php:461 msgid "With selected:" msgstr "Valitud:" -#: db_structure.php:526 libraries/display_tbl.lib.php:2075 -#: server_databases.php:347 server_privileges.php:569 -#: server_privileges.php:1591 tbl_structure.php:457 +#: db_structure.php:512 libraries/display_tbl.lib.php:2034 +#: server_databases.php:345 server_privileges.php:568 +#: server_privileges.php:1595 tbl_structure.php:455 msgid "Check All" msgstr "Märgista kõik" -#: db_structure.php:530 libraries/display_tbl.lib.php:2076 -#: libraries/replication_gui.lib.php:35 server_databases.php:349 -#: server_privileges.php:572 server_privileges.php:1595 tbl_structure.php:461 +#: db_structure.php:516 libraries/display_tbl.lib.php:2035 +#: libraries/replication_gui.lib.php:35 server_databases.php:347 +#: server_privileges.php:571 server_privileges.php:1599 tbl_structure.php:459 msgid "Uncheck All" msgstr "Puhasta kõik" -#: db_structure.php:535 +#: db_structure.php:521 msgid "Check tables having overhead" msgstr "Kontrolli ülekulusid" -#: db_structure.php:546 db_structure.php:547 db_structure.php:598 -#: libraries/display_tbl.lib.php:2179 libraries/mult_submits.inc.php:27 -#: tbl_structure.php:491 tbl_structure.php:493 +#: db_structure.php:532 db_structure.php:533 db_structure.php:584 +#: libraries/display_tbl.lib.php:2138 libraries/mult_submits.inc.php:27 +#: tbl_structure.php:489 tbl_structure.php:491 msgid "Print view" msgstr "Trükivaade" -#: db_structure.php:548 db_structure.php:549 libraries/mult_submits.inc.php:41 -#: tbl_operations.php:580 +#: db_structure.php:534 db_structure.php:535 libraries/mult_submits.inc.php:41 +#: tbl_operations.php:578 msgid "Check table" msgstr "Kontrolli tabelit" -#: db_structure.php:550 db_structure.php:551 libraries/mult_submits.inc.php:46 -#: tbl_operations.php:620 tbl_structure.php:708 tbl_structure.php:710 +#: db_structure.php:536 db_structure.php:537 libraries/mult_submits.inc.php:46 +#: tbl_operations.php:618 tbl_structure.php:706 tbl_structure.php:708 msgid "Optimize table" msgstr "Optimiseeri tabelit" -#: db_structure.php:552 db_structure.php:553 libraries/mult_submits.inc.php:51 -#: tbl_operations.php:610 +#: db_structure.php:538 db_structure.php:539 libraries/mult_submits.inc.php:51 +#: tbl_operations.php:608 msgid "Repair table" msgstr "Paranda tabelit" -#: db_structure.php:554 db_structure.php:555 libraries/mult_submits.inc.php:56 -#: tbl_operations.php:600 +#: db_structure.php:540 db_structure.php:541 libraries/mult_submits.inc.php:56 +#: tbl_operations.php:598 msgid "Analyze table" msgstr "Analüüsi tabelit" -#: db_structure.php:556 db_structure.php:557 libraries/db_links.inc.php:70 -#: libraries/display_export.lib.php:82 libraries/display_tbl.lib.php:2093 -#: libraries/display_tbl.lib.php:2224 libraries/mult_submits.inc.php:61 -#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:81 -#: pmd_pdf.php:83 pmd_pdf.php:108 server_privileges.php:1372 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 +#: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 +#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 +#: pmd_pdf.php:81 pmd_pdf.php:106 server_privileges.php:1376 #: setup/frames/menu.inc.php:22 tbl_row_action.php:58 msgid "Export" msgstr "Ekspordi" -#: db_structure.php:605 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:591 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "Andmesõnastik" -#: db_tracking.php:65 +#: db_tracking.php:61 #, fuzzy msgid "Tracked tables" msgstr "Kontrolli tabelit" -#: db_tracking.php:70 libraries/export/htmlword.php:85 +#: db_tracking.php:66 libraries/export/htmlword.php:85 #: libraries/export/latex.php:152 libraries/export/odt.php:112 #: libraries/export/sql.php:339 libraries/export/texytext.php:84 #: libraries/export/xml.php:254 libraries/header.inc.php:105 -#: libraries/header_printview.inc.php:57 server_databases.php:168 -#: server_privileges.php:1652 server_privileges.php:1713 -#: server_privileges.php:1971 server_processlist.php:55 -#: server_synchronize.php:1178 server_synchronize.php:1182 -#: tbl_tracking.php:590 test/theme.php:64 +#: libraries/header_printview.inc.php:57 server_databases.php:166 +#: server_privileges.php:1656 server_privileges.php:1717 +#: server_privileges.php:1975 server_processlist.php:55 +#: server_synchronize.php:1177 server_synchronize.php:1181 +#: tbl_tracking.php:585 test/theme.php:64 msgid "Database" msgstr "Andmebaas" -#: db_tracking.php:72 +#: db_tracking.php:68 #, fuzzy msgid "Last version" msgstr "Suhte loomine (relation)" -#: db_tracking.php:73 tbl_tracking.php:593 +#: db_tracking.php:69 tbl_tracking.php:588 #, fuzzy msgid "Created" msgstr "Loo" -#: db_tracking.php:74 tbl_tracking.php:594 +#: db_tracking.php:70 tbl_tracking.php:589 msgid "Updated" msgstr "" -#: db_tracking.php:76 libraries/Index.class.php:439 -#: libraries/db_structure.lib.php:44 server_databases.php:202 -#: server_privileges.php:1534 server_privileges.php:1717 -#: server_privileges.php:2065 tbl_structure.php:186 +#: db_tracking.php:71 libraries/common.lib.php:1361 +#: libraries/server_links.inc.php:48 server_processlist.php:58 +#: tbl_tracking.php:590 test/theme.php:100 +msgid "Status" +msgstr "Staatus" + +#: db_tracking.php:72 libraries/Index.class.php:439 +#: libraries/db_structure.lib.php:44 server_databases.php:200 +#: server_privileges.php:1538 server_privileges.php:1721 +#: server_privileges.php:2069 tbl_structure.php:185 msgid "Action" msgstr "Tegevus" -#: db_tracking.php:87 db_tracking.php:119 +#: db_tracking.php:83 db_tracking.php:115 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:105 tbl_tracking.php:547 tbl_tracking.php:605 -#: tbl_tracking.php:612 +#: db_tracking.php:101 tbl_tracking.php:542 tbl_tracking.php:600 +#: tbl_tracking.php:607 msgid "active" msgstr "" -#: db_tracking.php:107 tbl_tracking.php:549 tbl_tracking.php:607 -#: tbl_tracking.php:609 +#: db_tracking.php:103 tbl_tracking.php:544 tbl_tracking.php:602 +#: tbl_tracking.php:604 msgid "not active" msgstr "" -#: db_tracking.php:120 +#: db_tracking.php:116 #, fuzzy msgid "Versions" msgstr "Pärsia" -#: db_tracking.php:121 tbl_tracking.php:378 tbl_tracking.php:623 +#: db_tracking.php:117 tbl_tracking.php:373 tbl_tracking.php:618 msgid "Tracking report" msgstr "" -#: db_tracking.php:122 tbl_tracking.php:250 tbl_tracking.php:623 +#: db_tracking.php:118 tbl_tracking.php:245 tbl_tracking.php:618 #, fuzzy msgid "Structure snapshot" msgstr "Ainult struktuur" -#: db_tracking.php:151 +#: db_tracking.php:147 #, fuzzy msgid "Untracked tables" msgstr "Kontrolli tabelit" -#: db_tracking.php:171 db_tracking.php:173 tbl_structure.php:527 -#: tbl_structure.php:529 +#: db_tracking.php:167 db_tracking.php:169 tbl_structure.php:525 +#: tbl_structure.php:527 #, fuzzy msgid "Track table" msgstr "Kontrolli tabelit" -#: db_tracking.php:199 +#: db_tracking.php:195 #, fuzzy msgid "Database Log" msgstr "Andmebaas" @@ -804,12 +781,12 @@ msgstr "Andmebaas" msgid "Selected export type has to be saved in file!" msgstr "Valitud eksportimise tüüp tuleb salvestada faili!" -#: export.php:153 export.php:178 export.php:620 +#: export.php:152 export.php:177 export.php:615 #, php-format msgid "Insufficient space to save the file %s." msgstr "Liiga vähe kettaruumi, et salvestada fail %s." -#: export.php:287 +#: export.php:286 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -817,17 +794,17 @@ msgstr "" "Fail %s on juba serveris olemas, muutke faili nime või kontrollige " "ülekirjutamise seadeid." -#: export.php:291 export.php:295 +#: export.php:290 export.php:294 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Webiserver ei oma õigusi , et salvestada fail %s." -#: export.php:622 +#: export.php:617 #, php-format msgid "Dump has been saved to file %s." msgstr "Väljavõte salvestati faili %s." -#: import.php:59 +#: import.php:58 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -836,14 +813,14 @@ msgstr "" "Te kindlasti proovisite laadida liiga suurt faili. Palun uuri " "dokumentatsiooni %sdocumentation%s selle limiidi seadmiseks." -#: import.php:278 import.php:331 libraries/File.class.php:840 -#: libraries/File.class.php:950 +#: import.php:277 import.php:330 libraries/File.class.php:566 +#: libraries/File.class.php:676 msgid "File could not be read" msgstr "Faili ei suudetud lugeda" -#: import.php:286 import.php:295 import.php:314 import.php:323 -#: libraries/File.class.php:1020 libraries/File.class.php:1028 -#: libraries/File.class.php:1044 libraries/File.class.php:1052 +#: import.php:285 import.php:294 import.php:313 import.php:322 +#: libraries/File.class.php:746 libraries/File.class.php:754 +#: libraries/File.class.php:770 libraries/File.class.php:778 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -852,7 +829,7 @@ msgstr "" "Proovisid laadida faili tundmatu pakkimisega (%s). Võimalik et toetus ei ole " "veel lisatud või on sinu seadetes keelatud." -#: import.php:336 +#: import.php:335 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -862,29 +839,29 @@ msgstr "" "faili suurus ületab maksimaalset suurust lubatud PHP seadetes. Vaata FAQ " "1.16." -#: import.php:371 libraries/display_import.lib.php:23 +#: import.php:370 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "Pole võimalik Importida mooduleid (plugins), palun kontrolli seadeid!" -#: import.php:396 +#: import.php:395 msgid "The bookmark has been deleted." msgstr "Järjehodja kustutati." -#: import.php:400 +#: import.php:399 msgid "Showing bookmark" msgstr "Näitan järjehoidjat" -#: import.php:402 sql.php:625 +#: import.php:401 sql.php:618 #, php-format msgid "Bookmark %s created" msgstr "Järjehoidja %s loodud" -#: import.php:408 import.php:414 +#: import.php:407 import.php:413 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Import lõppetati edukalt, %d päringut käivitatud." -#: import.php:423 +#: import.php:422 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -892,7 +869,7 @@ msgstr "" "Skripti ajalimiit on ületatud, kui soovid importimist jätkata, palun lae " "sama fail uuesti ja import jätkub." -#: import.php:425 +#: import.php:424 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -901,19 +878,19 @@ msgstr "" "phpMyAdmin pole võimeline Importi lõpetama, kui sa php skripti aega ei " "pikenda." -#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:240 +#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:239 #: user_password.php:110 msgid "Back" msgstr "Tagasi" -#: index.php:188 +#: index.php:183 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin on sõbralikum frame toetava browseriga." -#: js/messages.php:25 server_synchronize.php:344 server_synchronize.php:356 -#: server_synchronize.php:372 server_synchronize.php:379 -#: server_synchronize.php:738 server_synchronize.php:766 -#: server_synchronize.php:794 server_synchronize.php:806 +#: js/messages.php:25 server_synchronize.php:343 server_synchronize.php:355 +#: server_synchronize.php:371 server_synchronize.php:378 +#: server_synchronize.php:737 server_synchronize.php:765 +#: server_synchronize.php:793 server_synchronize.php:805 msgid "Click to select" msgstr "" @@ -921,15 +898,15 @@ msgstr "" msgid "Click to unselect" msgstr "" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:88 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:87 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" käsud keelatud." -#: js/messages.php:30 libraries/mult_submits.inc.php:257 sql.php:187 +#: js/messages.php:30 libraries/mult_submits.inc.php:256 sql.php:186 msgid "Do you really want to " msgstr "Kas te tõesti tahate " -#: js/messages.php:31 libraries/mult_submits.inc.php:257 sql.php:171 +#: js/messages.php:31 libraries/mult_submits.inc.php:256 sql.php:170 msgid "You are about to DESTROY a complete database!" msgstr "Tähelepanu! Te HÄVITATE kogu andmebaasi!" @@ -958,11 +935,11 @@ msgstr "Masin on tühi!" msgid "The user name is empty!" msgstr "Kasutajanimi on tühi!" -#: js/messages.php:44 server_privileges.php:1228 user_password.php:65 +#: js/messages.php:44 server_privileges.php:1229 user_password.php:65 msgid "The password is empty!" msgstr "Parool on tühi!" -#: js/messages.php:45 server_privileges.php:1226 user_password.php:68 +#: js/messages.php:45 server_privileges.php:1227 user_password.php:68 msgid "The passwords aren't the same!" msgstr "Paroolid ei ühti!" @@ -970,27 +947,27 @@ msgstr "Paroolid ei ühti!" msgid "Cancel" msgstr "Katkesta" -#: js/messages.php:52 pmd_save_pos.php:53 +#: js/messages.php:52 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "Muutused salvestatud" -#: js/messages.php:53 pmd_relation_upd.php:48 +#: js/messages.php:53 pmd_relation_upd.php:47 msgid "Relation deleted" msgstr "Suhe kustutatud" -#: js/messages.php:54 pmd_relation_new.php:63 +#: js/messages.php:54 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:55 pmd_relation_new.php:85 +#: js/messages.php:55 pmd_relation_new.php:84 msgid "Internal relation added" msgstr "Sisemine suhe loodud" -#: js/messages.php:56 pmd_relation_new.php:62 pmd_relation_new.php:87 +#: js/messages.php:56 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:57 pmd_relation_new.php:30 +#: js/messages.php:57 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "" @@ -998,13 +975,13 @@ msgstr "" msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:59 libraries/relation.lib.php:94 -#: libraries/relation.lib.php:106 +#: js/messages.php:59 libraries/relation.lib.php:89 +#: libraries/relation.lib.php:101 msgid "General relation features" msgstr "Peamised seoste võimalused" -#: js/messages.php:59 libraries/relation.lib.php:88 -#: libraries/relation.lib.php:95 +#: js/messages.php:59 libraries/relation.lib.php:83 +#: libraries/relation.lib.php:90 msgid "Disabled" msgstr "Keelatud" @@ -1020,7 +997,7 @@ msgstr "Vali võõrvõti(Foreign Key)" msgid "Please select the primary key or a unique key" msgstr "Palun vali primaarne või unkaalne võti" -#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:547 +#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" @@ -1050,10 +1027,10 @@ msgid "Prev" msgstr "Eelmine" #. l10n: Display text for next month link in calendar -#: js/messages.php:81 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:337 -#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:422 -#: tbl_structure.php:800 +#: js/messages.php:81 libraries/common.lib.php:2358 +#: libraries/common.lib.php:2361 libraries/display_tbl.lib.php:336 +#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 +#: tbl_structure.php:798 msgid "Next" msgstr "Järgmine" @@ -1127,27 +1104,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1562 +#: js/messages.php:101 libraries/common.lib.php:1566 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1564 +#: js/messages.php:103 libraries/common.lib.php:1568 msgid "Feb" msgstr "Veb" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1566 +#: js/messages.php:105 libraries/common.lib.php:1570 msgid "Mar" msgstr "Mär" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1568 +#: js/messages.php:107 libraries/common.lib.php:1572 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1570 +#: js/messages.php:109 libraries/common.lib.php:1574 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1155,37 +1132,37 @@ msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1572 +#: js/messages.php:111 libraries/common.lib.php:1576 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1574 +#: js/messages.php:113 libraries/common.lib.php:1578 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1576 +#: js/messages.php:115 libraries/common.lib.php:1580 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1578 +#: js/messages.php:117 libraries/common.lib.php:1582 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1580 +#: js/messages.php:119 libraries/common.lib.php:1584 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:121 libraries/common.lib.php:1582 +#: js/messages.php:121 libraries/common.lib.php:1586 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:123 libraries/common.lib.php:1584 +#: js/messages.php:123 libraries/common.lib.php:1588 msgid "Dec" msgstr "Det" @@ -1226,37 +1203,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1587 +#: js/messages.php:136 libraries/common.lib.php:1591 msgid "Sun" msgstr "Püh" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1589 +#: js/messages.php:138 libraries/common.lib.php:1593 msgid "Mon" msgstr "Esm" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1591 +#: js/messages.php:140 libraries/common.lib.php:1595 msgid "Tue" msgstr "Tei" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1593 +#: js/messages.php:142 libraries/common.lib.php:1597 msgid "Wed" msgstr "Kol" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1595 +#: js/messages.php:144 libraries/common.lib.php:1599 msgid "Thu" msgstr "Nel" #. l10n: Short week day name -#: js/messages.php:146 libraries/common.lib.php:1597 +#: js/messages.php:146 libraries/common.lib.php:1601 msgid "Fri" msgstr "Ree" #. l10n: Short week day name -#: js/messages.php:148 libraries/common.lib.php:1599 +#: js/messages.php:148 libraries/common.lib.php:1603 msgid "Sat" msgstr "Lau" @@ -1334,76 +1311,75 @@ msgstr "sekundis" msgid "Font size" msgstr "Fondi suurus" -#: libraries/File.class.php:336 libraries/File.class.php:424 -#: libraries/File.class.php:561 libraries/File.class.php:700 -msgid "Unknown error in file upload." -msgstr "" - -#: libraries/File.class.php:406 +#: libraries/File.class.php:315 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:409 +#: libraries/File.class.php:318 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:412 +#: libraries/File.class.php:321 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:415 +#: libraries/File.class.php:324 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:418 +#: libraries/File.class.php:327 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:421 +#: libraries/File.class.php:330 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:898 +#: libraries/File.class.php:333 +msgid "Unknown error in file upload." +msgstr "" + +#: libraries/File.class.php:624 #, 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:427 tbl_relation.php:528 +#: libraries/Index.class.php:427 tbl_relation.php:526 msgid "No index defined!" msgstr "Indeksit pole defineeritud!" -#: libraries/Index.class.php:432 server_databases.php:131 tbl_tracking.php:315 +#: libraries/Index.class.php:432 server_databases.php:129 tbl_tracking.php:310 msgid "Indexes" msgstr "Indeksid" #: libraries/Index.class.php:443 libraries/mult_submits.inc.php:102 -#: libraries/tbl_properties.inc.php:518 tbl_structure.php:32 -#: tbl_structure.php:154 tbl_structure.php:158 tbl_structure.php:473 -#: tbl_tracking.php:321 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:31 +#: tbl_structure.php:153 tbl_structure.php:157 tbl_structure.php:471 +#: tbl_tracking.php:316 msgid "Unique" msgstr "Unikaalne" -#: libraries/Index.class.php:444 tbl_tracking.php:322 +#: libraries/Index.class.php:444 tbl_tracking.php:317 msgid "Packed" msgstr "" -#: libraries/Index.class.php:446 tbl_tracking.php:324 +#: libraries/Index.class.php:446 tbl_tracking.php:319 msgid "Cardinality" msgstr "Kasulikkus" -#: libraries/Index.class.php:449 tbl_tracking.php:278 tbl_tracking.php:327 +#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322 #, fuzzy msgid "Comment" msgstr "Kommentaarid" #: libraries/Index.class.php:465 libraries/common.lib.php:609 -#: libraries/common.lib.php:1198 libraries/display_tbl.lib.php:1116 +#: libraries/common.lib.php:1191 libraries/display_tbl.lib.php:1115 #: libraries/import.lib.php:1119 libraries/import.lib.php:1143 -#: pdf_pages.php:284 setup/frames/index.inc.php:124 +#: pdf_pages.php:283 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:349 tbl_row_action.php:68 msgid "Edit" msgstr "Muuda" @@ -1425,15 +1401,15 @@ msgid "" msgstr "" #: libraries/List_Database.class.php:430 libraries/server_links.inc.php:40 -#: server_databases.php:87 server_privileges.php:1652 +#: server_databases.php:85 server_privileges.php:1656 #: setup/lib/messages.inc.php:107 test/theme.php:92 msgid "Databases" msgstr "Andmebaasid" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:259 libraries/import.lib.php:134 pdf_schema.php:31 -#: pdf_schema.php:231 tbl_change.php:1023 tbl_operations.php:212 -#: tbl_relation.php:289 view_operations.php:61 +#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 +#: tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Viga" @@ -1460,40 +1436,40 @@ msgid_plural "%1$d rows inserted." msgstr[0] "Ridu pole valitud" msgstr[1] "Ridu pole valitud" -#: libraries/StorageEngine.class.php:196 +#: libraries/StorageEngine.class.php:194 msgid "" "There is no detailed status information available for this storage engine." msgstr "Detailne seisuinformatsioon antud varundusmootori kohta puudub." -#: libraries/StorageEngine.class.php:352 +#: libraries/StorageEngine.class.php:354 #, php-format msgid "%s is available on this MySQL server." msgstr "%s on saadaval selles MySQL serveris." -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:357 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s on keelatud selles MySQL serveris." -#: libraries/StorageEngine.class.php:359 +#: libraries/StorageEngine.class.php:361 #, 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:1018 +#: libraries/Table.class.php:1017 msgid "Invalid database" msgstr "Vigane andmebaas" -#: libraries/Table.class.php:1032 tbl_get_field.php:25 +#: libraries/Table.class.php:1031 tbl_get_field.php:25 msgid "Invalid table name" msgstr "Vigane tabeli nimi" -#: libraries/Table.class.php:1047 +#: libraries/Table.class.php:1046 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "Viga tabeli nime %1$s muutimsel %2$s" -#: libraries/Table.class.php:1131 +#: libraries/Table.class.php:1129 #, php-format msgid "Table %s has been renamed to %s" msgstr "Tabel %s on ümber nimetatud %s" @@ -1511,22 +1487,22 @@ msgstr "Eelvaade pole saadaval." msgid "take it" msgstr "võta see" -#: libraries/Theme_Manager.class.php:114 +#: 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:152 +#: libraries/Theme_Manager.class.php:147 #, php-format msgid "Theme %s not found!" msgstr "Ei leia teemat %s!" -#: libraries/Theme_Manager.class.php:220 +#: 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:296 test/theme.php:160 themes.php:20 +#: libraries/Theme_Manager.class.php:291 test/theme.php:160 themes.php:20 #: themes.php:40 msgid "Theme / Style" msgstr "Teema / Stiil" @@ -1639,19 +1615,19 @@ msgstr "" msgid "Authenticating..." msgstr "" -#: libraries/blobstreaming.lib.php:689 +#: libraries/blobstreaming.lib.php:340 msgid "View image" msgstr "" -#: libraries/blobstreaming.lib.php:693 +#: libraries/blobstreaming.lib.php:344 msgid "Play audio" msgstr "" -#: libraries/blobstreaming.lib.php:698 +#: libraries/blobstreaming.lib.php:349 msgid "View video" msgstr "" -#: libraries/blobstreaming.lib.php:702 +#: libraries/blobstreaming.lib.php:353 msgid "Download file" msgstr "" @@ -1706,7 +1682,7 @@ msgstr "Server" msgid "Invalid authentication method set in configuration:" msgstr "Vigane autoriseerimise meetod konfiguratsioonifailis:" -#: libraries/common.inc.php:909 +#: libraries/common.inc.php:908 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Te peaksite uuendama %s -i versioonini %s või uuemaks." @@ -1733,7 +1709,8 @@ msgstr "Saadetud" #: libraries/common.lib.php:425 libraries/common.lib.php:427 #: libraries/common.lib.php:429 libraries/common.lib.php:445 #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 -#: libraries/display_export.lib.php:163 libraries/relation.lib.php:84 +#: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 +#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 #: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" @@ -1748,148 +1725,148 @@ msgstr "SQL-päring" msgid "MySQL said: " msgstr "MySQL ütles: " -#: libraries/common.lib.php:1136 +#: libraries/common.lib.php:1129 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1174 setup/lib/messages.inc.php:350 +#: libraries/common.lib.php:1167 setup/lib/messages.inc.php:350 msgid "Explain SQL" msgstr "Seleta SQL-i" -#: libraries/common.lib.php:1177 +#: libraries/common.lib.php:1170 msgid "Skip Explain SQL" msgstr "Jäta SQL-i seletamine vahele" -#: libraries/common.lib.php:1211 +#: libraries/common.lib.php:1204 msgid "Without PHP Code" msgstr "ilma PHP koodita" -#: libraries/common.lib.php:1214 setup/lib/messages.inc.php:352 +#: libraries/common.lib.php:1207 setup/lib/messages.inc.php:352 msgid "Create PHP Code" msgstr "Loo PHP kood" -#: libraries/common.lib.php:1232 server_status.php:451 +#: libraries/common.lib.php:1225 server_status.php:451 #: setup/lib/messages.inc.php:351 msgid "Refresh" msgstr "Uuenda" -#: libraries/common.lib.php:1241 +#: libraries/common.lib.php:1234 msgid "Skip Validate SQL" msgstr "Jäta SQL-i kontroll vahele" -#: libraries/common.lib.php:1244 setup/lib/messages.inc.php:353 +#: libraries/common.lib.php:1237 setup/lib/messages.inc.php:353 msgid "Validate SQL" msgstr "Kontrolli SQL-i" -#: libraries/common.lib.php:1283 +#: libraries/common.lib.php:1287 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1285 +#: libraries/common.lib.php:1289 #, fuzzy #| msgid "Engines" msgid "Inline" msgstr "Mootor" -#: libraries/common.lib.php:1339 libraries/common.lib.php:1354 +#: libraries/common.lib.php:1343 libraries/common.lib.php:1358 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1358 libraries/tbl_triggers.lib.php:27 +#: libraries/common.lib.php:1362 libraries/tbl_triggers.lib.php:27 #: server_processlist.php:57 msgid "Time" msgstr "Aeg" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "B" msgstr "Baiti" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "KiB" msgstr "KB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "MiB" msgstr "MB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "GiB" msgstr "GB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "TiB" msgstr "TB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "PiB" msgstr "PB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "EiB" msgstr "EB" #. l10n: Thousands separator -#: libraries/common.lib.php:1424 +#: libraries/common.lib.php:1428 msgid "," msgstr "," #. l10n: Decimal separator -#: libraries/common.lib.php:1426 +#: libraries/common.lib.php:1430 msgid "." msgstr "." #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1603 +#: libraries/common.lib.php:1607 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%d.%m.%Y kell %H:%M:%S" -#: libraries/common.lib.php:1909 +#: libraries/common.lib.php:1913 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s päeva, %s tundi, %s minutit ja %s sekundit" -#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 -#: libraries/display_tbl.lib.php:289 server_status.php:718 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 +#: libraries/display_tbl.lib.php:288 server_status.php:718 msgid "Begin" msgstr "Algus" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 -#: libraries/display_tbl.lib.php:290 server_binlog.php:154 +#: libraries/common.lib.php:2328 libraries/common.lib.php:2331 +#: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "Eelmine" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 -#: libraries/display_tbl.lib.php:352 +#: libraries/common.lib.php:2359 libraries/common.lib.php:2362 +#: libraries/display_tbl.lib.php:351 msgid "End" msgstr "Lõpp" -#: libraries/common.lib.php:2429 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "Hüppa andmebaasile "%s"." -#: libraries/common.lib.php:2448 +#: libraries/common.lib.php:2453 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "See %s funktionaalsus on mõjutatud tuntud viga, vaata %s" -#: libraries/common.lib.php:2828 libraries/common.lib.php:2835 -#: libraries/db_links.inc.php:67 libraries/export/sql.php:24 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 +#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 -#: libraries/tbl_links.inc.php:59 querywindow.php:89 test/theme.php:96 +#: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2837 libraries/db_links.inc.php:103 -#: libraries/tbl_links.inc.php:94 libraries/tbl_links.inc.php:116 -#: view_operations.php:88 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: view_operations.php:87 msgid "Operations" msgstr "Tegevused" -#: libraries/core.lib.php:282 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1906,38 +1883,38 @@ msgstr "Saadetud" msgid "Name" msgstr "Nimi" -#: libraries/db_links.inc.php:44 +#: libraries/db_links.inc.php:43 #, php-format msgid "Database %s has been dropped." msgstr "Andmebaas %s kustutatud." -#: libraries/db_links.inc.php:56 libraries/db_links.inc.php:57 -#: libraries/db_links.inc.php:58 +#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 +#: libraries/db_links.inc.php:57 msgid "Database seems to be empty!" msgstr "Andmebaas tundub olevat tühi!" -#: libraries/db_links.inc.php:80 libraries/relation.lib.php:142 -#: libraries/tbl_links.inc.php:68 +#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:85 +#: libraries/db_links.inc.php:84 msgid "Query" msgstr "Päring näite järgi" -#: libraries/db_links.inc.php:90 libraries/relation.lib.php:138 +#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 msgid "Designer" msgstr "Kujundaja" -#: libraries/db_links.inc.php:97 libraries/server_links.inc.php:87 -#: libraries/tbl_links.inc.php:90 pmd_pdf.php:83 pmd_pdf.php:109 +#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Import" -#: libraries/db_links.inc.php:110 libraries/server_links.inc.php:65 -#: server_privileges.php:111 server_privileges.php:1714 -#: server_privileges.php:2063 test/theme.php:116 +#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: server_privileges.php:110 server_privileges.php:1718 +#: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" msgstr "Privileegid" @@ -1949,14 +1926,14 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1847 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1806 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "Võib olla umbkaudne. Vaadake FAQ 3.11" -#: libraries/db_structure.lib.php:60 server_databases.php:141 -#: tbl_printview.php:334 tbl_structure.php:681 +#: libraries/db_structure.lib.php:60 server_databases.php:139 +#: tbl_printview.php:333 tbl_structure.php:679 msgid "Overhead" msgstr "Ülejääv" @@ -1973,7 +1950,7 @@ msgstr "Server ei vasta" 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:358 tbl_structure.php:607 +#: libraries/dbi/mysql.dbi.lib.php:358 tbl_structure.php:605 msgid "Details..." msgstr "" @@ -1983,22 +1960,22 @@ msgid "Change password" msgstr "Muuda parooli" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:807 +#: libraries/replication_gui.lib.php:347 server_privileges.php:806 msgid "No Password" msgstr "Ilma paroolita" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1530 server_synchronize.php:1174 +#: libraries/replication_gui.lib.php:351 server_privileges.php:795 +#: server_privileges.php:799 server_privileges.php:810 +#: server_privileges.php:1534 server_synchronize.php:1173 msgid "Password" msgstr "Parool" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:815 server_privileges.php:818 +#: server_privileges.php:814 server_privileges.php:817 msgid "Re-type" msgstr "Sisesta uuesti" @@ -2021,8 +1998,8 @@ msgstr "Loo uus andmebaas" msgid "Create" msgstr "Loo" -#: libraries/display_create_database.lib.php:39 server_privileges.php:113 -#: server_privileges.php:1419 server_replication.php:34 +#: libraries/display_create_database.lib.php:39 server_privileges.php:112 +#: server_privileges.php:1423 server_replication.php:33 msgid "No Privileges" msgstr "Ei oma ühtegi privileegi" @@ -2043,50 +2020,50 @@ msgstr "Loo uus tabel andmebaasi %s" msgid "Number of columns" msgstr "Väljade arv" -#: libraries/display_export.lib.php:41 +#: libraries/display_export.lib.php:35 msgid "Could not load export plugins, please check your installation!" msgstr "Viga eksportimis moodulite laadimisel, palun kontrolli seadeid!" -#: libraries/display_export.lib.php:106 +#: libraries/display_export.lib.php:100 #, fuzzy, php-format #| msgid "Dump %s row(s) starting at record # %s" msgid "Dump %s row(s) starting at row # %s" msgstr "Päri %s rida alustades reast %s." -#: libraries/display_export.lib.php:114 +#: libraries/display_export.lib.php:108 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:124 setup/lib/messages.inc.php:79 +#: libraries/display_export.lib.php:118 setup/lib/messages.inc.php:79 msgid "Save as file" msgstr "Salvesta failina" -#: libraries/display_export.lib.php:133 +#: libraries/display_export.lib.php:127 #, php-format msgid "Save on server in %s directory" msgstr "Salvestage serverisse kataloogi %s" -#: libraries/display_export.lib.php:141 setup/lib/messages.inc.php:87 +#: libraries/display_export.lib.php:135 setup/lib/messages.inc.php:87 msgid "Overwrite existing file(s)" msgstr "Kirjuta olemasolev(ad) fail(id) üle" -#: libraries/display_export.lib.php:147 +#: libraries/display_export.lib.php:141 msgid "File name template" msgstr "Faili nime template" -#: libraries/display_export.lib.php:151 +#: libraries/display_export.lib.php:145 msgid "server name" msgstr "serveri nimi" -#: libraries/display_export.lib.php:154 +#: libraries/display_export.lib.php:148 msgid "database name" msgstr "andmebaasi nimi" -#: libraries/display_export.lib.php:157 +#: libraries/display_export.lib.php:151 msgid "table name" msgstr "tabeli nimi" -#: libraries/display_export.lib.php:161 +#: libraries/display_export.lib.php:155 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2097,39 +2074,39 @@ msgstr "" "sama aja(time) formaati. Lisaks tulevad ka järgnevad muudatused: %3$s. " "Ülejäänud teks jääb nii nagu ta on." -#: libraries/display_export.lib.php:202 +#: libraries/display_export.lib.php:196 msgid "remember template" msgstr "jäta template meelde" -#: libraries/display_export.lib.php:210 libraries/display_import.lib.php:177 +#: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 #: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 msgid "Character set of the file:" msgstr "Faili tähetabel:" -#: libraries/display_export.lib.php:235 setup/lib/messages.inc.php:81 +#: libraries/display_export.lib.php:229 setup/lib/messages.inc.php:81 msgid "Compression" msgstr "Pakkimine" -#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:196 -#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:529 -#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:574 -#: server_privileges.php:1867 server_processlist.php:74 +#: libraries/display_export.lib.php:234 libraries/display_import.lib.php:196 +#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:528 +#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:573 +#: server_privileges.php:1871 server_processlist.php:74 msgid "None" msgstr "Pole" -#: libraries/display_export.lib.php:247 +#: libraries/display_export.lib.php:241 msgid "\"zipped\"" msgstr "\"zipitud\"" -#: libraries/display_export.lib.php:253 +#: libraries/display_export.lib.php:247 msgid "\"gzipped\"" msgstr "\"gzipitud\"" -#: libraries/display_export.lib.php:259 +#: libraries/display_export.lib.php:253 msgid "\"bzipped\"" msgstr "\"bzipitud\"" -#: libraries/display_export.lib.php:274 libraries/export/sql.php:42 +#: libraries/display_export.lib.php:268 libraries/export/sql.php:42 #: libraries/import/sql.php:31 msgid "SQL compatibility mode" msgstr "SQL ühilduvus viis" @@ -2164,12 +2141,12 @@ msgid "File uploads are not allowed on this server." msgstr "Faile pole lubatud laadida sellesse serverisse." #: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 -#: tbl_change.php:1024 +#: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "Kataloog mille Te üleslaadimiseks sättisite ei ole ligipääsetav" #: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 -#: tbl_change.php:1027 +#: tbl_change.php:925 msgid "web server upload directory" msgstr "webiserveri üleslaadimiskataloogi" @@ -2253,43 +2230,43 @@ msgstr "Paberi suurus" msgid "Language" msgstr "Keel" -#: libraries/display_tbl.lib.php:303 +#: libraries/display_tbl.lib.php:302 #, php-format msgid "%d is not valid row number." msgstr "%d ei ole õige reanumber." -#: libraries/display_tbl.lib.php:309 +#: libraries/display_tbl.lib.php:308 #, fuzzy #| msgid "row(s) starting from record #" msgid "row(s) starting from row #" msgstr "read alates" -#: libraries/display_tbl.lib.php:315 +#: libraries/display_tbl.lib.php:314 msgid "horizontal" msgstr "horisontaalselt" -#: libraries/display_tbl.lib.php:316 +#: libraries/display_tbl.lib.php:315 msgid "horizontal (rotated headers)" msgstr "horisontaalne (pööratud päis)" -#: libraries/display_tbl.lib.php:317 +#: libraries/display_tbl.lib.php:316 msgid "vertical" msgstr "vertikaalselt" -#: libraries/display_tbl.lib.php:323 +#: libraries/display_tbl.lib.php:322 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "näita %s and korda pealkirju iga %s järel" -#: libraries/display_tbl.lib.php:345 +#: libraries/display_tbl.lib.php:344 msgid "This operation could take a long time. Proceed anyway?" msgstr "See tegevus võib võtta kaua aega. Jätkan?" -#: libraries/display_tbl.lib.php:511 +#: libraries/display_tbl.lib.php:510 msgid "Sort by key" msgstr "Sorteeri võtme järgi" -#: libraries/display_tbl.lib.php:554 libraries/export/codegen.php:38 +#: libraries/display_tbl.lib.php:553 libraries/export/codegen.php:38 #: libraries/export/csv.php:29 libraries/export/excel.php:34 #: libraries/export/htmlword.php:28 libraries/export/latex.php:32 #: libraries/export/mediawiki.php:21 libraries/export/ods.php:26 @@ -2299,101 +2276,101 @@ msgstr "Sorteeri võtme järgi" #: libraries/export/xlsx.php:26 libraries/export/xml.php:23 #: libraries/export/yaml.php:27 libraries/import.lib.php:1114 #: libraries/import.lib.php:1136 libraries/import/csv.php:31 -#: libraries/import/docsql.php:33 libraries/import/ldi.php:46 +#: libraries/import/docsql.php:32 libraries/import/ldi.php:46 #: libraries/import/ods.php:30 libraries/import/sql.php:19 #: libraries/import/xls.php:25 libraries/import/xlsx.php:25 -#: libraries/import/xml.php:25 tbl_select.php:264 tbl_structure.php:752 +#: libraries/import/xml.php:25 tbl_select.php:263 tbl_structure.php:750 #, fuzzy msgid "Options" msgstr "Tegevused" -#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:569 +#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:568 msgid "Partial Texts" msgstr "Lühendatud tekstid" -#: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:573 +#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:572 msgid "Full Texts" msgstr "Täistekstid" -#: libraries/display_tbl.lib.php:586 +#: libraries/display_tbl.lib.php:585 #, fuzzy msgid "Relational key" msgstr "Seoseskeem" -#: libraries/display_tbl.lib.php:587 +#: libraries/display_tbl.lib.php:586 #, fuzzy #| msgid "Relational schema" msgid "Relational display column" msgstr "Seoseskeem" -#: libraries/display_tbl.lib.php:594 +#: libraries/display_tbl.lib.php:593 msgid "Show binary contents" msgstr "" -#: libraries/display_tbl.lib.php:596 +#: libraries/display_tbl.lib.php:595 msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:598 +#: libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "" -#: libraries/display_tbl.lib.php:606 pmd_general.php:140 tbl_change.php:312 -#: tbl_change.php:318 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:307 +#: tbl_change.php:313 msgid "Hide" msgstr "Peida" -#: libraries/display_tbl.lib.php:606 libraries/relation.lib.php:122 -#: libraries/tbl_properties.inc.php:143 transformation_overview.php:46 +#: libraries/display_tbl.lib.php:605 libraries/relation.lib.php:117 +#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46 msgid "Browser transformation" msgstr "Browseri transformatsioon" -#: libraries/display_tbl.lib.php:1125 libraries/display_tbl.lib.php:1129 -#: libraries/display_tbl.lib.php:1131 +#: libraries/display_tbl.lib.php:1124 libraries/display_tbl.lib.php:1128 +#: libraries/display_tbl.lib.php:1130 msgid "Execute bookmarked query" msgstr "Käivita salvestatud päring" -#: libraries/display_tbl.lib.php:1144 libraries/display_tbl.lib.php:1156 +#: libraries/display_tbl.lib.php:1143 libraries/display_tbl.lib.php:1155 msgid "The row has been deleted" msgstr "Rida kustutatud" -#: libraries/display_tbl.lib.php:1183 libraries/display_tbl.lib.php:2055 +#: libraries/display_tbl.lib.php:1182 libraries/display_tbl.lib.php:2014 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "Tapa" -#: libraries/display_tbl.lib.php:1933 +#: libraries/display_tbl.lib.php:1892 msgid "in query" msgstr "päringus" -#: libraries/display_tbl.lib.php:1951 +#: libraries/display_tbl.lib.php:1910 msgid "Showing rows" msgstr "Näita ridu" -#: libraries/display_tbl.lib.php:1961 +#: libraries/display_tbl.lib.php:1920 msgid "total" msgstr "kokku" -#: libraries/display_tbl.lib.php:1969 sql.php:523 +#: libraries/display_tbl.lib.php:1928 sql.php:522 #, php-format msgid "Query took %01.4f sec" msgstr "Päring kestis %01.4f sek" -#: libraries/display_tbl.lib.php:2088 libraries/mult_submits.inc.php:112 -#: querywindow.php:115 querywindow.php:119 querywindow.php:122 -#: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:469 +#: libraries/display_tbl.lib.php:2047 libraries/mult_submits.inc.php:112 +#: querywindow.php:114 querywindow.php:118 querywindow.php:121 +#: tbl_structure.php:23 tbl_structure.php:148 tbl_structure.php:467 msgid "Change" msgstr "Muuda" -#: libraries/display_tbl.lib.php:2158 +#: libraries/display_tbl.lib.php:2117 msgid "Query results operations" msgstr "Päringu tulemuste tegevused" -#: libraries/display_tbl.lib.php:2186 +#: libraries/display_tbl.lib.php:2145 msgid "Print view (with full texts)" msgstr "Trükivaade (täispikkade tekstidega)" -#: libraries/display_tbl.lib.php:2359 +#: libraries/display_tbl.lib.php:2318 msgid "Link not found" msgstr "Linki ei leitud" @@ -2449,9 +2426,9 @@ msgstr "InnoDB staatus" msgid "Buffer Pool Usage" msgstr "Puhverdusala kasutamine" -#: libraries/engines/innodb.lib.php:168 server_databases.php:136 -#: server_databases.php:304 server_status.php:524 server_status.php:585 -#: server_status.php:606 tbl_printview.php:349 tbl_structure.php:695 +#: libraries/engines/innodb.lib.php:168 server_databases.php:134 +#: server_databases.php:302 server_status.php:524 server_status.php:585 +#: server_status.php:606 tbl_printview.php:348 tbl_structure.php:693 msgid "Total" msgstr "Kokku" @@ -2587,6 +2564,78 @@ msgstr "" "Puhver mis hõivatakse kui sorteeritakse MyISAM indekseid REPAIR TABLE ajal " "või kui luuakse indekseid CREATE INDEX või ALTER TABLE käskudega." +#: libraries/engines/pbms.lib.php:31 +msgid "Garbage Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:32 +msgid "The percentage of garbage in a repository file before it is compacted." +msgstr "" + +#: libraries/engines/pbms.lib.php:36 libraries/replication_gui.lib.php:69 +#: server_synchronize.php:1161 +#, fuzzy +msgid "Port" +msgstr "Sorteeri" + +#: libraries/engines/pbms.lib.php:37 +msgid "" +"The port for the PBMS stream-based communications. Setting this value to 0 " +"will disable HTTP communication with the daemon." +msgstr "" + +#: libraries/engines/pbms.lib.php:41 +msgid "Repository Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:42 +msgid "" +"The maximum size of a BLOB repository file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:46 +msgid "Temp Blob Timeout" +msgstr "" + +#: libraries/engines/pbms.lib.php:47 +msgid "" +"The timeout, in seconds, for temporary BLOBs. Uploaded BLOB data is removed " +"after this time, unless they are referenced by a record in the database." +msgstr "" + +#: libraries/engines/pbms.lib.php:51 +msgid "Temp Log Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:52 +msgid "" +"The maximum size of a temporary BLOB log file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:56 +msgid "Max Keep Alive" +msgstr "" + +#: libraries/engines/pbms.lib.php:57 +msgid "" +"The timeout for inactive connection with the keep-alive flag set. After this " +"time the connection will be closed. The time-out is in milliseconds (1/1000)." +msgstr "" + +#: libraries/engines/pbms.lib.php:61 +msgid "Metadata Headers" +msgstr "" + +#: libraries/engines/pbms.lib.php:62 +msgid "" +"A \":\" delimited list of metadata headers to be used to initialize the " +"pbms_metadata_header table when a database is created." +msgstr "" + #: libraries/engines/pbxt.lib.php:22 msgid "Index cache size" msgstr "" @@ -2712,7 +2761,7 @@ msgid "" msgstr "" #: libraries/export/codegen.php:36 setup/lib/messages.inc.php:85 -#: tbl_printview.php:374 tbl_structure.php:736 +#: tbl_printview.php:373 tbl_structure.php:734 msgid "Format" msgstr "Formaat" @@ -2783,9 +2832,9 @@ msgstr "Microsoft Word 2000" #: libraries/export/htmlword.php:23 libraries/export/latex.php:59 #: libraries/export/latex.php:205 libraries/export/odt.php:47 #: libraries/export/sql.php:105 libraries/export/sql.php:865 -#: libraries/export/texytext.php:27 server_databases.php:126 -#: server_privileges.php:576 server_replication.php:315 tbl_printview.php:315 -#: tbl_structure.php:664 +#: libraries/export/texytext.php:27 server_databases.php:124 +#: server_privileges.php:575 server_replication.php:314 tbl_printview.php:314 +#: tbl_structure.php:662 msgid "Data" msgstr "Andmed" @@ -2836,13 +2885,13 @@ msgid "Label key" msgstr "Nimetuse võti" #: libraries/export/latex.php:46 libraries/export/odt.php:34 -#: libraries/export/sql.php:90 tbl_relation.php:398 +#: libraries/export/sql.php:90 tbl_relation.php:396 msgid "Relations" msgstr "Suhted" #: libraries/export/latex.php:52 libraries/export/odt.php:40 #: libraries/export/odt.php:317 libraries/export/sql.php:94 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "MIME-tüüp" @@ -2850,10 +2899,10 @@ msgstr "MIME-tüüp" #: libraries/export/xml.php:101 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1529 server_privileges.php:2061 -#: server_processlist.php:54 server_synchronize.php:1158 +#: libraries/replication_gui.lib.php:331 server_privileges.php:730 +#: server_privileges.php:733 server_privileges.php:789 +#: server_privileges.php:1533 server_privileges.php:2065 +#: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "Masin" @@ -3046,8 +3095,8 @@ msgstr "Ekspordi tüüp" msgid "Export contents" msgstr "Ekspordi tüüp" -#: libraries/footer.inc.php:182 libraries/footer.inc.php:193 -#: libraries/footer.inc.php:196 +#: libraries/footer.inc.php:180 libraries/footer.inc.php:191 +#: libraries/footer.inc.php:194 msgid "Open new phpMyAdmin window" msgstr "Ava uus phpMyAdmin aken" @@ -3064,7 +3113,7 @@ msgstr "SQL tulemus" msgid "Generated by" msgstr "Genereerija " -#: libraries/import.lib.php:151 sql.php:519 tbl_change.php:180 +#: libraries/import.lib.php:151 sql.php:518 tbl_change.php:175 #: 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)." @@ -3123,7 +3172,7 @@ msgstr "Ignoreeri korduvaid ridasid" msgid "Column names in first row" msgstr "" -#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:501 +#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:500 #: view_create.php:147 msgid "Column names" msgstr "Väljade nimed" @@ -3150,12 +3199,12 @@ msgstr "Vigane formaat CSV sisendis real %d." msgid "Invalid column count in CSV input on line %d." msgstr "Vigane väljade arv CSV sisendis real %d." -#: libraries/import/docsql.php:28 +#: libraries/import/docsql.php:27 msgid "DocSQL" msgstr "DocSQL" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 -#: server_synchronize.php:427 server_synchronize.php:870 +#: libraries/import/docsql.php:30 libraries/tbl_properties.inc.php:616 +#: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "Tabeli nimi" @@ -3212,26 +3261,26 @@ msgstr "Pole" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:512 -#: tbl_structure.php:28 tbl_structure.php:152 tbl_structure.php:156 -#: tbl_structure.php:472 +#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:511 +#: tbl_structure.php:27 tbl_structure.php:151 tbl_structure.php:155 +#: tbl_structure.php:470 msgid "Primary" msgstr "Primaarne" #: libraries/mult_submits.inc.php:97 libraries/tbl_properties.inc.php:115 -#: libraries/tbl_properties.inc.php:524 tbl_printview.php:324 -#: tbl_structure.php:30 tbl_structure.php:153 tbl_structure.php:157 -#: tbl_structure.php:474 tbl_structure.php:672 +#: libraries/tbl_properties.inc.php:523 tbl_printview.php:323 +#: tbl_structure.php:29 tbl_structure.php:152 tbl_structure.php:156 +#: tbl_structure.php:472 tbl_structure.php:670 msgid "Index" msgstr "Indeks" -#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:530 -#: tbl_structure.php:34 tbl_structure.php:155 tbl_structure.php:159 -#: tbl_structure.php:477 +#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:529 +#: tbl_structure.php:33 tbl_structure.php:154 tbl_structure.php:158 +#: tbl_structure.php:475 msgid "Fulltext" msgstr "Täistekst" -#: libraries/mult_submits.inc.php:434 tbl_replace.php:330 +#: libraries/mult_submits.inc.php:433 tbl_replace.php:330 msgid "No change" msgstr "Ei muudetud" @@ -3239,190 +3288,190 @@ msgstr "Ei muudetud" msgid "Charset" msgstr "Tähetabel" -#: libraries/mysql_charsets.lib.php:210 libraries/mysql_charsets.lib.php:411 -#: tbl_change.php:515 +#: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 +#: tbl_change.php:510 msgid "Binary" msgstr "Binaarne" -#: libraries/mysql_charsets.lib.php:222 +#: libraries/mysql_charsets.lib.php:214 msgid "Bulgarian" msgstr "Bulgaaria" -#: libraries/mysql_charsets.lib.php:226 libraries/mysql_charsets.lib.php:351 +#: libraries/mysql_charsets.lib.php:218 libraries/mysql_charsets.lib.php:343 msgid "Simplified Chinese" msgstr "Lihtsustatud Hiina" -#: libraries/mysql_charsets.lib.php:228 libraries/mysql_charsets.lib.php:371 +#: libraries/mysql_charsets.lib.php:220 libraries/mysql_charsets.lib.php:363 msgid "Traditional Chinese" msgstr "Traditsionaalne Hiina" -#: libraries/mysql_charsets.lib.php:232 libraries/mysql_charsets.lib.php:418 +#: libraries/mysql_charsets.lib.php:224 libraries/mysql_charsets.lib.php:410 msgid "case-insensitive" msgstr "tõstutundetu" -#: libraries/mysql_charsets.lib.php:235 libraries/mysql_charsets.lib.php:420 +#: libraries/mysql_charsets.lib.php:227 libraries/mysql_charsets.lib.php:412 msgid "case-sensitive" msgstr "tõstutundlik" -#: libraries/mysql_charsets.lib.php:238 +#: libraries/mysql_charsets.lib.php:230 msgid "Croatian" msgstr "Horvaatia" -#: libraries/mysql_charsets.lib.php:241 +#: libraries/mysql_charsets.lib.php:233 msgid "Czech" msgstr "Tsehhi" -#: libraries/mysql_charsets.lib.php:244 +#: libraries/mysql_charsets.lib.php:236 msgid "Danish" msgstr "Taani" -#: libraries/mysql_charsets.lib.php:247 +#: libraries/mysql_charsets.lib.php:239 msgid "English" msgstr "Inglise" -#: libraries/mysql_charsets.lib.php:250 +#: libraries/mysql_charsets.lib.php:242 msgid "Esperanto" msgstr "Esperanto" -#: libraries/mysql_charsets.lib.php:253 +#: libraries/mysql_charsets.lib.php:245 msgid "Estonian" msgstr "Eesti" -#: libraries/mysql_charsets.lib.php:256 libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:248 libraries/mysql_charsets.lib.php:251 msgid "German" msgstr "Saksa" -#: libraries/mysql_charsets.lib.php:256 +#: libraries/mysql_charsets.lib.php:248 msgid "dictionary" msgstr "sõnaraamat" -#: libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:251 msgid "phone book" msgstr "telefoniraamat" -#: libraries/mysql_charsets.lib.php:262 +#: libraries/mysql_charsets.lib.php:254 msgid "Hungarian" msgstr "Ungari" -#: libraries/mysql_charsets.lib.php:265 +#: libraries/mysql_charsets.lib.php:257 msgid "Icelandic" msgstr "Islandi" -#: libraries/mysql_charsets.lib.php:268 libraries/mysql_charsets.lib.php:358 +#: libraries/mysql_charsets.lib.php:260 libraries/mysql_charsets.lib.php:350 msgid "Japanese" msgstr "Jaapani" -#: libraries/mysql_charsets.lib.php:271 +#: libraries/mysql_charsets.lib.php:263 msgid "Latvian" msgstr "Läti" -#: libraries/mysql_charsets.lib.php:274 +#: libraries/mysql_charsets.lib.php:266 msgid "Lithuanian" msgstr "Leedu" -#: libraries/mysql_charsets.lib.php:277 libraries/mysql_charsets.lib.php:380 +#: libraries/mysql_charsets.lib.php:269 libraries/mysql_charsets.lib.php:372 msgid "Korean" msgstr "Korea" -#: libraries/mysql_charsets.lib.php:280 +#: libraries/mysql_charsets.lib.php:272 msgid "Persian" msgstr "Pärsia" -#: libraries/mysql_charsets.lib.php:283 +#: libraries/mysql_charsets.lib.php:275 msgid "Polish" msgstr "Poola" -#: libraries/mysql_charsets.lib.php:286 libraries/mysql_charsets.lib.php:334 +#: libraries/mysql_charsets.lib.php:278 libraries/mysql_charsets.lib.php:326 msgid "West European" msgstr "Lääne-Euroopa" -#: libraries/mysql_charsets.lib.php:289 +#: libraries/mysql_charsets.lib.php:281 msgid "Romanian" msgstr "Rumeenia" -#: libraries/mysql_charsets.lib.php:292 +#: libraries/mysql_charsets.lib.php:284 msgid "Slovak" msgstr "Slovaki" -#: libraries/mysql_charsets.lib.php:295 +#: libraries/mysql_charsets.lib.php:287 msgid "Slovenian" msgstr "Sloveenia" -#: libraries/mysql_charsets.lib.php:298 +#: libraries/mysql_charsets.lib.php:290 msgid "Spanish" msgstr "Hispaania" -#: libraries/mysql_charsets.lib.php:301 +#: libraries/mysql_charsets.lib.php:293 msgid "Traditional Spanish" msgstr "Traditsionaalne Hispaania" -#: libraries/mysql_charsets.lib.php:304 libraries/mysql_charsets.lib.php:401 +#: libraries/mysql_charsets.lib.php:296 libraries/mysql_charsets.lib.php:393 msgid "Swedish" msgstr "Rootsi" -#: libraries/mysql_charsets.lib.php:307 libraries/mysql_charsets.lib.php:404 +#: libraries/mysql_charsets.lib.php:299 libraries/mysql_charsets.lib.php:396 msgid "Thai" msgstr "Tai" -#: libraries/mysql_charsets.lib.php:310 libraries/mysql_charsets.lib.php:398 +#: libraries/mysql_charsets.lib.php:302 libraries/mysql_charsets.lib.php:390 msgid "Turkish" msgstr "Türgi" -#: libraries/mysql_charsets.lib.php:313 libraries/mysql_charsets.lib.php:395 +#: libraries/mysql_charsets.lib.php:305 libraries/mysql_charsets.lib.php:387 msgid "Ukrainian" msgstr "Ukraina" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 msgid "Unicode" msgstr "Unikaalne" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 -#: libraries/mysql_charsets.lib.php:334 libraries/mysql_charsets.lib.php:341 -#: libraries/mysql_charsets.lib.php:363 libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 +#: libraries/mysql_charsets.lib.php:326 libraries/mysql_charsets.lib.php:333 +#: libraries/mysql_charsets.lib.php:355 libraries/mysql_charsets.lib.php:366 msgid "multilingual" msgstr "mitmekeelne" -#: libraries/mysql_charsets.lib.php:341 +#: libraries/mysql_charsets.lib.php:333 msgid "Central European" msgstr "Kesk-Euroopa" -#: libraries/mysql_charsets.lib.php:346 +#: libraries/mysql_charsets.lib.php:338 msgid "Russian" msgstr "Vene" -#: libraries/mysql_charsets.lib.php:363 +#: libraries/mysql_charsets.lib.php:355 msgid "Baltic" msgstr "Balti" -#: libraries/mysql_charsets.lib.php:368 +#: libraries/mysql_charsets.lib.php:360 msgid "Armenian" msgstr "Armeenia" -#: libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:366 msgid "Cyrillic" msgstr "Kirillitsa" -#: libraries/mysql_charsets.lib.php:377 +#: libraries/mysql_charsets.lib.php:369 msgid "Arabic" msgstr "Araabia" -#: libraries/mysql_charsets.lib.php:383 +#: libraries/mysql_charsets.lib.php:375 msgid "Hebrew" msgstr "Heebrea" -#: libraries/mysql_charsets.lib.php:386 +#: libraries/mysql_charsets.lib.php:378 msgid "Georgian" msgstr "Gruusia" -#: libraries/mysql_charsets.lib.php:389 +#: libraries/mysql_charsets.lib.php:381 msgid "Greek" msgstr "Kreeka" -#: libraries/mysql_charsets.lib.php:392 +#: libraries/mysql_charsets.lib.php:384 msgid "Czech-Slovak" msgstr "Tsehhi-Slovaki" -#: libraries/mysql_charsets.lib.php:407 libraries/mysql_charsets.lib.php:414 +#: libraries/mysql_charsets.lib.php:399 libraries/mysql_charsets.lib.php:406 msgid "unknown" msgstr "tundmatu" @@ -3448,67 +3497,67 @@ msgstr "Päringuaken" msgid "This format has no options" msgstr "Sellel formaadil pole seadeid" -#: libraries/relation.lib.php:82 +#: libraries/relation.lib.php:77 msgid "not OK" msgstr "Ei ole korras" -#: libraries/relation.lib.php:86 pmd_general.php:339 +#: libraries/relation.lib.php:81 pmd_general.php:339 msgid "OK" msgstr "Korras" -#: libraries/relation.lib.php:87 +#: libraries/relation.lib.php:82 msgid "Enabled" msgstr "Lubatud" -#: libraries/relation.lib.php:110 +#: libraries/relation.lib.php:105 msgid "Display Features" msgstr "Kuva võimalused" -#: libraries/relation.lib.php:116 +#: libraries/relation.lib.php:111 msgid "Creation of PDFs" msgstr "PDF-ide tegemine" -#: libraries/relation.lib.php:120 +#: libraries/relation.lib.php:115 msgid "Displaying Column Comments" msgstr "Näitan veeru kommentaare" -#: libraries/relation.lib.php:125 +#: libraries/relation.lib.php:120 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "Please see Documentation on how to update your Column_comments Table" -#: libraries/relation.lib.php:130 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 msgid "Bookmarked SQL query" msgstr "Järjehodjaga SQL päring" -#: libraries/relation.lib.php:134 querywindow.php:99 querywindow.php:207 +#: libraries/relation.lib.php:129 querywindow.php:98 querywindow.php:205 msgid "SQL history" msgstr "SQL-ajalugu" -#: libraries/relation.lib.php:146 +#: libraries/relation.lib.php:141 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:148 +#: libraries/relation.lib.php:143 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" -#: libraries/relation.lib.php:149 +#: libraries/relation.lib.php:144 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:150 +#: libraries/relation.lib.php:145 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:151 +#: libraries/relation.lib.php:146 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1158 +#: libraries/relation.lib.php:1153 msgid "no description" msgstr "pole kirjeldust" @@ -3516,7 +3565,7 @@ msgstr "pole kirjeldust" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:53 server_replication.php:346 +#: libraries/replication_gui.lib.php:53 server_replication.php:345 msgid "Change or reconfigure master server" msgstr "" @@ -3528,17 +3577,12 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:711 -#: server_privileges.php:714 server_privileges.php:721 -#: server_synchronize.php:1170 +#: libraries/replication_gui.lib.php:261 server_privileges.php:710 +#: server_privileges.php:713 server_privileges.php:720 +#: server_synchronize.php:1169 msgid "User name" msgstr "Kasutajanimi" -#: libraries/replication_gui.lib.php:69 server_synchronize.php:1162 -#, fuzzy -msgid "Port" -msgstr "Sorteeri" - #: libraries/replication_gui.lib.php:105 #, fuzzy msgid "Master status" @@ -3555,8 +3599,8 @@ msgid "Variable" msgstr "Muutuja" #: libraries/replication_gui.lib.php:117 server_status.php:737 -#: tbl_change.php:322 tbl_printview.php:368 tbl_select.php:137 -#: tbl_structure.php:728 +#: tbl_change.php:317 tbl_printview.php:367 tbl_select.php:136 +#: tbl_structure.php:726 msgid "Value" msgstr "Väärtus" @@ -3570,38 +3614,38 @@ msgid "" "this list." msgstr "" -#: libraries/replication_gui.lib.php:242 server_replication.php:193 +#: libraries/replication_gui.lib.php:242 server_replication.php:192 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:256 server_privileges.php:716 +#: libraries/replication_gui.lib.php:256 server_privileges.php:715 msgid "Any user" msgstr "Kõik kasutajad" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1920 server_privileges.php:1950 +#: libraries/replication_gui.lib.php:348 server_privileges.php:716 +#: server_privileges.php:783 server_privileges.php:807 +#: server_privileges.php:1924 server_privileges.php:1954 msgid "Use text field" msgstr "Kasutage tekstivälja" -#: libraries/replication_gui.lib.php:304 server_privileges.php:764 +#: libraries/replication_gui.lib.php:304 server_privileges.php:763 msgid "Any host" msgstr "Kõik masinad" -#: libraries/replication_gui.lib.php:308 server_privileges.php:768 +#: libraries/replication_gui.lib.php:308 server_privileges.php:767 msgid "Local" msgstr "Lokaalne" -#: libraries/replication_gui.lib.php:314 server_privileges.php:773 +#: libraries/replication_gui.lib.php:314 server_privileges.php:772 msgid "This Host" msgstr "Antud host" -#: libraries/replication_gui.lib.php:320 server_privileges.php:779 +#: libraries/replication_gui.lib.php:320 server_privileges.php:778 msgid "Use Host Table" msgstr "Kasuta host tabelit" -#: libraries/replication_gui.lib.php:333 server_privileges.php:792 +#: libraries/replication_gui.lib.php:333 server_privileges.php:791 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3627,8 +3671,8 @@ msgstr "Tundmatu keel: %1$s." msgid "Servers" msgstr "Serverid" -#: libraries/server_links.inc.php:52 server_engines.php:111 -#: server_engines.php:115 server_status.php:414 test/theme.php:104 +#: libraries/server_links.inc.php:52 server_engines.php:125 +#: server_engines.php:129 server_status.php:414 test/theme.php:104 msgid "Variables" msgstr "Muutujad" @@ -3649,12 +3693,12 @@ msgstr "Binaarne logi" msgid "Processes" msgstr "Protsessid" -#: libraries/server_links.inc.php:91 server_synchronize.php:1091 -#: server_synchronize.php:1099 +#: libraries/server_links.inc.php:91 server_synchronize.php:1090 +#: server_synchronize.php:1098 msgid "Synchronize" msgstr "" -#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1109 +#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1108 #, fuzzy msgid "Source database" msgstr "Otsi andmebaasist" @@ -3673,7 +3717,7 @@ msgstr "" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1111 +#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1110 #, fuzzy msgid "Target database" msgstr "Otsi andmebaasist" @@ -3694,11 +3738,11 @@ msgstr "Päri SQL päring(uid) andmebaasist %s" msgid "Columns" msgstr "Väljade nimed" -#: libraries/sql_query_form.lib.php:342 sql.php:664 sql.php:665 sql.php:682 +#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "Lisa see SQL päring järjehoidjasse" -#: libraries/sql_query_form.lib.php:349 sql.php:676 +#: libraries/sql_query_form.lib.php:349 sql.php:669 msgid "Let every user access this bookmark" msgstr "Anna kõikidele kasutajatele juurdepääs sellele järjehodjale" @@ -3794,12 +3838,12 @@ msgstr "" "SQL-i valideerijat ei suudetud avada. Palun kontrollige, et te olete " "installinud vastavad php moodulid nagu on kirjeldatud %sdokumentatsioonis%s." -#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:139 -#: libraries/tbl_links.inc.php:140 +#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 +#: libraries/tbl_links.inc.php:139 msgid "Table seems to be empty!" msgstr "Tabel tundub olevat tühi!" -#: libraries/tbl_links.inc.php:148 +#: libraries/tbl_links.inc.php:147 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" @@ -3835,12 +3879,12 @@ msgstr "" "kaldkriipsudega varjestamata ning jutumärkideta, kasutades järgmist " "kirjakuju: a" -#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1263 -#: pdf_schema.php:1284 tbl_printview.php:142 tbl_structure.php:179 +#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1262 +#: pdf_schema.php:1283 tbl_printview.php:141 tbl_structure.php:178 msgid "Attributes" msgstr "Parameetrid" -#: libraries/tbl_properties.inc.php:136 +#: libraries/tbl_properties.inc.php:135 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -3849,11 +3893,11 @@ msgstr "" "Transformatsiooni võimaluste ja tema MIME-tüübi transformatsiooni " "nimekirjaks vajutage %stransformatsiooni kirjeldusele%s" -#: libraries/tbl_properties.inc.php:144 +#: libraries/tbl_properties.inc.php:143 msgid "Transformation options" msgstr "Transformeerimise seaded" -#: libraries/tbl_properties.inc.php:145 +#: libraries/tbl_properties.inc.php:144 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
                            If you ever need to put a backslash (\"\\\") or a single " @@ -3865,18 +3909,18 @@ msgstr "" "\") või ülakoma (\"'\") nende väärtuste seas, varjestage see tagurpidi " "kaldkriipsuga (näiteks '\\\\xyz' või 'a\\'b')." -#: libraries/tbl_properties.inc.php:392 +#: libraries/tbl_properties.inc.php:391 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "Pole" -#: libraries/tbl_properties.inc.php:393 +#: libraries/tbl_properties.inc.php:392 msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:579 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:578 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
                            Please ask the " @@ -3885,29 +3929,29 @@ msgstr "" "Selle transformatsiooni jaoks ei ole kirjeldust.
                            Palun küsige autorilt, " "mida %s teeb." -#: libraries/tbl_properties.inc.php:725 server_engines.php:57 -#: tbl_operations.php:354 +#: libraries/tbl_properties.inc.php:724 server_engines.php:56 +#: tbl_operations.php:352 msgid "Storage Engine" msgstr "Varundusmootor" -#: libraries/tbl_properties.inc.php:754 +#: libraries/tbl_properties.inc.php:753 msgid "PARTITION definition" msgstr "" -#: libraries/tbl_properties.inc.php:775 pdf_pages.php:502 +#: libraries/tbl_properties.inc.php:774 pdf_pages.php:501 #: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214 -#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1124 tbl_indexes.php:247 -#: tbl_relation.php:565 +#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1022 tbl_indexes.php:246 +#: tbl_relation.php:563 msgid "Save" msgstr "Salvesta" -#: libraries/tbl_properties.inc.php:779 tbl_structure.php:541 +#: libraries/tbl_properties.inc.php:778 tbl_structure.php:539 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "Lisa %s väli(jad)" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:535 +#: libraries/tbl_properties.inc.php:782 tbl_structure.php:533 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -4112,8 +4156,8 @@ msgstr "" msgid "Custom color" msgstr "" -#: main.php:162 pdf_pages.php:362 setup/lib/FormDisplay.tpl.php:216 -#: tbl_change.php:1173 +#: main.php:162 pdf_pages.php:361 setup/lib/FormDisplay.tpl.php:216 +#: tbl_change.php:1071 msgid "Reset" msgstr "Tühista" @@ -4121,8 +4165,8 @@ msgstr "Tühista" msgid "Protocol version" msgstr "Protokolli versioon" -#: main.php:188 server_privileges.php:1381 server_privileges.php:1528 -#: server_privileges.php:1642 server_privileges.php:2060 +#: main.php:188 server_privileges.php:1385 server_privileges.php:1532 +#: server_privileges.php:1646 server_privileges.php:2064 #: server_processlist.php:53 msgid "User" msgstr "Kasutaja" @@ -4206,21 +4250,30 @@ msgid "" "has been configured." msgstr "" -#: main.php:330 +#: main.php:314 +#, php-format +msgid "" +"The additional features for working with linked tables have been " +"deactivated. To find out why click %shere%s." +msgstr "" +"Lisavõimalused töötamiseks lingitud tabelitega on deaktiveeritud. Et lugeda " +"miks see nii on, vajutage %ssiia%s." + +#: main.php:329 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:345 +#: main.php:344 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: main.php:357 +#: main.php:356 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -4231,70 +4284,70 @@ msgstr "" msgid "Reload navigation frame" msgstr "" -#: navigation.php:204 server_databases.php:370 server_synchronize.php:1190 +#: navigation.php:203 server_databases.php:368 server_synchronize.php:1189 msgid "No databases" msgstr "Pole andmebaase" -#: navigation.php:298 +#: navigation.php:297 #, fuzzy msgid "Filter" msgstr "Väljade arv" -#: navigation.php:299 setup/frames/index.inc.php:218 +#: navigation.php:298 setup/frames/index.inc.php:218 #: setup/lib/messages.inc.php:41 #, fuzzy msgid "Clear" msgstr "Kalender" -#: navigation.php:330 navigation.php:331 +#: navigation.php:329 navigation.php:330 #, fuzzy #| msgid "Create table" msgctxt "short form" msgid "Create table" msgstr "Loo tabel" -#: navigation.php:333 navigation.php:495 +#: navigation.php:332 navigation.php:494 msgid "Please select a database" msgstr "Valige andmebaas" -#: pdf_pages.php:40 pdf_pages.php:46 pdf_pages.php:52 pdf_pages.php:57 +#: pdf_pages.php:39 pdf_pages.php:45 pdf_pages.php:51 pdf_pages.php:56 #, php-format msgid "%s table not found or not set in %s" msgstr "%s tabelit ei leitud või ei eksisteeri %s" -#: pdf_pages.php:265 +#: pdf_pages.php:264 msgid "Please choose a page to edit" msgstr "Palun valige leht muutmiseks" -#: pdf_pages.php:303 pmd_pdf.php:113 +#: pdf_pages.php:302 pmd_pdf.php:111 msgid "Create a page" msgstr "Loo uus leht" -#: pdf_pages.php:309 +#: pdf_pages.php:308 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Lehenumber:" -#: pdf_pages.php:313 +#: pdf_pages.php:312 #, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "Automaatne väljund" -#: pdf_pages.php:315 +#: pdf_pages.php:314 msgid "Internal relations" msgstr "Sisesed seosed" -#: pdf_pages.php:338 +#: pdf_pages.php:337 msgid "Select Tables" msgstr "Vali tabelid" -#: pdf_pages.php:361 +#: pdf_pages.php:360 msgid "Toggle scratchboard" msgstr "vaheta märkmetahvlit" -#: pdf_pages.php:524 +#: pdf_pages.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -4302,37 +4355,37 @@ msgstr "" "Antud lehel on viiteid tabelitele mida enam ei ole. Kas te soovite kustutada " "need viited?" -#: pdf_schema.php:635 +#: pdf_schema.php:634 #, fuzzy, php-format #| msgid "The \"%s\" table doesn't exist!" msgid "The %s table doesn't exist!" msgstr "\"%s\" tabel ei eksisteeri!" -#: pdf_schema.php:671 +#: pdf_schema.php:670 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Palun seadke koordinaadid tabelile %s" -#: pdf_schema.php:994 +#: pdf_schema.php:993 #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" msgstr "Andmebaasi \"%s\" skeem - lehekülg %s" -#: pdf_schema.php:1012 +#: pdf_schema.php:1011 msgid "No tables" msgstr "Pole tabeleid" -#: pdf_schema.php:1031 pdf_schema.php:1140 +#: pdf_schema.php:1030 pdf_schema.php:1139 msgid "Relational schema" msgstr "Seoseskeem" -#: pdf_schema.php:1115 +#: pdf_schema.php:1114 msgid "Table of contents" msgstr "Sisukord" -#: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:145 -#: tbl_structure.php:182 tbl_tracking.php:277 +#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 +#: tbl_structure.php:181 tbl_tracking.php:272 msgid "Extra" msgstr "Ekstra" @@ -4344,7 +4397,7 @@ msgstr "Näita/Peida vasak menüü" msgid "Save position" msgstr "Salvesta positsioon" -#: pmd_general.php:70 server_synchronize.php:428 server_synchronize.php:871 +#: pmd_general.php:70 server_synchronize.php:427 server_synchronize.php:870 msgid "Create table" msgstr "Loo tabel" @@ -4415,32 +4468,32 @@ msgid "" "appropriate column name." msgstr "" -#: pmd_pdf.php:62 +#: pmd_pdf.php:60 #, fuzzy msgid "Page has been created" msgstr "Tabel %s kustutatud" -#: pmd_pdf.php:64 +#: pmd_pdf.php:62 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:84 +#: pmd_pdf.php:82 msgid "Export/Import to scale" msgstr "Ekspordi/Impordi skaala" -#: pmd_pdf.php:88 +#: pmd_pdf.php:86 msgid "recommended" msgstr "soovituslik" -#: pmd_pdf.php:93 +#: pmd_pdf.php:91 msgid "to/from page" msgstr "Kuhu/Kust leht" -#: querywindow.php:94 +#: querywindow.php:93 msgid "Import files" msgstr "Importige failid" -#: querywindow.php:105 +#: querywindow.php:104 msgid "All" msgstr "Kõik" @@ -4487,66 +4540,66 @@ msgstr "Informatsioon" msgid "Character Sets and Collations" msgstr "Tähetabelid ja määrangud" -#: server_databases.php:51 +#: server_databases.php:49 msgid "No databases selected." msgstr "Ühtegi andmebaasi ei ole valitud." -#: server_databases.php:62 +#: server_databases.php:60 #, php-format msgid "%s databases have been dropped successfully." msgstr "andmebaasid %s kustutati õnnestunult." -#: server_databases.php:87 +#: server_databases.php:85 msgid "Databases statistics" msgstr "Andmebaaside statistika" -#: server_databases.php:116 server_status.php:370 +#: server_databases.php:114 server_status.php:370 #: setup/lib/messages.inc.php:114 msgid "Tables" msgstr "Tabelid" -#: server_databases.php:194 server_replication.php:180 -#: server_replication.php:208 +#: server_databases.php:192 server_replication.php:179 +#: server_replication.php:207 msgid "Master replication" msgstr "" -#: server_databases.php:196 server_replication.php:247 +#: server_databases.php:194 server_replication.php:246 msgid "Slave replication" msgstr "" -#: server_databases.php:229 +#: server_databases.php:227 #, fuzzy msgid "Jump to database" msgstr "Pole andmebaase" -#: server_databases.php:266 +#: server_databases.php:264 msgid "Not replicated" msgstr "" -#: server_databases.php:272 +#: server_databases.php:270 #, fuzzy #| msgid "Replication" msgid "Replicated" msgstr "Tiražeerimine" -#: server_databases.php:288 +#: server_databases.php:286 #, php-format msgid "Check privileges for database "%s"." msgstr "Kontrolli privileege andmebaasile "%s"." -#: server_databases.php:292 server_databases.php:293 +#: server_databases.php:290 server_databases.php:291 msgid "Check Privileges" msgstr "Kontrollige privileege" -#: server_databases.php:357 server_databases.php:358 +#: server_databases.php:355 server_databases.php:356 msgid "Enable Statistics" msgstr "Lubage statistika" -#: server_databases.php:361 server_databases.php:362 +#: server_databases.php:359 server_databases.php:360 msgid "Disable Statistics" msgstr "Keelake statistika" -#: server_databases.php:365 +#: server_databases.php:363 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -4554,121 +4607,121 @@ msgstr "" "Märkus: Lubades siin andmebaasi statistika võite tekitada väga koormava " "liikuse webiserveri ja MySQL-i vahel." -#: server_engines.php:48 +#: server_engines.php:47 msgid "Storage Engines" msgstr "Varundusmootorid" -#: server_export.php:20 +#: server_export.php:18 msgid "View dump (schema) of databases" msgstr "Näita andmebaaside sisu (skeemi)" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:23 server_privileges.php:265 msgid "Includes all privileges except GRANT." msgstr "Sisaldab kõiki privileege peale GRANT." -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:24 server_privileges.php:191 +#: server_privileges.php:514 msgid "Allows altering the structure of existing tables." msgstr "Lubab muuta olemasolevate tabelite struktuure." -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:25 server_privileges.php:207 +#: server_privileges.php:520 msgid "Allows altering and dropping stored routines." msgstr "Lubabu salvestatud rutiinide muutmise ja kustutamise." -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:26 server_privileges.php:183 +#: server_privileges.php:513 msgid "Allows creating new databases and tables." msgstr "Lubab luua uusi andmebaase ja tabeleid." -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:27 server_privileges.php:206 +#: server_privileges.php:519 msgid "Allows creating stored routines." msgstr "Lubab salvestatud rutiinide loomise." -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:513 msgid "Allows creating new tables." msgstr "Lubab luua uusi tabeleid." -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:29 server_privileges.php:194 +#: server_privileges.php:517 msgid "Allows creating temporary tables." msgstr "Lubab luua ajutisi tabeleid." -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:30 server_privileges.php:208 +#: server_privileges.php:553 msgid "Allows creating, dropping and renaming user accounts." msgstr "Lubab kasutajakontode loomise, kustutamise ja muutmise." -#: server_privileges.php:32 server_privileges.php:199 -#: server_privileges.php:203 server_privileges.php:526 -#: server_privileges.php:530 +#: server_privileges.php:31 server_privileges.php:198 +#: server_privileges.php:202 server_privileges.php:525 +#: server_privileges.php:529 msgid "Allows creating new views." msgstr "Lubab uute vaadete loomist." -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:32 server_privileges.php:182 +#: server_privileges.php:505 msgid "Allows deleting data." msgstr "Lubab kustutada infot." -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:33 server_privileges.php:184 +#: server_privileges.php:516 msgid "Allows dropping databases and tables." msgstr "Lubab kustuada andmebaase ja tabeleid." -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:34 server_privileges.php:516 msgid "Allows dropping tables." msgstr "Lubab kustutada tabeleid.." -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:35 server_privileges.php:199 +#: server_privileges.php:533 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:36 server_privileges.php:209 +#: server_privileges.php:521 msgid "Allows executing stored routines." msgstr "Lubab salvestatud rutiinide käivituse." -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:37 server_privileges.php:188 +#: server_privileges.php:508 msgid "Allows importing data from and exporting data into files." msgstr "Lubab andmete eksportimist faili ja andmete importimist failidest." -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:38 server_privileges.php:539 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Lubab lisada kasutajaid ja privileege ilma privileges tabelit " "taaskäivitamata." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:515 msgid "Allows creating and dropping indexes." msgstr "Lubab luua ja kustutada indekseid." -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:40 server_privileges.php:180 +#: server_privileges.php:441 server_privileges.php:503 msgid "Allows inserting and replacing data." msgstr "Lubab lisada ja muuta infot." -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:41 server_privileges.php:195 +#: server_privileges.php:548 msgid "Allows locking tables for the current thread." msgstr "Lubab lukustada tabeleid aktiivse päringu tarbeks." -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:42 server_privileges.php:645 +#: server_privileges.php:647 msgid "Limits the number of new connections the user may open per hour." msgstr "Limiteerib ühenduste arvu tunnis kasutaja jaoks." -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:43 server_privileges.php:633 +#: server_privileges.php:635 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Limiteerib päringute arvu tunnis kasutaja jaoks." -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:44 server_privileges.php:639 +#: server_privileges.php:641 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -4676,58 +4729,58 @@ msgstr "" "Limiteerib käskude, mis muudavad suvalist tabelit või andmebaasi, arvu " "tunnis kasutaja jaoks" -#: server_privileges.php:46 server_privileges.php:652 -#: server_privileges.php:654 +#: server_privileges.php:45 server_privileges.php:651 +#: server_privileges.php:653 msgid "Limits the number of simultaneous connections the user may have." msgstr "Piirab ühenduste arvu mida kasutajal võib korraga olla." -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:46 server_privileges.php:187 +#: server_privileges.php:543 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:47 server_privileges.php:189 +#: server_privileges.php:447 server_privileges.php:549 msgid "Has no effect in this MySQL version." msgstr "Ei oma antud MySQL versioonis mingit effekti." -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:48 server_privileges.php:185 +#: server_privileges.php:544 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Lubab taaslaadida serveri seadmeid ja puhastada serveri cachet." -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:197 +#: server_privileges.php:551 msgid "Allows the user to ask where the slaves / masters are." msgstr "Lubab kasutajal küsida kus on slaved/masterid." -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:50 server_privileges.php:196 +#: server_privileges.php:552 msgid "Needed for the replication slaves." msgstr "Vajalik slavede paljundamiseks." -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:51 server_privileges.php:179 +#: server_privileges.php:438 server_privileges.php:502 msgid "Allows reading data." msgstr "Lubab lugeda infot." -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:52 server_privileges.php:192 +#: server_privileges.php:546 msgid "Gives access to the complete list of databases." msgstr "Annab ligipääsu kogu andmebaasilistingule." -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:53 server_privileges.php:203 +#: server_privileges.php:205 server_privileges.php:518 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Lubab SHOW CREATE VIEW päringute käivitamise." -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:54 server_privileges.php:186 +#: server_privileges.php:545 msgid "Allows shutting down the server." msgstr "Lubab serverit maha lasta." -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:55 server_privileges.php:193 +#: server_privileges.php:542 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -4737,158 +4790,158 @@ msgstr "" "enamike administratiivsete operatsioonide jaoks, nagu globaalsete muutujate " "seadmine või teiste kasutajate ühenduste tapmine." -#: server_privileges.php:57 server_privileges.php:201 -#: server_privileges.php:535 +#: server_privileges.php:56 server_privileges.php:200 +#: server_privileges.php:534 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "Lubab luua ja kustutada indekseid." -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:57 server_privileges.php:181 +#: server_privileges.php:444 server_privileges.php:504 msgid "Allows changing data." msgstr "Lubab muuta infot." -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:58 server_privileges.php:259 msgid "No privileges." msgstr "Mitte ühtegi privileegi." -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:301 server_privileges.php:302 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Pole" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1710 server_privileges.php:1716 +#: server_privileges.php:430 server_privileges.php:565 +#: server_privileges.php:1714 server_privileges.php:1720 msgid "Table-specific privileges" msgstr "Tabel-spetsiifilised privileegid" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1532 +#: server_privileges.php:431 server_privileges.php:573 +#: server_privileges.php:1536 msgid " Note: MySQL privilege names are expressed in English " msgstr " Märkus: MySQL privileegide nimed on ingliskeelsed " -#: server_privileges.php:563 server_privileges.php:1531 +#: server_privileges.php:562 server_privileges.php:1535 msgid "Global privileges" msgstr "Globaalsed privileegid" -#: server_privileges.php:565 server_privileges.php:1710 +#: server_privileges.php:564 server_privileges.php:1714 msgid "Database-specific privileges" msgstr "Andmebaas-spetsiifilised privileegid" -#: server_privileges.php:610 +#: server_privileges.php:609 msgid "Administration" msgstr "Administreerimine" -#: server_privileges.php:630 +#: server_privileges.php:629 msgid "Resource limits" msgstr "Ressursilimiidid" -#: server_privileges.php:631 +#: server_privileges.php:630 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Märkus: Märkides antud seaded 0 (null), eemaldate limiidi." -#: server_privileges.php:708 +#: server_privileges.php:707 msgid "Login Information" msgstr "Logimise informatsioon" -#: server_privileges.php:802 +#: server_privileges.php:801 msgid "Do not change the password" msgstr "Ärge muutke parooli" -#: server_privileges.php:835 server_privileges.php:2197 +#: server_privileges.php:834 server_privileges.php:2201 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Ei leitud ühtegi kasutajat." -#: server_privileges.php:879 +#: server_privileges.php:878 #, php-format msgid "The user %s already exists!" msgstr "Kasutaja %s on juba olemas!" -#: server_privileges.php:962 +#: server_privileges.php:961 msgid "You have added a new user." msgstr "Te lisasite uue kasutaja." -#: server_privileges.php:1183 +#: server_privileges.php:1184 #, php-format msgid "You have updated the privileges for %s." msgstr "Te uuendasite privileege %s-l." -#: server_privileges.php:1207 +#: server_privileges.php:1208 #, php-format msgid "You have revoked the privileges for %s" msgstr "Te võtsite tagasi privileegid %s-lt" -#: server_privileges.php:1243 +#: server_privileges.php:1244 #, php-format msgid "The password for %s was changed successfully." msgstr "Kasutaja %s parool vahetati õnnestunult." -#: server_privileges.php:1263 +#: server_privileges.php:1264 #, php-format msgid "Deleting %s" msgstr "Kustutan %s" -#: server_privileges.php:1274 +#: server_privileges.php:1275 msgid "No users selected for deleting!" msgstr "Ühtegi kasutajat pole valitud kustutamiseks!" -#: server_privileges.php:1277 +#: server_privileges.php:1278 msgid "Reloading the privileges" msgstr "Taaslaen privileege" -#: server_privileges.php:1292 +#: server_privileges.php:1296 msgid "The selected users have been deleted successfully." msgstr "Valitud kasutajad on õnnestunult kustutatud." -#: server_privileges.php:1327 +#: server_privileges.php:1331 msgid "The privileges were reloaded successfully." msgstr "Privileegid taaslaeti edukalt." -#: server_privileges.php:1355 server_privileges.php:1641 +#: server_privileges.php:1359 server_privileges.php:1645 msgid "Edit Privileges" msgstr "Muuda privileege" -#: server_privileges.php:1364 +#: server_privileges.php:1368 msgid "Revoke" msgstr "Võta tagasi" -#: server_privileges.php:1396 +#: server_privileges.php:1400 msgid "User overview" msgstr "Kasutaja ülevaade" -#: server_privileges.php:1533 server_privileges.php:1715 -#: server_privileges.php:2064 +#: server_privileges.php:1537 server_privileges.php:1719 +#: server_privileges.php:2068 msgid "Grant" msgstr "Õigused" -#: server_privileges.php:1552 server_privileges.php:2154 +#: server_privileges.php:1556 server_privileges.php:2158 msgid "Any" msgstr "kõik" -#: server_privileges.php:1601 server_privileges.php:1625 -#: server_privileges.php:2019 server_privileges.php:2208 +#: server_privileges.php:1605 server_privileges.php:1629 +#: server_privileges.php:2023 server_privileges.php:2212 msgid "Add a new User" msgstr "Lisa uus kasutaja" -#: server_privileges.php:1606 +#: server_privileges.php:1610 msgid "Remove selected users" msgstr "Eemalda valitud kasutajad" -#: server_privileges.php:1609 +#: server_privileges.php:1613 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Eemalda kõik aktiivsed privileegid kasutajatelt ning kustuta nad pärast seda." -#: server_privileges.php:1610 server_privileges.php:1611 -#: server_privileges.php:1612 +#: server_privileges.php:1614 server_privileges.php:1615 +#: server_privileges.php:1616 msgid "Drop the databases that have the same names as the users." msgstr "Kustuta andmebaasid millel on samad nimed nagu kasutajatel." -#: server_privileges.php:1628 +#: server_privileges.php:1632 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4901,95 +4954,95 @@ msgstr "" "juhul kui olete käsitsi muudatusi teinud. Sellisel juhul peaksite te " "privileegid %staaslaadima%s enne jätkamist." -#: server_privileges.php:1676 +#: server_privileges.php:1680 msgid "The selected user was not found in the privilege table." msgstr "Valitud kasutajat ei leitud privileegide tabelist." -#: server_privileges.php:1716 +#: server_privileges.php:1720 msgid "Column-specific privileges" msgstr "Väli-spetsiifilised privileegid" -#: server_privileges.php:1917 +#: server_privileges.php:1921 msgid "Add privileges on the following database" msgstr "Lisa privileegid antud andmebaasile" -#: server_privileges.php:1935 +#: server_privileges.php:1939 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "Metamärgid _ ja % peaksid olema varjestatud märgiga \\, kui soovite neid " "sisestada" -#: server_privileges.php:1938 +#: server_privileges.php:1942 msgid "Add privileges on the following table" msgstr "Lisa privileegid antud tabelile" -#: server_privileges.php:1995 +#: server_privileges.php:1999 msgid "Change Login Information / Copy User" msgstr "Vaheta logimisinformatsiooni / Kopeeri kasutaja" -#: server_privileges.php:1998 +#: server_privileges.php:2002 msgid "Create a new user with the same privileges and ..." msgstr "Loo uus kasutaja samade privileegidega ja ..." -#: server_privileges.php:2000 +#: server_privileges.php:2004 msgid "... keep the old one." msgstr "... hoia vana alles." -#: server_privileges.php:2001 +#: server_privileges.php:2005 msgid " ... delete the old one from the user tables." msgstr " ... kustuta vana kasutajate tabelist." -#: server_privileges.php:2002 +#: server_privileges.php:2006 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "" " ... kanna kõik aktiivsed privileegid üle vanast ja kustuta see pärast." -#: server_privileges.php:2003 +#: server_privileges.php:2007 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" " ... kustuta vana kasutajate tabelist ja taaslae privileegid pärast seda." -#: server_privileges.php:2025 +#: server_privileges.php:2029 msgid "Database for user" msgstr "Andmebaas kasutajale" -#: server_privileges.php:2029 +#: server_privileges.php:2033 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Pole" -#: server_privileges.php:2030 +#: server_privileges.php:2034 msgid "Create database with same name and grant all privileges" msgstr "Loo sama nimega andmebaas ja anna kõik õigused" -#: server_privileges.php:2031 +#: server_privileges.php:2035 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Anna kõik õigused Metanimele (username\\_%)" -#: server_privileges.php:2034 +#: server_privileges.php:2038 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "Kontrolli privileege andmebaasile "%s"." -#: server_privileges.php:2057 +#: server_privileges.php:2061 #, php-format msgid "Users having access to "%s"" msgstr "Kasutajad kellel on ligipääs "%s"" -#: server_privileges.php:2165 +#: server_privileges.php:2169 msgid "global" msgstr "globaalne" -#: server_privileges.php:2167 +#: server_privileges.php:2171 msgid "database-specific" msgstr "andmebaasipõhine" -#: server_privileges.php:2169 +#: server_privileges.php:2173 msgid "wildcard" msgstr "metamärk" @@ -5010,54 +5063,54 @@ msgstr "" msgid "ID" msgstr "ID" -#: server_replication.php:50 +#: server_replication.php:49 msgid "Unknown error" msgstr "" -#: server_replication.php:57 +#: server_replication.php:56 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:64 +#: server_replication.php:63 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:70 +#: server_replication.php:69 msgid "Unable to change master" msgstr "" -#: server_replication.php:73 +#: server_replication.php:72 #, php-format msgid "Master server changed succesfully to %s" msgstr "" -#: server_replication.php:181 +#: server_replication.php:180 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:183 server_status.php:391 +#: server_replication.php:182 server_status.php:391 #, fuzzy msgid "Show master status" msgstr "Näita alluvate(slave) staatust" -#: server_replication.php:186 +#: server_replication.php:185 msgid "Show connected slaves" msgstr "" -#: server_replication.php:209 +#: server_replication.php:208 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:216 +#: server_replication.php:215 msgid "Master configuration" msgstr "" -#: server_replication.php:217 +#: server_replication.php:216 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -5066,111 +5119,111 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:220 +#: server_replication.php:219 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:221 +#: server_replication.php:220 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:224 +#: server_replication.php:223 #, fuzzy msgid "Please select databases:" msgstr "Valige andmebaas" -#: server_replication.php:227 +#: server_replication.php:226 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: server_replication.php:229 +#: server_replication.php:228 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: server_replication.php:292 +#: server_replication.php:291 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:295 +#: server_replication.php:294 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:304 +#: server_replication.php:303 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:307 +#: server_replication.php:306 msgid "See slave status table" msgstr "" -#: server_replication.php:310 +#: server_replication.php:309 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:321 +#: server_replication.php:320 msgid "Control slave:" msgstr "" -#: server_replication.php:324 +#: server_replication.php:323 #, fuzzy msgid "Full start" msgstr "Täistekst" -#: server_replication.php:324 +#: server_replication.php:323 #, fuzzy msgid "Full stop" msgstr "Täistekst" -#: server_replication.php:325 +#: server_replication.php:324 msgid "Reset slave" msgstr "" -#: server_replication.php:326 +#: server_replication.php:325 #, php-format msgid "SQL Thread %s only" msgstr "" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 #, fuzzy msgid "Start" msgstr "Lau" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 msgid "Stop" msgstr "" -#: server_replication.php:327 +#: server_replication.php:326 #, php-format msgid "IO Thread %s only" msgstr "" -#: server_replication.php:331 +#: server_replication.php:330 msgid "Error management:" msgstr "" -#: server_replication.php:333 +#: server_replication.php:332 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:335 +#: server_replication.php:334 msgid "Skip current error" msgstr "" -#: server_replication.php:336 +#: server_replication.php:335 msgid "Skip next" msgstr "" -#: server_replication.php:339 +#: server_replication.php:338 msgid "errors." msgstr "" -#: server_replication.php:354 +#: server_replication.php:353 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -5980,114 +6033,114 @@ msgstr "Päringu tüüp" msgid "Replication status" msgstr "Tiražeerimine" -#: server_synchronize.php:93 +#: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:96 +#: server_synchronize.php:95 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:121 server_synchronize.php:124 tbl_create.php:77 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:264 +#: server_synchronize.php:263 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:271 +#: server_synchronize.php:270 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:399 server_synchronize.php:838 +#: server_synchronize.php:398 server_synchronize.php:837 msgid "not present" msgstr "" -#: server_synchronize.php:423 server_synchronize.php:866 +#: server_synchronize.php:422 server_synchronize.php:865 #, fuzzy msgid "Structure Difference" msgstr "Vaate (view) struktuur" -#: server_synchronize.php:424 server_synchronize.php:867 +#: server_synchronize.php:423 server_synchronize.php:866 #, fuzzy msgid "Data Difference" msgstr "Vaate (view) struktuur" -#: server_synchronize.php:429 server_synchronize.php:872 +#: server_synchronize.php:428 server_synchronize.php:871 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:430 server_synchronize.php:873 +#: server_synchronize.php:429 server_synchronize.php:872 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:431 server_synchronize.php:874 +#: server_synchronize.php:430 server_synchronize.php:873 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:432 server_synchronize.php:875 +#: server_synchronize.php:431 server_synchronize.php:874 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:433 server_synchronize.php:876 +#: server_synchronize.php:432 server_synchronize.php:875 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:434 server_synchronize.php:877 +#: server_synchronize.php:433 server_synchronize.php:876 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:435 server_synchronize.php:878 +#: server_synchronize.php:434 server_synchronize.php:877 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:445 server_synchronize.php:889 +#: server_synchronize.php:444 server_synchronize.php:888 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:448 server_synchronize.php:893 +#: server_synchronize.php:447 server_synchronize.php:892 msgid "Apply Selected Changes" msgstr "" -#: server_synchronize.php:450 server_synchronize.php:895 +#: server_synchronize.php:449 server_synchronize.php:894 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:463 +#: server_synchronize.php:462 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:941 +#: server_synchronize.php:940 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:1002 +#: server_synchronize.php:1001 msgid "The following queries have been executed:" msgstr "" -#: server_synchronize.php:1121 +#: server_synchronize.php:1120 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1122 +#: server_synchronize.php:1121 #, fuzzy #| msgid "max. concurrent connections" msgid "Current connection" msgstr "maks. parallel ühendusi" -#: server_synchronize.php:1151 +#: server_synchronize.php:1150 #, php-format msgid "Configuration: %s" msgstr "" -#: server_synchronize.php:1166 +#: server_synchronize.php:1165 msgid "Socket" msgstr "" -#: server_synchronize.php:1212 +#: server_synchronize.php:1211 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -6652,8 +6705,8 @@ msgstr "" #: setup/lib/messages.inc.php:128 msgid "" "Configure phpMyAdmin database to gain access to additional features, see " -"[a@../Documentation.html#linked-tables]linked-tables infrastructure[/a] in " -"documentation" +"[a@../Documentation.html#linked-tables]phpMyAdmin configuration storage[/a] " +"in documentation" msgstr "" #: setup/lib/messages.inc.php:129 setup/lib/messages.inc.php:290 @@ -7726,117 +7779,117 @@ msgstr "" msgid "ZIP" msgstr "" -#: sql.php:495 tbl_replace.php:385 +#: sql.php:494 tbl_replace.php:384 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: sql.php:512 +#: sql.php:511 msgid "Showing as PHP code" msgstr "Näitan PHP koodina" -#: sql.php:515 tbl_replace.php:359 +#: sql.php:514 tbl_replace.php:358 msgid "Showing SQL query" msgstr "Näitan SQL päringut" -#: sql.php:517 +#: sql.php:516 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Kontrolli SQL-i" -#: sql.php:638 +#: sql.php:631 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Probleemid tabeli `%s` indeksitega" -#: sql.php:670 +#: sql.php:663 msgid "Label" msgstr "Nimetus" -#: tbl_addfield.php:188 tbl_alter.php:102 tbl_indexes.php:97 +#: tbl_addfield.php:185 tbl_alter.php:100 tbl_indexes.php:97 #, fuzzy, php-format msgid "Table %1$s has been altered successfully" msgstr "Valitud kasutajad on õnnestunult kustutatud." -#: tbl_change.php:250 tbl_select.php:26 tbl_select.php:27 tbl_select.php:30 -#: tbl_select.php:33 +#: tbl_change.php:245 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_select.php:32 msgid "Browse foreign values" msgstr "Vaata väliseid väärtuseid" -#: tbl_change.php:280 tbl_change.php:318 +#: tbl_change.php:275 tbl_change.php:313 msgid "Function" msgstr "Funktsioon" -#: tbl_change.php:300 tbl_indexes.php:199 tbl_indexes.php:224 +#: tbl_change.php:295 tbl_indexes.php:198 tbl_indexes.php:223 msgid "Ignore" msgstr "Ignoreeri" -#: tbl_change.php:725 +#: tbl_change.php:720 #, fuzzy #| msgid " Because of its length,
                            this field might not be editable " msgid " Because of its length,
                            this column might not be editable " msgstr " Oma suuruse tõttu
                            võib see väli olla mittemuudetav " -#: tbl_change.php:884 +#: tbl_change.php:835 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:890 +#: tbl_change.php:841 msgid "Binary - do not edit" msgstr "Binaarne - ärge muutke" -#: tbl_change.php:983 +#: tbl_change.php:889 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:1128 +#: tbl_change.php:1026 msgid "Insert as new row" msgstr "Lisa uue reana" -#: tbl_change.php:1129 +#: tbl_change.php:1027 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:1130 +#: tbl_change.php:1028 #, fuzzy msgid "Show insert query" msgstr "Näitan SQL päringut" -#: tbl_change.php:1145 +#: tbl_change.php:1043 msgid "Go back to previous page" msgstr "Mine eelmisele lehele tagasi" -#: tbl_change.php:1146 +#: tbl_change.php:1044 msgid "Insert another new row" msgstr "Lisa järgmine uus rida" -#: tbl_change.php:1150 +#: tbl_change.php:1048 msgid "Go back to this page" msgstr "Mine tagasi sellele lehele" -#: tbl_change.php:1158 +#: tbl_change.php:1056 msgid "Edit next row" msgstr "Muuda järgmist rida" -#: tbl_change.php:1169 +#: tbl_change.php:1067 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Kasutage TAB klahvi, et liikuda ühelt väärtuselt teisele või CTRL+nool, et " "liikuda noole suunas" -#: tbl_change.php:1207 +#: tbl_change.php:1105 #, php-format msgid "Restart insertion with %s rows" msgstr "" -#: tbl_create.php:57 +#: tbl_create.php:55 #, php-format msgid "Table %s already exists!" msgstr "tabel %s on juba olemas!" -#: tbl_create.php:244 +#: tbl_create.php:241 #, fuzzy, php-format msgid "Table %1$s has been created." msgstr "Tabel %s kustutatud" @@ -7857,204 +7910,204 @@ msgstr "Ei suuda muuta indeksit PRIMAARSEKS!" msgid "No index parts defined!" msgstr "Indeksi osad pole defineeritud!" -#: tbl_indexes.php:159 +#: tbl_indexes.php:158 msgid "Create a new index" msgstr "Loo uus indeks" -#: tbl_indexes.php:161 +#: tbl_indexes.php:160 msgid "Modify an index" msgstr "Muuda indeksit" -#: tbl_indexes.php:167 +#: tbl_indexes.php:166 msgid "Index name:" msgstr "Indeksi nimi :" -#: tbl_indexes.php:173 +#: tbl_indexes.php:172 msgid "Index type:" msgstr "Indeksi tüüp :" -#: tbl_indexes.php:183 +#: tbl_indexes.php:182 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" "(\"PRIMARY\" peab olema ja ainult olema primaarse võtme nimi!)" -#: tbl_indexes.php:250 +#: tbl_indexes.php:249 #, php-format msgid "Add to index  %s column(s)" msgstr "Lisa indeksisse  %s rida/read" -#: tbl_indexes.php:255 tbl_structure.php:588 tbl_structure.php:599 +#: tbl_indexes.php:254 tbl_structure.php:586 tbl_structure.php:597 msgid "Column count has to be larger than zero." msgstr "Veergude arv peab olema nullist suurem." -#: tbl_move_copy.php:45 +#: tbl_move_copy.php:44 msgid "Can't move table to same one!" msgstr "Ei saa tabelit iseendasse liigutada!" -#: tbl_move_copy.php:47 +#: tbl_move_copy.php:46 msgid "Can't copy table to same one!" msgstr "Ei saa tabelit iseendasse kopeerida!" -#: tbl_move_copy.php:55 +#: tbl_move_copy.php:54 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabel %s viidu üle andmebaasi %s." -#: tbl_move_copy.php:57 +#: tbl_move_copy.php:56 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabel %s on kopeeritud andmebaasi %s." -#: tbl_move_copy.php:81 +#: tbl_move_copy.php:80 msgid "The table name is empty!" msgstr "Tabeli nimi on tühi!" -#: tbl_operations.php:248 +#: tbl_operations.php:246 msgid "Alter table order by" msgstr "Muuda tabeli sorteeringut" -#: tbl_operations.php:257 +#: tbl_operations.php:255 msgid "(singly)" msgstr "(üksikult)" -#: tbl_operations.php:277 +#: tbl_operations.php:275 msgid "Move table to (database.table):" msgstr "Vii tabel üle (andmebaas.tabel):" -#: tbl_operations.php:335 +#: tbl_operations.php:333 msgid "Table options" msgstr "Tabeli seaded" -#: tbl_operations.php:339 +#: tbl_operations.php:337 msgid "Rename table to" msgstr "Nimeta tabel ümber" -#: tbl_operations.php:510 +#: tbl_operations.php:508 msgid "Copy table to (database.table):" msgstr "Kopeeri tabel (andmebaas.tabel):" -#: tbl_operations.php:557 +#: tbl_operations.php:555 msgid "Switch to copied table" msgstr "Mine üle kopeeritud tabelile" -#: tbl_operations.php:569 +#: tbl_operations.php:567 msgid "Table maintenance" msgstr "Tabeli hooldus" -#: tbl_operations.php:590 +#: tbl_operations.php:588 msgid "Defragment table" msgstr "Defrgamenteeri tabel" -#: tbl_operations.php:629 +#: tbl_operations.php:627 #, php-format msgid "Table %s has been flushed" msgstr "Tabel %s ühtlustatud" -#: tbl_operations.php:635 +#: tbl_operations.php:633 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Ühtlusta tabelid (\"FLUSH\")" -#: tbl_operations.php:650 +#: tbl_operations.php:648 #, fuzzy msgid "Partition maintenance" msgstr "Tabeli hooldus" -#: tbl_operations.php:658 +#: tbl_operations.php:656 #, php-format msgid "Partition %s" msgstr "" -#: tbl_operations.php:661 +#: tbl_operations.php:659 msgid "Analyze" msgstr "" -#: tbl_operations.php:662 +#: tbl_operations.php:660 #, fuzzy msgid "Check" msgstr "Tsehhi" -#: tbl_operations.php:663 +#: tbl_operations.php:661 msgid "Optimize" msgstr "" -#: tbl_operations.php:664 +#: tbl_operations.php:662 msgid "Rebuild" msgstr "" -#: tbl_operations.php:665 +#: tbl_operations.php:663 #, fuzzy msgid "Repair" msgstr "Paranda tabelit" -#: tbl_operations.php:677 +#: tbl_operations.php:675 msgid "Remove partitioning" msgstr "" -#: tbl_operations.php:703 +#: tbl_operations.php:701 msgid "Check referential integrity:" msgstr "Kontrolli pärinevust:" -#: tbl_printview.php:73 +#: tbl_printview.php:72 msgid "Show tables" msgstr "Näita tabeleid" -#: tbl_printview.php:308 tbl_structure.php:655 +#: tbl_printview.php:307 tbl_structure.php:653 msgid "Space usage" msgstr "Ruumivõtt" -#: tbl_printview.php:312 tbl_structure.php:659 +#: tbl_printview.php:311 tbl_structure.php:657 msgid "Usage" msgstr "Kasutus" -#: tbl_printview.php:339 tbl_structure.php:686 +#: tbl_printview.php:338 tbl_structure.php:684 msgid "Effective" msgstr "Efektiivne" -#: tbl_printview.php:364 tbl_structure.php:724 +#: tbl_printview.php:363 tbl_structure.php:722 msgid "Row Statistics" msgstr "Rea statistika" -#: tbl_printview.php:367 tbl_structure.php:727 +#: tbl_printview.php:366 tbl_structure.php:725 msgid "Statements" msgstr "Parameerid" -#: tbl_printview.php:378 tbl_structure.php:739 +#: tbl_printview.php:377 tbl_structure.php:737 msgid "static" msgstr "" -#: tbl_printview.php:380 tbl_structure.php:741 +#: tbl_printview.php:379 tbl_structure.php:739 msgid "dynamic" msgstr "dünaamiline" -#: tbl_printview.php:402 tbl_structure.php:784 +#: tbl_printview.php:401 tbl_structure.php:782 msgid "Row length" msgstr "Rea pikkus" -#: tbl_printview.php:412 tbl_structure.php:792 +#: tbl_printview.php:411 tbl_structure.php:790 msgid " Row size " msgstr " rea suurus " -#: tbl_relation.php:278 +#: tbl_relation.php:276 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" -#: tbl_relation.php:404 +#: tbl_relation.php:402 #, fuzzy #| msgid "Internal relations" msgid "Internal relation" msgstr "Sisesed seosed" -#: tbl_relation.php:406 +#: tbl_relation.php:404 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: tbl_relation.php:412 +#: tbl_relation.php:410 msgid "Foreign key constraint" msgstr "" @@ -8062,232 +8115,232 @@ msgstr "" msgid "No rows selected" msgstr "Ridu pole valitud" -#: tbl_select.php:130 +#: tbl_select.php:129 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Tee \"päring näite järgi\" (lühend: \"%\")" -#: tbl_select.php:136 +#: tbl_select.php:135 msgid "Operator" msgstr "Operaator" -#: tbl_select.php:267 +#: tbl_select.php:266 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "Vali väljad (vähemalt üks):" -#: tbl_select.php:285 +#: tbl_select.php:284 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Lisa otsinguparameetrid (\"WHERE\" lause sisu):" -#: tbl_select.php:292 +#: tbl_select.php:291 msgid "Number of rows per page" msgstr "Ridade arv lehel" -#: tbl_select.php:298 +#: tbl_select.php:297 msgid "Display order:" msgstr "Näitamise järjekord:" -#: tbl_structure.php:160 +#: tbl_structure.php:159 msgid "Browse distinct values" msgstr "Sirvi erinevaid väärtusi" -#: tbl_structure.php:360 +#: tbl_structure.php:358 #, fuzzy #| msgid "None" msgctxt "None for default" msgid "None" msgstr "Pole" -#: tbl_structure.php:373 +#: tbl_structure.php:371 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Column %s has been dropped" msgstr "Tabel %s kustutatud" -#: tbl_structure.php:384 +#: tbl_structure.php:382 #, php-format msgid "A primary key has been added on %s" msgstr "Primaarne võti lisati %s" -#: tbl_structure.php:399 tbl_structure.php:413 tbl_structure.php:427 +#: tbl_structure.php:397 tbl_structure.php:411 tbl_structure.php:425 #, php-format msgid "An index has been added on %s" msgstr "Indeks lisati %s" -#: tbl_structure.php:505 tbl_structure.php:507 +#: tbl_structure.php:503 tbl_structure.php:505 msgid "Relation view" msgstr "Pärinevuse vaade" -#: tbl_structure.php:514 tbl_structure.php:516 +#: tbl_structure.php:512 tbl_structure.php:514 msgid "Propose table structure" msgstr "Soovita tabeli struktuuri" -#: tbl_structure.php:539 +#: tbl_structure.php:537 #, fuzzy #| msgid "Add %s field(s)" msgid "Add column" msgstr "Lisa %s väli(jad)" -#: tbl_structure.php:553 +#: tbl_structure.php:551 msgid "At End of Table" msgstr "Tabeli lõppu" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At Beginning of Table" msgstr "Tabeli algusesse" -#: tbl_structure.php:555 +#: tbl_structure.php:553 #, php-format msgid "After %s" msgstr "Peale %s" -#: tbl_structure.php:593 +#: tbl_structure.php:591 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "Loo indeks  %s väljadest" -#: tbl_structure.php:755 +#: tbl_structure.php:753 msgid "partitioned" msgstr "" -#: tbl_tracking.php:113 +#: tbl_tracking.php:109 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:186 +#: tbl_tracking.php:182 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "" -#: tbl_tracking.php:194 +#: tbl_tracking.php:190 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "" -#: tbl_tracking.php:202 +#: tbl_tracking.php:198 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "" -#: tbl_tracking.php:212 +#: tbl_tracking.php:208 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:219 +#: tbl_tracking.php:215 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:220 +#: tbl_tracking.php:216 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:229 +#: tbl_tracking.php:225 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:250 tbl_tracking.php:378 +#: tbl_tracking.php:245 tbl_tracking.php:373 msgid "Close" msgstr "" -#: tbl_tracking.php:261 +#: tbl_tracking.php:256 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:380 +#: tbl_tracking.php:375 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:396 tbl_tracking.php:503 +#: tbl_tracking.php:391 tbl_tracking.php:498 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "" -#: tbl_tracking.php:409 tbl_tracking.php:460 +#: tbl_tracking.php:404 tbl_tracking.php:455 #, fuzzy msgid "Date" msgstr "Andmed" -#: tbl_tracking.php:410 tbl_tracking.php:461 +#: tbl_tracking.php:405 tbl_tracking.php:456 #, fuzzy msgid "Username" msgstr "Kasutajanimi:" -#: tbl_tracking.php:411 +#: tbl_tracking.php:406 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:462 +#: tbl_tracking.php:457 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:506 +#: tbl_tracking.php:501 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:507 +#: tbl_tracking.php:502 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:520 +#: tbl_tracking.php:515 #, fuzzy, php-format msgid "Export as %s" msgstr "Ekspordi tüüp" -#: tbl_tracking.php:560 +#: tbl_tracking.php:555 msgid "Show versions" msgstr "" -#: tbl_tracking.php:592 +#: tbl_tracking.php:587 #, fuzzy msgid "Version" msgstr "Pärsia" -#: tbl_tracking.php:639 +#: tbl_tracking.php:634 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "" -#: tbl_tracking.php:641 +#: tbl_tracking.php:636 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:652 +#: tbl_tracking.php:647 #, php-format msgid "Activate tracking for %s.%s" msgstr "" -#: tbl_tracking.php:654 +#: tbl_tracking.php:649 msgid "Activate now" msgstr "" -#: tbl_tracking.php:667 +#: tbl_tracking.php:662 #, php-format msgid "Create version %s of %s.%s" msgstr "" -#: tbl_tracking.php:671 +#: tbl_tracking.php:666 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:679 +#: tbl_tracking.php:674 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:687 +#: tbl_tracking.php:682 #, fuzzy msgid "Create version" msgstr "Suhte loomine (relation)" @@ -8337,11 +8390,36 @@ msgstr "Profiil uuendatud." msgid "VIEW name" msgstr "" -#: view_operations.php:92 +#: view_operations.php:91 #, fuzzy msgid "Rename view to" msgstr "Nimeta tabel ümber" +#, fuzzy +#~| msgid "Enabled" +#~ msgctxt "BLOB repository" +#~ msgid "Enabled" +#~ msgstr "Lubatud" + +#, fuzzy +#~ msgid "Disable" +#~ msgstr "Keelatud" + +#, fuzzy +#~ msgctxt "BLOB repository" +#~ msgid "Repair" +#~ msgstr "Paranda tabelit" + +#, fuzzy +#~| msgid "Disabled" +#~ msgctxt "BLOB repository" +#~ msgid "Disabled" +#~ msgstr "Keelatud" + +#, fuzzy +#~ msgid "Enable" +#~ msgstr "Lubatud" + #~ msgid "" #~ "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " #~ "extension. Please check your PHP configuration." diff --git a/po/eu.po b/po/eu.po index 6148faa5b..72b87f892 100644 --- a/po/eu.po +++ b/po/eu.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-21 13:53+0200\n" +"POT-Creation-Date: 2010-07-26 17:18+0200\n" "PO-Revision-Date: 2010-07-21 14:53+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: basque \n" @@ -14,19 +14,19 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.1\n" -#: browse_foreigners.php:37 browse_foreigners.php:58 -#: libraries/display_tbl.lib.php:416 server_privileges.php:1506 +#: browse_foreigners.php:36 browse_foreigners.php:57 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1510 msgid "Show all" msgstr "Dena erakutsi" -#: browse_foreigners.php:81 libraries/common.lib.php:2313 -#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:393 -#: libraries/export/pdf.php:146 pdf_schema.php:282 pdf_schema.php:1122 -#: pdf_schema.php:1138 +#: browse_foreigners.php:80 libraries/common.lib.php:2318 +#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:392 +#: libraries/export/pdf.php:146 pdf_schema.php:281 pdf_schema.php:1121 +#: pdf_schema.php:1137 msgid "Page number:" msgstr "Orri zenbakia:" -#: browse_foreigners.php:131 +#: browse_foreigners.php:130 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -36,139 +36,151 @@ msgstr "" "parent window or your browser is blocking cross-window updates of your " "security settings" -#: browse_foreigners.php:149 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2829 -#: libraries/common.lib.php:2836 libraries/db_links.inc.php:74 -#: libraries/tbl_links.inc.php:62 +#: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 +#: db_structure.php:89 db_structure.php:91 db_structure.php:102 +#: db_structure.php:104 libraries/common.lib.php:2834 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Bilatu" -#: browse_foreigners.php:152 db_operations.php:384 db_operations.php:428 -#: db_operations.php:498 db_operations.php:608 db_search.php:344 -#: db_structure.php:566 js/messages.php:48 libraries/Config.class.php:1043 -#: libraries/Theme_Manager.class.php:310 +#: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 +#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 +#: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 -#: libraries/common.lib.php:1340 libraries/common.lib.php:2289 +#: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 -#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:275 -#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:531 -#: libraries/display_tbl.lib.php:613 libraries/replication_gui.lib.php:75 +#: libraries/display_export.lib.php:269 libraries/display_import.lib.php:275 +#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 +#: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 #: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:781 -#: main.php:127 navigation.php:231 pdf_pages.php:291 pdf_pages.php:327 -#: pdf_pages.php:529 pmd_pdf.php:115 server_binlog.php:128 -#: server_privileges.php:664 server_privileges.php:1616 -#: server_privileges.php:1963 server_privileges.php:2010 -#: server_privileges.php:2049 server_replication.php:234 -#: server_replication.php:317 server_replication.php:340 -#: server_synchronize.php:1208 tbl_change.php:328 tbl_change.php:1172 -#: tbl_change.php:1209 tbl_indexes.php:253 tbl_operations.php:264 -#: tbl_operations.php:301 tbl_operations.php:498 tbl_operations.php:560 -#: tbl_operations.php:680 tbl_select.php:324 tbl_structure.php:561 -#: tbl_structure.php:596 tbl_tracking.php:394 tbl_tracking.php:511 -#: view_create.php:181 view_operations.php:100 +#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 +#: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 +#: server_privileges.php:663 server_privileges.php:1620 +#: server_privileges.php:1967 server_privileges.php:2014 +#: server_privileges.php:2053 server_replication.php:233 +#: server_replication.php:316 server_replication.php:339 +#: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 +#: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 +#: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 +#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "Joan" -#: browse_foreigners.php:167 browse_foreigners.php:171 -#: libraries/Index.class.php:441 tbl_tracking.php:319 +#: browse_foreigners.php:166 browse_foreigners.php:170 +#: libraries/Index.class.php:441 tbl_tracking.php:314 msgid "Keyname" msgstr "Klabearen hitza" -#: browse_foreigners.php:168 browse_foreigners.php:170 -#: server_collations.php:54 server_collations.php:66 server_engines.php:58 +#: browse_foreigners.php:167 browse_foreigners.php:169 +#: server_collations.php:54 server_collations.php:66 server_engines.php:57 #: server_status.php:738 msgid "Description" msgstr "Deskribapena" -#: browse_foreigners.php:246 browse_foreigners.php:255 -#: browse_foreigners.php:267 browse_foreigners.php:275 +#: browse_foreigners.php:245 browse_foreigners.php:254 +#: browse_foreigners.php:266 browse_foreigners.php:274 msgid "Use this value" msgstr "Erabili balio hau" -#: db_create.php:45 +#: bs_disp_as_mime_type.php:29 bs_play_media.php:35 +msgid "No blob streaming server configured!" +msgstr "" + +#: bs_disp_as_mime_type.php:35 +msgid "Failed to fetch headers" +msgstr "" + +#: bs_disp_as_mime_type.php:41 +msgid "Failed to open remote URL" +msgstr "" + +#: db_create.php:44 #, fuzzy, php-format msgid "Database %1$s has been created." msgstr "%s datu-basea ezabatua izan da." -#: db_datadict.php:48 db_operations.php:377 +#: db_datadict.php:48 db_operations.php:313 msgid "Database comment: " msgstr "Datu-basearen iruzkina: " -#: db_datadict.php:164 libraries/tbl_properties.inc.php:723 -#: pdf_schema.php:1235 tbl_operations.php:346 tbl_printview.php:128 +#: db_datadict.php:164 libraries/tbl_properties.inc.php:722 +#: pdf_schema.php:1234 tbl_operations.php:344 tbl_printview.php:127 msgid "Table comments" msgstr "Taularen iruzkinak" -#: db_datadict.php:173 db_qbe.php:173 libraries/Index.class.php:445 +#: db_datadict.php:173 db_qbe.php:170 libraries/Index.class.php:445 #: libraries/export/htmlword.php:243 libraries/export/latex.php:364 #: libraries/export/odt.php:293 libraries/export/texytext.php:233 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:274 -#: pdf_schema.php:1261 pdf_schema.php:1282 tbl_change.php:306 -#: tbl_indexes.php:188 tbl_printview.php:140 tbl_relation.php:401 -#: tbl_select.php:133 tbl_structure.php:176 tbl_tracking.php:272 -#: tbl_tracking.php:323 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 +#: pdf_schema.php:1260 pdf_schema.php:1281 tbl_change.php:301 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:132 tbl_structure.php:175 tbl_tracking.php:267 +#: tbl_tracking.php:318 #, fuzzy #| msgid "Column names" msgid "Column" msgstr "Zutabe izenak" -#: db_datadict.php:174 db_printview.php:105 libraries/Index.class.php:442 +#: db_datadict.php:174 db_printview.php:104 libraries/Index.class.php:442 #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 #: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:244 #: libraries/export/latex.php:364 libraries/export/odt.php:296 #: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:99 -#: pdf_schema.php:1262 pdf_schema.php:1283 server_privileges.php:2062 -#: tbl_change.php:285 tbl_change.php:312 tbl_printview.php:141 -#: tbl_printview.php:311 tbl_select.php:134 tbl_structure.php:177 -#: tbl_structure.php:658 tbl_tracking.php:273 tbl_tracking.php:320 +#: pdf_schema.php:1261 pdf_schema.php:1282 server_privileges.php:2066 +#: tbl_change.php:280 tbl_change.php:307 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:133 tbl_structure.php:176 +#: tbl_structure.php:656 tbl_tracking.php:268 tbl_tracking.php:315 msgid "Type" msgstr "Mota" #: db_datadict.php:176 libraries/Index.class.php:448 #: libraries/export/htmlword.php:245 libraries/export/latex.php:364 #: libraries/export/odt.php:299 libraries/export/texytext.php:235 -#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1264 -#: pdf_schema.php:1285 tbl_change.php:321 tbl_printview.php:143 -#: tbl_structure.php:180 tbl_tracking.php:275 tbl_tracking.php:326 +#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1263 +#: pdf_schema.php:1284 tbl_change.php:316 tbl_printview.php:142 +#: tbl_structure.php:179 tbl_tracking.php:270 tbl_tracking.php:321 msgid "Null" msgstr "Nulua" -#: db_datadict.php:177 db_structure.php:500 libraries/export/htmlword.php:246 +#: db_datadict.php:177 db_structure.php:486 libraries/export/htmlword.php:246 #: libraries/export/latex.php:364 libraries/export/odt.php:302 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:105 -#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 -#: tbl_structure.php:181 tbl_tracking.php:276 +#: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:143 +#: tbl_structure.php:180 tbl_tracking.php:271 msgid "Default" msgstr "Lehenetsia" #: db_datadict.php:181 libraries/export/htmlword.php:248 #: libraries/export/latex.php:366 libraries/export/odt.php:306 -#: libraries/export/texytext.php:238 pdf_schema.php:1267 pdf_schema.php:1288 -#: tbl_printview.php:148 +#: libraries/export/texytext.php:238 pdf_schema.php:1266 pdf_schema.php:1287 +#: tbl_printview.php:147 msgid "Links to" msgstr "Estekak honi:" -#: db_datadict.php:183 db_printview.php:111 libraries/export/htmlword.php:251 +#: db_datadict.php:183 db_printview.php:110 libraries/export/htmlword.php:251 #: libraries/export/latex.php:49 libraries/export/latex.php:369 #: libraries/export/odt.php:37 libraries/export/odt.php:311 #: libraries/export/sql.php:29 libraries/export/texytext.php:241 -#: libraries/tbl_properties.inc.php:129 pdf_schema.php:1278 -#: pdf_schema.php:1289 tbl_printview.php:150 +#: libraries/tbl_properties.inc.php:128 pdf_schema.php:1277 +#: pdf_schema.php:1288 tbl_printview.php:149 msgid "Comments" msgstr "Iruzkinak" #: db_datadict.php:266 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/export/htmlword.php:321 #: libraries/export/latex.php:434 libraries/export/odt.php:367 -#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:262 -#: pdf_schema.php:1343 server_privileges.php:1560 server_privileges.php:1571 -#: server_privileges.php:1881 server_privileges.php:1886 -#: server_privileges.php:2179 sql.php:131 sql.php:193 tbl_printview.php:227 -#: tbl_structure.php:349 tbl_tracking.php:336 tbl_tracking.php:341 +#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:261 +#: pdf_schema.php:1342 server_privileges.php:1564 server_privileges.php:1575 +#: server_privileges.php:1885 server_privileges.php:1890 +#: server_privileges.php:2183 sql.php:130 sql.php:192 tbl_printview.php:226 +#: tbl_structure.php:347 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "Ez" @@ -179,17 +191,17 @@ msgstr "Ez" #: libraries/mult_submits.inc.php:49 libraries/mult_submits.inc.php:54 #: libraries/mult_submits.inc.php:59 libraries/mult_submits.inc.php:91 #: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:105 -#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:261 -#: libraries/mult_submits.inc.php:272 pdf_schema.php:1343 -#: server_databases.php:63 server_privileges.php:1557 -#: server_privileges.php:1571 server_privileges.php:1881 -#: server_privileges.php:1884 server_privileges.php:2179 sql.php:192 -#: tbl_printview.php:227 tbl_structure.php:39 tbl_structure.php:349 -#: tbl_tracking.php:334 tbl_tracking.php:339 +#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:260 +#: libraries/mult_submits.inc.php:271 pdf_schema.php:1342 +#: server_databases.php:61 server_privileges.php:1561 +#: server_privileges.php:1575 server_privileges.php:1885 +#: server_privileges.php:1888 server_privileges.php:2183 sql.php:191 +#: tbl_printview.php:226 tbl_structure.php:38 tbl_structure.php:347 +#: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" msgstr "Bai" -#: db_datadict.php:321 db_printview.php:265 tbl_printview.php:496 +#: db_datadict.php:321 db_printview.php:264 tbl_printview.php:495 msgid "Print" msgstr "Inprimatu" @@ -197,199 +209,158 @@ msgstr "Inprimatu" msgid "View dump (schema) of database" msgstr "Ikusi datu-basearen iraulketa (eskema)" -#: db_export.php:32 db_printview.php:95 db_qbe.php:101 db_structure.php:50 -#: db_tracking.php:34 export.php:352 navigation.php:326 +#: db_export.php:32 db_printview.php:94 db_qbe.php:98 db_structure.php:49 +#: db_tracking.php:30 export.php:350 navigation.php:325 msgid "No tables found in database." msgstr "Ez da taularik aurkitu datu-basean." -#: db_export.php:42 db_search.php:326 server_export.php:26 +#: db_export.php:42 db_search.php:326 server_export.php:24 msgid "Select All" msgstr "Dena hautatu" -#: db_export.php:44 db_search.php:329 server_export.php:28 +#: db_export.php:44 db_search.php:329 server_export.php:26 msgid "Unselect All" msgstr "Desautatu dena" -#: db_operations.php:37 tbl_create.php:49 +#: db_operations.php:33 tbl_create.php:47 #, fuzzy msgid "The database name is empty!" msgstr "Taularen izena hutsik dago!" -#: db_operations.php:235 +#: db_operations.php:231 #, fuzzy, php-format msgid "Database %s has been renamed to %s" msgstr "%s taula %s-(e)ra berrizendatua izan da" -#: db_operations.php:239 +#: db_operations.php:235 #, fuzzy, php-format msgid "Database %s has been copied to %s" msgstr "%s taula hona kopiatua izan da: %s." -#: db_operations.php:411 +#: db_operations.php:347 #, fuzzy msgid "Rename database to" msgstr "Taula berrizendatu izen honetara: " -#: db_operations.php:416 server_processlist.php:56 +#: db_operations.php:352 server_processlist.php:56 msgid "Command" msgstr "Komandoa" -#: db_operations.php:428 tbl_change.php:1141 +#: db_operations.php:364 tbl_change.php:1039 msgid "and then" msgstr "eta orduan" -#: db_operations.php:454 +#: db_operations.php:390 #, fuzzy msgid "Copy database to" msgstr "Datu-baserik ez" -#: db_operations.php:461 tbl_operations.php:527 tbl_tracking.php:387 +#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Egitura soilik" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:389 +#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Egitura eta datuak" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:388 +#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Datuak soilik" -#: db_operations.php:471 +#: db_operations.php:407 msgid "CREATE DATABASE before copying" msgstr "" -#: db_operations.php:474 libraries/export/sql.php:51 +#: db_operations.php:410 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 -#: libraries/export/sql.php:81 tbl_operations.php:535 +#: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "%s gehitu" -#: db_operations.php:478 libraries/export/sql.php:77 tbl_operations.php:298 -#: tbl_operations.php:537 +#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Gehitu AUTO_INCREMENT balioa" -#: db_operations.php:482 tbl_operations.php:544 +#: db_operations.php:418 tbl_operations.php:542 msgid "Add constraints" msgstr "Murrizketak gehitu" -#: db_operations.php:495 +#: db_operations.php:431 #, fuzzy msgid "Switch to copied database" msgstr "Kopiatutako taulara aldatu" -#: db_operations.php:536 -msgid "BLOB Repository" -msgstr "" - -#: db_operations.php:539 db_tracking.php:75 libraries/common.lib.php:1357 -#: libraries/server_links.inc.php:48 server_processlist.php:58 -#: tbl_tracking.php:595 test/theme.php:100 -msgid "Status" -msgstr "Egoera" - -#: db_operations.php:547 -#, fuzzy -#| msgid "Enabled" -msgctxt "BLOB repository" -msgid "Enabled" -msgstr "Gaituta" - -#: db_operations.php:551 -#, fuzzy -msgid "Disable" -msgstr "Ezgaituta" - -#: db_operations.php:561 -msgid "Damaged" -msgstr "" - -#: db_operations.php:565 -#, fuzzy -msgctxt "BLOB repository" -msgid "Repair" -msgstr "Taula konpondu" - -#: db_operations.php:573 -#, fuzzy -#| msgid "Disabled" -msgctxt "BLOB repository" -msgid "Disabled" -msgstr "Ezgaituta" - -#: db_operations.php:577 -#, fuzzy -msgid "Enable" -msgstr "Gaituta" - -#: db_operations.php:601 libraries/Index.class.php:447 +#: db_operations.php:451 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 -#: server_collations.php:53 server_collations.php:65 server_databases.php:110 -#: tbl_operations.php:362 tbl_select.php:135 tbl_structure.php:178 -#: tbl_structure.php:766 tbl_tracking.php:274 tbl_tracking.php:325 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 +#: server_collations.php:53 server_collations.php:65 server_databases.php:108 +#: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:177 +#: tbl_structure.php:764 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "Ordenamendua" -#: db_operations.php:614 main.php:315 pdf_schema.php:33 -#, php-format +#: db_operations.php:464 pdf_schema.php:32 +#, fuzzy, php-format +#| msgid "" +#| "The additional features for working with linked tables have been " +#| "deactivated. To find out why click %shere%s." msgid "" -"The additional features for working with linked tables have been " -"deactivated. To find out why click %shere%s." +"The phpMyAdmin configuration storage has been deactivated. To find out why " +"click %shere%s." msgstr "" "Estekatutako taulekin lan egiteko hobespen gehigarriak ezgaitu dira . " "Zergatia jakiteko egizu klik %shemen%s." -#: db_operations.php:647 +#: db_operations.php:497 msgid "Edit PDF Pages" msgstr "Editatu PDF Orriak" -#: db_printview.php:103 db_tracking.php:71 db_tracking.php:156 +#: db_printview.php:102 db_tracking.php:67 db_tracking.php:152 #: libraries/db_structure.lib.php:37 libraries/export/xml.php:327 -#: libraries/header.inc.php:125 pdf_pages.php:423 server_privileges.php:1657 -#: server_privileges.php:1713 server_privileges.php:1977 -#: server_synchronize.php:422 server_synchronize.php:865 tbl_tracking.php:591 +#: libraries/header.inc.php:125 pdf_pages.php:422 server_privileges.php:1661 +#: server_privileges.php:1717 server_privileges.php:1981 +#: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "Taula" -#: db_printview.php:104 libraries/db_structure.lib.php:47 +#: db_printview.php:103 libraries/db_structure.lib.php:47 #: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 -#: navigation.php:629 navigation.php:651 server_databases.php:121 -#: tbl_printview.php:392 tbl_structure.php:364 tbl_structure.php:776 +#: navigation.php:628 navigation.php:650 server_databases.php:119 +#: tbl_printview.php:391 tbl_structure.php:362 tbl_structure.php:774 msgid "Rows" msgstr "Errenkadak" -#: db_printview.php:108 libraries/db_structure.lib.php:58 tbl_indexes.php:189 +#: db_printview.php:107 libraries/db_structure.lib.php:58 tbl_indexes.php:188 msgid "Size" msgstr "Tamaina" -#: db_printview.php:161 db_structure.php:456 libraries/export/sql.php:556 +#: db_printview.php:160 db_structure.php:442 libraries/export/sql.php:556 #: libraries/export/sql.php:896 msgid "in use" msgstr "lanean" -#: db_printview.php:186 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:511 pdf_schema.php:1240 tbl_printview.php:432 -#: tbl_structure.php:808 +#: db_printview.php:185 libraries/db_info.inc.php:86 +#: libraries/export/sql.php:511 pdf_schema.php:1239 tbl_printview.php:431 +#: tbl_structure.php:806 msgid "Creation" msgstr "Sortzea" -#: db_printview.php:195 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:516 pdf_schema.php:1245 tbl_printview.php:442 -#: tbl_structure.php:816 +#: db_printview.php:194 libraries/db_info.inc.php:91 +#: libraries/export/sql.php:516 pdf_schema.php:1244 tbl_printview.php:441 +#: tbl_structure.php:814 msgid "Last update" msgstr "Azken eguneraketa" -#: db_printview.php:204 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:521 pdf_schema.php:1250 tbl_printview.php:452 -#: tbl_structure.php:824 +#: db_printview.php:203 libraries/db_info.inc.php:96 +#: libraries/export/sql.php:521 pdf_schema.php:1249 tbl_printview.php:451 +#: tbl_structure.php:822 msgid "Last check" msgstr "Azken egiaztapena" -#: db_printview.php:221 db_structure.php:479 +#: db_printview.php:220 db_structure.php:465 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -397,94 +368,94 @@ msgid_plural "%s tables" msgstr[0] "%s taula(k)" msgstr[1] "%s taula(k)" -#: db_qbe.php:28 import.php:453 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1980 libraries/sql_query_form.lib.php:138 -#: tbl_operations.php:212 tbl_relation.php:291 tbl_row_action.php:130 -#: view_operations.php:61 +#: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 +#: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "Zure SQL-kontsula arrakastaz burutu da" -#: db_qbe.php:41 +#: db_qbe.php:38 msgid "You have to choose at least one column to display" msgstr "Gutxienez bistaratzeko Zutabe bat hautatu duzu." -#: db_qbe.php:199 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:865 +#: db_qbe.php:196 libraries/db_structure.lib.php:95 +#: libraries/display_tbl.lib.php:864 msgid "Sort" msgstr "Ordenatu" -#: db_qbe.php:208 db_qbe.php:242 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:522 libraries/display_tbl.lib.php:827 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:259 -#: tbl_select.php:311 +#: db_qbe.php:205 db_qbe.php:239 libraries/db_structure.lib.php:102 +#: libraries/display_tbl.lib.php:521 libraries/display_tbl.lib.php:826 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:257 +#: tbl_select.php:310 msgid "Ascending" msgstr "Goranzko" -#: db_qbe.php:209 db_qbe.php:250 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:527 libraries/display_tbl.lib.php:824 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:260 -#: tbl_select.php:312 +#: db_qbe.php:206 db_qbe.php:247 libraries/db_structure.lib.php:110 +#: libraries/display_tbl.lib.php:526 libraries/display_tbl.lib.php:823 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:258 +#: tbl_select.php:311 msgid "Descending" msgstr "Beherantz" -#: db_qbe.php:263 db_tracking.php:77 libraries/display_tbl.lib.php:307 -#: tbl_change.php:275 tbl_tracking.php:596 +#: db_qbe.php:260 db_tracking.php:73 libraries/display_tbl.lib.php:306 +#: tbl_change.php:270 tbl_tracking.php:591 msgid "Show" msgstr "Erakutsi" -#: db_qbe.php:299 +#: db_qbe.php:296 msgid "Criteria" msgstr "Irizpidea" -#: db_qbe.php:352 db_qbe.php:434 db_qbe.php:526 db_qbe.php:557 +#: db_qbe.php:349 db_qbe.php:431 db_qbe.php:523 db_qbe.php:554 msgid "Ins" msgstr "Txertatu" -#: db_qbe.php:356 db_qbe.php:438 db_qbe.php:523 db_qbe.php:554 +#: db_qbe.php:353 db_qbe.php:435 db_qbe.php:520 db_qbe.php:551 msgid "And" msgstr "Eta" -#: db_qbe.php:365 db_qbe.php:446 db_qbe.php:528 db_qbe.php:559 +#: db_qbe.php:362 db_qbe.php:443 db_qbe.php:525 db_qbe.php:556 msgid "Del" msgstr "Ezabatu" -#: db_qbe.php:369 db_qbe.php:450 db_qbe.php:521 db_qbe.php:552 -#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:778 -#: server_privileges.php:297 tbl_change.php:1027 tbl_indexes.php:249 -#: tbl_select.php:285 +#: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 +#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:777 +#: server_privileges.php:296 tbl_change.php:925 tbl_indexes.php:248 +#: tbl_select.php:284 msgid "Or" msgstr "Edo" -#: db_qbe.php:506 +#: db_qbe.php:503 msgid "Modify" msgstr "Aldatu" -#: db_qbe.php:583 +#: db_qbe.php:580 #, fuzzy #| msgid "Add/Delete Criteria Row" msgid "Add/Delete criteria rows" msgstr "Gehitu/ezabatu irizpide-errenkada" -#: db_qbe.php:595 +#: db_qbe.php:592 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Add/Delete columns" msgstr "Gehitu/ezabatu irizpide-zutabea" -#: db_qbe.php:608 db_qbe.php:633 +#: db_qbe.php:605 db_qbe.php:630 msgid "Update Query" msgstr "Kontsulta eguneratu" -#: db_qbe.php:616 +#: db_qbe.php:613 msgid "Use Tables" msgstr "Taulak erabili" -#: db_qbe.php:639 +#: db_qbe.php:636 #, php-format msgid "SQL query on database %s:" msgstr "SQL-kontsulta %s datu-basean:" -#: db_qbe.php:933 libraries/common.lib.php:1222 +#: db_qbe.php:930 libraries/common.lib.php:1215 msgid "Submit Query" msgstr "Kontsulta bidali" @@ -524,17 +495,17 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s emaitza(k) %s taulan" msgstr[1] "%s emaitza(k) %s taulan" -#: db_search.php:249 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2831 -#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:49 -#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:466 +#: db_search.php:249 db_structure.php:75 db_structure.php:76 +#: db_structure.php:88 db_structure.php:90 db_structure.php:101 +#: db_structure.php:103 libraries/common.lib.php:2836 +#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 +#: tbl_structure.php:35 tbl_structure.php:47 tbl_structure.php:464 msgid "Browse" msgstr "Arakatu" -#: db_search.php:254 libraries/display_tbl.lib.php:1164 -#: libraries/display_tbl.lib.php:2055 libraries/sql_query_form.lib.php:453 -#: pdf_pages.php:285 pdf_pages.php:424 pdf_pages.php:460 pdf_pages.php:488 +#: db_search.php:254 libraries/display_tbl.lib.php:1163 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 msgid "Delete" @@ -574,231 +545,237 @@ msgstr "Taul(ar)en barnean:" msgid "Inside column:" msgstr "Taul(ar)en barnean:" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2830 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:75 +#: db_structure.php:79 db_structure.php:80 db_structure.php:92 +#: db_structure.php:93 db_structure.php:105 db_structure.php:106 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 +#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Txertatu" -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2827 libraries/common.lib.php:2834 -#: libraries/db_links.inc.php:62 libraries/export/htmlword.php:22 +#: db_structure.php:81 db_structure.php:94 db_structure.php:107 +#: libraries/common.lib.php:2832 libraries/common.lib.php:2839 +#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 -#: libraries/tbl_links.inc.php:55 pmd_general.php:133 -#: server_privileges.php:593 server_replication.php:314 tbl_tracking.php:268 +#: libraries/tbl_links.inc.php:54 pmd_general.php:133 +#: server_privileges.php:592 server_replication.php:313 tbl_tracking.php:263 msgid "Structure" msgstr "Egitura" -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:544 db_structure.php:545 db_tracking.php:90 -#: libraries/Index.class.php:482 libraries/common.lib.php:1659 -#: libraries/db_links.inc.php:99 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:126 -#: server_databases.php:351 tbl_structure.php:26 tbl_structure.php:150 -#: tbl_structure.php:151 tbl_structure.php:470 +#: db_structure.php:82 db_structure.php:83 db_structure.php:95 +#: db_structure.php:96 db_structure.php:108 db_structure.php:109 +#: db_structure.php:530 db_structure.php:531 db_tracking.php:86 +#: libraries/Index.class.php:482 libraries/common.lib.php:1663 +#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 +#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 +#: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" msgstr "Ezabatu" -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:542 db_structure.php:543 libraries/common.lib.php:1658 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:104 +#: db_structure.php:84 db_structure.php:85 db_structure.php:97 +#: db_structure.php:98 db_structure.php:110 db_structure.php:111 +#: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 +#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 msgid "Empty" msgstr "Hutsik" -#: db_structure.php:315 libraries/tbl_links.inc.php:99 +#: db_structure.php:301 libraries/tbl_links.inc.php:98 #, php-format msgid "Table %s has been emptied" msgstr "%s taula hustu egin da" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, fuzzy, php-format msgid "View %s has been dropped" msgstr "%s eremua ezabatu da" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "Table %s has been dropped" msgstr "%s taula ezabatu egin da" -#: db_structure.php:332 +#: db_structure.php:318 msgid "Tracking is active." msgstr "" -#: db_structure.php:334 +#: db_structure.php:320 msgid "Tracking is not active." msgstr "" -#: db_structure.php:419 libraries/display_tbl.lib.php:1943 +#: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -#: db_structure.php:433 db_structure.php:447 libraries/header.inc.php:125 -#: libraries/tbl_info.inc.php:65 tbl_structure.php:184 test/theme.php:73 +#: db_structure.php:419 db_structure.php:433 libraries/header.inc.php:125 +#: libraries/tbl_info.inc.php:60 tbl_structure.php:183 test/theme.php:73 msgid "View" msgstr "" -#: db_structure.php:484 libraries/db_structure.lib.php:40 -#: libraries/server_links.inc.php:69 server_replication.php:32 -#: server_replication.php:163 server_status.php:368 +#: db_structure.php:470 libraries/db_structure.lib.php:40 +#: libraries/server_links.inc.php:69 server_replication.php:31 +#: server_replication.php:162 server_status.php:368 #, fuzzy msgid "Replication" msgstr "Erlazioak" -#: db_structure.php:488 +#: db_structure.php:474 msgid "Sum" msgstr "Gehiketa" -#: db_structure.php:495 libraries/StorageEngine.class.php:349 +#: db_structure.php:481 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: db_structure.php:523 db_structure.php:540 db_structure.php:541 -#: libraries/display_tbl.lib.php:2080 libraries/display_tbl.lib.php:2085 -#: libraries/mult_submits.inc.php:15 server_databases.php:345 -#: server_databases.php:350 server_privileges.php:1588 tbl_structure.php:454 -#: tbl_structure.php:463 +#: db_structure.php:509 db_structure.php:526 db_structure.php:527 +#: libraries/display_tbl.lib.php:2039 libraries/display_tbl.lib.php:2044 +#: libraries/mult_submits.inc.php:15 server_databases.php:343 +#: server_databases.php:348 server_privileges.php:1592 tbl_structure.php:452 +#: tbl_structure.php:461 msgid "With selected:" msgstr "Ikurdunak:" -#: db_structure.php:526 libraries/display_tbl.lib.php:2075 -#: server_databases.php:347 server_privileges.php:569 -#: server_privileges.php:1591 tbl_structure.php:457 +#: db_structure.php:512 libraries/display_tbl.lib.php:2034 +#: server_databases.php:345 server_privileges.php:568 +#: server_privileges.php:1595 tbl_structure.php:455 msgid "Check All" msgstr "Guztiak egiaztatu" -#: db_structure.php:530 libraries/display_tbl.lib.php:2076 -#: libraries/replication_gui.lib.php:35 server_databases.php:349 -#: server_privileges.php:572 server_privileges.php:1595 tbl_structure.php:461 +#: db_structure.php:516 libraries/display_tbl.lib.php:2035 +#: libraries/replication_gui.lib.php:35 server_databases.php:347 +#: server_privileges.php:571 server_privileges.php:1599 tbl_structure.php:459 msgid "Uncheck All" msgstr "Desautatu dena" -#: db_structure.php:535 +#: db_structure.php:521 msgid "Check tables having overhead" msgstr "Arazteko hondakinak egiaztatu" -#: db_structure.php:546 db_structure.php:547 db_structure.php:598 -#: libraries/display_tbl.lib.php:2179 libraries/mult_submits.inc.php:27 -#: tbl_structure.php:491 tbl_structure.php:493 +#: db_structure.php:532 db_structure.php:533 db_structure.php:584 +#: libraries/display_tbl.lib.php:2138 libraries/mult_submits.inc.php:27 +#: tbl_structure.php:489 tbl_structure.php:491 msgid "Print view" msgstr "Inprimatzeko ikuspegia" -#: db_structure.php:548 db_structure.php:549 libraries/mult_submits.inc.php:41 -#: tbl_operations.php:580 +#: db_structure.php:534 db_structure.php:535 libraries/mult_submits.inc.php:41 +#: tbl_operations.php:578 msgid "Check table" msgstr "Taula egiaztatu" -#: db_structure.php:550 db_structure.php:551 libraries/mult_submits.inc.php:46 -#: tbl_operations.php:620 tbl_structure.php:708 tbl_structure.php:710 +#: db_structure.php:536 db_structure.php:537 libraries/mult_submits.inc.php:46 +#: tbl_operations.php:618 tbl_structure.php:706 tbl_structure.php:708 msgid "Optimize table" msgstr "Taula optimizatu" -#: db_structure.php:552 db_structure.php:553 libraries/mult_submits.inc.php:51 -#: tbl_operations.php:610 +#: db_structure.php:538 db_structure.php:539 libraries/mult_submits.inc.php:51 +#: tbl_operations.php:608 msgid "Repair table" msgstr "Taula konpondu" -#: db_structure.php:554 db_structure.php:555 libraries/mult_submits.inc.php:56 -#: tbl_operations.php:600 +#: db_structure.php:540 db_structure.php:541 libraries/mult_submits.inc.php:56 +#: tbl_operations.php:598 msgid "Analyze table" msgstr "Taula aztertu" -#: db_structure.php:556 db_structure.php:557 libraries/db_links.inc.php:70 -#: libraries/display_export.lib.php:82 libraries/display_tbl.lib.php:2093 -#: libraries/display_tbl.lib.php:2224 libraries/mult_submits.inc.php:61 -#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:81 -#: pmd_pdf.php:83 pmd_pdf.php:108 server_privileges.php:1372 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 +#: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 +#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 +#: pmd_pdf.php:81 pmd_pdf.php:106 server_privileges.php:1376 #: setup/frames/menu.inc.php:22 tbl_row_action.php:58 msgid "Export" msgstr "Esportatu" -#: db_structure.php:605 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:591 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "Datu-hiztegia" -#: db_tracking.php:65 +#: db_tracking.php:61 msgid "Tracked tables" msgstr "" -#: db_tracking.php:70 libraries/export/htmlword.php:85 +#: db_tracking.php:66 libraries/export/htmlword.php:85 #: libraries/export/latex.php:152 libraries/export/odt.php:112 #: libraries/export/sql.php:339 libraries/export/texytext.php:84 #: libraries/export/xml.php:254 libraries/header.inc.php:105 -#: libraries/header_printview.inc.php:57 server_databases.php:168 -#: server_privileges.php:1652 server_privileges.php:1713 -#: server_privileges.php:1971 server_processlist.php:55 -#: server_synchronize.php:1178 server_synchronize.php:1182 -#: tbl_tracking.php:590 test/theme.php:64 +#: libraries/header_printview.inc.php:57 server_databases.php:166 +#: server_privileges.php:1656 server_privileges.php:1717 +#: server_privileges.php:1975 server_processlist.php:55 +#: server_synchronize.php:1177 server_synchronize.php:1181 +#: tbl_tracking.php:585 test/theme.php:64 msgid "Database" msgstr "Datu-basea" -#: db_tracking.php:72 +#: db_tracking.php:68 msgid "Last version" msgstr "" -#: db_tracking.php:73 tbl_tracking.php:593 +#: db_tracking.php:69 tbl_tracking.php:588 #, fuzzy msgid "Created" msgstr "Sortu" -#: db_tracking.php:74 tbl_tracking.php:594 +#: db_tracking.php:70 tbl_tracking.php:589 msgid "Updated" msgstr "" -#: db_tracking.php:76 libraries/Index.class.php:439 -#: libraries/db_structure.lib.php:44 server_databases.php:202 -#: server_privileges.php:1534 server_privileges.php:1717 -#: server_privileges.php:2065 tbl_structure.php:186 +#: db_tracking.php:71 libraries/common.lib.php:1361 +#: libraries/server_links.inc.php:48 server_processlist.php:58 +#: tbl_tracking.php:590 test/theme.php:100 +msgid "Status" +msgstr "Egoera" + +#: db_tracking.php:72 libraries/Index.class.php:439 +#: libraries/db_structure.lib.php:44 server_databases.php:200 +#: server_privileges.php:1538 server_privileges.php:1721 +#: server_privileges.php:2069 tbl_structure.php:185 msgid "Action" msgstr "Ekintza" -#: db_tracking.php:87 db_tracking.php:119 +#: db_tracking.php:83 db_tracking.php:115 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:105 tbl_tracking.php:547 tbl_tracking.php:605 -#: tbl_tracking.php:612 +#: db_tracking.php:101 tbl_tracking.php:542 tbl_tracking.php:600 +#: tbl_tracking.php:607 msgid "active" msgstr "" -#: db_tracking.php:107 tbl_tracking.php:549 tbl_tracking.php:607 -#: tbl_tracking.php:609 +#: db_tracking.php:103 tbl_tracking.php:544 tbl_tracking.php:602 +#: tbl_tracking.php:604 msgid "not active" msgstr "" -#: db_tracking.php:120 +#: db_tracking.php:116 #, fuzzy msgid "Versions" msgstr "Eragiketak" -#: db_tracking.php:121 tbl_tracking.php:378 tbl_tracking.php:623 +#: db_tracking.php:117 tbl_tracking.php:373 tbl_tracking.php:618 msgid "Tracking report" msgstr "" -#: db_tracking.php:122 tbl_tracking.php:250 tbl_tracking.php:623 +#: db_tracking.php:118 tbl_tracking.php:245 tbl_tracking.php:618 #, fuzzy msgid "Structure snapshot" msgstr "Egitura soilik" -#: db_tracking.php:151 +#: db_tracking.php:147 msgid "Untracked tables" msgstr "" -#: db_tracking.php:171 db_tracking.php:173 tbl_structure.php:527 -#: tbl_structure.php:529 +#: db_tracking.php:167 db_tracking.php:169 tbl_structure.php:525 +#: tbl_structure.php:527 #, fuzzy msgid "Track table" msgstr "Taula egiaztatu" -#: db_tracking.php:199 +#: db_tracking.php:195 #, fuzzy msgid "Database Log" msgstr "Datu-basea" @@ -807,12 +784,12 @@ msgstr "Datu-basea" msgid "Selected export type has to be saved in file!" msgstr "" -#: export.php:153 export.php:178 export.php:620 +#: export.php:152 export.php:177 export.php:615 #, php-format msgid "Insufficient space to save the file %s." msgstr "Ez dago leku-disko nahikoa %s fitxategia gordetzeko." -#: export.php:287 +#: export.php:286 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -820,93 +797,93 @@ msgstr "" "%s fitxategia aurretik bazegoen zerbitzarian, izena aldatu edo aukeratu " "gainean idazteko hobespena." -#: export.php:291 export.php:295 +#: export.php:290 export.php:294 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Web-zerbitzariak dio %s fitxategia gordetzeko baimenik ez duzula." -#: export.php:622 +#: export.php:617 #, php-format msgid "Dump has been saved to file %s." msgstr "Iraulketa %s fitxategian gorde da." -#: import.php:59 +#: 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." msgstr "" -#: import.php:278 import.php:331 libraries/File.class.php:840 -#: libraries/File.class.php:950 +#: import.php:277 import.php:330 libraries/File.class.php:566 +#: libraries/File.class.php:676 msgid "File could not be read" msgstr "Ezinezkoa fitxategia irakurtzea" -#: import.php:286 import.php:295 import.php:314 import.php:323 -#: libraries/File.class.php:1020 libraries/File.class.php:1028 -#: libraries/File.class.php:1044 libraries/File.class.php:1052 +#: import.php:285 import.php:294 import.php:313 import.php:322 +#: libraries/File.class.php:746 libraries/File.class.php:754 +#: libraries/File.class.php:770 libraries/File.class.php:778 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." msgstr "" -#: import.php:336 +#: import.php:335 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " "[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." msgstr "" -#: import.php:371 libraries/display_import.lib.php:23 +#: import.php:370 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:396 +#: import.php:395 msgid "The bookmark has been deleted." msgstr "Gordetako kontsulta ezabatu da." -#: import.php:400 +#: import.php:399 msgid "Showing bookmark" msgstr "" -#: import.php:402 sql.php:625 +#: import.php:401 sql.php:618 #, php-format msgid "Bookmark %s created" msgstr "" -#: import.php:408 import.php:414 +#: import.php:407 import.php:413 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" -#: import.php:423 +#: import.php:422 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: import.php:425 +#: import.php:424 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." msgstr "" -#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:240 +#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:239 #: user_password.php:110 msgid "Back" msgstr "Itzuli" -#: index.php:188 +#: index.php:183 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" "phpMyAdmin askoz erabilerraza da frame-ak onartzen duen nabigatzaile " "batekin." -#: js/messages.php:25 server_synchronize.php:344 server_synchronize.php:356 -#: server_synchronize.php:372 server_synchronize.php:379 -#: server_synchronize.php:738 server_synchronize.php:766 -#: server_synchronize.php:794 server_synchronize.php:806 +#: js/messages.php:25 server_synchronize.php:343 server_synchronize.php:355 +#: server_synchronize.php:371 server_synchronize.php:378 +#: server_synchronize.php:737 server_synchronize.php:765 +#: server_synchronize.php:793 server_synchronize.php:805 msgid "Click to select" msgstr "" @@ -914,15 +891,15 @@ msgstr "" msgid "Click to unselect" msgstr "" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:88 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:87 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" sententziak ezgaituta daude." -#: js/messages.php:30 libraries/mult_submits.inc.php:257 sql.php:187 +#: js/messages.php:30 libraries/mult_submits.inc.php:256 sql.php:186 msgid "Do you really want to " msgstr "Benetan nahi al duzu " -#: js/messages.php:31 libraries/mult_submits.inc.php:257 sql.php:171 +#: js/messages.php:31 libraries/mult_submits.inc.php:256 sql.php:170 msgid "You are about to DESTROY a complete database!" msgstr "" @@ -951,11 +928,11 @@ msgstr "Zerbitzariaren izena hutsik dago!" msgid "The user name is empty!" msgstr "Erabiltzailearen izena hutsik dago!" -#: js/messages.php:44 server_privileges.php:1228 user_password.php:65 +#: js/messages.php:44 server_privileges.php:1229 user_password.php:65 msgid "The password is empty!" msgstr "Pasahitza hutsik dago!" -#: js/messages.php:45 server_privileges.php:1226 user_password.php:68 +#: js/messages.php:45 server_privileges.php:1227 user_password.php:68 msgid "The passwords aren't the same!" msgstr "Pasahitzek ez dute bat egiten!" @@ -963,29 +940,29 @@ msgstr "Pasahitzek ez dute bat egiten!" msgid "Cancel" msgstr "" -#: js/messages.php:52 pmd_save_pos.php:53 +#: js/messages.php:52 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "Aldaketak gorde dira" -#: js/messages.php:53 pmd_relation_upd.php:48 +#: js/messages.php:53 pmd_relation_upd.php:47 #, fuzzy msgid "Relation deleted" msgstr "Erlazioen ikuspegia" -#: js/messages.php:54 pmd_relation_new.php:63 +#: js/messages.php:54 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:55 pmd_relation_new.php:85 +#: js/messages.php:55 pmd_relation_new.php:84 #, fuzzy msgid "Internal relation added" msgstr "Barne-erlazioak" -#: js/messages.php:56 pmd_relation_new.php:62 pmd_relation_new.php:87 +#: js/messages.php:56 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:57 pmd_relation_new.php:30 +#: js/messages.php:57 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "" @@ -993,13 +970,13 @@ msgstr "" msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:59 libraries/relation.lib.php:94 -#: libraries/relation.lib.php:106 +#: js/messages.php:59 libraries/relation.lib.php:89 +#: libraries/relation.lib.php:101 msgid "General relation features" msgstr "Erlazioen ezaaugarri orokorrak" -#: js/messages.php:59 libraries/relation.lib.php:88 -#: libraries/relation.lib.php:95 +#: js/messages.php:59 libraries/relation.lib.php:83 +#: libraries/relation.lib.php:90 msgid "Disabled" msgstr "Ezgaituta" @@ -1015,7 +992,7 @@ msgstr "" msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:547 +#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" @@ -1047,10 +1024,10 @@ msgid "Prev" msgstr "Aurrekoa" #. l10n: Display text for next month link in calendar -#: js/messages.php:81 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:337 -#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:422 -#: tbl_structure.php:800 +#: js/messages.php:81 libraries/common.lib.php:2358 +#: libraries/common.lib.php:2361 libraries/display_tbl.lib.php:336 +#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 +#: tbl_structure.php:798 msgid "Next" msgstr "Hurrengoa" @@ -1124,27 +1101,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1562 +#: js/messages.php:101 libraries/common.lib.php:1566 msgid "Jan" msgstr "Urt" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1564 +#: js/messages.php:103 libraries/common.lib.php:1568 msgid "Feb" msgstr "Ots" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1566 +#: js/messages.php:105 libraries/common.lib.php:1570 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1568 +#: js/messages.php:107 libraries/common.lib.php:1572 msgid "Apr" msgstr "Api" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1570 +#: js/messages.php:109 libraries/common.lib.php:1574 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1152,37 +1129,37 @@ msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1572 +#: js/messages.php:111 libraries/common.lib.php:1576 msgid "Jun" msgstr "Eka" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1574 +#: js/messages.php:113 libraries/common.lib.php:1578 msgid "Jul" msgstr "Uzt" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1576 +#: js/messages.php:115 libraries/common.lib.php:1580 msgid "Aug" msgstr "Abu" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1578 +#: js/messages.php:117 libraries/common.lib.php:1582 msgid "Sep" msgstr "Ira" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1580 +#: js/messages.php:119 libraries/common.lib.php:1584 msgid "Oct" msgstr "Urr" #. l10n: Short month name -#: js/messages.php:121 libraries/common.lib.php:1582 +#: js/messages.php:121 libraries/common.lib.php:1586 msgid "Nov" msgstr "Aza" #. l10n: Short month name -#: js/messages.php:123 libraries/common.lib.php:1584 +#: js/messages.php:123 libraries/common.lib.php:1588 msgid "Dec" msgstr "Abe" @@ -1223,37 +1200,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1587 +#: js/messages.php:136 libraries/common.lib.php:1591 msgid "Sun" msgstr "Iga" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1589 +#: js/messages.php:138 libraries/common.lib.php:1593 msgid "Mon" msgstr "Astel" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1591 +#: js/messages.php:140 libraries/common.lib.php:1595 msgid "Tue" msgstr "Astea" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1593 +#: js/messages.php:142 libraries/common.lib.php:1597 msgid "Wed" msgstr "Astez" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1595 +#: js/messages.php:144 libraries/common.lib.php:1599 msgid "Thu" msgstr "Oste" #. l10n: Short week day name -#: js/messages.php:146 libraries/common.lib.php:1597 +#: js/messages.php:146 libraries/common.lib.php:1601 msgid "Fri" msgstr "Osti" #. l10n: Short week day name -#: js/messages.php:148 libraries/common.lib.php:1599 +#: js/messages.php:148 libraries/common.lib.php:1603 msgid "Sat" msgstr "Lar" @@ -1331,75 +1308,74 @@ msgstr "segunduko" msgid "Font size" msgstr "" -#: libraries/File.class.php:336 libraries/File.class.php:424 -#: libraries/File.class.php:561 libraries/File.class.php:700 -msgid "Unknown error in file upload." -msgstr "" - -#: libraries/File.class.php:406 +#: libraries/File.class.php:315 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:409 +#: libraries/File.class.php:318 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:412 +#: libraries/File.class.php:321 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:415 +#: libraries/File.class.php:324 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:418 +#: libraries/File.class.php:327 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:421 +#: libraries/File.class.php:330 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:898 +#: libraries/File.class.php:333 +msgid "Unknown error in file upload." +msgstr "" + +#: libraries/File.class.php:624 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "" -#: libraries/Index.class.php:427 tbl_relation.php:528 +#: libraries/Index.class.php:427 tbl_relation.php:526 msgid "No index defined!" msgstr "Ez dago indizerik definituta!" -#: libraries/Index.class.php:432 server_databases.php:131 tbl_tracking.php:315 +#: libraries/Index.class.php:432 server_databases.php:129 tbl_tracking.php:310 msgid "Indexes" msgstr "Indizeak" #: libraries/Index.class.php:443 libraries/mult_submits.inc.php:102 -#: libraries/tbl_properties.inc.php:518 tbl_structure.php:32 -#: tbl_structure.php:154 tbl_structure.php:158 tbl_structure.php:473 -#: tbl_tracking.php:321 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:31 +#: tbl_structure.php:153 tbl_structure.php:157 tbl_structure.php:471 +#: tbl_tracking.php:316 msgid "Unique" msgstr "Bakarra" -#: libraries/Index.class.php:444 tbl_tracking.php:322 +#: libraries/Index.class.php:444 tbl_tracking.php:317 msgid "Packed" msgstr "" -#: libraries/Index.class.php:446 tbl_tracking.php:324 +#: libraries/Index.class.php:446 tbl_tracking.php:319 msgid "Cardinality" msgstr "Kardinalitatea" -#: libraries/Index.class.php:449 tbl_tracking.php:278 tbl_tracking.php:327 +#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322 #, fuzzy msgid "Comment" msgstr "Iruzkinak" #: libraries/Index.class.php:465 libraries/common.lib.php:609 -#: libraries/common.lib.php:1198 libraries/display_tbl.lib.php:1116 +#: libraries/common.lib.php:1191 libraries/display_tbl.lib.php:1115 #: libraries/import.lib.php:1119 libraries/import.lib.php:1143 -#: pdf_pages.php:284 setup/frames/index.inc.php:124 +#: pdf_pages.php:283 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:349 tbl_row_action.php:68 msgid "Edit" msgstr "Editatu" @@ -1421,15 +1397,15 @@ msgid "" msgstr "" #: libraries/List_Database.class.php:430 libraries/server_links.inc.php:40 -#: server_databases.php:87 server_privileges.php:1652 +#: server_databases.php:85 server_privileges.php:1656 #: setup/lib/messages.inc.php:107 test/theme.php:92 msgid "Databases" msgstr "Datu-baseak" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:259 libraries/import.lib.php:134 pdf_schema.php:31 -#: pdf_schema.php:231 tbl_change.php:1023 tbl_operations.php:212 -#: tbl_relation.php:289 view_operations.php:61 +#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 +#: tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Errorea" @@ -1454,40 +1430,40 @@ msgid_plural "%1$d rows inserted." msgstr[0] "" msgstr[1] "" -#: libraries/StorageEngine.class.php:196 +#: libraries/StorageEngine.class.php:194 msgid "" "There is no detailed status information available for this storage engine." msgstr "" -#: libraries/StorageEngine.class.php:352 +#: libraries/StorageEngine.class.php:354 #, php-format msgid "%s is available on this MySQL server." msgstr "" -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:357 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "" -#: libraries/StorageEngine.class.php:359 +#: libraries/StorageEngine.class.php:361 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "" -#: libraries/Table.class.php:1018 +#: libraries/Table.class.php:1017 msgid "Invalid database" msgstr "" -#: libraries/Table.class.php:1032 tbl_get_field.php:25 +#: libraries/Table.class.php:1031 tbl_get_field.php:25 msgid "Invalid table name" msgstr "" -#: libraries/Table.class.php:1047 +#: libraries/Table.class.php:1046 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "" -#: libraries/Table.class.php:1131 +#: libraries/Table.class.php:1129 #, php-format msgid "Table %s has been renamed to %s" msgstr "%s taula %s-(e)ra berrizendatua izan da" @@ -1505,22 +1481,22 @@ msgstr "" msgid "take it" msgstr "" -#: libraries/Theme_Manager.class.php:114 +#: libraries/Theme_Manager.class.php:109 #, php-format msgid "Default theme %s not found!" msgstr "" -#: libraries/Theme_Manager.class.php:152 +#: libraries/Theme_Manager.class.php:147 #, php-format msgid "Theme %s not found!" msgstr "" -#: libraries/Theme_Manager.class.php:220 +#: libraries/Theme_Manager.class.php:215 #, php-format msgid "Theme path not found for theme %s!" msgstr "" -#: libraries/Theme_Manager.class.php:296 test/theme.php:160 themes.php:20 +#: libraries/Theme_Manager.class.php:291 test/theme.php:160 themes.php:20 #: themes.php:40 msgid "Theme / Style" msgstr "" @@ -1631,19 +1607,19 @@ msgstr "" msgid "Authenticating..." msgstr "" -#: libraries/blobstreaming.lib.php:689 +#: libraries/blobstreaming.lib.php:340 msgid "View image" msgstr "" -#: libraries/blobstreaming.lib.php:693 +#: libraries/blobstreaming.lib.php:344 msgid "Play audio" msgstr "" -#: libraries/blobstreaming.lib.php:698 +#: libraries/blobstreaming.lib.php:349 msgid "View video" msgstr "" -#: libraries/blobstreaming.lib.php:702 +#: libraries/blobstreaming.lib.php:353 msgid "Download file" msgstr "" @@ -1697,7 +1673,7 @@ msgstr "Zerbitzaria" msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:909 +#: libraries/common.inc.php:908 #, php-format msgid "You should upgrade to %s %s or later." msgstr "%s %s bertsiora edo handiago batera eguneratu beharko zenuke." @@ -1722,7 +1698,8 @@ msgstr "en" #: libraries/common.lib.php:425 libraries/common.lib.php:427 #: libraries/common.lib.php:429 libraries/common.lib.php:445 #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 -#: libraries/display_export.lib.php:163 libraries/relation.lib.php:84 +#: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 +#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 #: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" @@ -1737,146 +1714,146 @@ msgstr "SQL kontsulta" msgid "MySQL said: " msgstr "MySQL-ek zera dio: " -#: libraries/common.lib.php:1136 +#: libraries/common.lib.php:1129 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1174 setup/lib/messages.inc.php:350 +#: libraries/common.lib.php:1167 setup/lib/messages.inc.php:350 msgid "Explain SQL" msgstr "SQL-a azaldu" -#: libraries/common.lib.php:1177 +#: libraries/common.lib.php:1170 msgid "Skip Explain SQL" msgstr "SQL-ren azalpena saltatu" -#: libraries/common.lib.php:1211 +#: libraries/common.lib.php:1204 msgid "Without PHP Code" msgstr "PHP Koderik gabe" -#: libraries/common.lib.php:1214 setup/lib/messages.inc.php:352 +#: libraries/common.lib.php:1207 setup/lib/messages.inc.php:352 msgid "Create PHP Code" msgstr "PHP kodea sortu" -#: libraries/common.lib.php:1232 server_status.php:451 +#: libraries/common.lib.php:1225 server_status.php:451 #: setup/lib/messages.inc.php:351 msgid "Refresh" msgstr "" -#: libraries/common.lib.php:1241 +#: libraries/common.lib.php:1234 msgid "Skip Validate SQL" msgstr "SQL-ren balidapena saltatu" -#: libraries/common.lib.php:1244 setup/lib/messages.inc.php:353 +#: libraries/common.lib.php:1237 setup/lib/messages.inc.php:353 msgid "Validate SQL" msgstr "SQL balidatu" -#: libraries/common.lib.php:1283 +#: libraries/common.lib.php:1287 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1285 +#: libraries/common.lib.php:1289 msgid "Inline" msgstr "" -#: libraries/common.lib.php:1339 libraries/common.lib.php:1354 +#: libraries/common.lib.php:1343 libraries/common.lib.php:1358 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1358 libraries/tbl_triggers.lib.php:27 +#: libraries/common.lib.php:1362 libraries/tbl_triggers.lib.php:27 #: server_processlist.php:57 msgid "Time" msgstr "Denbora" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "B" msgstr "Byte" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "KiB" msgstr "KB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "MiB" msgstr "MB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "GiB" msgstr "GB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "TiB" msgstr "TB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "PiB" msgstr "PB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "EiB" msgstr "EB" #. l10n: Thousands separator -#: libraries/common.lib.php:1424 +#: libraries/common.lib.php:1428 msgid "," msgstr "," #. l10n: Decimal separator -#: libraries/common.lib.php:1426 +#: libraries/common.lib.php:1430 msgid "." msgstr "." #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1603 +#: libraries/common.lib.php:1607 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%Y-%m-%d, %H:%M:%S" -#: libraries/common.lib.php:1909 +#: libraries/common.lib.php:1913 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s egun, %s ordu, %s minutu eta %s segundu" -#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 -#: libraries/display_tbl.lib.php:289 server_status.php:718 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 +#: libraries/display_tbl.lib.php:288 server_status.php:718 msgid "Begin" msgstr "Hasi" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 -#: libraries/display_tbl.lib.php:290 server_binlog.php:154 +#: libraries/common.lib.php:2328 libraries/common.lib.php:2331 +#: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "Aurrekoa" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 -#: libraries/display_tbl.lib.php:352 +#: libraries/common.lib.php:2359 libraries/common.lib.php:2362 +#: libraries/display_tbl.lib.php:351 msgid "End" msgstr "Amaiera" -#: libraries/common.lib.php:2429 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr ""%s" datu-basera joan." -#: libraries/common.lib.php:2448 +#: libraries/common.lib.php:2453 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2828 libraries/common.lib.php:2835 -#: libraries/db_links.inc.php:67 libraries/export/sql.php:24 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 +#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 -#: libraries/tbl_links.inc.php:59 querywindow.php:89 test/theme.php:96 +#: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2837 libraries/db_links.inc.php:103 -#: libraries/tbl_links.inc.php:94 libraries/tbl_links.inc.php:116 -#: view_operations.php:88 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: view_operations.php:87 msgid "Operations" msgstr "Eragiketak" -#: libraries/core.lib.php:282 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1892,39 +1869,39 @@ msgstr "" msgid "Name" msgstr "Izena" -#: libraries/db_links.inc.php:44 +#: libraries/db_links.inc.php:43 #, php-format msgid "Database %s has been dropped." msgstr "%s datu-basea ezabatua izan da." -#: libraries/db_links.inc.php:56 libraries/db_links.inc.php:57 -#: libraries/db_links.inc.php:58 +#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 +#: libraries/db_links.inc.php:57 msgid "Database seems to be empty!" msgstr "" -#: libraries/db_links.inc.php:80 libraries/relation.lib.php:142 -#: libraries/tbl_links.inc.php:68 +#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:85 +#: libraries/db_links.inc.php:84 msgid "Query" msgstr "Kontsulta" -#: libraries/db_links.inc.php:90 libraries/relation.lib.php:138 +#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:97 libraries/server_links.inc.php:87 -#: libraries/tbl_links.inc.php:90 pmd_pdf.php:83 pmd_pdf.php:109 +#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 #, fuzzy msgid "Import" msgstr "Esportatu" -#: libraries/db_links.inc.php:110 libraries/server_links.inc.php:65 -#: server_privileges.php:111 server_privileges.php:1714 -#: server_privileges.php:2063 test/theme.php:116 +#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: server_privileges.php:110 server_privileges.php:1718 +#: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" msgstr "Pribilegioak" @@ -1936,14 +1913,14 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1847 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1806 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "" -#: libraries/db_structure.lib.php:60 server_databases.php:141 -#: tbl_printview.php:334 tbl_structure.php:681 +#: libraries/db_structure.lib.php:60 server_databases.php:139 +#: tbl_printview.php:333 tbl_structure.php:679 msgid "Overhead" msgstr "Arazteko hondakina" @@ -1960,7 +1937,7 @@ msgstr "" msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "" -#: libraries/dbi/mysql.dbi.lib.php:358 tbl_structure.php:607 +#: libraries/dbi/mysql.dbi.lib.php:358 tbl_structure.php:605 msgid "Details..." msgstr "" @@ -1970,22 +1947,22 @@ msgid "Change password" msgstr "Pasahitza aldatu" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:807 +#: libraries/replication_gui.lib.php:347 server_privileges.php:806 msgid "No Password" msgstr "Pasahitzik ez" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1530 server_synchronize.php:1174 +#: libraries/replication_gui.lib.php:351 server_privileges.php:795 +#: server_privileges.php:799 server_privileges.php:810 +#: server_privileges.php:1534 server_synchronize.php:1173 msgid "Password" msgstr "Pasahitza" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:815 server_privileges.php:818 +#: server_privileges.php:814 server_privileges.php:817 msgid "Re-type" msgstr "Berridatzi" @@ -2006,8 +1983,8 @@ msgstr "Datu-base berri bat sortu" msgid "Create" msgstr "Sortu" -#: libraries/display_create_database.lib.php:39 server_privileges.php:113 -#: server_privileges.php:1419 server_replication.php:34 +#: libraries/display_create_database.lib.php:39 server_privileges.php:112 +#: server_privileges.php:1423 server_replication.php:33 msgid "No Privileges" msgstr "Pribilegiorik gabe" @@ -2028,51 +2005,51 @@ msgstr "Taula berri bat sortu %s datu-basean" msgid "Number of columns" msgstr "Errenkada kopurua orriko" -#: libraries/display_export.lib.php:41 +#: libraries/display_export.lib.php:35 msgid "Could not load export plugins, please check your installation!" msgstr "" -#: libraries/display_export.lib.php:106 +#: libraries/display_export.lib.php:100 #, fuzzy, php-format #| msgid "Dump %s row(s) starting at record # %s" msgid "Dump %s row(s) starting at row # %s" msgstr "%s errenkada irauli, erregistro honetatik hasita: # %s." -#: libraries/display_export.lib.php:114 +#: libraries/display_export.lib.php:108 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:124 setup/lib/messages.inc.php:79 +#: libraries/display_export.lib.php:118 setup/lib/messages.inc.php:79 msgid "Save as file" msgstr "Bidali" -#: libraries/display_export.lib.php:133 +#: libraries/display_export.lib.php:127 #, php-format msgid "Save on server in %s directory" msgstr "Zerbitzariren %s direktorioan gorde" -#: libraries/display_export.lib.php:141 setup/lib/messages.inc.php:87 +#: libraries/display_export.lib.php:135 setup/lib/messages.inc.php:87 msgid "Overwrite existing file(s)" msgstr "Gainean idatzi aurretik badiren fitxategiak" -#: libraries/display_export.lib.php:147 +#: libraries/display_export.lib.php:141 msgid "File name template" msgstr "Txantiloi-fitxategiaren izena" -#: libraries/display_export.lib.php:151 +#: libraries/display_export.lib.php:145 #, fuzzy msgid "server name" msgstr "Erabiltzaile-izena" -#: libraries/display_export.lib.php:154 +#: libraries/display_export.lib.php:148 msgid "database name" msgstr "" -#: libraries/display_export.lib.php:157 +#: libraries/display_export.lib.php:151 msgid "table name" msgstr "" -#: libraries/display_export.lib.php:161 +#: libraries/display_export.lib.php:155 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2080,39 +2057,39 @@ msgid "" "%3$s. Other text will be kept as is." msgstr "" -#: libraries/display_export.lib.php:202 +#: libraries/display_export.lib.php:196 msgid "remember template" msgstr "txantiloia gogoratu" -#: libraries/display_export.lib.php:210 libraries/display_import.lib.php:177 +#: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 #: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 msgid "Character set of the file:" msgstr "Fitxategiaren karaktereen kodeketa:" -#: libraries/display_export.lib.php:235 setup/lib/messages.inc.php:81 +#: libraries/display_export.lib.php:229 setup/lib/messages.inc.php:81 msgid "Compression" msgstr "Trinkotzea" -#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:196 -#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:529 -#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:574 -#: server_privileges.php:1867 server_processlist.php:74 +#: libraries/display_export.lib.php:234 libraries/display_import.lib.php:196 +#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:528 +#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:573 +#: server_privileges.php:1871 server_processlist.php:74 msgid "None" msgstr "Batez" -#: libraries/display_export.lib.php:247 +#: libraries/display_export.lib.php:241 msgid "\"zipped\"" msgstr "\"zipatuta\"" -#: libraries/display_export.lib.php:253 +#: libraries/display_export.lib.php:247 msgid "\"gzipped\"" msgstr "\"gzip-ez trinkotuta\"" -#: libraries/display_export.lib.php:259 +#: libraries/display_export.lib.php:253 msgid "\"bzipped\"" msgstr "\"Bzip-ez trinkotua\"" -#: libraries/display_export.lib.php:274 libraries/export/sql.php:42 +#: libraries/display_export.lib.php:268 libraries/export/sql.php:42 #: libraries/import/sql.php:31 msgid "SQL compatibility mode" msgstr "" @@ -2147,12 +2124,12 @@ msgid "File uploads are not allowed on this server." msgstr "" #: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 -#: tbl_change.php:1024 +#: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "Igoerentzat ezarri duzun direktorioa ez dago eskuragarri" #: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 -#: tbl_change.php:1027 +#: tbl_change.php:925 msgid "web server upload directory" msgstr "Fitxategiak igotzeko web-zerbitzariaren direktorioa" @@ -2231,43 +2208,43 @@ msgstr "Paperaren tamaina" msgid "Language" msgstr "" -#: libraries/display_tbl.lib.php:303 +#: libraries/display_tbl.lib.php:302 #, php-format msgid "%d is not valid row number." msgstr "" -#: libraries/display_tbl.lib.php:309 +#: libraries/display_tbl.lib.php:308 #, fuzzy #| msgid "row(s) starting from record #" msgid "row(s) starting from row #" msgstr "errenkada(k) # erregistrotik hasita" -#: libraries/display_tbl.lib.php:315 +#: libraries/display_tbl.lib.php:314 msgid "horizontal" msgstr "horizontal" -#: libraries/display_tbl.lib.php:316 +#: libraries/display_tbl.lib.php:315 msgid "horizontal (rotated headers)" msgstr "horizontal (goiburukoak biratuta)" -#: libraries/display_tbl.lib.php:317 +#: libraries/display_tbl.lib.php:316 msgid "vertical" msgstr "bertikal" -#: libraries/display_tbl.lib.php:323 +#: libraries/display_tbl.lib.php:322 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "%s moduan eta goiburukoak errepikatu %s zeldaka" -#: libraries/display_tbl.lib.php:345 +#: libraries/display_tbl.lib.php:344 msgid "This operation could take a long time. Proceed anyway?" msgstr "" -#: libraries/display_tbl.lib.php:511 +#: libraries/display_tbl.lib.php:510 msgid "Sort by key" msgstr "Gakoaren arabera ordenatu" -#: libraries/display_tbl.lib.php:554 libraries/export/codegen.php:38 +#: libraries/display_tbl.lib.php:553 libraries/export/codegen.php:38 #: libraries/export/csv.php:29 libraries/export/excel.php:34 #: libraries/export/htmlword.php:28 libraries/export/latex.php:32 #: libraries/export/mediawiki.php:21 libraries/export/ods.php:26 @@ -2277,101 +2254,101 @@ msgstr "Gakoaren arabera ordenatu" #: libraries/export/xlsx.php:26 libraries/export/xml.php:23 #: libraries/export/yaml.php:27 libraries/import.lib.php:1114 #: libraries/import.lib.php:1136 libraries/import/csv.php:31 -#: libraries/import/docsql.php:33 libraries/import/ldi.php:46 +#: libraries/import/docsql.php:32 libraries/import/ldi.php:46 #: libraries/import/ods.php:30 libraries/import/sql.php:19 #: libraries/import/xls.php:25 libraries/import/xlsx.php:25 -#: libraries/import/xml.php:25 tbl_select.php:264 tbl_structure.php:752 +#: libraries/import/xml.php:25 tbl_select.php:263 tbl_structure.php:750 #, fuzzy msgid "Options" msgstr "Eragiketak" -#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:569 +#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:568 msgid "Partial Texts" msgstr "Testu partzialak" -#: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:573 +#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:572 msgid "Full Texts" msgstr "Testu osoak" -#: libraries/display_tbl.lib.php:586 +#: libraries/display_tbl.lib.php:585 #, fuzzy msgid "Relational key" msgstr "Erlazio-eskema" -#: libraries/display_tbl.lib.php:587 +#: libraries/display_tbl.lib.php:586 #, fuzzy #| msgid "Relational schema" msgid "Relational display column" msgstr "Erlazio-eskema" -#: libraries/display_tbl.lib.php:594 +#: libraries/display_tbl.lib.php:593 msgid "Show binary contents" msgstr "" -#: libraries/display_tbl.lib.php:596 +#: libraries/display_tbl.lib.php:595 msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:598 +#: libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "" -#: libraries/display_tbl.lib.php:606 pmd_general.php:140 tbl_change.php:312 -#: tbl_change.php:318 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:307 +#: tbl_change.php:313 msgid "Hide" msgstr "" -#: libraries/display_tbl.lib.php:606 libraries/relation.lib.php:122 -#: libraries/tbl_properties.inc.php:143 transformation_overview.php:46 +#: libraries/display_tbl.lib.php:605 libraries/relation.lib.php:117 +#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46 msgid "Browser transformation" msgstr "Nabigatzailearen eraldaketa" -#: libraries/display_tbl.lib.php:1125 libraries/display_tbl.lib.php:1129 -#: libraries/display_tbl.lib.php:1131 +#: libraries/display_tbl.lib.php:1124 libraries/display_tbl.lib.php:1128 +#: libraries/display_tbl.lib.php:1130 msgid "Execute bookmarked query" msgstr "Exekutatu aurretik aukeratutako kontsulta" -#: libraries/display_tbl.lib.php:1144 libraries/display_tbl.lib.php:1156 +#: libraries/display_tbl.lib.php:1143 libraries/display_tbl.lib.php:1155 msgid "The row has been deleted" msgstr "Errenkada ezabatua izan da" -#: libraries/display_tbl.lib.php:1183 libraries/display_tbl.lib.php:2055 +#: libraries/display_tbl.lib.php:1182 libraries/display_tbl.lib.php:2014 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "Hil" -#: libraries/display_tbl.lib.php:1933 +#: libraries/display_tbl.lib.php:1892 msgid "in query" msgstr "kontsultan" -#: libraries/display_tbl.lib.php:1951 +#: libraries/display_tbl.lib.php:1910 msgid "Showing rows" msgstr "Errenkadak erakusten" -#: libraries/display_tbl.lib.php:1961 +#: libraries/display_tbl.lib.php:1920 msgid "total" msgstr "guztira" -#: libraries/display_tbl.lib.php:1969 sql.php:523 +#: libraries/display_tbl.lib.php:1928 sql.php:522 #, php-format msgid "Query took %01.4f sec" msgstr "Kontsulta exekutatzeko denbora %01.4f seg" -#: libraries/display_tbl.lib.php:2088 libraries/mult_submits.inc.php:112 -#: querywindow.php:115 querywindow.php:119 querywindow.php:122 -#: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:469 +#: libraries/display_tbl.lib.php:2047 libraries/mult_submits.inc.php:112 +#: querywindow.php:114 querywindow.php:118 querywindow.php:121 +#: tbl_structure.php:23 tbl_structure.php:148 tbl_structure.php:467 msgid "Change" msgstr "Aldatu" -#: libraries/display_tbl.lib.php:2158 +#: libraries/display_tbl.lib.php:2117 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2186 +#: libraries/display_tbl.lib.php:2145 msgid "Print view (with full texts)" msgstr "Inprimatzeko ikuspena (testu osoak)" -#: libraries/display_tbl.lib.php:2359 +#: libraries/display_tbl.lib.php:2318 msgid "Link not found" msgstr "Esteka aurkitugabea" @@ -2425,9 +2402,9 @@ msgstr "InnoDB Egoera" msgid "Buffer Pool Usage" msgstr "" -#: libraries/engines/innodb.lib.php:168 server_databases.php:136 -#: server_databases.php:304 server_status.php:524 server_status.php:585 -#: server_status.php:606 tbl_printview.php:349 tbl_structure.php:695 +#: libraries/engines/innodb.lib.php:168 server_databases.php:134 +#: server_databases.php:302 server_status.php:524 server_status.php:585 +#: server_status.php:606 tbl_printview.php:348 tbl_structure.php:693 msgid "Total" msgstr "Gutira" @@ -2550,6 +2527,78 @@ msgid "" "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." msgstr "" +#: libraries/engines/pbms.lib.php:31 +msgid "Garbage Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:32 +msgid "The percentage of garbage in a repository file before it is compacted." +msgstr "" + +#: libraries/engines/pbms.lib.php:36 libraries/replication_gui.lib.php:69 +#: server_synchronize.php:1161 +#, fuzzy +msgid "Port" +msgstr "Ordenatu" + +#: libraries/engines/pbms.lib.php:37 +msgid "" +"The port for the PBMS stream-based communications. Setting this value to 0 " +"will disable HTTP communication with the daemon." +msgstr "" + +#: libraries/engines/pbms.lib.php:41 +msgid "Repository Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:42 +msgid "" +"The maximum size of a BLOB repository file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:46 +msgid "Temp Blob Timeout" +msgstr "" + +#: libraries/engines/pbms.lib.php:47 +msgid "" +"The timeout, in seconds, for temporary BLOBs. Uploaded BLOB data is removed " +"after this time, unless they are referenced by a record in the database." +msgstr "" + +#: libraries/engines/pbms.lib.php:51 +msgid "Temp Log Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:52 +msgid "" +"The maximum size of a temporary BLOB log file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:56 +msgid "Max Keep Alive" +msgstr "" + +#: libraries/engines/pbms.lib.php:57 +msgid "" +"The timeout for inactive connection with the keep-alive flag set. After this " +"time the connection will be closed. The time-out is in milliseconds (1/1000)." +msgstr "" + +#: libraries/engines/pbms.lib.php:61 +msgid "Metadata Headers" +msgstr "" + +#: libraries/engines/pbms.lib.php:62 +msgid "" +"A \":\" delimited list of metadata headers to be used to initialize the " +"pbms_metadata_header table when a database is created." +msgstr "" + #: libraries/engines/pbxt.lib.php:22 msgid "Index cache size" msgstr "" @@ -2673,7 +2722,7 @@ msgid "" msgstr "" #: libraries/export/codegen.php:36 setup/lib/messages.inc.php:85 -#: tbl_printview.php:374 tbl_structure.php:736 +#: tbl_printview.php:373 tbl_structure.php:734 msgid "Format" msgstr "Formatoa" @@ -2744,9 +2793,9 @@ msgstr "" #: libraries/export/htmlword.php:23 libraries/export/latex.php:59 #: libraries/export/latex.php:205 libraries/export/odt.php:47 #: libraries/export/sql.php:105 libraries/export/sql.php:865 -#: libraries/export/texytext.php:27 server_databases.php:126 -#: server_privileges.php:576 server_replication.php:315 tbl_printview.php:315 -#: tbl_structure.php:664 +#: libraries/export/texytext.php:27 server_databases.php:124 +#: server_privileges.php:575 server_replication.php:314 tbl_printview.php:314 +#: tbl_structure.php:662 msgid "Data" msgstr "Datuak" @@ -2761,7 +2810,6 @@ msgid "Table structure for table" msgstr "Taularen egitura taula honentzat: " #: libraries/export/latex.php:13 -#| msgid "Content of table __TABLE__" msgid "Content of table @TABLE@" msgstr "@TABLE@ taularen edukina" @@ -2770,7 +2818,6 @@ msgid "(continued)" msgstr "" #: libraries/export/latex.php:15 -#| msgid "Structure of table __TABLE__" msgid "Structure of table @TABLE@" msgstr "@TABLE@ taularen egitura" @@ -2796,13 +2843,13 @@ msgid "Label key" msgstr "" #: libraries/export/latex.php:46 libraries/export/odt.php:34 -#: libraries/export/sql.php:90 tbl_relation.php:398 +#: libraries/export/sql.php:90 tbl_relation.php:396 msgid "Relations" msgstr "Erlazioak" #: libraries/export/latex.php:52 libraries/export/odt.php:40 #: libraries/export/odt.php:317 libraries/export/sql.php:94 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "MIME-mota" @@ -2810,10 +2857,10 @@ msgstr "MIME-mota" #: libraries/export/xml.php:101 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1529 server_privileges.php:2061 -#: server_processlist.php:54 server_synchronize.php:1158 +#: libraries/replication_gui.lib.php:331 server_privileges.php:730 +#: server_privileges.php:733 server_privileges.php:789 +#: server_privileges.php:1533 server_privileges.php:2065 +#: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "Zerbitzaria" @@ -3008,8 +3055,8 @@ msgstr "" msgid "Export contents" msgstr "" -#: libraries/footer.inc.php:182 libraries/footer.inc.php:193 -#: libraries/footer.inc.php:196 +#: libraries/footer.inc.php:180 libraries/footer.inc.php:191 +#: libraries/footer.inc.php:194 msgid "Open new phpMyAdmin window" msgstr "" @@ -3026,7 +3073,7 @@ msgstr "SQL emaitza" msgid "Generated by" msgstr "Egilea:" -#: libraries/import.lib.php:151 sql.php:519 tbl_change.php:180 +#: libraries/import.lib.php:151 sql.php:518 tbl_change.php:175 #: 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)." @@ -3084,7 +3131,7 @@ msgstr "" msgid "Column names in first row" msgstr "" -#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:501 +#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:500 #: view_create.php:147 msgid "Column names" msgstr "Zutabe izenak" @@ -3110,12 +3157,12 @@ msgstr "" msgid "Invalid column count in CSV input on line %d." msgstr "" -#: libraries/import/docsql.php:28 +#: libraries/import/docsql.php:27 msgid "DocSQL" msgstr "" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 -#: server_synchronize.php:427 server_synchronize.php:870 +#: libraries/import/docsql.php:30 libraries/tbl_properties.inc.php:616 +#: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "" @@ -3171,26 +3218,26 @@ msgstr "Batez" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:512 -#: tbl_structure.php:28 tbl_structure.php:152 tbl_structure.php:156 -#: tbl_structure.php:472 +#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:511 +#: tbl_structure.php:27 tbl_structure.php:151 tbl_structure.php:155 +#: tbl_structure.php:470 msgid "Primary" msgstr "Lehen mailakoa" #: libraries/mult_submits.inc.php:97 libraries/tbl_properties.inc.php:115 -#: libraries/tbl_properties.inc.php:524 tbl_printview.php:324 -#: tbl_structure.php:30 tbl_structure.php:153 tbl_structure.php:157 -#: tbl_structure.php:474 tbl_structure.php:672 +#: libraries/tbl_properties.inc.php:523 tbl_printview.php:323 +#: tbl_structure.php:29 tbl_structure.php:152 tbl_structure.php:156 +#: tbl_structure.php:472 tbl_structure.php:670 msgid "Index" msgstr "Indizea" -#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:530 -#: tbl_structure.php:34 tbl_structure.php:155 tbl_structure.php:159 -#: tbl_structure.php:477 +#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:529 +#: tbl_structure.php:33 tbl_structure.php:154 tbl_structure.php:158 +#: tbl_structure.php:475 msgid "Fulltext" msgstr "Testu osoa" -#: libraries/mult_submits.inc.php:434 tbl_replace.php:330 +#: libraries/mult_submits.inc.php:433 tbl_replace.php:330 msgid "No change" msgstr "Aldaketarik ez" @@ -3198,194 +3245,194 @@ msgstr "Aldaketarik ez" msgid "Charset" msgstr "Karaktere-jokoa" -#: libraries/mysql_charsets.lib.php:210 libraries/mysql_charsets.lib.php:411 -#: tbl_change.php:515 +#: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 +#: tbl_change.php:510 msgid "Binary" msgstr " Binarioa " -#: libraries/mysql_charsets.lib.php:222 +#: libraries/mysql_charsets.lib.php:214 msgid "Bulgarian" msgstr "Bulgariera" -#: libraries/mysql_charsets.lib.php:226 libraries/mysql_charsets.lib.php:351 +#: libraries/mysql_charsets.lib.php:218 libraries/mysql_charsets.lib.php:343 msgid "Simplified Chinese" msgstr "Txinera erraztua" -#: libraries/mysql_charsets.lib.php:228 libraries/mysql_charsets.lib.php:371 +#: libraries/mysql_charsets.lib.php:220 libraries/mysql_charsets.lib.php:363 msgid "Traditional Chinese" msgstr "Txinera tradizionala" -#: libraries/mysql_charsets.lib.php:232 libraries/mysql_charsets.lib.php:418 +#: libraries/mysql_charsets.lib.php:224 libraries/mysql_charsets.lib.php:410 msgid "case-insensitive" msgstr "Maiuskulak ez ditu bereizten" -#: libraries/mysql_charsets.lib.php:235 libraries/mysql_charsets.lib.php:420 +#: libraries/mysql_charsets.lib.php:227 libraries/mysql_charsets.lib.php:412 msgid "case-sensitive" msgstr "Maiuskulak bereizten ditu" -#: libraries/mysql_charsets.lib.php:238 +#: libraries/mysql_charsets.lib.php:230 msgid "Croatian" msgstr "Croaziera" -#: libraries/mysql_charsets.lib.php:241 +#: libraries/mysql_charsets.lib.php:233 msgid "Czech" msgstr "Txekiera" -#: libraries/mysql_charsets.lib.php:244 +#: libraries/mysql_charsets.lib.php:236 msgid "Danish" msgstr "Danesa" -#: libraries/mysql_charsets.lib.php:247 +#: libraries/mysql_charsets.lib.php:239 msgid "English" msgstr "Ingelesa" -#: libraries/mysql_charsets.lib.php:250 +#: libraries/mysql_charsets.lib.php:242 msgid "Esperanto" msgstr "" -#: libraries/mysql_charsets.lib.php:253 +#: libraries/mysql_charsets.lib.php:245 msgid "Estonian" msgstr "Estoniera" -#: libraries/mysql_charsets.lib.php:256 libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:248 libraries/mysql_charsets.lib.php:251 msgid "German" msgstr "Alemaniera" -#: libraries/mysql_charsets.lib.php:256 +#: libraries/mysql_charsets.lib.php:248 msgid "dictionary" msgstr "hiztegia" -#: libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:251 msgid "phone book" msgstr "Telefono-agenda" -#: libraries/mysql_charsets.lib.php:262 +#: libraries/mysql_charsets.lib.php:254 msgid "Hungarian" msgstr "Hungariera" -#: libraries/mysql_charsets.lib.php:265 +#: libraries/mysql_charsets.lib.php:257 msgid "Icelandic" msgstr "" -#: libraries/mysql_charsets.lib.php:268 libraries/mysql_charsets.lib.php:358 +#: libraries/mysql_charsets.lib.php:260 libraries/mysql_charsets.lib.php:350 msgid "Japanese" msgstr "Japoniera" -#: libraries/mysql_charsets.lib.php:271 +#: libraries/mysql_charsets.lib.php:263 msgid "Latvian" msgstr "" -#: libraries/mysql_charsets.lib.php:274 +#: libraries/mysql_charsets.lib.php:266 msgid "Lithuanian" msgstr "Lithuaniera" -#: libraries/mysql_charsets.lib.php:277 libraries/mysql_charsets.lib.php:380 +#: libraries/mysql_charsets.lib.php:269 libraries/mysql_charsets.lib.php:372 msgid "Korean" msgstr "Koreera" -#: libraries/mysql_charsets.lib.php:280 +#: libraries/mysql_charsets.lib.php:272 msgid "Persian" msgstr "" -#: libraries/mysql_charsets.lib.php:283 +#: libraries/mysql_charsets.lib.php:275 msgid "Polish" msgstr "" -#: libraries/mysql_charsets.lib.php:286 libraries/mysql_charsets.lib.php:334 +#: libraries/mysql_charsets.lib.php:278 libraries/mysql_charsets.lib.php:326 msgid "West European" msgstr "Mendebaldeko europearra" -#: libraries/mysql_charsets.lib.php:289 +#: libraries/mysql_charsets.lib.php:281 #, fuzzy msgid "Romanian" msgstr "Armeniera" -#: libraries/mysql_charsets.lib.php:292 +#: libraries/mysql_charsets.lib.php:284 msgid "Slovak" msgstr "" -#: libraries/mysql_charsets.lib.php:295 +#: libraries/mysql_charsets.lib.php:287 msgid "Slovenian" msgstr "" -#: libraries/mysql_charsets.lib.php:298 +#: libraries/mysql_charsets.lib.php:290 #, fuzzy msgid "Spanish" msgstr "Danesa" -#: libraries/mysql_charsets.lib.php:301 +#: libraries/mysql_charsets.lib.php:293 #, fuzzy msgid "Traditional Spanish" msgstr "Txinera tradizionala" -#: libraries/mysql_charsets.lib.php:304 libraries/mysql_charsets.lib.php:401 +#: libraries/mysql_charsets.lib.php:296 libraries/mysql_charsets.lib.php:393 msgid "Swedish" msgstr "Suediera" -#: libraries/mysql_charsets.lib.php:307 libraries/mysql_charsets.lib.php:404 +#: libraries/mysql_charsets.lib.php:299 libraries/mysql_charsets.lib.php:396 msgid "Thai" msgstr "Thailandiarra" -#: libraries/mysql_charsets.lib.php:310 libraries/mysql_charsets.lib.php:398 +#: libraries/mysql_charsets.lib.php:302 libraries/mysql_charsets.lib.php:390 msgid "Turkish" msgstr "Turkiera" -#: libraries/mysql_charsets.lib.php:313 libraries/mysql_charsets.lib.php:395 +#: libraries/mysql_charsets.lib.php:305 libraries/mysql_charsets.lib.php:387 msgid "Ukrainian" msgstr "Ukraniera" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 msgid "Unicode" msgstr "Unicode" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 -#: libraries/mysql_charsets.lib.php:334 libraries/mysql_charsets.lib.php:341 -#: libraries/mysql_charsets.lib.php:363 libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 +#: libraries/mysql_charsets.lib.php:326 libraries/mysql_charsets.lib.php:333 +#: libraries/mysql_charsets.lib.php:355 libraries/mysql_charsets.lib.php:366 msgid "multilingual" msgstr "eleanitza" -#: libraries/mysql_charsets.lib.php:341 +#: libraries/mysql_charsets.lib.php:333 msgid "Central European" msgstr "Erdialdeko europearra" -#: libraries/mysql_charsets.lib.php:346 +#: libraries/mysql_charsets.lib.php:338 msgid "Russian" msgstr "Errusiera" -#: libraries/mysql_charsets.lib.php:363 +#: libraries/mysql_charsets.lib.php:355 msgid "Baltic" msgstr "Baltikera" -#: libraries/mysql_charsets.lib.php:368 +#: libraries/mysql_charsets.lib.php:360 msgid "Armenian" msgstr "Armeniera" -#: libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:366 msgid "Cyrillic" msgstr "Zirilikoa" -#: libraries/mysql_charsets.lib.php:377 +#: libraries/mysql_charsets.lib.php:369 msgid "Arabic" msgstr "Arabiera" -#: libraries/mysql_charsets.lib.php:383 +#: libraries/mysql_charsets.lib.php:375 msgid "Hebrew" msgstr "Hebreera" -#: libraries/mysql_charsets.lib.php:386 +#: libraries/mysql_charsets.lib.php:378 #, fuzzy msgid "Georgian" msgstr "Alemaniera" -#: libraries/mysql_charsets.lib.php:389 +#: libraries/mysql_charsets.lib.php:381 msgid "Greek" msgstr "Grekiera" -#: libraries/mysql_charsets.lib.php:392 +#: libraries/mysql_charsets.lib.php:384 msgid "Czech-Slovak" msgstr "" -#: libraries/mysql_charsets.lib.php:407 libraries/mysql_charsets.lib.php:414 +#: libraries/mysql_charsets.lib.php:399 libraries/mysql_charsets.lib.php:406 msgid "unknown" msgstr "ezezaguna" @@ -3411,69 +3458,69 @@ msgstr "Kontsulta-leihoa" msgid "This format has no options" msgstr "Formato honek ez du aukerarik" -#: libraries/relation.lib.php:82 +#: libraries/relation.lib.php:77 msgid "not OK" msgstr "Okerra" -#: libraries/relation.lib.php:86 pmd_general.php:339 +#: libraries/relation.lib.php:81 pmd_general.php:339 msgid "OK" msgstr "Zuzena" -#: libraries/relation.lib.php:87 +#: libraries/relation.lib.php:82 msgid "Enabled" msgstr "Gaituta" -#: libraries/relation.lib.php:110 +#: libraries/relation.lib.php:105 msgid "Display Features" msgstr "Eginbideak erakutsi" -#: libraries/relation.lib.php:116 +#: libraries/relation.lib.php:111 msgid "Creation of PDFs" msgstr "PDF-en sorrera" -#: libraries/relation.lib.php:120 +#: libraries/relation.lib.php:115 msgid "Displaying Column Comments" msgstr "Zutabearen iruzkinak erakusten" -#: libraries/relation.lib.php:125 +#: libraries/relation.lib.php:120 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "Mesedez, Dokumentazioa begiratu zure zutabeen iruzkinen Taula nola " "eguneratzeko" -#: libraries/relation.lib.php:130 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 msgid "Bookmarked SQL query" msgstr "Kontsulta gogokoetan gordea" -#: libraries/relation.lib.php:134 querywindow.php:99 querywindow.php:207 +#: libraries/relation.lib.php:129 querywindow.php:98 querywindow.php:205 msgid "SQL history" msgstr "SQL-historia" -#: libraries/relation.lib.php:146 +#: libraries/relation.lib.php:141 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:148 +#: libraries/relation.lib.php:143 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" -#: libraries/relation.lib.php:149 +#: libraries/relation.lib.php:144 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:150 +#: libraries/relation.lib.php:145 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:151 +#: libraries/relation.lib.php:146 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1158 +#: libraries/relation.lib.php:1153 msgid "no description" msgstr "Deskribapenik ez" @@ -3481,7 +3528,7 @@ msgstr "Deskribapenik ez" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:53 server_replication.php:346 +#: libraries/replication_gui.lib.php:53 server_replication.php:345 msgid "Change or reconfigure master server" msgstr "" @@ -3493,17 +3540,12 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:711 -#: server_privileges.php:714 server_privileges.php:721 -#: server_synchronize.php:1170 +#: libraries/replication_gui.lib.php:261 server_privileges.php:710 +#: server_privileges.php:713 server_privileges.php:720 +#: server_synchronize.php:1169 msgid "User name" msgstr "Erabiltzaile-izena" -#: libraries/replication_gui.lib.php:69 server_synchronize.php:1162 -#, fuzzy -msgid "Port" -msgstr "Ordenatu" - #: libraries/replication_gui.lib.php:105 msgid "Master status" msgstr "" @@ -3518,8 +3560,8 @@ msgid "Variable" msgstr "Aldagaia" #: libraries/replication_gui.lib.php:117 server_status.php:737 -#: tbl_change.php:322 tbl_printview.php:368 tbl_select.php:137 -#: tbl_structure.php:728 +#: tbl_change.php:317 tbl_printview.php:367 tbl_select.php:136 +#: tbl_structure.php:726 msgid "Value" msgstr "balioa" @@ -3534,38 +3576,38 @@ msgid "" "this list." msgstr "" -#: libraries/replication_gui.lib.php:242 server_replication.php:193 +#: libraries/replication_gui.lib.php:242 server_replication.php:192 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:256 server_privileges.php:716 +#: libraries/replication_gui.lib.php:256 server_privileges.php:715 msgid "Any user" msgstr "Edozein erabiltzaile" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1920 server_privileges.php:1950 +#: libraries/replication_gui.lib.php:348 server_privileges.php:716 +#: server_privileges.php:783 server_privileges.php:807 +#: server_privileges.php:1924 server_privileges.php:1954 msgid "Use text field" msgstr "Testu-eremua erabili" -#: libraries/replication_gui.lib.php:304 server_privileges.php:764 +#: libraries/replication_gui.lib.php:304 server_privileges.php:763 msgid "Any host" msgstr "Edozein ostalari" -#: libraries/replication_gui.lib.php:308 server_privileges.php:768 +#: libraries/replication_gui.lib.php:308 server_privileges.php:767 msgid "Local" msgstr "Lokal" -#: libraries/replication_gui.lib.php:314 server_privileges.php:773 +#: libraries/replication_gui.lib.php:314 server_privileges.php:772 msgid "This Host" msgstr "Host hau" -#: libraries/replication_gui.lib.php:320 server_privileges.php:779 +#: libraries/replication_gui.lib.php:320 server_privileges.php:778 msgid "Use Host Table" msgstr "Host taula erabili" -#: libraries/replication_gui.lib.php:333 server_privileges.php:792 +#: libraries/replication_gui.lib.php:333 server_privileges.php:791 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3592,8 +3634,8 @@ msgstr "" msgid "Servers" msgstr "Zerbitzaria" -#: libraries/server_links.inc.php:52 server_engines.php:111 -#: server_engines.php:115 server_status.php:414 test/theme.php:104 +#: libraries/server_links.inc.php:52 server_engines.php:125 +#: server_engines.php:129 server_status.php:414 test/theme.php:104 msgid "Variables" msgstr "Aldagaiak" @@ -3615,12 +3657,12 @@ msgstr " Binarioa " msgid "Processes" msgstr "Prozesuak" -#: libraries/server_links.inc.php:91 server_synchronize.php:1091 -#: server_synchronize.php:1099 +#: libraries/server_links.inc.php:91 server_synchronize.php:1090 +#: server_synchronize.php:1098 msgid "Synchronize" msgstr "" -#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1109 +#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1108 #, fuzzy msgid "Source database" msgstr "Datu-basean bilatu" @@ -3639,7 +3681,7 @@ msgstr "" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1111 +#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1110 #, fuzzy msgid "Target database" msgstr "Datu-basean bilatu" @@ -3660,11 +3702,11 @@ msgstr "SQL kontsulta(k) exekutatu %s datu-basean" msgid "Columns" msgstr "Zutabe izenak" -#: libraries/sql_query_form.lib.php:342 sql.php:664 sql.php:665 sql.php:682 +#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "Kontsulta hau gogokoetan gorde" -#: libraries/sql_query_form.lib.php:349 sql.php:676 +#: libraries/sql_query_form.lib.php:349 sql.php:669 msgid "Let every user access this bookmark" msgstr "Gogokoen erregistro hau edozein erabiltzailearentzat erabilgarri " @@ -3761,12 +3803,12 @@ msgstr "" "beharrezkoak diren php luzapenak instalatu dituzun %sdokumentazioan%s " "azaltzen den moduan." -#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:139 -#: libraries/tbl_links.inc.php:140 +#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 +#: libraries/tbl_links.inc.php:139 msgid "Table seems to be empty!" msgstr "" -#: libraries/tbl_links.inc.php:148 +#: libraries/tbl_links.inc.php:147 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" @@ -3802,12 +3844,12 @@ msgstr "" "Lehenetsitako balioak erabiltzeko, mesedez sartu balio bakar bat, komatxo " "edota alderantzikaturiko barrarik gabe, formato hau erabiliz: a" -#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1263 -#: pdf_schema.php:1284 tbl_printview.php:142 tbl_structure.php:179 +#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1262 +#: pdf_schema.php:1283 tbl_printview.php:141 tbl_structure.php:178 msgid "Attributes" msgstr "Atributuak" -#: libraries/tbl_properties.inc.php:136 +#: libraries/tbl_properties.inc.php:135 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -3816,11 +3858,11 @@ msgstr "" "Eraldaketen hobespen eta haien MIME-mota eraldaketen zerrendarako, egizu " "klik hemen %stransformation descriptions%s" -#: libraries/tbl_properties.inc.php:144 +#: libraries/tbl_properties.inc.php:143 msgid "Transformation options" msgstr "Eraldaketen hobespenak" -#: libraries/tbl_properties.inc.php:145 +#: libraries/tbl_properties.inc.php:144 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
                            If you ever need to put a backslash (\"\\\") or a single " @@ -3832,18 +3874,18 @@ msgstr "" "edo barra arrunta (\"'\") erabili beharko bazenu, beti erabili " "alderantzikaturiko barra (adibidez '\\\\xyz' or 'a\\'b')." -#: libraries/tbl_properties.inc.php:392 +#: libraries/tbl_properties.inc.php:391 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "Batez" -#: libraries/tbl_properties.inc.php:393 +#: libraries/tbl_properties.inc.php:392 msgid "As defined:" msgstr "Honela definitua:" -#: libraries/tbl_properties.inc.php:579 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:578 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
                            Please ask the " @@ -3852,29 +3894,29 @@ msgstr "" "Eraldaketa honentzako deskribapenik ez dago erabilgarri.
                            Mesedez " "egileari galdetu, %s-(e)k zer egiten duen." -#: libraries/tbl_properties.inc.php:725 server_engines.php:57 -#: tbl_operations.php:354 +#: libraries/tbl_properties.inc.php:724 server_engines.php:56 +#: tbl_operations.php:352 msgid "Storage Engine" msgstr "" -#: libraries/tbl_properties.inc.php:754 +#: libraries/tbl_properties.inc.php:753 msgid "PARTITION definition" msgstr "" -#: libraries/tbl_properties.inc.php:775 pdf_pages.php:502 +#: libraries/tbl_properties.inc.php:774 pdf_pages.php:501 #: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214 -#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1124 tbl_indexes.php:247 -#: tbl_relation.php:565 +#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1022 tbl_indexes.php:246 +#: tbl_relation.php:563 msgid "Save" msgstr "Gorde" -#: libraries/tbl_properties.inc.php:779 tbl_structure.php:541 +#: libraries/tbl_properties.inc.php:778 tbl_structure.php:539 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "Gehitu %s zutabe" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:535 +#: libraries/tbl_properties.inc.php:782 tbl_structure.php:533 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." @@ -4051,8 +4093,8 @@ msgstr "" msgid "Custom color" msgstr "" -#: main.php:162 pdf_pages.php:362 setup/lib/FormDisplay.tpl.php:216 -#: tbl_change.php:1173 +#: main.php:162 pdf_pages.php:361 setup/lib/FormDisplay.tpl.php:216 +#: tbl_change.php:1071 msgid "Reset" msgstr "Reset egin" @@ -4060,8 +4102,8 @@ msgstr "Reset egin" msgid "Protocol version" msgstr "" -#: main.php:188 server_privileges.php:1381 server_privileges.php:1528 -#: server_privileges.php:1642 server_privileges.php:2060 +#: main.php:188 server_privileges.php:1385 server_privileges.php:1532 +#: server_privileges.php:1646 server_privileges.php:2064 #: server_processlist.php:53 msgid "User" msgstr "Erabiltzailea" @@ -4142,21 +4184,30 @@ msgid "" "has been configured." msgstr "" -#: main.php:330 +#: main.php:314 +#, php-format +msgid "" +"The additional features for working with linked tables have been " +"deactivated. To find out why click %shere%s." +msgstr "" +"Estekatutako taulekin lan egiteko hobespen gehigarriak ezgaitu dira . " +"Zergatia jakiteko egizu klik %shemen%s." + +#: main.php:329 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:345 +#: main.php:344 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: main.php:357 +#: main.php:356 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -4167,67 +4218,67 @@ msgstr "" msgid "Reload navigation frame" msgstr "" -#: navigation.php:204 server_databases.php:370 server_synchronize.php:1190 +#: navigation.php:203 server_databases.php:368 server_synchronize.php:1189 msgid "No databases" msgstr "Datu-baserik ez" -#: navigation.php:298 +#: navigation.php:297 msgid "Filter" msgstr "" -#: navigation.php:299 setup/frames/index.inc.php:218 +#: navigation.php:298 setup/frames/index.inc.php:218 #: setup/lib/messages.inc.php:41 msgid "Clear" msgstr "" -#: navigation.php:330 navigation.php:331 +#: navigation.php:329 navigation.php:330 #, fuzzy msgctxt "short form" msgid "Create table" msgstr "Orri berri bat sortu" -#: navigation.php:333 navigation.php:495 +#: navigation.php:332 navigation.php:494 msgid "Please select a database" msgstr "Datu-base bat hautatu mesedez" -#: pdf_pages.php:40 pdf_pages.php:46 pdf_pages.php:52 pdf_pages.php:57 +#: pdf_pages.php:39 pdf_pages.php:45 pdf_pages.php:51 pdf_pages.php:56 #, php-format msgid "%s table not found or not set in %s" msgstr "%s taula ez da aurkitu edo ez da definitu hemen: %s" -#: pdf_pages.php:265 +#: pdf_pages.php:264 msgid "Please choose a page to edit" msgstr "Aukeratu editatzeko orria mesedez" -#: pdf_pages.php:303 pmd_pdf.php:113 +#: pdf_pages.php:302 pmd_pdf.php:111 msgid "Create a page" msgstr "Orri berri bat sortu" -#: pdf_pages.php:309 +#: pdf_pages.php:308 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Orri zenbakia:" -#: pdf_pages.php:313 +#: pdf_pages.php:312 #, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "Diseinu automatikoa" -#: pdf_pages.php:315 +#: pdf_pages.php:314 msgid "Internal relations" msgstr "Barne-erlazioak" -#: pdf_pages.php:338 +#: pdf_pages.php:337 msgid "Select Tables" msgstr "Taulak hautatu" -#: pdf_pages.php:361 +#: pdf_pages.php:360 msgid "Toggle scratchboard" msgstr "Aldatu \"scratchboard\"-a" -#: pdf_pages.php:524 +#: pdf_pages.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -4235,37 +4286,37 @@ msgstr "" "Orri honek existitzen ez diren taulekiko erreferentziak dauzka. " "Erreferentziok ezabatu nahi al dituzu?" -#: pdf_schema.php:635 +#: pdf_schema.php:634 #, fuzzy, php-format #| msgid "The \"%s\" table doesn't exist!" msgid "The %s table doesn't exist!" msgstr "\"%s\" taula ez da existitzen!" -#: pdf_schema.php:671 +#: pdf_schema.php:670 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Mesedez, %s taularentzako koordinatuak konfiguratu" -#: pdf_schema.php:994 +#: pdf_schema.php:993 #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" msgstr "\"%s\" datu-basearen eskema- Orria %s" -#: pdf_schema.php:1012 +#: pdf_schema.php:1011 msgid "No tables" msgstr "Taularik ez" -#: pdf_schema.php:1031 pdf_schema.php:1140 +#: pdf_schema.php:1030 pdf_schema.php:1139 msgid "Relational schema" msgstr "Erlazio-eskema" -#: pdf_schema.php:1115 +#: pdf_schema.php:1114 msgid "Table of contents" msgstr "Edukinen taula" -#: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:145 -#: tbl_structure.php:182 tbl_tracking.php:277 +#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 +#: tbl_structure.php:181 tbl_tracking.php:272 msgid "Extra" msgstr "Extra" @@ -4277,7 +4328,7 @@ msgstr "" msgid "Save position" msgstr "" -#: pmd_general.php:70 server_synchronize.php:428 server_synchronize.php:871 +#: pmd_general.php:70 server_synchronize.php:427 server_synchronize.php:870 #, fuzzy msgid "Create table" msgstr "Orri berri bat sortu" @@ -4350,32 +4401,32 @@ msgid "" "appropriate column name." msgstr "" -#: pmd_pdf.php:62 +#: pmd_pdf.php:60 #, fuzzy msgid "Page has been created" msgstr "%s taula ezabatu egin da" -#: pmd_pdf.php:64 +#: pmd_pdf.php:62 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:84 +#: pmd_pdf.php:82 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:88 +#: pmd_pdf.php:86 msgid "recommended" msgstr "" -#: pmd_pdf.php:93 +#: pmd_pdf.php:91 msgid "to/from page" msgstr "" -#: querywindow.php:94 +#: querywindow.php:93 msgid "Import files" msgstr "Fitxategiak inportatu" -#: querywindow.php:105 +#: querywindow.php:104 msgid "All" msgstr "Guztiak" @@ -4424,65 +4475,65 @@ msgstr "Saioa hasteko informazioa" msgid "Character Sets and Collations" msgstr "Karaktere-multzoak eta ordenamenduak" -#: server_databases.php:51 +#: server_databases.php:49 msgid "No databases selected." msgstr "Ez dago datu-baserik aukeratuta." -#: server_databases.php:62 +#: server_databases.php:60 #, php-format msgid "%s databases have been dropped successfully." msgstr "%s datu-base arrakastaz ezabatu dira." -#: server_databases.php:87 +#: server_databases.php:85 msgid "Databases statistics" msgstr "Datu-baseen estatistikak" -#: server_databases.php:116 server_status.php:370 +#: server_databases.php:114 server_status.php:370 #: setup/lib/messages.inc.php:114 msgid "Tables" msgstr "Taulak" -#: server_databases.php:194 server_replication.php:180 -#: server_replication.php:208 +#: server_databases.php:192 server_replication.php:179 +#: server_replication.php:207 msgid "Master replication" msgstr "" -#: server_databases.php:196 server_replication.php:247 +#: server_databases.php:194 server_replication.php:246 msgid "Slave replication" msgstr "" -#: server_databases.php:229 +#: server_databases.php:227 #, fuzzy msgid "Jump to database" msgstr "Datu-baserik ez" -#: server_databases.php:266 +#: server_databases.php:264 msgid "Not replicated" msgstr "" -#: server_databases.php:272 +#: server_databases.php:270 #, fuzzy msgid "Replicated" msgstr "Erlazioak" -#: server_databases.php:288 +#: server_databases.php:286 #, php-format msgid "Check privileges for database "%s"." msgstr ""%s" datu-basearen pribilegioak egiaztatu." -#: server_databases.php:292 server_databases.php:293 +#: server_databases.php:290 server_databases.php:291 msgid "Check Privileges" msgstr "Pribilegioak egiaztatu" -#: server_databases.php:357 server_databases.php:358 +#: server_databases.php:355 server_databases.php:356 msgid "Enable Statistics" msgstr "Estatistikak gaitu" -#: server_databases.php:361 server_databases.php:362 +#: server_databases.php:359 server_databases.php:360 msgid "Disable Statistics" msgstr "Estatistikak ezgaitu" -#: server_databases.php:365 +#: server_databases.php:363 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -4490,129 +4541,129 @@ msgstr "" "Oharra: Datu-basearen estatistikak hemen gaituz gero web-zerbitzaria eta " "MySQL-arenaren arteko trafiko handia sor liteke." -#: server_engines.php:48 +#: server_engines.php:47 msgid "Storage Engines" msgstr "" -#: server_export.php:20 +#: server_export.php:18 msgid "View dump (schema) of databases" msgstr "Ikusi datu-baseen iraulketa (eskema)" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:23 server_privileges.php:265 msgid "Includes all privileges except GRANT." msgstr "Pribilegio guztiak, GRANT(baimendu) izanezik, dauzka." -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:24 server_privileges.php:191 +#: server_privileges.php:514 msgid "Allows altering the structure of existing tables." msgstr "Uneko taulen egiturak aldatzea baimentzen du." -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:25 server_privileges.php:207 +#: server_privileges.php:520 #, fuzzy msgid "Allows altering and dropping stored routines." msgstr "Indizeak sortu eta ezabatzea baimentzen du." -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:26 server_privileges.php:183 +#: server_privileges.php:513 msgid "Allows creating new databases and tables." msgstr "Datu-base eta taula berriak sortzea baimentzen du." -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:27 server_privileges.php:206 +#: server_privileges.php:519 #, fuzzy msgid "Allows creating stored routines." msgstr "Taula berriak sortzea baimentzen du." -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:513 msgid "Allows creating new tables." msgstr "Taula berriak sortzea baimentzen du." -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:29 server_privileges.php:194 +#: server_privileges.php:517 msgid "Allows creating temporary tables." msgstr "Aldi baterako taulak sortzea baimentzen du." -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:30 server_privileges.php:208 +#: server_privileges.php:553 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: server_privileges.php:32 server_privileges.php:199 -#: server_privileges.php:203 server_privileges.php:526 -#: server_privileges.php:530 +#: server_privileges.php:31 server_privileges.php:198 +#: server_privileges.php:202 server_privileges.php:525 +#: server_privileges.php:529 #, fuzzy msgid "Allows creating new views." msgstr "Taula berriak sortzea baimentzen du." -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:32 server_privileges.php:182 +#: server_privileges.php:505 msgid "Allows deleting data." msgstr "Datuak ezabatzea baimentzen du." -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:33 server_privileges.php:184 +#: server_privileges.php:516 msgid "Allows dropping databases and tables." msgstr "Datu-base eta taulak ezabatzea baimentzen du." -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:34 server_privileges.php:516 msgid "Allows dropping tables." msgstr "Taulak ezabatzea baimentzen du." -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:35 server_privileges.php:199 +#: server_privileges.php:533 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:36 server_privileges.php:209 +#: server_privileges.php:521 msgid "Allows executing stored routines." msgstr "" -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:37 server_privileges.php:188 +#: server_privileges.php:508 msgid "Allows importing data from and exporting data into files." msgstr "" "Datuak fitxategietatik inportatzea eta fitxategietara esportatzea baimentzen " "du." -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:38 server_privileges.php:539 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Erabiltzaileak eta pribilegioak gehitzea baimentzen du pribilegioen taula " "berkargatu gabe." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:515 msgid "Allows creating and dropping indexes." msgstr "Indizeak sortu eta ezabatzea baimentzen du." -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:40 server_privileges.php:180 +#: server_privileges.php:441 server_privileges.php:503 msgid "Allows inserting and replacing data." msgstr "Datuak txertatu eta ordezkatzea baimentzen du." -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:41 server_privileges.php:195 +#: server_privileges.php:548 msgid "Allows locking tables for the current thread." msgstr "Momentuko harian taulak blokeatzea baimentzen du." -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:42 server_privileges.php:645 +#: server_privileges.php:647 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Erabiltzaileak orduko ireki dezakeen konexio berrien kopurua mugatzen du." -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:43 server_privileges.php:633 +#: server_privileges.php:635 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Erabiltzaileak orduko zerbitzarira bidali dezakeen kontsulta kopurua " "mugatzen du." -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:44 server_privileges.php:639 +#: server_privileges.php:641 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -4620,62 +4671,62 @@ msgstr "" "Erabiltzaileak orduko exekuta dezakeen taula edo datu-baserik alda dezaketen " "komando kopurua mugatzen du." -#: server_privileges.php:46 server_privileges.php:652 -#: server_privileges.php:654 +#: server_privileges.php:45 server_privileges.php:651 +#: server_privileges.php:653 #, fuzzy msgid "Limits the number of simultaneous connections the user may have." msgstr "" "Erabiltzaileak orduko ireki dezakeen konexio berrien kopurua mugatzen du." -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:46 server_privileges.php:187 +#: server_privileges.php:543 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:47 server_privileges.php:189 +#: server_privileges.php:447 server_privileges.php:549 msgid "Has no effect in this MySQL version." msgstr "Ez du eraginik MySQL bertsio honetan." -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:48 server_privileges.php:185 +#: server_privileges.php:544 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Zerbitzariaren hobespenak berkargatu eta beraren cacheak hustea baimentzen " "du." -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:197 +#: server_privileges.php:551 msgid "Allows the user to ask where the slaves / masters are." msgstr "Erabiltzailea baimentzen du morroiak / nagusiak non dauden galdetzeko." -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:50 server_privileges.php:196 +#: server_privileges.php:552 msgid "Needed for the replication slaves." msgstr "Erreplikazio morroientzat beharrezkoa." -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:51 server_privileges.php:179 +#: server_privileges.php:438 server_privileges.php:502 msgid "Allows reading data." msgstr "Datuak irakurtzea baimentzen du." -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:52 server_privileges.php:192 +#: server_privileges.php:546 msgid "Gives access to the complete list of databases." msgstr "Datu-base zenrrenda osorako sarrera ahalbidetzen du." -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:53 server_privileges.php:203 +#: server_privileges.php:205 server_privileges.php:518 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:54 server_privileges.php:186 +#: server_privileges.php:545 msgid "Allows shutting down the server." msgstr "Zerbitzaria amatatzea baimentzen du." -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:55 server_privileges.php:193 +#: server_privileges.php:542 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -4685,158 +4736,158 @@ msgstr "" "Aldagai orokorrak zehaztu edota beste erabiltzaileen hariak hiltzeko " "bezalako kudeaketa-eragiketa gehienentzat beharrezkoa da." -#: server_privileges.php:57 server_privileges.php:201 -#: server_privileges.php:535 +#: server_privileges.php:56 server_privileges.php:200 +#: server_privileges.php:534 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "Indizeak sortu eta ezabatzea baimentzen du." -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:57 server_privileges.php:181 +#: server_privileges.php:444 server_privileges.php:504 msgid "Allows changing data." msgstr "Datuak aldatzea baimentzen du." -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:58 server_privileges.php:259 msgid "No privileges." msgstr "Pribilegiorik ez." -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:301 server_privileges.php:302 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Batez" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1710 server_privileges.php:1716 +#: server_privileges.php:430 server_privileges.php:565 +#: server_privileges.php:1714 server_privileges.php:1720 msgid "Table-specific privileges" msgstr "Taularen pribilegio espezifikoak" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1532 +#: server_privileges.php:431 server_privileges.php:573 +#: server_privileges.php:1536 msgid " Note: MySQL privilege names are expressed in English " msgstr " Oharra: MySQL-ren pribilegioen izenak ingelesez adierazita daude" -#: server_privileges.php:563 server_privileges.php:1531 +#: server_privileges.php:562 server_privileges.php:1535 msgid "Global privileges" msgstr "Pribilegio orokorrak" -#: server_privileges.php:565 server_privileges.php:1710 +#: server_privileges.php:564 server_privileges.php:1714 msgid "Database-specific privileges" msgstr "Datu-basearen pribilegio espezifikoak" -#: server_privileges.php:610 +#: server_privileges.php:609 msgid "Administration" msgstr "Kudeaketa" -#: server_privileges.php:630 +#: server_privileges.php:629 msgid "Resource limits" msgstr "Baliabideen mugak" -#: server_privileges.php:631 +#: server_privileges.php:630 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Oharra: Aukera hauek zerora ezarriz gero muga kentzen da." -#: server_privileges.php:708 +#: server_privileges.php:707 msgid "Login Information" msgstr "Saioa hasteko informazioa" -#: server_privileges.php:802 +#: server_privileges.php:801 msgid "Do not change the password" msgstr "Pasahitza ez aldatu" -#: server_privileges.php:835 server_privileges.php:2197 +#: server_privileges.php:834 server_privileges.php:2201 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Ez da erabiltzailerik aurkitu." -#: server_privileges.php:879 +#: server_privileges.php:878 #, php-format msgid "The user %s already exists!" msgstr "%s erabiltzailea badago lehendik ere!" -#: server_privileges.php:962 +#: server_privileges.php:961 msgid "You have added a new user." msgstr "Erabiltzaile berria gehitu duzu." -#: server_privileges.php:1183 +#: server_privileges.php:1184 #, php-format msgid "You have updated the privileges for %s." msgstr "%s-aren pribilegioak eguneratu dituzu." -#: server_privileges.php:1207 +#: server_privileges.php:1208 #, php-format msgid "You have revoked the privileges for %s" msgstr "Zuk %s-(r)en pribilegioak ezeztatu dituzu" -#: server_privileges.php:1243 +#: server_privileges.php:1244 #, php-format msgid "The password for %s was changed successfully." msgstr "%s-arentzako pasahitza arrakastaz aldatua izan da." -#: server_privileges.php:1263 +#: server_privileges.php:1264 #, php-format msgid "Deleting %s" msgstr "%s ezabatzen" -#: server_privileges.php:1274 +#: server_privileges.php:1275 msgid "No users selected for deleting!" msgstr "" -#: server_privileges.php:1277 +#: server_privileges.php:1278 msgid "Reloading the privileges" msgstr "Pribilegioak berkargatzen" -#: server_privileges.php:1292 +#: server_privileges.php:1296 msgid "The selected users have been deleted successfully." msgstr "Hautatutako erabiltzaileak arrakastaz ezabatu dira." -#: server_privileges.php:1327 +#: server_privileges.php:1331 msgid "The privileges were reloaded successfully." msgstr "Pribilegioak arrakastaz berkargatu dira." -#: server_privileges.php:1355 server_privileges.php:1641 +#: server_privileges.php:1359 server_privileges.php:1645 msgid "Edit Privileges" msgstr "Editatu Pribilegioak" -#: server_privileges.php:1364 +#: server_privileges.php:1368 msgid "Revoke" msgstr "Ezeztatu" -#: server_privileges.php:1396 +#: server_privileges.php:1400 msgid "User overview" msgstr "Erabiltzailearen info orokorra" -#: server_privileges.php:1533 server_privileges.php:1715 -#: server_privileges.php:2064 +#: server_privileges.php:1537 server_privileges.php:1719 +#: server_privileges.php:2068 msgid "Grant" msgstr "Baimendu" -#: server_privileges.php:1552 server_privileges.php:2154 +#: server_privileges.php:1556 server_privileges.php:2158 msgid "Any" msgstr "Edozein" -#: server_privileges.php:1601 server_privileges.php:1625 -#: server_privileges.php:2019 server_privileges.php:2208 +#: server_privileges.php:1605 server_privileges.php:1629 +#: server_privileges.php:2023 server_privileges.php:2212 msgid "Add a new User" msgstr "Erabiltzaile berria gehitu" -#: server_privileges.php:1606 +#: server_privileges.php:1610 msgid "Remove selected users" msgstr "Hautatutako erabiltzaileak baztertu" -#: server_privileges.php:1609 +#: server_privileges.php:1613 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Erabiltzaileen pribilegio aktibo guztiak ezeztatu eta ondoren denak ezabatu." -#: server_privileges.php:1610 server_privileges.php:1611 -#: server_privileges.php:1612 +#: server_privileges.php:1614 server_privileges.php:1615 +#: server_privileges.php:1616 msgid "Drop the databases that have the same names as the users." msgstr "Erabiltzaileen izen berdina duten datu-baseak ezabatu." -#: server_privileges.php:1628 +#: server_privileges.php:1632 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4850,49 +4901,49 @@ msgstr "" "daitezke. Kasu honetan, jarraitu aurretik %spribilegioak berkargatu%s " "beharko zenituzke." -#: server_privileges.php:1676 +#: server_privileges.php:1680 msgid "The selected user was not found in the privilege table." msgstr "Hautatutako erabiltzailea ez da pribilegioen taulan aurkitu." -#: server_privileges.php:1716 +#: server_privileges.php:1720 msgid "Column-specific privileges" msgstr "Zutabearen pribilegio espezifikoak" -#: server_privileges.php:1917 +#: server_privileges.php:1921 msgid "Add privileges on the following database" msgstr "Pribilegioak gehitu datu-base honetan" -#: server_privileges.php:1935 +#: server_privileges.php:1939 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:1938 +#: server_privileges.php:1942 msgid "Add privileges on the following table" msgstr "Pribilegioak gehitu taula honetan " -#: server_privileges.php:1995 +#: server_privileges.php:1999 msgid "Change Login Information / Copy User" msgstr "Aldatu saioa hasteko informazioa / Erabiltzailea kopiatu" -#: server_privileges.php:1998 +#: server_privileges.php:2002 msgid "Create a new user with the same privileges and ..." msgstr "Erabiltzaile berri bat sortu pribilegio berdinekin eta ..." -#: server_privileges.php:2000 +#: server_privileges.php:2004 msgid "... keep the old one." msgstr "... mantendu aurrekoa." -#: server_privileges.php:2001 +#: server_privileges.php:2005 msgid " ... delete the old one from the user tables." msgstr " ... zaharra ezabatu erabiltzaileen tauletatik." -#: server_privileges.php:2002 +#: server_privileges.php:2006 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "" " ... zaharraren pribilegio aktibo guztiak errebokatu eta ondoren ezabatu." -#: server_privileges.php:2003 +#: server_privileges.php:2007 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -4900,44 +4951,44 @@ msgstr "" " ... zaharra ezabatu erabiltzaileen tauletatik eta ondoren berkargatu " "pribilegioak." -#: server_privileges.php:2025 +#: server_privileges.php:2029 msgid "Database for user" msgstr "" -#: server_privileges.php:2029 +#: server_privileges.php:2033 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Batez" -#: server_privileges.php:2030 +#: server_privileges.php:2034 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2031 +#: server_privileges.php:2035 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2034 +#: server_privileges.php:2038 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr ""%s" datu-basearen pribilegioak egiaztatu." -#: server_privileges.php:2057 +#: server_privileges.php:2061 #, php-format msgid "Users having access to "%s"" msgstr ""%s"-(e)ra sarbidea duten erabiltzaileak" -#: server_privileges.php:2165 +#: server_privileges.php:2169 msgid "global" msgstr "orokorra" -#: server_privileges.php:2167 +#: server_privileges.php:2171 msgid "database-specific" msgstr "Datubasearentzat espezifikoa" -#: server_privileges.php:2169 +#: server_privileges.php:2173 msgid "wildcard" msgstr "komodina" @@ -4958,53 +5009,53 @@ msgstr "" msgid "ID" msgstr "ID" -#: server_replication.php:50 +#: server_replication.php:49 msgid "Unknown error" msgstr "" -#: server_replication.php:57 +#: server_replication.php:56 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:64 +#: server_replication.php:63 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:70 +#: server_replication.php:69 msgid "Unable to change master" msgstr "" -#: server_replication.php:73 +#: server_replication.php:72 #, php-format msgid "Master server changed succesfully to %s" msgstr "" -#: server_replication.php:181 +#: server_replication.php:180 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:183 server_status.php:391 +#: server_replication.php:182 server_status.php:391 msgid "Show master status" msgstr "" -#: server_replication.php:186 +#: server_replication.php:185 msgid "Show connected slaves" msgstr "" -#: server_replication.php:209 +#: server_replication.php:208 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:216 +#: server_replication.php:215 msgid "Master configuration" msgstr "" -#: server_replication.php:217 +#: server_replication.php:216 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -5013,110 +5064,110 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:220 +#: server_replication.php:219 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:221 +#: server_replication.php:220 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:224 +#: server_replication.php:223 #, fuzzy msgid "Please select databases:" msgstr "Datu-base bat hautatu mesedez" -#: server_replication.php:227 +#: server_replication.php:226 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: server_replication.php:229 +#: server_replication.php:228 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: server_replication.php:292 +#: server_replication.php:291 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:295 +#: server_replication.php:294 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:304 +#: server_replication.php:303 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:307 +#: server_replication.php:306 msgid "See slave status table" msgstr "" -#: server_replication.php:310 +#: server_replication.php:309 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:321 +#: server_replication.php:320 msgid "Control slave:" msgstr "" -#: server_replication.php:324 +#: server_replication.php:323 #, fuzzy msgid "Full start" msgstr "Testu osoa" -#: server_replication.php:324 +#: server_replication.php:323 msgid "Full stop" msgstr "" -#: server_replication.php:325 +#: server_replication.php:324 msgid "Reset slave" msgstr "" -#: server_replication.php:326 +#: server_replication.php:325 #, php-format msgid "SQL Thread %s only" msgstr "" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 #, fuzzy msgid "Start" msgstr "Lar" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 msgid "Stop" msgstr "" -#: server_replication.php:327 +#: server_replication.php:326 #, php-format msgid "IO Thread %s only" msgstr "" -#: server_replication.php:331 +#: server_replication.php:330 msgid "Error management:" msgstr "" -#: server_replication.php:333 +#: server_replication.php:332 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:335 +#: server_replication.php:334 msgid "Skip current error" msgstr "" -#: server_replication.php:336 +#: server_replication.php:335 msgid "Skip next" msgstr "" -#: server_replication.php:339 +#: server_replication.php:338 msgid "errors." msgstr "" -#: server_replication.php:354 +#: server_replication.php:353 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -5827,112 +5878,112 @@ msgstr "Kontsulta mota" msgid "Replication status" msgstr "" -#: server_synchronize.php:93 +#: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:96 +#: server_synchronize.php:95 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:121 server_synchronize.php:124 tbl_create.php:77 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:264 +#: server_synchronize.php:263 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:271 +#: server_synchronize.php:270 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:399 server_synchronize.php:838 +#: server_synchronize.php:398 server_synchronize.php:837 msgid "not present" msgstr "" -#: server_synchronize.php:423 server_synchronize.php:866 +#: server_synchronize.php:422 server_synchronize.php:865 msgid "Structure Difference" msgstr "" -#: server_synchronize.php:424 server_synchronize.php:867 +#: server_synchronize.php:423 server_synchronize.php:866 msgid "Data Difference" msgstr "" -#: server_synchronize.php:429 server_synchronize.php:872 +#: server_synchronize.php:428 server_synchronize.php:871 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:430 server_synchronize.php:873 +#: server_synchronize.php:429 server_synchronize.php:872 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:431 server_synchronize.php:874 +#: server_synchronize.php:430 server_synchronize.php:873 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:432 server_synchronize.php:875 +#: server_synchronize.php:431 server_synchronize.php:874 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:433 server_synchronize.php:876 +#: server_synchronize.php:432 server_synchronize.php:875 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:434 server_synchronize.php:877 +#: server_synchronize.php:433 server_synchronize.php:876 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:435 server_synchronize.php:878 +#: server_synchronize.php:434 server_synchronize.php:877 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:445 server_synchronize.php:889 +#: server_synchronize.php:444 server_synchronize.php:888 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:448 server_synchronize.php:893 +#: server_synchronize.php:447 server_synchronize.php:892 msgid "Apply Selected Changes" msgstr "Aplikatu aukeratutako aldaketak" -#: server_synchronize.php:450 server_synchronize.php:895 +#: server_synchronize.php:449 server_synchronize.php:894 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:463 +#: server_synchronize.php:462 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:941 +#: server_synchronize.php:940 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:1002 +#: server_synchronize.php:1001 msgid "The following queries have been executed:" msgstr "" -#: server_synchronize.php:1121 +#: server_synchronize.php:1120 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1122 +#: server_synchronize.php:1121 #, fuzzy #| msgid "Connections" msgid "Current connection" msgstr "Konexioak" -#: server_synchronize.php:1151 +#: server_synchronize.php:1150 #, php-format msgid "Configuration: %s" msgstr "" -#: server_synchronize.php:1166 +#: server_synchronize.php:1165 msgid "Socket" msgstr "" -#: server_synchronize.php:1212 +#: server_synchronize.php:1211 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -6488,8 +6539,8 @@ msgstr "" #: setup/lib/messages.inc.php:128 msgid "" "Configure phpMyAdmin database to gain access to additional features, see " -"[a@../Documentation.html#linked-tables]linked-tables infrastructure[/a] in " -"documentation" +"[a@../Documentation.html#linked-tables]phpMyAdmin configuration storage[/a] " +"in documentation" msgstr "" #: setup/lib/messages.inc.php:129 setup/lib/messages.inc.php:290 @@ -7547,114 +7598,114 @@ msgstr "" msgid "ZIP" msgstr "" -#: sql.php:495 tbl_replace.php:385 +#: sql.php:494 tbl_replace.php:384 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: sql.php:512 +#: sql.php:511 msgid "Showing as PHP code" msgstr "" -#: sql.php:515 tbl_replace.php:359 +#: sql.php:514 tbl_replace.php:358 msgid "Showing SQL query" msgstr "" -#: sql.php:517 +#: sql.php:516 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "SQL balidatu" -#: sql.php:638 +#: sql.php:631 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:670 +#: sql.php:663 msgid "Label" msgstr "Etiketa" -#: tbl_addfield.php:188 tbl_alter.php:102 tbl_indexes.php:97 +#: tbl_addfield.php:185 tbl_alter.php:100 tbl_indexes.php:97 #, fuzzy, php-format msgid "Table %1$s has been altered successfully" msgstr "Hautatutako erabiltzaileak arrakastaz ezabatu dira." -#: tbl_change.php:250 tbl_select.php:26 tbl_select.php:27 tbl_select.php:30 -#: tbl_select.php:33 +#: tbl_change.php:245 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_select.php:32 msgid "Browse foreign values" msgstr "" -#: tbl_change.php:280 tbl_change.php:318 +#: tbl_change.php:275 tbl_change.php:313 msgid "Function" msgstr "Funtzioak" -#: tbl_change.php:300 tbl_indexes.php:199 tbl_indexes.php:224 +#: tbl_change.php:295 tbl_indexes.php:198 tbl_indexes.php:223 msgid "Ignore" msgstr "Ezikusi" -#: tbl_change.php:725 +#: tbl_change.php:720 #, fuzzy #| msgid " Because of its length,
                            this field might not be editable " msgid " Because of its length,
                            this column might not be editable " msgstr " Bere luzeragatik,
                            eremu hau ez da editagarria " -#: tbl_change.php:884 +#: tbl_change.php:835 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:890 +#: tbl_change.php:841 msgid "Binary - do not edit" msgstr " Binarioa - ez editatu! " -#: tbl_change.php:983 +#: tbl_change.php:889 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:1128 +#: tbl_change.php:1026 msgid "Insert as new row" msgstr "Txertatu errenkada berri batean" -#: tbl_change.php:1129 +#: tbl_change.php:1027 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:1130 +#: tbl_change.php:1028 msgid "Show insert query" msgstr "" -#: tbl_change.php:1145 +#: tbl_change.php:1043 msgid "Go back to previous page" msgstr "Itzuli" -#: tbl_change.php:1146 +#: tbl_change.php:1044 msgid "Insert another new row" msgstr "Erregistro berria gehitu" -#: tbl_change.php:1150 +#: tbl_change.php:1048 msgid "Go back to this page" msgstr "Egin atzera orri honetara" -#: tbl_change.php:1158 +#: tbl_change.php:1056 msgid "Edit next row" msgstr "Editatu hurrengo lerroa" -#: tbl_change.php:1169 +#: tbl_change.php:1067 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: tbl_change.php:1207 +#: tbl_change.php:1105 #, php-format msgid "Restart insertion with %s rows" msgstr "" -#: tbl_create.php:57 +#: tbl_create.php:55 #, fuzzy, php-format msgid "Table %s already exists!" msgstr "%s erabiltzailea badago lehendik ere!" -#: tbl_create.php:244 +#: tbl_create.php:241 #, fuzzy, php-format msgid "Table %1$s has been created." msgstr "%s taula ezabatu egin da" @@ -7675,205 +7726,205 @@ msgstr "Ezinezkoa indizearen izena ¡PRIMARY! berrizendatzea" msgid "No index parts defined!" msgstr "Ez da indiziaren zatiak definitu!" -#: tbl_indexes.php:159 +#: tbl_indexes.php:158 msgid "Create a new index" msgstr "Indize berri bat sortu" -#: tbl_indexes.php:161 +#: tbl_indexes.php:160 msgid "Modify an index" msgstr "Indize bat aldatu" -#: tbl_indexes.php:167 +#: tbl_indexes.php:166 msgid "Index name:" msgstr "Indizearen izena :" -#: tbl_indexes.php:173 +#: tbl_indexes.php:172 msgid "Index type:" msgstr "Indize mota :" -#: tbl_indexes.php:183 +#: tbl_indexes.php:182 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" "(\"PRIMARY\"-k, soilik, lehen mailako gako baten izena izan behar du!)" -#: tbl_indexes.php:250 +#: tbl_indexes.php:249 #, php-format msgid "Add to index  %s column(s)" msgstr " %s  zutabe indizean gehituta" -#: tbl_indexes.php:255 tbl_structure.php:588 tbl_structure.php:599 +#: tbl_indexes.php:254 tbl_structure.php:586 tbl_structure.php:597 msgid "Column count has to be larger than zero." msgstr "" -#: tbl_move_copy.php:45 +#: tbl_move_copy.php:44 msgid "Can't move table to same one!" msgstr "Ezin taula berberara mugitu!" -#: tbl_move_copy.php:47 +#: tbl_move_copy.php:46 msgid "Can't copy table to same one!" msgstr "Ezinezkoa da taula berberera kopiatzea!" -#: tbl_move_copy.php:55 +#: tbl_move_copy.php:54 #, php-format msgid "Table %s has been moved to %s." msgstr "%s taula hona mugitu da: %s." -#: tbl_move_copy.php:57 +#: tbl_move_copy.php:56 #, php-format msgid "Table %s has been copied to %s." msgstr "%s taula hona kopiatua izan da: %s." -#: tbl_move_copy.php:81 +#: tbl_move_copy.php:80 msgid "The table name is empty!" msgstr "Taularen izena hutsik dago!" -#: tbl_operations.php:248 +#: tbl_operations.php:246 msgid "Alter table order by" msgstr "Taularen \"Order By\" aldatu" -#: tbl_operations.php:257 +#: tbl_operations.php:255 msgid "(singly)" msgstr "(soilik)" -#: tbl_operations.php:277 +#: tbl_operations.php:275 msgid "Move table to (database.table):" msgstr "Taula hona mugitu (datu-basea.taula):" -#: tbl_operations.php:335 +#: tbl_operations.php:333 msgid "Table options" msgstr "Taularen hobespenak" -#: tbl_operations.php:339 +#: tbl_operations.php:337 msgid "Rename table to" msgstr "Taula berrizendatu izen honetara: " -#: tbl_operations.php:510 +#: tbl_operations.php:508 msgid "Copy table to (database.table):" msgstr "Taula hona kopiatu: (datu-base.taula):" -#: tbl_operations.php:557 +#: tbl_operations.php:555 msgid "Switch to copied table" msgstr "Kopiatutako taulara aldatu" -#: tbl_operations.php:569 +#: tbl_operations.php:567 msgid "Table maintenance" msgstr "Taularen mantenua" -#: tbl_operations.php:590 +#: tbl_operations.php:588 msgid "Defragment table" msgstr "" -#: tbl_operations.php:629 +#: tbl_operations.php:627 #, php-format msgid "Table %s has been flushed" msgstr "%s taularen cachea hustu egin da" -#: tbl_operations.php:635 +#: tbl_operations.php:633 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Taularen cachea hustu (\"FLUSH\")" -#: tbl_operations.php:650 +#: tbl_operations.php:648 #, fuzzy msgid "Partition maintenance" msgstr "Taularen mantenua" -#: tbl_operations.php:658 +#: tbl_operations.php:656 #, php-format msgid "Partition %s" msgstr "" -#: tbl_operations.php:661 +#: tbl_operations.php:659 msgid "Analyze" msgstr "Aztertu" -#: tbl_operations.php:662 +#: tbl_operations.php:660 #, fuzzy msgid "Check" msgstr "Txekiera" -#: tbl_operations.php:663 +#: tbl_operations.php:661 msgid "Optimize" msgstr "" -#: tbl_operations.php:664 +#: tbl_operations.php:662 msgid "Rebuild" msgstr "" -#: tbl_operations.php:665 +#: tbl_operations.php:663 #, fuzzy msgid "Repair" msgstr "Taula konpondu" -#: tbl_operations.php:677 +#: tbl_operations.php:675 msgid "Remove partitioning" msgstr "" -#: tbl_operations.php:703 +#: tbl_operations.php:701 msgid "Check referential integrity:" msgstr "Erreferentzien integritatea egiaztatu:" -#: tbl_printview.php:73 +#: tbl_printview.php:72 msgid "Show tables" msgstr "Taulak erakutsi" -#: tbl_printview.php:308 tbl_structure.php:655 +#: tbl_printview.php:307 tbl_structure.php:653 msgid "Space usage" msgstr "Erabilitako lekua" -#: tbl_printview.php:312 tbl_structure.php:659 +#: tbl_printview.php:311 tbl_structure.php:657 msgid "Usage" msgstr "Erabilpena" -#: tbl_printview.php:339 tbl_structure.php:686 +#: tbl_printview.php:338 tbl_structure.php:684 msgid "Effective" msgstr "Eraginkorra" -#: tbl_printview.php:364 tbl_structure.php:724 +#: tbl_printview.php:363 tbl_structure.php:722 msgid "Row Statistics" msgstr "Errenkadaren estatistikak" -#: tbl_printview.php:367 tbl_structure.php:727 +#: tbl_printview.php:366 tbl_structure.php:725 msgid "Statements" msgstr "Sententziak" -#: tbl_printview.php:378 tbl_structure.php:739 +#: tbl_printview.php:377 tbl_structure.php:737 msgid "static" msgstr "" -#: tbl_printview.php:380 tbl_structure.php:741 +#: tbl_printview.php:379 tbl_structure.php:739 msgid "dynamic" msgstr "dinamikoa" -#: tbl_printview.php:402 tbl_structure.php:784 +#: tbl_printview.php:401 tbl_structure.php:782 msgid "Row length" msgstr "Errenkadaren luzera" -#: tbl_printview.php:412 tbl_structure.php:792 +#: tbl_printview.php:411 tbl_structure.php:790 msgid " Row size " msgstr " Errenkadaren tamaina " -#: tbl_relation.php:278 +#: tbl_relation.php:276 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" -#: tbl_relation.php:404 +#: tbl_relation.php:402 #, fuzzy #| msgid "Internal relations" msgid "Internal relation" msgstr "Barne-erlazioak" -#: tbl_relation.php:406 +#: tbl_relation.php:404 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: tbl_relation.php:412 +#: tbl_relation.php:410 msgid "Foreign key constraint" msgstr "" @@ -7881,233 +7932,233 @@ msgstr "" msgid "No rows selected" msgstr "" -#: tbl_select.php:130 +#: tbl_select.php:129 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "\"Adibide moduan\" kontsulta bat egin (komodina: \"%\")" -#: tbl_select.php:136 +#: tbl_select.php:135 #, fuzzy msgid "Operator" msgstr "Eragiketak" -#: tbl_select.php:267 +#: tbl_select.php:266 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "Eremuak hautatu (bat gutxienez):" -#: tbl_select.php:285 +#: tbl_select.php:284 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Bilatzeko baldintzak txertatu (\"where\" klausularen gorputza):" -#: tbl_select.php:292 +#: tbl_select.php:291 msgid "Number of rows per page" msgstr "Errenkada kopurua orriko" -#: tbl_select.php:298 +#: tbl_select.php:297 msgid "Display order:" msgstr "Ordena erakutsi:" -#: tbl_structure.php:160 +#: tbl_structure.php:159 msgid "Browse distinct values" msgstr "" -#: tbl_structure.php:360 +#: tbl_structure.php:358 #, fuzzy #| msgid "None" msgctxt "None for default" msgid "None" msgstr "Batez" -#: tbl_structure.php:373 +#: tbl_structure.php:371 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Column %s has been dropped" msgstr "%s taula ezabatu egin da" -#: tbl_structure.php:384 +#: tbl_structure.php:382 #, php-format msgid "A primary key has been added on %s" msgstr "Lehen mailako gakoa gehitu zaio %s-(r)i" -#: tbl_structure.php:399 tbl_structure.php:413 tbl_structure.php:427 +#: tbl_structure.php:397 tbl_structure.php:411 tbl_structure.php:425 #, php-format msgid "An index has been added on %s" msgstr "Indize bat gehitu gehitu zaio %s-(r)i" -#: tbl_structure.php:505 tbl_structure.php:507 +#: tbl_structure.php:503 tbl_structure.php:505 msgid "Relation view" msgstr "Erlazioen ikuspegia" -#: tbl_structure.php:514 tbl_structure.php:516 +#: tbl_structure.php:512 tbl_structure.php:514 msgid "Propose table structure" msgstr "Taularen egituraren proposamena " -#: tbl_structure.php:539 +#: tbl_structure.php:537 #, fuzzy #| msgid "Add %s field(s)" msgid "Add column" msgstr "Gehitu %s zutabe" -#: tbl_structure.php:553 +#: tbl_structure.php:551 msgid "At End of Table" msgstr "Taularen amaieran" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At Beginning of Table" msgstr "Taularen hasieran" -#: tbl_structure.php:555 +#: tbl_structure.php:553 #, php-format msgid "After %s" msgstr "%s(a)ren ondoren" -#: tbl_structure.php:593 +#: tbl_structure.php:591 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "Indize bat sortu  %s  zutabetan" -#: tbl_structure.php:755 +#: tbl_structure.php:753 msgid "partitioned" msgstr "" -#: tbl_tracking.php:113 +#: tbl_tracking.php:109 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:186 +#: tbl_tracking.php:182 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "" -#: tbl_tracking.php:194 +#: tbl_tracking.php:190 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "" -#: tbl_tracking.php:202 +#: tbl_tracking.php:198 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "" -#: tbl_tracking.php:212 +#: tbl_tracking.php:208 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:219 +#: tbl_tracking.php:215 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:220 +#: tbl_tracking.php:216 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:229 +#: tbl_tracking.php:225 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:250 tbl_tracking.php:378 +#: tbl_tracking.php:245 tbl_tracking.php:373 msgid "Close" msgstr "" -#: tbl_tracking.php:261 +#: tbl_tracking.php:256 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:380 +#: tbl_tracking.php:375 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:396 tbl_tracking.php:503 +#: tbl_tracking.php:391 tbl_tracking.php:498 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "" -#: tbl_tracking.php:409 tbl_tracking.php:460 +#: tbl_tracking.php:404 tbl_tracking.php:455 #, fuzzy msgid "Date" msgstr "Datuak" -#: tbl_tracking.php:410 tbl_tracking.php:461 +#: tbl_tracking.php:405 tbl_tracking.php:456 #, fuzzy msgid "Username" msgstr "Erabiltzaile-izena:" -#: tbl_tracking.php:411 +#: tbl_tracking.php:406 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:462 +#: tbl_tracking.php:457 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:506 +#: tbl_tracking.php:501 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:507 +#: tbl_tracking.php:502 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:520 +#: tbl_tracking.php:515 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:560 +#: tbl_tracking.php:555 msgid "Show versions" msgstr "" -#: tbl_tracking.php:592 +#: tbl_tracking.php:587 #, fuzzy msgid "Version" msgstr "PHP Bertsioa" -#: tbl_tracking.php:639 +#: tbl_tracking.php:634 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "" -#: tbl_tracking.php:641 +#: tbl_tracking.php:636 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:652 +#: tbl_tracking.php:647 #, php-format msgid "Activate tracking for %s.%s" msgstr "" -#: tbl_tracking.php:654 +#: tbl_tracking.php:649 msgid "Activate now" msgstr "" -#: tbl_tracking.php:667 +#: tbl_tracking.php:662 #, php-format msgid "Create version %s of %s.%s" msgstr "" -#: tbl_tracking.php:671 +#: tbl_tracking.php:666 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:679 +#: tbl_tracking.php:674 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:687 +#: tbl_tracking.php:682 #, fuzzy msgid "Create version" msgstr "Zerbitzariaren bertsioa" @@ -8155,11 +8206,36 @@ msgstr "Profila eguneratua izan da." msgid "VIEW name" msgstr "" -#: view_operations.php:92 +#: view_operations.php:91 #, fuzzy msgid "Rename view to" msgstr "Taula berrizendatu izen honetara: " +#, fuzzy +#~| msgid "Enabled" +#~ msgctxt "BLOB repository" +#~ msgid "Enabled" +#~ msgstr "Gaituta" + +#, fuzzy +#~ msgid "Disable" +#~ msgstr "Ezgaituta" + +#, fuzzy +#~ msgctxt "BLOB repository" +#~ msgid "Repair" +#~ msgstr "Taula konpondu" + +#, fuzzy +#~| msgid "Disabled" +#~ msgctxt "BLOB repository" +#~ msgid "Disabled" +#~ msgstr "Ezgaituta" + +#, fuzzy +#~ msgid "Enable" +#~ msgstr "Gaituta" + #~ msgid "" #~ "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " #~ "extension. Please check your PHP configuration." diff --git a/po/fa.po b/po/fa.po index 48f1faab3..217656161 100644 --- a/po/fa.po +++ b/po/fa.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-21 13:53+0200\n" +"POT-Creation-Date: 2010-07-26 17:18+0200\n" "PO-Revision-Date: 2010-05-19 03:54+0200\n" "Last-Translator: \n" "Language-Team: persian \n" @@ -14,159 +14,171 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.1\n" -#: browse_foreigners.php:37 browse_foreigners.php:58 -#: libraries/display_tbl.lib.php:416 server_privileges.php:1506 +#: browse_foreigners.php:36 browse_foreigners.php:57 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1510 msgid "Show all" msgstr "نمايش همه" -#: browse_foreigners.php:81 libraries/common.lib.php:2313 -#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:393 -#: libraries/export/pdf.php:146 pdf_schema.php:282 pdf_schema.php:1122 -#: pdf_schema.php:1138 +#: browse_foreigners.php:80 libraries/common.lib.php:2318 +#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:392 +#: libraries/export/pdf.php:146 pdf_schema.php:281 pdf_schema.php:1121 +#: pdf_schema.php:1137 msgid "Page number:" msgstr "شماره صفحه:" -#: browse_foreigners.php:131 +#: browse_foreigners.php:130 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " "cross-window updates." msgstr "" -#: browse_foreigners.php:149 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2829 -#: libraries/common.lib.php:2836 libraries/db_links.inc.php:74 -#: libraries/tbl_links.inc.php:62 +#: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 +#: db_structure.php:89 db_structure.php:91 db_structure.php:102 +#: db_structure.php:104 libraries/common.lib.php:2834 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "جستجو" -#: browse_foreigners.php:152 db_operations.php:384 db_operations.php:428 -#: db_operations.php:498 db_operations.php:608 db_search.php:344 -#: db_structure.php:566 js/messages.php:48 libraries/Config.class.php:1043 -#: libraries/Theme_Manager.class.php:310 +#: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 +#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 +#: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 -#: libraries/common.lib.php:1340 libraries/common.lib.php:2289 +#: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 -#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:275 -#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:531 -#: libraries/display_tbl.lib.php:613 libraries/replication_gui.lib.php:75 +#: libraries/display_export.lib.php:269 libraries/display_import.lib.php:275 +#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 +#: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 #: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:781 -#: main.php:127 navigation.php:231 pdf_pages.php:291 pdf_pages.php:327 -#: pdf_pages.php:529 pmd_pdf.php:115 server_binlog.php:128 -#: server_privileges.php:664 server_privileges.php:1616 -#: server_privileges.php:1963 server_privileges.php:2010 -#: server_privileges.php:2049 server_replication.php:234 -#: server_replication.php:317 server_replication.php:340 -#: server_synchronize.php:1208 tbl_change.php:328 tbl_change.php:1172 -#: tbl_change.php:1209 tbl_indexes.php:253 tbl_operations.php:264 -#: tbl_operations.php:301 tbl_operations.php:498 tbl_operations.php:560 -#: tbl_operations.php:680 tbl_select.php:324 tbl_structure.php:561 -#: tbl_structure.php:596 tbl_tracking.php:394 tbl_tracking.php:511 -#: view_create.php:181 view_operations.php:100 +#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 +#: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 +#: server_privileges.php:663 server_privileges.php:1620 +#: server_privileges.php:1967 server_privileges.php:2014 +#: server_privileges.php:2053 server_replication.php:233 +#: server_replication.php:316 server_replication.php:339 +#: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 +#: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 +#: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 +#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "تاييد" -#: browse_foreigners.php:167 browse_foreigners.php:171 -#: libraries/Index.class.php:441 tbl_tracking.php:319 +#: browse_foreigners.php:166 browse_foreigners.php:170 +#: libraries/Index.class.php:441 tbl_tracking.php:314 msgid "Keyname" msgstr "Keyname" -#: browse_foreigners.php:168 browse_foreigners.php:170 -#: server_collations.php:54 server_collations.php:66 server_engines.php:58 +#: browse_foreigners.php:167 browse_foreigners.php:169 +#: server_collations.php:54 server_collations.php:66 server_engines.php:57 #: server_status.php:738 msgid "Description" msgstr "توضیحات" -#: browse_foreigners.php:246 browse_foreigners.php:255 -#: browse_foreigners.php:267 browse_foreigners.php:275 +#: browse_foreigners.php:245 browse_foreigners.php:254 +#: browse_foreigners.php:266 browse_foreigners.php:274 msgid "Use this value" msgstr "این مقدار را استفاده کنید" -#: db_create.php:45 +#: bs_disp_as_mime_type.php:29 bs_play_media.php:35 +msgid "No blob streaming server configured!" +msgstr "" + +#: bs_disp_as_mime_type.php:35 +msgid "Failed to fetch headers" +msgstr "" + +#: bs_disp_as_mime_type.php:41 +msgid "Failed to open remote URL" +msgstr "" + +#: db_create.php:44 #, fuzzy, php-format msgid "Database %1$s has been created." msgstr "پايگاه داده %s حذف گرديد." -#: db_datadict.php:48 db_operations.php:377 +#: db_datadict.php:48 db_operations.php:313 #, fuzzy msgid "Database comment: " msgstr "توضيحات جدول" -#: db_datadict.php:164 libraries/tbl_properties.inc.php:723 -#: pdf_schema.php:1235 tbl_operations.php:346 tbl_printview.php:128 +#: db_datadict.php:164 libraries/tbl_properties.inc.php:722 +#: pdf_schema.php:1234 tbl_operations.php:344 tbl_printview.php:127 msgid "Table comments" msgstr "توضيحات جدول" -#: db_datadict.php:173 db_qbe.php:173 libraries/Index.class.php:445 +#: db_datadict.php:173 db_qbe.php:170 libraries/Index.class.php:445 #: libraries/export/htmlword.php:243 libraries/export/latex.php:364 #: libraries/export/odt.php:293 libraries/export/texytext.php:233 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:274 -#: pdf_schema.php:1261 pdf_schema.php:1282 tbl_change.php:306 -#: tbl_indexes.php:188 tbl_printview.php:140 tbl_relation.php:401 -#: tbl_select.php:133 tbl_structure.php:176 tbl_tracking.php:272 -#: tbl_tracking.php:323 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 +#: pdf_schema.php:1260 pdf_schema.php:1281 tbl_change.php:301 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:132 tbl_structure.php:175 tbl_tracking.php:267 +#: tbl_tracking.php:318 #, fuzzy #| msgid "Column names" msgid "Column" msgstr "نام ستونها" -#: db_datadict.php:174 db_printview.php:105 libraries/Index.class.php:442 +#: db_datadict.php:174 db_printview.php:104 libraries/Index.class.php:442 #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 #: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:244 #: libraries/export/latex.php:364 libraries/export/odt.php:296 #: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:99 -#: pdf_schema.php:1262 pdf_schema.php:1283 server_privileges.php:2062 -#: tbl_change.php:285 tbl_change.php:312 tbl_printview.php:141 -#: tbl_printview.php:311 tbl_select.php:134 tbl_structure.php:177 -#: tbl_structure.php:658 tbl_tracking.php:273 tbl_tracking.php:320 +#: pdf_schema.php:1261 pdf_schema.php:1282 server_privileges.php:2066 +#: tbl_change.php:280 tbl_change.php:307 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:133 tbl_structure.php:176 +#: tbl_structure.php:656 tbl_tracking.php:268 tbl_tracking.php:315 msgid "Type" msgstr "نوع" #: db_datadict.php:176 libraries/Index.class.php:448 #: libraries/export/htmlword.php:245 libraries/export/latex.php:364 #: libraries/export/odt.php:299 libraries/export/texytext.php:235 -#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1264 -#: pdf_schema.php:1285 tbl_change.php:321 tbl_printview.php:143 -#: tbl_structure.php:180 tbl_tracking.php:275 tbl_tracking.php:326 +#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1263 +#: pdf_schema.php:1284 tbl_change.php:316 tbl_printview.php:142 +#: tbl_structure.php:179 tbl_tracking.php:270 tbl_tracking.php:321 msgid "Null" msgstr "خالي" -#: db_datadict.php:177 db_structure.php:500 libraries/export/htmlword.php:246 +#: db_datadict.php:177 db_structure.php:486 libraries/export/htmlword.php:246 #: libraries/export/latex.php:364 libraries/export/odt.php:302 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:105 -#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 -#: tbl_structure.php:181 tbl_tracking.php:276 +#: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:143 +#: tbl_structure.php:180 tbl_tracking.php:271 msgid "Default" msgstr "پيش‌فرض" #: db_datadict.php:181 libraries/export/htmlword.php:248 #: libraries/export/latex.php:366 libraries/export/odt.php:306 -#: libraries/export/texytext.php:238 pdf_schema.php:1267 pdf_schema.php:1288 -#: tbl_printview.php:148 +#: libraries/export/texytext.php:238 pdf_schema.php:1266 pdf_schema.php:1287 +#: tbl_printview.php:147 msgid "Links to" msgstr "پيوند به" -#: db_datadict.php:183 db_printview.php:111 libraries/export/htmlword.php:251 +#: db_datadict.php:183 db_printview.php:110 libraries/export/htmlword.php:251 #: libraries/export/latex.php:49 libraries/export/latex.php:369 #: libraries/export/odt.php:37 libraries/export/odt.php:311 #: libraries/export/sql.php:29 libraries/export/texytext.php:241 -#: libraries/tbl_properties.inc.php:129 pdf_schema.php:1278 -#: pdf_schema.php:1289 tbl_printview.php:150 +#: libraries/tbl_properties.inc.php:128 pdf_schema.php:1277 +#: pdf_schema.php:1288 tbl_printview.php:149 msgid "Comments" msgstr "توضيحات" #: db_datadict.php:266 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/export/htmlword.php:321 #: libraries/export/latex.php:434 libraries/export/odt.php:367 -#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:262 -#: pdf_schema.php:1343 server_privileges.php:1560 server_privileges.php:1571 -#: server_privileges.php:1881 server_privileges.php:1886 -#: server_privileges.php:2179 sql.php:131 sql.php:193 tbl_printview.php:227 -#: tbl_structure.php:349 tbl_tracking.php:336 tbl_tracking.php:341 +#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:261 +#: pdf_schema.php:1342 server_privileges.php:1564 server_privileges.php:1575 +#: server_privileges.php:1885 server_privileges.php:1890 +#: server_privileges.php:2183 sql.php:130 sql.php:192 tbl_printview.php:226 +#: tbl_structure.php:347 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "خير" @@ -177,17 +189,17 @@ msgstr "خير" #: libraries/mult_submits.inc.php:49 libraries/mult_submits.inc.php:54 #: libraries/mult_submits.inc.php:59 libraries/mult_submits.inc.php:91 #: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:105 -#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:261 -#: libraries/mult_submits.inc.php:272 pdf_schema.php:1343 -#: server_databases.php:63 server_privileges.php:1557 -#: server_privileges.php:1571 server_privileges.php:1881 -#: server_privileges.php:1884 server_privileges.php:2179 sql.php:192 -#: tbl_printview.php:227 tbl_structure.php:39 tbl_structure.php:349 -#: tbl_tracking.php:334 tbl_tracking.php:339 +#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:260 +#: libraries/mult_submits.inc.php:271 pdf_schema.php:1342 +#: server_databases.php:61 server_privileges.php:1561 +#: server_privileges.php:1575 server_privileges.php:1885 +#: server_privileges.php:1888 server_privileges.php:2183 sql.php:191 +#: tbl_printview.php:226 tbl_structure.php:38 tbl_structure.php:347 +#: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" msgstr "بلي" -#: db_datadict.php:321 db_printview.php:265 tbl_printview.php:496 +#: db_datadict.php:321 db_printview.php:264 tbl_printview.php:495 msgid "Print" msgstr "چاپ" @@ -195,291 +207,252 @@ msgstr "چاپ" msgid "View dump (schema) of database" msgstr "نمايش الگوي پايگاه داده" -#: db_export.php:32 db_printview.php:95 db_qbe.php:101 db_structure.php:50 -#: db_tracking.php:34 export.php:352 navigation.php:326 +#: db_export.php:32 db_printview.php:94 db_qbe.php:98 db_structure.php:49 +#: db_tracking.php:30 export.php:350 navigation.php:325 msgid "No tables found in database." msgstr "در اين پايگاه داده هيچ جدولي وجود ندارد ." -#: db_export.php:42 db_search.php:326 server_export.php:26 +#: db_export.php:42 db_search.php:326 server_export.php:24 msgid "Select All" msgstr "انتخاب همه" -#: db_export.php:44 db_search.php:329 server_export.php:28 +#: db_export.php:44 db_search.php:329 server_export.php:26 msgid "Unselect All" msgstr "عدم انتخاب همه" -#: db_operations.php:37 tbl_create.php:49 +#: db_operations.php:33 tbl_create.php:47 #, fuzzy msgid "The database name is empty!" msgstr "نام جدول وارد نشده‌است !" -#: db_operations.php:235 +#: db_operations.php:231 #, fuzzy, php-format msgid "Database %s has been renamed to %s" msgstr "جدول %s به %s تغيير نام داده‌شد" -#: db_operations.php:239 +#: db_operations.php:235 #, fuzzy, php-format msgid "Database %s has been copied to %s" msgstr "جدول %s به %s كپي شد." -#: db_operations.php:411 +#: db_operations.php:347 #, fuzzy msgid "Rename database to" msgstr "بازناميدن جدول به" -#: db_operations.php:416 server_processlist.php:56 +#: db_operations.php:352 server_processlist.php:56 msgid "Command" msgstr "دستور" -#: db_operations.php:428 tbl_change.php:1141 +#: db_operations.php:364 tbl_change.php:1039 msgid "and then" msgstr "و سپس" -#: db_operations.php:454 +#: db_operations.php:390 #, fuzzy msgid "Copy database to" msgstr "No databases" -#: db_operations.php:461 tbl_operations.php:527 tbl_tracking.php:387 +#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "فقط ساختار" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:389 +#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "ساختار و داده‌ها" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:388 +#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "فقط داده‌ها" -#: db_operations.php:471 +#: db_operations.php:407 msgid "CREATE DATABASE before copying" msgstr "" -#: db_operations.php:474 libraries/export/sql.php:51 +#: db_operations.php:410 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 -#: libraries/export/sql.php:81 tbl_operations.php:535 +#: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "افزودن %s" -#: db_operations.php:478 libraries/export/sql.php:77 tbl_operations.php:298 -#: tbl_operations.php:537 +#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "" -#: db_operations.php:482 tbl_operations.php:544 +#: db_operations.php:418 tbl_operations.php:542 msgid "Add constraints" msgstr "" -#: db_operations.php:495 +#: db_operations.php:431 msgid "Switch to copied database" msgstr "" -#: db_operations.php:536 -msgid "BLOB Repository" -msgstr "" - -#: db_operations.php:539 db_tracking.php:75 libraries/common.lib.php:1357 -#: libraries/server_links.inc.php:48 server_processlist.php:58 -#: tbl_tracking.php:595 test/theme.php:100 -msgid "Status" -msgstr "" - -#: db_operations.php:547 -msgctxt "BLOB repository" -msgid "Enabled" -msgstr "فعال شده" - -#: db_operations.php:551 -#, fuzzy -msgid "Disable" -msgstr "غيرفعال" - -#: db_operations.php:561 -msgid "Damaged" -msgstr "" - -#: db_operations.php:565 -#, fuzzy -msgctxt "BLOB repository" -msgid "Repair" -msgstr "مرمت جدول" - -#: db_operations.php:573 -#, fuzzy -#| msgid "Disabled" -msgctxt "BLOB repository" -msgid "Disabled" -msgstr "غيرفعال" - -#: db_operations.php:577 -#, fuzzy -msgid "Enable" -msgstr "فعال" - -#: db_operations.php:601 libraries/Index.class.php:447 +#: db_operations.php:451 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 -#: server_collations.php:53 server_collations.php:65 server_databases.php:110 -#: tbl_operations.php:362 tbl_select.php:135 tbl_structure.php:178 -#: tbl_structure.php:766 tbl_tracking.php:274 tbl_tracking.php:325 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 +#: server_collations.php:53 server_collations.php:65 server_databases.php:108 +#: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:177 +#: tbl_structure.php:764 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "مقایسه" -#: db_operations.php:614 main.php:315 pdf_schema.php:33 -#, php-format +#: db_operations.php:464 pdf_schema.php:32 +#, fuzzy, php-format +#| msgid "" +#| "The additional features for working with linked tables have been " +#| "deactivated. To find out why click %shere%s." msgid "" -"The additional features for working with linked tables have been " -"deactivated. To find out why click %shere%s." +"The phpMyAdmin configuration storage has been deactivated. To find out why " +"click %shere%s." msgstr "" "امكانات اضافي براي كاركردن با جدولهاي پيوندي غيرفعال شده‌است . براي پيداكردن " "دليل آن %sاينجا%s را بزنيد ." -#: db_operations.php:647 +#: db_operations.php:497 msgid "Edit PDF Pages" msgstr "ويرايش صفحات PDF" -#: db_printview.php:103 db_tracking.php:71 db_tracking.php:156 +#: db_printview.php:102 db_tracking.php:67 db_tracking.php:152 #: libraries/db_structure.lib.php:37 libraries/export/xml.php:327 -#: libraries/header.inc.php:125 pdf_pages.php:423 server_privileges.php:1657 -#: server_privileges.php:1713 server_privileges.php:1977 -#: server_synchronize.php:422 server_synchronize.php:865 tbl_tracking.php:591 +#: libraries/header.inc.php:125 pdf_pages.php:422 server_privileges.php:1661 +#: server_privileges.php:1717 server_privileges.php:1981 +#: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "جدول" -#: db_printview.php:104 libraries/db_structure.lib.php:47 +#: db_printview.php:103 libraries/db_structure.lib.php:47 #: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 -#: navigation.php:629 navigation.php:651 server_databases.php:121 -#: tbl_printview.php:392 tbl_structure.php:364 tbl_structure.php:776 +#: navigation.php:628 navigation.php:650 server_databases.php:119 +#: tbl_printview.php:391 tbl_structure.php:362 tbl_structure.php:774 msgid "Rows" msgstr "سطرها" -#: db_printview.php:108 libraries/db_structure.lib.php:58 tbl_indexes.php:189 +#: db_printview.php:107 libraries/db_structure.lib.php:58 tbl_indexes.php:188 msgid "Size" msgstr "اندازه" -#: db_printview.php:161 db_structure.php:456 libraries/export/sql.php:556 +#: db_printview.php:160 db_structure.php:442 libraries/export/sql.php:556 #: libraries/export/sql.php:896 msgid "in use" msgstr "in use" -#: db_printview.php:186 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:511 pdf_schema.php:1240 tbl_printview.php:432 -#: tbl_structure.php:808 +#: db_printview.php:185 libraries/db_info.inc.php:86 +#: libraries/export/sql.php:511 pdf_schema.php:1239 tbl_printview.php:431 +#: tbl_structure.php:806 #, fuzzy msgid "Creation" msgstr "ساختن" -#: db_printview.php:195 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:516 pdf_schema.php:1245 tbl_printview.php:442 -#: tbl_structure.php:816 +#: db_printview.php:194 libraries/db_info.inc.php:91 +#: libraries/export/sql.php:516 pdf_schema.php:1244 tbl_printview.php:441 +#: tbl_structure.php:814 msgid "Last update" msgstr "" -#: db_printview.php:204 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:521 pdf_schema.php:1250 tbl_printview.php:452 -#: tbl_structure.php:824 +#: db_printview.php:203 libraries/db_info.inc.php:96 +#: libraries/export/sql.php:521 pdf_schema.php:1249 tbl_printview.php:451 +#: tbl_structure.php:822 msgid "Last check" msgstr "" -#: db_printview.php:221 db_structure.php:479 +#: db_printview.php:220 db_structure.php:465 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" msgid_plural "%s tables" msgstr[0] "%s جدول(ها)" -#: db_qbe.php:28 import.php:453 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1980 libraries/sql_query_form.lib.php:138 -#: tbl_operations.php:212 tbl_relation.php:291 tbl_row_action.php:130 -#: view_operations.php:61 +#: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 +#: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "پرس و جوي SQL شما با موفقيت اجرا گرديد" -#: db_qbe.php:41 +#: db_qbe.php:38 msgid "You have to choose at least one column to display" msgstr "شما حذاقل بايد يك ستون را براي نمايش انتخاب نماييد" -#: db_qbe.php:199 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:865 +#: db_qbe.php:196 libraries/db_structure.lib.php:95 +#: libraries/display_tbl.lib.php:864 msgid "Sort" msgstr "ترتيب" -#: db_qbe.php:208 db_qbe.php:242 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:522 libraries/display_tbl.lib.php:827 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:259 -#: tbl_select.php:311 +#: db_qbe.php:205 db_qbe.php:239 libraries/db_structure.lib.php:102 +#: libraries/display_tbl.lib.php:521 libraries/display_tbl.lib.php:826 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:257 +#: tbl_select.php:310 msgid "Ascending" msgstr "صعودي" -#: db_qbe.php:209 db_qbe.php:250 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:527 libraries/display_tbl.lib.php:824 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:260 -#: tbl_select.php:312 +#: db_qbe.php:206 db_qbe.php:247 libraries/db_structure.lib.php:110 +#: libraries/display_tbl.lib.php:526 libraries/display_tbl.lib.php:823 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:258 +#: tbl_select.php:311 msgid "Descending" msgstr "نزولي" -#: db_qbe.php:263 db_tracking.php:77 libraries/display_tbl.lib.php:307 -#: tbl_change.php:275 tbl_tracking.php:596 +#: db_qbe.php:260 db_tracking.php:73 libraries/display_tbl.lib.php:306 +#: tbl_change.php:270 tbl_tracking.php:591 msgid "Show" msgstr "نمايش" -#: db_qbe.php:299 +#: db_qbe.php:296 msgid "Criteria" msgstr "معيارها" -#: db_qbe.php:352 db_qbe.php:434 db_qbe.php:526 db_qbe.php:557 +#: db_qbe.php:349 db_qbe.php:431 db_qbe.php:523 db_qbe.php:554 msgid "Ins" msgstr "Ins" -#: db_qbe.php:356 db_qbe.php:438 db_qbe.php:523 db_qbe.php:554 +#: db_qbe.php:353 db_qbe.php:435 db_qbe.php:520 db_qbe.php:551 msgid "And" msgstr "و" -#: db_qbe.php:365 db_qbe.php:446 db_qbe.php:528 db_qbe.php:559 +#: db_qbe.php:362 db_qbe.php:443 db_qbe.php:525 db_qbe.php:556 msgid "Del" msgstr "Del" -#: db_qbe.php:369 db_qbe.php:450 db_qbe.php:521 db_qbe.php:552 -#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:778 -#: server_privileges.php:297 tbl_change.php:1027 tbl_indexes.php:249 -#: tbl_select.php:285 +#: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 +#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:777 +#: server_privileges.php:296 tbl_change.php:925 tbl_indexes.php:248 +#: tbl_select.php:284 msgid "Or" msgstr "يا" -#: db_qbe.php:506 +#: db_qbe.php:503 msgid "Modify" msgstr "اصلاح" -#: db_qbe.php:583 +#: db_qbe.php:580 #, fuzzy #| msgid "Add/Delete Criteria Row" msgid "Add/Delete criteria rows" msgstr "اضافه/حذف معيارها" -#: db_qbe.php:595 +#: db_qbe.php:592 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Add/Delete columns" msgstr "اضافه يا حذف ستونها" -#: db_qbe.php:608 db_qbe.php:633 +#: db_qbe.php:605 db_qbe.php:630 msgid "Update Query" msgstr "به‌هنگام سازي پرس و جو" -#: db_qbe.php:616 +#: db_qbe.php:613 msgid "Use Tables" msgstr "بكارگيري جدولها" -#: db_qbe.php:639 +#: db_qbe.php:636 #, php-format msgid "SQL query on database %s:" msgstr "پرس و جوي SQL از پايگاه داده %s:" -#: db_qbe.php:933 libraries/common.lib.php:1222 +#: db_qbe.php:930 libraries/common.lib.php:1215 msgid "Submit Query" msgstr "Submit Query" @@ -517,17 +490,17 @@ msgid "%s match inside table %s" msgid_plural "%s matches inside table %s" msgstr[0] "" -#: db_search.php:249 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2831 -#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:49 -#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:466 +#: db_search.php:249 db_structure.php:75 db_structure.php:76 +#: db_structure.php:88 db_structure.php:90 db_structure.php:101 +#: db_structure.php:103 libraries/common.lib.php:2836 +#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 +#: tbl_structure.php:35 tbl_structure.php:47 tbl_structure.php:464 msgid "Browse" msgstr "مشاهده" -#: db_search.php:254 libraries/display_tbl.lib.php:1164 -#: libraries/display_tbl.lib.php:2055 libraries/sql_query_form.lib.php:453 -#: pdf_pages.php:285 pdf_pages.php:424 pdf_pages.php:460 pdf_pages.php:488 +#: db_search.php:254 libraries/display_tbl.lib.php:1163 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 msgid "Delete" @@ -565,230 +538,236 @@ msgstr "در جدول(هاي) :" msgid "Inside column:" msgstr "در جدول(هاي) :" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2830 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:75 +#: db_structure.php:79 db_structure.php:80 db_structure.php:92 +#: db_structure.php:93 db_structure.php:105 db_structure.php:106 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 +#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "درج" -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2827 libraries/common.lib.php:2834 -#: libraries/db_links.inc.php:62 libraries/export/htmlword.php:22 +#: db_structure.php:81 db_structure.php:94 db_structure.php:107 +#: libraries/common.lib.php:2832 libraries/common.lib.php:2839 +#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 -#: libraries/tbl_links.inc.php:55 pmd_general.php:133 -#: server_privileges.php:593 server_replication.php:314 tbl_tracking.php:268 +#: libraries/tbl_links.inc.php:54 pmd_general.php:133 +#: server_privileges.php:592 server_replication.php:313 tbl_tracking.php:263 msgid "Structure" msgstr "ساختار" -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:544 db_structure.php:545 db_tracking.php:90 -#: libraries/Index.class.php:482 libraries/common.lib.php:1659 -#: libraries/db_links.inc.php:99 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:126 -#: server_databases.php:351 tbl_structure.php:26 tbl_structure.php:150 -#: tbl_structure.php:151 tbl_structure.php:470 +#: db_structure.php:82 db_structure.php:83 db_structure.php:95 +#: db_structure.php:96 db_structure.php:108 db_structure.php:109 +#: db_structure.php:530 db_structure.php:531 db_tracking.php:86 +#: libraries/Index.class.php:482 libraries/common.lib.php:1663 +#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 +#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 +#: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" msgstr "حذف" -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:542 db_structure.php:543 libraries/common.lib.php:1658 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:104 +#: db_structure.php:84 db_structure.php:85 db_structure.php:97 +#: db_structure.php:98 db_structure.php:110 db_structure.php:111 +#: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 +#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 msgid "Empty" msgstr "خالي كردن" -#: db_structure.php:315 libraries/tbl_links.inc.php:99 +#: db_structure.php:301 libraries/tbl_links.inc.php:98 #, php-format msgid "Table %s has been emptied" msgstr "جدول %s خالي شد" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, fuzzy, php-format msgid "View %s has been dropped" msgstr "ستون %s حذف گرديد" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "Table %s has been dropped" msgstr "جدول %s حذف گرديد" -#: db_structure.php:332 +#: db_structure.php:318 msgid "Tracking is active." msgstr "" -#: db_structure.php:334 +#: db_structure.php:320 msgid "Tracking is not active." msgstr "" -#: db_structure.php:419 libraries/display_tbl.lib.php:1943 +#: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -#: db_structure.php:433 db_structure.php:447 libraries/header.inc.php:125 -#: libraries/tbl_info.inc.php:65 tbl_structure.php:184 test/theme.php:73 +#: db_structure.php:419 db_structure.php:433 libraries/header.inc.php:125 +#: libraries/tbl_info.inc.php:60 tbl_structure.php:183 test/theme.php:73 msgid "View" msgstr "نمایش" -#: db_structure.php:484 libraries/db_structure.lib.php:40 -#: libraries/server_links.inc.php:69 server_replication.php:32 -#: server_replication.php:163 server_status.php:368 +#: db_structure.php:470 libraries/db_structure.lib.php:40 +#: libraries/server_links.inc.php:69 server_replication.php:31 +#: server_replication.php:162 server_status.php:368 msgid "Replication" msgstr "" -#: db_structure.php:488 +#: db_structure.php:474 msgid "Sum" msgstr "مجموع" -#: db_structure.php:495 libraries/StorageEngine.class.php:349 +#: db_structure.php:481 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: db_structure.php:523 db_structure.php:540 db_structure.php:541 -#: libraries/display_tbl.lib.php:2080 libraries/display_tbl.lib.php:2085 -#: libraries/mult_submits.inc.php:15 server_databases.php:345 -#: server_databases.php:350 server_privileges.php:1588 tbl_structure.php:454 -#: tbl_structure.php:463 +#: db_structure.php:509 db_structure.php:526 db_structure.php:527 +#: libraries/display_tbl.lib.php:2039 libraries/display_tbl.lib.php:2044 +#: libraries/mult_submits.inc.php:15 server_databases.php:343 +#: server_databases.php:348 server_privileges.php:1592 tbl_structure.php:452 +#: tbl_structure.php:461 msgid "With selected:" msgstr "موارد انتخاب‌شده :" -#: db_structure.php:526 libraries/display_tbl.lib.php:2075 -#: server_databases.php:347 server_privileges.php:569 -#: server_privileges.php:1591 tbl_structure.php:457 +#: db_structure.php:512 libraries/display_tbl.lib.php:2034 +#: server_databases.php:345 server_privileges.php:568 +#: server_privileges.php:1595 tbl_structure.php:455 msgid "Check All" msgstr "انتخاب همه" -#: db_structure.php:530 libraries/display_tbl.lib.php:2076 -#: libraries/replication_gui.lib.php:35 server_databases.php:349 -#: server_privileges.php:572 server_privileges.php:1595 tbl_structure.php:461 +#: db_structure.php:516 libraries/display_tbl.lib.php:2035 +#: libraries/replication_gui.lib.php:35 server_databases.php:347 +#: server_privileges.php:571 server_privileges.php:1599 tbl_structure.php:459 msgid "Uncheck All" msgstr "عدم انتخاب همه" -#: db_structure.php:535 +#: db_structure.php:521 msgid "Check tables having overhead" msgstr "" -#: db_structure.php:546 db_structure.php:547 db_structure.php:598 -#: libraries/display_tbl.lib.php:2179 libraries/mult_submits.inc.php:27 -#: tbl_structure.php:491 tbl_structure.php:493 +#: db_structure.php:532 db_structure.php:533 db_structure.php:584 +#: libraries/display_tbl.lib.php:2138 libraries/mult_submits.inc.php:27 +#: tbl_structure.php:489 tbl_structure.php:491 msgid "Print view" msgstr "نماي چاپ" -#: db_structure.php:548 db_structure.php:549 libraries/mult_submits.inc.php:41 -#: tbl_operations.php:580 +#: db_structure.php:534 db_structure.php:535 libraries/mult_submits.inc.php:41 +#: tbl_operations.php:578 msgid "Check table" msgstr "بررسي جدول" -#: db_structure.php:550 db_structure.php:551 libraries/mult_submits.inc.php:46 -#: tbl_operations.php:620 tbl_structure.php:708 tbl_structure.php:710 +#: db_structure.php:536 db_structure.php:537 libraries/mult_submits.inc.php:46 +#: tbl_operations.php:618 tbl_structure.php:706 tbl_structure.php:708 msgid "Optimize table" msgstr "بهينه‌سازي جدول" -#: db_structure.php:552 db_structure.php:553 libraries/mult_submits.inc.php:51 -#: tbl_operations.php:610 +#: db_structure.php:538 db_structure.php:539 libraries/mult_submits.inc.php:51 +#: tbl_operations.php:608 msgid "Repair table" msgstr "مرمت جدول" -#: db_structure.php:554 db_structure.php:555 libraries/mult_submits.inc.php:56 -#: tbl_operations.php:600 +#: db_structure.php:540 db_structure.php:541 libraries/mult_submits.inc.php:56 +#: tbl_operations.php:598 msgid "Analyze table" msgstr "تحليل جدول" -#: db_structure.php:556 db_structure.php:557 libraries/db_links.inc.php:70 -#: libraries/display_export.lib.php:82 libraries/display_tbl.lib.php:2093 -#: libraries/display_tbl.lib.php:2224 libraries/mult_submits.inc.php:61 -#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:81 -#: pmd_pdf.php:83 pmd_pdf.php:108 server_privileges.php:1372 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 +#: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 +#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 +#: pmd_pdf.php:81 pmd_pdf.php:106 server_privileges.php:1376 #: setup/frames/menu.inc.php:22 tbl_row_action.php:58 msgid "Export" msgstr "صدور" -#: db_structure.php:605 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:591 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "فرهنگ داده‌ها" -#: db_tracking.php:65 +#: db_tracking.php:61 msgid "Tracked tables" msgstr "" -#: db_tracking.php:70 libraries/export/htmlword.php:85 +#: db_tracking.php:66 libraries/export/htmlword.php:85 #: libraries/export/latex.php:152 libraries/export/odt.php:112 #: libraries/export/sql.php:339 libraries/export/texytext.php:84 #: libraries/export/xml.php:254 libraries/header.inc.php:105 -#: libraries/header_printview.inc.php:57 server_databases.php:168 -#: server_privileges.php:1652 server_privileges.php:1713 -#: server_privileges.php:1971 server_processlist.php:55 -#: server_synchronize.php:1178 server_synchronize.php:1182 -#: tbl_tracking.php:590 test/theme.php:64 +#: libraries/header_printview.inc.php:57 server_databases.php:166 +#: server_privileges.php:1656 server_privileges.php:1717 +#: server_privileges.php:1975 server_processlist.php:55 +#: server_synchronize.php:1177 server_synchronize.php:1181 +#: tbl_tracking.php:585 test/theme.php:64 msgid "Database" msgstr "پايگاه داده" -#: db_tracking.php:72 +#: db_tracking.php:68 msgid "Last version" msgstr "نسخه قبلی" -#: db_tracking.php:73 tbl_tracking.php:593 +#: db_tracking.php:69 tbl_tracking.php:588 #, fuzzy msgid "Created" msgstr "ساختن" -#: db_tracking.php:74 tbl_tracking.php:594 +#: db_tracking.php:70 tbl_tracking.php:589 msgid "Updated" msgstr "" -#: db_tracking.php:76 libraries/Index.class.php:439 -#: libraries/db_structure.lib.php:44 server_databases.php:202 -#: server_privileges.php:1534 server_privileges.php:1717 -#: server_privileges.php:2065 tbl_structure.php:186 +#: db_tracking.php:71 libraries/common.lib.php:1361 +#: libraries/server_links.inc.php:48 server_processlist.php:58 +#: tbl_tracking.php:590 test/theme.php:100 +msgid "Status" +msgstr "" + +#: db_tracking.php:72 libraries/Index.class.php:439 +#: libraries/db_structure.lib.php:44 server_databases.php:200 +#: server_privileges.php:1538 server_privileges.php:1721 +#: server_privileges.php:2069 tbl_structure.php:185 msgid "Action" msgstr "عمل" -#: db_tracking.php:87 db_tracking.php:119 +#: db_tracking.php:83 db_tracking.php:115 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:105 tbl_tracking.php:547 tbl_tracking.php:605 -#: tbl_tracking.php:612 +#: db_tracking.php:101 tbl_tracking.php:542 tbl_tracking.php:600 +#: tbl_tracking.php:607 msgid "active" msgstr "" -#: db_tracking.php:107 tbl_tracking.php:549 tbl_tracking.php:607 -#: tbl_tracking.php:609 +#: db_tracking.php:103 tbl_tracking.php:544 tbl_tracking.php:602 +#: tbl_tracking.php:604 msgid "not active" msgstr "" -#: db_tracking.php:120 +#: db_tracking.php:116 #, fuzzy msgid "Versions" msgstr "فارسي" -#: db_tracking.php:121 tbl_tracking.php:378 tbl_tracking.php:623 +#: db_tracking.php:117 tbl_tracking.php:373 tbl_tracking.php:618 msgid "Tracking report" msgstr "" -#: db_tracking.php:122 tbl_tracking.php:250 tbl_tracking.php:623 +#: db_tracking.php:118 tbl_tracking.php:245 tbl_tracking.php:618 #, fuzzy msgid "Structure snapshot" msgstr "فقط ساختار" -#: db_tracking.php:151 +#: db_tracking.php:147 msgid "Untracked tables" msgstr "" -#: db_tracking.php:171 db_tracking.php:173 tbl_structure.php:527 -#: tbl_structure.php:529 +#: db_tracking.php:167 db_tracking.php:169 tbl_structure.php:525 +#: tbl_structure.php:527 #, fuzzy msgid "Track table" msgstr "بررسي جدول" -#: db_tracking.php:199 +#: db_tracking.php:195 #, fuzzy msgid "Database Log" msgstr "پايگاه داده" @@ -797,103 +776,103 @@ msgstr "پايگاه داده" msgid "Selected export type has to be saved in file!" msgstr "" -#: export.php:153 export.php:178 export.php:620 +#: export.php:152 export.php:177 export.php:615 #, php-format msgid "Insufficient space to save the file %s." msgstr "" -#: export.php:287 +#: export.php:286 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "" -#: export.php:291 export.php:295 +#: export.php:290 export.php:294 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "" -#: export.php:622 +#: export.php:617 #, php-format msgid "Dump has been saved to file %s." msgstr "" -#: import.php:59 +#: 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." msgstr "" -#: import.php:278 import.php:331 libraries/File.class.php:840 -#: libraries/File.class.php:950 +#: import.php:277 import.php:330 libraries/File.class.php:566 +#: libraries/File.class.php:676 msgid "File could not be read" msgstr "" -#: import.php:286 import.php:295 import.php:314 import.php:323 -#: libraries/File.class.php:1020 libraries/File.class.php:1028 -#: libraries/File.class.php:1044 libraries/File.class.php:1052 +#: import.php:285 import.php:294 import.php:313 import.php:322 +#: libraries/File.class.php:746 libraries/File.class.php:754 +#: libraries/File.class.php:770 libraries/File.class.php:778 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." msgstr "" -#: import.php:336 +#: import.php:335 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " "[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." msgstr "" -#: import.php:371 libraries/display_import.lib.php:23 +#: import.php:370 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:396 +#: import.php:395 #, fuzzy msgid "The bookmark has been deleted." msgstr "سطر حذف گرديد ." -#: import.php:400 +#: import.php:399 msgid "Showing bookmark" msgstr "" -#: import.php:402 sql.php:625 +#: import.php:401 sql.php:618 #, php-format msgid "Bookmark %s created" msgstr "" -#: import.php:408 import.php:414 +#: import.php:407 import.php:413 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" -#: import.php:423 +#: import.php:422 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: import.php:425 +#: import.php:424 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." msgstr "" -#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:240 +#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:239 #: user_password.php:110 msgid "Back" msgstr "بازگشت" -#: index.php:188 +#: index.php:183 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" -#: js/messages.php:25 server_synchronize.php:344 server_synchronize.php:356 -#: server_synchronize.php:372 server_synchronize.php:379 -#: server_synchronize.php:738 server_synchronize.php:766 -#: server_synchronize.php:794 server_synchronize.php:806 +#: js/messages.php:25 server_synchronize.php:343 server_synchronize.php:355 +#: server_synchronize.php:371 server_synchronize.php:378 +#: server_synchronize.php:737 server_synchronize.php:765 +#: server_synchronize.php:793 server_synchronize.php:805 msgid "Click to select" msgstr "" @@ -901,15 +880,15 @@ msgstr "" msgid "Click to unselect" msgstr "" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:88 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:87 msgid "\"DROP DATABASE\" statements are disabled." msgstr "دستور \"DROP DATABASE\" غيرفعال مي‌باشد." -#: js/messages.php:30 libraries/mult_submits.inc.php:257 sql.php:187 +#: js/messages.php:30 libraries/mult_submits.inc.php:256 sql.php:186 msgid "Do you really want to " msgstr "آيا مطمئن هستيد " -#: js/messages.php:31 libraries/mult_submits.inc.php:257 sql.php:171 +#: js/messages.php:31 libraries/mult_submits.inc.php:256 sql.php:170 msgid "You are about to DESTROY a complete database!" msgstr "" @@ -938,11 +917,11 @@ msgstr "نام ميزبان خالي است!" msgid "The user name is empty!" msgstr "نام كاربر خالي است!" -#: js/messages.php:44 server_privileges.php:1228 user_password.php:65 +#: js/messages.php:44 server_privileges.php:1229 user_password.php:65 msgid "The password is empty!" msgstr "اسم رمز خالي است!" -#: js/messages.php:45 server_privileges.php:1226 user_password.php:68 +#: js/messages.php:45 server_privileges.php:1227 user_password.php:68 msgid "The passwords aren't the same!" msgstr "اسم رمزها مانند هم نمي‌باشد!" @@ -950,27 +929,27 @@ msgstr "اسم رمزها مانند هم نمي‌باشد!" msgid "Cancel" msgstr "" -#: js/messages.php:52 pmd_save_pos.php:53 +#: js/messages.php:52 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "اصلاحات ذخيره گرديد" -#: js/messages.php:53 pmd_relation_upd.php:48 +#: js/messages.php:53 pmd_relation_upd.php:47 msgid "Relation deleted" msgstr "" -#: js/messages.php:54 pmd_relation_new.php:63 +#: js/messages.php:54 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:55 pmd_relation_new.php:85 +#: js/messages.php:55 pmd_relation_new.php:84 msgid "Internal relation added" msgstr "" -#: js/messages.php:56 pmd_relation_new.php:62 pmd_relation_new.php:87 +#: js/messages.php:56 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:57 pmd_relation_new.php:30 +#: js/messages.php:57 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "" @@ -978,13 +957,13 @@ msgstr "" msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:59 libraries/relation.lib.php:94 -#: libraries/relation.lib.php:106 +#: js/messages.php:59 libraries/relation.lib.php:89 +#: libraries/relation.lib.php:101 msgid "General relation features" msgstr "" -#: js/messages.php:59 libraries/relation.lib.php:88 -#: libraries/relation.lib.php:95 +#: js/messages.php:59 libraries/relation.lib.php:83 +#: libraries/relation.lib.php:90 msgid "Disabled" msgstr "غيرفعال" @@ -1000,7 +979,7 @@ msgstr "" msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:547 +#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" @@ -1032,10 +1011,10 @@ msgid "Prev" msgstr "قبل" #. l10n: Display text for next month link in calendar -#: js/messages.php:81 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:337 -#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:422 -#: tbl_structure.php:800 +#: js/messages.php:81 libraries/common.lib.php:2358 +#: libraries/common.lib.php:2361 libraries/display_tbl.lib.php:336 +#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 +#: tbl_structure.php:798 msgid "Next" msgstr "بعد" @@ -1109,27 +1088,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1562 +#: js/messages.php:101 libraries/common.lib.php:1566 msgid "Jan" msgstr "ژانويه" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1564 +#: js/messages.php:103 libraries/common.lib.php:1568 msgid "Feb" msgstr "فوريه" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1566 +#: js/messages.php:105 libraries/common.lib.php:1570 msgid "Mar" msgstr "مارس" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1568 +#: js/messages.php:107 libraries/common.lib.php:1572 msgid "Apr" msgstr "آوريل" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1570 +#: js/messages.php:109 libraries/common.lib.php:1574 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1137,37 +1116,37 @@ msgid "May" msgstr "مي" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1572 +#: js/messages.php:111 libraries/common.lib.php:1576 msgid "Jun" msgstr "ژوئن" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1574 +#: js/messages.php:113 libraries/common.lib.php:1578 msgid "Jul" msgstr "جولاي" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1576 +#: js/messages.php:115 libraries/common.lib.php:1580 msgid "Aug" msgstr "آگوست" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1578 +#: js/messages.php:117 libraries/common.lib.php:1582 msgid "Sep" msgstr "سپتامبر" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1580 +#: js/messages.php:119 libraries/common.lib.php:1584 msgid "Oct" msgstr "اكتبر" #. l10n: Short month name -#: js/messages.php:121 libraries/common.lib.php:1582 +#: js/messages.php:121 libraries/common.lib.php:1586 msgid "Nov" msgstr "نوامبر" #. l10n: Short month name -#: js/messages.php:123 libraries/common.lib.php:1584 +#: js/messages.php:123 libraries/common.lib.php:1588 msgid "Dec" msgstr "دسامبر" @@ -1208,37 +1187,37 @@ msgid "Saturday" msgstr "شنبه" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1587 +#: js/messages.php:136 libraries/common.lib.php:1591 msgid "Sun" msgstr "يكشنبه" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1589 +#: js/messages.php:138 libraries/common.lib.php:1593 msgid "Mon" msgstr "دوشنبه" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1591 +#: js/messages.php:140 libraries/common.lib.php:1595 msgid "Tue" msgstr "سه‌شنبه" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1593 +#: js/messages.php:142 libraries/common.lib.php:1597 msgid "Wed" msgstr "چهارشنبه" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1595 +#: js/messages.php:144 libraries/common.lib.php:1599 msgid "Thu" msgstr "پنج‌شنبه" #. l10n: Short week day name -#: js/messages.php:146 libraries/common.lib.php:1597 +#: js/messages.php:146 libraries/common.lib.php:1601 msgid "Fri" msgstr "جمعه" #. l10n: Short week day name -#: js/messages.php:148 libraries/common.lib.php:1599 +#: js/messages.php:148 libraries/common.lib.php:1603 msgid "Sat" msgstr "شنبه" @@ -1312,75 +1291,74 @@ msgstr " ثانیه" msgid "Font size" msgstr "" -#: libraries/File.class.php:336 libraries/File.class.php:424 -#: libraries/File.class.php:561 libraries/File.class.php:700 -msgid "Unknown error in file upload." -msgstr "" - -#: libraries/File.class.php:406 +#: libraries/File.class.php:315 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:409 +#: libraries/File.class.php:318 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:412 +#: libraries/File.class.php:321 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:415 +#: libraries/File.class.php:324 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:418 +#: libraries/File.class.php:327 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:421 +#: libraries/File.class.php:330 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:898 +#: libraries/File.class.php:333 +msgid "Unknown error in file upload." +msgstr "" + +#: libraries/File.class.php:624 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "" -#: libraries/Index.class.php:427 tbl_relation.php:528 +#: libraries/Index.class.php:427 tbl_relation.php:526 msgid "No index defined!" msgstr "هيچ فهرستي تعريف‌نشده‌است!" -#: libraries/Index.class.php:432 server_databases.php:131 tbl_tracking.php:315 +#: libraries/Index.class.php:432 server_databases.php:129 tbl_tracking.php:310 msgid "Indexes" msgstr "فهرست‌ها" #: libraries/Index.class.php:443 libraries/mult_submits.inc.php:102 -#: libraries/tbl_properties.inc.php:518 tbl_structure.php:32 -#: tbl_structure.php:154 tbl_structure.php:158 tbl_structure.php:473 -#: tbl_tracking.php:321 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:31 +#: tbl_structure.php:153 tbl_structure.php:157 tbl_structure.php:471 +#: tbl_tracking.php:316 msgid "Unique" msgstr "يكتا" -#: libraries/Index.class.php:444 tbl_tracking.php:322 +#: libraries/Index.class.php:444 tbl_tracking.php:317 msgid "Packed" msgstr "" -#: libraries/Index.class.php:446 tbl_tracking.php:324 +#: libraries/Index.class.php:446 tbl_tracking.php:319 msgid "Cardinality" msgstr "" -#: libraries/Index.class.php:449 tbl_tracking.php:278 tbl_tracking.php:327 +#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322 #, fuzzy msgid "Comment" msgstr "توضيحات" #: libraries/Index.class.php:465 libraries/common.lib.php:609 -#: libraries/common.lib.php:1198 libraries/display_tbl.lib.php:1116 +#: libraries/common.lib.php:1191 libraries/display_tbl.lib.php:1115 #: libraries/import.lib.php:1119 libraries/import.lib.php:1143 -#: pdf_pages.php:284 setup/frames/index.inc.php:124 +#: pdf_pages.php:283 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:349 tbl_row_action.php:68 msgid "Edit" msgstr "ويرايش" @@ -1402,15 +1380,15 @@ msgid "" msgstr "" #: libraries/List_Database.class.php:430 libraries/server_links.inc.php:40 -#: server_databases.php:87 server_privileges.php:1652 +#: server_databases.php:85 server_privileges.php:1656 #: setup/lib/messages.inc.php:107 test/theme.php:92 msgid "Databases" msgstr "پايگاههاي داده" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:259 libraries/import.lib.php:134 pdf_schema.php:31 -#: pdf_schema.php:231 tbl_change.php:1023 tbl_operations.php:212 -#: tbl_relation.php:289 view_operations.php:61 +#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 +#: tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "خطا" @@ -1435,40 +1413,40 @@ msgid_plural "%1$d rows inserted." msgstr[0] "" msgstr[1] "" -#: libraries/StorageEngine.class.php:196 +#: libraries/StorageEngine.class.php:194 msgid "" "There is no detailed status information available for this storage engine." msgstr "" -#: libraries/StorageEngine.class.php:352 +#: libraries/StorageEngine.class.php:354 #, php-format msgid "%s is available on this MySQL server." msgstr "" -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:357 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "" -#: libraries/StorageEngine.class.php:359 +#: libraries/StorageEngine.class.php:361 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "" -#: libraries/Table.class.php:1018 +#: libraries/Table.class.php:1017 msgid "Invalid database" msgstr "" -#: libraries/Table.class.php:1032 tbl_get_field.php:25 +#: libraries/Table.class.php:1031 tbl_get_field.php:25 msgid "Invalid table name" msgstr "" -#: libraries/Table.class.php:1047 +#: libraries/Table.class.php:1046 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "" -#: libraries/Table.class.php:1131 +#: libraries/Table.class.php:1129 #, php-format msgid "Table %s has been renamed to %s" msgstr "جدول %s به %s تغيير نام داده‌شد" @@ -1486,22 +1464,22 @@ msgstr "" msgid "take it" msgstr "" -#: libraries/Theme_Manager.class.php:114 +#: libraries/Theme_Manager.class.php:109 #, php-format msgid "Default theme %s not found!" msgstr "" -#: libraries/Theme_Manager.class.php:152 +#: libraries/Theme_Manager.class.php:147 #, php-format msgid "Theme %s not found!" msgstr "" -#: libraries/Theme_Manager.class.php:220 +#: libraries/Theme_Manager.class.php:215 #, php-format msgid "Theme path not found for theme %s!" msgstr "" -#: libraries/Theme_Manager.class.php:296 test/theme.php:160 themes.php:20 +#: libraries/Theme_Manager.class.php:291 test/theme.php:160 themes.php:20 #: themes.php:40 msgid "Theme / Style" msgstr "" @@ -1609,19 +1587,19 @@ msgstr "" msgid "Authenticating..." msgstr "" -#: libraries/blobstreaming.lib.php:689 +#: libraries/blobstreaming.lib.php:340 msgid "View image" msgstr "" -#: libraries/blobstreaming.lib.php:693 +#: libraries/blobstreaming.lib.php:344 msgid "Play audio" msgstr "" -#: libraries/blobstreaming.lib.php:698 +#: libraries/blobstreaming.lib.php:349 msgid "View video" msgstr "" -#: libraries/blobstreaming.lib.php:702 +#: libraries/blobstreaming.lib.php:353 msgid "Download file" msgstr "" @@ -1672,7 +1650,7 @@ msgstr "سرور" msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:909 +#: libraries/common.inc.php:908 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" @@ -1697,7 +1675,8 @@ msgstr "" #: libraries/common.lib.php:425 libraries/common.lib.php:427 #: libraries/common.lib.php:429 libraries/common.lib.php:445 #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 -#: libraries/display_export.lib.php:163 libraries/relation.lib.php:84 +#: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 +#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 #: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" @@ -1712,150 +1691,150 @@ msgstr "پرس و جوي SQL" msgid "MySQL said: " msgstr "پيغام MySQL :" -#: libraries/common.lib.php:1136 +#: libraries/common.lib.php:1129 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1174 setup/lib/messages.inc.php:350 +#: libraries/common.lib.php:1167 setup/lib/messages.inc.php:350 msgid "Explain SQL" msgstr "شرح دادن SQL" -#: libraries/common.lib.php:1177 +#: libraries/common.lib.php:1170 #, fuzzy msgid "Skip Explain SQL" msgstr "شرح دادن SQL" -#: libraries/common.lib.php:1211 +#: libraries/common.lib.php:1204 msgid "Without PHP Code" msgstr "بدون كد PHP" -#: libraries/common.lib.php:1214 setup/lib/messages.inc.php:352 +#: libraries/common.lib.php:1207 setup/lib/messages.inc.php:352 msgid "Create PHP Code" msgstr "ساخت كد PHP" -#: libraries/common.lib.php:1232 server_status.php:451 +#: libraries/common.lib.php:1225 server_status.php:451 #: setup/lib/messages.inc.php:351 msgid "Refresh" msgstr "" -#: libraries/common.lib.php:1241 +#: libraries/common.lib.php:1234 #, fuzzy msgid "Skip Validate SQL" msgstr "معتبرسازي SQL" -#: libraries/common.lib.php:1244 setup/lib/messages.inc.php:353 +#: libraries/common.lib.php:1237 setup/lib/messages.inc.php:353 msgid "Validate SQL" msgstr "معتبرسازي SQL" -#: libraries/common.lib.php:1283 +#: libraries/common.lib.php:1287 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1285 +#: libraries/common.lib.php:1289 #, fuzzy #| msgid "Engines" msgid "Inline" msgstr "موتور" -#: libraries/common.lib.php:1339 libraries/common.lib.php:1354 +#: libraries/common.lib.php:1343 libraries/common.lib.php:1358 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1358 libraries/tbl_triggers.lib.php:27 +#: libraries/common.lib.php:1362 libraries/tbl_triggers.lib.php:27 #: server_processlist.php:57 msgid "Time" msgstr "" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "B" msgstr "بايت" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "KiB" msgstr "كيلوبايت" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "MiB" msgstr "مگا بايت" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "GiB" msgstr "گيگا بايت" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "TiB" msgstr "ترابايت" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "PiB" msgstr "پتا بايت" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "EiB" msgstr "اگزا بايت" #. l10n: Thousands separator -#: libraries/common.lib.php:1424 +#: libraries/common.lib.php:1428 msgid "," msgstr "," #. l10n: Decimal separator -#: libraries/common.lib.php:1426 +#: libraries/common.lib.php:1430 msgid "." msgstr "." #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1603 +#: libraries/common.lib.php:1607 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y ساعت %I:%M %p" -#: libraries/common.lib.php:1909 +#: libraries/common.lib.php:1913 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s days, %s hours, %s minutes and %s seconds" -#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 -#: libraries/display_tbl.lib.php:289 server_status.php:718 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 +#: libraries/display_tbl.lib.php:288 server_status.php:718 msgid "Begin" msgstr "شروع" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 -#: libraries/display_tbl.lib.php:290 server_binlog.php:154 +#: libraries/common.lib.php:2328 libraries/common.lib.php:2331 +#: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "قبل" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 -#: libraries/display_tbl.lib.php:352 +#: libraries/common.lib.php:2359 libraries/common.lib.php:2362 +#: libraries/display_tbl.lib.php:351 msgid "End" msgstr "انتها" -#: libraries/common.lib.php:2429 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "" -#: libraries/common.lib.php:2448 +#: libraries/common.lib.php:2453 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2828 libraries/common.lib.php:2835 -#: libraries/db_links.inc.php:67 libraries/export/sql.php:24 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 +#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 -#: libraries/tbl_links.inc.php:59 querywindow.php:89 test/theme.php:96 +#: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2837 libraries/db_links.inc.php:103 -#: libraries/tbl_links.inc.php:94 libraries/tbl_links.inc.php:116 -#: view_operations.php:88 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: view_operations.php:87 msgid "Operations" msgstr "عمليات" -#: libraries/core.lib.php:282 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1871,39 +1850,39 @@ msgstr "" msgid "Name" msgstr "اسم" -#: libraries/db_links.inc.php:44 +#: libraries/db_links.inc.php:43 #, php-format msgid "Database %s has been dropped." msgstr "پايگاه داده %s حذف گرديد." -#: libraries/db_links.inc.php:56 libraries/db_links.inc.php:57 -#: libraries/db_links.inc.php:58 +#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 +#: libraries/db_links.inc.php:57 msgid "Database seems to be empty!" msgstr "" -#: libraries/db_links.inc.php:80 libraries/relation.lib.php:142 -#: libraries/tbl_links.inc.php:68 +#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:85 +#: libraries/db_links.inc.php:84 msgid "Query" msgstr "پرس و جو" -#: libraries/db_links.inc.php:90 libraries/relation.lib.php:138 +#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:97 libraries/server_links.inc.php:87 -#: libraries/tbl_links.inc.php:90 pmd_pdf.php:83 pmd_pdf.php:109 +#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 #, fuzzy msgid "Import" msgstr "صدور" -#: libraries/db_links.inc.php:110 libraries/server_links.inc.php:65 -#: server_privileges.php:111 server_privileges.php:1714 -#: server_privileges.php:2063 test/theme.php:116 +#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: server_privileges.php:110 server_privileges.php:1718 +#: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" msgstr "امتيازات" @@ -1915,14 +1894,14 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1847 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1806 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "" -#: libraries/db_structure.lib.php:60 server_databases.php:141 -#: tbl_printview.php:334 tbl_structure.php:681 +#: libraries/db_structure.lib.php:60 server_databases.php:139 +#: tbl_printview.php:333 tbl_structure.php:679 msgid "Overhead" msgstr "" @@ -1939,7 +1918,7 @@ msgstr "" msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "" -#: libraries/dbi/mysql.dbi.lib.php:358 tbl_structure.php:607 +#: libraries/dbi/mysql.dbi.lib.php:358 tbl_structure.php:605 msgid "Details..." msgstr "" @@ -1949,22 +1928,22 @@ msgid "Change password" msgstr "تغيير اسم رمز" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:807 +#: libraries/replication_gui.lib.php:347 server_privileges.php:806 msgid "No Password" msgstr "بدون اسم رمز" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1530 server_synchronize.php:1174 +#: libraries/replication_gui.lib.php:351 server_privileges.php:795 +#: server_privileges.php:799 server_privileges.php:810 +#: server_privileges.php:1534 server_synchronize.php:1173 msgid "Password" msgstr "اسم رمز" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:815 server_privileges.php:818 +#: server_privileges.php:814 server_privileges.php:817 msgid "Re-type" msgstr "تكرار" @@ -1985,8 +1964,8 @@ msgstr "ساخت پايگاه داده جديد" msgid "Create" msgstr "ساختن" -#: libraries/display_create_database.lib.php:39 server_privileges.php:113 -#: server_privileges.php:1419 server_replication.php:34 +#: libraries/display_create_database.lib.php:39 server_privileges.php:112 +#: server_privileges.php:1423 server_replication.php:33 #, fuzzy msgid "No Privileges" msgstr "امتيازات" @@ -2008,51 +1987,51 @@ msgstr "ساخت جدول جديد در پايگاه داده %s" msgid "Number of columns" msgstr "تعداد سطرها در هر صفحه" -#: libraries/display_export.lib.php:41 +#: libraries/display_export.lib.php:35 msgid "Could not load export plugins, please check your installation!" msgstr "" -#: libraries/display_export.lib.php:106 +#: libraries/display_export.lib.php:100 #, fuzzy, php-format #| msgid "Dump %s row(s) starting at record # %s" msgid "Dump %s row(s) starting at row # %s" msgstr "حذف %s سطر(ها) ابتدا از سطر شماره %s." -#: libraries/display_export.lib.php:114 +#: libraries/display_export.lib.php:108 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:124 setup/lib/messages.inc.php:79 +#: libraries/display_export.lib.php:118 setup/lib/messages.inc.php:79 msgid "Save as file" msgstr "ذخيره به صورت پرونده" -#: libraries/display_export.lib.php:133 +#: libraries/display_export.lib.php:127 #, php-format msgid "Save on server in %s directory" msgstr "" -#: libraries/display_export.lib.php:141 setup/lib/messages.inc.php:87 +#: libraries/display_export.lib.php:135 setup/lib/messages.inc.php:87 msgid "Overwrite existing file(s)" msgstr "" -#: libraries/display_export.lib.php:147 +#: libraries/display_export.lib.php:141 msgid "File name template" msgstr "" -#: libraries/display_export.lib.php:151 +#: libraries/display_export.lib.php:145 #, fuzzy msgid "server name" msgstr "نام كاربر" -#: libraries/display_export.lib.php:154 +#: libraries/display_export.lib.php:148 msgid "database name" msgstr "" -#: libraries/display_export.lib.php:157 +#: libraries/display_export.lib.php:151 msgid "table name" msgstr "" -#: libraries/display_export.lib.php:161 +#: libraries/display_export.lib.php:155 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2060,39 +2039,39 @@ msgid "" "%3$s. Other text will be kept as is." msgstr "" -#: libraries/display_export.lib.php:202 +#: libraries/display_export.lib.php:196 msgid "remember template" msgstr "" -#: libraries/display_export.lib.php:210 libraries/display_import.lib.php:177 +#: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 #: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 msgid "Character set of the file:" msgstr "مجموعه كاراكترهاي پرونده:" -#: libraries/display_export.lib.php:235 setup/lib/messages.inc.php:81 +#: libraries/display_export.lib.php:229 setup/lib/messages.inc.php:81 msgid "Compression" msgstr "فشرده‌سازي" -#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:196 -#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:529 -#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:574 -#: server_privileges.php:1867 server_processlist.php:74 +#: libraries/display_export.lib.php:234 libraries/display_import.lib.php:196 +#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:528 +#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:573 +#: server_privileges.php:1871 server_processlist.php:74 msgid "None" msgstr "خير" -#: libraries/display_export.lib.php:247 +#: libraries/display_export.lib.php:241 msgid "\"zipped\"" msgstr "\"zipped\"" -#: libraries/display_export.lib.php:253 +#: libraries/display_export.lib.php:247 msgid "\"gzipped\"" msgstr "\"gzipped\"" -#: libraries/display_export.lib.php:259 +#: libraries/display_export.lib.php:253 msgid "\"bzipped\"" msgstr "\"bzipped\"" -#: libraries/display_export.lib.php:274 libraries/export/sql.php:42 +#: libraries/display_export.lib.php:268 libraries/export/sql.php:42 #: libraries/import/sql.php:31 msgid "SQL compatibility mode" msgstr "" @@ -2127,12 +2106,12 @@ msgid "File uploads are not allowed on this server." msgstr "" #: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 -#: tbl_change.php:1024 +#: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "پوشه‌اي را كه براي انتقال فايل انتخاب كرده‌ايد قابل دسترسي نيست." #: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 -#: tbl_change.php:1027 +#: tbl_change.php:925 msgid "web server upload directory" msgstr "" @@ -2212,43 +2191,43 @@ msgstr "" msgid "Language" msgstr "" -#: libraries/display_tbl.lib.php:303 +#: libraries/display_tbl.lib.php:302 #, php-format msgid "%d is not valid row number." msgstr "" -#: libraries/display_tbl.lib.php:309 +#: libraries/display_tbl.lib.php:308 #, fuzzy #| msgid "row(s) starting from record #" msgid "row(s) starting from row #" msgstr "سطر(ها) ابتدا از سطر شماره " -#: libraries/display_tbl.lib.php:315 +#: libraries/display_tbl.lib.php:314 msgid "horizontal" msgstr "افقي" -#: libraries/display_tbl.lib.php:316 +#: libraries/display_tbl.lib.php:315 msgid "horizontal (rotated headers)" msgstr "" -#: libraries/display_tbl.lib.php:317 +#: libraries/display_tbl.lib.php:316 msgid "vertical" msgstr "عمودي" -#: libraries/display_tbl.lib.php:323 +#: libraries/display_tbl.lib.php:322 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "" -#: libraries/display_tbl.lib.php:345 +#: libraries/display_tbl.lib.php:344 msgid "This operation could take a long time. Proceed anyway?" msgstr "" -#: libraries/display_tbl.lib.php:511 +#: libraries/display_tbl.lib.php:510 msgid "Sort by key" msgstr "" -#: libraries/display_tbl.lib.php:554 libraries/export/codegen.php:38 +#: libraries/display_tbl.lib.php:553 libraries/export/codegen.php:38 #: libraries/export/csv.php:29 libraries/export/excel.php:34 #: libraries/export/htmlword.php:28 libraries/export/latex.php:32 #: libraries/export/mediawiki.php:21 libraries/export/ods.php:26 @@ -2258,98 +2237,98 @@ msgstr "" #: libraries/export/xlsx.php:26 libraries/export/xml.php:23 #: libraries/export/yaml.php:27 libraries/import.lib.php:1114 #: libraries/import.lib.php:1136 libraries/import/csv.php:31 -#: libraries/import/docsql.php:33 libraries/import/ldi.php:46 +#: libraries/import/docsql.php:32 libraries/import/ldi.php:46 #: libraries/import/ods.php:30 libraries/import/sql.php:19 #: libraries/import/xls.php:25 libraries/import/xlsx.php:25 -#: libraries/import/xml.php:25 tbl_select.php:264 tbl_structure.php:752 +#: libraries/import/xml.php:25 tbl_select.php:263 tbl_structure.php:750 #, fuzzy msgid "Options" msgstr "عمليات" -#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:569 +#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:568 msgid "Partial Texts" msgstr "" -#: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:573 +#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:572 msgid "Full Texts" msgstr "كاملا متن" -#: libraries/display_tbl.lib.php:586 +#: libraries/display_tbl.lib.php:585 msgid "Relational key" msgstr "" -#: libraries/display_tbl.lib.php:587 +#: libraries/display_tbl.lib.php:586 msgid "Relational display column" msgstr "" -#: libraries/display_tbl.lib.php:594 +#: libraries/display_tbl.lib.php:593 msgid "Show binary contents" msgstr "" -#: libraries/display_tbl.lib.php:596 +#: libraries/display_tbl.lib.php:595 msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:598 +#: libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "" -#: libraries/display_tbl.lib.php:606 pmd_general.php:140 tbl_change.php:312 -#: tbl_change.php:318 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:307 +#: tbl_change.php:313 msgid "Hide" msgstr "" -#: libraries/display_tbl.lib.php:606 libraries/relation.lib.php:122 -#: libraries/tbl_properties.inc.php:143 transformation_overview.php:46 +#: libraries/display_tbl.lib.php:605 libraries/relation.lib.php:117 +#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46 msgid "Browser transformation" msgstr "" -#: libraries/display_tbl.lib.php:1125 libraries/display_tbl.lib.php:1129 -#: libraries/display_tbl.lib.php:1131 +#: libraries/display_tbl.lib.php:1124 libraries/display_tbl.lib.php:1128 +#: libraries/display_tbl.lib.php:1130 msgid "Execute bookmarked query" msgstr "" -#: libraries/display_tbl.lib.php:1144 libraries/display_tbl.lib.php:1156 +#: libraries/display_tbl.lib.php:1143 libraries/display_tbl.lib.php:1155 msgid "The row has been deleted" msgstr "سطر حذف گرديد ." -#: libraries/display_tbl.lib.php:1183 libraries/display_tbl.lib.php:2055 +#: libraries/display_tbl.lib.php:1182 libraries/display_tbl.lib.php:2014 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "Kill" -#: libraries/display_tbl.lib.php:1933 +#: libraries/display_tbl.lib.php:1892 msgid "in query" msgstr "in query" -#: libraries/display_tbl.lib.php:1951 +#: libraries/display_tbl.lib.php:1910 msgid "Showing rows" msgstr "Showing rows" -#: libraries/display_tbl.lib.php:1961 +#: libraries/display_tbl.lib.php:1920 msgid "total" msgstr "جمع كل" -#: libraries/display_tbl.lib.php:1969 sql.php:523 +#: libraries/display_tbl.lib.php:1928 sql.php:522 #, php-format msgid "Query took %01.4f sec" msgstr "" -#: libraries/display_tbl.lib.php:2088 libraries/mult_submits.inc.php:112 -#: querywindow.php:115 querywindow.php:119 querywindow.php:122 -#: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:469 +#: libraries/display_tbl.lib.php:2047 libraries/mult_submits.inc.php:112 +#: querywindow.php:114 querywindow.php:118 querywindow.php:121 +#: tbl_structure.php:23 tbl_structure.php:148 tbl_structure.php:467 msgid "Change" msgstr "تغيير" -#: libraries/display_tbl.lib.php:2158 +#: libraries/display_tbl.lib.php:2117 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2186 +#: libraries/display_tbl.lib.php:2145 msgid "Print view (with full texts)" msgstr "" -#: libraries/display_tbl.lib.php:2359 +#: libraries/display_tbl.lib.php:2318 msgid "Link not found" msgstr "پيوند پيدا نشد" @@ -2403,9 +2382,9 @@ msgstr "" msgid "Buffer Pool Usage" msgstr "" -#: libraries/engines/innodb.lib.php:168 server_databases.php:136 -#: server_databases.php:304 server_status.php:524 server_status.php:585 -#: server_status.php:606 tbl_printview.php:349 tbl_structure.php:695 +#: libraries/engines/innodb.lib.php:168 server_databases.php:134 +#: server_databases.php:302 server_status.php:524 server_status.php:585 +#: server_status.php:606 tbl_printview.php:348 tbl_structure.php:693 msgid "Total" msgstr "جمع كل" @@ -2527,6 +2506,78 @@ msgid "" "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." msgstr "" +#: libraries/engines/pbms.lib.php:31 +msgid "Garbage Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:32 +msgid "The percentage of garbage in a repository file before it is compacted." +msgstr "" + +#: libraries/engines/pbms.lib.php:36 libraries/replication_gui.lib.php:69 +#: server_synchronize.php:1161 +#, fuzzy +msgid "Port" +msgstr "ترتيب" + +#: libraries/engines/pbms.lib.php:37 +msgid "" +"The port for the PBMS stream-based communications. Setting this value to 0 " +"will disable HTTP communication with the daemon." +msgstr "" + +#: libraries/engines/pbms.lib.php:41 +msgid "Repository Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:42 +msgid "" +"The maximum size of a BLOB repository file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:46 +msgid "Temp Blob Timeout" +msgstr "" + +#: libraries/engines/pbms.lib.php:47 +msgid "" +"The timeout, in seconds, for temporary BLOBs. Uploaded BLOB data is removed " +"after this time, unless they are referenced by a record in the database." +msgstr "" + +#: libraries/engines/pbms.lib.php:51 +msgid "Temp Log Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:52 +msgid "" +"The maximum size of a temporary BLOB log file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:56 +msgid "Max Keep Alive" +msgstr "" + +#: libraries/engines/pbms.lib.php:57 +msgid "" +"The timeout for inactive connection with the keep-alive flag set. After this " +"time the connection will be closed. The time-out is in milliseconds (1/1000)." +msgstr "" + +#: libraries/engines/pbms.lib.php:61 +msgid "Metadata Headers" +msgstr "" + +#: libraries/engines/pbms.lib.php:62 +msgid "" +"A \":\" delimited list of metadata headers to be used to initialize the " +"pbms_metadata_header table when a database is created." +msgstr "" + #: libraries/engines/pbxt.lib.php:22 msgid "Index cache size" msgstr "" @@ -2650,7 +2701,7 @@ msgid "" msgstr "" #: libraries/export/codegen.php:36 setup/lib/messages.inc.php:85 -#: tbl_printview.php:374 tbl_structure.php:736 +#: tbl_printview.php:373 tbl_structure.php:734 msgid "Format" msgstr "قالب" @@ -2721,9 +2772,9 @@ msgstr "" #: libraries/export/htmlword.php:23 libraries/export/latex.php:59 #: libraries/export/latex.php:205 libraries/export/odt.php:47 #: libraries/export/sql.php:105 libraries/export/sql.php:865 -#: libraries/export/texytext.php:27 server_databases.php:126 -#: server_privileges.php:576 server_replication.php:315 tbl_printview.php:315 -#: tbl_structure.php:664 +#: libraries/export/texytext.php:27 server_databases.php:124 +#: server_privileges.php:575 server_replication.php:314 tbl_printview.php:314 +#: tbl_structure.php:662 msgid "Data" msgstr "داده" @@ -2772,14 +2823,14 @@ msgid "Label key" msgstr "" #: libraries/export/latex.php:46 libraries/export/odt.php:34 -#: libraries/export/sql.php:90 tbl_relation.php:398 +#: libraries/export/sql.php:90 tbl_relation.php:396 #, fuzzy msgid "Relations" msgstr "عمليات" #: libraries/export/latex.php:52 libraries/export/odt.php:40 #: libraries/export/odt.php:317 libraries/export/sql.php:94 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "" @@ -2787,10 +2838,10 @@ msgstr "" #: libraries/export/xml.php:101 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1529 server_privileges.php:2061 -#: server_processlist.php:54 server_synchronize.php:1158 +#: libraries/replication_gui.lib.php:331 server_privileges.php:730 +#: server_privileges.php:733 server_privileges.php:789 +#: server_privileges.php:1533 server_privileges.php:2065 +#: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "ميزبان" @@ -2982,8 +3033,8 @@ msgstr "" msgid "Export contents" msgstr "" -#: libraries/footer.inc.php:182 libraries/footer.inc.php:193 -#: libraries/footer.inc.php:196 +#: libraries/footer.inc.php:180 libraries/footer.inc.php:191 +#: libraries/footer.inc.php:194 msgid "Open new phpMyAdmin window" msgstr "" @@ -3000,7 +3051,7 @@ msgstr "نتيجه SQL" msgid "Generated by" msgstr "توليد‌شده توسط" -#: libraries/import.lib.php:151 sql.php:519 tbl_change.php:180 +#: libraries/import.lib.php:151 sql.php:518 tbl_change.php:175 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL يك نتيجه خالي داد. (مثلا 0 سطر)." @@ -3058,7 +3109,7 @@ msgstr "" msgid "Column names in first row" msgstr "" -#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:501 +#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:500 #: view_create.php:147 msgid "Column names" msgstr "نام ستونها" @@ -3084,12 +3135,12 @@ msgstr "" msgid "Invalid column count in CSV input on line %d." msgstr "" -#: libraries/import/docsql.php:28 +#: libraries/import/docsql.php:27 msgid "DocSQL" msgstr "" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 -#: server_synchronize.php:427 server_synchronize.php:870 +#: libraries/import/docsql.php:30 libraries/tbl_properties.inc.php:616 +#: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "" @@ -3145,26 +3196,26 @@ msgstr "خير" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:512 -#: tbl_structure.php:28 tbl_structure.php:152 tbl_structure.php:156 -#: tbl_structure.php:472 +#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:511 +#: tbl_structure.php:27 tbl_structure.php:151 tbl_structure.php:155 +#: tbl_structure.php:470 msgid "Primary" msgstr "اصلي" #: libraries/mult_submits.inc.php:97 libraries/tbl_properties.inc.php:115 -#: libraries/tbl_properties.inc.php:524 tbl_printview.php:324 -#: tbl_structure.php:30 tbl_structure.php:153 tbl_structure.php:157 -#: tbl_structure.php:474 tbl_structure.php:672 +#: libraries/tbl_properties.inc.php:523 tbl_printview.php:323 +#: tbl_structure.php:29 tbl_structure.php:152 tbl_structure.php:156 +#: tbl_structure.php:472 tbl_structure.php:670 msgid "Index" msgstr "فهرست" -#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:530 -#: tbl_structure.php:34 tbl_structure.php:155 tbl_structure.php:159 -#: tbl_structure.php:477 +#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:529 +#: tbl_structure.php:33 tbl_structure.php:154 tbl_structure.php:158 +#: tbl_structure.php:475 msgid "Fulltext" msgstr "كاملا متن" -#: libraries/mult_submits.inc.php:434 tbl_replace.php:330 +#: libraries/mult_submits.inc.php:433 tbl_replace.php:330 msgid "No change" msgstr "" @@ -3172,193 +3223,193 @@ msgstr "" msgid "Charset" msgstr "" -#: libraries/mysql_charsets.lib.php:210 libraries/mysql_charsets.lib.php:411 -#: tbl_change.php:515 +#: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 +#: tbl_change.php:510 msgid "Binary" msgstr "دودويي" -#: libraries/mysql_charsets.lib.php:222 +#: libraries/mysql_charsets.lib.php:214 msgid "Bulgarian" msgstr "بلغاری" -#: libraries/mysql_charsets.lib.php:226 libraries/mysql_charsets.lib.php:351 +#: libraries/mysql_charsets.lib.php:218 libraries/mysql_charsets.lib.php:343 msgid "Simplified Chinese" msgstr "" -#: libraries/mysql_charsets.lib.php:228 libraries/mysql_charsets.lib.php:371 +#: libraries/mysql_charsets.lib.php:220 libraries/mysql_charsets.lib.php:363 msgid "Traditional Chinese" msgstr "" -#: libraries/mysql_charsets.lib.php:232 libraries/mysql_charsets.lib.php:418 +#: libraries/mysql_charsets.lib.php:224 libraries/mysql_charsets.lib.php:410 msgid "case-insensitive" msgstr "" -#: libraries/mysql_charsets.lib.php:235 libraries/mysql_charsets.lib.php:420 +#: libraries/mysql_charsets.lib.php:227 libraries/mysql_charsets.lib.php:412 msgid "case-sensitive" msgstr "" -#: libraries/mysql_charsets.lib.php:238 +#: libraries/mysql_charsets.lib.php:230 msgid "Croatian" msgstr "" -#: libraries/mysql_charsets.lib.php:241 +#: libraries/mysql_charsets.lib.php:233 msgid "Czech" msgstr "" -#: libraries/mysql_charsets.lib.php:244 +#: libraries/mysql_charsets.lib.php:236 msgid "Danish" msgstr "دانمارکی" -#: libraries/mysql_charsets.lib.php:247 +#: libraries/mysql_charsets.lib.php:239 msgid "English" msgstr "انگلیسی" -#: libraries/mysql_charsets.lib.php:250 +#: libraries/mysql_charsets.lib.php:242 msgid "Esperanto" msgstr "" -#: libraries/mysql_charsets.lib.php:253 +#: libraries/mysql_charsets.lib.php:245 msgid "Estonian" msgstr "" -#: libraries/mysql_charsets.lib.php:256 libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:248 libraries/mysql_charsets.lib.php:251 msgid "German" msgstr "آلمانی" -#: libraries/mysql_charsets.lib.php:256 +#: libraries/mysql_charsets.lib.php:248 msgid "dictionary" msgstr "لغت نامه" -#: libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:251 msgid "phone book" msgstr "" -#: libraries/mysql_charsets.lib.php:262 +#: libraries/mysql_charsets.lib.php:254 #, fuzzy msgid "Hungarian" msgstr "بلغاری" -#: libraries/mysql_charsets.lib.php:265 +#: libraries/mysql_charsets.lib.php:257 msgid "Icelandic" msgstr "" -#: libraries/mysql_charsets.lib.php:268 libraries/mysql_charsets.lib.php:358 +#: libraries/mysql_charsets.lib.php:260 libraries/mysql_charsets.lib.php:350 msgid "Japanese" msgstr "ژاپنی" -#: libraries/mysql_charsets.lib.php:271 +#: libraries/mysql_charsets.lib.php:263 msgid "Latvian" msgstr "" -#: libraries/mysql_charsets.lib.php:274 +#: libraries/mysql_charsets.lib.php:266 msgid "Lithuanian" msgstr "" -#: libraries/mysql_charsets.lib.php:277 libraries/mysql_charsets.lib.php:380 +#: libraries/mysql_charsets.lib.php:269 libraries/mysql_charsets.lib.php:372 msgid "Korean" msgstr "کره‌ای" -#: libraries/mysql_charsets.lib.php:280 +#: libraries/mysql_charsets.lib.php:272 msgid "Persian" msgstr "فارسي" -#: libraries/mysql_charsets.lib.php:283 +#: libraries/mysql_charsets.lib.php:275 msgid "Polish" msgstr "لهستانی" -#: libraries/mysql_charsets.lib.php:286 libraries/mysql_charsets.lib.php:334 +#: libraries/mysql_charsets.lib.php:278 libraries/mysql_charsets.lib.php:326 msgid "West European" msgstr "اروپای غربی" -#: libraries/mysql_charsets.lib.php:289 +#: libraries/mysql_charsets.lib.php:281 #, fuzzy msgid "Romanian" msgstr "ارمنی" -#: libraries/mysql_charsets.lib.php:292 +#: libraries/mysql_charsets.lib.php:284 msgid "Slovak" msgstr "" -#: libraries/mysql_charsets.lib.php:295 +#: libraries/mysql_charsets.lib.php:287 msgid "Slovenian" msgstr "" -#: libraries/mysql_charsets.lib.php:298 +#: libraries/mysql_charsets.lib.php:290 msgid "Spanish" msgstr "اسپانیایی" -#: libraries/mysql_charsets.lib.php:301 +#: libraries/mysql_charsets.lib.php:293 msgid "Traditional Spanish" msgstr "" -#: libraries/mysql_charsets.lib.php:304 libraries/mysql_charsets.lib.php:401 +#: libraries/mysql_charsets.lib.php:296 libraries/mysql_charsets.lib.php:393 msgid "Swedish" msgstr "" -#: libraries/mysql_charsets.lib.php:307 libraries/mysql_charsets.lib.php:404 +#: libraries/mysql_charsets.lib.php:299 libraries/mysql_charsets.lib.php:396 msgid "Thai" msgstr "" -#: libraries/mysql_charsets.lib.php:310 libraries/mysql_charsets.lib.php:398 +#: libraries/mysql_charsets.lib.php:302 libraries/mysql_charsets.lib.php:390 msgid "Turkish" msgstr "ترکی" -#: libraries/mysql_charsets.lib.php:313 libraries/mysql_charsets.lib.php:395 +#: libraries/mysql_charsets.lib.php:305 libraries/mysql_charsets.lib.php:387 msgid "Ukrainian" msgstr "اوکراینی" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 msgid "Unicode" msgstr "" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 -#: libraries/mysql_charsets.lib.php:334 libraries/mysql_charsets.lib.php:341 -#: libraries/mysql_charsets.lib.php:363 libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 +#: libraries/mysql_charsets.lib.php:326 libraries/mysql_charsets.lib.php:333 +#: libraries/mysql_charsets.lib.php:355 libraries/mysql_charsets.lib.php:366 msgid "multilingual" msgstr "" -#: libraries/mysql_charsets.lib.php:341 +#: libraries/mysql_charsets.lib.php:333 #, fuzzy msgid "Central European" msgstr "اروپای غربی" -#: libraries/mysql_charsets.lib.php:346 +#: libraries/mysql_charsets.lib.php:338 msgid "Russian" msgstr "" -#: libraries/mysql_charsets.lib.php:363 +#: libraries/mysql_charsets.lib.php:355 msgid "Baltic" msgstr "" -#: libraries/mysql_charsets.lib.php:368 +#: libraries/mysql_charsets.lib.php:360 msgid "Armenian" msgstr "ارمنی" -#: libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:366 msgid "Cyrillic" msgstr "" -#: libraries/mysql_charsets.lib.php:377 +#: libraries/mysql_charsets.lib.php:369 msgid "Arabic" msgstr "عربی" -#: libraries/mysql_charsets.lib.php:383 +#: libraries/mysql_charsets.lib.php:375 msgid "Hebrew" msgstr "" -#: libraries/mysql_charsets.lib.php:386 +#: libraries/mysql_charsets.lib.php:378 msgid "Georgian" msgstr "گرجی" -#: libraries/mysql_charsets.lib.php:389 +#: libraries/mysql_charsets.lib.php:381 msgid "Greek" msgstr "یونانی" -#: libraries/mysql_charsets.lib.php:392 +#: libraries/mysql_charsets.lib.php:384 msgid "Czech-Slovak" msgstr "" -#: libraries/mysql_charsets.lib.php:407 libraries/mysql_charsets.lib.php:414 +#: libraries/mysql_charsets.lib.php:399 libraries/mysql_charsets.lib.php:406 msgid "unknown" msgstr "ناشناس" @@ -3384,67 +3435,67 @@ msgstr "" msgid "This format has no options" msgstr "" -#: libraries/relation.lib.php:82 +#: libraries/relation.lib.php:77 msgid "not OK" msgstr "not OK" -#: libraries/relation.lib.php:86 pmd_general.php:339 +#: libraries/relation.lib.php:81 pmd_general.php:339 msgid "OK" msgstr "تاييد" -#: libraries/relation.lib.php:87 +#: libraries/relation.lib.php:82 msgid "Enabled" msgstr "فعال" -#: libraries/relation.lib.php:110 +#: libraries/relation.lib.php:105 msgid "Display Features" msgstr "نمايش خصوصيات" -#: libraries/relation.lib.php:116 +#: libraries/relation.lib.php:111 msgid "Creation of PDFs" msgstr "ساخت PDFs" -#: libraries/relation.lib.php:120 +#: libraries/relation.lib.php:115 msgid "Displaying Column Comments" msgstr "نمايش توضيحات ستون" -#: libraries/relation.lib.php:125 +#: libraries/relation.lib.php:120 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" -#: libraries/relation.lib.php:130 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 msgid "Bookmarked SQL query" msgstr "" -#: libraries/relation.lib.php:134 querywindow.php:99 querywindow.php:207 +#: libraries/relation.lib.php:129 querywindow.php:98 querywindow.php:205 msgid "SQL history" msgstr "" -#: libraries/relation.lib.php:146 +#: libraries/relation.lib.php:141 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:148 +#: libraries/relation.lib.php:143 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" -#: libraries/relation.lib.php:149 +#: libraries/relation.lib.php:144 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:150 +#: libraries/relation.lib.php:145 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:151 +#: libraries/relation.lib.php:146 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1158 +#: libraries/relation.lib.php:1153 msgid "no description" msgstr "no Description" @@ -3452,7 +3503,7 @@ msgstr "no Description" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:53 server_replication.php:346 +#: libraries/replication_gui.lib.php:53 server_replication.php:345 msgid "Change or reconfigure master server" msgstr "" @@ -3464,17 +3515,12 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:711 -#: server_privileges.php:714 server_privileges.php:721 -#: server_synchronize.php:1170 +#: libraries/replication_gui.lib.php:261 server_privileges.php:710 +#: server_privileges.php:713 server_privileges.php:720 +#: server_synchronize.php:1169 msgid "User name" msgstr "نام كاربر" -#: libraries/replication_gui.lib.php:69 server_synchronize.php:1162 -#, fuzzy -msgid "Port" -msgstr "ترتيب" - #: libraries/replication_gui.lib.php:105 msgid "Master status" msgstr "" @@ -3489,8 +3535,8 @@ msgid "Variable" msgstr "متغییر" #: libraries/replication_gui.lib.php:117 server_status.php:737 -#: tbl_change.php:322 tbl_printview.php:368 tbl_select.php:137 -#: tbl_structure.php:728 +#: tbl_change.php:317 tbl_printview.php:367 tbl_select.php:136 +#: tbl_structure.php:726 msgid "Value" msgstr "مقدار" @@ -3505,38 +3551,38 @@ msgid "" "this list." msgstr "" -#: libraries/replication_gui.lib.php:242 server_replication.php:193 +#: libraries/replication_gui.lib.php:242 server_replication.php:192 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:256 server_privileges.php:716 +#: libraries/replication_gui.lib.php:256 server_privileges.php:715 msgid "Any user" msgstr "همه كاربران" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1920 server_privileges.php:1950 +#: libraries/replication_gui.lib.php:348 server_privileges.php:716 +#: server_privileges.php:783 server_privileges.php:807 +#: server_privileges.php:1924 server_privileges.php:1954 msgid "Use text field" msgstr "" -#: libraries/replication_gui.lib.php:304 server_privileges.php:764 +#: libraries/replication_gui.lib.php:304 server_privileges.php:763 msgid "Any host" msgstr "همه ميزبانها" -#: libraries/replication_gui.lib.php:308 server_privileges.php:768 +#: libraries/replication_gui.lib.php:308 server_privileges.php:767 msgid "Local" msgstr "محلی" -#: libraries/replication_gui.lib.php:314 server_privileges.php:773 +#: libraries/replication_gui.lib.php:314 server_privileges.php:772 msgid "This Host" msgstr "" -#: libraries/replication_gui.lib.php:320 server_privileges.php:779 +#: libraries/replication_gui.lib.php:320 server_privileges.php:778 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:333 server_privileges.php:792 +#: libraries/replication_gui.lib.php:333 server_privileges.php:791 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3563,8 +3609,8 @@ msgstr "زبانِ ناشناس : %1$s." msgid "Servers" msgstr "سرور" -#: libraries/server_links.inc.php:52 server_engines.php:111 -#: server_engines.php:115 server_status.php:414 test/theme.php:104 +#: libraries/server_links.inc.php:52 server_engines.php:125 +#: server_engines.php:129 server_status.php:414 test/theme.php:104 #, fuzzy msgid "Variables" msgstr "متغییر" @@ -3587,12 +3633,12 @@ msgstr "دودويي" msgid "Processes" msgstr "" -#: libraries/server_links.inc.php:91 server_synchronize.php:1091 -#: server_synchronize.php:1099 +#: libraries/server_links.inc.php:91 server_synchronize.php:1090 +#: server_synchronize.php:1098 msgid "Synchronize" msgstr "" -#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1109 +#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1108 #, fuzzy msgid "Source database" msgstr "جستجو در پايگاه‌داده" @@ -3611,7 +3657,7 @@ msgstr "" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1111 +#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1110 #, fuzzy msgid "Target database" msgstr "جستجو در پايگاه‌داده" @@ -3632,11 +3678,11 @@ msgstr "اجراي پرس و جو(ها)ي SQL در پايگاه‌داده %s" msgid "Columns" msgstr "نام ستونها" -#: libraries/sql_query_form.lib.php:342 sql.php:664 sql.php:665 sql.php:682 +#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql_query_form.lib.php:349 sql.php:676 +#: libraries/sql_query_form.lib.php:349 sql.php:669 msgid "Let every user access this bookmark" msgstr "" @@ -3718,12 +3764,12 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" -#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:139 -#: libraries/tbl_links.inc.php:140 +#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 +#: libraries/tbl_links.inc.php:139 msgid "Table seems to be empty!" msgstr "" -#: libraries/tbl_links.inc.php:148 +#: libraries/tbl_links.inc.php:147 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" @@ -3757,23 +3803,23 @@ msgid "" "escaping or quotes, using this format: a" msgstr "" -#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1263 -#: pdf_schema.php:1284 tbl_printview.php:142 tbl_structure.php:179 +#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1262 +#: pdf_schema.php:1283 tbl_printview.php:141 tbl_structure.php:178 msgid "Attributes" msgstr "ويژگيها" -#: libraries/tbl_properties.inc.php:136 +#: libraries/tbl_properties.inc.php:135 #, php-format msgid "" "For a list of available transformation options and their MIME type " "transformations, click on %stransformation descriptions%s" msgstr "" -#: libraries/tbl_properties.inc.php:144 +#: libraries/tbl_properties.inc.php:143 msgid "Transformation options" msgstr "" -#: libraries/tbl_properties.inc.php:145 +#: libraries/tbl_properties.inc.php:144 #, fuzzy msgid "" "Please enter the values for transformation options using this format: 'a', " @@ -3787,46 +3833,46 @@ msgstr "" "نماييد ، قبل از آنها علامت (\" \\ \") را بگذاريد
                            (براي مثال'\\\\xyz' " "يا 'a\\'b')" -#: libraries/tbl_properties.inc.php:392 +#: libraries/tbl_properties.inc.php:391 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "خير" -#: libraries/tbl_properties.inc.php:393 +#: libraries/tbl_properties.inc.php:392 msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:579 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:578 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
                            Please ask the " "author what %s does." msgstr "" -#: libraries/tbl_properties.inc.php:725 server_engines.php:57 -#: tbl_operations.php:354 +#: libraries/tbl_properties.inc.php:724 server_engines.php:56 +#: tbl_operations.php:352 msgid "Storage Engine" msgstr "" -#: libraries/tbl_properties.inc.php:754 +#: libraries/tbl_properties.inc.php:753 msgid "PARTITION definition" msgstr "" -#: libraries/tbl_properties.inc.php:775 pdf_pages.php:502 +#: libraries/tbl_properties.inc.php:774 pdf_pages.php:501 #: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214 -#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1124 tbl_indexes.php:247 -#: tbl_relation.php:565 +#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1022 tbl_indexes.php:246 +#: tbl_relation.php:563 msgid "Save" msgstr "ذخيره" -#: libraries/tbl_properties.inc.php:779 tbl_structure.php:541 +#: libraries/tbl_properties.inc.php:778 tbl_structure.php:539 #, fuzzy, php-format msgid "Add %s column(s)" msgstr "افزودن ستون جديد" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:535 +#: libraries/tbl_properties.inc.php:782 tbl_structure.php:533 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." @@ -3952,8 +3998,8 @@ msgstr "" msgid "Custom color" msgstr "" -#: main.php:162 pdf_pages.php:362 setup/lib/FormDisplay.tpl.php:216 -#: tbl_change.php:1173 +#: main.php:162 pdf_pages.php:361 setup/lib/FormDisplay.tpl.php:216 +#: tbl_change.php:1071 msgid "Reset" msgstr "Reset" @@ -3961,8 +4007,8 @@ msgstr "Reset" msgid "Protocol version" msgstr "" -#: main.php:188 server_privileges.php:1381 server_privileges.php:1528 -#: server_privileges.php:1642 server_privileges.php:2060 +#: main.php:188 server_privileges.php:1385 server_privileges.php:1532 +#: server_privileges.php:1646 server_privileges.php:2064 #: server_processlist.php:53 msgid "User" msgstr "كاربر" @@ -4040,21 +4086,30 @@ msgid "" "has been configured." msgstr "" -#: main.php:330 +#: main.php:314 +#, php-format +msgid "" +"The additional features for working with linked tables have been " +"deactivated. To find out why click %shere%s." +msgstr "" +"امكانات اضافي براي كاركردن با جدولهاي پيوندي غيرفعال شده‌است . براي پيداكردن " +"دليل آن %sاينجا%s را بزنيد ." + +#: main.php:329 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:345 +#: main.php:344 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: main.php:357 +#: main.php:356 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -4065,103 +4120,103 @@ msgstr "" msgid "Reload navigation frame" msgstr "" -#: navigation.php:204 server_databases.php:370 server_synchronize.php:1190 +#: navigation.php:203 server_databases.php:368 server_synchronize.php:1189 msgid "No databases" msgstr "No databases" -#: navigation.php:298 +#: navigation.php:297 msgid "Filter" msgstr "" -#: navigation.php:299 setup/frames/index.inc.php:218 +#: navigation.php:298 setup/frames/index.inc.php:218 #: setup/lib/messages.inc.php:41 #, fuzzy msgid "Clear" msgstr "تقویم" -#: navigation.php:330 navigation.php:331 +#: navigation.php:329 navigation.php:330 #, fuzzy msgctxt "short form" msgid "Create table" msgstr "ساخت يك صفحه جديد" -#: navigation.php:333 navigation.php:495 +#: navigation.php:332 navigation.php:494 msgid "Please select a database" msgstr "لطفا يك پايگاه داده را انتخاب نماييد." -#: pdf_pages.php:40 pdf_pages.php:46 pdf_pages.php:52 pdf_pages.php:57 +#: pdf_pages.php:39 pdf_pages.php:45 pdf_pages.php:51 pdf_pages.php:56 #, php-format msgid "%s table not found or not set in %s" msgstr "جدول %s وجود ندارد و يا در %s تنظيم نشده‌است" -#: pdf_pages.php:265 +#: pdf_pages.php:264 msgid "Please choose a page to edit" msgstr "لطفا يك صفحه را براي ويرايش انتخاب نماييد" -#: pdf_pages.php:303 pmd_pdf.php:113 +#: pdf_pages.php:302 pmd_pdf.php:111 msgid "Create a page" msgstr "ساخت يك صفحه جديد" -#: pdf_pages.php:309 +#: pdf_pages.php:308 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "شماره صفحه:" -#: pdf_pages.php:313 +#: pdf_pages.php:312 #, fuzzy msgid "Automatic layout based on" msgstr "نسخه سرور" -#: pdf_pages.php:315 +#: pdf_pages.php:314 msgid "Internal relations" msgstr "" -#: pdf_pages.php:338 +#: pdf_pages.php:337 msgid "Select Tables" msgstr "Select Tables" -#: pdf_pages.php:361 +#: pdf_pages.php:360 msgid "Toggle scratchboard" msgstr "" -#: pdf_pages.php:524 +#: pdf_pages.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" msgstr "" -#: pdf_schema.php:635 +#: pdf_schema.php:634 #, fuzzy, php-format #| msgid "The \"%s\" table doesn't exist!" msgid "The %s table doesn't exist!" msgstr "جدول \"%s\" وجود ندارد!" -#: pdf_schema.php:671 +#: pdf_schema.php:670 #, php-format msgid "Please configure the coordinates for table %s" msgstr "لطفا مختصات جدول %s را تنظيم كنيد" -#: pdf_schema.php:994 +#: pdf_schema.php:993 #, php-format msgid "Schema of the %s database - Page %s" msgstr "" -#: pdf_schema.php:1012 +#: pdf_schema.php:1011 msgid "No tables" msgstr "No tables" -#: pdf_schema.php:1031 pdf_schema.php:1140 +#: pdf_schema.php:1030 pdf_schema.php:1139 msgid "Relational schema" msgstr "" -#: pdf_schema.php:1115 +#: pdf_schema.php:1114 #, fuzzy msgid "Table of contents" msgstr "توضيحات جدول" -#: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:145 -#: tbl_structure.php:182 tbl_tracking.php:277 +#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 +#: tbl_structure.php:181 tbl_tracking.php:272 msgid "Extra" msgstr "اضافي" @@ -4173,7 +4228,7 @@ msgstr "" msgid "Save position" msgstr "" -#: pmd_general.php:70 server_synchronize.php:428 server_synchronize.php:871 +#: pmd_general.php:70 server_synchronize.php:427 server_synchronize.php:870 #, fuzzy msgid "Create table" msgstr "ساخت يك صفحه جديد" @@ -4246,32 +4301,32 @@ msgid "" "appropriate column name." msgstr "" -#: pmd_pdf.php:62 +#: pmd_pdf.php:60 #, fuzzy msgid "Page has been created" msgstr "جدول %s حذف گرديد" -#: pmd_pdf.php:64 +#: pmd_pdf.php:62 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:84 +#: pmd_pdf.php:82 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:88 +#: pmd_pdf.php:86 msgid "recommended" msgstr "" -#: pmd_pdf.php:93 +#: pmd_pdf.php:91 msgid "to/from page" msgstr "" -#: querywindow.php:94 +#: querywindow.php:93 msgid "Import files" msgstr "" -#: querywindow.php:105 +#: querywindow.php:104 msgid "All" msgstr "همه" @@ -4318,401 +4373,401 @@ msgstr "اطلاعات" msgid "Character Sets and Collations" msgstr "" -#: server_databases.php:51 +#: server_databases.php:49 msgid "No databases selected." msgstr "" -#: server_databases.php:62 +#: server_databases.php:60 #, php-format msgid "%s databases have been dropped successfully." msgstr "" -#: server_databases.php:87 +#: server_databases.php:85 msgid "Databases statistics" msgstr "آمار پايگاههاي داده" -#: server_databases.php:116 server_status.php:370 +#: server_databases.php:114 server_status.php:370 #: setup/lib/messages.inc.php:114 msgid "Tables" msgstr "جدولها" -#: server_databases.php:194 server_replication.php:180 -#: server_replication.php:208 +#: server_databases.php:192 server_replication.php:179 +#: server_replication.php:207 msgid "Master replication" msgstr "" -#: server_databases.php:196 server_replication.php:247 +#: server_databases.php:194 server_replication.php:246 msgid "Slave replication" msgstr "" -#: server_databases.php:229 +#: server_databases.php:227 #, fuzzy msgid "Jump to database" msgstr "No databases" -#: server_databases.php:266 +#: server_databases.php:264 msgid "Not replicated" msgstr "" -#: server_databases.php:272 +#: server_databases.php:270 msgid "Replicated" msgstr "" -#: server_databases.php:288 +#: server_databases.php:286 #, php-format msgid "Check privileges for database "%s"." msgstr "" -#: server_databases.php:292 server_databases.php:293 +#: server_databases.php:290 server_databases.php:291 #, fuzzy msgid "Check Privileges" msgstr "ويرايش امتيازات" -#: server_databases.php:357 server_databases.php:358 +#: server_databases.php:355 server_databases.php:356 #, fuzzy msgid "Enable Statistics" msgstr "آمار پايگاههاي داده" -#: server_databases.php:361 server_databases.php:362 +#: server_databases.php:359 server_databases.php:360 #, fuzzy msgid "Disable Statistics" msgstr "آمار پايگاههاي داده" -#: server_databases.php:365 +#: server_databases.php:363 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." msgstr "" -#: server_engines.php:48 +#: server_engines.php:47 msgid "Storage Engines" msgstr "" -#: server_export.php:20 +#: server_export.php:18 #, fuzzy msgid "View dump (schema) of databases" msgstr "نمايش الگوي پايگاه داده" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:23 server_privileges.php:265 msgid "Includes all privileges except GRANT." msgstr "" -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:24 server_privileges.php:191 +#: server_privileges.php:514 msgid "Allows altering the structure of existing tables." msgstr "" -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:25 server_privileges.php:207 +#: server_privileges.php:520 msgid "Allows altering and dropping stored routines." msgstr "" -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:26 server_privileges.php:183 +#: server_privileges.php:513 msgid "Allows creating new databases and tables." msgstr "" -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:27 server_privileges.php:206 +#: server_privileges.php:519 msgid "Allows creating stored routines." msgstr "" -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:513 msgid "Allows creating new tables." msgstr "" -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:29 server_privileges.php:194 +#: server_privileges.php:517 msgid "Allows creating temporary tables." msgstr "" -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:30 server_privileges.php:208 +#: server_privileges.php:553 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: server_privileges.php:32 server_privileges.php:199 -#: server_privileges.php:203 server_privileges.php:526 -#: server_privileges.php:530 +#: server_privileges.php:31 server_privileges.php:198 +#: server_privileges.php:202 server_privileges.php:525 +#: server_privileges.php:529 msgid "Allows creating new views." msgstr "" -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:32 server_privileges.php:182 +#: server_privileges.php:505 msgid "Allows deleting data." msgstr "" -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:33 server_privileges.php:184 +#: server_privileges.php:516 msgid "Allows dropping databases and tables." msgstr "" -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:34 server_privileges.php:516 msgid "Allows dropping tables." msgstr "" -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:35 server_privileges.php:199 +#: server_privileges.php:533 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:36 server_privileges.php:209 +#: server_privileges.php:521 msgid "Allows executing stored routines." msgstr "" -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:37 server_privileges.php:188 +#: server_privileges.php:508 msgid "Allows importing data from and exporting data into files." msgstr "" -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:38 server_privileges.php:539 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:515 msgid "Allows creating and dropping indexes." msgstr "" -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:40 server_privileges.php:180 +#: server_privileges.php:441 server_privileges.php:503 msgid "Allows inserting and replacing data." msgstr "" -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:41 server_privileges.php:195 +#: server_privileges.php:548 msgid "Allows locking tables for the current thread." msgstr "" -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:42 server_privileges.php:645 +#: server_privileges.php:647 msgid "Limits the number of new connections the user may open per hour." msgstr "" -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:43 server_privileges.php:633 +#: server_privileges.php:635 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:44 server_privileges.php:639 +#: server_privileges.php:641 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" -#: server_privileges.php:46 server_privileges.php:652 -#: server_privileges.php:654 +#: server_privileges.php:45 server_privileges.php:651 +#: server_privileges.php:653 msgid "Limits the number of simultaneous connections the user may have." msgstr "" -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:46 server_privileges.php:187 +#: server_privileges.php:543 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:47 server_privileges.php:189 +#: server_privileges.php:447 server_privileges.php:549 msgid "Has no effect in this MySQL version." msgstr "" -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:48 server_privileges.php:185 +#: server_privileges.php:544 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:197 +#: server_privileges.php:551 msgid "Allows the user to ask where the slaves / masters are." msgstr "" -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:50 server_privileges.php:196 +#: server_privileges.php:552 msgid "Needed for the replication slaves." msgstr "" -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:51 server_privileges.php:179 +#: server_privileges.php:438 server_privileges.php:502 msgid "Allows reading data." msgstr "" -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:52 server_privileges.php:192 +#: server_privileges.php:546 msgid "Gives access to the complete list of databases." msgstr "" -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:53 server_privileges.php:203 +#: server_privileges.php:205 server_privileges.php:518 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:54 server_privileges.php:186 +#: server_privileges.php:545 msgid "Allows shutting down the server." msgstr "" -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:55 server_privileges.php:193 +#: server_privileges.php:542 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " "killing threads of other users." msgstr "" -#: server_privileges.php:57 server_privileges.php:201 -#: server_privileges.php:535 +#: server_privileges.php:56 server_privileges.php:200 +#: server_privileges.php:534 msgid "Allows creating and dropping triggers" msgstr "" -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:57 server_privileges.php:181 +#: server_privileges.php:444 server_privileges.php:504 msgid "Allows changing data." msgstr "" -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:58 server_privileges.php:259 #, fuzzy msgid "No privileges." msgstr "امتيازات" -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:301 server_privileges.php:302 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "خير" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1710 server_privileges.php:1716 +#: server_privileges.php:430 server_privileges.php:565 +#: server_privileges.php:1714 server_privileges.php:1720 msgid "Table-specific privileges" msgstr "" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1532 +#: server_privileges.php:431 server_privileges.php:573 +#: server_privileges.php:1536 msgid " Note: MySQL privilege names are expressed in English " msgstr " نكته : نام امتيازات MySQL به زبان انگليسي بيان مي‌شود ." -#: server_privileges.php:563 server_privileges.php:1531 +#: server_privileges.php:562 server_privileges.php:1535 msgid "Global privileges" msgstr "" -#: server_privileges.php:565 server_privileges.php:1710 +#: server_privileges.php:564 server_privileges.php:1714 msgid "Database-specific privileges" msgstr "" -#: server_privileges.php:610 +#: server_privileges.php:609 msgid "Administration" msgstr "مدیریت" -#: server_privileges.php:630 +#: server_privileges.php:629 msgid "Resource limits" msgstr "" -#: server_privileges.php:631 +#: server_privileges.php:630 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" -#: server_privileges.php:708 +#: server_privileges.php:707 msgid "Login Information" msgstr "اطلاعات ورود" -#: server_privileges.php:802 +#: server_privileges.php:801 msgid "Do not change the password" msgstr "عدم تغيير اسم رمز" -#: server_privileges.php:835 server_privileges.php:2197 +#: server_privileges.php:834 server_privileges.php:2201 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "هيچ كاربري وچود ندارد." -#: server_privileges.php:879 +#: server_privileges.php:878 #, php-format msgid "The user %s already exists!" msgstr "" -#: server_privileges.php:962 +#: server_privileges.php:961 msgid "You have added a new user." msgstr "شما يك كاربر جديد اضافه كرديد." -#: server_privileges.php:1183 +#: server_privileges.php:1184 #, php-format msgid "You have updated the privileges for %s." msgstr "امتيازات %s به هنگام گرديد." -#: server_privileges.php:1207 +#: server_privileges.php:1208 #, php-format msgid "You have revoked the privileges for %s" msgstr "شما امتيازات %s را ابطال كرديد" -#: server_privileges.php:1243 +#: server_privileges.php:1244 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: server_privileges.php:1263 +#: server_privileges.php:1264 #, php-format msgid "Deleting %s" msgstr "در حال پاک کردن %s" -#: server_privileges.php:1274 +#: server_privileges.php:1275 msgid "No users selected for deleting!" msgstr "" -#: server_privileges.php:1277 +#: server_privileges.php:1278 msgid "Reloading the privileges" msgstr "" -#: server_privileges.php:1292 +#: server_privileges.php:1296 msgid "The selected users have been deleted successfully." msgstr "" -#: server_privileges.php:1327 +#: server_privileges.php:1331 msgid "The privileges were reloaded successfully." msgstr "" -#: server_privileges.php:1355 server_privileges.php:1641 +#: server_privileges.php:1359 server_privileges.php:1645 msgid "Edit Privileges" msgstr "ويرايش امتيازات" -#: server_privileges.php:1364 +#: server_privileges.php:1368 msgid "Revoke" msgstr "ابطال" -#: server_privileges.php:1396 +#: server_privileges.php:1400 msgid "User overview" msgstr "" -#: server_privileges.php:1533 server_privileges.php:1715 -#: server_privileges.php:2064 +#: server_privileges.php:1537 server_privileges.php:1719 +#: server_privileges.php:2068 #, fuzzy msgid "Grant" msgstr "چاپ" -#: server_privileges.php:1552 server_privileges.php:2154 +#: server_privileges.php:1556 server_privileges.php:2158 msgid "Any" msgstr "همه" -#: server_privileges.php:1601 server_privileges.php:1625 -#: server_privileges.php:2019 server_privileges.php:2208 +#: server_privileges.php:1605 server_privileges.php:1629 +#: server_privileges.php:2023 server_privileges.php:2212 msgid "Add a new User" msgstr "افزودن يك كاربر جديد" -#: server_privileges.php:1606 +#: server_privileges.php:1610 msgid "Remove selected users" msgstr "" -#: server_privileges.php:1609 +#: server_privileges.php:1613 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: server_privileges.php:1610 server_privileges.php:1611 -#: server_privileges.php:1612 +#: server_privileges.php:1614 server_privileges.php:1615 +#: server_privileges.php:1616 msgid "Drop the databases that have the same names as the users." msgstr "" -#: server_privileges.php:1628 +#: server_privileges.php:1632 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4721,91 +4776,91 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: server_privileges.php:1676 +#: server_privileges.php:1680 msgid "The selected user was not found in the privilege table." msgstr "" -#: server_privileges.php:1716 +#: server_privileges.php:1720 msgid "Column-specific privileges" msgstr "" -#: server_privileges.php:1917 +#: server_privileges.php:1921 msgid "Add privileges on the following database" msgstr "" -#: server_privileges.php:1935 +#: server_privileges.php:1939 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:1938 +#: server_privileges.php:1942 msgid "Add privileges on the following table" msgstr "" -#: server_privileges.php:1995 +#: server_privileges.php:1999 msgid "Change Login Information / Copy User" msgstr "" -#: server_privileges.php:1998 +#: server_privileges.php:2002 msgid "Create a new user with the same privileges and ..." msgstr "" -#: server_privileges.php:2000 +#: server_privileges.php:2004 msgid "... keep the old one." msgstr "" -#: server_privileges.php:2001 +#: server_privileges.php:2005 msgid " ... delete the old one from the user tables." msgstr "" -#: server_privileges.php:2002 +#: server_privileges.php:2006 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: server_privileges.php:2003 +#: server_privileges.php:2007 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: server_privileges.php:2025 +#: server_privileges.php:2029 msgid "Database for user" msgstr "" -#: server_privileges.php:2029 +#: server_privileges.php:2033 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "خير" -#: server_privileges.php:2030 +#: server_privileges.php:2034 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2031 +#: server_privileges.php:2035 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2034 +#: server_privileges.php:2038 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: server_privileges.php:2057 +#: server_privileges.php:2061 #, php-format msgid "Users having access to "%s"" msgstr "" -#: server_privileges.php:2165 +#: server_privileges.php:2169 msgid "global" msgstr "" -#: server_privileges.php:2167 +#: server_privileges.php:2171 msgid "database-specific" msgstr "" -#: server_privileges.php:2169 +#: server_privileges.php:2173 msgid "wildcard" msgstr "" @@ -4824,53 +4879,53 @@ msgstr "" msgid "ID" msgstr "شناسه" -#: server_replication.php:50 +#: server_replication.php:49 msgid "Unknown error" msgstr "" -#: server_replication.php:57 +#: server_replication.php:56 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:64 +#: server_replication.php:63 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:70 +#: server_replication.php:69 msgid "Unable to change master" msgstr "" -#: server_replication.php:73 +#: server_replication.php:72 #, php-format msgid "Master server changed succesfully to %s" msgstr "" -#: server_replication.php:181 +#: server_replication.php:180 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:183 server_status.php:391 +#: server_replication.php:182 server_status.php:391 msgid "Show master status" msgstr "" -#: server_replication.php:186 +#: server_replication.php:185 msgid "Show connected slaves" msgstr "" -#: server_replication.php:209 +#: server_replication.php:208 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:216 +#: server_replication.php:215 msgid "Master configuration" msgstr "" -#: server_replication.php:217 +#: server_replication.php:216 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -4879,110 +4934,110 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:220 +#: server_replication.php:219 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:221 +#: server_replication.php:220 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:224 +#: server_replication.php:223 #, fuzzy msgid "Please select databases:" msgstr "لطفا يك پايگاه داده را انتخاب نماييد." -#: server_replication.php:227 +#: server_replication.php:226 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: server_replication.php:229 +#: server_replication.php:228 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: server_replication.php:292 +#: server_replication.php:291 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:295 +#: server_replication.php:294 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:304 +#: server_replication.php:303 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:307 +#: server_replication.php:306 msgid "See slave status table" msgstr "" -#: server_replication.php:310 +#: server_replication.php:309 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:321 +#: server_replication.php:320 msgid "Control slave:" msgstr "" -#: server_replication.php:324 +#: server_replication.php:323 #, fuzzy msgid "Full start" msgstr "كاملا متن" -#: server_replication.php:324 +#: server_replication.php:323 msgid "Full stop" msgstr "" -#: server_replication.php:325 +#: server_replication.php:324 msgid "Reset slave" msgstr "" -#: server_replication.php:326 +#: server_replication.php:325 #, php-format msgid "SQL Thread %s only" msgstr "" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 #, fuzzy msgid "Start" msgstr "شنبه" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 msgid "Stop" msgstr "" -#: server_replication.php:327 +#: server_replication.php:326 #, php-format msgid "IO Thread %s only" msgstr "" -#: server_replication.php:331 +#: server_replication.php:330 msgid "Error management:" msgstr "" -#: server_replication.php:333 +#: server_replication.php:332 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:335 +#: server_replication.php:334 msgid "Skip current error" msgstr "" -#: server_replication.php:336 +#: server_replication.php:335 msgid "Skip next" msgstr "" -#: server_replication.php:339 +#: server_replication.php:338 msgid "errors." msgstr "" -#: server_replication.php:354 +#: server_replication.php:353 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -5688,110 +5743,110 @@ msgstr "" msgid "Replication status" msgstr "" -#: server_synchronize.php:93 +#: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:96 +#: server_synchronize.php:95 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:121 server_synchronize.php:124 tbl_create.php:77 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:264 +#: server_synchronize.php:263 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:271 +#: server_synchronize.php:270 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:399 server_synchronize.php:838 +#: server_synchronize.php:398 server_synchronize.php:837 msgid "not present" msgstr "" -#: server_synchronize.php:423 server_synchronize.php:866 +#: server_synchronize.php:422 server_synchronize.php:865 msgid "Structure Difference" msgstr "" -#: server_synchronize.php:424 server_synchronize.php:867 +#: server_synchronize.php:423 server_synchronize.php:866 msgid "Data Difference" msgstr "" -#: server_synchronize.php:429 server_synchronize.php:872 +#: server_synchronize.php:428 server_synchronize.php:871 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:430 server_synchronize.php:873 +#: server_synchronize.php:429 server_synchronize.php:872 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:431 server_synchronize.php:874 +#: server_synchronize.php:430 server_synchronize.php:873 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:432 server_synchronize.php:875 +#: server_synchronize.php:431 server_synchronize.php:874 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:433 server_synchronize.php:876 +#: server_synchronize.php:432 server_synchronize.php:875 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:434 server_synchronize.php:877 +#: server_synchronize.php:433 server_synchronize.php:876 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:435 server_synchronize.php:878 +#: server_synchronize.php:434 server_synchronize.php:877 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:445 server_synchronize.php:889 +#: server_synchronize.php:444 server_synchronize.php:888 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:448 server_synchronize.php:893 +#: server_synchronize.php:447 server_synchronize.php:892 msgid "Apply Selected Changes" msgstr "" -#: server_synchronize.php:450 server_synchronize.php:895 +#: server_synchronize.php:449 server_synchronize.php:894 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:463 +#: server_synchronize.php:462 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:941 +#: server_synchronize.php:940 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:1002 +#: server_synchronize.php:1001 msgid "The following queries have been executed:" msgstr "" -#: server_synchronize.php:1121 +#: server_synchronize.php:1120 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1122 +#: server_synchronize.php:1121 msgid "Current connection" msgstr "" -#: server_synchronize.php:1151 +#: server_synchronize.php:1150 #, php-format msgid "Configuration: %s" msgstr "" -#: server_synchronize.php:1166 +#: server_synchronize.php:1165 msgid "Socket" msgstr "" -#: server_synchronize.php:1212 +#: server_synchronize.php:1211 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -6341,8 +6396,8 @@ msgstr "" #: setup/lib/messages.inc.php:128 msgid "" "Configure phpMyAdmin database to gain access to additional features, see " -"[a@../Documentation.html#linked-tables]linked-tables infrastructure[/a] in " -"documentation" +"[a@../Documentation.html#linked-tables]phpMyAdmin configuration storage[/a] " +"in documentation" msgstr "" #: setup/lib/messages.inc.php:129 setup/lib/messages.inc.php:290 @@ -7392,112 +7447,112 @@ msgstr "" msgid "ZIP" msgstr "" -#: sql.php:495 tbl_replace.php:385 +#: sql.php:494 tbl_replace.php:384 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: sql.php:512 +#: sql.php:511 msgid "Showing as PHP code" msgstr "" -#: sql.php:515 tbl_replace.php:359 +#: sql.php:514 tbl_replace.php:358 msgid "Showing SQL query" msgstr "" -#: sql.php:517 +#: sql.php:516 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "معتبرسازي SQL" -#: sql.php:638 +#: sql.php:631 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:670 +#: sql.php:663 msgid "Label" msgstr "" -#: tbl_addfield.php:188 tbl_alter.php:102 tbl_indexes.php:97 +#: tbl_addfield.php:185 tbl_alter.php:100 tbl_indexes.php:97 #, php-format msgid "Table %1$s has been altered successfully" msgstr "" -#: tbl_change.php:250 tbl_select.php:26 tbl_select.php:27 tbl_select.php:30 -#: tbl_select.php:33 +#: tbl_change.php:245 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_select.php:32 msgid "Browse foreign values" msgstr "" -#: tbl_change.php:280 tbl_change.php:318 +#: tbl_change.php:275 tbl_change.php:313 msgid "Function" msgstr "تابع" -#: tbl_change.php:300 tbl_indexes.php:199 tbl_indexes.php:224 +#: tbl_change.php:295 tbl_indexes.php:198 tbl_indexes.php:223 msgid "Ignore" msgstr "Ignore" -#: tbl_change.php:725 +#: tbl_change.php:720 msgid " Because of its length,
                            this column might not be editable " msgstr "" -#: tbl_change.php:884 +#: tbl_change.php:835 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:890 +#: tbl_change.php:841 msgid "Binary - do not edit" msgstr "" -#: tbl_change.php:983 +#: tbl_change.php:889 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:1128 +#: tbl_change.php:1026 msgid "Insert as new row" msgstr "درج به عنوان يك سطر جديد" -#: tbl_change.php:1129 +#: tbl_change.php:1027 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:1130 +#: tbl_change.php:1028 msgid "Show insert query" msgstr "" -#: tbl_change.php:1145 +#: tbl_change.php:1043 msgid "Go back to previous page" msgstr "برو به صفحه قبل" -#: tbl_change.php:1146 +#: tbl_change.php:1044 msgid "Insert another new row" msgstr "درج يك سطر جديد ديگر" -#: tbl_change.php:1150 +#: tbl_change.php:1048 msgid "Go back to this page" msgstr "برگرد به این صفحه" -#: tbl_change.php:1158 +#: tbl_change.php:1056 msgid "Edit next row" msgstr "ویرایش کردن ردیف بعدی" -#: tbl_change.php:1169 +#: tbl_change.php:1067 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: tbl_change.php:1207 +#: tbl_change.php:1105 #, php-format msgid "Restart insertion with %s rows" msgstr "" -#: tbl_create.php:57 +#: tbl_create.php:55 #, php-format msgid "Table %s already exists!" msgstr "" -#: tbl_create.php:244 +#: tbl_create.php:241 #, fuzzy, php-format msgid "Table %1$s has been created." msgstr "جدول %s حذف گرديد" @@ -7519,201 +7574,201 @@ msgstr "بازناميدن فهرست به PRIMARY مقدور نمي‌باشد! msgid "No index parts defined!" msgstr "هيچ فهرستي تعريف‌نشده‌است!" -#: tbl_indexes.php:159 +#: tbl_indexes.php:158 msgid "Create a new index" msgstr "ساخت فهرست جديد" -#: tbl_indexes.php:161 +#: tbl_indexes.php:160 msgid "Modify an index" msgstr "اصلاح يك فهرست" -#: tbl_indexes.php:167 +#: tbl_indexes.php:166 msgid "Index name:" msgstr "اسم فهرست :" -#: tbl_indexes.php:173 +#: tbl_indexes.php:172 msgid "Index type:" msgstr "نوع فهرست :" -#: tbl_indexes.php:183 +#: tbl_indexes.php:182 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "(فقط و فقط بايد \"PRIMARY\" نام يك كليد اصلي باشد!)" -#: tbl_indexes.php:250 +#: tbl_indexes.php:249 #, fuzzy, php-format msgid "Add to index  %s column(s)" msgstr "ساخت يك فهرست در %s ستون" -#: tbl_indexes.php:255 tbl_structure.php:588 tbl_structure.php:599 +#: tbl_indexes.php:254 tbl_structure.php:586 tbl_structure.php:597 msgid "Column count has to be larger than zero." msgstr "" -#: tbl_move_copy.php:45 +#: tbl_move_copy.php:44 msgid "Can't move table to same one!" msgstr "" -#: tbl_move_copy.php:47 +#: tbl_move_copy.php:46 msgid "Can't copy table to same one!" msgstr "" -#: tbl_move_copy.php:55 +#: tbl_move_copy.php:54 #, php-format msgid "Table %s has been moved to %s." msgstr "جدول %s به %s انتقال داده‌شد." -#: tbl_move_copy.php:57 +#: tbl_move_copy.php:56 #, php-format msgid "Table %s has been copied to %s." msgstr "جدول %s به %s كپي شد." -#: tbl_move_copy.php:81 +#: tbl_move_copy.php:80 msgid "The table name is empty!" msgstr "نام جدول وارد نشده‌است !" -#: tbl_operations.php:248 +#: tbl_operations.php:246 msgid "Alter table order by" msgstr "تغيير جدول مرتب شده با" -#: tbl_operations.php:257 +#: tbl_operations.php:255 msgid "(singly)" msgstr "(تنها)" -#: tbl_operations.php:277 +#: tbl_operations.php:275 msgid "Move table to (database.table):" msgstr "انتقال جدول به (پايگاه داده.جدول):" -#: tbl_operations.php:335 +#: tbl_operations.php:333 msgid "Table options" msgstr "" -#: tbl_operations.php:339 +#: tbl_operations.php:337 msgid "Rename table to" msgstr "بازناميدن جدول به" -#: tbl_operations.php:510 +#: tbl_operations.php:508 msgid "Copy table to (database.table):" msgstr "كپي كردن جدول به (پايگاه داده.جدول):" -#: tbl_operations.php:557 +#: tbl_operations.php:555 msgid "Switch to copied table" msgstr "" -#: tbl_operations.php:569 +#: tbl_operations.php:567 msgid "Table maintenance" msgstr "نگهداشت جدول" -#: tbl_operations.php:590 +#: tbl_operations.php:588 msgid "Defragment table" msgstr "" -#: tbl_operations.php:629 +#: tbl_operations.php:627 #, fuzzy, php-format msgid "Table %s has been flushed" msgstr "جدول %s حذف گرديد" -#: tbl_operations.php:635 +#: tbl_operations.php:633 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Flush the table (\"FLUSH\")" -#: tbl_operations.php:650 +#: tbl_operations.php:648 #, fuzzy msgid "Partition maintenance" msgstr "نگهداشت جدول" -#: tbl_operations.php:658 +#: tbl_operations.php:656 #, php-format msgid "Partition %s" msgstr "" -#: tbl_operations.php:661 +#: tbl_operations.php:659 msgid "Analyze" msgstr "" -#: tbl_operations.php:662 +#: tbl_operations.php:660 msgid "Check" msgstr "" -#: tbl_operations.php:663 +#: tbl_operations.php:661 msgid "Optimize" msgstr "" -#: tbl_operations.php:664 +#: tbl_operations.php:662 msgid "Rebuild" msgstr "" -#: tbl_operations.php:665 +#: tbl_operations.php:663 #, fuzzy msgid "Repair" msgstr "مرمت جدول" -#: tbl_operations.php:677 +#: tbl_operations.php:675 msgid "Remove partitioning" msgstr "" -#: tbl_operations.php:703 +#: tbl_operations.php:701 msgid "Check referential integrity:" msgstr "" -#: tbl_printview.php:73 +#: tbl_printview.php:72 msgid "Show tables" msgstr "نمايش جدولها" -#: tbl_printview.php:308 tbl_structure.php:655 +#: tbl_printview.php:307 tbl_structure.php:653 msgid "Space usage" msgstr "فضاي استفاده‌شده" -#: tbl_printview.php:312 tbl_structure.php:659 +#: tbl_printview.php:311 tbl_structure.php:657 msgid "Usage" msgstr "استفاده" -#: tbl_printview.php:339 tbl_structure.php:686 +#: tbl_printview.php:338 tbl_structure.php:684 msgid "Effective" msgstr "موثر" -#: tbl_printview.php:364 tbl_structure.php:724 +#: tbl_printview.php:363 tbl_structure.php:722 msgid "Row Statistics" msgstr "آمار سطرها" -#: tbl_printview.php:367 tbl_structure.php:727 +#: tbl_printview.php:366 tbl_structure.php:725 msgid "Statements" msgstr "شرج" -#: tbl_printview.php:378 tbl_structure.php:739 +#: tbl_printview.php:377 tbl_structure.php:737 msgid "static" msgstr "" -#: tbl_printview.php:380 tbl_structure.php:741 +#: tbl_printview.php:379 tbl_structure.php:739 msgid "dynamic" msgstr "پويا" -#: tbl_printview.php:402 tbl_structure.php:784 +#: tbl_printview.php:401 tbl_structure.php:782 msgid "Row length" msgstr "طول سطر" -#: tbl_printview.php:412 tbl_structure.php:792 +#: tbl_printview.php:411 tbl_structure.php:790 msgid " Row size " msgstr " اندازه سطر " -#: tbl_relation.php:278 +#: tbl_relation.php:276 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" -#: tbl_relation.php:404 +#: tbl_relation.php:402 #, fuzzy msgid "Internal relation" msgstr "اروپای غربی" -#: tbl_relation.php:406 +#: tbl_relation.php:404 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: tbl_relation.php:412 +#: tbl_relation.php:410 msgid "Foreign key constraint" msgstr "" @@ -7721,232 +7776,232 @@ msgstr "" msgid "No rows selected" msgstr "" -#: tbl_select.php:130 +#: tbl_select.php:129 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "انجام يك \"پرس و جو با نمونه\" (wildcard: \"%\")" -#: tbl_select.php:136 +#: tbl_select.php:135 #, fuzzy msgid "Operator" msgstr "عمليات" -#: tbl_select.php:267 +#: tbl_select.php:266 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "ستونها را انتخاب نماييد (حداقل يكي)" -#: tbl_select.php:285 +#: tbl_select.php:284 msgid "Add search conditions (body of the \"where\" clause):" msgstr "افزودن شرايط جستجو (بدنه شرط \"where\"):" -#: tbl_select.php:292 +#: tbl_select.php:291 msgid "Number of rows per page" msgstr "تعداد سطرها در هر صفحه" -#: tbl_select.php:298 +#: tbl_select.php:297 msgid "Display order:" msgstr "ترتيب نمايش:" -#: tbl_structure.php:160 +#: tbl_structure.php:159 msgid "Browse distinct values" msgstr "" -#: tbl_structure.php:360 +#: tbl_structure.php:358 #, fuzzy #| msgid "None" msgctxt "None for default" msgid "None" msgstr "خير" -#: tbl_structure.php:373 +#: tbl_structure.php:371 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Column %s has been dropped" msgstr "جدول %s حذف گرديد" -#: tbl_structure.php:384 +#: tbl_structure.php:382 #, php-format msgid "A primary key has been added on %s" msgstr "يك كليد اصلي در %s اضافه شد" -#: tbl_structure.php:399 tbl_structure.php:413 tbl_structure.php:427 +#: tbl_structure.php:397 tbl_structure.php:411 tbl_structure.php:425 #, php-format msgid "An index has been added on %s" msgstr "يك فهرست در %s اضافه گرديد." -#: tbl_structure.php:505 tbl_structure.php:507 +#: tbl_structure.php:503 tbl_structure.php:505 msgid "Relation view" msgstr "" -#: tbl_structure.php:514 tbl_structure.php:516 +#: tbl_structure.php:512 tbl_structure.php:514 msgid "Propose table structure" msgstr "پيشنهاد ساختار جدول" -#: tbl_structure.php:539 +#: tbl_structure.php:537 #, fuzzy msgid "Add column" msgstr "افزودن ستون جديد" -#: tbl_structure.php:553 +#: tbl_structure.php:551 msgid "At End of Table" msgstr "در انتهاي جدول" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At Beginning of Table" msgstr "در ابتداي جدول" -#: tbl_structure.php:555 +#: tbl_structure.php:553 #, php-format msgid "After %s" msgstr "بعد از %s" -#: tbl_structure.php:593 +#: tbl_structure.php:591 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "ساخت يك فهرست در %s ستون" -#: tbl_structure.php:755 +#: tbl_structure.php:753 msgid "partitioned" msgstr "" -#: tbl_tracking.php:113 +#: tbl_tracking.php:109 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:186 +#: tbl_tracking.php:182 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "" -#: tbl_tracking.php:194 +#: tbl_tracking.php:190 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "" -#: tbl_tracking.php:202 +#: tbl_tracking.php:198 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "" -#: tbl_tracking.php:212 +#: tbl_tracking.php:208 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:219 +#: tbl_tracking.php:215 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:220 +#: tbl_tracking.php:216 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:229 +#: tbl_tracking.php:225 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:250 tbl_tracking.php:378 +#: tbl_tracking.php:245 tbl_tracking.php:373 msgid "Close" msgstr "" -#: tbl_tracking.php:261 +#: tbl_tracking.php:256 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:380 +#: tbl_tracking.php:375 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:396 tbl_tracking.php:503 +#: tbl_tracking.php:391 tbl_tracking.php:498 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "" -#: tbl_tracking.php:409 tbl_tracking.php:460 +#: tbl_tracking.php:404 tbl_tracking.php:455 #, fuzzy msgid "Date" msgstr "داده" -#: tbl_tracking.php:410 tbl_tracking.php:461 +#: tbl_tracking.php:405 tbl_tracking.php:456 #, fuzzy msgid "Username" msgstr "نام كاربر:" -#: tbl_tracking.php:411 +#: tbl_tracking.php:406 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:462 +#: tbl_tracking.php:457 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:506 +#: tbl_tracking.php:501 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:507 +#: tbl_tracking.php:502 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:520 +#: tbl_tracking.php:515 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:560 +#: tbl_tracking.php:555 msgid "Show versions" msgstr "" -#: tbl_tracking.php:592 +#: tbl_tracking.php:587 #, fuzzy msgid "Version" msgstr "فارسي" -#: tbl_tracking.php:639 +#: tbl_tracking.php:634 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "" -#: tbl_tracking.php:641 +#: tbl_tracking.php:636 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:652 +#: tbl_tracking.php:647 #, php-format msgid "Activate tracking for %s.%s" msgstr "" -#: tbl_tracking.php:654 +#: tbl_tracking.php:649 msgid "Activate now" msgstr "" -#: tbl_tracking.php:667 +#: tbl_tracking.php:662 #, php-format msgid "Create version %s of %s.%s" msgstr "" -#: tbl_tracking.php:671 +#: tbl_tracking.php:666 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:679 +#: tbl_tracking.php:674 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:687 +#: tbl_tracking.php:682 #, fuzzy msgid "Create version" msgstr "نسخه سرور" @@ -7994,11 +8049,34 @@ msgstr "تنظيمات به هنگام گرديد." msgid "VIEW name" msgstr "" -#: view_operations.php:92 +#: view_operations.php:91 #, fuzzy msgid "Rename view to" msgstr "بازناميدن جدول به" +#~ msgctxt "BLOB repository" +#~ msgid "Enabled" +#~ msgstr "فعال شده" + +#, fuzzy +#~ msgid "Disable" +#~ msgstr "غيرفعال" + +#, fuzzy +#~ msgctxt "BLOB repository" +#~ msgid "Repair" +#~ msgstr "مرمت جدول" + +#, fuzzy +#~| msgid "Disabled" +#~ msgctxt "BLOB repository" +#~ msgid "Disabled" +#~ msgstr "غيرفعال" + +#, fuzzy +#~ msgid "Enable" +#~ msgstr "فعال" + #~ msgid "" #~ "Couldn't load the iconv or recode extension needed for charset " #~ "conversion. Either configure PHP to enable these extensions or disable " diff --git a/po/fi.po b/po/fi.po index 7ca94f488..20daf458d 100644 --- a/po/fi.po +++ b/po/fi.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-21 13:53+0200\n" +"POT-Creation-Date: 2010-07-26 17:18+0200\n" "PO-Revision-Date: 2010-04-30 18:08+0200\n" "Last-Translator: \n" "Language-Team: finnish \n" @@ -14,19 +14,19 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.1\n" -#: browse_foreigners.php:37 browse_foreigners.php:58 -#: libraries/display_tbl.lib.php:416 server_privileges.php:1506 +#: browse_foreigners.php:36 browse_foreigners.php:57 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1510 msgid "Show all" msgstr "Näytä kaikki" -#: browse_foreigners.php:81 libraries/common.lib.php:2313 -#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:393 -#: libraries/export/pdf.php:146 pdf_schema.php:282 pdf_schema.php:1122 -#: pdf_schema.php:1138 +#: browse_foreigners.php:80 libraries/common.lib.php:2318 +#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:392 +#: libraries/export/pdf.php:146 pdf_schema.php:281 pdf_schema.php:1121 +#: pdf_schema.php:1137 msgid "Page number:" msgstr "Sivunumero:" -#: browse_foreigners.php:131 +#: browse_foreigners.php:130 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -36,139 +36,153 @@ msgstr "" "isäntäikkuna on suljettu tai että selaimen tietoturva-asetukset estävät " "ikkunoiden väliset päivitystoiminnot." -#: browse_foreigners.php:149 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2829 -#: libraries/common.lib.php:2836 libraries/db_links.inc.php:74 -#: libraries/tbl_links.inc.php:62 +#: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 +#: db_structure.php:89 db_structure.php:91 db_structure.php:102 +#: db_structure.php:104 libraries/common.lib.php:2834 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Etsi" -#: browse_foreigners.php:152 db_operations.php:384 db_operations.php:428 -#: db_operations.php:498 db_operations.php:608 db_search.php:344 -#: db_structure.php:566 js/messages.php:48 libraries/Config.class.php:1043 -#: libraries/Theme_Manager.class.php:310 +#: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 +#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 +#: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 -#: libraries/common.lib.php:1340 libraries/common.lib.php:2289 +#: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 -#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:275 -#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:531 -#: libraries/display_tbl.lib.php:613 libraries/replication_gui.lib.php:75 +#: libraries/display_export.lib.php:269 libraries/display_import.lib.php:275 +#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 +#: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 #: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:781 -#: main.php:127 navigation.php:231 pdf_pages.php:291 pdf_pages.php:327 -#: pdf_pages.php:529 pmd_pdf.php:115 server_binlog.php:128 -#: server_privileges.php:664 server_privileges.php:1616 -#: server_privileges.php:1963 server_privileges.php:2010 -#: server_privileges.php:2049 server_replication.php:234 -#: server_replication.php:317 server_replication.php:340 -#: server_synchronize.php:1208 tbl_change.php:328 tbl_change.php:1172 -#: tbl_change.php:1209 tbl_indexes.php:253 tbl_operations.php:264 -#: tbl_operations.php:301 tbl_operations.php:498 tbl_operations.php:560 -#: tbl_operations.php:680 tbl_select.php:324 tbl_structure.php:561 -#: tbl_structure.php:596 tbl_tracking.php:394 tbl_tracking.php:511 -#: view_create.php:181 view_operations.php:100 +#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 +#: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 +#: server_privileges.php:663 server_privileges.php:1620 +#: server_privileges.php:1967 server_privileges.php:2014 +#: server_privileges.php:2053 server_replication.php:233 +#: server_replication.php:316 server_replication.php:339 +#: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 +#: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 +#: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 +#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "Siirry" -#: browse_foreigners.php:167 browse_foreigners.php:171 -#: libraries/Index.class.php:441 tbl_tracking.php:319 +#: browse_foreigners.php:166 browse_foreigners.php:170 +#: libraries/Index.class.php:441 tbl_tracking.php:314 msgid "Keyname" msgstr "Avaimen nimi" -#: browse_foreigners.php:168 browse_foreigners.php:170 -#: server_collations.php:54 server_collations.php:66 server_engines.php:58 +#: browse_foreigners.php:167 browse_foreigners.php:169 +#: server_collations.php:54 server_collations.php:66 server_engines.php:57 #: server_status.php:738 msgid "Description" msgstr "Kuvaus" -#: browse_foreigners.php:246 browse_foreigners.php:255 -#: browse_foreigners.php:267 browse_foreigners.php:275 +#: browse_foreigners.php:245 browse_foreigners.php:254 +#: browse_foreigners.php:266 browse_foreigners.php:274 msgid "Use this value" msgstr "Käytä tätä arvoa" -#: db_create.php:45 +#: bs_disp_as_mime_type.php:29 bs_play_media.php:35 +msgid "No blob streaming server configured!" +msgstr "" + +#: bs_disp_as_mime_type.php:35 +#, fuzzy +#| msgid "Failed to write file to disk." +msgid "Failed to fetch headers" +msgstr "Tiedoston kirjoitus levylle epäonnistui." + +#: bs_disp_as_mime_type.php:41 +msgid "Failed to open remote URL" +msgstr "" + +#: db_create.php:44 #, php-format msgid "Database %1$s has been created." msgstr "Tietokanta %1$s on luotu." -#: db_datadict.php:48 db_operations.php:377 +#: db_datadict.php:48 db_operations.php:313 msgid "Database comment: " msgstr "Tietokannan kommentti: " -#: db_datadict.php:164 libraries/tbl_properties.inc.php:723 -#: pdf_schema.php:1235 tbl_operations.php:346 tbl_printview.php:128 +#: db_datadict.php:164 libraries/tbl_properties.inc.php:722 +#: pdf_schema.php:1234 tbl_operations.php:344 tbl_printview.php:127 msgid "Table comments" msgstr "Taulun kommentit" -#: db_datadict.php:173 db_qbe.php:173 libraries/Index.class.php:445 +#: db_datadict.php:173 db_qbe.php:170 libraries/Index.class.php:445 #: libraries/export/htmlword.php:243 libraries/export/latex.php:364 #: libraries/export/odt.php:293 libraries/export/texytext.php:233 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:274 -#: pdf_schema.php:1261 pdf_schema.php:1282 tbl_change.php:306 -#: tbl_indexes.php:188 tbl_printview.php:140 tbl_relation.php:401 -#: tbl_select.php:133 tbl_structure.php:176 tbl_tracking.php:272 -#: tbl_tracking.php:323 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 +#: pdf_schema.php:1260 pdf_schema.php:1281 tbl_change.php:301 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:132 tbl_structure.php:175 tbl_tracking.php:267 +#: tbl_tracking.php:318 #, fuzzy #| msgid "Column names" msgid "Column" msgstr "Sarakkeiden nimet" -#: db_datadict.php:174 db_printview.php:105 libraries/Index.class.php:442 +#: db_datadict.php:174 db_printview.php:104 libraries/Index.class.php:442 #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 #: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:244 #: libraries/export/latex.php:364 libraries/export/odt.php:296 #: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:99 -#: pdf_schema.php:1262 pdf_schema.php:1283 server_privileges.php:2062 -#: tbl_change.php:285 tbl_change.php:312 tbl_printview.php:141 -#: tbl_printview.php:311 tbl_select.php:134 tbl_structure.php:177 -#: tbl_structure.php:658 tbl_tracking.php:273 tbl_tracking.php:320 +#: pdf_schema.php:1261 pdf_schema.php:1282 server_privileges.php:2066 +#: tbl_change.php:280 tbl_change.php:307 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:133 tbl_structure.php:176 +#: tbl_structure.php:656 tbl_tracking.php:268 tbl_tracking.php:315 msgid "Type" msgstr "Tyyppi" #: db_datadict.php:176 libraries/Index.class.php:448 #: libraries/export/htmlword.php:245 libraries/export/latex.php:364 #: libraries/export/odt.php:299 libraries/export/texytext.php:235 -#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1264 -#: pdf_schema.php:1285 tbl_change.php:321 tbl_printview.php:143 -#: tbl_structure.php:180 tbl_tracking.php:275 tbl_tracking.php:326 +#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1263 +#: pdf_schema.php:1284 tbl_change.php:316 tbl_printview.php:142 +#: tbl_structure.php:179 tbl_tracking.php:270 tbl_tracking.php:321 msgid "Null" msgstr "Tyhjä" -#: db_datadict.php:177 db_structure.php:500 libraries/export/htmlword.php:246 +#: db_datadict.php:177 db_structure.php:486 libraries/export/htmlword.php:246 #: libraries/export/latex.php:364 libraries/export/odt.php:302 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:105 -#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 -#: tbl_structure.php:181 tbl_tracking.php:276 +#: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:143 +#: tbl_structure.php:180 tbl_tracking.php:271 msgid "Default" msgstr "Oletusarvo" #: db_datadict.php:181 libraries/export/htmlword.php:248 #: libraries/export/latex.php:366 libraries/export/odt.php:306 -#: libraries/export/texytext.php:238 pdf_schema.php:1267 pdf_schema.php:1288 -#: tbl_printview.php:148 +#: libraries/export/texytext.php:238 pdf_schema.php:1266 pdf_schema.php:1287 +#: tbl_printview.php:147 msgid "Links to" msgstr "Linkitys sarakkeeseen:" -#: db_datadict.php:183 db_printview.php:111 libraries/export/htmlword.php:251 +#: db_datadict.php:183 db_printview.php:110 libraries/export/htmlword.php:251 #: libraries/export/latex.php:49 libraries/export/latex.php:369 #: libraries/export/odt.php:37 libraries/export/odt.php:311 #: libraries/export/sql.php:29 libraries/export/texytext.php:241 -#: libraries/tbl_properties.inc.php:129 pdf_schema.php:1278 -#: pdf_schema.php:1289 tbl_printview.php:150 +#: libraries/tbl_properties.inc.php:128 pdf_schema.php:1277 +#: pdf_schema.php:1288 tbl_printview.php:149 msgid "Comments" msgstr "Kommentit" #: db_datadict.php:266 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/export/htmlword.php:321 #: libraries/export/latex.php:434 libraries/export/odt.php:367 -#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:262 -#: pdf_schema.php:1343 server_privileges.php:1560 server_privileges.php:1571 -#: server_privileges.php:1881 server_privileges.php:1886 -#: server_privileges.php:2179 sql.php:131 sql.php:193 tbl_printview.php:227 -#: tbl_structure.php:349 tbl_tracking.php:336 tbl_tracking.php:341 +#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:261 +#: pdf_schema.php:1342 server_privileges.php:1564 server_privileges.php:1575 +#: server_privileges.php:1885 server_privileges.php:1890 +#: server_privileges.php:2183 sql.php:130 sql.php:192 tbl_printview.php:226 +#: tbl_structure.php:347 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "Ei" @@ -179,17 +193,17 @@ msgstr "Ei" #: libraries/mult_submits.inc.php:49 libraries/mult_submits.inc.php:54 #: libraries/mult_submits.inc.php:59 libraries/mult_submits.inc.php:91 #: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:105 -#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:261 -#: libraries/mult_submits.inc.php:272 pdf_schema.php:1343 -#: server_databases.php:63 server_privileges.php:1557 -#: server_privileges.php:1571 server_privileges.php:1881 -#: server_privileges.php:1884 server_privileges.php:2179 sql.php:192 -#: tbl_printview.php:227 tbl_structure.php:39 tbl_structure.php:349 -#: tbl_tracking.php:334 tbl_tracking.php:339 +#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:260 +#: libraries/mult_submits.inc.php:271 pdf_schema.php:1342 +#: server_databases.php:61 server_privileges.php:1561 +#: server_privileges.php:1575 server_privileges.php:1885 +#: server_privileges.php:1888 server_privileges.php:2183 sql.php:191 +#: tbl_printview.php:226 tbl_structure.php:38 tbl_structure.php:347 +#: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" msgstr "Kyllä" -#: db_datadict.php:321 db_printview.php:265 tbl_printview.php:496 +#: db_datadict.php:321 db_printview.php:264 tbl_printview.php:495 msgid "Print" msgstr "Tulosta" @@ -197,194 +211,154 @@ msgstr "Tulosta" msgid "View dump (schema) of database" msgstr "Tee vedos tietokannasta" -#: db_export.php:32 db_printview.php:95 db_qbe.php:101 db_structure.php:50 -#: db_tracking.php:34 export.php:352 navigation.php:326 +#: db_export.php:32 db_printview.php:94 db_qbe.php:98 db_structure.php:49 +#: db_tracking.php:30 export.php:350 navigation.php:325 msgid "No tables found in database." msgstr "Tietokannassa ei ole tauluja." -#: db_export.php:42 db_search.php:326 server_export.php:26 +#: db_export.php:42 db_search.php:326 server_export.php:24 msgid "Select All" msgstr "Valitse kaikki" -#: db_export.php:44 db_search.php:329 server_export.php:28 +#: db_export.php:44 db_search.php:329 server_export.php:26 msgid "Unselect All" msgstr "Poista valinta kaikista" -#: db_operations.php:37 tbl_create.php:49 +#: db_operations.php:33 tbl_create.php:47 msgid "The database name is empty!" msgstr "Tietokannan nimi on tyhjä!" -#: db_operations.php:235 +#: db_operations.php:231 #, php-format msgid "Database %s has been renamed to %s" msgstr "Tietokannan %s nimi on nyt %s" -#: db_operations.php:239 +#: db_operations.php:235 #, php-format msgid "Database %s has been copied to %s" msgstr "Tietokanta %s on kopioitu tietokantaan %s" -#: db_operations.php:411 +#: db_operations.php:347 msgid "Rename database to" msgstr "Muuta tietokannan nimi" -#: db_operations.php:416 server_processlist.php:56 +#: db_operations.php:352 server_processlist.php:56 msgid "Command" msgstr "Komento" -#: db_operations.php:428 tbl_change.php:1141 +#: db_operations.php:364 tbl_change.php:1039 msgid "and then" msgstr "ja sen jälkeen" -#: db_operations.php:454 +#: db_operations.php:390 msgid "Copy database to" msgstr "Luo tietokannasta toinen tietokanta nimellä" -#: db_operations.php:461 tbl_operations.php:527 tbl_tracking.php:387 +#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Vain rakenne" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:389 +#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Rakenne ja tiedot" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:388 +#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Vain tiedot" -#: db_operations.php:471 +#: db_operations.php:407 msgid "CREATE DATABASE before copying" msgstr "Suorita CREATE DATABASE ennen kopioimista" -#: db_operations.php:474 libraries/export/sql.php:51 +#: db_operations.php:410 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 -#: libraries/export/sql.php:81 tbl_operations.php:535 +#: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "Lisää %s" -#: db_operations.php:478 libraries/export/sql.php:77 tbl_operations.php:298 -#: tbl_operations.php:537 +#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Lisää AUTO_INCREMENT-arvo" -#: db_operations.php:482 tbl_operations.php:544 +#: db_operations.php:418 tbl_operations.php:542 msgid "Add constraints" msgstr "Lisää rajoitteet" -#: db_operations.php:495 +#: db_operations.php:431 msgid "Switch to copied database" msgstr "Siirry kopioituun tietokantaan" -#: db_operations.php:536 -msgid "BLOB Repository" -msgstr "BLOB-tietokanta" - -#: db_operations.php:539 db_tracking.php:75 libraries/common.lib.php:1357 -#: libraries/server_links.inc.php:48 server_processlist.php:58 -#: tbl_tracking.php:595 test/theme.php:100 -msgid "Status" -msgstr "Tila" - -#: db_operations.php:547 -#, fuzzy -#| msgid "Enabled" -msgctxt "BLOB repository" -msgid "Enabled" -msgstr "Päällä" - -#: db_operations.php:551 -msgid "Disable" -msgstr "Poista käytöstä" - -#: db_operations.php:561 -msgid "Damaged" -msgstr "Vioittunut" - -#: db_operations.php:565 -#, fuzzy -#| msgid "Repair" -msgctxt "BLOB repository" -msgid "Repair" -msgstr "Korjaa" - -#: db_operations.php:573 -#, fuzzy -#| msgid "Disabled" -msgctxt "BLOB repository" -msgid "Disabled" -msgstr "Pois päältä" - -#: db_operations.php:577 -msgid "Enable" -msgstr "Ota käyttöön" - -#: db_operations.php:601 libraries/Index.class.php:447 +#: db_operations.php:451 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 -#: server_collations.php:53 server_collations.php:65 server_databases.php:110 -#: tbl_operations.php:362 tbl_select.php:135 tbl_structure.php:178 -#: tbl_structure.php:766 tbl_tracking.php:274 tbl_tracking.php:325 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 +#: server_collations.php:53 server_collations.php:65 server_databases.php:108 +#: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:177 +#: tbl_structure.php:764 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "Aakkosjärjestys" -#: db_operations.php:614 main.php:315 pdf_schema.php:33 -#, php-format +#: db_operations.php:464 pdf_schema.php:32 +#, fuzzy, php-format +#| msgid "" +#| "The additional features for working with linked tables have been " +#| "deactivated. To find out why click %shere%s." msgid "" -"The additional features for working with linked tables have been " -"deactivated. To find out why click %shere%s." +"The phpMyAdmin configuration storage has been deactivated. To find out why " +"click %shere%s." msgstr "" "Linkitettyihin tauluihin liittyvät lisäominaisuudet eivät ole käytössä. " "Katso %slisätietoja%s." -#: db_operations.php:647 +#: db_operations.php:497 msgid "Edit PDF Pages" msgstr "Muokkaa PDF-sivuja" -#: db_printview.php:103 db_tracking.php:71 db_tracking.php:156 +#: db_printview.php:102 db_tracking.php:67 db_tracking.php:152 #: libraries/db_structure.lib.php:37 libraries/export/xml.php:327 -#: libraries/header.inc.php:125 pdf_pages.php:423 server_privileges.php:1657 -#: server_privileges.php:1713 server_privileges.php:1977 -#: server_synchronize.php:422 server_synchronize.php:865 tbl_tracking.php:591 +#: libraries/header.inc.php:125 pdf_pages.php:422 server_privileges.php:1661 +#: server_privileges.php:1717 server_privileges.php:1981 +#: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "Taulu" -#: db_printview.php:104 libraries/db_structure.lib.php:47 +#: db_printview.php:103 libraries/db_structure.lib.php:47 #: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 -#: navigation.php:629 navigation.php:651 server_databases.php:121 -#: tbl_printview.php:392 tbl_structure.php:364 tbl_structure.php:776 +#: navigation.php:628 navigation.php:650 server_databases.php:119 +#: tbl_printview.php:391 tbl_structure.php:362 tbl_structure.php:774 msgid "Rows" msgstr "Kpl rivejä" -#: db_printview.php:108 libraries/db_structure.lib.php:58 tbl_indexes.php:189 +#: db_printview.php:107 libraries/db_structure.lib.php:58 tbl_indexes.php:188 msgid "Size" msgstr "Koko" -#: db_printview.php:161 db_structure.php:456 libraries/export/sql.php:556 +#: db_printview.php:160 db_structure.php:442 libraries/export/sql.php:556 #: libraries/export/sql.php:896 msgid "in use" msgstr "käytössä" -#: db_printview.php:186 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:511 pdf_schema.php:1240 tbl_printview.php:432 -#: tbl_structure.php:808 +#: db_printview.php:185 libraries/db_info.inc.php:86 +#: libraries/export/sql.php:511 pdf_schema.php:1239 tbl_printview.php:431 +#: tbl_structure.php:806 msgid "Creation" msgstr "Luotu" -#: db_printview.php:195 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:516 pdf_schema.php:1245 tbl_printview.php:442 -#: tbl_structure.php:816 +#: db_printview.php:194 libraries/db_info.inc.php:91 +#: libraries/export/sql.php:516 pdf_schema.php:1244 tbl_printview.php:441 +#: tbl_structure.php:814 msgid "Last update" msgstr "Viimeksi päivitetty" -#: db_printview.php:204 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:521 pdf_schema.php:1250 tbl_printview.php:452 -#: tbl_structure.php:824 +#: db_printview.php:203 libraries/db_info.inc.php:96 +#: libraries/export/sql.php:521 pdf_schema.php:1249 tbl_printview.php:451 +#: tbl_structure.php:822 msgid "Last check" msgstr "Viimeksi tarkistettu" -#: db_printview.php:221 db_structure.php:479 +#: db_printview.php:220 db_structure.php:465 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -392,94 +366,94 @@ msgid_plural "%s tables" msgstr[0] "%s taulu(a)" msgstr[1] "%s taulu(a)" -#: db_qbe.php:28 import.php:453 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1980 libraries/sql_query_form.lib.php:138 -#: tbl_operations.php:212 tbl_relation.php:291 tbl_row_action.php:130 -#: view_operations.php:61 +#: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 +#: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "SQL-kyselyn suoritus onnistui" -#: db_qbe.php:41 +#: db_qbe.php:38 msgid "You have to choose at least one column to display" msgstr "Valitse vähintään yksi sarake" -#: db_qbe.php:199 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:865 +#: db_qbe.php:196 libraries/db_structure.lib.php:95 +#: libraries/display_tbl.lib.php:864 msgid "Sort" msgstr "Järjestys" -#: db_qbe.php:208 db_qbe.php:242 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:522 libraries/display_tbl.lib.php:827 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:259 -#: tbl_select.php:311 +#: db_qbe.php:205 db_qbe.php:239 libraries/db_structure.lib.php:102 +#: libraries/display_tbl.lib.php:521 libraries/display_tbl.lib.php:826 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:257 +#: tbl_select.php:310 msgid "Ascending" msgstr "Nouseva" -#: db_qbe.php:209 db_qbe.php:250 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:527 libraries/display_tbl.lib.php:824 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:260 -#: tbl_select.php:312 +#: db_qbe.php:206 db_qbe.php:247 libraries/db_structure.lib.php:110 +#: libraries/display_tbl.lib.php:526 libraries/display_tbl.lib.php:823 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:258 +#: tbl_select.php:311 msgid "Descending" msgstr "Laskeva" -#: db_qbe.php:263 db_tracking.php:77 libraries/display_tbl.lib.php:307 -#: tbl_change.php:275 tbl_tracking.php:596 +#: db_qbe.php:260 db_tracking.php:73 libraries/display_tbl.lib.php:306 +#: tbl_change.php:270 tbl_tracking.php:591 msgid "Show" msgstr "Näytä" -#: db_qbe.php:299 +#: db_qbe.php:296 msgid "Criteria" msgstr "Hakuehdot" -#: db_qbe.php:352 db_qbe.php:434 db_qbe.php:526 db_qbe.php:557 +#: db_qbe.php:349 db_qbe.php:431 db_qbe.php:523 db_qbe.php:554 msgid "Ins" msgstr "Lisää" -#: db_qbe.php:356 db_qbe.php:438 db_qbe.php:523 db_qbe.php:554 +#: db_qbe.php:353 db_qbe.php:435 db_qbe.php:520 db_qbe.php:551 msgid "And" msgstr "Ja" -#: db_qbe.php:365 db_qbe.php:446 db_qbe.php:528 db_qbe.php:559 +#: db_qbe.php:362 db_qbe.php:443 db_qbe.php:525 db_qbe.php:556 msgid "Del" msgstr "Poista" -#: db_qbe.php:369 db_qbe.php:450 db_qbe.php:521 db_qbe.php:552 -#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:778 -#: server_privileges.php:297 tbl_change.php:1027 tbl_indexes.php:249 -#: tbl_select.php:285 +#: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 +#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:777 +#: server_privileges.php:296 tbl_change.php:925 tbl_indexes.php:248 +#: tbl_select.php:284 msgid "Or" msgstr "Tai" -#: db_qbe.php:506 +#: db_qbe.php:503 msgid "Modify" msgstr "Muokkaa" -#: db_qbe.php:583 +#: db_qbe.php:580 #, fuzzy #| msgid "Add/Delete Criteria Row" msgid "Add/Delete criteria rows" msgstr "Lisää tai poista hakuehtoja" -#: db_qbe.php:595 +#: db_qbe.php:592 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Add/Delete columns" msgstr "Lisää tai poista sarakkeita" -#: db_qbe.php:608 db_qbe.php:633 +#: db_qbe.php:605 db_qbe.php:630 msgid "Update Query" msgstr "Päivitä kysely" -#: db_qbe.php:616 +#: db_qbe.php:613 msgid "Use Tables" msgstr "Käytä tauluja" -#: db_qbe.php:639 +#: db_qbe.php:636 #, php-format msgid "SQL query on database %s:" msgstr "Suorita SQL-kysely tietokannassa %s:" -#: db_qbe.php:933 libraries/common.lib.php:1222 +#: db_qbe.php:930 libraries/common.lib.php:1215 msgid "Submit Query" msgstr "Suorita" @@ -519,17 +493,17 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s hakutulosta taulussa %s" msgstr[1] "%s hakutulosta taulussa %s" -#: db_search.php:249 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2831 -#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:49 -#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:466 +#: db_search.php:249 db_structure.php:75 db_structure.php:76 +#: db_structure.php:88 db_structure.php:90 db_structure.php:101 +#: db_structure.php:103 libraries/common.lib.php:2836 +#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 +#: tbl_structure.php:35 tbl_structure.php:47 tbl_structure.php:464 msgid "Browse" msgstr "Selaa" -#: db_search.php:254 libraries/display_tbl.lib.php:1164 -#: libraries/display_tbl.lib.php:2055 libraries/sql_query_form.lib.php:453 -#: pdf_pages.php:285 pdf_pages.php:424 pdf_pages.php:460 pdf_pages.php:488 +#: db_search.php:254 libraries/display_tbl.lib.php:1163 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 msgid "Delete" @@ -569,66 +543,66 @@ msgstr "Tauluista:" msgid "Inside column:" msgstr "Kentän sisältä:" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2830 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:75 +#: db_structure.php:79 db_structure.php:80 db_structure.php:92 +#: db_structure.php:93 db_structure.php:105 db_structure.php:106 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 +#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Lisää rivi" -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2827 libraries/common.lib.php:2834 -#: libraries/db_links.inc.php:62 libraries/export/htmlword.php:22 +#: db_structure.php:81 db_structure.php:94 db_structure.php:107 +#: libraries/common.lib.php:2832 libraries/common.lib.php:2839 +#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 -#: libraries/tbl_links.inc.php:55 pmd_general.php:133 -#: server_privileges.php:593 server_replication.php:314 tbl_tracking.php:268 +#: libraries/tbl_links.inc.php:54 pmd_general.php:133 +#: server_privileges.php:592 server_replication.php:313 tbl_tracking.php:263 msgid "Structure" msgstr "Rakenne" -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:544 db_structure.php:545 db_tracking.php:90 -#: libraries/Index.class.php:482 libraries/common.lib.php:1659 -#: libraries/db_links.inc.php:99 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:126 -#: server_databases.php:351 tbl_structure.php:26 tbl_structure.php:150 -#: tbl_structure.php:151 tbl_structure.php:470 +#: db_structure.php:82 db_structure.php:83 db_structure.php:95 +#: db_structure.php:96 db_structure.php:108 db_structure.php:109 +#: db_structure.php:530 db_structure.php:531 db_tracking.php:86 +#: libraries/Index.class.php:482 libraries/common.lib.php:1663 +#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 +#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 +#: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" msgstr "Tuhoa" -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:542 db_structure.php:543 libraries/common.lib.php:1658 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:104 +#: db_structure.php:84 db_structure.php:85 db_structure.php:97 +#: db_structure.php:98 db_structure.php:110 db_structure.php:111 +#: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 +#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 msgid "Empty" msgstr "Tyhjennä" -#: db_structure.php:315 libraries/tbl_links.inc.php:99 +#: db_structure.php:301 libraries/tbl_links.inc.php:98 #, php-format msgid "Table %s has been emptied" msgstr "Taulu %s on tyhjennetty" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "View %s has been dropped" msgstr "Näkymä %s on poistettu" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "Table %s has been dropped" msgstr "Taulu %s on poistettu" -#: db_structure.php:332 +#: db_structure.php:318 msgid "Tracking is active." msgstr "Seuranta on käytössä." -#: db_structure.php:334 +#: db_structure.php:320 msgid "Tracking is not active." msgstr "Seuranta ei ole käytössä." -#: db_structure.php:419 libraries/display_tbl.lib.php:1943 +#: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -637,160 +611,166 @@ msgstr "" "Tässä näkymässä on vähintään tämän luvun verran rivejä. Katso lisätietoja " "%sohjeista%s." -#: db_structure.php:433 db_structure.php:447 libraries/header.inc.php:125 -#: libraries/tbl_info.inc.php:65 tbl_structure.php:184 test/theme.php:73 +#: db_structure.php:419 db_structure.php:433 libraries/header.inc.php:125 +#: libraries/tbl_info.inc.php:60 tbl_structure.php:183 test/theme.php:73 msgid "View" msgstr "Näkymä" -#: db_structure.php:484 libraries/db_structure.lib.php:40 -#: libraries/server_links.inc.php:69 server_replication.php:32 -#: server_replication.php:163 server_status.php:368 +#: db_structure.php:470 libraries/db_structure.lib.php:40 +#: libraries/server_links.inc.php:69 server_replication.php:31 +#: server_replication.php:162 server_status.php:368 msgid "Replication" msgstr "Replikaatio" -#: db_structure.php:488 +#: db_structure.php:474 msgid "Sum" msgstr "Summa" -#: db_structure.php:495 libraries/StorageEngine.class.php:349 +#: db_structure.php:481 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s on tämän MySQL-palvelimen oletustallennusmoottori." -#: db_structure.php:523 db_structure.php:540 db_structure.php:541 -#: libraries/display_tbl.lib.php:2080 libraries/display_tbl.lib.php:2085 -#: libraries/mult_submits.inc.php:15 server_databases.php:345 -#: server_databases.php:350 server_privileges.php:1588 tbl_structure.php:454 -#: tbl_structure.php:463 +#: db_structure.php:509 db_structure.php:526 db_structure.php:527 +#: libraries/display_tbl.lib.php:2039 libraries/display_tbl.lib.php:2044 +#: libraries/mult_submits.inc.php:15 server_databases.php:343 +#: server_databases.php:348 server_privileges.php:1592 tbl_structure.php:452 +#: tbl_structure.php:461 msgid "With selected:" msgstr "Valitut:" -#: db_structure.php:526 libraries/display_tbl.lib.php:2075 -#: server_databases.php:347 server_privileges.php:569 -#: server_privileges.php:1591 tbl_structure.php:457 +#: db_structure.php:512 libraries/display_tbl.lib.php:2034 +#: server_databases.php:345 server_privileges.php:568 +#: server_privileges.php:1595 tbl_structure.php:455 msgid "Check All" msgstr "Valitse kaikki" -#: db_structure.php:530 libraries/display_tbl.lib.php:2076 -#: libraries/replication_gui.lib.php:35 server_databases.php:349 -#: server_privileges.php:572 server_privileges.php:1595 tbl_structure.php:461 +#: db_structure.php:516 libraries/display_tbl.lib.php:2035 +#: libraries/replication_gui.lib.php:35 server_databases.php:347 +#: server_privileges.php:571 server_privileges.php:1599 tbl_structure.php:459 msgid "Uncheck All" msgstr "Poista valinta kaikista" -#: db_structure.php:535 +#: db_structure.php:521 msgid "Check tables having overhead" msgstr "Valitse taulut, joissa on ylijäämää" -#: db_structure.php:546 db_structure.php:547 db_structure.php:598 -#: libraries/display_tbl.lib.php:2179 libraries/mult_submits.inc.php:27 -#: tbl_structure.php:491 tbl_structure.php:493 +#: db_structure.php:532 db_structure.php:533 db_structure.php:584 +#: libraries/display_tbl.lib.php:2138 libraries/mult_submits.inc.php:27 +#: tbl_structure.php:489 tbl_structure.php:491 msgid "Print view" msgstr "Tulostusversio" -#: db_structure.php:548 db_structure.php:549 libraries/mult_submits.inc.php:41 -#: tbl_operations.php:580 +#: db_structure.php:534 db_structure.php:535 libraries/mult_submits.inc.php:41 +#: tbl_operations.php:578 msgid "Check table" msgstr "Tarkista taulu" -#: db_structure.php:550 db_structure.php:551 libraries/mult_submits.inc.php:46 -#: tbl_operations.php:620 tbl_structure.php:708 tbl_structure.php:710 +#: db_structure.php:536 db_structure.php:537 libraries/mult_submits.inc.php:46 +#: tbl_operations.php:618 tbl_structure.php:706 tbl_structure.php:708 msgid "Optimize table" msgstr "Optimoi taulu" -#: db_structure.php:552 db_structure.php:553 libraries/mult_submits.inc.php:51 -#: tbl_operations.php:610 +#: db_structure.php:538 db_structure.php:539 libraries/mult_submits.inc.php:51 +#: tbl_operations.php:608 msgid "Repair table" msgstr "Korjaa taulu" -#: db_structure.php:554 db_structure.php:555 libraries/mult_submits.inc.php:56 -#: tbl_operations.php:600 +#: db_structure.php:540 db_structure.php:541 libraries/mult_submits.inc.php:56 +#: tbl_operations.php:598 msgid "Analyze table" msgstr "Analysoi taulu" -#: db_structure.php:556 db_structure.php:557 libraries/db_links.inc.php:70 -#: libraries/display_export.lib.php:82 libraries/display_tbl.lib.php:2093 -#: libraries/display_tbl.lib.php:2224 libraries/mult_submits.inc.php:61 -#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:81 -#: pmd_pdf.php:83 pmd_pdf.php:108 server_privileges.php:1372 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 +#: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 +#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 +#: pmd_pdf.php:81 pmd_pdf.php:106 server_privileges.php:1376 #: setup/frames/menu.inc.php:22 tbl_row_action.php:58 msgid "Export" msgstr "Vienti" -#: db_structure.php:605 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:591 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "Tietosanasto" -#: db_tracking.php:65 +#: db_tracking.php:61 msgid "Tracked tables" msgstr "Seurattavat taulut" -#: db_tracking.php:70 libraries/export/htmlword.php:85 +#: db_tracking.php:66 libraries/export/htmlword.php:85 #: libraries/export/latex.php:152 libraries/export/odt.php:112 #: libraries/export/sql.php:339 libraries/export/texytext.php:84 #: libraries/export/xml.php:254 libraries/header.inc.php:105 -#: libraries/header_printview.inc.php:57 server_databases.php:168 -#: server_privileges.php:1652 server_privileges.php:1713 -#: server_privileges.php:1971 server_processlist.php:55 -#: server_synchronize.php:1178 server_synchronize.php:1182 -#: tbl_tracking.php:590 test/theme.php:64 +#: libraries/header_printview.inc.php:57 server_databases.php:166 +#: server_privileges.php:1656 server_privileges.php:1717 +#: server_privileges.php:1975 server_processlist.php:55 +#: server_synchronize.php:1177 server_synchronize.php:1181 +#: tbl_tracking.php:585 test/theme.php:64 msgid "Database" msgstr "Tietokanta" -#: db_tracking.php:72 +#: db_tracking.php:68 msgid "Last version" msgstr "Viimeinen versio" -#: db_tracking.php:73 tbl_tracking.php:593 +#: db_tracking.php:69 tbl_tracking.php:588 msgid "Created" msgstr "Luotu" -#: db_tracking.php:74 tbl_tracking.php:594 +#: db_tracking.php:70 tbl_tracking.php:589 msgid "Updated" msgstr "Päivitetty" -#: db_tracking.php:76 libraries/Index.class.php:439 -#: libraries/db_structure.lib.php:44 server_databases.php:202 -#: server_privileges.php:1534 server_privileges.php:1717 -#: server_privileges.php:2065 tbl_structure.php:186 +#: db_tracking.php:71 libraries/common.lib.php:1361 +#: libraries/server_links.inc.php:48 server_processlist.php:58 +#: tbl_tracking.php:590 test/theme.php:100 +msgid "Status" +msgstr "Tila" + +#: db_tracking.php:72 libraries/Index.class.php:439 +#: libraries/db_structure.lib.php:44 server_databases.php:200 +#: server_privileges.php:1538 server_privileges.php:1721 +#: server_privileges.php:2069 tbl_structure.php:185 msgid "Action" msgstr "Toiminnot" -#: db_tracking.php:87 db_tracking.php:119 +#: db_tracking.php:83 db_tracking.php:115 msgid "Delete tracking data for this table" msgstr "Poista tämän taulun seurantatiedot" -#: db_tracking.php:105 tbl_tracking.php:547 tbl_tracking.php:605 -#: tbl_tracking.php:612 +#: db_tracking.php:101 tbl_tracking.php:542 tbl_tracking.php:600 +#: tbl_tracking.php:607 msgid "active" msgstr "käytössä" -#: db_tracking.php:107 tbl_tracking.php:549 tbl_tracking.php:607 -#: tbl_tracking.php:609 +#: db_tracking.php:103 tbl_tracking.php:544 tbl_tracking.php:602 +#: tbl_tracking.php:604 msgid "not active" msgstr "ei käytössä" -#: db_tracking.php:120 +#: db_tracking.php:116 msgid "Versions" msgstr "Versiot" -#: db_tracking.php:121 tbl_tracking.php:378 tbl_tracking.php:623 +#: db_tracking.php:117 tbl_tracking.php:373 tbl_tracking.php:618 msgid "Tracking report" msgstr "Seurantaraportti" -#: db_tracking.php:122 tbl_tracking.php:250 tbl_tracking.php:623 +#: db_tracking.php:118 tbl_tracking.php:245 tbl_tracking.php:618 msgid "Structure snapshot" msgstr "Rakenteen kuvaus" -#: db_tracking.php:151 +#: db_tracking.php:147 msgid "Untracked tables" msgstr "Seuraamattomat taulut" -#: db_tracking.php:171 db_tracking.php:173 tbl_structure.php:527 -#: tbl_structure.php:529 +#: db_tracking.php:167 db_tracking.php:169 tbl_structure.php:525 +#: tbl_structure.php:527 msgid "Track table" msgstr "Seuraa taulua" -#: db_tracking.php:199 +#: db_tracking.php:195 msgid "Database Log" msgstr "Tietokantaloki" @@ -798,12 +778,12 @@ msgstr "Tietokantaloki" msgid "Selected export type has to be saved in file!" msgstr "Valittu vientityyppi on tallennettava tiedostoon!" -#: export.php:153 export.php:178 export.php:620 +#: export.php:152 export.php:177 export.php:615 #, php-format msgid "Insufficient space to save the file %s." msgstr "Liian vähän tilaa tiedoston %s tallentamiseen." -#: export.php:287 +#: export.php:286 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -811,17 +791,17 @@ msgstr "" "Tiedosto %s on jo olemassa palvelimella, vaihda tiedostonimeä tai tarkista " "korvausasetuksen tila." -#: export.php:291 export.php:295 +#: export.php:290 export.php:294 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Palvelimella ei ole lupaa tallentaa tiedostoa %s." -#: export.php:622 +#: export.php:617 #, php-format msgid "Dump has been saved to file %s." msgstr "Vedos tallennettiin tiedostoon %s." -#: import.php:59 +#: import.php:58 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -830,14 +810,14 @@ msgstr "" "Yritit todennäköisesti lähettää palvelimelle liian suurta tiedostoa. Katso " "tämän rajoituksen muuttamisesta lisätietoja %sohjeista%s." -#: import.php:278 import.php:331 libraries/File.class.php:840 -#: libraries/File.class.php:950 +#: import.php:277 import.php:330 libraries/File.class.php:566 +#: libraries/File.class.php:676 msgid "File could not be read" msgstr "Tiedostoa ei voi lukea" -#: import.php:286 import.php:295 import.php:314 import.php:323 -#: libraries/File.class.php:1020 libraries/File.class.php:1028 -#: libraries/File.class.php:1044 libraries/File.class.php:1052 +#: import.php:285 import.php:294 import.php:313 import.php:322 +#: libraries/File.class.php:746 libraries/File.class.php:754 +#: libraries/File.class.php:770 libraries/File.class.php:778 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -847,7 +827,7 @@ msgstr "" "kyseiselle muodolle ei joko ole toteutettu, tai se on asetuksin poistettu " "käytöstä." -#: import.php:336 +#: import.php:335 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -856,29 +836,29 @@ msgstr "" "Tuotavia tietoja ei ole. Tiedostonimeä ei joko annettu tai tiedoston koko " "ylitti PHP:n asetusten salliman enimmäiskoon. Katso FAQ 1.16." -#: import.php:371 libraries/display_import.lib.php:23 +#: import.php:370 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "Tuontiin tarvittavaa lisäosaa ei voida tuoda, tarkista asetukset!" -#: import.php:396 +#: import.php:395 msgid "The bookmark has been deleted." msgstr "Kirjanmerkki on poistettu." -#: import.php:400 +#: import.php:399 msgid "Showing bookmark" msgstr "Näytetään kirjanmerkki" -#: import.php:402 sql.php:625 +#: import.php:401 sql.php:618 #, php-format msgid "Bookmark %s created" msgstr "Kirjanmerkki %s luotu" -#: import.php:408 import.php:414 +#: import.php:407 import.php:413 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Tuonti onnistui, %d kyselyä suoritettu." -#: import.php:423 +#: import.php:422 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -886,7 +866,7 @@ msgstr "" "Skriptin suoritus aikakatkaistiin. Jos haluat suorittaa tuonnin loppuun, " "lähetä sama tiedosto uudestaan, ja tuonti jatkuu." -#: import.php:425 +#: import.php:424 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -895,19 +875,19 @@ msgstr "" "tarkoittaa yleensä sitä, että phpMyAdmin ei voi ajaa tätä tuontia loppuun " "asti ellei PHP:n suoritusaikarajaa nosteta." -#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:240 +#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:239 #: user_password.php:110 msgid "Back" msgstr "Takaisin" -#: index.php:188 +#: index.php:183 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "PhpMyAdmin toimii parhaiten kehyksiä tukevalla selaimella." -#: js/messages.php:25 server_synchronize.php:344 server_synchronize.php:356 -#: server_synchronize.php:372 server_synchronize.php:379 -#: server_synchronize.php:738 server_synchronize.php:766 -#: server_synchronize.php:794 server_synchronize.php:806 +#: js/messages.php:25 server_synchronize.php:343 server_synchronize.php:355 +#: server_synchronize.php:371 server_synchronize.php:378 +#: server_synchronize.php:737 server_synchronize.php:765 +#: server_synchronize.php:793 server_synchronize.php:805 msgid "Click to select" msgstr "Valitse painamalla" @@ -915,15 +895,15 @@ msgstr "Valitse painamalla" msgid "Click to unselect" msgstr "Poista valinta painamalla" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:88 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:87 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" -kyselyjen käyttö on estetty." -#: js/messages.php:30 libraries/mult_submits.inc.php:257 sql.php:187 +#: js/messages.php:30 libraries/mult_submits.inc.php:256 sql.php:186 msgid "Do you really want to " msgstr "Haluatko varmasti " -#: js/messages.php:31 libraries/mult_submits.inc.php:257 sql.php:171 +#: js/messages.php:31 libraries/mult_submits.inc.php:256 sql.php:170 msgid "You are about to DESTROY a complete database!" msgstr "Olet aikeissasi HÄVITTÄÄ kokonaisen tietokannan!" @@ -953,11 +933,11 @@ msgstr "Palvelimen nimi puuttuu!" msgid "The user name is empty!" msgstr "Käyttäjän nimi puuttuu!" -#: js/messages.php:44 server_privileges.php:1228 user_password.php:65 +#: js/messages.php:44 server_privileges.php:1229 user_password.php:65 msgid "The password is empty!" msgstr "Salasana puuttuu!" -#: js/messages.php:45 server_privileges.php:1226 user_password.php:68 +#: js/messages.php:45 server_privileges.php:1227 user_password.php:68 msgid "The passwords aren't the same!" msgstr "Salasanat eivät ole samat!" @@ -965,27 +945,27 @@ msgstr "Salasanat eivät ole samat!" msgid "Cancel" msgstr "Peruuta" -#: js/messages.php:52 pmd_save_pos.php:53 +#: js/messages.php:52 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "Muutokset tallennettu" -#: js/messages.php:53 pmd_relation_upd.php:48 +#: js/messages.php:53 pmd_relation_upd.php:47 msgid "Relation deleted" msgstr "Relaatio poistettu" -#: js/messages.php:54 pmd_relation_new.php:63 +#: js/messages.php:54 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "FOREIGN KEY -relaatio lisätty" -#: js/messages.php:55 pmd_relation_new.php:85 +#: js/messages.php:55 pmd_relation_new.php:84 msgid "Internal relation added" msgstr "Sisäinen relaatio luotu" -#: js/messages.php:56 pmd_relation_new.php:62 pmd_relation_new.php:87 +#: js/messages.php:56 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "Virhe: Relaatiota ei luotu." -#: js/messages.php:57 pmd_relation_new.php:30 +#: js/messages.php:57 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "Virhe: relaatio on jo olemassa." @@ -993,13 +973,13 @@ msgstr "Virhe: relaatio on jo olemassa." msgid "Error saving coordinates for Designer." msgstr "Virhe tallennettaessa koordinaatteja Suunnittelijaan." -#: js/messages.php:59 libraries/relation.lib.php:94 -#: libraries/relation.lib.php:106 +#: js/messages.php:59 libraries/relation.lib.php:89 +#: libraries/relation.lib.php:101 msgid "General relation features" msgstr "Yleiset relaatio-ominaisuudet" -#: js/messages.php:59 libraries/relation.lib.php:88 -#: libraries/relation.lib.php:95 +#: js/messages.php:59 libraries/relation.lib.php:83 +#: libraries/relation.lib.php:90 msgid "Disabled" msgstr "Pois päältä" @@ -1015,7 +995,7 @@ msgstr "Valitse liiteavain" msgid "Please select the primary key or a unique key" msgstr "Valitse perusavain tai uniikki avain" -#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:547 +#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" @@ -1046,10 +1026,10 @@ msgid "Prev" msgstr "Edellinen" #. l10n: Display text for next month link in calendar -#: js/messages.php:81 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:337 -#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:422 -#: tbl_structure.php:800 +#: js/messages.php:81 libraries/common.lib.php:2358 +#: libraries/common.lib.php:2361 libraries/display_tbl.lib.php:336 +#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 +#: tbl_structure.php:798 msgid "Next" msgstr "Seuraava" @@ -1123,27 +1103,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1562 +#: js/messages.php:101 libraries/common.lib.php:1566 msgid "Jan" msgstr "Tammi" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1564 +#: js/messages.php:103 libraries/common.lib.php:1568 msgid "Feb" msgstr "Helmi" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1566 +#: js/messages.php:105 libraries/common.lib.php:1570 msgid "Mar" msgstr "Maalis" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1568 +#: js/messages.php:107 libraries/common.lib.php:1572 msgid "Apr" msgstr "Huhti" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1570 +#: js/messages.php:109 libraries/common.lib.php:1574 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1151,37 +1131,37 @@ msgid "May" msgstr "Touko" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1572 +#: js/messages.php:111 libraries/common.lib.php:1576 msgid "Jun" msgstr "Kesä" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1574 +#: js/messages.php:113 libraries/common.lib.php:1578 msgid "Jul" msgstr "Heinä" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1576 +#: js/messages.php:115 libraries/common.lib.php:1580 msgid "Aug" msgstr "Elo" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1578 +#: js/messages.php:117 libraries/common.lib.php:1582 msgid "Sep" msgstr "Syys" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1580 +#: js/messages.php:119 libraries/common.lib.php:1584 msgid "Oct" msgstr "Loka" #. l10n: Short month name -#: js/messages.php:121 libraries/common.lib.php:1582 +#: js/messages.php:121 libraries/common.lib.php:1586 msgid "Nov" msgstr "Marras" #. l10n: Short month name -#: js/messages.php:123 libraries/common.lib.php:1584 +#: js/messages.php:123 libraries/common.lib.php:1588 msgid "Dec" msgstr "Joulu" @@ -1222,37 +1202,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1587 +#: js/messages.php:136 libraries/common.lib.php:1591 msgid "Sun" msgstr "Su" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1589 +#: js/messages.php:138 libraries/common.lib.php:1593 msgid "Mon" msgstr "Ma" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1591 +#: js/messages.php:140 libraries/common.lib.php:1595 msgid "Tue" msgstr "Ti" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1593 +#: js/messages.php:142 libraries/common.lib.php:1597 msgid "Wed" msgstr "Ke" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1595 +#: js/messages.php:144 libraries/common.lib.php:1599 msgid "Thu" msgstr "To" #. l10n: Short week day name -#: js/messages.php:146 libraries/common.lib.php:1597 +#: js/messages.php:146 libraries/common.lib.php:1601 msgid "Fri" msgstr "Pe" #. l10n: Short week day name -#: js/messages.php:148 libraries/common.lib.php:1599 +#: js/messages.php:148 libraries/common.lib.php:1603 msgid "Sat" msgstr "La" @@ -1332,18 +1312,13 @@ msgstr "sekunnissa" msgid "Font size" msgstr "Fonttikoko" -#: libraries/File.class.php:336 libraries/File.class.php:424 -#: libraries/File.class.php:561 libraries/File.class.php:700 -msgid "Unknown error in file upload." -msgstr "Tuntematon virhe tiedostoa lähetettäessä." - -#: libraries/File.class.php:406 +#: libraries/File.class.php:315 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:409 +#: libraries/File.class.php:318 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -1351,59 +1326,63 @@ msgstr "" "Lähetetyn tiedoston koko ylittää HTML-lomakkeessa määritetyn MAX_FILE_SIZE-" "asetuksen arvon." -#: libraries/File.class.php:412 +#: libraries/File.class.php:321 msgid "The uploaded file was only partially uploaded." msgstr "Tiedosto lähetettiin vain osittain." -#: libraries/File.class.php:415 +#: libraries/File.class.php:324 msgid "Missing a temporary folder." msgstr "Tilapäiskansio puuttuu." -#: libraries/File.class.php:418 +#: libraries/File.class.php:327 msgid "Failed to write file to disk." msgstr "Tiedoston kirjoitus levylle epäonnistui." -#: libraries/File.class.php:421 +#: libraries/File.class.php:330 msgid "File upload stopped by extension." msgstr "Laajennus keskeytti tiedoston lähetyksen." -#: libraries/File.class.php:898 +#: libraries/File.class.php:333 +msgid "Unknown error in file upload." +msgstr "Tuntematon virhe tiedostoa lähetettäessä." + +#: libraries/File.class.php:624 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:427 tbl_relation.php:528 +#: libraries/Index.class.php:427 tbl_relation.php:526 msgid "No index defined!" msgstr "Indeksiä ei ole määritelty!" -#: libraries/Index.class.php:432 server_databases.php:131 tbl_tracking.php:315 +#: libraries/Index.class.php:432 server_databases.php:129 tbl_tracking.php:310 msgid "Indexes" msgstr "Indeksit" #: libraries/Index.class.php:443 libraries/mult_submits.inc.php:102 -#: libraries/tbl_properties.inc.php:518 tbl_structure.php:32 -#: tbl_structure.php:154 tbl_structure.php:158 tbl_structure.php:473 -#: tbl_tracking.php:321 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:31 +#: tbl_structure.php:153 tbl_structure.php:157 tbl_structure.php:471 +#: tbl_tracking.php:316 msgid "Unique" msgstr "Uniikki" -#: libraries/Index.class.php:444 tbl_tracking.php:322 +#: libraries/Index.class.php:444 tbl_tracking.php:317 msgid "Packed" msgstr "Pakattu" -#: libraries/Index.class.php:446 tbl_tracking.php:324 +#: libraries/Index.class.php:446 tbl_tracking.php:319 msgid "Cardinality" msgstr "Kardinaliteetti" -#: libraries/Index.class.php:449 tbl_tracking.php:278 tbl_tracking.php:327 +#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322 msgid "Comment" msgstr "Kommentti" #: libraries/Index.class.php:465 libraries/common.lib.php:609 -#: libraries/common.lib.php:1198 libraries/display_tbl.lib.php:1116 +#: libraries/common.lib.php:1191 libraries/display_tbl.lib.php:1115 #: libraries/import.lib.php:1119 libraries/import.lib.php:1143 -#: pdf_pages.php:284 setup/frames/index.inc.php:124 +#: pdf_pages.php:283 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:349 tbl_row_action.php:68 msgid "Edit" msgstr "Muokkaa" @@ -1427,15 +1406,15 @@ msgstr "" "poistaa." #: libraries/List_Database.class.php:430 libraries/server_links.inc.php:40 -#: server_databases.php:87 server_privileges.php:1652 +#: server_databases.php:85 server_privileges.php:1656 #: setup/lib/messages.inc.php:107 test/theme.php:92 msgid "Databases" msgstr "Tietokannat" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:259 libraries/import.lib.php:134 pdf_schema.php:31 -#: pdf_schema.php:231 tbl_change.php:1023 tbl_operations.php:212 -#: tbl_relation.php:289 view_operations.php:61 +#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 +#: tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Virhe" @@ -1463,41 +1442,41 @@ msgid_plural "%1$d rows inserted." msgstr[0] "%1$d rivi(ä) lisätty." msgstr[1] "%1$d rivi(ä) lisätty." -#: libraries/StorageEngine.class.php:196 +#: libraries/StorageEngine.class.php:194 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:352 +#: libraries/StorageEngine.class.php:354 #, php-format msgid "%s is available on this MySQL server." msgstr "%s on käytettävissä tällä MySQL-palvelimella." -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:357 #, 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:359 +#: libraries/StorageEngine.class.php:361 #, 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:1018 +#: libraries/Table.class.php:1017 msgid "Invalid database" msgstr "Virheellinen tietokanta" -#: libraries/Table.class.php:1032 tbl_get_field.php:25 +#: libraries/Table.class.php:1031 tbl_get_field.php:25 msgid "Invalid table name" msgstr "Virheellinen taulun nimi" -#: libraries/Table.class.php:1047 +#: libraries/Table.class.php:1046 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "Virhe annettaessa taululle %1$s nimeä %2$s" -#: libraries/Table.class.php:1131 +#: libraries/Table.class.php:1129 #, php-format msgid "Table %s has been renamed to %s" msgstr "Taulun %s nimi on nyt %s" @@ -1515,22 +1494,22 @@ msgstr "Esikatselu ei ole saatavilla." msgid "take it" msgstr "käytä tätä" -#: libraries/Theme_Manager.class.php:114 +#: 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:152 +#: libraries/Theme_Manager.class.php:147 #, php-format msgid "Theme %s not found!" msgstr "Teemaa %s ei löydy!" -#: libraries/Theme_Manager.class.php:220 +#: 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:296 test/theme.php:160 themes.php:20 +#: libraries/Theme_Manager.class.php:291 test/theme.php:160 themes.php:20 #: themes.php:40 msgid "Theme / Style" msgstr "Teema/tyyli" @@ -1648,19 +1627,19 @@ msgstr "Kelvollista todennusavainta ei ole asetettu" msgid "Authenticating..." msgstr "Todennetaan..." -#: libraries/blobstreaming.lib.php:689 +#: libraries/blobstreaming.lib.php:340 msgid "View image" msgstr "Näytä kuva" -#: libraries/blobstreaming.lib.php:693 +#: libraries/blobstreaming.lib.php:344 msgid "Play audio" msgstr "Toista ääni" -#: libraries/blobstreaming.lib.php:698 +#: libraries/blobstreaming.lib.php:349 msgid "View video" msgstr "Näytä video" -#: libraries/blobstreaming.lib.php:702 +#: libraries/blobstreaming.lib.php:353 msgid "Download file" msgstr "Lataa tiedosto" @@ -1712,7 +1691,7 @@ msgstr "Palvelin" msgid "Invalid authentication method set in configuration:" msgstr "Asetuksissa on virheellinen todennustapa:" -#: libraries/common.inc.php:909 +#: libraries/common.inc.php:908 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Sinun tulisi päivittää versioon %s %s tai sitä uudempaan." @@ -1739,7 +1718,8 @@ msgstr "Lähetetty" #: libraries/common.lib.php:425 libraries/common.lib.php:427 #: libraries/common.lib.php:429 libraries/common.lib.php:445 #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 -#: libraries/display_export.lib.php:163 libraries/relation.lib.php:84 +#: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 +#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 #: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" @@ -1754,150 +1734,150 @@ msgstr "SQL-kysely" msgid "MySQL said: " msgstr "MySQL ilmoittaa: " -#: libraries/common.lib.php:1136 +#: libraries/common.lib.php:1129 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "Failed to connect to SQL validator!" msgstr "MySQL-palvelimeen ei voitu yhdistää" -#: libraries/common.lib.php:1174 setup/lib/messages.inc.php:350 +#: libraries/common.lib.php:1167 setup/lib/messages.inc.php:350 msgid "Explain SQL" msgstr "Selitä SQL-kysely" -#: libraries/common.lib.php:1177 +#: libraries/common.lib.php:1170 msgid "Skip Explain SQL" msgstr "Älä selitä SQL-kyselyä" -#: libraries/common.lib.php:1211 +#: libraries/common.lib.php:1204 msgid "Without PHP Code" msgstr "Kätke PHP-koodi" -#: libraries/common.lib.php:1214 setup/lib/messages.inc.php:352 +#: libraries/common.lib.php:1207 setup/lib/messages.inc.php:352 msgid "Create PHP Code" msgstr "Näytä PHP-koodi" -#: libraries/common.lib.php:1232 server_status.php:451 +#: libraries/common.lib.php:1225 server_status.php:451 #: setup/lib/messages.inc.php:351 msgid "Refresh" msgstr "Päivitä" -#: libraries/common.lib.php:1241 +#: libraries/common.lib.php:1234 msgid "Skip Validate SQL" msgstr "Älä tarkista SQL-kyselyä" -#: libraries/common.lib.php:1244 setup/lib/messages.inc.php:353 +#: libraries/common.lib.php:1237 setup/lib/messages.inc.php:353 msgid "Validate SQL" msgstr "Tarkista SQL-lause" -#: libraries/common.lib.php:1283 +#: libraries/common.lib.php:1287 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1285 +#: libraries/common.lib.php:1289 #, fuzzy #| msgid "Engines" msgid "Inline" msgstr "Moottorit" -#: libraries/common.lib.php:1339 libraries/common.lib.php:1354 +#: libraries/common.lib.php:1343 libraries/common.lib.php:1358 msgid "Profiling" msgstr "Profilointi" -#: libraries/common.lib.php:1358 libraries/tbl_triggers.lib.php:27 +#: libraries/common.lib.php:1362 libraries/tbl_triggers.lib.php:27 #: server_processlist.php:57 msgid "Time" msgstr "Aika" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "B" msgstr "tavua" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "KiB" msgstr "kt" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "MiB" msgstr "Mt" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "GiB" msgstr "Gt" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "TiB" msgstr "Tt" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "PiB" msgstr "Pt" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "EiB" msgstr "Et" #. l10n: Thousands separator -#: libraries/common.lib.php:1424 +#: libraries/common.lib.php:1428 msgid "," msgstr " " #. l10n: Decimal separator -#: libraries/common.lib.php:1426 +#: libraries/common.lib.php:1430 msgid "." msgstr "," #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1603 +#: libraries/common.lib.php:1607 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%d.%m.%Y klo %H:%M" -#: libraries/common.lib.php:1909 +#: libraries/common.lib.php:1913 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s päivää, %s tuntia, %s minuuttia ja %s sekuntia" -#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 -#: libraries/display_tbl.lib.php:289 server_status.php:718 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 +#: libraries/display_tbl.lib.php:288 server_status.php:718 msgid "Begin" msgstr "Alkuun" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 -#: libraries/display_tbl.lib.php:290 server_binlog.php:154 +#: libraries/common.lib.php:2328 libraries/common.lib.php:2331 +#: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "Edellinen" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 -#: libraries/display_tbl.lib.php:352 +#: libraries/common.lib.php:2359 libraries/common.lib.php:2362 +#: libraries/display_tbl.lib.php:351 msgid "End" msgstr "Loppu" -#: libraries/common.lib.php:2429 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "Siirry tietokantaan "%s"." -#: libraries/common.lib.php:2448 +#: libraries/common.lib.php:2453 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Toimintoon %s vaikuttaa tunnettu vika, katso %s" -#: libraries/common.lib.php:2828 libraries/common.lib.php:2835 -#: libraries/db_links.inc.php:67 libraries/export/sql.php:24 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 +#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 -#: libraries/tbl_links.inc.php:59 querywindow.php:89 test/theme.php:96 +#: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2837 libraries/db_links.inc.php:103 -#: libraries/tbl_links.inc.php:94 libraries/tbl_links.inc.php:116 -#: view_operations.php:88 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: view_operations.php:87 msgid "Operations" msgstr "Toiminnot" -#: libraries/core.lib.php:282 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1913,38 +1893,38 @@ msgstr "Tapahtumat" msgid "Name" msgstr "Nimi" -#: libraries/db_links.inc.php:44 +#: libraries/db_links.inc.php:43 #, php-format msgid "Database %s has been dropped." msgstr "Tietokanta %s on poistettu." -#: libraries/db_links.inc.php:56 libraries/db_links.inc.php:57 -#: libraries/db_links.inc.php:58 +#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 +#: libraries/db_links.inc.php:57 msgid "Database seems to be empty!" msgstr "Tietokanta on tyhjä!" -#: libraries/db_links.inc.php:80 libraries/relation.lib.php:142 -#: libraries/tbl_links.inc.php:68 +#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "Seuranta" -#: libraries/db_links.inc.php:85 +#: libraries/db_links.inc.php:84 msgid "Query" msgstr "Haku" -#: libraries/db_links.inc.php:90 libraries/relation.lib.php:138 +#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 msgid "Designer" msgstr "Suunnittelija" -#: libraries/db_links.inc.php:97 libraries/server_links.inc.php:87 -#: libraries/tbl_links.inc.php:90 pmd_pdf.php:83 pmd_pdf.php:109 +#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Tuonti" -#: libraries/db_links.inc.php:110 libraries/server_links.inc.php:65 -#: server_privileges.php:111 server_privileges.php:1714 -#: server_privileges.php:2063 test/theme.php:116 +#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: server_privileges.php:110 server_privileges.php:1718 +#: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" msgstr "Käyttöoikeudet" @@ -1956,14 +1936,14 @@ msgstr "Rutiinit" msgid "Return type" msgstr "Paluutyyppi" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1847 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1806 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "Saattaa olla summittainen. Katso FAQ 3.11" -#: libraries/db_structure.lib.php:60 server_databases.php:141 -#: tbl_printview.php:334 tbl_structure.php:681 +#: libraries/db_structure.lib.php:60 server_databases.php:139 +#: tbl_printview.php:333 tbl_structure.php:679 msgid "Overhead" msgstr "Ylijäämä" @@ -1983,7 +1963,7 @@ msgstr "" "(tai paikallisen MySQL-palvelimen pistokkeen asetuksia ei ole määritelty " "oikein)" -#: libraries/dbi/mysql.dbi.lib.php:358 tbl_structure.php:607 +#: libraries/dbi/mysql.dbi.lib.php:358 tbl_structure.php:605 msgid "Details..." msgstr "Lisätiedot..." @@ -1993,22 +1973,22 @@ msgid "Change password" msgstr "Vaihda salasana" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:807 +#: libraries/replication_gui.lib.php:347 server_privileges.php:806 msgid "No Password" msgstr "Ei salasanaa" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1530 server_synchronize.php:1174 +#: libraries/replication_gui.lib.php:351 server_privileges.php:795 +#: server_privileges.php:799 server_privileges.php:810 +#: server_privileges.php:1534 server_synchronize.php:1173 msgid "Password" msgstr "Salasana" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:815 server_privileges.php:818 +#: server_privileges.php:814 server_privileges.php:817 msgid "Re-type" msgstr "Kirjoita uudelleen" @@ -2031,8 +2011,8 @@ msgstr "Luo uusi tietokanta" msgid "Create" msgstr "Luo" -#: libraries/display_create_database.lib.php:39 server_privileges.php:113 -#: server_privileges.php:1419 server_replication.php:34 +#: libraries/display_create_database.lib.php:39 server_privileges.php:112 +#: server_privileges.php:1423 server_replication.php:33 msgid "No Privileges" msgstr "Ei käyttöoikeuksia" @@ -2053,50 +2033,50 @@ msgstr "Luo uusi taulu tietokantaan %s" msgid "Number of columns" msgstr "Kenttien määrä" -#: libraries/display_export.lib.php:41 +#: libraries/display_export.lib.php:35 msgid "Could not load export plugins, please check your installation!" msgstr "Vientiin tarvittavia lisäosia ei voitu ladata; tarkista asetukset!" -#: libraries/display_export.lib.php:106 +#: libraries/display_export.lib.php:100 #, fuzzy, php-format #| msgid "Dump %s row(s) starting at record # %s" msgid "Dump %s row(s) starting at row # %s" msgstr "Tee vedos %s rivistä, alkaen riviltä: %s." -#: libraries/display_export.lib.php:114 +#: libraries/display_export.lib.php:108 msgid "Dump all rows" msgstr "Vedosta kaikki rivit" -#: libraries/display_export.lib.php:124 setup/lib/messages.inc.php:79 +#: libraries/display_export.lib.php:118 setup/lib/messages.inc.php:79 msgid "Save as file" msgstr "Tallenna tiedostoon" -#: libraries/display_export.lib.php:133 +#: libraries/display_export.lib.php:127 #, php-format msgid "Save on server in %s directory" msgstr "Tallenna palvelimelle hakemistoon %s" -#: libraries/display_export.lib.php:141 setup/lib/messages.inc.php:87 +#: libraries/display_export.lib.php:135 setup/lib/messages.inc.php:87 msgid "Overwrite existing file(s)" msgstr "Korvaa jo olemassa oleva(t) tiedosto(t)" -#: libraries/display_export.lib.php:147 +#: libraries/display_export.lib.php:141 msgid "File name template" msgstr "Tiedostonimen pohja" -#: libraries/display_export.lib.php:151 +#: libraries/display_export.lib.php:145 msgid "server name" msgstr "palvelimen nimi" -#: libraries/display_export.lib.php:154 +#: libraries/display_export.lib.php:148 msgid "database name" msgstr "tietokannan nimi" -#: libraries/display_export.lib.php:157 +#: libraries/display_export.lib.php:151 msgid "table name" msgstr "taulun nimi" -#: libraries/display_export.lib.php:161 +#: libraries/display_export.lib.php:155 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2107,39 +2087,39 @@ msgstr "" "ajanmuodostostusmerkkijonoja voi käyttää. Lisäksi tapahtuu seuraavat " "muutokset: %3$s. Muu teksti pysyy alkuperäisenä." -#: libraries/display_export.lib.php:202 +#: libraries/display_export.lib.php:196 msgid "remember template" msgstr "muista pohja" -#: libraries/display_export.lib.php:210 libraries/display_import.lib.php:177 +#: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 #: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 msgid "Character set of the file:" msgstr "Tiedoston merkistö:" -#: libraries/display_export.lib.php:235 setup/lib/messages.inc.php:81 +#: libraries/display_export.lib.php:229 setup/lib/messages.inc.php:81 msgid "Compression" msgstr "Pakkaus" -#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:196 -#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:529 -#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:574 -#: server_privileges.php:1867 server_processlist.php:74 +#: libraries/display_export.lib.php:234 libraries/display_import.lib.php:196 +#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:528 +#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:573 +#: server_privileges.php:1871 server_processlist.php:74 msgid "None" msgstr "Ei mitään" -#: libraries/display_export.lib.php:247 +#: libraries/display_export.lib.php:241 msgid "\"zipped\"" msgstr "\"zip-pakattu\"" -#: libraries/display_export.lib.php:253 +#: libraries/display_export.lib.php:247 msgid "\"gzipped\"" msgstr "\"gzip-pakkaus\"" -#: libraries/display_export.lib.php:259 +#: libraries/display_export.lib.php:253 msgid "\"bzipped\"" msgstr "\"bzip-pakkaus\"" -#: libraries/display_export.lib.php:274 libraries/export/sql.php:42 +#: libraries/display_export.lib.php:268 libraries/export/sql.php:42 #: libraries/import/sql.php:31 msgid "SQL compatibility mode" msgstr "SQL-yhteensopiva tila" @@ -2179,12 +2159,12 @@ msgid "File uploads are not allowed on this server." msgstr "Tällä palvelimella ei ole sallittu tiedostojen lähetystä." #: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 -#: tbl_change.php:1024 +#: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "Tiedostojen lähetykseen valittua hakemistoa ei voida käyttää" #: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 -#: tbl_change.php:1027 +#: tbl_change.php:925 msgid "web server upload directory" msgstr "palvelimen lähetyshakemisto" @@ -2270,43 +2250,43 @@ msgstr "Paperin koko" msgid "Language" msgstr "Kieli" -#: libraries/display_tbl.lib.php:303 +#: libraries/display_tbl.lib.php:302 #, php-format msgid "%d is not valid row number." msgstr "%d on virheellinen rivinumero." -#: libraries/display_tbl.lib.php:309 +#: libraries/display_tbl.lib.php:308 #, fuzzy #| msgid "row(s) starting from record #" msgid "row(s) starting from row #" msgstr "riviä alkaen rivistä" -#: libraries/display_tbl.lib.php:315 +#: libraries/display_tbl.lib.php:314 msgid "horizontal" msgstr "vaakatasossa" -#: libraries/display_tbl.lib.php:316 +#: libraries/display_tbl.lib.php:315 msgid "horizontal (rotated headers)" msgstr "vaakatasossa (kierretyt otsikot)" -#: libraries/display_tbl.lib.php:317 +#: libraries/display_tbl.lib.php:316 msgid "vertical" msgstr "pystysuorassa" -#: libraries/display_tbl.lib.php:323 +#: libraries/display_tbl.lib.php:322 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "%s, otsikoita toistetaan %s:n rivin välein" -#: libraries/display_tbl.lib.php:345 +#: libraries/display_tbl.lib.php:344 msgid "This operation could take a long time. Proceed anyway?" msgstr "Tämä toiminto voi kestää kauan. Jatketaanko silti?" -#: libraries/display_tbl.lib.php:511 +#: libraries/display_tbl.lib.php:510 msgid "Sort by key" msgstr "Lajittele avaimen mukaan" -#: libraries/display_tbl.lib.php:554 libraries/export/codegen.php:38 +#: libraries/display_tbl.lib.php:553 libraries/export/codegen.php:38 #: libraries/export/csv.php:29 libraries/export/excel.php:34 #: libraries/export/htmlword.php:28 libraries/export/latex.php:32 #: libraries/export/mediawiki.php:21 libraries/export/ods.php:26 @@ -2316,99 +2296,99 @@ msgstr "Lajittele avaimen mukaan" #: libraries/export/xlsx.php:26 libraries/export/xml.php:23 #: libraries/export/yaml.php:27 libraries/import.lib.php:1114 #: libraries/import.lib.php:1136 libraries/import/csv.php:31 -#: libraries/import/docsql.php:33 libraries/import/ldi.php:46 +#: libraries/import/docsql.php:32 libraries/import/ldi.php:46 #: libraries/import/ods.php:30 libraries/import/sql.php:19 #: libraries/import/xls.php:25 libraries/import/xlsx.php:25 -#: libraries/import/xml.php:25 tbl_select.php:264 tbl_structure.php:752 +#: libraries/import/xml.php:25 tbl_select.php:263 tbl_structure.php:750 msgid "Options" msgstr "Valinnat" -#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:569 +#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:568 msgid "Partial Texts" msgstr "Lyhennetyt tekstit" -#: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:573 +#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:572 msgid "Full Texts" msgstr "Koko tekstit" -#: libraries/display_tbl.lib.php:586 +#: libraries/display_tbl.lib.php:585 msgid "Relational key" msgstr "Relaatioavain" -#: libraries/display_tbl.lib.php:587 +#: libraries/display_tbl.lib.php:586 #, fuzzy #| msgid "Relational display field" msgid "Relational display column" msgstr "Relaationäyttökenttä" -#: libraries/display_tbl.lib.php:594 +#: libraries/display_tbl.lib.php:593 msgid "Show binary contents" msgstr "Näytä binäärisisältö" -#: libraries/display_tbl.lib.php:596 +#: libraries/display_tbl.lib.php:595 msgid "Show BLOB contents" msgstr "Näytä BLOB-sisältö" -#: libraries/display_tbl.lib.php:598 +#: libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "Näytä binaarisisältö heksamuodossa" -#: libraries/display_tbl.lib.php:606 pmd_general.php:140 tbl_change.php:312 -#: tbl_change.php:318 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:307 +#: tbl_change.php:313 msgid "Hide" msgstr "Kätke" -#: libraries/display_tbl.lib.php:606 libraries/relation.lib.php:122 -#: libraries/tbl_properties.inc.php:143 transformation_overview.php:46 +#: libraries/display_tbl.lib.php:605 libraries/relation.lib.php:117 +#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46 msgid "Browser transformation" msgstr "Selaimen muunnos (transformation)" -#: libraries/display_tbl.lib.php:1125 libraries/display_tbl.lib.php:1129 -#: libraries/display_tbl.lib.php:1131 +#: libraries/display_tbl.lib.php:1124 libraries/display_tbl.lib.php:1128 +#: libraries/display_tbl.lib.php:1130 msgid "Execute bookmarked query" msgstr "Suorita kysely kirjanmerkeistä" -#: libraries/display_tbl.lib.php:1144 libraries/display_tbl.lib.php:1156 +#: libraries/display_tbl.lib.php:1143 libraries/display_tbl.lib.php:1155 msgid "The row has been deleted" msgstr "Rivi on poistettu" -#: libraries/display_tbl.lib.php:1183 libraries/display_tbl.lib.php:2055 +#: libraries/display_tbl.lib.php:1182 libraries/display_tbl.lib.php:2014 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "Lopeta" -#: libraries/display_tbl.lib.php:1933 +#: libraries/display_tbl.lib.php:1892 msgid "in query" msgstr "lauseessa" -#: libraries/display_tbl.lib.php:1951 +#: libraries/display_tbl.lib.php:1910 msgid "Showing rows" msgstr "Näkyvillä rivit " -#: libraries/display_tbl.lib.php:1961 +#: libraries/display_tbl.lib.php:1920 msgid "total" msgstr "yhteensä" -#: libraries/display_tbl.lib.php:1969 sql.php:523 +#: libraries/display_tbl.lib.php:1928 sql.php:522 #, php-format msgid "Query took %01.4f sec" msgstr "kysely kesti %01.4f sek." -#: libraries/display_tbl.lib.php:2088 libraries/mult_submits.inc.php:112 -#: querywindow.php:115 querywindow.php:119 querywindow.php:122 -#: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:469 +#: libraries/display_tbl.lib.php:2047 libraries/mult_submits.inc.php:112 +#: querywindow.php:114 querywindow.php:118 querywindow.php:121 +#: tbl_structure.php:23 tbl_structure.php:148 tbl_structure.php:467 msgid "Change" msgstr "Muokkaa" -#: libraries/display_tbl.lib.php:2158 +#: libraries/display_tbl.lib.php:2117 msgid "Query results operations" msgstr "Kyselytulosten toimenpiteet" -#: libraries/display_tbl.lib.php:2186 +#: libraries/display_tbl.lib.php:2145 msgid "Print view (with full texts)" msgstr "Tulostusversio (kokonaisin tekstein)" -#: libraries/display_tbl.lib.php:2359 +#: libraries/display_tbl.lib.php:2318 msgid "Link not found" msgstr "Linkkiä ei löydy" @@ -2463,9 +2443,9 @@ msgstr "InnoDB:n tila" msgid "Buffer Pool Usage" msgstr "Puskurivarannon käyttö" -#: libraries/engines/innodb.lib.php:168 server_databases.php:136 -#: server_databases.php:304 server_status.php:524 server_status.php:585 -#: server_status.php:606 tbl_printview.php:349 tbl_structure.php:695 +#: libraries/engines/innodb.lib.php:168 server_databases.php:134 +#: server_databases.php:302 server_status.php:524 server_status.php:585 +#: server_status.php:606 tbl_printview.php:348 tbl_structure.php:693 msgid "Total" msgstr "Yhteensä" @@ -2601,6 +2581,87 @@ msgstr "" "Puskuri, joka varataan käyttöön lajiteltaessa MyISAM-indeksejä REPAIR TABLE -" "kyselyllä tai luotaessa indeksejä CREATE INDEX- tai ALTER TABLE -kyselyillä." +#: libraries/engines/pbms.lib.php:31 +#, fuzzy +#| msgid "Garbage threshold" +msgid "Garbage Threshold" +msgstr "Roskankeruun kynnysarvo" + +#: libraries/engines/pbms.lib.php:32 +#, fuzzy +#| msgid "" +#| "The percentage of garbage in a data log file before it is compacted. This " +#| "is a value between 1 and 99. The default is 50." +msgid "The percentage of garbage in a repository file before it is compacted." +msgstr "" +"Tietolokitiedoston roskatietojen prosentuaalinen määrä ennen kuin tiedostoa " +"tiivistetään. Tämän arvon on oltava väliltä 1 - 99. Oletusarvo on 50." + +#: libraries/engines/pbms.lib.php:36 libraries/replication_gui.lib.php:69 +#: server_synchronize.php:1161 +msgid "Port" +msgstr "Port" + +#: libraries/engines/pbms.lib.php:37 +msgid "" +"The port for the PBMS stream-based communications. Setting this value to 0 " +"will disable HTTP communication with the daemon." +msgstr "" + +#: libraries/engines/pbms.lib.php:41 +msgid "Repository Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:42 +msgid "" +"The maximum size of a BLOB repository file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:46 +msgid "Temp Blob Timeout" +msgstr "" + +#: libraries/engines/pbms.lib.php:47 +msgid "" +"The timeout, in seconds, for temporary BLOBs. Uploaded BLOB data is removed " +"after this time, unless they are referenced by a record in the database." +msgstr "" + +#: libraries/engines/pbms.lib.php:51 +#, fuzzy +#| msgid "Log file threshold" +msgid "Temp Log Threshold" +msgstr "Lokitiedoston kynnysarvo" + +#: libraries/engines/pbms.lib.php:52 +msgid "" +"The maximum size of a temporary BLOB log file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:56 +msgid "Max Keep Alive" +msgstr "" + +#: libraries/engines/pbms.lib.php:57 +msgid "" +"The timeout for inactive connection with the keep-alive flag set. After this " +"time the connection will be closed. The time-out is in milliseconds (1/1000)." +msgstr "" + +#: libraries/engines/pbms.lib.php:61 +msgid "Metadata Headers" +msgstr "" + +#: libraries/engines/pbms.lib.php:62 +msgid "" +"A \":\" delimited list of metadata headers to be used to initialize the " +"pbms_metadata_header table when a database is created." +msgstr "" + #: libraries/engines/pbxt.lib.php:22 msgid "Index cache size" msgstr "Indeksivälimuistin koko" @@ -2750,7 +2811,7 @@ msgstr "" "numero." #: libraries/export/codegen.php:36 setup/lib/messages.inc.php:85 -#: tbl_printview.php:374 tbl_structure.php:736 +#: tbl_printview.php:373 tbl_structure.php:734 msgid "Format" msgstr "Muoto" @@ -2823,9 +2884,9 @@ msgstr "Microsoft Word 2000" #: libraries/export/htmlword.php:23 libraries/export/latex.php:59 #: libraries/export/latex.php:205 libraries/export/odt.php:47 #: libraries/export/sql.php:105 libraries/export/sql.php:865 -#: libraries/export/texytext.php:27 server_databases.php:126 -#: server_privileges.php:576 server_replication.php:315 tbl_printview.php:315 -#: tbl_structure.php:664 +#: libraries/export/texytext.php:27 server_databases.php:124 +#: server_privileges.php:575 server_replication.php:314 tbl_printview.php:314 +#: tbl_structure.php:662 msgid "Data" msgstr "Tietoa" @@ -2876,13 +2937,13 @@ msgid "Label key" msgstr "Tunniste" #: libraries/export/latex.php:46 libraries/export/odt.php:34 -#: libraries/export/sql.php:90 tbl_relation.php:398 +#: libraries/export/sql.php:90 tbl_relation.php:396 msgid "Relations" msgstr "Relaatiot" #: libraries/export/latex.php:52 libraries/export/odt.php:40 #: libraries/export/odt.php:317 libraries/export/sql.php:94 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "MIME-tyyppi" @@ -2890,10 +2951,10 @@ msgstr "MIME-tyyppi" #: libraries/export/xml.php:101 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1529 server_privileges.php:2061 -#: server_processlist.php:54 server_synchronize.php:1158 +#: libraries/replication_gui.lib.php:331 server_privileges.php:730 +#: server_privileges.php:733 server_privileges.php:789 +#: server_privileges.php:1533 server_privileges.php:2065 +#: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "Palvelin" @@ -3082,8 +3143,8 @@ msgstr "Vie näkymät" msgid "Export contents" msgstr "Vie sisällöt" -#: libraries/footer.inc.php:182 libraries/footer.inc.php:193 -#: libraries/footer.inc.php:196 +#: libraries/footer.inc.php:180 libraries/footer.inc.php:191 +#: libraries/footer.inc.php:194 msgid "Open new phpMyAdmin window" msgstr "Avaa uusi phpMyAdmin-ikkuna" @@ -3100,7 +3161,7 @@ msgstr "SQL-kyselyn tulos" msgid "Generated by" msgstr "Luontiympäristö" -#: libraries/import.lib.php:151 sql.php:519 tbl_change.php:180 +#: libraries/import.lib.php:151 sql.php:518 tbl_change.php:175 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL palautti tyhjän vastauksen, toisin sanoen nolla riviä." @@ -3157,7 +3218,7 @@ msgstr "Älä välitä samanlaisista riveistä" msgid "Column names in first row" msgstr "Sarakenimet ensimmäisessä rivissä" -#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:501 +#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:500 #: view_create.php:147 msgid "Column names" msgstr "Sarakkeiden nimet" @@ -3184,12 +3245,12 @@ msgstr "Virheellinen muoto CSV-syötteessä rivillä %d." msgid "Invalid column count in CSV input on line %d." msgstr "Virheellinen kenttien määrä CSV-syötteessä rivillä %d." -#: libraries/import/docsql.php:28 +#: libraries/import/docsql.php:27 msgid "DocSQL" msgstr "DocSQL" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 -#: server_synchronize.php:427 server_synchronize.php:870 +#: libraries/import/docsql.php:30 libraries/tbl_properties.inc.php:616 +#: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "Taulun nimi" @@ -3249,26 +3310,26 @@ msgstr "Ei mitään" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:512 -#: tbl_structure.php:28 tbl_structure.php:152 tbl_structure.php:156 -#: tbl_structure.php:472 +#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:511 +#: tbl_structure.php:27 tbl_structure.php:151 tbl_structure.php:155 +#: tbl_structure.php:470 msgid "Primary" msgstr "Perusavain" #: libraries/mult_submits.inc.php:97 libraries/tbl_properties.inc.php:115 -#: libraries/tbl_properties.inc.php:524 tbl_printview.php:324 -#: tbl_structure.php:30 tbl_structure.php:153 tbl_structure.php:157 -#: tbl_structure.php:474 tbl_structure.php:672 +#: libraries/tbl_properties.inc.php:523 tbl_printview.php:323 +#: tbl_structure.php:29 tbl_structure.php:152 tbl_structure.php:156 +#: tbl_structure.php:472 tbl_structure.php:670 msgid "Index" msgstr "Indeksi" -#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:530 -#: tbl_structure.php:34 tbl_structure.php:155 tbl_structure.php:159 -#: tbl_structure.php:477 +#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:529 +#: tbl_structure.php:33 tbl_structure.php:154 tbl_structure.php:158 +#: tbl_structure.php:475 msgid "Fulltext" msgstr "Koko teksti" -#: libraries/mult_submits.inc.php:434 tbl_replace.php:330 +#: libraries/mult_submits.inc.php:433 tbl_replace.php:330 msgid "No change" msgstr "Ei muutoksia" @@ -3276,190 +3337,190 @@ msgstr "Ei muutoksia" msgid "Charset" msgstr "Merkistökoodaus" -#: libraries/mysql_charsets.lib.php:210 libraries/mysql_charsets.lib.php:411 -#: tbl_change.php:515 +#: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 +#: tbl_change.php:510 msgid "Binary" msgstr "Binääritietoa" -#: libraries/mysql_charsets.lib.php:222 +#: libraries/mysql_charsets.lib.php:214 msgid "Bulgarian" msgstr "Bulgarialainen" -#: libraries/mysql_charsets.lib.php:226 libraries/mysql_charsets.lib.php:351 +#: libraries/mysql_charsets.lib.php:218 libraries/mysql_charsets.lib.php:343 msgid "Simplified Chinese" msgstr "Yksinkertaistettu kiina" -#: libraries/mysql_charsets.lib.php:228 libraries/mysql_charsets.lib.php:371 +#: libraries/mysql_charsets.lib.php:220 libraries/mysql_charsets.lib.php:363 msgid "Traditional Chinese" msgstr "Perinteinen kiina" -#: libraries/mysql_charsets.lib.php:232 libraries/mysql_charsets.lib.php:418 +#: libraries/mysql_charsets.lib.php:224 libraries/mysql_charsets.lib.php:410 msgid "case-insensitive" msgstr "kirjainkoolla ei väliä" -#: libraries/mysql_charsets.lib.php:235 libraries/mysql_charsets.lib.php:420 +#: libraries/mysql_charsets.lib.php:227 libraries/mysql_charsets.lib.php:412 msgid "case-sensitive" msgstr "tarkka kirjainkoko" -#: libraries/mysql_charsets.lib.php:238 +#: libraries/mysql_charsets.lib.php:230 msgid "Croatian" msgstr "Kroaatti" -#: libraries/mysql_charsets.lib.php:241 +#: libraries/mysql_charsets.lib.php:233 msgid "Czech" msgstr "Tsekkiläinen" -#: libraries/mysql_charsets.lib.php:244 +#: libraries/mysql_charsets.lib.php:236 msgid "Danish" msgstr "Tanskalainen" -#: libraries/mysql_charsets.lib.php:247 +#: libraries/mysql_charsets.lib.php:239 msgid "English" msgstr "Englantilainen" -#: libraries/mysql_charsets.lib.php:250 +#: libraries/mysql_charsets.lib.php:242 msgid "Esperanto" msgstr "Esperanto" -#: libraries/mysql_charsets.lib.php:253 +#: libraries/mysql_charsets.lib.php:245 msgid "Estonian" msgstr "Virolainen" -#: libraries/mysql_charsets.lib.php:256 libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:248 libraries/mysql_charsets.lib.php:251 msgid "German" msgstr "Saksalainen" -#: libraries/mysql_charsets.lib.php:256 +#: libraries/mysql_charsets.lib.php:248 msgid "dictionary" msgstr "sanasto" -#: libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:251 msgid "phone book" msgstr "puhelinluettelo" -#: libraries/mysql_charsets.lib.php:262 +#: libraries/mysql_charsets.lib.php:254 msgid "Hungarian" msgstr "Unkarilainen" -#: libraries/mysql_charsets.lib.php:265 +#: libraries/mysql_charsets.lib.php:257 msgid "Icelandic" msgstr "Islantilainen" -#: libraries/mysql_charsets.lib.php:268 libraries/mysql_charsets.lib.php:358 +#: libraries/mysql_charsets.lib.php:260 libraries/mysql_charsets.lib.php:350 msgid "Japanese" msgstr "Japanilainen" -#: libraries/mysql_charsets.lib.php:271 +#: libraries/mysql_charsets.lib.php:263 msgid "Latvian" msgstr "Latvialainen" -#: libraries/mysql_charsets.lib.php:274 +#: libraries/mysql_charsets.lib.php:266 msgid "Lithuanian" msgstr "Liettualainen" -#: libraries/mysql_charsets.lib.php:277 libraries/mysql_charsets.lib.php:380 +#: libraries/mysql_charsets.lib.php:269 libraries/mysql_charsets.lib.php:372 msgid "Korean" msgstr "Korealainen" -#: libraries/mysql_charsets.lib.php:280 +#: libraries/mysql_charsets.lib.php:272 msgid "Persian" msgstr "Persialainen" -#: libraries/mysql_charsets.lib.php:283 +#: libraries/mysql_charsets.lib.php:275 msgid "Polish" msgstr "Puolalainen" -#: libraries/mysql_charsets.lib.php:286 libraries/mysql_charsets.lib.php:334 +#: libraries/mysql_charsets.lib.php:278 libraries/mysql_charsets.lib.php:326 msgid "West European" msgstr "Länsieurooppalainen" -#: libraries/mysql_charsets.lib.php:289 +#: libraries/mysql_charsets.lib.php:281 msgid "Romanian" msgstr "Romanialainen" -#: libraries/mysql_charsets.lib.php:292 +#: libraries/mysql_charsets.lib.php:284 msgid "Slovak" msgstr "Slovakialainen" -#: libraries/mysql_charsets.lib.php:295 +#: libraries/mysql_charsets.lib.php:287 msgid "Slovenian" msgstr "Slovenialainen" -#: libraries/mysql_charsets.lib.php:298 +#: libraries/mysql_charsets.lib.php:290 msgid "Spanish" msgstr "Espanjalainen" -#: libraries/mysql_charsets.lib.php:301 +#: libraries/mysql_charsets.lib.php:293 msgid "Traditional Spanish" msgstr "Perinteinen espanja" -#: libraries/mysql_charsets.lib.php:304 libraries/mysql_charsets.lib.php:401 +#: libraries/mysql_charsets.lib.php:296 libraries/mysql_charsets.lib.php:393 msgid "Swedish" msgstr "Ruotsalainen" -#: libraries/mysql_charsets.lib.php:307 libraries/mysql_charsets.lib.php:404 +#: libraries/mysql_charsets.lib.php:299 libraries/mysql_charsets.lib.php:396 msgid "Thai" msgstr "Thai" -#: libraries/mysql_charsets.lib.php:310 libraries/mysql_charsets.lib.php:398 +#: libraries/mysql_charsets.lib.php:302 libraries/mysql_charsets.lib.php:390 msgid "Turkish" msgstr "Turkkilainen" -#: libraries/mysql_charsets.lib.php:313 libraries/mysql_charsets.lib.php:395 +#: libraries/mysql_charsets.lib.php:305 libraries/mysql_charsets.lib.php:387 msgid "Ukrainian" msgstr "Ukrainalainen" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 msgid "Unicode" msgstr "Unicode" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 -#: libraries/mysql_charsets.lib.php:334 libraries/mysql_charsets.lib.php:341 -#: libraries/mysql_charsets.lib.php:363 libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 +#: libraries/mysql_charsets.lib.php:326 libraries/mysql_charsets.lib.php:333 +#: libraries/mysql_charsets.lib.php:355 libraries/mysql_charsets.lib.php:366 msgid "multilingual" msgstr "monikielinen" -#: libraries/mysql_charsets.lib.php:341 +#: libraries/mysql_charsets.lib.php:333 msgid "Central European" msgstr "Keskieurooppalainen" -#: libraries/mysql_charsets.lib.php:346 +#: libraries/mysql_charsets.lib.php:338 msgid "Russian" msgstr "Venäläinen" -#: libraries/mysql_charsets.lib.php:363 +#: libraries/mysql_charsets.lib.php:355 msgid "Baltic" msgstr "Baltilainen" -#: libraries/mysql_charsets.lib.php:368 +#: libraries/mysql_charsets.lib.php:360 msgid "Armenian" msgstr "Armenialainen" -#: libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:366 msgid "Cyrillic" msgstr "Kyrillinen" -#: libraries/mysql_charsets.lib.php:377 +#: libraries/mysql_charsets.lib.php:369 msgid "Arabic" msgstr "Arabialainen" -#: libraries/mysql_charsets.lib.php:383 +#: libraries/mysql_charsets.lib.php:375 msgid "Hebrew" msgstr "Hebrealainen" -#: libraries/mysql_charsets.lib.php:386 +#: libraries/mysql_charsets.lib.php:378 msgid "Georgian" msgstr "Georgialainen" -#: libraries/mysql_charsets.lib.php:389 +#: libraries/mysql_charsets.lib.php:381 msgid "Greek" msgstr "Kreikkalainen" -#: libraries/mysql_charsets.lib.php:392 +#: libraries/mysql_charsets.lib.php:384 msgid "Czech-Slovak" msgstr "Tsekkoslovakialainen" -#: libraries/mysql_charsets.lib.php:407 libraries/mysql_charsets.lib.php:414 +#: libraries/mysql_charsets.lib.php:399 libraries/mysql_charsets.lib.php:406 msgid "unknown" msgstr "tuntematon" @@ -3485,67 +3546,67 @@ msgstr "Kyselyikkuna" msgid "This format has no options" msgstr "Tälle tiedostomuodolle ei ole valinta-asetuksia" -#: libraries/relation.lib.php:82 +#: libraries/relation.lib.php:77 msgid "not OK" msgstr "Ei kunnossa" -#: libraries/relation.lib.php:86 pmd_general.php:339 +#: libraries/relation.lib.php:81 pmd_general.php:339 msgid "OK" msgstr "Kunnossa" -#: libraries/relation.lib.php:87 +#: libraries/relation.lib.php:82 msgid "Enabled" msgstr "Päällä" -#: libraries/relation.lib.php:110 +#: libraries/relation.lib.php:105 msgid "Display Features" msgstr "Ulkoasun asetukset" -#: libraries/relation.lib.php:116 +#: libraries/relation.lib.php:111 msgid "Creation of PDFs" msgstr "PDF-tiedostojen luonti" -#: libraries/relation.lib.php:120 +#: libraries/relation.lib.php:115 msgid "Displaying Column Comments" msgstr "Sarakkeiden kommentit näkyvissä" -#: libraries/relation.lib.php:125 +#: libraries/relation.lib.php:120 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "Tarkista ohjeista, kuinka Column_comments-tauluja voi päivittää." -#: libraries/relation.lib.php:130 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 msgid "Bookmarked SQL query" msgstr "Tallennettu SQL-kysely" -#: libraries/relation.lib.php:134 querywindow.php:99 querywindow.php:207 +#: libraries/relation.lib.php:129 querywindow.php:98 querywindow.php:205 msgid "SQL history" msgstr "SQL-historia" -#: libraries/relation.lib.php:146 +#: libraries/relation.lib.php:141 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:148 +#: libraries/relation.lib.php:143 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" -#: libraries/relation.lib.php:149 +#: libraries/relation.lib.php:144 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:150 +#: libraries/relation.lib.php:145 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:151 +#: libraries/relation.lib.php:146 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1158 +#: libraries/relation.lib.php:1153 msgid "no description" msgstr "ei kuvausta" @@ -3553,7 +3614,7 @@ msgstr "ei kuvausta" msgid "Slave configuration" msgstr "Alipalvelimen asetusten määrittely" -#: libraries/replication_gui.lib.php:53 server_replication.php:346 +#: libraries/replication_gui.lib.php:53 server_replication.php:345 msgid "Change or reconfigure master server" msgstr "Vaihda isäntäpalvelin tai muuta sen asetuksia" @@ -3567,16 +3628,12 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:711 -#: server_privileges.php:714 server_privileges.php:721 -#: server_synchronize.php:1170 +#: libraries/replication_gui.lib.php:261 server_privileges.php:710 +#: server_privileges.php:713 server_privileges.php:720 +#: server_synchronize.php:1169 msgid "User name" msgstr "Käyttäjänimi" -#: libraries/replication_gui.lib.php:69 server_synchronize.php:1162 -msgid "Port" -msgstr "Port" - #: libraries/replication_gui.lib.php:105 msgid "Master status" msgstr "Isännän tila" @@ -3591,8 +3648,8 @@ msgid "Variable" msgstr "Muuttuja" #: libraries/replication_gui.lib.php:117 server_status.php:737 -#: tbl_change.php:322 tbl_printview.php:368 tbl_select.php:137 -#: tbl_structure.php:728 +#: tbl_change.php:317 tbl_printview.php:367 tbl_select.php:136 +#: tbl_structure.php:726 msgid "Value" msgstr "Arvo" @@ -3608,38 +3665,38 @@ msgstr "" "Luettelossa on näkyvillä vain ne alipalvelimet, joilla on valinta --report-" "host=host_name." -#: libraries/replication_gui.lib.php:242 server_replication.php:193 +#: libraries/replication_gui.lib.php:242 server_replication.php:192 msgid "Add slave replication user" msgstr "Lisää alireplikaatiokäyttäjä" -#: libraries/replication_gui.lib.php:256 server_privileges.php:716 +#: libraries/replication_gui.lib.php:256 server_privileges.php:715 msgid "Any user" msgstr "Kuka tahansa käyttäjä" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1920 server_privileges.php:1950 +#: libraries/replication_gui.lib.php:348 server_privileges.php:716 +#: server_privileges.php:783 server_privileges.php:807 +#: server_privileges.php:1924 server_privileges.php:1954 msgid "Use text field" msgstr "Käytä tekstikenttää" -#: libraries/replication_gui.lib.php:304 server_privileges.php:764 +#: libraries/replication_gui.lib.php:304 server_privileges.php:763 msgid "Any host" msgstr "Mikä tahansa palvelin" -#: libraries/replication_gui.lib.php:308 server_privileges.php:768 +#: libraries/replication_gui.lib.php:308 server_privileges.php:767 msgid "Local" msgstr "Paikallinen" -#: libraries/replication_gui.lib.php:314 server_privileges.php:773 +#: libraries/replication_gui.lib.php:314 server_privileges.php:772 msgid "This Host" msgstr "Tämä isäntä" -#: libraries/replication_gui.lib.php:320 server_privileges.php:779 +#: libraries/replication_gui.lib.php:320 server_privileges.php:778 msgid "Use Host Table" msgstr "Käytä isäntätaulua" -#: libraries/replication_gui.lib.php:333 server_privileges.php:792 +#: libraries/replication_gui.lib.php:333 server_privileges.php:791 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3667,8 +3724,8 @@ msgstr "Tuntematon kieli: %1$s." msgid "Servers" msgstr "Palvelimet" -#: libraries/server_links.inc.php:52 server_engines.php:111 -#: server_engines.php:115 server_status.php:414 test/theme.php:104 +#: libraries/server_links.inc.php:52 server_engines.php:125 +#: server_engines.php:129 server_status.php:414 test/theme.php:104 msgid "Variables" msgstr "Muuttujat" @@ -3689,12 +3746,12 @@ msgstr "Binääriloki" msgid "Processes" msgstr "Prosessit" -#: libraries/server_links.inc.php:91 server_synchronize.php:1091 -#: server_synchronize.php:1099 +#: libraries/server_links.inc.php:91 server_synchronize.php:1090 +#: server_synchronize.php:1098 msgid "Synchronize" msgstr "Yhtenäistä" -#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1109 +#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1108 msgid "Source database" msgstr "Lähdetietokanta" @@ -3712,7 +3769,7 @@ msgstr "Etäpalvelin" msgid "Difference" msgstr "Ero" -#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1111 +#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1110 msgid "Target database" msgstr "Kohdetietokanta" @@ -3732,11 +3789,11 @@ msgstr "Suorita SQL-kyselyjä tietokannassa %s" msgid "Columns" msgstr "Sarakkeiden nimet" -#: libraries/sql_query_form.lib.php:342 sql.php:664 sql.php:665 sql.php:682 +#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "Tallenna SQL-kysely" -#: libraries/sql_query_form.lib.php:349 sql.php:676 +#: libraries/sql_query_form.lib.php:349 sql.php:669 msgid "Let every user access this bookmark" msgstr "Anna kaikkien käyttäjien käyttää tätä kirjanmerkkiä" @@ -3830,12 +3887,12 @@ msgstr "" "SQL-tarkistinta ei voitu käynnistää. Tarkista, että tarpeelliset PHP-" "laajennukset on asennettu. Lisätietoa on %sohjeissa%s." -#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:139 -#: libraries/tbl_links.inc.php:140 +#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 +#: libraries/tbl_links.inc.php:139 msgid "Table seems to be empty!" msgstr "Taulu on tyhjä!" -#: libraries/tbl_links.inc.php:148 +#: libraries/tbl_links.inc.php:147 #, php-format msgid "Tracking of %s.%s is activated." msgstr "Kohteen %s.%s seuranta on käytössä." @@ -3870,12 +3927,12 @@ msgstr "" "Syötä oletusarvoihin vain yksi arvo (käyttämättä kenoviivamerkkejä tai " "lainausmerkkejä) tässä muodossa: a" -#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1263 -#: pdf_schema.php:1284 tbl_printview.php:142 tbl_structure.php:179 +#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1262 +#: pdf_schema.php:1283 tbl_printview.php:141 tbl_structure.php:178 msgid "Attributes" msgstr "Attribuutit" -#: libraries/tbl_properties.inc.php:136 +#: libraries/tbl_properties.inc.php:135 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -3884,11 +3941,11 @@ msgstr "" "Tietoja saatavilla olevista muunnosvaihtoehdoista ja niiden MIME-tyyppien " "muunnoksista saa painamalla %smuunnoksen kuvaukset%s -kohtaa" -#: libraries/tbl_properties.inc.php:144 +#: libraries/tbl_properties.inc.php:143 msgid "Transformation options" msgstr "Muunnosvaihtoehdot" -#: libraries/tbl_properties.inc.php:145 +#: libraries/tbl_properties.inc.php:144 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
                            If you ever need to put a backslash (\"\\\") or a single " @@ -3899,18 +3956,18 @@ msgstr "" ">Jos tarvitset arvoissa kenoviivaa (\"\\\") tai yksittäistä lainausmerkkiä " "(\"'\"), lisää merkin eteen kenoviiva (esim. '\\\\xyz' tai 'a\\'b')." -#: libraries/tbl_properties.inc.php:392 +#: libraries/tbl_properties.inc.php:391 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "Ei mitään" -#: libraries/tbl_properties.inc.php:393 +#: libraries/tbl_properties.inc.php:392 msgid "As defined:" msgstr "Määritelty:" -#: libraries/tbl_properties.inc.php:579 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:578 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
                            Please ask the " @@ -3919,29 +3976,29 @@ msgstr "" "Tälle muunnokselle ei ole saatavilla kuvausta.
                            Kysy tekijältä, mitä %s " "tekee." -#: libraries/tbl_properties.inc.php:725 server_engines.php:57 -#: tbl_operations.php:354 +#: libraries/tbl_properties.inc.php:724 server_engines.php:56 +#: tbl_operations.php:352 msgid "Storage Engine" msgstr "Tallennusmoottori" -#: libraries/tbl_properties.inc.php:754 +#: libraries/tbl_properties.inc.php:753 msgid "PARTITION definition" msgstr "PARTITION-määritelmä" -#: libraries/tbl_properties.inc.php:775 pdf_pages.php:502 +#: libraries/tbl_properties.inc.php:774 pdf_pages.php:501 #: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214 -#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1124 tbl_indexes.php:247 -#: tbl_relation.php:565 +#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1022 tbl_indexes.php:246 +#: tbl_relation.php:563 msgid "Save" msgstr "Tallenna" -#: libraries/tbl_properties.inc.php:779 tbl_structure.php:541 +#: libraries/tbl_properties.inc.php:778 tbl_structure.php:539 #, fuzzy, php-format #| msgid "Add column(s)" msgid "Add %s column(s)" msgstr "Lisää sarake/sarakkeita" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:535 +#: libraries/tbl_properties.inc.php:782 tbl_structure.php:533 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -4149,8 +4206,8 @@ msgstr "Käyttöliittymä" msgid "Custom color" msgstr "Muu väri" -#: main.php:162 pdf_pages.php:362 setup/lib/FormDisplay.tpl.php:216 -#: tbl_change.php:1173 +#: main.php:162 pdf_pages.php:361 setup/lib/FormDisplay.tpl.php:216 +#: tbl_change.php:1071 msgid "Reset" msgstr "Nollaa" @@ -4158,8 +4215,8 @@ msgstr "Nollaa" msgid "Protocol version" msgstr "Protokollan versio" -#: main.php:188 server_privileges.php:1381 server_privileges.php:1528 -#: server_privileges.php:1642 server_privileges.php:2060 +#: main.php:188 server_privileges.php:1385 server_privileges.php:1532 +#: server_privileges.php:1646 server_privileges.php:2064 #: server_processlist.php:53 msgid "User" msgstr "Käyttäjä" @@ -4249,14 +4306,23 @@ msgstr "" "hakemistossa. Sinun tulee poistaa kansio, kun phpMyAdminin asetukset on " "määritetty." -#: main.php:330 +#: main.php:314 +#, php-format +msgid "" +"The additional features for working with linked tables have been " +"deactivated. To find out why click %shere%s." +msgstr "" +"Linkitettyihin tauluihin liittyvät lisäominaisuudet eivät ole käytössä. " +"Katso %slisätietoja%s." + +#: main.php:329 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:345 +#: main.php:344 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -4265,7 +4331,7 @@ msgstr "" "PHP:n MySQL-kirjaston versio %s poikkeaa MySQL-palvelimen versiosta %s. " "Tästä voi koitua arvaamattomia seurauksia." -#: main.php:357 +#: main.php:356 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -4279,68 +4345,68 @@ msgstr "" msgid "Reload navigation frame" msgstr "Mukauta navigointikehystä" -#: navigation.php:204 server_databases.php:370 server_synchronize.php:1190 +#: navigation.php:203 server_databases.php:368 server_synchronize.php:1189 msgid "No databases" msgstr "Ei tietokantoja" -#: navigation.php:298 +#: navigation.php:297 msgid "Filter" msgstr "Suodatin" -#: navigation.php:299 setup/frames/index.inc.php:218 +#: navigation.php:298 setup/frames/index.inc.php:218 #: setup/lib/messages.inc.php:41 msgid "Clear" msgstr "Tyhjennä" -#: navigation.php:330 navigation.php:331 +#: navigation.php:329 navigation.php:330 #, fuzzy #| msgid "Create table" msgctxt "short form" msgid "Create table" msgstr "Luo taulu" -#: navigation.php:333 navigation.php:495 +#: navigation.php:332 navigation.php:494 msgid "Please select a database" msgstr "Valitse tietokanta" -#: pdf_pages.php:40 pdf_pages.php:46 pdf_pages.php:52 pdf_pages.php:57 +#: pdf_pages.php:39 pdf_pages.php:45 pdf_pages.php:51 pdf_pages.php:56 #, php-format msgid "%s table not found or not set in %s" msgstr "Taulua %s ei löytynyt tai sitä ei ole määritelty tiedostossa %s" -#: pdf_pages.php:265 +#: pdf_pages.php:264 msgid "Please choose a page to edit" msgstr "Valitse muokattava sivu" -#: pdf_pages.php:303 pmd_pdf.php:113 +#: pdf_pages.php:302 pmd_pdf.php:111 msgid "Create a page" msgstr "Luo uusi sivu" -#: pdf_pages.php:309 +#: pdf_pages.php:308 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Sivunumero:" -#: pdf_pages.php:313 +#: pdf_pages.php:312 #, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "Automaattinen ulkoasu" -#: pdf_pages.php:315 +#: pdf_pages.php:314 msgid "Internal relations" msgstr "Sisäiset relaatiot" -#: pdf_pages.php:338 +#: pdf_pages.php:337 msgid "Select Tables" msgstr "Valitse taulut" -#: pdf_pages.php:361 +#: pdf_pages.php:360 msgid "Toggle scratchboard" msgstr "Näytä/kätke luonnospöytä" -#: pdf_pages.php:524 +#: pdf_pages.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -4348,37 +4414,37 @@ msgstr "" "Nykyisellä sivulla on viittauksia tauluihin, joita ei enää ole olemassa. " "Haluatko poistaa nuo viittaukset?" -#: pdf_schema.php:635 +#: pdf_schema.php:634 #, fuzzy, php-format #| msgid "The \"%s\" table doesn't exist!" msgid "The %s table doesn't exist!" msgstr "Taulua \"%s\" ei ole!" -#: pdf_schema.php:671 +#: pdf_schema.php:670 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Määrittele koordinaatit taululle %s" -#: pdf_schema.php:994 +#: pdf_schema.php:993 #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" msgstr "Tietokannan \"%s\" kaavio - Sivu %s" -#: pdf_schema.php:1012 +#: pdf_schema.php:1011 msgid "No tables" msgstr "Ei tauluja" -#: pdf_schema.php:1031 pdf_schema.php:1140 +#: pdf_schema.php:1030 pdf_schema.php:1139 msgid "Relational schema" msgstr "Relaatioskeema" -#: pdf_schema.php:1115 +#: pdf_schema.php:1114 msgid "Table of contents" msgstr "Sisällysluettelo" -#: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:145 -#: tbl_structure.php:182 tbl_tracking.php:277 +#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 +#: tbl_structure.php:181 tbl_tracking.php:272 msgid "Extra" msgstr "Lisätiedot" @@ -4390,7 +4456,7 @@ msgstr "Näytä/kätke vasen valikko" msgid "Save position" msgstr "Tallenna sijainti" -#: pmd_general.php:70 server_synchronize.php:428 server_synchronize.php:871 +#: pmd_general.php:70 server_synchronize.php:427 server_synchronize.php:870 msgid "Create table" msgstr "Luo taulu" @@ -4469,32 +4535,32 @@ msgstr "" "paina \"Valitse näytettävä kenttä\" -kuvaketta ja napsauta sitten sopivaa " "kenttänimeä." -#: pmd_pdf.php:62 +#: pmd_pdf.php:60 #, fuzzy msgid "Page has been created" msgstr "Taulu %1$s on luotu." -#: pmd_pdf.php:64 +#: pmd_pdf.php:62 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:84 +#: pmd_pdf.php:82 msgid "Export/Import to scale" msgstr "Vie/tuo skaalaan" -#: pmd_pdf.php:88 +#: pmd_pdf.php:86 msgid "recommended" msgstr "suositus" -#: pmd_pdf.php:93 +#: pmd_pdf.php:91 msgid "to/from page" msgstr "Sivulta/sivulle" -#: querywindow.php:94 +#: querywindow.php:93 msgid "Import files" msgstr "Tuo tiedostoja" -#: querywindow.php:105 +#: querywindow.php:104 msgid "All" msgstr "Kaikki" @@ -4540,69 +4606,69 @@ msgstr "Tiedot" msgid "Character Sets and Collations" msgstr "Merkistökoodaukset ja aakkosjärjestykset" -#: server_databases.php:51 +#: server_databases.php:49 msgid "No databases selected." msgstr "Yhtään tietokantaa ei ole valittu." -#: server_databases.php:62 +#: server_databases.php:60 #, php-format msgid "%s databases have been dropped successfully." msgstr "%s tietokantaa poistettiin onnistuneesti." -#: server_databases.php:87 +#: server_databases.php:85 msgid "Databases statistics" msgstr "Tietokantatilastot" -#: server_databases.php:116 server_status.php:370 +#: server_databases.php:114 server_status.php:370 #: setup/lib/messages.inc.php:114 msgid "Tables" msgstr "Taulut" -#: server_databases.php:194 server_replication.php:180 -#: server_replication.php:208 +#: server_databases.php:192 server_replication.php:179 +#: server_replication.php:207 msgid "Master replication" msgstr "Isäntäpalvelimen replikointi" -#: server_databases.php:196 server_replication.php:247 +#: server_databases.php:194 server_replication.php:246 msgid "Slave replication" msgstr "Alipalvelimen replikointi" -#: server_databases.php:229 +#: server_databases.php:227 #, fuzzy #| msgid "Go to database" msgid "Jump to database" msgstr "Siirry tietokantaan" -#: server_databases.php:266 +#: server_databases.php:264 #, fuzzy #| msgid "Master replication" msgid "Not replicated" msgstr "Isäntäpalvelimen replikointi" -#: server_databases.php:272 +#: server_databases.php:270 #, fuzzy #| msgid "Replication" msgid "Replicated" msgstr "Replikaatio" -#: server_databases.php:288 +#: server_databases.php:286 #, php-format msgid "Check privileges for database "%s"." msgstr "Hallitse tietokannan "%s" käyttöoikeuksia." -#: server_databases.php:292 server_databases.php:293 +#: server_databases.php:290 server_databases.php:291 msgid "Check Privileges" msgstr "Hallitse käyttöoikeuksia" -#: server_databases.php:357 server_databases.php:358 +#: server_databases.php:355 server_databases.php:356 msgid "Enable Statistics" msgstr "Näytä tilastot" -#: server_databases.php:361 server_databases.php:362 +#: server_databases.php:359 server_databases.php:360 msgid "Disable Statistics" msgstr "Kätke tilastot" -#: server_databases.php:365 +#: server_databases.php:363 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -4610,122 +4676,122 @@ msgstr "" "Huom: Tietokantatilastojen näyttäminen täältä käsin saattaa aiheuttaa " "runsaasti liikennettä Internet-palvelimen ja MySQL-palvelimen välille." -#: server_engines.php:48 +#: server_engines.php:47 msgid "Storage Engines" msgstr "Tallennusmoottorit" -#: server_export.php:20 +#: server_export.php:18 msgid "View dump (schema) of databases" msgstr "Näytä tietokannoista vedos (skeema)" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:23 server_privileges.php:265 msgid "Includes all privileges except GRANT." msgstr "Sisältää kaikki käyttöoikeudet GRANT-oikeutta lukuun ottamatta." -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:24 server_privileges.php:191 +#: server_privileges.php:514 msgid "Allows altering the structure of existing tables." msgstr "Sallii muuttaa olemassa olevien taulujen rakennetta." -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:25 server_privileges.php:207 +#: server_privileges.php:520 msgid "Allows altering and dropping stored routines." msgstr "Sallii talletettujen rutiinien muuntamisen ja poistamisen." -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:26 server_privileges.php:183 +#: server_privileges.php:513 msgid "Allows creating new databases and tables." msgstr "Sallii uusien tietokantojen ja taulujen luomisen." -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:27 server_privileges.php:206 +#: server_privileges.php:519 msgid "Allows creating stored routines." msgstr "Sallii talletettujen rutiinien luomisen." -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:513 msgid "Allows creating new tables." msgstr "Sallii uusien taulujen luomisen." -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:29 server_privileges.php:194 +#: server_privileges.php:517 msgid "Allows creating temporary tables." msgstr "Sallii tilapäisten taulujen luomisen." -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:30 server_privileges.php:208 +#: server_privileges.php:553 msgid "Allows creating, dropping and renaming user accounts." msgstr "Sallii käyttäjätilien luomisen, poistamisen ja uudelleennimeämisen." -#: server_privileges.php:32 server_privileges.php:199 -#: server_privileges.php:203 server_privileges.php:526 -#: server_privileges.php:530 +#: server_privileges.php:31 server_privileges.php:198 +#: server_privileges.php:202 server_privileges.php:525 +#: server_privileges.php:529 msgid "Allows creating new views." msgstr "Sallii uusien näkymien luomisen." -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:32 server_privileges.php:182 +#: server_privileges.php:505 msgid "Allows deleting data." msgstr "Sallii tietojen poistamisen." -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:33 server_privileges.php:184 +#: server_privileges.php:516 msgid "Allows dropping databases and tables." msgstr "Sallii tietokantojen ja taulujen poistamisen." -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:34 server_privileges.php:516 msgid "Allows dropping tables." msgstr "Sallii taulujen poistamisen." -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:35 server_privileges.php:199 +#: server_privileges.php:533 msgid "Allows to set up events for the event scheduler" msgstr "Sallii luoda tapahtuma-ajastimelle tapahtumia" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:36 server_privileges.php:209 +#: server_privileges.php:521 msgid "Allows executing stored routines." msgstr "Sallii talletettujen rutiinien suorittamisen." -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:37 server_privileges.php:188 +#: server_privileges.php:508 msgid "Allows importing data from and exporting data into files." msgstr "Sallii tietojen tuomisen ja viemisen." -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:38 server_privileges.php:539 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Sallii käyttäjien ja käyttöoikeuksien lisäämisen lataamatta " "käyttöoikeustauluja uudestaan." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:515 msgid "Allows creating and dropping indexes." msgstr "Sallii indeksien luomisen ja poistamisen." -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:40 server_privileges.php:180 +#: server_privileges.php:441 server_privileges.php:503 msgid "Allows inserting and replacing data." msgstr "Sallii tietojen lisäämisen ja korvaamisen." -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:41 server_privileges.php:195 +#: server_privileges.php:548 msgid "Allows locking tables for the current thread." msgstr "Sallii taulujen lukitsemisen nykyiselle säikeelle." -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:42 server_privileges.php:645 +#: server_privileges.php:647 msgid "Limits the number of new connections the user may open per hour." msgstr "Rajoittaa käyttäjän tunnissa luomien uusien yhteyksien määrän." -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:43 server_privileges.php:633 +#: server_privileges.php:635 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Rajoittaa käyttäjän tunnissa palvelimelle lähettämien kyselyjen määrän." -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:44 server_privileges.php:639 +#: server_privileges.php:641 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -4733,60 +4799,60 @@ msgstr "" "Rajoittaa, kuinka monta monta kertaa käyttäjä saa suorittaa tauluihin tai " "tietokantoihin muutoksia tekeviä komentoja tunnin aikana." -#: server_privileges.php:46 server_privileges.php:652 -#: server_privileges.php:654 +#: server_privileges.php:45 server_privileges.php:651 +#: server_privileges.php:653 msgid "Limits the number of simultaneous connections the user may have." msgstr "Rajoittaa käyttäjän yhtäaikaisten yhteyksien määrän." -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:46 server_privileges.php:187 +#: server_privileges.php:543 msgid "Allows viewing processes of all users" msgstr "Sallii kaikkien käyttäjien prosessien näyttämisen" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:47 server_privileges.php:189 +#: server_privileges.php:447 server_privileges.php:549 msgid "Has no effect in this MySQL version." msgstr "Ei vaikutusta tässä MySQL-palvelimen versiossa." -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:48 server_privileges.php:185 +#: server_privileges.php:544 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Sallii palvelinasetusten uudelleenlataamisen ja palvelimen välimuistin " "tyhjentämisen." -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:197 +#: server_privileges.php:551 msgid "Allows the user to ask where the slaves / masters are." msgstr "Sallii käyttäjän kysyä, missä ali- ja pääpalvelimet sijaitsevat." -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:50 server_privileges.php:196 +#: server_privileges.php:552 msgid "Needed for the replication slaves." msgstr "Tarvitaan replikaatiota käyttävissä alipalvelimissa." -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:51 server_privileges.php:179 +#: server_privileges.php:438 server_privileges.php:502 msgid "Allows reading data." msgstr "Sallii tietojen lukemisen." -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:52 server_privileges.php:192 +#: server_privileges.php:546 msgid "Gives access to the complete list of databases." msgstr "Sallii koko tietokantaluettelon käytön." -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:53 server_privileges.php:203 +#: server_privileges.php:205 server_privileges.php:518 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Sallii SHOW CREATE VIEW -kyselyjen suorittamisen." -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:54 server_privileges.php:186 +#: server_privileges.php:545 msgid "Allows shutting down the server." msgstr "Sallii palvelimen sammuttamisen." -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:55 server_privileges.php:193 +#: server_privileges.php:542 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -4796,157 +4862,157 @@ msgstr "" "saavutettu; Tarvitaan useissa pääkäyttäjän toiminnoissa kuten globaalien " "muuttujien asettamisessa ja muitten käyttäjien säikeiden lopettamisessa." -#: server_privileges.php:57 server_privileges.php:201 -#: server_privileges.php:535 +#: server_privileges.php:56 server_privileges.php:200 +#: server_privileges.php:534 msgid "Allows creating and dropping triggers" msgstr "Sallii herättimien eli laukaisinten luomisen ja poistamisen" -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:57 server_privileges.php:181 +#: server_privileges.php:444 server_privileges.php:504 msgid "Allows changing data." msgstr "Sallii tietojen muuttamisen." -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:58 server_privileges.php:259 msgid "No privileges." msgstr "Ei käyttöoikeuksia." -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:301 server_privileges.php:302 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Ei mitään" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1710 server_privileges.php:1716 +#: server_privileges.php:430 server_privileges.php:565 +#: server_privileges.php:1714 server_privileges.php:1720 msgid "Table-specific privileges" msgstr "Taulukohtaiset käyttöoikeudet" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1532 +#: server_privileges.php:431 server_privileges.php:573 +#: server_privileges.php:1536 msgid " Note: MySQL privilege names are expressed in English " msgstr " Huom! MySQL-käyttöoikeuksien nimet ovat englanniksi! " -#: server_privileges.php:563 server_privileges.php:1531 +#: server_privileges.php:562 server_privileges.php:1535 msgid "Global privileges" msgstr "Globaalit käyttöoikeudet" -#: server_privileges.php:565 server_privileges.php:1710 +#: server_privileges.php:564 server_privileges.php:1714 msgid "Database-specific privileges" msgstr "Tietokantakohtaiset käyttöoikeudet" -#: server_privileges.php:610 +#: server_privileges.php:609 msgid "Administration" msgstr "Hallinta" -#: server_privileges.php:630 +#: server_privileges.php:629 msgid "Resource limits" msgstr "Resurssirajoitukset" -#: server_privileges.php:631 +#: server_privileges.php:630 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Huom: Näiden valintojen asettaminen nollaksi (0) poistaa rajoituksen." -#: server_privileges.php:708 +#: server_privileges.php:707 msgid "Login Information" msgstr "Kirjautumistiedot" -#: server_privileges.php:802 +#: server_privileges.php:801 msgid "Do not change the password" msgstr "Älä vaihda salasanaa" -#: server_privileges.php:835 server_privileges.php:2197 +#: server_privileges.php:834 server_privileges.php:2201 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Käyttäjiä ei ole." -#: server_privileges.php:879 +#: server_privileges.php:878 #, php-format msgid "The user %s already exists!" msgstr "Käyttäjä %s on jo olemassa!" -#: server_privileges.php:962 +#: server_privileges.php:961 msgid "You have added a new user." msgstr "Uusi käyttäjä lisätty." -#: server_privileges.php:1183 +#: server_privileges.php:1184 #, php-format msgid "You have updated the privileges for %s." msgstr "Käyttäjän %s käyttöoikeudet on päivitetty." -#: server_privileges.php:1207 +#: server_privileges.php:1208 #, php-format msgid "You have revoked the privileges for %s" msgstr "Käyttäjän %s käyttöoikeudet on poistettu" -#: server_privileges.php:1243 +#: server_privileges.php:1244 #, php-format msgid "The password for %s was changed successfully." msgstr "Käyttäjän %s salasanan vaihto onnistui." -#: server_privileges.php:1263 +#: server_privileges.php:1264 #, php-format msgid "Deleting %s" msgstr "Poistetaan: %s" -#: server_privileges.php:1274 +#: server_privileges.php:1275 msgid "No users selected for deleting!" msgstr "Yhtään käyttäjää ei valittu poistettavaksi!" -#: server_privileges.php:1277 +#: server_privileges.php:1278 msgid "Reloading the privileges" msgstr "Ladataan käyttöoikeuksia uudelleen" -#: server_privileges.php:1292 +#: server_privileges.php:1296 msgid "The selected users have been deleted successfully." msgstr "Valitsemiesi käyttäjien poisto onnistui." -#: server_privileges.php:1327 +#: server_privileges.php:1331 msgid "The privileges were reloaded successfully." msgstr "Käyttöoikeuksien uudelleenlataus onnistui." -#: server_privileges.php:1355 server_privileges.php:1641 +#: server_privileges.php:1359 server_privileges.php:1645 msgid "Edit Privileges" msgstr "Muokkaa käyttöoikeuksia" -#: server_privileges.php:1364 +#: server_privileges.php:1368 msgid "Revoke" msgstr "Pura käyttöoikeudet" -#: server_privileges.php:1396 +#: server_privileges.php:1400 msgid "User overview" msgstr "Käyttäjien yleiskatsaus" -#: server_privileges.php:1533 server_privileges.php:1715 -#: server_privileges.php:2064 +#: server_privileges.php:1537 server_privileges.php:1719 +#: server_privileges.php:2068 msgid "Grant" msgstr "Valtuudet (GRANT)" -#: server_privileges.php:1552 server_privileges.php:2154 +#: server_privileges.php:1556 server_privileges.php:2158 msgid "Any" msgstr "Mikä tahansa" -#: server_privileges.php:1601 server_privileges.php:1625 -#: server_privileges.php:2019 server_privileges.php:2208 +#: server_privileges.php:1605 server_privileges.php:1629 +#: server_privileges.php:2023 server_privileges.php:2212 msgid "Add a new User" msgstr "Lisää uusi käyttäjä" -#: server_privileges.php:1606 +#: server_privileges.php:1610 msgid "Remove selected users" msgstr "Poista valitut käyttäjät" -#: server_privileges.php:1609 +#: server_privileges.php:1613 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Pura kaikki käyttäjän aktiiviset käyttöoikeudet, ja poista ne sen jälkeen." -#: server_privileges.php:1610 server_privileges.php:1611 -#: server_privileges.php:1612 +#: server_privileges.php:1614 server_privileges.php:1615 +#: server_privileges.php:1616 msgid "Drop the databases that have the same names as the users." msgstr "Poista tietokannat, joilla on sama nimi kuin käyttäjillä." -#: server_privileges.php:1628 +#: server_privileges.php:1632 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4959,52 +5025,52 @@ msgstr "" "käyttämistä käyttöoikeuksista, jos tauluihin on tehty muutoksia käsin. " "Tällöin %skäyttöoikeudet on ladattava uudestaan%s ennen jatkamista." -#: server_privileges.php:1676 +#: server_privileges.php:1680 msgid "The selected user was not found in the privilege table." msgstr "Valittua käyttäjää ei löytynyt käyttöoikeustaulusta." -#: server_privileges.php:1716 +#: server_privileges.php:1720 msgid "Column-specific privileges" msgstr "Sarakekohtaiset käyttöoikeudet" -#: server_privileges.php:1917 +#: server_privileges.php:1921 msgid "Add privileges on the following database" msgstr "Lisää käyttöoikeudet seuraavaan tietokantaan" -#: server_privileges.php:1935 +#: server_privileges.php:1939 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "Korvausmerkkien _ ja % eteen on lisättävä \\-merkki, jotta ne näkyisivät " "oikein" -#: server_privileges.php:1938 +#: server_privileges.php:1942 msgid "Add privileges on the following table" msgstr "Lisää käyttöoikeudet seuraavaan tauluun" -#: server_privileges.php:1995 +#: server_privileges.php:1999 msgid "Change Login Information / Copy User" msgstr "Vaihda kirjautumistietoja / Kopioi käyttäjä" -#: server_privileges.php:1998 +#: server_privileges.php:2002 msgid "Create a new user with the same privileges and ..." msgstr "Luo uusi käyttäjä samoilla käyttöoikeuksilla ja ..." -#: server_privileges.php:2000 +#: server_privileges.php:2004 msgid "... keep the old one." msgstr "... säilytä vanha käyttäjä." -#: server_privileges.php:2001 +#: server_privileges.php:2005 msgid " ... delete the old one from the user tables." msgstr " ... poista vanha käyttäjä käyttäjätauluista." -#: server_privileges.php:2002 +#: server_privileges.php:2006 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "" " ... peruuta kaikki vanhan käyttäjän aktiiviset käyttöoikeudet ja tuhoa " "käyttäjä sen jälkeen." -#: server_privileges.php:2003 +#: server_privileges.php:2007 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -5012,45 +5078,45 @@ msgstr "" " ... poista vanha käyttäjä käyttäjätauluista ja lataa käyttöoikeudet sen " "jälkeen uudelleen." -#: server_privileges.php:2025 +#: server_privileges.php:2029 msgid "Database for user" msgstr "Tietokanta käyttäjälle" -#: server_privileges.php:2029 +#: server_privileges.php:2033 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Ei mitään" -#: server_privileges.php:2030 +#: server_privileges.php:2034 msgid "Create database with same name and grant all privileges" msgstr "Luo samanniminen tietokanta ja anna kaikki oikeudet" -#: server_privileges.php:2031 +#: server_privileges.php:2035 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" "Anna kaikki oikeudet tietokannalle käyttäen korvausmerkkiä (username\\_%)" -#: server_privileges.php:2034 +#: server_privileges.php:2038 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Anna tietokannalle "%s" kaikki oikeudet" -#: server_privileges.php:2057 +#: server_privileges.php:2061 #, php-format msgid "Users having access to "%s"" msgstr "Käyttäjät, joilla on oikeus käyttää kohdetta "%s"" -#: server_privileges.php:2165 +#: server_privileges.php:2169 msgid "global" msgstr "globaali" -#: server_privileges.php:2167 +#: server_privileges.php:2171 msgid "database-specific" msgstr "tietokantakohtainen" -#: server_privileges.php:2169 +#: server_privileges.php:2173 msgid "wildcard" msgstr "korvausmerkki" @@ -5069,44 +5135,44 @@ msgstr "PhpMyAdmin ei voinut lopettaa säiettä %s. Se on ehkä jo suljettu." msgid "ID" msgstr "Tunnus" -#: server_replication.php:50 +#: server_replication.php:49 msgid "Unknown error" msgstr "Tuntematon virhe" -#: server_replication.php:57 +#: server_replication.php:56 #, php-format msgid "Unable to connect to master %s." msgstr "Isäntäpalvelimeen %s ei voida muodostaa yhteyttä." -#: server_replication.php:64 +#: server_replication.php:63 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" "Isäntäpalvelimen lokin sijaintia ei voida lukea. Isäntäpalvelimen " "käyttöoikeusongelmat mahdollisia." -#: server_replication.php:70 +#: server_replication.php:69 msgid "Unable to change master" msgstr "Pääpalvelinta ei voitu vaihtaa" -#: server_replication.php:73 +#: server_replication.php:72 #, php-format msgid "Master server changed succesfully to %s" msgstr "Isäntäpalvelimeksi on onnistuen vaihdettu %s" -#: server_replication.php:181 +#: server_replication.php:180 msgid "This server is configured as master in a replication process." msgstr "Tämä palvelin on määritelty replikaatioprosessin isäntäpalvelimeksi." -#: server_replication.php:183 server_status.php:391 +#: server_replication.php:182 server_status.php:391 msgid "Show master status" msgstr "Näytä isäntäpalvelimen tila" -#: server_replication.php:186 +#: server_replication.php:185 msgid "Show connected slaves" msgstr "Näytä alipalvelimet, joihin on muodostettu yhteys" -#: server_replication.php:209 +#: server_replication.php:208 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -5115,11 +5181,11 @@ msgstr "" "Tätä palvelinta ei ole määritetty replikaatioprosessin isäntäpalvelimeksi. " "Haluatko määrittää sen?" -#: server_replication.php:216 +#: server_replication.php:215 msgid "Master configuration" msgstr "Isäntäpalvelimen asetukset" -#: server_replication.php:217 +#: server_replication.php:216 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -5133,19 +5199,19 @@ msgstr "" "Voit myös oletusarvoisesti sivuuttaa kaikki tietokannat ja sallia vain " "tiettyjen tietokantojen replikoinnin. Valitse tila:" -#: server_replication.php:220 +#: server_replication.php:219 msgid "Replicate all databases; Ignore:" msgstr "Replikoi kaikki tietokannat; Sivuuta:" -#: server_replication.php:221 +#: server_replication.php:220 msgid "Ignore all databases; Replicate:" msgstr "Sivuuta kaikki tietokannat; Replikoi:" -#: server_replication.php:224 +#: server_replication.php:223 msgid "Please select databases:" msgstr "Valitse tietokannat:" -#: server_replication.php:227 +#: server_replication.php:226 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -5153,7 +5219,7 @@ msgstr "" "Lisää nyt seuraavat rivit my.cnf-tiedostoosi ja käynnistä sitten MySQL-" "palvelin alusta." -#: server_replication.php:229 +#: server_replication.php:228 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " @@ -5163,68 +5229,68 @@ msgstr "" "jälkeen esiin pitäisi tulla sanoman, joka kertoo, että palvelin on asetettu isäntäpalvelimeksi" -#: server_replication.php:292 +#: server_replication.php:291 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:295 +#: server_replication.php:294 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:304 +#: server_replication.php:303 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" "Palvelin on määritetty replikaatioprosessin alipalvelimeksi. Mitä haluat " "tehdä?" -#: server_replication.php:307 +#: server_replication.php:306 msgid "See slave status table" msgstr "Näytä alipalvelimen tilan taulu" -#: server_replication.php:310 +#: server_replication.php:309 msgid "Synchronize databases with master" msgstr "Yhtenäistä tietokannat isäntäpalvelimen kanssa" -#: server_replication.php:321 +#: server_replication.php:320 msgid "Control slave:" msgstr "Ohjaa alipalvelinta:" -#: server_replication.php:324 +#: server_replication.php:323 msgid "Full start" msgstr "Kokonäkymän alku" -#: server_replication.php:324 +#: server_replication.php:323 msgid "Full stop" msgstr "Kokonäkymän loppu" -#: server_replication.php:325 +#: server_replication.php:324 msgid "Reset slave" msgstr "Nollaa alipalvelin" -#: server_replication.php:326 +#: server_replication.php:325 #, php-format msgid "SQL Thread %s only" msgstr "SQL-säie %s vain" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 msgid "Start" msgstr "Käynnistä" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 msgid "Stop" msgstr "Lopeta" -#: server_replication.php:327 +#: server_replication.php:326 #, php-format msgid "IO Thread %s only" msgstr "IO-säie %s vain" -#: server_replication.php:331 +#: server_replication.php:330 msgid "Error management:" msgstr "Virheiden hallinta:" -#: server_replication.php:333 +#: server_replication.php:332 #, fuzzy #| msgid "Skipping error(s) might lead into unsynchronized master and slave!" msgid "Skipping errors might lead into unsynchronized master and slave!" @@ -5232,19 +5298,19 @@ msgstr "" "Isäntä- ja alipalvelin saattavat jäädä yhtenäistämättömiksi, mikäli virheet " "ohitetaan!" -#: server_replication.php:335 +#: server_replication.php:334 msgid "Skip current error" msgstr "Ohita nykyinen virhe" -#: server_replication.php:336 +#: server_replication.php:335 msgid "Skip next" msgstr "Ohita seuraava" -#: server_replication.php:339 +#: server_replication.php:338 msgid "errors." msgstr "virhettä." -#: server_replication.php:354 +#: server_replication.php:353 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -6095,113 +6161,113 @@ msgstr "Kyselyn tyyppi" msgid "Replication status" msgstr "Replikaation tila" -#: server_synchronize.php:93 +#: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "Lähteeseen ei voida muodostaa yhteyttä" -#: server_synchronize.php:96 +#: server_synchronize.php:95 msgid "Could not connect to the target" msgstr "Kohteeseen ei voida muodostaa yhteyttä" -#: server_synchronize.php:121 server_synchronize.php:124 tbl_create.php:77 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "Tietokantaa '%s' ei ole olemassa." -#: server_synchronize.php:264 +#: server_synchronize.php:263 msgid "Structure Synchronization" msgstr "Rakenteen yhtenäistäminen" -#: server_synchronize.php:271 +#: server_synchronize.php:270 msgid "Data Synchronization" msgstr "Tietojen yhtenäistäminen" -#: server_synchronize.php:399 server_synchronize.php:838 +#: server_synchronize.php:398 server_synchronize.php:837 msgid "not present" msgstr "ei käytössä" -#: server_synchronize.php:423 server_synchronize.php:866 +#: server_synchronize.php:422 server_synchronize.php:865 msgid "Structure Difference" msgstr "Rakenne-erot" -#: server_synchronize.php:424 server_synchronize.php:867 +#: server_synchronize.php:423 server_synchronize.php:866 msgid "Data Difference" msgstr "Tietojen erot" -#: server_synchronize.php:429 server_synchronize.php:872 +#: server_synchronize.php:428 server_synchronize.php:871 msgid "Add column(s)" msgstr "Lisää sarake/sarakkeita" -#: server_synchronize.php:430 server_synchronize.php:873 +#: server_synchronize.php:429 server_synchronize.php:872 msgid "Remove column(s)" msgstr "Poista sarake/sarakkeet" -#: server_synchronize.php:431 server_synchronize.php:874 +#: server_synchronize.php:430 server_synchronize.php:873 msgid "Alter column(s)" msgstr "Muuta saraketta/sarakkeita" -#: server_synchronize.php:432 server_synchronize.php:875 +#: server_synchronize.php:431 server_synchronize.php:874 msgid "Remove index(s)" msgstr "Poista indeksi(t)" -#: server_synchronize.php:433 server_synchronize.php:876 +#: server_synchronize.php:432 server_synchronize.php:875 msgid "Apply index(s)" msgstr "Käytä indeksiä/indeksejä" -#: server_synchronize.php:434 server_synchronize.php:877 +#: server_synchronize.php:433 server_synchronize.php:876 msgid "Update row(s)" msgstr "Päivitä rivi(t)" -#: server_synchronize.php:435 server_synchronize.php:878 +#: server_synchronize.php:434 server_synchronize.php:877 msgid "Insert row(s)" msgstr "Lisää rivi/rivejä" -#: server_synchronize.php:445 server_synchronize.php:889 +#: server_synchronize.php:444 server_synchronize.php:888 msgid "Would you like to delete all the previous rows from target tables?" msgstr "Haluatko poistaa kaikki edelliset rivit kohdetauluista?" -#: server_synchronize.php:448 server_synchronize.php:893 +#: server_synchronize.php:447 server_synchronize.php:892 msgid "Apply Selected Changes" msgstr "Tee valitut muutokset" -#: server_synchronize.php:450 server_synchronize.php:895 +#: server_synchronize.php:449 server_synchronize.php:894 msgid "Synchronize Databases" msgstr "Yhtenäistä tietokannat" -#: server_synchronize.php:463 +#: server_synchronize.php:462 msgid "Selected target tables have been synchronized with source tables." msgstr "Valitut kohdetaulut on yhtenäistetty lähdetaulujen kanssa." -#: server_synchronize.php:941 +#: server_synchronize.php:940 msgid "Target database has been synchronized with source database" msgstr "Kohdetietokanta on yhtenäistetty lähdetietokannan kanssa" -#: server_synchronize.php:1002 +#: server_synchronize.php:1001 msgid "The following queries have been executed:" msgstr "Seuraavat kyselyt on suoritettu:" -#: server_synchronize.php:1121 +#: server_synchronize.php:1120 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1122 +#: server_synchronize.php:1121 #, fuzzy #| msgid "Insecure connection" msgid "Current connection" msgstr "Salaamaton yhteys" -#: server_synchronize.php:1151 +#: server_synchronize.php:1150 #, fuzzy, php-format #| msgid "Configuration file" msgid "Configuration: %s" msgstr "Asetustiedosto" -#: server_synchronize.php:1166 +#: server_synchronize.php:1165 msgid "Socket" msgstr "Pistoke" -#: server_synchronize.php:1212 +#: server_synchronize.php:1211 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -6798,10 +6864,15 @@ msgid "Signon login options" msgstr "Kirjautumistodennuksen asetukset" #: setup/lib/messages.inc.php:128 +#, fuzzy +#| msgid "" +#| "Configure phpMyAdmin database to gain access to additional features, see " +#| "[a@../Documentation.html#linked-tables]linked-tables infrastructure[/a] " +#| "in documentation" msgid "" "Configure phpMyAdmin database to gain access to additional features, see " -"[a@../Documentation.html#linked-tables]linked-tables infrastructure[/a] in " -"documentation" +"[a@../Documentation.html#linked-tables]phpMyAdmin configuration storage[/a] " +"in documentation" msgstr "" "Määritä phpMyAdmin-tietokannan asetukset käyttääksesi lisäasetuksia; katso " "ohjeista [a@../Documentation.html#linked-tables]linkitettyjen taulujen " @@ -8007,117 +8078,117 @@ msgstr "" msgid "ZIP" msgstr "ZIP" -#: sql.php:495 tbl_replace.php:385 +#: sql.php:494 tbl_replace.php:384 #, php-format msgid "Inserted row id: %1$d" msgstr "Lisätyn rivin tunnus: %1$d" -#: sql.php:512 +#: sql.php:511 msgid "Showing as PHP code" msgstr "Näytetään PHP-koodina" -#: sql.php:515 tbl_replace.php:359 +#: sql.php:514 tbl_replace.php:358 msgid "Showing SQL query" msgstr "Näytetään SQL-kysely" -#: sql.php:517 +#: sql.php:516 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Tarkista SQL-lause" -#: sql.php:638 +#: sql.php:631 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Taulun \"%s\" indeksien kanssa on ongelmia" -#: sql.php:670 +#: sql.php:663 msgid "Label" msgstr "Tunniste" -#: tbl_addfield.php:188 tbl_alter.php:102 tbl_indexes.php:97 +#: tbl_addfield.php:185 tbl_alter.php:100 tbl_indexes.php:97 #, php-format msgid "Table %1$s has been altered successfully" msgstr "Taulun %1$s muuttaminen onnistui." -#: tbl_change.php:250 tbl_select.php:26 tbl_select.php:27 tbl_select.php:30 -#: tbl_select.php:33 +#: tbl_change.php:245 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_select.php:32 msgid "Browse foreign values" msgstr "Selaa viitearvoja" -#: tbl_change.php:280 tbl_change.php:318 +#: tbl_change.php:275 tbl_change.php:313 msgid "Function" msgstr "Funktio" -#: tbl_change.php:300 tbl_indexes.php:199 tbl_indexes.php:224 +#: tbl_change.php:295 tbl_indexes.php:198 tbl_indexes.php:223 msgid "Ignore" msgstr "Älä huomioi" -#: tbl_change.php:725 +#: tbl_change.php:720 #, fuzzy #| msgid " Because of its length,
                            this field might not be editable " msgid " Because of its length,
                            this column might not be editable " msgstr " Pituudestaan johtuen
                            tätä saraketta ei voine muokata " -#: tbl_change.php:884 +#: tbl_change.php:835 msgid "Remove BLOB Repository Reference" msgstr "Poista BLOB-tietokantaviittaus" -#: tbl_change.php:890 +#: tbl_change.php:841 msgid "Binary - do not edit" msgstr "Binääritietoa - älä muokkaa" -#: tbl_change.php:983 +#: tbl_change.php:889 msgid "Upload to BLOB repository" msgstr "Lähetä BLOB-tietokantaan" -#: tbl_change.php:1128 +#: tbl_change.php:1026 msgid "Insert as new row" msgstr "Lisää uutena rivinä" -#: tbl_change.php:1129 +#: tbl_change.php:1027 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:1130 +#: tbl_change.php:1028 #, fuzzy msgid "Show insert query" msgstr "Näytetään SQL-kysely" -#: tbl_change.php:1145 +#: tbl_change.php:1043 msgid "Go back to previous page" msgstr "Takaisin" -#: tbl_change.php:1146 +#: tbl_change.php:1044 msgid "Insert another new row" msgstr "Lisää uusi rivi" -#: tbl_change.php:1150 +#: tbl_change.php:1048 msgid "Go back to this page" msgstr "Palaa tälle sivulle" -#: tbl_change.php:1158 +#: tbl_change.php:1056 msgid "Edit next row" msgstr "Muokkaa seuraavaa riviä" -#: tbl_change.php:1169 +#: tbl_change.php:1067 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Käytä arvojen välillä siirtymiseen sarkainta. Ctrl- ja nuolinäppäimillä voi " "siirtyä mihin tahansa kohtaan." -#: tbl_change.php:1207 +#: tbl_change.php:1105 #, php-format msgid "Restart insertion with %s rows" msgstr "Aloita lisäys alusta %s rivillä" -#: tbl_create.php:57 +#: tbl_create.php:55 #, php-format msgid "Table %s already exists!" msgstr "Taulu %s on jo olemassa!" -#: tbl_create.php:244 +#: tbl_create.php:241 #, php-format msgid "Table %1$s has been created." msgstr "Taulu %1$s on luotu." @@ -8138,194 +8209,194 @@ msgstr "Indeksiä ei voi muuttaa PRIMARY-nimiseksi!" msgid "No index parts defined!" msgstr "Indeksin osia ei ole määritelty!" -#: tbl_indexes.php:159 +#: tbl_indexes.php:158 msgid "Create a new index" msgstr "Luo uusi indeksi" -#: tbl_indexes.php:161 +#: tbl_indexes.php:160 msgid "Modify an index" msgstr "Muokkaa indeksiä" -#: tbl_indexes.php:167 +#: tbl_indexes.php:166 msgid "Index name:" msgstr "Indeksin nimi:" -#: tbl_indexes.php:173 +#: tbl_indexes.php:172 msgid "Index type:" msgstr "Indeksin tyyppi:" -#: tbl_indexes.php:183 +#: tbl_indexes.php:182 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "(\"PRIMARY\" saa olla vain ja ainoastaan perusavaimen nimenä!)" -#: tbl_indexes.php:250 +#: tbl_indexes.php:249 #, php-format msgid "Add to index  %s column(s)" msgstr "Lisää indeksiin %s sarake(tta)" -#: tbl_indexes.php:255 tbl_structure.php:588 tbl_structure.php:599 +#: tbl_indexes.php:254 tbl_structure.php:586 tbl_structure.php:597 msgid "Column count has to be larger than zero." msgstr "Sarakkeiden määrän on oltava nollaa suurempi." -#: tbl_move_copy.php:45 +#: tbl_move_copy.php:44 msgid "Can't move table to same one!" msgstr "Taulua ei voi siirtää itseensä!" -#: tbl_move_copy.php:47 +#: tbl_move_copy.php:46 msgid "Can't copy table to same one!" msgstr "Taulua ei voi kopioida itseensä!" -#: tbl_move_copy.php:55 +#: tbl_move_copy.php:54 #, php-format msgid "Table %s has been moved to %s." msgstr "Taulu %s on siirretty %s." -#: tbl_move_copy.php:57 +#: tbl_move_copy.php:56 #, php-format msgid "Table %s has been copied to %s." msgstr "Taulu %s on kopioitu uuteen tauluun %s." -#: tbl_move_copy.php:81 +#: tbl_move_copy.php:80 msgid "The table name is empty!" msgstr "Taulun nimi puuttuu!" -#: tbl_operations.php:248 +#: tbl_operations.php:246 msgid "Alter table order by" msgstr "Lajittele taulu" -#: tbl_operations.php:257 +#: tbl_operations.php:255 msgid "(singly)" msgstr "(yksitellen)" -#: tbl_operations.php:277 +#: tbl_operations.php:275 msgid "Move table to (database.table):" msgstr "Siirrä taulu toiseen tauluun (tietokanta.taulu):" -#: tbl_operations.php:335 +#: tbl_operations.php:333 msgid "Table options" msgstr "Taulun valinnat" -#: tbl_operations.php:339 +#: tbl_operations.php:337 msgid "Rename table to" msgstr "Nimeä taulu uudelleen" -#: tbl_operations.php:510 +#: tbl_operations.php:508 msgid "Copy table to (database.table):" msgstr "Kopioi taulu toiseen tauluun nimellä (tietokanta.taulu):" -#: tbl_operations.php:557 +#: tbl_operations.php:555 msgid "Switch to copied table" msgstr "Siirry kopioituun tauluun" -#: tbl_operations.php:569 +#: tbl_operations.php:567 msgid "Table maintenance" msgstr "Taulun ylläpito" -#: tbl_operations.php:590 +#: tbl_operations.php:588 msgid "Defragment table" msgstr "Eheytä taulu" -#: tbl_operations.php:629 +#: tbl_operations.php:627 #, php-format msgid "Table %s has been flushed" msgstr "Taulun %s välimuisti on tyhjennetty" -#: tbl_operations.php:635 +#: tbl_operations.php:633 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Tyhjennä taulun välimuisti (\"FLUSH\")" -#: tbl_operations.php:650 +#: tbl_operations.php:648 msgid "Partition maintenance" msgstr "Osituksen ylläpito" -#: tbl_operations.php:658 +#: tbl_operations.php:656 #, php-format msgid "Partition %s" msgstr "Ositus %s" -#: tbl_operations.php:661 +#: tbl_operations.php:659 msgid "Analyze" msgstr "Analysoi" -#: tbl_operations.php:662 +#: tbl_operations.php:660 msgid "Check" msgstr "Tarkasta" -#: tbl_operations.php:663 +#: tbl_operations.php:661 msgid "Optimize" msgstr "Optimoi" -#: tbl_operations.php:664 +#: tbl_operations.php:662 msgid "Rebuild" msgstr "Rakenna uudestaan" -#: tbl_operations.php:665 +#: tbl_operations.php:663 msgid "Repair" msgstr "Korjaa" -#: tbl_operations.php:677 +#: tbl_operations.php:675 msgid "Remove partitioning" msgstr "Poista ositus" -#: tbl_operations.php:703 +#: tbl_operations.php:701 msgid "Check referential integrity:" msgstr "Tarkista viitteiden eheys:" -#: tbl_printview.php:73 +#: tbl_printview.php:72 msgid "Show tables" msgstr "Näytä taulut" -#: tbl_printview.php:308 tbl_structure.php:655 +#: tbl_printview.php:307 tbl_structure.php:653 msgid "Space usage" msgstr "Levytilan käyttö" -#: tbl_printview.php:312 tbl_structure.php:659 +#: tbl_printview.php:311 tbl_structure.php:657 msgid "Usage" msgstr "Käyttö" -#: tbl_printview.php:339 tbl_structure.php:686 +#: tbl_printview.php:338 tbl_structure.php:684 msgid "Effective" msgstr "Pätevä" -#: tbl_printview.php:364 tbl_structure.php:724 +#: tbl_printview.php:363 tbl_structure.php:722 msgid "Row Statistics" msgstr "Rivitilastot" -#: tbl_printview.php:367 tbl_structure.php:727 +#: tbl_printview.php:366 tbl_structure.php:725 msgid "Statements" msgstr "Tieto" -#: tbl_printview.php:378 tbl_structure.php:739 +#: tbl_printview.php:377 tbl_structure.php:737 msgid "static" msgstr "staattinen" -#: tbl_printview.php:380 tbl_structure.php:741 +#: tbl_printview.php:379 tbl_structure.php:739 msgid "dynamic" msgstr "dynaaminen" -#: tbl_printview.php:402 tbl_structure.php:784 +#: tbl_printview.php:401 tbl_structure.php:782 msgid "Row length" msgstr "Rivin pituus" -#: tbl_printview.php:412 tbl_structure.php:792 +#: tbl_printview.php:411 tbl_structure.php:790 msgid " Row size " msgstr " Rivin koko " -#: tbl_relation.php:278 +#: tbl_relation.php:276 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "Virhe luotaessa kohteen %1$s viiteavainta (tarkista tietotyypit)" -#: tbl_relation.php:404 +#: tbl_relation.php:402 #, fuzzy #| msgid "Internal relations" msgid "Internal relation" msgstr "Sisäiset relaatiot" -#: tbl_relation.php:406 +#: tbl_relation.php:404 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -8333,7 +8404,7 @@ msgstr "" "Sisäistä relaatiota ei tarvita, kun vastaava FOREIGN KEY -relaatio on " "olemassa." -#: tbl_relation.php:412 +#: tbl_relation.php:410 #, fuzzy #| msgid "Foreign key limit" msgid "Foreign key constraint" @@ -8343,121 +8414,121 @@ msgstr "Viiteavaimen rajoitus" msgid "No rows selected" msgstr "Ei yhtään riviä valittu" -#: tbl_select.php:130 +#: tbl_select.php:129 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Suorita mallin mukainen kysely (jokerimerkki: \"%\")" -#: tbl_select.php:136 +#: tbl_select.php:135 msgid "Operator" msgstr "Operaattori" -#: tbl_select.php:267 +#: tbl_select.php:266 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "Valitse sarakkeet (vähintään yksi):" -#: tbl_select.php:285 +#: tbl_select.php:284 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Lisää hakuehtoja (\"WHERE\"-lauseen sisältö):" -#: tbl_select.php:292 +#: tbl_select.php:291 msgid "Number of rows per page" msgstr "Rivejä sivulla" -#: tbl_select.php:298 +#: tbl_select.php:297 msgid "Display order:" msgstr "Lajittelujärjestys:" -#: tbl_structure.php:160 +#: tbl_structure.php:159 msgid "Browse distinct values" msgstr "Selaa erilaisia arvoja" -#: tbl_structure.php:360 +#: tbl_structure.php:358 #, fuzzy #| msgid "None" msgctxt "None for default" msgid "None" msgstr "Ei mitään" -#: tbl_structure.php:373 +#: tbl_structure.php:371 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Column %s has been dropped" msgstr "Taulu %s on poistettu" -#: tbl_structure.php:384 +#: tbl_structure.php:382 #, php-format msgid "A primary key has been added on %s" msgstr "Sarakkeelle %s on luotu perusavain" -#: tbl_structure.php:399 tbl_structure.php:413 tbl_structure.php:427 +#: tbl_structure.php:397 tbl_structure.php:411 tbl_structure.php:425 #, php-format msgid "An index has been added on %s" msgstr "Sarakkeelle %s on lisätty indeksi" -#: tbl_structure.php:505 tbl_structure.php:507 +#: tbl_structure.php:503 tbl_structure.php:505 msgid "Relation view" msgstr "Relaationäkymä" -#: tbl_structure.php:514 tbl_structure.php:516 +#: tbl_structure.php:512 tbl_structure.php:514 msgid "Propose table structure" msgstr "Esitä taulun rakenne" -#: tbl_structure.php:539 +#: tbl_structure.php:537 #, fuzzy #| msgid "Add column(s)" msgid "Add column" msgstr "Lisää sarake/sarakkeita" -#: tbl_structure.php:553 +#: tbl_structure.php:551 msgid "At End of Table" msgstr "Taulun loppuun" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At Beginning of Table" msgstr "Taulun alkuun" -#: tbl_structure.php:555 +#: tbl_structure.php:553 #, php-format msgid "After %s" msgstr "Jälkeen sarakkeen: %s" -#: tbl_structure.php:593 +#: tbl_structure.php:591 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "Luo  %s:n sarakkeen indeksi" -#: tbl_structure.php:755 +#: tbl_structure.php:753 msgid "partitioned" msgstr "ositettu" -#: tbl_tracking.php:113 +#: tbl_tracking.php:109 #, php-format msgid "Tracking report for table `%s`" msgstr "Taulun `%s` seurantaraportti" -#: tbl_tracking.php:186 +#: tbl_tracking.php:182 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "Versio %s on luotu, kohteen %s.%s seuranta on käytössä." -#: tbl_tracking.php:194 +#: tbl_tracking.php:190 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "Kohteen %s.%s seuranta, versio %s on pois käytöstä." -#: tbl_tracking.php:202 +#: tbl_tracking.php:198 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "Kohteen %s.%s seuranta, käytössä on versio %s." -#: tbl_tracking.php:212 +#: tbl_tracking.php:208 msgid "SQL statements executed." msgstr "SQL-lauseet suoritettu." -#: tbl_tracking.php:219 +#: tbl_tracking.php:215 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -8465,109 +8536,109 @@ msgstr "" "Voit tehdä vedoksen luomalla ja käyttämällä tilapäistietokantaa. Varmista, " "että sinulla on oikeudet toiminnon suorittamiseen." -#: tbl_tracking.php:220 +#: tbl_tracking.php:216 msgid "Comment out these two lines if you do not need them." msgstr "Kommentoi nämä kaksi riviä pois, mikäli et tarvitse niitä." -#: tbl_tracking.php:229 +#: tbl_tracking.php:225 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "SQL-lauseet viety. Kopioi vedos tai suorita se." -#: tbl_tracking.php:250 tbl_tracking.php:378 +#: tbl_tracking.php:245 tbl_tracking.php:373 msgid "Close" msgstr "Sulje" -#: tbl_tracking.php:261 +#: tbl_tracking.php:256 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Version %s kuvaus (SQL-koodi)" -#: tbl_tracking.php:380 +#: tbl_tracking.php:375 msgid "Tracking statements" msgstr "Seurantalauseet" -#: tbl_tracking.php:396 tbl_tracking.php:503 +#: tbl_tracking.php:391 tbl_tracking.php:498 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "Näytä %s päiväyksestä %s päiväykseen %s käyttäjän %s %s osalta" -#: tbl_tracking.php:409 tbl_tracking.php:460 +#: tbl_tracking.php:404 tbl_tracking.php:455 msgid "Date" msgstr "Päiväys" -#: tbl_tracking.php:410 tbl_tracking.php:461 +#: tbl_tracking.php:405 tbl_tracking.php:456 msgid "Username" msgstr "Käyttäjänimi" -#: tbl_tracking.php:411 +#: tbl_tracking.php:406 msgid "Data definition statement" msgstr "Tiedon määritelmän lause" -#: tbl_tracking.php:462 +#: tbl_tracking.php:457 msgid "Data manipulation statement" msgstr "Tiedon käsittelyn lause" -#: tbl_tracking.php:506 +#: tbl_tracking.php:501 msgid "SQL dump (file download)" msgstr "SQL-vedos (tiedoston lataus)" -#: tbl_tracking.php:507 +#: tbl_tracking.php:502 msgid "SQL dump" msgstr "SQL-vedos" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "This option will replace your table and contained data." msgstr "Tämä valinta korvaa taulun ja sen sisältämät tiedot." -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "SQL execution" msgstr "SQL-suoritus" -#: tbl_tracking.php:520 +#: tbl_tracking.php:515 #, php-format msgid "Export as %s" msgstr "Vie kohteena %s" -#: tbl_tracking.php:560 +#: tbl_tracking.php:555 msgid "Show versions" msgstr "Näytä versiot" -#: tbl_tracking.php:592 +#: tbl_tracking.php:587 msgid "Version" msgstr "Versio" -#: tbl_tracking.php:639 +#: tbl_tracking.php:634 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "Poista kohteen %s.%s seuranta" -#: tbl_tracking.php:641 +#: tbl_tracking.php:636 msgid "Deactivate now" msgstr "Poista käytöstä nyt" -#: tbl_tracking.php:652 +#: tbl_tracking.php:647 #, php-format msgid "Activate tracking for %s.%s" msgstr "Ota käyttöön kohteen %s.%s seuranta" -#: tbl_tracking.php:654 +#: tbl_tracking.php:649 msgid "Activate now" msgstr "Ota käyttöön nyt" -#: tbl_tracking.php:667 +#: tbl_tracking.php:662 #, php-format msgid "Create version %s of %s.%s" msgstr "Luo versio %s kohteesta %s.%s" -#: tbl_tracking.php:671 +#: tbl_tracking.php:666 msgid "Track these data definition statements:" msgstr "Seuraa näitä tiedon määritelmän lauseita:" -#: tbl_tracking.php:679 +#: tbl_tracking.php:674 msgid "Track these data manipulation statements:" msgstr "Seuraa näitä tiedon käsittelyn lauseita:" -#: tbl_tracking.php:687 +#: tbl_tracking.php:682 msgid "Create version" msgstr "Luo versio" @@ -8615,11 +8686,41 @@ msgstr "Profiili on päivitetty." msgid "VIEW name" msgstr "VIEW-arvon nimi" -#: view_operations.php:92 +#: view_operations.php:91 #, fuzzy msgid "Rename view to" msgstr "Nimeä taulu uudelleen" +#~ msgid "BLOB Repository" +#~ msgstr "BLOB-tietokanta" + +#, fuzzy +#~| msgid "Enabled" +#~ msgctxt "BLOB repository" +#~ msgid "Enabled" +#~ msgstr "Päällä" + +#~ msgid "Disable" +#~ msgstr "Poista käytöstä" + +#~ msgid "Damaged" +#~ msgstr "Vioittunut" + +#, fuzzy +#~| msgid "Repair" +#~ msgctxt "BLOB repository" +#~ msgid "Repair" +#~ msgstr "Korjaa" + +#, fuzzy +#~| msgid "Disabled" +#~ msgctxt "BLOB repository" +#~ msgid "Disabled" +#~ msgstr "Pois päältä" + +#~ msgid "Enable" +#~ msgstr "Ota käyttöön" + #~ msgid "" #~ "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " #~ "extension. Please check your PHP configuration." diff --git a/po/fr.po b/po/fr.po index 070fc1811..2a9685507 100644 --- a/po/fr.po +++ b/po/fr.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-21 13:53+0200\n" +"POT-Creation-Date: 2010-07-26 17:18+0200\n" "PO-Revision-Date: 2010-07-21 14:41+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: french \n" @@ -14,19 +14,19 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: Pootle 2.0.1\n" -#: browse_foreigners.php:37 browse_foreigners.php:58 -#: libraries/display_tbl.lib.php:416 server_privileges.php:1506 +#: browse_foreigners.php:36 browse_foreigners.php:57 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1510 msgid "Show all" msgstr "Tout afficher" -#: browse_foreigners.php:81 libraries/common.lib.php:2313 -#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:393 -#: libraries/export/pdf.php:146 pdf_schema.php:282 pdf_schema.php:1122 -#: pdf_schema.php:1138 +#: browse_foreigners.php:80 libraries/common.lib.php:2318 +#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:392 +#: libraries/export/pdf.php:146 pdf_schema.php:281 pdf_schema.php:1121 +#: pdf_schema.php:1137 msgid "Page number:" msgstr "Page n°: " -#: browse_foreigners.php:131 +#: browse_foreigners.php:130 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -36,137 +36,151 @@ msgstr "" "l'ayiez fermée, ou encore que votre navigateur bloque les mises à jour inter-" "fenêtres pour des raisons de sécurité." -#: browse_foreigners.php:149 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2829 -#: libraries/common.lib.php:2836 libraries/db_links.inc.php:74 -#: libraries/tbl_links.inc.php:62 +#: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 +#: db_structure.php:89 db_structure.php:91 db_structure.php:102 +#: db_structure.php:104 libraries/common.lib.php:2834 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Rechercher" -#: browse_foreigners.php:152 db_operations.php:384 db_operations.php:428 -#: db_operations.php:498 db_operations.php:608 db_search.php:344 -#: db_structure.php:566 js/messages.php:48 libraries/Config.class.php:1043 -#: libraries/Theme_Manager.class.php:310 +#: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 +#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 +#: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 -#: libraries/common.lib.php:1340 libraries/common.lib.php:2289 +#: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 -#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:275 -#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:531 -#: libraries/display_tbl.lib.php:613 libraries/replication_gui.lib.php:75 +#: libraries/display_export.lib.php:269 libraries/display_import.lib.php:275 +#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 +#: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 #: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:781 -#: main.php:127 navigation.php:231 pdf_pages.php:291 pdf_pages.php:327 -#: pdf_pages.php:529 pmd_pdf.php:115 server_binlog.php:128 -#: server_privileges.php:664 server_privileges.php:1616 -#: server_privileges.php:1963 server_privileges.php:2010 -#: server_privileges.php:2049 server_replication.php:234 -#: server_replication.php:317 server_replication.php:340 -#: server_synchronize.php:1208 tbl_change.php:328 tbl_change.php:1172 -#: tbl_change.php:1209 tbl_indexes.php:253 tbl_operations.php:264 -#: tbl_operations.php:301 tbl_operations.php:498 tbl_operations.php:560 -#: tbl_operations.php:680 tbl_select.php:324 tbl_structure.php:561 -#: tbl_structure.php:596 tbl_tracking.php:394 tbl_tracking.php:511 -#: view_create.php:181 view_operations.php:100 +#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 +#: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 +#: server_privileges.php:663 server_privileges.php:1620 +#: server_privileges.php:1967 server_privileges.php:2014 +#: server_privileges.php:2053 server_replication.php:233 +#: server_replication.php:316 server_replication.php:339 +#: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 +#: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 +#: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 +#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "Exécuter" -#: browse_foreigners.php:167 browse_foreigners.php:171 -#: libraries/Index.class.php:441 tbl_tracking.php:319 +#: browse_foreigners.php:166 browse_foreigners.php:170 +#: libraries/Index.class.php:441 tbl_tracking.php:314 msgid "Keyname" msgstr "Nom de l'index" -#: browse_foreigners.php:168 browse_foreigners.php:170 -#: server_collations.php:54 server_collations.php:66 server_engines.php:58 +#: browse_foreigners.php:167 browse_foreigners.php:169 +#: server_collations.php:54 server_collations.php:66 server_engines.php:57 #: server_status.php:738 msgid "Description" msgstr "Description" -#: browse_foreigners.php:246 browse_foreigners.php:255 -#: browse_foreigners.php:267 browse_foreigners.php:275 +#: browse_foreigners.php:245 browse_foreigners.php:254 +#: browse_foreigners.php:266 browse_foreigners.php:274 msgid "Use this value" msgstr "Utiliser cette valeur" -#: db_create.php:45 +#: bs_disp_as_mime_type.php:29 bs_play_media.php:35 +msgid "No blob streaming server configured!" +msgstr "" + +#: bs_disp_as_mime_type.php:35 +#, fuzzy +#| msgid "Failed to write file to disk." +msgid "Failed to fetch headers" +msgstr "Erreur lors de l'écriture du fichier sur disque." + +#: bs_disp_as_mime_type.php:41 +msgid "Failed to open remote URL" +msgstr "" + +#: db_create.php:44 #, php-format 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:377 +#: db_datadict.php:48 db_operations.php:313 msgid "Database comment: " msgstr "Commentaire sur la base de données: " -#: db_datadict.php:164 libraries/tbl_properties.inc.php:723 -#: pdf_schema.php:1235 tbl_operations.php:346 tbl_printview.php:128 +#: db_datadict.php:164 libraries/tbl_properties.inc.php:722 +#: pdf_schema.php:1234 tbl_operations.php:344 tbl_printview.php:127 msgid "Table comments" msgstr "Commentaires sur la table" -#: db_datadict.php:173 db_qbe.php:173 libraries/Index.class.php:445 +#: db_datadict.php:173 db_qbe.php:170 libraries/Index.class.php:445 #: libraries/export/htmlword.php:243 libraries/export/latex.php:364 #: libraries/export/odt.php:293 libraries/export/texytext.php:233 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:274 -#: pdf_schema.php:1261 pdf_schema.php:1282 tbl_change.php:306 -#: tbl_indexes.php:188 tbl_printview.php:140 tbl_relation.php:401 -#: tbl_select.php:133 tbl_structure.php:176 tbl_tracking.php:272 -#: tbl_tracking.php:323 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 +#: pdf_schema.php:1260 pdf_schema.php:1281 tbl_change.php:301 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:132 tbl_structure.php:175 tbl_tracking.php:267 +#: tbl_tracking.php:318 msgid "Column" msgstr "Colonne" -#: db_datadict.php:174 db_printview.php:105 libraries/Index.class.php:442 +#: db_datadict.php:174 db_printview.php:104 libraries/Index.class.php:442 #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 #: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:244 #: libraries/export/latex.php:364 libraries/export/odt.php:296 #: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:99 -#: pdf_schema.php:1262 pdf_schema.php:1283 server_privileges.php:2062 -#: tbl_change.php:285 tbl_change.php:312 tbl_printview.php:141 -#: tbl_printview.php:311 tbl_select.php:134 tbl_structure.php:177 -#: tbl_structure.php:658 tbl_tracking.php:273 tbl_tracking.php:320 +#: pdf_schema.php:1261 pdf_schema.php:1282 server_privileges.php:2066 +#: tbl_change.php:280 tbl_change.php:307 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:133 tbl_structure.php:176 +#: tbl_structure.php:656 tbl_tracking.php:268 tbl_tracking.php:315 msgid "Type" msgstr "Type" #: db_datadict.php:176 libraries/Index.class.php:448 #: libraries/export/htmlword.php:245 libraries/export/latex.php:364 #: libraries/export/odt.php:299 libraries/export/texytext.php:235 -#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1264 -#: pdf_schema.php:1285 tbl_change.php:321 tbl_printview.php:143 -#: tbl_structure.php:180 tbl_tracking.php:275 tbl_tracking.php:326 +#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1263 +#: pdf_schema.php:1284 tbl_change.php:316 tbl_printview.php:142 +#: tbl_structure.php:179 tbl_tracking.php:270 tbl_tracking.php:321 msgid "Null" msgstr "Null" -#: db_datadict.php:177 db_structure.php:500 libraries/export/htmlword.php:246 +#: db_datadict.php:177 db_structure.php:486 libraries/export/htmlword.php:246 #: libraries/export/latex.php:364 libraries/export/odt.php:302 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:105 -#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 -#: tbl_structure.php:181 tbl_tracking.php:276 +#: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:143 +#: tbl_structure.php:180 tbl_tracking.php:271 msgid "Default" msgstr "Défaut" #: db_datadict.php:181 libraries/export/htmlword.php:248 #: libraries/export/latex.php:366 libraries/export/odt.php:306 -#: libraries/export/texytext.php:238 pdf_schema.php:1267 pdf_schema.php:1288 -#: tbl_printview.php:148 +#: libraries/export/texytext.php:238 pdf_schema.php:1266 pdf_schema.php:1287 +#: tbl_printview.php:147 msgid "Links to" msgstr "Relié à" -#: db_datadict.php:183 db_printview.php:111 libraries/export/htmlword.php:251 +#: db_datadict.php:183 db_printview.php:110 libraries/export/htmlword.php:251 #: libraries/export/latex.php:49 libraries/export/latex.php:369 #: libraries/export/odt.php:37 libraries/export/odt.php:311 #: libraries/export/sql.php:29 libraries/export/texytext.php:241 -#: libraries/tbl_properties.inc.php:129 pdf_schema.php:1278 -#: pdf_schema.php:1289 tbl_printview.php:150 +#: libraries/tbl_properties.inc.php:128 pdf_schema.php:1277 +#: pdf_schema.php:1288 tbl_printview.php:149 msgid "Comments" msgstr "Commentaires" #: db_datadict.php:266 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/export/htmlword.php:321 #: libraries/export/latex.php:434 libraries/export/odt.php:367 -#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:262 -#: pdf_schema.php:1343 server_privileges.php:1560 server_privileges.php:1571 -#: server_privileges.php:1881 server_privileges.php:1886 -#: server_privileges.php:2179 sql.php:131 sql.php:193 tbl_printview.php:227 -#: tbl_structure.php:349 tbl_tracking.php:336 tbl_tracking.php:341 +#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:261 +#: pdf_schema.php:1342 server_privileges.php:1564 server_privileges.php:1575 +#: server_privileges.php:1885 server_privileges.php:1890 +#: server_privileges.php:2183 sql.php:130 sql.php:192 tbl_printview.php:226 +#: tbl_structure.php:347 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "Non" @@ -177,17 +191,17 @@ msgstr "Non" #: libraries/mult_submits.inc.php:49 libraries/mult_submits.inc.php:54 #: libraries/mult_submits.inc.php:59 libraries/mult_submits.inc.php:91 #: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:105 -#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:261 -#: libraries/mult_submits.inc.php:272 pdf_schema.php:1343 -#: server_databases.php:63 server_privileges.php:1557 -#: server_privileges.php:1571 server_privileges.php:1881 -#: server_privileges.php:1884 server_privileges.php:2179 sql.php:192 -#: tbl_printview.php:227 tbl_structure.php:39 tbl_structure.php:349 -#: tbl_tracking.php:334 tbl_tracking.php:339 +#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:260 +#: libraries/mult_submits.inc.php:271 pdf_schema.php:1342 +#: server_databases.php:61 server_privileges.php:1561 +#: server_privileges.php:1575 server_privileges.php:1885 +#: server_privileges.php:1888 server_privileges.php:2183 sql.php:191 +#: tbl_printview.php:226 tbl_structure.php:38 tbl_structure.php:347 +#: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" msgstr "Oui" -#: db_datadict.php:321 db_printview.php:265 tbl_printview.php:496 +#: db_datadict.php:321 db_printview.php:264 tbl_printview.php:495 msgid "Print" msgstr "Imprimer" @@ -195,278 +209,244 @@ msgstr "Imprimer" msgid "View dump (schema) of database" msgstr "Schéma et données de la base" -#: db_export.php:32 db_printview.php:95 db_qbe.php:101 db_structure.php:50 -#: db_tracking.php:34 export.php:352 navigation.php:326 +#: db_export.php:32 db_printview.php:94 db_qbe.php:98 db_structure.php:49 +#: db_tracking.php:30 export.php:350 navigation.php:325 msgid "No tables found in database." msgstr "Aucune table n'a été trouvée dans cette base." -#: db_export.php:42 db_search.php:326 server_export.php:26 +#: db_export.php:42 db_search.php:326 server_export.php:24 msgid "Select All" msgstr "Tout sélectionner" -#: db_export.php:44 db_search.php:329 server_export.php:28 +#: db_export.php:44 db_search.php:329 server_export.php:26 msgid "Unselect All" msgstr "Tout désélectionner" -#: db_operations.php:37 tbl_create.php:49 +#: db_operations.php:33 tbl_create.php:47 msgid "The database name is empty!" msgstr "Le nom de la base de données est vide !" -#: db_operations.php:235 +#: db_operations.php:231 #, 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:239 +#: db_operations.php:235 #, 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:411 +#: db_operations.php:347 msgid "Rename database to" msgstr "Changer le nom de la base de données pour" -#: db_operations.php:416 server_processlist.php:56 +#: db_operations.php:352 server_processlist.php:56 msgid "Command" msgstr "Commande" -#: db_operations.php:428 tbl_change.php:1141 +#: db_operations.php:364 tbl_change.php:1039 msgid "and then" msgstr "et ensuite" -#: db_operations.php:454 +#: db_operations.php:390 msgid "Copy database to" msgstr "Copier la base de données vers" -#: db_operations.php:461 tbl_operations.php:527 tbl_tracking.php:387 +#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Structure seule" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:389 +#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Structure et données" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:388 +#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Données seulement" -#: db_operations.php:471 +#: db_operations.php:407 msgid "CREATE DATABASE before copying" msgstr "Faire CREATE DATABASE avant la copie" -#: db_operations.php:474 libraries/export/sql.php:51 +#: db_operations.php:410 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 -#: libraries/export/sql.php:81 tbl_operations.php:535 +#: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "Ajouter %s" -#: db_operations.php:478 libraries/export/sql.php:77 tbl_operations.php:298 -#: tbl_operations.php:537 +#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Inclure la valeur courante de l'AUTO_INCREMENT" -#: db_operations.php:482 tbl_operations.php:544 +#: db_operations.php:418 tbl_operations.php:542 msgid "Add constraints" msgstr "Inclure les contraintes de clés étrangères" -#: db_operations.php:495 +#: db_operations.php:431 msgid "Switch to copied database" msgstr "Aller à la base de données copiée" -#: db_operations.php:536 -msgid "BLOB Repository" -msgstr "Dépôt BLOB" - -#: db_operations.php:539 db_tracking.php:75 libraries/common.lib.php:1357 -#: libraries/server_links.inc.php:48 server_processlist.php:58 -#: tbl_tracking.php:595 test/theme.php:100 -msgid "Status" -msgstr "État" - -#: db_operations.php:547 -msgctxt "BLOB repository" -msgid "Enabled" -msgstr "Activé" - -#: db_operations.php:551 -msgid "Disable" -msgstr "Désactiver" - -#: db_operations.php:561 -msgid "Damaged" -msgstr "Endommagé" - -#: db_operations.php:565 -msgctxt "BLOB repository" -msgid "Repair" -msgstr "Réparer" - -#: db_operations.php:573 -msgctxt "BLOB repository" -msgid "Disabled" -msgstr "Désactivé" - -#: db_operations.php:577 -msgid "Enable" -msgstr "Activer" - -#: db_operations.php:601 libraries/Index.class.php:447 +#: db_operations.php:451 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 -#: server_collations.php:53 server_collations.php:65 server_databases.php:110 -#: tbl_operations.php:362 tbl_select.php:135 tbl_structure.php:178 -#: tbl_structure.php:766 tbl_tracking.php:274 tbl_tracking.php:325 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 +#: server_collations.php:53 server_collations.php:65 server_databases.php:108 +#: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:177 +#: tbl_structure.php:764 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "Interclassement" -#: db_operations.php:614 main.php:315 pdf_schema.php:33 -#, php-format +#: db_operations.php:464 pdf_schema.php:32 +#, fuzzy, php-format +#| msgid "" +#| "The additional features for working with linked tables have been " +#| "deactivated. To find out why click %shere%s." msgid "" -"The additional features for working with linked tables have been " -"deactivated. To find out why click %shere%s." +"The phpMyAdmin configuration storage has been deactivated. To find out why " +"click %shere%s." msgstr "" "Certaines fonctionnalités ayant trait aux tables reliées sont désactivées. " "Pour une analyse du problème, cliquez %sici%s." -#: db_operations.php:647 +#: db_operations.php:497 msgid "Edit PDF Pages" msgstr "Préparer le schéma en PDF" -#: db_printview.php:103 db_tracking.php:71 db_tracking.php:156 +#: db_printview.php:102 db_tracking.php:67 db_tracking.php:152 #: libraries/db_structure.lib.php:37 libraries/export/xml.php:327 -#: libraries/header.inc.php:125 pdf_pages.php:423 server_privileges.php:1657 -#: server_privileges.php:1713 server_privileges.php:1977 -#: server_synchronize.php:422 server_synchronize.php:865 tbl_tracking.php:591 +#: libraries/header.inc.php:125 pdf_pages.php:422 server_privileges.php:1661 +#: server_privileges.php:1717 server_privileges.php:1981 +#: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "Table" -#: db_printview.php:104 libraries/db_structure.lib.php:47 +#: db_printview.php:103 libraries/db_structure.lib.php:47 #: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 -#: navigation.php:629 navigation.php:651 server_databases.php:121 -#: tbl_printview.php:392 tbl_structure.php:364 tbl_structure.php:776 +#: navigation.php:628 navigation.php:650 server_databases.php:119 +#: tbl_printview.php:391 tbl_structure.php:362 tbl_structure.php:774 msgid "Rows" msgstr "Enregistrements" -#: db_printview.php:108 libraries/db_structure.lib.php:58 tbl_indexes.php:189 +#: db_printview.php:107 libraries/db_structure.lib.php:58 tbl_indexes.php:188 msgid "Size" msgstr "Taille" -#: db_printview.php:161 db_structure.php:456 libraries/export/sql.php:556 +#: db_printview.php:160 db_structure.php:442 libraries/export/sql.php:556 #: libraries/export/sql.php:896 msgid "in use" msgstr "utilisé" -#: db_printview.php:186 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:511 pdf_schema.php:1240 tbl_printview.php:432 -#: tbl_structure.php:808 +#: db_printview.php:185 libraries/db_info.inc.php:86 +#: libraries/export/sql.php:511 pdf_schema.php:1239 tbl_printview.php:431 +#: tbl_structure.php:806 msgid "Creation" msgstr "Création" -#: db_printview.php:195 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:516 pdf_schema.php:1245 tbl_printview.php:442 -#: tbl_structure.php:816 +#: db_printview.php:194 libraries/db_info.inc.php:91 +#: libraries/export/sql.php:516 pdf_schema.php:1244 tbl_printview.php:441 +#: tbl_structure.php:814 msgid "Last update" msgstr "Dernière modification" -#: db_printview.php:204 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:521 pdf_schema.php:1250 tbl_printview.php:452 -#: tbl_structure.php:824 +#: db_printview.php:203 libraries/db_info.inc.php:96 +#: libraries/export/sql.php:521 pdf_schema.php:1249 tbl_printview.php:451 +#: tbl_structure.php:822 msgid "Last check" msgstr "Dernière vérification" -#: db_printview.php:221 db_structure.php:479 +#: db_printview.php:220 db_structure.php:465 #, php-format msgid "%s table" msgid_plural "%s tables" msgstr[0] "%s table" msgstr[1] "%s tables" -#: db_qbe.php:28 import.php:453 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1980 libraries/sql_query_form.lib.php:138 -#: tbl_operations.php:212 tbl_relation.php:291 tbl_row_action.php:130 -#: view_operations.php:61 +#: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 +#: 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_qbe.php:41 +#: db_qbe.php:38 msgid "You have to choose at least one column to display" msgstr "Vous devez choisir au moins une colonne à afficher" -#: db_qbe.php:199 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:865 +#: db_qbe.php:196 libraries/db_structure.lib.php:95 +#: libraries/display_tbl.lib.php:864 msgid "Sort" msgstr "Tri" -#: db_qbe.php:208 db_qbe.php:242 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:522 libraries/display_tbl.lib.php:827 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:259 -#: tbl_select.php:311 +#: db_qbe.php:205 db_qbe.php:239 libraries/db_structure.lib.php:102 +#: libraries/display_tbl.lib.php:521 libraries/display_tbl.lib.php:826 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:257 +#: tbl_select.php:310 msgid "Ascending" msgstr "Croissant" -#: db_qbe.php:209 db_qbe.php:250 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:527 libraries/display_tbl.lib.php:824 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:260 -#: tbl_select.php:312 +#: db_qbe.php:206 db_qbe.php:247 libraries/db_structure.lib.php:110 +#: libraries/display_tbl.lib.php:526 libraries/display_tbl.lib.php:823 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:258 +#: tbl_select.php:311 msgid "Descending" msgstr "Décroissant" -#: db_qbe.php:263 db_tracking.php:77 libraries/display_tbl.lib.php:307 -#: tbl_change.php:275 tbl_tracking.php:596 +#: db_qbe.php:260 db_tracking.php:73 libraries/display_tbl.lib.php:306 +#: tbl_change.php:270 tbl_tracking.php:591 msgid "Show" msgstr "Afficher" -#: db_qbe.php:299 +#: db_qbe.php:296 msgid "Criteria" msgstr "Critère" -#: db_qbe.php:352 db_qbe.php:434 db_qbe.php:526 db_qbe.php:557 +#: db_qbe.php:349 db_qbe.php:431 db_qbe.php:523 db_qbe.php:554 msgid "Ins" msgstr "Ajouter" -#: db_qbe.php:356 db_qbe.php:438 db_qbe.php:523 db_qbe.php:554 +#: db_qbe.php:353 db_qbe.php:435 db_qbe.php:520 db_qbe.php:551 msgid "And" msgstr "Et" -#: db_qbe.php:365 db_qbe.php:446 db_qbe.php:528 db_qbe.php:559 +#: db_qbe.php:362 db_qbe.php:443 db_qbe.php:525 db_qbe.php:556 msgid "Del" msgstr "Effacer" -#: db_qbe.php:369 db_qbe.php:450 db_qbe.php:521 db_qbe.php:552 -#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:778 -#: server_privileges.php:297 tbl_change.php:1027 tbl_indexes.php:249 -#: tbl_select.php:285 +#: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 +#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:777 +#: server_privileges.php:296 tbl_change.php:925 tbl_indexes.php:248 +#: tbl_select.php:284 msgid "Or" msgstr "Ou" -#: db_qbe.php:506 +#: db_qbe.php:503 msgid "Modify" msgstr "Modifier" -#: db_qbe.php:583 +#: db_qbe.php:580 msgid "Add/Delete criteria rows" msgstr "Ajouter/effacer des lignes" -#: db_qbe.php:595 +#: db_qbe.php:592 msgid "Add/Delete columns" msgstr "Ajouter/effacer des colonnes" -#: db_qbe.php:608 db_qbe.php:633 +#: db_qbe.php:605 db_qbe.php:630 msgid "Update Query" msgstr "Mise-à-jour de la requête" -#: db_qbe.php:616 +#: db_qbe.php:613 msgid "Use Tables" msgstr "Utiliser les tables" -#: db_qbe.php:639 +#: db_qbe.php:636 #, php-format msgid "SQL query on database %s:" msgstr "Requête SQL sur la base %s: " -#: db_qbe.php:933 libraries/common.lib.php:1222 +#: db_qbe.php:930 libraries/common.lib.php:1215 msgid "Submit Query" msgstr "Exécuter la requête" @@ -500,23 +480,22 @@ msgstr "Résultats de la recherche de «%s» %s :" #: db_search.php:242 #, php-format -#| msgid "%s match(es) inside table %s" msgid "%s match inside table %s" msgid_plural "%s matches inside table %s" msgstr[0] "%s occurence dans la table %s" msgstr[1] "%s occurences dans la table %s" -#: db_search.php:249 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2831 -#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:49 -#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:466 +#: db_search.php:249 db_structure.php:75 db_structure.php:76 +#: db_structure.php:88 db_structure.php:90 db_structure.php:101 +#: db_structure.php:103 libraries/common.lib.php:2836 +#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 +#: tbl_structure.php:35 tbl_structure.php:47 tbl_structure.php:464 msgid "Browse" msgstr "Afficher" -#: db_search.php:254 libraries/display_tbl.lib.php:1164 -#: libraries/display_tbl.lib.php:2055 libraries/sql_query_form.lib.php:453 -#: pdf_pages.php:285 pdf_pages.php:424 pdf_pages.php:460 pdf_pages.php:488 +#: db_search.php:254 libraries/display_tbl.lib.php:1163 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 msgid "Delete" @@ -524,7 +503,6 @@ msgstr "Effacer" #: db_search.php:267 #, php-format -#| msgid "Total: %s match(es)" msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "Total : %s occurence" @@ -554,66 +532,66 @@ msgstr "Dans la(les) table(s) :" msgid "Inside column:" msgstr "Dans la colonne: " -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2830 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:75 +#: db_structure.php:79 db_structure.php:80 db_structure.php:92 +#: db_structure.php:93 db_structure.php:105 db_structure.php:106 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 +#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Insérer" -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2827 libraries/common.lib.php:2834 -#: libraries/db_links.inc.php:62 libraries/export/htmlword.php:22 +#: db_structure.php:81 db_structure.php:94 db_structure.php:107 +#: libraries/common.lib.php:2832 libraries/common.lib.php:2839 +#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 -#: libraries/tbl_links.inc.php:55 pmd_general.php:133 -#: server_privileges.php:593 server_replication.php:314 tbl_tracking.php:268 +#: libraries/tbl_links.inc.php:54 pmd_general.php:133 +#: server_privileges.php:592 server_replication.php:313 tbl_tracking.php:263 msgid "Structure" msgstr "Structure" -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:544 db_structure.php:545 db_tracking.php:90 -#: libraries/Index.class.php:482 libraries/common.lib.php:1659 -#: libraries/db_links.inc.php:99 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:126 -#: server_databases.php:351 tbl_structure.php:26 tbl_structure.php:150 -#: tbl_structure.php:151 tbl_structure.php:470 +#: db_structure.php:82 db_structure.php:83 db_structure.php:95 +#: db_structure.php:96 db_structure.php:108 db_structure.php:109 +#: db_structure.php:530 db_structure.php:531 db_tracking.php:86 +#: libraries/Index.class.php:482 libraries/common.lib.php:1663 +#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 +#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 +#: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" msgstr "Supprimer" -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:542 db_structure.php:543 libraries/common.lib.php:1658 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:104 +#: db_structure.php:84 db_structure.php:85 db_structure.php:97 +#: db_structure.php:98 db_structure.php:110 db_structure.php:111 +#: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 +#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 msgid "Empty" msgstr "Vider" -#: db_structure.php:315 libraries/tbl_links.inc.php:99 +#: db_structure.php:301 libraries/tbl_links.inc.php:98 #, php-format msgid "Table %s has been emptied" msgstr "La table %s a été vidée" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "View %s has been dropped" msgstr "La vue %s a été supprimée" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "Table %s has been dropped" msgstr "La table %s a été effacée" -#: db_structure.php:332 +#: db_structure.php:318 msgid "Tracking is active." msgstr "Le suivi est actif." -#: db_structure.php:334 +#: db_structure.php:320 msgid "Tracking is not active." msgstr "Le suivi n'est pas activé." -#: db_structure.php:419 libraries/display_tbl.lib.php:1943 +#: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -622,160 +600,166 @@ msgstr "" "Cette vue contient au moins ce nombre d'enregistrements. Veuillez référer à " "%sdocumentation%s." -#: db_structure.php:433 db_structure.php:447 libraries/header.inc.php:125 -#: libraries/tbl_info.inc.php:65 tbl_structure.php:184 test/theme.php:73 +#: db_structure.php:419 db_structure.php:433 libraries/header.inc.php:125 +#: libraries/tbl_info.inc.php:60 tbl_structure.php:183 test/theme.php:73 msgid "View" msgstr "Vue" -#: db_structure.php:484 libraries/db_structure.lib.php:40 -#: libraries/server_links.inc.php:69 server_replication.php:32 -#: server_replication.php:163 server_status.php:368 +#: db_structure.php:470 libraries/db_structure.lib.php:40 +#: libraries/server_links.inc.php:69 server_replication.php:31 +#: server_replication.php:162 server_status.php:368 msgid "Replication" msgstr "Réplication" -#: db_structure.php:488 +#: db_structure.php:474 msgid "Sum" msgstr "Somme" -#: db_structure.php:495 libraries/StorageEngine.class.php:349 +#: db_structure.php:481 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "Sur ce serveur MySQL, le moteur de stockage par défaut est %s." -#: db_structure.php:523 db_structure.php:540 db_structure.php:541 -#: libraries/display_tbl.lib.php:2080 libraries/display_tbl.lib.php:2085 -#: libraries/mult_submits.inc.php:15 server_databases.php:345 -#: server_databases.php:350 server_privileges.php:1588 tbl_structure.php:454 -#: tbl_structure.php:463 +#: db_structure.php:509 db_structure.php:526 db_structure.php:527 +#: libraries/display_tbl.lib.php:2039 libraries/display_tbl.lib.php:2044 +#: libraries/mult_submits.inc.php:15 server_databases.php:343 +#: server_databases.php:348 server_privileges.php:1592 tbl_structure.php:452 +#: tbl_structure.php:461 msgid "With selected:" msgstr "Pour la sélection :" -#: db_structure.php:526 libraries/display_tbl.lib.php:2075 -#: server_databases.php:347 server_privileges.php:569 -#: server_privileges.php:1591 tbl_structure.php:457 +#: db_structure.php:512 libraries/display_tbl.lib.php:2034 +#: server_databases.php:345 server_privileges.php:568 +#: server_privileges.php:1595 tbl_structure.php:455 msgid "Check All" msgstr "Tout cocher" -#: db_structure.php:530 libraries/display_tbl.lib.php:2076 -#: libraries/replication_gui.lib.php:35 server_databases.php:349 -#: server_privileges.php:572 server_privileges.php:1595 tbl_structure.php:461 +#: db_structure.php:516 libraries/display_tbl.lib.php:2035 +#: libraries/replication_gui.lib.php:35 server_databases.php:347 +#: server_privileges.php:571 server_privileges.php:1599 tbl_structure.php:459 msgid "Uncheck All" msgstr "Tout décocher" -#: db_structure.php:535 +#: db_structure.php:521 msgid "Check tables having overhead" msgstr "Cocher tables avec pertes" -#: db_structure.php:546 db_structure.php:547 db_structure.php:598 -#: libraries/display_tbl.lib.php:2179 libraries/mult_submits.inc.php:27 -#: tbl_structure.php:491 tbl_structure.php:493 +#: db_structure.php:532 db_structure.php:533 db_structure.php:584 +#: libraries/display_tbl.lib.php:2138 libraries/mult_submits.inc.php:27 +#: tbl_structure.php:489 tbl_structure.php:491 msgid "Print view" msgstr "Version imprimable" -#: db_structure.php:548 db_structure.php:549 libraries/mult_submits.inc.php:41 -#: tbl_operations.php:580 +#: db_structure.php:534 db_structure.php:535 libraries/mult_submits.inc.php:41 +#: tbl_operations.php:578 msgid "Check table" msgstr "Vérifier la table" -#: db_structure.php:550 db_structure.php:551 libraries/mult_submits.inc.php:46 -#: tbl_operations.php:620 tbl_structure.php:708 tbl_structure.php:710 +#: db_structure.php:536 db_structure.php:537 libraries/mult_submits.inc.php:46 +#: tbl_operations.php:618 tbl_structure.php:706 tbl_structure.php:708 msgid "Optimize table" msgstr "Optimiser la table" -#: db_structure.php:552 db_structure.php:553 libraries/mult_submits.inc.php:51 -#: tbl_operations.php:610 +#: db_structure.php:538 db_structure.php:539 libraries/mult_submits.inc.php:51 +#: tbl_operations.php:608 msgid "Repair table" msgstr "Réparer la table" -#: db_structure.php:554 db_structure.php:555 libraries/mult_submits.inc.php:56 -#: tbl_operations.php:600 +#: db_structure.php:540 db_structure.php:541 libraries/mult_submits.inc.php:56 +#: tbl_operations.php:598 msgid "Analyze table" msgstr "Analyser la table" -#: db_structure.php:556 db_structure.php:557 libraries/db_links.inc.php:70 -#: libraries/display_export.lib.php:82 libraries/display_tbl.lib.php:2093 -#: libraries/display_tbl.lib.php:2224 libraries/mult_submits.inc.php:61 -#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:81 -#: pmd_pdf.php:83 pmd_pdf.php:108 server_privileges.php:1372 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 +#: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 +#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 +#: pmd_pdf.php:81 pmd_pdf.php:106 server_privileges.php:1376 #: setup/frames/menu.inc.php:22 tbl_row_action.php:58 msgid "Export" msgstr "Exporter" -#: db_structure.php:605 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:591 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "Dictionnaire de données" -#: db_tracking.php:65 +#: db_tracking.php:61 msgid "Tracked tables" msgstr "Tables faisant l'objet d'un suivi" -#: db_tracking.php:70 libraries/export/htmlword.php:85 +#: db_tracking.php:66 libraries/export/htmlword.php:85 #: libraries/export/latex.php:152 libraries/export/odt.php:112 #: libraries/export/sql.php:339 libraries/export/texytext.php:84 #: libraries/export/xml.php:254 libraries/header.inc.php:105 -#: libraries/header_printview.inc.php:57 server_databases.php:168 -#: server_privileges.php:1652 server_privileges.php:1713 -#: server_privileges.php:1971 server_processlist.php:55 -#: server_synchronize.php:1178 server_synchronize.php:1182 -#: tbl_tracking.php:590 test/theme.php:64 +#: libraries/header_printview.inc.php:57 server_databases.php:166 +#: server_privileges.php:1656 server_privileges.php:1717 +#: server_privileges.php:1975 server_processlist.php:55 +#: server_synchronize.php:1177 server_synchronize.php:1181 +#: tbl_tracking.php:585 test/theme.php:64 msgid "Database" msgstr "Base de données" -#: db_tracking.php:72 +#: db_tracking.php:68 msgid "Last version" msgstr "Dernière version" -#: db_tracking.php:73 tbl_tracking.php:593 +#: db_tracking.php:69 tbl_tracking.php:588 msgid "Created" msgstr "Créé" -#: db_tracking.php:74 tbl_tracking.php:594 +#: db_tracking.php:70 tbl_tracking.php:589 msgid "Updated" msgstr "Mis à jour" -#: db_tracking.php:76 libraries/Index.class.php:439 -#: libraries/db_structure.lib.php:44 server_databases.php:202 -#: server_privileges.php:1534 server_privileges.php:1717 -#: server_privileges.php:2065 tbl_structure.php:186 +#: db_tracking.php:71 libraries/common.lib.php:1361 +#: libraries/server_links.inc.php:48 server_processlist.php:58 +#: tbl_tracking.php:590 test/theme.php:100 +msgid "Status" +msgstr "État" + +#: db_tracking.php:72 libraries/Index.class.php:439 +#: libraries/db_structure.lib.php:44 server_databases.php:200 +#: server_privileges.php:1538 server_privileges.php:1721 +#: server_privileges.php:2069 tbl_structure.php:185 msgid "Action" msgstr "Action" -#: db_tracking.php:87 db_tracking.php:119 +#: db_tracking.php:83 db_tracking.php:115 msgid "Delete tracking data for this table" msgstr "Supprimer les données de suivi de cette table" -#: db_tracking.php:105 tbl_tracking.php:547 tbl_tracking.php:605 -#: tbl_tracking.php:612 +#: db_tracking.php:101 tbl_tracking.php:542 tbl_tracking.php:600 +#: tbl_tracking.php:607 msgid "active" msgstr "actif" -#: db_tracking.php:107 tbl_tracking.php:549 tbl_tracking.php:607 -#: tbl_tracking.php:609 +#: db_tracking.php:103 tbl_tracking.php:544 tbl_tracking.php:602 +#: tbl_tracking.php:604 msgid "not active" msgstr "non activé" -#: db_tracking.php:120 +#: db_tracking.php:116 msgid "Versions" msgstr "Versions" -#: db_tracking.php:121 tbl_tracking.php:378 tbl_tracking.php:623 +#: db_tracking.php:117 tbl_tracking.php:373 tbl_tracking.php:618 msgid "Tracking report" msgstr "Rapport de suivi" -#: db_tracking.php:122 tbl_tracking.php:250 tbl_tracking.php:623 +#: db_tracking.php:118 tbl_tracking.php:245 tbl_tracking.php:618 msgid "Structure snapshot" msgstr "Instantané" -#: db_tracking.php:151 +#: db_tracking.php:147 msgid "Untracked tables" msgstr "Tables ne faisant pas l'objet d'un suivi" -#: db_tracking.php:171 db_tracking.php:173 tbl_structure.php:527 -#: tbl_structure.php:529 +#: db_tracking.php:167 db_tracking.php:169 tbl_structure.php:525 +#: tbl_structure.php:527 msgid "Track table" msgstr "Suivre la table" -#: db_tracking.php:199 +#: db_tracking.php:195 msgid "Database Log" msgstr "Journal de la base de données" @@ -783,12 +767,12 @@ msgstr "Journal de la base de données" msgid "Selected export type has to be saved in file!" msgstr "Ce choix d'exportation doit être sauvegardé dans un fichier !" -#: export.php:153 export.php:178 export.php:620 +#: export.php:152 export.php:177 export.php:615 #, php-format msgid "Insufficient space to save the file %s." msgstr "Espace-disque insuffisant pour enregistrer le fichier %s." -#: export.php:287 +#: export.php:286 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -796,19 +780,19 @@ msgstr "" "Le fichier %s existe déjà sur le serveur, veuillez changer le nom, ou cocher " "l'option «écraser»." -#: export.php:291 export.php:295 +#: export.php:290 export.php:294 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "" "Le serveur web n'a pas les permissions nécessaires pour enregistrer le " "fichier %s." -#: export.php:622 +#: export.php:617 #, php-format msgid "Dump has been saved to file %s." msgstr "Le fichier d'exportation a été sauvegardé sous %s." -#: import.php:59 +#: import.php:58 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -818,14 +802,14 @@ msgstr "" "Veuillez vous référer à la %sdocumentation%s pour des façons de contourner " "cette limite." -#: import.php:278 import.php:331 libraries/File.class.php:840 -#: libraries/File.class.php:950 +#: import.php:277 import.php:330 libraries/File.class.php:566 +#: libraries/File.class.php:676 msgid "File could not be read" msgstr "Le fichier n'a pu être lu" -#: import.php:286 import.php:295 import.php:314 import.php:323 -#: libraries/File.class.php:1020 libraries/File.class.php:1028 -#: libraries/File.class.php:1044 libraries/File.class.php:1052 +#: import.php:285 import.php:294 import.php:313 import.php:322 +#: libraries/File.class.php:746 libraries/File.class.php:754 +#: libraries/File.class.php:770 libraries/File.class.php:778 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -834,7 +818,7 @@ msgstr "" "Vous avez tenté d'importer un fichier dont le mode de compression (%s) n'est " "pas supporté par votre configuration PHP ou est désactivé dans celle-ci." -#: import.php:336 +#: import.php:335 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -845,31 +829,31 @@ msgstr "" "par votre configuration de PHP. Voir [a@./Documentation." "html#faq1_16@Documentation]FAQ 1.16[/a]." -#: import.php:371 libraries/display_import.lib.php:23 +#: import.php:370 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "" "Chargement impossible des greffons d'importation, veuillez vérifier votre " "installation !" -#: import.php:396 +#: import.php:395 msgid "The bookmark has been deleted." msgstr "Le signet a été effacé." -#: import.php:400 +#: import.php:399 msgid "Showing bookmark" msgstr "Affichage du signet" -#: import.php:402 sql.php:625 +#: import.php:401 sql.php:618 #, php-format msgid "Bookmark %s created" msgstr "Signet %s créé" -#: import.php:408 import.php:414 +#: import.php:407 import.php:413 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "L'importation s'est terminée avec succès, %d requêtes exécutées." -#: import.php:423 +#: import.php:422 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -877,7 +861,7 @@ msgstr "" "La limite de temps a été atteinte; si vous voulez terminer l'importation, " "soumettez à nouveau le même fichier et l'importation continuera." -#: import.php:425 +#: import.php:424 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -886,21 +870,21 @@ msgstr "" "signifie que phpMyAdmin ne pourra terminer cette importation, à moins que la " "limite de temps de PHP ne soit augmentée." -#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:240 +#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:239 #: user_password.php:110 msgid "Back" msgstr "Retour" -#: index.php:188 +#: index.php:183 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" "phpMyAdmin est plus convivial avec un navigateur supportant les cadres." -#: js/messages.php:25 server_synchronize.php:344 server_synchronize.php:356 -#: server_synchronize.php:372 server_synchronize.php:379 -#: server_synchronize.php:738 server_synchronize.php:766 -#: server_synchronize.php:794 server_synchronize.php:806 +#: js/messages.php:25 server_synchronize.php:343 server_synchronize.php:355 +#: server_synchronize.php:371 server_synchronize.php:378 +#: server_synchronize.php:737 server_synchronize.php:765 +#: server_synchronize.php:793 server_synchronize.php:805 msgid "Click to select" msgstr "Cliquer pour sélectionner" @@ -908,15 +892,15 @@ msgstr "Cliquer pour sélectionner" msgid "Click to unselect" msgstr "Cliquer pour désélectionner" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:88 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:87 msgid "\"DROP DATABASE\" statements are disabled." msgstr "La commande «DROP DATABASE» est désactivée." -#: js/messages.php:30 libraries/mult_submits.inc.php:257 sql.php:187 +#: js/messages.php:30 libraries/mult_submits.inc.php:256 sql.php:186 msgid "Do you really want to " msgstr "Voulez-vous vraiment effectuer " -#: js/messages.php:31 libraries/mult_submits.inc.php:257 sql.php:171 +#: js/messages.php:31 libraries/mult_submits.inc.php:256 sql.php:170 msgid "You are about to DESTROY a complete database!" msgstr "Vous êtes sur le point de DÉTRUIRE une base de données !" @@ -947,11 +931,11 @@ msgstr "Le nom de serveur est vide !" msgid "The user name is empty!" msgstr "Le nom d'utilisateur est vide !" -#: js/messages.php:44 server_privileges.php:1228 user_password.php:65 +#: js/messages.php:44 server_privileges.php:1229 user_password.php:65 msgid "The password is empty!" msgstr "Le mot de passe est vide !" -#: js/messages.php:45 server_privileges.php:1226 user_password.php:68 +#: js/messages.php:45 server_privileges.php:1227 user_password.php:68 msgid "The passwords aren't the same!" msgstr "Les mots de passe doivent être identiques !" @@ -959,27 +943,27 @@ msgstr "Les mots de passe doivent être identiques !" msgid "Cancel" msgstr "Annuler" -#: js/messages.php:52 pmd_save_pos.php:53 +#: js/messages.php:52 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "Les modifications ont été sauvegardées" -#: js/messages.php:53 pmd_relation_upd.php:48 +#: js/messages.php:53 pmd_relation_upd.php:47 msgid "Relation deleted" msgstr "Relation supprimée" -#: js/messages.php:54 pmd_relation_new.php:63 +#: js/messages.php:54 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "Relation de type FOREIGN KEY ajoutée" -#: js/messages.php:55 pmd_relation_new.php:85 +#: js/messages.php:55 pmd_relation_new.php:84 msgid "Internal relation added" msgstr "Relation interne ajoutée" -#: js/messages.php:56 pmd_relation_new.php:62 pmd_relation_new.php:87 +#: js/messages.php:56 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "Erreur: relation non ajoutée." -#: js/messages.php:57 pmd_relation_new.php:30 +#: js/messages.php:57 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "Erreur: relation déjà existante." @@ -987,13 +971,13 @@ msgstr "Erreur: relation déjà existante." msgid "Error saving coordinates for Designer." msgstr "Erreur lors de la sauvegarde des coordonnées Concepteur." -#: js/messages.php:59 libraries/relation.lib.php:94 -#: libraries/relation.lib.php:106 +#: js/messages.php:59 libraries/relation.lib.php:89 +#: libraries/relation.lib.php:101 msgid "General relation features" msgstr "Fonctions relationnelles" -#: js/messages.php:59 libraries/relation.lib.php:88 -#: libraries/relation.lib.php:95 +#: js/messages.php:59 libraries/relation.lib.php:83 +#: libraries/relation.lib.php:90 msgid "Disabled" msgstr "Désactivé" @@ -1009,12 +993,11 @@ msgstr "Choisissez la clé étrangère" msgid "Please select the primary key or a unique key" msgstr "Veuillez choisir la clé primaire ou un index unique" -#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:547 +#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:545 msgid "Choose column to display" msgstr "Colonne descriptive" #: js/messages.php:66 -#| msgid "Generate Password" msgid "Generate password" msgstr "Générer un mot de passe" @@ -1033,10 +1016,10 @@ msgid "Prev" msgstr "Précédent" #. l10n: Display text for next month link in calendar -#: js/messages.php:81 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:337 -#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:422 -#: tbl_structure.php:800 +#: js/messages.php:81 libraries/common.lib.php:2358 +#: libraries/common.lib.php:2361 libraries/display_tbl.lib.php:336 +#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 +#: tbl_structure.php:798 msgid "Next" msgstr "Suivant" @@ -1094,63 +1077,63 @@ msgid "December" msgstr "Décembre" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1562 +#: js/messages.php:101 libraries/common.lib.php:1566 msgid "Jan" msgstr "Janvier" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1564 +#: js/messages.php:103 libraries/common.lib.php:1568 msgid "Feb" msgstr "Février" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1566 +#: js/messages.php:105 libraries/common.lib.php:1570 msgid "Mar" msgstr "Mars" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1568 +#: js/messages.php:107 libraries/common.lib.php:1572 msgid "Apr" msgstr "Avril" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1570 +#: js/messages.php:109 libraries/common.lib.php:1574 msgctxt "Short month name" msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1572 +#: js/messages.php:111 libraries/common.lib.php:1576 msgid "Jun" msgstr "Juin" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1574 +#: js/messages.php:113 libraries/common.lib.php:1578 msgid "Jul" msgstr "Juillet" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1576 +#: js/messages.php:115 libraries/common.lib.php:1580 msgid "Aug" msgstr "Août" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1578 +#: js/messages.php:117 libraries/common.lib.php:1582 msgid "Sep" msgstr "Septembre" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1580 +#: js/messages.php:119 libraries/common.lib.php:1584 msgid "Oct" msgstr "Octobre" #. l10n: Short month name -#: js/messages.php:121 libraries/common.lib.php:1582 +#: js/messages.php:121 libraries/common.lib.php:1586 msgid "Nov" msgstr "Novembre" #. l10n: Short month name -#: js/messages.php:123 libraries/common.lib.php:1584 +#: js/messages.php:123 libraries/common.lib.php:1588 msgid "Dec" msgstr "Décembre" @@ -1183,37 +1166,37 @@ msgid "Saturday" msgstr "Samedi" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1587 +#: js/messages.php:136 libraries/common.lib.php:1591 msgid "Sun" msgstr "Dim" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1589 +#: js/messages.php:138 libraries/common.lib.php:1593 msgid "Mon" msgstr "Lun" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1591 +#: js/messages.php:140 libraries/common.lib.php:1595 msgid "Tue" msgstr "Mar" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1593 +#: js/messages.php:142 libraries/common.lib.php:1597 msgid "Wed" msgstr "Mer" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1595 +#: js/messages.php:144 libraries/common.lib.php:1599 msgid "Thu" msgstr "Jeu" #. l10n: Short week day name -#: js/messages.php:146 libraries/common.lib.php:1597 +#: js/messages.php:146 libraries/common.lib.php:1601 msgid "Fri" msgstr "Ven" #. l10n: Short week day name -#: js/messages.php:148 libraries/common.lib.php:1599 +#: js/messages.php:148 libraries/common.lib.php:1603 msgid "Sat" msgstr "Sam" @@ -1273,18 +1256,13 @@ msgstr "Seconde" msgid "Font size" msgstr "Taille du texte" -#: libraries/File.class.php:336 libraries/File.class.php:424 -#: libraries/File.class.php:561 libraries/File.class.php:700 -msgid "Unknown error in file upload." -msgstr "Erreur inconnue durant le téléchargement." - -#: libraries/File.class.php:406 +#: libraries/File.class.php:315 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:409 +#: libraries/File.class.php:318 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -1292,23 +1270,27 @@ 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:412 +#: libraries/File.class.php:321 msgid "The uploaded file was only partially uploaded." msgstr "Le fichier n'a été que partiellement téléchargé." -#: libraries/File.class.php:415 +#: libraries/File.class.php:324 msgid "Missing a temporary folder." msgstr "Répertoire temporaire manquant." -#: libraries/File.class.php:418 +#: libraries/File.class.php:327 msgid "Failed to write file to disk." msgstr "Erreur lors de l'écriture du fichier sur disque." -#: libraries/File.class.php:421 +#: libraries/File.class.php:330 msgid "File upload stopped by extension." msgstr "Téléchargement arrêté par l'extension." -#: libraries/File.class.php:898 +#: libraries/File.class.php:333 +msgid "Unknown error in file upload." +msgstr "Erreur inconnue durant le téléchargement." + +#: libraries/File.class.php:624 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -1316,37 +1298,37 @@ 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:427 tbl_relation.php:528 +#: libraries/Index.class.php:427 tbl_relation.php:526 msgid "No index defined!" msgstr "Aucun index n'est défini !" -#: libraries/Index.class.php:432 server_databases.php:131 tbl_tracking.php:315 +#: libraries/Index.class.php:432 server_databases.php:129 tbl_tracking.php:310 msgid "Indexes" msgstr "Index" #: libraries/Index.class.php:443 libraries/mult_submits.inc.php:102 -#: libraries/tbl_properties.inc.php:518 tbl_structure.php:32 -#: tbl_structure.php:154 tbl_structure.php:158 tbl_structure.php:473 -#: tbl_tracking.php:321 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:31 +#: tbl_structure.php:153 tbl_structure.php:157 tbl_structure.php:471 +#: tbl_tracking.php:316 msgid "Unique" msgstr "Unique" -#: libraries/Index.class.php:444 tbl_tracking.php:322 +#: libraries/Index.class.php:444 tbl_tracking.php:317 msgid "Packed" msgstr "Compressé" -#: libraries/Index.class.php:446 tbl_tracking.php:324 +#: libraries/Index.class.php:446 tbl_tracking.php:319 msgid "Cardinality" msgstr "Cardinalité" -#: libraries/Index.class.php:449 tbl_tracking.php:278 tbl_tracking.php:327 +#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322 msgid "Comment" msgstr "Commentaire" #: libraries/Index.class.php:465 libraries/common.lib.php:609 -#: libraries/common.lib.php:1198 libraries/display_tbl.lib.php:1116 +#: libraries/common.lib.php:1191 libraries/display_tbl.lib.php:1115 #: libraries/import.lib.php:1119 libraries/import.lib.php:1143 -#: pdf_pages.php:284 setup/frames/index.inc.php:124 +#: pdf_pages.php:283 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:349 tbl_row_action.php:68 msgid "Edit" msgstr "Modifier" @@ -1370,15 +1352,15 @@ msgstr "" "supprimé." #: libraries/List_Database.class.php:430 libraries/server_links.inc.php:40 -#: server_databases.php:87 server_privileges.php:1652 +#: server_databases.php:85 server_privileges.php:1656 #: setup/lib/messages.inc.php:107 test/theme.php:92 msgid "Databases" msgstr "Bases de données" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:259 libraries/import.lib.php:134 pdf_schema.php:31 -#: pdf_schema.php:231 tbl_change.php:1023 tbl_operations.php:212 -#: tbl_relation.php:289 view_operations.php:61 +#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 +#: tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Erreur" @@ -1403,42 +1385,42 @@ msgid_plural "%1$d rows inserted." msgstr[0] "%1$d enregistrement inséré." msgstr[1] "%1$d enregistrements insérés." -#: libraries/StorageEngine.class.php:196 +#: libraries/StorageEngine.class.php:194 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:352 +#: libraries/StorageEngine.class.php:354 #, php-format msgid "%s is available on this MySQL server." msgstr "%s est disponible sur ce serveur MySQL." -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:357 #, 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:359 +#: libraries/StorageEngine.class.php:361 #, 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:1018 +#: libraries/Table.class.php:1017 msgid "Invalid database" msgstr "Nom de base de données invalide" -#: libraries/Table.class.php:1032 tbl_get_field.php:25 +#: libraries/Table.class.php:1031 tbl_get_field.php:25 msgid "Invalid table name" msgstr "Nom de table invalide" -#: libraries/Table.class.php:1047 +#: libraries/Table.class.php:1046 #, 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:1131 +#: libraries/Table.class.php:1129 #, php-format msgid "Table %s has been renamed to %s" msgstr "La table %s se nomme maintenant %s" @@ -1456,22 +1438,22 @@ msgstr "Prévisualisation non disponible." msgid "take it" msgstr "utiliser celui-ci" -#: libraries/Theme_Manager.class.php:114 +#: 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:152 +#: libraries/Theme_Manager.class.php:147 #, php-format msgid "Theme %s not found!" msgstr "Thème %s inexistant !" -#: libraries/Theme_Manager.class.php:220 +#: 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:296 test/theme.php:160 themes.php:20 +#: libraries/Theme_Manager.class.php:291 test/theme.php:160 themes.php:20 #: themes.php:40 msgid "Theme / Style" msgstr "Thème / Style" @@ -1588,19 +1570,19 @@ msgstr "La clé d'authentification n'est pas branchée" msgid "Authenticating..." msgstr "Authentification en cours..." -#: libraries/blobstreaming.lib.php:689 +#: libraries/blobstreaming.lib.php:340 msgid "View image" msgstr "Afficher l'image" -#: libraries/blobstreaming.lib.php:693 +#: libraries/blobstreaming.lib.php:344 msgid "Play audio" msgstr "Lecture audio" -#: libraries/blobstreaming.lib.php:698 +#: libraries/blobstreaming.lib.php:349 msgid "View video" msgstr "Lecture vidéo" -#: libraries/blobstreaming.lib.php:702 +#: libraries/blobstreaming.lib.php:353 msgid "Download file" msgstr "Télécharger" @@ -1657,7 +1639,7 @@ msgid "Invalid authentication method set in configuration:" msgstr "" "Le fichier de configuration contient un type d'authentification invalide :" -#: libraries/common.inc.php:909 +#: libraries/common.inc.php:908 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Vous devriez utiliser %s en version %s ou plus récente." @@ -1682,7 +1664,8 @@ msgstr "fr" #: libraries/common.lib.php:425 libraries/common.lib.php:427 #: libraries/common.lib.php:429 libraries/common.lib.php:445 #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 -#: libraries/display_export.lib.php:163 libraries/relation.lib.php:84 +#: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 +#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 #: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" @@ -1697,148 +1680,148 @@ msgstr "Requête SQL" msgid "MySQL said: " msgstr "MySQL a répondu: " -#: libraries/common.lib.php:1136 +#: libraries/common.lib.php:1129 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "Failed to connect to SQL validator!" msgstr "Connexion au serveur MySQL impossible" -#: libraries/common.lib.php:1174 setup/lib/messages.inc.php:350 +#: libraries/common.lib.php:1167 setup/lib/messages.inc.php:350 msgid "Explain SQL" msgstr "Expliquer SQL" -#: libraries/common.lib.php:1177 +#: libraries/common.lib.php:1170 msgid "Skip Explain SQL" msgstr "Ne pas expliquer SQL" -#: libraries/common.lib.php:1211 +#: libraries/common.lib.php:1204 msgid "Without PHP Code" msgstr "Sans source PHP" -#: libraries/common.lib.php:1214 setup/lib/messages.inc.php:352 +#: libraries/common.lib.php:1207 setup/lib/messages.inc.php:352 msgid "Create PHP Code" msgstr "Créer source PHP" -#: libraries/common.lib.php:1232 server_status.php:451 +#: libraries/common.lib.php:1225 server_status.php:451 #: setup/lib/messages.inc.php:351 msgid "Refresh" msgstr "Actualiser" -#: libraries/common.lib.php:1241 +#: libraries/common.lib.php:1234 msgid "Skip Validate SQL" msgstr "Ne pas valider SQL" -#: libraries/common.lib.php:1244 setup/lib/messages.inc.php:353 +#: libraries/common.lib.php:1237 setup/lib/messages.inc.php:353 msgid "Validate SQL" msgstr "Valider SQL" -#: libraries/common.lib.php:1283 +#: libraries/common.lib.php:1287 msgid "Inline edit of this query" msgstr "Éditer cette requête en ligne" -#: libraries/common.lib.php:1285 +#: libraries/common.lib.php:1289 msgid "Inline" msgstr "En ligne" -#: libraries/common.lib.php:1339 libraries/common.lib.php:1354 +#: libraries/common.lib.php:1343 libraries/common.lib.php:1358 msgid "Profiling" msgstr "Profilage" -#: libraries/common.lib.php:1358 libraries/tbl_triggers.lib.php:27 +#: libraries/common.lib.php:1362 libraries/tbl_triggers.lib.php:27 #: server_processlist.php:57 msgid "Time" msgstr "Durée" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "B" msgstr "o" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "KiB" msgstr "Kio" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "MiB" msgstr "Mio" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "GiB" msgstr "Gio" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "TiB" msgstr "Tio" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "PiB" msgstr "Pio" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "EiB" msgstr "Eio" #. l10n: Thousands separator -#: libraries/common.lib.php:1424 +#: libraries/common.lib.php:1428 msgid "," msgstr " " #. l10n: Decimal separator -#: libraries/common.lib.php:1426 +#: libraries/common.lib.php:1430 msgid "." msgstr "," #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1603 +#: libraries/common.lib.php:1607 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%A %d %B %Y à %H:%M" -#: libraries/common.lib.php:1909 +#: libraries/common.lib.php:1913 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s jours, %s heures, %s minutes et %s secondes" -#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 -#: libraries/display_tbl.lib.php:289 server_status.php:718 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 +#: libraries/display_tbl.lib.php:288 server_status.php:718 msgid "Begin" msgstr "Début" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 -#: libraries/display_tbl.lib.php:290 server_binlog.php:154 +#: libraries/common.lib.php:2328 libraries/common.lib.php:2331 +#: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "Précédent" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 -#: libraries/display_tbl.lib.php:352 +#: libraries/common.lib.php:2359 libraries/common.lib.php:2362 +#: libraries/display_tbl.lib.php:351 msgid "End" msgstr "Fin" -#: libraries/common.lib.php:2429 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "Aller à la base de données "%s"." -#: libraries/common.lib.php:2448 +#: libraries/common.lib.php:2453 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "La fonctionnalité %s est affectée par une anomalie connue, voir %s" -#: libraries/common.lib.php:2828 libraries/common.lib.php:2835 -#: libraries/db_links.inc.php:67 libraries/export/sql.php:24 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 +#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 -#: libraries/tbl_links.inc.php:59 querywindow.php:89 test/theme.php:96 +#: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2837 libraries/db_links.inc.php:103 -#: libraries/tbl_links.inc.php:94 libraries/tbl_links.inc.php:116 -#: view_operations.php:88 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: view_operations.php:87 msgid "Operations" msgstr "Opérations" -#: libraries/core.lib.php:282 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "Il manque l'extension %s. Veuillez vérifier votre configuration PHP." @@ -1854,38 +1837,38 @@ msgstr "Événements" msgid "Name" msgstr "Nom" -#: libraries/db_links.inc.php:44 +#: libraries/db_links.inc.php:43 #, php-format msgid "Database %s has been dropped." msgstr "La base de données %s a été effacée." -#: libraries/db_links.inc.php:56 libraries/db_links.inc.php:57 -#: libraries/db_links.inc.php:58 +#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 +#: libraries/db_links.inc.php:57 msgid "Database seems to be empty!" msgstr "La base de données semble vide !" -#: libraries/db_links.inc.php:80 libraries/relation.lib.php:142 -#: libraries/tbl_links.inc.php:68 +#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "Suivi" -#: libraries/db_links.inc.php:85 +#: libraries/db_links.inc.php:84 msgid "Query" msgstr "Requête" -#: libraries/db_links.inc.php:90 libraries/relation.lib.php:138 +#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 msgid "Designer" msgstr "Concepteur" -#: libraries/db_links.inc.php:97 libraries/server_links.inc.php:87 -#: libraries/tbl_links.inc.php:90 pmd_pdf.php:83 pmd_pdf.php:109 +#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importer" -#: libraries/db_links.inc.php:110 libraries/server_links.inc.php:65 -#: server_privileges.php:111 server_privileges.php:1714 -#: server_privileges.php:2063 test/theme.php:116 +#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: server_privileges.php:110 server_privileges.php:1718 +#: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" msgstr "Privilèges" @@ -1897,7 +1880,7 @@ msgstr "Procédures stockées" msgid "Return type" msgstr "Type retourné" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1847 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1806 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -1905,8 +1888,8 @@ msgstr "" "Peut être approximatif. Voir [a@./Documentation.html#faq3_11@Documentation]" "FAQ 3.11[/a]" -#: libraries/db_structure.lib.php:60 server_databases.php:141 -#: tbl_printview.php:334 tbl_structure.php:681 +#: libraries/db_structure.lib.php:60 server_databases.php:139 +#: tbl_printview.php:333 tbl_structure.php:679 msgid "Overhead" msgstr "Perte" @@ -1926,7 +1909,7 @@ msgstr "" "(ou l'interface de connexion (socket) vers le serveur MySQL local n'est pas " "correctement configurée)" -#: libraries/dbi/mysql.dbi.lib.php:358 tbl_structure.php:607 +#: libraries/dbi/mysql.dbi.lib.php:358 tbl_structure.php:605 msgid "Details..." msgstr "Détails..." @@ -1936,22 +1919,22 @@ msgid "Change password" msgstr "Modifier le mot de passe" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:807 +#: libraries/replication_gui.lib.php:347 server_privileges.php:806 msgid "No Password" msgstr "Aucun mot de passe" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1530 server_synchronize.php:1174 +#: libraries/replication_gui.lib.php:351 server_privileges.php:795 +#: server_privileges.php:799 server_privileges.php:810 +#: server_privileges.php:1534 server_synchronize.php:1173 msgid "Password" msgstr "Mot de passe" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:815 server_privileges.php:818 +#: server_privileges.php:814 server_privileges.php:817 msgid "Re-type" msgstr "Entrer à nouveau" @@ -1972,8 +1955,8 @@ msgstr "Créer une base de données" msgid "Create" msgstr "Créer" -#: libraries/display_create_database.lib.php:39 server_privileges.php:113 -#: server_privileges.php:1419 server_replication.php:34 +#: libraries/display_create_database.lib.php:39 server_privileges.php:112 +#: server_privileges.php:1423 server_replication.php:33 msgid "No Privileges" msgstr "Aucun privilège" @@ -1990,49 +1973,49 @@ msgstr "Créer une nouvelle table sur la base %s" msgid "Number of columns" msgstr "Nombre de colonnes" -#: libraries/display_export.lib.php:41 +#: libraries/display_export.lib.php:35 msgid "Could not load export plugins, please check your installation!" msgstr "Erreur lors du chargement des modules d'exportation !" -#: libraries/display_export.lib.php:106 +#: libraries/display_export.lib.php:100 #, php-format msgid "Dump %s row(s) starting at row # %s" msgstr "Exporter %s ligne(s) à partir du rang n° %s" -#: libraries/display_export.lib.php:114 +#: libraries/display_export.lib.php:108 msgid "Dump all rows" msgstr "Exporter tous les enregistrements" -#: libraries/display_export.lib.php:124 setup/lib/messages.inc.php:79 +#: libraries/display_export.lib.php:118 setup/lib/messages.inc.php:79 msgid "Save as file" msgstr "Transmettre" -#: libraries/display_export.lib.php:133 +#: libraries/display_export.lib.php:127 #, php-format msgid "Save on server in %s directory" msgstr "Sauvegarder sur le serveur dans le répertoire %s" -#: libraries/display_export.lib.php:141 setup/lib/messages.inc.php:87 +#: libraries/display_export.lib.php:135 setup/lib/messages.inc.php:87 msgid "Overwrite existing file(s)" msgstr "Écraser les fichiers existants" -#: libraries/display_export.lib.php:147 +#: libraries/display_export.lib.php:141 msgid "File name template" msgstr "Modèle de nom de fichier" -#: libraries/display_export.lib.php:151 +#: libraries/display_export.lib.php:145 msgid "server name" msgstr "nom de serveur" -#: libraries/display_export.lib.php:154 +#: libraries/display_export.lib.php:148 msgid "database name" msgstr "nom de base de données" -#: libraries/display_export.lib.php:157 +#: libraries/display_export.lib.php:151 msgid "table name" msgstr "nom de table" -#: libraries/display_export.lib.php:161 +#: libraries/display_export.lib.php:155 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2043,39 +2026,39 @@ msgstr "" "utiliser des chaînes de format d'heure. Ces transformations additionnelles " "vont se produire: %3$s. Tout autre texte sera conservé tel quel." -#: libraries/display_export.lib.php:202 +#: libraries/display_export.lib.php:196 msgid "remember template" msgstr "se souvenir du modèle" -#: libraries/display_export.lib.php:210 libraries/display_import.lib.php:177 +#: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 #: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 msgid "Character set of the file:" msgstr "Jeu de caractères du fichier: " -#: libraries/display_export.lib.php:235 setup/lib/messages.inc.php:81 +#: libraries/display_export.lib.php:229 setup/lib/messages.inc.php:81 msgid "Compression" msgstr "Compression" -#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:196 -#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:529 -#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:574 -#: server_privileges.php:1867 server_processlist.php:74 +#: libraries/display_export.lib.php:234 libraries/display_import.lib.php:196 +#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:528 +#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:573 +#: server_privileges.php:1871 server_processlist.php:74 msgid "None" msgstr "Aucune" -#: libraries/display_export.lib.php:247 +#: libraries/display_export.lib.php:241 msgid "\"zipped\"" msgstr "«zippé »" -#: libraries/display_export.lib.php:253 +#: libraries/display_export.lib.php:247 msgid "\"gzipped\"" msgstr " «gzippé »" -#: libraries/display_export.lib.php:259 +#: libraries/display_export.lib.php:253 msgid "\"bzipped\"" msgstr " «bzippé »" -#: libraries/display_export.lib.php:274 libraries/export/sql.php:42 +#: libraries/display_export.lib.php:268 libraries/export/sql.php:42 #: libraries/import/sql.php:31 msgid "SQL compatibility mode" msgstr "Mode de compatibilité SQL" @@ -2115,12 +2098,12 @@ msgid "File uploads are not allowed on this server." msgstr "Les téléchargements vers ce serveur ne sont pas permis." #: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 -#: tbl_change.php:1024 +#: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "Le répertoire de transfert est inaccessible" #: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 -#: tbl_change.php:1027 +#: tbl_change.php:925 msgid "web server upload directory" msgstr "répertoire de transfert du serveur web" @@ -2204,41 +2187,41 @@ msgstr "Taille du papier" msgid "Language" msgstr "Langue" -#: libraries/display_tbl.lib.php:303 +#: libraries/display_tbl.lib.php:302 #, php-format msgid "%d is not valid row number." msgstr "%d n'est pas un numéro d'enregistrement valable." -#: libraries/display_tbl.lib.php:309 +#: libraries/display_tbl.lib.php:308 msgid "row(s) starting from row #" msgstr "ligne(s) à partir de la ligne n°" -#: libraries/display_tbl.lib.php:315 +#: libraries/display_tbl.lib.php:314 msgid "horizontal" msgstr "horizontal" -#: libraries/display_tbl.lib.php:316 +#: libraries/display_tbl.lib.php:315 msgid "horizontal (rotated headers)" msgstr "horizontal (en-têtes pivotés)" -#: libraries/display_tbl.lib.php:317 +#: libraries/display_tbl.lib.php:316 msgid "vertical" msgstr "vertical" -#: libraries/display_tbl.lib.php:323 +#: libraries/display_tbl.lib.php:322 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "en mode %s et répéter les en-têtes à chaque groupe de %s" -#: libraries/display_tbl.lib.php:345 +#: libraries/display_tbl.lib.php:344 msgid "This operation could take a long time. Proceed anyway?" msgstr "Cette opération pourrait être longue. Procéder quand même ?" -#: libraries/display_tbl.lib.php:511 +#: libraries/display_tbl.lib.php:510 msgid "Sort by key" msgstr "Trier sur l'index" -#: libraries/display_tbl.lib.php:554 libraries/export/codegen.php:38 +#: libraries/display_tbl.lib.php:553 libraries/export/codegen.php:38 #: libraries/export/csv.php:29 libraries/export/excel.php:34 #: libraries/export/htmlword.php:28 libraries/export/latex.php:32 #: libraries/export/mediawiki.php:21 libraries/export/ods.php:26 @@ -2248,97 +2231,97 @@ msgstr "Trier sur l'index" #: libraries/export/xlsx.php:26 libraries/export/xml.php:23 #: libraries/export/yaml.php:27 libraries/import.lib.php:1114 #: libraries/import.lib.php:1136 libraries/import/csv.php:31 -#: libraries/import/docsql.php:33 libraries/import/ldi.php:46 +#: libraries/import/docsql.php:32 libraries/import/ldi.php:46 #: libraries/import/ods.php:30 libraries/import/sql.php:19 #: libraries/import/xls.php:25 libraries/import/xlsx.php:25 -#: libraries/import/xml.php:25 tbl_select.php:264 tbl_structure.php:752 +#: libraries/import/xml.php:25 tbl_select.php:263 tbl_structure.php:750 msgid "Options" msgstr "Options" -#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:569 +#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:568 msgid "Partial Texts" msgstr "Textes réduits" -#: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:573 +#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:572 msgid "Full Texts" msgstr "Textes complets" -#: libraries/display_tbl.lib.php:586 +#: libraries/display_tbl.lib.php:585 msgid "Relational key" msgstr "Relations : clés" -#: libraries/display_tbl.lib.php:587 +#: libraries/display_tbl.lib.php:586 msgid "Relational display column" msgstr "Relations : colonnes descriptives" -#: libraries/display_tbl.lib.php:594 +#: libraries/display_tbl.lib.php:593 msgid "Show binary contents" msgstr "Montrer le contenu binaire" -#: libraries/display_tbl.lib.php:596 +#: libraries/display_tbl.lib.php:595 msgid "Show BLOB contents" msgstr "Montrer le contenu BLOB" -#: libraries/display_tbl.lib.php:598 +#: libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "Montrer le contenu binaire en hexadécimal" -#: libraries/display_tbl.lib.php:606 pmd_general.php:140 tbl_change.php:312 -#: tbl_change.php:318 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:307 +#: tbl_change.php:313 msgid "Hide" msgstr "Cacher" -#: libraries/display_tbl.lib.php:606 libraries/relation.lib.php:122 -#: libraries/tbl_properties.inc.php:143 transformation_overview.php:46 +#: libraries/display_tbl.lib.php:605 libraries/relation.lib.php:117 +#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46 msgid "Browser transformation" msgstr "Transformation" -#: libraries/display_tbl.lib.php:1125 libraries/display_tbl.lib.php:1129 -#: libraries/display_tbl.lib.php:1131 +#: libraries/display_tbl.lib.php:1124 libraries/display_tbl.lib.php:1128 +#: libraries/display_tbl.lib.php:1130 msgid "Execute bookmarked query" msgstr "Exécuter la requête en signets" -#: libraries/display_tbl.lib.php:1144 libraries/display_tbl.lib.php:1156 +#: libraries/display_tbl.lib.php:1143 libraries/display_tbl.lib.php:1155 msgid "The row has been deleted" msgstr "L'enregistrement a été effacé" -#: libraries/display_tbl.lib.php:1183 libraries/display_tbl.lib.php:2055 +#: libraries/display_tbl.lib.php:1182 libraries/display_tbl.lib.php:2014 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "Supprimer" -#: libraries/display_tbl.lib.php:1933 +#: libraries/display_tbl.lib.php:1892 msgid "in query" msgstr "dans la requête" -#: libraries/display_tbl.lib.php:1951 +#: libraries/display_tbl.lib.php:1910 msgid "Showing rows" msgstr "Affichage des enregistrements" -#: libraries/display_tbl.lib.php:1961 +#: libraries/display_tbl.lib.php:1920 msgid "total" msgstr "total" -#: libraries/display_tbl.lib.php:1969 sql.php:523 +#: libraries/display_tbl.lib.php:1928 sql.php:522 #, php-format msgid "Query took %01.4f sec" msgstr "Traitement en %01.4f sec" -#: libraries/display_tbl.lib.php:2088 libraries/mult_submits.inc.php:112 -#: querywindow.php:115 querywindow.php:119 querywindow.php:122 -#: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:469 +#: libraries/display_tbl.lib.php:2047 libraries/mult_submits.inc.php:112 +#: querywindow.php:114 querywindow.php:118 querywindow.php:121 +#: tbl_structure.php:23 tbl_structure.php:148 tbl_structure.php:467 msgid "Change" msgstr "Modifier" -#: libraries/display_tbl.lib.php:2158 +#: libraries/display_tbl.lib.php:2117 msgid "Query results operations" msgstr "Opérations sur les résultats de la requête" -#: libraries/display_tbl.lib.php:2186 +#: libraries/display_tbl.lib.php:2145 msgid "Print view (with full texts)" msgstr "Version imprimable (avec textes complets)" -#: libraries/display_tbl.lib.php:2359 +#: libraries/display_tbl.lib.php:2318 msgid "Link not found" msgstr "Lien absent" @@ -2394,9 +2377,9 @@ msgstr "État InnoDB" msgid "Buffer Pool Usage" msgstr "Utilisation de la mémoire-tampon" -#: libraries/engines/innodb.lib.php:168 server_databases.php:136 -#: server_databases.php:304 server_status.php:524 server_status.php:585 -#: server_status.php:606 tbl_printview.php:349 tbl_structure.php:695 +#: libraries/engines/innodb.lib.php:168 server_databases.php:134 +#: server_databases.php:302 server_status.php:524 server_status.php:585 +#: server_status.php:606 tbl_printview.php:348 tbl_structure.php:693 msgid "Total" msgstr "Total" @@ -2536,6 +2519,88 @@ msgstr "" "opération REPAIR TABLE ou pour créer les index lors d'un CREATE INDEX ou " "ALTER TABLE." +#: libraries/engines/pbms.lib.php:31 +#, fuzzy +#| msgid "Garbage threshold" +msgid "Garbage Threshold" +msgstr "Seuil des informations parasites" + +#: libraries/engines/pbms.lib.php:32 +#, fuzzy +#| msgid "" +#| "The percentage of garbage in a data log file before it is compacted. This " +#| "is a value between 1 and 99. The default is 50." +msgid "The percentage of garbage in a repository file before it is compacted." +msgstr "" +"Le pourcentage d'information parasites dans un journal de données au-delà " +"duquel il est comprimé. Il s'agit d'une valeur entre 1 et 99. La valeur par " +"défaut est 50." + +#: libraries/engines/pbms.lib.php:36 libraries/replication_gui.lib.php:69 +#: server_synchronize.php:1161 +msgid "Port" +msgstr "Port" + +#: libraries/engines/pbms.lib.php:37 +msgid "" +"The port for the PBMS stream-based communications. Setting this value to 0 " +"will disable HTTP communication with the daemon." +msgstr "" + +#: libraries/engines/pbms.lib.php:41 +msgid "Repository Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:42 +msgid "" +"The maximum size of a BLOB repository file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:46 +msgid "Temp Blob Timeout" +msgstr "" + +#: libraries/engines/pbms.lib.php:47 +msgid "" +"The timeout, in seconds, for temporary BLOBs. Uploaded BLOB data is removed " +"after this time, unless they are referenced by a record in the database." +msgstr "" + +#: libraries/engines/pbms.lib.php:51 +#, fuzzy +#| msgid "Log file threshold" +msgid "Temp Log Threshold" +msgstr "Seuil du fichier journal" + +#: libraries/engines/pbms.lib.php:52 +msgid "" +"The maximum size of a temporary BLOB log file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:56 +msgid "Max Keep Alive" +msgstr "" + +#: libraries/engines/pbms.lib.php:57 +msgid "" +"The timeout for inactive connection with the keep-alive flag set. After this " +"time the connection will be closed. The time-out is in milliseconds (1/1000)." +msgstr "" + +#: libraries/engines/pbms.lib.php:61 +msgid "Metadata Headers" +msgstr "" + +#: libraries/engines/pbms.lib.php:62 +msgid "" +"A \":\" delimited list of metadata headers to be used to initialize the " +"pbms_metadata_header table when a database is created." +msgstr "" + #: libraries/engines/pbxt.lib.php:22 msgid "Index cache size" msgstr "Taille du cache d'index" @@ -2689,7 +2754,7 @@ msgstr "" "plus anciens sont détruits, sinon ils sont renommés." #: libraries/export/codegen.php:36 setup/lib/messages.inc.php:85 -#: tbl_printview.php:374 tbl_structure.php:736 +#: tbl_printview.php:373 tbl_structure.php:734 msgid "Format" msgstr "Format" @@ -2752,9 +2817,9 @@ msgstr "Microsoft Word 2000" #: libraries/export/htmlword.php:23 libraries/export/latex.php:59 #: libraries/export/latex.php:205 libraries/export/odt.php:47 #: libraries/export/sql.php:105 libraries/export/sql.php:865 -#: libraries/export/texytext.php:27 server_databases.php:126 -#: server_privileges.php:576 server_replication.php:315 tbl_printview.php:315 -#: tbl_structure.php:664 +#: libraries/export/texytext.php:27 server_databases.php:124 +#: server_privileges.php:575 server_replication.php:314 tbl_printview.php:314 +#: tbl_structure.php:662 msgid "Data" msgstr "Données" @@ -2769,7 +2834,6 @@ msgid "Table structure for table" msgstr "Structure de la table" #: libraries/export/latex.php:13 -#| msgid "Content of table __TABLE__" msgid "Content of table @TABLE@" msgstr "Contenu de la table @TABLE@" @@ -2778,7 +2842,6 @@ msgid "(continued)" msgstr "(suite)" #: libraries/export/latex.php:15 -#| msgid "Structure of table __TABLE__" msgid "Structure of table @TABLE@" msgstr "Structure de la table @TABLE@" @@ -2803,13 +2866,13 @@ msgid "Label key" msgstr "Clé de l'étiquette" #: libraries/export/latex.php:46 libraries/export/odt.php:34 -#: libraries/export/sql.php:90 tbl_relation.php:398 +#: libraries/export/sql.php:90 tbl_relation.php:396 msgid "Relations" msgstr "Relations" #: libraries/export/latex.php:52 libraries/export/odt.php:40 #: libraries/export/odt.php:317 libraries/export/sql.php:94 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "Type MIME" @@ -2817,10 +2880,10 @@ msgstr "Type MIME" #: libraries/export/xml.php:101 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1529 server_privileges.php:2061 -#: server_processlist.php:54 server_synchronize.php:1158 +#: libraries/replication_gui.lib.php:331 server_privileges.php:730 +#: server_privileges.php:733 server_privileges.php:789 +#: server_privileges.php:1533 server_privileges.php:2065 +#: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "Serveur" @@ -3008,8 +3071,8 @@ msgstr "Exporter les vues" msgid "Export contents" msgstr "Exporter le contenu" -#: libraries/footer.inc.php:182 libraries/footer.inc.php:193 -#: libraries/footer.inc.php:196 +#: libraries/footer.inc.php:180 libraries/footer.inc.php:191 +#: libraries/footer.inc.php:194 msgid "Open new phpMyAdmin window" msgstr "Ouvrir une nouvelle fenêtre phpMyAdmin" @@ -3025,7 +3088,7 @@ msgstr "Résultat de la requête SQL" msgid "Generated by" msgstr "Généré par" -#: libraries/import.lib.php:151 sql.php:519 tbl_change.php:180 +#: libraries/import.lib.php:151 sql.php:518 tbl_change.php:175 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL n'a retourné aucun enregistrement." @@ -3082,7 +3145,7 @@ msgstr "Ignorer les doublons" msgid "Column names in first row" msgstr "La première ligne contient le nom des colonnes" -#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:501 +#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:500 #: view_create.php:147 msgid "Column names" msgstr "Nom des colonnes" @@ -3108,12 +3171,12 @@ msgstr "Format invalide pour les données CSV à la ligne %d." msgid "Invalid column count in CSV input on line %d." msgstr "Nombre de colonnes invalide dans les données CSV à la ligne %d." -#: libraries/import/docsql.php:28 +#: libraries/import/docsql.php:27 msgid "DocSQL" msgstr "DocSQL" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 -#: server_synchronize.php:427 server_synchronize.php:870 +#: libraries/import/docsql.php:30 libraries/tbl_properties.inc.php:616 +#: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "Nom de la table" @@ -3169,26 +3232,26 @@ msgstr "Aucune" msgid "Convert to Kana" msgstr "Conversion en kana" -#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:512 -#: tbl_structure.php:28 tbl_structure.php:152 tbl_structure.php:156 -#: tbl_structure.php:472 +#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:511 +#: tbl_structure.php:27 tbl_structure.php:151 tbl_structure.php:155 +#: tbl_structure.php:470 msgid "Primary" msgstr "Primaire" #: libraries/mult_submits.inc.php:97 libraries/tbl_properties.inc.php:115 -#: libraries/tbl_properties.inc.php:524 tbl_printview.php:324 -#: tbl_structure.php:30 tbl_structure.php:153 tbl_structure.php:157 -#: tbl_structure.php:474 tbl_structure.php:672 +#: libraries/tbl_properties.inc.php:523 tbl_printview.php:323 +#: tbl_structure.php:29 tbl_structure.php:152 tbl_structure.php:156 +#: tbl_structure.php:472 tbl_structure.php:670 msgid "Index" msgstr "Index" -#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:530 -#: tbl_structure.php:34 tbl_structure.php:155 tbl_structure.php:159 -#: tbl_structure.php:477 +#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:529 +#: tbl_structure.php:33 tbl_structure.php:154 tbl_structure.php:158 +#: tbl_structure.php:475 msgid "Fulltext" msgstr "Texte entier" -#: libraries/mult_submits.inc.php:434 tbl_replace.php:330 +#: libraries/mult_submits.inc.php:433 tbl_replace.php:330 msgid "No change" msgstr "Pas de modifications" @@ -3196,190 +3259,190 @@ msgstr "Pas de modifications" msgid "Charset" msgstr "Jeu de caractères" -#: libraries/mysql_charsets.lib.php:210 libraries/mysql_charsets.lib.php:411 -#: tbl_change.php:515 +#: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 +#: tbl_change.php:510 msgid "Binary" msgstr "Binaire" -#: libraries/mysql_charsets.lib.php:222 +#: libraries/mysql_charsets.lib.php:214 msgid "Bulgarian" msgstr "Bulgare" -#: libraries/mysql_charsets.lib.php:226 libraries/mysql_charsets.lib.php:351 +#: libraries/mysql_charsets.lib.php:218 libraries/mysql_charsets.lib.php:343 msgid "Simplified Chinese" msgstr "Chinois simplifié" -#: libraries/mysql_charsets.lib.php:228 libraries/mysql_charsets.lib.php:371 +#: libraries/mysql_charsets.lib.php:220 libraries/mysql_charsets.lib.php:363 msgid "Traditional Chinese" msgstr "Chinois traditionnel" -#: libraries/mysql_charsets.lib.php:232 libraries/mysql_charsets.lib.php:418 +#: libraries/mysql_charsets.lib.php:224 libraries/mysql_charsets.lib.php:410 msgid "case-insensitive" msgstr "insensible à la casse" -#: libraries/mysql_charsets.lib.php:235 libraries/mysql_charsets.lib.php:420 +#: libraries/mysql_charsets.lib.php:227 libraries/mysql_charsets.lib.php:412 msgid "case-sensitive" msgstr "sensible à la casse" -#: libraries/mysql_charsets.lib.php:238 +#: libraries/mysql_charsets.lib.php:230 msgid "Croatian" msgstr "Croate" -#: libraries/mysql_charsets.lib.php:241 +#: libraries/mysql_charsets.lib.php:233 msgid "Czech" msgstr "Tchèque" -#: libraries/mysql_charsets.lib.php:244 +#: libraries/mysql_charsets.lib.php:236 msgid "Danish" msgstr "Danois" -#: libraries/mysql_charsets.lib.php:247 +#: libraries/mysql_charsets.lib.php:239 msgid "English" msgstr "Anglais" -#: libraries/mysql_charsets.lib.php:250 +#: libraries/mysql_charsets.lib.php:242 msgid "Esperanto" msgstr "Espéranto" -#: libraries/mysql_charsets.lib.php:253 +#: libraries/mysql_charsets.lib.php:245 msgid "Estonian" msgstr "Estonien" -#: libraries/mysql_charsets.lib.php:256 libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:248 libraries/mysql_charsets.lib.php:251 msgid "German" msgstr "Allemand" -#: libraries/mysql_charsets.lib.php:256 +#: libraries/mysql_charsets.lib.php:248 msgid "dictionary" msgstr "dictionnaire" -#: libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:251 msgid "phone book" msgstr "annuaire téléphonique" -#: libraries/mysql_charsets.lib.php:262 +#: libraries/mysql_charsets.lib.php:254 msgid "Hungarian" msgstr "Hongrois" -#: libraries/mysql_charsets.lib.php:265 +#: libraries/mysql_charsets.lib.php:257 msgid "Icelandic" msgstr "Islandais" -#: libraries/mysql_charsets.lib.php:268 libraries/mysql_charsets.lib.php:358 +#: libraries/mysql_charsets.lib.php:260 libraries/mysql_charsets.lib.php:350 msgid "Japanese" msgstr "Japonais" -#: libraries/mysql_charsets.lib.php:271 +#: libraries/mysql_charsets.lib.php:263 msgid "Latvian" msgstr "Letton" -#: libraries/mysql_charsets.lib.php:274 +#: libraries/mysql_charsets.lib.php:266 msgid "Lithuanian" msgstr "Lituanien" -#: libraries/mysql_charsets.lib.php:277 libraries/mysql_charsets.lib.php:380 +#: libraries/mysql_charsets.lib.php:269 libraries/mysql_charsets.lib.php:372 msgid "Korean" msgstr "Coréen" -#: libraries/mysql_charsets.lib.php:280 +#: libraries/mysql_charsets.lib.php:272 msgid "Persian" msgstr "Perse" -#: libraries/mysql_charsets.lib.php:283 +#: libraries/mysql_charsets.lib.php:275 msgid "Polish" msgstr "Polonais" -#: libraries/mysql_charsets.lib.php:286 libraries/mysql_charsets.lib.php:334 +#: libraries/mysql_charsets.lib.php:278 libraries/mysql_charsets.lib.php:326 msgid "West European" msgstr "Europe de l'ouest" -#: libraries/mysql_charsets.lib.php:289 +#: libraries/mysql_charsets.lib.php:281 msgid "Romanian" msgstr "Roumain" -#: libraries/mysql_charsets.lib.php:292 +#: libraries/mysql_charsets.lib.php:284 msgid "Slovak" msgstr "Slovaque" -#: libraries/mysql_charsets.lib.php:295 +#: libraries/mysql_charsets.lib.php:287 msgid "Slovenian" msgstr "Slovène" -#: libraries/mysql_charsets.lib.php:298 +#: libraries/mysql_charsets.lib.php:290 msgid "Spanish" msgstr "Espagnol" -#: libraries/mysql_charsets.lib.php:301 +#: libraries/mysql_charsets.lib.php:293 msgid "Traditional Spanish" msgstr "Espagnol traditionnel" -#: libraries/mysql_charsets.lib.php:304 libraries/mysql_charsets.lib.php:401 +#: libraries/mysql_charsets.lib.php:296 libraries/mysql_charsets.lib.php:393 msgid "Swedish" msgstr "Suédois" -#: libraries/mysql_charsets.lib.php:307 libraries/mysql_charsets.lib.php:404 +#: libraries/mysql_charsets.lib.php:299 libraries/mysql_charsets.lib.php:396 msgid "Thai" msgstr "Thaï" -#: libraries/mysql_charsets.lib.php:310 libraries/mysql_charsets.lib.php:398 +#: libraries/mysql_charsets.lib.php:302 libraries/mysql_charsets.lib.php:390 msgid "Turkish" msgstr "Turc" -#: libraries/mysql_charsets.lib.php:313 libraries/mysql_charsets.lib.php:395 +#: libraries/mysql_charsets.lib.php:305 libraries/mysql_charsets.lib.php:387 msgid "Ukrainian" msgstr "Ukrainien" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 msgid "Unicode" msgstr "Unicode" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 -#: libraries/mysql_charsets.lib.php:334 libraries/mysql_charsets.lib.php:341 -#: libraries/mysql_charsets.lib.php:363 libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 +#: libraries/mysql_charsets.lib.php:326 libraries/mysql_charsets.lib.php:333 +#: libraries/mysql_charsets.lib.php:355 libraries/mysql_charsets.lib.php:366 msgid "multilingual" msgstr "multilingue" -#: libraries/mysql_charsets.lib.php:341 +#: libraries/mysql_charsets.lib.php:333 msgid "Central European" msgstr "Europe centrale" -#: libraries/mysql_charsets.lib.php:346 +#: libraries/mysql_charsets.lib.php:338 msgid "Russian" msgstr "Russe" -#: libraries/mysql_charsets.lib.php:363 +#: libraries/mysql_charsets.lib.php:355 msgid "Baltic" msgstr "Baltique" -#: libraries/mysql_charsets.lib.php:368 +#: libraries/mysql_charsets.lib.php:360 msgid "Armenian" msgstr "Arménien" -#: libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:366 msgid "Cyrillic" msgstr "Cyrillique" -#: libraries/mysql_charsets.lib.php:377 +#: libraries/mysql_charsets.lib.php:369 msgid "Arabic" msgstr "Arabe" -#: libraries/mysql_charsets.lib.php:383 +#: libraries/mysql_charsets.lib.php:375 msgid "Hebrew" msgstr "Hébreu" -#: libraries/mysql_charsets.lib.php:386 +#: libraries/mysql_charsets.lib.php:378 msgid "Georgian" msgstr "Géorgien" -#: libraries/mysql_charsets.lib.php:389 +#: libraries/mysql_charsets.lib.php:381 msgid "Greek" msgstr "Grec" -#: libraries/mysql_charsets.lib.php:392 +#: libraries/mysql_charsets.lib.php:384 msgid "Czech-Slovak" msgstr "Tchèque-slovaque" -#: libraries/mysql_charsets.lib.php:407 libraries/mysql_charsets.lib.php:414 +#: libraries/mysql_charsets.lib.php:399 libraries/mysql_charsets.lib.php:406 msgid "unknown" msgstr "inconnu" @@ -3405,59 +3468,59 @@ msgstr "Fenêtre de requête" msgid "This format has no options" msgstr "Ce format ne comporte pas d'options" -#: libraries/relation.lib.php:82 +#: libraries/relation.lib.php:77 msgid "not OK" msgstr "en erreur" -#: libraries/relation.lib.php:86 pmd_general.php:339 +#: libraries/relation.lib.php:81 pmd_general.php:339 msgid "OK" msgstr "OK" -#: libraries/relation.lib.php:87 +#: libraries/relation.lib.php:82 msgid "Enabled" msgstr "Activé" -#: libraries/relation.lib.php:110 +#: libraries/relation.lib.php:105 msgid "Display Features" msgstr "Affichage infobulle" -#: libraries/relation.lib.php:116 +#: libraries/relation.lib.php:111 msgid "Creation of PDFs" msgstr "Génération de schémas en PDF" -#: libraries/relation.lib.php:120 +#: libraries/relation.lib.php:115 msgid "Displaying Column Comments" msgstr "Commentaires de colonnes" -#: libraries/relation.lib.php:125 +#: libraries/relation.lib.php:120 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "La documentation indique comment mettre à jour votre table column_comments" -#: libraries/relation.lib.php:130 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 msgid "Bookmarked SQL query" msgstr "Requêtes en signets" -#: libraries/relation.lib.php:134 querywindow.php:99 querywindow.php:207 +#: libraries/relation.lib.php:129 querywindow.php:98 querywindow.php:205 msgid "SQL history" msgstr "Historique SQL" -#: libraries/relation.lib.php:146 +#: libraries/relation.lib.php:141 msgid "Quick steps to setup advanced features:" msgstr "Guide rapide de configuration des fonctions avancées :" -#: libraries/relation.lib.php:148 +#: libraries/relation.lib.php:143 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" "Créez les tables requises au moyen de script/create_tables.sql." -#: libraries/relation.lib.php:149 +#: libraries/relation.lib.php:144 msgid "Create a pma user and give access to these tables." msgstr "Créez un utilisateur pma et donnez-lui accès à ces tables." -#: libraries/relation.lib.php:150 +#: libraries/relation.lib.php:145 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." @@ -3466,13 +3529,13 @@ msgstr "" "(config.inc.php), en vous basant par exemple sur config." "sample.inc.php." -#: libraries/relation.lib.php:151 +#: libraries/relation.lib.php:146 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" "Reconnectez-vous à phpMyAdmin afin d'utiliser le fichier de configuration " "modifié." -#: libraries/relation.lib.php:1158 +#: libraries/relation.lib.php:1153 msgid "no description" msgstr "pas de description" @@ -3480,7 +3543,7 @@ msgstr "pas de description" msgid "Slave configuration" msgstr "Configuration de l'esclave" -#: libraries/replication_gui.lib.php:53 server_replication.php:346 +#: libraries/replication_gui.lib.php:53 server_replication.php:345 msgid "Change or reconfigure master server" msgstr "Changer ou reconfigurer le serveur maître" @@ -3495,16 +3558,12 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:711 -#: server_privileges.php:714 server_privileges.php:721 -#: server_synchronize.php:1170 +#: libraries/replication_gui.lib.php:261 server_privileges.php:710 +#: server_privileges.php:713 server_privileges.php:720 +#: server_synchronize.php:1169 msgid "User name" msgstr "Nom d'utilisateur" -#: libraries/replication_gui.lib.php:69 server_synchronize.php:1162 -msgid "Port" -msgstr "Port" - #: libraries/replication_gui.lib.php:105 msgid "Master status" msgstr "État du maître" @@ -3519,8 +3578,8 @@ msgid "Variable" msgstr "Variable" #: libraries/replication_gui.lib.php:117 server_status.php:737 -#: tbl_change.php:322 tbl_printview.php:368 tbl_select.php:137 -#: tbl_structure.php:728 +#: tbl_change.php:317 tbl_printview.php:367 tbl_select.php:136 +#: tbl_structure.php:726 msgid "Value" msgstr "Valeur" @@ -3536,38 +3595,38 @@ msgstr "" "Seuls les esclaves démarrés avec l'option --report-host=host_name sont " "visibles sur cette liste." -#: libraries/replication_gui.lib.php:242 server_replication.php:193 +#: libraries/replication_gui.lib.php:242 server_replication.php:192 msgid "Add slave replication user" msgstr "Ajouter un utilisateur pour la réplication vers l'esclave" -#: libraries/replication_gui.lib.php:256 server_privileges.php:716 +#: libraries/replication_gui.lib.php:256 server_privileges.php:715 msgid "Any user" msgstr "Tout utilisateur" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1920 server_privileges.php:1950 +#: libraries/replication_gui.lib.php:348 server_privileges.php:716 +#: server_privileges.php:783 server_privileges.php:807 +#: server_privileges.php:1924 server_privileges.php:1954 msgid "Use text field" msgstr "Entrez une valeur" -#: libraries/replication_gui.lib.php:304 server_privileges.php:764 +#: libraries/replication_gui.lib.php:304 server_privileges.php:763 msgid "Any host" msgstr "Tout serveur" -#: libraries/replication_gui.lib.php:308 server_privileges.php:768 +#: libraries/replication_gui.lib.php:308 server_privileges.php:767 msgid "Local" msgstr "Local" -#: libraries/replication_gui.lib.php:314 server_privileges.php:773 +#: libraries/replication_gui.lib.php:314 server_privileges.php:772 msgid "This Host" msgstr "Ce serveur" -#: libraries/replication_gui.lib.php:320 server_privileges.php:779 +#: libraries/replication_gui.lib.php:320 server_privileges.php:778 msgid "Use Host Table" msgstr "Utiliser la table Host" -#: libraries/replication_gui.lib.php:333 server_privileges.php:792 +#: libraries/replication_gui.lib.php:333 server_privileges.php:791 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3595,8 +3654,8 @@ msgstr "Langue inconnue: %1$s." msgid "Servers" msgstr "Serveurs" -#: libraries/server_links.inc.php:52 server_engines.php:111 -#: server_engines.php:115 server_status.php:414 test/theme.php:104 +#: libraries/server_links.inc.php:52 server_engines.php:125 +#: server_engines.php:129 server_status.php:414 test/theme.php:104 msgid "Variables" msgstr "Variables" @@ -3617,12 +3676,12 @@ msgstr "Log binaire" msgid "Processes" msgstr "Processus" -#: libraries/server_links.inc.php:91 server_synchronize.php:1091 -#: server_synchronize.php:1099 +#: libraries/server_links.inc.php:91 server_synchronize.php:1090 +#: server_synchronize.php:1098 msgid "Synchronize" msgstr "Synchroniser" -#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1109 +#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1108 msgid "Source database" msgstr "Base de données source" @@ -3640,7 +3699,7 @@ msgstr "Serveur distant" msgid "Difference" msgstr "Différence" -#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1111 +#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1110 msgid "Target database" msgstr "Base de données cible" @@ -3658,11 +3717,11 @@ msgstr "Exécuter une ou des requêtes sur la base %s" msgid "Columns" msgstr "Colonnes" -#: libraries/sql_query_form.lib.php:342 sql.php:664 sql.php:665 sql.php:682 +#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "Conserver cette requête dans les signets" -#: libraries/sql_query_form.lib.php:349 sql.php:676 +#: libraries/sql_query_form.lib.php:349 sql.php:669 msgid "Let every user access this bookmark" msgstr "Signet visible pour les autres utilisateurs" @@ -3757,12 +3816,12 @@ msgstr "" "Le validateur SQL n'a pas pu être initialisé. Vérifiez que les extensions " "PHP nécessaires ont bien été installées (voir la %sdocumentation%s)." -#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:139 -#: libraries/tbl_links.inc.php:140 +#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 +#: libraries/tbl_links.inc.php:139 msgid "Table seems to be empty!" msgstr "La table semble vide !" -#: libraries/tbl_links.inc.php:148 +#: libraries/tbl_links.inc.php:147 #, php-format msgid "Tracking of %s.%s is activated." msgstr "Le suivi de %s.%s est activé." @@ -3791,12 +3850,12 @@ msgstr "" "Pour les valeurs par défaut, veuillez n'entrer qu'une seule valeur, sans " "caractère d'échappement ou apostrophes, sous la forme: a" -#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1263 -#: pdf_schema.php:1284 tbl_printview.php:142 tbl_structure.php:179 +#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1262 +#: pdf_schema.php:1283 tbl_printview.php:141 tbl_structure.php:178 msgid "Attributes" msgstr "Attributs" -#: libraries/tbl_properties.inc.php:136 +#: libraries/tbl_properties.inc.php:135 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -3805,11 +3864,11 @@ msgstr "" "La %sdescription des transformations%s explique les transformations " "possibles en fonction des types MIME" -#: libraries/tbl_properties.inc.php:144 +#: libraries/tbl_properties.inc.php:143 msgid "Transformation options" msgstr "Options de transformation" -#: libraries/tbl_properties.inc.php:145 +#: libraries/tbl_properties.inc.php:144 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
                            If you ever need to put a backslash (\"\\\") or a single " @@ -3821,16 +3880,16 @@ msgstr "" "ou une apostrophe (\"'\") parmi ces valeurs, faites-le précéder du caractère " "d'échappement, par exemple '\\\\xyz' or 'a\\'b')." -#: libraries/tbl_properties.inc.php:392 +#: libraries/tbl_properties.inc.php:391 msgctxt "for default" msgid "None" msgstr "Aucune" -#: libraries/tbl_properties.inc.php:393 +#: libraries/tbl_properties.inc.php:392 msgid "As defined:" msgstr "Tel que défini :" -#: libraries/tbl_properties.inc.php:579 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:578 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
                            Please ask the " @@ -3839,28 +3898,28 @@ msgstr "" "Aucune description n'est disponible pour cette transformation.
                            Veuillez " "demander à son auteur, des détails sur %s." -#: libraries/tbl_properties.inc.php:725 server_engines.php:57 -#: tbl_operations.php:354 +#: libraries/tbl_properties.inc.php:724 server_engines.php:56 +#: tbl_operations.php:352 msgid "Storage Engine" msgstr "Moteur de stockage" -#: libraries/tbl_properties.inc.php:754 +#: libraries/tbl_properties.inc.php:753 msgid "PARTITION definition" msgstr "Définition de PARTITION" -#: libraries/tbl_properties.inc.php:775 pdf_pages.php:502 +#: libraries/tbl_properties.inc.php:774 pdf_pages.php:501 #: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214 -#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1124 tbl_indexes.php:247 -#: tbl_relation.php:565 +#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1022 tbl_indexes.php:246 +#: tbl_relation.php:563 msgid "Save" msgstr "Sauvegarder" -#: libraries/tbl_properties.inc.php:779 tbl_structure.php:541 +#: libraries/tbl_properties.inc.php:778 tbl_structure.php:539 #, php-format msgid "Add %s column(s)" msgstr "Ajouter %s colonne(s)" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:535 +#: libraries/tbl_properties.inc.php:782 tbl_structure.php:533 msgid "You have to add at least one column." msgstr "Vous devez ajouter au moins une colonne." @@ -4027,8 +4086,8 @@ msgstr "Interface" msgid "Custom color" msgstr "Couleur au choix" -#: main.php:162 pdf_pages.php:362 setup/lib/FormDisplay.tpl.php:216 -#: tbl_change.php:1173 +#: main.php:162 pdf_pages.php:361 setup/lib/FormDisplay.tpl.php:216 +#: tbl_change.php:1071 msgid "Reset" msgstr "Réinitialiser" @@ -4036,8 +4095,8 @@ msgstr "Réinitialiser" msgid "Protocol version" msgstr "Version du protocole" -#: main.php:188 server_privileges.php:1381 server_privileges.php:1528 -#: server_privileges.php:1642 server_privileges.php:2060 +#: main.php:188 server_privileges.php:1385 server_privileges.php:1532 +#: server_privileges.php:1646 server_privileges.php:2064 #: server_processlist.php:53 msgid "User" msgstr "Utilisateur" @@ -4131,7 +4190,16 @@ msgstr "" "présent dans votre répertoire phpMyAdmin. Vous devriez le supprimer quand " "vous aurez terminé la configuration de phpMyAdmin." -#: main.php:330 +#: main.php:314 +#, php-format +msgid "" +"The additional features for working with linked tables have been " +"deactivated. To find out why click %shere%s." +msgstr "" +"Certaines fonctionnalités ayant trait aux tables reliées sont désactivées. " +"Pour une analyse du problème, cliquez %sici%s." + +#: main.php:329 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " @@ -4141,7 +4209,7 @@ msgstr "" "fonctions de phpMyAdmin seront manquantes. Par exemple le cadre de " "navigation ne sera pas mis à jour automatiquement." -#: main.php:345 +#: main.php:344 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -4150,7 +4218,7 @@ msgstr "" "La version de votre bibliothèque MySQL (%s) diffère de la version de votre " "serveur MySQL (%s). Ceci peut occasionner un comportement imprévisible." -#: main.php:357 +#: main.php:356 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -4163,62 +4231,62 @@ msgstr "" msgid "Reload navigation frame" msgstr "Recharger le cadre de navigation" -#: navigation.php:204 server_databases.php:370 server_synchronize.php:1190 +#: navigation.php:203 server_databases.php:368 server_synchronize.php:1189 msgid "No databases" msgstr "Aucune base de données" -#: navigation.php:298 +#: navigation.php:297 msgid "Filter" msgstr "Filtre" -#: navigation.php:299 setup/frames/index.inc.php:218 +#: navigation.php:298 setup/frames/index.inc.php:218 #: setup/lib/messages.inc.php:41 msgid "Clear" msgstr "Vider" -#: navigation.php:330 navigation.php:331 +#: navigation.php:329 navigation.php:330 msgctxt "short form" msgid "Create table" msgstr "Nouvelle table" -#: navigation.php:333 navigation.php:495 +#: navigation.php:332 navigation.php:494 msgid "Please select a database" msgstr "Choisissez une base de données" -#: pdf_pages.php:40 pdf_pages.php:46 pdf_pages.php:52 pdf_pages.php:57 +#: pdf_pages.php:39 pdf_pages.php:45 pdf_pages.php:51 pdf_pages.php:56 #, php-format msgid "%s table not found or not set in %s" msgstr "La table %s est absente ou non définie dans %s" -#: pdf_pages.php:265 +#: pdf_pages.php:264 msgid "Please choose a page to edit" msgstr "Page à éditer" -#: pdf_pages.php:303 pmd_pdf.php:113 +#: pdf_pages.php:302 pmd_pdf.php:111 msgid "Create a page" msgstr "Créer une page" -#: pdf_pages.php:309 +#: pdf_pages.php:308 msgid "Page name" msgstr "Nom de la page" -#: pdf_pages.php:313 +#: pdf_pages.php:312 msgid "Automatic layout based on" msgstr "Mise en page automatique" -#: pdf_pages.php:315 +#: pdf_pages.php:314 msgid "Internal relations" msgstr "Relations internes" -#: pdf_pages.php:338 +#: pdf_pages.php:337 msgid "Select Tables" msgstr "Choisissez les tables" -#: pdf_pages.php:361 +#: pdf_pages.php:360 msgid "Toggle scratchboard" msgstr "Éditeur visuel" -#: pdf_pages.php:524 +#: pdf_pages.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -4226,35 +4294,35 @@ msgstr "" "Cette page fait référence à des tables qui n'existent plus. Voulez-vous " "effacer ces références ?" -#: pdf_schema.php:635 +#: pdf_schema.php:634 #, php-format msgid "The %s table doesn't exist!" msgstr "La table %s n'existe pas !" -#: pdf_schema.php:671 +#: pdf_schema.php:670 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Les coordonnées de la table %s n'ont pas été configurées" -#: pdf_schema.php:994 +#: pdf_schema.php:993 #, php-format msgid "Schema of the %s database - Page %s" msgstr "Schéma de la base %s - Page %s" -#: pdf_schema.php:1012 +#: pdf_schema.php:1011 msgid "No tables" msgstr "Pas de table" -#: pdf_schema.php:1031 pdf_schema.php:1140 +#: pdf_schema.php:1030 pdf_schema.php:1139 msgid "Relational schema" msgstr "Schéma relationnel" -#: pdf_schema.php:1115 +#: pdf_schema.php:1114 msgid "Table of contents" msgstr "Table des matières" -#: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:145 -#: tbl_structure.php:182 tbl_tracking.php:277 +#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 +#: tbl_structure.php:181 tbl_tracking.php:272 msgid "Extra" msgstr "Extra" @@ -4266,7 +4334,7 @@ msgstr "Montrer/cacher le menu de gauche" msgid "Save position" msgstr "Sauvegarder la position" -#: pmd_general.php:70 server_synchronize.php:428 server_synchronize.php:871 +#: pmd_general.php:70 server_synchronize.php:427 server_synchronize.php:870 msgid "Create table" msgstr "Nouvelle table" @@ -4340,31 +4408,31 @@ msgstr "" "ou n'est plus la colonne descriptive, cliquer l'icône «Colonne descriptive», " "puis cliquer sur le nom de colonne approprié." -#: pmd_pdf.php:62 +#: pmd_pdf.php:60 msgid "Page has been created" msgstr "La page a été créée" -#: pmd_pdf.php:64 +#: pmd_pdf.php:62 msgid "Page creation failed" msgstr "Échec de création de page" -#: pmd_pdf.php:84 +#: pmd_pdf.php:82 msgid "Export/Import to scale" msgstr "Exporter/Importer à l'échelle" -#: pmd_pdf.php:88 +#: pmd_pdf.php:86 msgid "recommended" msgstr "recommandé" -#: pmd_pdf.php:93 +#: pmd_pdf.php:91 msgid "to/from page" msgstr "de/vers la page" -#: querywindow.php:94 +#: querywindow.php:93 msgid "Import files" msgstr "Importe les fichiers" -#: querywindow.php:105 +#: querywindow.php:104 msgid "All" msgstr "Tout" @@ -4410,63 +4478,63 @@ msgstr "Information" msgid "Character Sets and Collations" msgstr "Jeux de caractères et interclassement" -#: server_databases.php:51 +#: server_databases.php:49 msgid "No databases selected." msgstr "Aucune base de données n'a été sélectionnée." -#: server_databases.php:62 +#: server_databases.php:60 #, php-format msgid "%s databases have been dropped successfully." msgstr "%s bases de données ont été supprimées." -#: server_databases.php:87 +#: server_databases.php:85 msgid "Databases statistics" msgstr "Statistiques sur les bases de données" -#: server_databases.php:116 server_status.php:370 +#: server_databases.php:114 server_status.php:370 #: setup/lib/messages.inc.php:114 msgid "Tables" msgstr "Tables" -#: server_databases.php:194 server_replication.php:180 -#: server_replication.php:208 +#: server_databases.php:192 server_replication.php:179 +#: server_replication.php:207 msgid "Master replication" msgstr "Réplication maître" -#: server_databases.php:196 server_replication.php:247 +#: server_databases.php:194 server_replication.php:246 msgid "Slave replication" msgstr "Réplication esclave" -#: server_databases.php:229 +#: server_databases.php:227 msgid "Jump to database" msgstr "Aller à la base de données" -#: server_databases.php:266 +#: server_databases.php:264 msgid "Not replicated" msgstr "Non répliqué" -#: server_databases.php:272 +#: server_databases.php:270 msgid "Replicated" msgstr "Répliqué" -#: server_databases.php:288 +#: server_databases.php:286 #, php-format msgid "Check privileges for database "%s"." msgstr "Vérifier les privilèges pour la base de données "%s"." -#: server_databases.php:292 server_databases.php:293 +#: server_databases.php:290 server_databases.php:291 msgid "Check Privileges" msgstr "Vérifier les privilèges" -#: server_databases.php:357 server_databases.php:358 +#: server_databases.php:355 server_databases.php:356 msgid "Enable Statistics" msgstr "Activer les statistiques" -#: server_databases.php:361 server_databases.php:362 +#: server_databases.php:359 server_databases.php:360 msgid "Disable Statistics" msgstr "Désactiver les statistiques" -#: server_databases.php:365 +#: server_databases.php:363 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -4474,131 +4542,131 @@ msgstr "" "Note: L'activation des statistiques peut causer un trafic important entre le " "serveur web et le serveur MySQL." -#: server_engines.php:48 +#: server_engines.php:47 msgid "Storage Engines" msgstr "Moteurs de stockage" -#: server_export.php:20 +#: server_export.php:18 msgid "View dump (schema) of databases" msgstr "Schéma et/ou contenu des bases de données" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:23 server_privileges.php:265 msgid "Includes all privileges except GRANT." msgstr "Tous les privilèges sauf GRANT." -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:24 server_privileges.php:191 +#: server_privileges.php:514 msgid "Allows altering the structure of existing tables." msgstr "Permission de modifier la structure des tables existantes." -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:25 server_privileges.php:207 +#: server_privileges.php:520 msgid "Allows altering and dropping stored routines." msgstr "Permission de modifier et de supprimer des procédures stockées." -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:26 server_privileges.php:183 +#: server_privileges.php:513 msgid "Allows creating new databases and tables." msgstr "Permission de créer des bases de données et des tables." -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:27 server_privileges.php:206 +#: server_privileges.php:519 msgid "Allows creating stored routines." msgstr "Permission de créer des procédures stockées." -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:513 msgid "Allows creating new tables." msgstr "Permission de créer des tables." -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:29 server_privileges.php:194 +#: server_privileges.php:517 msgid "Allows creating temporary tables." msgstr "Permission de créer des tables temporaires." -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:30 server_privileges.php:208 +#: server_privileges.php:553 msgid "Allows creating, dropping and renaming user accounts." msgstr "Permission de créer, supprimer et renommer des comptes utilisateurs." -#: server_privileges.php:32 server_privileges.php:199 -#: server_privileges.php:203 server_privileges.php:526 -#: server_privileges.php:530 +#: server_privileges.php:31 server_privileges.php:198 +#: server_privileges.php:202 server_privileges.php:525 +#: server_privileges.php:529 msgid "Allows creating new views." msgstr "Permission de créer des vues." -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:32 server_privileges.php:182 +#: server_privileges.php:505 msgid "Allows deleting data." msgstr "Permission de détruire des données." -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:33 server_privileges.php:184 +#: server_privileges.php:516 msgid "Allows dropping databases and tables." msgstr "Permission d'effacer des bases de données et des tables." -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:34 server_privileges.php:516 msgid "Allows dropping tables." msgstr "Permission d'effacer des tables." -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:35 server_privileges.php:199 +#: server_privileges.php:533 msgid "Allows to set up events for the event scheduler" msgstr "" "Permission de mettre en place des événements pour le programmateur " "d'événements" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:36 server_privileges.php:209 +#: server_privileges.php:521 msgid "Allows executing stored routines." msgstr "Permission d'exécuter des procédures stockées." -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:37 server_privileges.php:188 +#: server_privileges.php:508 msgid "Allows importing data from and exporting data into files." msgstr "" "Permission d'importer et d'exporter des données à partir de / dans des " "fichiers." -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:38 server_privileges.php:539 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Permission d'ajouter des utilisateurs et des privilèges sans avoir besoin de " "recharger les privilèges." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:515 msgid "Allows creating and dropping indexes." msgstr "Permission de créer et d'effacer des index." -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:40 server_privileges.php:180 +#: server_privileges.php:441 server_privileges.php:503 msgid "Allows inserting and replacing data." msgstr "Permission d'ajouter et de remplacer des données." -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:41 server_privileges.php:195 +#: server_privileges.php:548 msgid "Allows locking tables for the current thread." msgstr "" "Permission de verrouiller des enregistrements dans le fil courant (unité " "d'exécution)." -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:42 server_privileges.php:645 +#: server_privileges.php:647 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Limite du nombre de nouvelles connexions qu'un utilisateur peut démarrer, " "par heure." -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:43 server_privileges.php:633 +#: server_privileges.php:635 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Limite du nombre de requêtes qu'un utilisateur peut envoyer au serveur, par " "heure." -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:44 server_privileges.php:639 +#: server_privileges.php:641 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -4606,63 +4674,63 @@ msgstr "" "Limite du nombre de commandes changeant une table ou base de données, qu'un " "utilisateur peut exécuter, par heure." -#: server_privileges.php:46 server_privileges.php:652 -#: server_privileges.php:654 +#: server_privileges.php:45 server_privileges.php:651 +#: server_privileges.php:653 msgid "Limits the number of simultaneous connections the user may have." msgstr "" "Limite le nombre de connexions simultanées autorisées pour un utilisateur." -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:46 server_privileges.php:187 +#: server_privileges.php:543 msgid "Allows viewing processes of all users" msgstr "Permission de voir les processus de tous les utilisateurs" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:47 server_privileges.php:189 +#: server_privileges.php:447 server_privileges.php:549 msgid "Has no effect in this MySQL version." msgstr "Non effectif dans cette version de MySQL." -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:48 server_privileges.php:185 +#: server_privileges.php:544 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Permission de recharger les réglages du serveur, et de vidanger la mémoire " "cache." -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:197 +#: server_privileges.php:551 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Permission de demander où sont les maîtres et les esclaves (système de " "duplication)." -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:50 server_privileges.php:196 +#: server_privileges.php:552 msgid "Needed for the replication slaves." msgstr "Nécessaire pour les esclaves (système de duplication)." -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:51 server_privileges.php:179 +#: server_privileges.php:438 server_privileges.php:502 msgid "Allows reading data." msgstr "Permission de lire des données." -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:52 server_privileges.php:192 +#: server_privileges.php:546 msgid "Gives access to the complete list of databases." msgstr "Permission de voir la liste complète des noms de bases de données." -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:53 server_privileges.php:203 +#: server_privileges.php:205 server_privileges.php:518 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Permission d'exécuter SHOW CREATE VIEW." -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:54 server_privileges.php:186 +#: server_privileges.php:545 msgid "Allows shutting down the server." msgstr "Permission d'arrêter le serveur." -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:55 server_privileges.php:193 +#: server_privileges.php:542 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -4673,153 +4741,153 @@ msgstr "" "administratif, par exemple les changements de variables globales ou la " "destruction de processus." -#: server_privileges.php:57 server_privileges.php:201 -#: server_privileges.php:535 +#: server_privileges.php:56 server_privileges.php:200 +#: server_privileges.php:534 msgid "Allows creating and dropping triggers" msgstr "Permission de créer et de supprimer des déclencheurs" -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:57 server_privileges.php:181 +#: server_privileges.php:444 server_privileges.php:504 msgid "Allows changing data." msgstr "Permission de changer des données." -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:58 server_privileges.php:259 msgid "No privileges." msgstr "Pas de privilèges." -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:301 server_privileges.php:302 msgctxt "None privileges" msgid "None" msgstr "Aucun" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1710 server_privileges.php:1716 +#: server_privileges.php:430 server_privileges.php:565 +#: server_privileges.php:1714 server_privileges.php:1720 msgid "Table-specific privileges" msgstr "Privilèges spécifiques à une table" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1532 +#: server_privileges.php:431 server_privileges.php:573 +#: server_privileges.php:1536 msgid " Note: MySQL privilege names are expressed in English " msgstr " Veuillez noter que les noms de privilèges sont exprimés en anglais" -#: server_privileges.php:563 server_privileges.php:1531 +#: server_privileges.php:562 server_privileges.php:1535 msgid "Global privileges" msgstr "Privilèges globaux" -#: server_privileges.php:565 server_privileges.php:1710 +#: server_privileges.php:564 server_privileges.php:1714 msgid "Database-specific privileges" msgstr "Privilèges spécifiques à une base de données" -#: server_privileges.php:610 +#: server_privileges.php:609 msgid "Administration" msgstr "Administration" -#: server_privileges.php:630 +#: server_privileges.php:629 msgid "Resource limits" msgstr "Limites de ressources" -#: server_privileges.php:631 +#: server_privileges.php:630 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Note: Une valeur de 0 (zero) enlève la limite." -#: server_privileges.php:708 +#: server_privileges.php:707 msgid "Login Information" msgstr "Information pour la connexion" -#: server_privileges.php:802 +#: server_privileges.php:801 msgid "Do not change the password" msgstr "Conserver le mot de passe" -#: server_privileges.php:835 server_privileges.php:2197 +#: server_privileges.php:834 server_privileges.php:2201 msgid "No user found." msgstr "Aucun utilisateur n'a été trouvé." -#: server_privileges.php:879 +#: server_privileges.php:878 #, php-format msgid "The user %s already exists!" msgstr "L'utilisateur %s existe déjà !" -#: server_privileges.php:962 +#: server_privileges.php:961 msgid "You have added a new user." msgstr "Vous avez ajouté un utilisateur." -#: server_privileges.php:1183 +#: server_privileges.php:1184 #, php-format msgid "You have updated the privileges for %s." msgstr "Vous avez modifié les privilèges pour %s." -#: server_privileges.php:1207 +#: server_privileges.php:1208 #, php-format msgid "You have revoked the privileges for %s" msgstr "Vous avez révoqué les privilèges pour %s" -#: server_privileges.php:1243 +#: server_privileges.php:1244 #, php-format msgid "The password for %s was changed successfully." msgstr "Le mot de passe de %s a été changé." -#: server_privileges.php:1263 +#: server_privileges.php:1264 #, php-format msgid "Deleting %s" msgstr "Destruction de %s" -#: server_privileges.php:1274 +#: server_privileges.php:1275 msgid "No users selected for deleting!" msgstr "Aucun utilisateur n'a été choisi en vue de le détruire !" -#: server_privileges.php:1277 +#: server_privileges.php:1278 msgid "Reloading the privileges" msgstr "Chargement des privilèges en cours" -#: server_privileges.php:1292 +#: server_privileges.php:1296 msgid "The selected users have been deleted successfully." msgstr "Les utilisateurs sélectionnés ont été effacés." -#: server_privileges.php:1327 +#: server_privileges.php:1331 msgid "The privileges were reloaded successfully." msgstr "Les privilèges ont été rechargés." -#: server_privileges.php:1355 server_privileges.php:1641 +#: server_privileges.php:1359 server_privileges.php:1645 msgid "Edit Privileges" msgstr "Changer les privilèges" -#: server_privileges.php:1364 +#: server_privileges.php:1368 msgid "Revoke" msgstr "Révoquer" -#: server_privileges.php:1396 +#: server_privileges.php:1400 msgid "User overview" msgstr "Vue d'ensemble des utilisateurs" -#: server_privileges.php:1533 server_privileges.php:1715 -#: server_privileges.php:2064 +#: server_privileges.php:1537 server_privileges.php:1719 +#: server_privileges.php:2068 msgid "Grant" msgstr " «Grant »" -#: server_privileges.php:1552 server_privileges.php:2154 +#: server_privileges.php:1556 server_privileges.php:2158 msgid "Any" msgstr "N'importe quel" -#: server_privileges.php:1601 server_privileges.php:1625 -#: server_privileges.php:2019 server_privileges.php:2208 +#: server_privileges.php:1605 server_privileges.php:1629 +#: server_privileges.php:2023 server_privileges.php:2212 msgid "Add a new User" msgstr "Ajouter un utilisateur" -#: server_privileges.php:1606 +#: server_privileges.php:1610 msgid "Remove selected users" msgstr "Effacer les utilisateurs sélectionnés" -#: server_privileges.php:1609 +#: server_privileges.php:1613 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Effacer tous les privilèges de ces utilisateurs, puis les effacer." -#: server_privileges.php:1610 server_privileges.php:1611 -#: server_privileges.php:1612 +#: server_privileges.php:1614 server_privileges.php:1615 +#: server_privileges.php:1616 msgid "Drop the databases that have the same names as the users." msgstr "" "Supprimer les bases de données portant le même nom que les utilisateurs." -#: server_privileges.php:1628 +#: server_privileges.php:1632 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4832,49 +4900,49 @@ msgstr "" "effectifs, si des changements manuels ont été apportés. Dans ce cas, vous " "devriez %srecharger les privilèges%s avant de continuer." -#: server_privileges.php:1676 +#: server_privileges.php:1680 msgid "The selected user was not found in the privilege table." msgstr "L'utilisateur choisi n'existe pas dans la table des privilèges." -#: server_privileges.php:1716 +#: server_privileges.php:1720 msgid "Column-specific privileges" msgstr "Privilèges de colonnes" -#: server_privileges.php:1917 +#: server_privileges.php:1921 msgid "Add privileges on the following database" msgstr "Ajouter des privilèges sur cette base de données" -#: server_privileges.php:1935 +#: server_privileges.php:1939 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "Préfixer avec \\ les passepartouts _ et % pour un usage littéral" -#: server_privileges.php:1938 +#: server_privileges.php:1942 msgid "Add privileges on the following table" msgstr "Ajouter des privilèges sur cette table" -#: server_privileges.php:1995 +#: server_privileges.php:1999 msgid "Change Login Information / Copy User" msgstr "Changement des informations de connexion / Copie d'utilisateur" -#: server_privileges.php:1998 +#: server_privileges.php:2002 msgid "Create a new user with the same privileges and ..." msgstr "Créer un nouvel utilisateur avec les mêmes privilèges et ..." -#: server_privileges.php:2000 +#: server_privileges.php:2004 msgid "... keep the old one." msgstr "... conserver intact l'ancien utilisateur." -#: server_privileges.php:2001 +#: server_privileges.php:2005 msgid " ... delete the old one from the user tables." msgstr " ... supprimer l'ancien utilisateur." -#: server_privileges.php:2002 +#: server_privileges.php:2006 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "" " ... effacer tous les privilèges de l'ancien utilisateur, puis l'effacer." -#: server_privileges.php:2003 +#: server_privileges.php:2007 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -4882,44 +4950,44 @@ msgstr "" " ... supprimer l'ancien utilisateur, puis recharger les privilèges au " "serveur." -#: server_privileges.php:2025 +#: server_privileges.php:2029 msgid "Database for user" msgstr "Base de données pour cet utilisateur" -#: server_privileges.php:2029 +#: server_privileges.php:2033 msgctxt "Create none database for user" msgid "None" msgstr "Aucune" -#: server_privileges.php:2030 +#: server_privileges.php:2034 msgid "Create database with same name and grant all privileges" msgstr "" "Créer une base portant son nom et donner à cet utilisateur tous les " "privilèges sur cette base" -#: server_privileges.php:2031 +#: server_privileges.php:2035 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Donner les privilèges passepartout (utilisateur\\_%)" -#: server_privileges.php:2034 +#: server_privileges.php:2038 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Donner tous les privilèges sur la base de données "%s"" -#: server_privileges.php:2057 +#: server_privileges.php:2061 #, php-format msgid "Users having access to "%s"" msgstr "Utilisateurs ayant accès à "%s"" -#: server_privileges.php:2165 +#: server_privileges.php:2169 msgid "global" msgstr "global" -#: server_privileges.php:2167 +#: server_privileges.php:2171 msgid "database-specific" msgstr "spécifique à cette base de données" -#: server_privileges.php:2169 +#: server_privileges.php:2173 msgid "wildcard" msgstr "passepartout" @@ -4939,44 +5007,44 @@ msgstr "" msgid "ID" msgstr "ID" -#: server_replication.php:50 +#: server_replication.php:49 msgid "Unknown error" msgstr "Erreur inconnue" -#: server_replication.php:57 +#: server_replication.php:56 #, php-format msgid "Unable to connect to master %s." msgstr "Connexion impossible sur le maître %s." -#: server_replication.php:64 +#: server_replication.php:63 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" "Impossible de lire la position du journal sur le maître. Possible problème " "de privilège sur le maître." -#: server_replication.php:70 +#: server_replication.php:69 msgid "Unable to change master" msgstr "Impossible de changer le maître" -#: server_replication.php:73 +#: server_replication.php:72 #, php-format msgid "Master server changed succesfully to %s" msgstr "Le serveur maître est maintenant %s" -#: server_replication.php:181 +#: server_replication.php:180 msgid "This server is configured as master in a replication process." msgstr "Ce serveur est un serveur maître dans le processus de réplication." -#: server_replication.php:183 server_status.php:391 +#: server_replication.php:182 server_status.php:391 msgid "Show master status" msgstr "Montrer l'état du maître" -#: server_replication.php:186 +#: server_replication.php:185 msgid "Show connected slaves" msgstr "Montrer les esclaves connectés" -#: server_replication.php:209 +#: server_replication.php:208 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -4985,11 +5053,11 @@ msgstr "" "Ce serveur n'est pas configuré comme maître dans un processus de " "réplication. Désirez-vous le configurer ?" -#: server_replication.php:216 +#: server_replication.php:215 msgid "Master configuration" msgstr "Configuration du maître" -#: server_replication.php:217 +#: server_replication.php:216 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -5003,19 +5071,19 @@ msgstr "" "répliquées) soit ignorer toutes les bases en demandant que certaines d'entre " "elles soient répliquées. Veuillez choisir le mode :" -#: server_replication.php:220 +#: server_replication.php:219 msgid "Replicate all databases; Ignore:" msgstr "Répliquer toutes les bases de données; Ignorer :" -#: server_replication.php:221 +#: server_replication.php:220 msgid "Ignore all databases; Replicate:" msgstr "Ignorer toutes les bases de données; Répliquer :" -#: server_replication.php:224 +#: server_replication.php:223 msgid "Please select databases:" msgstr "Sélectionnez les bases de données : " -#: server_replication.php:227 +#: server_replication.php:226 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -5023,7 +5091,7 @@ msgstr "" "Maintenant, ajoutez les lignes suivantes à la fin de votre fichier my.cnf " "puis redémarrez le serveur MySQL." -#: server_replication.php:229 +#: server_replication.php:228 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " @@ -5033,86 +5101,86 @@ msgstr "" "suite vous devriez voir un message vous informant que ce serveur est " "configuré comme maître." -#: server_replication.php:292 +#: server_replication.php:291 msgid "Slave SQL Thread not running!" msgstr "Le fil d'exécution SQL ne tourne pas sur le serveur esclave !" -#: server_replication.php:295 +#: server_replication.php:294 msgid "Slave IO Thread not running!" msgstr "Le fil d'exécution IO ne tourne pas sur le serveur esclave !" -#: server_replication.php:304 +#: server_replication.php:303 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" "Le serveur est configuré comme esclave dans un processus de réplication. " "Voudriez-vous :" -#: server_replication.php:307 +#: server_replication.php:306 msgid "See slave status table" msgstr "Montrer l'état de l'esclave" -#: server_replication.php:310 +#: server_replication.php:309 msgid "Synchronize databases with master" msgstr "Synchroniser les bases de données avec le serveur maître" -#: server_replication.php:321 +#: server_replication.php:320 msgid "Control slave:" msgstr "Contrôler le serveur esclave: " -#: server_replication.php:324 +#: server_replication.php:323 msgid "Full start" msgstr "Démarrer complètement" -#: server_replication.php:324 +#: server_replication.php:323 msgid "Full stop" msgstr "Arrêter complètement" -#: server_replication.php:325 +#: server_replication.php:324 msgid "Reset slave" msgstr "Réinitialiser l'esclave" -#: server_replication.php:326 +#: server_replication.php:325 #, php-format msgid "SQL Thread %s only" msgstr "%s seulement le fil d'exécution SQL" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 msgid "Start" msgstr "Démarrer" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 msgid "Stop" msgstr "Arrêter" -#: server_replication.php:327 +#: server_replication.php:326 #, php-format msgid "IO Thread %s only" msgstr "%s seulement le fil d'exécution des entrées-sorties" -#: server_replication.php:331 +#: server_replication.php:330 msgid "Error management:" msgstr "Gestion des erreurs : " -#: server_replication.php:333 +#: server_replication.php:332 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" "Ignorer les erreurs peut mener à une désynchronisation entre les serveurs " "maître et esclave !" -#: server_replication.php:335 +#: server_replication.php:334 msgid "Skip current error" msgstr "Ignorer l'erreur courante" -#: server_replication.php:336 +#: server_replication.php:335 msgid "Skip next" msgstr "Ignorer les prochaines" -#: server_replication.php:339 +#: server_replication.php:338 msgid "errors." msgstr "erreurs." -#: server_replication.php:354 +#: server_replication.php:353 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -5949,110 +6017,110 @@ msgstr "Type de requête" msgid "Replication status" msgstr "État de la réplication" -#: server_synchronize.php:93 +#: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "Connexion à la source impossible" -#: server_synchronize.php:96 +#: server_synchronize.php:95 msgid "Could not connect to the target" msgstr "Connexion à la cible impossible" -#: server_synchronize.php:121 server_synchronize.php:124 tbl_create.php:77 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "La base de données «%s» n'existe pas." -#: server_synchronize.php:264 +#: server_synchronize.php:263 msgid "Structure Synchronization" msgstr "Synchronisation de structure" -#: server_synchronize.php:271 +#: server_synchronize.php:270 msgid "Data Synchronization" msgstr "Synchronisation des données" -#: server_synchronize.php:399 server_synchronize.php:838 +#: server_synchronize.php:398 server_synchronize.php:837 msgid "not present" msgstr "non présent" -#: server_synchronize.php:423 server_synchronize.php:866 +#: server_synchronize.php:422 server_synchronize.php:865 msgid "Structure Difference" msgstr "Différence dans la structure" -#: server_synchronize.php:424 server_synchronize.php:867 +#: server_synchronize.php:423 server_synchronize.php:866 msgid "Data Difference" msgstr "Différence dans les données" -#: server_synchronize.php:429 server_synchronize.php:872 +#: server_synchronize.php:428 server_synchronize.php:871 msgid "Add column(s)" msgstr "Ajouter des colonnes" -#: server_synchronize.php:430 server_synchronize.php:873 +#: server_synchronize.php:429 server_synchronize.php:872 msgid "Remove column(s)" msgstr "Supprimer des colonnes" -#: server_synchronize.php:431 server_synchronize.php:874 +#: server_synchronize.php:430 server_synchronize.php:873 msgid "Alter column(s)" msgstr "Modifier des colonnes" -#: server_synchronize.php:432 server_synchronize.php:875 +#: server_synchronize.php:431 server_synchronize.php:874 msgid "Remove index(s)" msgstr "Supprimer des index" -#: server_synchronize.php:433 server_synchronize.php:876 +#: server_synchronize.php:432 server_synchronize.php:875 msgid "Apply index(s)" msgstr "Appliquer des index" -#: server_synchronize.php:434 server_synchronize.php:877 +#: server_synchronize.php:433 server_synchronize.php:876 msgid "Update row(s)" msgstr "Modifier des enregistrements" -#: server_synchronize.php:435 server_synchronize.php:878 +#: server_synchronize.php:434 server_synchronize.php:877 msgid "Insert row(s)" msgstr "Insérer des enregistrements" -#: server_synchronize.php:445 server_synchronize.php:889 +#: server_synchronize.php:444 server_synchronize.php:888 msgid "Would you like to delete all the previous rows from target tables?" msgstr "Voulez-vous supprimer tous les enregistrements des tables cible ?" -#: server_synchronize.php:448 server_synchronize.php:893 +#: server_synchronize.php:447 server_synchronize.php:892 msgid "Apply Selected Changes" msgstr "Appliquer les changements sélectionnés" -#: server_synchronize.php:450 server_synchronize.php:895 +#: server_synchronize.php:449 server_synchronize.php:894 msgid "Synchronize Databases" msgstr "Synchroniser les bases de données" -#: server_synchronize.php:463 +#: server_synchronize.php:462 msgid "Selected target tables have been synchronized with source tables." msgstr "Les tables sélectionnées ont été synchronisées." -#: server_synchronize.php:941 +#: server_synchronize.php:940 msgid "Target database has been synchronized with source database" msgstr "La base cible a été synchronizée avec la base source" -#: server_synchronize.php:1002 +#: server_synchronize.php:1001 msgid "The following queries have been executed:" msgstr "Ces requêtes ont été exécutées :" -#: server_synchronize.php:1121 +#: server_synchronize.php:1120 msgid "Enter manually" msgstr "Saisir manuellement" -#: server_synchronize.php:1122 +#: server_synchronize.php:1121 msgid "Current connection" msgstr "Connexion actuelle" -#: server_synchronize.php:1151 +#: server_synchronize.php:1150 #, php-format msgid "Configuration: %s" msgstr "Configuration : %s" -#: server_synchronize.php:1166 +#: server_synchronize.php:1165 msgid "Socket" msgstr "Interface de connexion (socket)" -#: server_synchronize.php:1212 +#: server_synchronize.php:1211 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -6645,10 +6713,15 @@ msgid "Signon login options" msgstr "Option de connexion signon" #: setup/lib/messages.inc.php:128 +#, fuzzy +#| msgid "" +#| "Configure phpMyAdmin database to gain access to additional features, see " +#| "[a@../Documentation.html#linked-tables]linked-tables infrastructure[/a] " +#| "in documentation" msgid "" "Configure phpMyAdmin database to gain access to additional features, see " -"[a@../Documentation.html#linked-tables]linked-tables infrastructure[/a] in " -"documentation" +"[a@../Documentation.html#linked-tables]phpMyAdmin configuration storage[/a] " +"in documentation" msgstr "" "Configurez la base phpMyAdmin pour activer des fonctionnalités " "additionnelles, voir [a@../Documentation.html#linked-tables]linked-tables " @@ -7829,116 +7902,116 @@ msgstr "" msgid "ZIP" msgstr "ZIP" -#: sql.php:495 tbl_replace.php:385 +#: sql.php:494 tbl_replace.php:384 #, php-format msgid "Inserted row id: %1$d" msgstr "Identifiant de l'enregistrement inséré : %1$d" -#: sql.php:512 +#: sql.php:511 msgid "Showing as PHP code" msgstr "Affichage du code PHP" -#: sql.php:515 tbl_replace.php:359 +#: sql.php:514 tbl_replace.php:358 msgid "Showing SQL query" msgstr "Affichage de la requête SQL" -#: sql.php:517 +#: sql.php:516 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Valider SQL" -#: sql.php:638 +#: sql.php:631 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Il y a des problèmes avec les index de la table `%s`" -#: sql.php:670 +#: sql.php:663 msgid "Label" msgstr "Intitulé" -#: tbl_addfield.php:188 tbl_alter.php:102 tbl_indexes.php:97 +#: tbl_addfield.php:185 tbl_alter.php:100 tbl_indexes.php:97 #, php-format msgid "Table %1$s has been altered successfully" msgstr "La table %1$s a été modifiée avec succès." -#: tbl_change.php:250 tbl_select.php:26 tbl_select.php:27 tbl_select.php:30 -#: tbl_select.php:33 +#: tbl_change.php:245 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_select.php:32 msgid "Browse foreign values" msgstr "Afficher les valeurs de la table liée" -#: tbl_change.php:280 tbl_change.php:318 +#: tbl_change.php:275 tbl_change.php:313 msgid "Function" msgstr "Fonction" -#: tbl_change.php:300 tbl_indexes.php:199 tbl_indexes.php:224 +#: tbl_change.php:295 tbl_indexes.php:198 tbl_indexes.php:223 msgid "Ignore" msgstr "Ignorer" -#: tbl_change.php:725 +#: tbl_change.php:720 msgid " Because of its length,
                            this column might not be editable " msgstr "" "Il est possible que cette colonne
                            ne soit pas éditable
                            en raison " "de sa longueur" -#: tbl_change.php:884 +#: tbl_change.php:835 msgid "Remove BLOB Repository Reference" msgstr "Supprimer les références au dépôt BLOB" -#: tbl_change.php:890 +#: tbl_change.php:841 msgid "Binary - do not edit" msgstr "Binaire - ne pas éditer" -#: tbl_change.php:983 +#: tbl_change.php:889 msgid "Upload to BLOB repository" msgstr "Télécharger vers le dépôt BLOB" -#: tbl_change.php:1128 +#: tbl_change.php:1026 msgid "Insert as new row" msgstr "Sauvegarder un nouvel enregistrement" -#: tbl_change.php:1129 +#: tbl_change.php:1027 msgid "Insert as new row and ignore errors" msgstr "Sauvegarder un nouvel enregistrement (ignorer les erreurs)" -#: tbl_change.php:1130 +#: tbl_change.php:1028 msgid "Show insert query" msgstr "Afficher l'énoncé d'insertion" -#: tbl_change.php:1145 +#: tbl_change.php:1043 msgid "Go back to previous page" msgstr "Retourner à la page précédente" -#: tbl_change.php:1146 +#: tbl_change.php:1044 msgid "Insert another new row" msgstr "Insérer un nouvel enregistrement" -#: tbl_change.php:1150 +#: tbl_change.php:1048 msgid "Go back to this page" msgstr "Demeurer sur cette page" -#: tbl_change.php:1158 +#: tbl_change.php:1056 msgid "Edit next row" msgstr "Modifier l'enregistrement suivant" -#: tbl_change.php:1169 +#: tbl_change.php:1067 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Utilisez la tabulation pour aller d'une valeur à l'autre, ou CTRL+flèches " "pour aller n'importe où" -#: tbl_change.php:1207 +#: tbl_change.php:1105 #, php-format msgid "Restart insertion with %s rows" msgstr "Recommencer l'insertion avec %s lignes" -#: tbl_create.php:57 +#: tbl_create.php:55 #, php-format msgid "Table %s already exists!" msgstr "La table %s existe déjà !" -#: tbl_create.php:244 +#: tbl_create.php:241 #, php-format msgid "Table %1$s has been created." msgstr "La table %1$s a été créée." @@ -7959,192 +8032,192 @@ msgstr "La clé ne peut être renommée PRIMARY!" msgid "No index parts defined!" msgstr "Aucune colonne n'a été définie pour cet index!" -#: tbl_indexes.php:159 +#: tbl_indexes.php:158 msgid "Create a new index" msgstr "Créer un nouvel index" -#: tbl_indexes.php:161 +#: tbl_indexes.php:160 msgid "Modify an index" msgstr "Modifier un index" -#: tbl_indexes.php:167 +#: tbl_indexes.php:166 msgid "Index name:" msgstr "Nom de l'index :" -#: tbl_indexes.php:173 +#: tbl_indexes.php:172 msgid "Index type:" msgstr "Type d'index :" -#: tbl_indexes.php:183 +#: tbl_indexes.php:182 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "(«PRIMARY» doit et ne peut être que le nom d'une clé primaire!)" -#: tbl_indexes.php:250 +#: tbl_indexes.php:249 #, php-format msgid "Add to index  %s column(s)" msgstr "Ajouter à l'index %s colonne(s)" -#: tbl_indexes.php:255 tbl_structure.php:588 tbl_structure.php:599 +#: tbl_indexes.php:254 tbl_structure.php:586 tbl_structure.php:597 msgid "Column count has to be larger than zero." msgstr "Le nombre de champs doit être plus grand que zéro." -#: tbl_move_copy.php:45 +#: tbl_move_copy.php:44 msgid "Can't move table to same one!" msgstr "On ne peut déplacer la table sur elle-même!" -#: tbl_move_copy.php:47 +#: tbl_move_copy.php:46 msgid "Can't copy table to same one!" msgstr "On ne peut copier la table sur elle-même!" -#: tbl_move_copy.php:55 +#: tbl_move_copy.php:54 #, php-format msgid "Table %s has been moved to %s." msgstr "La table %s a été déplacée vers %s." -#: tbl_move_copy.php:57 +#: tbl_move_copy.php:56 #, php-format msgid "Table %s has been copied to %s." msgstr "La table %s a été copiée vers %s." -#: tbl_move_copy.php:81 +#: tbl_move_copy.php:80 msgid "The table name is empty!" msgstr "Le nom de la table est vide" -#: tbl_operations.php:248 +#: tbl_operations.php:246 msgid "Alter table order by" msgstr "Ordonner la table par" -#: tbl_operations.php:257 +#: tbl_operations.php:255 msgid "(singly)" msgstr "(à refaire après insertions/destructions)" -#: tbl_operations.php:277 +#: tbl_operations.php:275 msgid "Move table to (database.table):" msgstr "Déplacer la table vers (base.table) : " -#: tbl_operations.php:335 +#: tbl_operations.php:333 msgid "Table options" msgstr "Options pour cette table" -#: tbl_operations.php:339 +#: tbl_operations.php:337 msgid "Rename table to" msgstr "Changer le nom de la table pour" -#: tbl_operations.php:510 +#: tbl_operations.php:508 msgid "Copy table to (database.table):" msgstr "Copier la table vers (base.table) :" -#: tbl_operations.php:557 +#: tbl_operations.php:555 msgid "Switch to copied table" msgstr "Aller à la table copiée" -#: tbl_operations.php:569 +#: tbl_operations.php:567 msgid "Table maintenance" msgstr "Maintenance de la table" -#: tbl_operations.php:590 +#: tbl_operations.php:588 msgid "Defragment table" msgstr "Défragmenter la table" -#: tbl_operations.php:629 +#: tbl_operations.php:627 #, php-format msgid "Table %s has been flushed" msgstr "La table %s a été rechargée" -#: tbl_operations.php:635 +#: tbl_operations.php:633 msgid "Flush the table (FLUSH)" msgstr "Recharger la table (FLUSH)" -#: tbl_operations.php:650 +#: tbl_operations.php:648 msgid "Partition maintenance" msgstr "Gestion des partitions" -#: tbl_operations.php:658 +#: tbl_operations.php:656 #, php-format msgid "Partition %s" msgstr "Partition %s" -#: tbl_operations.php:661 +#: tbl_operations.php:659 msgid "Analyze" msgstr "Analyser" -#: tbl_operations.php:662 +#: tbl_operations.php:660 msgid "Check" msgstr "Vérifier" -#: tbl_operations.php:663 +#: tbl_operations.php:661 msgid "Optimize" msgstr "Optimiser" -#: tbl_operations.php:664 +#: tbl_operations.php:662 msgid "Rebuild" msgstr "Reconstruire" -#: tbl_operations.php:665 +#: tbl_operations.php:663 msgid "Repair" msgstr "Réparer" -#: tbl_operations.php:677 +#: tbl_operations.php:675 msgid "Remove partitioning" msgstr "Supprimer le partitionnement" -#: tbl_operations.php:703 +#: tbl_operations.php:701 msgid "Check referential integrity:" msgstr "Vérifier l'intégrité référentielle" -#: tbl_printview.php:73 +#: tbl_printview.php:72 msgid "Show tables" msgstr "Afficher les tables" -#: tbl_printview.php:308 tbl_structure.php:655 +#: tbl_printview.php:307 tbl_structure.php:653 msgid "Space usage" msgstr "Espace utilisé" -#: tbl_printview.php:312 tbl_structure.php:659 +#: tbl_printview.php:311 tbl_structure.php:657 msgid "Usage" msgstr "Espace" -#: tbl_printview.php:339 tbl_structure.php:686 +#: tbl_printview.php:338 tbl_structure.php:684 msgid "Effective" msgstr "Effectif" -#: tbl_printview.php:364 tbl_structure.php:724 +#: tbl_printview.php:363 tbl_structure.php:722 msgid "Row Statistics" msgstr "Statistiques" -#: tbl_printview.php:367 tbl_structure.php:727 +#: tbl_printview.php:366 tbl_structure.php:725 msgid "Statements" msgstr "Information" -#: tbl_printview.php:378 tbl_structure.php:739 +#: tbl_printview.php:377 tbl_structure.php:737 msgid "static" msgstr "statique" -#: tbl_printview.php:380 tbl_structure.php:741 +#: tbl_printview.php:379 tbl_structure.php:739 msgid "dynamic" msgstr "dynamique" -#: tbl_printview.php:402 tbl_structure.php:784 +#: tbl_printview.php:401 tbl_structure.php:782 msgid "Row length" msgstr "Longueur enr." -#: tbl_printview.php:412 tbl_structure.php:792 +#: tbl_printview.php:411 tbl_structure.php:790 msgid " Row size " msgstr " Taille enr. " -#: tbl_relation.php:278 +#: tbl_relation.php:276 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" "Erreur lors de la création de la clé étrangère sur %1$s (vérifiez le type " "des colonnes)" -#: tbl_relation.php:404 +#: tbl_relation.php:402 msgid "Internal relation" msgstr "Relation interne" -#: tbl_relation.php:406 +#: tbl_relation.php:404 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -8152,7 +8225,7 @@ msgstr "" "Une relation interne n'est pas nécessaire lorsqu'une clé correspondante de " "type FOREIGN KEY existe" -#: tbl_relation.php:412 +#: tbl_relation.php:410 msgid "Foreign key constraint" msgstr "Contrainte de clé étrangère" @@ -8160,113 +8233,113 @@ msgstr "Contrainte de clé étrangère" msgid "No rows selected" msgstr "Aucun enregistrement n'a été sélectionné" -#: tbl_select.php:130 +#: tbl_select.php:129 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Recherche «par valeur» (passepartout: «% ») " -#: tbl_select.php:136 +#: tbl_select.php:135 msgid "Operator" msgstr "Opérateur" -#: tbl_select.php:267 +#: tbl_select.php:266 msgid "Select columns (at least one):" msgstr "Choisir les colonnes (au moins une)" -#: tbl_select.php:285 +#: tbl_select.php:284 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Critères de recherche (pour l'énoncé «where») :" -#: tbl_select.php:292 +#: tbl_select.php:291 msgid "Number of rows per page" msgstr "Nombre d'enregistrements par page" -#: tbl_select.php:298 +#: tbl_select.php:297 msgid "Display order:" msgstr "Ordre d'affichage :" -#: tbl_structure.php:160 +#: tbl_structure.php:159 msgid "Browse distinct values" msgstr "Affiche les valeurs distinctes" -#: tbl_structure.php:360 +#: tbl_structure.php:358 msgctxt "None for default" msgid "None" msgstr "Aucune" -#: tbl_structure.php:373 +#: tbl_structure.php:371 #, php-format msgid "Column %s has been dropped" msgstr "La colonne %s a été effacée" -#: tbl_structure.php:384 +#: tbl_structure.php:382 #, php-format msgid "A primary key has been added on %s" msgstr "Une clé primaire a été ajoutée sur %s" -#: tbl_structure.php:399 tbl_structure.php:413 tbl_structure.php:427 +#: tbl_structure.php:397 tbl_structure.php:411 tbl_structure.php:425 #, php-format msgid "An index has been added on %s" msgstr "Un index a été ajouté sur %s" -#: tbl_structure.php:505 tbl_structure.php:507 +#: tbl_structure.php:503 tbl_structure.php:505 msgid "Relation view" msgstr "Gestion des relations" -#: tbl_structure.php:514 tbl_structure.php:516 +#: tbl_structure.php:512 tbl_structure.php:514 msgid "Propose table structure" msgstr "Suggérer des optimisations quant à la structure de la table" -#: tbl_structure.php:539 +#: tbl_structure.php:537 msgid "Add column" msgstr "Ajouter une colonne" -#: tbl_structure.php:553 +#: tbl_structure.php:551 msgid "At End of Table" msgstr "En fin de table" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At Beginning of Table" msgstr "En début de table" -#: tbl_structure.php:555 +#: tbl_structure.php:553 #, php-format msgid "After %s" msgstr "Après %s" -#: tbl_structure.php:593 +#: tbl_structure.php:591 #, php-format msgid "Create an index on  %s columns" msgstr "Créer un index sur  %s colonnes" -#: tbl_structure.php:755 +#: tbl_structure.php:753 msgid "partitioned" msgstr "partitionné" -#: tbl_tracking.php:113 +#: tbl_tracking.php:109 #, php-format msgid "Tracking report for table `%s`" msgstr "Rapport de suivi pour la table `%s`" -#: tbl_tracking.php:186 +#: tbl_tracking.php:182 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "Version %s créée, le suivi pour %s.%s est activé." -#: tbl_tracking.php:194 +#: tbl_tracking.php:190 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "Le suivi pour %s.%s , version %s est désactivé." -#: tbl_tracking.php:202 +#: tbl_tracking.php:198 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "Le suivi pour %s.%s , version %s est activé." -#: tbl_tracking.php:212 +#: tbl_tracking.php:208 msgid "SQL statements executed." msgstr "Énoncés SQL exécutés." -#: tbl_tracking.php:219 +#: tbl_tracking.php:215 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -8275,109 +8348,109 @@ msgstr "" "temporaire. Veuillez vous assurer que vous avez les privilèges appropriés à " "cette opération." -#: tbl_tracking.php:220 +#: tbl_tracking.php:216 msgid "Comment out these two lines if you do not need them." msgstr "Enlevez les deux lignes suivantes si elles sont inutiles." -#: tbl_tracking.php:229 +#: tbl_tracking.php:225 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "Énoncés SQL exportés. Vous pouvez copier le fichier ou l'exécuter." -#: tbl_tracking.php:250 tbl_tracking.php:378 +#: tbl_tracking.php:245 tbl_tracking.php:373 msgid "Close" msgstr "Fermer" -#: tbl_tracking.php:261 +#: tbl_tracking.php:256 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Instantané de la version %s (code SQL)" -#: tbl_tracking.php:380 +#: tbl_tracking.php:375 msgid "Tracking statements" msgstr "Suivi des énoncés" -#: tbl_tracking.php:396 tbl_tracking.php:503 +#: tbl_tracking.php:391 tbl_tracking.php:498 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "Montrer %s depuis le %s jusqu'au %s par l'utilisateur %s %s" -#: tbl_tracking.php:409 tbl_tracking.php:460 +#: tbl_tracking.php:404 tbl_tracking.php:455 msgid "Date" msgstr "Date" -#: tbl_tracking.php:410 tbl_tracking.php:461 +#: tbl_tracking.php:405 tbl_tracking.php:456 msgid "Username" msgstr "Utilisateur" -#: tbl_tracking.php:411 +#: tbl_tracking.php:406 msgid "Data definition statement" msgstr "Énoncé de définition de données" -#: tbl_tracking.php:462 +#: tbl_tracking.php:457 msgid "Data manipulation statement" msgstr "Énoncé de manipulation de données" -#: tbl_tracking.php:506 +#: tbl_tracking.php:501 msgid "SQL dump (file download)" msgstr "Exportation SQL (télécharger)" -#: tbl_tracking.php:507 +#: tbl_tracking.php:502 msgid "SQL dump" msgstr "Exportation SQL" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "This option will replace your table and contained data." msgstr "Cette option remplacera votre table et son contenu." -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "SQL execution" msgstr "Exécution SQL" -#: tbl_tracking.php:520 +#: tbl_tracking.php:515 #, php-format msgid "Export as %s" msgstr "Exporter en tant que %s" -#: tbl_tracking.php:560 +#: tbl_tracking.php:555 msgid "Show versions" msgstr "Montrer les versions" -#: tbl_tracking.php:592 +#: tbl_tracking.php:587 msgid "Version" msgstr "Version" -#: tbl_tracking.php:639 +#: tbl_tracking.php:634 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "Désactiver le suivi de %s.%s" -#: tbl_tracking.php:641 +#: tbl_tracking.php:636 msgid "Deactivate now" msgstr "Désactiver maintenant" -#: tbl_tracking.php:652 +#: tbl_tracking.php:647 #, php-format msgid "Activate tracking for %s.%s" msgstr "Activer le suivi de %s.%s" -#: tbl_tracking.php:654 +#: tbl_tracking.php:649 msgid "Activate now" msgstr "Activer maintenant" -#: tbl_tracking.php:667 +#: tbl_tracking.php:662 #, php-format msgid "Create version %s of %s.%s" msgstr "Créer la version %s de %s.%s" -#: tbl_tracking.php:671 +#: tbl_tracking.php:666 msgid "Track these data definition statements:" msgstr "Suivre les énoncés de définition de données suivants :" -#: tbl_tracking.php:679 +#: tbl_tracking.php:674 msgid "Track these data manipulation statements:" msgstr "Suivre les énoncés de manipulation de données suivants :" -#: tbl_tracking.php:687 +#: tbl_tracking.php:682 msgid "Create version" msgstr "Créer une version" @@ -8426,10 +8499,34 @@ msgstr "Le profil a été modifié." msgid "VIEW name" msgstr "Nom de la vue" -#: view_operations.php:92 +#: view_operations.php:91 msgid "Rename view to" msgstr "Changer le nom de la vue pour" +#~ msgid "BLOB Repository" +#~ msgstr "Dépôt BLOB" + +#~ msgctxt "BLOB repository" +#~ msgid "Enabled" +#~ msgstr "Activé" + +#~ msgid "Disable" +#~ msgstr "Désactiver" + +#~ msgid "Damaged" +#~ msgstr "Endommagé" + +#~ msgctxt "BLOB repository" +#~ msgid "Repair" +#~ msgstr "Réparer" + +#~ msgctxt "BLOB repository" +#~ msgid "Disabled" +#~ msgstr "Désactivé" + +#~ msgid "Enable" +#~ msgstr "Activer" + #~ msgid "" #~ "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " #~ "extension. Please check your PHP configuration." diff --git a/po/gl.po b/po/gl.po index 11f4bcb38..3d2ff7ea4 100644 --- a/po/gl.po +++ b/po/gl.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-21 13:53+0200\n" +"POT-Creation-Date: 2010-07-26 17:18+0200\n" "PO-Revision-Date: 2010-07-21 14:50+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: galician \n" @@ -14,19 +14,19 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.1\n" -#: browse_foreigners.php:37 browse_foreigners.php:58 -#: libraries/display_tbl.lib.php:416 server_privileges.php:1506 +#: browse_foreigners.php:36 browse_foreigners.php:57 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1510 msgid "Show all" msgstr "Ver todos os rexistros" -#: browse_foreigners.php:81 libraries/common.lib.php:2313 -#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:393 -#: libraries/export/pdf.php:146 pdf_schema.php:282 pdf_schema.php:1122 -#: pdf_schema.php:1138 +#: browse_foreigners.php:80 libraries/common.lib.php:2318 +#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:392 +#: libraries/export/pdf.php:146 pdf_schema.php:281 pdf_schema.php:1121 +#: pdf_schema.php:1137 msgid "Page number:" msgstr "Número de páxina:" -#: browse_foreigners.php:131 +#: browse_foreigners.php:130 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -37,139 +37,153 @@ msgstr "" "actualizacións entre xanelas xa que así o pediu na configuración de " "seguranza do navegador." -#: browse_foreigners.php:149 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2829 -#: libraries/common.lib.php:2836 libraries/db_links.inc.php:74 -#: libraries/tbl_links.inc.php:62 +#: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 +#: db_structure.php:89 db_structure.php:91 db_structure.php:102 +#: db_structure.php:104 libraries/common.lib.php:2834 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Procurar" -#: browse_foreigners.php:152 db_operations.php:384 db_operations.php:428 -#: db_operations.php:498 db_operations.php:608 db_search.php:344 -#: db_structure.php:566 js/messages.php:48 libraries/Config.class.php:1043 -#: libraries/Theme_Manager.class.php:310 +#: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 +#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 +#: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 -#: libraries/common.lib.php:1340 libraries/common.lib.php:2289 +#: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 -#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:275 -#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:531 -#: libraries/display_tbl.lib.php:613 libraries/replication_gui.lib.php:75 +#: libraries/display_export.lib.php:269 libraries/display_import.lib.php:275 +#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 +#: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 #: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:781 -#: main.php:127 navigation.php:231 pdf_pages.php:291 pdf_pages.php:327 -#: pdf_pages.php:529 pmd_pdf.php:115 server_binlog.php:128 -#: server_privileges.php:664 server_privileges.php:1616 -#: server_privileges.php:1963 server_privileges.php:2010 -#: server_privileges.php:2049 server_replication.php:234 -#: server_replication.php:317 server_replication.php:340 -#: server_synchronize.php:1208 tbl_change.php:328 tbl_change.php:1172 -#: tbl_change.php:1209 tbl_indexes.php:253 tbl_operations.php:264 -#: tbl_operations.php:301 tbl_operations.php:498 tbl_operations.php:560 -#: tbl_operations.php:680 tbl_select.php:324 tbl_structure.php:561 -#: tbl_structure.php:596 tbl_tracking.php:394 tbl_tracking.php:511 -#: view_create.php:181 view_operations.php:100 +#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 +#: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 +#: server_privileges.php:663 server_privileges.php:1620 +#: server_privileges.php:1967 server_privileges.php:2014 +#: server_privileges.php:2053 server_replication.php:233 +#: server_replication.php:316 server_replication.php:339 +#: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 +#: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 +#: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 +#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "Executar" -#: browse_foreigners.php:167 browse_foreigners.php:171 -#: libraries/Index.class.php:441 tbl_tracking.php:319 +#: browse_foreigners.php:166 browse_foreigners.php:170 +#: libraries/Index.class.php:441 tbl_tracking.php:314 msgid "Keyname" msgstr "Nome chave" -#: browse_foreigners.php:168 browse_foreigners.php:170 -#: server_collations.php:54 server_collations.php:66 server_engines.php:58 +#: browse_foreigners.php:167 browse_foreigners.php:169 +#: server_collations.php:54 server_collations.php:66 server_engines.php:57 #: server_status.php:738 msgid "Description" msgstr "Descrición" -#: browse_foreigners.php:246 browse_foreigners.php:255 -#: browse_foreigners.php:267 browse_foreigners.php:275 +#: browse_foreigners.php:245 browse_foreigners.php:254 +#: browse_foreigners.php:266 browse_foreigners.php:274 msgid "Use this value" msgstr "Usar este valor" -#: db_create.php:45 +#: bs_disp_as_mime_type.php:29 bs_play_media.php:35 +msgid "No blob streaming server configured!" +msgstr "" + +#: bs_disp_as_mime_type.php:35 +#, fuzzy +#| msgid "Failed to write file to disk." +msgid "Failed to fetch headers" +msgstr "Non se puido escribir no disco." + +#: bs_disp_as_mime_type.php:41 +msgid "Failed to open remote URL" +msgstr "" + +#: db_create.php:44 #, php-format msgid "Database %1$s has been created." msgstr "Creouse a base de datos %1$s." -#: db_datadict.php:48 db_operations.php:377 +#: db_datadict.php:48 db_operations.php:313 msgid "Database comment: " msgstr "Comentario da base de datos: " -#: db_datadict.php:164 libraries/tbl_properties.inc.php:723 -#: pdf_schema.php:1235 tbl_operations.php:346 tbl_printview.php:128 +#: db_datadict.php:164 libraries/tbl_properties.inc.php:722 +#: pdf_schema.php:1234 tbl_operations.php:344 tbl_printview.php:127 msgid "Table comments" msgstr "Comentarios da táboa" -#: db_datadict.php:173 db_qbe.php:173 libraries/Index.class.php:445 +#: db_datadict.php:173 db_qbe.php:170 libraries/Index.class.php:445 #: libraries/export/htmlword.php:243 libraries/export/latex.php:364 #: libraries/export/odt.php:293 libraries/export/texytext.php:233 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:274 -#: pdf_schema.php:1261 pdf_schema.php:1282 tbl_change.php:306 -#: tbl_indexes.php:188 tbl_printview.php:140 tbl_relation.php:401 -#: tbl_select.php:133 tbl_structure.php:176 tbl_tracking.php:272 -#: tbl_tracking.php:323 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 +#: pdf_schema.php:1260 pdf_schema.php:1281 tbl_change.php:301 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:132 tbl_structure.php:175 tbl_tracking.php:267 +#: tbl_tracking.php:318 #, fuzzy #| msgid "Column names" msgid "Column" msgstr "Nomes das columnas" -#: db_datadict.php:174 db_printview.php:105 libraries/Index.class.php:442 +#: db_datadict.php:174 db_printview.php:104 libraries/Index.class.php:442 #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 #: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:244 #: libraries/export/latex.php:364 libraries/export/odt.php:296 #: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:99 -#: pdf_schema.php:1262 pdf_schema.php:1283 server_privileges.php:2062 -#: tbl_change.php:285 tbl_change.php:312 tbl_printview.php:141 -#: tbl_printview.php:311 tbl_select.php:134 tbl_structure.php:177 -#: tbl_structure.php:658 tbl_tracking.php:273 tbl_tracking.php:320 +#: pdf_schema.php:1261 pdf_schema.php:1282 server_privileges.php:2066 +#: tbl_change.php:280 tbl_change.php:307 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:133 tbl_structure.php:176 +#: tbl_structure.php:656 tbl_tracking.php:268 tbl_tracking.php:315 msgid "Type" msgstr "Tipo" #: db_datadict.php:176 libraries/Index.class.php:448 #: libraries/export/htmlword.php:245 libraries/export/latex.php:364 #: libraries/export/odt.php:299 libraries/export/texytext.php:235 -#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1264 -#: pdf_schema.php:1285 tbl_change.php:321 tbl_printview.php:143 -#: tbl_structure.php:180 tbl_tracking.php:275 tbl_tracking.php:326 +#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1263 +#: pdf_schema.php:1284 tbl_change.php:316 tbl_printview.php:142 +#: tbl_structure.php:179 tbl_tracking.php:270 tbl_tracking.php:321 msgid "Null" msgstr "Nulo" -#: db_datadict.php:177 db_structure.php:500 libraries/export/htmlword.php:246 +#: db_datadict.php:177 db_structure.php:486 libraries/export/htmlword.php:246 #: libraries/export/latex.php:364 libraries/export/odt.php:302 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:105 -#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 -#: tbl_structure.php:181 tbl_tracking.php:276 +#: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:143 +#: tbl_structure.php:180 tbl_tracking.php:271 msgid "Default" msgstr "Padrón" #: db_datadict.php:181 libraries/export/htmlword.php:248 #: libraries/export/latex.php:366 libraries/export/odt.php:306 -#: libraries/export/texytext.php:238 pdf_schema.php:1267 pdf_schema.php:1288 -#: tbl_printview.php:148 +#: libraries/export/texytext.php:238 pdf_schema.php:1266 pdf_schema.php:1287 +#: tbl_printview.php:147 msgid "Links to" msgstr "Vincúlase con" -#: db_datadict.php:183 db_printview.php:111 libraries/export/htmlword.php:251 +#: db_datadict.php:183 db_printview.php:110 libraries/export/htmlword.php:251 #: libraries/export/latex.php:49 libraries/export/latex.php:369 #: libraries/export/odt.php:37 libraries/export/odt.php:311 #: libraries/export/sql.php:29 libraries/export/texytext.php:241 -#: libraries/tbl_properties.inc.php:129 pdf_schema.php:1278 -#: pdf_schema.php:1289 tbl_printview.php:150 +#: libraries/tbl_properties.inc.php:128 pdf_schema.php:1277 +#: pdf_schema.php:1288 tbl_printview.php:149 msgid "Comments" msgstr "Comentarios" #: db_datadict.php:266 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/export/htmlword.php:321 #: libraries/export/latex.php:434 libraries/export/odt.php:367 -#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:262 -#: pdf_schema.php:1343 server_privileges.php:1560 server_privileges.php:1571 -#: server_privileges.php:1881 server_privileges.php:1886 -#: server_privileges.php:2179 sql.php:131 sql.php:193 tbl_printview.php:227 -#: tbl_structure.php:349 tbl_tracking.php:336 tbl_tracking.php:341 +#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:261 +#: pdf_schema.php:1342 server_privileges.php:1564 server_privileges.php:1575 +#: server_privileges.php:1885 server_privileges.php:1890 +#: server_privileges.php:2183 sql.php:130 sql.php:192 tbl_printview.php:226 +#: tbl_structure.php:347 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "Non" @@ -180,17 +194,17 @@ msgstr "Non" #: libraries/mult_submits.inc.php:49 libraries/mult_submits.inc.php:54 #: libraries/mult_submits.inc.php:59 libraries/mult_submits.inc.php:91 #: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:105 -#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:261 -#: libraries/mult_submits.inc.php:272 pdf_schema.php:1343 -#: server_databases.php:63 server_privileges.php:1557 -#: server_privileges.php:1571 server_privileges.php:1881 -#: server_privileges.php:1884 server_privileges.php:2179 sql.php:192 -#: tbl_printview.php:227 tbl_structure.php:39 tbl_structure.php:349 -#: tbl_tracking.php:334 tbl_tracking.php:339 +#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:260 +#: libraries/mult_submits.inc.php:271 pdf_schema.php:1342 +#: server_databases.php:61 server_privileges.php:1561 +#: server_privileges.php:1575 server_privileges.php:1885 +#: server_privileges.php:1888 server_privileges.php:2183 sql.php:191 +#: tbl_printview.php:226 tbl_structure.php:38 tbl_structure.php:347 +#: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" msgstr "Si" -#: db_datadict.php:321 db_printview.php:265 tbl_printview.php:496 +#: db_datadict.php:321 db_printview.php:264 tbl_printview.php:495 msgid "Print" msgstr "Imprimir" @@ -198,194 +212,154 @@ msgstr "Imprimir" msgid "View dump (schema) of database" msgstr "Ver o esquema do volcado da base de datos" -#: db_export.php:32 db_printview.php:95 db_qbe.php:101 db_structure.php:50 -#: db_tracking.php:34 export.php:352 navigation.php:326 +#: db_export.php:32 db_printview.php:94 db_qbe.php:98 db_structure.php:49 +#: db_tracking.php:30 export.php:350 navigation.php:325 msgid "No tables found in database." msgstr "Non se achou ningunha táboa na base de datos" -#: db_export.php:42 db_search.php:326 server_export.php:26 +#: db_export.php:42 db_search.php:326 server_export.php:24 msgid "Select All" msgstr "Seleccionar todo" -#: db_export.php:44 db_search.php:329 server_export.php:28 +#: db_export.php:44 db_search.php:329 server_export.php:26 msgid "Unselect All" msgstr "Non seleccionar nada" -#: db_operations.php:37 tbl_create.php:49 +#: db_operations.php:33 tbl_create.php:47 msgid "The database name is empty!" msgstr "Ese nome de base de datos non existe." -#: db_operations.php:235 +#: db_operations.php:231 #, php-format msgid "Database %s has been renamed to %s" msgstr "Mudóuselle o nome á base de datos %s para %s" -#: db_operations.php:239 +#: db_operations.php:235 #, php-format msgid "Database %s has been copied to %s" msgstr "Copiuse a base de datos %s para %s" -#: db_operations.php:411 +#: db_operations.php:347 msgid "Rename database to" msgstr "Mudar o nome da base de datos para" -#: db_operations.php:416 server_processlist.php:56 +#: db_operations.php:352 server_processlist.php:56 msgid "Command" msgstr "Orde" -#: db_operations.php:428 tbl_change.php:1141 +#: db_operations.php:364 tbl_change.php:1039 msgid "and then" msgstr "e despois" -#: db_operations.php:454 +#: db_operations.php:390 msgid "Copy database to" msgstr "Copiar a base de datos para" -#: db_operations.php:461 tbl_operations.php:527 tbl_tracking.php:387 +#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Só a estrutura" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:389 +#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Estrutura e datos" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:388 +#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Só os datos" -#: db_operations.php:471 +#: db_operations.php:407 msgid "CREATE DATABASE before copying" msgstr "CREAR UNHA BASE DE DATOS antes de copiar" -#: db_operations.php:474 libraries/export/sql.php:51 +#: db_operations.php:410 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 -#: libraries/export/sql.php:81 tbl_operations.php:535 +#: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "Engadir %s" -#: db_operations.php:478 libraries/export/sql.php:77 tbl_operations.php:298 -#: tbl_operations.php:537 +#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Engadir o valor incremental (AUTO_INCREMENT)" -#: db_operations.php:482 tbl_operations.php:544 +#: db_operations.php:418 tbl_operations.php:542 msgid "Add constraints" msgstr "Engadir limitacións" -#: db_operations.php:495 +#: db_operations.php:431 msgid "Switch to copied database" msgstr "Pasar á base de datos copiada" -#: db_operations.php:536 -msgid "BLOB Repository" -msgstr "Repositorio de BLOB" - -#: db_operations.php:539 db_tracking.php:75 libraries/common.lib.php:1357 -#: libraries/server_links.inc.php:48 server_processlist.php:58 -#: tbl_tracking.php:595 test/theme.php:100 -msgid "Status" -msgstr "Estado" - -#: db_operations.php:547 -#, fuzzy -#| msgid "Enabled" -msgctxt "BLOB repository" -msgid "Enabled" -msgstr "Activado" - -#: db_operations.php:551 -msgid "Disable" -msgstr "Desactivar" - -#: db_operations.php:561 -msgid "Damaged" -msgstr "Danada" - -#: db_operations.php:565 -#, fuzzy -#| msgid "Repair" -msgctxt "BLOB repository" -msgid "Repair" -msgstr "Arranxar" - -#: db_operations.php:573 -#, fuzzy -#| msgid "Disabled" -msgctxt "BLOB repository" -msgid "Disabled" -msgstr "Desactivado" - -#: db_operations.php:577 -msgid "Enable" -msgstr "Activar" - -#: db_operations.php:601 libraries/Index.class.php:447 +#: db_operations.php:451 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 -#: server_collations.php:53 server_collations.php:65 server_databases.php:110 -#: tbl_operations.php:362 tbl_select.php:135 tbl_structure.php:178 -#: tbl_structure.php:766 tbl_tracking.php:274 tbl_tracking.php:325 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 +#: server_collations.php:53 server_collations.php:65 server_databases.php:108 +#: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:177 +#: tbl_structure.php:764 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "Orde alfabética" -#: db_operations.php:614 main.php:315 pdf_schema.php:33 -#, php-format +#: db_operations.php:464 pdf_schema.php:32 +#, fuzzy, php-format +#| msgid "" +#| "The additional features for working with linked tables have been " +#| "deactivated. To find out why click %shere%s." msgid "" -"The additional features for working with linked tables have been " -"deactivated. To find out why click %shere%s." +"The phpMyAdmin configuration storage has been deactivated. To find out why " +"click %shere%s." msgstr "" "Desactivouse a funcionalidade adicional para o traballo con táboas " "vinculadas. Para saber o por que, prema %saquí%s." -#: db_operations.php:647 +#: db_operations.php:497 msgid "Edit PDF Pages" msgstr "Editar as páxinas PDF" -#: db_printview.php:103 db_tracking.php:71 db_tracking.php:156 +#: db_printview.php:102 db_tracking.php:67 db_tracking.php:152 #: libraries/db_structure.lib.php:37 libraries/export/xml.php:327 -#: libraries/header.inc.php:125 pdf_pages.php:423 server_privileges.php:1657 -#: server_privileges.php:1713 server_privileges.php:1977 -#: server_synchronize.php:422 server_synchronize.php:865 tbl_tracking.php:591 +#: libraries/header.inc.php:125 pdf_pages.php:422 server_privileges.php:1661 +#: server_privileges.php:1717 server_privileges.php:1981 +#: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "Táboa" -#: db_printview.php:104 libraries/db_structure.lib.php:47 +#: db_printview.php:103 libraries/db_structure.lib.php:47 #: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 -#: navigation.php:629 navigation.php:651 server_databases.php:121 -#: tbl_printview.php:392 tbl_structure.php:364 tbl_structure.php:776 +#: navigation.php:628 navigation.php:650 server_databases.php:119 +#: tbl_printview.php:391 tbl_structure.php:362 tbl_structure.php:774 msgid "Rows" msgstr "Fileiras" -#: db_printview.php:108 libraries/db_structure.lib.php:58 tbl_indexes.php:189 +#: db_printview.php:107 libraries/db_structure.lib.php:58 tbl_indexes.php:188 msgid "Size" msgstr "Tamaño" -#: db_printview.php:161 db_structure.php:456 libraries/export/sql.php:556 +#: db_printview.php:160 db_structure.php:442 libraries/export/sql.php:556 #: libraries/export/sql.php:896 msgid "in use" msgstr "en uso" -#: db_printview.php:186 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:511 pdf_schema.php:1240 tbl_printview.php:432 -#: tbl_structure.php:808 +#: db_printview.php:185 libraries/db_info.inc.php:86 +#: libraries/export/sql.php:511 pdf_schema.php:1239 tbl_printview.php:431 +#: tbl_structure.php:806 msgid "Creation" msgstr "Creación" -#: db_printview.php:195 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:516 pdf_schema.php:1245 tbl_printview.php:442 -#: tbl_structure.php:816 +#: db_printview.php:194 libraries/db_info.inc.php:91 +#: libraries/export/sql.php:516 pdf_schema.php:1244 tbl_printview.php:441 +#: tbl_structure.php:814 msgid "Last update" msgstr "Actualización máis recente" -#: db_printview.php:204 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:521 pdf_schema.php:1250 tbl_printview.php:452 -#: tbl_structure.php:824 +#: db_printview.php:203 libraries/db_info.inc.php:96 +#: libraries/export/sql.php:521 pdf_schema.php:1249 tbl_printview.php:451 +#: tbl_structure.php:822 msgid "Last check" msgstr "Comprobación máis recente" -#: db_printview.php:221 db_structure.php:479 +#: db_printview.php:220 db_structure.php:465 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -393,94 +367,94 @@ msgid_plural "%s tables" msgstr[0] "%s táboa(s)" msgstr[1] "%s táboa(s)" -#: db_qbe.php:28 import.php:453 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1980 libraries/sql_query_form.lib.php:138 -#: tbl_operations.php:212 tbl_relation.php:291 tbl_row_action.php:130 -#: view_operations.php:61 +#: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 +#: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "A seu orde de SQL executouse sen problemas" -#: db_qbe.php:41 +#: db_qbe.php:38 msgid "You have to choose at least one column to display" msgstr "Ten que escoller polo menos unha columna para mostrar" -#: db_qbe.php:199 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:865 +#: db_qbe.php:196 libraries/db_structure.lib.php:95 +#: libraries/display_tbl.lib.php:864 msgid "Sort" msgstr "Ordenar" -#: db_qbe.php:208 db_qbe.php:242 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:522 libraries/display_tbl.lib.php:827 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:259 -#: tbl_select.php:311 +#: db_qbe.php:205 db_qbe.php:239 libraries/db_structure.lib.php:102 +#: libraries/display_tbl.lib.php:521 libraries/display_tbl.lib.php:826 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:257 +#: tbl_select.php:310 msgid "Ascending" msgstr "Ascendente" -#: db_qbe.php:209 db_qbe.php:250 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:527 libraries/display_tbl.lib.php:824 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:260 -#: tbl_select.php:312 +#: db_qbe.php:206 db_qbe.php:247 libraries/db_structure.lib.php:110 +#: libraries/display_tbl.lib.php:526 libraries/display_tbl.lib.php:823 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:258 +#: tbl_select.php:311 msgid "Descending" msgstr "Descendente" -#: db_qbe.php:263 db_tracking.php:77 libraries/display_tbl.lib.php:307 -#: tbl_change.php:275 tbl_tracking.php:596 +#: db_qbe.php:260 db_tracking.php:73 libraries/display_tbl.lib.php:306 +#: tbl_change.php:270 tbl_tracking.php:591 msgid "Show" msgstr "Mostrar" -#: db_qbe.php:299 +#: db_qbe.php:296 msgid "Criteria" msgstr "Criterio" -#: db_qbe.php:352 db_qbe.php:434 db_qbe.php:526 db_qbe.php:557 +#: db_qbe.php:349 db_qbe.php:431 db_qbe.php:523 db_qbe.php:554 msgid "Ins" msgstr "Inserir" -#: db_qbe.php:356 db_qbe.php:438 db_qbe.php:523 db_qbe.php:554 +#: db_qbe.php:353 db_qbe.php:435 db_qbe.php:520 db_qbe.php:551 msgid "And" msgstr "E" -#: db_qbe.php:365 db_qbe.php:446 db_qbe.php:528 db_qbe.php:559 +#: db_qbe.php:362 db_qbe.php:443 db_qbe.php:525 db_qbe.php:556 msgid "Del" msgstr "Eliminar" -#: db_qbe.php:369 db_qbe.php:450 db_qbe.php:521 db_qbe.php:552 -#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:778 -#: server_privileges.php:297 tbl_change.php:1027 tbl_indexes.php:249 -#: tbl_select.php:285 +#: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 +#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:777 +#: server_privileges.php:296 tbl_change.php:925 tbl_indexes.php:248 +#: tbl_select.php:284 msgid "Or" msgstr "ou" -#: db_qbe.php:506 +#: db_qbe.php:503 msgid "Modify" msgstr "Modificar" -#: db_qbe.php:583 +#: db_qbe.php:580 #, fuzzy #| msgid "Add/Delete Criteria Row" msgid "Add/Delete criteria rows" msgstr "Engadir/Eliminar filas de criterios" -#: db_qbe.php:595 +#: db_qbe.php:592 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Add/Delete columns" msgstr "Engadir/Eliminar columnas de campo" -#: db_qbe.php:608 db_qbe.php:633 +#: db_qbe.php:605 db_qbe.php:630 msgid "Update Query" msgstr "Actualizar a procura" -#: db_qbe.php:616 +#: db_qbe.php:613 msgid "Use Tables" msgstr "Usar as táboas" -#: db_qbe.php:639 +#: db_qbe.php:636 #, php-format msgid "SQL query on database %s:" msgstr "Procura tipo SQL na base de datos %s:" -#: db_qbe.php:933 libraries/common.lib.php:1222 +#: db_qbe.php:930 libraries/common.lib.php:1215 msgid "Submit Query" msgstr "Enviar esta procura" @@ -520,17 +494,17 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s ocorrencias(s) dentro da táboa %s" msgstr[1] "%s ocorrencias(s) dentro da táboa %s" -#: db_search.php:249 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2831 -#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:49 -#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:466 +#: db_search.php:249 db_structure.php:75 db_structure.php:76 +#: db_structure.php:88 db_structure.php:90 db_structure.php:101 +#: db_structure.php:103 libraries/common.lib.php:2836 +#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 +#: tbl_structure.php:35 tbl_structure.php:47 tbl_structure.php:464 msgid "Browse" msgstr "Visualizar" -#: db_search.php:254 libraries/display_tbl.lib.php:1164 -#: libraries/display_tbl.lib.php:2055 libraries/sql_query_form.lib.php:453 -#: pdf_pages.php:285 pdf_pages.php:424 pdf_pages.php:460 pdf_pages.php:488 +#: db_search.php:254 libraries/display_tbl.lib.php:1163 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 msgid "Delete" @@ -570,66 +544,66 @@ msgstr "Dentro da(s) táboa(s):" msgid "Inside column:" msgstr "No campo:" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2830 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:75 +#: db_structure.php:79 db_structure.php:80 db_structure.php:92 +#: db_structure.php:93 db_structure.php:105 db_structure.php:106 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 +#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Inserir" -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2827 libraries/common.lib.php:2834 -#: libraries/db_links.inc.php:62 libraries/export/htmlword.php:22 +#: db_structure.php:81 db_structure.php:94 db_structure.php:107 +#: libraries/common.lib.php:2832 libraries/common.lib.php:2839 +#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 -#: libraries/tbl_links.inc.php:55 pmd_general.php:133 -#: server_privileges.php:593 server_replication.php:314 tbl_tracking.php:268 +#: libraries/tbl_links.inc.php:54 pmd_general.php:133 +#: server_privileges.php:592 server_replication.php:313 tbl_tracking.php:263 msgid "Structure" msgstr "Estrutura" -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:544 db_structure.php:545 db_tracking.php:90 -#: libraries/Index.class.php:482 libraries/common.lib.php:1659 -#: libraries/db_links.inc.php:99 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:126 -#: server_databases.php:351 tbl_structure.php:26 tbl_structure.php:150 -#: tbl_structure.php:151 tbl_structure.php:470 +#: db_structure.php:82 db_structure.php:83 db_structure.php:95 +#: db_structure.php:96 db_structure.php:108 db_structure.php:109 +#: db_structure.php:530 db_structure.php:531 db_tracking.php:86 +#: libraries/Index.class.php:482 libraries/common.lib.php:1663 +#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 +#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 +#: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" msgstr "Eliminar" -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:542 db_structure.php:543 libraries/common.lib.php:1658 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:104 +#: db_structure.php:84 db_structure.php:85 db_structure.php:97 +#: db_structure.php:98 db_structure.php:110 db_structure.php:111 +#: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 +#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 msgid "Empty" msgstr "Borrar" -#: db_structure.php:315 libraries/tbl_links.inc.php:99 +#: db_structure.php:301 libraries/tbl_links.inc.php:98 #, php-format msgid "Table %s has been emptied" msgstr "Vaciouse a táboa %s" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "View %s has been dropped" msgstr "Deixouse a vista %s" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "Table %s has been dropped" msgstr "Eliminouse a táboa %s" -#: db_structure.php:332 +#: db_structure.php:318 msgid "Tracking is active." msgstr "O seguemento está activado." -#: db_structure.php:334 +#: db_structure.php:320 msgid "Tracking is not active." msgstr "O seguemento non está activado." -#: db_structure.php:419 libraries/display_tbl.lib.php:1943 +#: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -638,160 +612,166 @@ msgstr "" "Esta vista ten, cando menos, este número de fileiras. Vexa a %sdocumentation" "%s." -#: db_structure.php:433 db_structure.php:447 libraries/header.inc.php:125 -#: libraries/tbl_info.inc.php:65 tbl_structure.php:184 test/theme.php:73 +#: db_structure.php:419 db_structure.php:433 libraries/header.inc.php:125 +#: libraries/tbl_info.inc.php:60 tbl_structure.php:183 test/theme.php:73 msgid "View" msgstr "Vista" -#: db_structure.php:484 libraries/db_structure.lib.php:40 -#: libraries/server_links.inc.php:69 server_replication.php:32 -#: server_replication.php:163 server_status.php:368 +#: db_structure.php:470 libraries/db_structure.lib.php:40 +#: libraries/server_links.inc.php:69 server_replication.php:31 +#: server_replication.php:162 server_status.php:368 msgid "Replication" msgstr "Replicación" -#: db_structure.php:488 +#: db_structure.php:474 msgid "Sum" msgstr "Suma" -#: db_structure.php:495 libraries/StorageEngine.class.php:349 +#: db_structure.php:481 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s é o motor de almacenamento predefinido neste servidor de MySQL." -#: db_structure.php:523 db_structure.php:540 db_structure.php:541 -#: libraries/display_tbl.lib.php:2080 libraries/display_tbl.lib.php:2085 -#: libraries/mult_submits.inc.php:15 server_databases.php:345 -#: server_databases.php:350 server_privileges.php:1588 tbl_structure.php:454 -#: tbl_structure.php:463 +#: db_structure.php:509 db_structure.php:526 db_structure.php:527 +#: libraries/display_tbl.lib.php:2039 libraries/display_tbl.lib.php:2044 +#: libraries/mult_submits.inc.php:15 server_databases.php:343 +#: server_databases.php:348 server_privileges.php:1592 tbl_structure.php:452 +#: tbl_structure.php:461 msgid "With selected:" msgstr "Todos os marcados" -#: db_structure.php:526 libraries/display_tbl.lib.php:2075 -#: server_databases.php:347 server_privileges.php:569 -#: server_privileges.php:1591 tbl_structure.php:457 +#: db_structure.php:512 libraries/display_tbl.lib.php:2034 +#: server_databases.php:345 server_privileges.php:568 +#: server_privileges.php:1595 tbl_structure.php:455 msgid "Check All" msgstr "Marcalos todos" -#: db_structure.php:530 libraries/display_tbl.lib.php:2076 -#: libraries/replication_gui.lib.php:35 server_databases.php:349 -#: server_privileges.php:572 server_privileges.php:1595 tbl_structure.php:461 +#: db_structure.php:516 libraries/display_tbl.lib.php:2035 +#: libraries/replication_gui.lib.php:35 server_databases.php:347 +#: server_privileges.php:571 server_privileges.php:1599 tbl_structure.php:459 msgid "Uncheck All" msgstr "Quitarlles as marcas a todos" -#: db_structure.php:535 +#: db_structure.php:521 msgid "Check tables having overhead" msgstr "Exceso na comprobación" -#: db_structure.php:546 db_structure.php:547 db_structure.php:598 -#: libraries/display_tbl.lib.php:2179 libraries/mult_submits.inc.php:27 -#: tbl_structure.php:491 tbl_structure.php:493 +#: db_structure.php:532 db_structure.php:533 db_structure.php:584 +#: libraries/display_tbl.lib.php:2138 libraries/mult_submits.inc.php:27 +#: tbl_structure.php:489 tbl_structure.php:491 msgid "Print view" msgstr "Visualización previa da impresión" -#: db_structure.php:548 db_structure.php:549 libraries/mult_submits.inc.php:41 -#: tbl_operations.php:580 +#: db_structure.php:534 db_structure.php:535 libraries/mult_submits.inc.php:41 +#: tbl_operations.php:578 msgid "Check table" msgstr "Verificar a táboa" -#: db_structure.php:550 db_structure.php:551 libraries/mult_submits.inc.php:46 -#: tbl_operations.php:620 tbl_structure.php:708 tbl_structure.php:710 +#: db_structure.php:536 db_structure.php:537 libraries/mult_submits.inc.php:46 +#: tbl_operations.php:618 tbl_structure.php:706 tbl_structure.php:708 msgid "Optimize table" msgstr "Optimizar a táboa" -#: db_structure.php:552 db_structure.php:553 libraries/mult_submits.inc.php:51 -#: tbl_operations.php:610 +#: db_structure.php:538 db_structure.php:539 libraries/mult_submits.inc.php:51 +#: tbl_operations.php:608 msgid "Repair table" msgstr "Reparar a táboa" -#: db_structure.php:554 db_structure.php:555 libraries/mult_submits.inc.php:56 -#: tbl_operations.php:600 +#: db_structure.php:540 db_structure.php:541 libraries/mult_submits.inc.php:56 +#: tbl_operations.php:598 msgid "Analyze table" msgstr "Analizar a táboa" -#: db_structure.php:556 db_structure.php:557 libraries/db_links.inc.php:70 -#: libraries/display_export.lib.php:82 libraries/display_tbl.lib.php:2093 -#: libraries/display_tbl.lib.php:2224 libraries/mult_submits.inc.php:61 -#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:81 -#: pmd_pdf.php:83 pmd_pdf.php:108 server_privileges.php:1372 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 +#: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 +#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 +#: pmd_pdf.php:81 pmd_pdf.php:106 server_privileges.php:1376 #: setup/frames/menu.inc.php:22 tbl_row_action.php:58 msgid "Export" msgstr "Exportar" -#: db_structure.php:605 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:591 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "Dicionario de datos" -#: db_tracking.php:65 +#: db_tracking.php:61 msgid "Tracked tables" msgstr "Táboas seguidas" -#: db_tracking.php:70 libraries/export/htmlword.php:85 +#: db_tracking.php:66 libraries/export/htmlword.php:85 #: libraries/export/latex.php:152 libraries/export/odt.php:112 #: libraries/export/sql.php:339 libraries/export/texytext.php:84 #: libraries/export/xml.php:254 libraries/header.inc.php:105 -#: libraries/header_printview.inc.php:57 server_databases.php:168 -#: server_privileges.php:1652 server_privileges.php:1713 -#: server_privileges.php:1971 server_processlist.php:55 -#: server_synchronize.php:1178 server_synchronize.php:1182 -#: tbl_tracking.php:590 test/theme.php:64 +#: libraries/header_printview.inc.php:57 server_databases.php:166 +#: server_privileges.php:1656 server_privileges.php:1717 +#: server_privileges.php:1975 server_processlist.php:55 +#: server_synchronize.php:1177 server_synchronize.php:1181 +#: tbl_tracking.php:585 test/theme.php:64 msgid "Database" msgstr "Base de datos" -#: db_tracking.php:72 +#: db_tracking.php:68 msgid "Last version" msgstr "Última versión" -#: db_tracking.php:73 tbl_tracking.php:593 +#: db_tracking.php:69 tbl_tracking.php:588 msgid "Created" msgstr "Creada" -#: db_tracking.php:74 tbl_tracking.php:594 +#: db_tracking.php:70 tbl_tracking.php:589 msgid "Updated" msgstr "Actualizada" -#: db_tracking.php:76 libraries/Index.class.php:439 -#: libraries/db_structure.lib.php:44 server_databases.php:202 -#: server_privileges.php:1534 server_privileges.php:1717 -#: server_privileges.php:2065 tbl_structure.php:186 +#: db_tracking.php:71 libraries/common.lib.php:1361 +#: libraries/server_links.inc.php:48 server_processlist.php:58 +#: tbl_tracking.php:590 test/theme.php:100 +msgid "Status" +msgstr "Estado" + +#: db_tracking.php:72 libraries/Index.class.php:439 +#: libraries/db_structure.lib.php:44 server_databases.php:200 +#: server_privileges.php:1538 server_privileges.php:1721 +#: server_privileges.php:2069 tbl_structure.php:185 msgid "Action" msgstr "Acción" -#: db_tracking.php:87 db_tracking.php:119 +#: db_tracking.php:83 db_tracking.php:115 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:105 tbl_tracking.php:547 tbl_tracking.php:605 -#: tbl_tracking.php:612 +#: db_tracking.php:101 tbl_tracking.php:542 tbl_tracking.php:600 +#: tbl_tracking.php:607 msgid "active" msgstr "activado" -#: db_tracking.php:107 tbl_tracking.php:549 tbl_tracking.php:607 -#: tbl_tracking.php:609 +#: db_tracking.php:103 tbl_tracking.php:544 tbl_tracking.php:602 +#: tbl_tracking.php:604 msgid "not active" msgstr "desactivado" -#: db_tracking.php:120 +#: db_tracking.php:116 msgid "Versions" msgstr "Versións" -#: db_tracking.php:121 tbl_tracking.php:378 tbl_tracking.php:623 +#: db_tracking.php:117 tbl_tracking.php:373 tbl_tracking.php:618 msgid "Tracking report" msgstr "Informe de seguemento" -#: db_tracking.php:122 tbl_tracking.php:250 tbl_tracking.php:623 +#: db_tracking.php:118 tbl_tracking.php:245 tbl_tracking.php:618 msgid "Structure snapshot" msgstr "Instantánea da estrutura" -#: db_tracking.php:151 +#: db_tracking.php:147 msgid "Untracked tables" msgstr "Táboas non seguidas" -#: db_tracking.php:171 db_tracking.php:173 tbl_structure.php:527 -#: tbl_structure.php:529 +#: db_tracking.php:167 db_tracking.php:169 tbl_structure.php:525 +#: tbl_structure.php:527 msgid "Track table" msgstr "Seguir a táboa" -#: db_tracking.php:199 +#: db_tracking.php:195 msgid "Database Log" msgstr "Rexistro de actividade da base de datos" @@ -799,12 +779,12 @@ msgstr "Rexistro de actividade da base de datos" msgid "Selected export type has to be saved in file!" msgstr "Gardouse nun ficheiro o tipo de exportación seleccionada!" -#: export.php:153 export.php:178 export.php:620 +#: export.php:152 export.php:177 export.php:615 #, php-format msgid "Insufficient space to save the file %s." msgstr "Non hai espazo para gardar o ficheiro %s." -#: export.php:287 +#: export.php:286 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -812,17 +792,17 @@ msgstr "" "O ficheiro %s xa existe no servidor - escolla outro nome ou seleccione a " "opción de eliminar." -#: export.php:291 export.php:295 +#: export.php:290 export.php:294 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "O servidor web non ten permiso para gardar o ficheiro %s." -#: export.php:622 +#: export.php:617 #, php-format msgid "Dump has been saved to file %s." msgstr "Gardouse o volcado no ficheiro %s." -#: import.php:59 +#: import.php:58 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -831,14 +811,14 @@ msgstr "" "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:840 -#: libraries/File.class.php:950 +#: import.php:277 import.php:330 libraries/File.class.php:566 +#: libraries/File.class.php:676 msgid "File could not be read" msgstr "Non se puido ler o ficheiro" -#: import.php:286 import.php:295 import.php:314 import.php:323 -#: libraries/File.class.php:1020 libraries/File.class.php:1028 -#: libraries/File.class.php:1044 libraries/File.class.php:1052 +#: import.php:285 import.php:294 import.php:313 import.php:322 +#: libraries/File.class.php:746 libraries/File.class.php:754 +#: libraries/File.class.php:770 libraries/File.class.php:778 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -847,7 +827,7 @@ msgstr "" "Tentou cargar un ficheiro cunha compresión descoñecida (%s). Ora non se sabe " "como descomprimir, ora está desactivada na configuración." -#: import.php:336 +#: import.php:335 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -857,29 +837,29 @@ msgstr "" "o seu tamaño excede o máximo permitido pola súa configuración de PHP. " "Consulte FAQ 1.16." -#: import.php:371 libraries/display_import.lib.php:23 +#: import.php:370 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "Non se puideron importar as extensións - Comprobe a instalación." -#: import.php:396 +#: import.php:395 msgid "The bookmark has been deleted." msgstr "Eliminouse o marcador." -#: import.php:400 +#: import.php:399 msgid "Showing bookmark" msgstr "A mostrar o marcador" -#: import.php:402 sql.php:625 +#: import.php:401 sql.php:618 #, php-format msgid "Bookmark %s created" msgstr "Creouse o marcador %s" -#: import.php:408 import.php:414 +#: import.php:407 import.php:413 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "A importación rematou sen problemas. Executáronse %d procuras." -#: import.php:423 +#: import.php:422 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -887,7 +867,7 @@ msgstr "" "Ultrapasouse o tempo de espera do guión. Se quere rematar a importación, " "volva a enviar o mesmo ficheiro e a importación continuará." -#: import.php:425 +#: import.php:424 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -896,19 +876,19 @@ msgstr "" "normalmente significa que o phpMyAdmin non poderá rematar esta importación a " "non ser que lle incrementen os limites de tempo de php." -#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:240 +#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:239 #: user_password.php:110 msgid "Back" msgstr "Voltar" -#: index.php:188 +#: index.php:183 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin utilízase mellor cun navegador que acepte molduras." -#: js/messages.php:25 server_synchronize.php:344 server_synchronize.php:356 -#: server_synchronize.php:372 server_synchronize.php:379 -#: server_synchronize.php:738 server_synchronize.php:766 -#: server_synchronize.php:794 server_synchronize.php:806 +#: js/messages.php:25 server_synchronize.php:343 server_synchronize.php:355 +#: server_synchronize.php:371 server_synchronize.php:378 +#: server_synchronize.php:737 server_synchronize.php:765 +#: server_synchronize.php:793 server_synchronize.php:805 msgid "Click to select" msgstr "" @@ -916,15 +896,15 @@ msgstr "" msgid "Click to unselect" msgstr "" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:88 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:87 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Non se permiten as ordes \"Eliminar a base de datos\"." -#: js/messages.php:30 libraries/mult_submits.inc.php:257 sql.php:187 +#: js/messages.php:30 libraries/mult_submits.inc.php:256 sql.php:186 msgid "Do you really want to " msgstr "Seguro? " -#: js/messages.php:31 libraries/mult_submits.inc.php:257 sql.php:171 +#: js/messages.php:31 libraries/mult_submits.inc.php:256 sql.php:170 msgid "You are about to DESTROY a complete database!" msgstr "Está a piques de DESTRUÍR unha base de datos enteira!" @@ -955,11 +935,11 @@ msgstr "O nome do servidor está vacío!" msgid "The user name is empty!" msgstr "O nome do usuario está vacío!" -#: js/messages.php:44 server_privileges.php:1228 user_password.php:65 +#: js/messages.php:44 server_privileges.php:1229 user_password.php:65 msgid "The password is empty!" msgstr "O contrasinal está vacío!" -#: js/messages.php:45 server_privileges.php:1226 user_password.php:68 +#: js/messages.php:45 server_privileges.php:1227 user_password.php:68 msgid "The passwords aren't the same!" msgstr "Os contrasinais non son os mesmos." @@ -967,27 +947,27 @@ msgstr "Os contrasinais non son os mesmos." msgid "Cancel" msgstr "Cancelar" -#: js/messages.php:52 pmd_save_pos.php:53 +#: js/messages.php:52 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "Gardáronse as modificacións" -#: js/messages.php:53 pmd_relation_upd.php:48 +#: js/messages.php:53 pmd_relation_upd.php:47 msgid "Relation deleted" msgstr "Eliminouse a relación" -#: js/messages.php:54 pmd_relation_new.php:63 +#: js/messages.php:54 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "Engadiuse unha relación cunha CHAVE EXTERNA" -#: js/messages.php:55 pmd_relation_new.php:85 +#: js/messages.php:55 pmd_relation_new.php:84 msgid "Internal relation added" msgstr "Engadiuse a relación interna" -#: js/messages.php:56 pmd_relation_new.php:62 pmd_relation_new.php:87 +#: js/messages.php:56 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "Erro: non se engadiu a relación." -#: js/messages.php:57 pmd_relation_new.php:30 +#: js/messages.php:57 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "Erro: xa existe unha relación." @@ -995,13 +975,13 @@ msgstr "Erro: xa existe unha relación." msgid "Error saving coordinates for Designer." msgstr "Houbo un erro ao gardar as coordenadas para Deseñador." -#: js/messages.php:59 libraries/relation.lib.php:94 -#: libraries/relation.lib.php:106 +#: js/messages.php:59 libraries/relation.lib.php:89 +#: libraries/relation.lib.php:101 msgid "General relation features" msgstr "Características xerais das relacións" -#: js/messages.php:59 libraries/relation.lib.php:88 -#: libraries/relation.lib.php:95 +#: js/messages.php:59 libraries/relation.lib.php:83 +#: libraries/relation.lib.php:90 msgid "Disabled" msgstr "Desactivado" @@ -1017,7 +997,7 @@ msgstr "Escoller unha chave externa" msgid "Please select the primary key or a unique key" msgstr "Escolla a chave primaria ou unha chave única" -#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:547 +#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" @@ -1048,10 +1028,10 @@ msgid "Prev" msgstr "Anterior" #. l10n: Display text for next month link in calendar -#: js/messages.php:81 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:337 -#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:422 -#: tbl_structure.php:800 +#: js/messages.php:81 libraries/common.lib.php:2358 +#: libraries/common.lib.php:2361 libraries/display_tbl.lib.php:336 +#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 +#: tbl_structure.php:798 msgid "Next" msgstr "Seguinte" @@ -1125,27 +1105,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1562 +#: js/messages.php:101 libraries/common.lib.php:1566 msgid "Jan" msgstr "Xan" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1564 +#: js/messages.php:103 libraries/common.lib.php:1568 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1566 +#: js/messages.php:105 libraries/common.lib.php:1570 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1568 +#: js/messages.php:107 libraries/common.lib.php:1572 msgid "Apr" msgstr "Abr" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1570 +#: js/messages.php:109 libraries/common.lib.php:1574 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1153,37 +1133,37 @@ msgid "May" msgstr "Maio" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1572 +#: js/messages.php:111 libraries/common.lib.php:1576 msgid "Jun" msgstr "Xuño" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1574 +#: js/messages.php:113 libraries/common.lib.php:1578 msgid "Jul" msgstr "Xullo" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1576 +#: js/messages.php:115 libraries/common.lib.php:1580 msgid "Aug" msgstr "Ago" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1578 +#: js/messages.php:117 libraries/common.lib.php:1582 msgid "Sep" msgstr "Set" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1580 +#: js/messages.php:119 libraries/common.lib.php:1584 msgid "Oct" msgstr "Out" #. l10n: Short month name -#: js/messages.php:121 libraries/common.lib.php:1582 +#: js/messages.php:121 libraries/common.lib.php:1586 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:123 libraries/common.lib.php:1584 +#: js/messages.php:123 libraries/common.lib.php:1588 msgid "Dec" msgstr "Dec" @@ -1224,37 +1204,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1587 +#: js/messages.php:136 libraries/common.lib.php:1591 msgid "Sun" msgstr "Do" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1589 +#: js/messages.php:138 libraries/common.lib.php:1593 msgid "Mon" msgstr "Lu" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1591 +#: js/messages.php:140 libraries/common.lib.php:1595 msgid "Tue" msgstr "Ma" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1593 +#: js/messages.php:142 libraries/common.lib.php:1597 msgid "Wed" msgstr "Mé" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1595 +#: js/messages.php:144 libraries/common.lib.php:1599 msgid "Thu" msgstr "Xo" #. l10n: Short week day name -#: js/messages.php:146 libraries/common.lib.php:1597 +#: js/messages.php:146 libraries/common.lib.php:1601 msgid "Fri" msgstr "Ve" #. l10n: Short week day name -#: js/messages.php:148 libraries/common.lib.php:1599 +#: js/messages.php:148 libraries/common.lib.php:1603 msgid "Sat" msgstr "Sá" @@ -1334,18 +1314,13 @@ msgstr "por segundo" msgid "Font size" msgstr "Tamaño da letra" -#: libraries/File.class.php:336 libraries/File.class.php:424 -#: libraries/File.class.php:561 libraries/File.class.php:700 -msgid "Unknown error in file upload." -msgstr "Erro descoñecido ao enviar o ficheiro." - -#: libraries/File.class.php:406 +#: libraries/File.class.php:315 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:409 +#: libraries/File.class.php:318 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -1353,59 +1328,63 @@ msgstr "" "O tamaño do ficheiro excede a directiva MAX_FILE_SIZE que se especificou no " "formulario HTML." -#: libraries/File.class.php:412 +#: libraries/File.class.php:321 msgid "The uploaded file was only partially uploaded." msgstr "O ficheiro enviado só se recibiu parcialmente." -#: libraries/File.class.php:415 +#: libraries/File.class.php:324 msgid "Missing a temporary folder." msgstr "Falta un directorio temporal." -#: libraries/File.class.php:418 +#: libraries/File.class.php:327 msgid "Failed to write file to disk." msgstr "Non se puido escribir no disco." -#: libraries/File.class.php:421 +#: libraries/File.class.php:330 msgid "File upload stopped by extension." msgstr "Detívose o envío do ficheiro por causa do engadido." -#: libraries/File.class.php:898 +#: libraries/File.class.php:333 +msgid "Unknown error in file upload." +msgstr "Erro descoñecido ao enviar o ficheiro." + +#: libraries/File.class.php:624 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:427 tbl_relation.php:528 +#: libraries/Index.class.php:427 tbl_relation.php:526 msgid "No index defined!" msgstr "Non se definiu ningún índice" -#: libraries/Index.class.php:432 server_databases.php:131 tbl_tracking.php:315 +#: libraries/Index.class.php:432 server_databases.php:129 tbl_tracking.php:310 msgid "Indexes" msgstr "Índices" #: libraries/Index.class.php:443 libraries/mult_submits.inc.php:102 -#: libraries/tbl_properties.inc.php:518 tbl_structure.php:32 -#: tbl_structure.php:154 tbl_structure.php:158 tbl_structure.php:473 -#: tbl_tracking.php:321 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:31 +#: tbl_structure.php:153 tbl_structure.php:157 tbl_structure.php:471 +#: tbl_tracking.php:316 msgid "Unique" msgstr "Único" -#: libraries/Index.class.php:444 tbl_tracking.php:322 +#: libraries/Index.class.php:444 tbl_tracking.php:317 msgid "Packed" msgstr "Empaquetado" -#: libraries/Index.class.php:446 tbl_tracking.php:324 +#: libraries/Index.class.php:446 tbl_tracking.php:319 msgid "Cardinality" msgstr "Cardinalidade" -#: libraries/Index.class.php:449 tbl_tracking.php:278 tbl_tracking.php:327 +#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322 msgid "Comment" msgstr "Comentario" #: libraries/Index.class.php:465 libraries/common.lib.php:609 -#: libraries/common.lib.php:1198 libraries/display_tbl.lib.php:1116 +#: libraries/common.lib.php:1191 libraries/display_tbl.lib.php:1115 #: libraries/import.lib.php:1119 libraries/import.lib.php:1143 -#: pdf_pages.php:284 setup/frames/index.inc.php:124 +#: pdf_pages.php:283 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:349 tbl_row_action.php:68 msgid "Edit" msgstr "Modificar" @@ -1429,15 +1408,15 @@ msgstr "" "eliminar un deles" #: libraries/List_Database.class.php:430 libraries/server_links.inc.php:40 -#: server_databases.php:87 server_privileges.php:1652 +#: server_databases.php:85 server_privileges.php:1656 #: setup/lib/messages.inc.php:107 test/theme.php:92 msgid "Databases" msgstr "Bases de datos" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:259 libraries/import.lib.php:134 pdf_schema.php:31 -#: pdf_schema.php:231 tbl_change.php:1023 tbl_operations.php:212 -#: tbl_relation.php:289 view_operations.php:61 +#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 +#: tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Houbo un erro" @@ -1465,42 +1444,42 @@ msgid_plural "%1$d rows inserted." msgstr[0] "%1$d fileira(s) inserida(s)." msgstr[1] "%1$d fileira(s) inserida(s)." -#: libraries/StorageEngine.class.php:196 +#: libraries/StorageEngine.class.php:194 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:352 +#: libraries/StorageEngine.class.php:354 #, php-format msgid "%s is available on this MySQL server." msgstr "%s está dispoñíbel neste servidor de MySQL." -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:357 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s foi desactivado neste servidor de MySQL." -#: libraries/StorageEngine.class.php:359 +#: libraries/StorageEngine.class.php:361 #, 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:1018 +#: libraries/Table.class.php:1017 msgid "Invalid database" msgstr "A base de datos non é válida" -#: libraries/Table.class.php:1032 tbl_get_field.php:25 +#: libraries/Table.class.php:1031 tbl_get_field.php:25 msgid "Invalid table name" msgstr "Non se admite este nome de táboa." -#: libraries/Table.class.php:1047 +#: libraries/Table.class.php:1046 #, 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:1131 +#: libraries/Table.class.php:1129 #, php-format msgid "Table %s has been renamed to %s" msgstr "A táboa %s chámase agora %s" @@ -1518,22 +1497,22 @@ msgstr "Non se dispón de previsualización." msgid "take it" msgstr "cólleo" -#: libraries/Theme_Manager.class.php:114 +#: 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:152 +#: 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:220 +#: 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:296 test/theme.php:160 themes.php:20 +#: libraries/Theme_Manager.class.php:291 test/theme.php:160 themes.php:20 #: themes.php:40 msgid "Theme / Style" msgstr "Tema / Estilo" @@ -1651,19 +1630,19 @@ msgstr "Non se meteu ningunha chave de autenticación válida" msgid "Authenticating..." msgstr "A autenticar..." -#: libraries/blobstreaming.lib.php:689 +#: libraries/blobstreaming.lib.php:340 msgid "View image" msgstr "Ver a imaxe" -#: libraries/blobstreaming.lib.php:693 +#: libraries/blobstreaming.lib.php:344 msgid "Play audio" msgstr "Reproducir o son" -#: libraries/blobstreaming.lib.php:698 +#: libraries/blobstreaming.lib.php:349 msgid "View video" msgstr "Ver o vídeo" -#: libraries/blobstreaming.lib.php:702 +#: libraries/blobstreaming.lib.php:353 msgid "Download file" msgstr "Descargar o ficheiro" @@ -1719,7 +1698,7 @@ msgstr "Servidor" msgid "Invalid authentication method set in configuration:" msgstr "Na configuración indicouse un método de autenticación que non válido::" -#: libraries/common.inc.php:909 +#: libraries/common.inc.php:908 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Debería actualizar a %s %s ou posterior." @@ -1746,7 +1725,8 @@ msgstr "Enviado" #: libraries/common.lib.php:425 libraries/common.lib.php:427 #: libraries/common.lib.php:429 libraries/common.lib.php:445 #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 -#: libraries/display_export.lib.php:163 libraries/relation.lib.php:84 +#: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 +#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 #: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" @@ -1761,150 +1741,150 @@ msgstr "orde SQL" msgid "MySQL said: " msgstr "Mensaxes do MySQL: " -#: libraries/common.lib.php:1136 +#: libraries/common.lib.php:1129 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "Failed to connect to SQL validator!" msgstr "Non se puido conectar co servidor de MySQL" -#: libraries/common.lib.php:1174 setup/lib/messages.inc.php:350 +#: libraries/common.lib.php:1167 setup/lib/messages.inc.php:350 msgid "Explain SQL" msgstr "Explicar SQL" -#: libraries/common.lib.php:1177 +#: libraries/common.lib.php:1170 msgid "Skip Explain SQL" msgstr "Saltar a explicacion de SQL" -#: libraries/common.lib.php:1211 +#: libraries/common.lib.php:1204 msgid "Without PHP Code" msgstr "sen código PHP" -#: libraries/common.lib.php:1214 setup/lib/messages.inc.php:352 +#: libraries/common.lib.php:1207 setup/lib/messages.inc.php:352 msgid "Create PHP Code" msgstr "Crear código PHP" -#: libraries/common.lib.php:1232 server_status.php:451 +#: libraries/common.lib.php:1225 server_status.php:451 #: setup/lib/messages.inc.php:351 msgid "Refresh" msgstr "Refrescar" -#: libraries/common.lib.php:1241 +#: libraries/common.lib.php:1234 msgid "Skip Validate SQL" msgstr "Omitir a validacion de" -#: libraries/common.lib.php:1244 setup/lib/messages.inc.php:353 +#: libraries/common.lib.php:1237 setup/lib/messages.inc.php:353 msgid "Validate SQL" msgstr "Validar o SQL" -#: libraries/common.lib.php:1283 +#: libraries/common.lib.php:1287 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1285 +#: libraries/common.lib.php:1289 #, fuzzy #| msgid "Engines" msgid "Inline" msgstr "Motores" -#: libraries/common.lib.php:1339 libraries/common.lib.php:1354 +#: libraries/common.lib.php:1343 libraries/common.lib.php:1358 msgid "Profiling" msgstr "Análise do desempeño" -#: libraries/common.lib.php:1358 libraries/tbl_triggers.lib.php:27 +#: libraries/common.lib.php:1362 libraries/tbl_triggers.lib.php:27 #: server_processlist.php:57 msgid "Time" msgstr "Tempo" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "B" msgstr "B" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "KiB" msgstr "KiB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "MiB" msgstr "MiB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "GiB" msgstr "GiB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "TiB" msgstr "TiB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "PiB" msgstr "PiB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "EiB" msgstr "EiB" #. l10n: Thousands separator -#: libraries/common.lib.php:1424 +#: libraries/common.lib.php:1428 msgid "," msgstr "." #. l10n: Decimal separator -#: libraries/common.lib.php:1426 +#: libraries/common.lib.php:1430 msgid "." msgstr "," #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1603 +#: libraries/common.lib.php:1607 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%d de %B de %Y ás %H:%M" -#: libraries/common.lib.php:1909 +#: libraries/common.lib.php:1913 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s días, %s horas, %s minutos e %s segundos" -#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 -#: libraries/display_tbl.lib.php:289 server_status.php:718 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 +#: libraries/display_tbl.lib.php:288 server_status.php:718 msgid "Begin" msgstr "Inicio" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 -#: libraries/display_tbl.lib.php:290 server_binlog.php:154 +#: libraries/common.lib.php:2328 libraries/common.lib.php:2331 +#: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "Anterior" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 -#: libraries/display_tbl.lib.php:352 +#: libraries/common.lib.php:2359 libraries/common.lib.php:2362 +#: libraries/display_tbl.lib.php:351 msgid "End" msgstr "Fin" -#: libraries/common.lib.php:2429 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "Saltar à base de datos "%s"." -#: libraries/common.lib.php:2448 +#: libraries/common.lib.php:2453 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "A función %s vese afectada por un erro descoñecido; consulte %s" -#: libraries/common.lib.php:2828 libraries/common.lib.php:2835 -#: libraries/db_links.inc.php:67 libraries/export/sql.php:24 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 +#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 -#: libraries/tbl_links.inc.php:59 querywindow.php:89 test/theme.php:96 +#: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2837 libraries/db_links.inc.php:103 -#: libraries/tbl_links.inc.php:94 libraries/tbl_links.inc.php:116 -#: view_operations.php:88 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: view_operations.php:87 msgid "Operations" msgstr "Operacións" -#: libraries/core.lib.php:282 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1920,38 +1900,38 @@ msgstr "Acontecementos" msgid "Name" msgstr "Nome" -#: libraries/db_links.inc.php:44 +#: libraries/db_links.inc.php:43 #, php-format msgid "Database %s has been dropped." msgstr "Eliminouse a base de datos %s." -#: libraries/db_links.inc.php:56 libraries/db_links.inc.php:57 -#: libraries/db_links.inc.php:58 +#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 +#: libraries/db_links.inc.php:57 msgid "Database seems to be empty!" msgstr "Parece ser que a táboa está baleira!" -#: libraries/db_links.inc.php:80 libraries/relation.lib.php:142 -#: libraries/tbl_links.inc.php:68 +#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "Seguemento" -#: libraries/db_links.inc.php:85 +#: libraries/db_links.inc.php:84 msgid "Query" msgstr "Procurar cun exemplo" -#: libraries/db_links.inc.php:90 libraries/relation.lib.php:138 +#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 msgid "Designer" msgstr "Deseñador" -#: libraries/db_links.inc.php:97 libraries/server_links.inc.php:87 -#: libraries/tbl_links.inc.php:90 pmd_pdf.php:83 pmd_pdf.php:109 +#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importar" -#: libraries/db_links.inc.php:110 libraries/server_links.inc.php:65 -#: server_privileges.php:111 server_privileges.php:1714 -#: server_privileges.php:2063 test/theme.php:116 +#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: server_privileges.php:110 server_privileges.php:1718 +#: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" msgstr "Privilexios" @@ -1963,14 +1943,14 @@ msgstr "Rutinas" msgid "Return type" msgstr "Tipo de retorno" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1847 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1806 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "Pode non ser exacto. Consulte a FAQ 3.11" -#: libraries/db_structure.lib.php:60 server_databases.php:141 -#: tbl_printview.php:334 tbl_structure.php:681 +#: libraries/db_structure.lib.php:60 server_databases.php:139 +#: tbl_printview.php:333 tbl_structure.php:679 msgid "Overhead" msgstr "De máis (Overhead)" @@ -1989,7 +1969,7 @@ 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:358 tbl_structure.php:607 +#: libraries/dbi/mysql.dbi.lib.php:358 tbl_structure.php:605 msgid "Details..." msgstr "Detalles..." @@ -1999,22 +1979,22 @@ msgid "Change password" msgstr "Trocar o contrasinal" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:807 +#: libraries/replication_gui.lib.php:347 server_privileges.php:806 msgid "No Password" msgstr "Sen contrasinal" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1530 server_synchronize.php:1174 +#: libraries/replication_gui.lib.php:351 server_privileges.php:795 +#: server_privileges.php:799 server_privileges.php:810 +#: server_privileges.php:1534 server_synchronize.php:1173 msgid "Password" msgstr "Contrasinal" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:815 server_privileges.php:818 +#: server_privileges.php:814 server_privileges.php:817 msgid "Re-type" msgstr "Reescribir" @@ -2037,8 +2017,8 @@ msgstr "Crear unha base de datos nova" msgid "Create" msgstr "Crear" -#: libraries/display_create_database.lib.php:39 server_privileges.php:113 -#: server_privileges.php:1419 server_replication.php:34 +#: libraries/display_create_database.lib.php:39 server_privileges.php:112 +#: server_privileges.php:1423 server_replication.php:33 msgid "No Privileges" msgstr "Sen privilexios" @@ -2059,51 +2039,51 @@ msgstr "Crear unha táboa nova na base de datos %s" msgid "Number of columns" msgstr "Número de campos" -#: libraries/display_export.lib.php:41 +#: libraries/display_export.lib.php:35 msgid "Could not load export plugins, please check your installation!" msgstr "" "Non se deron carregado as extensións de exportación. Verifique a instalación." -#: libraries/display_export.lib.php:106 +#: libraries/display_export.lib.php:100 #, fuzzy, php-format #| msgid "Dump %s row(s) starting at record # %s" msgid "Dump %s row(s) starting at row # %s" msgstr "Pór %s fileiras a partir da fileira %s." -#: libraries/display_export.lib.php:114 +#: libraries/display_export.lib.php:108 msgid "Dump all rows" msgstr "Envorcar todas as fileiras" -#: libraries/display_export.lib.php:124 setup/lib/messages.inc.php:79 +#: libraries/display_export.lib.php:118 setup/lib/messages.inc.php:79 msgid "Save as file" msgstr "Enviar (gravar nun ficheiro)
                            " -#: libraries/display_export.lib.php:133 +#: libraries/display_export.lib.php:127 #, php-format msgid "Save on server in %s directory" msgstr "Gardar no servidor no directorio %s" -#: libraries/display_export.lib.php:141 setup/lib/messages.inc.php:87 +#: libraries/display_export.lib.php:135 setup/lib/messages.inc.php:87 msgid "Overwrite existing file(s)" msgstr "Eliminar o(s) ficheiro(s) xa existente(s)" -#: libraries/display_export.lib.php:147 +#: libraries/display_export.lib.php:141 msgid "File name template" msgstr "Modelo para o nome de ficheiro" -#: libraries/display_export.lib.php:151 +#: libraries/display_export.lib.php:145 msgid "server name" msgstr "nome do servidor" -#: libraries/display_export.lib.php:154 +#: libraries/display_export.lib.php:148 msgid "database name" msgstr "nome da base de datos" -#: libraries/display_export.lib.php:157 +#: libraries/display_export.lib.php:151 msgid "table name" msgstr "nome da táboa" -#: libraries/display_export.lib.php:161 +#: libraries/display_export.lib.php:155 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2114,39 +2094,39 @@ msgstr "" "utilizar cadeas de formato de hora. Produciranse transformacións en " "consecuencia: %3$s. O resto do texto ficará como está." -#: libraries/display_export.lib.php:202 +#: libraries/display_export.lib.php:196 msgid "remember template" msgstr "lembrar o modelo" -#: libraries/display_export.lib.php:210 libraries/display_import.lib.php:177 +#: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 #: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 msgid "Character set of the file:" msgstr "Conxunto de caracteres do ficheiro:" -#: libraries/display_export.lib.php:235 setup/lib/messages.inc.php:81 +#: libraries/display_export.lib.php:229 setup/lib/messages.inc.php:81 msgid "Compression" msgstr "Compresión" -#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:196 -#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:529 -#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:574 -#: server_privileges.php:1867 server_processlist.php:74 +#: libraries/display_export.lib.php:234 libraries/display_import.lib.php:196 +#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:528 +#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:573 +#: server_privileges.php:1871 server_processlist.php:74 msgid "None" msgstr "Ningunha" -#: libraries/display_export.lib.php:247 +#: libraries/display_export.lib.php:241 msgid "\"zipped\"" msgstr "comprimido no formato \"zip\"" -#: libraries/display_export.lib.php:253 +#: libraries/display_export.lib.php:247 msgid "\"gzipped\"" msgstr "comprimido no formato \"gzip\"" -#: libraries/display_export.lib.php:259 +#: libraries/display_export.lib.php:253 msgid "\"bzipped\"" msgstr "comprimido no formato \"bzip\"" -#: libraries/display_export.lib.php:274 libraries/export/sql.php:42 +#: libraries/display_export.lib.php:268 libraries/export/sql.php:42 #: libraries/import/sql.php:31 msgid "SQL compatibility mode" msgstr "Modo de compatiblidade SQL" @@ -2186,12 +2166,12 @@ msgid "File uploads are not allowed on this server." msgstr "Este servidor non admite a recepción de ficheiros." #: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 -#: tbl_change.php:1024 +#: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "Non se pode acceder ao directorio que designou para os envíos" #: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 -#: tbl_change.php:1027 +#: tbl_change.php:925 msgid "web server upload directory" msgstr "directorio de recepción do servidor web" @@ -2277,43 +2257,43 @@ msgstr "Tamaño do papel" msgid "Language" msgstr "Lingua" -#: libraries/display_tbl.lib.php:303 +#: libraries/display_tbl.lib.php:302 #, php-format msgid "%d is not valid row number." msgstr "%d non é un número de fileira válido." -#: libraries/display_tbl.lib.php:309 +#: libraries/display_tbl.lib.php:308 #, fuzzy #| msgid "row(s) starting from record #" msgid "row(s) starting from row #" msgstr "fileiras, a comezar pola" -#: libraries/display_tbl.lib.php:315 +#: libraries/display_tbl.lib.php:314 msgid "horizontal" msgstr "horizontal" -#: libraries/display_tbl.lib.php:316 +#: libraries/display_tbl.lib.php:315 msgid "horizontal (rotated headers)" msgstr "horizontal (cabezallos rotados)" -#: libraries/display_tbl.lib.php:317 +#: libraries/display_tbl.lib.php:316 msgid "vertical" msgstr "vertical" -#: libraries/display_tbl.lib.php:323 +#: libraries/display_tbl.lib.php:322 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "en modo %s e repetir os cabezallos de cada %s celas" -#: libraries/display_tbl.lib.php:345 +#: libraries/display_tbl.lib.php:344 msgid "This operation could take a long time. Proceed anyway?" msgstr "Esta operación pode que leve moito tempo. Procésase igual?" -#: libraries/display_tbl.lib.php:511 +#: libraries/display_tbl.lib.php:510 msgid "Sort by key" msgstr "Ordenar pola chave" -#: libraries/display_tbl.lib.php:554 libraries/export/codegen.php:38 +#: libraries/display_tbl.lib.php:553 libraries/export/codegen.php:38 #: libraries/export/csv.php:29 libraries/export/excel.php:34 #: libraries/export/htmlword.php:28 libraries/export/latex.php:32 #: libraries/export/mediawiki.php:21 libraries/export/ods.php:26 @@ -2323,99 +2303,99 @@ msgstr "Ordenar pola chave" #: libraries/export/xlsx.php:26 libraries/export/xml.php:23 #: libraries/export/yaml.php:27 libraries/import.lib.php:1114 #: libraries/import.lib.php:1136 libraries/import/csv.php:31 -#: libraries/import/docsql.php:33 libraries/import/ldi.php:46 +#: libraries/import/docsql.php:32 libraries/import/ldi.php:46 #: libraries/import/ods.php:30 libraries/import/sql.php:19 #: libraries/import/xls.php:25 libraries/import/xlsx.php:25 -#: libraries/import/xml.php:25 tbl_select.php:264 tbl_structure.php:752 +#: libraries/import/xml.php:25 tbl_select.php:263 tbl_structure.php:750 msgid "Options" msgstr "Opcións" -#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:569 +#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:568 msgid "Partial Texts" msgstr "Textos parciais" -#: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:573 +#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:572 msgid "Full Texts" msgstr "Textos completos" -#: libraries/display_tbl.lib.php:586 +#: libraries/display_tbl.lib.php:585 msgid "Relational key" msgstr "Chave relacional" -#: libraries/display_tbl.lib.php:587 +#: libraries/display_tbl.lib.php:586 #, fuzzy #| msgid "Relational display field" msgid "Relational display column" msgstr "Campo de exhibición relacional" -#: libraries/display_tbl.lib.php:594 +#: libraries/display_tbl.lib.php:593 msgid "Show binary contents" msgstr "Mostrar os contidos binarios" -#: libraries/display_tbl.lib.php:596 +#: libraries/display_tbl.lib.php:595 msgid "Show BLOB contents" msgstr "Mostrar os contidos BLOB" -#: libraries/display_tbl.lib.php:598 +#: libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "Mostrar o contido binario como HEX" -#: libraries/display_tbl.lib.php:606 pmd_general.php:140 tbl_change.php:312 -#: tbl_change.php:318 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:307 +#: tbl_change.php:313 msgid "Hide" msgstr "Agochar" -#: libraries/display_tbl.lib.php:606 libraries/relation.lib.php:122 -#: libraries/tbl_properties.inc.php:143 transformation_overview.php:46 +#: libraries/display_tbl.lib.php:605 libraries/relation.lib.php:117 +#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46 msgid "Browser transformation" msgstr "Transformación do navegador" -#: libraries/display_tbl.lib.php:1125 libraries/display_tbl.lib.php:1129 -#: libraries/display_tbl.lib.php:1131 +#: libraries/display_tbl.lib.php:1124 libraries/display_tbl.lib.php:1128 +#: libraries/display_tbl.lib.php:1130 msgid "Execute bookmarked query" msgstr "Efectuar a procura gardada" -#: libraries/display_tbl.lib.php:1144 libraries/display_tbl.lib.php:1156 +#: libraries/display_tbl.lib.php:1143 libraries/display_tbl.lib.php:1155 msgid "The row has been deleted" msgstr "Eliminouse o rexistro" -#: libraries/display_tbl.lib.php:1183 libraries/display_tbl.lib.php:2055 +#: libraries/display_tbl.lib.php:1182 libraries/display_tbl.lib.php:2014 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "Matar (kill)" -#: libraries/display_tbl.lib.php:1933 +#: libraries/display_tbl.lib.php:1892 msgid "in query" msgstr "a procurar" -#: libraries/display_tbl.lib.php:1951 +#: libraries/display_tbl.lib.php:1910 msgid "Showing rows" msgstr "A mostrar rexistros " -#: libraries/display_tbl.lib.php:1961 +#: libraries/display_tbl.lib.php:1920 msgid "total" msgstr "total" -#: libraries/display_tbl.lib.php:1969 sql.php:523 +#: libraries/display_tbl.lib.php:1928 sql.php:522 #, php-format msgid "Query took %01.4f sec" msgstr "a pesquisa levou %01.4f segundos" -#: libraries/display_tbl.lib.php:2088 libraries/mult_submits.inc.php:112 -#: querywindow.php:115 querywindow.php:119 querywindow.php:122 -#: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:469 +#: libraries/display_tbl.lib.php:2047 libraries/mult_submits.inc.php:112 +#: querywindow.php:114 querywindow.php:118 querywindow.php:121 +#: tbl_structure.php:23 tbl_structure.php:148 tbl_structure.php:467 msgid "Change" msgstr "Mudar" -#: libraries/display_tbl.lib.php:2158 +#: libraries/display_tbl.lib.php:2117 msgid "Query results operations" msgstr "Operacións de resultados da procura" -#: libraries/display_tbl.lib.php:2186 +#: libraries/display_tbl.lib.php:2145 msgid "Print view (with full texts)" msgstr "Vista previa da impresión (con textos completos)" -#: libraries/display_tbl.lib.php:2359 +#: libraries/display_tbl.lib.php:2318 msgid "Link not found" msgstr "Non se atopou o vínculo" @@ -2473,9 +2453,9 @@ msgstr "Estado de InnoDB" msgid "Buffer Pool Usage" msgstr "Uso da reserva da memoria intermedia" -#: libraries/engines/innodb.lib.php:168 server_databases.php:136 -#: server_databases.php:304 server_status.php:524 server_status.php:585 -#: server_status.php:606 tbl_printview.php:349 tbl_structure.php:695 +#: libraries/engines/innodb.lib.php:168 server_databases.php:134 +#: server_databases.php:302 server_status.php:524 server_status.php:585 +#: server_status.php:606 tbl_printview.php:348 tbl_structure.php:693 msgid "Total" msgstr "Total" @@ -2612,6 +2592,87 @@ msgstr "" "durante unha instrución REPAIR TABLE ou ao crear índices con CREATE INDEX ou " "ALTER TABLE." +#: libraries/engines/pbms.lib.php:31 +#, fuzzy +#| msgid "Garbage threshold" +msgid "Garbage Threshold" +msgstr "Limiar do lixo" + +#: libraries/engines/pbms.lib.php:32 +#, fuzzy +#| msgid "" +#| "The percentage of garbage in a data log file before it is compacted. This " +#| "is a value between 1 and 99. The default is 50." +msgid "The percentage of garbage in a repository file before it is compacted." +msgstr "" +"A porcentaxe de lixo no ficheiro de datos antes de compactar. É un valor " +"entre 1 e 99. Por omisión é 50." + +#: libraries/engines/pbms.lib.php:36 libraries/replication_gui.lib.php:69 +#: server_synchronize.php:1161 +msgid "Port" +msgstr "Porto" + +#: libraries/engines/pbms.lib.php:37 +msgid "" +"The port for the PBMS stream-based communications. Setting this value to 0 " +"will disable HTTP communication with the daemon." +msgstr "" + +#: libraries/engines/pbms.lib.php:41 +msgid "Repository Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:42 +msgid "" +"The maximum size of a BLOB repository file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:46 +msgid "Temp Blob Timeout" +msgstr "" + +#: libraries/engines/pbms.lib.php:47 +msgid "" +"The timeout, in seconds, for temporary BLOBs. Uploaded BLOB data is removed " +"after this time, unless they are referenced by a record in the database." +msgstr "" + +#: libraries/engines/pbms.lib.php:51 +#, fuzzy +#| msgid "Log file threshold" +msgid "Temp Log Threshold" +msgstr "Limiar do ficheiro de rexistro" + +#: libraries/engines/pbms.lib.php:52 +msgid "" +"The maximum size of a temporary BLOB log file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:56 +msgid "Max Keep Alive" +msgstr "" + +#: libraries/engines/pbms.lib.php:57 +msgid "" +"The timeout for inactive connection with the keep-alive flag set. After this " +"time the connection will be closed. The time-out is in milliseconds (1/1000)." +msgstr "" + +#: libraries/engines/pbms.lib.php:61 +msgid "Metadata Headers" +msgstr "" + +#: libraries/engines/pbms.lib.php:62 +msgid "" +"A \":\" delimited list of metadata headers to be used to initialize the " +"pbms_metadata_header table when a database is created." +msgstr "" + #: libraries/engines/pbxt.lib.php:22 msgid "Index cache size" msgstr "Tamaño da caché do índice" @@ -2765,7 +2826,7 @@ msgstr "" "o nome e dáselles o número máis alto seguinte." #: libraries/export/codegen.php:36 setup/lib/messages.inc.php:85 -#: tbl_printview.php:374 tbl_structure.php:736 +#: tbl_printview.php:373 tbl_structure.php:734 msgid "Format" msgstr "Formato" @@ -2838,9 +2899,9 @@ msgstr "Microsoft Word 2000" #: libraries/export/htmlword.php:23 libraries/export/latex.php:59 #: libraries/export/latex.php:205 libraries/export/odt.php:47 #: libraries/export/sql.php:105 libraries/export/sql.php:865 -#: libraries/export/texytext.php:27 server_databases.php:126 -#: server_privileges.php:576 server_replication.php:315 tbl_printview.php:315 -#: tbl_structure.php:664 +#: libraries/export/texytext.php:27 server_databases.php:124 +#: server_privileges.php:575 server_replication.php:314 tbl_printview.php:314 +#: tbl_structure.php:662 msgid "Data" msgstr "Datos" @@ -2855,7 +2916,6 @@ msgid "Table structure for table" msgstr "Estrutura da táboa" #: libraries/export/latex.php:13 -#| msgid "Content of table __TABLE__" msgid "Content of table @TABLE@" msgstr "Contido da táboa @TABLE@" @@ -2864,7 +2924,6 @@ msgid "(continued)" msgstr "(continuado)" #: libraries/export/latex.php:15 -#| msgid "Structure of table __TABLE__" msgid "Structure of table @TABLE@" msgstr "Estrutura da táboa @TABLE@" @@ -2889,13 +2948,13 @@ msgid "Label key" msgstr "Chave da etiqueta" #: libraries/export/latex.php:46 libraries/export/odt.php:34 -#: libraries/export/sql.php:90 tbl_relation.php:398 +#: libraries/export/sql.php:90 tbl_relation.php:396 msgid "Relations" msgstr "Relacións" #: libraries/export/latex.php:52 libraries/export/odt.php:40 #: libraries/export/odt.php:317 libraries/export/sql.php:94 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "Tipo MIME" @@ -2903,10 +2962,10 @@ msgstr "Tipo MIME" #: libraries/export/xml.php:101 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1529 server_privileges.php:2061 -#: server_processlist.php:54 server_synchronize.php:1158 +#: libraries/replication_gui.lib.php:331 server_privileges.php:730 +#: server_privileges.php:733 server_privileges.php:789 +#: server_privileges.php:1533 server_privileges.php:2065 +#: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "Servidor" @@ -3095,8 +3154,8 @@ msgstr "Exportar as vistas" msgid "Export contents" msgstr "Exportar o contido" -#: libraries/footer.inc.php:182 libraries/footer.inc.php:193 -#: libraries/footer.inc.php:196 +#: libraries/footer.inc.php:180 libraries/footer.inc.php:191 +#: libraries/footer.inc.php:194 msgid "Open new phpMyAdmin window" msgstr "Abrir unha xanela nova co phpMyAdmin" @@ -3113,7 +3172,7 @@ msgstr "Resultado SQL" msgid "Generated by" msgstr "Xerado por" -#: libraries/import.lib.php:151 sql.php:519 tbl_change.php:180 +#: libraries/import.lib.php:151 sql.php:518 tbl_change.php:175 #: 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)." @@ -3170,7 +3229,7 @@ msgstr "Ignorar as fileiras duplicadas" msgid "Column names in first row" msgstr "Nomes das columnas na primeira fileira" -#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:501 +#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:500 #: view_create.php:147 msgid "Column names" msgstr "Nomes das columnas" @@ -3197,12 +3256,12 @@ msgstr "O formato de entrada de CSV non é válido na liña %d." msgid "Invalid column count in CSV input on line %d." msgstr "A contaxe de campos non é válida na entrada de CSV na liña %d." -#: libraries/import/docsql.php:28 +#: libraries/import/docsql.php:27 msgid "DocSQL" msgstr "DocSQL" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 -#: server_synchronize.php:427 server_synchronize.php:870 +#: libraries/import/docsql.php:30 libraries/tbl_properties.inc.php:616 +#: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "Nome da táboa" @@ -3262,26 +3321,26 @@ msgstr "Ningunha" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:512 -#: tbl_structure.php:28 tbl_structure.php:152 tbl_structure.php:156 -#: tbl_structure.php:472 +#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:511 +#: tbl_structure.php:27 tbl_structure.php:151 tbl_structure.php:155 +#: tbl_structure.php:470 msgid "Primary" msgstr "Primaria" #: libraries/mult_submits.inc.php:97 libraries/tbl_properties.inc.php:115 -#: libraries/tbl_properties.inc.php:524 tbl_printview.php:324 -#: tbl_structure.php:30 tbl_structure.php:153 tbl_structure.php:157 -#: tbl_structure.php:474 tbl_structure.php:672 +#: libraries/tbl_properties.inc.php:523 tbl_printview.php:323 +#: tbl_structure.php:29 tbl_structure.php:152 tbl_structure.php:156 +#: tbl_structure.php:472 tbl_structure.php:670 msgid "Index" msgstr "Índice" -#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:530 -#: tbl_structure.php:34 tbl_structure.php:155 tbl_structure.php:159 -#: tbl_structure.php:477 +#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:529 +#: tbl_structure.php:33 tbl_structure.php:154 tbl_structure.php:158 +#: tbl_structure.php:475 msgid "Fulltext" msgstr "Texto completo" -#: libraries/mult_submits.inc.php:434 tbl_replace.php:330 +#: libraries/mult_submits.inc.php:433 tbl_replace.php:330 msgid "No change" msgstr "Sen cambios" @@ -3289,190 +3348,190 @@ msgstr "Sen cambios" msgid "Charset" msgstr "Conxunto de caracteres" -#: libraries/mysql_charsets.lib.php:210 libraries/mysql_charsets.lib.php:411 -#: tbl_change.php:515 +#: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 +#: tbl_change.php:510 msgid "Binary" msgstr " Binario " -#: libraries/mysql_charsets.lib.php:222 +#: libraries/mysql_charsets.lib.php:214 msgid "Bulgarian" msgstr "Búlgaro" -#: libraries/mysql_charsets.lib.php:226 libraries/mysql_charsets.lib.php:351 +#: libraries/mysql_charsets.lib.php:218 libraries/mysql_charsets.lib.php:343 msgid "Simplified Chinese" msgstr "Chinés simplificado" -#: libraries/mysql_charsets.lib.php:228 libraries/mysql_charsets.lib.php:371 +#: libraries/mysql_charsets.lib.php:220 libraries/mysql_charsets.lib.php:363 msgid "Traditional Chinese" msgstr "Chinés tradicional" -#: libraries/mysql_charsets.lib.php:232 libraries/mysql_charsets.lib.php:418 +#: libraries/mysql_charsets.lib.php:224 libraries/mysql_charsets.lib.php:410 msgid "case-insensitive" msgstr "sen distinguir maiúsculas de minúsculas" -#: libraries/mysql_charsets.lib.php:235 libraries/mysql_charsets.lib.php:420 +#: libraries/mysql_charsets.lib.php:227 libraries/mysql_charsets.lib.php:412 msgid "case-sensitive" msgstr "distinguindo maiúsculas de minúsculas" -#: libraries/mysql_charsets.lib.php:238 +#: libraries/mysql_charsets.lib.php:230 msgid "Croatian" msgstr "Croata" -#: libraries/mysql_charsets.lib.php:241 +#: libraries/mysql_charsets.lib.php:233 msgid "Czech" msgstr "Checo" -#: libraries/mysql_charsets.lib.php:244 +#: libraries/mysql_charsets.lib.php:236 msgid "Danish" msgstr "Dinamarqués" -#: libraries/mysql_charsets.lib.php:247 +#: libraries/mysql_charsets.lib.php:239 msgid "English" msgstr "Inglés" -#: libraries/mysql_charsets.lib.php:250 +#: libraries/mysql_charsets.lib.php:242 msgid "Esperanto" msgstr "Esperanto" -#: libraries/mysql_charsets.lib.php:253 +#: libraries/mysql_charsets.lib.php:245 msgid "Estonian" msgstr "Estonio" -#: libraries/mysql_charsets.lib.php:256 libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:248 libraries/mysql_charsets.lib.php:251 msgid "German" msgstr "Alemán" -#: libraries/mysql_charsets.lib.php:256 +#: libraries/mysql_charsets.lib.php:248 msgid "dictionary" msgstr "dicionario" -#: libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:251 msgid "phone book" msgstr "directorio telefónico" -#: libraries/mysql_charsets.lib.php:262 +#: libraries/mysql_charsets.lib.php:254 msgid "Hungarian" msgstr "Húngaro" -#: libraries/mysql_charsets.lib.php:265 +#: libraries/mysql_charsets.lib.php:257 msgid "Icelandic" msgstr "Islandés" -#: libraries/mysql_charsets.lib.php:268 libraries/mysql_charsets.lib.php:358 +#: libraries/mysql_charsets.lib.php:260 libraries/mysql_charsets.lib.php:350 msgid "Japanese" msgstr "Xaponés" -#: libraries/mysql_charsets.lib.php:271 +#: libraries/mysql_charsets.lib.php:263 msgid "Latvian" msgstr "Letonio" -#: libraries/mysql_charsets.lib.php:274 +#: libraries/mysql_charsets.lib.php:266 msgid "Lithuanian" msgstr "Lituano" -#: libraries/mysql_charsets.lib.php:277 libraries/mysql_charsets.lib.php:380 +#: libraries/mysql_charsets.lib.php:269 libraries/mysql_charsets.lib.php:372 msgid "Korean" msgstr "Coreano" -#: libraries/mysql_charsets.lib.php:280 +#: libraries/mysql_charsets.lib.php:272 msgid "Persian" msgstr "Persa" -#: libraries/mysql_charsets.lib.php:283 +#: libraries/mysql_charsets.lib.php:275 msgid "Polish" msgstr "Polonés" -#: libraries/mysql_charsets.lib.php:286 libraries/mysql_charsets.lib.php:334 +#: libraries/mysql_charsets.lib.php:278 libraries/mysql_charsets.lib.php:326 msgid "West European" msgstr "Europeo occidental" -#: libraries/mysql_charsets.lib.php:289 +#: libraries/mysql_charsets.lib.php:281 msgid "Romanian" msgstr "Romeno" -#: libraries/mysql_charsets.lib.php:292 +#: libraries/mysql_charsets.lib.php:284 msgid "Slovak" msgstr "Eslovaco" -#: libraries/mysql_charsets.lib.php:295 +#: libraries/mysql_charsets.lib.php:287 msgid "Slovenian" msgstr "Esloveno" -#: libraries/mysql_charsets.lib.php:298 +#: libraries/mysql_charsets.lib.php:290 msgid "Spanish" msgstr "Español" -#: libraries/mysql_charsets.lib.php:301 +#: libraries/mysql_charsets.lib.php:293 msgid "Traditional Spanish" msgstr "Español tradicional" -#: libraries/mysql_charsets.lib.php:304 libraries/mysql_charsets.lib.php:401 +#: libraries/mysql_charsets.lib.php:296 libraries/mysql_charsets.lib.php:393 msgid "Swedish" msgstr "Sueco" -#: libraries/mysql_charsets.lib.php:307 libraries/mysql_charsets.lib.php:404 +#: libraries/mysql_charsets.lib.php:299 libraries/mysql_charsets.lib.php:396 msgid "Thai" msgstr "Tailandés" -#: libraries/mysql_charsets.lib.php:310 libraries/mysql_charsets.lib.php:398 +#: libraries/mysql_charsets.lib.php:302 libraries/mysql_charsets.lib.php:390 msgid "Turkish" msgstr "Turco" -#: libraries/mysql_charsets.lib.php:313 libraries/mysql_charsets.lib.php:395 +#: libraries/mysql_charsets.lib.php:305 libraries/mysql_charsets.lib.php:387 msgid "Ukrainian" msgstr "Ucraíno" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 msgid "Unicode" msgstr "Unicode" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 -#: libraries/mysql_charsets.lib.php:334 libraries/mysql_charsets.lib.php:341 -#: libraries/mysql_charsets.lib.php:363 libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 +#: libraries/mysql_charsets.lib.php:326 libraries/mysql_charsets.lib.php:333 +#: libraries/mysql_charsets.lib.php:355 libraries/mysql_charsets.lib.php:366 msgid "multilingual" msgstr "multilíngüe" -#: libraries/mysql_charsets.lib.php:341 +#: libraries/mysql_charsets.lib.php:333 msgid "Central European" msgstr "Centroeuropeu" -#: libraries/mysql_charsets.lib.php:346 +#: libraries/mysql_charsets.lib.php:338 msgid "Russian" msgstr "Ruso" -#: libraries/mysql_charsets.lib.php:363 +#: libraries/mysql_charsets.lib.php:355 msgid "Baltic" msgstr "Báltico" -#: libraries/mysql_charsets.lib.php:368 +#: libraries/mysql_charsets.lib.php:360 msgid "Armenian" msgstr "Armenio" -#: libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:366 msgid "Cyrillic" msgstr "Cirílico" -#: libraries/mysql_charsets.lib.php:377 +#: libraries/mysql_charsets.lib.php:369 msgid "Arabic" msgstr "Árabe" -#: libraries/mysql_charsets.lib.php:383 +#: libraries/mysql_charsets.lib.php:375 msgid "Hebrew" msgstr "Hebreu" -#: libraries/mysql_charsets.lib.php:386 +#: libraries/mysql_charsets.lib.php:378 msgid "Georgian" msgstr "Xeorxiano" -#: libraries/mysql_charsets.lib.php:389 +#: libraries/mysql_charsets.lib.php:381 msgid "Greek" msgstr "Grego" -#: libraries/mysql_charsets.lib.php:392 +#: libraries/mysql_charsets.lib.php:384 msgid "Czech-Slovak" msgstr "Checo-eslovaco" -#: libraries/mysql_charsets.lib.php:407 libraries/mysql_charsets.lib.php:414 +#: libraries/mysql_charsets.lib.php:399 libraries/mysql_charsets.lib.php:406 msgid "unknown" msgstr "descoñecido" @@ -3498,68 +3557,68 @@ msgstr "Xanela de procuras" msgid "This format has no options" msgstr "Este formato non ten opcións" -#: libraries/relation.lib.php:82 +#: libraries/relation.lib.php:77 msgid "not OK" msgstr "non conforme" -#: libraries/relation.lib.php:86 pmd_general.php:339 +#: libraries/relation.lib.php:81 pmd_general.php:339 msgid "OK" msgstr "Conforme" -#: libraries/relation.lib.php:87 +#: libraries/relation.lib.php:82 msgid "Enabled" msgstr "Activado" -#: libraries/relation.lib.php:110 +#: libraries/relation.lib.php:105 msgid "Display Features" msgstr "Mostrar as características" -#: libraries/relation.lib.php:116 +#: libraries/relation.lib.php:111 msgid "Creation of PDFs" msgstr "Creación de PDF" -#: libraries/relation.lib.php:120 +#: libraries/relation.lib.php:115 msgid "Displaying Column Comments" msgstr "A mostrar os comentarios das columnas" -#: libraries/relation.lib.php:125 +#: libraries/relation.lib.php:120 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "Consulte a documentación para saber como actualizar a táboa Column_comments" -#: libraries/relation.lib.php:130 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 msgid "Bookmarked SQL query" msgstr "Gardouse a procura de SQL" -#: libraries/relation.lib.php:134 querywindow.php:99 querywindow.php:207 +#: libraries/relation.lib.php:129 querywindow.php:98 querywindow.php:205 msgid "SQL history" msgstr "Historial de SQL" -#: libraries/relation.lib.php:146 +#: libraries/relation.lib.php:141 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:148 +#: libraries/relation.lib.php:143 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" -#: libraries/relation.lib.php:149 +#: libraries/relation.lib.php:144 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:150 +#: libraries/relation.lib.php:145 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:151 +#: libraries/relation.lib.php:146 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1158 +#: libraries/relation.lib.php:1153 msgid "no description" msgstr "sen descrición" @@ -3567,7 +3626,7 @@ msgstr "sen descrición" msgid "Slave configuration" msgstr "Configuración do escravo" -#: libraries/replication_gui.lib.php:53 server_replication.php:346 +#: libraries/replication_gui.lib.php:53 server_replication.php:345 msgid "Change or reconfigure master server" msgstr "Mudar ou reconfigurar o servidor principal" @@ -3582,16 +3641,12 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:711 -#: server_privileges.php:714 server_privileges.php:721 -#: server_synchronize.php:1170 +#: libraries/replication_gui.lib.php:261 server_privileges.php:710 +#: server_privileges.php:713 server_privileges.php:720 +#: server_synchronize.php:1169 msgid "User name" msgstr "Nome do usuario" -#: libraries/replication_gui.lib.php:69 server_synchronize.php:1162 -msgid "Port" -msgstr "Porto" - #: libraries/replication_gui.lib.php:105 msgid "Master status" msgstr "Estado do mestre" @@ -3606,8 +3661,8 @@ msgid "Variable" msgstr "Variábel" #: libraries/replication_gui.lib.php:117 server_status.php:737 -#: tbl_change.php:322 tbl_printview.php:368 tbl_select.php:137 -#: tbl_structure.php:728 +#: tbl_change.php:317 tbl_printview.php:367 tbl_select.php:136 +#: tbl_structure.php:726 msgid "Value" msgstr "Valor" @@ -3623,38 +3678,38 @@ msgstr "" "Nesta listaxe só son visíbeis os escravos que se inicien coa opción --report-" "host=nome_da_máquina." -#: libraries/replication_gui.lib.php:242 server_replication.php:193 +#: libraries/replication_gui.lib.php:242 server_replication.php:192 msgid "Add slave replication user" msgstr "Engadir un usuario de replicación de escravos" -#: libraries/replication_gui.lib.php:256 server_privileges.php:716 +#: libraries/replication_gui.lib.php:256 server_privileges.php:715 msgid "Any user" msgstr "Calquera usuario" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1920 server_privileges.php:1950 +#: libraries/replication_gui.lib.php:348 server_privileges.php:716 +#: server_privileges.php:783 server_privileges.php:807 +#: server_privileges.php:1924 server_privileges.php:1954 msgid "Use text field" msgstr "Use campo de texto" -#: libraries/replication_gui.lib.php:304 server_privileges.php:764 +#: libraries/replication_gui.lib.php:304 server_privileges.php:763 msgid "Any host" msgstr "Calquera servidor" -#: libraries/replication_gui.lib.php:308 server_privileges.php:768 +#: libraries/replication_gui.lib.php:308 server_privileges.php:767 msgid "Local" msgstr "Local" -#: libraries/replication_gui.lib.php:314 server_privileges.php:773 +#: libraries/replication_gui.lib.php:314 server_privileges.php:772 msgid "This Host" msgstr "Este servidor" -#: libraries/replication_gui.lib.php:320 server_privileges.php:779 +#: libraries/replication_gui.lib.php:320 server_privileges.php:778 msgid "Use Host Table" msgstr "Usar a táboa de Host" -#: libraries/replication_gui.lib.php:333 server_privileges.php:792 +#: libraries/replication_gui.lib.php:333 server_privileges.php:791 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3682,8 +3737,8 @@ msgstr "Linguaxe descoñecida: %1$s." msgid "Servers" msgstr "Servidores" -#: libraries/server_links.inc.php:52 server_engines.php:111 -#: server_engines.php:115 server_status.php:414 test/theme.php:104 +#: libraries/server_links.inc.php:52 server_engines.php:125 +#: server_engines.php:129 server_status.php:414 test/theme.php:104 msgid "Variables" msgstr "Variábeis" @@ -3704,12 +3759,12 @@ msgstr "Ficheiro de rexistro binario" msgid "Processes" msgstr "Procesos" -#: libraries/server_links.inc.php:91 server_synchronize.php:1091 -#: server_synchronize.php:1099 +#: libraries/server_links.inc.php:91 server_synchronize.php:1090 +#: server_synchronize.php:1098 msgid "Synchronize" msgstr "Sincronizar" -#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1109 +#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1108 msgid "Source database" msgstr "Base de datos de orixe" @@ -3727,7 +3782,7 @@ msgstr "Servidor remoto" msgid "Difference" msgstr "Diferenza" -#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1111 +#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1110 msgid "Target database" msgstr "Base de datos de destino" @@ -3747,11 +3802,11 @@ msgstr "Efectuar unha procura SQL na base de datos %s" msgid "Columns" msgstr "Nomes das columnas" -#: libraries/sql_query_form.lib.php:342 sql.php:664 sql.php:665 sql.php:682 +#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "Gardar esta procura de SQL" -#: libraries/sql_query_form.lib.php:349 sql.php:676 +#: libraries/sql_query_form.lib.php:349 sql.php:669 msgid "Let every user access this bookmark" msgstr "Permitir que calquera usuario poida acceder a este marcador" @@ -3848,12 +3903,12 @@ 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/tbl_links.inc.php:106 libraries/tbl_links.inc.php:139 -#: libraries/tbl_links.inc.php:140 +#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 +#: libraries/tbl_links.inc.php:139 msgid "Table seems to be empty!" msgstr "Parece ser que a táboa está baleira!" -#: libraries/tbl_links.inc.php:148 +#: libraries/tbl_links.inc.php:147 #, php-format msgid "Tracking of %s.%s is activated." msgstr "Activouse o seguemento de %s.%s." @@ -3888,12 +3943,12 @@ msgstr "" "Para os valores por omisión, introduza un único valor, sen escapalo con " "barras ou aspas e empregando este formato: a" -#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1263 -#: pdf_schema.php:1284 tbl_printview.php:142 tbl_structure.php:179 +#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1262 +#: pdf_schema.php:1283 tbl_printview.php:141 tbl_structure.php:178 msgid "Attributes" msgstr "Atributos" -#: libraries/tbl_properties.inc.php:136 +#: libraries/tbl_properties.inc.php:135 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -3902,11 +3957,11 @@ msgstr "" "Para unha lista das opcións de transformación dispoñíbeis e as súas " "transformacións de tipos MIME, prema %sdescricións de transformacións%s" -#: libraries/tbl_properties.inc.php:144 +#: libraries/tbl_properties.inc.php:143 msgid "Transformation options" msgstr "Opcións de transformación" -#: libraries/tbl_properties.inc.php:145 +#: libraries/tbl_properties.inc.php:144 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
                            If you ever need to put a backslash (\"\\\") or a single " @@ -3918,18 +3973,18 @@ msgstr "" "(\"\\\") ou aspas simples (\"'\") entre estes valores, precédaos de barra " "para trás (por exemplo '\\\\xyz' ou 'a\\'b')." -#: libraries/tbl_properties.inc.php:392 +#: libraries/tbl_properties.inc.php:391 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "Ningunha" -#: libraries/tbl_properties.inc.php:393 +#: libraries/tbl_properties.inc.php:392 msgid "As defined:" msgstr "Como se define:" -#: libraries/tbl_properties.inc.php:579 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:578 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
                            Please ask the " @@ -3938,29 +3993,29 @@ msgstr "" "Non existe descrición desta transformación.
                            Pregúntelle ao autor que é " "o que fai %s." -#: libraries/tbl_properties.inc.php:725 server_engines.php:57 -#: tbl_operations.php:354 +#: libraries/tbl_properties.inc.php:724 server_engines.php:56 +#: tbl_operations.php:352 msgid "Storage Engine" msgstr "Motor de almacenamento" -#: libraries/tbl_properties.inc.php:754 +#: libraries/tbl_properties.inc.php:753 msgid "PARTITION definition" msgstr "Definición da PARTICIÓN" -#: libraries/tbl_properties.inc.php:775 pdf_pages.php:502 +#: libraries/tbl_properties.inc.php:774 pdf_pages.php:501 #: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214 -#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1124 tbl_indexes.php:247 -#: tbl_relation.php:565 +#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1022 tbl_indexes.php:246 +#: tbl_relation.php:563 msgid "Save" msgstr "Gardar" -#: libraries/tbl_properties.inc.php:779 tbl_structure.php:541 +#: libraries/tbl_properties.inc.php:778 tbl_structure.php:539 #, fuzzy, php-format #| msgid "Add column(s)" msgid "Add %s column(s)" msgstr "Engadir columna(s)" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:535 +#: libraries/tbl_properties.inc.php:782 tbl_structure.php:533 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -4165,8 +4220,8 @@ msgstr "Interface" msgid "Custom color" msgstr "Cor personalizada" -#: main.php:162 pdf_pages.php:362 setup/lib/FormDisplay.tpl.php:216 -#: tbl_change.php:1173 +#: main.php:162 pdf_pages.php:361 setup/lib/FormDisplay.tpl.php:216 +#: tbl_change.php:1071 msgid "Reset" msgstr "Reiniciar" @@ -4174,8 +4229,8 @@ msgstr "Reiniciar" msgid "Protocol version" msgstr "Versión do protocolo" -#: main.php:188 server_privileges.php:1381 server_privileges.php:1528 -#: server_privileges.php:1642 server_privileges.php:2060 +#: main.php:188 server_privileges.php:1385 server_privileges.php:1532 +#: server_privileges.php:1646 server_privileges.php:2064 #: server_processlist.php:53 msgid "User" msgstr "Usuario" @@ -4268,14 +4323,23 @@ msgstr "" "existe aínda no directorio de phpMyAdmin. Deberíao eliminar unha vez " "finalice a configuración do phpMyAdmin." -#: main.php:330 +#: main.php:314 +#, php-format +msgid "" +"The additional features for working with linked tables have been " +"deactivated. To find out why click %shere%s." +msgstr "" +"Desactivouse a funcionalidade adicional para o traballo con táboas " +"vinculadas. Para saber o por que, prema %saquí%s." + +#: main.php:329 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:345 +#: main.php:344 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -4284,7 +4348,7 @@ msgstr "" "A versión %s da súa libraría de PHP MySQL difire da versión %s do seu " "servidor de MySQL. Isto pode ocasionar un comportamento impredicíbel." -#: main.php:357 +#: main.php:356 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -4298,68 +4362,68 @@ msgstr "" msgid "Reload navigation frame" msgstr "Personalizar a moldura de navegación" -#: navigation.php:204 server_databases.php:370 server_synchronize.php:1190 +#: navigation.php:203 server_databases.php:368 server_synchronize.php:1189 msgid "No databases" msgstr "Non hai ningunha base de datos" -#: navigation.php:298 +#: navigation.php:297 msgid "Filter" msgstr "Filtro" -#: navigation.php:299 setup/frames/index.inc.php:218 +#: navigation.php:298 setup/frames/index.inc.php:218 #: setup/lib/messages.inc.php:41 msgid "Clear" msgstr "Limpar" -#: navigation.php:330 navigation.php:331 +#: navigation.php:329 navigation.php:330 #, fuzzy #| msgid "Create table" msgctxt "short form" msgid "Create table" msgstr "Crear táboas" -#: navigation.php:333 navigation.php:495 +#: navigation.php:332 navigation.php:494 msgid "Please select a database" msgstr "Seleccione unha base de dados" -#: pdf_pages.php:40 pdf_pages.php:46 pdf_pages.php:52 pdf_pages.php:57 +#: pdf_pages.php:39 pdf_pages.php:45 pdf_pages.php:51 pdf_pages.php:56 #, php-format msgid "%s table not found or not set in %s" msgstr "Non se atopou a táboa %sou non se indicou en %s" -#: pdf_pages.php:265 +#: pdf_pages.php:264 msgid "Please choose a page to edit" msgstr "Escolla unha páxina para modificar" -#: pdf_pages.php:303 pmd_pdf.php:113 +#: pdf_pages.php:302 pmd_pdf.php:111 msgid "Create a page" msgstr "Crear unha páxina nova" -#: pdf_pages.php:309 +#: pdf_pages.php:308 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Número de páxina:" -#: pdf_pages.php:313 +#: pdf_pages.php:312 #, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "Distribución automática" -#: pdf_pages.php:315 +#: pdf_pages.php:314 msgid "Internal relations" msgstr "Relacións internas" -#: pdf_pages.php:338 +#: pdf_pages.php:337 msgid "Select Tables" msgstr "Seleccionar táboas" -#: pdf_pages.php:361 +#: pdf_pages.php:360 msgid "Toggle scratchboard" msgstr "conmutar o borrador" -#: pdf_pages.php:524 +#: pdf_pages.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -4367,37 +4431,37 @@ msgstr "" "Esta páxina ten referencias a táboas que xa non existen. Quere eliminar esas " "referencias?" -#: pdf_schema.php:635 +#: pdf_schema.php:634 #, fuzzy, php-format #| msgid "The \"%s\" table doesn't exist!" msgid "The %s table doesn't exist!" msgstr "Non existe a táboa \"%s\"." -#: pdf_schema.php:671 +#: pdf_schema.php:670 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Configure as coordenadas da táboa %s" -#: pdf_schema.php:994 +#: pdf_schema.php:993 #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" msgstr "Esquema da base de datos \"%s\" - Páxina %s" -#: pdf_schema.php:1012 +#: pdf_schema.php:1011 msgid "No tables" msgstr "Sen táboas" -#: pdf_schema.php:1031 pdf_schema.php:1140 +#: pdf_schema.php:1030 pdf_schema.php:1139 msgid "Relational schema" msgstr "Esquema relacional" -#: pdf_schema.php:1115 +#: pdf_schema.php:1114 msgid "Table of contents" msgstr "Índice" -#: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:145 -#: tbl_structure.php:182 tbl_tracking.php:277 +#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 +#: tbl_structure.php:181 tbl_tracking.php:272 msgid "Extra" msgstr "Extra" @@ -4409,7 +4473,7 @@ msgstr "Mostrar/Agochar o menú esquerdo" msgid "Save position" msgstr "Gardar a posición" -#: pmd_general.php:70 server_synchronize.php:428 server_synchronize.php:871 +#: pmd_general.php:70 server_synchronize.php:427 server_synchronize.php:870 msgid "Create table" msgstr "Crear táboas" @@ -4488,32 +4552,32 @@ msgstr "" "seleccione ou non como o campo a mostrar, prema a icona \"Escoller o campo a " "mostrar\" e a seguir o nome do campo apropiado." -#: pmd_pdf.php:62 +#: pmd_pdf.php:60 #, fuzzy msgid "Page has been created" msgstr "Creouse a táboa %1$s." -#: pmd_pdf.php:64 +#: pmd_pdf.php:62 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:84 +#: pmd_pdf.php:82 msgid "Export/Import to scale" msgstr "Exportar/Importar a escala" -#: pmd_pdf.php:88 +#: pmd_pdf.php:86 msgid "recommended" msgstr "recomendado" -#: pmd_pdf.php:93 +#: pmd_pdf.php:91 msgid "to/from page" msgstr "até/desde a páxina" -#: querywindow.php:94 +#: querywindow.php:93 msgid "Import files" msgstr "Importar ficheiros" -#: querywindow.php:105 +#: querywindow.php:104 msgid "All" msgstr "Todos" @@ -4559,69 +4623,69 @@ msgstr "Información" msgid "Character Sets and Collations" msgstr "Conxuntos de caracteres e Ordes alfabéticas" -#: server_databases.php:51 +#: server_databases.php:49 msgid "No databases selected." msgstr "Non hai ningunha base de datos seleccionada." -#: server_databases.php:62 +#: server_databases.php:60 #, php-format msgid "%s databases have been dropped successfully." msgstr "Elimináronse %s bases de datos sen problemas." -#: server_databases.php:87 +#: server_databases.php:85 msgid "Databases statistics" msgstr "Estatísticas das bases de datos" -#: server_databases.php:116 server_status.php:370 +#: server_databases.php:114 server_status.php:370 #: setup/lib/messages.inc.php:114 msgid "Tables" msgstr "Táboas" -#: server_databases.php:194 server_replication.php:180 -#: server_replication.php:208 +#: server_databases.php:192 server_replication.php:179 +#: server_replication.php:207 msgid "Master replication" msgstr "Replicación do principal" -#: server_databases.php:196 server_replication.php:247 +#: server_databases.php:194 server_replication.php:246 msgid "Slave replication" msgstr "Replicación do escravo" -#: server_databases.php:229 +#: server_databases.php:227 #, fuzzy #| msgid "Go to database" msgid "Jump to database" msgstr "Ir á base de datos" -#: server_databases.php:266 +#: server_databases.php:264 #, fuzzy #| msgid "Master replication" msgid "Not replicated" msgstr "Replicación do principal" -#: server_databases.php:272 +#: server_databases.php:270 #, fuzzy #| msgid "Replication" msgid "Replicated" msgstr "Replicación" -#: server_databases.php:288 +#: server_databases.php:286 #, php-format msgid "Check privileges for database "%s"." msgstr "Comprobar os privilexios da base de datos "%s"." -#: server_databases.php:292 server_databases.php:293 +#: server_databases.php:290 server_databases.php:291 msgid "Check Privileges" msgstr "Comprobar os privilexios" -#: server_databases.php:357 server_databases.php:358 +#: server_databases.php:355 server_databases.php:356 msgid "Enable Statistics" msgstr "Activar as estatísticas" -#: server_databases.php:361 server_databases.php:362 +#: server_databases.php:359 server_databases.php:360 msgid "Disable Statistics" msgstr "Desactivar as estatísticas" -#: server_databases.php:365 +#: server_databases.php:363 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -4629,120 +4693,120 @@ msgstr "" "Nota: De activar as estatísticas da base de datos, ocasionará que se produza " "un tráfico denso entre o servidor web e o de MySQL." -#: server_engines.php:48 +#: server_engines.php:47 msgid "Storage Engines" msgstr "Motores de almacenamento" -#: server_export.php:20 +#: server_export.php:18 msgid "View dump (schema) of databases" msgstr "Ver o volcado das bases de datos" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:23 server_privileges.php:265 msgid "Includes all privileges except GRANT." msgstr "Inclúe todos os privilexios a excepción de GRANT (Conceder)." -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:24 server_privileges.php:191 +#: server_privileges.php:514 msgid "Allows altering the structure of existing tables." msgstr "Permite alterar a estrutura das táboas xa existentes." -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:25 server_privileges.php:207 +#: server_privileges.php:520 msgid "Allows altering and dropping stored routines." msgstr "Permite alterar e eliminar rutinas armacenadas." -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:26 server_privileges.php:183 +#: server_privileges.php:513 msgid "Allows creating new databases and tables." msgstr "Permite crear bases de datos e táboas novas." -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:27 server_privileges.php:206 +#: server_privileges.php:519 msgid "Allows creating stored routines." msgstr "Permite crear rutinas almacenadas." -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:513 msgid "Allows creating new tables." msgstr "Permite crear táboas novas." -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:29 server_privileges.php:194 +#: server_privileges.php:517 msgid "Allows creating temporary tables." msgstr "Permite crear táboas temporais." -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:30 server_privileges.php:208 +#: server_privileges.php:553 msgid "Allows creating, dropping and renaming user accounts." msgstr "Permite crear, eliminar e mudar o nome das contas de usuario." -#: server_privileges.php:32 server_privileges.php:199 -#: server_privileges.php:203 server_privileges.php:526 -#: server_privileges.php:530 +#: server_privileges.php:31 server_privileges.php:198 +#: server_privileges.php:202 server_privileges.php:525 +#: server_privileges.php:529 msgid "Allows creating new views." msgstr "Permite crear vistas novas." -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:32 server_privileges.php:182 +#: server_privileges.php:505 msgid "Allows deleting data." msgstr "Permite eliminar datos." -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:33 server_privileges.php:184 +#: server_privileges.php:516 msgid "Allows dropping databases and tables." msgstr "Permite eliminar bases de datos e táboas." -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:34 server_privileges.php:516 msgid "Allows dropping tables." msgstr "Permite eliminar táboas." -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:35 server_privileges.php:199 +#: server_privileges.php:533 msgid "Allows to set up events for the event scheduler" msgstr "Permite configurar acontecementos para o programador de acontecementos" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:36 server_privileges.php:209 +#: server_privileges.php:521 msgid "Allows executing stored routines." msgstr "Permite executar rutinas almacenadas." -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:37 server_privileges.php:188 +#: server_privileges.php:508 msgid "Allows importing data from and exporting data into files." msgstr "Permite importar e exportar datos desde e para ficheiros." -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:38 server_privileges.php:539 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Permite engadir usuarios e privilexios sen recargar as táboas de privilexios." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:515 msgid "Allows creating and dropping indexes." msgstr "Permite crear e eliminar índices." -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:40 server_privileges.php:180 +#: server_privileges.php:441 server_privileges.php:503 msgid "Allows inserting and replacing data." msgstr "Permite inserir e substituír datos." -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:41 server_privileges.php:195 +#: server_privileges.php:548 msgid "Allows locking tables for the current thread." msgstr "Permite bloquear táboas do fío en uso" -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:42 server_privileges.php:645 +#: server_privileges.php:647 msgid "Limits the number of new connections the user may open per hour." msgstr "Limita o número de conexións novas por hora que pode abrir un usuario." -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:43 server_privileges.php:633 +#: server_privileges.php:635 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Limita o número de procuras por hora que pode enviar un usuario." -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:44 server_privileges.php:639 +#: server_privileges.php:641 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -4750,58 +4814,58 @@ msgstr "" "Limita o número de ordes que modifiquen unha táboa ou base de datos por hora " "que pode executar un usuario." -#: server_privileges.php:46 server_privileges.php:652 -#: server_privileges.php:654 +#: server_privileges.php:45 server_privileges.php:651 +#: server_privileges.php:653 msgid "Limits the number of simultaneous connections the user may have." msgstr "Limita o número de conexións simultáneas que pode ter o usuario." -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:46 server_privileges.php:187 +#: server_privileges.php:543 msgid "Allows viewing processes of all users" msgstr "Permite ver procesos de todos os usuarios" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:47 server_privileges.php:189 +#: server_privileges.php:447 server_privileges.php:549 msgid "Has no effect in this MySQL version." msgstr "Non funciona nesta versión do MySQL." -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:48 server_privileges.php:185 +#: server_privileges.php:544 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Permite recargar a configuración do servidor e limpar a súa caché." -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:197 +#: server_privileges.php:551 msgid "Allows the user to ask where the slaves / masters are." msgstr "Permite que o usuario pregunte onde están os escravos e os masters." -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:50 server_privileges.php:196 +#: server_privileges.php:552 msgid "Needed for the replication slaves." msgstr "Necesario para os escravos de replicación." -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:51 server_privileges.php:179 +#: server_privileges.php:438 server_privileges.php:502 msgid "Allows reading data." msgstr "Permite gravar datos." -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:52 server_privileges.php:192 +#: server_privileges.php:546 msgid "Gives access to the complete list of databases." msgstr "Permite acceder á listaxe completa de bases de datos" -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:53 server_privileges.php:203 +#: server_privileges.php:205 server_privileges.php:518 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Permite realizar consultas SHOW CREATE VIEW." -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:54 server_privileges.php:186 +#: server_privileges.php:545 msgid "Allows shutting down the server." msgstr "Permite apagar o servidor." -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:55 server_privileges.php:193 +#: server_privileges.php:542 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -4811,158 +4875,158 @@ msgstr "" "maioría das operación administrativas, como configurar as variábeis globais " "ou matar os fíos doutros usuarios." -#: server_privileges.php:57 server_privileges.php:201 -#: server_privileges.php:535 +#: server_privileges.php:56 server_privileges.php:200 +#: server_privileges.php:534 msgid "Allows creating and dropping triggers" msgstr "Permite crear e eliminar os disparadores" -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:57 server_privileges.php:181 +#: server_privileges.php:444 server_privileges.php:504 msgid "Allows changing data." msgstr "Permite modificar datos." -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:58 server_privileges.php:259 msgid "No privileges." msgstr "Sen privilexios." -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:301 server_privileges.php:302 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Ningunha" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1710 server_privileges.php:1716 +#: server_privileges.php:430 server_privileges.php:565 +#: server_privileges.php:1714 server_privileges.php:1720 msgid "Table-specific privileges" msgstr "Privilexios propios de táboa" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1532 +#: server_privileges.php:431 server_privileges.php:573 +#: server_privileges.php:1536 msgid " Note: MySQL privilege names are expressed in English " msgstr " Nota: os nomes de privilexios do MySQL están en inglés" -#: server_privileges.php:563 server_privileges.php:1531 +#: server_privileges.php:562 server_privileges.php:1535 msgid "Global privileges" msgstr "Privilexios globais" -#: server_privileges.php:565 server_privileges.php:1710 +#: server_privileges.php:564 server_privileges.php:1714 msgid "Database-specific privileges" msgstr "Privilexios propios de base de datos" -#: server_privileges.php:610 +#: server_privileges.php:609 msgid "Administration" msgstr "Administración" -#: server_privileges.php:630 +#: server_privileges.php:629 msgid "Resource limits" msgstr "Limites de recursos" -#: server_privileges.php:631 +#: server_privileges.php:630 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Nota: Se estas opcións se configuran como 0 (cero) elimínase o límite." -#: server_privileges.php:708 +#: server_privileges.php:707 msgid "Login Information" msgstr "Información sobre o acceso (login)" -#: server_privileges.php:802 +#: server_privileges.php:801 msgid "Do not change the password" msgstr "Non mude o contrasinal" -#: server_privileges.php:835 server_privileges.php:2197 +#: server_privileges.php:834 server_privileges.php:2201 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Non se achou ningún usuario." -#: server_privileges.php:879 +#: server_privileges.php:878 #, php-format msgid "The user %s already exists!" msgstr "Xa existe o usuario %s" -#: server_privileges.php:962 +#: server_privileges.php:961 msgid "You have added a new user." msgstr "Engadiuse o usuario." -#: server_privileges.php:1183 +#: server_privileges.php:1184 #, php-format msgid "You have updated the privileges for %s." msgstr "Acaba de actualizar os privilexios de %s." -#: server_privileges.php:1207 +#: server_privileges.php:1208 #, php-format msgid "You have revoked the privileges for %s" msgstr "Retiroulle os privilexios a %s" -#: server_privileges.php:1243 +#: server_privileges.php:1244 #, php-format msgid "The password for %s was changed successfully." msgstr "Modificouse sen problemas o contrasinal de %s." -#: server_privileges.php:1263 +#: server_privileges.php:1264 #, php-format msgid "Deleting %s" msgstr "A eliminar %s" -#: server_privileges.php:1274 +#: server_privileges.php:1275 msgid "No users selected for deleting!" msgstr "Non se seleccionaron utilizadores para eliminar!" -#: server_privileges.php:1277 +#: server_privileges.php:1278 msgid "Reloading the privileges" msgstr "A recargar os privilexios" -#: server_privileges.php:1292 +#: server_privileges.php:1296 msgid "The selected users have been deleted successfully." msgstr "Elimináronse sen problemas os usuarios seleccionados." -#: server_privileges.php:1327 +#: server_privileges.php:1331 msgid "The privileges were reloaded successfully." msgstr "Non houbo problemas ao recargar os privilexios." -#: server_privileges.php:1355 server_privileges.php:1641 +#: server_privileges.php:1359 server_privileges.php:1645 msgid "Edit Privileges" msgstr "Modificar privilexios" -#: server_privileges.php:1364 +#: server_privileges.php:1368 msgid "Revoke" msgstr "Revogar" -#: server_privileges.php:1396 +#: server_privileges.php:1400 msgid "User overview" msgstr "Vista xeral dos usuarios" -#: server_privileges.php:1533 server_privileges.php:1715 -#: server_privileges.php:2064 +#: server_privileges.php:1537 server_privileges.php:1719 +#: server_privileges.php:2068 msgid "Grant" msgstr "Conceder" -#: server_privileges.php:1552 server_privileges.php:2154 +#: server_privileges.php:1556 server_privileges.php:2158 msgid "Any" msgstr "Calquera" -#: server_privileges.php:1601 server_privileges.php:1625 -#: server_privileges.php:2019 server_privileges.php:2208 +#: server_privileges.php:1605 server_privileges.php:1629 +#: server_privileges.php:2023 server_privileges.php:2212 msgid "Add a new User" msgstr "Engadir un usuario novo" -#: server_privileges.php:1606 +#: server_privileges.php:1610 msgid "Remove selected users" msgstr "Eliminar os usuarios seleccionados" -#: server_privileges.php:1609 +#: server_privileges.php:1613 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Retirarlles todos os privilexios activos aos usuarios e eliminalos a " "continuación." -#: server_privileges.php:1610 server_privileges.php:1611 -#: server_privileges.php:1612 +#: server_privileges.php:1614 server_privileges.php:1615 +#: server_privileges.php:1616 msgid "Drop the databases that have the same names as the users." msgstr "Eliminar as bases de datos que teñan os mesmos nomes que os usuarios." -#: server_privileges.php:1628 +#: server_privileges.php:1632 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4975,51 +5039,51 @@ msgstr "" "privilexios que usa o servidor se se levaron a cabo alteracións manuais. " "Neste caso, debería %svolver a cargar os privilexios%s antes de proseguir." -#: server_privileges.php:1676 +#: server_privileges.php:1680 msgid "The selected user was not found in the privilege table." msgstr "Non se atopou o usuario seleccionado na táboa de privilexios." -#: server_privileges.php:1716 +#: server_privileges.php:1720 msgid "Column-specific privileges" msgstr "Privilexios propios de columna" -#: server_privileges.php:1917 +#: server_privileges.php:1921 msgid "Add privileges on the following database" msgstr "Engadir privilexios para esta base de datos" -#: server_privileges.php:1935 +#: server_privileges.php:1939 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "Os caracteres comodín _ e % deberíanse escapar con \\ para podelos usar " "literalmente" -#: server_privileges.php:1938 +#: server_privileges.php:1942 msgid "Add privileges on the following table" msgstr "Engadir privilexios para a esta táboa" -#: server_privileges.php:1995 +#: server_privileges.php:1999 msgid "Change Login Information / Copy User" msgstr "Modificar a información de acceso (login) / Copiar o utilizador" -#: server_privileges.php:1998 +#: server_privileges.php:2002 msgid "Create a new user with the same privileges and ..." msgstr "Crear un utilizador novo cos mesmos privilexios e..." -#: server_privileges.php:2000 +#: server_privileges.php:2004 msgid "... keep the old one." msgstr "... manter o anterior." -#: server_privileges.php:2001 +#: server_privileges.php:2005 msgid " ... delete the old one from the user tables." msgstr " ... eliminar o anterior das táboas de utilizadores." -#: server_privileges.php:2002 +#: server_privileges.php:2006 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "" " ... retirarlle todos os privilexios activos ao anterior e eliminalo despois." -#: server_privileges.php:2003 +#: server_privileges.php:2007 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -5027,44 +5091,44 @@ msgstr "" " ... eliminar o anterior das táboas de utilizadores e recargar os " "privilexios despois." -#: server_privileges.php:2025 +#: server_privileges.php:2029 msgid "Database for user" msgstr "Base de datos para o usuario" -#: server_privileges.php:2029 +#: server_privileges.php:2033 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Ningunha" -#: server_privileges.php:2030 +#: server_privileges.php:2034 msgid "Create database with same name and grant all privileges" msgstr "Crear unha base de datos co mesmo nome e conceder todos os privilexios" -#: server_privileges.php:2031 +#: server_privileges.php:2035 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Conceder todos os privilexios para o nome con comodíns (username\\_%)" -#: server_privileges.php:2034 +#: server_privileges.php:2038 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Conceder todos os privilexios sobre a base de datos "%s"" -#: server_privileges.php:2057 +#: server_privileges.php:2061 #, php-format msgid "Users having access to "%s"" msgstr "Usuarios que teñen acceso a "%s"" -#: server_privileges.php:2165 +#: server_privileges.php:2169 msgid "global" msgstr "global" -#: server_privileges.php:2167 +#: server_privileges.php:2171 msgid "database-specific" msgstr "específico da base de datos" -#: server_privileges.php:2169 +#: server_privileges.php:2173 msgid "wildcard" msgstr "comodín" @@ -5084,45 +5148,45 @@ msgstr "" msgid "ID" msgstr "Identificador" -#: server_replication.php:50 +#: server_replication.php:49 msgid "Unknown error" msgstr "Produciuse un erro descoñecido" -#: server_replication.php:57 +#: server_replication.php:56 #, php-format msgid "Unable to connect to master %s." msgstr "Foi imposíbel conectar co principal %s." -#: server_replication.php:64 +#: server_replication.php:63 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" "Foi imposíbel ler a posición do rexistro do principal. É posíbel que haxa un " "problema de privilexios no principal." -#: server_replication.php:70 +#: server_replication.php:69 msgid "Unable to change master" msgstr "Foi imposíbel mudar de principal" -#: server_replication.php:73 +#: server_replication.php:72 #, php-format msgid "Master server changed succesfully to %s" msgstr "O servidor principal mudouse sen problemas a %s" -#: server_replication.php:181 +#: server_replication.php:180 msgid "This server is configured as master in a replication process." msgstr "" "Este servidor está configurado como principal nun proceso de replicación." -#: server_replication.php:183 server_status.php:391 +#: server_replication.php:182 server_status.php:391 msgid "Show master status" msgstr "Mostrar o estado do principal" -#: server_replication.php:186 +#: server_replication.php:185 msgid "Show connected slaves" msgstr "Mostrar os escravos conectados" -#: server_replication.php:209 +#: server_replication.php:208 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -5131,11 +5195,11 @@ msgstr "" "Este servidor non está configurado como principal nun proceso de " "replicación. Desexa configuralo?" -#: server_replication.php:216 +#: server_replication.php:215 msgid "Master configuration" msgstr "Configuración do principal" -#: server_replication.php:217 +#: server_replication.php:216 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -5149,19 +5213,19 @@ msgstr "" "ignorar todas as bases de datos por omisión e permitir que se repliquen só " "algunhas. Seleccione o modo:" -#: server_replication.php:220 +#: server_replication.php:219 msgid "Replicate all databases; Ignore:" msgstr "Replicar todas as bases de datos. Ignorar:" -#: server_replication.php:221 +#: server_replication.php:220 msgid "Ignore all databases; Replicate:" msgstr "Ignorar todas as bases de datos. Replicar:" -#: server_replication.php:224 +#: server_replication.php:223 msgid "Please select databases:" msgstr "Seleccione as bases de datos:" -#: server_replication.php:227 +#: server_replication.php:226 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -5169,7 +5233,7 @@ msgstr "" "Agora engada as liñas seguintes ao final do ficheiro my.cnf e a seguir " "reinicie o servidor de MySQL." -#: server_replication.php:229 +#: server_replication.php:228 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " @@ -5179,67 +5243,67 @@ msgstr "" "ver unha mensaxe que informa de que este servidor está configurado " "como principal." -#: server_replication.php:292 +#: server_replication.php:291 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:295 +#: server_replication.php:294 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:304 +#: server_replication.php:303 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" "O servidor está configurado como escravo nun proceso de replicación. Desexa:" -#: server_replication.php:307 +#: server_replication.php:306 msgid "See slave status table" msgstr "Ver a táboa de estado do escravo" -#: server_replication.php:310 +#: server_replication.php:309 msgid "Synchronize databases with master" msgstr "Sincronizar as bases de datos co principal" -#: server_replication.php:321 +#: server_replication.php:320 msgid "Control slave:" msgstr "Escravo de control:" -#: server_replication.php:324 +#: server_replication.php:323 msgid "Full start" msgstr "Inicio completo" -#: server_replication.php:324 +#: server_replication.php:323 msgid "Full stop" msgstr "Detención completa" -#: server_replication.php:325 +#: server_replication.php:324 msgid "Reset slave" msgstr "Reiniciar o escravo" -#: server_replication.php:326 +#: server_replication.php:325 #, php-format msgid "SQL Thread %s only" msgstr "Fío SQL %s só" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 msgid "Start" msgstr "Inicio" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 msgid "Stop" msgstr "Detención" -#: server_replication.php:327 +#: server_replication.php:326 #, php-format msgid "IO Thread %s only" msgstr "Fío de E/S %s só" -#: server_replication.php:331 +#: server_replication.php:330 msgid "Error management:" msgstr "Xestión de erros:" -#: server_replication.php:333 +#: server_replication.php:332 #, fuzzy #| msgid "Skipping error(s) might lead into unsynchronized master and slave!" msgid "Skipping errors might lead into unsynchronized master and slave!" @@ -5247,19 +5311,19 @@ msgstr "" "Omitir o(s) erro(s) podería conducir a que o principal e o escravo non " "estean sincronizados." -#: server_replication.php:335 +#: server_replication.php:334 msgid "Skip current error" msgstr "Omitir este erro" -#: server_replication.php:336 +#: server_replication.php:335 msgid "Skip next" msgstr "Omitir os seguintes" -#: server_replication.php:339 +#: server_replication.php:338 msgid "errors." msgstr "erros." -#: server_replication.php:354 +#: server_replication.php:353 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -6107,116 +6171,116 @@ msgstr "Tipo de procura" msgid "Replication status" msgstr "Estado da replicación" -#: server_synchronize.php:93 +#: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "Non foi posíbel conectar coa orixe" -#: server_synchronize.php:96 +#: server_synchronize.php:95 msgid "Could not connect to the target" msgstr "Non foi posíbel conectar co destino" -#: server_synchronize.php:121 server_synchronize.php:124 tbl_create.php:77 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "Non existe a base de datos '%s'." -#: server_synchronize.php:264 +#: server_synchronize.php:263 msgid "Structure Synchronization" msgstr "Sincronización da estrutura" -#: server_synchronize.php:271 +#: server_synchronize.php:270 msgid "Data Synchronization" msgstr "Sincronización dos datos" -#: server_synchronize.php:399 server_synchronize.php:838 +#: server_synchronize.php:398 server_synchronize.php:837 msgid "not present" msgstr "non está presente" -#: server_synchronize.php:423 server_synchronize.php:866 +#: server_synchronize.php:422 server_synchronize.php:865 msgid "Structure Difference" msgstr "Diferenza da estrutura" -#: server_synchronize.php:424 server_synchronize.php:867 +#: server_synchronize.php:423 server_synchronize.php:866 msgid "Data Difference" msgstr "Diferenza dos datos" -#: server_synchronize.php:429 server_synchronize.php:872 +#: server_synchronize.php:428 server_synchronize.php:871 msgid "Add column(s)" msgstr "Engadir columna(s)" -#: server_synchronize.php:430 server_synchronize.php:873 +#: server_synchronize.php:429 server_synchronize.php:872 msgid "Remove column(s)" msgstr "Eliminar columna(s)" -#: server_synchronize.php:431 server_synchronize.php:874 +#: server_synchronize.php:430 server_synchronize.php:873 msgid "Alter column(s)" msgstr "Alterar columna(s)" -#: server_synchronize.php:432 server_synchronize.php:875 +#: server_synchronize.php:431 server_synchronize.php:874 msgid "Remove index(s)" msgstr "Eliminar índice(s)" -#: server_synchronize.php:433 server_synchronize.php:876 +#: server_synchronize.php:432 server_synchronize.php:875 msgid "Apply index(s)" msgstr "Aplicar índice(s)" -#: server_synchronize.php:434 server_synchronize.php:877 +#: server_synchronize.php:433 server_synchronize.php:876 msgid "Update row(s)" msgstr "Actualizar fileira(s)" -#: server_synchronize.php:435 server_synchronize.php:878 +#: server_synchronize.php:434 server_synchronize.php:877 msgid "Insert row(s)" msgstr "Inserir fileira(s)" -#: server_synchronize.php:445 server_synchronize.php:889 +#: server_synchronize.php:444 server_synchronize.php:888 msgid "Would you like to delete all the previous rows from target tables?" msgstr "Quere eliminar todas as fileiras anteriores das táboas de destino?" -#: server_synchronize.php:448 server_synchronize.php:893 +#: server_synchronize.php:447 server_synchronize.php:892 msgid "Apply Selected Changes" msgstr "Aplicar as alteracións seleccionadas" -#: server_synchronize.php:450 server_synchronize.php:895 +#: server_synchronize.php:449 server_synchronize.php:894 msgid "Synchronize Databases" msgstr "Sincronizar as bases de datos" -#: server_synchronize.php:463 +#: server_synchronize.php:462 msgid "Selected target tables have been synchronized with source tables." msgstr "" "Sincronizáronse as táboas de destino seleccionadas coas táboas de orixe." -#: server_synchronize.php:941 +#: server_synchronize.php:940 #, fuzzy msgid "Target database has been synchronized with source database" msgstr "" "Sincronizáronse as táboas de destino seleccionadas coas táboas de orixe." -#: server_synchronize.php:1002 +#: server_synchronize.php:1001 msgid "The following queries have been executed:" msgstr "Executáronse as procuras seguintes:" -#: server_synchronize.php:1121 +#: server_synchronize.php:1120 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1122 +#: server_synchronize.php:1121 #, fuzzy #| msgid "Insecure connection" msgid "Current connection" msgstr "A conexión non é segura" -#: server_synchronize.php:1151 +#: server_synchronize.php:1150 #, fuzzy, php-format #| msgid "Configuration file" msgid "Configuration: %s" msgstr "Ficheiro de configuración" -#: server_synchronize.php:1166 +#: server_synchronize.php:1165 msgid "Socket" msgstr "Socket" -#: server_synchronize.php:1212 +#: server_synchronize.php:1211 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -6832,10 +6896,15 @@ msgid "Signon login options" msgstr "Opcións do rexistro de entrada" #: setup/lib/messages.inc.php:128 +#, fuzzy +#| msgid "" +#| "Configure phpMyAdmin database to gain access to additional features, see " +#| "[a@../Documentation.html#linked-tables]linked-tables infrastructure[/a] " +#| "in documentation" msgid "" "Configure phpMyAdmin database to gain access to additional features, see " -"[a@../Documentation.html#linked-tables]linked-tables infrastructure[/a] in " -"documentation" +"[a@../Documentation.html#linked-tables]phpMyAdmin configuration storage[/a] " +"in documentation" msgstr "" "Configurar o phpMyAdmin para ter acceso a funcionalidades adicionais; vexa " "[a@../Documentation.html#linked-tables]infraestrutura de táboas ligadas[/a] " @@ -8055,117 +8124,117 @@ msgstr "" msgid "ZIP" msgstr "ZIP" -#: sql.php:495 tbl_replace.php:385 +#: sql.php:494 tbl_replace.php:384 #, php-format msgid "Inserted row id: %1$d" msgstr "Identificador da fileira inserida: %1$d" -#: sql.php:512 +#: sql.php:511 msgid "Showing as PHP code" msgstr "Mostrar como código PHP" -#: sql.php:515 tbl_replace.php:359 +#: sql.php:514 tbl_replace.php:358 msgid "Showing SQL query" msgstr "Mostrar procura SQL" -#: sql.php:517 +#: sql.php:516 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Validar o SQL" -#: sql.php:638 +#: sql.php:631 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemas cos índices da táboa `%s`" -#: sql.php:670 +#: sql.php:663 msgid "Label" msgstr "Nome" -#: tbl_addfield.php:188 tbl_alter.php:102 tbl_indexes.php:97 +#: tbl_addfield.php:185 tbl_alter.php:100 tbl_indexes.php:97 #, php-format msgid "Table %1$s has been altered successfully" msgstr "Alterouse a táboa %1$s sen problemas" -#: tbl_change.php:250 tbl_select.php:26 tbl_select.php:27 tbl_select.php:30 -#: tbl_select.php:33 +#: tbl_change.php:245 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_select.php:32 msgid "Browse foreign values" msgstr "Visualizar valores alleos" -#: tbl_change.php:280 tbl_change.php:318 +#: tbl_change.php:275 tbl_change.php:313 msgid "Function" msgstr "Función" -#: tbl_change.php:300 tbl_indexes.php:199 tbl_indexes.php:224 +#: tbl_change.php:295 tbl_indexes.php:198 tbl_indexes.php:223 msgid "Ignore" msgstr "Ignorar" -#: tbl_change.php:725 +#: tbl_change.php:720 #, fuzzy #| msgid " Because of its length,
                            this field might not be editable " msgid " Because of its length,
                            this column might not be editable " msgstr " Por causa da sua lonxitude,
                            este campo pode non ser editábel " -#: tbl_change.php:884 +#: tbl_change.php:835 msgid "Remove BLOB Repository Reference" msgstr "Eliminar a referencia ao repositorio BLOB" -#: tbl_change.php:890 +#: tbl_change.php:841 msgid "Binary - do not edit" msgstr " Binario - non editar " -#: tbl_change.php:983 +#: tbl_change.php:889 msgid "Upload to BLOB repository" msgstr "Enviar ao repositorio de BLOB" -#: tbl_change.php:1128 +#: tbl_change.php:1026 msgid "Insert as new row" msgstr "Inserir unha columna nova" -#: tbl_change.php:1129 +#: tbl_change.php:1027 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:1130 +#: tbl_change.php:1028 #, fuzzy msgid "Show insert query" msgstr "Mostrar procura SQL" -#: tbl_change.php:1145 +#: tbl_change.php:1043 msgid "Go back to previous page" msgstr "Voltar" -#: tbl_change.php:1146 +#: tbl_change.php:1044 msgid "Insert another new row" msgstr "Inserir un rexistro novo" -#: tbl_change.php:1150 +#: tbl_change.php:1048 msgid "Go back to this page" msgstr "Voltar para esta páxina" -#: tbl_change.php:1158 +#: tbl_change.php:1056 msgid "Edit next row" msgstr "Modificar a fileira seguinte" -#: tbl_change.php:1169 +#: tbl_change.php:1067 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Use a tecla do tabulador para moverse de valor en valor ou a tecla CONTROL " "combinada cunha flecha para moverse a calquera sitio" -#: tbl_change.php:1207 +#: tbl_change.php:1105 #, php-format msgid "Restart insertion with %s rows" msgstr "Reiniciar a inserción con %s fileiras" -#: tbl_create.php:57 +#: tbl_create.php:55 #, php-format msgid "Table %s already exists!" msgstr "Xa existe a táboa %s!!" -#: tbl_create.php:244 +#: tbl_create.php:241 #, php-format msgid "Table %1$s has been created." msgstr "Creouse a táboa %1$s." @@ -8186,196 +8255,196 @@ msgstr "Non se pode facer que este índice sexa PRIMARIO!" msgid "No index parts defined!" msgstr "Non se definiron partes do índice" -#: tbl_indexes.php:159 +#: tbl_indexes.php:158 msgid "Create a new index" msgstr "Crear un índice novo" -#: tbl_indexes.php:161 +#: tbl_indexes.php:160 msgid "Modify an index" msgstr "Modificar un índice" -#: tbl_indexes.php:167 +#: tbl_indexes.php:166 msgid "Index name:" msgstr "Nome do índice :" -#: tbl_indexes.php:173 +#: tbl_indexes.php:172 msgid "Index type:" msgstr "Tipo de índice :" -#: tbl_indexes.php:183 +#: tbl_indexes.php:182 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" "(\"PRIMARIA\" debe ser o nome de e só de unha chave primaria)" -#: tbl_indexes.php:250 +#: tbl_indexes.php:249 #, php-format msgid "Add to index  %s column(s)" msgstr "Engadir ao índice  %s coluna(s)" -#: tbl_indexes.php:255 tbl_structure.php:588 tbl_structure.php:599 +#: tbl_indexes.php:254 tbl_structure.php:586 tbl_structure.php:597 msgid "Column count has to be larger than zero." msgstr "O número de columnas ten que ser maior de cero" -#: tbl_move_copy.php:45 +#: tbl_move_copy.php:44 msgid "Can't move table to same one!" msgstr "Non se pode mover unha táboa sobre si mesma" -#: tbl_move_copy.php:47 +#: tbl_move_copy.php:46 msgid "Can't copy table to same one!" msgstr "Non se pode copiar unha táboa sobre si mesma" -#: tbl_move_copy.php:55 +#: tbl_move_copy.php:54 #, php-format msgid "Table %s has been moved to %s." msgstr "Moveuse a táboa %s para %s." -#: tbl_move_copy.php:57 +#: tbl_move_copy.php:56 #, php-format msgid "Table %s has been copied to %s." msgstr "A táboa %s copiouse para %s." -#: tbl_move_copy.php:81 +#: tbl_move_copy.php:80 msgid "The table name is empty!" msgstr "O nome da táboa está vacío!" -#: tbl_operations.php:248 +#: tbl_operations.php:246 msgid "Alter table order by" msgstr "Ordenar a táboa por" -#: tbl_operations.php:257 +#: tbl_operations.php:255 msgid "(singly)" msgstr "a refacer logo de insercións e destrucións (shingly)" -#: tbl_operations.php:277 +#: tbl_operations.php:275 msgid "Move table to (database.table):" msgstr "Mover a táboa a (base_de_datos.táboa):" -#: tbl_operations.php:335 +#: tbl_operations.php:333 msgid "Table options" msgstr "Opcións da táboa" -#: tbl_operations.php:339 +#: tbl_operations.php:337 msgid "Rename table to" msgstr "Mudar o nome da táboa para" -#: tbl_operations.php:510 +#: tbl_operations.php:508 msgid "Copy table to (database.table):" msgstr "Copiar a táboa a (base_de_datos.táboa):" -#: tbl_operations.php:557 +#: tbl_operations.php:555 msgid "Switch to copied table" msgstr "Ir à táboa copiada" -#: tbl_operations.php:569 +#: tbl_operations.php:567 msgid "Table maintenance" msgstr "Táboa de mantemento" -#: tbl_operations.php:590 +#: tbl_operations.php:588 msgid "Defragment table" msgstr "Táboa de desfragmentación" -#: tbl_operations.php:629 +#: tbl_operations.php:627 #, php-format msgid "Table %s has been flushed" msgstr "Fechouse a táboa %s" -#: tbl_operations.php:635 +#: tbl_operations.php:633 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Fechar a táboa (\"FLUSH\")" -#: tbl_operations.php:650 +#: tbl_operations.php:648 msgid "Partition maintenance" msgstr "Mantemento da partición" -#: tbl_operations.php:658 +#: tbl_operations.php:656 #, php-format msgid "Partition %s" msgstr "Partición %s" -#: tbl_operations.php:661 +#: tbl_operations.php:659 msgid "Analyze" msgstr "Analizar" -#: tbl_operations.php:662 +#: tbl_operations.php:660 msgid "Check" msgstr "Comprobar" -#: tbl_operations.php:663 +#: tbl_operations.php:661 msgid "Optimize" msgstr "Optimizar" -#: tbl_operations.php:664 +#: tbl_operations.php:662 msgid "Rebuild" msgstr "Reconstruír" -#: tbl_operations.php:665 +#: tbl_operations.php:663 msgid "Repair" msgstr "Arranxar" -#: tbl_operations.php:677 +#: tbl_operations.php:675 msgid "Remove partitioning" msgstr "Eliminar particións" -#: tbl_operations.php:703 +#: tbl_operations.php:701 msgid "Check referential integrity:" msgstr "Comprobar a integridade das referencias:" -#: tbl_printview.php:73 +#: tbl_printview.php:72 msgid "Show tables" msgstr "Mostrar as táboas" -#: tbl_printview.php:308 tbl_structure.php:655 +#: tbl_printview.php:307 tbl_structure.php:653 msgid "Space usage" msgstr "Uso do espazo" -#: tbl_printview.php:312 tbl_structure.php:659 +#: tbl_printview.php:311 tbl_structure.php:657 msgid "Usage" msgstr "Uso" -#: tbl_printview.php:339 tbl_structure.php:686 +#: tbl_printview.php:338 tbl_structure.php:684 msgid "Effective" msgstr "Efectivo" -#: tbl_printview.php:364 tbl_structure.php:724 +#: tbl_printview.php:363 tbl_structure.php:722 msgid "Row Statistics" msgstr "Estatísticas da fileira" -#: tbl_printview.php:367 tbl_structure.php:727 +#: tbl_printview.php:366 tbl_structure.php:725 msgid "Statements" msgstr "Informacións" -#: tbl_printview.php:378 tbl_structure.php:739 +#: tbl_printview.php:377 tbl_structure.php:737 msgid "static" msgstr "estático" -#: tbl_printview.php:380 tbl_structure.php:741 +#: tbl_printview.php:379 tbl_structure.php:739 msgid "dynamic" msgstr "dinámico" -#: tbl_printview.php:402 tbl_structure.php:784 +#: tbl_printview.php:401 tbl_structure.php:782 msgid "Row length" msgstr "Lonxitude da fileira" -#: tbl_printview.php:412 tbl_structure.php:792 +#: tbl_printview.php:411 tbl_structure.php:790 msgid " Row size " msgstr " Tamaño da fileira " -#: tbl_relation.php:278 +#: tbl_relation.php:276 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" "Houbo un erro ao crear a chave externa en %1$s (comprobe os tipos de datos)" -#: tbl_relation.php:404 +#: tbl_relation.php:402 #, fuzzy #| msgid "Internal relations" msgid "Internal relation" msgstr "Relacións internas" -#: tbl_relation.php:406 +#: tbl_relation.php:404 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -8383,7 +8452,7 @@ msgstr "" "Non se precisas unha relación interna cando existe unha CHAVE EXTERNA " "correspondente." -#: tbl_relation.php:412 +#: tbl_relation.php:410 #, fuzzy #| msgid "Foreign key limit" msgid "Foreign key constraint" @@ -8393,229 +8462,229 @@ msgstr "Límite das chaves alleas" msgid "No rows selected" msgstr "Non hai ningunha fileira seleccionada" -#: tbl_select.php:130 +#: tbl_select.php:129 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Faga unha \"procura por exemplo\" (o comodín é \"%\")" -#: tbl_select.php:136 +#: tbl_select.php:135 msgid "Operator" msgstr "Operador" -#: tbl_select.php:267 +#: tbl_select.php:266 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "Seleccione os campos (mínimo un)" -#: tbl_select.php:285 +#: tbl_select.php:284 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Condición da pesquisa (ou sexa, o complemento da cláusula \"WHERE\"):" -#: tbl_select.php:292 +#: tbl_select.php:291 msgid "Number of rows per page" msgstr "Número de rexistros por páxina:" -#: tbl_select.php:298 +#: tbl_select.php:297 msgid "Display order:" msgstr "Mostrar en orde:" -#: tbl_structure.php:160 +#: tbl_structure.php:159 msgid "Browse distinct values" msgstr "Examinar valores claramente distintos" -#: tbl_structure.php:360 +#: tbl_structure.php:358 #, fuzzy #| msgid "None" msgctxt "None for default" msgid "None" msgstr "Ningunha" -#: tbl_structure.php:373 +#: tbl_structure.php:371 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Column %s has been dropped" msgstr "Eliminouse a táboa %s" -#: tbl_structure.php:384 +#: tbl_structure.php:382 #, php-format msgid "A primary key has been added on %s" msgstr "Engadiuse unha chave primaria a %s" -#: tbl_structure.php:399 tbl_structure.php:413 tbl_structure.php:427 +#: tbl_structure.php:397 tbl_structure.php:411 tbl_structure.php:425 #, php-format msgid "An index has been added on %s" msgstr "Engadiusese un índice a %s" -#: tbl_structure.php:505 tbl_structure.php:507 +#: tbl_structure.php:503 tbl_structure.php:505 msgid "Relation view" msgstr "Vista das relacións" -#: tbl_structure.php:514 tbl_structure.php:516 +#: tbl_structure.php:512 tbl_structure.php:514 msgid "Propose table structure" msgstr "Propor unha estrutura para a táboa" -#: tbl_structure.php:539 +#: tbl_structure.php:537 #, fuzzy #| msgid "Add column(s)" msgid "Add column" msgstr "Engadir columna(s)" -#: tbl_structure.php:553 +#: tbl_structure.php:551 msgid "At End of Table" msgstr "Ao final da táboa" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At Beginning of Table" msgstr "No comezo da táboa" -#: tbl_structure.php:555 +#: tbl_structure.php:553 #, php-format msgid "After %s" msgstr "Despois de %s" -#: tbl_structure.php:593 +#: tbl_structure.php:591 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "Crear un índice en %s colunas" -#: tbl_structure.php:755 +#: tbl_structure.php:753 msgid "partitioned" msgstr "particionado" -#: tbl_tracking.php:113 +#: tbl_tracking.php:109 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:186 +#: tbl_tracking.php:182 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "Creouse a versión %s; activouse o seguemento de %s.%s." -#: tbl_tracking.php:194 +#: tbl_tracking.php:190 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "Desactivouse o seguemento de %s.%s , versión %s." -#: tbl_tracking.php:202 +#: tbl_tracking.php:198 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "Activouse o seguemento de %s.%s , versión %s." -#: tbl_tracking.php:212 +#: tbl_tracking.php:208 msgid "SQL statements executed." msgstr "Declaracións SQL executadas." -#: tbl_tracking.php:219 +#: tbl_tracking.php:215 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:220 +#: tbl_tracking.php:216 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:229 +#: tbl_tracking.php:225 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "Declaracións SQL exportadas. Copie o volcado ou execúteo." -#: tbl_tracking.php:250 tbl_tracking.php:378 +#: tbl_tracking.php:245 tbl_tracking.php:373 msgid "Close" msgstr "Fechar" -#: tbl_tracking.php:261 +#: tbl_tracking.php:256 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Instantánea da versión %s (código SQL)" -#: tbl_tracking.php:380 +#: tbl_tracking.php:375 msgid "Tracking statements" msgstr "Declaracións de seguemento" -#: tbl_tracking.php:396 tbl_tracking.php:503 +#: tbl_tracking.php:391 tbl_tracking.php:498 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "Mostrar %s con datas de %s a %s polo usuario %s %s" -#: tbl_tracking.php:409 tbl_tracking.php:460 +#: tbl_tracking.php:404 tbl_tracking.php:455 msgid "Date" msgstr "Data" -#: tbl_tracking.php:410 tbl_tracking.php:461 +#: tbl_tracking.php:405 tbl_tracking.php:456 msgid "Username" msgstr "Nome de usuario" -#: tbl_tracking.php:411 +#: tbl_tracking.php:406 msgid "Data definition statement" msgstr "Declaración de definición de datos" -#: tbl_tracking.php:462 +#: tbl_tracking.php:457 msgid "Data manipulation statement" msgstr "Declaración de manipulación de datos" -#: tbl_tracking.php:506 +#: tbl_tracking.php:501 msgid "SQL dump (file download)" msgstr "Volcado de SQL (descarga do ficheiro)" -#: tbl_tracking.php:507 +#: tbl_tracking.php:502 msgid "SQL dump" msgstr "Volcado de SQL" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "This option will replace your table and contained data." msgstr "Esta opción substitúe a táboa e os datos que contén." -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "SQL execution" msgstr "Execución de SQL" -#: tbl_tracking.php:520 +#: tbl_tracking.php:515 #, php-format msgid "Export as %s" msgstr "Exportar como %s" -#: tbl_tracking.php:560 +#: tbl_tracking.php:555 msgid "Show versions" msgstr "Mostrar as versións" -#: tbl_tracking.php:592 +#: tbl_tracking.php:587 msgid "Version" msgstr "Versión" -#: tbl_tracking.php:639 +#: tbl_tracking.php:634 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "Desactivar o seguemento de %s.%s" -#: tbl_tracking.php:641 +#: tbl_tracking.php:636 msgid "Deactivate now" msgstr "Desactivar agora" -#: tbl_tracking.php:652 +#: tbl_tracking.php:647 #, php-format msgid "Activate tracking for %s.%s" msgstr "Activar o seguemento de %s.%s" -#: tbl_tracking.php:654 +#: tbl_tracking.php:649 msgid "Activate now" msgstr "Activar agora" -#: tbl_tracking.php:667 +#: tbl_tracking.php:662 #, php-format msgid "Create version %s of %s.%s" msgstr "Crear a versión %s de %s.%s" -#: tbl_tracking.php:671 +#: tbl_tracking.php:666 msgid "Track these data definition statements:" msgstr "Seguir estas declaracións de definición de datos:" -#: tbl_tracking.php:679 +#: tbl_tracking.php:674 msgid "Track these data manipulation statements:" msgstr "Seguir estas declaracións de manipulación de datos:" -#: tbl_tracking.php:687 +#: tbl_tracking.php:682 msgid "Create version" msgstr "Crear unha versión" @@ -8665,11 +8734,41 @@ msgstr "Actualizouse o perfil." msgid "VIEW name" msgstr "Nome da VISTA" -#: view_operations.php:92 +#: view_operations.php:91 #, fuzzy msgid "Rename view to" msgstr "Mudar o nome da táboa para" +#~ msgid "BLOB Repository" +#~ msgstr "Repositorio de BLOB" + +#, fuzzy +#~| msgid "Enabled" +#~ msgctxt "BLOB repository" +#~ msgid "Enabled" +#~ msgstr "Activado" + +#~ msgid "Disable" +#~ msgstr "Desactivar" + +#~ msgid "Damaged" +#~ msgstr "Danada" + +#, fuzzy +#~| msgid "Repair" +#~ msgctxt "BLOB repository" +#~ msgid "Repair" +#~ msgstr "Arranxar" + +#, fuzzy +#~| msgid "Disabled" +#~ msgctxt "BLOB repository" +#~ msgid "Disabled" +#~ msgstr "Desactivado" + +#~ msgid "Enable" +#~ msgstr "Activar" + #~ msgid "" #~ "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " #~ "extension. Please check your PHP configuration." diff --git a/po/he.po b/po/he.po index 5ebccf82e..dcb7909a6 100644 --- a/po/he.po +++ b/po/he.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-21 13:53+0200\n" +"POT-Creation-Date: 2010-07-26 17:18+0200\n" "PO-Revision-Date: 2010-03-12 09:15+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: hebrew \n" @@ -13,158 +13,170 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.5.3\n" -#: browse_foreigners.php:37 browse_foreigners.php:58 -#: libraries/display_tbl.lib.php:416 server_privileges.php:1506 +#: browse_foreigners.php:36 browse_foreigners.php:57 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1510 msgid "Show all" msgstr "ראיית הכל" -#: browse_foreigners.php:81 libraries/common.lib.php:2313 -#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:393 -#: libraries/export/pdf.php:146 pdf_schema.php:282 pdf_schema.php:1122 -#: pdf_schema.php:1138 +#: browse_foreigners.php:80 libraries/common.lib.php:2318 +#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:392 +#: libraries/export/pdf.php:146 pdf_schema.php:281 pdf_schema.php:1121 +#: pdf_schema.php:1137 msgid "Page number:" msgstr "מספר דף:" -#: browse_foreigners.php:131 +#: browse_foreigners.php:130 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " "cross-window updates." msgstr "" -#: browse_foreigners.php:149 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2829 -#: libraries/common.lib.php:2836 libraries/db_links.inc.php:74 -#: libraries/tbl_links.inc.php:62 +#: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 +#: db_structure.php:89 db_structure.php:91 db_structure.php:102 +#: db_structure.php:104 libraries/common.lib.php:2834 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "חיפוש" -#: browse_foreigners.php:152 db_operations.php:384 db_operations.php:428 -#: db_operations.php:498 db_operations.php:608 db_search.php:344 -#: db_structure.php:566 js/messages.php:48 libraries/Config.class.php:1043 -#: libraries/Theme_Manager.class.php:310 +#: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 +#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 +#: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 -#: libraries/common.lib.php:1340 libraries/common.lib.php:2289 +#: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 -#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:275 -#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:531 -#: libraries/display_tbl.lib.php:613 libraries/replication_gui.lib.php:75 +#: libraries/display_export.lib.php:269 libraries/display_import.lib.php:275 +#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 +#: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 #: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:781 -#: main.php:127 navigation.php:231 pdf_pages.php:291 pdf_pages.php:327 -#: pdf_pages.php:529 pmd_pdf.php:115 server_binlog.php:128 -#: server_privileges.php:664 server_privileges.php:1616 -#: server_privileges.php:1963 server_privileges.php:2010 -#: server_privileges.php:2049 server_replication.php:234 -#: server_replication.php:317 server_replication.php:340 -#: server_synchronize.php:1208 tbl_change.php:328 tbl_change.php:1172 -#: tbl_change.php:1209 tbl_indexes.php:253 tbl_operations.php:264 -#: tbl_operations.php:301 tbl_operations.php:498 tbl_operations.php:560 -#: tbl_operations.php:680 tbl_select.php:324 tbl_structure.php:561 -#: tbl_structure.php:596 tbl_tracking.php:394 tbl_tracking.php:511 -#: view_create.php:181 view_operations.php:100 +#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 +#: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 +#: server_privileges.php:663 server_privileges.php:1620 +#: server_privileges.php:1967 server_privileges.php:2014 +#: server_privileges.php:2053 server_replication.php:233 +#: server_replication.php:316 server_replication.php:339 +#: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 +#: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 +#: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 +#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "סע" -#: browse_foreigners.php:167 browse_foreigners.php:171 -#: libraries/Index.class.php:441 tbl_tracking.php:319 +#: browse_foreigners.php:166 browse_foreigners.php:170 +#: libraries/Index.class.php:441 tbl_tracking.php:314 msgid "Keyname" msgstr "" -#: browse_foreigners.php:168 browse_foreigners.php:170 -#: server_collations.php:54 server_collations.php:66 server_engines.php:58 +#: browse_foreigners.php:167 browse_foreigners.php:169 +#: server_collations.php:54 server_collations.php:66 server_engines.php:57 #: server_status.php:738 msgid "Description" msgstr "תיאור" -#: browse_foreigners.php:246 browse_foreigners.php:255 -#: browse_foreigners.php:267 browse_foreigners.php:275 +#: browse_foreigners.php:245 browse_foreigners.php:254 +#: browse_foreigners.php:266 browse_foreigners.php:274 msgid "Use this value" msgstr "השתמש בערך זה" -#: db_create.php:45 +#: bs_disp_as_mime_type.php:29 bs_play_media.php:35 +msgid "No blob streaming server configured!" +msgstr "" + +#: bs_disp_as_mime_type.php:35 +msgid "Failed to fetch headers" +msgstr "" + +#: bs_disp_as_mime_type.php:41 +msgid "Failed to open remote URL" +msgstr "" + +#: db_create.php:44 #, fuzzy, php-format msgid "Database %1$s has been created." msgstr "מסד הנתונים %s נמחק." -#: db_datadict.php:48 db_operations.php:377 +#: db_datadict.php:48 db_operations.php:313 msgid "Database comment: " msgstr "הערה על מאגר הנתונים: " -#: db_datadict.php:164 libraries/tbl_properties.inc.php:723 -#: pdf_schema.php:1235 tbl_operations.php:346 tbl_printview.php:128 +#: db_datadict.php:164 libraries/tbl_properties.inc.php:722 +#: pdf_schema.php:1234 tbl_operations.php:344 tbl_printview.php:127 msgid "Table comments" msgstr "הערות טבלה" -#: db_datadict.php:173 db_qbe.php:173 libraries/Index.class.php:445 +#: db_datadict.php:173 db_qbe.php:170 libraries/Index.class.php:445 #: libraries/export/htmlword.php:243 libraries/export/latex.php:364 #: libraries/export/odt.php:293 libraries/export/texytext.php:233 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:274 -#: pdf_schema.php:1261 pdf_schema.php:1282 tbl_change.php:306 -#: tbl_indexes.php:188 tbl_printview.php:140 tbl_relation.php:401 -#: tbl_select.php:133 tbl_structure.php:176 tbl_tracking.php:272 -#: tbl_tracking.php:323 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 +#: pdf_schema.php:1260 pdf_schema.php:1281 tbl_change.php:301 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:132 tbl_structure.php:175 tbl_tracking.php:267 +#: tbl_tracking.php:318 #, fuzzy #| msgid "Column names" msgid "Column" msgstr "שמות עמודה" -#: db_datadict.php:174 db_printview.php:105 libraries/Index.class.php:442 +#: db_datadict.php:174 db_printview.php:104 libraries/Index.class.php:442 #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 #: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:244 #: libraries/export/latex.php:364 libraries/export/odt.php:296 #: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:99 -#: pdf_schema.php:1262 pdf_schema.php:1283 server_privileges.php:2062 -#: tbl_change.php:285 tbl_change.php:312 tbl_printview.php:141 -#: tbl_printview.php:311 tbl_select.php:134 tbl_structure.php:177 -#: tbl_structure.php:658 tbl_tracking.php:273 tbl_tracking.php:320 +#: pdf_schema.php:1261 pdf_schema.php:1282 server_privileges.php:2066 +#: tbl_change.php:280 tbl_change.php:307 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:133 tbl_structure.php:176 +#: tbl_structure.php:656 tbl_tracking.php:268 tbl_tracking.php:315 msgid "Type" msgstr "סוג" #: db_datadict.php:176 libraries/Index.class.php:448 #: libraries/export/htmlword.php:245 libraries/export/latex.php:364 #: libraries/export/odt.php:299 libraries/export/texytext.php:235 -#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1264 -#: pdf_schema.php:1285 tbl_change.php:321 tbl_printview.php:143 -#: tbl_structure.php:180 tbl_tracking.php:275 tbl_tracking.php:326 +#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1263 +#: pdf_schema.php:1284 tbl_change.php:316 tbl_printview.php:142 +#: tbl_structure.php:179 tbl_tracking.php:270 tbl_tracking.php:321 msgid "Null" msgstr "Null" -#: db_datadict.php:177 db_structure.php:500 libraries/export/htmlword.php:246 +#: db_datadict.php:177 db_structure.php:486 libraries/export/htmlword.php:246 #: libraries/export/latex.php:364 libraries/export/odt.php:302 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:105 -#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 -#: tbl_structure.php:181 tbl_tracking.php:276 +#: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:143 +#: tbl_structure.php:180 tbl_tracking.php:271 msgid "Default" msgstr "ברירת מחדל" #: db_datadict.php:181 libraries/export/htmlword.php:248 #: libraries/export/latex.php:366 libraries/export/odt.php:306 -#: libraries/export/texytext.php:238 pdf_schema.php:1267 pdf_schema.php:1288 -#: tbl_printview.php:148 +#: libraries/export/texytext.php:238 pdf_schema.php:1266 pdf_schema.php:1287 +#: tbl_printview.php:147 msgid "Links to" msgstr "קישורים אל" -#: db_datadict.php:183 db_printview.php:111 libraries/export/htmlword.php:251 +#: db_datadict.php:183 db_printview.php:110 libraries/export/htmlword.php:251 #: libraries/export/latex.php:49 libraries/export/latex.php:369 #: libraries/export/odt.php:37 libraries/export/odt.php:311 #: libraries/export/sql.php:29 libraries/export/texytext.php:241 -#: libraries/tbl_properties.inc.php:129 pdf_schema.php:1278 -#: pdf_schema.php:1289 tbl_printview.php:150 +#: libraries/tbl_properties.inc.php:128 pdf_schema.php:1277 +#: pdf_schema.php:1288 tbl_printview.php:149 msgid "Comments" msgstr "הערות" #: db_datadict.php:266 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/export/htmlword.php:321 #: libraries/export/latex.php:434 libraries/export/odt.php:367 -#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:262 -#: pdf_schema.php:1343 server_privileges.php:1560 server_privileges.php:1571 -#: server_privileges.php:1881 server_privileges.php:1886 -#: server_privileges.php:2179 sql.php:131 sql.php:193 tbl_printview.php:227 -#: tbl_structure.php:349 tbl_tracking.php:336 tbl_tracking.php:341 +#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:261 +#: pdf_schema.php:1342 server_privileges.php:1564 server_privileges.php:1575 +#: server_privileges.php:1885 server_privileges.php:1890 +#: server_privileges.php:2183 sql.php:130 sql.php:192 tbl_printview.php:226 +#: tbl_structure.php:347 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "לא" @@ -175,17 +187,17 @@ msgstr "לא" #: libraries/mult_submits.inc.php:49 libraries/mult_submits.inc.php:54 #: libraries/mult_submits.inc.php:59 libraries/mult_submits.inc.php:91 #: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:105 -#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:261 -#: libraries/mult_submits.inc.php:272 pdf_schema.php:1343 -#: server_databases.php:63 server_privileges.php:1557 -#: server_privileges.php:1571 server_privileges.php:1881 -#: server_privileges.php:1884 server_privileges.php:2179 sql.php:192 -#: tbl_printview.php:227 tbl_structure.php:39 tbl_structure.php:349 -#: tbl_tracking.php:334 tbl_tracking.php:339 +#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:260 +#: libraries/mult_submits.inc.php:271 pdf_schema.php:1342 +#: server_databases.php:61 server_privileges.php:1561 +#: server_privileges.php:1575 server_privileges.php:1885 +#: server_privileges.php:1888 server_privileges.php:2183 sql.php:191 +#: tbl_printview.php:226 tbl_structure.php:38 tbl_structure.php:347 +#: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" msgstr "כן" -#: db_datadict.php:321 db_printview.php:265 tbl_printview.php:496 +#: db_datadict.php:321 db_printview.php:264 tbl_printview.php:495 msgid "Print" msgstr "הדפסה" @@ -193,194 +205,153 @@ msgstr "הדפסה" msgid "View dump (schema) of database" msgstr "ראיית הוצאה (תבנית) של מאגר נתונים" -#: db_export.php:32 db_printview.php:95 db_qbe.php:101 db_structure.php:50 -#: db_tracking.php:34 export.php:352 navigation.php:326 +#: db_export.php:32 db_printview.php:94 db_qbe.php:98 db_structure.php:49 +#: db_tracking.php:30 export.php:350 navigation.php:325 msgid "No tables found in database." msgstr "לא נמצאו טבלאות במאגר נתונים." -#: db_export.php:42 db_search.php:326 server_export.php:26 +#: db_export.php:42 db_search.php:326 server_export.php:24 msgid "Select All" msgstr "בחירת הכל" -#: db_export.php:44 db_search.php:329 server_export.php:28 +#: db_export.php:44 db_search.php:329 server_export.php:26 msgid "Unselect All" msgstr "בטל בחירת הכל" -#: db_operations.php:37 tbl_create.php:49 +#: db_operations.php:33 tbl_create.php:47 msgid "The database name is empty!" msgstr "שם מאגר הנתונים ריק!" -#: db_operations.php:235 +#: db_operations.php:231 #, php-format msgid "Database %s has been renamed to %s" msgstr "מאגר נתונים %s שונה אל %s" -#: db_operations.php:239 +#: db_operations.php:235 #, php-format msgid "Database %s has been copied to %s" msgstr "מאגר נתונים %s הועתק אל %s" -#: db_operations.php:411 +#: db_operations.php:347 msgid "Rename database to" msgstr "שינוי שם מאגר נתונים אל" -#: db_operations.php:416 server_processlist.php:56 +#: db_operations.php:352 server_processlist.php:56 msgid "Command" msgstr "פקודה" -#: db_operations.php:428 tbl_change.php:1141 +#: db_operations.php:364 tbl_change.php:1039 msgid "and then" msgstr "ואז" -#: db_operations.php:454 +#: db_operations.php:390 msgid "Copy database to" msgstr "העתקת מאגר נתונים אל" -#: db_operations.php:461 tbl_operations.php:527 tbl_tracking.php:387 +#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "מבנה בלבד" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:389 +#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "מבנה ומידע" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:388 +#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "מידע בלבד" -#: db_operations.php:471 +#: db_operations.php:407 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE לפני העתקה" -#: db_operations.php:474 libraries/export/sql.php:51 +#: db_operations.php:410 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 -#: libraries/export/sql.php:81 tbl_operations.php:535 +#: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "" -#: db_operations.php:478 libraries/export/sql.php:77 tbl_operations.php:298 -#: tbl_operations.php:537 +#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "הוספת ערך AUTO_INCREMENT (מספור אוטומטי)" -#: db_operations.php:482 tbl_operations.php:544 +#: db_operations.php:418 tbl_operations.php:542 msgid "Add constraints" msgstr "הוספת הגבלות" -#: db_operations.php:495 +#: db_operations.php:431 msgid "Switch to copied database" msgstr "מעבר למאגר נתונים שהועתק" -#: db_operations.php:536 -msgid "BLOB Repository" -msgstr "" - -#: db_operations.php:539 db_tracking.php:75 libraries/common.lib.php:1357 -#: libraries/server_links.inc.php:48 server_processlist.php:58 -#: tbl_tracking.php:595 test/theme.php:100 -msgid "Status" -msgstr "מצב" - -#: db_operations.php:547 -#, fuzzy -#| msgid "Enabled" -msgctxt "BLOB repository" -msgid "Enabled" -msgstr "מופעל" - -#: db_operations.php:551 -#, fuzzy -msgid "Disable" -msgstr "מבוטל" - -#: db_operations.php:561 -msgid "Damaged" -msgstr "" - -#: db_operations.php:565 -#, fuzzy -msgctxt "BLOB repository" -msgid "Repair" -msgstr "תיקון טבלה" - -#: db_operations.php:573 -#, fuzzy -#| msgid "Disabled" -msgctxt "BLOB repository" -msgid "Disabled" -msgstr "מבוטל" - -#: db_operations.php:577 -#, fuzzy -msgid "Enable" -msgstr "מופעל" - -#: db_operations.php:601 libraries/Index.class.php:447 +#: db_operations.php:451 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 -#: server_collations.php:53 server_collations.php:65 server_databases.php:110 -#: tbl_operations.php:362 tbl_select.php:135 tbl_structure.php:178 -#: tbl_structure.php:766 tbl_tracking.php:274 tbl_tracking.php:325 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 +#: server_collations.php:53 server_collations.php:65 server_databases.php:108 +#: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:177 +#: tbl_structure.php:764 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "קידוד" -#: db_operations.php:614 main.php:315 pdf_schema.php:33 -#, php-format +#: db_operations.php:464 pdf_schema.php:32 +#, fuzzy, php-format +#| msgid "" +#| "The additional features for working with linked tables have been " +#| "deactivated. To find out why click %shere%s." msgid "" -"The additional features for working with linked tables have been " -"deactivated. To find out why click %shere%s." +"The phpMyAdmin configuration storage has been deactivated. To find out why " +"click %shere%s." msgstr "" "תכונות נוספות לעבודה עם טבלאות מקושרות בוטלו. לעוד מידע למה לחץ %sכאן%s." -#: db_operations.php:647 +#: db_operations.php:497 msgid "Edit PDF Pages" msgstr "עריכת דפי PDG" -#: db_printview.php:103 db_tracking.php:71 db_tracking.php:156 +#: db_printview.php:102 db_tracking.php:67 db_tracking.php:152 #: libraries/db_structure.lib.php:37 libraries/export/xml.php:327 -#: libraries/header.inc.php:125 pdf_pages.php:423 server_privileges.php:1657 -#: server_privileges.php:1713 server_privileges.php:1977 -#: server_synchronize.php:422 server_synchronize.php:865 tbl_tracking.php:591 +#: libraries/header.inc.php:125 pdf_pages.php:422 server_privileges.php:1661 +#: server_privileges.php:1717 server_privileges.php:1981 +#: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "טבלה" -#: db_printview.php:104 libraries/db_structure.lib.php:47 +#: db_printview.php:103 libraries/db_structure.lib.php:47 #: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 -#: navigation.php:629 navigation.php:651 server_databases.php:121 -#: tbl_printview.php:392 tbl_structure.php:364 tbl_structure.php:776 +#: navigation.php:628 navigation.php:650 server_databases.php:119 +#: tbl_printview.php:391 tbl_structure.php:362 tbl_structure.php:774 msgid "Rows" msgstr "שורות" -#: db_printview.php:108 libraries/db_structure.lib.php:58 tbl_indexes.php:189 +#: db_printview.php:107 libraries/db_structure.lib.php:58 tbl_indexes.php:188 msgid "Size" msgstr "גודל" -#: db_printview.php:161 db_structure.php:456 libraries/export/sql.php:556 +#: db_printview.php:160 db_structure.php:442 libraries/export/sql.php:556 #: libraries/export/sql.php:896 msgid "in use" msgstr "בשימוש" -#: db_printview.php:186 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:511 pdf_schema.php:1240 tbl_printview.php:432 -#: tbl_structure.php:808 +#: db_printview.php:185 libraries/db_info.inc.php:86 +#: libraries/export/sql.php:511 pdf_schema.php:1239 tbl_printview.php:431 +#: tbl_structure.php:806 msgid "Creation" msgstr "יצירה" -#: db_printview.php:195 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:516 pdf_schema.php:1245 tbl_printview.php:442 -#: tbl_structure.php:816 +#: db_printview.php:194 libraries/db_info.inc.php:91 +#: libraries/export/sql.php:516 pdf_schema.php:1244 tbl_printview.php:441 +#: tbl_structure.php:814 msgid "Last update" msgstr "עדכון אחרון" -#: db_printview.php:204 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:521 pdf_schema.php:1250 tbl_printview.php:452 -#: tbl_structure.php:824 +#: db_printview.php:203 libraries/db_info.inc.php:96 +#: libraries/export/sql.php:521 pdf_schema.php:1249 tbl_printview.php:451 +#: tbl_structure.php:822 msgid "Last check" msgstr "נבדק לאחרונה" -#: db_printview.php:221 db_structure.php:479 +#: db_printview.php:220 db_structure.php:465 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -388,94 +359,94 @@ msgid_plural "%s tables" msgstr[0] "%s טבלאות" msgstr[1] "%s טבלאות" -#: db_qbe.php:28 import.php:453 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1980 libraries/sql_query_form.lib.php:138 -#: tbl_operations.php:212 tbl_relation.php:291 tbl_row_action.php:130 -#: view_operations.php:61 +#: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 +#: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "שאילתת SQL שלך בוצעה בהצלחה" -#: db_qbe.php:41 +#: db_qbe.php:38 msgid "You have to choose at least one column to display" msgstr "עליך לבחור לפחות עמודה אחת לתצוגה" -#: db_qbe.php:199 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:865 +#: db_qbe.php:196 libraries/db_structure.lib.php:95 +#: libraries/display_tbl.lib.php:864 msgid "Sort" msgstr "סידור" -#: db_qbe.php:208 db_qbe.php:242 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:522 libraries/display_tbl.lib.php:827 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:259 -#: tbl_select.php:311 +#: db_qbe.php:205 db_qbe.php:239 libraries/db_structure.lib.php:102 +#: libraries/display_tbl.lib.php:521 libraries/display_tbl.lib.php:826 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:257 +#: tbl_select.php:310 msgid "Ascending" msgstr "עולה" -#: db_qbe.php:209 db_qbe.php:250 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:527 libraries/display_tbl.lib.php:824 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:260 -#: tbl_select.php:312 +#: db_qbe.php:206 db_qbe.php:247 libraries/db_structure.lib.php:110 +#: libraries/display_tbl.lib.php:526 libraries/display_tbl.lib.php:823 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:258 +#: tbl_select.php:311 msgid "Descending" msgstr "יורד" -#: db_qbe.php:263 db_tracking.php:77 libraries/display_tbl.lib.php:307 -#: tbl_change.php:275 tbl_tracking.php:596 +#: db_qbe.php:260 db_tracking.php:73 libraries/display_tbl.lib.php:306 +#: tbl_change.php:270 tbl_tracking.php:591 msgid "Show" msgstr "ראייה" -#: db_qbe.php:299 +#: db_qbe.php:296 msgid "Criteria" msgstr "קריטריון" -#: db_qbe.php:352 db_qbe.php:434 db_qbe.php:526 db_qbe.php:557 +#: db_qbe.php:349 db_qbe.php:431 db_qbe.php:523 db_qbe.php:554 msgid "Ins" msgstr "הכנסה" -#: db_qbe.php:356 db_qbe.php:438 db_qbe.php:523 db_qbe.php:554 +#: db_qbe.php:353 db_qbe.php:435 db_qbe.php:520 db_qbe.php:551 msgid "And" msgstr "וגם" -#: db_qbe.php:365 db_qbe.php:446 db_qbe.php:528 db_qbe.php:559 +#: db_qbe.php:362 db_qbe.php:443 db_qbe.php:525 db_qbe.php:556 msgid "Del" msgstr "מחיקה" -#: db_qbe.php:369 db_qbe.php:450 db_qbe.php:521 db_qbe.php:552 -#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:778 -#: server_privileges.php:297 tbl_change.php:1027 tbl_indexes.php:249 -#: tbl_select.php:285 +#: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 +#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:777 +#: server_privileges.php:296 tbl_change.php:925 tbl_indexes.php:248 +#: tbl_select.php:284 msgid "Or" msgstr "או" -#: db_qbe.php:506 +#: db_qbe.php:503 msgid "Modify" msgstr "עריכה" -#: db_qbe.php:583 +#: db_qbe.php:580 #, fuzzy #| msgid "Add/Delete Criteria Row" msgid "Add/Delete criteria rows" msgstr "Add/Delete Criteria Row" -#: db_qbe.php:595 +#: db_qbe.php:592 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Add/Delete columns" msgstr "הוספת/מחיקת עמודות שדה" -#: db_qbe.php:608 db_qbe.php:633 +#: db_qbe.php:605 db_qbe.php:630 msgid "Update Query" msgstr "עדכון שאילתה" -#: db_qbe.php:616 +#: db_qbe.php:613 msgid "Use Tables" msgstr "השתמש בטבלאות" -#: db_qbe.php:639 +#: db_qbe.php:636 #, php-format msgid "SQL query on database %s:" msgstr "" -#: db_qbe.php:933 libraries/common.lib.php:1222 +#: db_qbe.php:930 libraries/common.lib.php:1215 msgid "Submit Query" msgstr "שליחת שאילתה" @@ -514,17 +485,17 @@ msgid_plural "%s matches inside table %s" msgstr[0] "" msgstr[1] "" -#: db_search.php:249 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2831 -#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:49 -#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:466 +#: db_search.php:249 db_structure.php:75 db_structure.php:76 +#: db_structure.php:88 db_structure.php:90 db_structure.php:101 +#: db_structure.php:103 libraries/common.lib.php:2836 +#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 +#: tbl_structure.php:35 tbl_structure.php:47 tbl_structure.php:464 msgid "Browse" msgstr "עיון" -#: db_search.php:254 libraries/display_tbl.lib.php:1164 -#: libraries/display_tbl.lib.php:2055 libraries/sql_query_form.lib.php:453 -#: pdf_pages.php:285 pdf_pages.php:424 pdf_pages.php:460 pdf_pages.php:488 +#: db_search.php:254 libraries/display_tbl.lib.php:1163 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 msgid "Delete" @@ -564,231 +535,237 @@ msgstr "בתוך הטבלה/הטבלאות:" msgid "Inside column:" msgstr "בתוך הטבלה/הטבלאות:" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2830 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:75 +#: db_structure.php:79 db_structure.php:80 db_structure.php:92 +#: db_structure.php:93 db_structure.php:105 db_structure.php:106 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 +#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "הכנסה" -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2827 libraries/common.lib.php:2834 -#: libraries/db_links.inc.php:62 libraries/export/htmlword.php:22 +#: db_structure.php:81 db_structure.php:94 db_structure.php:107 +#: libraries/common.lib.php:2832 libraries/common.lib.php:2839 +#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 -#: libraries/tbl_links.inc.php:55 pmd_general.php:133 -#: server_privileges.php:593 server_replication.php:314 tbl_tracking.php:268 +#: libraries/tbl_links.inc.php:54 pmd_general.php:133 +#: server_privileges.php:592 server_replication.php:313 tbl_tracking.php:263 msgid "Structure" msgstr "מבנה" -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:544 db_structure.php:545 db_tracking.php:90 -#: libraries/Index.class.php:482 libraries/common.lib.php:1659 -#: libraries/db_links.inc.php:99 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:126 -#: server_databases.php:351 tbl_structure.php:26 tbl_structure.php:150 -#: tbl_structure.php:151 tbl_structure.php:470 +#: db_structure.php:82 db_structure.php:83 db_structure.php:95 +#: db_structure.php:96 db_structure.php:108 db_structure.php:109 +#: db_structure.php:530 db_structure.php:531 db_tracking.php:86 +#: libraries/Index.class.php:482 libraries/common.lib.php:1663 +#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 +#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 +#: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" msgstr "הסרה" -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:542 db_structure.php:543 libraries/common.lib.php:1658 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:104 +#: db_structure.php:84 db_structure.php:85 db_structure.php:97 +#: db_structure.php:98 db_structure.php:110 db_structure.php:111 +#: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 +#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 msgid "Empty" msgstr "ריקון" -#: db_structure.php:315 libraries/tbl_links.inc.php:99 +#: db_structure.php:301 libraries/tbl_links.inc.php:98 #, php-format msgid "Table %s has been emptied" msgstr "טבלה %s רוקנה" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, fuzzy, php-format msgid "View %s has been dropped" msgstr "שדה %s נמחק" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "Table %s has been dropped" msgstr "טבלה %s נמחקה" -#: db_structure.php:332 +#: db_structure.php:318 msgid "Tracking is active." msgstr "" -#: db_structure.php:334 +#: db_structure.php:320 msgid "Tracking is not active." msgstr "" -#: db_structure.php:419 libraries/display_tbl.lib.php:1943 +#: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -#: db_structure.php:433 db_structure.php:447 libraries/header.inc.php:125 -#: libraries/tbl_info.inc.php:65 tbl_structure.php:184 test/theme.php:73 +#: db_structure.php:419 db_structure.php:433 libraries/header.inc.php:125 +#: libraries/tbl_info.inc.php:60 tbl_structure.php:183 test/theme.php:73 msgid "View" msgstr "" -#: db_structure.php:484 libraries/db_structure.lib.php:40 -#: libraries/server_links.inc.php:69 server_replication.php:32 -#: server_replication.php:163 server_status.php:368 +#: db_structure.php:470 libraries/db_structure.lib.php:40 +#: libraries/server_links.inc.php:69 server_replication.php:31 +#: server_replication.php:162 server_status.php:368 #, fuzzy msgid "Replication" msgstr "יחסים" -#: db_structure.php:488 +#: db_structure.php:474 msgid "Sum" msgstr "סכום" -#: db_structure.php:495 libraries/StorageEngine.class.php:349 +#: db_structure.php:481 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s הוא מנוע האחסון ברירת המחדשל של שרת MySQL זה." -#: db_structure.php:523 db_structure.php:540 db_structure.php:541 -#: libraries/display_tbl.lib.php:2080 libraries/display_tbl.lib.php:2085 -#: libraries/mult_submits.inc.php:15 server_databases.php:345 -#: server_databases.php:350 server_privileges.php:1588 tbl_structure.php:454 -#: tbl_structure.php:463 +#: db_structure.php:509 db_structure.php:526 db_structure.php:527 +#: libraries/display_tbl.lib.php:2039 libraries/display_tbl.lib.php:2044 +#: libraries/mult_submits.inc.php:15 server_databases.php:343 +#: server_databases.php:348 server_privileges.php:1592 tbl_structure.php:452 +#: tbl_structure.php:461 msgid "With selected:" msgstr "עם הנבחרים:" -#: db_structure.php:526 libraries/display_tbl.lib.php:2075 -#: server_databases.php:347 server_privileges.php:569 -#: server_privileges.php:1591 tbl_structure.php:457 +#: db_structure.php:512 libraries/display_tbl.lib.php:2034 +#: server_databases.php:345 server_privileges.php:568 +#: server_privileges.php:1595 tbl_structure.php:455 msgid "Check All" msgstr "בחירת הכל" -#: db_structure.php:530 libraries/display_tbl.lib.php:2076 -#: libraries/replication_gui.lib.php:35 server_databases.php:349 -#: server_privileges.php:572 server_privileges.php:1595 tbl_structure.php:461 +#: db_structure.php:516 libraries/display_tbl.lib.php:2035 +#: libraries/replication_gui.lib.php:35 server_databases.php:347 +#: server_privileges.php:571 server_privileges.php:1599 tbl_structure.php:459 msgid "Uncheck All" msgstr "בטל סימון הכל" -#: db_structure.php:535 +#: db_structure.php:521 msgid "Check tables having overhead" msgstr "בדיקת טבלאות עבור תקורה" -#: db_structure.php:546 db_structure.php:547 db_structure.php:598 -#: libraries/display_tbl.lib.php:2179 libraries/mult_submits.inc.php:27 -#: tbl_structure.php:491 tbl_structure.php:493 +#: db_structure.php:532 db_structure.php:533 db_structure.php:584 +#: libraries/display_tbl.lib.php:2138 libraries/mult_submits.inc.php:27 +#: tbl_structure.php:489 tbl_structure.php:491 msgid "Print view" msgstr "תצוגת הדפסה" -#: db_structure.php:548 db_structure.php:549 libraries/mult_submits.inc.php:41 -#: tbl_operations.php:580 +#: db_structure.php:534 db_structure.php:535 libraries/mult_submits.inc.php:41 +#: tbl_operations.php:578 msgid "Check table" msgstr "בדיקת טבלה" -#: db_structure.php:550 db_structure.php:551 libraries/mult_submits.inc.php:46 -#: tbl_operations.php:620 tbl_structure.php:708 tbl_structure.php:710 +#: db_structure.php:536 db_structure.php:537 libraries/mult_submits.inc.php:46 +#: tbl_operations.php:618 tbl_structure.php:706 tbl_structure.php:708 msgid "Optimize table" msgstr "ייעול טבלה" -#: db_structure.php:552 db_structure.php:553 libraries/mult_submits.inc.php:51 -#: tbl_operations.php:610 +#: db_structure.php:538 db_structure.php:539 libraries/mult_submits.inc.php:51 +#: tbl_operations.php:608 msgid "Repair table" msgstr "תיקון טבלה" -#: db_structure.php:554 db_structure.php:555 libraries/mult_submits.inc.php:56 -#: tbl_operations.php:600 +#: db_structure.php:540 db_structure.php:541 libraries/mult_submits.inc.php:56 +#: tbl_operations.php:598 msgid "Analyze table" msgstr "ניתוח טבלה" -#: db_structure.php:556 db_structure.php:557 libraries/db_links.inc.php:70 -#: libraries/display_export.lib.php:82 libraries/display_tbl.lib.php:2093 -#: libraries/display_tbl.lib.php:2224 libraries/mult_submits.inc.php:61 -#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:81 -#: pmd_pdf.php:83 pmd_pdf.php:108 server_privileges.php:1372 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 +#: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 +#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 +#: pmd_pdf.php:81 pmd_pdf.php:106 server_privileges.php:1376 #: setup/frames/menu.inc.php:22 tbl_row_action.php:58 msgid "Export" msgstr "ייצוא" -#: db_structure.php:605 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:591 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "מילון מידע" -#: db_tracking.php:65 +#: db_tracking.php:61 msgid "Tracked tables" msgstr "" -#: db_tracking.php:70 libraries/export/htmlword.php:85 +#: db_tracking.php:66 libraries/export/htmlword.php:85 #: libraries/export/latex.php:152 libraries/export/odt.php:112 #: libraries/export/sql.php:339 libraries/export/texytext.php:84 #: libraries/export/xml.php:254 libraries/header.inc.php:105 -#: libraries/header_printview.inc.php:57 server_databases.php:168 -#: server_privileges.php:1652 server_privileges.php:1713 -#: server_privileges.php:1971 server_processlist.php:55 -#: server_synchronize.php:1178 server_synchronize.php:1182 -#: tbl_tracking.php:590 test/theme.php:64 +#: libraries/header_printview.inc.php:57 server_databases.php:166 +#: server_privileges.php:1656 server_privileges.php:1717 +#: server_privileges.php:1975 server_processlist.php:55 +#: server_synchronize.php:1177 server_synchronize.php:1181 +#: tbl_tracking.php:585 test/theme.php:64 msgid "Database" msgstr "מאגר נתונים" -#: db_tracking.php:72 +#: db_tracking.php:68 msgid "Last version" msgstr "" -#: db_tracking.php:73 tbl_tracking.php:593 +#: db_tracking.php:69 tbl_tracking.php:588 #, fuzzy msgid "Created" msgstr "יצירה" -#: db_tracking.php:74 tbl_tracking.php:594 +#: db_tracking.php:70 tbl_tracking.php:589 msgid "Updated" msgstr "" -#: db_tracking.php:76 libraries/Index.class.php:439 -#: libraries/db_structure.lib.php:44 server_databases.php:202 -#: server_privileges.php:1534 server_privileges.php:1717 -#: server_privileges.php:2065 tbl_structure.php:186 +#: db_tracking.php:71 libraries/common.lib.php:1361 +#: libraries/server_links.inc.php:48 server_processlist.php:58 +#: tbl_tracking.php:590 test/theme.php:100 +msgid "Status" +msgstr "מצב" + +#: db_tracking.php:72 libraries/Index.class.php:439 +#: libraries/db_structure.lib.php:44 server_databases.php:200 +#: server_privileges.php:1538 server_privileges.php:1721 +#: server_privileges.php:2069 tbl_structure.php:185 msgid "Action" msgstr "פעולה" -#: db_tracking.php:87 db_tracking.php:119 +#: db_tracking.php:83 db_tracking.php:115 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:105 tbl_tracking.php:547 tbl_tracking.php:605 -#: tbl_tracking.php:612 +#: db_tracking.php:101 tbl_tracking.php:542 tbl_tracking.php:600 +#: tbl_tracking.php:607 msgid "active" msgstr "" -#: db_tracking.php:107 tbl_tracking.php:549 tbl_tracking.php:607 -#: tbl_tracking.php:609 +#: db_tracking.php:103 tbl_tracking.php:544 tbl_tracking.php:602 +#: tbl_tracking.php:604 msgid "not active" msgstr "" -#: db_tracking.php:120 +#: db_tracking.php:116 #, fuzzy msgid "Versions" msgstr "Persian" -#: db_tracking.php:121 tbl_tracking.php:378 tbl_tracking.php:623 +#: db_tracking.php:117 tbl_tracking.php:373 tbl_tracking.php:618 msgid "Tracking report" msgstr "" -#: db_tracking.php:122 tbl_tracking.php:250 tbl_tracking.php:623 +#: db_tracking.php:118 tbl_tracking.php:245 tbl_tracking.php:618 #, fuzzy msgid "Structure snapshot" msgstr "מבנה בלבד" -#: db_tracking.php:151 +#: db_tracking.php:147 msgid "Untracked tables" msgstr "" -#: db_tracking.php:171 db_tracking.php:173 tbl_structure.php:527 -#: tbl_structure.php:529 +#: db_tracking.php:167 db_tracking.php:169 tbl_structure.php:525 +#: tbl_structure.php:527 #, fuzzy msgid "Track table" msgstr "בדיקת טבלה" -#: db_tracking.php:199 +#: db_tracking.php:195 #, fuzzy msgid "Database Log" msgstr "מאגר נתונים" @@ -797,102 +774,102 @@ msgstr "מאגר נתונים" msgid "Selected export type has to be saved in file!" msgstr "" -#: export.php:153 export.php:178 export.php:620 +#: export.php:152 export.php:177 export.php:615 #, php-format msgid "Insufficient space to save the file %s." msgstr "אןי מספיק מקום לשמור את הקובץ %s." -#: export.php:287 +#: export.php:286 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "קובץ %s כבר קיים על השרת, שנה שם קובץ או בדוק אופציית כתיבה-על." -#: export.php:291 export.php:295 +#: export.php:290 export.php:294 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "לשרת אין הרשאה לשמור את קובץ %s." -#: export.php:622 +#: export.php:617 #, php-format msgid "Dump has been saved to file %s." msgstr "הוצאה נשמרה אל קובץ %s." -#: import.php:59 +#: 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." msgstr "" -#: import.php:278 import.php:331 libraries/File.class.php:840 -#: libraries/File.class.php:950 +#: import.php:277 import.php:330 libraries/File.class.php:566 +#: libraries/File.class.php:676 msgid "File could not be read" msgstr "נכשל בקריאת הקובץ" -#: import.php:286 import.php:295 import.php:314 import.php:323 -#: libraries/File.class.php:1020 libraries/File.class.php:1028 -#: libraries/File.class.php:1044 libraries/File.class.php:1052 +#: import.php:285 import.php:294 import.php:313 import.php:322 +#: libraries/File.class.php:746 libraries/File.class.php:754 +#: libraries/File.class.php:770 libraries/File.class.php:778 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." msgstr "" -#: import.php:336 +#: import.php:335 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " "[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." msgstr "" -#: import.php:371 libraries/display_import.lib.php:23 +#: import.php:370 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:396 +#: import.php:395 msgid "The bookmark has been deleted." msgstr "כתובת מועדפת נמחקה." -#: import.php:400 +#: import.php:399 msgid "Showing bookmark" msgstr "" -#: import.php:402 sql.php:625 +#: import.php:401 sql.php:618 #, php-format msgid "Bookmark %s created" msgstr "" -#: import.php:408 import.php:414 +#: import.php:407 import.php:413 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" -#: import.php:423 +#: import.php:422 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: import.php:425 +#: import.php:424 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." msgstr "" -#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:240 +#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:239 #: user_password.php:110 msgid "Back" msgstr "חזרה" -#: index.php:188 +#: index.php:183 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin יותר ידידותי עם דפדפן frames-capable." -#: js/messages.php:25 server_synchronize.php:344 server_synchronize.php:356 -#: server_synchronize.php:372 server_synchronize.php:379 -#: server_synchronize.php:738 server_synchronize.php:766 -#: server_synchronize.php:794 server_synchronize.php:806 +#: js/messages.php:25 server_synchronize.php:343 server_synchronize.php:355 +#: server_synchronize.php:371 server_synchronize.php:378 +#: server_synchronize.php:737 server_synchronize.php:765 +#: server_synchronize.php:793 server_synchronize.php:805 msgid "Click to select" msgstr "" @@ -900,15 +877,15 @@ msgstr "" msgid "Click to unselect" msgstr "" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:88 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:87 msgid "\"DROP DATABASE\" statements are disabled." msgstr "הוראות \"DROP DATABASE\" מבוטלות." -#: js/messages.php:30 libraries/mult_submits.inc.php:257 sql.php:187 +#: js/messages.php:30 libraries/mult_submits.inc.php:256 sql.php:186 msgid "Do you really want to " msgstr "האם אתה באמת רוצה " -#: js/messages.php:31 libraries/mult_submits.inc.php:257 sql.php:171 +#: js/messages.php:31 libraries/mult_submits.inc.php:256 sql.php:170 msgid "You are about to DESTROY a complete database!" msgstr "אתה עומד להרוס מאגר נתונים שלם!" @@ -937,11 +914,11 @@ msgstr "שם המארח ריק!" msgid "The user name is empty!" msgstr "שם המשתמש ריק !" -#: js/messages.php:44 server_privileges.php:1228 user_password.php:65 +#: js/messages.php:44 server_privileges.php:1229 user_password.php:65 msgid "The password is empty!" msgstr "הסיסמא ריקה!" -#: js/messages.php:45 server_privileges.php:1226 user_password.php:68 +#: js/messages.php:45 server_privileges.php:1227 user_password.php:68 msgid "The passwords aren't the same!" msgstr "הסיסמאות אינן זהות!" @@ -949,29 +926,29 @@ msgstr "הסיסמאות אינן זהות!" msgid "Cancel" msgstr "" -#: js/messages.php:52 pmd_save_pos.php:53 +#: js/messages.php:52 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "שינויים נשמרו" -#: js/messages.php:53 pmd_relation_upd.php:48 +#: js/messages.php:53 pmd_relation_upd.php:47 #, fuzzy msgid "Relation deleted" msgstr "תצוגת יחסים" -#: js/messages.php:54 pmd_relation_new.php:63 +#: js/messages.php:54 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:55 pmd_relation_new.php:85 +#: js/messages.php:55 pmd_relation_new.php:84 #, fuzzy msgid "Internal relation added" msgstr "יחסים פנימיים" -#: js/messages.php:56 pmd_relation_new.php:62 pmd_relation_new.php:87 +#: js/messages.php:56 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:57 pmd_relation_new.php:30 +#: js/messages.php:57 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "" @@ -979,13 +956,13 @@ msgstr "" msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:59 libraries/relation.lib.php:94 -#: libraries/relation.lib.php:106 +#: js/messages.php:59 libraries/relation.lib.php:89 +#: libraries/relation.lib.php:101 msgid "General relation features" msgstr "תכונות קשר כלליות" -#: js/messages.php:59 libraries/relation.lib.php:88 -#: libraries/relation.lib.php:95 +#: js/messages.php:59 libraries/relation.lib.php:83 +#: libraries/relation.lib.php:90 msgid "Disabled" msgstr "מבוטל" @@ -1001,7 +978,7 @@ msgstr "" msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:547 +#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" @@ -1032,10 +1009,10 @@ msgid "Prev" msgstr "הקודם" #. l10n: Display text for next month link in calendar -#: js/messages.php:81 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:337 -#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:422 -#: tbl_structure.php:800 +#: js/messages.php:81 libraries/common.lib.php:2358 +#: libraries/common.lib.php:2361 libraries/display_tbl.lib.php:336 +#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 +#: tbl_structure.php:798 msgid "Next" msgstr "הבא" @@ -1109,27 +1086,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1562 +#: js/messages.php:101 libraries/common.lib.php:1566 msgid "Jan" msgstr "ינואר" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1564 +#: js/messages.php:103 libraries/common.lib.php:1568 msgid "Feb" msgstr "פברואר" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1566 +#: js/messages.php:105 libraries/common.lib.php:1570 msgid "Mar" msgstr "מרץ" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1568 +#: js/messages.php:107 libraries/common.lib.php:1572 msgid "Apr" msgstr "אפריל" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1570 +#: js/messages.php:109 libraries/common.lib.php:1574 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1137,37 +1114,37 @@ msgid "May" msgstr "מאי" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1572 +#: js/messages.php:111 libraries/common.lib.php:1576 msgid "Jun" msgstr "יוני" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1574 +#: js/messages.php:113 libraries/common.lib.php:1578 msgid "Jul" msgstr "יולי" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1576 +#: js/messages.php:115 libraries/common.lib.php:1580 msgid "Aug" msgstr "אוגוסט" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1578 +#: js/messages.php:117 libraries/common.lib.php:1582 msgid "Sep" msgstr "ספטמבר" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1580 +#: js/messages.php:119 libraries/common.lib.php:1584 msgid "Oct" msgstr "אוקטובר" #. l10n: Short month name -#: js/messages.php:121 libraries/common.lib.php:1582 +#: js/messages.php:121 libraries/common.lib.php:1586 msgid "Nov" msgstr "נובמבר" #. l10n: Short month name -#: js/messages.php:123 libraries/common.lib.php:1584 +#: js/messages.php:123 libraries/common.lib.php:1588 msgid "Dec" msgstr "דצמבר" @@ -1208,37 +1185,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1587 +#: js/messages.php:136 libraries/common.lib.php:1591 msgid "Sun" msgstr "יום ראשון" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1589 +#: js/messages.php:138 libraries/common.lib.php:1593 msgid "Mon" msgstr "יום שני" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1591 +#: js/messages.php:140 libraries/common.lib.php:1595 msgid "Tue" msgstr "יום שלישי" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1593 +#: js/messages.php:142 libraries/common.lib.php:1597 msgid "Wed" msgstr "יום רביעי" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1595 +#: js/messages.php:144 libraries/common.lib.php:1599 msgid "Thu" msgstr "יום חמישי" #. l10n: Short week day name -#: js/messages.php:146 libraries/common.lib.php:1597 +#: js/messages.php:146 libraries/common.lib.php:1601 msgid "Fri" msgstr "יום שישי" #. l10n: Short week day name -#: js/messages.php:148 libraries/common.lib.php:1599 +#: js/messages.php:148 libraries/common.lib.php:1603 msgid "Sat" msgstr "שבת" @@ -1316,76 +1293,75 @@ msgstr "לשנייה" msgid "Font size" msgstr "" -#: libraries/File.class.php:336 libraries/File.class.php:424 -#: libraries/File.class.php:561 libraries/File.class.php:700 -msgid "Unknown error in file upload." -msgstr "" - -#: libraries/File.class.php:406 +#: libraries/File.class.php:315 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:409 +#: libraries/File.class.php:318 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:412 +#: libraries/File.class.php:321 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:415 +#: libraries/File.class.php:324 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:418 +#: libraries/File.class.php:327 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:421 +#: libraries/File.class.php:330 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:898 +#: libraries/File.class.php:333 +msgid "Unknown error in file upload." +msgstr "" + +#: libraries/File.class.php:624 #, 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:427 tbl_relation.php:528 +#: libraries/Index.class.php:427 tbl_relation.php:526 msgid "No index defined!" msgstr "אין אינדקסים מוגדרים!" -#: libraries/Index.class.php:432 server_databases.php:131 tbl_tracking.php:315 +#: libraries/Index.class.php:432 server_databases.php:129 tbl_tracking.php:310 msgid "Indexes" msgstr "אינדקסים" #: libraries/Index.class.php:443 libraries/mult_submits.inc.php:102 -#: libraries/tbl_properties.inc.php:518 tbl_structure.php:32 -#: tbl_structure.php:154 tbl_structure.php:158 tbl_structure.php:473 -#: tbl_tracking.php:321 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:31 +#: tbl_structure.php:153 tbl_structure.php:157 tbl_structure.php:471 +#: tbl_tracking.php:316 msgid "Unique" msgstr "ייחודי" -#: libraries/Index.class.php:444 tbl_tracking.php:322 +#: libraries/Index.class.php:444 tbl_tracking.php:317 msgid "Packed" msgstr "" -#: libraries/Index.class.php:446 tbl_tracking.php:324 +#: libraries/Index.class.php:446 tbl_tracking.php:319 msgid "Cardinality" msgstr "מספור" -#: libraries/Index.class.php:449 tbl_tracking.php:278 tbl_tracking.php:327 +#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322 #, fuzzy msgid "Comment" msgstr "הערות" #: libraries/Index.class.php:465 libraries/common.lib.php:609 -#: libraries/common.lib.php:1198 libraries/display_tbl.lib.php:1116 +#: libraries/common.lib.php:1191 libraries/display_tbl.lib.php:1115 #: libraries/import.lib.php:1119 libraries/import.lib.php:1143 -#: pdf_pages.php:284 setup/frames/index.inc.php:124 +#: pdf_pages.php:283 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:349 tbl_row_action.php:68 msgid "Edit" msgstr "עריכה" @@ -1407,15 +1383,15 @@ msgid "" msgstr "" #: libraries/List_Database.class.php:430 libraries/server_links.inc.php:40 -#: server_databases.php:87 server_privileges.php:1652 +#: server_databases.php:85 server_privileges.php:1656 #: setup/lib/messages.inc.php:107 test/theme.php:92 msgid "Databases" msgstr "מאגרי נתונים" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:259 libraries/import.lib.php:134 pdf_schema.php:31 -#: pdf_schema.php:231 tbl_change.php:1023 tbl_operations.php:212 -#: tbl_relation.php:289 view_operations.php:61 +#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 +#: tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "שגיאה" @@ -1442,40 +1418,40 @@ msgid_plural "%1$d rows inserted." msgstr[0] "לא נבחרו שורות" msgstr[1] "לא נבחרו שורות" -#: libraries/StorageEngine.class.php:196 +#: libraries/StorageEngine.class.php:194 msgid "" "There is no detailed status information available for this storage engine." msgstr "אין מידע מצב מפורט על מנוע אחסון זה." -#: libraries/StorageEngine.class.php:352 +#: libraries/StorageEngine.class.php:354 #, php-format msgid "%s is available on this MySQL server." msgstr "%s זמין על שרת MySQL זה." -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:357 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s מובטל על שרת MySQL זה." -#: libraries/StorageEngine.class.php:359 +#: libraries/StorageEngine.class.php:361 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "שרת MySQL לא תומך במנוע אחסון %s." -#: libraries/Table.class.php:1018 +#: libraries/Table.class.php:1017 msgid "Invalid database" msgstr "" -#: libraries/Table.class.php:1032 tbl_get_field.php:25 +#: libraries/Table.class.php:1031 tbl_get_field.php:25 msgid "Invalid table name" msgstr "" -#: libraries/Table.class.php:1047 +#: libraries/Table.class.php:1046 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "" -#: libraries/Table.class.php:1131 +#: libraries/Table.class.php:1129 #, php-format msgid "Table %s has been renamed to %s" msgstr "טבלה %s שונתה אל %s" @@ -1493,22 +1469,22 @@ msgstr "" msgid "take it" msgstr "קח זאת" -#: libraries/Theme_Manager.class.php:114 +#: libraries/Theme_Manager.class.php:109 #, php-format msgid "Default theme %s not found!" msgstr "" -#: libraries/Theme_Manager.class.php:152 +#: libraries/Theme_Manager.class.php:147 #, php-format msgid "Theme %s not found!" msgstr "" -#: libraries/Theme_Manager.class.php:220 +#: libraries/Theme_Manager.class.php:215 #, php-format msgid "Theme path not found for theme %s!" msgstr "" -#: libraries/Theme_Manager.class.php:296 test/theme.php:160 themes.php:20 +#: libraries/Theme_Manager.class.php:291 test/theme.php:160 themes.php:20 #: themes.php:40 msgid "Theme / Style" msgstr "תבנית / סגנון" @@ -1618,19 +1594,19 @@ msgstr "" msgid "Authenticating..." msgstr "" -#: libraries/blobstreaming.lib.php:689 +#: libraries/blobstreaming.lib.php:340 msgid "View image" msgstr "" -#: libraries/blobstreaming.lib.php:693 +#: libraries/blobstreaming.lib.php:344 msgid "Play audio" msgstr "" -#: libraries/blobstreaming.lib.php:698 +#: libraries/blobstreaming.lib.php:349 msgid "View video" msgstr "" -#: libraries/blobstreaming.lib.php:702 +#: libraries/blobstreaming.lib.php:353 msgid "Download file" msgstr "" @@ -1679,7 +1655,7 @@ msgstr "שרת" msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:909 +#: libraries/common.inc.php:908 #, php-format msgid "You should upgrade to %s %s or later." msgstr "אתה צריך לשדרג אל %s %s לפחות." @@ -1706,7 +1682,8 @@ msgstr "נשלח" #: libraries/common.lib.php:425 libraries/common.lib.php:427 #: libraries/common.lib.php:429 libraries/common.lib.php:445 #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 -#: libraries/display_export.lib.php:163 libraries/relation.lib.php:84 +#: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 +#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 #: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" @@ -1721,149 +1698,149 @@ msgstr "שאילתת SQL" msgid "MySQL said: " msgstr "MySQL אמר: " -#: libraries/common.lib.php:1136 +#: libraries/common.lib.php:1129 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1174 setup/lib/messages.inc.php:350 +#: libraries/common.lib.php:1167 setup/lib/messages.inc.php:350 msgid "Explain SQL" msgstr "הסברת SQL" -#: libraries/common.lib.php:1177 +#: libraries/common.lib.php:1170 msgid "Skip Explain SQL" msgstr "Skip Explain SQL" -#: libraries/common.lib.php:1211 +#: libraries/common.lib.php:1204 msgid "Without PHP Code" msgstr "ללא קוד PHP" -#: libraries/common.lib.php:1214 setup/lib/messages.inc.php:352 +#: libraries/common.lib.php:1207 setup/lib/messages.inc.php:352 msgid "Create PHP Code" msgstr "ייצור קוד PHP" -#: libraries/common.lib.php:1232 server_status.php:451 +#: libraries/common.lib.php:1225 server_status.php:451 #: setup/lib/messages.inc.php:351 msgid "Refresh" msgstr "רענון" -#: libraries/common.lib.php:1241 +#: libraries/common.lib.php:1234 #, fuzzy msgid "Skip Validate SQL" msgstr "בדיקת תקינות SQL" -#: libraries/common.lib.php:1244 setup/lib/messages.inc.php:353 +#: libraries/common.lib.php:1237 setup/lib/messages.inc.php:353 msgid "Validate SQL" msgstr "בדיקת תקינות SQL" -#: libraries/common.lib.php:1283 +#: libraries/common.lib.php:1287 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1285 +#: libraries/common.lib.php:1289 #, fuzzy #| msgid "Engines" msgid "Inline" msgstr "מנועים" -#: libraries/common.lib.php:1339 libraries/common.lib.php:1354 +#: libraries/common.lib.php:1343 libraries/common.lib.php:1358 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1358 libraries/tbl_triggers.lib.php:27 +#: libraries/common.lib.php:1362 libraries/tbl_triggers.lib.php:27 #: server_processlist.php:57 msgid "Time" msgstr "זמן" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "B" msgstr "Bytes" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "KiB" msgstr "KB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "MiB" msgstr "MB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "GiB" msgstr "GB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "TiB" msgstr "TB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "PiB" msgstr "PB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "EiB" msgstr "EB" #. l10n: Thousands separator -#: libraries/common.lib.php:1424 +#: libraries/common.lib.php:1428 msgid "," msgstr "," #. l10n: Decimal separator -#: libraries/common.lib.php:1426 +#: libraries/common.lib.php:1430 msgid "." msgstr "." #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1603 +#: libraries/common.lib.php:1607 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y at %I:%M %p" -#: libraries/common.lib.php:1909 +#: libraries/common.lib.php:1913 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s ימים, %s שעות, %s דקות ו- %s שניות" -#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 -#: libraries/display_tbl.lib.php:289 server_status.php:718 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 +#: libraries/display_tbl.lib.php:288 server_status.php:718 msgid "Begin" msgstr "התחלה" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 -#: libraries/display_tbl.lib.php:290 server_binlog.php:154 +#: libraries/common.lib.php:2328 libraries/common.lib.php:2331 +#: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "הקודם" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 -#: libraries/display_tbl.lib.php:352 +#: libraries/common.lib.php:2359 libraries/common.lib.php:2362 +#: libraries/display_tbl.lib.php:351 msgid "End" msgstr "סיום" -#: libraries/common.lib.php:2429 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "קפיצה אל מאגר נתונים "%s"." -#: libraries/common.lib.php:2448 +#: libraries/common.lib.php:2453 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2828 libraries/common.lib.php:2835 -#: libraries/db_links.inc.php:67 libraries/export/sql.php:24 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 +#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 -#: libraries/tbl_links.inc.php:59 querywindow.php:89 test/theme.php:96 +#: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2837 libraries/db_links.inc.php:103 -#: libraries/tbl_links.inc.php:94 libraries/tbl_links.inc.php:116 -#: view_operations.php:88 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: view_operations.php:87 msgid "Operations" msgstr "פעולות" -#: libraries/core.lib.php:282 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1879,39 +1856,39 @@ msgstr "" msgid "Name" msgstr "שם" -#: libraries/db_links.inc.php:44 +#: libraries/db_links.inc.php:43 #, php-format msgid "Database %s has been dropped." msgstr "מסד הנתונים %s נמחק." -#: libraries/db_links.inc.php:56 libraries/db_links.inc.php:57 -#: libraries/db_links.inc.php:58 +#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 +#: libraries/db_links.inc.php:57 msgid "Database seems to be empty!" msgstr "" -#: libraries/db_links.inc.php:80 libraries/relation.lib.php:142 -#: libraries/tbl_links.inc.php:68 +#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:85 +#: libraries/db_links.inc.php:84 msgid "Query" msgstr "שאילתה" -#: libraries/db_links.inc.php:90 libraries/relation.lib.php:138 +#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:97 libraries/server_links.inc.php:87 -#: libraries/tbl_links.inc.php:90 pmd_pdf.php:83 pmd_pdf.php:109 +#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 #, fuzzy msgid "Import" msgstr "ייצוא" -#: libraries/db_links.inc.php:110 libraries/server_links.inc.php:65 -#: server_privileges.php:111 server_privileges.php:1714 -#: server_privileges.php:2063 test/theme.php:116 +#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: server_privileges.php:110 server_privileges.php:1718 +#: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" msgstr "הרשאות" @@ -1923,14 +1900,14 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1847 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1806 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "יכול להיות הערכה. ראה FAQ 3.11" -#: libraries/db_structure.lib.php:60 server_databases.php:141 -#: tbl_printview.php:334 tbl_structure.php:681 +#: libraries/db_structure.lib.php:60 server_databases.php:139 +#: tbl_printview.php:333 tbl_structure.php:679 msgid "Overhead" msgstr "תקורה" @@ -1947,7 +1924,7 @@ msgstr "השרת אינו מגיב" msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "" -#: libraries/dbi/mysql.dbi.lib.php:358 tbl_structure.php:607 +#: libraries/dbi/mysql.dbi.lib.php:358 tbl_structure.php:605 msgid "Details..." msgstr "" @@ -1957,22 +1934,22 @@ msgid "Change password" msgstr "שינוי סיסמא" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:807 +#: libraries/replication_gui.lib.php:347 server_privileges.php:806 msgid "No Password" msgstr "ללא סיסמא" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1530 server_synchronize.php:1174 +#: libraries/replication_gui.lib.php:351 server_privileges.php:795 +#: server_privileges.php:799 server_privileges.php:810 +#: server_privileges.php:1534 server_synchronize.php:1173 msgid "Password" msgstr "סיסמא" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:815 server_privileges.php:818 +#: server_privileges.php:814 server_privileges.php:817 msgid "Re-type" msgstr "הקלדה נוספת" @@ -1995,8 +1972,8 @@ msgstr "יצירת מאגר נתונים חדש" msgid "Create" msgstr "יצירה" -#: libraries/display_create_database.lib.php:39 server_privileges.php:113 -#: server_privileges.php:1419 server_replication.php:34 +#: libraries/display_create_database.lib.php:39 server_privileges.php:112 +#: server_privileges.php:1423 server_replication.php:33 msgid "No Privileges" msgstr "ללא הרשאות" @@ -2017,51 +1994,51 @@ msgstr "יצירת טבלה חדשה על מאגר נתונים %s" msgid "Number of columns" msgstr "מספר שדות" -#: libraries/display_export.lib.php:41 +#: libraries/display_export.lib.php:35 msgid "Could not load export plugins, please check your installation!" msgstr "" -#: libraries/display_export.lib.php:106 +#: libraries/display_export.lib.php:100 #, fuzzy, php-format #| msgid "Dump %s row(s) starting at record # %s" msgid "Dump %s row(s) starting at row # %s" msgstr "הוצאת %s שורות מתחילת רשומה מספר %s." -#: libraries/display_export.lib.php:114 +#: libraries/display_export.lib.php:108 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:124 setup/lib/messages.inc.php:79 +#: libraries/display_export.lib.php:118 setup/lib/messages.inc.php:79 msgid "Save as file" msgstr "שמירה כקובץ" -#: libraries/display_export.lib.php:133 +#: libraries/display_export.lib.php:127 #, php-format msgid "Save on server in %s directory" msgstr "שמירת שרת בתוך תיקיית %s" -#: libraries/display_export.lib.php:141 setup/lib/messages.inc.php:87 +#: libraries/display_export.lib.php:135 setup/lib/messages.inc.php:87 msgid "Overwrite existing file(s)" msgstr "" -#: libraries/display_export.lib.php:147 +#: libraries/display_export.lib.php:141 msgid "File name template" msgstr "תבנית שם קובץ" -#: libraries/display_export.lib.php:151 +#: libraries/display_export.lib.php:145 #, fuzzy msgid "server name" msgstr "שם משתמש" -#: libraries/display_export.lib.php:154 +#: libraries/display_export.lib.php:148 msgid "database name" msgstr "" -#: libraries/display_export.lib.php:157 +#: libraries/display_export.lib.php:151 msgid "table name" msgstr "" -#: libraries/display_export.lib.php:161 +#: libraries/display_export.lib.php:155 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2069,39 +2046,39 @@ msgid "" "%3$s. Other text will be kept as is." msgstr "" -#: libraries/display_export.lib.php:202 +#: libraries/display_export.lib.php:196 msgid "remember template" msgstr "זכור תבנית" -#: libraries/display_export.lib.php:210 libraries/display_import.lib.php:177 +#: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 #: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 msgid "Character set of the file:" msgstr "חבילת הקידוד של הקובץ:" -#: libraries/display_export.lib.php:235 setup/lib/messages.inc.php:81 +#: libraries/display_export.lib.php:229 setup/lib/messages.inc.php:81 msgid "Compression" msgstr "דחיסה" -#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:196 -#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:529 -#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:574 -#: server_privileges.php:1867 server_processlist.php:74 +#: libraries/display_export.lib.php:234 libraries/display_import.lib.php:196 +#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:528 +#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:573 +#: server_privileges.php:1871 server_processlist.php:74 msgid "None" msgstr "ללא" -#: libraries/display_export.lib.php:247 +#: libraries/display_export.lib.php:241 msgid "\"zipped\"" msgstr "\"zipped\"" -#: libraries/display_export.lib.php:253 +#: libraries/display_export.lib.php:247 msgid "\"gzipped\"" msgstr "\"gzipped\"" -#: libraries/display_export.lib.php:259 +#: libraries/display_export.lib.php:253 msgid "\"bzipped\"" msgstr "\"bzipped\"" -#: libraries/display_export.lib.php:274 libraries/export/sql.php:42 +#: libraries/display_export.lib.php:268 libraries/export/sql.php:42 #: libraries/import/sql.php:31 msgid "SQL compatibility mode" msgstr "" @@ -2136,12 +2113,12 @@ msgid "File uploads are not allowed on this server." msgstr "" #: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 -#: tbl_change.php:1024 +#: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "" #: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 -#: tbl_change.php:1027 +#: tbl_change.php:925 #, fuzzy msgid "web server upload directory" msgstr "שמירת שרת בתוך תיקיית %s" @@ -2221,43 +2198,43 @@ msgstr "גודל דף" msgid "Language" msgstr "" -#: libraries/display_tbl.lib.php:303 +#: libraries/display_tbl.lib.php:302 #, php-format msgid "%d is not valid row number." msgstr "%d הוא לא מספר שורה תקין." -#: libraries/display_tbl.lib.php:309 +#: libraries/display_tbl.lib.php:308 #, fuzzy #| msgid "row(s) starting from record #" msgid "row(s) starting from row #" msgstr "שורות המתחילות מרשומה #" -#: libraries/display_tbl.lib.php:315 +#: libraries/display_tbl.lib.php:314 msgid "horizontal" msgstr "מאוזן" -#: libraries/display_tbl.lib.php:316 +#: libraries/display_tbl.lib.php:315 msgid "horizontal (rotated headers)" msgstr "מאוזן (headers מסובבים)" -#: libraries/display_tbl.lib.php:317 +#: libraries/display_tbl.lib.php:316 msgid "vertical" msgstr "ניצב" -#: libraries/display_tbl.lib.php:323 +#: libraries/display_tbl.lib.php:322 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "במצב %s וחזור אחרי Headers לאחר %s תאים" -#: libraries/display_tbl.lib.php:345 +#: libraries/display_tbl.lib.php:344 msgid "This operation could take a long time. Proceed anyway?" msgstr "תהליך זה יכול לקחת זמן רב. להמשיך בכל מקרה?" -#: libraries/display_tbl.lib.php:511 +#: libraries/display_tbl.lib.php:510 msgid "Sort by key" msgstr "" -#: libraries/display_tbl.lib.php:554 libraries/export/codegen.php:38 +#: libraries/display_tbl.lib.php:553 libraries/export/codegen.php:38 #: libraries/export/csv.php:29 libraries/export/excel.php:34 #: libraries/export/htmlword.php:28 libraries/export/latex.php:32 #: libraries/export/mediawiki.php:21 libraries/export/ods.php:26 @@ -2267,101 +2244,101 @@ msgstr "" #: libraries/export/xlsx.php:26 libraries/export/xml.php:23 #: libraries/export/yaml.php:27 libraries/import.lib.php:1114 #: libraries/import.lib.php:1136 libraries/import/csv.php:31 -#: libraries/import/docsql.php:33 libraries/import/ldi.php:46 +#: libraries/import/docsql.php:32 libraries/import/ldi.php:46 #: libraries/import/ods.php:30 libraries/import/sql.php:19 #: libraries/import/xls.php:25 libraries/import/xlsx.php:25 -#: libraries/import/xml.php:25 tbl_select.php:264 tbl_structure.php:752 +#: libraries/import/xml.php:25 tbl_select.php:263 tbl_structure.php:750 #, fuzzy msgid "Options" msgstr "פעולות" -#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:569 +#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:568 msgid "Partial Texts" msgstr "טקסטים חלקיים" -#: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:573 +#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:572 msgid "Full Texts" msgstr "טקסטים מלאים" -#: libraries/display_tbl.lib.php:586 +#: libraries/display_tbl.lib.php:585 #, fuzzy msgid "Relational key" msgstr "תצוגת יחסים" -#: libraries/display_tbl.lib.php:587 +#: libraries/display_tbl.lib.php:586 #, fuzzy msgid "Relational display column" msgstr "תצוגת יחסים" -#: libraries/display_tbl.lib.php:594 +#: libraries/display_tbl.lib.php:593 msgid "Show binary contents" msgstr "" -#: libraries/display_tbl.lib.php:596 +#: libraries/display_tbl.lib.php:595 msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:598 +#: libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "" -#: libraries/display_tbl.lib.php:606 pmd_general.php:140 tbl_change.php:312 -#: tbl_change.php:318 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:307 +#: tbl_change.php:313 msgid "Hide" msgstr "" -#: libraries/display_tbl.lib.php:606 libraries/relation.lib.php:122 -#: libraries/tbl_properties.inc.php:143 transformation_overview.php:46 +#: libraries/display_tbl.lib.php:605 libraries/relation.lib.php:117 +#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46 #, fuzzy msgid "Browser transformation" msgstr "שינויי צורה זמינים" -#: libraries/display_tbl.lib.php:1125 libraries/display_tbl.lib.php:1129 -#: libraries/display_tbl.lib.php:1131 +#: libraries/display_tbl.lib.php:1124 libraries/display_tbl.lib.php:1128 +#: libraries/display_tbl.lib.php:1130 msgid "Execute bookmarked query" msgstr "הרצת שאילתה מועדפת" -#: libraries/display_tbl.lib.php:1144 libraries/display_tbl.lib.php:1156 +#: libraries/display_tbl.lib.php:1143 libraries/display_tbl.lib.php:1155 msgid "The row has been deleted" msgstr "השורה נמחקה" -#: libraries/display_tbl.lib.php:1183 libraries/display_tbl.lib.php:2055 +#: libraries/display_tbl.lib.php:1182 libraries/display_tbl.lib.php:2014 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "" -#: libraries/display_tbl.lib.php:1933 +#: libraries/display_tbl.lib.php:1892 msgid "in query" msgstr "בשאילתה" -#: libraries/display_tbl.lib.php:1951 +#: libraries/display_tbl.lib.php:1910 msgid "Showing rows" msgstr "מראה שורות" -#: libraries/display_tbl.lib.php:1961 +#: libraries/display_tbl.lib.php:1920 msgid "total" msgstr "סה\"כ" -#: libraries/display_tbl.lib.php:1969 sql.php:523 +#: libraries/display_tbl.lib.php:1928 sql.php:522 #, php-format msgid "Query took %01.4f sec" msgstr "שאילתה לקחה %01.4f שניות" -#: libraries/display_tbl.lib.php:2088 libraries/mult_submits.inc.php:112 -#: querywindow.php:115 querywindow.php:119 querywindow.php:122 -#: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:469 +#: libraries/display_tbl.lib.php:2047 libraries/mult_submits.inc.php:112 +#: querywindow.php:114 querywindow.php:118 querywindow.php:121 +#: tbl_structure.php:23 tbl_structure.php:148 tbl_structure.php:467 msgid "Change" msgstr "שינוי" -#: libraries/display_tbl.lib.php:2158 +#: libraries/display_tbl.lib.php:2117 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2186 +#: libraries/display_tbl.lib.php:2145 msgid "Print view (with full texts)" msgstr "תצוגת הדפסה (עם טקסטים מלאים)" -#: libraries/display_tbl.lib.php:2359 +#: libraries/display_tbl.lib.php:2318 msgid "Link not found" msgstr "קישור לא נמצא" @@ -2413,9 +2390,9 @@ msgstr "מצב InnoDB" msgid "Buffer Pool Usage" msgstr "" -#: libraries/engines/innodb.lib.php:168 server_databases.php:136 -#: server_databases.php:304 server_status.php:524 server_status.php:585 -#: server_status.php:606 tbl_printview.php:349 tbl_structure.php:695 +#: libraries/engines/innodb.lib.php:168 server_databases.php:134 +#: server_databases.php:302 server_status.php:524 server_status.php:585 +#: server_status.php:606 tbl_printview.php:348 tbl_structure.php:693 msgid "Total" msgstr "סה\"כ" @@ -2538,6 +2515,78 @@ msgid "" "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." msgstr "" +#: libraries/engines/pbms.lib.php:31 +msgid "Garbage Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:32 +msgid "The percentage of garbage in a repository file before it is compacted." +msgstr "" + +#: libraries/engines/pbms.lib.php:36 libraries/replication_gui.lib.php:69 +#: server_synchronize.php:1161 +#, fuzzy +msgid "Port" +msgstr "סידור" + +#: libraries/engines/pbms.lib.php:37 +msgid "" +"The port for the PBMS stream-based communications. Setting this value to 0 " +"will disable HTTP communication with the daemon." +msgstr "" + +#: libraries/engines/pbms.lib.php:41 +msgid "Repository Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:42 +msgid "" +"The maximum size of a BLOB repository file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:46 +msgid "Temp Blob Timeout" +msgstr "" + +#: libraries/engines/pbms.lib.php:47 +msgid "" +"The timeout, in seconds, for temporary BLOBs. Uploaded BLOB data is removed " +"after this time, unless they are referenced by a record in the database." +msgstr "" + +#: libraries/engines/pbms.lib.php:51 +msgid "Temp Log Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:52 +msgid "" +"The maximum size of a temporary BLOB log file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:56 +msgid "Max Keep Alive" +msgstr "" + +#: libraries/engines/pbms.lib.php:57 +msgid "" +"The timeout for inactive connection with the keep-alive flag set. After this " +"time the connection will be closed. The time-out is in milliseconds (1/1000)." +msgstr "" + +#: libraries/engines/pbms.lib.php:61 +msgid "Metadata Headers" +msgstr "" + +#: libraries/engines/pbms.lib.php:62 +msgid "" +"A \":\" delimited list of metadata headers to be used to initialize the " +"pbms_metadata_header table when a database is created." +msgstr "" + #: libraries/engines/pbxt.lib.php:22 msgid "Index cache size" msgstr "" @@ -2661,7 +2710,7 @@ msgid "" msgstr "" #: libraries/export/codegen.php:36 setup/lib/messages.inc.php:85 -#: tbl_printview.php:374 tbl_structure.php:736 +#: tbl_printview.php:373 tbl_structure.php:734 msgid "Format" msgstr "תבנית" @@ -2730,9 +2779,9 @@ msgstr "Microsoft Word 2000" #: libraries/export/htmlword.php:23 libraries/export/latex.php:59 #: libraries/export/latex.php:205 libraries/export/odt.php:47 #: libraries/export/sql.php:105 libraries/export/sql.php:865 -#: libraries/export/texytext.php:27 server_databases.php:126 -#: server_privileges.php:576 server_replication.php:315 tbl_printview.php:315 -#: tbl_structure.php:664 +#: libraries/export/texytext.php:27 server_databases.php:124 +#: server_privileges.php:575 server_replication.php:314 tbl_printview.php:314 +#: tbl_structure.php:662 msgid "Data" msgstr "נתונים" @@ -2783,13 +2832,13 @@ msgid "Label key" msgstr "מפתח תווית" #: libraries/export/latex.php:46 libraries/export/odt.php:34 -#: libraries/export/sql.php:90 tbl_relation.php:398 +#: libraries/export/sql.php:90 tbl_relation.php:396 msgid "Relations" msgstr "יחסים" #: libraries/export/latex.php:52 libraries/export/odt.php:40 #: libraries/export/odt.php:317 libraries/export/sql.php:94 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "סוג MIME" @@ -2797,10 +2846,10 @@ msgstr "סוג MIME" #: libraries/export/xml.php:101 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1529 server_privileges.php:2061 -#: server_processlist.php:54 server_synchronize.php:1158 +#: libraries/replication_gui.lib.php:331 server_privileges.php:730 +#: server_privileges.php:733 server_privileges.php:789 +#: server_privileges.php:1533 server_privileges.php:2065 +#: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "מארח" @@ -2994,8 +3043,8 @@ msgstr "" msgid "Export contents" msgstr "" -#: libraries/footer.inc.php:182 libraries/footer.inc.php:193 -#: libraries/footer.inc.php:196 +#: libraries/footer.inc.php:180 libraries/footer.inc.php:191 +#: libraries/footer.inc.php:194 msgid "Open new phpMyAdmin window" msgstr "" @@ -3012,7 +3061,7 @@ msgstr "תוצאת SQL" msgid "Generated by" msgstr "נוצר ע\"י" -#: libraries/import.lib.php:151 sql.php:519 tbl_change.php:180 +#: libraries/import.lib.php:151 sql.php:518 tbl_change.php:175 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL החזיר חבילת תוצאות ריקה (לדוגמא, אפס שורות)." @@ -3070,7 +3119,7 @@ msgstr "" msgid "Column names in first row" msgstr "" -#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:501 +#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:500 #: view_create.php:147 msgid "Column names" msgstr "שמות עמודה" @@ -3096,12 +3145,12 @@ msgstr "" msgid "Invalid column count in CSV input on line %d." msgstr "" -#: libraries/import/docsql.php:28 +#: libraries/import/docsql.php:27 msgid "DocSQL" msgstr "" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 -#: server_synchronize.php:427 server_synchronize.php:870 +#: libraries/import/docsql.php:30 libraries/tbl_properties.inc.php:616 +#: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "" @@ -3157,26 +3206,26 @@ msgstr "ללא" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:512 -#: tbl_structure.php:28 tbl_structure.php:152 tbl_structure.php:156 -#: tbl_structure.php:472 +#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:511 +#: tbl_structure.php:27 tbl_structure.php:151 tbl_structure.php:155 +#: tbl_structure.php:470 msgid "Primary" msgstr "ראשי" #: libraries/mult_submits.inc.php:97 libraries/tbl_properties.inc.php:115 -#: libraries/tbl_properties.inc.php:524 tbl_printview.php:324 -#: tbl_structure.php:30 tbl_structure.php:153 tbl_structure.php:157 -#: tbl_structure.php:474 tbl_structure.php:672 +#: libraries/tbl_properties.inc.php:523 tbl_printview.php:323 +#: tbl_structure.php:29 tbl_structure.php:152 tbl_structure.php:156 +#: tbl_structure.php:472 tbl_structure.php:670 msgid "Index" msgstr "אינדקס" -#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:530 -#: tbl_structure.php:34 tbl_structure.php:155 tbl_structure.php:159 -#: tbl_structure.php:477 +#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:529 +#: tbl_structure.php:33 tbl_structure.php:154 tbl_structure.php:158 +#: tbl_structure.php:475 msgid "Fulltext" msgstr "Fulltext" -#: libraries/mult_submits.inc.php:434 tbl_replace.php:330 +#: libraries/mult_submits.inc.php:433 tbl_replace.php:330 msgid "No change" msgstr "ללא שינוי" @@ -3184,190 +3233,190 @@ msgstr "ללא שינוי" msgid "Charset" msgstr "קידוד" -#: libraries/mysql_charsets.lib.php:210 libraries/mysql_charsets.lib.php:411 -#: tbl_change.php:515 +#: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 +#: tbl_change.php:510 msgid "Binary" msgstr "בינארי" -#: libraries/mysql_charsets.lib.php:222 +#: libraries/mysql_charsets.lib.php:214 msgid "Bulgarian" msgstr "בולגרית" -#: libraries/mysql_charsets.lib.php:226 libraries/mysql_charsets.lib.php:351 +#: libraries/mysql_charsets.lib.php:218 libraries/mysql_charsets.lib.php:343 msgid "Simplified Chinese" msgstr "" -#: libraries/mysql_charsets.lib.php:228 libraries/mysql_charsets.lib.php:371 +#: libraries/mysql_charsets.lib.php:220 libraries/mysql_charsets.lib.php:363 msgid "Traditional Chinese" msgstr "סינית מסורתית" -#: libraries/mysql_charsets.lib.php:232 libraries/mysql_charsets.lib.php:418 +#: libraries/mysql_charsets.lib.php:224 libraries/mysql_charsets.lib.php:410 msgid "case-insensitive" msgstr "אין חשיבות לרישיות (case)" -#: libraries/mysql_charsets.lib.php:235 libraries/mysql_charsets.lib.php:420 +#: libraries/mysql_charsets.lib.php:227 libraries/mysql_charsets.lib.php:412 msgid "case-sensitive" msgstr "יש חשיבות לרישיות (case)" -#: libraries/mysql_charsets.lib.php:238 +#: libraries/mysql_charsets.lib.php:230 msgid "Croatian" msgstr "קרואטית" -#: libraries/mysql_charsets.lib.php:241 +#: libraries/mysql_charsets.lib.php:233 msgid "Czech" msgstr "צ'יכית" -#: libraries/mysql_charsets.lib.php:244 +#: libraries/mysql_charsets.lib.php:236 msgid "Danish" msgstr "דנית" -#: libraries/mysql_charsets.lib.php:247 +#: libraries/mysql_charsets.lib.php:239 msgid "English" msgstr "אנגלית" -#: libraries/mysql_charsets.lib.php:250 +#: libraries/mysql_charsets.lib.php:242 msgid "Esperanto" msgstr "" -#: libraries/mysql_charsets.lib.php:253 +#: libraries/mysql_charsets.lib.php:245 msgid "Estonian" msgstr "אסטונית" -#: libraries/mysql_charsets.lib.php:256 libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:248 libraries/mysql_charsets.lib.php:251 msgid "German" msgstr "גרמנית" -#: libraries/mysql_charsets.lib.php:256 +#: libraries/mysql_charsets.lib.php:248 msgid "dictionary" msgstr "מילון" -#: libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:251 msgid "phone book" msgstr "phone book" -#: libraries/mysql_charsets.lib.php:262 +#: libraries/mysql_charsets.lib.php:254 msgid "Hungarian" msgstr "הונגרית" -#: libraries/mysql_charsets.lib.php:265 +#: libraries/mysql_charsets.lib.php:257 msgid "Icelandic" msgstr "איסלנדית" -#: libraries/mysql_charsets.lib.php:268 libraries/mysql_charsets.lib.php:358 +#: libraries/mysql_charsets.lib.php:260 libraries/mysql_charsets.lib.php:350 msgid "Japanese" msgstr "יפנית" -#: libraries/mysql_charsets.lib.php:271 +#: libraries/mysql_charsets.lib.php:263 msgid "Latvian" msgstr "Latvian" -#: libraries/mysql_charsets.lib.php:274 +#: libraries/mysql_charsets.lib.php:266 msgid "Lithuanian" msgstr "ליטאית" -#: libraries/mysql_charsets.lib.php:277 libraries/mysql_charsets.lib.php:380 +#: libraries/mysql_charsets.lib.php:269 libraries/mysql_charsets.lib.php:372 msgid "Korean" msgstr "" -#: libraries/mysql_charsets.lib.php:280 +#: libraries/mysql_charsets.lib.php:272 msgid "Persian" msgstr "Persian" -#: libraries/mysql_charsets.lib.php:283 +#: libraries/mysql_charsets.lib.php:275 msgid "Polish" msgstr "Polish" -#: libraries/mysql_charsets.lib.php:286 libraries/mysql_charsets.lib.php:334 +#: libraries/mysql_charsets.lib.php:278 libraries/mysql_charsets.lib.php:326 msgid "West European" msgstr "" -#: libraries/mysql_charsets.lib.php:289 +#: libraries/mysql_charsets.lib.php:281 msgid "Romanian" msgstr "רומנית" -#: libraries/mysql_charsets.lib.php:292 +#: libraries/mysql_charsets.lib.php:284 msgid "Slovak" msgstr "סלובקית" -#: libraries/mysql_charsets.lib.php:295 +#: libraries/mysql_charsets.lib.php:287 msgid "Slovenian" msgstr "סלובנית" -#: libraries/mysql_charsets.lib.php:298 +#: libraries/mysql_charsets.lib.php:290 msgid "Spanish" msgstr "ספרדית" -#: libraries/mysql_charsets.lib.php:301 +#: libraries/mysql_charsets.lib.php:293 msgid "Traditional Spanish" msgstr "ספרדית מסורתית" -#: libraries/mysql_charsets.lib.php:304 libraries/mysql_charsets.lib.php:401 +#: libraries/mysql_charsets.lib.php:296 libraries/mysql_charsets.lib.php:393 msgid "Swedish" msgstr "שוודית" -#: libraries/mysql_charsets.lib.php:307 libraries/mysql_charsets.lib.php:404 +#: libraries/mysql_charsets.lib.php:299 libraries/mysql_charsets.lib.php:396 msgid "Thai" msgstr "" -#: libraries/mysql_charsets.lib.php:310 libraries/mysql_charsets.lib.php:398 +#: libraries/mysql_charsets.lib.php:302 libraries/mysql_charsets.lib.php:390 msgid "Turkish" msgstr "טורקית" -#: libraries/mysql_charsets.lib.php:313 libraries/mysql_charsets.lib.php:395 +#: libraries/mysql_charsets.lib.php:305 libraries/mysql_charsets.lib.php:387 msgid "Ukrainian" msgstr "אוקראינית" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 msgid "Unicode" msgstr "Unicode" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 -#: libraries/mysql_charsets.lib.php:334 libraries/mysql_charsets.lib.php:341 -#: libraries/mysql_charsets.lib.php:363 libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 +#: libraries/mysql_charsets.lib.php:326 libraries/mysql_charsets.lib.php:333 +#: libraries/mysql_charsets.lib.php:355 libraries/mysql_charsets.lib.php:366 msgid "multilingual" msgstr "" -#: libraries/mysql_charsets.lib.php:341 +#: libraries/mysql_charsets.lib.php:333 msgid "Central European" msgstr "" -#: libraries/mysql_charsets.lib.php:346 +#: libraries/mysql_charsets.lib.php:338 msgid "Russian" msgstr "רוסית" -#: libraries/mysql_charsets.lib.php:363 +#: libraries/mysql_charsets.lib.php:355 msgid "Baltic" msgstr "בלטית" -#: libraries/mysql_charsets.lib.php:368 +#: libraries/mysql_charsets.lib.php:360 msgid "Armenian" msgstr "ארמנית" -#: libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:366 msgid "Cyrillic" msgstr "קירילית" -#: libraries/mysql_charsets.lib.php:377 +#: libraries/mysql_charsets.lib.php:369 msgid "Arabic" msgstr "ערבית" -#: libraries/mysql_charsets.lib.php:383 +#: libraries/mysql_charsets.lib.php:375 msgid "Hebrew" msgstr "עברית" -#: libraries/mysql_charsets.lib.php:386 +#: libraries/mysql_charsets.lib.php:378 msgid "Georgian" msgstr "גרוזינית" -#: libraries/mysql_charsets.lib.php:389 +#: libraries/mysql_charsets.lib.php:381 msgid "Greek" msgstr "יוונית" -#: libraries/mysql_charsets.lib.php:392 +#: libraries/mysql_charsets.lib.php:384 msgid "Czech-Slovak" msgstr "" -#: libraries/mysql_charsets.lib.php:407 libraries/mysql_charsets.lib.php:414 +#: libraries/mysql_charsets.lib.php:399 libraries/mysql_charsets.lib.php:406 msgid "unknown" msgstr "לא ידוע" @@ -3393,67 +3442,67 @@ msgstr "חלון שאילתה" msgid "This format has no options" msgstr "לתבנית זאת אין אפשרויות" -#: libraries/relation.lib.php:82 +#: libraries/relation.lib.php:77 msgid "not OK" msgstr "לא בסדר" -#: libraries/relation.lib.php:86 pmd_general.php:339 +#: libraries/relation.lib.php:81 pmd_general.php:339 msgid "OK" msgstr "אישור" -#: libraries/relation.lib.php:87 +#: libraries/relation.lib.php:82 msgid "Enabled" msgstr "מופעל" -#: libraries/relation.lib.php:110 +#: libraries/relation.lib.php:105 msgid "Display Features" msgstr "הצגת תכונות" -#: libraries/relation.lib.php:116 +#: libraries/relation.lib.php:111 msgid "Creation of PDFs" msgstr "יצירה של קבצי PDF" -#: libraries/relation.lib.php:120 +#: libraries/relation.lib.php:115 msgid "Displaying Column Comments" msgstr "מציג הערות עמודה" -#: libraries/relation.lib.php:125 +#: libraries/relation.lib.php:120 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" -#: libraries/relation.lib.php:130 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 msgid "Bookmarked SQL query" msgstr "שאילתות SQL מועדפות" -#: libraries/relation.lib.php:134 querywindow.php:99 querywindow.php:207 +#: libraries/relation.lib.php:129 querywindow.php:98 querywindow.php:205 msgid "SQL history" msgstr "היסטוריית SQL" -#: libraries/relation.lib.php:146 +#: libraries/relation.lib.php:141 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:148 +#: libraries/relation.lib.php:143 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" -#: libraries/relation.lib.php:149 +#: libraries/relation.lib.php:144 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:150 +#: libraries/relation.lib.php:145 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:151 +#: libraries/relation.lib.php:146 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1158 +#: libraries/relation.lib.php:1153 msgid "no description" msgstr "ללא תיאור" @@ -3461,7 +3510,7 @@ msgstr "ללא תיאור" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:53 server_replication.php:346 +#: libraries/replication_gui.lib.php:53 server_replication.php:345 msgid "Change or reconfigure master server" msgstr "" @@ -3473,17 +3522,12 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:711 -#: server_privileges.php:714 server_privileges.php:721 -#: server_synchronize.php:1170 +#: libraries/replication_gui.lib.php:261 server_privileges.php:710 +#: server_privileges.php:713 server_privileges.php:720 +#: server_synchronize.php:1169 msgid "User name" msgstr "שם משתמש" -#: libraries/replication_gui.lib.php:69 server_synchronize.php:1162 -#, fuzzy -msgid "Port" -msgstr "סידור" - #: libraries/replication_gui.lib.php:105 msgid "Master status" msgstr "" @@ -3498,8 +3542,8 @@ msgid "Variable" msgstr "משתנה" #: libraries/replication_gui.lib.php:117 server_status.php:737 -#: tbl_change.php:322 tbl_printview.php:368 tbl_select.php:137 -#: tbl_structure.php:728 +#: tbl_change.php:317 tbl_printview.php:367 tbl_select.php:136 +#: tbl_structure.php:726 msgid "Value" msgstr "ערך" @@ -3513,38 +3557,38 @@ msgid "" "this list." msgstr "" -#: libraries/replication_gui.lib.php:242 server_replication.php:193 +#: libraries/replication_gui.lib.php:242 server_replication.php:192 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:256 server_privileges.php:716 +#: libraries/replication_gui.lib.php:256 server_privileges.php:715 msgid "Any user" msgstr "כל משתמש" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1920 server_privileges.php:1950 +#: libraries/replication_gui.lib.php:348 server_privileges.php:716 +#: server_privileges.php:783 server_privileges.php:807 +#: server_privileges.php:1924 server_privileges.php:1954 msgid "Use text field" msgstr "השתמש בשדה טקסט" -#: libraries/replication_gui.lib.php:304 server_privileges.php:764 +#: libraries/replication_gui.lib.php:304 server_privileges.php:763 msgid "Any host" msgstr "כל שרת מארח" -#: libraries/replication_gui.lib.php:308 server_privileges.php:768 +#: libraries/replication_gui.lib.php:308 server_privileges.php:767 msgid "Local" msgstr "מקומי" -#: libraries/replication_gui.lib.php:314 server_privileges.php:773 +#: libraries/replication_gui.lib.php:314 server_privileges.php:772 msgid "This Host" msgstr "מארח זה" -#: libraries/replication_gui.lib.php:320 server_privileges.php:779 +#: libraries/replication_gui.lib.php:320 server_privileges.php:778 msgid "Use Host Table" msgstr "Use Host Table" -#: libraries/replication_gui.lib.php:333 server_privileges.php:792 +#: libraries/replication_gui.lib.php:333 server_privileges.php:791 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3571,8 +3615,8 @@ msgstr "" msgid "Servers" msgstr "שרת" -#: libraries/server_links.inc.php:52 server_engines.php:111 -#: server_engines.php:115 server_status.php:414 test/theme.php:104 +#: libraries/server_links.inc.php:52 server_engines.php:125 +#: server_engines.php:129 server_status.php:414 test/theme.php:104 msgid "Variables" msgstr "משתנים" @@ -3593,12 +3637,12 @@ msgstr "דו\"ח בינארי" msgid "Processes" msgstr "תהליכים" -#: libraries/server_links.inc.php:91 server_synchronize.php:1091 -#: server_synchronize.php:1099 +#: libraries/server_links.inc.php:91 server_synchronize.php:1090 +#: server_synchronize.php:1098 msgid "Synchronize" msgstr "" -#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1109 +#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1108 #, fuzzy msgid "Source database" msgstr "חפש במסד הנתונים" @@ -3617,7 +3661,7 @@ msgstr "" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1111 +#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1110 #, fuzzy msgid "Target database" msgstr "חפש במסד הנתונים" @@ -3638,11 +3682,11 @@ msgstr "הרצת את שאילתה/שאילתות על מסד הנתונים %s" msgid "Columns" msgstr "שמות עמודה" -#: libraries/sql_query_form.lib.php:342 sql.php:664 sql.php:665 sql.php:682 +#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "הכנס שאילתת SQL זאת למועדפים" -#: libraries/sql_query_form.lib.php:349 sql.php:676 +#: libraries/sql_query_form.lib.php:349 sql.php:669 msgid "Let every user access this bookmark" msgstr "אפשר לכל משתמש לגשת לכתובת מועדפת זאת" @@ -3724,12 +3768,12 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" -#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:139 -#: libraries/tbl_links.inc.php:140 +#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 +#: libraries/tbl_links.inc.php:139 msgid "Table seems to be empty!" msgstr "" -#: libraries/tbl_links.inc.php:148 +#: libraries/tbl_links.inc.php:147 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" @@ -3764,24 +3808,24 @@ msgstr "" "לערכי ברירת מחדל, אנא הכנס רק ערך בודד, ללא סימני ציטוט או לוכסנים, השתמש " "בתבנית הזאת : a" -#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1263 -#: pdf_schema.php:1284 tbl_printview.php:142 tbl_structure.php:179 +#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1262 +#: pdf_schema.php:1283 tbl_printview.php:141 tbl_structure.php:178 msgid "Attributes" msgstr "תכונות" -#: libraries/tbl_properties.inc.php:136 +#: libraries/tbl_properties.inc.php:135 #, php-format msgid "" "For a list of available transformation options and their MIME type " "transformations, click on %stransformation descriptions%s" msgstr "" -#: libraries/tbl_properties.inc.php:144 +#: libraries/tbl_properties.inc.php:143 #, fuzzy msgid "Transformation options" msgstr "לתבנית זאת אין אפשרויות" -#: libraries/tbl_properties.inc.php:145 +#: libraries/tbl_properties.inc.php:144 #, fuzzy msgid "" "Please enter the values for transformation options using this format: 'a', " @@ -3794,47 +3838,47 @@ msgstr "" "(\"'\") ביחד עם הערכים האלה, הכנס לוכסן אחורי לפניהם (לדוגמא '\\\\xyz' or 'a" "\\'b')." -#: libraries/tbl_properties.inc.php:392 +#: libraries/tbl_properties.inc.php:391 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "ללא" -#: libraries/tbl_properties.inc.php:393 +#: libraries/tbl_properties.inc.php:392 msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:579 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:578 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
                            Please ask the " "author what %s does." msgstr "" -#: libraries/tbl_properties.inc.php:725 server_engines.php:57 -#: tbl_operations.php:354 +#: libraries/tbl_properties.inc.php:724 server_engines.php:56 +#: tbl_operations.php:352 msgid "Storage Engine" msgstr "מנוע אחסון" -#: libraries/tbl_properties.inc.php:754 +#: libraries/tbl_properties.inc.php:753 msgid "PARTITION definition" msgstr "" -#: libraries/tbl_properties.inc.php:775 pdf_pages.php:502 +#: libraries/tbl_properties.inc.php:774 pdf_pages.php:501 #: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214 -#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1124 tbl_indexes.php:247 -#: tbl_relation.php:565 +#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1022 tbl_indexes.php:246 +#: tbl_relation.php:563 msgid "Save" msgstr "שמירה" -#: libraries/tbl_properties.inc.php:779 tbl_structure.php:541 +#: libraries/tbl_properties.inc.php:778 tbl_structure.php:539 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "הוספת %s תאים" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:535 +#: libraries/tbl_properties.inc.php:782 tbl_structure.php:533 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -3961,8 +4005,8 @@ msgstr "" msgid "Custom color" msgstr "" -#: main.php:162 pdf_pages.php:362 setup/lib/FormDisplay.tpl.php:216 -#: tbl_change.php:1173 +#: main.php:162 pdf_pages.php:361 setup/lib/FormDisplay.tpl.php:216 +#: tbl_change.php:1071 msgid "Reset" msgstr "איפוס" @@ -3970,8 +4014,8 @@ msgstr "איפוס" msgid "Protocol version" msgstr "" -#: main.php:188 server_privileges.php:1381 server_privileges.php:1528 -#: server_privileges.php:1642 server_privileges.php:2060 +#: main.php:188 server_privileges.php:1385 server_privileges.php:1532 +#: server_privileges.php:1646 server_privileges.php:2064 #: server_processlist.php:53 msgid "User" msgstr "משתמש" @@ -4052,21 +4096,29 @@ msgid "" "has been configured." msgstr "" -#: main.php:330 +#: main.php:314 +#, php-format +msgid "" +"The additional features for working with linked tables have been " +"deactivated. To find out why click %shere%s." +msgstr "" +"תכונות נוספות לעבודה עם טבלאות מקושרות בוטלו. לעוד מידע למה לחץ %sכאן%s." + +#: main.php:329 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:345 +#: main.php:344 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: main.php:357 +#: main.php:356 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -4077,68 +4129,68 @@ msgstr "" msgid "Reload navigation frame" msgstr "" -#: navigation.php:204 server_databases.php:370 server_synchronize.php:1190 +#: navigation.php:203 server_databases.php:368 server_synchronize.php:1189 msgid "No databases" msgstr "אין מאגרי נתונים" -#: navigation.php:298 +#: navigation.php:297 msgid "Filter" msgstr "" -#: navigation.php:299 setup/frames/index.inc.php:218 +#: navigation.php:298 setup/frames/index.inc.php:218 #: setup/lib/messages.inc.php:41 #, fuzzy msgid "Clear" msgstr "לוח שנה" -#: navigation.php:330 navigation.php:331 +#: navigation.php:329 navigation.php:330 #, fuzzy msgctxt "short form" msgid "Create table" msgstr "יצירת עמוד חדש" -#: navigation.php:333 navigation.php:495 +#: navigation.php:332 navigation.php:494 msgid "Please select a database" msgstr "אנא בחר מאגר נתונים" -#: pdf_pages.php:40 pdf_pages.php:46 pdf_pages.php:52 pdf_pages.php:57 +#: pdf_pages.php:39 pdf_pages.php:45 pdf_pages.php:51 pdf_pages.php:56 #, php-format msgid "%s table not found or not set in %s" msgstr "טבלה %s לא נמצאה או לא קיימת בתוך %s" -#: pdf_pages.php:265 +#: pdf_pages.php:264 msgid "Please choose a page to edit" msgstr "אנא בחר עמוד לעריכה" -#: pdf_pages.php:303 pmd_pdf.php:113 +#: pdf_pages.php:302 pmd_pdf.php:111 msgid "Create a page" msgstr "יצירת עמוד חדש" -#: pdf_pages.php:309 +#: pdf_pages.php:308 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "מספר דף:" -#: pdf_pages.php:313 +#: pdf_pages.php:312 #, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "עיצוב אוטומטי" -#: pdf_pages.php:315 +#: pdf_pages.php:314 msgid "Internal relations" msgstr "יחסים פנימיים" -#: pdf_pages.php:338 +#: pdf_pages.php:337 msgid "Select Tables" msgstr "בחירת טבלאות" -#: pdf_pages.php:361 +#: pdf_pages.php:360 msgid "Toggle scratchboard" msgstr "" -#: pdf_pages.php:524 +#: pdf_pages.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -4146,36 +4198,36 @@ msgstr "" "לעמוד הנוכחי יש הפניות לטבלאות שכבר לא קיימות. האם אתה רוצה למחוק את הפניות " "אלו?" -#: pdf_schema.php:635 +#: pdf_schema.php:634 #, fuzzy, php-format #| msgid "The \"%s\" table doesn't exist!" msgid "The %s table doesn't exist!" msgstr "הטבלה \"%s\" לא קיימת!" -#: pdf_schema.php:671 +#: pdf_schema.php:670 #, php-format msgid "Please configure the coordinates for table %s" msgstr "אנא הגדר נקודות ציון עבור טבלה %s" -#: pdf_schema.php:994 +#: pdf_schema.php:993 #, php-format msgid "Schema of the %s database - Page %s" msgstr "" -#: pdf_schema.php:1012 +#: pdf_schema.php:1011 msgid "No tables" msgstr "אין טבלאות" -#: pdf_schema.php:1031 pdf_schema.php:1140 +#: pdf_schema.php:1030 pdf_schema.php:1139 msgid "Relational schema" msgstr "" -#: pdf_schema.php:1115 +#: pdf_schema.php:1114 msgid "Table of contents" msgstr "תוכן עניניים" -#: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:145 -#: tbl_structure.php:182 tbl_tracking.php:277 +#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 +#: tbl_structure.php:181 tbl_tracking.php:272 msgid "Extra" msgstr "תוספת" @@ -4187,7 +4239,7 @@ msgstr "" msgid "Save position" msgstr "" -#: pmd_general.php:70 server_synchronize.php:428 server_synchronize.php:871 +#: pmd_general.php:70 server_synchronize.php:427 server_synchronize.php:870 #, fuzzy msgid "Create table" msgstr "יצירת עמוד חדש" @@ -4261,32 +4313,32 @@ msgid "" "appropriate column name." msgstr "" -#: pmd_pdf.php:62 +#: pmd_pdf.php:60 #, fuzzy msgid "Page has been created" msgstr "טבלה %s נמחקה" -#: pmd_pdf.php:64 +#: pmd_pdf.php:62 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:84 +#: pmd_pdf.php:82 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:88 +#: pmd_pdf.php:86 msgid "recommended" msgstr "" -#: pmd_pdf.php:93 +#: pmd_pdf.php:91 msgid "to/from page" msgstr "" -#: querywindow.php:94 +#: querywindow.php:93 msgid "Import files" msgstr "קבצי ייבוא" -#: querywindow.php:105 +#: querywindow.php:104 msgid "All" msgstr "הכל" @@ -4333,65 +4385,65 @@ msgstr "מידע" msgid "Character Sets and Collations" msgstr "חבילות קידוד" -#: server_databases.php:51 +#: server_databases.php:49 msgid "No databases selected." msgstr "אף מאגר נתונים לא נבחר." -#: server_databases.php:62 +#: server_databases.php:60 #, php-format msgid "%s databases have been dropped successfully." msgstr "%s מסדי נתונים נמחקו בהצלחה." -#: server_databases.php:87 +#: server_databases.php:85 msgid "Databases statistics" msgstr "סטטיסטיקת מסד הנתונים" -#: server_databases.php:116 server_status.php:370 +#: server_databases.php:114 server_status.php:370 #: setup/lib/messages.inc.php:114 msgid "Tables" msgstr "טבלאות" -#: server_databases.php:194 server_replication.php:180 -#: server_replication.php:208 +#: server_databases.php:192 server_replication.php:179 +#: server_replication.php:207 msgid "Master replication" msgstr "" -#: server_databases.php:196 server_replication.php:247 +#: server_databases.php:194 server_replication.php:246 msgid "Slave replication" msgstr "" -#: server_databases.php:229 +#: server_databases.php:227 #, fuzzy msgid "Jump to database" msgstr "אין מאגרי נתונים" -#: server_databases.php:266 +#: server_databases.php:264 msgid "Not replicated" msgstr "" -#: server_databases.php:272 +#: server_databases.php:270 #, fuzzy msgid "Replicated" msgstr "יחסים" -#: server_databases.php:288 +#: server_databases.php:286 #, php-format msgid "Check privileges for database "%s"." msgstr "בדיקת הראשות עבור מאגר נתונים "%s"." -#: server_databases.php:292 server_databases.php:293 +#: server_databases.php:290 server_databases.php:291 msgid "Check Privileges" msgstr "בדיקת הרשאות" -#: server_databases.php:357 server_databases.php:358 +#: server_databases.php:355 server_databases.php:356 msgid "Enable Statistics" msgstr "הפעלת סטטיסטיקה" -#: server_databases.php:361 server_databases.php:362 +#: server_databases.php:359 server_databases.php:360 msgid "Disable Statistics" msgstr "ביטול סטטיסטיקה" -#: server_databases.php:365 +#: server_databases.php:363 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -4399,339 +4451,339 @@ msgstr "" "הערה: הפעלת סטטיסטיקות מאגר נתונים כאן יכולות לגרום לתעבורה כבדה בין השרת " "האינטרנט לשרת MySQL." -#: server_engines.php:48 +#: server_engines.php:47 msgid "Storage Engines" msgstr "מנועי אחסון" -#: server_export.php:20 +#: server_export.php:18 msgid "View dump (schema) of databases" msgstr "ראיית הוצאה (תבנית) של מאגרי נתונים" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:23 server_privileges.php:265 msgid "Includes all privileges except GRANT." msgstr "כלול כל ההרשאות חוץ מ- GRANT." -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:24 server_privileges.php:191 +#: server_privileges.php:514 msgid "Allows altering the structure of existing tables." msgstr "מאפשר שינוי של מבני הטבלאות הקיימות." -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:25 server_privileges.php:207 +#: server_privileges.php:520 #, fuzzy msgid "Allows altering and dropping stored routines." msgstr "מאפשר יצירת שגרות מאוחסנות." -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:26 server_privileges.php:183 +#: server_privileges.php:513 #, fuzzy msgid "Allows creating new databases and tables." msgstr "מאפשר מחיקת מאגרי נתונים וטבלאות." -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:27 server_privileges.php:206 +#: server_privileges.php:519 msgid "Allows creating stored routines." msgstr "מאפשר יצירת שגרות מאוחסנות." -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:513 msgid "Allows creating new tables." msgstr "מאפשר יצירת טבלאות חדשות." -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:29 server_privileges.php:194 +#: server_privileges.php:517 msgid "Allows creating temporary tables." msgstr "מאפשר יצירת טבלאות זמניות." -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:30 server_privileges.php:208 +#: server_privileges.php:553 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: server_privileges.php:32 server_privileges.php:199 -#: server_privileges.php:203 server_privileges.php:526 -#: server_privileges.php:530 +#: server_privileges.php:31 server_privileges.php:198 +#: server_privileges.php:202 server_privileges.php:525 +#: server_privileges.php:529 #, fuzzy msgid "Allows creating new views." msgstr "מאפשר יצירת טבלאות חדשות." -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:32 server_privileges.php:182 +#: server_privileges.php:505 msgid "Allows deleting data." msgstr "מאפשר מחיקת מידע." -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:33 server_privileges.php:184 +#: server_privileges.php:516 msgid "Allows dropping databases and tables." msgstr "מאפשר מחיקת מאגרי נתונים וטבלאות." -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:34 server_privileges.php:516 msgid "Allows dropping tables." msgstr "מאפשר מחיקת טבלאות." -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:35 server_privileges.php:199 +#: server_privileges.php:533 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:36 server_privileges.php:209 +#: server_privileges.php:521 #, fuzzy msgid "Allows executing stored routines." msgstr "מאפשר יצירת שגרות מאוחסנות." -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:37 server_privileges.php:188 +#: server_privileges.php:508 msgid "Allows importing data from and exporting data into files." msgstr "" -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:38 server_privileges.php:539 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:515 msgid "Allows creating and dropping indexes." msgstr "" -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:40 server_privileges.php:180 +#: server_privileges.php:441 server_privileges.php:503 msgid "Allows inserting and replacing data." msgstr "" -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:41 server_privileges.php:195 +#: server_privileges.php:548 msgid "Allows locking tables for the current thread." msgstr "" -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:42 server_privileges.php:645 +#: server_privileges.php:647 msgid "Limits the number of new connections the user may open per hour." msgstr "" -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:43 server_privileges.php:633 +#: server_privileges.php:635 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:44 server_privileges.php:639 +#: server_privileges.php:641 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" -#: server_privileges.php:46 server_privileges.php:652 -#: server_privileges.php:654 +#: server_privileges.php:45 server_privileges.php:651 +#: server_privileges.php:653 msgid "Limits the number of simultaneous connections the user may have." msgstr "" -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:46 server_privileges.php:187 +#: server_privileges.php:543 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:47 server_privileges.php:189 +#: server_privileges.php:447 server_privileges.php:549 msgid "Has no effect in this MySQL version." msgstr "" -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:48 server_privileges.php:185 +#: server_privileges.php:544 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:197 +#: server_privileges.php:551 msgid "Allows the user to ask where the slaves / masters are." msgstr "" -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:50 server_privileges.php:196 +#: server_privileges.php:552 msgid "Needed for the replication slaves." msgstr "" -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:51 server_privileges.php:179 +#: server_privileges.php:438 server_privileges.php:502 #, fuzzy msgid "Allows reading data." msgstr "מאפשר מחיקת מידע." -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:52 server_privileges.php:192 +#: server_privileges.php:546 msgid "Gives access to the complete list of databases." msgstr "" -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:53 server_privileges.php:203 +#: server_privileges.php:205 server_privileges.php:518 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:54 server_privileges.php:186 +#: server_privileges.php:545 msgid "Allows shutting down the server." msgstr "" -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:55 server_privileges.php:193 +#: server_privileges.php:542 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " "killing threads of other users." msgstr "" -#: server_privileges.php:57 server_privileges.php:201 -#: server_privileges.php:535 +#: server_privileges.php:56 server_privileges.php:200 +#: server_privileges.php:534 msgid "Allows creating and dropping triggers" msgstr "" -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:57 server_privileges.php:181 +#: server_privileges.php:444 server_privileges.php:504 #, fuzzy msgid "Allows changing data." msgstr "מאפשר מחיקת מידע." -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:58 server_privileges.php:259 msgid "No privileges." msgstr "ללא הרשאות." -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:301 server_privileges.php:302 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "ללא" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1710 server_privileges.php:1716 +#: server_privileges.php:430 server_privileges.php:565 +#: server_privileges.php:1714 server_privileges.php:1720 msgid "Table-specific privileges" msgstr "הרשאות ספציפיות-לטבלאות" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1532 +#: server_privileges.php:431 server_privileges.php:573 +#: server_privileges.php:1536 msgid " Note: MySQL privilege names are expressed in English " msgstr " הערה: שמות הרשאות MySQL מובטאות באנגלית " -#: server_privileges.php:563 server_privileges.php:1531 +#: server_privileges.php:562 server_privileges.php:1535 msgid "Global privileges" msgstr "הרשאות גלובליות" -#: server_privileges.php:565 server_privileges.php:1710 +#: server_privileges.php:564 server_privileges.php:1714 msgid "Database-specific privileges" msgstr "הרשאות ספציפיות למאגר נתונים" -#: server_privileges.php:610 +#: server_privileges.php:609 msgid "Administration" msgstr "ניהול" -#: server_privileges.php:630 +#: server_privileges.php:629 msgid "Resource limits" msgstr "גבולות משאבים" -#: server_privileges.php:631 +#: server_privileges.php:630 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "הערה: הגדרת אפשרויות אלו אל 0 (אפס) יבטלו את ההגבלה." -#: server_privileges.php:708 +#: server_privileges.php:707 msgid "Login Information" msgstr "מידע כניסה" -#: server_privileges.php:802 +#: server_privileges.php:801 msgid "Do not change the password" msgstr "אל תשנה את הסיסמא" -#: server_privileges.php:835 server_privileges.php:2197 +#: server_privileges.php:834 server_privileges.php:2201 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "לא נמצאו משתמשים." -#: server_privileges.php:879 +#: server_privileges.php:878 #, php-format msgid "The user %s already exists!" msgstr "שם המשתמש %s כבר קיים!" -#: server_privileges.php:962 +#: server_privileges.php:961 msgid "You have added a new user." msgstr "משתמש חדש נוסף." -#: server_privileges.php:1183 +#: server_privileges.php:1184 #, php-format msgid "You have updated the privileges for %s." msgstr "אתה עדכנת הרשאות עבור %s." -#: server_privileges.php:1207 +#: server_privileges.php:1208 #, php-format msgid "You have revoked the privileges for %s" msgstr "אתה שללת הרשאות עבור %s" -#: server_privileges.php:1243 +#: server_privileges.php:1244 #, php-format msgid "The password for %s was changed successfully." msgstr "הסיסמא עבור %s שונתה בהצלחה." -#: server_privileges.php:1263 +#: server_privileges.php:1264 #, php-format msgid "Deleting %s" msgstr "מוחק %s" -#: server_privileges.php:1274 +#: server_privileges.php:1275 msgid "No users selected for deleting!" msgstr "" -#: server_privileges.php:1277 +#: server_privileges.php:1278 msgid "Reloading the privileges" msgstr "טוען מחדש הרשאות" -#: server_privileges.php:1292 +#: server_privileges.php:1296 #, fuzzy msgid "The selected users have been deleted successfully." msgstr "%s מסדי נתונים נמחקו בהצלחה." -#: server_privileges.php:1327 +#: server_privileges.php:1331 msgid "The privileges were reloaded successfully." msgstr "ההרשאות נטענו מחדש בהצלחה." -#: server_privileges.php:1355 server_privileges.php:1641 +#: server_privileges.php:1359 server_privileges.php:1645 msgid "Edit Privileges" msgstr "עריכת הרשאות" -#: server_privileges.php:1364 +#: server_privileges.php:1368 msgid "Revoke" msgstr "שלילה" -#: server_privileges.php:1396 +#: server_privileges.php:1400 msgid "User overview" msgstr "סקירת משתמשים" -#: server_privileges.php:1533 server_privileges.php:1715 -#: server_privileges.php:2064 +#: server_privileges.php:1537 server_privileges.php:1719 +#: server_privileges.php:2068 msgid "Grant" msgstr "הענקה" -#: server_privileges.php:1552 server_privileges.php:2154 +#: server_privileges.php:1556 server_privileges.php:2158 msgid "Any" msgstr "כל דבר" -#: server_privileges.php:1601 server_privileges.php:1625 -#: server_privileges.php:2019 server_privileges.php:2208 +#: server_privileges.php:1605 server_privileges.php:1629 +#: server_privileges.php:2023 server_privileges.php:2212 msgid "Add a new User" msgstr "הוספת משתמש חדש" -#: server_privileges.php:1606 +#: server_privileges.php:1610 msgid "Remove selected users" msgstr "הסרת משתמשים שנבחרו" -#: server_privileges.php:1609 +#: server_privileges.php:1613 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "שלילת כל ההרשאות הפעילות מהמשתמשים ומחיקתם לאחר מכן." -#: server_privileges.php:1610 server_privileges.php:1611 -#: server_privileges.php:1612 +#: server_privileges.php:1614 server_privileges.php:1615 +#: server_privileges.php:1616 msgid "Drop the databases that have the same names as the users." msgstr "הסרת מאגרי נתונים שיש להם שמות דומים כמו למשתמשים." -#: server_privileges.php:1628 +#: server_privileges.php:1632 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4743,91 +4795,91 @@ msgstr "" "הטבלאות האלו יכול להיות שונה מההרשאות שהשרת משתמש בהן, אם הן שונו באופן " "ידני. במקרה זה, אתה צריך לבצע %sטעינה מחדש של הרשאות%s לפני שאתה ממשיך." -#: server_privileges.php:1676 +#: server_privileges.php:1680 msgid "The selected user was not found in the privilege table." msgstr "המשתמש שנבחר לא נמצא בטבלת ההרשאות." -#: server_privileges.php:1716 +#: server_privileges.php:1720 msgid "Column-specific privileges" msgstr "הרשאות ספציפיות-לעמודה" -#: server_privileges.php:1917 +#: server_privileges.php:1921 msgid "Add privileges on the following database" msgstr "הוספת הרשאות למאגר הנתונים הבא" -#: server_privileges.php:1935 +#: server_privileges.php:1939 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "תווים כללים _ וגם % צריכים לבוא ביחד עם \\ על מנת להשתמש בהם באמת" -#: server_privileges.php:1938 +#: server_privileges.php:1942 msgid "Add privileges on the following table" msgstr "הוספת הראשאות לטבלה הבאה" -#: server_privileges.php:1995 +#: server_privileges.php:1999 msgid "Change Login Information / Copy User" msgstr "שינוי מידע כניסה / העתקת משתמש" -#: server_privileges.php:1998 +#: server_privileges.php:2002 msgid "Create a new user with the same privileges and ..." msgstr "יצירת משתמש חדש עם אותן ההרשאות וגם ..." -#: server_privileges.php:2000 +#: server_privileges.php:2004 msgid "... keep the old one." msgstr "... שמירת הישן." -#: server_privileges.php:2001 +#: server_privileges.php:2005 msgid " ... delete the old one from the user tables." msgstr " ... מחיקת הישן מטבלאות המשתמשים." -#: server_privileges.php:2002 +#: server_privileges.php:2006 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr " ... בטל את כל ההרשאות הפעילות מהישן ומחק אותו לאחר מכן." -#: server_privileges.php:2003 +#: server_privileges.php:2007 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr " ... מחיקת הישן מטבלאות המשתמשים וטען מחדש את ההרשאות לאחר מכן." -#: server_privileges.php:2025 +#: server_privileges.php:2029 msgid "Database for user" msgstr "" -#: server_privileges.php:2029 +#: server_privileges.php:2033 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "ללא" -#: server_privileges.php:2030 +#: server_privileges.php:2034 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2031 +#: server_privileges.php:2035 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2034 +#: server_privileges.php:2038 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "בדיקת הראשות עבור מאגר נתונים "%s"." -#: server_privileges.php:2057 +#: server_privileges.php:2061 #, php-format msgid "Users having access to "%s"" msgstr "" -#: server_privileges.php:2165 +#: server_privileges.php:2169 msgid "global" msgstr "עולמי" -#: server_privileges.php:2167 +#: server_privileges.php:2171 msgid "database-specific" msgstr "ספציפי למאגר הנתונים" -#: server_privileges.php:2169 +#: server_privileges.php:2173 msgid "wildcard" msgstr "תו כללי" @@ -4846,53 +4898,53 @@ msgstr "phpMyAdmin נכשל בחיסול בהליך %s. רוב הסיכויים msgid "ID" msgstr "קוד זיהוי" -#: server_replication.php:50 +#: server_replication.php:49 msgid "Unknown error" msgstr "" -#: server_replication.php:57 +#: server_replication.php:56 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:64 +#: server_replication.php:63 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:70 +#: server_replication.php:69 msgid "Unable to change master" msgstr "" -#: server_replication.php:73 +#: server_replication.php:72 #, php-format msgid "Master server changed succesfully to %s" msgstr "" -#: server_replication.php:181 +#: server_replication.php:180 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:183 server_status.php:391 +#: server_replication.php:182 server_status.php:391 msgid "Show master status" msgstr "" -#: server_replication.php:186 +#: server_replication.php:185 msgid "Show connected slaves" msgstr "" -#: server_replication.php:209 +#: server_replication.php:208 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:216 +#: server_replication.php:215 msgid "Master configuration" msgstr "" -#: server_replication.php:217 +#: server_replication.php:216 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -4901,110 +4953,110 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:220 +#: server_replication.php:219 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:221 +#: server_replication.php:220 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:224 +#: server_replication.php:223 #, fuzzy msgid "Please select databases:" msgstr "אנא בחר מאגר נתונים" -#: server_replication.php:227 +#: server_replication.php:226 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: server_replication.php:229 +#: server_replication.php:228 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: server_replication.php:292 +#: server_replication.php:291 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:295 +#: server_replication.php:294 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:304 +#: server_replication.php:303 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:307 +#: server_replication.php:306 msgid "See slave status table" msgstr "" -#: server_replication.php:310 +#: server_replication.php:309 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:321 +#: server_replication.php:320 msgid "Control slave:" msgstr "" -#: server_replication.php:324 +#: server_replication.php:323 #, fuzzy msgid "Full start" msgstr "Fulltext" -#: server_replication.php:324 +#: server_replication.php:323 msgid "Full stop" msgstr "" -#: server_replication.php:325 +#: server_replication.php:324 msgid "Reset slave" msgstr "" -#: server_replication.php:326 +#: server_replication.php:325 #, php-format msgid "SQL Thread %s only" msgstr "" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 #, fuzzy msgid "Start" msgstr "שבת" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 msgid "Stop" msgstr "" -#: server_replication.php:327 +#: server_replication.php:326 #, php-format msgid "IO Thread %s only" msgstr "" -#: server_replication.php:331 +#: server_replication.php:330 msgid "Error management:" msgstr "" -#: server_replication.php:333 +#: server_replication.php:332 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:335 +#: server_replication.php:334 msgid "Skip current error" msgstr "" -#: server_replication.php:336 +#: server_replication.php:335 msgid "Skip next" msgstr "" -#: server_replication.php:339 +#: server_replication.php:338 msgid "errors." msgstr "" -#: server_replication.php:354 +#: server_replication.php:353 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -5710,112 +5762,112 @@ msgstr "סוג שאילתה" msgid "Replication status" msgstr "" -#: server_synchronize.php:93 +#: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:96 +#: server_synchronize.php:95 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:121 server_synchronize.php:124 tbl_create.php:77 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:264 +#: server_synchronize.php:263 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:271 +#: server_synchronize.php:270 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:399 server_synchronize.php:838 +#: server_synchronize.php:398 server_synchronize.php:837 msgid "not present" msgstr "" -#: server_synchronize.php:423 server_synchronize.php:866 +#: server_synchronize.php:422 server_synchronize.php:865 msgid "Structure Difference" msgstr "" -#: server_synchronize.php:424 server_synchronize.php:867 +#: server_synchronize.php:423 server_synchronize.php:866 msgid "Data Difference" msgstr "" -#: server_synchronize.php:429 server_synchronize.php:872 +#: server_synchronize.php:428 server_synchronize.php:871 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:430 server_synchronize.php:873 +#: server_synchronize.php:429 server_synchronize.php:872 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:431 server_synchronize.php:874 +#: server_synchronize.php:430 server_synchronize.php:873 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:432 server_synchronize.php:875 +#: server_synchronize.php:431 server_synchronize.php:874 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:433 server_synchronize.php:876 +#: server_synchronize.php:432 server_synchronize.php:875 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:434 server_synchronize.php:877 +#: server_synchronize.php:433 server_synchronize.php:876 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:435 server_synchronize.php:878 +#: server_synchronize.php:434 server_synchronize.php:877 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:445 server_synchronize.php:889 +#: server_synchronize.php:444 server_synchronize.php:888 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:448 server_synchronize.php:893 +#: server_synchronize.php:447 server_synchronize.php:892 msgid "Apply Selected Changes" msgstr "" -#: server_synchronize.php:450 server_synchronize.php:895 +#: server_synchronize.php:449 server_synchronize.php:894 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:463 +#: server_synchronize.php:462 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:941 +#: server_synchronize.php:940 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:1002 +#: server_synchronize.php:1001 msgid "The following queries have been executed:" msgstr "" -#: server_synchronize.php:1121 +#: server_synchronize.php:1120 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1122 +#: server_synchronize.php:1121 #, fuzzy #| msgid "Connections" msgid "Current connection" msgstr "חיבורים" -#: server_synchronize.php:1151 +#: server_synchronize.php:1150 #, php-format msgid "Configuration: %s" msgstr "" -#: server_synchronize.php:1166 +#: server_synchronize.php:1165 msgid "Socket" msgstr "" -#: server_synchronize.php:1212 +#: server_synchronize.php:1211 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -6372,8 +6424,8 @@ msgstr "" #: setup/lib/messages.inc.php:128 msgid "" "Configure phpMyAdmin database to gain access to additional features, see " -"[a@../Documentation.html#linked-tables]linked-tables infrastructure[/a] in " -"documentation" +"[a@../Documentation.html#linked-tables]phpMyAdmin configuration storage[/a] " +"in documentation" msgstr "" #: setup/lib/messages.inc.php:129 setup/lib/messages.inc.php:290 @@ -7433,114 +7485,114 @@ msgstr "" msgid "ZIP" msgstr "" -#: sql.php:495 tbl_replace.php:385 +#: sql.php:494 tbl_replace.php:384 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: sql.php:512 +#: sql.php:511 msgid "Showing as PHP code" msgstr "" -#: sql.php:515 tbl_replace.php:359 +#: sql.php:514 tbl_replace.php:358 msgid "Showing SQL query" msgstr "" -#: sql.php:517 +#: sql.php:516 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "בדיקת תקינות SQL" -#: sql.php:638 +#: sql.php:631 #, php-format msgid "Problems with indexes of table `%s`" msgstr "בעיות עם אינדקסים של טבלה `%s`" -#: sql.php:670 +#: sql.php:663 msgid "Label" msgstr "תווית" -#: tbl_addfield.php:188 tbl_alter.php:102 tbl_indexes.php:97 +#: tbl_addfield.php:185 tbl_alter.php:100 tbl_indexes.php:97 #, php-format msgid "Table %1$s has been altered successfully" msgstr "" -#: tbl_change.php:250 tbl_select.php:26 tbl_select.php:27 tbl_select.php:30 -#: tbl_select.php:33 +#: tbl_change.php:245 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_select.php:32 msgid "Browse foreign values" msgstr "" -#: tbl_change.php:280 tbl_change.php:318 +#: tbl_change.php:275 tbl_change.php:313 msgid "Function" msgstr "פונקציה" -#: tbl_change.php:300 tbl_indexes.php:199 tbl_indexes.php:224 +#: tbl_change.php:295 tbl_indexes.php:198 tbl_indexes.php:223 msgid "Ignore" msgstr "התעלמות" -#: tbl_change.php:725 +#: tbl_change.php:720 #, fuzzy #| msgid " Because of its length,
                            this field might not be editable " msgid " Because of its length,
                            this column might not be editable " msgstr " משום אורכם,
                            השדה הזה יכול להיות בלתי עריך " -#: tbl_change.php:884 +#: tbl_change.php:835 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:890 +#: tbl_change.php:841 msgid "Binary - do not edit" msgstr "בינארי - אין לערוך" -#: tbl_change.php:983 +#: tbl_change.php:889 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:1128 +#: tbl_change.php:1026 msgid "Insert as new row" msgstr "הכנסה כשורה חדשה" -#: tbl_change.php:1129 +#: tbl_change.php:1027 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:1130 +#: tbl_change.php:1028 msgid "Show insert query" msgstr "" -#: tbl_change.php:1145 +#: tbl_change.php:1043 msgid "Go back to previous page" msgstr "חזרה לעמוד הקודם" -#: tbl_change.php:1146 +#: tbl_change.php:1044 msgid "Insert another new row" msgstr "הוספה נוספת של שורה חדשה" -#: tbl_change.php:1150 +#: tbl_change.php:1048 msgid "Go back to this page" msgstr "חזרה אחורה לעמוד זה" -#: tbl_change.php:1158 +#: tbl_change.php:1056 msgid "Edit next row" msgstr "עריכת השורה הבאה" -#: tbl_change.php:1169 +#: tbl_change.php:1067 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: tbl_change.php:1207 +#: tbl_change.php:1105 #, php-format msgid "Restart insertion with %s rows" msgstr "" -#: tbl_create.php:57 +#: tbl_create.php:55 #, fuzzy, php-format msgid "Table %s already exists!" msgstr "שם המשתמש %s כבר קיים!" -#: tbl_create.php:244 +#: tbl_create.php:241 #, fuzzy, php-format msgid "Table %1$s has been created." msgstr "טבלה %s נמחקה" @@ -7561,204 +7613,204 @@ msgstr "לא ניתן לשנות שם אינדקס אל PRIMARY!" msgid "No index parts defined!" msgstr "No index parts defined!" -#: tbl_indexes.php:159 +#: tbl_indexes.php:158 msgid "Create a new index" msgstr "יצירת אינדקס חדש" -#: tbl_indexes.php:161 +#: tbl_indexes.php:160 msgid "Modify an index" msgstr "עריכת אינדקס" -#: tbl_indexes.php:167 +#: tbl_indexes.php:166 msgid "Index name:" msgstr "שם אינדקס:" -#: tbl_indexes.php:173 +#: tbl_indexes.php:172 msgid "Index type:" msgstr "סוג אינדקס:" -#: tbl_indexes.php:183 +#: tbl_indexes.php:182 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" -#: tbl_indexes.php:250 +#: tbl_indexes.php:249 #, php-format msgid "Add to index  %s column(s)" msgstr "הוספה לאינדקס  %s שורה/שורות" -#: tbl_indexes.php:255 tbl_structure.php:588 tbl_structure.php:599 +#: tbl_indexes.php:254 tbl_structure.php:586 tbl_structure.php:597 msgid "Column count has to be larger than zero." msgstr "מספר העמודות צריך להיות גדול מאפס." -#: tbl_move_copy.php:45 +#: tbl_move_copy.php:44 #, fuzzy msgid "Can't move table to same one!" msgstr "לא ניתן להעתיק טבלה אל אותה אחת!" -#: tbl_move_copy.php:47 +#: tbl_move_copy.php:46 msgid "Can't copy table to same one!" msgstr "לא ניתן להעתיק טבלה אל אותה אחת!" -#: tbl_move_copy.php:55 +#: tbl_move_copy.php:54 #, php-format msgid "Table %s has been moved to %s." msgstr "הטבלה %s הועברה ל- %s." -#: tbl_move_copy.php:57 +#: tbl_move_copy.php:56 #, php-format msgid "Table %s has been copied to %s." msgstr "טבלה %s הועתקה אל %s." -#: tbl_move_copy.php:81 +#: tbl_move_copy.php:80 msgid "The table name is empty!" msgstr "שם הטבלה ריק!" -#: tbl_operations.php:248 +#: tbl_operations.php:246 msgid "Alter table order by" msgstr "שינוי סדר הטבלה לפי" -#: tbl_operations.php:257 +#: tbl_operations.php:255 msgid "(singly)" msgstr "(singly)" -#: tbl_operations.php:277 +#: tbl_operations.php:275 msgid "Move table to (database.table):" msgstr "העברת טבלה אל (מסד נתונים.טבלה):" -#: tbl_operations.php:335 +#: tbl_operations.php:333 msgid "Table options" msgstr "אפשרויות טבלה" -#: tbl_operations.php:339 +#: tbl_operations.php:337 msgid "Rename table to" msgstr "שינוי שם טבלה אל" -#: tbl_operations.php:510 +#: tbl_operations.php:508 msgid "Copy table to (database.table):" msgstr "העתקת טבלה אל (מסד נתונים.טבלה):" -#: tbl_operations.php:557 +#: tbl_operations.php:555 msgid "Switch to copied table" msgstr "מעבר לטבלה שהועתקה" -#: tbl_operations.php:569 +#: tbl_operations.php:567 msgid "Table maintenance" msgstr "אחזקת טבלה" -#: tbl_operations.php:590 +#: tbl_operations.php:588 msgid "Defragment table" msgstr "איחוי טבלה" -#: tbl_operations.php:629 +#: tbl_operations.php:627 #, php-format msgid "Table %s has been flushed" msgstr "טבלה %s אופסה" -#: tbl_operations.php:635 +#: tbl_operations.php:633 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "ריקון טבלה (\"FLUSH\")" -#: tbl_operations.php:650 +#: tbl_operations.php:648 #, fuzzy msgid "Partition maintenance" msgstr "אחזקת טבלה" -#: tbl_operations.php:658 +#: tbl_operations.php:656 #, php-format msgid "Partition %s" msgstr "" -#: tbl_operations.php:661 +#: tbl_operations.php:659 msgid "Analyze" msgstr "" -#: tbl_operations.php:662 +#: tbl_operations.php:660 #, fuzzy msgid "Check" msgstr "צ'יכית" -#: tbl_operations.php:663 +#: tbl_operations.php:661 msgid "Optimize" msgstr "" -#: tbl_operations.php:664 +#: tbl_operations.php:662 msgid "Rebuild" msgstr "" -#: tbl_operations.php:665 +#: tbl_operations.php:663 #, fuzzy msgid "Repair" msgstr "תיקון טבלה" -#: tbl_operations.php:677 +#: tbl_operations.php:675 msgid "Remove partitioning" msgstr "" -#: tbl_operations.php:703 +#: tbl_operations.php:701 msgid "Check referential integrity:" msgstr "" -#: tbl_printview.php:73 +#: tbl_printview.php:72 msgid "Show tables" msgstr "ראיית טבלאות" -#: tbl_printview.php:308 tbl_structure.php:655 +#: tbl_printview.php:307 tbl_structure.php:653 msgid "Space usage" msgstr "שימוש מקום" -#: tbl_printview.php:312 tbl_structure.php:659 +#: tbl_printview.php:311 tbl_structure.php:657 msgid "Usage" msgstr "שימוש" -#: tbl_printview.php:339 tbl_structure.php:686 +#: tbl_printview.php:338 tbl_structure.php:684 msgid "Effective" msgstr "יעיל" -#: tbl_printview.php:364 tbl_structure.php:724 +#: tbl_printview.php:363 tbl_structure.php:722 msgid "Row Statistics" msgstr "סטטיסטיקת שורה" -#: tbl_printview.php:367 tbl_structure.php:727 +#: tbl_printview.php:366 tbl_structure.php:725 msgid "Statements" msgstr "משפטים" -#: tbl_printview.php:378 tbl_structure.php:739 +#: tbl_printview.php:377 tbl_structure.php:737 msgid "static" msgstr "" -#: tbl_printview.php:380 tbl_structure.php:741 +#: tbl_printview.php:379 tbl_structure.php:739 msgid "dynamic" msgstr "דינאמי" -#: tbl_printview.php:402 tbl_structure.php:784 +#: tbl_printview.php:401 tbl_structure.php:782 msgid "Row length" msgstr "אורך שורה" -#: tbl_printview.php:412 tbl_structure.php:792 +#: tbl_printview.php:411 tbl_structure.php:790 msgid " Row size " msgstr " גודל שורה " -#: tbl_relation.php:278 +#: tbl_relation.php:276 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" -#: tbl_relation.php:404 +#: tbl_relation.php:402 #, fuzzy #| msgid "Internal relations" msgid "Internal relation" msgstr "יחסים פנימיים" -#: tbl_relation.php:406 +#: tbl_relation.php:404 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: tbl_relation.php:412 +#: tbl_relation.php:410 msgid "Foreign key constraint" msgstr "" @@ -7766,233 +7818,233 @@ msgstr "" msgid "No rows selected" msgstr "לא נבחרו שורות" -#: tbl_select.php:130 +#: tbl_select.php:129 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "ביצוע \"שאילתה לדוגמה\" (תו כללי: \"%\")" -#: tbl_select.php:136 +#: tbl_select.php:135 #, fuzzy msgid "Operator" msgstr "פעולות" -#: tbl_select.php:267 +#: tbl_select.php:266 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "בחירת שדות (לפחות אחד):" -#: tbl_select.php:285 +#: tbl_select.php:284 msgid "Add search conditions (body of the \"where\" clause):" msgstr "הוספת תנאי חיפוש (הגוף של תנאי \"where\"):" -#: tbl_select.php:292 +#: tbl_select.php:291 msgid "Number of rows per page" msgstr "מספר של שורות לכל דף" -#: tbl_select.php:298 +#: tbl_select.php:297 msgid "Display order:" msgstr "סדר תצוגה:" -#: tbl_structure.php:160 +#: tbl_structure.php:159 msgid "Browse distinct values" msgstr "" -#: tbl_structure.php:360 +#: tbl_structure.php:358 #, fuzzy #| msgid "None" msgctxt "None for default" msgid "None" msgstr "ללא" -#: tbl_structure.php:373 +#: tbl_structure.php:371 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Column %s has been dropped" msgstr "טבלה %s נמחקה" -#: tbl_structure.php:384 +#: tbl_structure.php:382 #, php-format msgid "A primary key has been added on %s" msgstr "מפתח ראשי נוסף אל %s" -#: tbl_structure.php:399 tbl_structure.php:413 tbl_structure.php:427 +#: tbl_structure.php:397 tbl_structure.php:411 tbl_structure.php:425 #, php-format msgid "An index has been added on %s" msgstr "אינדקס נוסף אל %s" -#: tbl_structure.php:505 tbl_structure.php:507 +#: tbl_structure.php:503 tbl_structure.php:505 msgid "Relation view" msgstr "תצוגת יחסים" -#: tbl_structure.php:514 tbl_structure.php:516 +#: tbl_structure.php:512 tbl_structure.php:514 msgid "Propose table structure" msgstr "הצעת מבנה טבלה" -#: tbl_structure.php:539 +#: tbl_structure.php:537 #, fuzzy #| msgid "Add %s field(s)" msgid "Add column" msgstr "הוספת %s תאים" -#: tbl_structure.php:553 +#: tbl_structure.php:551 msgid "At End of Table" msgstr "בסוף טבלה" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At Beginning of Table" msgstr "בתחילת טבלה" -#: tbl_structure.php:555 +#: tbl_structure.php:553 #, php-format msgid "After %s" msgstr "לאחר %s" -#: tbl_structure.php:593 +#: tbl_structure.php:591 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "יצירת אינדקס על %s  עמודות" -#: tbl_structure.php:755 +#: tbl_structure.php:753 msgid "partitioned" msgstr "" -#: tbl_tracking.php:113 +#: tbl_tracking.php:109 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:186 +#: tbl_tracking.php:182 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "" -#: tbl_tracking.php:194 +#: tbl_tracking.php:190 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "" -#: tbl_tracking.php:202 +#: tbl_tracking.php:198 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "" -#: tbl_tracking.php:212 +#: tbl_tracking.php:208 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:219 +#: tbl_tracking.php:215 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:220 +#: tbl_tracking.php:216 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:229 +#: tbl_tracking.php:225 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:250 tbl_tracking.php:378 +#: tbl_tracking.php:245 tbl_tracking.php:373 msgid "Close" msgstr "" -#: tbl_tracking.php:261 +#: tbl_tracking.php:256 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:380 +#: tbl_tracking.php:375 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:396 tbl_tracking.php:503 +#: tbl_tracking.php:391 tbl_tracking.php:498 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "" -#: tbl_tracking.php:409 tbl_tracking.php:460 +#: tbl_tracking.php:404 tbl_tracking.php:455 #, fuzzy msgid "Date" msgstr "נתונים" -#: tbl_tracking.php:410 tbl_tracking.php:461 +#: tbl_tracking.php:405 tbl_tracking.php:456 #, fuzzy msgid "Username" msgstr "שם משתמש:" -#: tbl_tracking.php:411 +#: tbl_tracking.php:406 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:462 +#: tbl_tracking.php:457 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:506 +#: tbl_tracking.php:501 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:507 +#: tbl_tracking.php:502 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:520 +#: tbl_tracking.php:515 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:560 +#: tbl_tracking.php:555 msgid "Show versions" msgstr "" -#: tbl_tracking.php:592 +#: tbl_tracking.php:587 #, fuzzy msgid "Version" msgstr "Persian" -#: tbl_tracking.php:639 +#: tbl_tracking.php:634 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "" -#: tbl_tracking.php:641 +#: tbl_tracking.php:636 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:652 +#: tbl_tracking.php:647 #, php-format msgid "Activate tracking for %s.%s" msgstr "" -#: tbl_tracking.php:654 +#: tbl_tracking.php:649 msgid "Activate now" msgstr "" -#: tbl_tracking.php:667 +#: tbl_tracking.php:662 #, php-format msgid "Create version %s of %s.%s" msgstr "" -#: tbl_tracking.php:671 +#: tbl_tracking.php:666 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:679 +#: tbl_tracking.php:674 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:687 +#: tbl_tracking.php:682 #, fuzzy msgid "Create version" msgstr "גרסת שרת" @@ -8040,11 +8092,36 @@ msgstr "הפרופיל עודכן בהצלחה." msgid "VIEW name" msgstr "" -#: view_operations.php:92 +#: view_operations.php:91 #, fuzzy msgid "Rename view to" msgstr "שינוי שם טבלה אל" +#, fuzzy +#~| msgid "Enabled" +#~ msgctxt "BLOB repository" +#~ msgid "Enabled" +#~ msgstr "מופעל" + +#, fuzzy +#~ msgid "Disable" +#~ msgstr "מבוטל" + +#, fuzzy +#~ msgctxt "BLOB repository" +#~ msgid "Repair" +#~ msgstr "תיקון טבלה" + +#, fuzzy +#~| msgid "Disabled" +#~ msgctxt "BLOB repository" +#~ msgid "Disabled" +#~ msgstr "מבוטל" + +#, fuzzy +#~ msgid "Enable" +#~ msgstr "מופעל" + #~ msgid "" #~ "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " #~ "extension. Please check your PHP configuration." diff --git a/po/hi.po b/po/hi.po index defb3e523..0b2e7e6e1 100644 --- a/po/hi.po +++ b/po/hi.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-21 13:53+0200\n" +"POT-Creation-Date: 2010-07-26 17:18+0200\n" "PO-Revision-Date: 2010-05-21 05:48+0200\n" "Last-Translator: \n" "Language-Team: hindi \n" @@ -14,19 +14,19 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.1\n" -#: browse_foreigners.php:37 browse_foreigners.php:58 -#: libraries/display_tbl.lib.php:416 server_privileges.php:1506 +#: browse_foreigners.php:36 browse_foreigners.php:57 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1510 msgid "Show all" msgstr "सभी दिखाओ" -#: browse_foreigners.php:81 libraries/common.lib.php:2313 -#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:393 -#: libraries/export/pdf.php:146 pdf_schema.php:282 pdf_schema.php:1122 -#: pdf_schema.php:1138 +#: browse_foreigners.php:80 libraries/common.lib.php:2318 +#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:392 +#: libraries/export/pdf.php:146 pdf_schema.php:281 pdf_schema.php:1121 +#: pdf_schema.php:1137 msgid "Page number:" msgstr "पृष्ठ संख्या:" -#: browse_foreigners.php:131 +#: browse_foreigners.php:130 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -35,139 +35,153 @@ msgstr "" "लक्ष्य ब्राउज़र विंडो को अद्यतन नहीं किया जा सकता है. शायद आपने मूल विंडो बंद कर दिया है," "या अपनी ब्राउसर की सिक्यूरिटी सेट्टिंग को क्रोस-विंडो अद्यतन के लिए कांफिगुर कर रखा है." -#: browse_foreigners.php:149 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2829 -#: libraries/common.lib.php:2836 libraries/db_links.inc.php:74 -#: libraries/tbl_links.inc.php:62 +#: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 +#: db_structure.php:89 db_structure.php:91 db_structure.php:102 +#: db_structure.php:104 libraries/common.lib.php:2834 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "खोजें" -#: browse_foreigners.php:152 db_operations.php:384 db_operations.php:428 -#: db_operations.php:498 db_operations.php:608 db_search.php:344 -#: db_structure.php:566 js/messages.php:48 libraries/Config.class.php:1043 -#: libraries/Theme_Manager.class.php:310 +#: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 +#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 +#: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 -#: libraries/common.lib.php:1340 libraries/common.lib.php:2289 +#: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 -#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:275 -#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:531 -#: libraries/display_tbl.lib.php:613 libraries/replication_gui.lib.php:75 +#: libraries/display_export.lib.php:269 libraries/display_import.lib.php:275 +#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 +#: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 #: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:781 -#: main.php:127 navigation.php:231 pdf_pages.php:291 pdf_pages.php:327 -#: pdf_pages.php:529 pmd_pdf.php:115 server_binlog.php:128 -#: server_privileges.php:664 server_privileges.php:1616 -#: server_privileges.php:1963 server_privileges.php:2010 -#: server_privileges.php:2049 server_replication.php:234 -#: server_replication.php:317 server_replication.php:340 -#: server_synchronize.php:1208 tbl_change.php:328 tbl_change.php:1172 -#: tbl_change.php:1209 tbl_indexes.php:253 tbl_operations.php:264 -#: tbl_operations.php:301 tbl_operations.php:498 tbl_operations.php:560 -#: tbl_operations.php:680 tbl_select.php:324 tbl_structure.php:561 -#: tbl_structure.php:596 tbl_tracking.php:394 tbl_tracking.php:511 -#: view_create.php:181 view_operations.php:100 +#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 +#: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 +#: server_privileges.php:663 server_privileges.php:1620 +#: server_privileges.php:1967 server_privileges.php:2014 +#: server_privileges.php:2053 server_replication.php:233 +#: server_replication.php:316 server_replication.php:339 +#: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 +#: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 +#: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 +#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "आगे" -#: browse_foreigners.php:167 browse_foreigners.php:171 -#: libraries/Index.class.php:441 tbl_tracking.php:319 +#: browse_foreigners.php:166 browse_foreigners.php:170 +#: libraries/Index.class.php:441 tbl_tracking.php:314 msgid "Keyname" msgstr "मुख्यनाम" -#: browse_foreigners.php:168 browse_foreigners.php:170 -#: server_collations.php:54 server_collations.php:66 server_engines.php:58 +#: browse_foreigners.php:167 browse_foreigners.php:169 +#: server_collations.php:54 server_collations.php:66 server_engines.php:57 #: server_status.php:738 msgid "Description" msgstr "वर्णन" -#: browse_foreigners.php:246 browse_foreigners.php:255 -#: browse_foreigners.php:267 browse_foreigners.php:275 +#: browse_foreigners.php:245 browse_foreigners.php:254 +#: browse_foreigners.php:266 browse_foreigners.php:274 msgid "Use this value" msgstr "इस मूल्य का उपयोग करें" -#: db_create.php:45 +#: bs_disp_as_mime_type.php:29 bs_play_media.php:35 +msgid "No blob streaming server configured!" +msgstr "" + +#: bs_disp_as_mime_type.php:35 +#, fuzzy +#| msgid "Failed to write file to disk." +msgid "Failed to fetch headers" +msgstr "डिस्क में फ़ाइल लिखने में असफल" + +#: bs_disp_as_mime_type.php:41 +msgid "Failed to open remote URL" +msgstr "" + +#: db_create.php:44 #, php-format msgid "Database %1$s has been created." msgstr "%1$s डेटाबेस बनाया गया है." -#: db_datadict.php:48 db_operations.php:377 +#: db_datadict.php:48 db_operations.php:313 msgid "Database comment: " msgstr "डाटाबेस टिप्पणि: " -#: db_datadict.php:164 libraries/tbl_properties.inc.php:723 -#: pdf_schema.php:1235 tbl_operations.php:346 tbl_printview.php:128 +#: db_datadict.php:164 libraries/tbl_properties.inc.php:722 +#: pdf_schema.php:1234 tbl_operations.php:344 tbl_printview.php:127 msgid "Table comments" msgstr " टेबल टिप्पणि:" -#: db_datadict.php:173 db_qbe.php:173 libraries/Index.class.php:445 +#: db_datadict.php:173 db_qbe.php:170 libraries/Index.class.php:445 #: libraries/export/htmlword.php:243 libraries/export/latex.php:364 #: libraries/export/odt.php:293 libraries/export/texytext.php:233 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:274 -#: pdf_schema.php:1261 pdf_schema.php:1282 tbl_change.php:306 -#: tbl_indexes.php:188 tbl_printview.php:140 tbl_relation.php:401 -#: tbl_select.php:133 tbl_structure.php:176 tbl_tracking.php:272 -#: tbl_tracking.php:323 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 +#: pdf_schema.php:1260 pdf_schema.php:1281 tbl_change.php:301 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:132 tbl_structure.php:175 tbl_tracking.php:267 +#: tbl_tracking.php:318 #, fuzzy #| msgid "Column names" msgid "Column" msgstr "कोलम के नाम" -#: db_datadict.php:174 db_printview.php:105 libraries/Index.class.php:442 +#: db_datadict.php:174 db_printview.php:104 libraries/Index.class.php:442 #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 #: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:244 #: libraries/export/latex.php:364 libraries/export/odt.php:296 #: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:99 -#: pdf_schema.php:1262 pdf_schema.php:1283 server_privileges.php:2062 -#: tbl_change.php:285 tbl_change.php:312 tbl_printview.php:141 -#: tbl_printview.php:311 tbl_select.php:134 tbl_structure.php:177 -#: tbl_structure.php:658 tbl_tracking.php:273 tbl_tracking.php:320 +#: pdf_schema.php:1261 pdf_schema.php:1282 server_privileges.php:2066 +#: tbl_change.php:280 tbl_change.php:307 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:133 tbl_structure.php:176 +#: tbl_structure.php:656 tbl_tracking.php:268 tbl_tracking.php:315 msgid "Type" msgstr "टाइप" #: db_datadict.php:176 libraries/Index.class.php:448 #: libraries/export/htmlword.php:245 libraries/export/latex.php:364 #: libraries/export/odt.php:299 libraries/export/texytext.php:235 -#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1264 -#: pdf_schema.php:1285 tbl_change.php:321 tbl_printview.php:143 -#: tbl_structure.php:180 tbl_tracking.php:275 tbl_tracking.php:326 +#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1263 +#: pdf_schema.php:1284 tbl_change.php:316 tbl_printview.php:142 +#: tbl_structure.php:179 tbl_tracking.php:270 tbl_tracking.php:321 msgid "Null" msgstr "अशक्त" -#: db_datadict.php:177 db_structure.php:500 libraries/export/htmlword.php:246 +#: db_datadict.php:177 db_structure.php:486 libraries/export/htmlword.php:246 #: libraries/export/latex.php:364 libraries/export/odt.php:302 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:105 -#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 -#: tbl_structure.php:181 tbl_tracking.php:276 +#: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:143 +#: tbl_structure.php:180 tbl_tracking.php:271 msgid "Default" msgstr "डिफ़ॉल्ट" #: db_datadict.php:181 libraries/export/htmlword.php:248 #: libraries/export/latex.php:366 libraries/export/odt.php:306 -#: libraries/export/texytext.php:238 pdf_schema.php:1267 pdf_schema.php:1288 -#: tbl_printview.php:148 +#: libraries/export/texytext.php:238 pdf_schema.php:1266 pdf_schema.php:1287 +#: tbl_printview.php:147 msgid "Links to" msgstr "के लिए लिंक" -#: db_datadict.php:183 db_printview.php:111 libraries/export/htmlword.php:251 +#: db_datadict.php:183 db_printview.php:110 libraries/export/htmlword.php:251 #: libraries/export/latex.php:49 libraries/export/latex.php:369 #: libraries/export/odt.php:37 libraries/export/odt.php:311 #: libraries/export/sql.php:29 libraries/export/texytext.php:241 -#: libraries/tbl_properties.inc.php:129 pdf_schema.php:1278 -#: pdf_schema.php:1289 tbl_printview.php:150 +#: libraries/tbl_properties.inc.php:128 pdf_schema.php:1277 +#: pdf_schema.php:1288 tbl_printview.php:149 msgid "Comments" msgstr "टिप्पणी" #: db_datadict.php:266 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/export/htmlword.php:321 #: libraries/export/latex.php:434 libraries/export/odt.php:367 -#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:262 -#: pdf_schema.php:1343 server_privileges.php:1560 server_privileges.php:1571 -#: server_privileges.php:1881 server_privileges.php:1886 -#: server_privileges.php:2179 sql.php:131 sql.php:193 tbl_printview.php:227 -#: tbl_structure.php:349 tbl_tracking.php:336 tbl_tracking.php:341 +#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:261 +#: pdf_schema.php:1342 server_privileges.php:1564 server_privileges.php:1575 +#: server_privileges.php:1885 server_privileges.php:1890 +#: server_privileges.php:2183 sql.php:130 sql.php:192 tbl_printview.php:226 +#: tbl_structure.php:347 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "नहीं" @@ -178,17 +192,17 @@ msgstr "नहीं" #: libraries/mult_submits.inc.php:49 libraries/mult_submits.inc.php:54 #: libraries/mult_submits.inc.php:59 libraries/mult_submits.inc.php:91 #: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:105 -#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:261 -#: libraries/mult_submits.inc.php:272 pdf_schema.php:1343 -#: server_databases.php:63 server_privileges.php:1557 -#: server_privileges.php:1571 server_privileges.php:1881 -#: server_privileges.php:1884 server_privileges.php:2179 sql.php:192 -#: tbl_printview.php:227 tbl_structure.php:39 tbl_structure.php:349 -#: tbl_tracking.php:334 tbl_tracking.php:339 +#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:260 +#: libraries/mult_submits.inc.php:271 pdf_schema.php:1342 +#: server_databases.php:61 server_privileges.php:1561 +#: server_privileges.php:1575 server_privileges.php:1885 +#: server_privileges.php:1888 server_privileges.php:2183 sql.php:191 +#: tbl_printview.php:226 tbl_structure.php:38 tbl_structure.php:347 +#: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" msgstr "हाँ " -#: db_datadict.php:321 db_printview.php:265 tbl_printview.php:496 +#: db_datadict.php:321 db_printview.php:264 tbl_printview.php:495 msgid "Print" msgstr "छापें" @@ -196,188 +210,154 @@ msgstr "छापें" msgid "View dump (schema) of database" msgstr "डेटाबेस का डंप (स्कीमा) दिखाएं" -#: db_export.php:32 db_printview.php:95 db_qbe.php:101 db_structure.php:50 -#: db_tracking.php:34 export.php:352 navigation.php:326 +#: db_export.php:32 db_printview.php:94 db_qbe.php:98 db_structure.php:49 +#: db_tracking.php:30 export.php:350 navigation.php:325 msgid "No tables found in database." msgstr "डाटाबेस में कोई टेबल नहीं।" -#: db_export.php:42 db_search.php:326 server_export.php:26 +#: db_export.php:42 db_search.php:326 server_export.php:24 msgid "Select All" msgstr "सभी का चयन करें" -#: db_export.php:44 db_search.php:329 server_export.php:28 +#: db_export.php:44 db_search.php:329 server_export.php:26 msgid "Unselect All" msgstr "सभी को रद्द करें" -#: db_operations.php:37 tbl_create.php:49 +#: db_operations.php:33 tbl_create.php:47 msgid "The database name is empty!" msgstr "डेटाबेस नाम खाली है" -#: db_operations.php:235 +#: db_operations.php:231 #, php-format msgid "Database %s has been renamed to %s" msgstr " डेटाबेस का नाम %s बदल कर %s रखा गया है" -#: db_operations.php:239 +#: db_operations.php:235 #, php-format msgid "Database %s has been copied to %s" msgstr " डेटाबेस %s से %s में कॉपी किया गया है" -#: db_operations.php:411 +#: db_operations.php:347 msgid "Rename database to" msgstr "डेटाबेस का नाम बदल कर ____ रखें" -#: db_operations.php:416 server_processlist.php:56 +#: db_operations.php:352 server_processlist.php:56 msgid "Command" msgstr "आदेश" -#: db_operations.php:428 tbl_change.php:1141 +#: db_operations.php:364 tbl_change.php:1039 msgid "and then" msgstr "और फिर" -#: db_operations.php:454 +#: db_operations.php:390 msgid "Copy database to" msgstr "डेटाबेस को ______ में कॉपी करें" -#: db_operations.php:461 tbl_operations.php:527 tbl_tracking.php:387 +#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "केवल संरचना" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:389 +#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "संरचना और डाटा" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:388 +#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "केवल डाटा" -#: db_operations.php:471 +#: db_operations.php:407 msgid "CREATE DATABASE before copying" msgstr "डेटाबेस कॉपी करने से पहले डेटाबेस का निर्माण करें" -#: db_operations.php:474 libraries/export/sql.php:51 +#: db_operations.php:410 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 -#: libraries/export/sql.php:81 tbl_operations.php:535 +#: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "%s जोडें" -#: db_operations.php:478 libraries/export/sql.php:77 tbl_operations.php:298 -#: tbl_operations.php:537 +#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT मूल्य जोडें" -#: db_operations.php:482 tbl_operations.php:544 +#: db_operations.php:418 tbl_operations.php:542 msgid "Add constraints" msgstr "शर्तें जोडें" -#: db_operations.php:495 +#: db_operations.php:431 msgid "Switch to copied database" msgstr "नक़ल किये गए डाटाबेस पर जायें" -#: db_operations.php:536 -msgid "BLOB Repository" -msgstr "BLOB भंडार गृह" - -#: db_operations.php:539 db_tracking.php:75 libraries/common.lib.php:1357 -#: libraries/server_links.inc.php:48 server_processlist.php:58 -#: tbl_tracking.php:595 test/theme.php:100 -msgid "Status" -msgstr "स्थिति" - -#: db_operations.php:547 -msgctxt "BLOB repository" -msgid "Enabled" -msgstr "सक्षम" - -#: db_operations.php:551 -msgid "Disable" -msgstr "असक्षम" - -#: db_operations.php:561 -msgid "Damaged" -msgstr "क्षतिग्रस्त" - -#: db_operations.php:565 -msgctxt "BLOB repository" -msgid "Repair" -msgstr "मरम्मत" - -#: db_operations.php:573 -msgctxt "BLOB repository" -msgid "Disabled" -msgstr "असक्षम" - -#: db_operations.php:577 -msgid "Enable" -msgstr "सक्षम" - -#: db_operations.php:601 libraries/Index.class.php:447 +#: db_operations.php:451 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 -#: server_collations.php:53 server_collations.php:65 server_databases.php:110 -#: tbl_operations.php:362 tbl_select.php:135 tbl_structure.php:178 -#: tbl_structure.php:766 tbl_tracking.php:274 tbl_tracking.php:325 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 +#: server_collations.php:53 server_collations.php:65 server_databases.php:108 +#: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:177 +#: tbl_structure.php:764 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "क्रम में करें" -#: db_operations.php:614 main.php:315 pdf_schema.php:33 -#, php-format +#: db_operations.php:464 pdf_schema.php:32 +#, fuzzy, php-format +#| msgid "" +#| "The additional features for working with linked tables have been " +#| "deactivated. To find out why click %shere%s." msgid "" -"The additional features for working with linked tables have been " -"deactivated. To find out why click %shere%s." +"The phpMyAdmin configuration storage has been deactivated. To find out why " +"click %shere%s." msgstr "" "लिंक्ड तालिकाओं के साथ काम करने के लिए अतिरिक्त सुविधाओं को निष्क्रिय कर दिया गया है. " "क्यों ये किया गया है, जानने के लिए %shere%s पर क्लिक करें." -#: db_operations.php:647 +#: db_operations.php:497 msgid "Edit PDF Pages" msgstr "पीडीएफ पृष्ठों को संपादित करें" -#: db_printview.php:103 db_tracking.php:71 db_tracking.php:156 +#: db_printview.php:102 db_tracking.php:67 db_tracking.php:152 #: libraries/db_structure.lib.php:37 libraries/export/xml.php:327 -#: libraries/header.inc.php:125 pdf_pages.php:423 server_privileges.php:1657 -#: server_privileges.php:1713 server_privileges.php:1977 -#: server_synchronize.php:422 server_synchronize.php:865 tbl_tracking.php:591 +#: libraries/header.inc.php:125 pdf_pages.php:422 server_privileges.php:1661 +#: server_privileges.php:1717 server_privileges.php:1981 +#: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr " टेबल " -#: db_printview.php:104 libraries/db_structure.lib.php:47 +#: db_printview.php:103 libraries/db_structure.lib.php:47 #: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 -#: navigation.php:629 navigation.php:651 server_databases.php:121 -#: tbl_printview.php:392 tbl_structure.php:364 tbl_structure.php:776 +#: navigation.php:628 navigation.php:650 server_databases.php:119 +#: tbl_printview.php:391 tbl_structure.php:362 tbl_structure.php:774 msgid "Rows" msgstr "" -#: db_printview.php:108 libraries/db_structure.lib.php:58 tbl_indexes.php:189 +#: db_printview.php:107 libraries/db_structure.lib.php:58 tbl_indexes.php:188 msgid "Size" msgstr "आकार" -#: db_printview.php:161 db_structure.php:456 libraries/export/sql.php:556 +#: db_printview.php:160 db_structure.php:442 libraries/export/sql.php:556 #: libraries/export/sql.php:896 msgid "in use" msgstr "उपयोग में" -#: db_printview.php:186 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:511 pdf_schema.php:1240 tbl_printview.php:432 -#: tbl_structure.php:808 +#: db_printview.php:185 libraries/db_info.inc.php:86 +#: libraries/export/sql.php:511 pdf_schema.php:1239 tbl_printview.php:431 +#: tbl_structure.php:806 msgid "Creation" msgstr "रचना" -#: db_printview.php:195 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:516 pdf_schema.php:1245 tbl_printview.php:442 -#: tbl_structure.php:816 +#: db_printview.php:194 libraries/db_info.inc.php:91 +#: libraries/export/sql.php:516 pdf_schema.php:1244 tbl_printview.php:441 +#: tbl_structure.php:814 msgid "Last update" msgstr "पिछला नवीनीकरण" -#: db_printview.php:204 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:521 pdf_schema.php:1250 tbl_printview.php:452 -#: tbl_structure.php:824 +#: db_printview.php:203 libraries/db_info.inc.php:96 +#: libraries/export/sql.php:521 pdf_schema.php:1249 tbl_printview.php:451 +#: tbl_structure.php:822 msgid "Last check" msgstr "पिछली जाँच" -#: db_printview.php:221 db_structure.php:479 +#: db_printview.php:220 db_structure.php:465 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -385,94 +365,94 @@ msgid_plural "%s tables" msgstr[0] " %s टेबल(s)" msgstr[1] " %s टेबल(s)" -#: db_qbe.php:28 import.php:453 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1980 libraries/sql_query_form.lib.php:138 -#: tbl_operations.php:212 tbl_relation.php:291 tbl_row_action.php:130 -#: view_operations.php:61 +#: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 +#: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "आपकी SQL कुएरी सफलता के साथ पूरी की गई है." -#: db_qbe.php:41 +#: db_qbe.php:38 msgid "You have to choose at least one column to display" msgstr "आपको कम से कम एक स्तंभ प्रदर्शित करने के लिए चयन करना है." -#: db_qbe.php:199 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:865 +#: db_qbe.php:196 libraries/db_structure.lib.php:95 +#: libraries/display_tbl.lib.php:864 msgid "Sort" msgstr "सॉर्ट" -#: db_qbe.php:208 db_qbe.php:242 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:522 libraries/display_tbl.lib.php:827 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:259 -#: tbl_select.php:311 +#: db_qbe.php:205 db_qbe.php:239 libraries/db_structure.lib.php:102 +#: libraries/display_tbl.lib.php:521 libraries/display_tbl.lib.php:826 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:257 +#: tbl_select.php:310 msgid "Ascending" msgstr "आरोही" -#: db_qbe.php:209 db_qbe.php:250 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:527 libraries/display_tbl.lib.php:824 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:260 -#: tbl_select.php:312 +#: db_qbe.php:206 db_qbe.php:247 libraries/db_structure.lib.php:110 +#: libraries/display_tbl.lib.php:526 libraries/display_tbl.lib.php:823 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:258 +#: tbl_select.php:311 msgid "Descending" msgstr "अवरोही" -#: db_qbe.php:263 db_tracking.php:77 libraries/display_tbl.lib.php:307 -#: tbl_change.php:275 tbl_tracking.php:596 +#: db_qbe.php:260 db_tracking.php:73 libraries/display_tbl.lib.php:306 +#: tbl_change.php:270 tbl_tracking.php:591 msgid "Show" msgstr "दिखाओ" -#: db_qbe.php:299 +#: db_qbe.php:296 msgid "Criteria" msgstr "मापदंड" -#: db_qbe.php:352 db_qbe.php:434 db_qbe.php:526 db_qbe.php:557 +#: db_qbe.php:349 db_qbe.php:431 db_qbe.php:523 db_qbe.php:554 msgid "Ins" msgstr "इन्सर्ट" -#: db_qbe.php:356 db_qbe.php:438 db_qbe.php:523 db_qbe.php:554 +#: db_qbe.php:353 db_qbe.php:435 db_qbe.php:520 db_qbe.php:551 msgid "And" msgstr "और" -#: db_qbe.php:365 db_qbe.php:446 db_qbe.php:528 db_qbe.php:559 +#: db_qbe.php:362 db_qbe.php:443 db_qbe.php:525 db_qbe.php:556 msgid "Del" msgstr "हटाइए" -#: db_qbe.php:369 db_qbe.php:450 db_qbe.php:521 db_qbe.php:552 -#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:778 -#: server_privileges.php:297 tbl_change.php:1027 tbl_indexes.php:249 -#: tbl_select.php:285 +#: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 +#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:777 +#: server_privileges.php:296 tbl_change.php:925 tbl_indexes.php:248 +#: tbl_select.php:284 msgid "Or" msgstr "अथवा" -#: db_qbe.php:506 +#: db_qbe.php:503 msgid "Modify" msgstr "संशोधित" -#: db_qbe.php:583 +#: db_qbe.php:580 #, fuzzy #| msgid "Add/Delete Criteria Row" msgid "Add/Delete criteria rows" msgstr "मापदंड रो जोडें/हटायें" -#: db_qbe.php:595 +#: db_qbe.php:592 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Add/Delete columns" msgstr "क्षेत्र कोलम जोडें/हटायें" -#: db_qbe.php:608 db_qbe.php:633 +#: db_qbe.php:605 db_qbe.php:630 msgid "Update Query" msgstr "क्वरी का नवीनीकरण करें" -#: db_qbe.php:616 +#: db_qbe.php:613 msgid "Use Tables" msgstr "टेबल का उपयोग करो" -#: db_qbe.php:639 +#: db_qbe.php:636 #, php-format msgid "SQL query on database %s:" msgstr "डेटाबेस %s पर SQL प्रश्न:" -#: db_qbe.php:933 libraries/common.lib.php:1222 +#: db_qbe.php:930 libraries/common.lib.php:1215 msgid "Submit Query" msgstr "प्रश्न प्रस्तुत करें" @@ -512,17 +492,17 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s तालिका के अंदर %s मैच हैं." msgstr[1] "%s तालिका के अंदर %s मैच हैं." -#: db_search.php:249 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2831 -#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:49 -#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:466 +#: db_search.php:249 db_structure.php:75 db_structure.php:76 +#: db_structure.php:88 db_structure.php:90 db_structure.php:101 +#: db_structure.php:103 libraries/common.lib.php:2836 +#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 +#: tbl_structure.php:35 tbl_structure.php:47 tbl_structure.php:464 msgid "Browse" msgstr "ब्राउज़" -#: db_search.php:254 libraries/display_tbl.lib.php:1164 -#: libraries/display_tbl.lib.php:2055 libraries/sql_query_form.lib.php:453 -#: pdf_pages.php:285 pdf_pages.php:424 pdf_pages.php:460 pdf_pages.php:488 +#: db_search.php:254 libraries/display_tbl.lib.php:1163 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 msgid "Delete" @@ -562,226 +542,232 @@ msgstr " टेबल में:" msgid "Inside column:" msgstr "क्षेत्र के अंदर:" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2830 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:75 +#: db_structure.php:79 db_structure.php:80 db_structure.php:92 +#: db_structure.php:93 db_structure.php:105 db_structure.php:106 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 +#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "इनसर्ट" -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2827 libraries/common.lib.php:2834 -#: libraries/db_links.inc.php:62 libraries/export/htmlword.php:22 +#: db_structure.php:81 db_structure.php:94 db_structure.php:107 +#: libraries/common.lib.php:2832 libraries/common.lib.php:2839 +#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 -#: libraries/tbl_links.inc.php:55 pmd_general.php:133 -#: server_privileges.php:593 server_replication.php:314 tbl_tracking.php:268 +#: libraries/tbl_links.inc.php:54 pmd_general.php:133 +#: server_privileges.php:592 server_replication.php:313 tbl_tracking.php:263 msgid "Structure" msgstr "संरचना" -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:544 db_structure.php:545 db_tracking.php:90 -#: libraries/Index.class.php:482 libraries/common.lib.php:1659 -#: libraries/db_links.inc.php:99 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:126 -#: server_databases.php:351 tbl_structure.php:26 tbl_structure.php:150 -#: tbl_structure.php:151 tbl_structure.php:470 +#: db_structure.php:82 db_structure.php:83 db_structure.php:95 +#: db_structure.php:96 db_structure.php:108 db_structure.php:109 +#: db_structure.php:530 db_structure.php:531 db_tracking.php:86 +#: libraries/Index.class.php:482 libraries/common.lib.php:1663 +#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 +#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 +#: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" msgstr "छोड़ें" -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:542 db_structure.php:543 libraries/common.lib.php:1658 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:104 +#: db_structure.php:84 db_structure.php:85 db_structure.php:97 +#: db_structure.php:98 db_structure.php:110 db_structure.php:111 +#: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 +#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 msgid "Empty" msgstr "खाली करें" -#: db_structure.php:315 libraries/tbl_links.inc.php:99 +#: db_structure.php:301 libraries/tbl_links.inc.php:98 #, php-format msgid "Table %s has been emptied" msgstr " टेबल %s को खाली किया गया है." -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "View %s has been dropped" msgstr "द्रश्य %s रद्द दिया गया है." -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "Table %s has been dropped" msgstr " टेबल %s को रद्द किया गया है." -#: db_structure.php:332 +#: db_structure.php:318 msgid "Tracking is active." msgstr "ट्रैकिंग सक्रिय है" -#: db_structure.php:334 +#: db_structure.php:320 msgid "Tracking is not active." msgstr "ट्रैकिंग सक्रिय नहीं है." -#: db_structure.php:419 libraries/display_tbl.lib.php:1943 +#: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "इस द्रश्य में कम से कम इतनी पंक्तियाँ हैं. और जानने के लिए %s दोक्युमेंताशन%s पढ़ें." -#: db_structure.php:433 db_structure.php:447 libraries/header.inc.php:125 -#: libraries/tbl_info.inc.php:65 tbl_structure.php:184 test/theme.php:73 +#: db_structure.php:419 db_structure.php:433 libraries/header.inc.php:125 +#: libraries/tbl_info.inc.php:60 tbl_structure.php:183 test/theme.php:73 msgid "View" msgstr "दृश्य" -#: db_structure.php:484 libraries/db_structure.lib.php:40 -#: libraries/server_links.inc.php:69 server_replication.php:32 -#: server_replication.php:163 server_status.php:368 +#: db_structure.php:470 libraries/db_structure.lib.php:40 +#: libraries/server_links.inc.php:69 server_replication.php:31 +#: server_replication.php:162 server_status.php:368 msgid "Replication" msgstr "प्रतिकृति" -#: db_structure.php:488 +#: db_structure.php:474 msgid "Sum" msgstr "जोड" -#: db_structure.php:495 libraries/StorageEngine.class.php:349 +#: db_structure.php:481 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s इस MySQL सर्वर पर डिफ़ॉल्ट भंडारण इंजन है." -#: db_structure.php:523 db_structure.php:540 db_structure.php:541 -#: libraries/display_tbl.lib.php:2080 libraries/display_tbl.lib.php:2085 -#: libraries/mult_submits.inc.php:15 server_databases.php:345 -#: server_databases.php:350 server_privileges.php:1588 tbl_structure.php:454 -#: tbl_structure.php:463 +#: db_structure.php:509 db_structure.php:526 db_structure.php:527 +#: libraries/display_tbl.lib.php:2039 libraries/display_tbl.lib.php:2044 +#: libraries/mult_submits.inc.php:15 server_databases.php:343 +#: server_databases.php:348 server_privileges.php:1592 tbl_structure.php:452 +#: tbl_structure.php:461 msgid "With selected:" msgstr "चुने हुओं को:" -#: db_structure.php:526 libraries/display_tbl.lib.php:2075 -#: server_databases.php:347 server_privileges.php:569 -#: server_privileges.php:1591 tbl_structure.php:457 +#: db_structure.php:512 libraries/display_tbl.lib.php:2034 +#: server_databases.php:345 server_privileges.php:568 +#: server_privileges.php:1595 tbl_structure.php:455 msgid "Check All" msgstr "सभी को चेक करें" -#: db_structure.php:530 libraries/display_tbl.lib.php:2076 -#: libraries/replication_gui.lib.php:35 server_databases.php:349 -#: server_privileges.php:572 server_privileges.php:1595 tbl_structure.php:461 +#: db_structure.php:516 libraries/display_tbl.lib.php:2035 +#: libraries/replication_gui.lib.php:35 server_databases.php:347 +#: server_privileges.php:571 server_privileges.php:1599 tbl_structure.php:459 msgid "Uncheck All" msgstr " सभी को अनचेक करें" -#: db_structure.php:535 +#: db_structure.php:521 msgid "Check tables having overhead" msgstr " ओवर्हेअद वाली तालुकाओं को चेक करें." -#: db_structure.php:546 db_structure.php:547 db_structure.php:598 -#: libraries/display_tbl.lib.php:2179 libraries/mult_submits.inc.php:27 -#: tbl_structure.php:491 tbl_structure.php:493 +#: db_structure.php:532 db_structure.php:533 db_structure.php:584 +#: libraries/display_tbl.lib.php:2138 libraries/mult_submits.inc.php:27 +#: tbl_structure.php:489 tbl_structure.php:491 msgid "Print view" msgstr "छापने वाला द्रश्य." -#: db_structure.php:548 db_structure.php:549 libraries/mult_submits.inc.php:41 -#: tbl_operations.php:580 +#: db_structure.php:534 db_structure.php:535 libraries/mult_submits.inc.php:41 +#: tbl_operations.php:578 msgid "Check table" msgstr " टेबल को चेक करें" -#: db_structure.php:550 db_structure.php:551 libraries/mult_submits.inc.php:46 -#: tbl_operations.php:620 tbl_structure.php:708 tbl_structure.php:710 +#: db_structure.php:536 db_structure.php:537 libraries/mult_submits.inc.php:46 +#: tbl_operations.php:618 tbl_structure.php:706 tbl_structure.php:708 msgid "Optimize table" msgstr "तालिका को अनुकूलित करें" -#: db_structure.php:552 db_structure.php:553 libraries/mult_submits.inc.php:51 -#: tbl_operations.php:610 +#: db_structure.php:538 db_structure.php:539 libraries/mult_submits.inc.php:51 +#: tbl_operations.php:608 msgid "Repair table" msgstr " टेबल को टीक करें" -#: db_structure.php:554 db_structure.php:555 libraries/mult_submits.inc.php:56 -#: tbl_operations.php:600 +#: db_structure.php:540 db_structure.php:541 libraries/mult_submits.inc.php:56 +#: tbl_operations.php:598 msgid "Analyze table" msgstr "टेबल का विश्लेषण करें" -#: db_structure.php:556 db_structure.php:557 libraries/db_links.inc.php:70 -#: libraries/display_export.lib.php:82 libraries/display_tbl.lib.php:2093 -#: libraries/display_tbl.lib.php:2224 libraries/mult_submits.inc.php:61 -#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:81 -#: pmd_pdf.php:83 pmd_pdf.php:108 server_privileges.php:1372 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 +#: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 +#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 +#: pmd_pdf.php:81 pmd_pdf.php:106 server_privileges.php:1376 #: setup/frames/menu.inc.php:22 tbl_row_action.php:58 msgid "Export" msgstr "निर्यात" -#: db_structure.php:605 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:591 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "डेटा शब्दकोश" -#: db_tracking.php:65 +#: db_tracking.php:61 msgid "Tracked tables" msgstr "ट्रैक की गयी तालिकाएं" -#: db_tracking.php:70 libraries/export/htmlword.php:85 +#: db_tracking.php:66 libraries/export/htmlword.php:85 #: libraries/export/latex.php:152 libraries/export/odt.php:112 #: libraries/export/sql.php:339 libraries/export/texytext.php:84 #: libraries/export/xml.php:254 libraries/header.inc.php:105 -#: libraries/header_printview.inc.php:57 server_databases.php:168 -#: server_privileges.php:1652 server_privileges.php:1713 -#: server_privileges.php:1971 server_processlist.php:55 -#: server_synchronize.php:1178 server_synchronize.php:1182 -#: tbl_tracking.php:590 test/theme.php:64 +#: libraries/header_printview.inc.php:57 server_databases.php:166 +#: server_privileges.php:1656 server_privileges.php:1717 +#: server_privileges.php:1975 server_processlist.php:55 +#: server_synchronize.php:1177 server_synchronize.php:1181 +#: tbl_tracking.php:585 test/theme.php:64 msgid "Database" msgstr " डाटाबेस" -#: db_tracking.php:72 +#: db_tracking.php:68 msgid "Last version" msgstr "पिछला संस्करण" -#: db_tracking.php:73 tbl_tracking.php:593 +#: db_tracking.php:69 tbl_tracking.php:588 msgid "Created" msgstr "बनाया" -#: db_tracking.php:74 tbl_tracking.php:594 +#: db_tracking.php:70 tbl_tracking.php:589 msgid "Updated" msgstr "अद्यतन" -#: db_tracking.php:76 libraries/Index.class.php:439 -#: libraries/db_structure.lib.php:44 server_databases.php:202 -#: server_privileges.php:1534 server_privileges.php:1717 -#: server_privileges.php:2065 tbl_structure.php:186 +#: db_tracking.php:71 libraries/common.lib.php:1361 +#: libraries/server_links.inc.php:48 server_processlist.php:58 +#: tbl_tracking.php:590 test/theme.php:100 +msgid "Status" +msgstr "स्थिति" + +#: db_tracking.php:72 libraries/Index.class.php:439 +#: libraries/db_structure.lib.php:44 server_databases.php:200 +#: server_privileges.php:1538 server_privileges.php:1721 +#: server_privileges.php:2069 tbl_structure.php:185 msgid "Action" msgstr "कार्य" -#: db_tracking.php:87 db_tracking.php:119 +#: db_tracking.php:83 db_tracking.php:115 msgid "Delete tracking data for this table" msgstr "इस तालिका के लिए ट्रैकिंग डेटा हटाएँ" -#: db_tracking.php:105 tbl_tracking.php:547 tbl_tracking.php:605 -#: tbl_tracking.php:612 +#: db_tracking.php:101 tbl_tracking.php:542 tbl_tracking.php:600 +#: tbl_tracking.php:607 msgid "active" msgstr "सक्रिय" -#: db_tracking.php:107 tbl_tracking.php:549 tbl_tracking.php:607 -#: tbl_tracking.php:609 +#: db_tracking.php:103 tbl_tracking.php:544 tbl_tracking.php:602 +#: tbl_tracking.php:604 msgid "not active" msgstr "निष्क्रिय" -#: db_tracking.php:120 +#: db_tracking.php:116 msgid "Versions" msgstr "संस्करण" -#: db_tracking.php:121 tbl_tracking.php:378 tbl_tracking.php:623 +#: db_tracking.php:117 tbl_tracking.php:373 tbl_tracking.php:618 msgid "Tracking report" msgstr "ट्रैकिंग रिपोर्ट" -#: db_tracking.php:122 tbl_tracking.php:250 tbl_tracking.php:623 +#: db_tracking.php:118 tbl_tracking.php:245 tbl_tracking.php:618 msgid "Structure snapshot" msgstr "संरचना स्नैपशॉट" -#: db_tracking.php:151 +#: db_tracking.php:147 msgid "Untracked tables" msgstr "लापता तालिकाएं" -#: db_tracking.php:171 db_tracking.php:173 tbl_structure.php:527 -#: tbl_structure.php:529 +#: db_tracking.php:167 db_tracking.php:169 tbl_structure.php:525 +#: tbl_structure.php:527 msgid "Track table" msgstr "तालिकाओं को ट्रैक करें" -#: db_tracking.php:199 +#: db_tracking.php:195 msgid "Database Log" msgstr "डेटाबेस लॉग" @@ -789,29 +775,29 @@ msgstr "डेटाबेस लॉग" msgid "Selected export type has to be saved in file!" msgstr "चयनित निर्यात टाइप को फाइल में सेव करने की आवश्यकता है!" -#: export.php:153 export.php:178 export.php:620 +#: export.php:152 export.php:177 export.php:615 #, php-format msgid "Insufficient space to save the file %s." msgstr "%s फाइल को सेव करने के लिए अपर्याप्त जगह पायी गयी है." -#: export.php:287 +#: export.php:286 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "" "%s फाइल पहले से ही सर्वर पर मौजूद है, फ़ाइल नाम परिवर्तन अधिलेखित या विकल्प की जाँच करें." -#: export.php:291 export.php:295 +#: export.php:290 export.php:294 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "वेब सर्वर के पास फ़ाइल %s को सेव करने की अनुमति नहीं है." -#: export.php:622 +#: export.php:617 #, php-format msgid "Dump has been saved to file %s." msgstr "डंप को %s फाइल में सेव किया गया है." -#: import.php:59 +#: import.php:58 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -820,14 +806,14 @@ msgstr "" "आप शायद बहुत बड़ी फाइल अपलोड करने की कोशिश कर रहे हैं. इस दुविधा के लिए कृपया करके %s " "दोकुमेंताशन%s पढ़ें." -#: import.php:278 import.php:331 libraries/File.class.php:840 -#: libraries/File.class.php:950 +#: import.php:277 import.php:330 libraries/File.class.php:566 +#: libraries/File.class.php:676 msgid "File could not be read" msgstr "फाइल पढ़ी नहीं जा सकती. " -#: import.php:286 import.php:295 import.php:314 import.php:323 -#: libraries/File.class.php:1020 libraries/File.class.php:1028 -#: libraries/File.class.php:1044 libraries/File.class.php:1052 +#: import.php:285 import.php:294 import.php:313 import.php:322 +#: libraries/File.class.php:746 libraries/File.class.php:754 +#: libraries/File.class.php:770 libraries/File.class.php:778 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -836,7 +822,7 @@ msgstr "" "आप असमर्थित सम्पीडन (% s) के साथ फाइल लोड करने का प्रयास कर रहे हैं. इसके लिए या तो " "समर्थन कार्यान्वित नहीं है या आपने विन्यास को अक्षम कर रखा है." -#: import.php:336 +#: import.php:335 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -846,36 +832,36 @@ msgstr "" "गया या फ़ाइल का आकार अधिकतम PHP विन्यास द्वारा अनुमति आकार के पार हो गई है. [a @. " "\"Documentation.html # @ faq1_16 प्रलेखन] अकसर किये गए सवाल 1.16 [/ a] देखें." -#: import.php:371 libraries/display_import.lib.php:23 +#: import.php:370 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "आयात प्लगइन्स नहीं लोड किये जा सके. कृपया अपनी संस्थापना जाँचें." -#: import.php:396 +#: import.php:395 msgid "The bookmark has been deleted." msgstr "यह बुकमार्क हटा दिया गया है" -#: import.php:400 +#: import.php:399 msgid "Showing bookmark" msgstr "बुकमार्क प्रदर्शित किया जा रहा है." -#: import.php:402 sql.php:625 +#: import.php:401 sql.php:618 #, php-format msgid "Bookmark %s created" msgstr "बुकमार्क %s बनाया" -#: import.php:408 import.php:414 +#: import.php:407 import.php:413 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "आयात सफलतापूर्वक समाप्त हो गया है,% d कुएरी चलाई गयी हैं." -#: import.php:423 +#: import.php:422 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" "स्क्रिप्ट मध्यांतर पारित की गयी है, आयात खत्म करने के लिए वही फाइल फिर से जमा करें." -#: import.php:425 +#: import.php:424 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -883,19 +869,19 @@ msgstr "" "पिछले भाग पर कोई डेटा विश्लेषित नहीं किया गया, इसका मतलब है की जब तक आप php समय " "सीमा नहीं बढ़ाते तब तक phpMyAdmin आयात के लिए सक्षम नहीं है." -#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:240 +#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:239 #: user_password.php:110 msgid "Back" msgstr "वापस" -#: index.php:188 +#: index.php:183 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin तख़्त-सक्षम ब्रोव्सेर के लिए ज्यादा दोस्ताना है." -#: js/messages.php:25 server_synchronize.php:344 server_synchronize.php:356 -#: server_synchronize.php:372 server_synchronize.php:379 -#: server_synchronize.php:738 server_synchronize.php:766 -#: server_synchronize.php:794 server_synchronize.php:806 +#: js/messages.php:25 server_synchronize.php:343 server_synchronize.php:355 +#: server_synchronize.php:371 server_synchronize.php:378 +#: server_synchronize.php:737 server_synchronize.php:765 +#: server_synchronize.php:793 server_synchronize.php:805 msgid "Click to select" msgstr "चयन करने के लिए क्लिक करें." @@ -903,15 +889,15 @@ msgstr "चयन करने के लिए क्लिक करें." msgid "Click to unselect" msgstr "रद्द करने के लिए क्लिक करें." -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:88 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:87 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" बयान अक्षम हैं." -#: js/messages.php:30 libraries/mult_submits.inc.php:257 sql.php:187 +#: js/messages.php:30 libraries/mult_submits.inc.php:256 sql.php:186 msgid "Do you really want to " msgstr "क्या आप सचमुच चाहते है की" -#: js/messages.php:31 libraries/mult_submits.inc.php:257 sql.php:171 +#: js/messages.php:31 libraries/mult_submits.inc.php:256 sql.php:170 msgid "You are about to DESTROY a complete database!" msgstr "आप एक पूरा डेटाबेस नष्ट कर रहे हैं! " @@ -940,11 +926,11 @@ msgstr "मेज़बान का नाम (hostname) खाली है!" msgid "The user name is empty!" msgstr "उपयोगकर्ता नाम खाली है!" -#: js/messages.php:44 server_privileges.php:1228 user_password.php:65 +#: js/messages.php:44 server_privileges.php:1229 user_password.php:65 msgid "The password is empty!" msgstr "पासवर्ड खाली है" -#: js/messages.php:45 server_privileges.php:1226 user_password.php:68 +#: js/messages.php:45 server_privileges.php:1227 user_password.php:68 msgid "The passwords aren't the same!" msgstr "पासवर्ड मिलते झूलते नहीं हैं." @@ -952,27 +938,27 @@ msgstr "पासवर्ड मिलते झूलते नहीं ह msgid "Cancel" msgstr "रद्द" -#: js/messages.php:52 pmd_save_pos.php:53 +#: js/messages.php:52 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "संशोधनों को बचाया गया है" -#: js/messages.php:53 pmd_relation_upd.php:48 +#: js/messages.php:53 pmd_relation_upd.php:47 msgid "Relation deleted" msgstr "रिश्ते को नष्ट कर दिया" -#: js/messages.php:54 pmd_relation_new.php:63 +#: js/messages.php:54 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "विदेशी कुंजी रिश्ता जोड़ा." -#: js/messages.php:55 pmd_relation_new.php:85 +#: js/messages.php:55 pmd_relation_new.php:84 msgid "Internal relation added" msgstr "आंतरिक संबंध जोड़ा." -#: js/messages.php:56 pmd_relation_new.php:62 pmd_relation_new.php:87 +#: js/messages.php:56 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "त्रुटि: रिलेशन नहीं जोड़ा गया." -#: js/messages.php:57 pmd_relation_new.php:30 +#: js/messages.php:57 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "त्रुटि: रिश्ता पहले से ही मौजूद है. " @@ -980,13 +966,13 @@ msgstr "त्रुटि: रिश्ता पहले से ही मौ msgid "Error saving coordinates for Designer." msgstr "डिजाइनर के लिए निर्देशांक बचाने में त्रुटि आ रही है" -#: js/messages.php:59 libraries/relation.lib.php:94 -#: libraries/relation.lib.php:106 +#: js/messages.php:59 libraries/relation.lib.php:89 +#: libraries/relation.lib.php:101 msgid "General relation features" msgstr "सामान्य सुविधाओं के संबंध" -#: js/messages.php:59 libraries/relation.lib.php:88 -#: libraries/relation.lib.php:95 +#: js/messages.php:59 libraries/relation.lib.php:83 +#: libraries/relation.lib.php:90 msgid "Disabled" msgstr "अक्षम" @@ -1002,7 +988,7 @@ msgstr "विदेश कुंजी का चयन करें." msgid "Please select the primary key or a unique key" msgstr "कृपया प्राथमिक कुंजी या एक अद्वितीय कुंजी का चयन करें" -#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:547 +#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" @@ -1029,10 +1015,10 @@ msgid "Prev" msgstr "पिछला" #. l10n: Display text for next month link in calendar -#: js/messages.php:81 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:337 -#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:422 -#: tbl_structure.php:800 +#: js/messages.php:81 libraries/common.lib.php:2358 +#: libraries/common.lib.php:2361 libraries/display_tbl.lib.php:336 +#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 +#: tbl_structure.php:798 msgid "Next" msgstr " अगला" @@ -1090,63 +1076,63 @@ msgid "December" msgstr "दिसम्बर" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1562 +#: js/messages.php:101 libraries/common.lib.php:1566 msgid "Jan" msgstr "जनवरी" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1564 +#: js/messages.php:103 libraries/common.lib.php:1568 msgid "Feb" msgstr "फरवरी" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1566 +#: js/messages.php:105 libraries/common.lib.php:1570 msgid "Mar" msgstr "मार्च" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1568 +#: js/messages.php:107 libraries/common.lib.php:1572 msgid "Apr" msgstr "अप्रैल" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1570 +#: js/messages.php:109 libraries/common.lib.php:1574 msgctxt "Short month name" msgid "May" msgstr "मई" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1572 +#: js/messages.php:111 libraries/common.lib.php:1576 msgid "Jun" msgstr "जून" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1574 +#: js/messages.php:113 libraries/common.lib.php:1578 msgid "Jul" msgstr "जुलाई" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1576 +#: js/messages.php:115 libraries/common.lib.php:1580 msgid "Aug" msgstr "अगस्त" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1578 +#: js/messages.php:117 libraries/common.lib.php:1582 msgid "Sep" msgstr "सितम्बर" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1580 +#: js/messages.php:119 libraries/common.lib.php:1584 msgid "Oct" msgstr "अक्तूबर" #. l10n: Short month name -#: js/messages.php:121 libraries/common.lib.php:1582 +#: js/messages.php:121 libraries/common.lib.php:1586 msgid "Nov" msgstr "नवम्बर" #. l10n: Short month name -#: js/messages.php:123 libraries/common.lib.php:1584 +#: js/messages.php:123 libraries/common.lib.php:1588 msgid "Dec" msgstr "दिसमबर" @@ -1179,37 +1165,37 @@ msgid "Saturday" msgstr "शनिवार" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1587 +#: js/messages.php:136 libraries/common.lib.php:1591 msgid "Sun" msgstr "रविवार" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1589 +#: js/messages.php:138 libraries/common.lib.php:1593 msgid "Mon" msgstr "सोमवार" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1591 +#: js/messages.php:140 libraries/common.lib.php:1595 msgid "Tue" msgstr "मन्गलवार" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1593 +#: js/messages.php:142 libraries/common.lib.php:1597 msgid "Wed" msgstr "बुधवार" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1595 +#: js/messages.php:144 libraries/common.lib.php:1599 msgid "Thu" msgstr "गुरुवार" #. l10n: Short week day name -#: js/messages.php:146 libraries/common.lib.php:1597 +#: js/messages.php:146 libraries/common.lib.php:1601 msgid "Fri" msgstr "शुक्रवार" #. l10n: Short week day name -#: js/messages.php:148 libraries/common.lib.php:1599 +#: js/messages.php:148 libraries/common.lib.php:1603 msgid "Sat" msgstr "शनिवार" @@ -1269,38 +1255,37 @@ msgstr "सेकंड" msgid "Font size" msgstr "फ़ॉन्ट का आकार" -#: libraries/File.class.php:336 libraries/File.class.php:424 -#: libraries/File.class.php:561 libraries/File.class.php:700 -msgid "Unknown error in file upload." -msgstr "फ़ाइल अपलोड करने में अज्ञात त्रुटि." - -#: libraries/File.class.php:406 +#: libraries/File.class.php:315 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "अपलोड की गई फ़ाइल php.ini में upload_max_filesize निर्देश से अधिक है." -#: libraries/File.class.php:409 +#: libraries/File.class.php:318 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:412 +#: libraries/File.class.php:321 msgid "The uploaded file was only partially uploaded." msgstr "अपलोड की गई फ़ाइल केवल आंशिक रूप से अपलोड की गयी है." -#: libraries/File.class.php:415 +#: libraries/File.class.php:324 msgid "Missing a temporary folder." msgstr "एक अस्थायी फ़ोल्डर गुम है." -#: libraries/File.class.php:418 +#: libraries/File.class.php:327 msgid "Failed to write file to disk." msgstr "डिस्क में फ़ाइल लिखने में असफल" -#: libraries/File.class.php:421 +#: libraries/File.class.php:330 msgid "File upload stopped by extension." msgstr "फ़ाइल एक्सटेंशन द्वारा अपलोड रोका गया है." -#: libraries/File.class.php:898 +#: libraries/File.class.php:333 +msgid "Unknown error in file upload." +msgstr "फ़ाइल अपलोड करने में अज्ञात त्रुटि." + +#: libraries/File.class.php:624 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -1308,37 +1293,37 @@ msgstr "" "अपलोड की गयी फाइल की जगह बदलने में त्रुटि आई है. [a@. \"Documentation.html # " "faq1_1 @ प्रलेखन] अकसर किये गए सवाल 1,11 [/ a] देखें." -#: libraries/Index.class.php:427 tbl_relation.php:528 +#: libraries/Index.class.php:427 tbl_relation.php:526 msgid "No index defined!" msgstr "परिभाषित सूचकांक नहीं पाए गए!" -#: libraries/Index.class.php:432 server_databases.php:131 tbl_tracking.php:315 +#: libraries/Index.class.php:432 server_databases.php:129 tbl_tracking.php:310 msgid "Indexes" msgstr "सूचकांक" #: libraries/Index.class.php:443 libraries/mult_submits.inc.php:102 -#: libraries/tbl_properties.inc.php:518 tbl_structure.php:32 -#: tbl_structure.php:154 tbl_structure.php:158 tbl_structure.php:473 -#: tbl_tracking.php:321 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:31 +#: tbl_structure.php:153 tbl_structure.php:157 tbl_structure.php:471 +#: tbl_tracking.php:316 msgid "Unique" msgstr "अद्वितीय" -#: libraries/Index.class.php:444 tbl_tracking.php:322 +#: libraries/Index.class.php:444 tbl_tracking.php:317 msgid "Packed" msgstr "जमा" -#: libraries/Index.class.php:446 tbl_tracking.php:324 +#: libraries/Index.class.php:446 tbl_tracking.php:319 msgid "Cardinality" msgstr "प्रमुखता" -#: libraries/Index.class.php:449 tbl_tracking.php:278 tbl_tracking.php:327 +#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322 msgid "Comment" msgstr "टिप्पणी" #: libraries/Index.class.php:465 libraries/common.lib.php:609 -#: libraries/common.lib.php:1198 libraries/display_tbl.lib.php:1116 +#: libraries/common.lib.php:1191 libraries/display_tbl.lib.php:1115 #: libraries/import.lib.php:1119 libraries/import.lib.php:1143 -#: pdf_pages.php:284 setup/frames/index.inc.php:124 +#: pdf_pages.php:283 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:349 tbl_row_action.php:68 msgid "Edit" msgstr "सम्पादन" @@ -1360,15 +1345,15 @@ msgid "" msgstr "सूचकांक %1s और %2s बराबर लगने के कारन उनमें से संभवतः हटाया जा सकता है." #: libraries/List_Database.class.php:430 libraries/server_links.inc.php:40 -#: server_databases.php:87 server_privileges.php:1652 +#: server_databases.php:85 server_privileges.php:1656 #: setup/lib/messages.inc.php:107 test/theme.php:92 msgid "Databases" msgstr " डाटाबेस" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:259 libraries/import.lib.php:134 pdf_schema.php:31 -#: pdf_schema.php:231 tbl_change.php:1023 tbl_operations.php:212 -#: tbl_relation.php:289 view_operations.php:61 +#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 +#: tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "त्रुटि" @@ -1393,40 +1378,40 @@ msgid_plural "%1$d rows inserted." msgstr[0] "एकवचन%1$d रोव डाला" msgstr[1] "बहुवचन%1$d रोवस डाला" -#: libraries/StorageEngine.class.php:196 +#: libraries/StorageEngine.class.php:194 msgid "" "There is no detailed status information available for this storage engine." msgstr "इस भंडारण इंजन स्थिति के लिए कोई विस्तृत जानकारी उपलब्ध नहीं है." -#: libraries/StorageEngine.class.php:352 +#: libraries/StorageEngine.class.php:354 #, fuzzy, php-format msgid "%s is available on this MySQL server." msgstr "%s इस MySQL सर्वर पर उपलब्ध है." -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:357 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s इस MySQL सर्वर के लिए निष्क्रिय कर दिया गया है." -#: libraries/StorageEngine.class.php:359 +#: libraries/StorageEngine.class.php:361 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "यह MySQL सर्वर %s भंडारण इंजन का समर्थन नहीं करता है." -#: libraries/Table.class.php:1018 +#: libraries/Table.class.php:1017 msgid "Invalid database" msgstr "अमान्य डेटाबेस" -#: libraries/Table.class.php:1032 tbl_get_field.php:25 +#: libraries/Table.class.php:1031 tbl_get_field.php:25 msgid "Invalid table name" msgstr "अवैध तालिका नाम" -#: libraries/Table.class.php:1047 +#: libraries/Table.class.php:1046 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "तालिका का नाम %1$s से %2$s में बदलने में त्रुटि." -#: libraries/Table.class.php:1131 +#: libraries/Table.class.php:1129 #, php-format msgid "Table %s has been renamed to %s" msgstr "तालिका %s का नाम बदल कर %s रखा गया है." @@ -1444,22 +1429,22 @@ msgstr "पूर्वावलोकन उपलब्ध नहीं." msgid "take it" msgstr "इसे ले लो" -#: libraries/Theme_Manager.class.php:114 +#: libraries/Theme_Manager.class.php:109 #, php-format msgid "Default theme %s not found!" msgstr "डिफ़ॉल्ट विषयवस्तु %s नहीं मिला है!" -#: libraries/Theme_Manager.class.php:152 +#: libraries/Theme_Manager.class.php:147 #, php-format msgid "Theme %s not found!" msgstr "विषयवस्तु %s नहीं मिला है!" -#: libraries/Theme_Manager.class.php:220 +#: libraries/Theme_Manager.class.php:215 #, php-format msgid "Theme path not found for theme %s!" msgstr "विषय %s के लिए थीम पथ नहीं मिला है!" -#: libraries/Theme_Manager.class.php:296 test/theme.php:160 themes.php:20 +#: libraries/Theme_Manager.class.php:291 test/theme.php:160 themes.php:20 #: themes.php:40 msgid "Theme / Style" msgstr "थीम/शैली " @@ -1571,19 +1556,19 @@ msgstr "कोई वैध प्रमाणीकरण कुंजी न msgid "Authenticating..." msgstr "सत्यापन." -#: libraries/blobstreaming.lib.php:689 +#: libraries/blobstreaming.lib.php:340 msgid "View image" msgstr "छवि देखें" -#: libraries/blobstreaming.lib.php:693 +#: libraries/blobstreaming.lib.php:344 msgid "Play audio" msgstr "ऑडियो चलायें" -#: libraries/blobstreaming.lib.php:698 +#: libraries/blobstreaming.lib.php:349 msgid "View video" msgstr "वीडियो देखें" -#: libraries/blobstreaming.lib.php:702 +#: libraries/blobstreaming.lib.php:353 msgid "Download file" msgstr "फाइल डाउनलोड करें" @@ -1628,7 +1613,7 @@ msgstr "" msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:909 +#: libraries/common.inc.php:908 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" @@ -1653,7 +1638,8 @@ msgstr "इंग्लिश" #: libraries/common.lib.php:425 libraries/common.lib.php:427 #: libraries/common.lib.php:429 libraries/common.lib.php:445 #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 -#: libraries/display_export.lib.php:163 libraries/relation.lib.php:84 +#: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 +#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 #: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" @@ -1668,146 +1654,146 @@ msgstr "" msgid "MySQL said: " msgstr "" -#: libraries/common.lib.php:1136 +#: libraries/common.lib.php:1129 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1174 setup/lib/messages.inc.php:350 +#: libraries/common.lib.php:1167 setup/lib/messages.inc.php:350 msgid "Explain SQL" msgstr "SQL की व्याख्या " -#: libraries/common.lib.php:1177 +#: libraries/common.lib.php:1170 msgid "Skip Explain SQL" msgstr "" -#: libraries/common.lib.php:1211 +#: libraries/common.lib.php:1204 msgid "Without PHP Code" msgstr "" -#: libraries/common.lib.php:1214 setup/lib/messages.inc.php:352 +#: libraries/common.lib.php:1207 setup/lib/messages.inc.php:352 msgid "Create PHP Code" msgstr "PHP Code बनाओ" -#: libraries/common.lib.php:1232 server_status.php:451 +#: libraries/common.lib.php:1225 server_status.php:451 #: setup/lib/messages.inc.php:351 msgid "Refresh" msgstr "" -#: libraries/common.lib.php:1241 +#: libraries/common.lib.php:1234 msgid "Skip Validate SQL" msgstr "" -#: libraries/common.lib.php:1244 setup/lib/messages.inc.php:353 +#: libraries/common.lib.php:1237 setup/lib/messages.inc.php:353 msgid "Validate SQL" msgstr "" -#: libraries/common.lib.php:1283 +#: libraries/common.lib.php:1287 msgid "Inline edit of this query" msgstr "इस कुएरी की इनलाइन एडिट" -#: libraries/common.lib.php:1285 +#: libraries/common.lib.php:1289 msgid "Inline" msgstr "इनलाइन" -#: libraries/common.lib.php:1339 libraries/common.lib.php:1354 +#: libraries/common.lib.php:1343 libraries/common.lib.php:1358 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1358 libraries/tbl_triggers.lib.php:27 +#: libraries/common.lib.php:1362 libraries/tbl_triggers.lib.php:27 #: server_processlist.php:57 msgid "Time" msgstr "" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "B" msgstr " बैट्स" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "KiB" msgstr "KB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "MiB" msgstr "MB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "GiB" msgstr "GB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "TiB" msgstr "TB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "PiB" msgstr "PB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "EiB" msgstr "EB" #. l10n: Thousands separator -#: libraries/common.lib.php:1424 +#: libraries/common.lib.php:1428 msgid "," msgstr "," #. l10n: Decimal separator -#: libraries/common.lib.php:1426 +#: libraries/common.lib.php:1430 msgid "." msgstr "." #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1603 +#: libraries/common.lib.php:1607 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B, %Y को %I:%M %p" -#: libraries/common.lib.php:1909 +#: libraries/common.lib.php:1913 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s दिन, %s घंटे, %s मिनट and %s सेकंड" -#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 -#: libraries/display_tbl.lib.php:289 server_status.php:718 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 +#: libraries/display_tbl.lib.php:288 server_status.php:718 msgid "Begin" msgstr "" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 -#: libraries/display_tbl.lib.php:290 server_binlog.php:154 +#: libraries/common.lib.php:2328 libraries/common.lib.php:2331 +#: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 -#: libraries/display_tbl.lib.php:352 +#: libraries/common.lib.php:2359 libraries/common.lib.php:2362 +#: libraries/display_tbl.lib.php:351 msgid "End" msgstr "आखरी" -#: libraries/common.lib.php:2429 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "" -#: libraries/common.lib.php:2448 +#: libraries/common.lib.php:2453 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2828 libraries/common.lib.php:2835 -#: libraries/db_links.inc.php:67 libraries/export/sql.php:24 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 +#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 -#: libraries/tbl_links.inc.php:59 querywindow.php:89 test/theme.php:96 +#: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "" -#: libraries/common.lib.php:2837 libraries/db_links.inc.php:103 -#: libraries/tbl_links.inc.php:94 libraries/tbl_links.inc.php:116 -#: view_operations.php:88 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: view_operations.php:87 msgid "Operations" msgstr "कार्रवाई" -#: libraries/core.lib.php:282 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1823,38 +1809,38 @@ msgstr "" msgid "Name" msgstr "नाम" -#: libraries/db_links.inc.php:44 +#: libraries/db_links.inc.php:43 #, php-format msgid "Database %s has been dropped." msgstr "डाटाबेस %s को ड्रोप कर दिया ।" -#: libraries/db_links.inc.php:56 libraries/db_links.inc.php:57 -#: libraries/db_links.inc.php:58 +#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 +#: libraries/db_links.inc.php:57 msgid "Database seems to be empty!" msgstr "" -#: libraries/db_links.inc.php:80 libraries/relation.lib.php:142 -#: libraries/tbl_links.inc.php:68 +#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:85 +#: libraries/db_links.inc.php:84 msgid "Query" msgstr "क्वरी" -#: libraries/db_links.inc.php:90 libraries/relation.lib.php:138 +#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:97 libraries/server_links.inc.php:87 -#: libraries/tbl_links.inc.php:90 pmd_pdf.php:83 pmd_pdf.php:109 +#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "" -#: libraries/db_links.inc.php:110 libraries/server_links.inc.php:65 -#: server_privileges.php:111 server_privileges.php:1714 -#: server_privileges.php:2063 test/theme.php:116 +#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: server_privileges.php:110 server_privileges.php:1718 +#: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" msgstr " प्रिविलेज" @@ -1866,15 +1852,15 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1847 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1806 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "" "शायद अनुमानित हैं. [a@./Documentation.html#faq3_11@Documentation]FAQ 3.11[/a] देखें" -#: libraries/db_structure.lib.php:60 server_databases.php:141 -#: tbl_printview.php:334 tbl_structure.php:681 +#: libraries/db_structure.lib.php:60 server_databases.php:139 +#: tbl_printview.php:333 tbl_structure.php:679 msgid "Overhead" msgstr "" @@ -1891,7 +1877,7 @@ msgstr "" msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "" -#: libraries/dbi/mysql.dbi.lib.php:358 tbl_structure.php:607 +#: libraries/dbi/mysql.dbi.lib.php:358 tbl_structure.php:605 msgid "Details..." msgstr "" @@ -1901,22 +1887,22 @@ msgid "Change password" msgstr "पासव्रड बदलिये" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:807 +#: libraries/replication_gui.lib.php:347 server_privileges.php:806 msgid "No Password" msgstr "पासवर्ड नहीं है" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1530 server_synchronize.php:1174 +#: libraries/replication_gui.lib.php:351 server_privileges.php:795 +#: server_privileges.php:799 server_privileges.php:810 +#: server_privileges.php:1534 server_synchronize.php:1173 msgid "Password" msgstr "" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:815 server_privileges.php:818 +#: server_privileges.php:814 server_privileges.php:817 msgid "Re-type" msgstr "" @@ -1937,8 +1923,8 @@ msgstr " नया डाटाबेस बनाओ" msgid "Create" msgstr "बनाइये" -#: libraries/display_create_database.lib.php:39 server_privileges.php:113 -#: server_privileges.php:1419 server_replication.php:34 +#: libraries/display_create_database.lib.php:39 server_privileges.php:112 +#: server_privileges.php:1423 server_replication.php:33 msgid "No Privileges" msgstr "कोइ प्रिविलेज नहीं" @@ -1959,50 +1945,50 @@ msgstr " डाटाबेस मे नया टेबल बनाओ" msgid "Number of columns" msgstr "प्रति पृष्ट कितने रौ" -#: libraries/display_export.lib.php:41 +#: libraries/display_export.lib.php:35 msgid "Could not load export plugins, please check your installation!" msgstr "" -#: libraries/display_export.lib.php:106 +#: libraries/display_export.lib.php:100 #, fuzzy, php-format #| msgid "row(s) starting from record #" msgid "Dump %s row(s) starting at row # %s" msgstr "रौ, इस record से #" -#: libraries/display_export.lib.php:114 +#: libraries/display_export.lib.php:108 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:124 setup/lib/messages.inc.php:79 +#: libraries/display_export.lib.php:118 setup/lib/messages.inc.php:79 msgid "Save as file" msgstr "फाईल मे सेव करें" -#: libraries/display_export.lib.php:133 +#: libraries/display_export.lib.php:127 #, php-format msgid "Save on server in %s directory" msgstr "" -#: libraries/display_export.lib.php:141 setup/lib/messages.inc.php:87 +#: libraries/display_export.lib.php:135 setup/lib/messages.inc.php:87 msgid "Overwrite existing file(s)" msgstr "" -#: libraries/display_export.lib.php:147 +#: libraries/display_export.lib.php:141 msgid "File name template" msgstr "" -#: libraries/display_export.lib.php:151 +#: libraries/display_export.lib.php:145 msgid "server name" msgstr "" -#: libraries/display_export.lib.php:154 +#: libraries/display_export.lib.php:148 msgid "database name" msgstr "" -#: libraries/display_export.lib.php:157 +#: libraries/display_export.lib.php:151 msgid "table name" msgstr "" -#: libraries/display_export.lib.php:161 +#: libraries/display_export.lib.php:155 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2010,39 +1996,39 @@ msgid "" "%3$s. Other text will be kept as is." msgstr "" -#: libraries/display_export.lib.php:202 +#: libraries/display_export.lib.php:196 msgid "remember template" msgstr "" -#: libraries/display_export.lib.php:210 libraries/display_import.lib.php:177 +#: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 #: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 msgid "Character set of the file:" msgstr "" -#: libraries/display_export.lib.php:235 setup/lib/messages.inc.php:81 +#: libraries/display_export.lib.php:229 setup/lib/messages.inc.php:81 msgid "Compression" msgstr "" -#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:196 -#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:529 -#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:574 -#: server_privileges.php:1867 server_processlist.php:74 +#: libraries/display_export.lib.php:234 libraries/display_import.lib.php:196 +#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:528 +#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:573 +#: server_privileges.php:1871 server_processlist.php:74 msgid "None" msgstr "" -#: libraries/display_export.lib.php:247 +#: libraries/display_export.lib.php:241 msgid "\"zipped\"" msgstr "" -#: libraries/display_export.lib.php:253 +#: libraries/display_export.lib.php:247 msgid "\"gzipped\"" msgstr "" -#: libraries/display_export.lib.php:259 +#: libraries/display_export.lib.php:253 msgid "\"bzipped\"" msgstr "" -#: libraries/display_export.lib.php:274 libraries/export/sql.php:42 +#: libraries/display_export.lib.php:268 libraries/export/sql.php:42 #: libraries/import/sql.php:31 msgid "SQL compatibility mode" msgstr "" @@ -2077,12 +2063,12 @@ msgid "File uploads are not allowed on this server." msgstr "" #: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 -#: tbl_change.php:1024 +#: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "" #: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 -#: tbl_change.php:1027 +#: tbl_change.php:925 msgid "web server upload directory" msgstr "" @@ -2163,43 +2149,43 @@ msgstr "पेपर आकार" msgid "Language" msgstr "" -#: libraries/display_tbl.lib.php:303 +#: libraries/display_tbl.lib.php:302 #, php-format msgid "%d is not valid row number." msgstr "" -#: libraries/display_tbl.lib.php:309 +#: libraries/display_tbl.lib.php:308 #, fuzzy #| msgid "row(s) starting from record #" msgid "row(s) starting from row #" msgstr "रौ, इस record से #" -#: libraries/display_tbl.lib.php:315 +#: libraries/display_tbl.lib.php:314 msgid "horizontal" msgstr "समतल" -#: libraries/display_tbl.lib.php:316 +#: libraries/display_tbl.lib.php:315 msgid "horizontal (rotated headers)" msgstr "" -#: libraries/display_tbl.lib.php:317 +#: libraries/display_tbl.lib.php:316 msgid "vertical" msgstr "खडा" -#: libraries/display_tbl.lib.php:323 +#: libraries/display_tbl.lib.php:322 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr " %s रूप में और %s सेल के बाद शीर्षक को दोहराईये" -#: libraries/display_tbl.lib.php:345 +#: libraries/display_tbl.lib.php:344 msgid "This operation could take a long time. Proceed anyway?" msgstr "" -#: libraries/display_tbl.lib.php:511 +#: libraries/display_tbl.lib.php:510 msgid "Sort by key" msgstr "" -#: libraries/display_tbl.lib.php:554 libraries/export/codegen.php:38 +#: libraries/display_tbl.lib.php:553 libraries/export/codegen.php:38 #: libraries/export/csv.php:29 libraries/export/excel.php:34 #: libraries/export/htmlword.php:28 libraries/export/latex.php:32 #: libraries/export/mediawiki.php:21 libraries/export/ods.php:26 @@ -2209,97 +2195,97 @@ msgstr "" #: libraries/export/xlsx.php:26 libraries/export/xml.php:23 #: libraries/export/yaml.php:27 libraries/import.lib.php:1114 #: libraries/import.lib.php:1136 libraries/import/csv.php:31 -#: libraries/import/docsql.php:33 libraries/import/ldi.php:46 +#: libraries/import/docsql.php:32 libraries/import/ldi.php:46 #: libraries/import/ods.php:30 libraries/import/sql.php:19 #: libraries/import/xls.php:25 libraries/import/xlsx.php:25 -#: libraries/import/xml.php:25 tbl_select.php:264 tbl_structure.php:752 +#: libraries/import/xml.php:25 tbl_select.php:263 tbl_structure.php:750 msgid "Options" msgstr "" -#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:569 +#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:568 msgid "Partial Texts" msgstr "" -#: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:573 +#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:572 msgid "Full Texts" msgstr "" -#: libraries/display_tbl.lib.php:586 +#: libraries/display_tbl.lib.php:585 msgid "Relational key" msgstr "" -#: libraries/display_tbl.lib.php:587 +#: libraries/display_tbl.lib.php:586 msgid "Relational display column" msgstr "" -#: libraries/display_tbl.lib.php:594 +#: libraries/display_tbl.lib.php:593 msgid "Show binary contents" msgstr "" -#: libraries/display_tbl.lib.php:596 +#: libraries/display_tbl.lib.php:595 msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:598 +#: libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "" -#: libraries/display_tbl.lib.php:606 pmd_general.php:140 tbl_change.php:312 -#: tbl_change.php:318 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:307 +#: tbl_change.php:313 msgid "Hide" msgstr "" -#: libraries/display_tbl.lib.php:606 libraries/relation.lib.php:122 -#: libraries/tbl_properties.inc.php:143 transformation_overview.php:46 +#: libraries/display_tbl.lib.php:605 libraries/relation.lib.php:117 +#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46 msgid "Browser transformation" msgstr "" -#: libraries/display_tbl.lib.php:1125 libraries/display_tbl.lib.php:1129 -#: libraries/display_tbl.lib.php:1131 +#: libraries/display_tbl.lib.php:1124 libraries/display_tbl.lib.php:1128 +#: libraries/display_tbl.lib.php:1130 msgid "Execute bookmarked query" msgstr "" -#: libraries/display_tbl.lib.php:1144 libraries/display_tbl.lib.php:1156 +#: libraries/display_tbl.lib.php:1143 libraries/display_tbl.lib.php:1155 msgid "The row has been deleted" msgstr "रौ को डिलीट कर दिया" -#: libraries/display_tbl.lib.php:1183 libraries/display_tbl.lib.php:2055 +#: libraries/display_tbl.lib.php:1182 libraries/display_tbl.lib.php:2014 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "" -#: libraries/display_tbl.lib.php:1933 +#: libraries/display_tbl.lib.php:1892 msgid "in query" msgstr "" -#: libraries/display_tbl.lib.php:1951 +#: libraries/display_tbl.lib.php:1910 msgid "Showing rows" msgstr "रौ देखिये" -#: libraries/display_tbl.lib.php:1961 +#: libraries/display_tbl.lib.php:1920 msgid "total" msgstr " कुल" -#: libraries/display_tbl.lib.php:1969 sql.php:523 +#: libraries/display_tbl.lib.php:1928 sql.php:522 #, php-format msgid "Query took %01.4f sec" msgstr "क्वरी को %01.4f सेकेंड का समय लगा" -#: libraries/display_tbl.lib.php:2088 libraries/mult_submits.inc.php:112 -#: querywindow.php:115 querywindow.php:119 querywindow.php:122 -#: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:469 +#: libraries/display_tbl.lib.php:2047 libraries/mult_submits.inc.php:112 +#: querywindow.php:114 querywindow.php:118 querywindow.php:121 +#: tbl_structure.php:23 tbl_structure.php:148 tbl_structure.php:467 msgid "Change" msgstr "बदलिये" -#: libraries/display_tbl.lib.php:2158 +#: libraries/display_tbl.lib.php:2117 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2186 +#: libraries/display_tbl.lib.php:2145 msgid "Print view (with full texts)" msgstr "" -#: libraries/display_tbl.lib.php:2359 +#: libraries/display_tbl.lib.php:2318 msgid "Link not found" msgstr "" @@ -2351,9 +2337,9 @@ msgstr "" msgid "Buffer Pool Usage" msgstr "बफर पूल उपयोग" -#: libraries/engines/innodb.lib.php:168 server_databases.php:136 -#: server_databases.php:304 server_status.php:524 server_status.php:585 -#: server_status.php:606 tbl_printview.php:349 tbl_structure.php:695 +#: libraries/engines/innodb.lib.php:168 server_databases.php:134 +#: server_databases.php:302 server_status.php:524 server_status.php:585 +#: server_status.php:606 tbl_printview.php:348 tbl_structure.php:693 msgid "Total" msgstr "" @@ -2475,6 +2461,77 @@ msgid "" "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." msgstr "" +#: libraries/engines/pbms.lib.php:31 +msgid "Garbage Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:32 +msgid "The percentage of garbage in a repository file before it is compacted." +msgstr "" + +#: libraries/engines/pbms.lib.php:36 libraries/replication_gui.lib.php:69 +#: server_synchronize.php:1161 +msgid "Port" +msgstr "" + +#: libraries/engines/pbms.lib.php:37 +msgid "" +"The port for the PBMS stream-based communications. Setting this value to 0 " +"will disable HTTP communication with the daemon." +msgstr "" + +#: libraries/engines/pbms.lib.php:41 +msgid "Repository Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:42 +msgid "" +"The maximum size of a BLOB repository file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:46 +msgid "Temp Blob Timeout" +msgstr "" + +#: libraries/engines/pbms.lib.php:47 +msgid "" +"The timeout, in seconds, for temporary BLOBs. Uploaded BLOB data is removed " +"after this time, unless they are referenced by a record in the database." +msgstr "" + +#: libraries/engines/pbms.lib.php:51 +msgid "Temp Log Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:52 +msgid "" +"The maximum size of a temporary BLOB log file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:56 +msgid "Max Keep Alive" +msgstr "" + +#: libraries/engines/pbms.lib.php:57 +msgid "" +"The timeout for inactive connection with the keep-alive flag set. After this " +"time the connection will be closed. The time-out is in milliseconds (1/1000)." +msgstr "" + +#: libraries/engines/pbms.lib.php:61 +msgid "Metadata Headers" +msgstr "" + +#: libraries/engines/pbms.lib.php:62 +msgid "" +"A \":\" delimited list of metadata headers to be used to initialize the " +"pbms_metadata_header table when a database is created." +msgstr "" + #: libraries/engines/pbxt.lib.php:22 msgid "Index cache size" msgstr "" @@ -2598,7 +2655,7 @@ msgid "" msgstr "" #: libraries/export/codegen.php:36 setup/lib/messages.inc.php:85 -#: tbl_printview.php:374 tbl_structure.php:736 +#: tbl_printview.php:373 tbl_structure.php:734 msgid "Format" msgstr "" @@ -2665,9 +2722,9 @@ msgstr "" #: libraries/export/htmlword.php:23 libraries/export/latex.php:59 #: libraries/export/latex.php:205 libraries/export/odt.php:47 #: libraries/export/sql.php:105 libraries/export/sql.php:865 -#: libraries/export/texytext.php:27 server_databases.php:126 -#: server_privileges.php:576 server_replication.php:315 tbl_printview.php:315 -#: tbl_structure.php:664 +#: libraries/export/texytext.php:27 server_databases.php:124 +#: server_privileges.php:575 server_replication.php:314 tbl_printview.php:314 +#: tbl_structure.php:662 msgid "Data" msgstr " डाटा" @@ -2716,13 +2773,13 @@ msgid "Label key" msgstr "" #: libraries/export/latex.php:46 libraries/export/odt.php:34 -#: libraries/export/sql.php:90 tbl_relation.php:398 +#: libraries/export/sql.php:90 tbl_relation.php:396 msgid "Relations" msgstr "" #: libraries/export/latex.php:52 libraries/export/odt.php:40 #: libraries/export/odt.php:317 libraries/export/sql.php:94 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "" @@ -2730,10 +2787,10 @@ msgstr "" #: libraries/export/xml.php:101 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1529 server_privileges.php:2061 -#: server_processlist.php:54 server_synchronize.php:1158 +#: libraries/replication_gui.lib.php:331 server_privileges.php:730 +#: server_privileges.php:733 server_privileges.php:789 +#: server_privileges.php:1533 server_privileges.php:2065 +#: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "होस्ट" @@ -2924,8 +2981,8 @@ msgstr "" msgid "Export contents" msgstr "" -#: libraries/footer.inc.php:182 libraries/footer.inc.php:193 -#: libraries/footer.inc.php:196 +#: libraries/footer.inc.php:180 libraries/footer.inc.php:191 +#: libraries/footer.inc.php:194 msgid "Open new phpMyAdmin window" msgstr "" @@ -2941,7 +2998,7 @@ msgstr "" msgid "Generated by" msgstr "" -#: libraries/import.lib.php:151 sql.php:519 tbl_change.php:180 +#: libraries/import.lib.php:151 sql.php:518 tbl_change.php:175 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" @@ -2997,7 +3054,7 @@ msgstr "" msgid "Column names in first row" msgstr "" -#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:501 +#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:500 #: view_create.php:147 msgid "Column names" msgstr "कोलम के नाम" @@ -3023,12 +3080,12 @@ msgstr "" msgid "Invalid column count in CSV input on line %d." msgstr "" -#: libraries/import/docsql.php:28 +#: libraries/import/docsql.php:27 msgid "DocSQL" msgstr "" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 -#: server_synchronize.php:427 server_synchronize.php:870 +#: libraries/import/docsql.php:30 libraries/tbl_properties.inc.php:616 +#: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "" @@ -3084,26 +3141,26 @@ msgstr "नहीं" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:512 -#: tbl_structure.php:28 tbl_structure.php:152 tbl_structure.php:156 -#: tbl_structure.php:472 +#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:511 +#: tbl_structure.php:27 tbl_structure.php:151 tbl_structure.php:155 +#: tbl_structure.php:470 msgid "Primary" msgstr "" #: libraries/mult_submits.inc.php:97 libraries/tbl_properties.inc.php:115 -#: libraries/tbl_properties.inc.php:524 tbl_printview.php:324 -#: tbl_structure.php:30 tbl_structure.php:153 tbl_structure.php:157 -#: tbl_structure.php:474 tbl_structure.php:672 +#: libraries/tbl_properties.inc.php:523 tbl_printview.php:323 +#: tbl_structure.php:29 tbl_structure.php:152 tbl_structure.php:156 +#: tbl_structure.php:472 tbl_structure.php:670 msgid "Index" msgstr "" -#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:530 -#: tbl_structure.php:34 tbl_structure.php:155 tbl_structure.php:159 -#: tbl_structure.php:477 +#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:529 +#: tbl_structure.php:33 tbl_structure.php:154 tbl_structure.php:158 +#: tbl_structure.php:475 msgid "Fulltext" msgstr "" -#: libraries/mult_submits.inc.php:434 tbl_replace.php:330 +#: libraries/mult_submits.inc.php:433 tbl_replace.php:330 msgid "No change" msgstr "कोइ बदलाव नहीं" @@ -3111,190 +3168,190 @@ msgstr "कोइ बदलाव नहीं" msgid "Charset" msgstr "" -#: libraries/mysql_charsets.lib.php:210 libraries/mysql_charsets.lib.php:411 -#: tbl_change.php:515 +#: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 +#: tbl_change.php:510 msgid "Binary" msgstr "बइनरी" -#: libraries/mysql_charsets.lib.php:222 +#: libraries/mysql_charsets.lib.php:214 msgid "Bulgarian" msgstr "" -#: libraries/mysql_charsets.lib.php:226 libraries/mysql_charsets.lib.php:351 +#: libraries/mysql_charsets.lib.php:218 libraries/mysql_charsets.lib.php:343 msgid "Simplified Chinese" msgstr "" -#: libraries/mysql_charsets.lib.php:228 libraries/mysql_charsets.lib.php:371 +#: libraries/mysql_charsets.lib.php:220 libraries/mysql_charsets.lib.php:363 msgid "Traditional Chinese" msgstr "" -#: libraries/mysql_charsets.lib.php:232 libraries/mysql_charsets.lib.php:418 +#: libraries/mysql_charsets.lib.php:224 libraries/mysql_charsets.lib.php:410 msgid "case-insensitive" msgstr "" -#: libraries/mysql_charsets.lib.php:235 libraries/mysql_charsets.lib.php:420 +#: libraries/mysql_charsets.lib.php:227 libraries/mysql_charsets.lib.php:412 msgid "case-sensitive" msgstr "" -#: libraries/mysql_charsets.lib.php:238 +#: libraries/mysql_charsets.lib.php:230 msgid "Croatian" msgstr "" -#: libraries/mysql_charsets.lib.php:241 +#: libraries/mysql_charsets.lib.php:233 msgid "Czech" msgstr "" -#: libraries/mysql_charsets.lib.php:244 +#: libraries/mysql_charsets.lib.php:236 msgid "Danish" msgstr "" -#: libraries/mysql_charsets.lib.php:247 +#: libraries/mysql_charsets.lib.php:239 msgid "English" msgstr "अंग्रेजी" -#: libraries/mysql_charsets.lib.php:250 +#: libraries/mysql_charsets.lib.php:242 msgid "Esperanto" msgstr "" -#: libraries/mysql_charsets.lib.php:253 +#: libraries/mysql_charsets.lib.php:245 msgid "Estonian" msgstr "" -#: libraries/mysql_charsets.lib.php:256 libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:248 libraries/mysql_charsets.lib.php:251 msgid "German" msgstr "जर्मन" -#: libraries/mysql_charsets.lib.php:256 +#: libraries/mysql_charsets.lib.php:248 msgid "dictionary" msgstr "शब्दकोश" -#: libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:251 msgid "phone book" msgstr "" -#: libraries/mysql_charsets.lib.php:262 +#: libraries/mysql_charsets.lib.php:254 msgid "Hungarian" msgstr "" -#: libraries/mysql_charsets.lib.php:265 +#: libraries/mysql_charsets.lib.php:257 msgid "Icelandic" msgstr "" -#: libraries/mysql_charsets.lib.php:268 libraries/mysql_charsets.lib.php:358 +#: libraries/mysql_charsets.lib.php:260 libraries/mysql_charsets.lib.php:350 msgid "Japanese" msgstr "जापानी" -#: libraries/mysql_charsets.lib.php:271 +#: libraries/mysql_charsets.lib.php:263 msgid "Latvian" msgstr "" -#: libraries/mysql_charsets.lib.php:274 +#: libraries/mysql_charsets.lib.php:266 msgid "Lithuanian" msgstr "" -#: libraries/mysql_charsets.lib.php:277 libraries/mysql_charsets.lib.php:380 +#: libraries/mysql_charsets.lib.php:269 libraries/mysql_charsets.lib.php:372 msgid "Korean" msgstr "कोरियन" -#: libraries/mysql_charsets.lib.php:280 +#: libraries/mysql_charsets.lib.php:272 msgid "Persian" msgstr "" -#: libraries/mysql_charsets.lib.php:283 +#: libraries/mysql_charsets.lib.php:275 msgid "Polish" msgstr "" -#: libraries/mysql_charsets.lib.php:286 libraries/mysql_charsets.lib.php:334 +#: libraries/mysql_charsets.lib.php:278 libraries/mysql_charsets.lib.php:326 msgid "West European" msgstr "" -#: libraries/mysql_charsets.lib.php:289 +#: libraries/mysql_charsets.lib.php:281 msgid "Romanian" msgstr "" -#: libraries/mysql_charsets.lib.php:292 +#: libraries/mysql_charsets.lib.php:284 msgid "Slovak" msgstr "" -#: libraries/mysql_charsets.lib.php:295 +#: libraries/mysql_charsets.lib.php:287 msgid "Slovenian" msgstr "" -#: libraries/mysql_charsets.lib.php:298 +#: libraries/mysql_charsets.lib.php:290 msgid "Spanish" msgstr "" -#: libraries/mysql_charsets.lib.php:301 +#: libraries/mysql_charsets.lib.php:293 msgid "Traditional Spanish" msgstr "" -#: libraries/mysql_charsets.lib.php:304 libraries/mysql_charsets.lib.php:401 +#: libraries/mysql_charsets.lib.php:296 libraries/mysql_charsets.lib.php:393 msgid "Swedish" msgstr "" -#: libraries/mysql_charsets.lib.php:307 libraries/mysql_charsets.lib.php:404 +#: libraries/mysql_charsets.lib.php:299 libraries/mysql_charsets.lib.php:396 msgid "Thai" msgstr "" -#: libraries/mysql_charsets.lib.php:310 libraries/mysql_charsets.lib.php:398 +#: libraries/mysql_charsets.lib.php:302 libraries/mysql_charsets.lib.php:390 msgid "Turkish" msgstr "तुर्क" -#: libraries/mysql_charsets.lib.php:313 libraries/mysql_charsets.lib.php:395 +#: libraries/mysql_charsets.lib.php:305 libraries/mysql_charsets.lib.php:387 msgid "Ukrainian" msgstr "" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 msgid "Unicode" msgstr "" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 -#: libraries/mysql_charsets.lib.php:334 libraries/mysql_charsets.lib.php:341 -#: libraries/mysql_charsets.lib.php:363 libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 +#: libraries/mysql_charsets.lib.php:326 libraries/mysql_charsets.lib.php:333 +#: libraries/mysql_charsets.lib.php:355 libraries/mysql_charsets.lib.php:366 msgid "multilingual" msgstr "" -#: libraries/mysql_charsets.lib.php:341 +#: libraries/mysql_charsets.lib.php:333 msgid "Central European" msgstr "" -#: libraries/mysql_charsets.lib.php:346 +#: libraries/mysql_charsets.lib.php:338 msgid "Russian" msgstr "रशियन" -#: libraries/mysql_charsets.lib.php:363 +#: libraries/mysql_charsets.lib.php:355 msgid "Baltic" msgstr "बाल्टिक" -#: libraries/mysql_charsets.lib.php:368 +#: libraries/mysql_charsets.lib.php:360 msgid "Armenian" msgstr "आर्मेनियन" -#: libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:366 msgid "Cyrillic" msgstr "" -#: libraries/mysql_charsets.lib.php:377 +#: libraries/mysql_charsets.lib.php:369 msgid "Arabic" msgstr "अरबी" -#: libraries/mysql_charsets.lib.php:383 +#: libraries/mysql_charsets.lib.php:375 msgid "Hebrew" msgstr "" -#: libraries/mysql_charsets.lib.php:386 +#: libraries/mysql_charsets.lib.php:378 msgid "Georgian" msgstr "" -#: libraries/mysql_charsets.lib.php:389 +#: libraries/mysql_charsets.lib.php:381 msgid "Greek" msgstr " ग्रीक" -#: libraries/mysql_charsets.lib.php:392 +#: libraries/mysql_charsets.lib.php:384 msgid "Czech-Slovak" msgstr "" -#: libraries/mysql_charsets.lib.php:407 libraries/mysql_charsets.lib.php:414 +#: libraries/mysql_charsets.lib.php:399 libraries/mysql_charsets.lib.php:406 msgid "unknown" msgstr "" @@ -3320,67 +3377,67 @@ msgstr "क्वरी पेज" msgid "This format has no options" msgstr "" -#: libraries/relation.lib.php:82 +#: libraries/relation.lib.php:77 msgid "not OK" msgstr "" -#: libraries/relation.lib.php:86 pmd_general.php:339 +#: libraries/relation.lib.php:81 pmd_general.php:339 msgid "OK" msgstr "" -#: libraries/relation.lib.php:87 +#: libraries/relation.lib.php:82 msgid "Enabled" msgstr "" -#: libraries/relation.lib.php:110 +#: libraries/relation.lib.php:105 msgid "Display Features" msgstr "फीचरस दिखाओ" -#: libraries/relation.lib.php:116 +#: libraries/relation.lib.php:111 msgid "Creation of PDFs" msgstr "" -#: libraries/relation.lib.php:120 +#: libraries/relation.lib.php:115 msgid "Displaying Column Comments" msgstr "" -#: libraries/relation.lib.php:125 +#: libraries/relation.lib.php:120 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" -#: libraries/relation.lib.php:130 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 msgid "Bookmarked SQL query" msgstr "बुकमार्क किया हुआ SQL-क्वरी" -#: libraries/relation.lib.php:134 querywindow.php:99 querywindow.php:207 +#: libraries/relation.lib.php:129 querywindow.php:98 querywindow.php:205 msgid "SQL history" msgstr "SQL- इतिहास" -#: libraries/relation.lib.php:146 +#: libraries/relation.lib.php:141 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:148 +#: libraries/relation.lib.php:143 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" -#: libraries/relation.lib.php:149 +#: libraries/relation.lib.php:144 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:150 +#: libraries/relation.lib.php:145 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:151 +#: libraries/relation.lib.php:146 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1158 +#: libraries/relation.lib.php:1153 msgid "no description" msgstr "" @@ -3388,7 +3445,7 @@ msgstr "" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:53 server_replication.php:346 +#: libraries/replication_gui.lib.php:53 server_replication.php:345 msgid "Change or reconfigure master server" msgstr "" @@ -3400,16 +3457,12 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:711 -#: server_privileges.php:714 server_privileges.php:721 -#: server_synchronize.php:1170 +#: libraries/replication_gui.lib.php:261 server_privileges.php:710 +#: server_privileges.php:713 server_privileges.php:720 +#: server_synchronize.php:1169 msgid "User name" msgstr "यूसर नेम" -#: libraries/replication_gui.lib.php:69 server_synchronize.php:1162 -msgid "Port" -msgstr "" - #: libraries/replication_gui.lib.php:105 msgid "Master status" msgstr "" @@ -3424,8 +3477,8 @@ msgid "Variable" msgstr "" #: libraries/replication_gui.lib.php:117 server_status.php:737 -#: tbl_change.php:322 tbl_printview.php:368 tbl_select.php:137 -#: tbl_structure.php:728 +#: tbl_change.php:317 tbl_printview.php:367 tbl_select.php:136 +#: tbl_structure.php:726 msgid "Value" msgstr "मूल्य" @@ -3439,38 +3492,38 @@ msgid "" "this list." msgstr "" -#: libraries/replication_gui.lib.php:242 server_replication.php:193 +#: libraries/replication_gui.lib.php:242 server_replication.php:192 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:256 server_privileges.php:716 +#: libraries/replication_gui.lib.php:256 server_privileges.php:715 msgid "Any user" msgstr "कोई भी उपयोगकर्ता" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1920 server_privileges.php:1950 +#: libraries/replication_gui.lib.php:348 server_privileges.php:716 +#: server_privileges.php:783 server_privileges.php:807 +#: server_privileges.php:1924 server_privileges.php:1954 msgid "Use text field" msgstr "" -#: libraries/replication_gui.lib.php:304 server_privileges.php:764 +#: libraries/replication_gui.lib.php:304 server_privileges.php:763 msgid "Any host" msgstr "कोई भी होस्ट" -#: libraries/replication_gui.lib.php:308 server_privileges.php:768 +#: libraries/replication_gui.lib.php:308 server_privileges.php:767 msgid "Local" msgstr "Local" -#: libraries/replication_gui.lib.php:314 server_privileges.php:773 +#: libraries/replication_gui.lib.php:314 server_privileges.php:772 msgid "This Host" msgstr "" -#: libraries/replication_gui.lib.php:320 server_privileges.php:779 +#: libraries/replication_gui.lib.php:320 server_privileges.php:778 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:333 server_privileges.php:792 +#: libraries/replication_gui.lib.php:333 server_privileges.php:791 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3496,8 +3549,8 @@ msgstr "" msgid "Servers" msgstr "" -#: libraries/server_links.inc.php:52 server_engines.php:111 -#: server_engines.php:115 server_status.php:414 test/theme.php:104 +#: libraries/server_links.inc.php:52 server_engines.php:125 +#: server_engines.php:129 server_status.php:414 test/theme.php:104 msgid "Variables" msgstr "" @@ -3518,12 +3571,12 @@ msgstr "बाइनरी लोग" msgid "Processes" msgstr "" -#: libraries/server_links.inc.php:91 server_synchronize.php:1091 -#: server_synchronize.php:1099 +#: libraries/server_links.inc.php:91 server_synchronize.php:1090 +#: server_synchronize.php:1098 msgid "Synchronize" msgstr "" -#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1109 +#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1108 msgid "Source database" msgstr "" @@ -3541,7 +3594,7 @@ msgstr "" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1111 +#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1110 msgid "Target database" msgstr "" @@ -3561,11 +3614,11 @@ msgstr "डाटाबेस %s में SQL query/queries चलाइये msgid "Columns" msgstr "कोलम के नाम" -#: libraries/sql_query_form.lib.php:342 sql.php:664 sql.php:665 sql.php:682 +#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "इस SQL-क्वरी को बुकमार्क कीजिये " -#: libraries/sql_query_form.lib.php:349 sql.php:676 +#: libraries/sql_query_form.lib.php:349 sql.php:669 msgid "Let every user access this bookmark" msgstr "हर उपयोकर्ता को अनुमति दें इस बुकमार्क का उपयोग करने के लिए" @@ -3647,12 +3700,12 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" -#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:139 -#: libraries/tbl_links.inc.php:140 +#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 +#: libraries/tbl_links.inc.php:139 msgid "Table seems to be empty!" msgstr "" -#: libraries/tbl_links.inc.php:148 +#: libraries/tbl_links.inc.php:147 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" @@ -3675,23 +3728,23 @@ msgid "" "escaping or quotes, using this format: a" msgstr "" -#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1263 -#: pdf_schema.php:1284 tbl_printview.php:142 tbl_structure.php:179 +#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1262 +#: pdf_schema.php:1283 tbl_printview.php:141 tbl_structure.php:178 msgid "Attributes" msgstr "विशेषता" -#: libraries/tbl_properties.inc.php:136 +#: libraries/tbl_properties.inc.php:135 #, php-format msgid "" "For a list of available transformation options and their MIME type " "transformations, click on %stransformation descriptions%s" msgstr "" -#: libraries/tbl_properties.inc.php:144 +#: libraries/tbl_properties.inc.php:143 msgid "Transformation options" msgstr "" -#: libraries/tbl_properties.inc.php:145 +#: libraries/tbl_properties.inc.php:144 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
                            If you ever need to put a backslash (\"\\\") or a single " @@ -3699,47 +3752,47 @@ msgid "" "'\\\\xyz' or 'a\\'b')." msgstr "" -#: libraries/tbl_properties.inc.php:392 +#: libraries/tbl_properties.inc.php:391 #, fuzzy #| msgid "No" msgctxt "for default" msgid "None" msgstr "नहीं" -#: libraries/tbl_properties.inc.php:393 +#: libraries/tbl_properties.inc.php:392 msgid "As defined:" msgstr "जैसे परिभाषित:" -#: libraries/tbl_properties.inc.php:579 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:578 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
                            Please ask the " "author what %s does." msgstr "" -#: libraries/tbl_properties.inc.php:725 server_engines.php:57 -#: tbl_operations.php:354 +#: libraries/tbl_properties.inc.php:724 server_engines.php:56 +#: tbl_operations.php:352 msgid "Storage Engine" msgstr "" -#: libraries/tbl_properties.inc.php:754 +#: libraries/tbl_properties.inc.php:753 msgid "PARTITION definition" msgstr "" -#: libraries/tbl_properties.inc.php:775 pdf_pages.php:502 +#: libraries/tbl_properties.inc.php:774 pdf_pages.php:501 #: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214 -#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1124 tbl_indexes.php:247 -#: tbl_relation.php:565 +#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1022 tbl_indexes.php:246 +#: tbl_relation.php:563 msgid "Save" msgstr "" -#: libraries/tbl_properties.inc.php:779 tbl_structure.php:541 +#: libraries/tbl_properties.inc.php:778 tbl_structure.php:539 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "%s क्षेत्र जोडें" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:535 +#: libraries/tbl_properties.inc.php:782 tbl_structure.php:533 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." @@ -3864,8 +3917,8 @@ msgstr "" msgid "Custom color" msgstr "" -#: main.php:162 pdf_pages.php:362 setup/lib/FormDisplay.tpl.php:216 -#: tbl_change.php:1173 +#: main.php:162 pdf_pages.php:361 setup/lib/FormDisplay.tpl.php:216 +#: tbl_change.php:1071 msgid "Reset" msgstr "" @@ -3873,8 +3926,8 @@ msgstr "" msgid "Protocol version" msgstr "" -#: main.php:188 server_privileges.php:1381 server_privileges.php:1528 -#: server_privileges.php:1642 server_privileges.php:2060 +#: main.php:188 server_privileges.php:1385 server_privileges.php:1532 +#: server_privileges.php:1646 server_privileges.php:2064 #: server_processlist.php:53 msgid "User" msgstr "यूसर" @@ -3948,21 +4001,30 @@ msgid "" "has been configured." msgstr "" -#: main.php:330 +#: main.php:314 +#, php-format +msgid "" +"The additional features for working with linked tables have been " +"deactivated. To find out why click %shere%s." +msgstr "" +"लिंक्ड तालिकाओं के साथ काम करने के लिए अतिरिक्त सुविधाओं को निष्क्रिय कर दिया गया है. " +"क्यों ये किया गया है, जानने के लिए %shere%s पर क्लिक करें." + +#: main.php:329 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:345 +#: main.php:344 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: main.php:357 +#: main.php:356 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -3973,103 +4035,103 @@ msgstr "" msgid "Reload navigation frame" msgstr "" -#: navigation.php:204 server_databases.php:370 server_synchronize.php:1190 +#: navigation.php:203 server_databases.php:368 server_synchronize.php:1189 msgid "No databases" msgstr "कोइ डाटाबेस नहिं" -#: navigation.php:298 +#: navigation.php:297 msgid "Filter" msgstr "" -#: navigation.php:299 setup/frames/index.inc.php:218 +#: navigation.php:298 setup/frames/index.inc.php:218 #: setup/lib/messages.inc.php:41 msgid "Clear" msgstr "" -#: navigation.php:330 navigation.php:331 +#: navigation.php:329 navigation.php:330 #, fuzzy #| msgid "Create a page" msgctxt "short form" msgid "Create table" msgstr "नया पेज़ बनाऐं" -#: navigation.php:333 navigation.php:495 +#: navigation.php:332 navigation.php:494 msgid "Please select a database" msgstr "कृपया एक डाटाबेस चुनिये " -#: pdf_pages.php:40 pdf_pages.php:46 pdf_pages.php:52 pdf_pages.php:57 +#: pdf_pages.php:39 pdf_pages.php:45 pdf_pages.php:51 pdf_pages.php:56 #, php-format msgid "%s table not found or not set in %s" msgstr "" -#: pdf_pages.php:265 +#: pdf_pages.php:264 msgid "Please choose a page to edit" msgstr " एडिट करने के लिये पेज़ चुने" -#: pdf_pages.php:303 pmd_pdf.php:113 +#: pdf_pages.php:302 pmd_pdf.php:111 msgid "Create a page" msgstr "नया पेज़ बनाऐं" -#: pdf_pages.php:309 +#: pdf_pages.php:308 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "पृष्ठ संख्या:" -#: pdf_pages.php:313 +#: pdf_pages.php:312 #, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "स्वचालित लेआउट" -#: pdf_pages.php:315 +#: pdf_pages.php:314 msgid "Internal relations" msgstr "" -#: pdf_pages.php:338 +#: pdf_pages.php:337 msgid "Select Tables" msgstr " टेबल चुनिये" -#: pdf_pages.php:361 +#: pdf_pages.php:360 msgid "Toggle scratchboard" msgstr "" -#: pdf_pages.php:524 +#: pdf_pages.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" msgstr "" -#: pdf_schema.php:635 +#: pdf_schema.php:634 #, fuzzy, php-format #| msgid "%s table(s)" msgid "The %s table doesn't exist!" msgstr " %s टेबल(s)" -#: pdf_schema.php:671 +#: pdf_schema.php:670 #, php-format msgid "Please configure the coordinates for table %s" msgstr "" -#: pdf_schema.php:994 +#: pdf_schema.php:993 #, php-format msgid "Schema of the %s database - Page %s" msgstr "" -#: pdf_schema.php:1012 +#: pdf_schema.php:1011 msgid "No tables" msgstr " कोई टेबल नहीं" -#: pdf_schema.php:1031 pdf_schema.php:1140 +#: pdf_schema.php:1030 pdf_schema.php:1139 msgid "Relational schema" msgstr "" -#: pdf_schema.php:1115 +#: pdf_schema.php:1114 msgid "Table of contents" msgstr "" -#: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:145 -#: tbl_structure.php:182 tbl_tracking.php:277 +#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 +#: tbl_structure.php:181 tbl_tracking.php:272 msgid "Extra" msgstr " अतिरिक्त" @@ -4081,7 +4143,7 @@ msgstr "" msgid "Save position" msgstr "" -#: pmd_general.php:70 server_synchronize.php:428 server_synchronize.php:871 +#: pmd_general.php:70 server_synchronize.php:427 server_synchronize.php:870 msgid "Create table" msgstr "" @@ -4152,31 +4214,31 @@ msgid "" "appropriate column name." msgstr "" -#: pmd_pdf.php:62 +#: pmd_pdf.php:60 msgid "Page has been created" msgstr "" -#: pmd_pdf.php:64 +#: pmd_pdf.php:62 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:84 +#: pmd_pdf.php:82 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:88 +#: pmd_pdf.php:86 msgid "recommended" msgstr "" -#: pmd_pdf.php:93 +#: pmd_pdf.php:91 msgid "to/from page" msgstr "" -#: querywindow.php:94 +#: querywindow.php:93 msgid "Import files" msgstr "" -#: querywindow.php:105 +#: querywindow.php:104 msgid "All" msgstr "सभी" @@ -4222,67 +4284,67 @@ msgstr "सूचना" msgid "Character Sets and Collations" msgstr "" -#: server_databases.php:51 +#: server_databases.php:49 msgid "No databases selected." msgstr " कोइ डाटाबेस नहीं चुना गया है।" -#: server_databases.php:62 +#: server_databases.php:60 #, php-format msgid "%s databases have been dropped successfully." msgstr "%s डाटाबेस को सफलता से डिलीट कर दिया गया।" -#: server_databases.php:87 +#: server_databases.php:85 msgid "Databases statistics" msgstr " डाटाबेसों के आँकडे" -#: server_databases.php:116 server_status.php:370 +#: server_databases.php:114 server_status.php:370 #: setup/lib/messages.inc.php:114 msgid "Tables" msgstr "" -#: server_databases.php:194 server_replication.php:180 -#: server_replication.php:208 +#: server_databases.php:192 server_replication.php:179 +#: server_replication.php:207 msgid "Master replication" msgstr "" -#: server_databases.php:196 server_replication.php:247 +#: server_databases.php:194 server_replication.php:246 msgid "Slave replication" msgstr "" -#: server_databases.php:229 +#: server_databases.php:227 #, fuzzy #| msgid "No databases" msgid "Jump to database" msgstr "कोइ डाटाबेस नहिं" -#: server_databases.php:266 +#: server_databases.php:264 msgid "Not replicated" msgstr "" -#: server_databases.php:272 +#: server_databases.php:270 #, fuzzy #| msgid "Replication" msgid "Replicated" msgstr "प्रतिकृति" -#: server_databases.php:288 +#: server_databases.php:286 #, php-format msgid "Check privileges for database "%s"." msgstr "डाटाबेस के प्रिविलेज चेक करें "%s"." -#: server_databases.php:292 server_databases.php:293 +#: server_databases.php:290 server_databases.php:291 msgid "Check Privileges" msgstr "प्रिविलेज चेक करें" -#: server_databases.php:357 server_databases.php:358 +#: server_databases.php:355 server_databases.php:356 msgid "Enable Statistics" msgstr "आँकडे Enable करें" -#: server_databases.php:361 server_databases.php:362 +#: server_databases.php:359 server_databases.php:360 msgid "Disable Statistics" msgstr "आँकडे Disable करें" -#: server_databases.php:365 +#: server_databases.php:363 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -4290,119 +4352,119 @@ msgstr "" " नोट: यहां डाटाबेस के आँकडे Enable करने से webserver और MySQL के बीच में ट्रेफिक बडने की " "संभावना है। " -#: server_engines.php:48 +#: server_engines.php:47 msgid "Storage Engines" msgstr "" -#: server_export.php:20 +#: server_export.php:18 msgid "View dump (schema) of databases" msgstr "" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:23 server_privileges.php:265 msgid "Includes all privileges except GRANT." msgstr "" -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:24 server_privileges.php:191 +#: server_privileges.php:514 msgid "Allows altering the structure of existing tables." msgstr "" -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:25 server_privileges.php:207 +#: server_privileges.php:520 msgid "Allows altering and dropping stored routines." msgstr "" -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:26 server_privileges.php:183 +#: server_privileges.php:513 msgid "Allows creating new databases and tables." msgstr "" -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:27 server_privileges.php:206 +#: server_privileges.php:519 msgid "Allows creating stored routines." msgstr "" -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:513 msgid "Allows creating new tables." msgstr "" -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:29 server_privileges.php:194 +#: server_privileges.php:517 msgid "Allows creating temporary tables." msgstr "" -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:30 server_privileges.php:208 +#: server_privileges.php:553 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: server_privileges.php:32 server_privileges.php:199 -#: server_privileges.php:203 server_privileges.php:526 -#: server_privileges.php:530 +#: server_privileges.php:31 server_privileges.php:198 +#: server_privileges.php:202 server_privileges.php:525 +#: server_privileges.php:529 msgid "Allows creating new views." msgstr "" -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:32 server_privileges.php:182 +#: server_privileges.php:505 msgid "Allows deleting data." msgstr "" -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:33 server_privileges.php:184 +#: server_privileges.php:516 msgid "Allows dropping databases and tables." msgstr "" -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:34 server_privileges.php:516 msgid "Allows dropping tables." msgstr "" -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:35 server_privileges.php:199 +#: server_privileges.php:533 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:36 server_privileges.php:209 +#: server_privileges.php:521 msgid "Allows executing stored routines." msgstr "" -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:37 server_privileges.php:188 +#: server_privileges.php:508 msgid "Allows importing data from and exporting data into files." msgstr "" -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:38 server_privileges.php:539 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:515 msgid "Allows creating and dropping indexes." msgstr "" -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:40 server_privileges.php:180 +#: server_privileges.php:441 server_privileges.php:503 msgid "Allows inserting and replacing data." msgstr "" -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:41 server_privileges.php:195 +#: server_privileges.php:548 msgid "Allows locking tables for the current thread." msgstr "" -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:42 server_privileges.php:645 +#: server_privileges.php:647 msgid "Limits the number of new connections the user may open per hour." msgstr "Limits the number of new connections the user may open per hour." -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:43 server_privileges.php:633 +#: server_privileges.php:635 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Limits the number of queries the user may send to the server per hour." -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:44 server_privileges.php:639 +#: server_privileges.php:641 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -4410,214 +4472,214 @@ msgstr "" "Limits the number of commands that change any table or database the user may " "execute per hour." -#: server_privileges.php:46 server_privileges.php:652 -#: server_privileges.php:654 +#: server_privileges.php:45 server_privileges.php:651 +#: server_privileges.php:653 msgid "Limits the number of simultaneous connections the user may have." msgstr "" -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:46 server_privileges.php:187 +#: server_privileges.php:543 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:47 server_privileges.php:189 +#: server_privileges.php:447 server_privileges.php:549 msgid "Has no effect in this MySQL version." msgstr "" -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:48 server_privileges.php:185 +#: server_privileges.php:544 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:197 +#: server_privileges.php:551 msgid "Allows the user to ask where the slaves / masters are." msgstr "" -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:50 server_privileges.php:196 +#: server_privileges.php:552 msgid "Needed for the replication slaves." msgstr "" -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:51 server_privileges.php:179 +#: server_privileges.php:438 server_privileges.php:502 msgid "Allows reading data." msgstr "" -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:52 server_privileges.php:192 +#: server_privileges.php:546 msgid "Gives access to the complete list of databases." msgstr "" -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:53 server_privileges.php:203 +#: server_privileges.php:205 server_privileges.php:518 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:54 server_privileges.php:186 +#: server_privileges.php:545 msgid "Allows shutting down the server." msgstr "" -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:55 server_privileges.php:193 +#: server_privileges.php:542 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " "killing threads of other users." msgstr "" -#: server_privileges.php:57 server_privileges.php:201 -#: server_privileges.php:535 +#: server_privileges.php:56 server_privileges.php:200 +#: server_privileges.php:534 msgid "Allows creating and dropping triggers" msgstr "" -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:57 server_privileges.php:181 +#: server_privileges.php:444 server_privileges.php:504 msgid "Allows changing data." msgstr "" -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:58 server_privileges.php:259 msgid "No privileges." msgstr "" -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:301 server_privileges.php:302 #, fuzzy #| msgid "No" msgctxt "None privileges" msgid "None" msgstr "नहीं" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1710 server_privileges.php:1716 +#: server_privileges.php:430 server_privileges.php:565 +#: server_privileges.php:1714 server_privileges.php:1720 msgid "Table-specific privileges" msgstr " केवल टेबल के प्रिविलेज" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1532 +#: server_privileges.php:431 server_privileges.php:573 +#: server_privileges.php:1536 msgid " Note: MySQL privilege names are expressed in English " msgstr " नोट: MySQL प्रिविलेज नामों को अंग्रेजी मे लिखा गया है " -#: server_privileges.php:563 server_privileges.php:1531 +#: server_privileges.php:562 server_privileges.php:1535 msgid "Global privileges" msgstr "" -#: server_privileges.php:565 server_privileges.php:1710 +#: server_privileges.php:564 server_privileges.php:1714 msgid "Database-specific privileges" msgstr " केवल डाटाबेस के प्रिविलेज" -#: server_privileges.php:610 +#: server_privileges.php:609 msgid "Administration" msgstr "एडमिनिस्ट्रेशन" -#: server_privileges.php:630 +#: server_privileges.php:629 msgid "Resource limits" msgstr "" -#: server_privileges.php:631 +#: server_privileges.php:630 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" -#: server_privileges.php:708 +#: server_privileges.php:707 msgid "Login Information" msgstr "" -#: server_privileges.php:802 +#: server_privileges.php:801 msgid "Do not change the password" msgstr "पासवर्ड मत बदलिये" -#: server_privileges.php:835 server_privileges.php:2197 +#: server_privileges.php:834 server_privileges.php:2201 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "कोई यूसर नहीं।" -#: server_privileges.php:879 +#: server_privileges.php:878 #, php-format msgid "The user %s already exists!" msgstr "" -#: server_privileges.php:962 +#: server_privileges.php:961 msgid "You have added a new user." msgstr "आपने नया यूसर बना लिया" -#: server_privileges.php:1183 +#: server_privileges.php:1184 #, php-format msgid "You have updated the privileges for %s." msgstr "आपने %s के प्रिविलेज अपडेट कर दिया ।" -#: server_privileges.php:1207 +#: server_privileges.php:1208 #, php-format msgid "You have revoked the privileges for %s" msgstr "आपने %s के privileges वापस ले लिया " -#: server_privileges.php:1243 +#: server_privileges.php:1244 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: server_privileges.php:1263 +#: server_privileges.php:1264 #, php-format msgid "Deleting %s" msgstr "" -#: server_privileges.php:1274 +#: server_privileges.php:1275 msgid "No users selected for deleting!" msgstr "" -#: server_privileges.php:1277 +#: server_privileges.php:1278 msgid "Reloading the privileges" msgstr "" -#: server_privileges.php:1292 +#: server_privileges.php:1296 msgid "The selected users have been deleted successfully." msgstr "" -#: server_privileges.php:1327 +#: server_privileges.php:1331 msgid "The privileges were reloaded successfully." msgstr "" -#: server_privileges.php:1355 server_privileges.php:1641 +#: server_privileges.php:1359 server_privileges.php:1645 msgid "Edit Privileges" msgstr " प्रिविलेज एडिट करें" -#: server_privileges.php:1364 +#: server_privileges.php:1368 msgid "Revoke" msgstr "वापस लो" -#: server_privileges.php:1396 +#: server_privileges.php:1400 msgid "User overview" msgstr "" -#: server_privileges.php:1533 server_privileges.php:1715 -#: server_privileges.php:2064 +#: server_privileges.php:1537 server_privileges.php:1719 +#: server_privileges.php:2068 msgid "Grant" msgstr "" -#: server_privileges.php:1552 server_privileges.php:2154 +#: server_privileges.php:1556 server_privileges.php:2158 msgid "Any" msgstr "कोई" -#: server_privileges.php:1601 server_privileges.php:1625 -#: server_privileges.php:2019 server_privileges.php:2208 +#: server_privileges.php:1605 server_privileges.php:1629 +#: server_privileges.php:2023 server_privileges.php:2212 msgid "Add a new User" msgstr "नया यूसर जोडें" -#: server_privileges.php:1606 +#: server_privileges.php:1610 msgid "Remove selected users" msgstr "" -#: server_privileges.php:1609 +#: server_privileges.php:1613 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: server_privileges.php:1610 server_privileges.php:1611 -#: server_privileges.php:1612 +#: server_privileges.php:1614 server_privileges.php:1615 +#: server_privileges.php:1616 msgid "Drop the databases that have the same names as the users." msgstr "Drop the databases that have the same names as the users." -#: server_privileges.php:1628 +#: server_privileges.php:1632 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4626,91 +4688,91 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: server_privileges.php:1676 +#: server_privileges.php:1680 msgid "The selected user was not found in the privilege table." msgstr "" -#: server_privileges.php:1716 +#: server_privileges.php:1720 msgid "Column-specific privileges" msgstr " केवल कोलम के प्रिविलेज" -#: server_privileges.php:1917 +#: server_privileges.php:1921 msgid "Add privileges on the following database" msgstr "इन डाटाबेसों के लिये विशेषाधिकार जोडें" -#: server_privileges.php:1935 +#: server_privileges.php:1939 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:1938 +#: server_privileges.php:1942 msgid "Add privileges on the following table" msgstr "इन टेबल के लिये विशेषाधिकार जोडें" -#: server_privileges.php:1995 +#: server_privileges.php:1999 msgid "Change Login Information / Copy User" msgstr "" -#: server_privileges.php:1998 +#: server_privileges.php:2002 msgid "Create a new user with the same privileges and ..." msgstr "" -#: server_privileges.php:2000 +#: server_privileges.php:2004 msgid "... keep the old one." msgstr "" -#: server_privileges.php:2001 +#: server_privileges.php:2005 msgid " ... delete the old one from the user tables." msgstr "" -#: server_privileges.php:2002 +#: server_privileges.php:2006 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: server_privileges.php:2003 +#: server_privileges.php:2007 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: server_privileges.php:2025 +#: server_privileges.php:2029 msgid "Database for user" msgstr "" -#: server_privileges.php:2029 +#: server_privileges.php:2033 #, fuzzy #| msgid "No" msgctxt "Create none database for user" msgid "None" msgstr "नहीं" -#: server_privileges.php:2030 +#: server_privileges.php:2034 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2031 +#: server_privileges.php:2035 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2034 +#: server_privileges.php:2038 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: server_privileges.php:2057 +#: server_privileges.php:2061 #, php-format msgid "Users having access to "%s"" msgstr "" -#: server_privileges.php:2165 +#: server_privileges.php:2169 msgid "global" msgstr "" -#: server_privileges.php:2167 +#: server_privileges.php:2171 msgid "database-specific" msgstr "" -#: server_privileges.php:2169 +#: server_privileges.php:2173 msgid "wildcard" msgstr "" @@ -4729,53 +4791,53 @@ msgstr "thread %s को मारने में phpMyAdmin असफल ह msgid "ID" msgstr "" -#: server_replication.php:50 +#: server_replication.php:49 msgid "Unknown error" msgstr "" -#: server_replication.php:57 +#: server_replication.php:56 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:64 +#: server_replication.php:63 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:70 +#: server_replication.php:69 msgid "Unable to change master" msgstr "" -#: server_replication.php:73 +#: server_replication.php:72 #, php-format msgid "Master server changed succesfully to %s" msgstr "" -#: server_replication.php:181 +#: server_replication.php:180 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:183 server_status.php:391 +#: server_replication.php:182 server_status.php:391 msgid "Show master status" msgstr "" -#: server_replication.php:186 +#: server_replication.php:185 msgid "Show connected slaves" msgstr "" -#: server_replication.php:209 +#: server_replication.php:208 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:216 +#: server_replication.php:215 msgid "Master configuration" msgstr "" -#: server_replication.php:217 +#: server_replication.php:216 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -4784,107 +4846,107 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:220 +#: server_replication.php:219 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:221 +#: server_replication.php:220 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:224 +#: server_replication.php:223 msgid "Please select databases:" msgstr "" -#: server_replication.php:227 +#: server_replication.php:226 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: server_replication.php:229 +#: server_replication.php:228 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: server_replication.php:292 +#: server_replication.php:291 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:295 +#: server_replication.php:294 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:304 +#: server_replication.php:303 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:307 +#: server_replication.php:306 msgid "See slave status table" msgstr "" -#: server_replication.php:310 +#: server_replication.php:309 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:321 +#: server_replication.php:320 msgid "Control slave:" msgstr "" -#: server_replication.php:324 +#: server_replication.php:323 msgid "Full start" msgstr "" -#: server_replication.php:324 +#: server_replication.php:323 msgid "Full stop" msgstr "" -#: server_replication.php:325 +#: server_replication.php:324 msgid "Reset slave" msgstr "" -#: server_replication.php:326 +#: server_replication.php:325 #, php-format msgid "SQL Thread %s only" msgstr "" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 msgid "Start" msgstr "" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 msgid "Stop" msgstr "" -#: server_replication.php:327 +#: server_replication.php:326 #, php-format msgid "IO Thread %s only" msgstr "" -#: server_replication.php:331 +#: server_replication.php:330 msgid "Error management:" msgstr "" -#: server_replication.php:333 +#: server_replication.php:332 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:335 +#: server_replication.php:334 msgid "Skip current error" msgstr "" -#: server_replication.php:336 +#: server_replication.php:335 msgid "Skip next" msgstr "" -#: server_replication.php:339 +#: server_replication.php:338 msgid "errors." msgstr "" -#: server_replication.php:354 +#: server_replication.php:353 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -5588,110 +5650,110 @@ msgstr "" msgid "Replication status" msgstr "" -#: server_synchronize.php:93 +#: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:96 +#: server_synchronize.php:95 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:121 server_synchronize.php:124 tbl_create.php:77 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:264 +#: server_synchronize.php:263 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:271 +#: server_synchronize.php:270 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:399 server_synchronize.php:838 +#: server_synchronize.php:398 server_synchronize.php:837 msgid "not present" msgstr "" -#: server_synchronize.php:423 server_synchronize.php:866 +#: server_synchronize.php:422 server_synchronize.php:865 msgid "Structure Difference" msgstr "" -#: server_synchronize.php:424 server_synchronize.php:867 +#: server_synchronize.php:423 server_synchronize.php:866 msgid "Data Difference" msgstr "" -#: server_synchronize.php:429 server_synchronize.php:872 +#: server_synchronize.php:428 server_synchronize.php:871 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:430 server_synchronize.php:873 +#: server_synchronize.php:429 server_synchronize.php:872 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:431 server_synchronize.php:874 +#: server_synchronize.php:430 server_synchronize.php:873 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:432 server_synchronize.php:875 +#: server_synchronize.php:431 server_synchronize.php:874 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:433 server_synchronize.php:876 +#: server_synchronize.php:432 server_synchronize.php:875 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:434 server_synchronize.php:877 +#: server_synchronize.php:433 server_synchronize.php:876 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:435 server_synchronize.php:878 +#: server_synchronize.php:434 server_synchronize.php:877 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:445 server_synchronize.php:889 +#: server_synchronize.php:444 server_synchronize.php:888 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:448 server_synchronize.php:893 +#: server_synchronize.php:447 server_synchronize.php:892 msgid "Apply Selected Changes" msgstr "चयनित परिवर्तन लागू करें" -#: server_synchronize.php:450 server_synchronize.php:895 +#: server_synchronize.php:449 server_synchronize.php:894 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:463 +#: server_synchronize.php:462 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:941 +#: server_synchronize.php:940 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:1002 +#: server_synchronize.php:1001 msgid "The following queries have been executed:" msgstr "" -#: server_synchronize.php:1121 +#: server_synchronize.php:1120 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1122 +#: server_synchronize.php:1121 msgid "Current connection" msgstr "" -#: server_synchronize.php:1151 +#: server_synchronize.php:1150 #, php-format msgid "Configuration: %s" msgstr "" -#: server_synchronize.php:1166 +#: server_synchronize.php:1165 msgid "Socket" msgstr "" -#: server_synchronize.php:1212 +#: server_synchronize.php:1211 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -6236,8 +6298,8 @@ msgstr "" #: setup/lib/messages.inc.php:128 msgid "" "Configure phpMyAdmin database to gain access to additional features, see " -"[a@../Documentation.html#linked-tables]linked-tables infrastructure[/a] in " -"documentation" +"[a@../Documentation.html#linked-tables]phpMyAdmin configuration storage[/a] " +"in documentation" msgstr "" #: setup/lib/messages.inc.php:129 setup/lib/messages.inc.php:290 @@ -7272,110 +7334,110 @@ msgstr "" msgid "ZIP" msgstr "" -#: sql.php:495 tbl_replace.php:385 +#: sql.php:494 tbl_replace.php:384 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: sql.php:512 +#: sql.php:511 msgid "Showing as PHP code" msgstr "" -#: sql.php:515 tbl_replace.php:359 +#: sql.php:514 tbl_replace.php:358 msgid "Showing SQL query" msgstr "" -#: sql.php:517 +#: sql.php:516 msgid "Validated SQL" msgstr "" -#: sql.php:638 +#: sql.php:631 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:670 +#: sql.php:663 msgid "Label" msgstr "लेबल" -#: tbl_addfield.php:188 tbl_alter.php:102 tbl_indexes.php:97 +#: tbl_addfield.php:185 tbl_alter.php:100 tbl_indexes.php:97 #, php-format msgid "Table %1$s has been altered successfully" msgstr "" -#: tbl_change.php:250 tbl_select.php:26 tbl_select.php:27 tbl_select.php:30 -#: tbl_select.php:33 +#: tbl_change.php:245 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_select.php:32 msgid "Browse foreign values" msgstr "विदेशी मूल्य ब्राउस करें " -#: tbl_change.php:280 tbl_change.php:318 +#: tbl_change.php:275 tbl_change.php:313 msgid "Function" msgstr "" -#: tbl_change.php:300 tbl_indexes.php:199 tbl_indexes.php:224 +#: tbl_change.php:295 tbl_indexes.php:198 tbl_indexes.php:223 msgid "Ignore" msgstr "" -#: tbl_change.php:725 +#: tbl_change.php:720 msgid " Because of its length,
                            this column might not be editable " msgstr "" -#: tbl_change.php:884 +#: tbl_change.php:835 msgid "Remove BLOB Repository Reference" msgstr "BLOB रिपोजिटरी संदर्भ हटायें" -#: tbl_change.php:890 +#: tbl_change.php:841 msgid "Binary - do not edit" msgstr "बइनरी - एडिट मत करिये" -#: tbl_change.php:983 +#: tbl_change.php:889 msgid "Upload to BLOB repository" msgstr "BLOB भण्डार में अपलोड करें" -#: tbl_change.php:1128 +#: tbl_change.php:1026 msgid "Insert as new row" msgstr "इसको नया रौ में जोडे " -#: tbl_change.php:1129 +#: tbl_change.php:1027 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:1130 +#: tbl_change.php:1028 msgid "Show insert query" msgstr "" -#: tbl_change.php:1145 +#: tbl_change.php:1043 msgid "Go back to previous page" msgstr "पिछले पृष्ट पर वापस जाएँ" -#: tbl_change.php:1146 +#: tbl_change.php:1044 msgid "Insert another new row" msgstr "एक और नई रो सम्मिलित करें" -#: tbl_change.php:1150 +#: tbl_change.php:1048 msgid "Go back to this page" msgstr "इस पृष्ठ पर वापस जाएँ" -#: tbl_change.php:1158 +#: tbl_change.php:1056 msgid "Edit next row" msgstr "अगली रो को संपादित करें" -#: tbl_change.php:1169 +#: tbl_change.php:1067 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: tbl_change.php:1207 +#: tbl_change.php:1105 #, php-format msgid "Restart insertion with %s rows" msgstr "" -#: tbl_create.php:57 +#: tbl_create.php:55 #, php-format msgid "Table %s already exists!" msgstr "" -#: tbl_create.php:244 +#: tbl_create.php:241 #, php-format msgid "Table %1$s has been created." msgstr "" @@ -7396,198 +7458,198 @@ msgstr "इन्डेक्स को PRIMARY नाम मे नहीं msgid "No index parts defined!" msgstr "" -#: tbl_indexes.php:159 +#: tbl_indexes.php:158 msgid "Create a new index" msgstr "एक नया इन्डेक्स बनाऐं" -#: tbl_indexes.php:161 +#: tbl_indexes.php:160 msgid "Modify an index" msgstr "" -#: tbl_indexes.php:167 +#: tbl_indexes.php:166 msgid "Index name:" msgstr "" -#: tbl_indexes.php:173 +#: tbl_indexes.php:172 msgid "Index type:" msgstr "" -#: tbl_indexes.php:183 +#: tbl_indexes.php:182 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" -#: tbl_indexes.php:250 +#: tbl_indexes.php:249 #, php-format msgid "Add to index  %s column(s)" msgstr "सूचकांक में जोडें  %s column(s)" -#: tbl_indexes.php:255 tbl_structure.php:588 tbl_structure.php:599 +#: tbl_indexes.php:254 tbl_structure.php:586 tbl_structure.php:597 msgid "Column count has to be larger than zero." msgstr "" -#: tbl_move_copy.php:45 +#: tbl_move_copy.php:44 msgid "Can't move table to same one!" msgstr "" -#: tbl_move_copy.php:47 +#: tbl_move_copy.php:46 msgid "Can't copy table to same one!" msgstr "" -#: tbl_move_copy.php:55 +#: tbl_move_copy.php:54 #, php-format msgid "Table %s has been moved to %s." msgstr " %s टेबल को %s में मूव कर दिया." -#: tbl_move_copy.php:57 +#: tbl_move_copy.php:56 #, php-format msgid "Table %s has been copied to %s." msgstr " %s टेबल को %s में कापी कर दिया." -#: tbl_move_copy.php:81 +#: tbl_move_copy.php:80 msgid "The table name is empty!" msgstr " टेबल का नाम खाली है!" -#: tbl_operations.php:248 +#: tbl_operations.php:246 msgid "Alter table order by" msgstr "टेबल क्रमांक को बदलिये " -#: tbl_operations.php:257 +#: tbl_operations.php:255 msgid "(singly)" msgstr "" -#: tbl_operations.php:277 +#: tbl_operations.php:275 msgid "Move table to (database.table):" msgstr " टेबल को (database.table) में मूव करें:" -#: tbl_operations.php:335 +#: tbl_operations.php:333 msgid "Table options" msgstr "" -#: tbl_operations.php:339 +#: tbl_operations.php:337 msgid "Rename table to" msgstr "" -#: tbl_operations.php:510 +#: tbl_operations.php:508 msgid "Copy table to (database.table):" msgstr " (database.table) में टेबल को कापी करें:" -#: tbl_operations.php:557 +#: tbl_operations.php:555 msgid "Switch to copied table" msgstr "" -#: tbl_operations.php:569 +#: tbl_operations.php:567 msgid "Table maintenance" msgstr " टेबल रख-रखाव" -#: tbl_operations.php:590 +#: tbl_operations.php:588 msgid "Defragment table" msgstr "" -#: tbl_operations.php:629 +#: tbl_operations.php:627 #, php-format msgid "Table %s has been flushed" msgstr " टेबल %s को flush किया" -#: tbl_operations.php:635 +#: tbl_operations.php:633 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr " टेबल को Flush करें (\"FLUSH\")" -#: tbl_operations.php:650 +#: tbl_operations.php:648 msgid "Partition maintenance" msgstr "" -#: tbl_operations.php:658 +#: tbl_operations.php:656 #, php-format msgid "Partition %s" msgstr "" -#: tbl_operations.php:661 +#: tbl_operations.php:659 msgid "Analyze" msgstr "विश्लेषण" -#: tbl_operations.php:662 +#: tbl_operations.php:660 msgid "Check" msgstr "" -#: tbl_operations.php:663 +#: tbl_operations.php:661 msgid "Optimize" msgstr "" -#: tbl_operations.php:664 +#: tbl_operations.php:662 msgid "Rebuild" msgstr "" -#: tbl_operations.php:665 +#: tbl_operations.php:663 msgid "Repair" msgstr "" -#: tbl_operations.php:677 +#: tbl_operations.php:675 msgid "Remove partitioning" msgstr "" -#: tbl_operations.php:703 +#: tbl_operations.php:701 msgid "Check referential integrity:" msgstr "" -#: tbl_printview.php:73 +#: tbl_printview.php:72 msgid "Show tables" msgstr " टेबल दिखाओ" -#: tbl_printview.php:308 tbl_structure.php:655 +#: tbl_printview.php:307 tbl_structure.php:653 msgid "Space usage" msgstr "" -#: tbl_printview.php:312 tbl_structure.php:659 +#: tbl_printview.php:311 tbl_structure.php:657 msgid "Usage" msgstr "उपयोग" -#: tbl_printview.php:339 tbl_structure.php:686 +#: tbl_printview.php:338 tbl_structure.php:684 msgid "Effective" msgstr " वास्तविक" -#: tbl_printview.php:364 tbl_structure.php:724 +#: tbl_printview.php:363 tbl_structure.php:722 msgid "Row Statistics" msgstr "" -#: tbl_printview.php:367 tbl_structure.php:727 +#: tbl_printview.php:366 tbl_structure.php:725 msgid "Statements" msgstr "" -#: tbl_printview.php:378 tbl_structure.php:739 +#: tbl_printview.php:377 tbl_structure.php:737 msgid "static" msgstr "" -#: tbl_printview.php:380 tbl_structure.php:741 +#: tbl_printview.php:379 tbl_structure.php:739 msgid "dynamic" msgstr "" -#: tbl_printview.php:402 tbl_structure.php:784 +#: tbl_printview.php:401 tbl_structure.php:782 msgid "Row length" msgstr " रौ की लंबाई" -#: tbl_printview.php:412 tbl_structure.php:792 +#: tbl_printview.php:411 tbl_structure.php:790 msgid " Row size " msgstr "" -#: tbl_relation.php:278 +#: tbl_relation.php:276 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" -#: tbl_relation.php:404 +#: tbl_relation.php:402 msgid "Internal relation" msgstr "" -#: tbl_relation.php:406 +#: tbl_relation.php:404 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: tbl_relation.php:412 +#: tbl_relation.php:410 msgid "Foreign key constraint" msgstr "" @@ -7595,227 +7657,227 @@ msgstr "" msgid "No rows selected" msgstr "" -#: tbl_select.php:130 +#: tbl_select.php:129 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "" -#: tbl_select.php:136 +#: tbl_select.php:135 msgid "Operator" msgstr "" -#: tbl_select.php:267 +#: tbl_select.php:266 msgid "Select columns (at least one):" msgstr "" -#: tbl_select.php:285 +#: tbl_select.php:284 msgid "Add search conditions (body of the \"where\" clause):" msgstr "खोज शर्तें जोडें (\"where\" खंड के शरीर में)" -#: tbl_select.php:292 +#: tbl_select.php:291 msgid "Number of rows per page" msgstr "प्रति पृष्ट कितने रौ" -#: tbl_select.php:298 +#: tbl_select.php:297 msgid "Display order:" msgstr "क्रम से दिखाओ:" -#: tbl_structure.php:160 +#: tbl_structure.php:159 msgid "Browse distinct values" msgstr "अलग मूल्य ब्राउस करें " -#: tbl_structure.php:360 +#: tbl_structure.php:358 #, fuzzy #| msgid "No" msgctxt "None for default" msgid "None" msgstr "नहीं" -#: tbl_structure.php:373 +#: tbl_structure.php:371 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Column %s has been dropped" msgstr " टेबल %s को रद्द किया गया है." -#: tbl_structure.php:384 +#: tbl_structure.php:382 #, php-format msgid "A primary key has been added on %s" msgstr " %s पर एक प्राईमरी की जड़ी गयी है" -#: tbl_structure.php:399 tbl_structure.php:413 tbl_structure.php:427 +#: tbl_structure.php:397 tbl_structure.php:411 tbl_structure.php:425 #, php-format msgid "An index has been added on %s" msgstr "%s पर एक सूचकांक जोड़ा गया है" -#: tbl_structure.php:505 tbl_structure.php:507 +#: tbl_structure.php:503 tbl_structure.php:505 msgid "Relation view" msgstr "" -#: tbl_structure.php:514 tbl_structure.php:516 +#: tbl_structure.php:512 tbl_structure.php:514 msgid "Propose table structure" msgstr "" -#: tbl_structure.php:539 +#: tbl_structure.php:537 #, fuzzy #| msgid "Add %s field(s)" msgid "Add column" msgstr "%s क्षेत्र जोडें" -#: tbl_structure.php:553 +#: tbl_structure.php:551 msgid "At End of Table" msgstr "टेबल के आखिर में" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At Beginning of Table" msgstr "टेबल के शुरू में" -#: tbl_structure.php:555 +#: tbl_structure.php:553 #, php-format msgid "After %s" msgstr "%s के बाद" -#: tbl_structure.php:593 +#: tbl_structure.php:591 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "  %s  कोलम पर इन्डेक्स बनाऐं " -#: tbl_structure.php:755 +#: tbl_structure.php:753 msgid "partitioned" msgstr "" -#: tbl_tracking.php:113 +#: tbl_tracking.php:109 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:186 +#: tbl_tracking.php:182 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "" -#: tbl_tracking.php:194 +#: tbl_tracking.php:190 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "" -#: tbl_tracking.php:202 +#: tbl_tracking.php:198 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "" -#: tbl_tracking.php:212 +#: tbl_tracking.php:208 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:219 +#: tbl_tracking.php:215 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:220 +#: tbl_tracking.php:216 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:229 +#: tbl_tracking.php:225 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:250 tbl_tracking.php:378 +#: tbl_tracking.php:245 tbl_tracking.php:373 msgid "Close" msgstr "" -#: tbl_tracking.php:261 +#: tbl_tracking.php:256 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:380 +#: tbl_tracking.php:375 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:396 tbl_tracking.php:503 +#: tbl_tracking.php:391 tbl_tracking.php:498 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "" -#: tbl_tracking.php:409 tbl_tracking.php:460 +#: tbl_tracking.php:404 tbl_tracking.php:455 msgid "Date" msgstr "" -#: tbl_tracking.php:410 tbl_tracking.php:461 +#: tbl_tracking.php:405 tbl_tracking.php:456 msgid "Username" msgstr "" -#: tbl_tracking.php:411 +#: tbl_tracking.php:406 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:462 +#: tbl_tracking.php:457 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:506 +#: tbl_tracking.php:501 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:507 +#: tbl_tracking.php:502 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:520 +#: tbl_tracking.php:515 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:560 +#: tbl_tracking.php:555 msgid "Show versions" msgstr "" -#: tbl_tracking.php:592 +#: tbl_tracking.php:587 msgid "Version" msgstr "" -#: tbl_tracking.php:639 +#: tbl_tracking.php:634 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "" -#: tbl_tracking.php:641 +#: tbl_tracking.php:636 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:652 +#: tbl_tracking.php:647 #, php-format msgid "Activate tracking for %s.%s" msgstr "" -#: tbl_tracking.php:654 +#: tbl_tracking.php:649 msgid "Activate now" msgstr "" -#: tbl_tracking.php:667 +#: tbl_tracking.php:662 #, php-format msgid "Create version %s of %s.%s" msgstr "" -#: tbl_tracking.php:671 +#: tbl_tracking.php:666 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:679 +#: tbl_tracking.php:674 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:687 +#: tbl_tracking.php:682 msgid "Create version" msgstr "" @@ -7862,10 +7924,34 @@ msgstr "प्रोफाइल अपडेट कर दिया ।" msgid "VIEW name" msgstr "" -#: view_operations.php:92 +#: view_operations.php:91 msgid "Rename view to" msgstr "" +#~ msgid "BLOB Repository" +#~ msgstr "BLOB भंडार गृह" + +#~ msgctxt "BLOB repository" +#~ msgid "Enabled" +#~ msgstr "सक्षम" + +#~ msgid "Disable" +#~ msgstr "असक्षम" + +#~ msgid "Damaged" +#~ msgstr "क्षतिग्रस्त" + +#~ msgctxt "BLOB repository" +#~ msgid "Repair" +#~ msgstr "मरम्मत" + +#~ msgctxt "BLOB repository" +#~ msgid "Disabled" +#~ msgstr "असक्षम" + +#~ msgid "Enable" +#~ msgstr "सक्षम" + #, fuzzy #~| msgid "Add new field" #~ msgid "Add field" diff --git a/po/hr.po b/po/hr.po index 65ec3e5e1..6fbec3868 100644 --- a/po/hr.po +++ b/po/hr.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-21 13:53+0200\n" +"POT-Creation-Date: 2010-07-26 17:18+0200\n" "PO-Revision-Date: 2010-07-21 14:54+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: croatian \n" @@ -11,23 +11,23 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" -"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"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:37 browse_foreigners.php:58 -#: libraries/display_tbl.lib.php:416 server_privileges.php:1506 +#: browse_foreigners.php:36 browse_foreigners.php:57 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1510 msgid "Show all" msgstr "Prikaži sve" -#: browse_foreigners.php:81 libraries/common.lib.php:2313 -#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:393 -#: libraries/export/pdf.php:146 pdf_schema.php:282 pdf_schema.php:1122 -#: pdf_schema.php:1138 +#: browse_foreigners.php:80 libraries/common.lib.php:2318 +#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:392 +#: libraries/export/pdf.php:146 pdf_schema.php:281 pdf_schema.php:1121 +#: pdf_schema.php:1137 msgid "Page number:" msgstr "Broj stranice:" -#: browse_foreigners.php:131 +#: browse_foreigners.php:130 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -37,139 +37,153 @@ msgstr "" "nadređeni prozor ili su postavke sigurnosti vašeg preglednika konfigurirane " "za blokiranje ažuriranja preko više prozora." -#: browse_foreigners.php:149 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2829 -#: libraries/common.lib.php:2836 libraries/db_links.inc.php:74 -#: libraries/tbl_links.inc.php:62 +#: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 +#: db_structure.php:89 db_structure.php:91 db_structure.php:102 +#: db_structure.php:104 libraries/common.lib.php:2834 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Traži" -#: browse_foreigners.php:152 db_operations.php:384 db_operations.php:428 -#: db_operations.php:498 db_operations.php:608 db_search.php:344 -#: db_structure.php:566 js/messages.php:48 libraries/Config.class.php:1043 -#: libraries/Theme_Manager.class.php:310 +#: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 +#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 +#: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 -#: libraries/common.lib.php:1340 libraries/common.lib.php:2289 +#: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 -#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:275 -#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:531 -#: libraries/display_tbl.lib.php:613 libraries/replication_gui.lib.php:75 +#: libraries/display_export.lib.php:269 libraries/display_import.lib.php:275 +#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 +#: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 #: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:781 -#: main.php:127 navigation.php:231 pdf_pages.php:291 pdf_pages.php:327 -#: pdf_pages.php:529 pmd_pdf.php:115 server_binlog.php:128 -#: server_privileges.php:664 server_privileges.php:1616 -#: server_privileges.php:1963 server_privileges.php:2010 -#: server_privileges.php:2049 server_replication.php:234 -#: server_replication.php:317 server_replication.php:340 -#: server_synchronize.php:1208 tbl_change.php:328 tbl_change.php:1172 -#: tbl_change.php:1209 tbl_indexes.php:253 tbl_operations.php:264 -#: tbl_operations.php:301 tbl_operations.php:498 tbl_operations.php:560 -#: tbl_operations.php:680 tbl_select.php:324 tbl_structure.php:561 -#: tbl_structure.php:596 tbl_tracking.php:394 tbl_tracking.php:511 -#: view_create.php:181 view_operations.php:100 +#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 +#: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 +#: server_privileges.php:663 server_privileges.php:1620 +#: server_privileges.php:1967 server_privileges.php:2014 +#: server_privileges.php:2053 server_replication.php:233 +#: server_replication.php:316 server_replication.php:339 +#: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 +#: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 +#: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 +#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "Kreni" -#: browse_foreigners.php:167 browse_foreigners.php:171 -#: libraries/Index.class.php:441 tbl_tracking.php:319 +#: browse_foreigners.php:166 browse_foreigners.php:170 +#: libraries/Index.class.php:441 tbl_tracking.php:314 msgid "Keyname" msgstr "Naziv ključa" -#: browse_foreigners.php:168 browse_foreigners.php:170 -#: server_collations.php:54 server_collations.php:66 server_engines.php:58 +#: browse_foreigners.php:167 browse_foreigners.php:169 +#: server_collations.php:54 server_collations.php:66 server_engines.php:57 #: server_status.php:738 msgid "Description" msgstr "Opis" -#: browse_foreigners.php:246 browse_foreigners.php:255 -#: browse_foreigners.php:267 browse_foreigners.php:275 +#: browse_foreigners.php:245 browse_foreigners.php:254 +#: browse_foreigners.php:266 browse_foreigners.php:274 msgid "Use this value" msgstr "Upotrijebi ovu vrijednost" -#: db_create.php:45 +#: bs_disp_as_mime_type.php:29 bs_play_media.php:35 +msgid "No blob streaming server configured!" +msgstr "" + +#: bs_disp_as_mime_type.php:35 +#, fuzzy +#| msgid "Failed to write file to disk." +msgid "Failed to fetch headers" +msgstr "Zapisivanje datoteke na disk nije uspjelo." + +#: bs_disp_as_mime_type.php:41 +msgid "Failed to open remote URL" +msgstr "" + +#: db_create.php:44 #, php-format msgid "Database %1$s has been created." msgstr "Baza podataka %1$s uspješno je izrađena." -#: db_datadict.php:48 db_operations.php:377 +#: db_datadict.php:48 db_operations.php:313 msgid "Database comment: " msgstr "Komentar baze podataka: " -#: db_datadict.php:164 libraries/tbl_properties.inc.php:723 -#: pdf_schema.php:1235 tbl_operations.php:346 tbl_printview.php:128 +#: db_datadict.php:164 libraries/tbl_properties.inc.php:722 +#: pdf_schema.php:1234 tbl_operations.php:344 tbl_printview.php:127 msgid "Table comments" msgstr "Komentari tablice" -#: db_datadict.php:173 db_qbe.php:173 libraries/Index.class.php:445 +#: db_datadict.php:173 db_qbe.php:170 libraries/Index.class.php:445 #: libraries/export/htmlword.php:243 libraries/export/latex.php:364 #: libraries/export/odt.php:293 libraries/export/texytext.php:233 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:274 -#: pdf_schema.php:1261 pdf_schema.php:1282 tbl_change.php:306 -#: tbl_indexes.php:188 tbl_printview.php:140 tbl_relation.php:401 -#: tbl_select.php:133 tbl_structure.php:176 tbl_tracking.php:272 -#: tbl_tracking.php:323 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 +#: pdf_schema.php:1260 pdf_schema.php:1281 tbl_change.php:301 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:132 tbl_structure.php:175 tbl_tracking.php:267 +#: tbl_tracking.php:318 #, fuzzy #| msgid "Column names" msgid "Column" msgstr "Nazivi stupaca" -#: db_datadict.php:174 db_printview.php:105 libraries/Index.class.php:442 +#: db_datadict.php:174 db_printview.php:104 libraries/Index.class.php:442 #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 #: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:244 #: libraries/export/latex.php:364 libraries/export/odt.php:296 #: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:99 -#: pdf_schema.php:1262 pdf_schema.php:1283 server_privileges.php:2062 -#: tbl_change.php:285 tbl_change.php:312 tbl_printview.php:141 -#: tbl_printview.php:311 tbl_select.php:134 tbl_structure.php:177 -#: tbl_structure.php:658 tbl_tracking.php:273 tbl_tracking.php:320 +#: pdf_schema.php:1261 pdf_schema.php:1282 server_privileges.php:2066 +#: tbl_change.php:280 tbl_change.php:307 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:133 tbl_structure.php:176 +#: tbl_structure.php:656 tbl_tracking.php:268 tbl_tracking.php:315 msgid "Type" msgstr "Vrsta" #: db_datadict.php:176 libraries/Index.class.php:448 #: libraries/export/htmlword.php:245 libraries/export/latex.php:364 #: libraries/export/odt.php:299 libraries/export/texytext.php:235 -#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1264 -#: pdf_schema.php:1285 tbl_change.php:321 tbl_printview.php:143 -#: tbl_structure.php:180 tbl_tracking.php:275 tbl_tracking.php:326 +#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1263 +#: pdf_schema.php:1284 tbl_change.php:316 tbl_printview.php:142 +#: tbl_structure.php:179 tbl_tracking.php:270 tbl_tracking.php:321 msgid "Null" msgstr "Null" -#: db_datadict.php:177 db_structure.php:500 libraries/export/htmlword.php:246 +#: db_datadict.php:177 db_structure.php:486 libraries/export/htmlword.php:246 #: libraries/export/latex.php:364 libraries/export/odt.php:302 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:105 -#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 -#: tbl_structure.php:181 tbl_tracking.php:276 +#: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:143 +#: tbl_structure.php:180 tbl_tracking.php:271 msgid "Default" msgstr "Zadano" #: db_datadict.php:181 libraries/export/htmlword.php:248 #: libraries/export/latex.php:366 libraries/export/odt.php:306 -#: libraries/export/texytext.php:238 pdf_schema.php:1267 pdf_schema.php:1288 -#: tbl_printview.php:148 +#: libraries/export/texytext.php:238 pdf_schema.php:1266 pdf_schema.php:1287 +#: tbl_printview.php:147 msgid "Links to" msgstr "Povezano s" -#: db_datadict.php:183 db_printview.php:111 libraries/export/htmlword.php:251 +#: db_datadict.php:183 db_printview.php:110 libraries/export/htmlword.php:251 #: libraries/export/latex.php:49 libraries/export/latex.php:369 #: libraries/export/odt.php:37 libraries/export/odt.php:311 #: libraries/export/sql.php:29 libraries/export/texytext.php:241 -#: libraries/tbl_properties.inc.php:129 pdf_schema.php:1278 -#: pdf_schema.php:1289 tbl_printview.php:150 +#: libraries/tbl_properties.inc.php:128 pdf_schema.php:1277 +#: pdf_schema.php:1288 tbl_printview.php:149 msgid "Comments" msgstr "Komentari" #: db_datadict.php:266 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/export/htmlword.php:321 #: libraries/export/latex.php:434 libraries/export/odt.php:367 -#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:262 -#: pdf_schema.php:1343 server_privileges.php:1560 server_privileges.php:1571 -#: server_privileges.php:1881 server_privileges.php:1886 -#: server_privileges.php:2179 sql.php:131 sql.php:193 tbl_printview.php:227 -#: tbl_structure.php:349 tbl_tracking.php:336 tbl_tracking.php:341 +#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:261 +#: pdf_schema.php:1342 server_privileges.php:1564 server_privileges.php:1575 +#: server_privileges.php:1885 server_privileges.php:1890 +#: server_privileges.php:2183 sql.php:130 sql.php:192 tbl_printview.php:226 +#: tbl_structure.php:347 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "Ne" @@ -180,17 +194,17 @@ msgstr "Ne" #: libraries/mult_submits.inc.php:49 libraries/mult_submits.inc.php:54 #: libraries/mult_submits.inc.php:59 libraries/mult_submits.inc.php:91 #: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:105 -#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:261 -#: libraries/mult_submits.inc.php:272 pdf_schema.php:1343 -#: server_databases.php:63 server_privileges.php:1557 -#: server_privileges.php:1571 server_privileges.php:1881 -#: server_privileges.php:1884 server_privileges.php:2179 sql.php:192 -#: tbl_printview.php:227 tbl_structure.php:39 tbl_structure.php:349 -#: tbl_tracking.php:334 tbl_tracking.php:339 +#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:260 +#: libraries/mult_submits.inc.php:271 pdf_schema.php:1342 +#: server_databases.php:61 server_privileges.php:1561 +#: server_privileges.php:1575 server_privileges.php:1885 +#: server_privileges.php:1888 server_privileges.php:2183 sql.php:191 +#: tbl_printview.php:226 tbl_structure.php:38 tbl_structure.php:347 +#: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" msgstr "Da" -#: db_datadict.php:321 db_printview.php:265 tbl_printview.php:496 +#: db_datadict.php:321 db_printview.php:264 tbl_printview.php:495 msgid "Print" msgstr "Ispiši" @@ -198,196 +212,154 @@ msgstr "Ispiši" msgid "View dump (schema) of database" msgstr "Prikaži ispis (shemu) baze podataka" -#: db_export.php:32 db_printview.php:95 db_qbe.php:101 db_structure.php:50 -#: db_tracking.php:34 export.php:352 navigation.php:326 +#: db_export.php:32 db_printview.php:94 db_qbe.php:98 db_structure.php:49 +#: db_tracking.php:30 export.php:350 navigation.php:325 msgid "No tables found in database." msgstr "U bazi podataka nisu pronađene tablice." -#: db_export.php:42 db_search.php:326 server_export.php:26 +#: db_export.php:42 db_search.php:326 server_export.php:24 msgid "Select All" msgstr "Odaberi sve" -#: db_export.php:44 db_search.php:329 server_export.php:28 +#: db_export.php:44 db_search.php:329 server_export.php:26 msgid "Unselect All" msgstr "Ukloni sav odabir" -#: db_operations.php:37 tbl_create.php:49 +#: db_operations.php:33 tbl_create.php:47 msgid "The database name is empty!" msgstr "Naziv baze podataka je prazan!" -#: db_operations.php:235 +#: db_operations.php:231 #, php-format msgid "Database %s has been renamed to %s" msgstr "Baza podataka %s preimenovana je u %s" -#: db_operations.php:239 +#: db_operations.php:235 #, php-format msgid "Database %s has been copied to %s" msgstr "Baza podataka %s kopirana je u %s" -#: db_operations.php:411 +#: db_operations.php:347 msgid "Rename database to" msgstr "Preimenuj bazu podataka u" -#: db_operations.php:416 server_processlist.php:56 +#: db_operations.php:352 server_processlist.php:56 msgid "Command" msgstr "Naredba" -#: db_operations.php:428 tbl_change.php:1141 +#: db_operations.php:364 tbl_change.php:1039 msgid "and then" msgstr "i potom" -#: db_operations.php:454 +#: db_operations.php:390 msgid "Copy database to" msgstr "Kopiraj bazu podataka u" -#: db_operations.php:461 tbl_operations.php:527 tbl_tracking.php:387 +#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Samo strukturu" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:389 +#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Strukturu i podatke" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:388 +#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Samo podatke" -#: db_operations.php:471 +#: db_operations.php:407 msgid "CREATE DATABASE before copying" msgstr "Prije kopiranja izradi bazu podataka (CREATE DATABASE)" -#: db_operations.php:474 libraries/export/sql.php:51 +#: db_operations.php:410 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 -#: libraries/export/sql.php:81 tbl_operations.php:535 +#: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "Dodaj %s" -#: db_operations.php:478 libraries/export/sql.php:77 tbl_operations.php:298 -#: tbl_operations.php:537 +#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Dodaj vrijednost AUTO_INCREMENT" -#: db_operations.php:482 tbl_operations.php:544 +#: db_operations.php:418 tbl_operations.php:542 msgid "Add constraints" msgstr "Dodaj prisile" -#: db_operations.php:495 +#: db_operations.php:431 msgid "Switch to copied database" msgstr "Prebaci se na kopiranu bazu podataka" -#: db_operations.php:536 -msgid "BLOB Repository" -msgstr "" - -#: db_operations.php:539 db_tracking.php:75 libraries/common.lib.php:1357 -#: libraries/server_links.inc.php:48 server_processlist.php:58 -#: tbl_tracking.php:595 test/theme.php:100 -msgid "Status" -msgstr "Stanje" - -#: db_operations.php:547 -#, fuzzy -#| msgid "Enabled" -msgctxt "BLOB repository" -msgid "Enabled" -msgstr "Omogućeno" - -#: db_operations.php:551 -#, fuzzy -msgid "Disable" -msgstr "Onemogućeno" - -#: db_operations.php:561 -msgid "Damaged" -msgstr "" - -#: db_operations.php:565 -#, fuzzy -#| msgid "Repair" -msgctxt "BLOB repository" -msgid "Repair" -msgstr "Popravi" - -#: db_operations.php:573 -#, fuzzy -#| msgid "Disabled" -msgctxt "BLOB repository" -msgid "Disabled" -msgstr "Onemogućeno" - -#: db_operations.php:577 -#, fuzzy -msgid "Enable" -msgstr "Omogućeno" - -#: db_operations.php:601 libraries/Index.class.php:447 +#: db_operations.php:451 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 -#: server_collations.php:53 server_collations.php:65 server_databases.php:110 -#: tbl_operations.php:362 tbl_select.php:135 tbl_structure.php:178 -#: tbl_structure.php:766 tbl_tracking.php:274 tbl_tracking.php:325 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 +#: server_collations.php:53 server_collations.php:65 server_databases.php:108 +#: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:177 +#: tbl_structure.php:764 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "Uspoređivanje" -#: db_operations.php:614 main.php:315 pdf_schema.php:33 -#, php-format +#: db_operations.php:464 pdf_schema.php:32 +#, fuzzy, php-format +#| msgid "" +#| "The additional features for working with linked tables have been " +#| "deactivated. To find out why click %shere%s." msgid "" -"The additional features for working with linked tables have been " -"deactivated. To find out why click %shere%s." +"The phpMyAdmin configuration storage has been deactivated. To find out why " +"click %shere%s." msgstr "" "Dodatne osobine za rad s relacijski tablicama su isključene. Kako biste " "saznali razloge, pritisnite %sovdje%s." -#: db_operations.php:647 +#: db_operations.php:497 msgid "Edit PDF Pages" msgstr "Uredi PDF stranice" -#: db_printview.php:103 db_tracking.php:71 db_tracking.php:156 +#: db_printview.php:102 db_tracking.php:67 db_tracking.php:152 #: libraries/db_structure.lib.php:37 libraries/export/xml.php:327 -#: libraries/header.inc.php:125 pdf_pages.php:423 server_privileges.php:1657 -#: server_privileges.php:1713 server_privileges.php:1977 -#: server_synchronize.php:422 server_synchronize.php:865 tbl_tracking.php:591 +#: libraries/header.inc.php:125 pdf_pages.php:422 server_privileges.php:1661 +#: server_privileges.php:1717 server_privileges.php:1981 +#: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "Tablica" -#: db_printview.php:104 libraries/db_structure.lib.php:47 +#: db_printview.php:103 libraries/db_structure.lib.php:47 #: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 -#: navigation.php:629 navigation.php:651 server_databases.php:121 -#: tbl_printview.php:392 tbl_structure.php:364 tbl_structure.php:776 +#: navigation.php:628 navigation.php:650 server_databases.php:119 +#: tbl_printview.php:391 tbl_structure.php:362 tbl_structure.php:774 msgid "Rows" msgstr "Redaka" -#: db_printview.php:108 libraries/db_structure.lib.php:58 tbl_indexes.php:189 +#: db_printview.php:107 libraries/db_structure.lib.php:58 tbl_indexes.php:188 msgid "Size" msgstr "Veličina" -#: db_printview.php:161 db_structure.php:456 libraries/export/sql.php:556 +#: db_printview.php:160 db_structure.php:442 libraries/export/sql.php:556 #: libraries/export/sql.php:896 msgid "in use" msgstr "u upotrebi" -#: db_printview.php:186 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:511 pdf_schema.php:1240 tbl_printview.php:432 -#: tbl_structure.php:808 +#: db_printview.php:185 libraries/db_info.inc.php:86 +#: libraries/export/sql.php:511 pdf_schema.php:1239 tbl_printview.php:431 +#: tbl_structure.php:806 msgid "Creation" msgstr "Izrada" -#: db_printview.php:195 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:516 pdf_schema.php:1245 tbl_printview.php:442 -#: tbl_structure.php:816 +#: db_printview.php:194 libraries/db_info.inc.php:91 +#: libraries/export/sql.php:516 pdf_schema.php:1244 tbl_printview.php:441 +#: tbl_structure.php:814 msgid "Last update" msgstr "Posljednje ažuriranje" -#: db_printview.php:204 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:521 pdf_schema.php:1250 tbl_printview.php:452 -#: tbl_structure.php:824 +#: db_printview.php:203 libraries/db_info.inc.php:96 +#: libraries/export/sql.php:521 pdf_schema.php:1249 tbl_printview.php:451 +#: tbl_structure.php:822 msgid "Last check" msgstr "Posljednja provjera" -#: db_printview.php:221 db_structure.php:479 +#: db_printview.php:220 db_structure.php:465 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -395,94 +367,94 @@ msgid_plural "%s tables" msgstr[0] "%s tablica" msgstr[1] "%s tablica" -#: db_qbe.php:28 import.php:453 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1980 libraries/sql_query_form.lib.php:138 -#: tbl_operations.php:212 tbl_relation.php:291 tbl_row_action.php:130 -#: view_operations.php:61 +#: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 +#: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "Vaš SQL upit uspješno je izvršen" -#: db_qbe.php:41 +#: db_qbe.php:38 msgid "You have to choose at least one column to display" msgstr "Morate odabrati najmanje jedan stupac za prikazivanje" -#: db_qbe.php:199 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:865 +#: db_qbe.php:196 libraries/db_structure.lib.php:95 +#: libraries/display_tbl.lib.php:864 msgid "Sort" msgstr "Presloži" -#: db_qbe.php:208 db_qbe.php:242 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:522 libraries/display_tbl.lib.php:827 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:259 -#: tbl_select.php:311 +#: db_qbe.php:205 db_qbe.php:239 libraries/db_structure.lib.php:102 +#: libraries/display_tbl.lib.php:521 libraries/display_tbl.lib.php:826 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:257 +#: tbl_select.php:310 msgid "Ascending" msgstr "Uzlazno" -#: db_qbe.php:209 db_qbe.php:250 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:527 libraries/display_tbl.lib.php:824 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:260 -#: tbl_select.php:312 +#: db_qbe.php:206 db_qbe.php:247 libraries/db_structure.lib.php:110 +#: libraries/display_tbl.lib.php:526 libraries/display_tbl.lib.php:823 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:258 +#: tbl_select.php:311 msgid "Descending" msgstr "Silazno" -#: db_qbe.php:263 db_tracking.php:77 libraries/display_tbl.lib.php:307 -#: tbl_change.php:275 tbl_tracking.php:596 +#: db_qbe.php:260 db_tracking.php:73 libraries/display_tbl.lib.php:306 +#: tbl_change.php:270 tbl_tracking.php:591 msgid "Show" msgstr "Prikaži" -#: db_qbe.php:299 +#: db_qbe.php:296 msgid "Criteria" msgstr "Kriterij" -#: db_qbe.php:352 db_qbe.php:434 db_qbe.php:526 db_qbe.php:557 +#: db_qbe.php:349 db_qbe.php:431 db_qbe.php:523 db_qbe.php:554 msgid "Ins" msgstr "Ins" -#: db_qbe.php:356 db_qbe.php:438 db_qbe.php:523 db_qbe.php:554 +#: db_qbe.php:353 db_qbe.php:435 db_qbe.php:520 db_qbe.php:551 msgid "And" msgstr "I" -#: db_qbe.php:365 db_qbe.php:446 db_qbe.php:528 db_qbe.php:559 +#: db_qbe.php:362 db_qbe.php:443 db_qbe.php:525 db_qbe.php:556 msgid "Del" msgstr "Del" -#: db_qbe.php:369 db_qbe.php:450 db_qbe.php:521 db_qbe.php:552 -#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:778 -#: server_privileges.php:297 tbl_change.php:1027 tbl_indexes.php:249 -#: tbl_select.php:285 +#: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 +#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:777 +#: server_privileges.php:296 tbl_change.php:925 tbl_indexes.php:248 +#: tbl_select.php:284 msgid "Or" msgstr "Ili" -#: db_qbe.php:506 +#: db_qbe.php:503 msgid "Modify" msgstr "Uredi" -#: db_qbe.php:583 +#: db_qbe.php:580 #, fuzzy #| msgid "Add/Delete Criteria Row" msgid "Add/Delete criteria rows" msgstr "Dodaj/Izbriši redak kriterija" -#: db_qbe.php:595 +#: db_qbe.php:592 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Add/Delete columns" msgstr "Dodaj/Izbriši stupce polja" -#: db_qbe.php:608 db_qbe.php:633 +#: db_qbe.php:605 db_qbe.php:630 msgid "Update Query" msgstr "Ažuriraj upit" -#: db_qbe.php:616 +#: db_qbe.php:613 msgid "Use Tables" msgstr "Upotrijebi tablice" -#: db_qbe.php:639 +#: db_qbe.php:636 #, php-format msgid "SQL query on database %s:" msgstr "SQL upit nad bazom podataka %s:" -#: db_qbe.php:933 libraries/common.lib.php:1222 +#: db_qbe.php:930 libraries/common.lib.php:1215 msgid "Submit Query" msgstr "Podnesi upit" @@ -522,17 +494,17 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s poklapanja unutar tablice %s" msgstr[1] "%s poklapanja unutar tablice %s" -#: db_search.php:249 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2831 -#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:49 -#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:466 +#: db_search.php:249 db_structure.php:75 db_structure.php:76 +#: db_structure.php:88 db_structure.php:90 db_structure.php:101 +#: db_structure.php:103 libraries/common.lib.php:2836 +#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 +#: tbl_structure.php:35 tbl_structure.php:47 tbl_structure.php:464 msgid "Browse" msgstr "Pretraživanje" -#: db_search.php:254 libraries/display_tbl.lib.php:1164 -#: libraries/display_tbl.lib.php:2055 libraries/sql_query_form.lib.php:453 -#: pdf_pages.php:285 pdf_pages.php:424 pdf_pages.php:460 pdf_pages.php:488 +#: db_search.php:254 libraries/display_tbl.lib.php:1163 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 msgid "Delete" @@ -572,66 +544,66 @@ msgstr "Unutar tablica:" msgid "Inside column:" msgstr "Unutar polja:" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2830 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:75 +#: db_structure.php:79 db_structure.php:80 db_structure.php:92 +#: db_structure.php:93 db_structure.php:105 db_structure.php:106 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 +#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Umetni" -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2827 libraries/common.lib.php:2834 -#: libraries/db_links.inc.php:62 libraries/export/htmlword.php:22 +#: db_structure.php:81 db_structure.php:94 db_structure.php:107 +#: libraries/common.lib.php:2832 libraries/common.lib.php:2839 +#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 -#: libraries/tbl_links.inc.php:55 pmd_general.php:133 -#: server_privileges.php:593 server_replication.php:314 tbl_tracking.php:268 +#: libraries/tbl_links.inc.php:54 pmd_general.php:133 +#: server_privileges.php:592 server_replication.php:313 tbl_tracking.php:263 msgid "Structure" msgstr "Strukturu" -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:544 db_structure.php:545 db_tracking.php:90 -#: libraries/Index.class.php:482 libraries/common.lib.php:1659 -#: libraries/db_links.inc.php:99 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:126 -#: server_databases.php:351 tbl_structure.php:26 tbl_structure.php:150 -#: tbl_structure.php:151 tbl_structure.php:470 +#: db_structure.php:82 db_structure.php:83 db_structure.php:95 +#: db_structure.php:96 db_structure.php:108 db_structure.php:109 +#: db_structure.php:530 db_structure.php:531 db_tracking.php:86 +#: libraries/Index.class.php:482 libraries/common.lib.php:1663 +#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 +#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 +#: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" msgstr "Ispusti" -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:542 db_structure.php:543 libraries/common.lib.php:1658 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:104 +#: db_structure.php:84 db_structure.php:85 db_structure.php:97 +#: db_structure.php:98 db_structure.php:110 db_structure.php:111 +#: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 +#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 msgid "Empty" msgstr "Isprazni" -#: db_structure.php:315 libraries/tbl_links.inc.php:99 +#: db_structure.php:301 libraries/tbl_links.inc.php:98 #, php-format msgid "Table %s has been emptied" msgstr "Tablica %s je očišćena" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "View %s has been dropped" msgstr "Index %s je ispušten" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "Table %s has been dropped" msgstr "Tablica %s je odbačen" -#: db_structure.php:332 +#: db_structure.php:318 msgid "Tracking is active." msgstr "" -#: db_structure.php:334 +#: db_structure.php:320 msgid "Tracking is not active." msgstr "" -#: db_structure.php:419 libraries/display_tbl.lib.php:1943 +#: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -639,167 +611,173 @@ msgid "" msgstr "" "Ovaj prikaz sadrži najmanje ovoliko redaka. Proučite %sdokumentaciju%s." -#: db_structure.php:433 db_structure.php:447 libraries/header.inc.php:125 -#: libraries/tbl_info.inc.php:65 tbl_structure.php:184 test/theme.php:73 +#: db_structure.php:419 db_structure.php:433 libraries/header.inc.php:125 +#: libraries/tbl_info.inc.php:60 tbl_structure.php:183 test/theme.php:73 msgid "View" msgstr "Prikaz" -#: db_structure.php:484 libraries/db_structure.lib.php:40 -#: libraries/server_links.inc.php:69 server_replication.php:32 -#: server_replication.php:163 server_status.php:368 +#: db_structure.php:470 libraries/db_structure.lib.php:40 +#: libraries/server_links.inc.php:69 server_replication.php:31 +#: server_replication.php:162 server_status.php:368 msgid "Replication" msgstr "Replikacija" -#: db_structure.php:488 +#: db_structure.php:474 msgid "Sum" msgstr "Zbroj" -#: db_structure.php:495 libraries/StorageEngine.class.php:349 +#: db_structure.php:481 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s je zadani pogon pohranjivanja na ovom MySQL poslužitelju." -#: db_structure.php:523 db_structure.php:540 db_structure.php:541 -#: libraries/display_tbl.lib.php:2080 libraries/display_tbl.lib.php:2085 -#: libraries/mult_submits.inc.php:15 server_databases.php:345 -#: server_databases.php:350 server_privileges.php:1588 tbl_structure.php:454 -#: tbl_structure.php:463 +#: db_structure.php:509 db_structure.php:526 db_structure.php:527 +#: libraries/display_tbl.lib.php:2039 libraries/display_tbl.lib.php:2044 +#: libraries/mult_submits.inc.php:15 server_databases.php:343 +#: server_databases.php:348 server_privileges.php:1592 tbl_structure.php:452 +#: tbl_structure.php:461 msgid "With selected:" msgstr "S odabirom:" -#: db_structure.php:526 libraries/display_tbl.lib.php:2075 -#: server_databases.php:347 server_privileges.php:569 -#: server_privileges.php:1591 tbl_structure.php:457 +#: db_structure.php:512 libraries/display_tbl.lib.php:2034 +#: server_databases.php:345 server_privileges.php:568 +#: server_privileges.php:1595 tbl_structure.php:455 msgid "Check All" msgstr "Označi sve" -#: db_structure.php:530 libraries/display_tbl.lib.php:2076 -#: libraries/replication_gui.lib.php:35 server_databases.php:349 -#: server_privileges.php:572 server_privileges.php:1595 tbl_structure.php:461 +#: db_structure.php:516 libraries/display_tbl.lib.php:2035 +#: libraries/replication_gui.lib.php:35 server_databases.php:347 +#: server_privileges.php:571 server_privileges.php:1599 tbl_structure.php:459 msgid "Uncheck All" msgstr "Ukloni sve oznake" -#: db_structure.php:535 +#: db_structure.php:521 msgid "Check tables having overhead" msgstr "Provjeri za prepunjene tablice" -#: db_structure.php:546 db_structure.php:547 db_structure.php:598 -#: libraries/display_tbl.lib.php:2179 libraries/mult_submits.inc.php:27 -#: tbl_structure.php:491 tbl_structure.php:493 +#: db_structure.php:532 db_structure.php:533 db_structure.php:584 +#: libraries/display_tbl.lib.php:2138 libraries/mult_submits.inc.php:27 +#: tbl_structure.php:489 tbl_structure.php:491 msgid "Print view" msgstr "Prikaz ispisa" -#: db_structure.php:548 db_structure.php:549 libraries/mult_submits.inc.php:41 -#: tbl_operations.php:580 +#: db_structure.php:534 db_structure.php:535 libraries/mult_submits.inc.php:41 +#: tbl_operations.php:578 msgid "Check table" msgstr "Provjeri tablicu" -#: db_structure.php:550 db_structure.php:551 libraries/mult_submits.inc.php:46 -#: tbl_operations.php:620 tbl_structure.php:708 tbl_structure.php:710 +#: db_structure.php:536 db_structure.php:537 libraries/mult_submits.inc.php:46 +#: tbl_operations.php:618 tbl_structure.php:706 tbl_structure.php:708 msgid "Optimize table" msgstr "Optimiziraj tablicu" -#: db_structure.php:552 db_structure.php:553 libraries/mult_submits.inc.php:51 -#: tbl_operations.php:610 +#: db_structure.php:538 db_structure.php:539 libraries/mult_submits.inc.php:51 +#: tbl_operations.php:608 msgid "Repair table" msgstr "Popravi tablicu" -#: db_structure.php:554 db_structure.php:555 libraries/mult_submits.inc.php:56 -#: tbl_operations.php:600 +#: db_structure.php:540 db_structure.php:541 libraries/mult_submits.inc.php:56 +#: tbl_operations.php:598 msgid "Analyze table" msgstr "Analiziraj tablicu" -#: db_structure.php:556 db_structure.php:557 libraries/db_links.inc.php:70 -#: libraries/display_export.lib.php:82 libraries/display_tbl.lib.php:2093 -#: libraries/display_tbl.lib.php:2224 libraries/mult_submits.inc.php:61 -#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:81 -#: pmd_pdf.php:83 pmd_pdf.php:108 server_privileges.php:1372 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 +#: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 +#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 +#: pmd_pdf.php:81 pmd_pdf.php:106 server_privileges.php:1376 #: setup/frames/menu.inc.php:22 tbl_row_action.php:58 msgid "Export" msgstr "Izvoz" -#: db_structure.php:605 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:591 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "Rječnik podataka" -#: db_tracking.php:65 +#: db_tracking.php:61 #, fuzzy msgid "Tracked tables" msgstr "Provjeri tablicu" -#: db_tracking.php:70 libraries/export/htmlword.php:85 +#: db_tracking.php:66 libraries/export/htmlword.php:85 #: libraries/export/latex.php:152 libraries/export/odt.php:112 #: libraries/export/sql.php:339 libraries/export/texytext.php:84 #: libraries/export/xml.php:254 libraries/header.inc.php:105 -#: libraries/header_printview.inc.php:57 server_databases.php:168 -#: server_privileges.php:1652 server_privileges.php:1713 -#: server_privileges.php:1971 server_processlist.php:55 -#: server_synchronize.php:1178 server_synchronize.php:1182 -#: tbl_tracking.php:590 test/theme.php:64 +#: libraries/header_printview.inc.php:57 server_databases.php:166 +#: server_privileges.php:1656 server_privileges.php:1717 +#: server_privileges.php:1975 server_processlist.php:55 +#: server_synchronize.php:1177 server_synchronize.php:1181 +#: tbl_tracking.php:585 test/theme.php:64 msgid "Database" msgstr "Baza podataka" -#: db_tracking.php:72 +#: db_tracking.php:68 #, fuzzy msgid "Last version" msgstr "Izradi relaciju" -#: db_tracking.php:73 tbl_tracking.php:593 +#: db_tracking.php:69 tbl_tracking.php:588 #, fuzzy msgid "Created" msgstr "Izradi" -#: db_tracking.php:74 tbl_tracking.php:594 +#: db_tracking.php:70 tbl_tracking.php:589 msgid "Updated" msgstr "" -#: db_tracking.php:76 libraries/Index.class.php:439 -#: libraries/db_structure.lib.php:44 server_databases.php:202 -#: server_privileges.php:1534 server_privileges.php:1717 -#: server_privileges.php:2065 tbl_structure.php:186 +#: db_tracking.php:71 libraries/common.lib.php:1361 +#: libraries/server_links.inc.php:48 server_processlist.php:58 +#: tbl_tracking.php:590 test/theme.php:100 +msgid "Status" +msgstr "Stanje" + +#: db_tracking.php:72 libraries/Index.class.php:439 +#: libraries/db_structure.lib.php:44 server_databases.php:200 +#: server_privileges.php:1538 server_privileges.php:1721 +#: server_privileges.php:2069 tbl_structure.php:185 msgid "Action" msgstr "Aktivnost" -#: db_tracking.php:87 db_tracking.php:119 +#: db_tracking.php:83 db_tracking.php:115 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:105 tbl_tracking.php:547 tbl_tracking.php:605 -#: tbl_tracking.php:612 +#: db_tracking.php:101 tbl_tracking.php:542 tbl_tracking.php:600 +#: tbl_tracking.php:607 msgid "active" msgstr "" -#: db_tracking.php:107 tbl_tracking.php:549 tbl_tracking.php:607 -#: tbl_tracking.php:609 +#: db_tracking.php:103 tbl_tracking.php:544 tbl_tracking.php:602 +#: tbl_tracking.php:604 msgid "not active" msgstr "" -#: db_tracking.php:120 +#: db_tracking.php:116 #, fuzzy msgid "Versions" msgstr "Perzijski" -#: db_tracking.php:121 tbl_tracking.php:378 tbl_tracking.php:623 +#: db_tracking.php:117 tbl_tracking.php:373 tbl_tracking.php:618 msgid "Tracking report" msgstr "" -#: db_tracking.php:122 tbl_tracking.php:250 tbl_tracking.php:623 +#: db_tracking.php:118 tbl_tracking.php:245 tbl_tracking.php:618 #, fuzzy msgid "Structure snapshot" msgstr "Samo strukturu" -#: db_tracking.php:151 +#: db_tracking.php:147 #, fuzzy msgid "Untracked tables" msgstr "Provjeri tablicu" -#: db_tracking.php:171 db_tracking.php:173 tbl_structure.php:527 -#: tbl_structure.php:529 +#: db_tracking.php:167 db_tracking.php:169 tbl_structure.php:525 +#: tbl_structure.php:527 #, fuzzy msgid "Track table" msgstr "Provjeri tablicu" -#: db_tracking.php:199 +#: db_tracking.php:195 #, fuzzy msgid "Database Log" msgstr "Baza podataka" @@ -808,12 +786,12 @@ msgstr "Baza podataka" msgid "Selected export type has to be saved in file!" msgstr "Odabrana vrsta izvoza mora biti spremljena u datoteku!" -#: export.php:153 export.php:178 export.php:620 +#: export.php:152 export.php:177 export.php:615 #, php-format msgid "Insufficient space to save the file %s." msgstr "Nema dovoljno prostora za spremanje datoteke %s." -#: export.php:287 +#: export.php:286 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -821,17 +799,17 @@ msgstr "" "Datoteka %s već postoji na poslužitelju. Promijenite naziv ili označite " "opciju za prepisivanje." -#: export.php:291 export.php:295 +#: export.php:290 export.php:294 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Web poslužitelj nema dopuštenja za spremanje datoteke %s." -#: export.php:622 +#: export.php:617 #, php-format msgid "Dump has been saved to file %s." msgstr "Izbacivanje je spremljeno u datoteku %s." -#: import.php:59 +#: import.php:58 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -840,14 +818,14 @@ msgstr "" "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:840 -#: libraries/File.class.php:950 +#: import.php:277 import.php:330 libraries/File.class.php:566 +#: libraries/File.class.php:676 msgid "File could not be read" msgstr "Datoteku nije moguće pročitati" -#: import.php:286 import.php:295 import.php:314 import.php:323 -#: libraries/File.class.php:1020 libraries/File.class.php:1028 -#: libraries/File.class.php:1044 libraries/File.class.php:1052 +#: import.php:285 import.php:294 import.php:313 import.php:322 +#: libraries/File.class.php:746 libraries/File.class.php:754 +#: libraries/File.class.php:770 libraries/File.class.php:778 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -857,7 +835,7 @@ msgstr "" "Takva podrška još nije implementirana ili je onemogućena u vašoj " "konfiguraciji." -#: import.php:336 +#: import.php:335 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -867,29 +845,29 @@ msgstr "" "veličina datoteke prelazi najveću dopuštenu veličinu od strane vaše PHP " "konfiguracije. Pogledajte ČPP 1.16." -#: import.php:371 libraries/display_import.lib.php:23 +#: import.php:370 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "Nije moguće učitati dodatke za uvoz. Provjerite svoju instalaciju!" -#: import.php:396 +#: import.php:395 msgid "The bookmark has been deleted." msgstr "Favorit je izbrisan." -#: import.php:400 +#: import.php:399 msgid "Showing bookmark" msgstr "Prikazivanje oznake" -#: import.php:402 sql.php:625 +#: import.php:401 sql.php:618 #, php-format msgid "Bookmark %s created" msgstr "Izrađen je favorit %s" -#: import.php:408 import.php:414 +#: import.php:407 import.php:413 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Uvoz je uspješno dovršen. Izvršeno upita: %d ." -#: import.php:423 +#: import.php:422 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -897,7 +875,7 @@ msgstr "" "Vrijeme za skriptu je isteklo. Ako želite završiti uvoz, ponovo podnesite " "istu datoteku i uvoz će nastaviti." -#: import.php:425 +#: import.php:424 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -906,21 +884,21 @@ msgstr "" "znači da phpMyAdmin neće biti u mogućnosti završiti ovaj uvoz sve dok ne " "povećate vremenska ograničenja unutar php." -#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:240 +#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:239 #: user_password.php:110 msgid "Back" msgstr "Nazad" -#: index.php:188 +#: index.php:183 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" "phpMyAdmin je jednostavniji za upotrebu s preglednikom koji podržava " "okvire." -#: js/messages.php:25 server_synchronize.php:344 server_synchronize.php:356 -#: server_synchronize.php:372 server_synchronize.php:379 -#: server_synchronize.php:738 server_synchronize.php:766 -#: server_synchronize.php:794 server_synchronize.php:806 +#: js/messages.php:25 server_synchronize.php:343 server_synchronize.php:355 +#: server_synchronize.php:371 server_synchronize.php:378 +#: server_synchronize.php:737 server_synchronize.php:765 +#: server_synchronize.php:793 server_synchronize.php:805 msgid "Click to select" msgstr "" @@ -928,15 +906,15 @@ msgstr "" msgid "Click to unselect" msgstr "" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:88 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:87 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" izjave su onemogućene." -#: js/messages.php:30 libraries/mult_submits.inc.php:257 sql.php:187 +#: js/messages.php:30 libraries/mult_submits.inc.php:256 sql.php:186 msgid "Do you really want to " msgstr "Želite li zaista " -#: js/messages.php:31 libraries/mult_submits.inc.php:257 sql.php:171 +#: js/messages.php:31 libraries/mult_submits.inc.php:256 sql.php:170 msgid "You are about to DESTROY a complete database!" msgstr "UNIŠTIT ĆETE CJELOKUPNU BAZU PODATAKA!" @@ -965,11 +943,11 @@ msgstr "Naziv računala je prazan!" msgid "The user name is empty!" msgstr "Korisničko ime je prazno!" -#: js/messages.php:44 server_privileges.php:1228 user_password.php:65 +#: js/messages.php:44 server_privileges.php:1229 user_password.php:65 msgid "The password is empty!" msgstr "Lozinka je prazna!" -#: js/messages.php:45 server_privileges.php:1226 user_password.php:68 +#: js/messages.php:45 server_privileges.php:1227 user_password.php:68 msgid "The passwords aren't the same!" msgstr "Lozinke se ne podudaraju!" @@ -977,27 +955,27 @@ msgstr "Lozinke se ne podudaraju!" msgid "Cancel" msgstr "Odustani" -#: js/messages.php:52 pmd_save_pos.php:53 +#: js/messages.php:52 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "Izmjene su spremljene" -#: js/messages.php:53 pmd_relation_upd.php:48 +#: js/messages.php:53 pmd_relation_upd.php:47 msgid "Relation deleted" msgstr "Relacija je izbrisana" -#: js/messages.php:54 pmd_relation_new.php:63 +#: js/messages.php:54 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "Dodana je relacija FOREIGN KEY" -#: js/messages.php:55 pmd_relation_new.php:85 +#: js/messages.php:55 pmd_relation_new.php:84 msgid "Internal relation added" msgstr "Dodane interne relacije" -#: js/messages.php:56 pmd_relation_new.php:62 pmd_relation_new.php:87 +#: js/messages.php:56 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "Pogreška: Relacija nije dodana." -#: js/messages.php:57 pmd_relation_new.php:30 +#: js/messages.php:57 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "Pogreška: Relacija već postoji." @@ -1005,13 +983,13 @@ msgstr "Pogreška: Relacija već postoji." msgid "Error saving coordinates for Designer." msgstr "Pogreška tijekom spremanja koordinata za Kreatora." -#: js/messages.php:59 libraries/relation.lib.php:94 -#: libraries/relation.lib.php:106 +#: js/messages.php:59 libraries/relation.lib.php:89 +#: libraries/relation.lib.php:101 msgid "General relation features" msgstr "Opće osobine relacija" -#: js/messages.php:59 libraries/relation.lib.php:88 -#: libraries/relation.lib.php:95 +#: js/messages.php:59 libraries/relation.lib.php:83 +#: libraries/relation.lib.php:90 msgid "Disabled" msgstr "Onemogućeno" @@ -1027,7 +1005,7 @@ msgstr "Odaberite strani ključ" msgid "Please select the primary key or a unique key" msgstr "Odaberite primarni ključ ili jedinstveni ključ" -#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:547 +#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" @@ -1057,10 +1035,10 @@ msgid "Prev" msgstr "Prethodni" #. l10n: Display text for next month link in calendar -#: js/messages.php:81 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:337 -#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:422 -#: tbl_structure.php:800 +#: js/messages.php:81 libraries/common.lib.php:2358 +#: libraries/common.lib.php:2361 libraries/display_tbl.lib.php:336 +#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 +#: tbl_structure.php:798 msgid "Next" msgstr "Sljedeće" @@ -1134,27 +1112,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1562 +#: js/messages.php:101 libraries/common.lib.php:1566 msgid "Jan" msgstr "Sij" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1564 +#: js/messages.php:103 libraries/common.lib.php:1568 msgid "Feb" msgstr "Velj" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1566 +#: js/messages.php:105 libraries/common.lib.php:1570 msgid "Mar" msgstr "Ožu" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1568 +#: js/messages.php:107 libraries/common.lib.php:1572 msgid "Apr" msgstr "Tra" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1570 +#: js/messages.php:109 libraries/common.lib.php:1574 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1162,37 +1140,37 @@ msgid "May" msgstr "Svi" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1572 +#: js/messages.php:111 libraries/common.lib.php:1576 msgid "Jun" msgstr "Lip" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1574 +#: js/messages.php:113 libraries/common.lib.php:1578 msgid "Jul" msgstr "Srp" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1576 +#: js/messages.php:115 libraries/common.lib.php:1580 msgid "Aug" msgstr "Kol" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1578 +#: js/messages.php:117 libraries/common.lib.php:1582 msgid "Sep" msgstr "Ruj" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1580 +#: js/messages.php:119 libraries/common.lib.php:1584 msgid "Oct" msgstr "Lis" #. l10n: Short month name -#: js/messages.php:121 libraries/common.lib.php:1582 +#: js/messages.php:121 libraries/common.lib.php:1586 msgid "Nov" msgstr "Stu" #. l10n: Short month name -#: js/messages.php:123 libraries/common.lib.php:1584 +#: js/messages.php:123 libraries/common.lib.php:1588 msgid "Dec" msgstr "Pro" @@ -1233,37 +1211,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1587 +#: js/messages.php:136 libraries/common.lib.php:1591 msgid "Sun" msgstr "Ned" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1589 +#: js/messages.php:138 libraries/common.lib.php:1593 msgid "Mon" msgstr "Pon" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1591 +#: js/messages.php:140 libraries/common.lib.php:1595 msgid "Tue" msgstr "Uto" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1593 +#: js/messages.php:142 libraries/common.lib.php:1597 msgid "Wed" msgstr "Sri" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1595 +#: js/messages.php:144 libraries/common.lib.php:1599 msgid "Thu" msgstr "Čet" #. l10n: Short week day name -#: js/messages.php:146 libraries/common.lib.php:1597 +#: js/messages.php:146 libraries/common.lib.php:1601 msgid "Fri" msgstr "Pet" #. l10n: Short week day name -#: js/messages.php:148 libraries/common.lib.php:1599 +#: js/messages.php:148 libraries/common.lib.php:1603 msgid "Sat" msgstr "Sub" @@ -1343,18 +1321,13 @@ msgstr "po sekundi" msgid "Font size" msgstr "Veličina fonta" -#: libraries/File.class.php:336 libraries/File.class.php:424 -#: libraries/File.class.php:561 libraries/File.class.php:700 -msgid "Unknown error in file upload." -msgstr "Nepoznata pogreška tijekom učitavanja datoteke." - -#: libraries/File.class.php:406 +#: libraries/File.class.php:315 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:409 +#: libraries/File.class.php:318 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -1362,59 +1335,63 @@ msgstr "" "Učitana datoteka nadmašuje uputu MAX_FILE_SIZE (najveća veličina datoteke), " "određenu u HTML obliku." -#: libraries/File.class.php:412 +#: libraries/File.class.php:321 msgid "The uploaded file was only partially uploaded." msgstr "Učitana datoteka bila je djelomično učitana." -#: libraries/File.class.php:415 +#: libraries/File.class.php:324 msgid "Missing a temporary folder." msgstr "Nedostaje mapa privremene pohrane." -#: libraries/File.class.php:418 +#: libraries/File.class.php:327 msgid "Failed to write file to disk." msgstr "Zapisivanje datoteke na disk nije uspjelo." -#: libraries/File.class.php:421 +#: libraries/File.class.php:330 msgid "File upload stopped by extension." msgstr "Učitavanje datoteke prekinuto je uslijed ekstenzije." -#: libraries/File.class.php:898 +#: libraries/File.class.php:333 +msgid "Unknown error in file upload." +msgstr "Nepoznata pogreška tijekom učitavanja datoteke." + +#: libraries/File.class.php:624 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:427 tbl_relation.php:528 +#: libraries/Index.class.php:427 tbl_relation.php:526 msgid "No index defined!" msgstr "Nema definiranog indeksa!" -#: libraries/Index.class.php:432 server_databases.php:131 tbl_tracking.php:315 +#: libraries/Index.class.php:432 server_databases.php:129 tbl_tracking.php:310 msgid "Indexes" msgstr "Indeksi" #: libraries/Index.class.php:443 libraries/mult_submits.inc.php:102 -#: libraries/tbl_properties.inc.php:518 tbl_structure.php:32 -#: tbl_structure.php:154 tbl_structure.php:158 tbl_structure.php:473 -#: tbl_tracking.php:321 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:31 +#: tbl_structure.php:153 tbl_structure.php:157 tbl_structure.php:471 +#: tbl_tracking.php:316 msgid "Unique" msgstr "Jedinstveno" -#: libraries/Index.class.php:444 tbl_tracking.php:322 +#: libraries/Index.class.php:444 tbl_tracking.php:317 msgid "Packed" msgstr "Pakirano" -#: libraries/Index.class.php:446 tbl_tracking.php:324 +#: libraries/Index.class.php:446 tbl_tracking.php:319 msgid "Cardinality" msgstr "Najvažnije" -#: libraries/Index.class.php:449 tbl_tracking.php:278 tbl_tracking.php:327 +#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322 msgid "Comment" msgstr "Komentar" #: libraries/Index.class.php:465 libraries/common.lib.php:609 -#: libraries/common.lib.php:1198 libraries/display_tbl.lib.php:1116 +#: libraries/common.lib.php:1191 libraries/display_tbl.lib.php:1115 #: libraries/import.lib.php:1119 libraries/import.lib.php:1143 -#: pdf_pages.php:284 setup/frames/index.inc.php:124 +#: pdf_pages.php:283 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:349 tbl_row_action.php:68 msgid "Edit" msgstr "Uređivanje" @@ -1437,15 +1414,15 @@ msgstr "" "Indeksi %1$s i %2$s izgledaju jednakim i jednog od njih moguće je ukloniti." #: libraries/List_Database.class.php:430 libraries/server_links.inc.php:40 -#: server_databases.php:87 server_privileges.php:1652 +#: server_databases.php:85 server_privileges.php:1656 #: setup/lib/messages.inc.php:107 test/theme.php:92 msgid "Databases" msgstr "Baze podataka" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:259 libraries/import.lib.php:134 pdf_schema.php:31 -#: pdf_schema.php:231 tbl_change.php:1023 tbl_operations.php:212 -#: tbl_relation.php:289 view_operations.php:61 +#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 +#: tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Pogreška" @@ -1473,40 +1450,40 @@ msgid_plural "%1$d rows inserted." msgstr[0] "Umetnuto redaka: %1$d." msgstr[1] "Umetnuto redaka: %1$d." -#: libraries/StorageEngine.class.php:196 +#: libraries/StorageEngine.class.php:194 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:352 +#: libraries/StorageEngine.class.php:354 #, php-format msgid "%s is available on this MySQL server." msgstr "%s je raspoloživ na ovom MySQL poslužitelju." -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:357 #, 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:359 +#: libraries/StorageEngine.class.php:361 #, 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:1018 +#: libraries/Table.class.php:1017 msgid "Invalid database" msgstr "Neispravna baza podataka" -#: libraries/Table.class.php:1032 tbl_get_field.php:25 +#: libraries/Table.class.php:1031 tbl_get_field.php:25 msgid "Invalid table name" msgstr "Neispravan naziv tablice" -#: libraries/Table.class.php:1047 +#: libraries/Table.class.php:1046 #, 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:1131 +#: libraries/Table.class.php:1129 #, php-format msgid "Table %s has been renamed to %s" msgstr "Tablica %s preimenovana je u %s" @@ -1524,22 +1501,22 @@ msgstr "Nema raspoloživog pregleda." msgid "take it" msgstr "Dodijeli" -#: libraries/Theme_Manager.class.php:114 +#: 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:152 +#: libraries/Theme_Manager.class.php:147 #, php-format msgid "Theme %s not found!" msgstr "Tema %s nije pronađena!" -#: libraries/Theme_Manager.class.php:220 +#: 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:296 test/theme.php:160 themes.php:20 +#: libraries/Theme_Manager.class.php:291 test/theme.php:160 themes.php:20 #: themes.php:40 msgid "Theme / Style" msgstr "Tema / Stil" @@ -1652,19 +1629,19 @@ msgstr "" msgid "Authenticating..." msgstr "" -#: libraries/blobstreaming.lib.php:689 +#: libraries/blobstreaming.lib.php:340 msgid "View image" msgstr "" -#: libraries/blobstreaming.lib.php:693 +#: libraries/blobstreaming.lib.php:344 msgid "Play audio" msgstr "" -#: libraries/blobstreaming.lib.php:698 +#: libraries/blobstreaming.lib.php:349 msgid "View video" msgstr "" -#: libraries/blobstreaming.lib.php:702 +#: libraries/blobstreaming.lib.php:353 msgid "Download file" msgstr "" @@ -1721,7 +1698,7 @@ msgstr "Poslužitelj" msgid "Invalid authentication method set in configuration:" msgstr "Neispravan komplet načina provjere vjerodostojnosti u konfiguraciji:" -#: libraries/common.inc.php:909 +#: libraries/common.inc.php:908 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Trebali biste nadograditi na %s %s ili kasniju." @@ -1748,7 +1725,8 @@ msgstr "Poslano" #: libraries/common.lib.php:425 libraries/common.lib.php:427 #: libraries/common.lib.php:429 libraries/common.lib.php:445 #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 -#: libraries/display_export.lib.php:163 libraries/relation.lib.php:84 +#: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 +#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 #: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" @@ -1763,148 +1741,148 @@ msgstr "SQL upit" msgid "MySQL said: " msgstr "MySQL je poručio: " -#: libraries/common.lib.php:1136 +#: libraries/common.lib.php:1129 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1174 setup/lib/messages.inc.php:350 +#: libraries/common.lib.php:1167 setup/lib/messages.inc.php:350 msgid "Explain SQL" msgstr "Objasni SQL" -#: libraries/common.lib.php:1177 +#: libraries/common.lib.php:1170 msgid "Skip Explain SQL" msgstr "Preskoči Objasni SQL" -#: libraries/common.lib.php:1211 +#: libraries/common.lib.php:1204 msgid "Without PHP Code" msgstr "Bez PHP koda" -#: libraries/common.lib.php:1214 setup/lib/messages.inc.php:352 +#: libraries/common.lib.php:1207 setup/lib/messages.inc.php:352 msgid "Create PHP Code" msgstr "Izradi PHP kod" -#: libraries/common.lib.php:1232 server_status.php:451 +#: libraries/common.lib.php:1225 server_status.php:451 #: setup/lib/messages.inc.php:351 msgid "Refresh" msgstr "Osvježi" -#: libraries/common.lib.php:1241 +#: libraries/common.lib.php:1234 msgid "Skip Validate SQL" msgstr "Preskoči provjeru valjanosti SQL-a" -#: libraries/common.lib.php:1244 setup/lib/messages.inc.php:353 +#: libraries/common.lib.php:1237 setup/lib/messages.inc.php:353 msgid "Validate SQL" msgstr "Provjera valjanosti SQL-a" -#: libraries/common.lib.php:1283 +#: libraries/common.lib.php:1287 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1285 +#: libraries/common.lib.php:1289 #, fuzzy #| msgid "Engines" msgid "Inline" msgstr "Pogoni" -#: libraries/common.lib.php:1339 libraries/common.lib.php:1354 +#: libraries/common.lib.php:1343 libraries/common.lib.php:1358 msgid "Profiling" msgstr "Izrada profila" -#: libraries/common.lib.php:1358 libraries/tbl_triggers.lib.php:27 +#: libraries/common.lib.php:1362 libraries/tbl_triggers.lib.php:27 #: server_processlist.php:57 msgid "Time" msgstr "Vrijeme" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "B" msgstr "B" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "KiB" msgstr "kB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "MiB" msgstr "MB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "GiB" msgstr "GB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "TiB" msgstr "TB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "PiB" msgstr "PB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "EiB" msgstr "EB" #. l10n: Thousands separator -#: libraries/common.lib.php:1424 +#: libraries/common.lib.php:1428 msgid "," msgstr "." #. l10n: Decimal separator -#: libraries/common.lib.php:1426 +#: libraries/common.lib.php:1430 msgid "." msgstr "," #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1603 +#: libraries/common.lib.php:1607 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y u %I:%M %p" -#: libraries/common.lib.php:1909 +#: libraries/common.lib.php:1913 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dana, %s sati, %s minuta i %s sekunda" -#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 -#: libraries/display_tbl.lib.php:289 server_status.php:718 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 +#: libraries/display_tbl.lib.php:288 server_status.php:718 msgid "Begin" msgstr "Na vrh stranice" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 -#: libraries/display_tbl.lib.php:290 server_binlog.php:154 +#: libraries/common.lib.php:2328 libraries/common.lib.php:2331 +#: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "Prethodni" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 -#: libraries/display_tbl.lib.php:352 +#: libraries/common.lib.php:2359 libraries/common.lib.php:2362 +#: libraries/display_tbl.lib.php:351 msgid "End" msgstr "Završetak" -#: libraries/common.lib.php:2429 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "Skoči do baze podataka \"%s\"." -#: libraries/common.lib.php:2448 +#: libraries/common.lib.php:2453 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Na funkcionalnost %s utječe poznati nedostatak. Pogledajte %s" -#: libraries/common.lib.php:2828 libraries/common.lib.php:2835 -#: libraries/db_links.inc.php:67 libraries/export/sql.php:24 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 +#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 -#: libraries/tbl_links.inc.php:59 querywindow.php:89 test/theme.php:96 +#: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2837 libraries/db_links.inc.php:103 -#: libraries/tbl_links.inc.php:94 libraries/tbl_links.inc.php:116 -#: view_operations.php:88 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: view_operations.php:87 msgid "Operations" msgstr "Operacije" -#: libraries/core.lib.php:282 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1920,38 +1898,38 @@ msgstr "Događaji" msgid "Name" msgstr "Naziv" -#: libraries/db_links.inc.php:44 +#: libraries/db_links.inc.php:43 #, php-format msgid "Database %s has been dropped." msgstr "Baza podataka %s je odbačena." -#: libraries/db_links.inc.php:56 libraries/db_links.inc.php:57 -#: libraries/db_links.inc.php:58 +#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 +#: libraries/db_links.inc.php:57 msgid "Database seems to be empty!" msgstr "Baza podataka izgleda praznom!" -#: libraries/db_links.inc.php:80 libraries/relation.lib.php:142 -#: libraries/tbl_links.inc.php:68 +#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:85 +#: libraries/db_links.inc.php:84 msgid "Query" msgstr "Upit" -#: libraries/db_links.inc.php:90 libraries/relation.lib.php:138 +#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 msgid "Designer" msgstr "Kreator" -#: libraries/db_links.inc.php:97 libraries/server_links.inc.php:87 -#: libraries/tbl_links.inc.php:90 pmd_pdf.php:83 pmd_pdf.php:109 +#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Uvoz" -#: libraries/db_links.inc.php:110 libraries/server_links.inc.php:65 -#: server_privileges.php:111 server_privileges.php:1714 -#: server_privileges.php:2063 test/theme.php:116 +#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: server_privileges.php:110 server_privileges.php:1718 +#: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" msgstr "Privilegije" @@ -1963,14 +1941,14 @@ msgstr "Rutine" msgid "Return type" msgstr "Vrsta povratka" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1847 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1806 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "Može biti približno. Pogledajte ČPP 3.11" -#: libraries/db_structure.lib.php:60 server_databases.php:141 -#: tbl_printview.php:334 tbl_structure.php:681 +#: libraries/db_structure.lib.php:60 server_databases.php:139 +#: tbl_printview.php:333 tbl_structure.php:679 msgid "Overhead" msgstr "Prepunjenje" @@ -1990,7 +1968,7 @@ 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:358 tbl_structure.php:607 +#: libraries/dbi/mysql.dbi.lib.php:358 tbl_structure.php:605 msgid "Details..." msgstr "Detalji..." @@ -2000,22 +1978,22 @@ msgid "Change password" msgstr "Promijeni lozinku" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:807 +#: libraries/replication_gui.lib.php:347 server_privileges.php:806 msgid "No Password" msgstr "Bez lozinke" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1530 server_synchronize.php:1174 +#: libraries/replication_gui.lib.php:351 server_privileges.php:795 +#: server_privileges.php:799 server_privileges.php:810 +#: server_privileges.php:1534 server_synchronize.php:1173 msgid "Password" msgstr "Lozinka" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:815 server_privileges.php:818 +#: server_privileges.php:814 server_privileges.php:817 msgid "Re-type" msgstr "Ponovite" @@ -2038,8 +2016,8 @@ msgstr "Izradi novu bazu podataka" msgid "Create" msgstr "Izradi" -#: libraries/display_create_database.lib.php:39 server_privileges.php:113 -#: server_privileges.php:1419 server_replication.php:34 +#: libraries/display_create_database.lib.php:39 server_privileges.php:112 +#: server_privileges.php:1423 server_replication.php:33 msgid "No Privileges" msgstr "Bez privilegija" @@ -2060,50 +2038,50 @@ msgstr "Izradi novu tablicu u bazi podataka %s" msgid "Number of columns" msgstr "Broj polja" -#: libraries/display_export.lib.php:41 +#: libraries/display_export.lib.php:35 msgid "Could not load export plugins, please check your installation!" msgstr "Nije moguće učitati dodatke za izvoz. Provjerite svoju instalaciju!" -#: libraries/display_export.lib.php:106 +#: libraries/display_export.lib.php:100 #, fuzzy, php-format #| msgid "Dump %s row(s) starting at record # %s" msgid "Dump %s row(s) starting at row # %s" msgstr "Izbaci %s redaka, počevši od zapisa # %s." -#: libraries/display_export.lib.php:114 +#: libraries/display_export.lib.php:108 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:124 setup/lib/messages.inc.php:79 +#: libraries/display_export.lib.php:118 setup/lib/messages.inc.php:79 msgid "Save as file" msgstr "Spremi kao datoteku" -#: libraries/display_export.lib.php:133 +#: libraries/display_export.lib.php:127 #, php-format msgid "Save on server in %s directory" msgstr "Spremi na poslužitelju u mapi %s" -#: libraries/display_export.lib.php:141 setup/lib/messages.inc.php:87 +#: libraries/display_export.lib.php:135 setup/lib/messages.inc.php:87 msgid "Overwrite existing file(s)" msgstr "Prepiši postojeće datoteke" -#: libraries/display_export.lib.php:147 +#: libraries/display_export.lib.php:141 msgid "File name template" msgstr "Predložak naziva datoteka" -#: libraries/display_export.lib.php:151 +#: libraries/display_export.lib.php:145 msgid "server name" msgstr "naziv poslužitelja" -#: libraries/display_export.lib.php:154 +#: libraries/display_export.lib.php:148 msgid "database name" msgstr "naziv baze podataka" -#: libraries/display_export.lib.php:157 +#: libraries/display_export.lib.php:151 msgid "table name" msgstr "naziv tablice" -#: libraries/display_export.lib.php:161 +#: libraries/display_export.lib.php:155 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2114,39 +2092,39 @@ msgstr "" "naredbe oblikovanja vremena. Dodatno se mogu dogoditi sljedeća " "preoblikovanja: \"%3$s\". Ostatak teksta bit će zadržan u izvornom obliku." -#: libraries/display_export.lib.php:202 +#: libraries/display_export.lib.php:196 msgid "remember template" msgstr "zapamti predložak" -#: libraries/display_export.lib.php:210 libraries/display_import.lib.php:177 +#: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 #: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 msgid "Character set of the file:" msgstr "Tablica znakova za datoteku:" -#: libraries/display_export.lib.php:235 setup/lib/messages.inc.php:81 +#: libraries/display_export.lib.php:229 setup/lib/messages.inc.php:81 msgid "Compression" msgstr "Kompresija" -#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:196 -#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:529 -#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:574 -#: server_privileges.php:1867 server_processlist.php:74 +#: libraries/display_export.lib.php:234 libraries/display_import.lib.php:196 +#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:528 +#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:573 +#: server_privileges.php:1871 server_processlist.php:74 msgid "None" msgstr "bez kompresije" -#: libraries/display_export.lib.php:247 +#: libraries/display_export.lib.php:241 msgid "\"zipped\"" msgstr "\"zipano\"" -#: libraries/display_export.lib.php:253 +#: libraries/display_export.lib.php:247 msgid "\"gzipped\"" msgstr "\"gzipano\"" -#: libraries/display_export.lib.php:259 +#: libraries/display_export.lib.php:253 msgid "\"bzipped\"" msgstr "\"bzipano\"" -#: libraries/display_export.lib.php:274 libraries/export/sql.php:42 +#: libraries/display_export.lib.php:268 libraries/export/sql.php:42 #: libraries/import/sql.php:31 msgid "SQL compatibility mode" msgstr "Način rada SQL kompatibilnosti" @@ -2181,12 +2159,12 @@ msgid "File uploads are not allowed on this server." msgstr "Učitavanje datoteka nije dopušteno na ovom poslužitelju." #: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 -#: tbl_change.php:1024 +#: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "Mapu koju ste odabrali za potrebe učitavanja nije moguće dohvatiti" #: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 -#: tbl_change.php:1027 +#: tbl_change.php:925 msgid "web server upload directory" msgstr "mapa učitavanja web poslužitelja" @@ -2272,43 +2250,43 @@ msgstr "Veličina papira" msgid "Language" msgstr "Jezik" -#: libraries/display_tbl.lib.php:303 +#: libraries/display_tbl.lib.php:302 #, php-format msgid "%d is not valid row number." msgstr "%d nije valjani broj retka." -#: libraries/display_tbl.lib.php:309 +#: libraries/display_tbl.lib.php:308 #, fuzzy #| msgid "row(s) starting from record #" msgid "row(s) starting from row #" msgstr "redovi koji započinju zapisom #" -#: libraries/display_tbl.lib.php:315 +#: libraries/display_tbl.lib.php:314 msgid "horizontal" msgstr "vodoravno" -#: libraries/display_tbl.lib.php:316 +#: libraries/display_tbl.lib.php:315 msgid "horizontal (rotated headers)" msgstr "vodoravno (okrenuta zaglavlja)" -#: libraries/display_tbl.lib.php:317 +#: libraries/display_tbl.lib.php:316 msgid "vertical" msgstr "uspravno" -#: libraries/display_tbl.lib.php:323 +#: libraries/display_tbl.lib.php:322 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "u načinu %s i ponavljaj zaglavlja nakon %s ćelija" -#: libraries/display_tbl.lib.php:345 +#: libraries/display_tbl.lib.php:344 msgid "This operation could take a long time. Proceed anyway?" msgstr "Ovaj postupak može potrajati dulje vrijeme. Ipak nastaviti?" -#: libraries/display_tbl.lib.php:511 +#: libraries/display_tbl.lib.php:510 msgid "Sort by key" msgstr "Presloži po ključu" -#: libraries/display_tbl.lib.php:554 libraries/export/codegen.php:38 +#: libraries/display_tbl.lib.php:553 libraries/export/codegen.php:38 #: libraries/export/csv.php:29 libraries/export/excel.php:34 #: libraries/export/htmlword.php:28 libraries/export/latex.php:32 #: libraries/export/mediawiki.php:21 libraries/export/ods.php:26 @@ -2318,99 +2296,99 @@ msgstr "Presloži po ključu" #: libraries/export/xlsx.php:26 libraries/export/xml.php:23 #: libraries/export/yaml.php:27 libraries/import.lib.php:1114 #: libraries/import.lib.php:1136 libraries/import/csv.php:31 -#: libraries/import/docsql.php:33 libraries/import/ldi.php:46 +#: libraries/import/docsql.php:32 libraries/import/ldi.php:46 #: libraries/import/ods.php:30 libraries/import/sql.php:19 #: libraries/import/xls.php:25 libraries/import/xlsx.php:25 -#: libraries/import/xml.php:25 tbl_select.php:264 tbl_structure.php:752 +#: libraries/import/xml.php:25 tbl_select.php:263 tbl_structure.php:750 msgid "Options" msgstr "Opcije" -#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:569 +#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:568 msgid "Partial Texts" msgstr "Djelomični tekstovi" -#: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:573 +#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:572 msgid "Full Texts" msgstr "Potpuni tekstovi" -#: libraries/display_tbl.lib.php:586 +#: libraries/display_tbl.lib.php:585 msgid "Relational key" msgstr "Relacijski ključ" -#: libraries/display_tbl.lib.php:587 +#: libraries/display_tbl.lib.php:586 #, fuzzy #| msgid "Relational display field" msgid "Relational display column" msgstr "Polje za prikaz relacija" -#: libraries/display_tbl.lib.php:594 +#: libraries/display_tbl.lib.php:593 msgid "Show binary contents" msgstr "" -#: libraries/display_tbl.lib.php:596 +#: libraries/display_tbl.lib.php:595 msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:598 +#: libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "" -#: libraries/display_tbl.lib.php:606 pmd_general.php:140 tbl_change.php:312 -#: tbl_change.php:318 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:307 +#: tbl_change.php:313 msgid "Hide" msgstr "Sakrij" -#: libraries/display_tbl.lib.php:606 libraries/relation.lib.php:122 -#: libraries/tbl_properties.inc.php:143 transformation_overview.php:46 +#: libraries/display_tbl.lib.php:605 libraries/relation.lib.php:117 +#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46 msgid "Browser transformation" msgstr "Pretvaranje preglednika" -#: libraries/display_tbl.lib.php:1125 libraries/display_tbl.lib.php:1129 -#: libraries/display_tbl.lib.php:1131 +#: libraries/display_tbl.lib.php:1124 libraries/display_tbl.lib.php:1128 +#: libraries/display_tbl.lib.php:1130 msgid "Execute bookmarked query" msgstr "Izvrši favorizirani upit" -#: libraries/display_tbl.lib.php:1144 libraries/display_tbl.lib.php:1156 +#: libraries/display_tbl.lib.php:1143 libraries/display_tbl.lib.php:1155 msgid "The row has been deleted" msgstr "Redak je izbrisan" -#: libraries/display_tbl.lib.php:1183 libraries/display_tbl.lib.php:2055 +#: libraries/display_tbl.lib.php:1182 libraries/display_tbl.lib.php:2014 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "Eliminiraj" -#: libraries/display_tbl.lib.php:1933 +#: libraries/display_tbl.lib.php:1892 msgid "in query" msgstr "unutar upita" -#: libraries/display_tbl.lib.php:1951 +#: libraries/display_tbl.lib.php:1910 msgid "Showing rows" msgstr "Prikazivanje redaka" -#: libraries/display_tbl.lib.php:1961 +#: libraries/display_tbl.lib.php:1920 msgid "total" msgstr "ukupno" -#: libraries/display_tbl.lib.php:1969 sql.php:523 +#: libraries/display_tbl.lib.php:1928 sql.php:522 #, php-format msgid "Query took %01.4f sec" msgstr "Upit je trajao %01.4f sek" -#: libraries/display_tbl.lib.php:2088 libraries/mult_submits.inc.php:112 -#: querywindow.php:115 querywindow.php:119 querywindow.php:122 -#: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:469 +#: libraries/display_tbl.lib.php:2047 libraries/mult_submits.inc.php:112 +#: querywindow.php:114 querywindow.php:118 querywindow.php:121 +#: tbl_structure.php:23 tbl_structure.php:148 tbl_structure.php:467 msgid "Change" msgstr "Promijeni" -#: libraries/display_tbl.lib.php:2158 +#: libraries/display_tbl.lib.php:2117 msgid "Query results operations" msgstr "Operacije rezultata upita" -#: libraries/display_tbl.lib.php:2186 +#: libraries/display_tbl.lib.php:2145 msgid "Print view (with full texts)" msgstr "Prikaz ispisa (s potpunim tekstovima)" -#: libraries/display_tbl.lib.php:2359 +#: libraries/display_tbl.lib.php:2318 msgid "Link not found" msgstr "Veza nije pronađena" @@ -2466,9 +2444,9 @@ msgstr "InnoDB stanje" msgid "Buffer Pool Usage" msgstr "Iskoristivost međuspremnika" -#: libraries/engines/innodb.lib.php:168 server_databases.php:136 -#: server_databases.php:304 server_status.php:524 server_status.php:585 -#: server_status.php:606 tbl_printview.php:349 tbl_structure.php:695 +#: libraries/engines/innodb.lib.php:168 server_databases.php:134 +#: server_databases.php:302 server_status.php:524 server_status.php:585 +#: server_status.php:606 tbl_printview.php:348 tbl_structure.php:693 msgid "Total" msgstr "Ukupno" @@ -2606,6 +2584,88 @@ msgstr "" "tijekom naredbe REPAIR TABLE ili tijekom izrade indeksa naredbama CREATE " "INDEX ili ALTER TABLE." +#: libraries/engines/pbms.lib.php:31 +#, fuzzy +#| msgid "Garbage threshold" +msgid "Garbage Threshold" +msgstr "Najveća veličina otpada" + +#: libraries/engines/pbms.lib.php:32 +#, fuzzy +#| msgid "" +#| "The percentage of garbage in a data log file before it is compacted. This " +#| "is a value between 1 and 99. The default is 50." +msgid "The percentage of garbage in a repository file before it is compacted." +msgstr "" +"Postotak otpada u datoteci zapisnika podataka prije sređivanja. Vrijednost " +"može biti od 1 do 99. Zadana vrijednost je 50." + +#: libraries/engines/pbms.lib.php:36 libraries/replication_gui.lib.php:69 +#: server_synchronize.php:1161 +#, fuzzy +msgid "Port" +msgstr "Presloži" + +#: libraries/engines/pbms.lib.php:37 +msgid "" +"The port for the PBMS stream-based communications. Setting this value to 0 " +"will disable HTTP communication with the daemon." +msgstr "" + +#: libraries/engines/pbms.lib.php:41 +msgid "Repository Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:42 +msgid "" +"The maximum size of a BLOB repository file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:46 +msgid "Temp Blob Timeout" +msgstr "" + +#: libraries/engines/pbms.lib.php:47 +msgid "" +"The timeout, in seconds, for temporary BLOBs. Uploaded BLOB data is removed " +"after this time, unless they are referenced by a record in the database." +msgstr "" + +#: libraries/engines/pbms.lib.php:51 +#, fuzzy +#| msgid "Log file threshold" +msgid "Temp Log Threshold" +msgstr "Najveća veličina datoteke zapisnika" + +#: libraries/engines/pbms.lib.php:52 +msgid "" +"The maximum size of a temporary BLOB log file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:56 +msgid "Max Keep Alive" +msgstr "" + +#: libraries/engines/pbms.lib.php:57 +msgid "" +"The timeout for inactive connection with the keep-alive flag set. After this " +"time the connection will be closed. The time-out is in milliseconds (1/1000)." +msgstr "" + +#: libraries/engines/pbms.lib.php:61 +msgid "Metadata Headers" +msgstr "" + +#: libraries/engines/pbms.lib.php:62 +msgid "" +"A \":\" delimited list of metadata headers to be used to initialize the " +"pbms_metadata_header table when a database is created." +msgstr "" + #: libraries/engines/pbxt.lib.php:22 msgid "Index cache size" msgstr "Veličina pohrane indeksa" @@ -2757,7 +2817,7 @@ msgstr "" "broj." #: libraries/export/codegen.php:36 setup/lib/messages.inc.php:85 -#: tbl_printview.php:374 tbl_structure.php:736 +#: tbl_printview.php:373 tbl_structure.php:734 msgid "Format" msgstr "Oblikovanje" @@ -2828,9 +2888,9 @@ msgstr "Microsoft Word 2000" #: libraries/export/htmlword.php:23 libraries/export/latex.php:59 #: libraries/export/latex.php:205 libraries/export/odt.php:47 #: libraries/export/sql.php:105 libraries/export/sql.php:865 -#: libraries/export/texytext.php:27 server_databases.php:126 -#: server_privileges.php:576 server_replication.php:315 tbl_printview.php:315 -#: tbl_structure.php:664 +#: libraries/export/texytext.php:27 server_databases.php:124 +#: server_privileges.php:575 server_replication.php:314 tbl_printview.php:314 +#: tbl_structure.php:662 msgid "Data" msgstr "Podaci" @@ -2845,7 +2905,6 @@ msgid "Table structure for table" msgstr "Tablična struktura za tablicu" #: libraries/export/latex.php:13 -#| msgid "Content of table __TABLE__" msgid "Content of table @TABLE@" msgstr "Sadržaj tablice @TABLE@" @@ -2854,7 +2913,6 @@ msgid "(continued)" msgstr "(nastavljeno)" #: libraries/export/latex.php:15 -#| msgid "Structure of table __TABLE__" msgid "Structure of table @TABLE@" msgstr "Struktura tablice @TABLE@" @@ -2879,13 +2937,13 @@ msgid "Label key" msgstr "Ključ oznake" #: libraries/export/latex.php:46 libraries/export/odt.php:34 -#: libraries/export/sql.php:90 tbl_relation.php:398 +#: libraries/export/sql.php:90 tbl_relation.php:396 msgid "Relations" msgstr "Relacije" #: libraries/export/latex.php:52 libraries/export/odt.php:40 #: libraries/export/odt.php:317 libraries/export/sql.php:94 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "MIME vrsta" @@ -2893,10 +2951,10 @@ msgstr "MIME vrsta" #: libraries/export/xml.php:101 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1529 server_privileges.php:2061 -#: server_processlist.php:54 server_synchronize.php:1158 +#: libraries/replication_gui.lib.php:331 server_privileges.php:730 +#: server_privileges.php:733 server_privileges.php:789 +#: server_privileges.php:1533 server_privileges.php:2065 +#: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "Računalo" @@ -3089,8 +3147,8 @@ msgstr "Vrsta izvoza" msgid "Export contents" msgstr "Vrsta izvoza" -#: libraries/footer.inc.php:182 libraries/footer.inc.php:193 -#: libraries/footer.inc.php:196 +#: libraries/footer.inc.php:180 libraries/footer.inc.php:191 +#: libraries/footer.inc.php:194 msgid "Open new phpMyAdmin window" msgstr "Otvori novi phpMyAdmin prozor" @@ -3107,7 +3165,7 @@ msgstr "SQL rezultat" msgid "Generated by" msgstr "Generirano s" -#: libraries/import.lib.php:151 sql.php:519 tbl_change.php:180 +#: libraries/import.lib.php:151 sql.php:518 tbl_change.php:175 #: 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)." @@ -3166,7 +3224,7 @@ msgstr "Ignoriraj istovjetne redove" msgid "Column names in first row" msgstr "" -#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:501 +#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:500 #: view_create.php:147 msgid "Column names" msgstr "Nazivi stupaca" @@ -3193,12 +3251,12 @@ msgstr "Neispravno oblikovanje u CSV unosu unutar retka %d." msgid "Invalid column count in CSV input on line %d." msgstr "Neispravan broj polja u CSV unosu unutar retka %d." -#: libraries/import/docsql.php:28 +#: libraries/import/docsql.php:27 msgid "DocSQL" msgstr "DocSQL" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 -#: server_synchronize.php:427 server_synchronize.php:870 +#: libraries/import/docsql.php:30 libraries/tbl_properties.inc.php:616 +#: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "Naziv tablice" @@ -3255,26 +3313,26 @@ msgstr "bez kompresije" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:512 -#: tbl_structure.php:28 tbl_structure.php:152 tbl_structure.php:156 -#: tbl_structure.php:472 +#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:511 +#: tbl_structure.php:27 tbl_structure.php:151 tbl_structure.php:155 +#: tbl_structure.php:470 msgid "Primary" msgstr "Primarni" #: libraries/mult_submits.inc.php:97 libraries/tbl_properties.inc.php:115 -#: libraries/tbl_properties.inc.php:524 tbl_printview.php:324 -#: tbl_structure.php:30 tbl_structure.php:153 tbl_structure.php:157 -#: tbl_structure.php:474 tbl_structure.php:672 +#: libraries/tbl_properties.inc.php:523 tbl_printview.php:323 +#: tbl_structure.php:29 tbl_structure.php:152 tbl_structure.php:156 +#: tbl_structure.php:472 tbl_structure.php:670 msgid "Index" msgstr "Indeks" -#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:530 -#: tbl_structure.php:34 tbl_structure.php:155 tbl_structure.php:159 -#: tbl_structure.php:477 +#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:529 +#: tbl_structure.php:33 tbl_structure.php:154 tbl_structure.php:158 +#: tbl_structure.php:475 msgid "Fulltext" msgstr "Puni tekst" -#: libraries/mult_submits.inc.php:434 tbl_replace.php:330 +#: libraries/mult_submits.inc.php:433 tbl_replace.php:330 msgid "No change" msgstr "Bez izmjena" @@ -3282,190 +3340,190 @@ msgstr "Bez izmjena" msgid "Charset" msgstr "Tablica znakova" -#: libraries/mysql_charsets.lib.php:210 libraries/mysql_charsets.lib.php:411 -#: tbl_change.php:515 +#: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 +#: tbl_change.php:510 msgid "Binary" msgstr "Binarno" -#: libraries/mysql_charsets.lib.php:222 +#: libraries/mysql_charsets.lib.php:214 msgid "Bulgarian" msgstr "Bugarski" -#: libraries/mysql_charsets.lib.php:226 libraries/mysql_charsets.lib.php:351 +#: libraries/mysql_charsets.lib.php:218 libraries/mysql_charsets.lib.php:343 msgid "Simplified Chinese" msgstr "Kineski, pojednostavljen" -#: libraries/mysql_charsets.lib.php:228 libraries/mysql_charsets.lib.php:371 +#: libraries/mysql_charsets.lib.php:220 libraries/mysql_charsets.lib.php:363 msgid "Traditional Chinese" msgstr "Kineski, tradicionalan" -#: libraries/mysql_charsets.lib.php:232 libraries/mysql_charsets.lib.php:418 +#: libraries/mysql_charsets.lib.php:224 libraries/mysql_charsets.lib.php:410 msgid "case-insensitive" msgstr "nebitna veličina znakova" -#: libraries/mysql_charsets.lib.php:235 libraries/mysql_charsets.lib.php:420 +#: libraries/mysql_charsets.lib.php:227 libraries/mysql_charsets.lib.php:412 msgid "case-sensitive" msgstr "veličina znakova je važna" -#: libraries/mysql_charsets.lib.php:238 +#: libraries/mysql_charsets.lib.php:230 msgid "Croatian" msgstr "Hrvatski" -#: libraries/mysql_charsets.lib.php:241 +#: libraries/mysql_charsets.lib.php:233 msgid "Czech" msgstr "Češki" -#: libraries/mysql_charsets.lib.php:244 +#: libraries/mysql_charsets.lib.php:236 msgid "Danish" msgstr "Danski" -#: libraries/mysql_charsets.lib.php:247 +#: libraries/mysql_charsets.lib.php:239 msgid "English" msgstr "Engleski" -#: libraries/mysql_charsets.lib.php:250 +#: libraries/mysql_charsets.lib.php:242 msgid "Esperanto" msgstr "Esperanto" -#: libraries/mysql_charsets.lib.php:253 +#: libraries/mysql_charsets.lib.php:245 msgid "Estonian" msgstr "Estonski" -#: libraries/mysql_charsets.lib.php:256 libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:248 libraries/mysql_charsets.lib.php:251 msgid "German" msgstr "Njemački" -#: libraries/mysql_charsets.lib.php:256 +#: libraries/mysql_charsets.lib.php:248 msgid "dictionary" msgstr "rječnik" -#: libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:251 msgid "phone book" msgstr "telefonski imenik" -#: libraries/mysql_charsets.lib.php:262 +#: libraries/mysql_charsets.lib.php:254 msgid "Hungarian" msgstr "Mađarski" -#: libraries/mysql_charsets.lib.php:265 +#: libraries/mysql_charsets.lib.php:257 msgid "Icelandic" msgstr "Islandski" -#: libraries/mysql_charsets.lib.php:268 libraries/mysql_charsets.lib.php:358 +#: libraries/mysql_charsets.lib.php:260 libraries/mysql_charsets.lib.php:350 msgid "Japanese" msgstr "Japanski" -#: libraries/mysql_charsets.lib.php:271 +#: libraries/mysql_charsets.lib.php:263 msgid "Latvian" msgstr "Latvijski" -#: libraries/mysql_charsets.lib.php:274 +#: libraries/mysql_charsets.lib.php:266 msgid "Lithuanian" msgstr "Litavski" -#: libraries/mysql_charsets.lib.php:277 libraries/mysql_charsets.lib.php:380 +#: libraries/mysql_charsets.lib.php:269 libraries/mysql_charsets.lib.php:372 msgid "Korean" msgstr "Korejski" -#: libraries/mysql_charsets.lib.php:280 +#: libraries/mysql_charsets.lib.php:272 msgid "Persian" msgstr "Perzijski" -#: libraries/mysql_charsets.lib.php:283 +#: libraries/mysql_charsets.lib.php:275 msgid "Polish" msgstr "Poljski" -#: libraries/mysql_charsets.lib.php:286 libraries/mysql_charsets.lib.php:334 +#: libraries/mysql_charsets.lib.php:278 libraries/mysql_charsets.lib.php:326 msgid "West European" msgstr "Zapadno europski" -#: libraries/mysql_charsets.lib.php:289 +#: libraries/mysql_charsets.lib.php:281 msgid "Romanian" msgstr "Rumunjski" -#: libraries/mysql_charsets.lib.php:292 +#: libraries/mysql_charsets.lib.php:284 msgid "Slovak" msgstr "Slovački" -#: libraries/mysql_charsets.lib.php:295 +#: libraries/mysql_charsets.lib.php:287 msgid "Slovenian" msgstr "Slovenski" -#: libraries/mysql_charsets.lib.php:298 +#: libraries/mysql_charsets.lib.php:290 msgid "Spanish" msgstr "Španjolski" -#: libraries/mysql_charsets.lib.php:301 +#: libraries/mysql_charsets.lib.php:293 msgid "Traditional Spanish" msgstr "Španjolski, tradicionalan" -#: libraries/mysql_charsets.lib.php:304 libraries/mysql_charsets.lib.php:401 +#: libraries/mysql_charsets.lib.php:296 libraries/mysql_charsets.lib.php:393 msgid "Swedish" msgstr "Švedski" -#: libraries/mysql_charsets.lib.php:307 libraries/mysql_charsets.lib.php:404 +#: libraries/mysql_charsets.lib.php:299 libraries/mysql_charsets.lib.php:396 msgid "Thai" msgstr "Thai" -#: libraries/mysql_charsets.lib.php:310 libraries/mysql_charsets.lib.php:398 +#: libraries/mysql_charsets.lib.php:302 libraries/mysql_charsets.lib.php:390 msgid "Turkish" msgstr "Turski" -#: libraries/mysql_charsets.lib.php:313 libraries/mysql_charsets.lib.php:395 +#: libraries/mysql_charsets.lib.php:305 libraries/mysql_charsets.lib.php:387 msgid "Ukrainian" msgstr "Ukrajinski" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 msgid "Unicode" msgstr "Unicode" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 -#: libraries/mysql_charsets.lib.php:334 libraries/mysql_charsets.lib.php:341 -#: libraries/mysql_charsets.lib.php:363 libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 +#: libraries/mysql_charsets.lib.php:326 libraries/mysql_charsets.lib.php:333 +#: libraries/mysql_charsets.lib.php:355 libraries/mysql_charsets.lib.php:366 msgid "multilingual" msgstr "višejezično" -#: libraries/mysql_charsets.lib.php:341 +#: libraries/mysql_charsets.lib.php:333 msgid "Central European" msgstr "Srednjoeuropski" -#: libraries/mysql_charsets.lib.php:346 +#: libraries/mysql_charsets.lib.php:338 msgid "Russian" msgstr "Ruski" -#: libraries/mysql_charsets.lib.php:363 +#: libraries/mysql_charsets.lib.php:355 msgid "Baltic" msgstr "Baltički" -#: libraries/mysql_charsets.lib.php:368 +#: libraries/mysql_charsets.lib.php:360 msgid "Armenian" msgstr "Armenski" -#: libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:366 msgid "Cyrillic" msgstr "Ćirilica" -#: libraries/mysql_charsets.lib.php:377 +#: libraries/mysql_charsets.lib.php:369 msgid "Arabic" msgstr "Arapski" -#: libraries/mysql_charsets.lib.php:383 +#: libraries/mysql_charsets.lib.php:375 msgid "Hebrew" msgstr "Hebrejski" -#: libraries/mysql_charsets.lib.php:386 +#: libraries/mysql_charsets.lib.php:378 msgid "Georgian" msgstr "Gruzijski" -#: libraries/mysql_charsets.lib.php:389 +#: libraries/mysql_charsets.lib.php:381 msgid "Greek" msgstr "Grčki" -#: libraries/mysql_charsets.lib.php:392 +#: libraries/mysql_charsets.lib.php:384 msgid "Czech-Slovak" msgstr "Češki ili Slovački" -#: libraries/mysql_charsets.lib.php:407 libraries/mysql_charsets.lib.php:414 +#: libraries/mysql_charsets.lib.php:399 libraries/mysql_charsets.lib.php:406 msgid "unknown" msgstr "nepoznato" @@ -3491,68 +3549,68 @@ msgstr "Prozor za upite" msgid "This format has no options" msgstr "Ovaj oblik nema raspoložive opcije" -#: libraries/relation.lib.php:82 +#: libraries/relation.lib.php:77 msgid "not OK" msgstr "nije OK" -#: libraries/relation.lib.php:86 pmd_general.php:339 +#: libraries/relation.lib.php:81 pmd_general.php:339 msgid "OK" msgstr "U redu " -#: libraries/relation.lib.php:87 +#: libraries/relation.lib.php:82 msgid "Enabled" msgstr "Omogućeno" -#: libraries/relation.lib.php:110 +#: libraries/relation.lib.php:105 msgid "Display Features" msgstr "Osobine prikaza" -#: libraries/relation.lib.php:116 +#: libraries/relation.lib.php:111 msgid "Creation of PDFs" msgstr "Izrada PDF datoteka" -#: libraries/relation.lib.php:120 +#: libraries/relation.lib.php:115 msgid "Displaying Column Comments" msgstr "Prikazivanje stupca komentara" -#: libraries/relation.lib.php:125 +#: libraries/relation.lib.php:120 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "Pogledajte dokumentaciju radi uputa o ažuriranju tablice column_comments." -#: libraries/relation.lib.php:130 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 msgid "Bookmarked SQL query" msgstr "Favorizirani SQL upit" -#: libraries/relation.lib.php:134 querywindow.php:99 querywindow.php:207 +#: libraries/relation.lib.php:129 querywindow.php:98 querywindow.php:205 msgid "SQL history" msgstr "SQL povijest" -#: libraries/relation.lib.php:146 +#: libraries/relation.lib.php:141 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:148 +#: libraries/relation.lib.php:143 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" -#: libraries/relation.lib.php:149 +#: libraries/relation.lib.php:144 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:150 +#: libraries/relation.lib.php:145 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:151 +#: libraries/relation.lib.php:146 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1158 +#: libraries/relation.lib.php:1153 msgid "no description" msgstr "bez opisa" @@ -3560,7 +3618,7 @@ msgstr "bez opisa" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:53 server_replication.php:346 +#: libraries/replication_gui.lib.php:53 server_replication.php:345 msgid "Change or reconfigure master server" msgstr "" @@ -3572,17 +3630,12 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:711 -#: server_privileges.php:714 server_privileges.php:721 -#: server_synchronize.php:1170 +#: libraries/replication_gui.lib.php:261 server_privileges.php:710 +#: server_privileges.php:713 server_privileges.php:720 +#: server_synchronize.php:1169 msgid "User name" msgstr "Korisničko ime" -#: libraries/replication_gui.lib.php:69 server_synchronize.php:1162 -#, fuzzy -msgid "Port" -msgstr "Presloži" - #: libraries/replication_gui.lib.php:105 #, fuzzy msgid "Master status" @@ -3599,8 +3652,8 @@ msgid "Variable" msgstr "Varijabla" #: libraries/replication_gui.lib.php:117 server_status.php:737 -#: tbl_change.php:322 tbl_printview.php:368 tbl_select.php:137 -#: tbl_structure.php:728 +#: tbl_change.php:317 tbl_printview.php:367 tbl_select.php:136 +#: tbl_structure.php:726 msgid "Value" msgstr "Vrijednost" @@ -3614,38 +3667,38 @@ msgid "" "this list." msgstr "" -#: libraries/replication_gui.lib.php:242 server_replication.php:193 +#: libraries/replication_gui.lib.php:242 server_replication.php:192 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:256 server_privileges.php:716 +#: libraries/replication_gui.lib.php:256 server_privileges.php:715 msgid "Any user" msgstr "Bilo koji korisnik" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1920 server_privileges.php:1950 +#: libraries/replication_gui.lib.php:348 server_privileges.php:716 +#: server_privileges.php:783 server_privileges.php:807 +#: server_privileges.php:1924 server_privileges.php:1954 msgid "Use text field" msgstr "Upotrijebi tekstualno polje" -#: libraries/replication_gui.lib.php:304 server_privileges.php:764 +#: libraries/replication_gui.lib.php:304 server_privileges.php:763 msgid "Any host" msgstr "Bilo koje računalo" -#: libraries/replication_gui.lib.php:308 server_privileges.php:768 +#: libraries/replication_gui.lib.php:308 server_privileges.php:767 msgid "Local" msgstr "Lokalno" -#: libraries/replication_gui.lib.php:314 server_privileges.php:773 +#: libraries/replication_gui.lib.php:314 server_privileges.php:772 msgid "This Host" msgstr "Ovo računalo" -#: libraries/replication_gui.lib.php:320 server_privileges.php:779 +#: libraries/replication_gui.lib.php:320 server_privileges.php:778 msgid "Use Host Table" msgstr "Upotrijebi tablicu poslužitelja" -#: libraries/replication_gui.lib.php:333 server_privileges.php:792 +#: libraries/replication_gui.lib.php:333 server_privileges.php:791 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3671,8 +3724,8 @@ msgstr "Nepoznati jezik: %1$s." msgid "Servers" msgstr "Poslužitelji" -#: libraries/server_links.inc.php:52 server_engines.php:111 -#: server_engines.php:115 server_status.php:414 test/theme.php:104 +#: libraries/server_links.inc.php:52 server_engines.php:125 +#: server_engines.php:129 server_status.php:414 test/theme.php:104 msgid "Variables" msgstr "Varijable" @@ -3693,12 +3746,12 @@ msgstr "Binarni zapisnik" msgid "Processes" msgstr "Procesi" -#: libraries/server_links.inc.php:91 server_synchronize.php:1091 -#: server_synchronize.php:1099 +#: libraries/server_links.inc.php:91 server_synchronize.php:1090 +#: server_synchronize.php:1098 msgid "Synchronize" msgstr "" -#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1109 +#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1108 #, fuzzy msgid "Source database" msgstr "Traži u bazi podataka" @@ -3718,7 +3771,7 @@ msgstr "Web poslužitelj" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1111 +#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1110 #, fuzzy msgid "Target database" msgstr "Traži u bazi podataka" @@ -3739,11 +3792,11 @@ msgstr "Pokreni SQL upit na bazi podataka %s" msgid "Columns" msgstr "Nazivi stupaca" -#: libraries/sql_query_form.lib.php:342 sql.php:664 sql.php:665 sql.php:682 +#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "Favoriziraj ovaj SQL upit" -#: libraries/sql_query_form.lib.php:349 sql.php:676 +#: libraries/sql_query_form.lib.php:349 sql.php:669 msgid "Let every user access this bookmark" msgstr "Neka svi korisnici imaju pristup ovom favoritu" @@ -3838,12 +3891,12 @@ msgstr "" "SQL validator nije bilo moguće pokrenuti. Provjerite jeste li instalirali " "potrebna PHP proširenja, na način opisan u %sdokumentaciji%s." -#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:139 -#: libraries/tbl_links.inc.php:140 +#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 +#: libraries/tbl_links.inc.php:139 msgid "Table seems to be empty!" msgstr "Tablica izgleda praznom!" -#: libraries/tbl_links.inc.php:148 +#: libraries/tbl_links.inc.php:147 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" @@ -3878,12 +3931,12 @@ msgstr "" "Za zadane vrijednosti unesite samo jednu vrijednost, bez kosih crta ili " "navodnika, u sljedećem obliku: a" -#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1263 -#: pdf_schema.php:1284 tbl_printview.php:142 tbl_structure.php:179 +#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1262 +#: pdf_schema.php:1283 tbl_printview.php:141 tbl_structure.php:178 msgid "Attributes" msgstr "Atributi" -#: libraries/tbl_properties.inc.php:136 +#: libraries/tbl_properties.inc.php:135 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -3892,11 +3945,11 @@ msgstr "" "Za popis raspoloživih opcija preoblikovanja i njihovih MIME vrsta " "oblikovanja, pritisnite %sopcije preoblikovanja%s" -#: libraries/tbl_properties.inc.php:144 +#: libraries/tbl_properties.inc.php:143 msgid "Transformation options" msgstr "Opcije preoblikovanja" -#: libraries/tbl_properties.inc.php:145 +#: libraries/tbl_properties.inc.php:144 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
                            If you ever need to put a backslash (\"\\\") or a single " @@ -3908,18 +3961,18 @@ msgstr "" "jednostruki navodnik (\"'\") unutar ovih vrijednosti, ispred znaka stavite " "lijevu kosu crtu (na primjer: '\\\\xyz' ili 'a\\'B')." -#: libraries/tbl_properties.inc.php:392 +#: libraries/tbl_properties.inc.php:391 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "bez kompresije" -#: libraries/tbl_properties.inc.php:393 +#: libraries/tbl_properties.inc.php:392 msgid "As defined:" msgstr "Kako je definirano:" -#: libraries/tbl_properties.inc.php:579 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:578 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
                            Please ask the " @@ -3928,29 +3981,29 @@ msgstr "" "Za ovo preoblikovanje ne postoji raspoloživ opis.
                            Molimo da od autora " "zatražite objašnjenje rada %s ." -#: libraries/tbl_properties.inc.php:725 server_engines.php:57 -#: tbl_operations.php:354 +#: libraries/tbl_properties.inc.php:724 server_engines.php:56 +#: tbl_operations.php:352 msgid "Storage Engine" msgstr "Pogon pohrane" -#: libraries/tbl_properties.inc.php:754 +#: libraries/tbl_properties.inc.php:753 msgid "PARTITION definition" msgstr "Definicija PARTICIJE" -#: libraries/tbl_properties.inc.php:775 pdf_pages.php:502 +#: libraries/tbl_properties.inc.php:774 pdf_pages.php:501 #: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214 -#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1124 tbl_indexes.php:247 -#: tbl_relation.php:565 +#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1022 tbl_indexes.php:246 +#: tbl_relation.php:563 msgid "Save" msgstr "Spremi" -#: libraries/tbl_properties.inc.php:779 tbl_structure.php:541 +#: libraries/tbl_properties.inc.php:778 tbl_structure.php:539 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "Dodaj %s polja" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:535 +#: libraries/tbl_properties.inc.php:782 tbl_structure.php:533 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -4157,8 +4210,8 @@ msgstr "Sučelje" msgid "Custom color" msgstr "Prilagođena boja" -#: main.php:162 pdf_pages.php:362 setup/lib/FormDisplay.tpl.php:216 -#: tbl_change.php:1173 +#: main.php:162 pdf_pages.php:361 setup/lib/FormDisplay.tpl.php:216 +#: tbl_change.php:1071 msgid "Reset" msgstr "Povrat" @@ -4166,8 +4219,8 @@ msgstr "Povrat" msgid "Protocol version" msgstr "Verzija protokola" -#: main.php:188 server_privileges.php:1381 server_privileges.php:1528 -#: server_privileges.php:1642 server_privileges.php:2060 +#: main.php:188 server_privileges.php:1385 server_privileges.php:1532 +#: server_privileges.php:1646 server_privileges.php:2064 #: server_processlist.php:53 msgid "User" msgstr "Korisnik" @@ -4251,14 +4304,23 @@ msgid "" "has been configured." msgstr "" -#: main.php:330 +#: main.php:314 +#, php-format +msgid "" +"The additional features for working with linked tables have been " +"deactivated. To find out why click %shere%s." +msgstr "" +"Dodatne osobine za rad s relacijski tablicama su isključene. Kako biste " +"saznali razloge, pritisnite %sovdje%s." + +#: main.php:329 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:345 +#: main.php:344 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -4267,7 +4329,7 @@ msgstr "" "Verzija %s vaše PHP MySQL biblioteke razlikuje se oda vaše verzije %s MySQL " "poslužitelja. Ovo bi moglo prouzrokovati nepredviđeno ponašanje." -#: main.php:357 +#: main.php:356 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -4280,70 +4342,70 @@ msgstr "" msgid "Reload navigation frame" msgstr "" -#: navigation.php:204 server_databases.php:370 server_synchronize.php:1190 +#: navigation.php:203 server_databases.php:368 server_synchronize.php:1189 msgid "No databases" msgstr "Nema baza podataka" -#: navigation.php:298 +#: navigation.php:297 #, fuzzy msgid "Filter" msgstr "Datoteke" -#: navigation.php:299 setup/frames/index.inc.php:218 +#: navigation.php:298 setup/frames/index.inc.php:218 #: setup/lib/messages.inc.php:41 #, fuzzy msgid "Clear" msgstr "Kalendar" -#: navigation.php:330 navigation.php:331 +#: navigation.php:329 navigation.php:330 #, fuzzy #| msgid "Create table" msgctxt "short form" msgid "Create table" msgstr "Izradi tablicu" -#: navigation.php:333 navigation.php:495 +#: navigation.php:332 navigation.php:494 msgid "Please select a database" msgstr "Odaberite bazu podataka" -#: pdf_pages.php:40 pdf_pages.php:46 pdf_pages.php:52 pdf_pages.php:57 +#: pdf_pages.php:39 pdf_pages.php:45 pdf_pages.php:51 pdf_pages.php:56 #, php-format msgid "%s table not found or not set in %s" msgstr "tablica %s nije pronađena ili nije zadana u %s" -#: pdf_pages.php:265 +#: pdf_pages.php:264 msgid "Please choose a page to edit" msgstr "Odaberite tablicu za uređivanje" -#: pdf_pages.php:303 pmd_pdf.php:113 +#: pdf_pages.php:302 pmd_pdf.php:111 msgid "Create a page" msgstr "Izradi novu stranicu" -#: pdf_pages.php:309 +#: pdf_pages.php:308 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Broj stranice:" -#: pdf_pages.php:313 +#: pdf_pages.php:312 #, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "Automatski raspored" -#: pdf_pages.php:315 +#: pdf_pages.php:314 msgid "Internal relations" msgstr "Interne relacije" -#: pdf_pages.php:338 +#: pdf_pages.php:337 msgid "Select Tables" msgstr "Odaberite tablice" -#: pdf_pages.php:361 +#: pdf_pages.php:360 msgid "Toggle scratchboard" msgstr "Uključi bilješke" -#: pdf_pages.php:524 +#: pdf_pages.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -4351,37 +4413,37 @@ msgstr "" "Trenutna stranica sadrži reference prema tablicama koje više ne postoje. " "Želite li izbrisati te reference?" -#: pdf_schema.php:635 +#: pdf_schema.php:634 #, fuzzy, php-format #| msgid "The \"%s\" table doesn't exist!" msgid "The %s table doesn't exist!" msgstr "Tablica \"%s\" ne postoji!" -#: pdf_schema.php:671 +#: pdf_schema.php:670 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Konfigurirajte koordinate tablice %s" -#: pdf_schema.php:994 +#: pdf_schema.php:993 #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" msgstr "Shema \"%s\" baza podataka - stranica %s" -#: pdf_schema.php:1012 +#: pdf_schema.php:1011 msgid "No tables" msgstr "Nema tablica" -#: pdf_schema.php:1031 pdf_schema.php:1140 +#: pdf_schema.php:1030 pdf_schema.php:1139 msgid "Relational schema" msgstr "Shema relacija" -#: pdf_schema.php:1115 +#: pdf_schema.php:1114 msgid "Table of contents" msgstr "Sadržaj tablice" -#: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:145 -#: tbl_structure.php:182 tbl_tracking.php:277 +#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 +#: tbl_structure.php:181 tbl_tracking.php:272 msgid "Extra" msgstr "Dodatno" @@ -4393,7 +4455,7 @@ msgstr "Prikaži/sakrij lijevi izbornik" msgid "Save position" msgstr "Spremi položaj" -#: pmd_general.php:70 server_synchronize.php:428 server_synchronize.php:871 +#: pmd_general.php:70 server_synchronize.php:427 server_synchronize.php:870 msgid "Create table" msgstr "Izradi tablicu" @@ -4472,32 +4534,32 @@ msgstr "" "ili uklonili opciju polja za prikazivanje pritisnite ikonu \"Odaberite polje " "za prikazivanje\", a zatim pritisnite odgovarajući naziv polja." -#: pmd_pdf.php:62 +#: pmd_pdf.php:60 #, fuzzy msgid "Page has been created" msgstr "Tablica %1$s je izrađena." -#: pmd_pdf.php:64 +#: pmd_pdf.php:62 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:84 +#: pmd_pdf.php:82 msgid "Export/Import to scale" msgstr "Uvoz / Izvor prema omjeru" -#: pmd_pdf.php:88 +#: pmd_pdf.php:86 msgid "recommended" msgstr "preporučeno" -#: pmd_pdf.php:93 +#: pmd_pdf.php:91 msgid "to/from page" msgstr "stranica od / prema" -#: querywindow.php:94 +#: querywindow.php:93 msgid "Import files" msgstr "Uvezi datoteke" -#: querywindow.php:105 +#: querywindow.php:104 msgid "All" msgstr "Sve" @@ -4543,66 +4605,66 @@ msgstr "Podaci" msgid "Character Sets and Collations" msgstr "Tablica znakova i uspoređivanja" -#: server_databases.php:51 +#: server_databases.php:49 msgid "No databases selected." msgstr "Nema odabrane baze podataka." -#: server_databases.php:62 +#: server_databases.php:60 #, php-format msgid "%s databases have been dropped successfully." msgstr "Baza podataka %s uspješno je odbačena." -#: server_databases.php:87 +#: server_databases.php:85 msgid "Databases statistics" msgstr "Statistike baza podataka" -#: server_databases.php:116 server_status.php:370 +#: server_databases.php:114 server_status.php:370 #: setup/lib/messages.inc.php:114 msgid "Tables" msgstr "Tablice" -#: server_databases.php:194 server_replication.php:180 -#: server_replication.php:208 +#: server_databases.php:192 server_replication.php:179 +#: server_replication.php:207 msgid "Master replication" msgstr "" -#: server_databases.php:196 server_replication.php:247 +#: server_databases.php:194 server_replication.php:246 msgid "Slave replication" msgstr "" -#: server_databases.php:229 +#: server_databases.php:227 #, fuzzy msgid "Jump to database" msgstr "Nema baza podataka" -#: server_databases.php:266 +#: server_databases.php:264 msgid "Not replicated" msgstr "" -#: server_databases.php:272 +#: server_databases.php:270 #, fuzzy #| msgid "Replication" msgid "Replicated" msgstr "Replikacija" -#: server_databases.php:288 +#: server_databases.php:286 #, php-format msgid "Check privileges for database "%s"." msgstr "Provjeri privilegije za bazu podataka \"%s\"." -#: server_databases.php:292 server_databases.php:293 +#: server_databases.php:290 server_databases.php:291 msgid "Check Privileges" msgstr "Provjeri privilegije" -#: server_databases.php:357 server_databases.php:358 +#: server_databases.php:355 server_databases.php:356 msgid "Enable Statistics" msgstr "Omogući statistike" -#: server_databases.php:361 server_databases.php:362 +#: server_databases.php:359 server_databases.php:360 msgid "Disable Statistics" msgstr "Onemogući statistike" -#: server_databases.php:365 +#: server_databases.php:363 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -4610,122 +4672,122 @@ msgstr "" "Napomena: Omogućavanja statistika baze podataka može prouzrokovati izuzetno " "velik promet između web poslužitelja i MySQL poslužitelja." -#: server_engines.php:48 +#: server_engines.php:47 msgid "Storage Engines" msgstr "Pogoni pohrane" -#: server_export.php:20 +#: server_export.php:18 msgid "View dump (schema) of databases" msgstr "Prikaži ispis (shemu) baza podataka" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:23 server_privileges.php:265 msgid "Includes all privileges except GRANT." msgstr "Obuhvaća sve privilegije osim GRANT (Podari)." -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:24 server_privileges.php:191 +#: server_privileges.php:514 msgid "Allows altering the structure of existing tables." msgstr "Dopušta izmjenu strukture postojećih tablice." -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:25 server_privileges.php:207 +#: server_privileges.php:520 msgid "Allows altering and dropping stored routines." msgstr "Dopušta izmjenu i odbacivanje pohranjenih rutina." -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:26 server_privileges.php:183 +#: server_privileges.php:513 msgid "Allows creating new databases and tables." msgstr "Dopušta izradu novih baze podataka i tablice." -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:27 server_privileges.php:206 +#: server_privileges.php:519 msgid "Allows creating stored routines." msgstr "Dopušta izradu pohranjenih rutina." -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:513 msgid "Allows creating new tables." msgstr "Dopušta izradu novih tablica." -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:29 server_privileges.php:194 +#: server_privileges.php:517 msgid "Allows creating temporary tables." msgstr "Dopušta izradu privremenih tablica." -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:30 server_privileges.php:208 +#: server_privileges.php:553 msgid "Allows creating, dropping and renaming user accounts." msgstr "Dopušta izradu, odbacivanje i preimenovanje korisničkih naloga." -#: server_privileges.php:32 server_privileges.php:199 -#: server_privileges.php:203 server_privileges.php:526 -#: server_privileges.php:530 +#: server_privileges.php:31 server_privileges.php:198 +#: server_privileges.php:202 server_privileges.php:525 +#: server_privileges.php:529 msgid "Allows creating new views." msgstr "Dopušta izradu novih prikaza." -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:32 server_privileges.php:182 +#: server_privileges.php:505 msgid "Allows deleting data." msgstr "Dopušta brisanje podataka." -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:33 server_privileges.php:184 +#: server_privileges.php:516 msgid "Allows dropping databases and tables." msgstr "Dopušta odbacivanje baza podataka i tablica." -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:34 server_privileges.php:516 msgid "Allows dropping tables." msgstr "Dopušta odbacivanje tablica." -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:35 server_privileges.php:199 +#: server_privileges.php:533 msgid "Allows to set up events for the event scheduler" msgstr "Omogućuje postavljanje događaja za planer" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:36 server_privileges.php:209 +#: server_privileges.php:521 msgid "Allows executing stored routines." msgstr "Dopušta pokretanje pohranjenih rutina." -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:37 server_privileges.php:188 +#: server_privileges.php:508 msgid "Allows importing data from and exporting data into files." msgstr "Dopušta uvoz i izvoz podataka iz datoteka." -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:38 server_privileges.php:539 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Dopušta dodavanje korisnika i privilegija bez ponovnog učitavanja tablica." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:515 msgid "Allows creating and dropping indexes." msgstr "Dopušta izradu i odbacivanje indeksa." -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:40 server_privileges.php:180 +#: server_privileges.php:441 server_privileges.php:503 msgid "Allows inserting and replacing data." msgstr "Dopušta umetanje i zamjenu podataka." -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:41 server_privileges.php:195 +#: server_privileges.php:548 msgid "Allows locking tables for the current thread." msgstr "Dopušta zaključavanje tablica u trenutnoj grani." -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:42 server_privileges.php:645 +#: server_privileges.php:647 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Ograničava broj novih povezivanja koje korisnik može otvoriti, po satu." -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:43 server_privileges.php:633 +#: server_privileges.php:635 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Ograničava broj upita koje korisnik može poslati poslužitelju, po satu." -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:44 server_privileges.php:639 +#: server_privileges.php:641 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -4733,61 +4795,61 @@ msgstr "" "Ograničava broj naredbi koje korisnik može pokrenuti, a čija je namjena " "mijenjanje bilo koje tablice ili baze podataka, po satu." -#: server_privileges.php:46 server_privileges.php:652 -#: server_privileges.php:654 +#: server_privileges.php:45 server_privileges.php:651 +#: server_privileges.php:653 msgid "Limits the number of simultaneous connections the user may have." msgstr "Ograničava broj istovremenih povezivanja koje korisnik može imati." -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:46 server_privileges.php:187 +#: server_privileges.php:543 msgid "Allows viewing processes of all users" msgstr "Omogućuje pregledavanje procesa za sve korisnike" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:47 server_privileges.php:189 +#: server_privileges.php:447 server_privileges.php:549 msgid "Has no effect in this MySQL version." msgstr "Nema učinka u ovoj verziji MySQL-a." -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:48 server_privileges.php:185 +#: server_privileges.php:544 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Dopušta ponovno učitavanje postavki poslužitelja i pražnjenje privremene " "pohrane poslužitelja." -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:197 +#: server_privileges.php:551 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Dopušta korisnik postavljanje upita o lokaciji potčinjenih i gospodara." -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:50 server_privileges.php:196 +#: server_privileges.php:552 msgid "Needed for the replication slaves." msgstr "Potrebno za replikacijske potčinjene." -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:51 server_privileges.php:179 +#: server_privileges.php:438 server_privileges.php:502 msgid "Allows reading data." msgstr "Dopušta čitanje podataka." -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:52 server_privileges.php:192 +#: server_privileges.php:546 msgid "Gives access to the complete list of databases." msgstr "Daje pristup cjelokupnom popisu baza podataka." -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:53 server_privileges.php:203 +#: server_privileges.php:205 server_privileges.php:518 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Dopušta izvođenje upita SHOW CREATE VIEW." -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:54 server_privileges.php:186 +#: server_privileges.php:545 msgid "Allows shutting down the server." msgstr "Dopušta gašenje poslužitelja." -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:55 server_privileges.php:193 +#: server_privileges.php:542 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -4797,158 +4859,158 @@ msgstr "" "većinu administrativnih operacija poput postavljanja općih varijabli ili " "eliminiranje grana drugih korisnika." -#: server_privileges.php:57 server_privileges.php:201 -#: server_privileges.php:535 +#: server_privileges.php:56 server_privileges.php:200 +#: server_privileges.php:534 msgid "Allows creating and dropping triggers" msgstr "Omogućuje izradu i uklanjanje okidača" -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:57 server_privileges.php:181 +#: server_privileges.php:444 server_privileges.php:504 msgid "Allows changing data." msgstr "Dopušta mijenjanje podataka." -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:58 server_privileges.php:259 msgid "No privileges." msgstr "Bez privilegija." -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:301 server_privileges.php:302 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "bez kompresije" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1710 server_privileges.php:1716 +#: server_privileges.php:430 server_privileges.php:565 +#: server_privileges.php:1714 server_privileges.php:1720 msgid "Table-specific privileges" msgstr "Privilegije specifične za tablicu" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1532 +#: server_privileges.php:431 server_privileges.php:573 +#: server_privileges.php:1536 msgid " Note: MySQL privilege names are expressed in English " msgstr " Napomena: Nazivi MySQL privilegija navedeni su na engleskom jeziku " -#: server_privileges.php:563 server_privileges.php:1531 +#: server_privileges.php:562 server_privileges.php:1535 msgid "Global privileges" msgstr "Opće privilegije" -#: server_privileges.php:565 server_privileges.php:1710 +#: server_privileges.php:564 server_privileges.php:1714 msgid "Database-specific privileges" msgstr "Privilegije specifične za bazu podataka" -#: server_privileges.php:610 +#: server_privileges.php:609 msgid "Administration" msgstr "Administracija" -#: server_privileges.php:630 +#: server_privileges.php:629 msgid "Resource limits" msgstr "Ograničenja resursa" -#: server_privileges.php:631 +#: server_privileges.php:630 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" "Napomena: Postavljanje ovih opcija na vrijednost 0 (nula) uklanja " "ograničenje." -#: server_privileges.php:708 +#: server_privileges.php:707 msgid "Login Information" msgstr "_Podaci prijave" -#: server_privileges.php:802 +#: server_privileges.php:801 msgid "Do not change the password" msgstr "Ne mijenjaj lozinku" -#: server_privileges.php:835 server_privileges.php:2197 +#: server_privileges.php:834 server_privileges.php:2201 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Korisnici nisu pronađeni." -#: server_privileges.php:879 +#: server_privileges.php:878 #, php-format msgid "The user %s already exists!" msgstr "Korisnik %s već postoji!" -#: server_privileges.php:962 +#: server_privileges.php:961 msgid "You have added a new user." msgstr "Dodali ste novog korisnika." -#: server_privileges.php:1183 +#: server_privileges.php:1184 #, php-format msgid "You have updated the privileges for %s." msgstr "Ažurirali ste privilegije za %s." -#: server_privileges.php:1207 +#: server_privileges.php:1208 #, php-format msgid "You have revoked the privileges for %s" msgstr "Opozvali ste privilegije za %s" -#: server_privileges.php:1243 +#: server_privileges.php:1244 #, php-format msgid "The password for %s was changed successfully." msgstr "Lozinka za %s uspješno je promijenjena." -#: server_privileges.php:1263 +#: server_privileges.php:1264 #, php-format msgid "Deleting %s" msgstr "Brisanje %s" -#: server_privileges.php:1274 +#: server_privileges.php:1275 msgid "No users selected for deleting!" msgstr "Nema odabranih korisnika za uklanjanje!" -#: server_privileges.php:1277 +#: server_privileges.php:1278 msgid "Reloading the privileges" msgstr "Ponovno učitavanje privilegija" -#: server_privileges.php:1292 +#: server_privileges.php:1296 msgid "The selected users have been deleted successfully." msgstr "Odabrani korisnici uspješno su izbrisani." -#: server_privileges.php:1327 +#: server_privileges.php:1331 msgid "The privileges were reloaded successfully." msgstr "Privilegije su uspješno učitane." -#: server_privileges.php:1355 server_privileges.php:1641 +#: server_privileges.php:1359 server_privileges.php:1645 msgid "Edit Privileges" msgstr "Uredi privilegije" -#: server_privileges.php:1364 +#: server_privileges.php:1368 msgid "Revoke" msgstr "Opozovi" -#: server_privileges.php:1396 +#: server_privileges.php:1400 msgid "User overview" msgstr "Pregled korisnika" -#: server_privileges.php:1533 server_privileges.php:1715 -#: server_privileges.php:2064 +#: server_privileges.php:1537 server_privileges.php:1719 +#: server_privileges.php:2068 msgid "Grant" msgstr "Podarivanje" -#: server_privileges.php:1552 server_privileges.php:2154 +#: server_privileges.php:1556 server_privileges.php:2158 msgid "Any" msgstr "Bilo koji" -#: server_privileges.php:1601 server_privileges.php:1625 -#: server_privileges.php:2019 server_privileges.php:2208 +#: server_privileges.php:1605 server_privileges.php:1629 +#: server_privileges.php:2023 server_privileges.php:2212 msgid "Add a new User" msgstr "Dodaj novog korisnika" -#: server_privileges.php:1606 +#: server_privileges.php:1610 msgid "Remove selected users" msgstr "Ukloni odabrane korisnike" -#: server_privileges.php:1609 +#: server_privileges.php:1613 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Opozovi sve aktivne privilegije korisnika i potom ih izbriši." -#: server_privileges.php:1610 server_privileges.php:1611 -#: server_privileges.php:1612 +#: server_privileges.php:1614 server_privileges.php:1615 +#: server_privileges.php:1616 msgid "Drop the databases that have the same names as the users." msgstr "Ispusti baze podataka koje imaju iste nazive i korisnike." -#: server_privileges.php:1628 +#: server_privileges.php:1632 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4961,94 +5023,94 @@ msgstr "" "može se razlikovati od privilegija koje upotrebljava poslužitelj. U tom je " "slučaju potrebno %sponovo učitati privilegije%s prije nastavljanja rada." -#: server_privileges.php:1676 +#: server_privileges.php:1680 msgid "The selected user was not found in the privilege table." msgstr "Odabrani korisnik nije pronađen u tablici privilegija." -#: server_privileges.php:1716 +#: server_privileges.php:1720 msgid "Column-specific privileges" msgstr "Privilegije specifične za stupac" -#: server_privileges.php:1917 +#: server_privileges.php:1921 msgid "Add privileges on the following database" msgstr "Dodaj privilegije za sljedeće baze podataka" -#: server_privileges.php:1935 +#: server_privileges.php:1939 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "Kako bi se mogli upotrebljavati u doslovnom smislu, džokerima \\_ i \\% mora " "prethoditi znak \\" -#: server_privileges.php:1938 +#: server_privileges.php:1942 msgid "Add privileges on the following table" msgstr "Dodaj privilegije za sljedeću tablicu" -#: server_privileges.php:1995 +#: server_privileges.php:1999 msgid "Change Login Information / Copy User" msgstr "Promjena podataka prijave / Kopiranje korisnika" -#: server_privileges.php:1998 +#: server_privileges.php:2002 msgid "Create a new user with the same privileges and ..." msgstr "Izradi novog korisnika s istim privilegijama i..." -#: server_privileges.php:2000 +#: server_privileges.php:2004 msgid "... keep the old one." msgstr "... zadržati staru." -#: server_privileges.php:2001 +#: server_privileges.php:2005 msgid " ... delete the old one from the user tables." msgstr " ... izbriši starog iz korisničkih tablica." -#: server_privileges.php:2002 +#: server_privileges.php:2006 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr " ... opozovi sve aktivne privilegije iz stare i potom je izbriši." -#: server_privileges.php:2003 +#: server_privileges.php:2007 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" " ... izbriši starog iz korisničkih tablica i potom ponovo učitaj privilegije." -#: server_privileges.php:2025 +#: server_privileges.php:2029 msgid "Database for user" msgstr "Baza podataka za korisnika" -#: server_privileges.php:2029 +#: server_privileges.php:2033 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "bez kompresije" -#: server_privileges.php:2030 +#: server_privileges.php:2034 msgid "Create database with same name and grant all privileges" msgstr "Izradi bazu podataka istog naziva i podari sve privilegije" -#: server_privileges.php:2031 +#: server_privileges.php:2035 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Podari sve privilegije imenima s džokerima (korisničkoime_%)" -#: server_privileges.php:2034 +#: server_privileges.php:2038 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "Provjeri privilegije za bazu podataka \"%s\"." -#: server_privileges.php:2057 +#: server_privileges.php:2061 #, php-format msgid "Users having access to "%s"" msgstr "Korisnici koji imaju pristup u \"%s\"" -#: server_privileges.php:2165 +#: server_privileges.php:2169 msgid "global" msgstr "opće" -#: server_privileges.php:2167 +#: server_privileges.php:2171 msgid "database-specific" msgstr "specifično za bazu podataka" -#: server_privileges.php:2169 +#: server_privileges.php:2173 msgid "wildcard" msgstr "džoker" @@ -5067,54 +5129,54 @@ msgstr "phpMyAdmin nije mogao ugasiti granu %s. Vjerojatno je već zatvorena." msgid "ID" msgstr "ID" -#: server_replication.php:50 +#: server_replication.php:49 msgid "Unknown error" msgstr "" -#: server_replication.php:57 +#: server_replication.php:56 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:64 +#: server_replication.php:63 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:70 +#: server_replication.php:69 msgid "Unable to change master" msgstr "" -#: server_replication.php:73 +#: server_replication.php:72 #, php-format msgid "Master server changed succesfully to %s" msgstr "" -#: server_replication.php:181 +#: server_replication.php:180 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:183 server_status.php:391 +#: server_replication.php:182 server_status.php:391 #, fuzzy msgid "Show master status" msgstr "Prikaži stanje potčinjenog" -#: server_replication.php:186 +#: server_replication.php:185 msgid "Show connected slaves" msgstr "" -#: server_replication.php:209 +#: server_replication.php:208 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:216 +#: server_replication.php:215 msgid "Master configuration" msgstr "" -#: server_replication.php:217 +#: server_replication.php:216 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -5123,111 +5185,111 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:220 +#: server_replication.php:219 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:221 +#: server_replication.php:220 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:224 +#: server_replication.php:223 #, fuzzy msgid "Please select databases:" msgstr "Odaberite bazu podataka" -#: server_replication.php:227 +#: server_replication.php:226 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: server_replication.php:229 +#: server_replication.php:228 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: server_replication.php:292 +#: server_replication.php:291 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:295 +#: server_replication.php:294 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:304 +#: server_replication.php:303 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:307 +#: server_replication.php:306 msgid "See slave status table" msgstr "" -#: server_replication.php:310 +#: server_replication.php:309 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:321 +#: server_replication.php:320 msgid "Control slave:" msgstr "" -#: server_replication.php:324 +#: server_replication.php:323 #, fuzzy msgid "Full start" msgstr "Puni tekst" -#: server_replication.php:324 +#: server_replication.php:323 #, fuzzy msgid "Full stop" msgstr "Puni tekst" -#: server_replication.php:325 +#: server_replication.php:324 msgid "Reset slave" msgstr "" -#: server_replication.php:326 +#: server_replication.php:325 #, php-format msgid "SQL Thread %s only" msgstr "" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 #, fuzzy msgid "Start" msgstr "Sub" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 msgid "Stop" msgstr "" -#: server_replication.php:327 +#: server_replication.php:326 #, php-format msgid "IO Thread %s only" msgstr "" -#: server_replication.php:331 +#: server_replication.php:330 msgid "Error management:" msgstr "" -#: server_replication.php:333 +#: server_replication.php:332 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:335 +#: server_replication.php:334 msgid "Skip current error" msgstr "" -#: server_replication.php:336 +#: server_replication.php:335 msgid "Skip next" msgstr "" -#: server_replication.php:339 +#: server_replication.php:338 msgid "errors." msgstr "" -#: server_replication.php:354 +#: server_replication.php:353 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -6056,114 +6118,114 @@ msgstr "Vrsta upita" msgid "Replication status" msgstr "Replikacija" -#: server_synchronize.php:93 +#: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:96 +#: server_synchronize.php:95 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:121 server_synchronize.php:124 tbl_create.php:77 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:264 +#: server_synchronize.php:263 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:271 +#: server_synchronize.php:270 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:399 server_synchronize.php:838 +#: server_synchronize.php:398 server_synchronize.php:837 msgid "not present" msgstr "" -#: server_synchronize.php:423 server_synchronize.php:866 +#: server_synchronize.php:422 server_synchronize.php:865 #, fuzzy msgid "Structure Difference" msgstr "Struktura za pregledavanje" -#: server_synchronize.php:424 server_synchronize.php:867 +#: server_synchronize.php:423 server_synchronize.php:866 #, fuzzy msgid "Data Difference" msgstr "Struktura za pregledavanje" -#: server_synchronize.php:429 server_synchronize.php:872 +#: server_synchronize.php:428 server_synchronize.php:871 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:430 server_synchronize.php:873 +#: server_synchronize.php:429 server_synchronize.php:872 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:431 server_synchronize.php:874 +#: server_synchronize.php:430 server_synchronize.php:873 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:432 server_synchronize.php:875 +#: server_synchronize.php:431 server_synchronize.php:874 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:433 server_synchronize.php:876 +#: server_synchronize.php:432 server_synchronize.php:875 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:434 server_synchronize.php:877 +#: server_synchronize.php:433 server_synchronize.php:876 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:435 server_synchronize.php:878 +#: server_synchronize.php:434 server_synchronize.php:877 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:445 server_synchronize.php:889 +#: server_synchronize.php:444 server_synchronize.php:888 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:448 server_synchronize.php:893 +#: server_synchronize.php:447 server_synchronize.php:892 msgid "Apply Selected Changes" msgstr "" -#: server_synchronize.php:450 server_synchronize.php:895 +#: server_synchronize.php:449 server_synchronize.php:894 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:463 +#: server_synchronize.php:462 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:941 +#: server_synchronize.php:940 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:1002 +#: server_synchronize.php:1001 msgid "The following queries have been executed:" msgstr "" -#: server_synchronize.php:1121 +#: server_synchronize.php:1120 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1122 +#: server_synchronize.php:1121 #, fuzzy #| msgid "max. concurrent connections" msgid "Current connection" msgstr "najv. uzastopnih veza" -#: server_synchronize.php:1151 +#: server_synchronize.php:1150 #, php-format msgid "Configuration: %s" msgstr "" -#: server_synchronize.php:1166 +#: server_synchronize.php:1165 msgid "Socket" msgstr "" -#: server_synchronize.php:1212 +#: server_synchronize.php:1211 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -6730,8 +6792,8 @@ msgstr "" #: setup/lib/messages.inc.php:128 msgid "" "Configure phpMyAdmin database to gain access to additional features, see " -"[a@../Documentation.html#linked-tables]linked-tables infrastructure[/a] in " -"documentation" +"[a@../Documentation.html#linked-tables]phpMyAdmin configuration storage[/a] " +"in documentation" msgstr "" #: setup/lib/messages.inc.php:129 setup/lib/messages.inc.php:290 @@ -7804,118 +7866,118 @@ msgstr "" msgid "ZIP" msgstr "" -#: sql.php:495 tbl_replace.php:385 +#: sql.php:494 tbl_replace.php:384 #, php-format msgid "Inserted row id: %1$d" msgstr "Umetnut ID retka: %1$d" -#: sql.php:512 +#: sql.php:511 msgid "Showing as PHP code" msgstr "Prikazivanje kao PHP koda" -#: sql.php:515 tbl_replace.php:359 +#: sql.php:514 tbl_replace.php:358 msgid "Showing SQL query" msgstr "Prikazivanje SQL upita" -#: sql.php:517 +#: sql.php:516 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Provjera valjanosti SQL-a" -#: sql.php:638 +#: sql.php:631 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemi s indeksima tablice `%s`" -#: sql.php:670 +#: sql.php:663 msgid "Label" msgstr "Oznaka" -#: tbl_addfield.php:188 tbl_alter.php:102 tbl_indexes.php:97 +#: tbl_addfield.php:185 tbl_alter.php:100 tbl_indexes.php:97 #, php-format msgid "Table %1$s has been altered successfully" msgstr "Tablica %1$s uspješno je izmijenjena." -#: tbl_change.php:250 tbl_select.php:26 tbl_select.php:27 tbl_select.php:30 -#: tbl_select.php:33 +#: tbl_change.php:245 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_select.php:32 msgid "Browse foreign values" msgstr "Pretraži strane vrijednosti" -#: tbl_change.php:280 tbl_change.php:318 +#: tbl_change.php:275 tbl_change.php:313 msgid "Function" msgstr "Funkcija" -#: tbl_change.php:300 tbl_indexes.php:199 tbl_indexes.php:224 +#: tbl_change.php:295 tbl_indexes.php:198 tbl_indexes.php:223 msgid "Ignore" msgstr "Ignoriraj" -#: tbl_change.php:725 +#: tbl_change.php:720 #, fuzzy #| msgid " Because of its length,
                            this field might not be editable " msgid " Because of its length,
                            this column might not be editable " msgstr "" " Zbog svoje duljine,
                            uređivanje ovog polja možda neće biti moguće " -#: tbl_change.php:884 +#: tbl_change.php:835 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:890 +#: tbl_change.php:841 msgid "Binary - do not edit" msgstr "Binarno - ne uređuj" -#: tbl_change.php:983 +#: tbl_change.php:889 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:1128 +#: tbl_change.php:1026 msgid "Insert as new row" msgstr "Umetni kao novi redak" -#: tbl_change.php:1129 +#: tbl_change.php:1027 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:1130 +#: tbl_change.php:1028 #, fuzzy msgid "Show insert query" msgstr "Prikazivanje SQL upita" -#: tbl_change.php:1145 +#: tbl_change.php:1043 msgid "Go back to previous page" msgstr "Kreni nazad na prethodnu stranicu" -#: tbl_change.php:1146 +#: tbl_change.php:1044 msgid "Insert another new row" msgstr "Umetni dodatni novi redak" -#: tbl_change.php:1150 +#: tbl_change.php:1048 msgid "Go back to this page" msgstr "Kreni nazad na ovu stranicu" -#: tbl_change.php:1158 +#: tbl_change.php:1056 msgid "Edit next row" msgstr "Uredi sljedeći redak" -#: tbl_change.php:1169 +#: tbl_change.php:1067 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Pomoću tipke TAB premještate se od jedne vrijednost do druge vrijednost, " "odnosno s tipkama CTRL+Strelice za premještanje bilo kamo" -#: tbl_change.php:1207 +#: tbl_change.php:1105 #, php-format msgid "Restart insertion with %s rows" msgstr "Ponovno pokreni umetanje s %s redaka" -#: tbl_create.php:57 +#: tbl_create.php:55 #, php-format msgid "Table %s already exists!" msgstr "Tablica %s već postoji!" -#: tbl_create.php:244 +#: tbl_create.php:241 #, php-format msgid "Table %1$s has been created." msgstr "Tablica %1$s je izrađena." @@ -7936,203 +7998,203 @@ msgstr "Preimenovanje indeksa u PRIMARY nije moguće!" msgid "No index parts defined!" msgstr "Nema definiranih dijelova indeksa!" -#: tbl_indexes.php:159 +#: tbl_indexes.php:158 msgid "Create a new index" msgstr "Izradi novi indeks" -#: tbl_indexes.php:161 +#: tbl_indexes.php:160 msgid "Modify an index" msgstr "Uredi indeks" -#: tbl_indexes.php:167 +#: tbl_indexes.php:166 msgid "Index name:" msgstr "Naziv indeksa:" -#: tbl_indexes.php:173 +#: tbl_indexes.php:172 msgid "Index type:" msgstr "Vrsta indeksa:" -#: tbl_indexes.php:183 +#: tbl_indexes.php:182 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" "(\"PRIMARY\" mora biti naziv i samo naziv primarnog ključa!)" -#: tbl_indexes.php:250 +#: tbl_indexes.php:249 #, php-format msgid "Add to index  %s column(s)" msgstr "Dodaj u indeks  %s stupci" -#: tbl_indexes.php:255 tbl_structure.php:588 tbl_structure.php:599 +#: tbl_indexes.php:254 tbl_structure.php:586 tbl_structure.php:597 msgid "Column count has to be larger than zero." msgstr "Broj stupaca mora biti veći od nule." -#: tbl_move_copy.php:45 +#: tbl_move_copy.php:44 msgid "Can't move table to same one!" msgstr "Premještanje u istu tablicu nije moguće!" -#: tbl_move_copy.php:47 +#: tbl_move_copy.php:46 msgid "Can't copy table to same one!" msgstr "Kopiranje u istu tablicu nije moguće!" -#: tbl_move_copy.php:55 +#: tbl_move_copy.php:54 #, php-format msgid "Table %s has been moved to %s." msgstr "Tablica %s premještena je u %s." -#: tbl_move_copy.php:57 +#: tbl_move_copy.php:56 #, php-format msgid "Table %s has been copied to %s." msgstr "Tablica %s kopirana je u %s." -#: tbl_move_copy.php:81 +#: tbl_move_copy.php:80 msgid "The table name is empty!" msgstr "Naziv tablice je prazan!" -#: tbl_operations.php:248 +#: tbl_operations.php:246 msgid "Alter table order by" msgstr "Izmijeni rasporede tablice po" -#: tbl_operations.php:257 +#: tbl_operations.php:255 msgid "(singly)" msgstr "(pojedinačno)" -#: tbl_operations.php:277 +#: tbl_operations.php:275 msgid "Move table to (database.table):" msgstr "Premjesti tablicu u (bazapodataka.tablica):" -#: tbl_operations.php:335 +#: tbl_operations.php:333 msgid "Table options" msgstr "Opcije tablice" -#: tbl_operations.php:339 +#: tbl_operations.php:337 msgid "Rename table to" msgstr "Preimenuj tablicu u" -#: tbl_operations.php:510 +#: tbl_operations.php:508 msgid "Copy table to (database.table):" msgstr "Kopiraj tablicu u (bazapodataka.tablica):" -#: tbl_operations.php:557 +#: tbl_operations.php:555 msgid "Switch to copied table" msgstr "Prebaci se na kopiranu tablicu" -#: tbl_operations.php:569 +#: tbl_operations.php:567 msgid "Table maintenance" msgstr "Održavanje tablice" -#: tbl_operations.php:590 +#: tbl_operations.php:588 msgid "Defragment table" msgstr "Defragmentiraj tablicu" -#: tbl_operations.php:629 +#: tbl_operations.php:627 #, php-format msgid "Table %s has been flushed" msgstr "Tablica %s je ispražnjena" -#: tbl_operations.php:635 +#: tbl_operations.php:633 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Isprazni tablicu (\"FLUSH\")" -#: tbl_operations.php:650 +#: tbl_operations.php:648 msgid "Partition maintenance" msgstr "Održavanje particije" -#: tbl_operations.php:658 +#: tbl_operations.php:656 #, php-format msgid "Partition %s" msgstr "Particija %s" -#: tbl_operations.php:661 +#: tbl_operations.php:659 msgid "Analyze" msgstr "Analiziraj" -#: tbl_operations.php:662 +#: tbl_operations.php:660 msgid "Check" msgstr "Provjeri" -#: tbl_operations.php:663 +#: tbl_operations.php:661 msgid "Optimize" msgstr "Optimiziraj" -#: tbl_operations.php:664 +#: tbl_operations.php:662 msgid "Rebuild" msgstr "Ponovno izgradi" -#: tbl_operations.php:665 +#: tbl_operations.php:663 msgid "Repair" msgstr "Popravi" -#: tbl_operations.php:677 +#: tbl_operations.php:675 msgid "Remove partitioning" msgstr "Ukloni particioniranje" -#: tbl_operations.php:703 +#: tbl_operations.php:701 msgid "Check referential integrity:" msgstr "Provjeri referencijalan integritet:" -#: tbl_printview.php:73 +#: tbl_printview.php:72 msgid "Show tables" msgstr "Prikaži tablice" -#: tbl_printview.php:308 tbl_structure.php:655 +#: tbl_printview.php:307 tbl_structure.php:653 msgid "Space usage" msgstr "Iskorištenost prostora" -#: tbl_printview.php:312 tbl_structure.php:659 +#: tbl_printview.php:311 tbl_structure.php:657 msgid "Usage" msgstr "Upotreba" -#: tbl_printview.php:339 tbl_structure.php:686 +#: tbl_printview.php:338 tbl_structure.php:684 msgid "Effective" msgstr "Na snazi" -#: tbl_printview.php:364 tbl_structure.php:724 +#: tbl_printview.php:363 tbl_structure.php:722 msgid "Row Statistics" msgstr "Statistike redova" -#: tbl_printview.php:367 tbl_structure.php:727 +#: tbl_printview.php:366 tbl_structure.php:725 msgid "Statements" msgstr "Izjave" -#: tbl_printview.php:378 tbl_structure.php:739 +#: tbl_printview.php:377 tbl_structure.php:737 msgid "static" msgstr "" -#: tbl_printview.php:380 tbl_structure.php:741 +#: tbl_printview.php:379 tbl_structure.php:739 msgid "dynamic" msgstr "dinamički" -#: tbl_printview.php:402 tbl_structure.php:784 +#: tbl_printview.php:401 tbl_structure.php:782 msgid "Row length" msgstr "Duljina retka" -#: tbl_printview.php:412 tbl_structure.php:792 +#: tbl_printview.php:411 tbl_structure.php:790 msgid " Row size " msgstr " Veličina retka " -#: tbl_relation.php:278 +#: tbl_relation.php:276 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" "Pogreška tijekom izrade stranog ključa na %1$s (provjerite vrste podataka)" -#: tbl_relation.php:404 +#: tbl_relation.php:402 #, fuzzy #| msgid "Internal relations" msgid "Internal relation" msgstr "Interne relacije" -#: tbl_relation.php:406 +#: tbl_relation.php:404 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" "Interna relacija nije potrebna ako postoji odgovarajuća relacija FOREIGN KEY." -#: tbl_relation.php:412 +#: tbl_relation.php:410 msgid "Foreign key constraint" msgstr "" @@ -8140,232 +8202,232 @@ msgstr "" msgid "No rows selected" msgstr "Nema odabranih redova" -#: tbl_select.php:130 +#: tbl_select.php:129 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Izvedi \"upit po primjeru\" (džoker: \"%\")" -#: tbl_select.php:136 +#: tbl_select.php:135 msgid "Operator" msgstr "Operator" -#: tbl_select.php:267 +#: tbl_select.php:266 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "Odaberite polja (najmanje jedno):" -#: tbl_select.php:285 +#: tbl_select.php:284 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Dodaj uvjete pretrage (sadržaj uvjeta \"gdje\"):" -#: tbl_select.php:292 +#: tbl_select.php:291 msgid "Number of rows per page" msgstr "Broj redaka po stranici" -#: tbl_select.php:298 +#: tbl_select.php:297 msgid "Display order:" msgstr "Redoslijed prikaza:" -#: tbl_structure.php:160 +#: tbl_structure.php:159 msgid "Browse distinct values" msgstr "Pretraži prepoznatljive vrijednosti" -#: tbl_structure.php:360 +#: tbl_structure.php:358 #, fuzzy #| msgid "None" msgctxt "None for default" msgid "None" msgstr "bez kompresije" -#: tbl_structure.php:373 +#: tbl_structure.php:371 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Column %s has been dropped" msgstr "Tablica %s je odbačen" -#: tbl_structure.php:384 +#: tbl_structure.php:382 #, php-format msgid "A primary key has been added on %s" msgstr "Primarni ključ je dodan na %s" -#: tbl_structure.php:399 tbl_structure.php:413 tbl_structure.php:427 +#: tbl_structure.php:397 tbl_structure.php:411 tbl_structure.php:425 #, php-format msgid "An index has been added on %s" msgstr "Indeks je pridodan na %s" -#: tbl_structure.php:505 tbl_structure.php:507 +#: tbl_structure.php:503 tbl_structure.php:505 msgid "Relation view" msgstr "Prikaz relacija" -#: tbl_structure.php:514 tbl_structure.php:516 +#: tbl_structure.php:512 tbl_structure.php:514 msgid "Propose table structure" msgstr "Predloži strukturu tablice" -#: tbl_structure.php:539 +#: tbl_structure.php:537 #, fuzzy #| msgid "Add %s field(s)" msgid "Add column" msgstr "Dodaj %s polja" -#: tbl_structure.php:553 +#: tbl_structure.php:551 msgid "At End of Table" msgstr "Pri završetku tablice" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At Beginning of Table" msgstr "Pri početku tablice" -#: tbl_structure.php:555 +#: tbl_structure.php:553 #, php-format msgid "After %s" msgstr "Poslije %s" -#: tbl_structure.php:593 +#: tbl_structure.php:591 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "Izradi indeks  %s stupaca" -#: tbl_structure.php:755 +#: tbl_structure.php:753 msgid "partitioned" msgstr "particionirano" -#: tbl_tracking.php:113 +#: tbl_tracking.php:109 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:186 +#: tbl_tracking.php:182 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "" -#: tbl_tracking.php:194 +#: tbl_tracking.php:190 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "" -#: tbl_tracking.php:202 +#: tbl_tracking.php:198 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "" -#: tbl_tracking.php:212 +#: tbl_tracking.php:208 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:219 +#: tbl_tracking.php:215 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:220 +#: tbl_tracking.php:216 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:229 +#: tbl_tracking.php:225 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:250 tbl_tracking.php:378 +#: tbl_tracking.php:245 tbl_tracking.php:373 msgid "Close" msgstr "" -#: tbl_tracking.php:261 +#: tbl_tracking.php:256 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:380 +#: tbl_tracking.php:375 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:396 tbl_tracking.php:503 +#: tbl_tracking.php:391 tbl_tracking.php:498 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "" -#: tbl_tracking.php:409 tbl_tracking.php:460 +#: tbl_tracking.php:404 tbl_tracking.php:455 #, fuzzy msgid "Date" msgstr "Podaci" -#: tbl_tracking.php:410 tbl_tracking.php:461 +#: tbl_tracking.php:405 tbl_tracking.php:456 #, fuzzy msgid "Username" msgstr "Korisničko ime:" -#: tbl_tracking.php:411 +#: tbl_tracking.php:406 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:462 +#: tbl_tracking.php:457 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:506 +#: tbl_tracking.php:501 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:507 +#: tbl_tracking.php:502 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:520 +#: tbl_tracking.php:515 #, fuzzy, php-format msgid "Export as %s" msgstr "Vrsta izvoza" -#: tbl_tracking.php:560 +#: tbl_tracking.php:555 msgid "Show versions" msgstr "" -#: tbl_tracking.php:592 +#: tbl_tracking.php:587 #, fuzzy msgid "Version" msgstr "Perzijski" -#: tbl_tracking.php:639 +#: tbl_tracking.php:634 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "" -#: tbl_tracking.php:641 +#: tbl_tracking.php:636 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:652 +#: tbl_tracking.php:647 #, php-format msgid "Activate tracking for %s.%s" msgstr "" -#: tbl_tracking.php:654 +#: tbl_tracking.php:649 msgid "Activate now" msgstr "" -#: tbl_tracking.php:667 +#: tbl_tracking.php:662 #, php-format msgid "Create version %s of %s.%s" msgstr "" -#: tbl_tracking.php:671 +#: tbl_tracking.php:666 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:679 +#: tbl_tracking.php:674 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:687 +#: tbl_tracking.php:682 #, fuzzy msgid "Create version" msgstr "Izradi relaciju" @@ -8415,11 +8477,37 @@ msgstr "Profil je ažuriran." msgid "VIEW name" msgstr "Naziv prikaza" -#: view_operations.php:92 +#: view_operations.php:91 #, fuzzy msgid "Rename view to" msgstr "Preimenuj tablicu u" +#, fuzzy +#~| msgid "Enabled" +#~ msgctxt "BLOB repository" +#~ msgid "Enabled" +#~ msgstr "Omogućeno" + +#, fuzzy +#~ msgid "Disable" +#~ msgstr "Onemogućeno" + +#, fuzzy +#~| msgid "Repair" +#~ msgctxt "BLOB repository" +#~ msgid "Repair" +#~ msgstr "Popravi" + +#, fuzzy +#~| msgid "Disabled" +#~ msgctxt "BLOB repository" +#~ msgid "Disabled" +#~ msgstr "Onemogućeno" + +#, fuzzy +#~ msgid "Enable" +#~ msgstr "Omogućeno" + #~ msgid "" #~ "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " #~ "extension. Please check your PHP configuration." diff --git a/po/hu.po b/po/hu.po index 83f544964..12ec2d76e 100644 --- a/po/hu.po +++ b/po/hu.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-21 13:53+0200\n" +"POT-Creation-Date: 2010-07-26 17:18+0200\n" "PO-Revision-Date: 2010-07-22 02:22+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: hungarian \n" @@ -14,19 +14,19 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.1\n" -#: browse_foreigners.php:37 browse_foreigners.php:58 -#: libraries/display_tbl.lib.php:416 server_privileges.php:1506 +#: browse_foreigners.php:36 browse_foreigners.php:57 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1510 msgid "Show all" msgstr "Mind látható" -#: browse_foreigners.php:81 libraries/common.lib.php:2313 -#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:393 -#: libraries/export/pdf.php:146 pdf_schema.php:282 pdf_schema.php:1122 -#: pdf_schema.php:1138 +#: browse_foreigners.php:80 libraries/common.lib.php:2318 +#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:392 +#: libraries/export/pdf.php:146 pdf_schema.php:281 pdf_schema.php:1121 +#: pdf_schema.php:1137 msgid "Page number:" msgstr "Oldalszám:" -#: browse_foreigners.php:131 +#: browse_foreigners.php:130 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -36,139 +36,153 @@ msgstr "" "szülőablakot, vagy a böngésző biztonsági beállításai tiltják az ablakok " "közti frissítést" -#: browse_foreigners.php:149 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2829 -#: libraries/common.lib.php:2836 libraries/db_links.inc.php:74 -#: libraries/tbl_links.inc.php:62 +#: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 +#: db_structure.php:89 db_structure.php:91 db_structure.php:102 +#: db_structure.php:104 libraries/common.lib.php:2834 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Keresés" -#: browse_foreigners.php:152 db_operations.php:384 db_operations.php:428 -#: db_operations.php:498 db_operations.php:608 db_search.php:344 -#: db_structure.php:566 js/messages.php:48 libraries/Config.class.php:1043 -#: libraries/Theme_Manager.class.php:310 +#: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 +#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 +#: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 -#: libraries/common.lib.php:1340 libraries/common.lib.php:2289 +#: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 -#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:275 -#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:531 -#: libraries/display_tbl.lib.php:613 libraries/replication_gui.lib.php:75 +#: libraries/display_export.lib.php:269 libraries/display_import.lib.php:275 +#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 +#: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 #: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:781 -#: main.php:127 navigation.php:231 pdf_pages.php:291 pdf_pages.php:327 -#: pdf_pages.php:529 pmd_pdf.php:115 server_binlog.php:128 -#: server_privileges.php:664 server_privileges.php:1616 -#: server_privileges.php:1963 server_privileges.php:2010 -#: server_privileges.php:2049 server_replication.php:234 -#: server_replication.php:317 server_replication.php:340 -#: server_synchronize.php:1208 tbl_change.php:328 tbl_change.php:1172 -#: tbl_change.php:1209 tbl_indexes.php:253 tbl_operations.php:264 -#: tbl_operations.php:301 tbl_operations.php:498 tbl_operations.php:560 -#: tbl_operations.php:680 tbl_select.php:324 tbl_structure.php:561 -#: tbl_structure.php:596 tbl_tracking.php:394 tbl_tracking.php:511 -#: view_create.php:181 view_operations.php:100 +#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 +#: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 +#: server_privileges.php:663 server_privileges.php:1620 +#: server_privileges.php:1967 server_privileges.php:2014 +#: server_privileges.php:2053 server_replication.php:233 +#: server_replication.php:316 server_replication.php:339 +#: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 +#: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 +#: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 +#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "Indítás" -#: browse_foreigners.php:167 browse_foreigners.php:171 -#: libraries/Index.class.php:441 tbl_tracking.php:319 +#: browse_foreigners.php:166 browse_foreigners.php:170 +#: libraries/Index.class.php:441 tbl_tracking.php:314 msgid "Keyname" msgstr "Kulcsnév" -#: browse_foreigners.php:168 browse_foreigners.php:170 -#: server_collations.php:54 server_collations.php:66 server_engines.php:58 +#: browse_foreigners.php:167 browse_foreigners.php:169 +#: server_collations.php:54 server_collations.php:66 server_engines.php:57 #: server_status.php:738 msgid "Description" msgstr "Leírás" -#: browse_foreigners.php:246 browse_foreigners.php:255 -#: browse_foreigners.php:267 browse_foreigners.php:275 +#: browse_foreigners.php:245 browse_foreigners.php:254 +#: browse_foreigners.php:266 browse_foreigners.php:274 msgid "Use this value" msgstr "Ezen érték használata" -#: db_create.php:45 +#: bs_disp_as_mime_type.php:29 bs_play_media.php:35 +msgid "No blob streaming server configured!" +msgstr "" + +#: bs_disp_as_mime_type.php:35 +#, fuzzy +#| msgid "Failed to write file to disk." +msgid "Failed to fetch headers" +msgstr "Nem sikerült lemezre írni a fájlt." + +#: bs_disp_as_mime_type.php:41 +msgid "Failed to open remote URL" +msgstr "" + +#: db_create.php:44 #, php-format msgid "Database %1$s has been created." msgstr "A(z) %1$s adatbázis elkészült." -#: db_datadict.php:48 db_operations.php:377 +#: db_datadict.php:48 db_operations.php:313 msgid "Database comment: " msgstr "Megjegyzés az adatbázishoz: " -#: db_datadict.php:164 libraries/tbl_properties.inc.php:723 -#: pdf_schema.php:1235 tbl_operations.php:346 tbl_printview.php:128 +#: db_datadict.php:164 libraries/tbl_properties.inc.php:722 +#: pdf_schema.php:1234 tbl_operations.php:344 tbl_printview.php:127 msgid "Table comments" msgstr "Tábla megjegyzése" -#: db_datadict.php:173 db_qbe.php:173 libraries/Index.class.php:445 +#: db_datadict.php:173 db_qbe.php:170 libraries/Index.class.php:445 #: libraries/export/htmlword.php:243 libraries/export/latex.php:364 #: libraries/export/odt.php:293 libraries/export/texytext.php:233 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:274 -#: pdf_schema.php:1261 pdf_schema.php:1282 tbl_change.php:306 -#: tbl_indexes.php:188 tbl_printview.php:140 tbl_relation.php:401 -#: tbl_select.php:133 tbl_structure.php:176 tbl_tracking.php:272 -#: tbl_tracking.php:323 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 +#: pdf_schema.php:1260 pdf_schema.php:1281 tbl_change.php:301 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:132 tbl_structure.php:175 tbl_tracking.php:267 +#: tbl_tracking.php:318 #, fuzzy #| msgid "Column names" msgid "Column" msgstr "Oszlopnevek" -#: db_datadict.php:174 db_printview.php:105 libraries/Index.class.php:442 +#: db_datadict.php:174 db_printview.php:104 libraries/Index.class.php:442 #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 #: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:244 #: libraries/export/latex.php:364 libraries/export/odt.php:296 #: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:99 -#: pdf_schema.php:1262 pdf_schema.php:1283 server_privileges.php:2062 -#: tbl_change.php:285 tbl_change.php:312 tbl_printview.php:141 -#: tbl_printview.php:311 tbl_select.php:134 tbl_structure.php:177 -#: tbl_structure.php:658 tbl_tracking.php:273 tbl_tracking.php:320 +#: pdf_schema.php:1261 pdf_schema.php:1282 server_privileges.php:2066 +#: tbl_change.php:280 tbl_change.php:307 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:133 tbl_structure.php:176 +#: tbl_structure.php:656 tbl_tracking.php:268 tbl_tracking.php:315 msgid "Type" msgstr "Típus" #: db_datadict.php:176 libraries/Index.class.php:448 #: libraries/export/htmlword.php:245 libraries/export/latex.php:364 #: libraries/export/odt.php:299 libraries/export/texytext.php:235 -#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1264 -#: pdf_schema.php:1285 tbl_change.php:321 tbl_printview.php:143 -#: tbl_structure.php:180 tbl_tracking.php:275 tbl_tracking.php:326 +#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1263 +#: pdf_schema.php:1284 tbl_change.php:316 tbl_printview.php:142 +#: tbl_structure.php:179 tbl_tracking.php:270 tbl_tracking.php:321 msgid "Null" msgstr "Nulla" -#: db_datadict.php:177 db_structure.php:500 libraries/export/htmlword.php:246 +#: db_datadict.php:177 db_structure.php:486 libraries/export/htmlword.php:246 #: libraries/export/latex.php:364 libraries/export/odt.php:302 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:105 -#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 -#: tbl_structure.php:181 tbl_tracking.php:276 +#: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:143 +#: tbl_structure.php:180 tbl_tracking.php:271 msgid "Default" msgstr "Alapértelmezett" #: db_datadict.php:181 libraries/export/htmlword.php:248 #: libraries/export/latex.php:366 libraries/export/odt.php:306 -#: libraries/export/texytext.php:238 pdf_schema.php:1267 pdf_schema.php:1288 -#: tbl_printview.php:148 +#: libraries/export/texytext.php:238 pdf_schema.php:1266 pdf_schema.php:1287 +#: tbl_printview.php:147 msgid "Links to" msgstr "Hivatkozások:" -#: db_datadict.php:183 db_printview.php:111 libraries/export/htmlword.php:251 +#: db_datadict.php:183 db_printview.php:110 libraries/export/htmlword.php:251 #: libraries/export/latex.php:49 libraries/export/latex.php:369 #: libraries/export/odt.php:37 libraries/export/odt.php:311 #: libraries/export/sql.php:29 libraries/export/texytext.php:241 -#: libraries/tbl_properties.inc.php:129 pdf_schema.php:1278 -#: pdf_schema.php:1289 tbl_printview.php:150 +#: libraries/tbl_properties.inc.php:128 pdf_schema.php:1277 +#: pdf_schema.php:1288 tbl_printview.php:149 msgid "Comments" msgstr "Megjegyzések" #: db_datadict.php:266 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/export/htmlword.php:321 #: libraries/export/latex.php:434 libraries/export/odt.php:367 -#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:262 -#: pdf_schema.php:1343 server_privileges.php:1560 server_privileges.php:1571 -#: server_privileges.php:1881 server_privileges.php:1886 -#: server_privileges.php:2179 sql.php:131 sql.php:193 tbl_printview.php:227 -#: tbl_structure.php:349 tbl_tracking.php:336 tbl_tracking.php:341 +#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:261 +#: pdf_schema.php:1342 server_privileges.php:1564 server_privileges.php:1575 +#: server_privileges.php:1885 server_privileges.php:1890 +#: server_privileges.php:2183 sql.php:130 sql.php:192 tbl_printview.php:226 +#: tbl_structure.php:347 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "Nem" @@ -179,17 +193,17 @@ msgstr "Nem" #: libraries/mult_submits.inc.php:49 libraries/mult_submits.inc.php:54 #: libraries/mult_submits.inc.php:59 libraries/mult_submits.inc.php:91 #: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:105 -#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:261 -#: libraries/mult_submits.inc.php:272 pdf_schema.php:1343 -#: server_databases.php:63 server_privileges.php:1557 -#: server_privileges.php:1571 server_privileges.php:1881 -#: server_privileges.php:1884 server_privileges.php:2179 sql.php:192 -#: tbl_printview.php:227 tbl_structure.php:39 tbl_structure.php:349 -#: tbl_tracking.php:334 tbl_tracking.php:339 +#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:260 +#: libraries/mult_submits.inc.php:271 pdf_schema.php:1342 +#: server_databases.php:61 server_privileges.php:1561 +#: server_privileges.php:1575 server_privileges.php:1885 +#: server_privileges.php:1888 server_privileges.php:2183 sql.php:191 +#: tbl_printview.php:226 tbl_structure.php:38 tbl_structure.php:347 +#: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" msgstr "Igen" -#: db_datadict.php:321 db_printview.php:265 tbl_printview.php:496 +#: db_datadict.php:321 db_printview.php:264 tbl_printview.php:495 msgid "Print" msgstr "Nyomtatás" @@ -197,194 +211,154 @@ msgstr "Nyomtatás" msgid "View dump (schema) of database" msgstr "Adatbázis kiírás (vázlat) megtekintése" -#: db_export.php:32 db_printview.php:95 db_qbe.php:101 db_structure.php:50 -#: db_tracking.php:34 export.php:352 navigation.php:326 +#: db_export.php:32 db_printview.php:94 db_qbe.php:98 db_structure.php:49 +#: db_tracking.php:30 export.php:350 navigation.php:325 msgid "No tables found in database." msgstr "Nem található tábla az adatbázisban." -#: db_export.php:42 db_search.php:326 server_export.php:26 +#: db_export.php:42 db_search.php:326 server_export.php:24 msgid "Select All" msgstr "Mind kijelölése" -#: db_export.php:44 db_search.php:329 server_export.php:28 +#: db_export.php:44 db_search.php:329 server_export.php:26 msgid "Unselect All" msgstr "Mind törlése" -#: db_operations.php:37 tbl_create.php:49 +#: db_operations.php:33 tbl_create.php:47 msgid "The database name is empty!" msgstr "Üres az adatbázis neve!" -#: db_operations.php:235 +#: db_operations.php:231 #, 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:239 +#: db_operations.php:235 #, 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:411 +#: db_operations.php:347 msgid "Rename database to" msgstr "Adatbázis átnevezése" -#: db_operations.php:416 server_processlist.php:56 +#: db_operations.php:352 server_processlist.php:56 msgid "Command" msgstr "Parancs" -#: db_operations.php:428 tbl_change.php:1141 +#: db_operations.php:364 tbl_change.php:1039 msgid "and then" msgstr "és utána" -#: db_operations.php:454 +#: db_operations.php:390 msgid "Copy database to" msgstr "Adatbázis másolása" -#: db_operations.php:461 tbl_operations.php:527 tbl_tracking.php:387 +#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Csak a szerkezet" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:389 +#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Szerkezet és adatok" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:388 +#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Csak az adatok" -#: db_operations.php:471 +#: db_operations.php:407 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE másolás előtt" -#: db_operations.php:474 libraries/export/sql.php:51 +#: db_operations.php:410 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 -#: libraries/export/sql.php:81 tbl_operations.php:535 +#: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "%s hozzáadása" -#: db_operations.php:478 libraries/export/sql.php:77 tbl_operations.php:298 -#: tbl_operations.php:537 +#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT érték hozzáadása" -#: db_operations.php:482 tbl_operations.php:544 +#: db_operations.php:418 tbl_operations.php:542 msgid "Add constraints" msgstr "Megszorítás hozzáadása" -#: db_operations.php:495 +#: db_operations.php:431 msgid "Switch to copied database" msgstr "A másolt adatbázisra váltás" -#: db_operations.php:536 -msgid "BLOB Repository" -msgstr "BLOB-ratár" - -#: db_operations.php:539 db_tracking.php:75 libraries/common.lib.php:1357 -#: libraries/server_links.inc.php:48 server_processlist.php:58 -#: tbl_tracking.php:595 test/theme.php:100 -msgid "Status" -msgstr "Állapot" - -#: db_operations.php:547 -#, fuzzy -#| msgid "Enabled" -msgctxt "BLOB repository" -msgid "Enabled" -msgstr "Engedélyezett" - -#: db_operations.php:551 -msgid "Disable" -msgstr "Letiltás" - -#: db_operations.php:561 -msgid "Damaged" -msgstr "Sérült" - -#: db_operations.php:565 -#, fuzzy -#| msgid "Repair" -msgctxt "BLOB repository" -msgid "Repair" -msgstr "Javítás" - -#: db_operations.php:573 -#, fuzzy -#| msgid "Disabled" -msgctxt "BLOB repository" -msgid "Disabled" -msgstr "Letiltott" - -#: db_operations.php:577 -msgid "Enable" -msgstr "Engedélyezés" - -#: db_operations.php:601 libraries/Index.class.php:447 +#: db_operations.php:451 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 -#: server_collations.php:53 server_collations.php:65 server_databases.php:110 -#: tbl_operations.php:362 tbl_select.php:135 tbl_structure.php:178 -#: tbl_structure.php:766 tbl_tracking.php:274 tbl_tracking.php:325 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 +#: server_collations.php:53 server_collations.php:65 server_databases.php:108 +#: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:177 +#: tbl_structure.php:764 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "Illesztés" -#: db_operations.php:614 main.php:315 pdf_schema.php:33 -#, php-format +#: db_operations.php:464 pdf_schema.php:32 +#, fuzzy, php-format +#| msgid "" +#| "The additional features for working with linked tables have been " +#| "deactivated. To find out why click %shere%s." msgid "" -"The additional features for working with linked tables have been " -"deactivated. To find out why click %shere%s." +"The phpMyAdmin configuration storage has been deactivated. To find out why " +"click %shere%s." msgstr "" "A hivatkozott táblákkal történő munka kiegészítő funkciói inaktiválásra " "kerültek. Ha szeretné megtudni, hogy miért, kattintson %side%s." -#: db_operations.php:647 +#: db_operations.php:497 msgid "Edit PDF Pages" msgstr "PDF oldalak szerkesztése" -#: db_printview.php:103 db_tracking.php:71 db_tracking.php:156 +#: db_printview.php:102 db_tracking.php:67 db_tracking.php:152 #: libraries/db_structure.lib.php:37 libraries/export/xml.php:327 -#: libraries/header.inc.php:125 pdf_pages.php:423 server_privileges.php:1657 -#: server_privileges.php:1713 server_privileges.php:1977 -#: server_synchronize.php:422 server_synchronize.php:865 tbl_tracking.php:591 +#: libraries/header.inc.php:125 pdf_pages.php:422 server_privileges.php:1661 +#: server_privileges.php:1717 server_privileges.php:1981 +#: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "Tábla" -#: db_printview.php:104 libraries/db_structure.lib.php:47 +#: db_printview.php:103 libraries/db_structure.lib.php:47 #: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 -#: navigation.php:629 navigation.php:651 server_databases.php:121 -#: tbl_printview.php:392 tbl_structure.php:364 tbl_structure.php:776 +#: navigation.php:628 navigation.php:650 server_databases.php:119 +#: tbl_printview.php:391 tbl_structure.php:362 tbl_structure.php:774 msgid "Rows" msgstr "sor" -#: db_printview.php:108 libraries/db_structure.lib.php:58 tbl_indexes.php:189 +#: db_printview.php:107 libraries/db_structure.lib.php:58 tbl_indexes.php:188 msgid "Size" msgstr "Méret" -#: db_printview.php:161 db_structure.php:456 libraries/export/sql.php:556 +#: db_printview.php:160 db_structure.php:442 libraries/export/sql.php:556 #: libraries/export/sql.php:896 msgid "in use" msgstr "használatban" -#: db_printview.php:186 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:511 pdf_schema.php:1240 tbl_printview.php:432 -#: tbl_structure.php:808 +#: db_printview.php:185 libraries/db_info.inc.php:86 +#: libraries/export/sql.php:511 pdf_schema.php:1239 tbl_printview.php:431 +#: tbl_structure.php:806 msgid "Creation" msgstr "Létrehozás" -#: db_printview.php:195 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:516 pdf_schema.php:1245 tbl_printview.php:442 -#: tbl_structure.php:816 +#: db_printview.php:194 libraries/db_info.inc.php:91 +#: libraries/export/sql.php:516 pdf_schema.php:1244 tbl_printview.php:441 +#: tbl_structure.php:814 msgid "Last update" msgstr "Utolsó frissítés" -#: db_printview.php:204 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:521 pdf_schema.php:1250 tbl_printview.php:452 -#: tbl_structure.php:824 +#: db_printview.php:203 libraries/db_info.inc.php:96 +#: libraries/export/sql.php:521 pdf_schema.php:1249 tbl_printview.php:451 +#: tbl_structure.php:822 msgid "Last check" msgstr "Utolsó ellenőrzés" -#: db_printview.php:221 db_structure.php:479 +#: db_printview.php:220 db_structure.php:465 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -392,94 +366,94 @@ msgid_plural "%s tables" msgstr[0] "%s tábla" msgstr[1] "%s tábla" -#: db_qbe.php:28 import.php:453 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1980 libraries/sql_query_form.lib.php:138 -#: tbl_operations.php:212 tbl_relation.php:291 tbl_row_action.php:130 -#: view_operations.php:61 +#: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 +#: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "Az SQL-lekérdezés végrehajtása sikerült" -#: db_qbe.php:41 +#: db_qbe.php:38 msgid "You have to choose at least one column to display" msgstr "Ki kell legalább egy megjelenítendő oszlopot választania" -#: db_qbe.php:199 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:865 +#: db_qbe.php:196 libraries/db_structure.lib.php:95 +#: libraries/display_tbl.lib.php:864 msgid "Sort" msgstr "Rendezés" -#: db_qbe.php:208 db_qbe.php:242 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:522 libraries/display_tbl.lib.php:827 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:259 -#: tbl_select.php:311 +#: db_qbe.php:205 db_qbe.php:239 libraries/db_structure.lib.php:102 +#: libraries/display_tbl.lib.php:521 libraries/display_tbl.lib.php:826 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:257 +#: tbl_select.php:310 msgid "Ascending" msgstr "Növekvő" -#: db_qbe.php:209 db_qbe.php:250 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:527 libraries/display_tbl.lib.php:824 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:260 -#: tbl_select.php:312 +#: db_qbe.php:206 db_qbe.php:247 libraries/db_structure.lib.php:110 +#: libraries/display_tbl.lib.php:526 libraries/display_tbl.lib.php:823 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:258 +#: tbl_select.php:311 msgid "Descending" msgstr "Csökkenő" -#: db_qbe.php:263 db_tracking.php:77 libraries/display_tbl.lib.php:307 -#: tbl_change.php:275 tbl_tracking.php:596 +#: db_qbe.php:260 db_tracking.php:73 libraries/display_tbl.lib.php:306 +#: tbl_change.php:270 tbl_tracking.php:591 msgid "Show" msgstr "Megjelenítés" -#: db_qbe.php:299 +#: db_qbe.php:296 msgid "Criteria" msgstr "Feltételek" -#: db_qbe.php:352 db_qbe.php:434 db_qbe.php:526 db_qbe.php:557 +#: db_qbe.php:349 db_qbe.php:431 db_qbe.php:523 db_qbe.php:554 msgid "Ins" msgstr "Beszúrás" -#: db_qbe.php:356 db_qbe.php:438 db_qbe.php:523 db_qbe.php:554 +#: db_qbe.php:353 db_qbe.php:435 db_qbe.php:520 db_qbe.php:551 msgid "And" msgstr "És" -#: db_qbe.php:365 db_qbe.php:446 db_qbe.php:528 db_qbe.php:559 +#: db_qbe.php:362 db_qbe.php:443 db_qbe.php:525 db_qbe.php:556 msgid "Del" msgstr "Törlés" -#: db_qbe.php:369 db_qbe.php:450 db_qbe.php:521 db_qbe.php:552 -#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:778 -#: server_privileges.php:297 tbl_change.php:1027 tbl_indexes.php:249 -#: tbl_select.php:285 +#: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 +#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:777 +#: server_privileges.php:296 tbl_change.php:925 tbl_indexes.php:248 +#: tbl_select.php:284 msgid "Or" msgstr "Vagy" -#: db_qbe.php:506 +#: db_qbe.php:503 msgid "Modify" msgstr "Módosítás" -#: db_qbe.php:583 +#: db_qbe.php:580 #, fuzzy #| msgid "Add/Delete Criteria Row" msgid "Add/Delete criteria rows" msgstr "Feltételsor hozzáadása/törlése" -#: db_qbe.php:595 +#: db_qbe.php:592 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Add/Delete columns" msgstr "Mezőoszlopok hozzáadása/törlése" -#: db_qbe.php:608 db_qbe.php:633 +#: db_qbe.php:605 db_qbe.php:630 msgid "Update Query" msgstr "Lekérdezés frissítése" -#: db_qbe.php:616 +#: db_qbe.php:613 msgid "Use Tables" msgstr "Felhasználandó táblák" -#: db_qbe.php:639 +#: db_qbe.php:636 #, php-format msgid "SQL query on database %s:" msgstr "SQL-lekérdezés a(z) %s adatbázison:" -#: db_qbe.php:933 libraries/common.lib.php:1222 +#: db_qbe.php:930 libraries/common.lib.php:1215 msgid "Submit Query" msgstr "Lekérdezés indítása" @@ -519,17 +493,17 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s találat a(z) %s táblában" msgstr[1] "%s találat a(z) %s táblában" -#: db_search.php:249 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2831 -#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:49 -#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:466 +#: db_search.php:249 db_structure.php:75 db_structure.php:76 +#: db_structure.php:88 db_structure.php:90 db_structure.php:101 +#: db_structure.php:103 libraries/common.lib.php:2836 +#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 +#: tbl_structure.php:35 tbl_structure.php:47 tbl_structure.php:464 msgid "Browse" msgstr "Tartalom" -#: db_search.php:254 libraries/display_tbl.lib.php:1164 -#: libraries/display_tbl.lib.php:2055 libraries/sql_query_form.lib.php:453 -#: pdf_pages.php:285 pdf_pages.php:424 pdf_pages.php:460 pdf_pages.php:488 +#: db_search.php:254 libraries/display_tbl.lib.php:1163 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 msgid "Delete" @@ -569,66 +543,66 @@ msgstr "Táblá(k)ban:" msgid "Inside column:" msgstr "Mezőben:" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2830 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:75 +#: db_structure.php:79 db_structure.php:80 db_structure.php:92 +#: db_structure.php:93 db_structure.php:105 db_structure.php:106 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 +#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Beszúrás" -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2827 libraries/common.lib.php:2834 -#: libraries/db_links.inc.php:62 libraries/export/htmlword.php:22 +#: db_structure.php:81 db_structure.php:94 db_structure.php:107 +#: libraries/common.lib.php:2832 libraries/common.lib.php:2839 +#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 -#: libraries/tbl_links.inc.php:55 pmd_general.php:133 -#: server_privileges.php:593 server_replication.php:314 tbl_tracking.php:268 +#: libraries/tbl_links.inc.php:54 pmd_general.php:133 +#: server_privileges.php:592 server_replication.php:313 tbl_tracking.php:263 msgid "Structure" msgstr "Szerkezet" -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:544 db_structure.php:545 db_tracking.php:90 -#: libraries/Index.class.php:482 libraries/common.lib.php:1659 -#: libraries/db_links.inc.php:99 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:126 -#: server_databases.php:351 tbl_structure.php:26 tbl_structure.php:150 -#: tbl_structure.php:151 tbl_structure.php:470 +#: db_structure.php:82 db_structure.php:83 db_structure.php:95 +#: db_structure.php:96 db_structure.php:108 db_structure.php:109 +#: db_structure.php:530 db_structure.php:531 db_tracking.php:86 +#: libraries/Index.class.php:482 libraries/common.lib.php:1663 +#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 +#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 +#: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" msgstr "Eldobás" -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:542 db_structure.php:543 libraries/common.lib.php:1658 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:104 +#: db_structure.php:84 db_structure.php:85 db_structure.php:97 +#: db_structure.php:98 db_structure.php:110 db_structure.php:111 +#: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 +#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 msgid "Empty" msgstr "Kiürítés" -#: db_structure.php:315 libraries/tbl_links.inc.php:99 +#: db_structure.php:301 libraries/tbl_links.inc.php:98 #, php-format msgid "Table %s has been emptied" msgstr "A(z) %s tábla kiürítése megtörtént" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "View %s has been dropped" msgstr "A(z) %s nézet eldobása kész" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "Table %s has been dropped" msgstr "A(z) %s tábla eldobása megtörtént" -#: db_structure.php:332 +#: db_structure.php:318 msgid "Tracking is active." msgstr "" -#: db_structure.php:334 +#: db_structure.php:320 msgid "Tracking is not active." msgstr "" -#: db_structure.php:419 libraries/display_tbl.lib.php:1943 +#: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -637,166 +611,172 @@ 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." -#: db_structure.php:433 db_structure.php:447 libraries/header.inc.php:125 -#: libraries/tbl_info.inc.php:65 tbl_structure.php:184 test/theme.php:73 +#: db_structure.php:419 db_structure.php:433 libraries/header.inc.php:125 +#: libraries/tbl_info.inc.php:60 tbl_structure.php:183 test/theme.php:73 msgid "View" msgstr "Nézet" -#: db_structure.php:484 libraries/db_structure.lib.php:40 -#: libraries/server_links.inc.php:69 server_replication.php:32 -#: server_replication.php:163 server_status.php:368 +#: db_structure.php:470 libraries/db_structure.lib.php:40 +#: libraries/server_links.inc.php:69 server_replication.php:31 +#: server_replication.php:162 server_status.php:368 msgid "Replication" msgstr "Többszörözés" -#: db_structure.php:488 +#: db_structure.php:474 msgid "Sum" msgstr "Összeg" -#: db_structure.php:495 libraries/StorageEngine.class.php:349 +#: db_structure.php:481 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "Ezen a MySQL szerveren a(z) %s az alapértelmezett tárolómotor." -#: db_structure.php:523 db_structure.php:540 db_structure.php:541 -#: libraries/display_tbl.lib.php:2080 libraries/display_tbl.lib.php:2085 -#: libraries/mult_submits.inc.php:15 server_databases.php:345 -#: server_databases.php:350 server_privileges.php:1588 tbl_structure.php:454 -#: tbl_structure.php:463 +#: db_structure.php:509 db_structure.php:526 db_structure.php:527 +#: libraries/display_tbl.lib.php:2039 libraries/display_tbl.lib.php:2044 +#: libraries/mult_submits.inc.php:15 server_databases.php:343 +#: server_databases.php:348 server_privileges.php:1592 tbl_structure.php:452 +#: tbl_structure.php:461 msgid "With selected:" msgstr "A kijelöltekkel végzendő művelet:" -#: db_structure.php:526 libraries/display_tbl.lib.php:2075 -#: server_databases.php:347 server_privileges.php:569 -#: server_privileges.php:1591 tbl_structure.php:457 +#: db_structure.php:512 libraries/display_tbl.lib.php:2034 +#: server_databases.php:345 server_privileges.php:568 +#: server_privileges.php:1595 tbl_structure.php:455 msgid "Check All" msgstr "Mind kijelölése" -#: db_structure.php:530 libraries/display_tbl.lib.php:2076 -#: libraries/replication_gui.lib.php:35 server_databases.php:349 -#: server_privileges.php:572 server_privileges.php:1595 tbl_structure.php:461 +#: db_structure.php:516 libraries/display_tbl.lib.php:2035 +#: libraries/replication_gui.lib.php:35 server_databases.php:347 +#: server_privileges.php:571 server_privileges.php:1599 tbl_structure.php:459 msgid "Uncheck All" msgstr "Kijelölés törlése" -#: db_structure.php:535 +#: db_structure.php:521 msgid "Check tables having overhead" msgstr "A felülírott táblák kijelölése" -#: db_structure.php:546 db_structure.php:547 db_structure.php:598 -#: libraries/display_tbl.lib.php:2179 libraries/mult_submits.inc.php:27 -#: tbl_structure.php:491 tbl_structure.php:493 +#: db_structure.php:532 db_structure.php:533 db_structure.php:584 +#: libraries/display_tbl.lib.php:2138 libraries/mult_submits.inc.php:27 +#: tbl_structure.php:489 tbl_structure.php:491 msgid "Print view" msgstr "Nyomtatási nézet" -#: db_structure.php:548 db_structure.php:549 libraries/mult_submits.inc.php:41 -#: tbl_operations.php:580 +#: db_structure.php:534 db_structure.php:535 libraries/mult_submits.inc.php:41 +#: tbl_operations.php:578 msgid "Check table" msgstr "Tábla ellenőrzése" -#: db_structure.php:550 db_structure.php:551 libraries/mult_submits.inc.php:46 -#: tbl_operations.php:620 tbl_structure.php:708 tbl_structure.php:710 +#: db_structure.php:536 db_structure.php:537 libraries/mult_submits.inc.php:46 +#: tbl_operations.php:618 tbl_structure.php:706 tbl_structure.php:708 msgid "Optimize table" msgstr "Tábla optimalizálása" -#: db_structure.php:552 db_structure.php:553 libraries/mult_submits.inc.php:51 -#: tbl_operations.php:610 +#: db_structure.php:538 db_structure.php:539 libraries/mult_submits.inc.php:51 +#: tbl_operations.php:608 msgid "Repair table" msgstr "Tábla javítása" -#: db_structure.php:554 db_structure.php:555 libraries/mult_submits.inc.php:56 -#: tbl_operations.php:600 +#: db_structure.php:540 db_structure.php:541 libraries/mult_submits.inc.php:56 +#: tbl_operations.php:598 msgid "Analyze table" msgstr "Tábla elemzése" -#: db_structure.php:556 db_structure.php:557 libraries/db_links.inc.php:70 -#: libraries/display_export.lib.php:82 libraries/display_tbl.lib.php:2093 -#: libraries/display_tbl.lib.php:2224 libraries/mult_submits.inc.php:61 -#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:81 -#: pmd_pdf.php:83 pmd_pdf.php:108 server_privileges.php:1372 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 +#: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 +#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 +#: pmd_pdf.php:81 pmd_pdf.php:106 server_privileges.php:1376 #: setup/frames/menu.inc.php:22 tbl_row_action.php:58 msgid "Export" msgstr "Exportálás" -#: db_structure.php:605 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:591 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "Adatkönyvtár" -#: db_tracking.php:65 +#: db_tracking.php:61 #, fuzzy msgid "Tracked tables" msgstr "A zárolt táblák kihagyása" -#: db_tracking.php:70 libraries/export/htmlword.php:85 +#: db_tracking.php:66 libraries/export/htmlword.php:85 #: libraries/export/latex.php:152 libraries/export/odt.php:112 #: libraries/export/sql.php:339 libraries/export/texytext.php:84 #: libraries/export/xml.php:254 libraries/header.inc.php:105 -#: libraries/header_printview.inc.php:57 server_databases.php:168 -#: server_privileges.php:1652 server_privileges.php:1713 -#: server_privileges.php:1971 server_processlist.php:55 -#: server_synchronize.php:1178 server_synchronize.php:1182 -#: tbl_tracking.php:590 test/theme.php:64 +#: libraries/header_printview.inc.php:57 server_databases.php:166 +#: server_privileges.php:1656 server_privileges.php:1717 +#: server_privileges.php:1975 server_processlist.php:55 +#: server_synchronize.php:1177 server_synchronize.php:1181 +#: tbl_tracking.php:585 test/theme.php:64 msgid "Database" msgstr "Adatbázis" -#: db_tracking.php:72 +#: db_tracking.php:68 msgid "Last version" msgstr "" -#: db_tracking.php:73 tbl_tracking.php:593 +#: db_tracking.php:69 tbl_tracking.php:588 #, fuzzy msgid "Created" msgstr "Létrehozás" -#: db_tracking.php:74 tbl_tracking.php:594 +#: db_tracking.php:70 tbl_tracking.php:589 msgid "Updated" msgstr "" -#: db_tracking.php:76 libraries/Index.class.php:439 -#: libraries/db_structure.lib.php:44 server_databases.php:202 -#: server_privileges.php:1534 server_privileges.php:1717 -#: server_privileges.php:2065 tbl_structure.php:186 +#: db_tracking.php:71 libraries/common.lib.php:1361 +#: libraries/server_links.inc.php:48 server_processlist.php:58 +#: tbl_tracking.php:590 test/theme.php:100 +msgid "Status" +msgstr "Állapot" + +#: db_tracking.php:72 libraries/Index.class.php:439 +#: libraries/db_structure.lib.php:44 server_databases.php:200 +#: server_privileges.php:1538 server_privileges.php:1721 +#: server_privileges.php:2069 tbl_structure.php:185 msgid "Action" msgstr "Művelet" -#: db_tracking.php:87 db_tracking.php:119 +#: db_tracking.php:83 db_tracking.php:115 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:105 tbl_tracking.php:547 tbl_tracking.php:605 -#: tbl_tracking.php:612 +#: db_tracking.php:101 tbl_tracking.php:542 tbl_tracking.php:600 +#: tbl_tracking.php:607 msgid "active" msgstr "" -#: db_tracking.php:107 tbl_tracking.php:549 tbl_tracking.php:607 -#: tbl_tracking.php:609 +#: db_tracking.php:103 tbl_tracking.php:544 tbl_tracking.php:602 +#: tbl_tracking.php:604 msgid "not active" msgstr "" -#: db_tracking.php:120 +#: db_tracking.php:116 #, fuzzy msgid "Versions" msgstr "Perzsa" -#: db_tracking.php:121 tbl_tracking.php:378 tbl_tracking.php:623 +#: db_tracking.php:117 tbl_tracking.php:373 tbl_tracking.php:618 msgid "Tracking report" msgstr "" -#: db_tracking.php:122 tbl_tracking.php:250 tbl_tracking.php:623 +#: db_tracking.php:118 tbl_tracking.php:245 tbl_tracking.php:618 #, fuzzy msgid "Structure snapshot" msgstr "Csak a szerkezet" -#: db_tracking.php:151 +#: db_tracking.php:147 #, fuzzy msgid "Untracked tables" msgstr "A zárolt táblák kihagyása" -#: db_tracking.php:171 db_tracking.php:173 tbl_structure.php:527 -#: tbl_structure.php:529 +#: db_tracking.php:167 db_tracking.php:169 tbl_structure.php:525 +#: tbl_structure.php:527 #, fuzzy msgid "Track table" msgstr "Tábla ellenőrzése" -#: db_tracking.php:199 +#: db_tracking.php:195 #, fuzzy msgid "Database Log" msgstr "Adatbázis" @@ -805,12 +785,12 @@ msgstr "Adatbázis" msgid "Selected export type has to be saved in file!" msgstr "Fájlban kell menteni a kiválasztott exportálási típust!" -#: export.php:153 export.php:178 export.php:620 +#: export.php:152 export.php:177 export.php:615 #, php-format msgid "Insufficient space to save the file %s." msgstr "Kevés a hely a(z) %s fájl mentéséhez." -#: export.php:287 +#: export.php:286 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -818,17 +798,17 @@ msgstr "" "már létezik %s fájl a szerveren, változtassa meg a fájlnevet, vagy állítsa " "be a felülírási opciót!" -#: export.php:291 export.php:295 +#: export.php:290 export.php:294 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "A webszerver számára nem engedélyezett a(z) %s fájl mentése." -#: export.php:622 +#: export.php:617 #, php-format msgid "Dump has been saved to file %s." msgstr "A kiíratás mentése a(z) %s fájlba megtörtént." -#: import.php:59 +#: import.php:58 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -837,14 +817,14 @@ 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ásának." -#: import.php:278 import.php:331 libraries/File.class.php:840 -#: libraries/File.class.php:950 +#: import.php:277 import.php:330 libraries/File.class.php:566 +#: libraries/File.class.php:676 msgid "File could not be read" msgstr "Nem lehetett beolvasni a fájlt" -#: import.php:286 import.php:295 import.php:314 import.php:323 -#: libraries/File.class.php:1020 libraries/File.class.php:1028 -#: libraries/File.class.php:1044 libraries/File.class.php:1052 +#: import.php:285 import.php:294 import.php:313 import.php:322 +#: libraries/File.class.php:746 libraries/File.class.php:754 +#: libraries/File.class.php:770 libraries/File.class.php:778 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -853,7 +833,7 @@ msgstr "" "Ön nem támogatott tömörítésű (%s) fájlt kísérelt meg betölteni. Vagy nem " "valósították meg a támogatását, vagy letiltják a beállítások." -#: import.php:336 +#: import.php:335 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -863,32 +843,32 @@ msgstr "" "vagy a fájlméret túllépte a PHP beállításokban engedélyezett legnagyobb " "méretet. Lásd GYIK 1.16." -#: import.php:371 libraries/display_import.lib.php:23 +#: import.php:370 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "" "Nem lehetett betölteni az importáló beépülő modulokat. Kérjük, ellenőrizze a " "telepítését!" -#: import.php:396 +#: import.php:395 msgid "The bookmark has been deleted." msgstr "A könyvjelző törlése megtörtént." -#: import.php:400 +#: import.php:399 msgid "Showing bookmark" msgstr "Könyvjelző megjelenítése" -#: import.php:402 sql.php:625 +#: import.php:401 sql.php:618 #, php-format msgid "Bookmark %s created" msgstr "A(z) %s könyvjelző elkészült" -#: import.php:408 import.php:414 +#: import.php:407 import.php:413 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" "Az importálás sikeresen befejeződött, %d lekérdezés került végrehajtásra." -#: import.php:423 +#: import.php:422 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -896,7 +876,7 @@ msgstr "" "Script időtúllépés történt, ha be akarja fejezni az importálást, akkor " "küldje újra ugyanazt a fájlt és az importálás folytatódni fog." -#: import.php:425 +#: import.php:424 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -905,19 +885,19 @@ msgstr "" "jelenti, hogy a phpMyAdmin nem tudja befejezni ezt az importálást, ha Ön nem " "növeli meg a PHP időkorlátozását." -#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:240 +#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:239 #: user_password.php:110 msgid "Back" msgstr "Vissza" -#: index.php:188 +#: index.php:183 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "A phpMyAdmin keretkezelő böngészőben használhatóbb." -#: js/messages.php:25 server_synchronize.php:344 server_synchronize.php:356 -#: server_synchronize.php:372 server_synchronize.php:379 -#: server_synchronize.php:738 server_synchronize.php:766 -#: server_synchronize.php:794 server_synchronize.php:806 +#: js/messages.php:25 server_synchronize.php:343 server_synchronize.php:355 +#: server_synchronize.php:371 server_synchronize.php:378 +#: server_synchronize.php:737 server_synchronize.php:765 +#: server_synchronize.php:793 server_synchronize.php:805 msgid "Click to select" msgstr "" @@ -925,15 +905,15 @@ msgstr "" msgid "Click to unselect" msgstr "" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:88 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:87 msgid "\"DROP DATABASE\" statements are disabled." msgstr "A \"DROP DATABASE\" utasítást letiltották." -#: js/messages.php:30 libraries/mult_submits.inc.php:257 sql.php:187 +#: js/messages.php:30 libraries/mult_submits.inc.php:256 sql.php:186 msgid "Do you really want to " msgstr "Valóban a következőt akarja " -#: js/messages.php:31 libraries/mult_submits.inc.php:257 sql.php:171 +#: js/messages.php:31 libraries/mult_submits.inc.php:256 sql.php:170 msgid "You are about to DESTROY a complete database!" msgstr "Ön a teljes adatbázis MEGSEMMISÍTÉSÉRE készül!" @@ -962,11 +942,11 @@ msgstr "A hosztnév üres!" msgid "The user name is empty!" msgstr "Üres a felhasználónév!" -#: js/messages.php:44 server_privileges.php:1228 user_password.php:65 +#: js/messages.php:44 server_privileges.php:1229 user_password.php:65 msgid "The password is empty!" msgstr "Üres a jelszó mező!" -#: js/messages.php:45 server_privileges.php:1226 user_password.php:68 +#: js/messages.php:45 server_privileges.php:1227 user_password.php:68 msgid "The passwords aren't the same!" msgstr "Nem egyeznek a jelszavak!" @@ -974,27 +954,27 @@ msgstr "Nem egyeznek a jelszavak!" msgid "Cancel" msgstr "Mégse" -#: js/messages.php:52 pmd_save_pos.php:53 +#: js/messages.php:52 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "A módosítások mentése megtörtént" -#: js/messages.php:53 pmd_relation_upd.php:48 +#: js/messages.php:53 pmd_relation_upd.php:47 msgid "Relation deleted" msgstr "A kapcsolat törlése kész" -#: js/messages.php:54 pmd_relation_new.php:63 +#: js/messages.php:54 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "IDEGEN KULCS kapcsolat hozzáadása megtörtént" -#: js/messages.php:55 pmd_relation_new.php:85 +#: js/messages.php:55 pmd_relation_new.php:84 msgid "Internal relation added" msgstr "A belső kapcsolat hozzáadása megtörtént" -#: js/messages.php:56 pmd_relation_new.php:62 pmd_relation_new.php:87 +#: js/messages.php:56 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "Hiba: Nem adta hozzá a kapcsolatot." -#: js/messages.php:57 pmd_relation_new.php:30 +#: js/messages.php:57 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "Hiba: A kapcsolat már létezik." @@ -1002,13 +982,13 @@ msgstr "Hiba: A kapcsolat már létezik." msgid "Error saving coordinates for Designer." msgstr "Hiba történt a Tervező koordinátáinak mentésekor." -#: js/messages.php:59 libraries/relation.lib.php:94 -#: libraries/relation.lib.php:106 +#: js/messages.php:59 libraries/relation.lib.php:89 +#: libraries/relation.lib.php:101 msgid "General relation features" msgstr "Általános relációs jellemzők" -#: js/messages.php:59 libraries/relation.lib.php:88 -#: libraries/relation.lib.php:95 +#: js/messages.php:59 libraries/relation.lib.php:83 +#: libraries/relation.lib.php:90 msgid "Disabled" msgstr "Letiltott" @@ -1024,7 +1004,7 @@ msgstr "Idegen kulcs kiválasztása" msgid "Please select the primary key or a unique key" msgstr "Válassza ki az elsődleges kulcsot, vagy egy egyedi kulcsot" -#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:547 +#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" @@ -1055,10 +1035,10 @@ msgid "Prev" msgstr "Előző" #. l10n: Display text for next month link in calendar -#: js/messages.php:81 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:337 -#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:422 -#: tbl_structure.php:800 +#: js/messages.php:81 libraries/common.lib.php:2358 +#: libraries/common.lib.php:2361 libraries/display_tbl.lib.php:336 +#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 +#: tbl_structure.php:798 msgid "Next" msgstr "Következő" @@ -1132,27 +1112,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1562 +#: js/messages.php:101 libraries/common.lib.php:1566 msgid "Jan" msgstr "jan." #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1564 +#: js/messages.php:103 libraries/common.lib.php:1568 msgid "Feb" msgstr "febr." #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1566 +#: js/messages.php:105 libraries/common.lib.php:1570 msgid "Mar" msgstr "márc." #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1568 +#: js/messages.php:107 libraries/common.lib.php:1572 msgid "Apr" msgstr "ápr." #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1570 +#: js/messages.php:109 libraries/common.lib.php:1574 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1160,37 +1140,37 @@ msgid "May" msgstr "máj." #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1572 +#: js/messages.php:111 libraries/common.lib.php:1576 msgid "Jun" msgstr "jún." #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1574 +#: js/messages.php:113 libraries/common.lib.php:1578 msgid "Jul" msgstr "júl." #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1576 +#: js/messages.php:115 libraries/common.lib.php:1580 msgid "Aug" msgstr "aug." #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1578 +#: js/messages.php:117 libraries/common.lib.php:1582 msgid "Sep" msgstr "szept." #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1580 +#: js/messages.php:119 libraries/common.lib.php:1584 msgid "Oct" msgstr "okt." #. l10n: Short month name -#: js/messages.php:121 libraries/common.lib.php:1582 +#: js/messages.php:121 libraries/common.lib.php:1586 msgid "Nov" msgstr "nov." #. l10n: Short month name -#: js/messages.php:123 libraries/common.lib.php:1584 +#: js/messages.php:123 libraries/common.lib.php:1588 msgid "Dec" msgstr "dec." @@ -1231,37 +1211,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1587 +#: js/messages.php:136 libraries/common.lib.php:1591 msgid "Sun" msgstr "V" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1589 +#: js/messages.php:138 libraries/common.lib.php:1593 msgid "Mon" msgstr "H" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1591 +#: js/messages.php:140 libraries/common.lib.php:1595 msgid "Tue" msgstr "K" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1593 +#: js/messages.php:142 libraries/common.lib.php:1597 msgid "Wed" msgstr "Sze" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1595 +#: js/messages.php:144 libraries/common.lib.php:1599 msgid "Thu" msgstr "Cs" #. l10n: Short week day name -#: js/messages.php:146 libraries/common.lib.php:1597 +#: js/messages.php:146 libraries/common.lib.php:1601 msgid "Fri" msgstr "P" #. l10n: Short week day name -#: js/messages.php:148 libraries/common.lib.php:1599 +#: js/messages.php:148 libraries/common.lib.php:1603 msgid "Sat" msgstr "Szo" @@ -1341,18 +1321,13 @@ msgstr "másodpercenként" msgid "Font size" msgstr "Betűméret" -#: libraries/File.class.php:336 libraries/File.class.php:424 -#: libraries/File.class.php:561 libraries/File.class.php:700 -msgid "Unknown error in file upload." -msgstr "Ismeretlen hiba a fájlfeltöltésben." - -#: libraries/File.class.php:406 +#: libraries/File.class.php:315 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:409 +#: libraries/File.class.php:318 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -1360,59 +1335,63 @@ 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:412 +#: libraries/File.class.php:321 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:415 +#: libraries/File.class.php:324 msgid "Missing a temporary folder." msgstr "Hiányzik egy ideiglenes mappa." -#: libraries/File.class.php:418 +#: libraries/File.class.php:327 msgid "Failed to write file to disk." msgstr "Nem sikerült lemezre írni a fájlt." -#: libraries/File.class.php:421 +#: libraries/File.class.php:330 msgid "File upload stopped by extension." msgstr "A fájlfeltöltés kiterjesztés alapján leállt." -#: libraries/File.class.php:898 +#: libraries/File.class.php:333 +msgid "Unknown error in file upload." +msgstr "Ismeretlen hiba a fájlfeltöltésben." + +#: libraries/File.class.php:624 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:427 tbl_relation.php:528 +#: libraries/Index.class.php:427 tbl_relation.php:526 msgid "No index defined!" msgstr "Nincs meghatározott index!" -#: libraries/Index.class.php:432 server_databases.php:131 tbl_tracking.php:315 +#: libraries/Index.class.php:432 server_databases.php:129 tbl_tracking.php:310 msgid "Indexes" msgstr "Indexek" #: libraries/Index.class.php:443 libraries/mult_submits.inc.php:102 -#: libraries/tbl_properties.inc.php:518 tbl_structure.php:32 -#: tbl_structure.php:154 tbl_structure.php:158 tbl_structure.php:473 -#: tbl_tracking.php:321 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:31 +#: tbl_structure.php:153 tbl_structure.php:157 tbl_structure.php:471 +#: tbl_tracking.php:316 msgid "Unique" msgstr "Egyedi" -#: libraries/Index.class.php:444 tbl_tracking.php:322 +#: libraries/Index.class.php:444 tbl_tracking.php:317 msgid "Packed" msgstr "Csomagolt" -#: libraries/Index.class.php:446 tbl_tracking.php:324 +#: libraries/Index.class.php:446 tbl_tracking.php:319 msgid "Cardinality" msgstr "Számosság" -#: libraries/Index.class.php:449 tbl_tracking.php:278 tbl_tracking.php:327 +#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322 msgid "Comment" msgstr "Megjegyzés" #: libraries/Index.class.php:465 libraries/common.lib.php:609 -#: libraries/common.lib.php:1198 libraries/display_tbl.lib.php:1116 +#: libraries/common.lib.php:1191 libraries/display_tbl.lib.php:1115 #: libraries/import.lib.php:1119 libraries/import.lib.php:1143 -#: pdf_pages.php:284 setup/frames/index.inc.php:124 +#: pdf_pages.php:283 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:349 tbl_row_action.php:68 msgid "Edit" msgstr "Módosítás" @@ -1436,15 +1415,15 @@ msgstr "" "eltávolítható." #: libraries/List_Database.class.php:430 libraries/server_links.inc.php:40 -#: server_databases.php:87 server_privileges.php:1652 +#: server_databases.php:85 server_privileges.php:1656 #: setup/lib/messages.inc.php:107 test/theme.php:92 msgid "Databases" msgstr "Adatbázisok" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:259 libraries/import.lib.php:134 pdf_schema.php:31 -#: pdf_schema.php:231 tbl_change.php:1023 tbl_operations.php:212 -#: tbl_relation.php:289 view_operations.php:61 +#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 +#: tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Hiba" @@ -1472,41 +1451,41 @@ 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/StorageEngine.class.php:196 +#: libraries/StorageEngine.class.php:194 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:352 +#: libraries/StorageEngine.class.php:354 #, 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:355 +#: libraries/StorageEngine.class.php:357 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s letiltott ezen a MySQL szerveren." -#: libraries/StorageEngine.class.php:359 +#: libraries/StorageEngine.class.php:361 #, 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:1018 +#: libraries/Table.class.php:1017 msgid "Invalid database" msgstr "Érvénytelen adatbázis" -#: libraries/Table.class.php:1032 tbl_get_field.php:25 +#: libraries/Table.class.php:1031 tbl_get_field.php:25 msgid "Invalid table name" msgstr "Érvénytelen táblanév" -#: libraries/Table.class.php:1047 +#: libraries/Table.class.php:1046 #, 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:1131 +#: libraries/Table.class.php:1129 #, php-format msgid "Table %s has been renamed to %s" msgstr "A(z) %s tábla átnevezése %s névre megtörtént" @@ -1524,22 +1503,22 @@ msgstr "Nincs előnézet." msgid "take it" msgstr "csináld" -#: libraries/Theme_Manager.class.php:114 +#: 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:152 +#: 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:220 +#: 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:296 test/theme.php:160 themes.php:20 +#: libraries/Theme_Manager.class.php:291 test/theme.php:160 themes.php:20 #: themes.php:40 msgid "Theme / Style" msgstr "Téma / Séma" @@ -1654,19 +1633,19 @@ msgstr "Nem történt meg érvényes hitelesítő kulcs csatlakoztatása" msgid "Authenticating..." msgstr "Hitelesítés..." -#: libraries/blobstreaming.lib.php:689 +#: libraries/blobstreaming.lib.php:340 msgid "View image" msgstr "Kép megtekintése" -#: libraries/blobstreaming.lib.php:693 +#: libraries/blobstreaming.lib.php:344 msgid "Play audio" msgstr "Hang lejátszása" -#: libraries/blobstreaming.lib.php:698 +#: libraries/blobstreaming.lib.php:349 msgid "View video" msgstr "Videó megtekintése" -#: libraries/blobstreaming.lib.php:702 +#: libraries/blobstreaming.lib.php:353 msgid "Download file" msgstr "Fájl letöltése" @@ -1722,7 +1701,7 @@ msgstr "Szerver" msgid "Invalid authentication method set in configuration:" msgstr "Érvénytelen hitelesítési mód került beállításra a konfigurációban:" -#: libraries/common.inc.php:909 +#: libraries/common.inc.php:908 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Frissítenie kell %s %s vagy újabb verzióra." @@ -1748,7 +1727,8 @@ msgstr "en" #: libraries/common.lib.php:425 libraries/common.lib.php:427 #: libraries/common.lib.php:429 libraries/common.lib.php:445 #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 -#: libraries/display_export.lib.php:163 libraries/relation.lib.php:84 +#: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 +#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 #: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" @@ -1763,150 +1743,150 @@ msgstr "SQL-lekérdezés" msgid "MySQL said: " msgstr "A MySQL mondta: " -#: libraries/common.lib.php:1136 +#: libraries/common.lib.php:1129 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "Failed to connect to SQL validator!" msgstr "Nem lehetett kapcsolódni a MySQL-szerverhez" -#: libraries/common.lib.php:1174 setup/lib/messages.inc.php:350 +#: libraries/common.lib.php:1167 setup/lib/messages.inc.php:350 msgid "Explain SQL" msgstr "Az SQL magyarázata" -#: libraries/common.lib.php:1177 +#: libraries/common.lib.php:1170 msgid "Skip Explain SQL" msgstr "SQL magyarázat átugrása" -#: libraries/common.lib.php:1211 +#: libraries/common.lib.php:1204 msgid "Without PHP Code" msgstr "PHP kód nélkül" -#: libraries/common.lib.php:1214 setup/lib/messages.inc.php:352 +#: libraries/common.lib.php:1207 setup/lib/messages.inc.php:352 msgid "Create PHP Code" msgstr "PHP-kód létrehozása" -#: libraries/common.lib.php:1232 server_status.php:451 +#: libraries/common.lib.php:1225 server_status.php:451 #: setup/lib/messages.inc.php:351 msgid "Refresh" msgstr "Frissítés" -#: libraries/common.lib.php:1241 +#: libraries/common.lib.php:1234 msgid "Skip Validate SQL" msgstr "SQL érvényesítés átugrása" -#: libraries/common.lib.php:1244 setup/lib/messages.inc.php:353 +#: libraries/common.lib.php:1237 setup/lib/messages.inc.php:353 msgid "Validate SQL" msgstr "SQL érvényesítése" -#: libraries/common.lib.php:1283 +#: libraries/common.lib.php:1287 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1285 +#: libraries/common.lib.php:1289 #, fuzzy #| msgid "Engines" msgid "Inline" msgstr "Motorok" -#: libraries/common.lib.php:1339 libraries/common.lib.php:1354 +#: libraries/common.lib.php:1343 libraries/common.lib.php:1358 msgid "Profiling" msgstr "Adatgyűjtés" -#: libraries/common.lib.php:1358 libraries/tbl_triggers.lib.php:27 +#: libraries/common.lib.php:1362 libraries/tbl_triggers.lib.php:27 #: server_processlist.php:57 msgid "Time" msgstr "Idő" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "B" msgstr "Bájt" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "KiB" msgstr "KB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "MiB" msgstr "MB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "GiB" msgstr "GB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "TiB" msgstr "TB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "PiB" msgstr "PB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "EiB" msgstr "EB" #. l10n: Thousands separator -#: libraries/common.lib.php:1424 +#: libraries/common.lib.php:1428 msgid "," msgstr " " #. l10n: Decimal separator -#: libraries/common.lib.php:1426 +#: libraries/common.lib.php:1430 msgid "." msgstr "." #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1603 +#: libraries/common.lib.php:1607 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%Y. %B %d. %H:%M" -#: libraries/common.lib.php:1909 +#: libraries/common.lib.php:1913 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s nap, %s óra, %s perc, %s másodperc" -#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 -#: libraries/display_tbl.lib.php:289 server_status.php:718 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 +#: libraries/display_tbl.lib.php:288 server_status.php:718 msgid "Begin" msgstr "A tetejére" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 -#: libraries/display_tbl.lib.php:290 server_binlog.php:154 +#: libraries/common.lib.php:2328 libraries/common.lib.php:2331 +#: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "Előző" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 -#: libraries/display_tbl.lib.php:352 +#: libraries/common.lib.php:2359 libraries/common.lib.php:2362 +#: libraries/display_tbl.lib.php:351 msgid "End" msgstr "Vége" -#: libraries/common.lib.php:2429 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "Ugrás a(z) "%s" adatbázishoz." -#: libraries/common.lib.php:2448 +#: libraries/common.lib.php:2453 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "A(z) %s funkcióra egy ismert hiba van hatással, lásd itt: %s" -#: libraries/common.lib.php:2828 libraries/common.lib.php:2835 -#: libraries/db_links.inc.php:67 libraries/export/sql.php:24 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 +#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 -#: libraries/tbl_links.inc.php:59 querywindow.php:89 test/theme.php:96 +#: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2837 libraries/db_links.inc.php:103 -#: libraries/tbl_links.inc.php:94 libraries/tbl_links.inc.php:116 -#: view_operations.php:88 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: view_operations.php:87 msgid "Operations" msgstr "Műveletek" -#: libraries/core.lib.php:282 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1922,38 +1902,38 @@ msgstr "Események" msgid "Name" msgstr "Név" -#: libraries/db_links.inc.php:44 +#: libraries/db_links.inc.php:43 #, php-format msgid "Database %s has been dropped." msgstr "A(z) %s adatbázis eldobása megtörtént." -#: libraries/db_links.inc.php:56 libraries/db_links.inc.php:57 -#: libraries/db_links.inc.php:58 +#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 +#: libraries/db_links.inc.php:57 msgid "Database seems to be empty!" msgstr "Üresnek tűnik az adatbázis!" -#: libraries/db_links.inc.php:80 libraries/relation.lib.php:142 -#: libraries/tbl_links.inc.php:68 +#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:85 +#: libraries/db_links.inc.php:84 msgid "Query" msgstr "Lekérdezés" -#: libraries/db_links.inc.php:90 libraries/relation.lib.php:138 +#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 msgid "Designer" msgstr "Tervező" -#: libraries/db_links.inc.php:97 libraries/server_links.inc.php:87 -#: libraries/tbl_links.inc.php:90 pmd_pdf.php:83 pmd_pdf.php:109 +#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importálás" -#: libraries/db_links.inc.php:110 libraries/server_links.inc.php:65 -#: server_privileges.php:111 server_privileges.php:1714 -#: server_privileges.php:2063 test/theme.php:116 +#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: server_privileges.php:110 server_privileges.php:1718 +#: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" msgstr "Jogok" @@ -1965,14 +1945,14 @@ msgstr "Eljárások" msgid "Return type" msgstr "Típus visszaadása" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1847 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1806 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "Becsült érték lehet. Lásd: GYIK 3.11" -#: libraries/db_structure.lib.php:60 server_databases.php:141 -#: tbl_printview.php:334 tbl_structure.php:681 +#: libraries/db_structure.lib.php:60 server_databases.php:139 +#: tbl_printview.php:333 tbl_structure.php:679 msgid "Overhead" msgstr "Felülírás" @@ -1993,7 +1973,7 @@ msgstr "" "(vagy nem megfelelően állították be a helyi MySQL szerver " "szoftvercsatornáját)" -#: libraries/dbi/mysql.dbi.lib.php:358 tbl_structure.php:607 +#: libraries/dbi/mysql.dbi.lib.php:358 tbl_structure.php:605 msgid "Details..." msgstr "Részletek..." @@ -2003,22 +1983,22 @@ msgid "Change password" msgstr "Jelszó megváltoztatása" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:807 +#: libraries/replication_gui.lib.php:347 server_privileges.php:806 msgid "No Password" msgstr "Nincs jelszó" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1530 server_synchronize.php:1174 +#: libraries/replication_gui.lib.php:351 server_privileges.php:795 +#: server_privileges.php:799 server_privileges.php:810 +#: server_privileges.php:1534 server_synchronize.php:1173 msgid "Password" msgstr "Jelszó" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:815 server_privileges.php:818 +#: server_privileges.php:814 server_privileges.php:817 msgid "Re-type" msgstr "Újraírás" @@ -2041,8 +2021,8 @@ msgstr "Új adatbázis létrehozása" msgid "Create" msgstr "Létrehozás" -#: libraries/display_create_database.lib.php:39 server_privileges.php:113 -#: server_privileges.php:1419 server_replication.php:34 +#: libraries/display_create_database.lib.php:39 server_privileges.php:112 +#: server_privileges.php:1423 server_replication.php:33 msgid "No Privileges" msgstr "Nincs jog" @@ -2063,52 +2043,52 @@ msgstr "Új tábla létrehozása a(z) %s adatbázisban" msgid "Number of columns" msgstr "Mezők száma" -#: libraries/display_export.lib.php:41 +#: libraries/display_export.lib.php:35 msgid "Could not load export plugins, please check your installation!" msgstr "" "Nem lehetett betölteni az exportáló beépülő modulokat. Kérjük, ellenőrizze a " "telepítését!" -#: libraries/display_export.lib.php:106 +#: libraries/display_export.lib.php:100 #, fuzzy, php-format #| msgid "Dump %s row(s) starting at record # %s" msgid "Dump %s row(s) starting at row # %s" msgstr "%s sor kiírása a(z) %s. rekorddal kezdődően" -#: libraries/display_export.lib.php:114 +#: libraries/display_export.lib.php:108 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:124 setup/lib/messages.inc.php:79 +#: libraries/display_export.lib.php:118 setup/lib/messages.inc.php:79 msgid "Save as file" msgstr "Mentés fájlként" -#: libraries/display_export.lib.php:133 +#: libraries/display_export.lib.php:127 #, php-format msgid "Save on server in %s directory" msgstr "Mentés a szerver %s könyvtárában" -#: libraries/display_export.lib.php:141 setup/lib/messages.inc.php:87 +#: libraries/display_export.lib.php:135 setup/lib/messages.inc.php:87 msgid "Overwrite existing file(s)" msgstr "A létező fájl(ok) felülírása" -#: libraries/display_export.lib.php:147 +#: libraries/display_export.lib.php:141 msgid "File name template" msgstr "Fájlnévsablon" -#: libraries/display_export.lib.php:151 +#: libraries/display_export.lib.php:145 msgid "server name" msgstr "szerver neve" -#: libraries/display_export.lib.php:154 +#: libraries/display_export.lib.php:148 msgid "database name" msgstr "adatbázis neve" -#: libraries/display_export.lib.php:157 +#: libraries/display_export.lib.php:151 msgid "table name" msgstr "tábla neve" -#: libraries/display_export.lib.php:161 +#: libraries/display_export.lib.php:155 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2119,39 +2099,39 @@ msgstr "" "vagyis időformázó karakterláncokat használhat. A következő átalakításokra " "kerül továbbá sor: %3$s. Más szöveg eredeti állapotában kerül megtartásra." -#: libraries/display_export.lib.php:202 +#: libraries/display_export.lib.php:196 msgid "remember template" msgstr "a sablon megjegyzése" -#: libraries/display_export.lib.php:210 libraries/display_import.lib.php:177 +#: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 #: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 msgid "Character set of the file:" msgstr "A fájl karakterkészlete:" -#: libraries/display_export.lib.php:235 setup/lib/messages.inc.php:81 +#: libraries/display_export.lib.php:229 setup/lib/messages.inc.php:81 msgid "Compression" msgstr "Tömörítés" -#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:196 -#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:529 -#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:574 -#: server_privileges.php:1867 server_processlist.php:74 +#: libraries/display_export.lib.php:234 libraries/display_import.lib.php:196 +#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:528 +#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:573 +#: server_privileges.php:1871 server_processlist.php:74 msgid "None" msgstr "Nincs" -#: libraries/display_export.lib.php:247 +#: libraries/display_export.lib.php:241 msgid "\"zipped\"" msgstr "\"zip tömörítés\"" -#: libraries/display_export.lib.php:253 +#: libraries/display_export.lib.php:247 msgid "\"gzipped\"" msgstr "\"gzip tömörítés\"" -#: libraries/display_export.lib.php:259 +#: libraries/display_export.lib.php:253 msgid "\"bzipped\"" msgstr "\"bzip tömörítés\"" -#: libraries/display_export.lib.php:274 libraries/export/sql.php:42 +#: libraries/display_export.lib.php:268 libraries/export/sql.php:42 #: libraries/import/sql.php:31 msgid "SQL compatibility mode" msgstr "SQL kompatibilitási mód" @@ -2186,12 +2166,12 @@ msgid "File uploads are not allowed on this server." msgstr "Ezen a szerveren a fájlfeltöltések nem engedélyezettek." #: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 -#: tbl_change.php:1024 +#: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "Nem elérhető a feltöltésekhez megadott könyvtár" #: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 -#: tbl_change.php:1027 +#: tbl_change.php:925 msgid "web server upload directory" msgstr "webszerver feltöltési könyvtár" @@ -2279,43 +2259,43 @@ msgstr "Papírméret" msgid "Language" msgstr "Nyelv" -#: libraries/display_tbl.lib.php:303 +#: libraries/display_tbl.lib.php:302 #, php-format msgid "%d is not valid row number." msgstr "A(z) %d érvénytelen sorszám." -#: libraries/display_tbl.lib.php:309 +#: libraries/display_tbl.lib.php:308 #, fuzzy #| msgid "row(s) starting from record #" msgid "row(s) starting from row #" msgstr "sor a következő számú rekordtól kezdődően:" -#: libraries/display_tbl.lib.php:315 +#: libraries/display_tbl.lib.php:314 msgid "horizontal" msgstr "vízszintesen" -#: libraries/display_tbl.lib.php:316 +#: libraries/display_tbl.lib.php:315 msgid "horizontal (rotated headers)" msgstr "vízszintesen (elforgatott fejlécek)" -#: libraries/display_tbl.lib.php:317 +#: libraries/display_tbl.lib.php:316 msgid "vertical" msgstr "függőlegesen" -#: libraries/display_tbl.lib.php:323 +#: libraries/display_tbl.lib.php:322 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "%s és a fejlécek megismétlése %s cella után" -#: libraries/display_tbl.lib.php:345 +#: libraries/display_tbl.lib.php:344 msgid "This operation could take a long time. Proceed anyway?" msgstr "Ez a művelet sokáig eltarthat. Mindenképp folytatja?" -#: libraries/display_tbl.lib.php:511 +#: libraries/display_tbl.lib.php:510 msgid "Sort by key" msgstr "Kulcs szerinti rendezés" -#: libraries/display_tbl.lib.php:554 libraries/export/codegen.php:38 +#: libraries/display_tbl.lib.php:553 libraries/export/codegen.php:38 #: libraries/export/csv.php:29 libraries/export/excel.php:34 #: libraries/export/htmlword.php:28 libraries/export/latex.php:32 #: libraries/export/mediawiki.php:21 libraries/export/ods.php:26 @@ -2325,100 +2305,100 @@ msgstr "Kulcs szerinti rendezés" #: libraries/export/xlsx.php:26 libraries/export/xml.php:23 #: libraries/export/yaml.php:27 libraries/import.lib.php:1114 #: libraries/import.lib.php:1136 libraries/import/csv.php:31 -#: libraries/import/docsql.php:33 libraries/import/ldi.php:46 +#: libraries/import/docsql.php:32 libraries/import/ldi.php:46 #: libraries/import/ods.php:30 libraries/import/sql.php:19 #: libraries/import/xls.php:25 libraries/import/xlsx.php:25 -#: libraries/import/xml.php:25 tbl_select.php:264 tbl_structure.php:752 +#: libraries/import/xml.php:25 tbl_select.php:263 tbl_structure.php:750 msgid "Options" msgstr "Beállítások" -#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:569 +#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:568 msgid "Partial Texts" msgstr "Részleges szövegek" -#: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:573 +#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:572 msgid "Full Texts" msgstr "Teljes szövegek" -#: libraries/display_tbl.lib.php:586 +#: libraries/display_tbl.lib.php:585 msgid "Relational key" msgstr "Relációs kulcs" -#: libraries/display_tbl.lib.php:587 +#: libraries/display_tbl.lib.php:586 #, fuzzy #| msgid "Relational display field" msgid "Relational display column" msgstr "Relációs megjelenítési mező" -#: libraries/display_tbl.lib.php:594 +#: libraries/display_tbl.lib.php:593 msgid "Show binary contents" msgstr "Bináris tartalom megjelenítése" -#: libraries/display_tbl.lib.php:596 +#: libraries/display_tbl.lib.php:595 msgid "Show BLOB contents" msgstr "BLOB-tartalom megjelenítése" -#: libraries/display_tbl.lib.php:598 +#: libraries/display_tbl.lib.php:597 #, fuzzy msgid "Show binary contents as HEX" msgstr "Bináris tartalom megjelenítése" -#: libraries/display_tbl.lib.php:606 pmd_general.php:140 tbl_change.php:312 -#: tbl_change.php:318 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:307 +#: tbl_change.php:313 msgid "Hide" msgstr "Elrejtés" -#: libraries/display_tbl.lib.php:606 libraries/relation.lib.php:122 -#: libraries/tbl_properties.inc.php:143 transformation_overview.php:46 +#: libraries/display_tbl.lib.php:605 libraries/relation.lib.php:117 +#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46 msgid "Browser transformation" msgstr "Böngésző átalakítása" -#: libraries/display_tbl.lib.php:1125 libraries/display_tbl.lib.php:1129 -#: libraries/display_tbl.lib.php:1131 +#: libraries/display_tbl.lib.php:1124 libraries/display_tbl.lib.php:1128 +#: libraries/display_tbl.lib.php:1130 msgid "Execute bookmarked query" msgstr "Könyvjelzőkhöz hozzáadott lekérdezés végrehajtása" -#: libraries/display_tbl.lib.php:1144 libraries/display_tbl.lib.php:1156 +#: libraries/display_tbl.lib.php:1143 libraries/display_tbl.lib.php:1155 msgid "The row has been deleted" msgstr "A sor törlése megtörtént" -#: libraries/display_tbl.lib.php:1183 libraries/display_tbl.lib.php:2055 +#: libraries/display_tbl.lib.php:1182 libraries/display_tbl.lib.php:2014 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "Leállít" -#: libraries/display_tbl.lib.php:1933 +#: libraries/display_tbl.lib.php:1892 msgid "in query" msgstr "lekérdezésben" -#: libraries/display_tbl.lib.php:1951 +#: libraries/display_tbl.lib.php:1910 msgid "Showing rows" msgstr "Megjelenített sorok:" -#: libraries/display_tbl.lib.php:1961 +#: libraries/display_tbl.lib.php:1920 msgid "total" msgstr "összesen" -#: libraries/display_tbl.lib.php:1969 sql.php:523 +#: libraries/display_tbl.lib.php:1928 sql.php:522 #, php-format msgid "Query took %01.4f sec" msgstr "a lekérdezés %01.4f másodpercig tartott" -#: libraries/display_tbl.lib.php:2088 libraries/mult_submits.inc.php:112 -#: querywindow.php:115 querywindow.php:119 querywindow.php:122 -#: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:469 +#: libraries/display_tbl.lib.php:2047 libraries/mult_submits.inc.php:112 +#: querywindow.php:114 querywindow.php:118 querywindow.php:121 +#: tbl_structure.php:23 tbl_structure.php:148 tbl_structure.php:467 msgid "Change" msgstr "Módosítás" -#: libraries/display_tbl.lib.php:2158 +#: libraries/display_tbl.lib.php:2117 msgid "Query results operations" msgstr "Műveletek a lekérdezési eredménnyel" -#: libraries/display_tbl.lib.php:2186 +#: libraries/display_tbl.lib.php:2145 msgid "Print view (with full texts)" msgstr "Nyomtatási nézet (teljes szöveggel)" -#: libraries/display_tbl.lib.php:2359 +#: libraries/display_tbl.lib.php:2318 msgid "Link not found" msgstr "Nem található a hivatkozás" @@ -2474,9 +2454,9 @@ msgstr "InnoDB állapota" msgid "Buffer Pool Usage" msgstr "Pufferkészlet kihasználtsága" -#: libraries/engines/innodb.lib.php:168 server_databases.php:136 -#: server_databases.php:304 server_status.php:524 server_status.php:585 -#: server_status.php:606 tbl_printview.php:349 tbl_structure.php:695 +#: libraries/engines/innodb.lib.php:168 server_databases.php:134 +#: server_databases.php:302 server_status.php:524 server_status.php:585 +#: server_status.php:606 tbl_printview.php:348 tbl_structure.php:693 msgid "Total" msgstr "Összesen" @@ -2613,6 +2593,88 @@ msgstr "" "vagy az indexek CREATE INDEX vagy ALTER TABLE paranccsal történő " "készítésekor." +#: libraries/engines/pbms.lib.php:31 +#, fuzzy +#| msgid "Garbage threshold" +msgid "Garbage Threshold" +msgstr "Szemét küszöbértéke" + +#: libraries/engines/pbms.lib.php:32 +#, fuzzy +#| msgid "" +#| "The percentage of garbage in a data log file before it is compacted. This " +#| "is a value between 1 and 99. The default is 50." +msgid "The percentage of garbage in a repository file before it is compacted." +msgstr "" +"Az adatnaplófájlban lévő szemét tömörítés előtti százalékaránya. Ez 1 és 99 " +"közti érték. Alapértelmezés: 50." + +#: libraries/engines/pbms.lib.php:36 libraries/replication_gui.lib.php:69 +#: server_synchronize.php:1161 +#, fuzzy +msgid "Port" +msgstr "Rendezés" + +#: libraries/engines/pbms.lib.php:37 +msgid "" +"The port for the PBMS stream-based communications. Setting this value to 0 " +"will disable HTTP communication with the daemon." +msgstr "" + +#: libraries/engines/pbms.lib.php:41 +msgid "Repository Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:42 +msgid "" +"The maximum size of a BLOB repository file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:46 +msgid "Temp Blob Timeout" +msgstr "" + +#: libraries/engines/pbms.lib.php:47 +msgid "" +"The timeout, in seconds, for temporary BLOBs. Uploaded BLOB data is removed " +"after this time, unless they are referenced by a record in the database." +msgstr "" + +#: libraries/engines/pbms.lib.php:51 +#, fuzzy +#| msgid "Log file threshold" +msgid "Temp Log Threshold" +msgstr "Naplófájl küszöbértéke" + +#: libraries/engines/pbms.lib.php:52 +msgid "" +"The maximum size of a temporary BLOB log file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:56 +msgid "Max Keep Alive" +msgstr "" + +#: libraries/engines/pbms.lib.php:57 +msgid "" +"The timeout for inactive connection with the keep-alive flag set. After this " +"time the connection will be closed. The time-out is in milliseconds (1/1000)." +msgstr "" + +#: libraries/engines/pbms.lib.php:61 +msgid "Metadata Headers" +msgstr "" + +#: libraries/engines/pbms.lib.php:62 +msgid "" +"A \":\" delimited list of metadata headers to be used to initialize the " +"pbms_metadata_header table when a database is created." +msgstr "" + #: libraries/engines/pbxt.lib.php:22 msgid "Index cache size" msgstr "Indexgyorsítótár mérete" @@ -2764,7 +2826,7 @@ msgstr "" "nekik." #: libraries/export/codegen.php:36 setup/lib/messages.inc.php:85 -#: tbl_printview.php:374 tbl_structure.php:736 +#: tbl_printview.php:373 tbl_structure.php:734 msgid "Format" msgstr "Formátum" @@ -2837,9 +2899,9 @@ msgstr "Microsoft Word 2000" #: libraries/export/htmlword.php:23 libraries/export/latex.php:59 #: libraries/export/latex.php:205 libraries/export/odt.php:47 #: libraries/export/sql.php:105 libraries/export/sql.php:865 -#: libraries/export/texytext.php:27 server_databases.php:126 -#: server_privileges.php:576 server_replication.php:315 tbl_printview.php:315 -#: tbl_structure.php:664 +#: libraries/export/texytext.php:27 server_databases.php:124 +#: server_privileges.php:575 server_replication.php:314 tbl_printview.php:314 +#: tbl_structure.php:662 msgid "Data" msgstr "Adatok" @@ -2854,7 +2916,6 @@ msgid "Table structure for table" msgstr "Tábla szerkezet:" #: libraries/export/latex.php:13 -#| msgid "Content of table __TABLE__" msgid "Content of table @TABLE@" msgstr "@TABLE@ tábla tartalma" @@ -2863,7 +2924,6 @@ msgid "(continued)" msgstr "(folytatás)" #: libraries/export/latex.php:15 -#| msgid "Structure of table __TABLE__" msgid "Structure of table @TABLE@" msgstr "@TABLE@ tábla szerkezete" @@ -2888,13 +2948,13 @@ msgid "Label key" msgstr "Feliratkulcs" #: libraries/export/latex.php:46 libraries/export/odt.php:34 -#: libraries/export/sql.php:90 tbl_relation.php:398 +#: libraries/export/sql.php:90 tbl_relation.php:396 msgid "Relations" msgstr "Kapcsolatok" #: libraries/export/latex.php:52 libraries/export/odt.php:40 #: libraries/export/odt.php:317 libraries/export/sql.php:94 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "MIME-típus" @@ -2902,10 +2962,10 @@ msgstr "MIME-típus" #: libraries/export/xml.php:101 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1529 server_privileges.php:2061 -#: server_processlist.php:54 server_synchronize.php:1158 +#: libraries/replication_gui.lib.php:331 server_privileges.php:730 +#: server_privileges.php:733 server_privileges.php:789 +#: server_privileges.php:1533 server_privileges.php:2065 +#: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "Hoszt" @@ -3097,8 +3157,8 @@ msgstr "" msgid "Export contents" msgstr "Exportálás alapértelmezései" -#: libraries/footer.inc.php:182 libraries/footer.inc.php:193 -#: libraries/footer.inc.php:196 +#: libraries/footer.inc.php:180 libraries/footer.inc.php:191 +#: libraries/footer.inc.php:194 msgid "Open new phpMyAdmin window" msgstr "Új phpMyAdmin ablak nyitása" @@ -3115,7 +3175,7 @@ msgstr "SQL-eredmény" msgid "Generated by" msgstr "Készítette" -#: libraries/import.lib.php:151 sql.php:519 tbl_change.php:180 +#: libraries/import.lib.php:151 sql.php:518 tbl_change.php:175 #: 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)." @@ -3173,7 +3233,7 @@ msgstr "A dupla sorok figyelmen kívül hagyása" msgid "Column names in first row" msgstr "" -#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:501 +#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:500 #: view_create.php:147 msgid "Column names" msgstr "Oszlopnevek" @@ -3200,12 +3260,12 @@ msgstr "A CSV bevitel %d. sorában a formázás érvénytelen." msgid "Invalid column count in CSV input on line %d." msgstr "A CSV bevitel %d. sorában a mezők száma érvénytelen." -#: libraries/import/docsql.php:28 +#: libraries/import/docsql.php:27 msgid "DocSQL" msgstr "DocSQL" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 -#: server_synchronize.php:427 server_synchronize.php:870 +#: libraries/import/docsql.php:30 libraries/tbl_properties.inc.php:616 +#: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "Tábla neve" @@ -3263,26 +3323,26 @@ msgstr "Nincs" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:512 -#: tbl_structure.php:28 tbl_structure.php:152 tbl_structure.php:156 -#: tbl_structure.php:472 +#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:511 +#: tbl_structure.php:27 tbl_structure.php:151 tbl_structure.php:155 +#: tbl_structure.php:470 msgid "Primary" msgstr "Elsődleges" #: libraries/mult_submits.inc.php:97 libraries/tbl_properties.inc.php:115 -#: libraries/tbl_properties.inc.php:524 tbl_printview.php:324 -#: tbl_structure.php:30 tbl_structure.php:153 tbl_structure.php:157 -#: tbl_structure.php:474 tbl_structure.php:672 +#: libraries/tbl_properties.inc.php:523 tbl_printview.php:323 +#: tbl_structure.php:29 tbl_structure.php:152 tbl_structure.php:156 +#: tbl_structure.php:472 tbl_structure.php:670 msgid "Index" msgstr "Index" -#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:530 -#: tbl_structure.php:34 tbl_structure.php:155 tbl_structure.php:159 -#: tbl_structure.php:477 +#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:529 +#: tbl_structure.php:33 tbl_structure.php:154 tbl_structure.php:158 +#: tbl_structure.php:475 msgid "Fulltext" msgstr "Teljes szöveg" -#: libraries/mult_submits.inc.php:434 tbl_replace.php:330 +#: libraries/mult_submits.inc.php:433 tbl_replace.php:330 msgid "No change" msgstr "Nincs változás" @@ -3290,190 +3350,190 @@ msgstr "Nincs változás" msgid "Charset" msgstr "Karakterkészlet" -#: libraries/mysql_charsets.lib.php:210 libraries/mysql_charsets.lib.php:411 -#: tbl_change.php:515 +#: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 +#: tbl_change.php:510 msgid "Binary" msgstr "Bináris" -#: libraries/mysql_charsets.lib.php:222 +#: libraries/mysql_charsets.lib.php:214 msgid "Bulgarian" msgstr "Bolgár" -#: libraries/mysql_charsets.lib.php:226 libraries/mysql_charsets.lib.php:351 +#: libraries/mysql_charsets.lib.php:218 libraries/mysql_charsets.lib.php:343 msgid "Simplified Chinese" msgstr "Egyszerűsített kínai" -#: libraries/mysql_charsets.lib.php:228 libraries/mysql_charsets.lib.php:371 +#: libraries/mysql_charsets.lib.php:220 libraries/mysql_charsets.lib.php:363 msgid "Traditional Chinese" msgstr "Hagyományos kínai" -#: libraries/mysql_charsets.lib.php:232 libraries/mysql_charsets.lib.php:418 +#: libraries/mysql_charsets.lib.php:224 libraries/mysql_charsets.lib.php:410 msgid "case-insensitive" msgstr "a kis- és nagybetű nem különbözik" -#: libraries/mysql_charsets.lib.php:235 libraries/mysql_charsets.lib.php:420 +#: libraries/mysql_charsets.lib.php:227 libraries/mysql_charsets.lib.php:412 msgid "case-sensitive" msgstr "a kis- és nagybetű különbözik" -#: libraries/mysql_charsets.lib.php:238 +#: libraries/mysql_charsets.lib.php:230 msgid "Croatian" msgstr "Horvát" -#: libraries/mysql_charsets.lib.php:241 +#: libraries/mysql_charsets.lib.php:233 msgid "Czech" msgstr "Cseh" -#: libraries/mysql_charsets.lib.php:244 +#: libraries/mysql_charsets.lib.php:236 msgid "Danish" msgstr "Dán" -#: libraries/mysql_charsets.lib.php:247 +#: libraries/mysql_charsets.lib.php:239 msgid "English" msgstr "Angol" -#: libraries/mysql_charsets.lib.php:250 +#: libraries/mysql_charsets.lib.php:242 msgid "Esperanto" msgstr "Eszperantó" -#: libraries/mysql_charsets.lib.php:253 +#: libraries/mysql_charsets.lib.php:245 msgid "Estonian" msgstr "Észt" -#: libraries/mysql_charsets.lib.php:256 libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:248 libraries/mysql_charsets.lib.php:251 msgid "German" msgstr "Német" -#: libraries/mysql_charsets.lib.php:256 +#: libraries/mysql_charsets.lib.php:248 msgid "dictionary" msgstr "szótár" -#: libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:251 msgid "phone book" msgstr "telefonkönyv" -#: libraries/mysql_charsets.lib.php:262 +#: libraries/mysql_charsets.lib.php:254 msgid "Hungarian" msgstr "Magyar" -#: libraries/mysql_charsets.lib.php:265 +#: libraries/mysql_charsets.lib.php:257 msgid "Icelandic" msgstr "Izlandi" -#: libraries/mysql_charsets.lib.php:268 libraries/mysql_charsets.lib.php:358 +#: libraries/mysql_charsets.lib.php:260 libraries/mysql_charsets.lib.php:350 msgid "Japanese" msgstr "Japán" -#: libraries/mysql_charsets.lib.php:271 +#: libraries/mysql_charsets.lib.php:263 msgid "Latvian" msgstr "Lett" -#: libraries/mysql_charsets.lib.php:274 +#: libraries/mysql_charsets.lib.php:266 msgid "Lithuanian" msgstr "Litván" -#: libraries/mysql_charsets.lib.php:277 libraries/mysql_charsets.lib.php:380 +#: libraries/mysql_charsets.lib.php:269 libraries/mysql_charsets.lib.php:372 msgid "Korean" msgstr "Koreai" -#: libraries/mysql_charsets.lib.php:280 +#: libraries/mysql_charsets.lib.php:272 msgid "Persian" msgstr "Perzsa" -#: libraries/mysql_charsets.lib.php:283 +#: libraries/mysql_charsets.lib.php:275 msgid "Polish" msgstr "Lengyel" -#: libraries/mysql_charsets.lib.php:286 libraries/mysql_charsets.lib.php:334 +#: libraries/mysql_charsets.lib.php:278 libraries/mysql_charsets.lib.php:326 msgid "West European" msgstr "Nyugat-európai" -#: libraries/mysql_charsets.lib.php:289 +#: libraries/mysql_charsets.lib.php:281 msgid "Romanian" msgstr "Román" -#: libraries/mysql_charsets.lib.php:292 +#: libraries/mysql_charsets.lib.php:284 msgid "Slovak" msgstr "Szlovák" -#: libraries/mysql_charsets.lib.php:295 +#: libraries/mysql_charsets.lib.php:287 msgid "Slovenian" msgstr "Szlovén" -#: libraries/mysql_charsets.lib.php:298 +#: libraries/mysql_charsets.lib.php:290 msgid "Spanish" msgstr "Spanyol" -#: libraries/mysql_charsets.lib.php:301 +#: libraries/mysql_charsets.lib.php:293 msgid "Traditional Spanish" msgstr "Hagyományos spanyol" -#: libraries/mysql_charsets.lib.php:304 libraries/mysql_charsets.lib.php:401 +#: libraries/mysql_charsets.lib.php:296 libraries/mysql_charsets.lib.php:393 msgid "Swedish" msgstr "Svéd" -#: libraries/mysql_charsets.lib.php:307 libraries/mysql_charsets.lib.php:404 +#: libraries/mysql_charsets.lib.php:299 libraries/mysql_charsets.lib.php:396 msgid "Thai" msgstr "Thai" -#: libraries/mysql_charsets.lib.php:310 libraries/mysql_charsets.lib.php:398 +#: libraries/mysql_charsets.lib.php:302 libraries/mysql_charsets.lib.php:390 msgid "Turkish" msgstr "Török" -#: libraries/mysql_charsets.lib.php:313 libraries/mysql_charsets.lib.php:395 +#: libraries/mysql_charsets.lib.php:305 libraries/mysql_charsets.lib.php:387 msgid "Ukrainian" msgstr "Ukrán" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 msgid "Unicode" msgstr "Unicode" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 -#: libraries/mysql_charsets.lib.php:334 libraries/mysql_charsets.lib.php:341 -#: libraries/mysql_charsets.lib.php:363 libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 +#: libraries/mysql_charsets.lib.php:326 libraries/mysql_charsets.lib.php:333 +#: libraries/mysql_charsets.lib.php:355 libraries/mysql_charsets.lib.php:366 msgid "multilingual" msgstr "többnyelvű" -#: libraries/mysql_charsets.lib.php:341 +#: libraries/mysql_charsets.lib.php:333 msgid "Central European" msgstr "Közép-európai" -#: libraries/mysql_charsets.lib.php:346 +#: libraries/mysql_charsets.lib.php:338 msgid "Russian" msgstr "Orosz" -#: libraries/mysql_charsets.lib.php:363 +#: libraries/mysql_charsets.lib.php:355 msgid "Baltic" msgstr "Balti" -#: libraries/mysql_charsets.lib.php:368 +#: libraries/mysql_charsets.lib.php:360 msgid "Armenian" msgstr "Örmény" -#: libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:366 msgid "Cyrillic" msgstr "Cirill" -#: libraries/mysql_charsets.lib.php:377 +#: libraries/mysql_charsets.lib.php:369 msgid "Arabic" msgstr "Arab" -#: libraries/mysql_charsets.lib.php:383 +#: libraries/mysql_charsets.lib.php:375 msgid "Hebrew" msgstr "Héber" -#: libraries/mysql_charsets.lib.php:386 +#: libraries/mysql_charsets.lib.php:378 msgid "Georgian" msgstr "Grúz" -#: libraries/mysql_charsets.lib.php:389 +#: libraries/mysql_charsets.lib.php:381 msgid "Greek" msgstr "Görög" -#: libraries/mysql_charsets.lib.php:392 +#: libraries/mysql_charsets.lib.php:384 msgid "Czech-Slovak" msgstr "Csehszlovák" -#: libraries/mysql_charsets.lib.php:407 libraries/mysql_charsets.lib.php:414 +#: libraries/mysql_charsets.lib.php:399 libraries/mysql_charsets.lib.php:406 msgid "unknown" msgstr "ismeretlen" @@ -3499,69 +3559,69 @@ msgstr "Lekérdezés ablak" msgid "This format has no options" msgstr "Ennek a formátumnak nincsenek beállításai" -#: libraries/relation.lib.php:82 +#: libraries/relation.lib.php:77 msgid "not OK" msgstr "Nincs rendben" -#: libraries/relation.lib.php:86 pmd_general.php:339 +#: libraries/relation.lib.php:81 pmd_general.php:339 msgid "OK" msgstr "OK" -#: libraries/relation.lib.php:87 +#: libraries/relation.lib.php:82 msgid "Enabled" msgstr "Engedélyezett" -#: libraries/relation.lib.php:110 +#: libraries/relation.lib.php:105 msgid "Display Features" msgstr "Tulajdonságok megjelenítése" -#: libraries/relation.lib.php:116 +#: libraries/relation.lib.php:111 msgid "Creation of PDFs" msgstr "PDF készítése" -#: libraries/relation.lib.php:120 +#: libraries/relation.lib.php:115 msgid "Displaying Column Comments" msgstr "Oszlopmegjegyzések megjelenítése" -#: libraries/relation.lib.php:125 +#: libraries/relation.lib.php:120 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "Kérjük, olvassa el a dokumentációban a column_comments tábla frissítéséről " "szóló fejezetet" -#: libraries/relation.lib.php:130 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 msgid "Bookmarked SQL query" msgstr "Könyvjelzőkhöz hozzáadott SQL-lekérdezés" -#: libraries/relation.lib.php:134 querywindow.php:99 querywindow.php:207 +#: libraries/relation.lib.php:129 querywindow.php:98 querywindow.php:205 msgid "SQL history" msgstr "SQL-előzmények" -#: libraries/relation.lib.php:146 +#: libraries/relation.lib.php:141 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:148 +#: libraries/relation.lib.php:143 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" -#: libraries/relation.lib.php:149 +#: libraries/relation.lib.php:144 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:150 +#: libraries/relation.lib.php:145 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:151 +#: libraries/relation.lib.php:146 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1158 +#: libraries/relation.lib.php:1153 msgid "no description" msgstr "nincs leírás" @@ -3570,7 +3630,7 @@ msgstr "nincs leírás" msgid "Slave configuration" msgstr "Szerverbeállítások" -#: libraries/replication_gui.lib.php:53 server_replication.php:346 +#: libraries/replication_gui.lib.php:53 server_replication.php:345 msgid "Change or reconfigure master server" msgstr "" @@ -3582,17 +3642,12 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:711 -#: server_privileges.php:714 server_privileges.php:721 -#: server_synchronize.php:1170 +#: libraries/replication_gui.lib.php:261 server_privileges.php:710 +#: server_privileges.php:713 server_privileges.php:720 +#: server_synchronize.php:1169 msgid "User name" msgstr "Felhasználónév" -#: libraries/replication_gui.lib.php:69 server_synchronize.php:1162 -#, fuzzy -msgid "Port" -msgstr "Rendezés" - #: libraries/replication_gui.lib.php:105 msgid "Master status" msgstr "Mester állapot" @@ -3607,8 +3662,8 @@ msgid "Variable" msgstr "Változó" #: libraries/replication_gui.lib.php:117 server_status.php:737 -#: tbl_change.php:322 tbl_printview.php:368 tbl_select.php:137 -#: tbl_structure.php:728 +#: tbl_change.php:317 tbl_printview.php:367 tbl_select.php:136 +#: tbl_structure.php:726 msgid "Value" msgstr "Érték" @@ -3622,38 +3677,38 @@ msgid "" "this list." msgstr "" -#: libraries/replication_gui.lib.php:242 server_replication.php:193 +#: libraries/replication_gui.lib.php:242 server_replication.php:192 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:256 server_privileges.php:716 +#: libraries/replication_gui.lib.php:256 server_privileges.php:715 msgid "Any user" msgstr "Bármilyen felhasználó" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1920 server_privileges.php:1950 +#: libraries/replication_gui.lib.php:348 server_privileges.php:716 +#: server_privileges.php:783 server_privileges.php:807 +#: server_privileges.php:1924 server_privileges.php:1954 msgid "Use text field" msgstr "Szöveges mező használata" -#: libraries/replication_gui.lib.php:304 server_privileges.php:764 +#: libraries/replication_gui.lib.php:304 server_privileges.php:763 msgid "Any host" msgstr "Bármilyen hoszt" -#: libraries/replication_gui.lib.php:308 server_privileges.php:768 +#: libraries/replication_gui.lib.php:308 server_privileges.php:767 msgid "Local" msgstr "Helyi" -#: libraries/replication_gui.lib.php:314 server_privileges.php:773 +#: libraries/replication_gui.lib.php:314 server_privileges.php:772 msgid "This Host" msgstr "Ez a hoszt" -#: libraries/replication_gui.lib.php:320 server_privileges.php:779 +#: libraries/replication_gui.lib.php:320 server_privileges.php:778 msgid "Use Host Table" msgstr "Hoszt-tábla használata" -#: libraries/replication_gui.lib.php:333 server_privileges.php:792 +#: libraries/replication_gui.lib.php:333 server_privileges.php:791 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3681,8 +3736,8 @@ msgstr "Ismeretlen nyelv: %1$s." msgid "Servers" msgstr "Szerverek" -#: libraries/server_links.inc.php:52 server_engines.php:111 -#: server_engines.php:115 server_status.php:414 test/theme.php:104 +#: libraries/server_links.inc.php:52 server_engines.php:125 +#: server_engines.php:129 server_status.php:414 test/theme.php:104 msgid "Variables" msgstr "Változók" @@ -3703,12 +3758,12 @@ msgstr "Bináris napló" msgid "Processes" msgstr "Folyamatok" -#: libraries/server_links.inc.php:91 server_synchronize.php:1091 -#: server_synchronize.php:1099 +#: libraries/server_links.inc.php:91 server_synchronize.php:1090 +#: server_synchronize.php:1098 msgid "Synchronize" msgstr "" -#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1109 +#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1108 #, fuzzy msgid "Source database" msgstr "Keresés az adatbázisban" @@ -3728,7 +3783,7 @@ msgstr "Új szerver" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1111 +#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1110 #, fuzzy msgid "Target database" msgstr "Keresés az adatbázisban" @@ -3749,11 +3804,11 @@ msgstr "SQL lekérdezés(ek) futtatása a(z) %s adatbázison" msgid "Columns" msgstr "Oszlopnevek" -#: libraries/sql_query_form.lib.php:342 sql.php:664 sql.php:665 sql.php:682 +#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 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:349 sql.php:676 +#: libraries/sql_query_form.lib.php:349 sql.php:669 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 " @@ -3853,12 +3908,12 @@ msgstr "" "%sdokumentációban%s leírtak szerint telepítette-e a szükséges PHP-" "kiterjesztést." -#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:139 -#: libraries/tbl_links.inc.php:140 +#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 +#: libraries/tbl_links.inc.php:139 msgid "Table seems to be empty!" msgstr "Üresnek tűnik a tábla!" -#: libraries/tbl_links.inc.php:148 +#: libraries/tbl_links.inc.php:147 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" @@ -3893,12 +3948,12 @@ msgstr "" "Írjon be egy értéket az alapértelmezett értékekhez, fordított perjel, escape " "karakter vagy idézőjelek nélkül, a következő formátum használatával: a" -#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1263 -#: pdf_schema.php:1284 tbl_printview.php:142 tbl_structure.php:179 +#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1262 +#: pdf_schema.php:1283 tbl_printview.php:141 tbl_structure.php:178 msgid "Attributes" msgstr "Tulajdonságok" -#: libraries/tbl_properties.inc.php:136 +#: libraries/tbl_properties.inc.php:135 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -3907,11 +3962,11 @@ msgstr "" "Az elérhető átalakítási beállítások listájához és a hozzájuk tartozó MIME-" "típusokhoz kattintson ide: %stransformation descriptions%s" -#: libraries/tbl_properties.inc.php:144 +#: libraries/tbl_properties.inc.php:143 msgid "Transformation options" msgstr "Átalakítás beállításai" -#: libraries/tbl_properties.inc.php:145 +#: libraries/tbl_properties.inc.php:144 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
                            If you ever need to put a backslash (\"\\\") or a single " @@ -3923,18 +3978,18 @@ msgstr "" "akar beszúrni az értékekbe, akkor kezdje fordított perjellel (például: '\\" "\\xyz' vagy 'a\\'b')." -#: libraries/tbl_properties.inc.php:392 +#: libraries/tbl_properties.inc.php:391 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "Nincs" -#: libraries/tbl_properties.inc.php:393 +#: libraries/tbl_properties.inc.php:392 msgid "As defined:" msgstr "Mint meghatározva:" -#: libraries/tbl_properties.inc.php:579 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:578 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
                            Please ask the " @@ -3943,29 +3998,29 @@ msgstr "" "Ehhez az átalakításhoz nem érhető el leírás.
                            Kérdezze meg a szerzőtől, " "hogy mit csinál a(z) %s." -#: libraries/tbl_properties.inc.php:725 server_engines.php:57 -#: tbl_operations.php:354 +#: libraries/tbl_properties.inc.php:724 server_engines.php:56 +#: tbl_operations.php:352 msgid "Storage Engine" msgstr "Tárolómotor" -#: libraries/tbl_properties.inc.php:754 +#: libraries/tbl_properties.inc.php:753 msgid "PARTITION definition" msgstr "PARTITION definíció" -#: libraries/tbl_properties.inc.php:775 pdf_pages.php:502 +#: libraries/tbl_properties.inc.php:774 pdf_pages.php:501 #: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214 -#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1124 tbl_indexes.php:247 -#: tbl_relation.php:565 +#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1022 tbl_indexes.php:246 +#: tbl_relation.php:563 msgid "Save" msgstr "Mentés" -#: libraries/tbl_properties.inc.php:779 tbl_structure.php:541 +#: libraries/tbl_properties.inc.php:778 tbl_structure.php:539 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "%s mező hozzáadása" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:535 +#: libraries/tbl_properties.inc.php:782 tbl_structure.php:533 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -4177,8 +4232,8 @@ msgstr "Kezelőfelület" msgid "Custom color" msgstr "Egyéni szín" -#: main.php:162 pdf_pages.php:362 setup/lib/FormDisplay.tpl.php:216 -#: tbl_change.php:1173 +#: main.php:162 pdf_pages.php:361 setup/lib/FormDisplay.tpl.php:216 +#: tbl_change.php:1071 msgid "Reset" msgstr "Törlés" @@ -4186,8 +4241,8 @@ msgstr "Törlés" msgid "Protocol version" msgstr "Protokoll verzió" -#: main.php:188 server_privileges.php:1381 server_privileges.php:1528 -#: server_privileges.php:1642 server_privileges.php:2060 +#: main.php:188 server_privileges.php:1385 server_privileges.php:1532 +#: server_privileges.php:1646 server_privileges.php:2064 #: server_processlist.php:53 msgid "User" msgstr "Felhasználó" @@ -4279,14 +4334,23 @@ msgstr "" "A parancsfájl által használt [code]config[/code] könyvtár még létezik a " "phpMyAdmin könyvtárában. Távolítsa el a phpMyAdmin beállítása után." -#: main.php:330 +#: main.php:314 +#, php-format +msgid "" +"The additional features for working with linked tables have been " +"deactivated. To find out why click %shere%s." +msgstr "" +"A hivatkozott táblákkal történő munka kiegészítő funkciói inaktiválásra " +"kerültek. Ha szeretné megtudni, hogy miért, kattintson %side%s." + +#: main.php:329 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:345 +#: main.php:344 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -4295,7 +4359,7 @@ msgstr "" "A PHP MySQL függvénytár %s-s verziója eltér a MySQL szerver %s-s " "verziójától. Ez kiszámíthatatlan viselkedést okozhat." -#: main.php:357 +#: main.php:356 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -4309,70 +4373,70 @@ msgstr "" msgid "Reload navigation frame" msgstr "A navigációs keret testreszabása" -#: navigation.php:204 server_databases.php:370 server_synchronize.php:1190 +#: navigation.php:203 server_databases.php:368 server_synchronize.php:1189 msgid "No databases" msgstr "Nincs adatbázis" -#: navigation.php:298 +#: navigation.php:297 #, fuzzy msgid "Filter" msgstr "Fájlok" -#: navigation.php:299 setup/frames/index.inc.php:218 +#: navigation.php:298 setup/frames/index.inc.php:218 #: setup/lib/messages.inc.php:41 msgid "Clear" msgstr "Törlés" -#: navigation.php:330 navigation.php:331 +#: navigation.php:329 navigation.php:330 #, fuzzy #| msgid "Create table" msgctxt "short form" msgid "Create table" msgstr "Tábla létrehozása" -#: navigation.php:333 navigation.php:495 +#: navigation.php:332 navigation.php:494 msgid "Please select a database" msgstr "Válasszon adatbázist" -#: pdf_pages.php:40 pdf_pages.php:46 pdf_pages.php:52 pdf_pages.php:57 +#: pdf_pages.php:39 pdf_pages.php:45 pdf_pages.php:51 pdf_pages.php:56 #, php-format msgid "%s table not found or not set in %s" msgstr "" "Nem található a(z) %s tábla, vagy nem adták meg a(z) %s adatbázisban" -#: pdf_pages.php:265 +#: pdf_pages.php:264 msgid "Please choose a page to edit" msgstr "Válassza ki a szerkesztendő oldalt" -#: pdf_pages.php:303 pmd_pdf.php:113 +#: pdf_pages.php:302 pmd_pdf.php:111 msgid "Create a page" msgstr "Új oldal készítése" -#: pdf_pages.php:309 +#: pdf_pages.php:308 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Oldalszám:" -#: pdf_pages.php:313 +#: pdf_pages.php:312 #, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "Automatikus elrendezés" -#: pdf_pages.php:315 +#: pdf_pages.php:314 msgid "Internal relations" msgstr "Belső kapcsolatok" -#: pdf_pages.php:338 +#: pdf_pages.php:337 msgid "Select Tables" msgstr "Táblák kiválasztása" -#: pdf_pages.php:361 +#: pdf_pages.php:360 msgid "Toggle scratchboard" msgstr "Scratchboard kapcsolása" -#: pdf_pages.php:524 +#: pdf_pages.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -4380,37 +4444,37 @@ msgstr "" "A jelenlegi oldalon lévő táblahivatkozások már léteznek. Szeretné törölni " "ezeket a hivatkozásokat?" -#: pdf_schema.php:635 +#: pdf_schema.php:634 #, fuzzy, php-format #| msgid "The \"%s\" table doesn't exist!" msgid "The %s table doesn't exist!" msgstr "Nem létezik a(z) \"%s\" tábla!" -#: pdf_schema.php:671 +#: pdf_schema.php:670 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Állítsa be a(z) %s tábla koordinátáit" -#: pdf_schema.php:994 +#: pdf_schema.php:993 #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" msgstr "A(z) \"%s\" adatbázis sémája - %s. oldal" -#: pdf_schema.php:1012 +#: pdf_schema.php:1011 msgid "No tables" msgstr "Nincs tábla" -#: pdf_schema.php:1031 pdf_schema.php:1140 +#: pdf_schema.php:1030 pdf_schema.php:1139 msgid "Relational schema" msgstr "Kapcsolati séma" -#: pdf_schema.php:1115 +#: pdf_schema.php:1114 msgid "Table of contents" msgstr "Tartalomjegyzék" -#: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:145 -#: tbl_structure.php:182 tbl_tracking.php:277 +#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 +#: tbl_structure.php:181 tbl_tracking.php:272 msgid "Extra" msgstr "Extra" @@ -4422,7 +4486,7 @@ msgstr "Bal oldali menü megjelenítése/elrejtése" msgid "Save position" msgstr "Pozíció mentése" -#: pmd_general.php:70 server_synchronize.php:428 server_synchronize.php:871 +#: pmd_general.php:70 server_synchronize.php:427 server_synchronize.php:870 msgid "Create table" msgstr "Tábla létrehozása" @@ -4501,32 +4565,32 @@ msgstr "" "történő beállításához/eltávolításához kattintson a \"Válassza ki a " "megjelenítendő mezőt\" ikonra, majd kattintson a megfelelő mező nevére." -#: pmd_pdf.php:62 +#: pmd_pdf.php:60 #, fuzzy msgid "Page has been created" msgstr "A(z) %1$s tábla elkészült." -#: pmd_pdf.php:64 +#: pmd_pdf.php:62 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:84 +#: pmd_pdf.php:82 msgid "Export/Import to scale" msgstr "Méretezendő exportálás/importálás" -#: pmd_pdf.php:88 +#: pmd_pdf.php:86 msgid "recommended" msgstr "ajánlott" -#: pmd_pdf.php:93 +#: pmd_pdf.php:91 msgid "to/from page" msgstr "oldalra/-ról" -#: querywindow.php:94 +#: querywindow.php:93 msgid "Import files" msgstr "Fájlok importálása" -#: querywindow.php:105 +#: querywindow.php:104 msgid "All" msgstr "Mind" @@ -4572,66 +4636,66 @@ msgstr "Információ" msgid "Character Sets and Collations" msgstr "Karakterkészletek és illesztések" -#: server_databases.php:51 +#: server_databases.php:49 msgid "No databases selected." msgstr "Nincs kiválasztott adatbázis." -#: server_databases.php:62 +#: server_databases.php:60 #, php-format msgid "%s databases have been dropped successfully." msgstr "A(z) %s adatbázis eldobása sikerült." -#: server_databases.php:87 +#: server_databases.php:85 msgid "Databases statistics" msgstr "Adatbázis-statisztika" -#: server_databases.php:116 server_status.php:370 +#: server_databases.php:114 server_status.php:370 #: setup/lib/messages.inc.php:114 msgid "Tables" msgstr "Táblák" -#: server_databases.php:194 server_replication.php:180 -#: server_replication.php:208 +#: server_databases.php:192 server_replication.php:179 +#: server_replication.php:207 msgid "Master replication" msgstr "" -#: server_databases.php:196 server_replication.php:247 +#: server_databases.php:194 server_replication.php:246 msgid "Slave replication" msgstr "" -#: server_databases.php:229 +#: server_databases.php:227 #, fuzzy msgid "Jump to database" msgstr "Nincs adatbázis" -#: server_databases.php:266 +#: server_databases.php:264 msgid "Not replicated" msgstr "" -#: server_databases.php:272 +#: server_databases.php:270 #, fuzzy #| msgid "Replication" msgid "Replicated" msgstr "Többszörözés" -#: server_databases.php:288 +#: server_databases.php:286 #, php-format msgid "Check privileges for database "%s"." msgstr "A(z) "%s" adatbázis jogainak ellenőrzése." -#: server_databases.php:292 server_databases.php:293 +#: server_databases.php:290 server_databases.php:291 msgid "Check Privileges" msgstr "Jogok ellenőrzése" -#: server_databases.php:357 server_databases.php:358 +#: server_databases.php:355 server_databases.php:356 msgid "Enable Statistics" msgstr "Statisztika engedélyezése" -#: server_databases.php:361 server_databases.php:362 +#: server_databases.php:359 server_databases.php:360 msgid "Disable Statistics" msgstr "Statisztika letiltása" -#: server_databases.php:365 +#: server_databases.php:363 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -4639,125 +4703,125 @@ msgstr "" "Megjegyzés: az adatbázis-statisztika engedélyezése a webszerver és a MySQL " "közti nagy adatforgalomhoz vezethet." -#: server_engines.php:48 +#: server_engines.php:47 msgid "Storage Engines" msgstr "Tárolómotorok" -#: server_export.php:20 +#: server_export.php:18 msgid "View dump (schema) of databases" msgstr "Adatbázis kiírás (séma) megtekintése" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:23 server_privileges.php:265 msgid "Includes all privileges except GRANT." msgstr "A GRANT kivételével minden jogot tartalmaz." -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:24 server_privileges.php:191 +#: server_privileges.php:514 msgid "Allows altering the structure of existing tables." msgstr "Engedélyezi a létező táblák szerkezetének megváltoztatását." -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:25 server_privileges.php:207 +#: server_privileges.php:520 msgid "Allows altering and dropping stored routines." msgstr "Engedélyezi a tárolt eljárások módosítását és eldobását." -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:26 server_privileges.php:183 +#: server_privileges.php:513 msgid "Allows creating new databases and tables." msgstr "Engedélyezi új adatbázisok és táblák készítését." -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:27 server_privileges.php:206 +#: server_privileges.php:519 msgid "Allows creating stored routines." msgstr "Engedélyezi tárolt eljárások létrehozását." -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:513 msgid "Allows creating new tables." msgstr "Engedélyezi új táblák készítését." -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:29 server_privileges.php:194 +#: server_privileges.php:517 msgid "Allows creating temporary tables." msgstr "Engedélyezi ideiglenes táblák készítését." -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:30 server_privileges.php:208 +#: server_privileges.php:553 msgid "Allows creating, dropping and renaming user accounts." msgstr "" "Engedélyezi a felhasználói fiókok létrehozását, törlését és átnevezését." -#: server_privileges.php:32 server_privileges.php:199 -#: server_privileges.php:203 server_privileges.php:526 -#: server_privileges.php:530 +#: server_privileges.php:31 server_privileges.php:198 +#: server_privileges.php:202 server_privileges.php:525 +#: server_privileges.php:529 msgid "Allows creating new views." msgstr "Engedélyezi új nézetek létrehozását." -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:32 server_privileges.php:182 +#: server_privileges.php:505 msgid "Allows deleting data." msgstr "Engedélyezi az adatok törlését." -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:33 server_privileges.php:184 +#: server_privileges.php:516 msgid "Allows dropping databases and tables." msgstr "Engedélyezi az adatbázisok és táblák eldobását." -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:34 server_privileges.php:516 msgid "Allows dropping tables." msgstr "Engedélyezi a táblák eldobását." -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:35 server_privileges.php:199 +#: server_privileges.php:533 msgid "Allows to set up events for the event scheduler" msgstr "Az eseményütemező eseményeinek beállítását teszi lehetővé" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:36 server_privileges.php:209 +#: server_privileges.php:521 msgid "Allows executing stored routines." msgstr "Engedélyezi a tárolt eljárások végrehajtását." -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:37 server_privileges.php:188 +#: server_privileges.php:508 msgid "Allows importing data from and exporting data into files." msgstr "Engedélyezi az adatok fájlokba történő exportálását/importálását." -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:38 server_privileges.php:539 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "A privilégium táblák újratöltése nélkül engedélyezi a felhasználók és jogok " "hozzáadását." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:515 msgid "Allows creating and dropping indexes." msgstr "Engedélyezi indexek készítését és törlését." -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:40 server_privileges.php:180 +#: server_privileges.php:441 server_privileges.php:503 msgid "Allows inserting and replacing data." msgstr "Engedélyezi az adatok beírását és megváltoztatását." -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:41 server_privileges.php:195 +#: server_privileges.php:548 msgid "Allows locking tables for the current thread." msgstr "A jelenlegi szálon engedélyezi a táblák blokkolását." -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:42 server_privileges.php:645 +#: server_privileges.php:647 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Korlátozza a felhasználó által óránként megnyitható új kapcsolatok számát." -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:43 server_privileges.php:633 +#: server_privileges.php:635 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Korlátozza a felhasználó által a kiszolgálóra óránként küldhető lekérdezések " "számát." -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:44 server_privileges.php:639 +#: server_privileges.php:641 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -4765,62 +4829,62 @@ msgstr "" "Korlátozza a felhasználó által óránként végrehajtható, bármelyik táblát vagy " "adatbázist módosító parancsok számát." -#: server_privileges.php:46 server_privileges.php:652 -#: server_privileges.php:654 +#: server_privileges.php:45 server_privileges.php:651 +#: server_privileges.php:653 msgid "Limits the number of simultaneous connections the user may have." msgstr "Korlátozza a felhasználó egyidejű kapcsolatainak számát." -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:46 server_privileges.php:187 +#: server_privileges.php:543 msgid "Allows viewing processes of all users" msgstr "Az összes felhasználó folyamatainak megtekintését engedélyezi" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:47 server_privileges.php:189 +#: server_privileges.php:447 server_privileges.php:549 msgid "Has no effect in this MySQL version." msgstr "Nem valósult meg ebben a MySQL verzióban" -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:48 server_privileges.php:185 +#: server_privileges.php:544 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Engedélyezi a szerver beállításainak újratöltését, és a szerver " "gyorsítótárának törlését." -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:197 +#: server_privileges.php:551 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Engedélyezi a felhasználónak, hogy megkérdezze, hol találhatók a kisegítő/fő " "helyek." -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:50 server_privileges.php:196 +#: server_privileges.php:552 msgid "Needed for the replication slaves." msgstr "A kisegítő helyek másolásához szükséges." -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:51 server_privileges.php:179 +#: server_privileges.php:438 server_privileges.php:502 msgid "Allows reading data." msgstr "Engedélyezi az adatok olvasását." -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:52 server_privileges.php:192 +#: server_privileges.php:546 msgid "Gives access to the complete list of databases." msgstr "Hozzáférést ad az adatbázisok teljes listájához." -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:53 server_privileges.php:203 +#: server_privileges.php:205 server_privileges.php:518 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Engedélyezi SHOW CREATE VIEW lekérdezések végrehajtását." -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:54 server_privileges.php:186 +#: server_privileges.php:545 msgid "Allows shutting down the server." msgstr "Engedélyezi a szerver leállítását." -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:55 server_privileges.php:193 +#: server_privileges.php:542 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -4831,157 +4895,157 @@ msgstr "" "globális változók beállítása, vagy más felhasználók folyamatainak " "megszüntetése." -#: server_privileges.php:57 server_privileges.php:201 -#: server_privileges.php:535 +#: server_privileges.php:56 server_privileges.php:200 +#: server_privileges.php:534 msgid "Allows creating and dropping triggers" msgstr "Eseményindítók létrehozásának és eldobásának engedélyezése" -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:57 server_privileges.php:181 +#: server_privileges.php:444 server_privileges.php:504 msgid "Allows changing data." msgstr "Engedélyezi az adatok megváltoztatását." -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:58 server_privileges.php:259 msgid "No privileges." msgstr "Nincsenek jogok." -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:301 server_privileges.php:302 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Nincs" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1710 server_privileges.php:1716 +#: server_privileges.php:430 server_privileges.php:565 +#: server_privileges.php:1714 server_privileges.php:1720 msgid "Table-specific privileges" msgstr "Táblaspecifikus jogok" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1532 +#: server_privileges.php:431 server_privileges.php:573 +#: server_privileges.php:1536 msgid " Note: MySQL privilege names are expressed in English " msgstr " Megjegyzés: a MySQL jognevek az angolból származnak." -#: server_privileges.php:563 server_privileges.php:1531 +#: server_privileges.php:562 server_privileges.php:1535 msgid "Global privileges" msgstr "Globális jogok" -#: server_privileges.php:565 server_privileges.php:1710 +#: server_privileges.php:564 server_privileges.php:1714 msgid "Database-specific privileges" msgstr "Adatbázis-specifikus jogok" -#: server_privileges.php:610 +#: server_privileges.php:609 msgid "Administration" msgstr "Adminisztráció" -#: server_privileges.php:630 +#: server_privileges.php:629 msgid "Resource limits" msgstr "Erőforrás-korlátozások" -#: server_privileges.php:631 +#: server_privileges.php:630 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" "Megjegyzés: Ezen beállítások 0-ra (nulla) állítása eltávolítja a korlátozást." -#: server_privileges.php:708 +#: server_privileges.php:707 msgid "Login Information" msgstr "Bejelentkezési adatok" -#: server_privileges.php:802 +#: server_privileges.php:801 msgid "Do not change the password" msgstr "Nincs jelszó megváltoztatás" -#: server_privileges.php:835 server_privileges.php:2197 +#: server_privileges.php:834 server_privileges.php:2201 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Nem található(k) a felhasználó(k)." -#: server_privileges.php:879 +#: server_privileges.php:878 #, php-format msgid "The user %s already exists!" msgstr "%s felhasználó már létezik!" -#: server_privileges.php:962 +#: server_privileges.php:961 msgid "You have added a new user." msgstr "Az új felhasználó hozzáadása megtörtént." -#: server_privileges.php:1183 +#: server_privileges.php:1184 #, php-format msgid "You have updated the privileges for %s." msgstr "Ön frissítette %s jogait." -#: server_privileges.php:1207 +#: server_privileges.php:1208 #, php-format msgid "You have revoked the privileges for %s" msgstr "%s jogainak visszavonása megtörtént" -#: server_privileges.php:1243 +#: server_privileges.php:1244 #, php-format msgid "The password for %s was changed successfully." msgstr "%s jelszavának megváltoztatása sikerült." -#: server_privileges.php:1263 +#: server_privileges.php:1264 #, php-format msgid "Deleting %s" msgstr "%s törlése" -#: server_privileges.php:1274 +#: server_privileges.php:1275 msgid "No users selected for deleting!" msgstr "Nincs törlésre kijelölt felhasználó!" -#: server_privileges.php:1277 +#: server_privileges.php:1278 msgid "Reloading the privileges" msgstr "A jogok újratöltése" -#: server_privileges.php:1292 +#: server_privileges.php:1296 msgid "The selected users have been deleted successfully." msgstr "A kiválasztott felhasználók törlése sikerült." -#: server_privileges.php:1327 +#: server_privileges.php:1331 msgid "The privileges were reloaded successfully." msgstr "A jogok újratöltése sikerült." -#: server_privileges.php:1355 server_privileges.php:1641 +#: server_privileges.php:1359 server_privileges.php:1645 msgid "Edit Privileges" msgstr "Jogok szerkesztése" -#: server_privileges.php:1364 +#: server_privileges.php:1368 msgid "Revoke" msgstr "Visszavonás" -#: server_privileges.php:1396 +#: server_privileges.php:1400 msgid "User overview" msgstr "Felhasználók áttekintése" -#: server_privileges.php:1533 server_privileges.php:1715 -#: server_privileges.php:2064 +#: server_privileges.php:1537 server_privileges.php:1719 +#: server_privileges.php:2068 msgid "Grant" msgstr "Engedélyezés" -#: server_privileges.php:1552 server_privileges.php:2154 +#: server_privileges.php:1556 server_privileges.php:2158 msgid "Any" msgstr "Bármi" -#: server_privileges.php:1601 server_privileges.php:1625 -#: server_privileges.php:2019 server_privileges.php:2208 +#: server_privileges.php:1605 server_privileges.php:1629 +#: server_privileges.php:2023 server_privileges.php:2212 msgid "Add a new User" msgstr "Új felhasználó hozzáadása" -#: server_privileges.php:1606 +#: server_privileges.php:1610 msgid "Remove selected users" msgstr "A kijelölt felhasználók törlése" -#: server_privileges.php:1609 +#: server_privileges.php:1613 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "A felhasználók összes jogának visszavonása, majd törlése." -#: server_privileges.php:1610 server_privileges.php:1611 -#: server_privileges.php:1612 +#: server_privileges.php:1614 server_privileges.php:1615 +#: server_privileges.php:1616 msgid "Drop the databases that have the same names as the users." msgstr "A felhasználókéval azonos nevű adatbázisok eldobása." -#: server_privileges.php:1628 +#: server_privileges.php:1632 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4994,94 +5058,94 @@ msgstr "" "használt jogoktól, ha a módosításuk kézzel történt. Ebben az esetben " "%stöltse be újra a jogokat%s a folytatás előtt." -#: server_privileges.php:1676 +#: server_privileges.php:1680 msgid "The selected user was not found in the privilege table." msgstr "Nem található a kiválasztott felhasználó a privilégium táblában." -#: server_privileges.php:1716 +#: server_privileges.php:1720 msgid "Column-specific privileges" msgstr "Oszlopspecifikus jogok" -#: server_privileges.php:1917 +#: server_privileges.php:1921 msgid "Add privileges on the following database" msgstr "Jogok hozzáadása a következő adatbázison" -#: server_privileges.php:1935 +#: server_privileges.php:1939 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "A _ és a % karakterhelyettesítőt \\ jellel kell lezárni, hogy " "szövegkonstansként lehessen őket használni" -#: server_privileges.php:1938 +#: server_privileges.php:1942 msgid "Add privileges on the following table" msgstr "Jogok hozzáadása a következő táblán:" -#: server_privileges.php:1995 +#: server_privileges.php:1999 msgid "Change Login Information / Copy User" msgstr "Bejelentkezési adatok módosítása / Felhasználó másolása" -#: server_privileges.php:1998 +#: server_privileges.php:2002 msgid "Create a new user with the same privileges and ..." msgstr "Új felhasználó létrehozása ezekkel a jogokkal, és ..." -#: server_privileges.php:2000 +#: server_privileges.php:2004 msgid "... keep the old one." msgstr "... a régiek megőrzése." -#: server_privileges.php:2001 +#: server_privileges.php:2005 msgid " ... delete the old one from the user tables." msgstr " ... a régiek törlése a felhasználói táblákból." -#: server_privileges.php:2002 +#: server_privileges.php:2006 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr " ... az összes aktív jog visszaállítása a régiekből, majd törlés." -#: server_privileges.php:2003 +#: server_privileges.php:2007 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" " ... a régiek törlése a felhasználói táblákból, majd a jogok újratöltése." -#: server_privileges.php:2025 +#: server_privileges.php:2029 msgid "Database for user" msgstr "Adatbázis a felhasználó számára" -#: server_privileges.php:2029 +#: server_privileges.php:2033 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Nincs" -#: server_privileges.php:2030 +#: server_privileges.php:2034 msgid "Create database with same name and grant all privileges" msgstr "Azonos nevű adatbázis létrehozása, és az összes jog engedélyezése" -#: server_privileges.php:2031 +#: server_privileges.php:2035 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Az összes jog engedélyezése karakterhelyettesítős néven (username\\_%)" -#: server_privileges.php:2034 +#: server_privileges.php:2038 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Az összes jog engedélyezése a(z) "%s" adatbázison" -#: server_privileges.php:2057 +#: server_privileges.php:2061 #, php-format msgid "Users having access to "%s"" msgstr "A(z) "%s" adatbázishoz hozzáférhető felhasználók" -#: server_privileges.php:2165 +#: server_privileges.php:2169 msgid "global" msgstr "globális" -#: server_privileges.php:2167 +#: server_privileges.php:2171 msgid "database-specific" msgstr "adatbázis-specifikus" -#: server_privileges.php:2169 +#: server_privileges.php:2173 msgid "wildcard" msgstr "karakterhelyettesítő" @@ -5102,55 +5166,55 @@ msgstr "" msgid "ID" msgstr "AZ" -#: server_replication.php:50 +#: server_replication.php:49 msgid "Unknown error" msgstr "" -#: server_replication.php:57 +#: server_replication.php:56 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:64 +#: server_replication.php:63 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:70 +#: server_replication.php:69 msgid "Unable to change master" msgstr "" -#: server_replication.php:73 +#: server_replication.php:72 #, php-format msgid "Master server changed succesfully to %s" msgstr "" -#: server_replication.php:181 +#: server_replication.php:180 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:183 server_status.php:391 +#: server_replication.php:182 server_status.php:391 #, fuzzy msgid "Show master status" msgstr "Kisegítő állapot megjelenítése" -#: server_replication.php:186 +#: server_replication.php:185 msgid "Show connected slaves" msgstr "" -#: server_replication.php:209 +#: server_replication.php:208 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:216 +#: server_replication.php:215 #, fuzzy msgid "Master configuration" msgstr "Szerverbeállítások" -#: server_replication.php:217 +#: server_replication.php:216 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -5159,111 +5223,111 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:220 +#: server_replication.php:219 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:221 +#: server_replication.php:220 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:224 +#: server_replication.php:223 #, fuzzy msgid "Please select databases:" msgstr "Válasszon adatbázist" -#: server_replication.php:227 +#: server_replication.php:226 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: server_replication.php:229 +#: server_replication.php:228 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: server_replication.php:292 +#: server_replication.php:291 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:295 +#: server_replication.php:294 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:304 +#: server_replication.php:303 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:307 +#: server_replication.php:306 msgid "See slave status table" msgstr "" -#: server_replication.php:310 +#: server_replication.php:309 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:321 +#: server_replication.php:320 #, fuzzy msgid "Control slave:" msgstr "Kontrollfelhasználó" -#: server_replication.php:324 +#: server_replication.php:323 #, fuzzy msgid "Full start" msgstr "Teljes szöveg" -#: server_replication.php:324 +#: server_replication.php:323 msgid "Full stop" msgstr "" -#: server_replication.php:325 +#: server_replication.php:324 msgid "Reset slave" msgstr "" -#: server_replication.php:326 +#: server_replication.php:325 #, php-format msgid "SQL Thread %s only" msgstr "" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 #, fuzzy msgid "Start" msgstr "Indítás" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 msgid "Stop" msgstr "" -#: server_replication.php:327 +#: server_replication.php:326 #, php-format msgid "IO Thread %s only" msgstr "" -#: server_replication.php:331 +#: server_replication.php:330 msgid "Error management:" msgstr "" -#: server_replication.php:333 +#: server_replication.php:332 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:335 +#: server_replication.php:334 msgid "Skip current error" msgstr "" -#: server_replication.php:336 +#: server_replication.php:335 msgid "Skip next" msgstr "" -#: server_replication.php:339 +#: server_replication.php:338 msgid "errors." msgstr "" -#: server_replication.php:354 +#: server_replication.php:353 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -6094,116 +6158,116 @@ msgstr "Lekérdezés típusa" msgid "Replication status" msgstr "Többszörözéses állapot" -#: server_synchronize.php:93 +#: server_synchronize.php:92 #, fuzzy msgid "Could not connect to the source" msgstr "Nem lehetett kapcsolódni a MySQL-szerverhez" -#: server_synchronize.php:96 +#: server_synchronize.php:95 #, fuzzy msgid "Could not connect to the target" msgstr "Nem lehetett kapcsolódni a MySQL-szerverhez" -#: server_synchronize.php:121 server_synchronize.php:124 tbl_create.php:77 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:264 +#: server_synchronize.php:263 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:271 +#: server_synchronize.php:270 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:399 server_synchronize.php:838 +#: server_synchronize.php:398 server_synchronize.php:837 msgid "not present" msgstr "" -#: server_synchronize.php:423 server_synchronize.php:866 +#: server_synchronize.php:422 server_synchronize.php:865 #, fuzzy msgid "Structure Difference" msgstr "Nézet szerkezete" -#: server_synchronize.php:424 server_synchronize.php:867 +#: server_synchronize.php:423 server_synchronize.php:866 msgid "Data Difference" msgstr "" -#: server_synchronize.php:429 server_synchronize.php:872 +#: server_synchronize.php:428 server_synchronize.php:871 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:430 server_synchronize.php:873 +#: server_synchronize.php:429 server_synchronize.php:872 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:431 server_synchronize.php:874 +#: server_synchronize.php:430 server_synchronize.php:873 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:432 server_synchronize.php:875 +#: server_synchronize.php:431 server_synchronize.php:874 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:433 server_synchronize.php:876 +#: server_synchronize.php:432 server_synchronize.php:875 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:434 server_synchronize.php:877 +#: server_synchronize.php:433 server_synchronize.php:876 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:435 server_synchronize.php:878 +#: server_synchronize.php:434 server_synchronize.php:877 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:445 server_synchronize.php:889 +#: server_synchronize.php:444 server_synchronize.php:888 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:448 server_synchronize.php:893 +#: server_synchronize.php:447 server_synchronize.php:892 msgid "Apply Selected Changes" msgstr "" -#: server_synchronize.php:450 server_synchronize.php:895 +#: server_synchronize.php:449 server_synchronize.php:894 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:463 +#: server_synchronize.php:462 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:941 +#: server_synchronize.php:940 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:1002 +#: server_synchronize.php:1001 msgid "The following queries have been executed:" msgstr "" -#: server_synchronize.php:1121 +#: server_synchronize.php:1120 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1122 +#: server_synchronize.php:1121 #, fuzzy #| msgid "Insecure connection" msgid "Current connection" msgstr "Veszélyes kapcsolat" -#: server_synchronize.php:1151 +#: server_synchronize.php:1150 #, fuzzy, php-format #| msgid "Configuration file" msgid "Configuration: %s" msgstr "Konfigurációs fájl" -#: server_synchronize.php:1166 +#: server_synchronize.php:1165 msgid "Socket" msgstr "" -#: server_synchronize.php:1212 +#: server_synchronize.php:1211 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -6814,10 +6878,15 @@ msgid "Signon login options" msgstr "Egyszeri bejelentkezés beállításai" #: setup/lib/messages.inc.php:128 +#, fuzzy +#| msgid "" +#| "Configure phpMyAdmin database to gain access to additional features, see " +#| "[a@../Documentation.html#linked-tables]linked-tables infrastructure[/a] " +#| "in documentation" msgid "" "Configure phpMyAdmin database to gain access to additional features, see " -"[a@../Documentation.html#linked-tables]linked-tables infrastructure[/a] in " -"documentation" +"[a@../Documentation.html#linked-tables]phpMyAdmin configuration storage[/a] " +"in documentation" msgstr "" "A phpMyAdmin adatbázis konfigurálásával további funkciókhoz nyer " "hozzáférést, lásd a [a@../Documentation.html#linked-tables]csatolt táblák " @@ -8037,117 +8106,117 @@ msgstr "" msgid "ZIP" msgstr "ZIP" -#: sql.php:495 tbl_replace.php:385 +#: sql.php:494 tbl_replace.php:384 #, php-format msgid "Inserted row id: %1$d" msgstr "A beszúrt sor azonosítószáma: %1$d" -#: sql.php:512 +#: sql.php:511 msgid "Showing as PHP code" msgstr "Megjelenítés PHP kódként" -#: sql.php:515 tbl_replace.php:359 +#: sql.php:514 tbl_replace.php:358 msgid "Showing SQL query" msgstr "Megjelenítés SQL lekérdezésként" -#: sql.php:517 +#: sql.php:516 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "SQL érvényesítése" -#: sql.php:638 +#: sql.php:631 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Probléma a(z) `%s` tábla indexeivel" -#: sql.php:670 +#: sql.php:663 msgid "Label" msgstr "Név" -#: tbl_addfield.php:188 tbl_alter.php:102 tbl_indexes.php:97 +#: tbl_addfield.php:185 tbl_alter.php:100 tbl_indexes.php:97 #, php-format msgid "Table %1$s has been altered successfully" msgstr "A(z) %1$s tábla módosítása sikerült" -#: tbl_change.php:250 tbl_select.php:26 tbl_select.php:27 tbl_select.php:30 -#: tbl_select.php:33 +#: tbl_change.php:245 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_select.php:32 msgid "Browse foreign values" msgstr "Az idegen kulcsok böngészése" -#: tbl_change.php:280 tbl_change.php:318 +#: tbl_change.php:275 tbl_change.php:313 msgid "Function" msgstr "Függvény" -#: tbl_change.php:300 tbl_indexes.php:199 tbl_indexes.php:224 +#: tbl_change.php:295 tbl_indexes.php:198 tbl_indexes.php:223 msgid "Ignore" msgstr "Kihagyás" -#: tbl_change.php:725 +#: tbl_change.php:720 #, fuzzy #| msgid " Because of its length,
                            this field might not be editable " msgid " Because of its length,
                            this column might not be editable " msgstr "A hossza miatt
                            lehet, hogy ez a mező nem szerkeszthető " -#: tbl_change.php:884 +#: tbl_change.php:835 msgid "Remove BLOB Repository Reference" msgstr "A BLOB-raktár hivatkozásának eltávolítása" -#: tbl_change.php:890 +#: tbl_change.php:841 msgid "Binary - do not edit" msgstr "Bináris - nem szerkeszthető" -#: tbl_change.php:983 +#: tbl_change.php:889 msgid "Upload to BLOB repository" msgstr "Feltöltés a BLOB-raktárba" -#: tbl_change.php:1128 +#: tbl_change.php:1026 msgid "Insert as new row" msgstr "Beszúrás új sorként" -#: tbl_change.php:1129 +#: tbl_change.php:1027 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:1130 +#: tbl_change.php:1028 #, fuzzy msgid "Show insert query" msgstr "Megjelenítés SQL lekérdezésként" -#: tbl_change.php:1145 +#: tbl_change.php:1043 msgid "Go back to previous page" msgstr "Vissza az előző oldalra" -#: tbl_change.php:1146 +#: tbl_change.php:1044 msgid "Insert another new row" msgstr "Új sor beszúrása" -#: tbl_change.php:1150 +#: tbl_change.php:1048 msgid "Go back to this page" msgstr "Visszatérés erre az oldalra" -#: tbl_change.php:1158 +#: tbl_change.php:1056 msgid "Edit next row" msgstr "Következő sor szerkesztése" -#: tbl_change.php:1169 +#: tbl_change.php:1067 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "A TAB billentyűvel értékről értékre lépkedhet, ill. a CTRL+nyilakkal bárhová " "léphet." -#: tbl_change.php:1207 +#: tbl_change.php:1105 #, php-format msgid "Restart insertion with %s rows" msgstr "Beszúrás újrakezdése %s sorral" -#: tbl_create.php:57 +#: tbl_create.php:55 #, php-format msgid "Table %s already exists!" msgstr "Már létezik nevű %s tábla!" -#: tbl_create.php:244 +#: tbl_create.php:241 #, php-format msgid "Table %1$s has been created." msgstr "A(z) %1$s tábla elkészült." @@ -8168,205 +8237,205 @@ msgstr "Nem nevezhető át PRIMARY-re az index!" msgid "No index parts defined!" msgstr "Nincs meghatározott indexrész!" -#: tbl_indexes.php:159 +#: tbl_indexes.php:158 msgid "Create a new index" msgstr "Új index létrehozása" -#: tbl_indexes.php:161 +#: tbl_indexes.php:160 msgid "Modify an index" msgstr "Index módosítása" -#: tbl_indexes.php:167 +#: tbl_indexes.php:166 msgid "Index name:" msgstr "Index neve:" -#: tbl_indexes.php:173 +#: tbl_indexes.php:172 msgid "Index type:" msgstr "Index típusa:" -#: tbl_indexes.php:183 +#: tbl_indexes.php:182 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" "(Az elsődleges kulcs nevének, és csak annak \"PRIMARY\"-nak kell lennie!)" -#: tbl_indexes.php:250 +#: tbl_indexes.php:249 #, php-format msgid "Add to index  %s column(s)" msgstr "Hozzáadás az index  %s oszlophoz" -#: tbl_indexes.php:255 tbl_structure.php:588 tbl_structure.php:599 +#: tbl_indexes.php:254 tbl_structure.php:586 tbl_structure.php:597 msgid "Column count has to be larger than zero." msgstr "Az oszlopok számának nullánál nagyobbnak kell lennie." -#: tbl_move_copy.php:45 +#: tbl_move_copy.php:44 msgid "Can't move table to same one!" msgstr "Nem helyezhető át ugyanabba a tábla!" -#: tbl_move_copy.php:47 +#: tbl_move_copy.php:46 msgid "Can't copy table to same one!" msgstr "Nem másolható ugyanabba a tábla!" -#: tbl_move_copy.php:55 +#: tbl_move_copy.php:54 #, php-format msgid "Table %s has been moved to %s." msgstr "A(z) %s tábla áthelyezése a(z) %s adatbázisba kész." -#: tbl_move_copy.php:57 +#: tbl_move_copy.php:56 #, php-format msgid "Table %s has been copied to %s." msgstr "A(z) %s tábla másolása %s néven megtörtént." -#: tbl_move_copy.php:81 +#: tbl_move_copy.php:80 msgid "The table name is empty!" msgstr "Üres a tábla neve!" -#: tbl_operations.php:248 +#: tbl_operations.php:246 msgid "Alter table order by" msgstr "Tábla rendezésének módosítása e szerint:" -#: tbl_operations.php:257 +#: tbl_operations.php:255 msgid "(singly)" msgstr "(egyenként)" -#: tbl_operations.php:277 +#: tbl_operations.php:275 msgid "Move table to (database.table):" msgstr "Tábla áthelyezése (adatbázis.tábla):" -#: tbl_operations.php:335 +#: tbl_operations.php:333 msgid "Table options" msgstr "Tábla beállításai" -#: tbl_operations.php:339 +#: tbl_operations.php:337 msgid "Rename table to" msgstr "Tábla átnevezése" -#: tbl_operations.php:510 +#: tbl_operations.php:508 msgid "Copy table to (database.table):" msgstr "Tábla másolása (adatbázis.tábla):" -#: tbl_operations.php:557 +#: tbl_operations.php:555 msgid "Switch to copied table" msgstr "A másolt táblára váltás" -#: tbl_operations.php:569 +#: tbl_operations.php:567 msgid "Table maintenance" msgstr "Tábla karbantartása" -#: tbl_operations.php:590 +#: tbl_operations.php:588 msgid "Defragment table" msgstr "Tábla töredezettségmentesítése" -#: tbl_operations.php:629 +#: tbl_operations.php:627 #, php-format msgid "Table %s has been flushed" msgstr "A(z) %s tábla kiírása megtörtént" -#: tbl_operations.php:635 +#: tbl_operations.php:633 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Tábla kiírása (\"FLUSH\")" -#: tbl_operations.php:650 +#: tbl_operations.php:648 msgid "Partition maintenance" msgstr "Partíció karbantartása" -#: tbl_operations.php:658 +#: tbl_operations.php:656 #, php-format msgid "Partition %s" msgstr "%s partíció" -#: tbl_operations.php:661 +#: tbl_operations.php:659 msgid "Analyze" msgstr "Elemzés" -#: tbl_operations.php:662 +#: tbl_operations.php:660 msgid "Check" msgstr "Ellenőrzés" -#: tbl_operations.php:663 +#: tbl_operations.php:661 msgid "Optimize" msgstr "Optimalizálás" -#: tbl_operations.php:664 +#: tbl_operations.php:662 msgid "Rebuild" msgstr "Újraépítés" -#: tbl_operations.php:665 +#: tbl_operations.php:663 msgid "Repair" msgstr "Javítás" -#: tbl_operations.php:677 +#: tbl_operations.php:675 msgid "Remove partitioning" msgstr "Particionálás eltávolítása" -#: tbl_operations.php:703 +#: tbl_operations.php:701 msgid "Check referential integrity:" msgstr "Hivatkozási sértetlenség ellenőrzése:" -#: tbl_printview.php:73 +#: tbl_printview.php:72 msgid "Show tables" msgstr "A táblák megjelenítése" -#: tbl_printview.php:308 tbl_structure.php:655 +#: tbl_printview.php:307 tbl_structure.php:653 msgid "Space usage" msgstr "Területhasználat" -#: tbl_printview.php:312 tbl_structure.php:659 +#: tbl_printview.php:311 tbl_structure.php:657 msgid "Usage" msgstr "Méret" -#: tbl_printview.php:339 tbl_structure.php:686 +#: tbl_printview.php:338 tbl_structure.php:684 msgid "Effective" msgstr "Hatályos" -#: tbl_printview.php:364 tbl_structure.php:724 +#: tbl_printview.php:363 tbl_structure.php:722 msgid "Row Statistics" msgstr "Sorstatisztika" -#: tbl_printview.php:367 tbl_structure.php:727 +#: tbl_printview.php:366 tbl_structure.php:725 msgid "Statements" msgstr "Utasítások" -#: tbl_printview.php:378 tbl_structure.php:739 +#: tbl_printview.php:377 tbl_structure.php:737 msgid "static" msgstr "statikus" -#: tbl_printview.php:380 tbl_structure.php:741 +#: tbl_printview.php:379 tbl_structure.php:739 msgid "dynamic" msgstr "dinamikus" -#: tbl_printview.php:402 tbl_structure.php:784 +#: tbl_printview.php:401 tbl_structure.php:782 msgid "Row length" msgstr "Sor hossza" -#: tbl_printview.php:412 tbl_structure.php:792 +#: tbl_printview.php:411 tbl_structure.php:790 msgid " Row size " msgstr " Sor mérete " -#: tbl_relation.php:278 +#: tbl_relation.php:276 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" "Hiba történt az idegen kulcs %1$s táblán történő létrehozásakor (ellenőrizze " "az adattípusokat)" -#: tbl_relation.php:404 +#: tbl_relation.php:402 #, fuzzy #| msgid "Internal relations" msgid "Internal relation" msgstr "Belső kapcsolatok" -#: tbl_relation.php:406 +#: tbl_relation.php:404 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" "Nincs szükség belső kapcsolatra, ha létezik megfelelő IDEGEN KULCS kapcsolat." -#: tbl_relation.php:412 +#: tbl_relation.php:410 #, fuzzy #| msgid "Foreign key limit" msgid "Foreign key constraint" @@ -8376,233 +8445,233 @@ msgstr "Idegen kulcs korlátozása" msgid "No rows selected" msgstr "Nem jelölte ki a sort" -#: tbl_select.php:130 +#: tbl_select.php:129 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "" "Egy \"példa szerinti lekérdezés\" végrehajtása (karakterhelyettesítő: \"%\")" -#: tbl_select.php:136 +#: tbl_select.php:135 msgid "Operator" msgstr "Kezelő" -#: tbl_select.php:267 +#: tbl_select.php:266 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "Válasszon mezőket (legalább egyet):" -#: tbl_select.php:285 +#: tbl_select.php:284 msgid "Add search conditions (body of the \"where\" clause):" msgstr "adja meg a keresési feltételeket (a \"where\" feltétel törzsét):" -#: tbl_select.php:292 +#: tbl_select.php:291 msgid "Number of rows per page" msgstr "Sorok száma oldalanként" -#: tbl_select.php:298 +#: tbl_select.php:297 msgid "Display order:" msgstr "Megjelenítési sorrend:" -#: tbl_structure.php:160 +#: tbl_structure.php:159 msgid "Browse distinct values" msgstr "A különböző értékek tallózása" -#: tbl_structure.php:360 +#: tbl_structure.php:358 #, fuzzy #| msgid "None" msgctxt "None for default" msgid "None" msgstr "Nincs" -#: tbl_structure.php:373 +#: tbl_structure.php:371 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Column %s has been dropped" msgstr "A(z) %s tábla eldobása megtörtént" -#: tbl_structure.php:384 +#: tbl_structure.php:382 #, php-format msgid "A primary key has been added on %s" msgstr "Az elsődleges kulcs hozzáadása a(z) %s mezőn megtörtént" -#: tbl_structure.php:399 tbl_structure.php:413 tbl_structure.php:427 +#: tbl_structure.php:397 tbl_structure.php:411 tbl_structure.php:425 #, php-format msgid "An index has been added on %s" msgstr "Az index hozzáadása a(z) %s mezőn megtörtént" -#: tbl_structure.php:505 tbl_structure.php:507 +#: tbl_structure.php:503 tbl_structure.php:505 msgid "Relation view" msgstr "Kapcsolat nézete" -#: tbl_structure.php:514 tbl_structure.php:516 +#: tbl_structure.php:512 tbl_structure.php:514 msgid "Propose table structure" msgstr "Táblaszerkezet ajánlása" -#: tbl_structure.php:539 +#: tbl_structure.php:537 #, fuzzy #| msgid "Add %s field(s)" msgid "Add column" msgstr "%s mező hozzáadása" -#: tbl_structure.php:553 +#: tbl_structure.php:551 msgid "At End of Table" msgstr "A tábla végén" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At Beginning of Table" msgstr "A tábla elején" -#: tbl_structure.php:555 +#: tbl_structure.php:553 #, php-format msgid "After %s" msgstr "%s után" -#: tbl_structure.php:593 +#: tbl_structure.php:591 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "Index készítése a(z) %s. oszlopon" -#: tbl_structure.php:755 +#: tbl_structure.php:753 msgid "partitioned" msgstr "particionált" -#: tbl_tracking.php:113 +#: tbl_tracking.php:109 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:186 +#: tbl_tracking.php:182 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "" -#: tbl_tracking.php:194 +#: tbl_tracking.php:190 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "" -#: tbl_tracking.php:202 +#: tbl_tracking.php:198 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "" -#: tbl_tracking.php:212 +#: tbl_tracking.php:208 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:219 +#: tbl_tracking.php:215 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:220 +#: tbl_tracking.php:216 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:229 +#: tbl_tracking.php:225 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:250 tbl_tracking.php:378 +#: tbl_tracking.php:245 tbl_tracking.php:373 msgid "Close" msgstr "" -#: tbl_tracking.php:261 +#: tbl_tracking.php:256 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:380 +#: tbl_tracking.php:375 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:396 tbl_tracking.php:503 +#: tbl_tracking.php:391 tbl_tracking.php:498 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "" -#: tbl_tracking.php:409 tbl_tracking.php:460 +#: tbl_tracking.php:404 tbl_tracking.php:455 #, fuzzy msgid "Date" msgstr "Adatok" -#: tbl_tracking.php:410 tbl_tracking.php:461 +#: tbl_tracking.php:405 tbl_tracking.php:456 #, fuzzy msgid "Username" msgstr "Felhasználónév:" -#: tbl_tracking.php:411 +#: tbl_tracking.php:406 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:462 +#: tbl_tracking.php:457 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:506 +#: tbl_tracking.php:501 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:507 +#: tbl_tracking.php:502 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:520 +#: tbl_tracking.php:515 #, fuzzy, php-format msgid "Export as %s" msgstr "Exportálás alapértelmezései" -#: tbl_tracking.php:560 +#: tbl_tracking.php:555 msgid "Show versions" msgstr "" -#: tbl_tracking.php:592 +#: tbl_tracking.php:587 #, fuzzy msgid "Version" msgstr "Perzsa" -#: tbl_tracking.php:639 +#: tbl_tracking.php:634 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "" -#: tbl_tracking.php:641 +#: tbl_tracking.php:636 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:652 +#: tbl_tracking.php:647 #, php-format msgid "Activate tracking for %s.%s" msgstr "" -#: tbl_tracking.php:654 +#: tbl_tracking.php:649 msgid "Activate now" msgstr "" -#: tbl_tracking.php:667 +#: tbl_tracking.php:662 #, php-format msgid "Create version %s of %s.%s" msgstr "" -#: tbl_tracking.php:671 +#: tbl_tracking.php:666 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:679 +#: tbl_tracking.php:674 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:687 +#: tbl_tracking.php:682 #, fuzzy msgid "Create version" msgstr "Kapcsolat létrehozása" @@ -8652,11 +8721,41 @@ msgstr "A profil frissítése megtörtént." msgid "VIEW name" msgstr "NÉZET neve" -#: view_operations.php:92 +#: view_operations.php:91 #, fuzzy msgid "Rename view to" msgstr "Tábla átnevezése" +#~ msgid "BLOB Repository" +#~ msgstr "BLOB-ratár" + +#, fuzzy +#~| msgid "Enabled" +#~ msgctxt "BLOB repository" +#~ msgid "Enabled" +#~ msgstr "Engedélyezett" + +#~ msgid "Disable" +#~ msgstr "Letiltás" + +#~ msgid "Damaged" +#~ msgstr "Sérült" + +#, fuzzy +#~| msgid "Repair" +#~ msgctxt "BLOB repository" +#~ msgid "Repair" +#~ msgstr "Javítás" + +#, fuzzy +#~| msgid "Disabled" +#~ msgctxt "BLOB repository" +#~ msgid "Disabled" +#~ msgstr "Letiltott" + +#~ msgid "Enable" +#~ msgstr "Engedélyezés" + #~ msgid "" #~ "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " #~ "extension. Please check your PHP configuration." diff --git a/po/id.po b/po/id.po index b5df1b9ca..9af81bf5e 100644 --- a/po/id.po +++ b/po/id.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-21 13:53+0200\n" +"POT-Creation-Date: 2010-07-26 17:18+0200\n" "PO-Revision-Date: 2010-06-16 01:45+0200\n" "Last-Translator: \n" "Language-Team: indonesian \n" @@ -14,19 +14,19 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.1\n" -#: browse_foreigners.php:37 browse_foreigners.php:58 -#: libraries/display_tbl.lib.php:416 server_privileges.php:1506 +#: browse_foreigners.php:36 browse_foreigners.php:57 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1510 msgid "Show all" msgstr "Tampilkan semua" -#: browse_foreigners.php:81 libraries/common.lib.php:2313 -#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:393 -#: libraries/export/pdf.php:146 pdf_schema.php:282 pdf_schema.php:1122 -#: pdf_schema.php:1138 +#: browse_foreigners.php:80 libraries/common.lib.php:2318 +#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:392 +#: libraries/export/pdf.php:146 pdf_schema.php:281 pdf_schema.php:1121 +#: pdf_schema.php:1137 msgid "Page number:" msgstr "Halaman no.:" -#: browse_foreigners.php:131 +#: browse_foreigners.php:130 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -36,137 +36,151 @@ msgstr "" "induknya atau pilihan keamanan pada browser Anda melarang untuk mengupdate " "dengan cara Cross-Window" -#: browse_foreigners.php:149 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2829 -#: libraries/common.lib.php:2836 libraries/db_links.inc.php:74 -#: libraries/tbl_links.inc.php:62 +#: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 +#: db_structure.php:89 db_structure.php:91 db_structure.php:102 +#: db_structure.php:104 libraries/common.lib.php:2834 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Cari" -#: browse_foreigners.php:152 db_operations.php:384 db_operations.php:428 -#: db_operations.php:498 db_operations.php:608 db_search.php:344 -#: db_structure.php:566 js/messages.php:48 libraries/Config.class.php:1043 -#: libraries/Theme_Manager.class.php:310 +#: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 +#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 +#: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 -#: libraries/common.lib.php:1340 libraries/common.lib.php:2289 +#: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 -#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:275 -#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:531 -#: libraries/display_tbl.lib.php:613 libraries/replication_gui.lib.php:75 +#: libraries/display_export.lib.php:269 libraries/display_import.lib.php:275 +#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 +#: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 #: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:781 -#: main.php:127 navigation.php:231 pdf_pages.php:291 pdf_pages.php:327 -#: pdf_pages.php:529 pmd_pdf.php:115 server_binlog.php:128 -#: server_privileges.php:664 server_privileges.php:1616 -#: server_privileges.php:1963 server_privileges.php:2010 -#: server_privileges.php:2049 server_replication.php:234 -#: server_replication.php:317 server_replication.php:340 -#: server_synchronize.php:1208 tbl_change.php:328 tbl_change.php:1172 -#: tbl_change.php:1209 tbl_indexes.php:253 tbl_operations.php:264 -#: tbl_operations.php:301 tbl_operations.php:498 tbl_operations.php:560 -#: tbl_operations.php:680 tbl_select.php:324 tbl_structure.php:561 -#: tbl_structure.php:596 tbl_tracking.php:394 tbl_tracking.php:511 -#: view_create.php:181 view_operations.php:100 +#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 +#: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 +#: server_privileges.php:663 server_privileges.php:1620 +#: server_privileges.php:1967 server_privileges.php:2014 +#: server_privileges.php:2053 server_replication.php:233 +#: server_replication.php:316 server_replication.php:339 +#: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 +#: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 +#: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 +#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "Go" -#: browse_foreigners.php:167 browse_foreigners.php:171 -#: libraries/Index.class.php:441 tbl_tracking.php:319 +#: browse_foreigners.php:166 browse_foreigners.php:170 +#: libraries/Index.class.php:441 tbl_tracking.php:314 msgid "Keyname" msgstr "Nama Kunci" -#: browse_foreigners.php:168 browse_foreigners.php:170 -#: server_collations.php:54 server_collations.php:66 server_engines.php:58 +#: browse_foreigners.php:167 browse_foreigners.php:169 +#: server_collations.php:54 server_collations.php:66 server_engines.php:57 #: server_status.php:738 msgid "Description" msgstr "Deskripsi" -#: browse_foreigners.php:246 browse_foreigners.php:255 -#: browse_foreigners.php:267 browse_foreigners.php:275 +#: browse_foreigners.php:245 browse_foreigners.php:254 +#: browse_foreigners.php:266 browse_foreigners.php:274 msgid "Use this value" msgstr "gunakan nilai ini" -#: db_create.php:45 +#: bs_disp_as_mime_type.php:29 bs_play_media.php:35 +msgid "No blob streaming server configured!" +msgstr "" + +#: bs_disp_as_mime_type.php:35 +#, fuzzy +#| msgid "Failed to write file to disk." +msgid "Failed to fetch headers" +msgstr "Gagal menulis file ke disk" + +#: bs_disp_as_mime_type.php:41 +msgid "Failed to open remote URL" +msgstr "" + +#: db_create.php:44 #, php-format msgid "Database %1$s has been created." msgstr "Database %1$s telah dibuat." -#: db_datadict.php:48 db_operations.php:377 +#: db_datadict.php:48 db_operations.php:313 msgid "Database comment: " msgstr "Komentar Database: " -#: db_datadict.php:164 libraries/tbl_properties.inc.php:723 -#: pdf_schema.php:1235 tbl_operations.php:346 tbl_printview.php:128 +#: db_datadict.php:164 libraries/tbl_properties.inc.php:722 +#: pdf_schema.php:1234 tbl_operations.php:344 tbl_printview.php:127 msgid "Table comments" msgstr "Komentar tabel" -#: db_datadict.php:173 db_qbe.php:173 libraries/Index.class.php:445 +#: db_datadict.php:173 db_qbe.php:170 libraries/Index.class.php:445 #: libraries/export/htmlword.php:243 libraries/export/latex.php:364 #: libraries/export/odt.php:293 libraries/export/texytext.php:233 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:274 -#: pdf_schema.php:1261 pdf_schema.php:1282 tbl_change.php:306 -#: tbl_indexes.php:188 tbl_printview.php:140 tbl_relation.php:401 -#: tbl_select.php:133 tbl_structure.php:176 tbl_tracking.php:272 -#: tbl_tracking.php:323 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 +#: pdf_schema.php:1260 pdf_schema.php:1281 tbl_change.php:301 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:132 tbl_structure.php:175 tbl_tracking.php:267 +#: tbl_tracking.php:318 msgid "Column" msgstr "Kolom" -#: db_datadict.php:174 db_printview.php:105 libraries/Index.class.php:442 +#: db_datadict.php:174 db_printview.php:104 libraries/Index.class.php:442 #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 #: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:244 #: libraries/export/latex.php:364 libraries/export/odt.php:296 #: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:99 -#: pdf_schema.php:1262 pdf_schema.php:1283 server_privileges.php:2062 -#: tbl_change.php:285 tbl_change.php:312 tbl_printview.php:141 -#: tbl_printview.php:311 tbl_select.php:134 tbl_structure.php:177 -#: tbl_structure.php:658 tbl_tracking.php:273 tbl_tracking.php:320 +#: pdf_schema.php:1261 pdf_schema.php:1282 server_privileges.php:2066 +#: tbl_change.php:280 tbl_change.php:307 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:133 tbl_structure.php:176 +#: tbl_structure.php:656 tbl_tracking.php:268 tbl_tracking.php:315 msgid "Type" msgstr "Jenis" #: db_datadict.php:176 libraries/Index.class.php:448 #: libraries/export/htmlword.php:245 libraries/export/latex.php:364 #: libraries/export/odt.php:299 libraries/export/texytext.php:235 -#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1264 -#: pdf_schema.php:1285 tbl_change.php:321 tbl_printview.php:143 -#: tbl_structure.php:180 tbl_tracking.php:275 tbl_tracking.php:326 +#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1263 +#: pdf_schema.php:1284 tbl_change.php:316 tbl_printview.php:142 +#: tbl_structure.php:179 tbl_tracking.php:270 tbl_tracking.php:321 msgid "Null" msgstr "Kosong" -#: db_datadict.php:177 db_structure.php:500 libraries/export/htmlword.php:246 +#: db_datadict.php:177 db_structure.php:486 libraries/export/htmlword.php:246 #: libraries/export/latex.php:364 libraries/export/odt.php:302 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:105 -#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 -#: tbl_structure.php:181 tbl_tracking.php:276 +#: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:143 +#: tbl_structure.php:180 tbl_tracking.php:271 msgid "Default" msgstr "Default" #: db_datadict.php:181 libraries/export/htmlword.php:248 #: libraries/export/latex.php:366 libraries/export/odt.php:306 -#: libraries/export/texytext.php:238 pdf_schema.php:1267 pdf_schema.php:1288 -#: tbl_printview.php:148 +#: libraries/export/texytext.php:238 pdf_schema.php:1266 pdf_schema.php:1287 +#: tbl_printview.php:147 msgid "Links to" msgstr "Link ke" -#: db_datadict.php:183 db_printview.php:111 libraries/export/htmlword.php:251 +#: db_datadict.php:183 db_printview.php:110 libraries/export/htmlword.php:251 #: libraries/export/latex.php:49 libraries/export/latex.php:369 #: libraries/export/odt.php:37 libraries/export/odt.php:311 #: libraries/export/sql.php:29 libraries/export/texytext.php:241 -#: libraries/tbl_properties.inc.php:129 pdf_schema.php:1278 -#: pdf_schema.php:1289 tbl_printview.php:150 +#: libraries/tbl_properties.inc.php:128 pdf_schema.php:1277 +#: pdf_schema.php:1288 tbl_printview.php:149 msgid "Comments" msgstr "Komentar" #: db_datadict.php:266 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/export/htmlword.php:321 #: libraries/export/latex.php:434 libraries/export/odt.php:367 -#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:262 -#: pdf_schema.php:1343 server_privileges.php:1560 server_privileges.php:1571 -#: server_privileges.php:1881 server_privileges.php:1886 -#: server_privileges.php:2179 sql.php:131 sql.php:193 tbl_printview.php:227 -#: tbl_structure.php:349 tbl_tracking.php:336 tbl_tracking.php:341 +#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:261 +#: pdf_schema.php:1342 server_privileges.php:1564 server_privileges.php:1575 +#: server_privileges.php:1885 server_privileges.php:1890 +#: server_privileges.php:2183 sql.php:130 sql.php:192 tbl_printview.php:226 +#: tbl_structure.php:347 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "Tidak" @@ -177,17 +191,17 @@ msgstr "Tidak" #: libraries/mult_submits.inc.php:49 libraries/mult_submits.inc.php:54 #: libraries/mult_submits.inc.php:59 libraries/mult_submits.inc.php:91 #: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:105 -#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:261 -#: libraries/mult_submits.inc.php:272 pdf_schema.php:1343 -#: server_databases.php:63 server_privileges.php:1557 -#: server_privileges.php:1571 server_privileges.php:1881 -#: server_privileges.php:1884 server_privileges.php:2179 sql.php:192 -#: tbl_printview.php:227 tbl_structure.php:39 tbl_structure.php:349 -#: tbl_tracking.php:334 tbl_tracking.php:339 +#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:260 +#: libraries/mult_submits.inc.php:271 pdf_schema.php:1342 +#: server_databases.php:61 server_privileges.php:1561 +#: server_privileges.php:1575 server_privileges.php:1885 +#: server_privileges.php:1888 server_privileges.php:2183 sql.php:191 +#: tbl_printview.php:226 tbl_structure.php:38 tbl_structure.php:347 +#: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" msgstr "Ya" -#: db_datadict.php:321 db_printview.php:265 tbl_printview.php:496 +#: db_datadict.php:321 db_printview.php:264 tbl_printview.php:495 msgid "Print" msgstr "Cetak" @@ -195,278 +209,244 @@ msgstr "Cetak" msgid "View dump (schema) of database" msgstr "Tampilkan Dump (Skema) dari database" -#: db_export.php:32 db_printview.php:95 db_qbe.php:101 db_structure.php:50 -#: db_tracking.php:34 export.php:352 navigation.php:326 +#: db_export.php:32 db_printview.php:94 db_qbe.php:98 db_structure.php:49 +#: db_tracking.php:30 export.php:350 navigation.php:325 msgid "No tables found in database." msgstr "Tidak ada tabel dalam database." -#: db_export.php:42 db_search.php:326 server_export.php:26 +#: db_export.php:42 db_search.php:326 server_export.php:24 msgid "Select All" msgstr "Pilih semua" -#: db_export.php:44 db_search.php:329 server_export.php:28 +#: db_export.php:44 db_search.php:329 server_export.php:26 msgid "Unselect All" msgstr "Unselect semua" -#: db_operations.php:37 tbl_create.php:49 +#: db_operations.php:33 tbl_create.php:47 msgid "The database name is empty!" msgstr "Nama database kosong!" -#: db_operations.php:235 +#: db_operations.php:231 #, php-format msgid "Database %s has been renamed to %s" msgstr "Nama database %s telah diubah menjadi %s" -#: db_operations.php:239 +#: db_operations.php:235 #, php-format msgid "Database %s has been copied to %s" msgstr "Database %s telah disalin ke %s" -#: db_operations.php:411 +#: db_operations.php:347 msgid "Rename database to" msgstr "Ubah nama database menjadi" -#: db_operations.php:416 server_processlist.php:56 +#: db_operations.php:352 server_processlist.php:56 msgid "Command" msgstr "Perintah" -#: db_operations.php:428 tbl_change.php:1141 +#: db_operations.php:364 tbl_change.php:1039 msgid "and then" msgstr "selanjutnya" -#: db_operations.php:454 +#: db_operations.php:390 msgid "Copy database to" msgstr "Salin database ke" -#: db_operations.php:461 tbl_operations.php:527 tbl_tracking.php:387 +#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Struktur saja" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:389 +#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Struktur dan data" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:388 +#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Data saja" -#: db_operations.php:471 +#: db_operations.php:407 msgid "CREATE DATABASE before copying" msgstr "CIPTAKAN DATABASE sebelum menyalin" -#: db_operations.php:474 libraries/export/sql.php:51 +#: db_operations.php:410 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 -#: libraries/export/sql.php:81 tbl_operations.php:535 +#: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "Tambah %s" -#: db_operations.php:478 libraries/export/sql.php:77 tbl_operations.php:298 -#: tbl_operations.php:537 +#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Menambahkan nilai AUTO_INCREMENT" -#: db_operations.php:482 tbl_operations.php:544 +#: db_operations.php:418 tbl_operations.php:542 msgid "Add constraints" msgstr "Menambahkan pembatas" -#: db_operations.php:495 +#: db_operations.php:431 msgid "Switch to copied database" msgstr "Pindah ke database yang disalin" -#: db_operations.php:536 -msgid "BLOB Repository" -msgstr "Repositori BLOB" - -#: db_operations.php:539 db_tracking.php:75 libraries/common.lib.php:1357 -#: libraries/server_links.inc.php:48 server_processlist.php:58 -#: tbl_tracking.php:595 test/theme.php:100 -msgid "Status" -msgstr "Status" - -#: db_operations.php:547 -msgctxt "BLOB repository" -msgid "Enabled" -msgstr "Diaktifkan" - -#: db_operations.php:551 -msgid "Disable" -msgstr "Tidak aktif" - -#: db_operations.php:561 -msgid "Damaged" -msgstr "Rusak" - -#: db_operations.php:565 -msgctxt "BLOB repository" -msgid "Repair" -msgstr "Perbaiki" - -#: db_operations.php:573 -msgctxt "BLOB repository" -msgid "Disabled" -msgstr "Tidak diaktifkan" - -#: db_operations.php:577 -msgid "Enable" -msgstr "Aktif" - -#: db_operations.php:601 libraries/Index.class.php:447 +#: db_operations.php:451 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 -#: server_collations.php:53 server_collations.php:65 server_databases.php:110 -#: tbl_operations.php:362 tbl_select.php:135 tbl_structure.php:178 -#: tbl_structure.php:766 tbl_tracking.php:274 tbl_tracking.php:325 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 +#: server_collations.php:53 server_collations.php:65 server_databases.php:108 +#: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:177 +#: tbl_structure.php:764 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "Penyortiran" -#: db_operations.php:614 main.php:315 pdf_schema.php:33 -#, php-format +#: db_operations.php:464 pdf_schema.php:32 +#, fuzzy, php-format +#| msgid "" +#| "The additional features for working with linked tables have been " +#| "deactivated. To find out why click %shere%s." msgid "" -"The additional features for working with linked tables have been " -"deactivated. To find out why click %shere%s." +"The phpMyAdmin configuration storage has been deactivated. To find out why " +"click %shere%s." msgstr "" "Fasilitas penambahan untuk bekerja dengan tabel yang di-link di nonaktifkan. " "Untuk mengetahui sebabnya silakan klik %sdisini%s." -#: db_operations.php:647 +#: db_operations.php:497 msgid "Edit PDF Pages" msgstr "Ubah halaman PDF" -#: db_printview.php:103 db_tracking.php:71 db_tracking.php:156 +#: db_printview.php:102 db_tracking.php:67 db_tracking.php:152 #: libraries/db_structure.lib.php:37 libraries/export/xml.php:327 -#: libraries/header.inc.php:125 pdf_pages.php:423 server_privileges.php:1657 -#: server_privileges.php:1713 server_privileges.php:1977 -#: server_synchronize.php:422 server_synchronize.php:865 tbl_tracking.php:591 +#: libraries/header.inc.php:125 pdf_pages.php:422 server_privileges.php:1661 +#: server_privileges.php:1717 server_privileges.php:1981 +#: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "Tabel" -#: db_printview.php:104 libraries/db_structure.lib.php:47 +#: db_printview.php:103 libraries/db_structure.lib.php:47 #: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 -#: navigation.php:629 navigation.php:651 server_databases.php:121 -#: tbl_printview.php:392 tbl_structure.php:364 tbl_structure.php:776 +#: navigation.php:628 navigation.php:650 server_databases.php:119 +#: tbl_printview.php:391 tbl_structure.php:362 tbl_structure.php:774 msgid "Rows" msgstr "Baris" -#: db_printview.php:108 libraries/db_structure.lib.php:58 tbl_indexes.php:189 +#: db_printview.php:107 libraries/db_structure.lib.php:58 tbl_indexes.php:188 msgid "Size" msgstr "Ukuran" -#: db_printview.php:161 db_structure.php:456 libraries/export/sql.php:556 +#: db_printview.php:160 db_structure.php:442 libraries/export/sql.php:556 #: libraries/export/sql.php:896 msgid "in use" msgstr "sedang digunakan" -#: db_printview.php:186 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:511 pdf_schema.php:1240 tbl_printview.php:432 -#: tbl_structure.php:808 +#: db_printview.php:185 libraries/db_info.inc.php:86 +#: libraries/export/sql.php:511 pdf_schema.php:1239 tbl_printview.php:431 +#: tbl_structure.php:806 msgid "Creation" msgstr "Pembuatan" -#: db_printview.php:195 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:516 pdf_schema.php:1245 tbl_printview.php:442 -#: tbl_structure.php:816 +#: db_printview.php:194 libraries/db_info.inc.php:91 +#: libraries/export/sql.php:516 pdf_schema.php:1244 tbl_printview.php:441 +#: tbl_structure.php:814 msgid "Last update" msgstr "Update terakhir" -#: db_printview.php:204 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:521 pdf_schema.php:1250 tbl_printview.php:452 -#: tbl_structure.php:824 +#: db_printview.php:203 libraries/db_info.inc.php:96 +#: libraries/export/sql.php:521 pdf_schema.php:1249 tbl_printview.php:451 +#: tbl_structure.php:822 msgid "Last check" msgstr "Pemeriksaan terakhir" -#: db_printview.php:221 db_structure.php:479 +#: db_printview.php:220 db_structure.php:465 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" msgid_plural "%s tables" msgstr[0] "tabel %s" -#: db_qbe.php:28 import.php:453 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1980 libraries/sql_query_form.lib.php:138 -#: tbl_operations.php:212 tbl_relation.php:291 tbl_row_action.php:130 -#: view_operations.php:61 +#: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 +#: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "Sukses menjalankan perintah SQL" -#: db_qbe.php:41 +#: db_qbe.php:38 msgid "You have to choose at least one column to display" msgstr "Sekurang-kurangnya satu kolom harus dipilih untuk ditampilkan" -#: db_qbe.php:199 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:865 +#: db_qbe.php:196 libraries/db_structure.lib.php:95 +#: libraries/display_tbl.lib.php:864 msgid "Sort" msgstr "Urutkan" -#: db_qbe.php:208 db_qbe.php:242 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:522 libraries/display_tbl.lib.php:827 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:259 -#: tbl_select.php:311 +#: db_qbe.php:205 db_qbe.php:239 libraries/db_structure.lib.php:102 +#: libraries/display_tbl.lib.php:521 libraries/display_tbl.lib.php:826 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:257 +#: tbl_select.php:310 msgid "Ascending" msgstr "Urutan menaik" -#: db_qbe.php:209 db_qbe.php:250 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:527 libraries/display_tbl.lib.php:824 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:260 -#: tbl_select.php:312 +#: db_qbe.php:206 db_qbe.php:247 libraries/db_structure.lib.php:110 +#: libraries/display_tbl.lib.php:526 libraries/display_tbl.lib.php:823 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:258 +#: tbl_select.php:311 msgid "Descending" msgstr "Urutan menurun" -#: db_qbe.php:263 db_tracking.php:77 libraries/display_tbl.lib.php:307 -#: tbl_change.php:275 tbl_tracking.php:596 +#: db_qbe.php:260 db_tracking.php:73 libraries/display_tbl.lib.php:306 +#: tbl_change.php:270 tbl_tracking.php:591 msgid "Show" msgstr "Tampilkan" -#: db_qbe.php:299 +#: db_qbe.php:296 msgid "Criteria" msgstr "Kriteria" -#: db_qbe.php:352 db_qbe.php:434 db_qbe.php:526 db_qbe.php:557 +#: db_qbe.php:349 db_qbe.php:431 db_qbe.php:523 db_qbe.php:554 msgid "Ins" msgstr "Sisipkan" -#: db_qbe.php:356 db_qbe.php:438 db_qbe.php:523 db_qbe.php:554 +#: db_qbe.php:353 db_qbe.php:435 db_qbe.php:520 db_qbe.php:551 msgid "And" msgstr "Dan" -#: db_qbe.php:365 db_qbe.php:446 db_qbe.php:528 db_qbe.php:559 +#: db_qbe.php:362 db_qbe.php:443 db_qbe.php:525 db_qbe.php:556 msgid "Del" msgstr "Hapus" -#: db_qbe.php:369 db_qbe.php:450 db_qbe.php:521 db_qbe.php:552 -#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:778 -#: server_privileges.php:297 tbl_change.php:1027 tbl_indexes.php:249 -#: tbl_select.php:285 +#: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 +#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:777 +#: server_privileges.php:296 tbl_change.php:925 tbl_indexes.php:248 +#: tbl_select.php:284 msgid "Or" msgstr "Atau" -#: db_qbe.php:506 +#: db_qbe.php:503 msgid "Modify" msgstr "Ubah" -#: db_qbe.php:583 +#: db_qbe.php:580 msgid "Add/Delete criteria rows" msgstr "Tambahkan/Hapus kriteria baris" -#: db_qbe.php:595 +#: db_qbe.php:592 msgid "Add/Delete columns" msgstr "Tambahkan/Hapus kolom" -#: db_qbe.php:608 db_qbe.php:633 +#: db_qbe.php:605 db_qbe.php:630 msgid "Update Query" msgstr "Update proses pencarian" -#: db_qbe.php:616 +#: db_qbe.php:613 msgid "Use Tables" msgstr "Gunakan tabel" -#: db_qbe.php:639 +#: db_qbe.php:636 #, php-format msgid "SQL query on database %s:" msgstr "Pencarian SQL dalam database %s:" -#: db_qbe.php:933 libraries/common.lib.php:1222 +#: db_qbe.php:930 libraries/common.lib.php:1215 msgid "Submit Query" msgstr "Jalankan pencarian SQL" @@ -505,17 +485,17 @@ msgid "%s match inside table %s" msgid_plural "%s matches inside table %s" msgstr[0] "%s catatan dalam tabel %s" -#: db_search.php:249 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2831 -#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:49 -#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:466 +#: db_search.php:249 db_structure.php:75 db_structure.php:76 +#: db_structure.php:88 db_structure.php:90 db_structure.php:101 +#: db_structure.php:103 libraries/common.lib.php:2836 +#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 +#: tbl_structure.php:35 tbl_structure.php:47 tbl_structure.php:464 msgid "Browse" msgstr "Browse" -#: db_search.php:254 libraries/display_tbl.lib.php:1164 -#: libraries/display_tbl.lib.php:2055 libraries/sql_query_form.lib.php:453 -#: pdf_pages.php:285 pdf_pages.php:424 pdf_pages.php:460 pdf_pages.php:488 +#: db_search.php:254 libraries/display_tbl.lib.php:1163 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 msgid "Delete" @@ -552,66 +532,66 @@ msgstr "Cari dalam tabel:" msgid "Inside column:" msgstr "Di dalam kolom:" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2830 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:75 +#: db_structure.php:79 db_structure.php:80 db_structure.php:92 +#: db_structure.php:93 db_structure.php:105 db_structure.php:106 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 +#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Sisipkan" -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2827 libraries/common.lib.php:2834 -#: libraries/db_links.inc.php:62 libraries/export/htmlword.php:22 +#: db_structure.php:81 db_structure.php:94 db_structure.php:107 +#: libraries/common.lib.php:2832 libraries/common.lib.php:2839 +#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 -#: libraries/tbl_links.inc.php:55 pmd_general.php:133 -#: server_privileges.php:593 server_replication.php:314 tbl_tracking.php:268 +#: libraries/tbl_links.inc.php:54 pmd_general.php:133 +#: server_privileges.php:592 server_replication.php:313 tbl_tracking.php:263 msgid "Structure" msgstr "Struktur" -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:544 db_structure.php:545 db_tracking.php:90 -#: libraries/Index.class.php:482 libraries/common.lib.php:1659 -#: libraries/db_links.inc.php:99 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:126 -#: server_databases.php:351 tbl_structure.php:26 tbl_structure.php:150 -#: tbl_structure.php:151 tbl_structure.php:470 +#: db_structure.php:82 db_structure.php:83 db_structure.php:95 +#: db_structure.php:96 db_structure.php:108 db_structure.php:109 +#: db_structure.php:530 db_structure.php:531 db_tracking.php:86 +#: libraries/Index.class.php:482 libraries/common.lib.php:1663 +#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 +#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 +#: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" msgstr "Hapus" -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:542 db_structure.php:543 libraries/common.lib.php:1658 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:104 +#: db_structure.php:84 db_structure.php:85 db_structure.php:97 +#: db_structure.php:98 db_structure.php:110 db_structure.php:111 +#: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 +#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 msgid "Empty" msgstr "Mengosongkan" -#: db_structure.php:315 libraries/tbl_links.inc.php:99 +#: db_structure.php:301 libraries/tbl_links.inc.php:98 #, php-format msgid "Table %s has been emptied" msgstr "Tabel %s telah dikosongkan" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "View %s has been dropped" msgstr "Pandangan %s telah dibubarkan" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "Table %s has been dropped" msgstr "Tabel %s telah dihapus" -#: db_structure.php:332 +#: db_structure.php:318 msgid "Tracking is active." msgstr "Pelacakan aktif" -#: db_structure.php:334 +#: db_structure.php:320 msgid "Tracking is not active." msgstr "Pelacakan tidak aktif." -#: db_structure.php:419 libraries/display_tbl.lib.php:1943 +#: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -620,160 +600,166 @@ msgstr "" "Sebuah view setidaknya mempunyai jumlah kolom berikut. Silahkan lihat " "%sdokumentasi%s" -#: db_structure.php:433 db_structure.php:447 libraries/header.inc.php:125 -#: libraries/tbl_info.inc.php:65 tbl_structure.php:184 test/theme.php:73 +#: db_structure.php:419 db_structure.php:433 libraries/header.inc.php:125 +#: libraries/tbl_info.inc.php:60 tbl_structure.php:183 test/theme.php:73 msgid "View" msgstr "Gambarkan" -#: db_structure.php:484 libraries/db_structure.lib.php:40 -#: libraries/server_links.inc.php:69 server_replication.php:32 -#: server_replication.php:163 server_status.php:368 +#: db_structure.php:470 libraries/db_structure.lib.php:40 +#: libraries/server_links.inc.php:69 server_replication.php:31 +#: server_replication.php:162 server_status.php:368 msgid "Replication" msgstr "Tiruan" -#: db_structure.php:488 +#: db_structure.php:474 msgid "Sum" msgstr "Jumlah" -#: db_structure.php:495 libraries/StorageEngine.class.php:349 +#: db_structure.php:481 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s adalah mesin penyimpan utama pada server MySQL ini." -#: db_structure.php:523 db_structure.php:540 db_structure.php:541 -#: libraries/display_tbl.lib.php:2080 libraries/display_tbl.lib.php:2085 -#: libraries/mult_submits.inc.php:15 server_databases.php:345 -#: server_databases.php:350 server_privileges.php:1588 tbl_structure.php:454 -#: tbl_structure.php:463 +#: db_structure.php:509 db_structure.php:526 db_structure.php:527 +#: libraries/display_tbl.lib.php:2039 libraries/display_tbl.lib.php:2044 +#: libraries/mult_submits.inc.php:15 server_databases.php:343 +#: server_databases.php:348 server_privileges.php:1592 tbl_structure.php:452 +#: tbl_structure.php:461 msgid "With selected:" msgstr "yang ditandai:" -#: db_structure.php:526 libraries/display_tbl.lib.php:2075 -#: server_databases.php:347 server_privileges.php:569 -#: server_privileges.php:1591 tbl_structure.php:457 +#: db_structure.php:512 libraries/display_tbl.lib.php:2034 +#: server_databases.php:345 server_privileges.php:568 +#: server_privileges.php:1595 tbl_structure.php:455 msgid "Check All" msgstr "Pilih semua" -#: db_structure.php:530 libraries/display_tbl.lib.php:2076 -#: libraries/replication_gui.lib.php:35 server_databases.php:349 -#: server_privileges.php:572 server_privileges.php:1595 tbl_structure.php:461 +#: db_structure.php:516 libraries/display_tbl.lib.php:2035 +#: libraries/replication_gui.lib.php:35 server_databases.php:347 +#: server_privileges.php:571 server_privileges.php:1599 tbl_structure.php:459 msgid "Uncheck All" msgstr "Balik pilihan" -#: db_structure.php:535 +#: db_structure.php:521 msgid "Check tables having overhead" msgstr "Periksa Overheaded" -#: db_structure.php:546 db_structure.php:547 db_structure.php:598 -#: libraries/display_tbl.lib.php:2179 libraries/mult_submits.inc.php:27 -#: tbl_structure.php:491 tbl_structure.php:493 +#: db_structure.php:532 db_structure.php:533 db_structure.php:584 +#: libraries/display_tbl.lib.php:2138 libraries/mult_submits.inc.php:27 +#: tbl_structure.php:489 tbl_structure.php:491 msgid "Print view" msgstr "Pandangan cetak" -#: db_structure.php:548 db_structure.php:549 libraries/mult_submits.inc.php:41 -#: tbl_operations.php:580 +#: db_structure.php:534 db_structure.php:535 libraries/mult_submits.inc.php:41 +#: tbl_operations.php:578 msgid "Check table" msgstr "Periksa tabel" -#: db_structure.php:550 db_structure.php:551 libraries/mult_submits.inc.php:46 -#: tbl_operations.php:620 tbl_structure.php:708 tbl_structure.php:710 +#: db_structure.php:536 db_structure.php:537 libraries/mult_submits.inc.php:46 +#: tbl_operations.php:618 tbl_structure.php:706 tbl_structure.php:708 msgid "Optimize table" msgstr "Optimasikan tabel" -#: db_structure.php:552 db_structure.php:553 libraries/mult_submits.inc.php:51 -#: tbl_operations.php:610 +#: db_structure.php:538 db_structure.php:539 libraries/mult_submits.inc.php:51 +#: tbl_operations.php:608 msgid "Repair table" msgstr "Perbaiki tabel" -#: db_structure.php:554 db_structure.php:555 libraries/mult_submits.inc.php:56 -#: tbl_operations.php:600 +#: db_structure.php:540 db_structure.php:541 libraries/mult_submits.inc.php:56 +#: tbl_operations.php:598 msgid "Analyze table" msgstr "Analisa tabel" -#: db_structure.php:556 db_structure.php:557 libraries/db_links.inc.php:70 -#: libraries/display_export.lib.php:82 libraries/display_tbl.lib.php:2093 -#: libraries/display_tbl.lib.php:2224 libraries/mult_submits.inc.php:61 -#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:81 -#: pmd_pdf.php:83 pmd_pdf.php:108 server_privileges.php:1372 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 +#: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 +#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 +#: pmd_pdf.php:81 pmd_pdf.php:106 server_privileges.php:1376 #: setup/frames/menu.inc.php:22 tbl_row_action.php:58 msgid "Export" msgstr "Ekspor" -#: db_structure.php:605 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:591 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "Kamus Data" -#: db_tracking.php:65 +#: db_tracking.php:61 msgid "Tracked tables" msgstr "Tabel-tabel yang dilacak" -#: db_tracking.php:70 libraries/export/htmlword.php:85 +#: db_tracking.php:66 libraries/export/htmlword.php:85 #: libraries/export/latex.php:152 libraries/export/odt.php:112 #: libraries/export/sql.php:339 libraries/export/texytext.php:84 #: libraries/export/xml.php:254 libraries/header.inc.php:105 -#: libraries/header_printview.inc.php:57 server_databases.php:168 -#: server_privileges.php:1652 server_privileges.php:1713 -#: server_privileges.php:1971 server_processlist.php:55 -#: server_synchronize.php:1178 server_synchronize.php:1182 -#: tbl_tracking.php:590 test/theme.php:64 +#: libraries/header_printview.inc.php:57 server_databases.php:166 +#: server_privileges.php:1656 server_privileges.php:1717 +#: server_privileges.php:1975 server_processlist.php:55 +#: server_synchronize.php:1177 server_synchronize.php:1181 +#: tbl_tracking.php:585 test/theme.php:64 msgid "Database" msgstr "Database" -#: db_tracking.php:72 +#: db_tracking.php:68 msgid "Last version" msgstr "Versi terakhir" -#: db_tracking.php:73 tbl_tracking.php:593 +#: db_tracking.php:69 tbl_tracking.php:588 msgid "Created" msgstr "Dibuat" -#: db_tracking.php:74 tbl_tracking.php:594 +#: db_tracking.php:70 tbl_tracking.php:589 msgid "Updated" msgstr "Diperbarui" -#: db_tracking.php:76 libraries/Index.class.php:439 -#: libraries/db_structure.lib.php:44 server_databases.php:202 -#: server_privileges.php:1534 server_privileges.php:1717 -#: server_privileges.php:2065 tbl_structure.php:186 +#: db_tracking.php:71 libraries/common.lib.php:1361 +#: libraries/server_links.inc.php:48 server_processlist.php:58 +#: tbl_tracking.php:590 test/theme.php:100 +msgid "Status" +msgstr "Status" + +#: db_tracking.php:72 libraries/Index.class.php:439 +#: libraries/db_structure.lib.php:44 server_databases.php:200 +#: server_privileges.php:1538 server_privileges.php:1721 +#: server_privileges.php:2069 tbl_structure.php:185 msgid "Action" msgstr "Aksi" -#: db_tracking.php:87 db_tracking.php:119 +#: db_tracking.php:83 db_tracking.php:115 msgid "Delete tracking data for this table" msgstr "Hapus pelacakan data untuk tabel ini" -#: db_tracking.php:105 tbl_tracking.php:547 tbl_tracking.php:605 -#: tbl_tracking.php:612 +#: db_tracking.php:101 tbl_tracking.php:542 tbl_tracking.php:600 +#: tbl_tracking.php:607 msgid "active" msgstr "aktif" -#: db_tracking.php:107 tbl_tracking.php:549 tbl_tracking.php:607 -#: tbl_tracking.php:609 +#: db_tracking.php:103 tbl_tracking.php:544 tbl_tracking.php:602 +#: tbl_tracking.php:604 msgid "not active" msgstr "tidak aktif" -#: db_tracking.php:120 +#: db_tracking.php:116 msgid "Versions" msgstr "Versi" -#: db_tracking.php:121 tbl_tracking.php:378 tbl_tracking.php:623 +#: db_tracking.php:117 tbl_tracking.php:373 tbl_tracking.php:618 msgid "Tracking report" msgstr "Laporan pelacakan" -#: db_tracking.php:122 tbl_tracking.php:250 tbl_tracking.php:623 +#: db_tracking.php:118 tbl_tracking.php:245 tbl_tracking.php:618 msgid "Structure snapshot" msgstr "Struktur snapshot" -#: db_tracking.php:151 +#: db_tracking.php:147 msgid "Untracked tables" msgstr "Batal lacak tabel" -#: db_tracking.php:171 db_tracking.php:173 tbl_structure.php:527 -#: tbl_structure.php:529 +#: db_tracking.php:167 db_tracking.php:169 tbl_structure.php:525 +#: tbl_structure.php:527 msgid "Track table" msgstr "Lacak tabel" -#: db_tracking.php:199 +#: db_tracking.php:195 msgid "Database Log" msgstr "Log Database" @@ -781,12 +767,12 @@ msgstr "Log Database" msgid "Selected export type has to be saved in file!" msgstr "" -#: export.php:153 export.php:178 export.php:620 +#: export.php:152 export.php:177 export.php:615 #, php-format msgid "Insufficient space to save the file %s." msgstr "Tidak cukup ruang untuk menyimpan %s." -#: export.php:287 +#: export.php:286 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -794,17 +780,17 @@ msgstr "" "File %s sudah ada pada server. Gantikan nama file atau periksa pilihan " "Overwrite." -#: export.php:291 export.php:295 +#: export.php:290 export.php:294 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Webserver tidak memilik hak (permission) untuk menyimpan file %s." -#: export.php:622 +#: export.php:617 #, php-format msgid "Dump has been saved to file %s." msgstr "Dump (Skema) disimpan pada file %s." -#: import.php:59 +#: import.php:58 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -813,14 +799,14 @@ msgstr "" "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:840 -#: libraries/File.class.php:950 +#: import.php:277 import.php:330 libraries/File.class.php:566 +#: libraries/File.class.php:676 msgid "File could not be read" msgstr "Gagal membaca File" -#: import.php:286 import.php:295 import.php:314 import.php:323 -#: libraries/File.class.php:1020 libraries/File.class.php:1028 -#: libraries/File.class.php:1044 libraries/File.class.php:1052 +#: import.php:285 import.php:294 import.php:313 import.php:322 +#: libraries/File.class.php:746 libraries/File.class.php:754 +#: libraries/File.class.php:770 libraries/File.class.php:778 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -829,62 +815,62 @@ msgstr "" "Anda mencoba untuk memuat file dengan kompresi yang tidak didukung (%s). " "Dukungan belum diimplementasi atau tidak aktif di dalam konfigurasi Anda." -#: import.php:336 +#: import.php:335 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " "[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." msgstr "" -#: import.php:371 libraries/display_import.lib.php:23 +#: import.php:370 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "Tidak dapat memuat plugin import, silahkan periksa instalasi Anda!" -#: import.php:396 +#: import.php:395 msgid "The bookmark has been deleted." msgstr "Penyimpanan telah dihapus." -#: import.php:400 +#: import.php:399 msgid "Showing bookmark" msgstr "Tampilkan bookmark" -#: import.php:402 sql.php:625 +#: import.php:401 sql.php:618 #, php-format msgid "Bookmark %s created" msgstr "" -#: import.php:408 import.php:414 +#: import.php:407 import.php:413 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" -#: import.php:423 +#: import.php:422 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: import.php:425 +#: import.php:424 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." msgstr "" -#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:240 +#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:239 #: user_password.php:110 msgid "Back" msgstr "Kembali" -#: index.php:188 +#: index.php:183 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" "Lebih mudah untuk menggunakan phpMyAdmin dengan browser yang mendukung " "frame." -#: js/messages.php:25 server_synchronize.php:344 server_synchronize.php:356 -#: server_synchronize.php:372 server_synchronize.php:379 -#: server_synchronize.php:738 server_synchronize.php:766 -#: server_synchronize.php:794 server_synchronize.php:806 +#: js/messages.php:25 server_synchronize.php:343 server_synchronize.php:355 +#: server_synchronize.php:371 server_synchronize.php:378 +#: server_synchronize.php:737 server_synchronize.php:765 +#: server_synchronize.php:793 server_synchronize.php:805 msgid "Click to select" msgstr "Klik untuk memilih" @@ -892,15 +878,15 @@ msgstr "Klik untuk memilih" msgid "Click to unselect" msgstr "Klik untuk batal memilih" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:88 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:87 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Perintah \"HAPUS DATABASE\" dimatikan." -#: js/messages.php:30 libraries/mult_submits.inc.php:257 sql.php:187 +#: js/messages.php:30 libraries/mult_submits.inc.php:256 sql.php:186 msgid "Do you really want to " msgstr "Apakah anda ingin " -#: js/messages.php:31 libraries/mult_submits.inc.php:257 sql.php:171 +#: js/messages.php:31 libraries/mult_submits.inc.php:256 sql.php:170 msgid "You are about to DESTROY a complete database!" msgstr "Anda akan MENGHAPUS SELURUH database!" @@ -929,11 +915,11 @@ msgstr "Nama Host harus diisi!" msgid "The user name is empty!" msgstr "Nama pengguna masih kosong!" -#: js/messages.php:44 server_privileges.php:1228 user_password.php:65 +#: js/messages.php:44 server_privileges.php:1229 user_password.php:65 msgid "The password is empty!" msgstr "Kata Sandi kosong!" -#: js/messages.php:45 server_privileges.php:1226 user_password.php:68 +#: js/messages.php:45 server_privileges.php:1227 user_password.php:68 msgid "The passwords aren't the same!" msgstr "Kata Sandi tidak sama!" @@ -941,29 +927,29 @@ msgstr "Kata Sandi tidak sama!" msgid "Cancel" msgstr "Batal" -#: js/messages.php:52 pmd_save_pos.php:53 +#: js/messages.php:52 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "Modifikasi telah disimpan" -#: js/messages.php:53 pmd_relation_upd.php:48 +#: js/messages.php:53 pmd_relation_upd.php:47 #, fuzzy msgid "Relation deleted" msgstr "Tampilan relasi" -#: js/messages.php:54 pmd_relation_new.php:63 +#: js/messages.php:54 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:55 pmd_relation_new.php:85 +#: js/messages.php:55 pmd_relation_new.php:84 #, fuzzy msgid "Internal relation added" msgstr "Relasi internal" -#: js/messages.php:56 pmd_relation_new.php:62 pmd_relation_new.php:87 +#: js/messages.php:56 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "Kesalahan: Relasi tidak ditambahkan." -#: js/messages.php:57 pmd_relation_new.php:30 +#: js/messages.php:57 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "Kesalahan: relasi sudah ada." @@ -971,13 +957,13 @@ msgstr "Kesalahan: relasi sudah ada." msgid "Error saving coordinates for Designer." msgstr "Kesalahan menyimpan koordinat untuk Perancang." -#: js/messages.php:59 libraries/relation.lib.php:94 -#: libraries/relation.lib.php:106 +#: js/messages.php:59 libraries/relation.lib.php:89 +#: libraries/relation.lib.php:101 msgid "General relation features" msgstr "Ciri-ciri dari General Relation" -#: js/messages.php:59 libraries/relation.lib.php:88 -#: libraries/relation.lib.php:95 +#: js/messages.php:59 libraries/relation.lib.php:83 +#: libraries/relation.lib.php:90 msgid "Disabled" msgstr "Tidak aktif" @@ -993,7 +979,7 @@ msgstr "" msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:547 +#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" @@ -1024,10 +1010,10 @@ msgid "Prev" msgstr "Sebelumnya" #. l10n: Display text for next month link in calendar -#: js/messages.php:81 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:337 -#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:422 -#: tbl_structure.php:800 +#: js/messages.php:81 libraries/common.lib.php:2358 +#: libraries/common.lib.php:2361 libraries/display_tbl.lib.php:336 +#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 +#: tbl_structure.php:798 msgid "Next" msgstr "Berikutnya" @@ -1101,27 +1087,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1562 +#: js/messages.php:101 libraries/common.lib.php:1566 msgid "Jan" msgstr "Januari" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1564 +#: js/messages.php:103 libraries/common.lib.php:1568 msgid "Feb" msgstr "Februari" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1566 +#: js/messages.php:105 libraries/common.lib.php:1570 msgid "Mar" msgstr "Maret" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1568 +#: js/messages.php:107 libraries/common.lib.php:1572 msgid "Apr" msgstr "April" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1570 +#: js/messages.php:109 libraries/common.lib.php:1574 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1129,37 +1115,37 @@ msgid "May" msgstr "Mei" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1572 +#: js/messages.php:111 libraries/common.lib.php:1576 msgid "Jun" msgstr "Juni" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1574 +#: js/messages.php:113 libraries/common.lib.php:1578 msgid "Jul" msgstr "Juli" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1576 +#: js/messages.php:115 libraries/common.lib.php:1580 msgid "Aug" msgstr "Agustus" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1578 +#: js/messages.php:117 libraries/common.lib.php:1582 msgid "Sep" msgstr "September" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1580 +#: js/messages.php:119 libraries/common.lib.php:1584 msgid "Oct" msgstr "Oktober" #. l10n: Short month name -#: js/messages.php:121 libraries/common.lib.php:1582 +#: js/messages.php:121 libraries/common.lib.php:1586 msgid "Nov" msgstr "Nopember" #. l10n: Short month name -#: js/messages.php:123 libraries/common.lib.php:1584 +#: js/messages.php:123 libraries/common.lib.php:1588 msgid "Dec" msgstr "Desember" @@ -1200,37 +1186,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1587 +#: js/messages.php:136 libraries/common.lib.php:1591 msgid "Sun" msgstr "Minggu" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1589 +#: js/messages.php:138 libraries/common.lib.php:1593 msgid "Mon" msgstr "Senin" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1591 +#: js/messages.php:140 libraries/common.lib.php:1595 msgid "Tue" msgstr "Selasa" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1593 +#: js/messages.php:142 libraries/common.lib.php:1597 msgid "Wed" msgstr "Rabu" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1595 +#: js/messages.php:144 libraries/common.lib.php:1599 msgid "Thu" msgstr "Kamis" #. l10n: Short week day name -#: js/messages.php:146 libraries/common.lib.php:1597 +#: js/messages.php:146 libraries/common.lib.php:1601 msgid "Fri" msgstr "Jumat" #. l10n: Short week day name -#: js/messages.php:148 libraries/common.lib.php:1599 +#: js/messages.php:148 libraries/common.lib.php:1603 msgid "Sat" msgstr "Sabtu" @@ -1310,77 +1296,76 @@ msgstr "per detik" msgid "Font size" msgstr "" -#: libraries/File.class.php:336 libraries/File.class.php:424 -#: libraries/File.class.php:561 libraries/File.class.php:700 -msgid "Unknown error in file upload." -msgstr "Kesalahan yang tidak diketahui dalam upload file." - -#: libraries/File.class.php:406 +#: libraries/File.class.php:315 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:409 +#: libraries/File.class.php:318 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:412 +#: libraries/File.class.php:321 msgid "The uploaded file was only partially uploaded." msgstr "File yang di upload hanya ter-upload sebagian." -#: libraries/File.class.php:415 +#: libraries/File.class.php:324 msgid "Missing a temporary folder." msgstr "Folder sementara tidak ditemukan." -#: libraries/File.class.php:418 +#: libraries/File.class.php:327 msgid "Failed to write file to disk." msgstr "Gagal menulis file ke disk" -#: libraries/File.class.php:421 +#: libraries/File.class.php:330 msgid "File upload stopped by extension." msgstr "Upload file dihentikan oleh ekstensi." -#: libraries/File.class.php:898 +#: libraries/File.class.php:333 +msgid "Unknown error in file upload." +msgstr "Kesalahan yang tidak diketahui dalam upload file." + +#: libraries/File.class.php:624 #, fuzzy msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "Kemungkinan hanya perkiraan saja. Lihat FAQ 3.11" -#: libraries/Index.class.php:427 tbl_relation.php:528 +#: libraries/Index.class.php:427 tbl_relation.php:526 msgid "No index defined!" msgstr "Indeks belum ditentukan!" -#: libraries/Index.class.php:432 server_databases.php:131 tbl_tracking.php:315 +#: libraries/Index.class.php:432 server_databases.php:129 tbl_tracking.php:310 msgid "Indexes" msgstr "Indeks" #: libraries/Index.class.php:443 libraries/mult_submits.inc.php:102 -#: libraries/tbl_properties.inc.php:518 tbl_structure.php:32 -#: tbl_structure.php:154 tbl_structure.php:158 tbl_structure.php:473 -#: tbl_tracking.php:321 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:31 +#: tbl_structure.php:153 tbl_structure.php:157 tbl_structure.php:471 +#: tbl_tracking.php:316 msgid "Unique" msgstr "Unik" -#: libraries/Index.class.php:444 tbl_tracking.php:322 +#: libraries/Index.class.php:444 tbl_tracking.php:317 msgid "Packed" msgstr "" -#: libraries/Index.class.php:446 tbl_tracking.php:324 +#: libraries/Index.class.php:446 tbl_tracking.php:319 msgid "Cardinality" msgstr "Bilangan Pokok" -#: libraries/Index.class.php:449 tbl_tracking.php:278 tbl_tracking.php:327 +#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322 msgid "Comment" msgstr "Komentar" #: libraries/Index.class.php:465 libraries/common.lib.php:609 -#: libraries/common.lib.php:1198 libraries/display_tbl.lib.php:1116 +#: libraries/common.lib.php:1191 libraries/display_tbl.lib.php:1115 #: libraries/import.lib.php:1119 libraries/import.lib.php:1143 -#: pdf_pages.php:284 setup/frames/index.inc.php:124 +#: pdf_pages.php:283 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:349 tbl_row_action.php:68 msgid "Edit" msgstr "Ubah" @@ -1402,15 +1387,15 @@ msgid "" msgstr "" #: libraries/List_Database.class.php:430 libraries/server_links.inc.php:40 -#: server_databases.php:87 server_privileges.php:1652 +#: server_databases.php:85 server_privileges.php:1656 #: setup/lib/messages.inc.php:107 test/theme.php:92 msgid "Databases" msgstr "Database" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:259 libraries/import.lib.php:134 pdf_schema.php:31 -#: pdf_schema.php:231 tbl_change.php:1023 tbl_operations.php:212 -#: tbl_relation.php:289 view_operations.php:61 +#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 +#: tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Error" @@ -1434,41 +1419,41 @@ msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." msgstr[0] "Tidak ada baris yang dipilih" -#: libraries/StorageEngine.class.php:196 +#: libraries/StorageEngine.class.php:194 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:352 +#: libraries/StorageEngine.class.php:354 #, php-format msgid "%s is available on this MySQL server." msgstr "%s siap untuk digunakan pada server MySQL ini." -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:357 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s dimatikan untuk server MySQL ini." -#: libraries/StorageEngine.class.php:359 +#: libraries/StorageEngine.class.php:361 #, 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:1018 +#: libraries/Table.class.php:1017 msgid "Invalid database" msgstr "" -#: libraries/Table.class.php:1032 tbl_get_field.php:25 +#: libraries/Table.class.php:1031 tbl_get_field.php:25 msgid "Invalid table name" msgstr "" -#: libraries/Table.class.php:1047 +#: libraries/Table.class.php:1046 #, 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:1131 +#: libraries/Table.class.php:1129 #, php-format msgid "Table %s has been renamed to %s" msgstr "Nama tabel %s telah diubah menjadi %s" @@ -1486,22 +1471,22 @@ msgstr "" msgid "take it" msgstr "ambil" -#: libraries/Theme_Manager.class.php:114 +#: libraries/Theme_Manager.class.php:109 #, php-format msgid "Default theme %s not found!" msgstr "" -#: libraries/Theme_Manager.class.php:152 +#: libraries/Theme_Manager.class.php:147 #, php-format msgid "Theme %s not found!" msgstr "" -#: libraries/Theme_Manager.class.php:220 +#: libraries/Theme_Manager.class.php:215 #, php-format msgid "Theme path not found for theme %s!" msgstr "" -#: libraries/Theme_Manager.class.php:296 test/theme.php:160 themes.php:20 +#: libraries/Theme_Manager.class.php:291 test/theme.php:160 themes.php:20 #: themes.php:40 msgid "Theme / Style" msgstr "Desain Penampilan" @@ -1613,19 +1598,19 @@ msgstr "" msgid "Authenticating..." msgstr "" -#: libraries/blobstreaming.lib.php:689 +#: libraries/blobstreaming.lib.php:340 msgid "View image" msgstr "Tampilan View" -#: libraries/blobstreaming.lib.php:693 +#: libraries/blobstreaming.lib.php:344 msgid "Play audio" msgstr "" -#: libraries/blobstreaming.lib.php:698 +#: libraries/blobstreaming.lib.php:349 msgid "View video" msgstr "Video View" -#: libraries/blobstreaming.lib.php:702 +#: libraries/blobstreaming.lib.php:353 msgid "Download file" msgstr "Unduh file" @@ -1678,7 +1663,7 @@ msgstr "Server" msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:909 +#: libraries/common.inc.php:908 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Disarankan untuk meng-update ke %s versi %s atau lebih baru." @@ -1703,7 +1688,8 @@ msgstr "id" #: libraries/common.lib.php:425 libraries/common.lib.php:427 #: libraries/common.lib.php:429 libraries/common.lib.php:445 #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 -#: libraries/display_export.lib.php:163 libraries/relation.lib.php:84 +#: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 +#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 #: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" @@ -1718,148 +1704,148 @@ msgstr "Pencarian SQL" msgid "MySQL said: " msgstr "MySQL menyatakan: " -#: libraries/common.lib.php:1136 +#: libraries/common.lib.php:1129 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1174 setup/lib/messages.inc.php:350 +#: libraries/common.lib.php:1167 setup/lib/messages.inc.php:350 msgid "Explain SQL" msgstr "Terangkan SQL" -#: libraries/common.lib.php:1177 +#: libraries/common.lib.php:1170 msgid "Skip Explain SQL" msgstr "Melewati keterangan SQL" -#: libraries/common.lib.php:1211 +#: libraries/common.lib.php:1204 msgid "Without PHP Code" msgstr "Kode PHP tidak ditemukan" -#: libraries/common.lib.php:1214 setup/lib/messages.inc.php:352 +#: libraries/common.lib.php:1207 setup/lib/messages.inc.php:352 msgid "Create PHP Code" msgstr "Ciptakan kode PHP" -#: libraries/common.lib.php:1232 server_status.php:451 +#: libraries/common.lib.php:1225 server_status.php:451 #: setup/lib/messages.inc.php:351 msgid "Refresh" msgstr "Menyegarkan" -#: libraries/common.lib.php:1241 +#: libraries/common.lib.php:1234 msgid "Skip Validate SQL" msgstr "Melewati pengesahan (validation) SQL" -#: libraries/common.lib.php:1244 setup/lib/messages.inc.php:353 +#: libraries/common.lib.php:1237 setup/lib/messages.inc.php:353 msgid "Validate SQL" msgstr "Mengesahkan (validate) SQL" -#: libraries/common.lib.php:1283 +#: libraries/common.lib.php:1287 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1285 +#: libraries/common.lib.php:1289 #, fuzzy #| msgid "Engines" msgid "Inline" msgstr "Mesin" -#: libraries/common.lib.php:1339 libraries/common.lib.php:1354 +#: libraries/common.lib.php:1343 libraries/common.lib.php:1358 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1358 libraries/tbl_triggers.lib.php:27 +#: libraries/common.lib.php:1362 libraries/tbl_triggers.lib.php:27 #: server_processlist.php:57 msgid "Time" msgstr "Jangka Waktu" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "B" msgstr "Bytes" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "KiB" msgstr "KB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "MiB" msgstr "MB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "GiB" msgstr "GB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "TiB" msgstr "TB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "PiB" msgstr "PB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "EiB" msgstr "EB" #. l10n: Thousands separator -#: libraries/common.lib.php:1424 +#: libraries/common.lib.php:1428 msgid "," msgstr "." #. l10n: Decimal separator -#: libraries/common.lib.php:1426 +#: libraries/common.lib.php:1430 msgid "." msgstr "," #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1603 +#: libraries/common.lib.php:1607 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%d. %B %Y jam %H:%M" -#: libraries/common.lib.php:1909 +#: libraries/common.lib.php:1913 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s hari, %s jam, %s menit dan %s detik" -#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 -#: libraries/display_tbl.lib.php:289 server_status.php:718 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 +#: libraries/display_tbl.lib.php:288 server_status.php:718 msgid "Begin" msgstr "Awal" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 -#: libraries/display_tbl.lib.php:290 server_binlog.php:154 +#: libraries/common.lib.php:2328 libraries/common.lib.php:2331 +#: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "Sebelumnya" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 -#: libraries/display_tbl.lib.php:352 +#: libraries/common.lib.php:2359 libraries/common.lib.php:2362 +#: libraries/display_tbl.lib.php:351 msgid "End" msgstr "Terakhir" -#: libraries/common.lib.php:2429 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "Lompat langsung ke database "%s"." -#: libraries/common.lib.php:2448 +#: libraries/common.lib.php:2453 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2828 libraries/common.lib.php:2835 -#: libraries/db_links.inc.php:67 libraries/export/sql.php:24 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 +#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 -#: libraries/tbl_links.inc.php:59 querywindow.php:89 test/theme.php:96 +#: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2837 libraries/db_links.inc.php:103 -#: libraries/tbl_links.inc.php:94 libraries/tbl_links.inc.php:116 -#: view_operations.php:88 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: view_operations.php:87 msgid "Operations" msgstr "Operasi" -#: libraries/core.lib.php:282 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1875,39 +1861,39 @@ msgstr "Kejadian" msgid "Name" msgstr "Nama" -#: libraries/db_links.inc.php:44 +#: libraries/db_links.inc.php:43 #, php-format msgid "Database %s has been dropped." msgstr "Database %s telah dihapus." -#: libraries/db_links.inc.php:56 libraries/db_links.inc.php:57 -#: libraries/db_links.inc.php:58 +#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 +#: libraries/db_links.inc.php:57 msgid "Database seems to be empty!" msgstr "Database kelihatannya kosong" -#: libraries/db_links.inc.php:80 libraries/relation.lib.php:142 -#: libraries/tbl_links.inc.php:68 +#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "Pelacakan" -#: libraries/db_links.inc.php:85 +#: libraries/db_links.inc.php:84 msgid "Query" msgstr "Cari berdasarkan data contoh" -#: libraries/db_links.inc.php:90 libraries/relation.lib.php:138 +#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 msgid "Designer" msgstr "Perancang" -#: libraries/db_links.inc.php:97 libraries/server_links.inc.php:87 -#: libraries/tbl_links.inc.php:90 pmd_pdf.php:83 pmd_pdf.php:109 +#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 #, fuzzy msgid "Import" msgstr "Ekspor" -#: libraries/db_links.inc.php:110 libraries/server_links.inc.php:65 -#: server_privileges.php:111 server_privileges.php:1714 -#: server_privileges.php:2063 test/theme.php:116 +#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: server_privileges.php:110 server_privileges.php:1718 +#: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" msgstr "Hak Akses" @@ -1919,7 +1905,7 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1847 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1806 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -1927,8 +1913,8 @@ msgstr "" "Kemungkinan hanya perkiraan saja. Lihat [a@./Documentation." "html#faq3_11@Dokumentasi]FAQ 3.11[/a]" -#: libraries/db_structure.lib.php:60 server_databases.php:141 -#: tbl_printview.php:334 tbl_structure.php:681 +#: libraries/db_structure.lib.php:60 server_databases.php:139 +#: tbl_printview.php:333 tbl_structure.php:679 msgid "Overhead" msgstr "Kelebihan (Overhead)" @@ -1946,7 +1932,7 @@ msgstr "Server tidak menjawab" 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:358 tbl_structure.php:607 +#: libraries/dbi/mysql.dbi.lib.php:358 tbl_structure.php:605 msgid "Details..." msgstr "Rincian..." @@ -1956,22 +1942,22 @@ msgid "Change password" msgstr "Ubah Kata Sandi" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:807 +#: libraries/replication_gui.lib.php:347 server_privileges.php:806 msgid "No Password" msgstr "Kata Sandi belum ditetapkan" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1530 server_synchronize.php:1174 +#: libraries/replication_gui.lib.php:351 server_privileges.php:795 +#: server_privileges.php:799 server_privileges.php:810 +#: server_privileges.php:1534 server_synchronize.php:1173 msgid "Password" msgstr "Kata Sandi" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:815 server_privileges.php:818 +#: server_privileges.php:814 server_privileges.php:817 msgid "Re-type" msgstr "Ketik ulang" @@ -1994,8 +1980,8 @@ msgstr "Ciptakan database baru" msgid "Create" msgstr "Ciptakan" -#: libraries/display_create_database.lib.php:39 server_privileges.php:113 -#: server_privileges.php:1419 server_replication.php:34 +#: libraries/display_create_database.lib.php:39 server_privileges.php:112 +#: server_privileges.php:1423 server_replication.php:33 msgid "No Privileges" msgstr "Tidak ada Hak Akses (privilege)" @@ -2016,51 +2002,51 @@ msgstr "Ciptakan tabel baru pada database %s" msgid "Number of columns" msgstr "Jumlah baris per halaman" -#: libraries/display_export.lib.php:41 +#: libraries/display_export.lib.php:35 msgid "Could not load export plugins, please check your installation!" msgstr "Tidak dapat memuat plugin export, silahkan periksa instalasi Anda!" -#: libraries/display_export.lib.php:106 +#: libraries/display_export.lib.php:100 #, fuzzy, php-format #| msgid "Dump %s row(s) starting at record # %s" msgid "Dump %s row(s) starting at row # %s" msgstr "Dump %s baris bermula pada baris %s." -#: libraries/display_export.lib.php:114 +#: libraries/display_export.lib.php:108 msgid "Dump all rows" msgstr "Dump semua row" -#: libraries/display_export.lib.php:124 setup/lib/messages.inc.php:79 +#: libraries/display_export.lib.php:118 setup/lib/messages.inc.php:79 msgid "Save as file" msgstr "Kirimkan ke" -#: libraries/display_export.lib.php:133 +#: libraries/display_export.lib.php:127 #, php-format msgid "Save on server in %s directory" msgstr "Simpan pada server dalam direktori %s" -#: libraries/display_export.lib.php:141 setup/lib/messages.inc.php:87 +#: libraries/display_export.lib.php:135 setup/lib/messages.inc.php:87 msgid "Overwrite existing file(s)" msgstr "Timpahkan (Overwrite) file(s) yang ada" -#: libraries/display_export.lib.php:147 +#: libraries/display_export.lib.php:141 msgid "File name template" msgstr "Konvensi nama file" -#: libraries/display_export.lib.php:151 +#: libraries/display_export.lib.php:145 #, fuzzy msgid "server name" msgstr "Nama pengguna" -#: libraries/display_export.lib.php:154 +#: libraries/display_export.lib.php:148 msgid "database name" msgstr "" -#: libraries/display_export.lib.php:157 +#: libraries/display_export.lib.php:151 msgid "table name" msgstr "" -#: libraries/display_export.lib.php:161 +#: libraries/display_export.lib.php:155 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2068,39 +2054,39 @@ msgid "" "%3$s. Other text will be kept as is." msgstr "" -#: libraries/display_export.lib.php:202 +#: libraries/display_export.lib.php:196 msgid "remember template" msgstr "ingat konvensi" -#: libraries/display_export.lib.php:210 libraries/display_import.lib.php:177 +#: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 #: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 msgid "Character set of the file:" msgstr "Penyusunan karakter dalam file:" -#: libraries/display_export.lib.php:235 setup/lib/messages.inc.php:81 +#: libraries/display_export.lib.php:229 setup/lib/messages.inc.php:81 msgid "Compression" msgstr "Kompresi" -#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:196 -#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:529 -#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:574 -#: server_privileges.php:1867 server_processlist.php:74 +#: libraries/display_export.lib.php:234 libraries/display_import.lib.php:196 +#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:528 +#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:573 +#: server_privileges.php:1871 server_processlist.php:74 msgid "None" msgstr "tanpa" -#: libraries/display_export.lib.php:247 +#: libraries/display_export.lib.php:241 msgid "\"zipped\"" msgstr "Dikompress dengan Zip" -#: libraries/display_export.lib.php:253 +#: libraries/display_export.lib.php:247 msgid "\"gzipped\"" msgstr "Dikompress dengan GZip" -#: libraries/display_export.lib.php:259 +#: libraries/display_export.lib.php:253 msgid "\"bzipped\"" msgstr "\"Dikompress dengan BZip\"" -#: libraries/display_export.lib.php:274 libraries/export/sql.php:42 +#: libraries/display_export.lib.php:268 libraries/export/sql.php:42 #: libraries/import/sql.php:31 msgid "SQL compatibility mode" msgstr "" @@ -2135,13 +2121,13 @@ msgid "File uploads are not allowed on this server." msgstr "Upload file tidak diizinkan di server ini." #: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 -#: tbl_change.php:1024 +#: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "" "Direktori yang telah ditetapkan untuk meng-upload tidak dapat dihubungi" #: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 -#: tbl_change.php:1027 +#: tbl_change.php:925 msgid "web server upload directory" msgstr "direktori upload pada web-server" @@ -2220,43 +2206,43 @@ msgstr "Ukuran kertas" msgid "Language" msgstr "" -#: libraries/display_tbl.lib.php:303 +#: libraries/display_tbl.lib.php:302 #, php-format msgid "%d is not valid row number." msgstr "%d bukanlah nomor baris yang berlaku." -#: libraries/display_tbl.lib.php:309 +#: libraries/display_tbl.lib.php:308 #, fuzzy #| msgid "row(s) starting from record #" msgid "row(s) starting from row #" msgstr "baris dimulai dari rekord #" -#: libraries/display_tbl.lib.php:315 +#: libraries/display_tbl.lib.php:314 msgid "horizontal" msgstr "horisontal" -#: libraries/display_tbl.lib.php:316 +#: libraries/display_tbl.lib.php:315 msgid "horizontal (rotated headers)" msgstr "horisontal (rotated headers)" -#: libraries/display_tbl.lib.php:317 +#: libraries/display_tbl.lib.php:316 msgid "vertical" msgstr "vertikal" -#: libraries/display_tbl.lib.php:323 +#: libraries/display_tbl.lib.php:322 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "diatur dengan urutan %s dan mengulang header setelah %s sel." -#: libraries/display_tbl.lib.php:345 +#: libraries/display_tbl.lib.php:344 msgid "This operation could take a long time. Proceed anyway?" msgstr "Aktifitas ini membutuhkan waktu yang lama. Tetap melanjutkan?" -#: libraries/display_tbl.lib.php:511 +#: libraries/display_tbl.lib.php:510 msgid "Sort by key" msgstr "Urut berdasarkan kunci" -#: libraries/display_tbl.lib.php:554 libraries/export/codegen.php:38 +#: libraries/display_tbl.lib.php:553 libraries/export/codegen.php:38 #: libraries/export/csv.php:29 libraries/export/excel.php:34 #: libraries/export/htmlword.php:28 libraries/export/latex.php:32 #: libraries/export/mediawiki.php:21 libraries/export/ods.php:26 @@ -2266,101 +2252,101 @@ msgstr "Urut berdasarkan kunci" #: libraries/export/xlsx.php:26 libraries/export/xml.php:23 #: libraries/export/yaml.php:27 libraries/import.lib.php:1114 #: libraries/import.lib.php:1136 libraries/import/csv.php:31 -#: libraries/import/docsql.php:33 libraries/import/ldi.php:46 +#: libraries/import/docsql.php:32 libraries/import/ldi.php:46 #: libraries/import/ods.php:30 libraries/import/sql.php:19 #: libraries/import/xls.php:25 libraries/import/xlsx.php:25 -#: libraries/import/xml.php:25 tbl_select.php:264 tbl_structure.php:752 +#: libraries/import/xml.php:25 tbl_select.php:263 tbl_structure.php:750 #, fuzzy msgid "Options" msgstr "Operasi" -#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:569 +#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:568 msgid "Partial Texts" msgstr "Teks yang disingkat" -#: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:573 +#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:572 msgid "Full Texts" msgstr "Teks Penuh" -#: libraries/display_tbl.lib.php:586 +#: libraries/display_tbl.lib.php:585 #, fuzzy msgid "Relational key" msgstr "Skema Relational" -#: libraries/display_tbl.lib.php:587 +#: libraries/display_tbl.lib.php:586 #, fuzzy #| msgid "Relational schema" msgid "Relational display column" msgstr "Skema Relational" -#: libraries/display_tbl.lib.php:594 +#: libraries/display_tbl.lib.php:593 msgid "Show binary contents" msgstr "" -#: libraries/display_tbl.lib.php:596 +#: libraries/display_tbl.lib.php:595 msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:598 +#: libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "" -#: libraries/display_tbl.lib.php:606 pmd_general.php:140 tbl_change.php:312 -#: tbl_change.php:318 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:307 +#: tbl_change.php:313 msgid "Hide" msgstr "" -#: libraries/display_tbl.lib.php:606 libraries/relation.lib.php:122 -#: libraries/tbl_properties.inc.php:143 transformation_overview.php:46 +#: libraries/display_tbl.lib.php:605 libraries/relation.lib.php:117 +#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46 msgid "Browser transformation" msgstr "Transformasi Browser" -#: libraries/display_tbl.lib.php:1125 libraries/display_tbl.lib.php:1129 -#: libraries/display_tbl.lib.php:1131 +#: libraries/display_tbl.lib.php:1124 libraries/display_tbl.lib.php:1128 +#: libraries/display_tbl.lib.php:1130 msgid "Execute bookmarked query" msgstr "Eksekusikan pencarian dengan mengikuti penunjuk halaman" -#: libraries/display_tbl.lib.php:1144 libraries/display_tbl.lib.php:1156 +#: libraries/display_tbl.lib.php:1143 libraries/display_tbl.lib.php:1155 msgid "The row has been deleted" msgstr "Baris telah dihapus" -#: libraries/display_tbl.lib.php:1183 libraries/display_tbl.lib.php:2055 +#: libraries/display_tbl.lib.php:1182 libraries/display_tbl.lib.php:2014 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "Tutup" -#: libraries/display_tbl.lib.php:1933 +#: libraries/display_tbl.lib.php:1892 msgid "in query" msgstr "dalam susunan pemeriksaan" -#: libraries/display_tbl.lib.php:1951 +#: libraries/display_tbl.lib.php:1910 msgid "Showing rows" msgstr "Tampilan baris" -#: libraries/display_tbl.lib.php:1961 +#: libraries/display_tbl.lib.php:1920 msgid "total" msgstr "jumlah" -#: libraries/display_tbl.lib.php:1969 sql.php:523 +#: libraries/display_tbl.lib.php:1928 sql.php:522 #, php-format msgid "Query took %01.4f sec" msgstr "pencarian membutuhkan waktu %01.4f detik" -#: libraries/display_tbl.lib.php:2088 libraries/mult_submits.inc.php:112 -#: querywindow.php:115 querywindow.php:119 querywindow.php:122 -#: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:469 +#: libraries/display_tbl.lib.php:2047 libraries/mult_submits.inc.php:112 +#: querywindow.php:114 querywindow.php:118 querywindow.php:121 +#: tbl_structure.php:23 tbl_structure.php:148 tbl_structure.php:467 msgid "Change" msgstr "Ubah" -#: libraries/display_tbl.lib.php:2158 +#: libraries/display_tbl.lib.php:2117 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2186 +#: libraries/display_tbl.lib.php:2145 msgid "Print view (with full texts)" msgstr "Pandangan cetak (dengan teks lengkap)" -#: libraries/display_tbl.lib.php:2359 +#: libraries/display_tbl.lib.php:2318 msgid "Link not found" msgstr "Link tidak ditemukan" @@ -2415,9 +2401,9 @@ msgstr "Status dari InnoDB" msgid "Buffer Pool Usage" msgstr "Penggunaan penampungan Buffer" -#: libraries/engines/innodb.lib.php:168 server_databases.php:136 -#: server_databases.php:304 server_status.php:524 server_status.php:585 -#: server_status.php:606 tbl_printview.php:349 tbl_structure.php:695 +#: libraries/engines/innodb.lib.php:168 server_databases.php:134 +#: server_databases.php:302 server_status.php:524 server_status.php:585 +#: server_status.php:606 tbl_printview.php:348 tbl_structure.php:693 msgid "Total" msgstr "Jumlah" @@ -2555,6 +2541,78 @@ msgstr "" "Buffer yang dialokasikan bila menyortir indeks MyISAM pada saat REPAIR TABLE " "atau pada saat membuat indeks dengan cara CREATE INDEX atau cara ALTER TABLE." +#: libraries/engines/pbms.lib.php:31 +msgid "Garbage Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:32 +msgid "The percentage of garbage in a repository file before it is compacted." +msgstr "" + +#: libraries/engines/pbms.lib.php:36 libraries/replication_gui.lib.php:69 +#: server_synchronize.php:1161 +#, fuzzy +msgid "Port" +msgstr "Urutkan" + +#: libraries/engines/pbms.lib.php:37 +msgid "" +"The port for the PBMS stream-based communications. Setting this value to 0 " +"will disable HTTP communication with the daemon." +msgstr "" + +#: libraries/engines/pbms.lib.php:41 +msgid "Repository Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:42 +msgid "" +"The maximum size of a BLOB repository file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:46 +msgid "Temp Blob Timeout" +msgstr "" + +#: libraries/engines/pbms.lib.php:47 +msgid "" +"The timeout, in seconds, for temporary BLOBs. Uploaded BLOB data is removed " +"after this time, unless they are referenced by a record in the database." +msgstr "" + +#: libraries/engines/pbms.lib.php:51 +msgid "Temp Log Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:52 +msgid "" +"The maximum size of a temporary BLOB log file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:56 +msgid "Max Keep Alive" +msgstr "" + +#: libraries/engines/pbms.lib.php:57 +msgid "" +"The timeout for inactive connection with the keep-alive flag set. After this " +"time the connection will be closed. The time-out is in milliseconds (1/1000)." +msgstr "" + +#: libraries/engines/pbms.lib.php:61 +msgid "Metadata Headers" +msgstr "" + +#: libraries/engines/pbms.lib.php:62 +msgid "" +"A \":\" delimited list of metadata headers to be used to initialize the " +"pbms_metadata_header table when a database is created." +msgstr "" + #: libraries/engines/pbxt.lib.php:22 msgid "Index cache size" msgstr "" @@ -2679,7 +2737,7 @@ msgid "" msgstr "" #: libraries/export/codegen.php:36 setup/lib/messages.inc.php:85 -#: tbl_printview.php:374 tbl_structure.php:736 +#: tbl_printview.php:373 tbl_structure.php:734 msgid "Format" msgstr "Format" @@ -2750,9 +2808,9 @@ msgstr "Microsoft Word 2000" #: libraries/export/htmlword.php:23 libraries/export/latex.php:59 #: libraries/export/latex.php:205 libraries/export/odt.php:47 #: libraries/export/sql.php:105 libraries/export/sql.php:865 -#: libraries/export/texytext.php:27 server_databases.php:126 -#: server_privileges.php:576 server_replication.php:315 tbl_printview.php:315 -#: tbl_structure.php:664 +#: libraries/export/texytext.php:27 server_databases.php:124 +#: server_privileges.php:575 server_replication.php:314 tbl_printview.php:314 +#: tbl_structure.php:662 msgid "Data" msgstr "Data" @@ -2803,13 +2861,13 @@ msgid "Label key" msgstr "Kunci nama" #: libraries/export/latex.php:46 libraries/export/odt.php:34 -#: libraries/export/sql.php:90 tbl_relation.php:398 +#: libraries/export/sql.php:90 tbl_relation.php:396 msgid "Relations" msgstr "Tabel Relasi" #: libraries/export/latex.php:52 libraries/export/odt.php:40 #: libraries/export/odt.php:317 libraries/export/sql.php:94 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "Tipe MIME" @@ -2817,10 +2875,10 @@ msgstr "Tipe MIME" #: libraries/export/xml.php:101 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1529 server_privileges.php:2061 -#: server_processlist.php:54 server_synchronize.php:1158 +#: libraries/replication_gui.lib.php:331 server_privileges.php:730 +#: server_privileges.php:733 server_privileges.php:789 +#: server_privileges.php:1533 server_privileges.php:2065 +#: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "Host" @@ -3012,8 +3070,8 @@ msgstr "Ekspor views" msgid "Export contents" msgstr "Ekspor isi" -#: libraries/footer.inc.php:182 libraries/footer.inc.php:193 -#: libraries/footer.inc.php:196 +#: libraries/footer.inc.php:180 libraries/footer.inc.php:191 +#: libraries/footer.inc.php:194 msgid "Open new phpMyAdmin window" msgstr "" @@ -3030,7 +3088,7 @@ msgstr "Hasil SQL" msgid "Generated by" msgstr "Diciptakan oleh" -#: libraries/import.lib.php:151 sql.php:519 tbl_change.php:180 +#: libraries/import.lib.php:151 sql.php:518 tbl_change.php:175 #: 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)." @@ -3088,7 +3146,7 @@ msgstr "" msgid "Column names in first row" msgstr "" -#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:501 +#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:500 #: view_create.php:147 msgid "Column names" msgstr "Nama kolom" @@ -3114,12 +3172,12 @@ msgstr "" msgid "Invalid column count in CSV input on line %d." msgstr "" -#: libraries/import/docsql.php:28 +#: libraries/import/docsql.php:27 msgid "DocSQL" msgstr "DocSQL" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 -#: server_synchronize.php:427 server_synchronize.php:870 +#: libraries/import/docsql.php:30 libraries/tbl_properties.inc.php:616 +#: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "Nama tabel" @@ -3177,26 +3235,26 @@ msgstr "tanpa" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:512 -#: tbl_structure.php:28 tbl_structure.php:152 tbl_structure.php:156 -#: tbl_structure.php:472 +#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:511 +#: tbl_structure.php:27 tbl_structure.php:151 tbl_structure.php:155 +#: tbl_structure.php:470 msgid "Primary" msgstr "Kunci Utama" #: libraries/mult_submits.inc.php:97 libraries/tbl_properties.inc.php:115 -#: libraries/tbl_properties.inc.php:524 tbl_printview.php:324 -#: tbl_structure.php:30 tbl_structure.php:153 tbl_structure.php:157 -#: tbl_structure.php:474 tbl_structure.php:672 +#: libraries/tbl_properties.inc.php:523 tbl_printview.php:323 +#: tbl_structure.php:29 tbl_structure.php:152 tbl_structure.php:156 +#: tbl_structure.php:472 tbl_structure.php:670 msgid "Index" msgstr "Indeks" -#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:530 -#: tbl_structure.php:34 tbl_structure.php:155 tbl_structure.php:159 -#: tbl_structure.php:477 +#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:529 +#: tbl_structure.php:33 tbl_structure.php:154 tbl_structure.php:158 +#: tbl_structure.php:475 msgid "Fulltext" msgstr "Teks penuh" -#: libraries/mult_submits.inc.php:434 tbl_replace.php:330 +#: libraries/mult_submits.inc.php:433 tbl_replace.php:330 msgid "No change" msgstr "Tidak ada perubahan" @@ -3204,190 +3262,190 @@ msgstr "Tidak ada perubahan" msgid "Charset" msgstr "Perangkat karakter (Charset)" -#: libraries/mysql_charsets.lib.php:210 libraries/mysql_charsets.lib.php:411 -#: tbl_change.php:515 +#: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 +#: tbl_change.php:510 msgid "Binary" msgstr "Binari" -#: libraries/mysql_charsets.lib.php:222 +#: libraries/mysql_charsets.lib.php:214 msgid "Bulgarian" msgstr "Bahasa Bulgaria" -#: libraries/mysql_charsets.lib.php:226 libraries/mysql_charsets.lib.php:351 +#: libraries/mysql_charsets.lib.php:218 libraries/mysql_charsets.lib.php:343 msgid "Simplified Chinese" msgstr "Bahasa Cina sederhana" -#: libraries/mysql_charsets.lib.php:228 libraries/mysql_charsets.lib.php:371 +#: libraries/mysql_charsets.lib.php:220 libraries/mysql_charsets.lib.php:363 msgid "Traditional Chinese" msgstr "Bahasa Cina tradisional" -#: libraries/mysql_charsets.lib.php:232 libraries/mysql_charsets.lib.php:418 +#: libraries/mysql_charsets.lib.php:224 libraries/mysql_charsets.lib.php:410 msgid "case-insensitive" msgstr "peka terhadap huruf besar/kecil" -#: libraries/mysql_charsets.lib.php:235 libraries/mysql_charsets.lib.php:420 +#: libraries/mysql_charsets.lib.php:227 libraries/mysql_charsets.lib.php:412 msgid "case-sensitive" msgstr "tidak peka terhadap huruf besar/kecil" -#: libraries/mysql_charsets.lib.php:238 +#: libraries/mysql_charsets.lib.php:230 msgid "Croatian" msgstr "Bahasa Kroatia" -#: libraries/mysql_charsets.lib.php:241 +#: libraries/mysql_charsets.lib.php:233 msgid "Czech" msgstr "Bahasa Ceko" -#: libraries/mysql_charsets.lib.php:244 +#: libraries/mysql_charsets.lib.php:236 msgid "Danish" msgstr "Bahasa Denmark" -#: libraries/mysql_charsets.lib.php:247 +#: libraries/mysql_charsets.lib.php:239 msgid "English" msgstr "Bahasa Ingris" -#: libraries/mysql_charsets.lib.php:250 +#: libraries/mysql_charsets.lib.php:242 msgid "Esperanto" msgstr "Bahasa Esperanto" -#: libraries/mysql_charsets.lib.php:253 +#: libraries/mysql_charsets.lib.php:245 msgid "Estonian" msgstr "Bahasa Estonia" -#: libraries/mysql_charsets.lib.php:256 libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:248 libraries/mysql_charsets.lib.php:251 msgid "German" msgstr "Bahasa Jerman" -#: libraries/mysql_charsets.lib.php:256 +#: libraries/mysql_charsets.lib.php:248 msgid "dictionary" msgstr "kamus" -#: libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:251 msgid "phone book" msgstr "buku telpon" -#: libraries/mysql_charsets.lib.php:262 +#: libraries/mysql_charsets.lib.php:254 msgid "Hungarian" msgstr "Bahasa Hongaria" -#: libraries/mysql_charsets.lib.php:265 +#: libraries/mysql_charsets.lib.php:257 msgid "Icelandic" msgstr "Islandia" -#: libraries/mysql_charsets.lib.php:268 libraries/mysql_charsets.lib.php:358 +#: libraries/mysql_charsets.lib.php:260 libraries/mysql_charsets.lib.php:350 msgid "Japanese" msgstr "Bahasa Jepang" -#: libraries/mysql_charsets.lib.php:271 +#: libraries/mysql_charsets.lib.php:263 msgid "Latvian" msgstr "Latvia" -#: libraries/mysql_charsets.lib.php:274 +#: libraries/mysql_charsets.lib.php:266 msgid "Lithuanian" msgstr "Bahasa Lithuania" -#: libraries/mysql_charsets.lib.php:277 libraries/mysql_charsets.lib.php:380 +#: libraries/mysql_charsets.lib.php:269 libraries/mysql_charsets.lib.php:372 msgid "Korean" msgstr "Bahasa Korea" -#: libraries/mysql_charsets.lib.php:280 +#: libraries/mysql_charsets.lib.php:272 msgid "Persian" msgstr "Persia" -#: libraries/mysql_charsets.lib.php:283 +#: libraries/mysql_charsets.lib.php:275 msgid "Polish" msgstr "Polandia" -#: libraries/mysql_charsets.lib.php:286 libraries/mysql_charsets.lib.php:334 +#: libraries/mysql_charsets.lib.php:278 libraries/mysql_charsets.lib.php:326 msgid "West European" msgstr "Eropa Barat" -#: libraries/mysql_charsets.lib.php:289 +#: libraries/mysql_charsets.lib.php:281 msgid "Romanian" msgstr "Romania" -#: libraries/mysql_charsets.lib.php:292 +#: libraries/mysql_charsets.lib.php:284 msgid "Slovak" msgstr "Slovakia" -#: libraries/mysql_charsets.lib.php:295 +#: libraries/mysql_charsets.lib.php:287 msgid "Slovenian" msgstr "Slovenia" -#: libraries/mysql_charsets.lib.php:298 +#: libraries/mysql_charsets.lib.php:290 msgid "Spanish" msgstr "Bahasa Spanyol" -#: libraries/mysql_charsets.lib.php:301 +#: libraries/mysql_charsets.lib.php:293 msgid "Traditional Spanish" msgstr "Spanyol tradisional" -#: libraries/mysql_charsets.lib.php:304 libraries/mysql_charsets.lib.php:401 +#: libraries/mysql_charsets.lib.php:296 libraries/mysql_charsets.lib.php:393 msgid "Swedish" msgstr "Bahasa Swedia" -#: libraries/mysql_charsets.lib.php:307 libraries/mysql_charsets.lib.php:404 +#: libraries/mysql_charsets.lib.php:299 libraries/mysql_charsets.lib.php:396 msgid "Thai" msgstr "Bahasa Thailand" -#: libraries/mysql_charsets.lib.php:310 libraries/mysql_charsets.lib.php:398 +#: libraries/mysql_charsets.lib.php:302 libraries/mysql_charsets.lib.php:390 msgid "Turkish" msgstr "Bahasa Turki" -#: libraries/mysql_charsets.lib.php:313 libraries/mysql_charsets.lib.php:395 +#: libraries/mysql_charsets.lib.php:305 libraries/mysql_charsets.lib.php:387 msgid "Ukrainian" msgstr "Bahasa Ukrainia" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 msgid "Unicode" msgstr "Unikode" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 -#: libraries/mysql_charsets.lib.php:334 libraries/mysql_charsets.lib.php:341 -#: libraries/mysql_charsets.lib.php:363 libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 +#: libraries/mysql_charsets.lib.php:326 libraries/mysql_charsets.lib.php:333 +#: libraries/mysql_charsets.lib.php:355 libraries/mysql_charsets.lib.php:366 msgid "multilingual" msgstr "berbagai bahasa" -#: libraries/mysql_charsets.lib.php:341 +#: libraries/mysql_charsets.lib.php:333 msgid "Central European" msgstr "Eropa Tengah" -#: libraries/mysql_charsets.lib.php:346 +#: libraries/mysql_charsets.lib.php:338 msgid "Russian" msgstr "Bahasa Rusia" -#: libraries/mysql_charsets.lib.php:363 +#: libraries/mysql_charsets.lib.php:355 msgid "Baltic" msgstr "Bahasa Baltik" -#: libraries/mysql_charsets.lib.php:368 +#: libraries/mysql_charsets.lib.php:360 msgid "Armenian" msgstr "Bahasa Armenia" -#: libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:366 msgid "Cyrillic" msgstr "Bahasa Kirilia" -#: libraries/mysql_charsets.lib.php:377 +#: libraries/mysql_charsets.lib.php:369 msgid "Arabic" msgstr "Bahasa Arab" -#: libraries/mysql_charsets.lib.php:383 +#: libraries/mysql_charsets.lib.php:375 msgid "Hebrew" msgstr "Bahasa Yahudi" -#: libraries/mysql_charsets.lib.php:386 +#: libraries/mysql_charsets.lib.php:378 msgid "Georgian" msgstr "Georgia" -#: libraries/mysql_charsets.lib.php:389 +#: libraries/mysql_charsets.lib.php:381 msgid "Greek" msgstr "Bahasa Yunani" -#: libraries/mysql_charsets.lib.php:392 +#: libraries/mysql_charsets.lib.php:384 msgid "Czech-Slovak" msgstr "Cecko-Slovakia" -#: libraries/mysql_charsets.lib.php:407 libraries/mysql_charsets.lib.php:414 +#: libraries/mysql_charsets.lib.php:399 libraries/mysql_charsets.lib.php:406 msgid "unknown" msgstr "tidak diketahui" @@ -3413,69 +3471,69 @@ msgstr "Jendela Pencarian" msgid "This format has no options" msgstr "Format ini tidak ada pilihannya" -#: libraries/relation.lib.php:82 +#: libraries/relation.lib.php:77 msgid "not OK" msgstr "tidak oke" -#: libraries/relation.lib.php:86 pmd_general.php:339 +#: libraries/relation.lib.php:81 pmd_general.php:339 msgid "OK" msgstr "Oke" -#: libraries/relation.lib.php:87 +#: libraries/relation.lib.php:82 msgid "Enabled" msgstr "Aktif" -#: libraries/relation.lib.php:110 +#: libraries/relation.lib.php:105 msgid "Display Features" msgstr "Tampilkan ciri-ciri" -#: libraries/relation.lib.php:116 +#: libraries/relation.lib.php:111 msgid "Creation of PDFs" msgstr "Penciptaan PDF" -#: libraries/relation.lib.php:120 +#: libraries/relation.lib.php:115 msgid "Displaying Column Comments" msgstr "Tampilkan komentar kolom" -#: libraries/relation.lib.php:125 +#: libraries/relation.lib.php:120 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "Mohon belajari dokumentasi untuk mengetahui cara meng-update tabel " "Column_comments Anda" -#: libraries/relation.lib.php:130 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 msgid "Bookmarked SQL query" msgstr "Ingat pada pencarian SQL " -#: libraries/relation.lib.php:134 querywindow.php:99 querywindow.php:207 +#: libraries/relation.lib.php:129 querywindow.php:98 querywindow.php:205 msgid "SQL history" msgstr "Sejarah SQL" -#: libraries/relation.lib.php:146 +#: libraries/relation.lib.php:141 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:148 +#: libraries/relation.lib.php:143 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" -#: libraries/relation.lib.php:149 +#: libraries/relation.lib.php:144 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:150 +#: libraries/relation.lib.php:145 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:151 +#: libraries/relation.lib.php:146 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1158 +#: libraries/relation.lib.php:1153 msgid "no description" msgstr "tanpa keterangan" @@ -3483,7 +3541,7 @@ msgstr "tanpa keterangan" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:53 server_replication.php:346 +#: libraries/replication_gui.lib.php:53 server_replication.php:345 msgid "Change or reconfigure master server" msgstr "" @@ -3495,17 +3553,12 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:711 -#: server_privileges.php:714 server_privileges.php:721 -#: server_synchronize.php:1170 +#: libraries/replication_gui.lib.php:261 server_privileges.php:710 +#: server_privileges.php:713 server_privileges.php:720 +#: server_synchronize.php:1169 msgid "User name" msgstr "Nama pengguna" -#: libraries/replication_gui.lib.php:69 server_synchronize.php:1162 -#, fuzzy -msgid "Port" -msgstr "Urutkan" - #: libraries/replication_gui.lib.php:105 msgid "Master status" msgstr "" @@ -3520,8 +3573,8 @@ msgid "Variable" msgstr "Variabel" #: libraries/replication_gui.lib.php:117 server_status.php:737 -#: tbl_change.php:322 tbl_printview.php:368 tbl_select.php:137 -#: tbl_structure.php:728 +#: tbl_change.php:317 tbl_printview.php:367 tbl_select.php:136 +#: tbl_structure.php:726 msgid "Value" msgstr "Nilai" @@ -3535,38 +3588,38 @@ msgid "" "this list." msgstr "" -#: libraries/replication_gui.lib.php:242 server_replication.php:193 +#: libraries/replication_gui.lib.php:242 server_replication.php:192 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:256 server_privileges.php:716 +#: libraries/replication_gui.lib.php:256 server_privileges.php:715 msgid "Any user" msgstr "Setiap pengguna" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1920 server_privileges.php:1950 +#: libraries/replication_gui.lib.php:348 server_privileges.php:716 +#: server_privileges.php:783 server_privileges.php:807 +#: server_privileges.php:1924 server_privileges.php:1954 msgid "Use text field" msgstr "Gunakan text field" -#: libraries/replication_gui.lib.php:304 server_privileges.php:764 +#: libraries/replication_gui.lib.php:304 server_privileges.php:763 msgid "Any host" msgstr "Setiap host" -#: libraries/replication_gui.lib.php:308 server_privileges.php:768 +#: libraries/replication_gui.lib.php:308 server_privileges.php:767 msgid "Local" msgstr "Lokal" -#: libraries/replication_gui.lib.php:314 server_privileges.php:773 +#: libraries/replication_gui.lib.php:314 server_privileges.php:772 msgid "This Host" msgstr "Host yang ini" -#: libraries/replication_gui.lib.php:320 server_privileges.php:779 +#: libraries/replication_gui.lib.php:320 server_privileges.php:778 msgid "Use Host Table" msgstr "Gunakan Host Table" -#: libraries/replication_gui.lib.php:333 server_privileges.php:792 +#: libraries/replication_gui.lib.php:333 server_privileges.php:791 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3593,8 +3646,8 @@ msgstr "" msgid "Servers" msgstr "Server" -#: libraries/server_links.inc.php:52 server_engines.php:111 -#: server_engines.php:115 server_status.php:414 test/theme.php:104 +#: libraries/server_links.inc.php:52 server_engines.php:125 +#: server_engines.php:129 server_status.php:414 test/theme.php:104 msgid "Variables" msgstr "Variabel" @@ -3615,12 +3668,12 @@ msgstr "Log binari" msgid "Processes" msgstr "Proses Aktif" -#: libraries/server_links.inc.php:91 server_synchronize.php:1091 -#: server_synchronize.php:1099 +#: libraries/server_links.inc.php:91 server_synchronize.php:1090 +#: server_synchronize.php:1098 msgid "Synchronize" msgstr "" -#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1109 +#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1108 msgid "Source database" msgstr "Database cumber" @@ -3638,7 +3691,7 @@ msgstr "" msgid "Difference" msgstr "Perbedaan" -#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1111 +#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1110 msgid "Target database" msgstr "Database target" @@ -3658,11 +3711,11 @@ msgstr "Melaksanakan perintah SQL pada database %s" msgid "Columns" msgstr "Nama kolom" -#: libraries/sql_query_form.lib.php:342 sql.php:664 sql.php:665 sql.php:682 +#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "Simpan pencarian SQL ini" -#: libraries/sql_query_form.lib.php:349 sql.php:676 +#: libraries/sql_query_form.lib.php:349 sql.php:669 msgid "Let every user access this bookmark" msgstr "Izinkan semua pengguna untuk mengakses simpanan ini" @@ -3760,12 +3813,12 @@ msgstr "" "Pengesahan SQL tidak dapat disahkan. Mohon periksa kembali ekstension PHP " "yang diperlukan seperti yang tercatat dalam %sdokumentasi%s." -#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:139 -#: libraries/tbl_links.inc.php:140 +#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 +#: libraries/tbl_links.inc.php:139 msgid "Table seems to be empty!" msgstr "" -#: libraries/tbl_links.inc.php:148 +#: libraries/tbl_links.inc.php:147 #, php-format msgid "Tracking of %s.%s is activated." msgstr "Pelacakan dari %s.%s diaktifkan" @@ -3800,12 +3853,12 @@ msgstr "" "Untuk nilai (value) default cukup diisi single value saja tanpa menggunakan " "backslash, escaping atau quotes dan dengan menggunakan format sbb.: a" -#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1263 -#: pdf_schema.php:1284 tbl_printview.php:142 tbl_structure.php:179 +#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1262 +#: pdf_schema.php:1283 tbl_printview.php:141 tbl_structure.php:178 msgid "Attributes" msgstr "Atribut" -#: libraries/tbl_properties.inc.php:136 +#: libraries/tbl_properties.inc.php:135 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -3814,11 +3867,11 @@ msgstr "" "Untuk tampilan daftar tentang pilihan transformasi dan transformasi jenis " "MIME-nya, silakan klik pada %sDeskripsi Transformasi%s" -#: libraries/tbl_properties.inc.php:144 +#: libraries/tbl_properties.inc.php:143 msgid "Transformation options" msgstr "Pilihan transformasi" -#: libraries/tbl_properties.inc.php:145 +#: libraries/tbl_properties.inc.php:144 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
                            If you ever need to put a backslash (\"\\\") or a single " @@ -3830,18 +3883,18 @@ msgstr "" "Quote (\"'\") diperlukan di antara nilai tersebut, mohon gunakan tanda " "Backslash (contoh: '\\\\xyz' atau 'a\\'b')." -#: libraries/tbl_properties.inc.php:392 +#: libraries/tbl_properties.inc.php:391 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "tanpa" -#: libraries/tbl_properties.inc.php:393 +#: libraries/tbl_properties.inc.php:392 msgid "As defined:" msgstr "Seperti yang didefinisikan" -#: libraries/tbl_properties.inc.php:579 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:578 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
                            Please ask the " @@ -3850,29 +3903,29 @@ msgstr "" "Tidak ada deskripsi untuk transformasi ini.
                            Mohon ditanyakan kepada " "penulis tentang artinya %s." -#: libraries/tbl_properties.inc.php:725 server_engines.php:57 -#: tbl_operations.php:354 +#: libraries/tbl_properties.inc.php:724 server_engines.php:56 +#: tbl_operations.php:352 msgid "Storage Engine" msgstr "Mesin Penyimpan" -#: libraries/tbl_properties.inc.php:754 +#: libraries/tbl_properties.inc.php:753 msgid "PARTITION definition" msgstr "" -#: libraries/tbl_properties.inc.php:775 pdf_pages.php:502 +#: libraries/tbl_properties.inc.php:774 pdf_pages.php:501 #: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214 -#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1124 tbl_indexes.php:247 -#: tbl_relation.php:565 +#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1022 tbl_indexes.php:246 +#: tbl_relation.php:563 msgid "Save" msgstr "Simpan" -#: libraries/tbl_properties.inc.php:779 tbl_structure.php:541 +#: libraries/tbl_properties.inc.php:778 tbl_structure.php:539 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "Menambahkan %s field(s)" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:535 +#: libraries/tbl_properties.inc.php:782 tbl_structure.php:533 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -4061,8 +4114,8 @@ msgstr "" msgid "Custom color" msgstr "Warna kustom" -#: main.php:162 pdf_pages.php:362 setup/lib/FormDisplay.tpl.php:216 -#: tbl_change.php:1173 +#: main.php:162 pdf_pages.php:361 setup/lib/FormDisplay.tpl.php:216 +#: tbl_change.php:1071 msgid "Reset" msgstr "Reset" @@ -4070,8 +4123,8 @@ msgstr "Reset" msgid "Protocol version" msgstr "" -#: main.php:188 server_privileges.php:1381 server_privileges.php:1528 -#: server_privileges.php:1642 server_privileges.php:2060 +#: main.php:188 server_privileges.php:1385 server_privileges.php:1532 +#: server_privileges.php:1646 server_privileges.php:2064 #: server_processlist.php:53 msgid "User" msgstr "Pengguna" @@ -4161,21 +4214,30 @@ msgstr "" "di direktori phpMyAdmin Anda. Anda harus menghapus nya setelah phpMyAdmin di " "konfigurasi." -#: main.php:330 +#: main.php:314 +#, php-format +msgid "" +"The additional features for working with linked tables have been " +"deactivated. To find out why click %shere%s." +msgstr "" +"Fasilitas penambahan untuk bekerja dengan tabel yang di-link di nonaktifkan. " +"Untuk mengetahui sebabnya silakan klik %sdisini%s." + +#: main.php:329 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:345 +#: main.php:344 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: main.php:357 +#: main.php:356 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -4186,69 +4248,69 @@ msgstr "" msgid "Reload navigation frame" msgstr "" -#: navigation.php:204 server_databases.php:370 server_synchronize.php:1190 +#: navigation.php:203 server_databases.php:368 server_synchronize.php:1189 msgid "No databases" msgstr "Database tidak ditemukan" -#: navigation.php:298 +#: navigation.php:297 msgid "Filter" msgstr "" -#: navigation.php:299 setup/frames/index.inc.php:218 +#: navigation.php:298 setup/frames/index.inc.php:218 #: setup/lib/messages.inc.php:41 #, fuzzy msgid "Clear" msgstr "Kalender" -#: navigation.php:330 navigation.php:331 +#: navigation.php:329 navigation.php:330 #, fuzzy #| msgid "Create table" msgctxt "short form" msgid "Create table" msgstr "Buat tabel" -#: navigation.php:333 navigation.php:495 +#: navigation.php:332 navigation.php:494 msgid "Please select a database" msgstr "Silakan pilih database" -#: pdf_pages.php:40 pdf_pages.php:46 pdf_pages.php:52 pdf_pages.php:57 +#: pdf_pages.php:39 pdf_pages.php:45 pdf_pages.php:51 pdf_pages.php:56 #, php-format msgid "%s table not found or not set in %s" msgstr "%s tabel tidak ditemukan atau tidak diset di %s" -#: pdf_pages.php:265 +#: pdf_pages.php:264 msgid "Please choose a page to edit" msgstr "Silakan pilih halaman untuk diubah" -#: pdf_pages.php:303 pmd_pdf.php:113 +#: pdf_pages.php:302 pmd_pdf.php:111 msgid "Create a page" msgstr "Ciptakan halaman baru" -#: pdf_pages.php:309 +#: pdf_pages.php:308 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Halaman no.:" -#: pdf_pages.php:313 +#: pdf_pages.php:312 #, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "Layout otomatis" -#: pdf_pages.php:315 +#: pdf_pages.php:314 msgid "Internal relations" msgstr "Relasi internal" -#: pdf_pages.php:338 +#: pdf_pages.php:337 msgid "Select Tables" msgstr "Pilih tabel" -#: pdf_pages.php:361 +#: pdf_pages.php:360 msgid "Toggle scratchboard" msgstr "pindah buku catatan (Scratchboard)" -#: pdf_pages.php:524 +#: pdf_pages.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -4256,37 +4318,37 @@ msgstr "" "Halaman ini berisi referensi tentang tabel yang sudah tidak ada. Apakah Anda " "ingin hapus referensi yang bersangkutan?" -#: pdf_schema.php:635 +#: pdf_schema.php:634 #, fuzzy, php-format #| msgid "The \"%s\" table doesn't exist!" msgid "The %s table doesn't exist!" msgstr "Tabel \"%s\" tidak ditemukan!" -#: pdf_schema.php:671 +#: pdf_schema.php:670 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Silakan konfigurasikan koordinasi bagi tabel %s" -#: pdf_schema.php:994 +#: pdf_schema.php:993 #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" msgstr "Skema dari database \"%s\" - Halaman %s" -#: pdf_schema.php:1012 +#: pdf_schema.php:1011 msgid "No tables" msgstr "Tabel tidak ditemukan" -#: pdf_schema.php:1031 pdf_schema.php:1140 +#: pdf_schema.php:1030 pdf_schema.php:1139 msgid "Relational schema" msgstr "Skema Relational" -#: pdf_schema.php:1115 +#: pdf_schema.php:1114 msgid "Table of contents" msgstr "Daftar Isi" -#: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:145 -#: tbl_structure.php:182 tbl_tracking.php:277 +#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 +#: tbl_structure.php:181 tbl_tracking.php:272 msgid "Extra" msgstr "Ekstra" @@ -4298,7 +4360,7 @@ msgstr "" msgid "Save position" msgstr "" -#: pmd_general.php:70 server_synchronize.php:428 server_synchronize.php:871 +#: pmd_general.php:70 server_synchronize.php:427 server_synchronize.php:870 msgid "Create table" msgstr "Buat tabel" @@ -4370,32 +4432,32 @@ msgid "" "appropriate column name." msgstr "" -#: pmd_pdf.php:62 +#: pmd_pdf.php:60 #, fuzzy msgid "Page has been created" msgstr "Tabel %s telah dihapus" -#: pmd_pdf.php:64 +#: pmd_pdf.php:62 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:84 +#: pmd_pdf.php:82 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:88 +#: pmd_pdf.php:86 msgid "recommended" msgstr "" -#: pmd_pdf.php:93 +#: pmd_pdf.php:91 msgid "to/from page" msgstr "" -#: querywindow.php:94 +#: querywindow.php:93 msgid "Import files" msgstr "Impor file" -#: querywindow.php:105 +#: querywindow.php:104 msgid "All" msgstr "Semua" @@ -4442,65 +4504,65 @@ msgstr "Informasi" msgid "Character Sets and Collations" msgstr "Penyusunan karakter dan tabel urutan" -#: server_databases.php:51 +#: server_databases.php:49 msgid "No databases selected." msgstr "Database belum dipilih." -#: server_databases.php:62 +#: server_databases.php:60 #, php-format msgid "%s databases have been dropped successfully." msgstr "Sukses menghapus database %s." -#: server_databases.php:87 +#: server_databases.php:85 msgid "Databases statistics" msgstr "Statistik Database" -#: server_databases.php:116 server_status.php:370 +#: server_databases.php:114 server_status.php:370 #: setup/lib/messages.inc.php:114 msgid "Tables" msgstr "Tabel" -#: server_databases.php:194 server_replication.php:180 -#: server_replication.php:208 +#: server_databases.php:192 server_replication.php:179 +#: server_replication.php:207 msgid "Master replication" msgstr "" -#: server_databases.php:196 server_replication.php:247 +#: server_databases.php:194 server_replication.php:246 msgid "Slave replication" msgstr "" -#: server_databases.php:229 +#: server_databases.php:227 #, fuzzy msgid "Jump to database" msgstr "Database tidak ditemukan" -#: server_databases.php:266 +#: server_databases.php:264 msgid "Not replicated" msgstr "" -#: server_databases.php:272 +#: server_databases.php:270 #, fuzzy msgid "Replicated" msgstr "Tabel Relasi" -#: server_databases.php:288 +#: server_databases.php:286 #, php-format msgid "Check privileges for database "%s"." msgstr "Periksa hak-hak untuk database "%s"." -#: server_databases.php:292 server_databases.php:293 +#: server_databases.php:290 server_databases.php:291 msgid "Check Privileges" msgstr "Periksa hak-hak" -#: server_databases.php:357 server_databases.php:358 +#: server_databases.php:355 server_databases.php:356 msgid "Enable Statistics" msgstr "Menggiatkan Statistik" -#: server_databases.php:361 server_databases.php:362 +#: server_databases.php:359 server_databases.php:360 msgid "Disable Statistics" msgstr "Mencacatkan Statistik" -#: server_databases.php:365 +#: server_databases.php:363 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -4508,125 +4570,125 @@ msgstr "" "Perhatian: Menggiatkan statistik database dengan kemungkinan besar " "mengakibatkan traffic yang cukup tinggi antara webserver dan server MySQL." -#: server_engines.php:48 +#: server_engines.php:47 msgid "Storage Engines" msgstr "Mesin Penyimpan" -#: server_export.php:20 +#: server_export.php:18 msgid "View dump (schema) of databases" msgstr "Tampilkan Dump (skema) dari database" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:23 server_privileges.php:265 msgid "Includes all privileges except GRANT." msgstr "Menggunakan seluruh Hak Istimewa (Privileges) selain GRANT." -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:24 server_privileges.php:191 +#: server_privileges.php:514 msgid "Allows altering the structure of existing tables." msgstr "Mengizinkan untuk merubah struktur dari tabel yang ada." -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:25 server_privileges.php:207 +#: server_privileges.php:520 msgid "Allows altering and dropping stored routines." msgstr "Mengizinkan perubahan dan penghapusan dari Routines yang tersimpan." -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:26 server_privileges.php:183 +#: server_privileges.php:513 msgid "Allows creating new databases and tables." msgstr "Mengizinkan untuk menciptakan database dan tabel baru." -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:27 server_privileges.php:206 +#: server_privileges.php:519 msgid "Allows creating stored routines." msgstr "Mengizinkan penciptaan Routines yang akan disimpan." -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:513 msgid "Allows creating new tables." msgstr "Mengizinkan untuk menciptakan tabel baru." -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:29 server_privileges.php:194 +#: server_privileges.php:517 msgid "Allows creating temporary tables." msgstr "Mengizinkan untuk menciptakan tabel yang bersifat temporer." -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:30 server_privileges.php:208 +#: server_privileges.php:553 msgid "Allows creating, dropping and renaming user accounts." msgstr "Mengizinkan penciptaan, penghapusan dan perubahan account pengguna." -#: server_privileges.php:32 server_privileges.php:199 -#: server_privileges.php:203 server_privileges.php:526 -#: server_privileges.php:530 +#: server_privileges.php:31 server_privileges.php:198 +#: server_privileges.php:202 server_privileges.php:525 +#: server_privileges.php:529 msgid "Allows creating new views." msgstr "Mengizinkan untuk menciptakan pandangan baru." -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:32 server_privileges.php:182 +#: server_privileges.php:505 msgid "Allows deleting data." msgstr "Mengizinkan untuk hapus data." -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:33 server_privileges.php:184 +#: server_privileges.php:516 msgid "Allows dropping databases and tables." msgstr "Mengizinkan untuk hapus database dan tabel." -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:34 server_privileges.php:516 msgid "Allows dropping tables." msgstr "Mengizinkan untuk hapus tabel." -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:35 server_privileges.php:199 +#: server_privileges.php:533 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:36 server_privileges.php:209 +#: server_privileges.php:521 msgid "Allows executing stored routines." msgstr "Mengizinkan eksekusi Routines yang tersimpan." -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:37 server_privileges.php:188 +#: server_privileges.php:508 msgid "Allows importing data from and exporting data into files." msgstr "Mengizinkan untuk impor data dari file dan ekspor data kedalam file." -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:38 server_privileges.php:539 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Mengizinkan untuk menambah pengguna dan Hak Istimewa (Privileges) tanpa " "harus me-reload ulang tabel Hak Istimewa." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:515 msgid "Allows creating and dropping indexes." msgstr "Mengizinkan untuk menciptakan dan hapus Indeks." -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:40 server_privileges.php:180 +#: server_privileges.php:441 server_privileges.php:503 msgid "Allows inserting and replacing data." msgstr "Mengizinkan untuk tambah dan ganti data." -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:41 server_privileges.php:195 +#: server_privileges.php:548 msgid "Allows locking tables for the current thread." msgstr "Mengizinkan untuk mengunci tabel dalam Thread yang lagi berjalan." -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:42 server_privileges.php:645 +#: server_privileges.php:647 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Membatasi jumlah koneksi baru yang diperbolehkan untuk setiap pengguna dalam " "batas waktu satu jam." -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:43 server_privileges.php:633 +#: server_privileges.php:635 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Membatasi jumlah pencarian (Queries) yang diperbolehkan untuk setiap " "pengguna dalam batas waktu satu jam." -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:44 server_privileges.php:639 +#: server_privileges.php:641 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -4634,64 +4696,64 @@ msgstr "" "Membatasi jumlah perintah untuk merubah sebuah tabel atau database untuk " "setiap pengguna dalam batas waktu satu jam." -#: server_privileges.php:46 server_privileges.php:652 -#: server_privileges.php:654 +#: server_privileges.php:45 server_privileges.php:651 +#: server_privileges.php:653 #, fuzzy msgid "Limits the number of simultaneous connections the user may have." msgstr "" "Membatasi jumlah koneksi baru yang diperbolehkan untuk setiap pengguna dalam " "batas waktu satu jam." -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:46 server_privileges.php:187 +#: server_privileges.php:543 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:47 server_privileges.php:189 +#: server_privileges.php:447 server_privileges.php:549 msgid "Has no effect in this MySQL version." msgstr "Tidak ada efek dalam versi MySQL yang digunakan." -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:48 server_privileges.php:185 +#: server_privileges.php:544 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Mengizinkan untuk reload stelan dari server dan untuk flush cache dari " "server." -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:197 +#: server_privileges.php:551 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Memberi hak kepada pengguna untuk menanyakan lokasi dari slaves / masters." -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:50 server_privileges.php:196 +#: server_privileges.php:552 msgid "Needed for the replication slaves." msgstr "Digunakan untuk replikasi dari slaves." -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:51 server_privileges.php:179 +#: server_privileges.php:438 server_privileges.php:502 msgid "Allows reading data." msgstr "Mengizinkan untuk baca data." -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:52 server_privileges.php:192 +#: server_privileges.php:546 msgid "Gives access to the complete list of databases." msgstr "Memberi akses ke seluruh daftar database." -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:53 server_privileges.php:203 +#: server_privileges.php:205 server_privileges.php:518 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Mengizinkan pencarian dengan cara SHOW CREATE VIEW." -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:54 server_privileges.php:186 +#: server_privileges.php:545 msgid "Allows shutting down the server." msgstr "Mengizinkan untuk shut-down server." -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:55 server_privileges.php:193 +#: server_privileges.php:542 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -4701,161 +4763,161 @@ msgstr "" "diperlukan untuk hampir semua operasi administratif seperti stelan variabel " "global atau untuk mematikan sebuah Thread yang dimiliki oleh pengguna lain." -#: server_privileges.php:57 server_privileges.php:201 -#: server_privileges.php:535 +#: server_privileges.php:56 server_privileges.php:200 +#: server_privileges.php:534 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "Mengizinkan untuk menciptakan dan hapus Indeks." -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:57 server_privileges.php:181 +#: server_privileges.php:444 server_privileges.php:504 msgid "Allows changing data." msgstr "Mengizinkan untuk ubah data." -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:58 server_privileges.php:259 msgid "No privileges." msgstr "Tanpa Hak Istimewa (Privileges)." -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:301 server_privileges.php:302 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "tanpa" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1710 server_privileges.php:1716 +#: server_privileges.php:430 server_privileges.php:565 +#: server_privileges.php:1714 server_privileges.php:1720 msgid "Table-specific privileges" msgstr "Hak (privileges) khusus terhadap tabel" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1532 +#: server_privileges.php:431 server_privileges.php:573 +#: server_privileges.php:1536 msgid " Note: MySQL privilege names are expressed in English " msgstr " Catatan: Nama privilege MySQL dalam bahasa Ingris " -#: server_privileges.php:563 server_privileges.php:1531 +#: server_privileges.php:562 server_privileges.php:1535 msgid "Global privileges" msgstr "Hak Istimewa (Privileges) Global" -#: server_privileges.php:565 server_privileges.php:1710 +#: server_privileges.php:564 server_privileges.php:1714 msgid "Database-specific privileges" msgstr "Hak (privileges) khusus terhadap Database" -#: server_privileges.php:610 +#: server_privileges.php:609 msgid "Administration" msgstr "Administrasi" -#: server_privileges.php:630 +#: server_privileges.php:629 msgid "Resource limits" msgstr "Batas dari sumber" -#: server_privileges.php:631 +#: server_privileges.php:630 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" "Perhatian: Perubahan pilihan ini ke posisi 0 (zero) akan menghapus batas " "yang telah ditentukan." -#: server_privileges.php:708 +#: server_privileges.php:707 msgid "Login Information" msgstr "Informasi Login" -#: server_privileges.php:802 +#: server_privileges.php:801 msgid "Do not change the password" msgstr "Jangan ubah Kata Sandi" -#: server_privileges.php:835 server_privileges.php:2197 +#: server_privileges.php:834 server_privileges.php:2201 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Pengguna tidak ditemukan." -#: server_privileges.php:879 +#: server_privileges.php:878 #, php-format msgid "The user %s already exists!" msgstr "Pengguna %s telah terdaftar!" -#: server_privileges.php:962 +#: server_privileges.php:961 msgid "You have added a new user." msgstr "Pengguna baru telah ditambahkan." -#: server_privileges.php:1183 +#: server_privileges.php:1184 #, php-format msgid "You have updated the privileges for %s." msgstr "Hak Akses (privilege) untuk %s telah di-update." -#: server_privileges.php:1207 +#: server_privileges.php:1208 #, php-format msgid "You have revoked the privileges for %s" msgstr "Hak akses untuk %s telah dicabut" -#: server_privileges.php:1243 +#: server_privileges.php:1244 #, php-format msgid "The password for %s was changed successfully." msgstr "Sukses mengubah Kata Sandi untuk %s ." -#: server_privileges.php:1263 +#: server_privileges.php:1264 #, php-format msgid "Deleting %s" msgstr "Menghapus %s" -#: server_privileges.php:1274 +#: server_privileges.php:1275 msgid "No users selected for deleting!" msgstr "Tidak ada pengguna yang dipilih untuk dihapus!" -#: server_privileges.php:1277 +#: server_privileges.php:1278 msgid "Reloading the privileges" msgstr "Reload Hak Istimewa (Privileges)" -#: server_privileges.php:1292 +#: server_privileges.php:1296 msgid "The selected users have been deleted successfully." msgstr "Sukses menghapus Pengguna yang dipilih." -#: server_privileges.php:1327 +#: server_privileges.php:1331 msgid "The privileges were reloaded successfully." msgstr "Sukses reload Hak Istimewa (Privileges)." -#: server_privileges.php:1355 server_privileges.php:1641 +#: server_privileges.php:1359 server_privileges.php:1645 msgid "Edit Privileges" msgstr "Ubah hak akses (privilege)" -#: server_privileges.php:1364 +#: server_privileges.php:1368 msgid "Revoke" msgstr "Cabut" -#: server_privileges.php:1396 +#: server_privileges.php:1400 msgid "User overview" msgstr "Pandangan Umum Pengguna" -#: server_privileges.php:1533 server_privileges.php:1715 -#: server_privileges.php:2064 +#: server_privileges.php:1537 server_privileges.php:1719 +#: server_privileges.php:2068 msgid "Grant" msgstr "Izin" -#: server_privileges.php:1552 server_privileges.php:2154 +#: server_privileges.php:1556 server_privileges.php:2158 msgid "Any" msgstr "Setiap" -#: server_privileges.php:1601 server_privileges.php:1625 -#: server_privileges.php:2019 server_privileges.php:2208 +#: server_privileges.php:1605 server_privileges.php:1629 +#: server_privileges.php:2023 server_privileges.php:2212 msgid "Add a new User" msgstr "Menambahkan pengguna baru" -#: server_privileges.php:1606 +#: server_privileges.php:1610 msgid "Remove selected users" msgstr "Hapus pengguna yang dipilih" -#: server_privileges.php:1609 +#: server_privileges.php:1613 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Cabut seluruh Hak Istimewa (Privileges) dari pengguna, lantas hapus pengguna " "tsb. dari daftar tabel pengguna." -#: server_privileges.php:1610 server_privileges.php:1611 -#: server_privileges.php:1612 +#: server_privileges.php:1614 server_privileges.php:1615 +#: server_privileges.php:1616 msgid "Drop the databases that have the same names as the users." msgstr "Hapus database yang memiliki nama yang sama dengan pengguna." -#: server_privileges.php:1628 +#: server_privileges.php:1632 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4869,94 +4931,94 @@ msgstr "" "diubah secara manual. Disarankan untuk %sme-reload profil pengguna%s sebelum " "melanjut." -#: server_privileges.php:1676 +#: server_privileges.php:1680 msgid "The selected user was not found in the privilege table." msgstr "" "Pengguna yang dipilih tidak ditemukan pada tabel hak (privilege table)." -#: server_privileges.php:1716 +#: server_privileges.php:1720 msgid "Column-specific privileges" msgstr "Hak (privileges) khusus terhadap kolum" -#: server_privileges.php:1917 +#: server_privileges.php:1921 msgid "Add privileges on the following database" msgstr "Menambahkan hak (privileges) pada database berikut" -#: server_privileges.php:1935 +#: server_privileges.php:1939 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "Wildcard _ dan % sebaiknya diakhiri dengan tanda \\ untuk mengunakannya " "secara harfiah" -#: server_privileges.php:1938 +#: server_privileges.php:1942 msgid "Add privileges on the following table" msgstr "Menambahkan hak (privileges) pada tabel berikut" -#: server_privileges.php:1995 +#: server_privileges.php:1999 msgid "Change Login Information / Copy User" msgstr "Ubah informasi Login / Salip pengguna" -#: server_privileges.php:1998 +#: server_privileges.php:2002 msgid "Create a new user with the same privileges and ..." msgstr "Ciptakan pengguna baru dengan hak-hak yang sama dan ..." -#: server_privileges.php:2000 +#: server_privileges.php:2004 msgid "... keep the old one." msgstr "... mempertahankan yang lama." -#: server_privileges.php:2001 +#: server_privileges.php:2005 msgid " ... delete the old one from the user tables." msgstr " ... hapus yang lama dari User Table." -#: server_privileges.php:2002 +#: server_privileges.php:2006 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr " ... cabut seluruh hak yang aktif, kemudian hapuskan yang lama." -#: server_privileges.php:2003 +#: server_privileges.php:2007 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr " ... hapuskan yang lama dari User Table, kemudian reload hak-hak." -#: server_privileges.php:2025 +#: server_privileges.php:2029 msgid "Database for user" msgstr "Database untuk pengguna" -#: server_privileges.php:2029 +#: server_privileges.php:2033 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "tanpa" -#: server_privileges.php:2030 +#: server_privileges.php:2034 msgid "Create database with same name and grant all privileges" msgstr "Buat database dengan nama yang sama dan beri semua hak" -#: server_privileges.php:2031 +#: server_privileges.php:2035 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Berikan semua hak untuk nama wildcard (pengguna\\_%)" -#: server_privileges.php:2034 +#: server_privileges.php:2038 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Berikan semua hak untuk database "%s"." -#: server_privileges.php:2057 +#: server_privileges.php:2061 #, php-format msgid "Users having access to "%s"" msgstr "Pengguna memiliki akses ke "%s"" -#: server_privileges.php:2165 +#: server_privileges.php:2169 msgid "global" msgstr "global" -#: server_privileges.php:2167 +#: server_privileges.php:2171 msgid "database-specific" msgstr "database-spesifik" -#: server_privileges.php:2169 +#: server_privileges.php:2173 msgid "wildcard" msgstr "wildcard" @@ -4977,53 +5039,53 @@ msgstr "" msgid "ID" msgstr "ID" -#: server_replication.php:50 +#: server_replication.php:49 msgid "Unknown error" msgstr "" -#: server_replication.php:57 +#: server_replication.php:56 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:64 +#: server_replication.php:63 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:70 +#: server_replication.php:69 msgid "Unable to change master" msgstr "" -#: server_replication.php:73 +#: server_replication.php:72 #, php-format msgid "Master server changed succesfully to %s" msgstr "" -#: server_replication.php:181 +#: server_replication.php:180 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:183 server_status.php:391 +#: server_replication.php:182 server_status.php:391 msgid "Show master status" msgstr "" -#: server_replication.php:186 +#: server_replication.php:185 msgid "Show connected slaves" msgstr "" -#: server_replication.php:209 +#: server_replication.php:208 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:216 +#: server_replication.php:215 msgid "Master configuration" msgstr "" -#: server_replication.php:217 +#: server_replication.php:216 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -5032,110 +5094,110 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:220 +#: server_replication.php:219 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:221 +#: server_replication.php:220 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:224 +#: server_replication.php:223 #, fuzzy msgid "Please select databases:" msgstr "Silakan pilih database" -#: server_replication.php:227 +#: server_replication.php:226 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: server_replication.php:229 +#: server_replication.php:228 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: server_replication.php:292 +#: server_replication.php:291 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:295 +#: server_replication.php:294 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:304 +#: server_replication.php:303 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:307 +#: server_replication.php:306 msgid "See slave status table" msgstr "" -#: server_replication.php:310 +#: server_replication.php:309 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:321 +#: server_replication.php:320 msgid "Control slave:" msgstr "" -#: server_replication.php:324 +#: server_replication.php:323 #, fuzzy msgid "Full start" msgstr "Teks penuh" -#: server_replication.php:324 +#: server_replication.php:323 msgid "Full stop" msgstr "" -#: server_replication.php:325 +#: server_replication.php:324 msgid "Reset slave" msgstr "" -#: server_replication.php:326 +#: server_replication.php:325 #, php-format msgid "SQL Thread %s only" msgstr "" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 #, fuzzy msgid "Start" msgstr "Sabtu" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 msgid "Stop" msgstr "" -#: server_replication.php:327 +#: server_replication.php:326 #, php-format msgid "IO Thread %s only" msgstr "" -#: server_replication.php:331 +#: server_replication.php:330 msgid "Error management:" msgstr "" -#: server_replication.php:333 +#: server_replication.php:332 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:335 +#: server_replication.php:334 msgid "Skip current error" msgstr "" -#: server_replication.php:336 +#: server_replication.php:335 msgid "Skip next" msgstr "" -#: server_replication.php:339 +#: server_replication.php:338 msgid "errors." msgstr "" -#: server_replication.php:354 +#: server_replication.php:353 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -5847,112 +5909,112 @@ msgstr "Tipe Pencarian" msgid "Replication status" msgstr "" -#: server_synchronize.php:93 +#: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "Tidak dapat terhubung ke sumber" -#: server_synchronize.php:96 +#: server_synchronize.php:95 msgid "Could not connect to the target" msgstr "Tidak dapat terhubung ke target" -#: server_synchronize.php:121 server_synchronize.php:124 tbl_create.php:77 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "Database %s tidak ditemukan." -#: server_synchronize.php:264 +#: server_synchronize.php:263 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:271 +#: server_synchronize.php:270 msgid "Data Synchronization" msgstr "Sinkronisasi Data" -#: server_synchronize.php:399 server_synchronize.php:838 +#: server_synchronize.php:398 server_synchronize.php:837 msgid "not present" msgstr "" -#: server_synchronize.php:423 server_synchronize.php:866 +#: server_synchronize.php:422 server_synchronize.php:865 msgid "Structure Difference" msgstr "" -#: server_synchronize.php:424 server_synchronize.php:867 +#: server_synchronize.php:423 server_synchronize.php:866 msgid "Data Difference" msgstr "Perbedaan data" -#: server_synchronize.php:429 server_synchronize.php:872 +#: server_synchronize.php:428 server_synchronize.php:871 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:430 server_synchronize.php:873 +#: server_synchronize.php:429 server_synchronize.php:872 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:431 server_synchronize.php:874 +#: server_synchronize.php:430 server_synchronize.php:873 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:432 server_synchronize.php:875 +#: server_synchronize.php:431 server_synchronize.php:874 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:433 server_synchronize.php:876 +#: server_synchronize.php:432 server_synchronize.php:875 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:434 server_synchronize.php:877 +#: server_synchronize.php:433 server_synchronize.php:876 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:435 server_synchronize.php:878 +#: server_synchronize.php:434 server_synchronize.php:877 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:445 server_synchronize.php:889 +#: server_synchronize.php:444 server_synchronize.php:888 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:448 server_synchronize.php:893 +#: server_synchronize.php:447 server_synchronize.php:892 msgid "Apply Selected Changes" msgstr "Terapkan Perubahan Terpilih" -#: server_synchronize.php:450 server_synchronize.php:895 +#: server_synchronize.php:449 server_synchronize.php:894 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:463 +#: server_synchronize.php:462 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:941 +#: server_synchronize.php:940 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:1002 +#: server_synchronize.php:1001 msgid "The following queries have been executed:" msgstr "" -#: server_synchronize.php:1121 +#: server_synchronize.php:1120 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1122 +#: server_synchronize.php:1121 #, fuzzy #| msgid "Connections" msgid "Current connection" msgstr "Koneksi" -#: server_synchronize.php:1151 +#: server_synchronize.php:1150 #, php-format msgid "Configuration: %s" msgstr "" -#: server_synchronize.php:1166 +#: server_synchronize.php:1165 msgid "Socket" msgstr "" -#: server_synchronize.php:1212 +#: server_synchronize.php:1211 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -6509,8 +6571,8 @@ msgstr "" #: setup/lib/messages.inc.php:128 msgid "" "Configure phpMyAdmin database to gain access to additional features, see " -"[a@../Documentation.html#linked-tables]linked-tables infrastructure[/a] in " -"documentation" +"[a@../Documentation.html#linked-tables]phpMyAdmin configuration storage[/a] " +"in documentation" msgstr "" #: setup/lib/messages.inc.php:129 setup/lib/messages.inc.php:290 @@ -7571,117 +7633,117 @@ msgstr "" msgid "ZIP" msgstr "" -#: sql.php:495 tbl_replace.php:385 +#: sql.php:494 tbl_replace.php:384 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: sql.php:512 +#: sql.php:511 msgid "Showing as PHP code" msgstr "" -#: sql.php:515 tbl_replace.php:359 +#: sql.php:514 tbl_replace.php:358 msgid "Showing SQL query" msgstr "" -#: sql.php:517 +#: sql.php:516 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Mengesahkan (validate) SQL" -#: sql.php:638 +#: sql.php:631 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Ditemukan masalah dengan indeks dalam tabel `%s`" -#: sql.php:670 +#: sql.php:663 msgid "Label" msgstr "Judul" -#: tbl_addfield.php:188 tbl_alter.php:102 tbl_indexes.php:97 +#: tbl_addfield.php:185 tbl_alter.php:100 tbl_indexes.php:97 #, fuzzy, php-format msgid "Table %1$s has been altered successfully" msgstr "Sukses menghapus Pengguna yang dipilih." -#: tbl_change.php:250 tbl_select.php:26 tbl_select.php:27 tbl_select.php:30 -#: tbl_select.php:33 +#: tbl_change.php:245 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_select.php:32 msgid "Browse foreign values" msgstr "Menjelajahi nilai luar" -#: tbl_change.php:280 tbl_change.php:318 +#: tbl_change.php:275 tbl_change.php:313 msgid "Function" msgstr "Fungsi" -#: tbl_change.php:300 tbl_indexes.php:199 tbl_indexes.php:224 +#: tbl_change.php:295 tbl_indexes.php:198 tbl_indexes.php:223 msgid "Ignore" msgstr "Abaikan" -#: tbl_change.php:725 +#: tbl_change.php:720 #, fuzzy #| msgid " Because of its length,
                            this field might not be editable " msgid " Because of its length,
                            this column might not be editable " msgstr "" " Disebabkan ukuran panjangnya,
                            field ini tidak dapat di-edit ulang. " -#: tbl_change.php:884 +#: tbl_change.php:835 msgid "Remove BLOB Repository Reference" msgstr "Hapus Referensi Repositori BLOB" -#: tbl_change.php:890 +#: tbl_change.php:841 msgid "Binary - do not edit" msgstr "Binari - jangan di-edit" -#: tbl_change.php:983 +#: tbl_change.php:889 msgid "Upload to BLOB repository" msgstr "Upload ke repositori BLOB" -#: tbl_change.php:1128 +#: tbl_change.php:1026 msgid "Insert as new row" msgstr "Sisipkan sebagai baris baru" -#: tbl_change.php:1129 +#: tbl_change.php:1027 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:1130 +#: tbl_change.php:1028 msgid "Show insert query" msgstr "" -#: tbl_change.php:1145 +#: tbl_change.php:1043 msgid "Go back to previous page" msgstr "kembali" -#: tbl_change.php:1146 +#: tbl_change.php:1044 msgid "Insert another new row" msgstr "sisipkan baris baru berikutnya" -#: tbl_change.php:1150 +#: tbl_change.php:1048 msgid "Go back to this page" msgstr "Kembali ke halaman ini" -#: tbl_change.php:1158 +#: tbl_change.php:1056 msgid "Edit next row" msgstr "Edit baris berikut" -#: tbl_change.php:1169 +#: tbl_change.php:1067 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Gunakan tombol TAB untuk maju dari angka ke angka atau gunakan CTRL+panah " "untuk maju kemana saja" -#: tbl_change.php:1207 +#: tbl_change.php:1105 #, php-format msgid "Restart insertion with %s rows" msgstr "" -#: tbl_create.php:57 +#: tbl_create.php:55 #, fuzzy, php-format msgid "Table %s already exists!" msgstr "Pengguna %s telah terdaftar!" -#: tbl_create.php:244 +#: tbl_create.php:241 #, fuzzy, php-format msgid "Table %1$s has been created." msgstr "Tabel %s telah dihapus" @@ -7702,204 +7764,204 @@ msgstr "Gagal ubah nama Indeks ke PRIMARY!" msgid "No index parts defined!" msgstr "Bagian indeks belum diberi definisin!" -#: tbl_indexes.php:159 +#: tbl_indexes.php:158 msgid "Create a new index" msgstr "Ciptakan indeks baru" -#: tbl_indexes.php:161 +#: tbl_indexes.php:160 msgid "Modify an index" msgstr "Ubah indeks" -#: tbl_indexes.php:167 +#: tbl_indexes.php:166 msgid "Index name:" msgstr "Nama indeks :" -#: tbl_indexes.php:173 +#: tbl_indexes.php:172 msgid "Index type:" msgstr "Tipe indeks :" -#: tbl_indexes.php:183 +#: tbl_indexes.php:182 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" "(Tanda nama \"PRIMARY\" wajib sebagai satu-satunya nama dan hanya sebagai Kunci utama saja!)" -#: tbl_indexes.php:250 +#: tbl_indexes.php:249 #, php-format msgid "Add to index  %s column(s)" msgstr "Menambahkan ke indeks  %s kolom" -#: tbl_indexes.php:255 tbl_structure.php:588 tbl_structure.php:599 +#: tbl_indexes.php:254 tbl_structure.php:586 tbl_structure.php:597 msgid "Column count has to be larger than zero." msgstr "Perhitungan kolom wajib lebih besar dari nol." -#: tbl_move_copy.php:45 +#: tbl_move_copy.php:44 msgid "Can't move table to same one!" msgstr "Memindahkan tabel ke diri-sendiri tidak bisa dilakukan!" -#: tbl_move_copy.php:47 +#: tbl_move_copy.php:46 msgid "Can't copy table to same one!" msgstr "Penyalinan tabel pada diri-sendiri tidak bisa dilakukan!" -#: tbl_move_copy.php:55 +#: tbl_move_copy.php:54 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabel %s telah dipindahkan ke %s." -#: tbl_move_copy.php:57 +#: tbl_move_copy.php:56 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabel %s telah disalin ke %s." -#: tbl_move_copy.php:81 +#: tbl_move_copy.php:80 msgid "The table name is empty!" msgstr "Nama tabel kosong!" -#: tbl_operations.php:248 +#: tbl_operations.php:246 msgid "Alter table order by" msgstr "Urutkan tabel berdasarkan" -#: tbl_operations.php:257 +#: tbl_operations.php:255 msgid "(singly)" msgstr "(unik)" -#: tbl_operations.php:277 +#: tbl_operations.php:275 msgid "Move table to (database.table):" msgstr "Pindahkan tabel ke (database.tabel):" -#: tbl_operations.php:335 +#: tbl_operations.php:333 msgid "Table options" msgstr "Pilihan untuk tabel" -#: tbl_operations.php:339 +#: tbl_operations.php:337 msgid "Rename table to" msgstr "Ubah nama tabel menjadi " -#: tbl_operations.php:510 +#: tbl_operations.php:508 msgid "Copy table to (database.table):" msgstr "Salin tabel ke (database.nama tabel):" -#: tbl_operations.php:557 +#: tbl_operations.php:555 msgid "Switch to copied table" msgstr "Pindah ke tabel salinan" -#: tbl_operations.php:569 +#: tbl_operations.php:567 msgid "Table maintenance" msgstr "Pemeliharaan tabel" -#: tbl_operations.php:590 +#: tbl_operations.php:588 msgid "Defragment table" msgstr "Defragmentasikan tabel" -#: tbl_operations.php:629 +#: tbl_operations.php:627 #, php-format msgid "Table %s has been flushed" msgstr "Tabel %s telah dibuang" -#: tbl_operations.php:635 +#: tbl_operations.php:633 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Tutup tabel (\"FLUSH\")" -#: tbl_operations.php:650 +#: tbl_operations.php:648 #, fuzzy msgid "Partition maintenance" msgstr "Pemeliharaan tabel" -#: tbl_operations.php:658 +#: tbl_operations.php:656 #, php-format msgid "Partition %s" msgstr "" -#: tbl_operations.php:661 +#: tbl_operations.php:659 msgid "Analyze" msgstr "Analisa" -#: tbl_operations.php:662 +#: tbl_operations.php:660 msgid "Check" msgstr "Tandai" -#: tbl_operations.php:663 +#: tbl_operations.php:661 msgid "Optimize" msgstr "" -#: tbl_operations.php:664 +#: tbl_operations.php:662 msgid "Rebuild" msgstr "" -#: tbl_operations.php:665 +#: tbl_operations.php:663 #, fuzzy msgid "Repair" msgstr "Perbaiki tabel" -#: tbl_operations.php:677 +#: tbl_operations.php:675 msgid "Remove partitioning" msgstr "" -#: tbl_operations.php:703 +#: tbl_operations.php:701 msgid "Check referential integrity:" msgstr "Cek integriti referensial:" -#: tbl_printview.php:73 +#: tbl_printview.php:72 msgid "Show tables" msgstr "Tampilkan tabel" -#: tbl_printview.php:308 tbl_structure.php:655 +#: tbl_printview.php:307 tbl_structure.php:653 msgid "Space usage" msgstr "Penggunaan tempat" -#: tbl_printview.php:312 tbl_structure.php:659 +#: tbl_printview.php:311 tbl_structure.php:657 msgid "Usage" msgstr "Penggunaan" -#: tbl_printview.php:339 tbl_structure.php:686 +#: tbl_printview.php:338 tbl_structure.php:684 msgid "Effective" msgstr "Efektif" -#: tbl_printview.php:364 tbl_structure.php:724 +#: tbl_printview.php:363 tbl_structure.php:722 msgid "Row Statistics" msgstr "Statistik Baris" -#: tbl_printview.php:367 tbl_structure.php:727 +#: tbl_printview.php:366 tbl_structure.php:725 msgid "Statements" msgstr "Keterangan" -#: tbl_printview.php:378 tbl_structure.php:739 +#: tbl_printview.php:377 tbl_structure.php:737 msgid "static" msgstr "" -#: tbl_printview.php:380 tbl_structure.php:741 +#: tbl_printview.php:379 tbl_structure.php:739 msgid "dynamic" msgstr "dinamis" -#: tbl_printview.php:402 tbl_structure.php:784 +#: tbl_printview.php:401 tbl_structure.php:782 msgid "Row length" msgstr "Panjangnya baris" -#: tbl_printview.php:412 tbl_structure.php:792 +#: tbl_printview.php:411 tbl_structure.php:790 msgid " Row size " msgstr " Besarnya baris " -#: tbl_relation.php:278 +#: tbl_relation.php:276 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" -#: tbl_relation.php:404 +#: tbl_relation.php:402 #, fuzzy #| msgid "Internal relations" msgid "Internal relation" msgstr "Relasi internal" -#: tbl_relation.php:406 +#: tbl_relation.php:404 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: tbl_relation.php:412 +#: tbl_relation.php:410 msgid "Foreign key constraint" msgstr "" @@ -7907,122 +7969,122 @@ msgstr "" msgid "No rows selected" msgstr "Tidak ada baris yang dipilih" -#: tbl_select.php:130 +#: tbl_select.php:129 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "cari berdasarkan data contoh (\"query by example\") (wildcard: \"%\")" -#: tbl_select.php:136 +#: tbl_select.php:135 msgid "Operator" msgstr "Operator" -#: tbl_select.php:267 +#: tbl_select.php:266 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "Pilihan field (min. satu):" -#: tbl_select.php:285 +#: tbl_select.php:284 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Menambahkan kriteria pencarian (Argumen untuk WHERE-Statement):" -#: tbl_select.php:292 +#: tbl_select.php:291 msgid "Number of rows per page" msgstr "Jumlah baris per halaman" -#: tbl_select.php:298 +#: tbl_select.php:297 msgid "Display order:" msgstr "Urut tampilan berdasarkan:" -#: tbl_structure.php:160 +#: tbl_structure.php:159 #, fuzzy msgid "Browse distinct values" msgstr "Menjelajahi nilai luar" -#: tbl_structure.php:360 +#: tbl_structure.php:358 #, fuzzy #| msgid "None" msgctxt "None for default" msgid "None" msgstr "tanpa" -#: tbl_structure.php:373 +#: tbl_structure.php:371 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Column %s has been dropped" msgstr "Tabel %s telah dihapus" -#: tbl_structure.php:384 +#: tbl_structure.php:382 #, php-format msgid "A primary key has been added on %s" msgstr "Primary key telah ditambahkan pada %s" -#: tbl_structure.php:399 tbl_structure.php:413 tbl_structure.php:427 +#: tbl_structure.php:397 tbl_structure.php:411 tbl_structure.php:425 #, php-format msgid "An index has been added on %s" msgstr "Indeks telah ditambahkan pada %s" -#: tbl_structure.php:505 tbl_structure.php:507 +#: tbl_structure.php:503 tbl_structure.php:505 msgid "Relation view" msgstr "Tampilan relasi" -#: tbl_structure.php:514 tbl_structure.php:516 +#: tbl_structure.php:512 tbl_structure.php:514 msgid "Propose table structure" msgstr "Menganalisa struktur tabel" -#: tbl_structure.php:539 +#: tbl_structure.php:537 #, fuzzy #| msgid "Add %s field(s)" msgid "Add column" msgstr "Menambahkan %s field(s)" -#: tbl_structure.php:553 +#: tbl_structure.php:551 msgid "At End of Table" msgstr "Pada Akhir Tabel" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At Beginning of Table" msgstr "Pada Awal Tabel" -#: tbl_structure.php:555 +#: tbl_structure.php:553 #, php-format msgid "After %s" msgstr "sisipkan setelah %s" -#: tbl_structure.php:593 +#: tbl_structure.php:591 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "Ciptakan indeks pada kolom  %s " -#: tbl_structure.php:755 +#: tbl_structure.php:753 msgid "partitioned" msgstr "" -#: tbl_tracking.php:113 +#: tbl_tracking.php:109 #, php-format msgid "Tracking report for table `%s`" msgstr "Laporan pelacakan untuk table '%s'" -#: tbl_tracking.php:186 +#: tbl_tracking.php:182 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "Versi %s telah dibuat, pelacakan untuk %s.%s diaktifkan." -#: tbl_tracking.php:194 +#: tbl_tracking.php:190 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "Pelacakan untuk %s.%s , versi %s dinonaktifkan." -#: tbl_tracking.php:202 +#: tbl_tracking.php:198 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "Pelacakan untuk %s.%s , versi %s diaktifkan." -#: tbl_tracking.php:212 +#: tbl_tracking.php:208 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:219 +#: tbl_tracking.php:215 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -8030,109 +8092,109 @@ msgstr "" "Anda dapat mengeksekusi dump dengan membuat dan menggunakan database " "sementara. Mohon pastikan Anda mempunyai hak untuk melakukannya." -#: tbl_tracking.php:220 +#: tbl_tracking.php:216 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:229 +#: tbl_tracking.php:225 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:250 tbl_tracking.php:378 +#: tbl_tracking.php:245 tbl_tracking.php:373 msgid "Close" msgstr "Tutup" -#: tbl_tracking.php:261 +#: tbl_tracking.php:256 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Versi %s snapshot (kode SQL)" -#: tbl_tracking.php:380 +#: tbl_tracking.php:375 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:396 tbl_tracking.php:503 +#: tbl_tracking.php:391 tbl_tracking.php:498 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "" -#: tbl_tracking.php:409 tbl_tracking.php:460 +#: tbl_tracking.php:404 tbl_tracking.php:455 msgid "Date" msgstr "Tanggal" -#: tbl_tracking.php:410 tbl_tracking.php:461 +#: tbl_tracking.php:405 tbl_tracking.php:456 msgid "Username" msgstr "Nama Pengguna" -#: tbl_tracking.php:411 +#: tbl_tracking.php:406 msgid "Data definition statement" msgstr "Pernyataan definisi data" -#: tbl_tracking.php:462 +#: tbl_tracking.php:457 msgid "Data manipulation statement" msgstr "Penyataan manipulasi data" -#: tbl_tracking.php:506 +#: tbl_tracking.php:501 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:507 +#: tbl_tracking.php:502 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:520 +#: tbl_tracking.php:515 #, php-format msgid "Export as %s" msgstr "Ekspor sebagai %s" -#: tbl_tracking.php:560 +#: tbl_tracking.php:555 msgid "Show versions" msgstr "" -#: tbl_tracking.php:592 +#: tbl_tracking.php:587 msgid "Version" msgstr "Versi" -#: tbl_tracking.php:639 +#: tbl_tracking.php:634 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "Nonaktifkan pelacakan untuk %s.%s" -#: tbl_tracking.php:641 +#: tbl_tracking.php:636 msgid "Deactivate now" msgstr "Nonaktifkan sekarang" -#: tbl_tracking.php:652 +#: tbl_tracking.php:647 #, php-format msgid "Activate tracking for %s.%s" msgstr "Aktifkan pelacakan untuk %s.%s" -#: tbl_tracking.php:654 +#: tbl_tracking.php:649 msgid "Activate now" msgstr "Aktifkan sekarang" -#: tbl_tracking.php:667 +#: tbl_tracking.php:662 #, php-format msgid "Create version %s of %s.%s" msgstr "Membuat versi %s dari %s.%s" -#: tbl_tracking.php:671 +#: tbl_tracking.php:666 msgid "Track these data definition statements:" msgstr "Lacak definisi data dari pernyataan berikut:" -#: tbl_tracking.php:679 +#: tbl_tracking.php:674 msgid "Track these data manipulation statements:" msgstr "Lacak manipulasi data dari pernyataan berikut:" -#: tbl_tracking.php:687 +#: tbl_tracking.php:682 msgid "Create version" msgstr "Membuat versi" @@ -8182,11 +8244,35 @@ msgstr "Profil pengguna telah di-update." msgid "VIEW name" msgstr "Nama VIEW" -#: view_operations.php:92 +#: view_operations.php:91 #, fuzzy msgid "Rename view to" msgstr "Ubah nama tabel menjadi " +#~ msgid "BLOB Repository" +#~ msgstr "Repositori BLOB" + +#~ msgctxt "BLOB repository" +#~ msgid "Enabled" +#~ msgstr "Diaktifkan" + +#~ msgid "Disable" +#~ msgstr "Tidak aktif" + +#~ msgid "Damaged" +#~ msgstr "Rusak" + +#~ msgctxt "BLOB repository" +#~ msgid "Repair" +#~ msgstr "Perbaiki" + +#~ msgctxt "BLOB repository" +#~ msgid "Disabled" +#~ msgstr "Tidak diaktifkan" + +#~ msgid "Enable" +#~ msgstr "Aktif" + #~ msgid "" #~ "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " #~ "extension. Please check your PHP configuration." diff --git a/po/it.po b/po/it.po index befab116a..808a1c3d7 100644 --- a/po/it.po +++ b/po/it.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-21 13:53+0200\n" +"POT-Creation-Date: 2010-07-26 17:18+0200\n" "PO-Revision-Date: 2010-05-24 21:25+0200\n" "Last-Translator: Fabio \n" "Language-Team: italian \n" @@ -14,19 +14,19 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.1\n" -#: browse_foreigners.php:37 browse_foreigners.php:58 -#: libraries/display_tbl.lib.php:416 server_privileges.php:1506 +#: browse_foreigners.php:36 browse_foreigners.php:57 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1510 msgid "Show all" msgstr "Mostra tutti" -#: browse_foreigners.php:81 libraries/common.lib.php:2313 -#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:393 -#: libraries/export/pdf.php:146 pdf_schema.php:282 pdf_schema.php:1122 -#: pdf_schema.php:1138 +#: browse_foreigners.php:80 libraries/common.lib.php:2318 +#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:392 +#: libraries/export/pdf.php:146 pdf_schema.php:281 pdf_schema.php:1121 +#: pdf_schema.php:1137 msgid "Page number:" msgstr "Numero pagina:" -#: browse_foreigners.php:131 +#: browse_foreigners.php:130 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -37,139 +37,153 @@ msgstr "" "bloccando gli aggiornamenti fra browsers a causa di qualche impostazione di " "sicurezza" -#: browse_foreigners.php:149 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2829 -#: libraries/common.lib.php:2836 libraries/db_links.inc.php:74 -#: libraries/tbl_links.inc.php:62 +#: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 +#: db_structure.php:89 db_structure.php:91 db_structure.php:102 +#: db_structure.php:104 libraries/common.lib.php:2834 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Cerca" -#: browse_foreigners.php:152 db_operations.php:384 db_operations.php:428 -#: db_operations.php:498 db_operations.php:608 db_search.php:344 -#: db_structure.php:566 js/messages.php:48 libraries/Config.class.php:1043 -#: libraries/Theme_Manager.class.php:310 +#: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 +#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 +#: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 -#: libraries/common.lib.php:1340 libraries/common.lib.php:2289 +#: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 -#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:275 -#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:531 -#: libraries/display_tbl.lib.php:613 libraries/replication_gui.lib.php:75 +#: libraries/display_export.lib.php:269 libraries/display_import.lib.php:275 +#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 +#: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 #: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:781 -#: main.php:127 navigation.php:231 pdf_pages.php:291 pdf_pages.php:327 -#: pdf_pages.php:529 pmd_pdf.php:115 server_binlog.php:128 -#: server_privileges.php:664 server_privileges.php:1616 -#: server_privileges.php:1963 server_privileges.php:2010 -#: server_privileges.php:2049 server_replication.php:234 -#: server_replication.php:317 server_replication.php:340 -#: server_synchronize.php:1208 tbl_change.php:328 tbl_change.php:1172 -#: tbl_change.php:1209 tbl_indexes.php:253 tbl_operations.php:264 -#: tbl_operations.php:301 tbl_operations.php:498 tbl_operations.php:560 -#: tbl_operations.php:680 tbl_select.php:324 tbl_structure.php:561 -#: tbl_structure.php:596 tbl_tracking.php:394 tbl_tracking.php:511 -#: view_create.php:181 view_operations.php:100 +#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 +#: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 +#: server_privileges.php:663 server_privileges.php:1620 +#: server_privileges.php:1967 server_privileges.php:2014 +#: server_privileges.php:2053 server_replication.php:233 +#: server_replication.php:316 server_replication.php:339 +#: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 +#: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 +#: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 +#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "Esegui" -#: browse_foreigners.php:167 browse_foreigners.php:171 -#: libraries/Index.class.php:441 tbl_tracking.php:319 +#: browse_foreigners.php:166 browse_foreigners.php:170 +#: libraries/Index.class.php:441 tbl_tracking.php:314 msgid "Keyname" msgstr "Nome chiave" -#: browse_foreigners.php:168 browse_foreigners.php:170 -#: server_collations.php:54 server_collations.php:66 server_engines.php:58 +#: browse_foreigners.php:167 browse_foreigners.php:169 +#: server_collations.php:54 server_collations.php:66 server_engines.php:57 #: server_status.php:738 msgid "Description" msgstr "Descrizione" -#: browse_foreigners.php:246 browse_foreigners.php:255 -#: browse_foreigners.php:267 browse_foreigners.php:275 +#: browse_foreigners.php:245 browse_foreigners.php:254 +#: browse_foreigners.php:266 browse_foreigners.php:274 msgid "Use this value" msgstr "Usa questa opzione" -#: db_create.php:45 +#: bs_disp_as_mime_type.php:29 bs_play_media.php:35 +msgid "No blob streaming server configured!" +msgstr "" + +#: bs_disp_as_mime_type.php:35 +#, fuzzy +#| msgid "Failed to write file to disk." +msgid "Failed to fetch headers" +msgstr "Non riesco a scrivere il file su disco." + +#: bs_disp_as_mime_type.php:41 +msgid "Failed to open remote URL" +msgstr "" + +#: db_create.php:44 #, php-format msgid "Database %1$s has been created." msgstr "Il database %1$s è stato creato." -#: db_datadict.php:48 db_operations.php:377 +#: db_datadict.php:48 db_operations.php:313 msgid "Database comment: " msgstr "Commento al Database: " -#: db_datadict.php:164 libraries/tbl_properties.inc.php:723 -#: pdf_schema.php:1235 tbl_operations.php:346 tbl_printview.php:128 +#: db_datadict.php:164 libraries/tbl_properties.inc.php:722 +#: pdf_schema.php:1234 tbl_operations.php:344 tbl_printview.php:127 msgid "Table comments" msgstr "Commenti sulla tabella" -#: db_datadict.php:173 db_qbe.php:173 libraries/Index.class.php:445 +#: db_datadict.php:173 db_qbe.php:170 libraries/Index.class.php:445 #: libraries/export/htmlword.php:243 libraries/export/latex.php:364 #: libraries/export/odt.php:293 libraries/export/texytext.php:233 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:274 -#: pdf_schema.php:1261 pdf_schema.php:1282 tbl_change.php:306 -#: tbl_indexes.php:188 tbl_printview.php:140 tbl_relation.php:401 -#: tbl_select.php:133 tbl_structure.php:176 tbl_tracking.php:272 -#: tbl_tracking.php:323 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 +#: pdf_schema.php:1260 pdf_schema.php:1281 tbl_change.php:301 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:132 tbl_structure.php:175 tbl_tracking.php:267 +#: tbl_tracking.php:318 #, fuzzy #| msgid "Column names" msgid "Column" msgstr "Nomi delle colonne" -#: db_datadict.php:174 db_printview.php:105 libraries/Index.class.php:442 +#: db_datadict.php:174 db_printview.php:104 libraries/Index.class.php:442 #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 #: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:244 #: libraries/export/latex.php:364 libraries/export/odt.php:296 #: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:99 -#: pdf_schema.php:1262 pdf_schema.php:1283 server_privileges.php:2062 -#: tbl_change.php:285 tbl_change.php:312 tbl_printview.php:141 -#: tbl_printview.php:311 tbl_select.php:134 tbl_structure.php:177 -#: tbl_structure.php:658 tbl_tracking.php:273 tbl_tracking.php:320 +#: pdf_schema.php:1261 pdf_schema.php:1282 server_privileges.php:2066 +#: tbl_change.php:280 tbl_change.php:307 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:133 tbl_structure.php:176 +#: tbl_structure.php:656 tbl_tracking.php:268 tbl_tracking.php:315 msgid "Type" msgstr "Tipo" #: db_datadict.php:176 libraries/Index.class.php:448 #: libraries/export/htmlword.php:245 libraries/export/latex.php:364 #: libraries/export/odt.php:299 libraries/export/texytext.php:235 -#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1264 -#: pdf_schema.php:1285 tbl_change.php:321 tbl_printview.php:143 -#: tbl_structure.php:180 tbl_tracking.php:275 tbl_tracking.php:326 +#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1263 +#: pdf_schema.php:1284 tbl_change.php:316 tbl_printview.php:142 +#: tbl_structure.php:179 tbl_tracking.php:270 tbl_tracking.php:321 msgid "Null" msgstr "Null" -#: db_datadict.php:177 db_structure.php:500 libraries/export/htmlword.php:246 +#: db_datadict.php:177 db_structure.php:486 libraries/export/htmlword.php:246 #: libraries/export/latex.php:364 libraries/export/odt.php:302 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:105 -#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 -#: tbl_structure.php:181 tbl_tracking.php:276 +#: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:143 +#: tbl_structure.php:180 tbl_tracking.php:271 msgid "Default" msgstr "Predefinito" #: db_datadict.php:181 libraries/export/htmlword.php:248 #: libraries/export/latex.php:366 libraries/export/odt.php:306 -#: libraries/export/texytext.php:238 pdf_schema.php:1267 pdf_schema.php:1288 -#: tbl_printview.php:148 +#: libraries/export/texytext.php:238 pdf_schema.php:1266 pdf_schema.php:1287 +#: tbl_printview.php:147 msgid "Links to" msgstr "Collegamenti a" -#: db_datadict.php:183 db_printview.php:111 libraries/export/htmlword.php:251 +#: db_datadict.php:183 db_printview.php:110 libraries/export/htmlword.php:251 #: libraries/export/latex.php:49 libraries/export/latex.php:369 #: libraries/export/odt.php:37 libraries/export/odt.php:311 #: libraries/export/sql.php:29 libraries/export/texytext.php:241 -#: libraries/tbl_properties.inc.php:129 pdf_schema.php:1278 -#: pdf_schema.php:1289 tbl_printview.php:150 +#: libraries/tbl_properties.inc.php:128 pdf_schema.php:1277 +#: pdf_schema.php:1288 tbl_printview.php:149 msgid "Comments" msgstr "Commenti" #: db_datadict.php:266 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/export/htmlword.php:321 #: libraries/export/latex.php:434 libraries/export/odt.php:367 -#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:262 -#: pdf_schema.php:1343 server_privileges.php:1560 server_privileges.php:1571 -#: server_privileges.php:1881 server_privileges.php:1886 -#: server_privileges.php:2179 sql.php:131 sql.php:193 tbl_printview.php:227 -#: tbl_structure.php:349 tbl_tracking.php:336 tbl_tracking.php:341 +#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:261 +#: pdf_schema.php:1342 server_privileges.php:1564 server_privileges.php:1575 +#: server_privileges.php:1885 server_privileges.php:1890 +#: server_privileges.php:2183 sql.php:130 sql.php:192 tbl_printview.php:226 +#: tbl_structure.php:347 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr " No " @@ -180,17 +194,17 @@ msgstr " No " #: libraries/mult_submits.inc.php:49 libraries/mult_submits.inc.php:54 #: libraries/mult_submits.inc.php:59 libraries/mult_submits.inc.php:91 #: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:105 -#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:261 -#: libraries/mult_submits.inc.php:272 pdf_schema.php:1343 -#: server_databases.php:63 server_privileges.php:1557 -#: server_privileges.php:1571 server_privileges.php:1881 -#: server_privileges.php:1884 server_privileges.php:2179 sql.php:192 -#: tbl_printview.php:227 tbl_structure.php:39 tbl_structure.php:349 -#: tbl_tracking.php:334 tbl_tracking.php:339 +#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:260 +#: libraries/mult_submits.inc.php:271 pdf_schema.php:1342 +#: server_databases.php:61 server_privileges.php:1561 +#: server_privileges.php:1575 server_privileges.php:1885 +#: server_privileges.php:1888 server_privileges.php:2183 sql.php:191 +#: tbl_printview.php:226 tbl_structure.php:38 tbl_structure.php:347 +#: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" msgstr "Sì" -#: db_datadict.php:321 db_printview.php:265 tbl_printview.php:496 +#: db_datadict.php:321 db_printview.php:264 tbl_printview.php:495 msgid "Print" msgstr "Stampa" @@ -198,188 +212,154 @@ msgstr "Stampa" msgid "View dump (schema) of database" msgstr "Visualizza dump (schema) del database" -#: db_export.php:32 db_printview.php:95 db_qbe.php:101 db_structure.php:50 -#: db_tracking.php:34 export.php:352 navigation.php:326 +#: db_export.php:32 db_printview.php:94 db_qbe.php:98 db_structure.php:49 +#: db_tracking.php:30 export.php:350 navigation.php:325 msgid "No tables found in database." msgstr "Non ci sono tabelle nel database." -#: db_export.php:42 db_search.php:326 server_export.php:26 +#: db_export.php:42 db_search.php:326 server_export.php:24 msgid "Select All" msgstr "Seleziona tutto" -#: db_export.php:44 db_search.php:329 server_export.php:28 +#: db_export.php:44 db_search.php:329 server_export.php:26 msgid "Unselect All" msgstr "Deseleziona tutto" -#: db_operations.php:37 tbl_create.php:49 +#: db_operations.php:33 tbl_create.php:47 msgid "The database name is empty!" msgstr "Il nome del DataBase è vuoto!" -#: db_operations.php:235 +#: db_operations.php:231 #, php-format msgid "Database %s has been renamed to %s" msgstr "Il DataBase %s è stato rinominato in %s" -#: db_operations.php:239 +#: db_operations.php:235 #, php-format msgid "Database %s has been copied to %s" msgstr "Il Database %s è stato copiato in %s" -#: db_operations.php:411 +#: db_operations.php:347 msgid "Rename database to" msgstr "Rinomina il DataBase in" -#: db_operations.php:416 server_processlist.php:56 +#: db_operations.php:352 server_processlist.php:56 msgid "Command" msgstr "Comando" -#: db_operations.php:428 tbl_change.php:1141 +#: db_operations.php:364 tbl_change.php:1039 msgid "and then" msgstr "e quindi" -#: db_operations.php:454 +#: db_operations.php:390 msgid "Copy database to" msgstr "Copia il Database in" -#: db_operations.php:461 tbl_operations.php:527 tbl_tracking.php:387 +#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Solo struttura" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:389 +#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Struttura e dati" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:388 +#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Solo dati" -#: db_operations.php:471 +#: db_operations.php:407 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE prima di copiare" -#: db_operations.php:474 libraries/export/sql.php:51 +#: db_operations.php:410 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 -#: libraries/export/sql.php:81 tbl_operations.php:535 +#: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "Aggiungi %s" -#: db_operations.php:478 libraries/export/sql.php:77 tbl_operations.php:298 -#: tbl_operations.php:537 +#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Aggiungi valore AUTO_INCREMENT" -#: db_operations.php:482 tbl_operations.php:544 +#: db_operations.php:418 tbl_operations.php:542 msgid "Add constraints" msgstr "Aggiungi vincoli" -#: db_operations.php:495 +#: db_operations.php:431 msgid "Switch to copied database" msgstr "Passare al Database copiato" -#: db_operations.php:536 -msgid "BLOB Repository" -msgstr "Repository BLOB" - -#: db_operations.php:539 db_tracking.php:75 libraries/common.lib.php:1357 -#: libraries/server_links.inc.php:48 server_processlist.php:58 -#: tbl_tracking.php:595 test/theme.php:100 -msgid "Status" -msgstr "Stato" - -#: db_operations.php:547 -msgctxt "BLOB repository" -msgid "Enabled" -msgstr "Attivato" - -#: db_operations.php:551 -msgid "Disable" -msgstr "Disabilita" - -#: db_operations.php:561 -msgid "Damaged" -msgstr "Danneggiato" - -#: db_operations.php:565 -msgctxt "BLOB repository" -msgid "Repair" -msgstr "Riparazione" - -#: db_operations.php:573 -msgctxt "BLOB repository" -msgid "Disabled" -msgstr "Disabilitato" - -#: db_operations.php:577 -msgid "Enable" -msgstr "Abilita" - -#: db_operations.php:601 libraries/Index.class.php:447 +#: db_operations.php:451 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 -#: server_collations.php:53 server_collations.php:65 server_databases.php:110 -#: tbl_operations.php:362 tbl_select.php:135 tbl_structure.php:178 -#: tbl_structure.php:766 tbl_tracking.php:274 tbl_tracking.php:325 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 +#: server_collations.php:53 server_collations.php:65 server_databases.php:108 +#: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:177 +#: tbl_structure.php:764 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "Collation" -#: db_operations.php:614 main.php:315 pdf_schema.php:33 -#, php-format +#: db_operations.php:464 pdf_schema.php:32 +#, fuzzy, php-format +#| msgid "" +#| "The additional features for working with linked tables have been " +#| "deactivated. To find out why click %shere%s." msgid "" -"The additional features for working with linked tables have been " -"deactivated. To find out why click %shere%s." +"The phpMyAdmin configuration storage has been deactivated. To find out why " +"click %shere%s." msgstr "" "Le caratteristiche aggiuntive sono state disattivate per funzionare con le " "tabelle linkate. Per scoprire perché clicca %squi%s." -#: db_operations.php:647 +#: db_operations.php:497 msgid "Edit PDF Pages" msgstr "Modifica pagine PDF" -#: db_printview.php:103 db_tracking.php:71 db_tracking.php:156 +#: db_printview.php:102 db_tracking.php:67 db_tracking.php:152 #: libraries/db_structure.lib.php:37 libraries/export/xml.php:327 -#: libraries/header.inc.php:125 pdf_pages.php:423 server_privileges.php:1657 -#: server_privileges.php:1713 server_privileges.php:1977 -#: server_synchronize.php:422 server_synchronize.php:865 tbl_tracking.php:591 +#: libraries/header.inc.php:125 pdf_pages.php:422 server_privileges.php:1661 +#: server_privileges.php:1717 server_privileges.php:1981 +#: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "Tabella" -#: db_printview.php:104 libraries/db_structure.lib.php:47 +#: db_printview.php:103 libraries/db_structure.lib.php:47 #: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 -#: navigation.php:629 navigation.php:651 server_databases.php:121 -#: tbl_printview.php:392 tbl_structure.php:364 tbl_structure.php:776 +#: navigation.php:628 navigation.php:650 server_databases.php:119 +#: tbl_printview.php:391 tbl_structure.php:362 tbl_structure.php:774 msgid "Rows" msgstr "Righe" -#: db_printview.php:108 libraries/db_structure.lib.php:58 tbl_indexes.php:189 +#: db_printview.php:107 libraries/db_structure.lib.php:58 tbl_indexes.php:188 msgid "Size" msgstr "Dimensione" -#: db_printview.php:161 db_structure.php:456 libraries/export/sql.php:556 +#: db_printview.php:160 db_structure.php:442 libraries/export/sql.php:556 #: libraries/export/sql.php:896 msgid "in use" msgstr "in uso" -#: db_printview.php:186 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:511 pdf_schema.php:1240 tbl_printview.php:432 -#: tbl_structure.php:808 +#: db_printview.php:185 libraries/db_info.inc.php:86 +#: libraries/export/sql.php:511 pdf_schema.php:1239 tbl_printview.php:431 +#: tbl_structure.php:806 msgid "Creation" msgstr "Creazione" -#: db_printview.php:195 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:516 pdf_schema.php:1245 tbl_printview.php:442 -#: tbl_structure.php:816 +#: db_printview.php:194 libraries/db_info.inc.php:91 +#: libraries/export/sql.php:516 pdf_schema.php:1244 tbl_printview.php:441 +#: tbl_structure.php:814 msgid "Last update" msgstr "Ultimo cambiamento" -#: db_printview.php:204 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:521 pdf_schema.php:1250 tbl_printview.php:452 -#: tbl_structure.php:824 +#: db_printview.php:203 libraries/db_info.inc.php:96 +#: libraries/export/sql.php:521 pdf_schema.php:1249 tbl_printview.php:451 +#: tbl_structure.php:822 msgid "Last check" msgstr "Ultimo controllo" -#: db_printview.php:221 db_structure.php:479 +#: db_printview.php:220 db_structure.php:465 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -387,94 +367,94 @@ msgid_plural "%s tables" msgstr[0] "%s tabella(e)" msgstr[1] "%s tabella(e)" -#: db_qbe.php:28 import.php:453 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1980 libraries/sql_query_form.lib.php:138 -#: tbl_operations.php:212 tbl_relation.php:291 tbl_row_action.php:130 -#: view_operations.php:61 +#: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 +#: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "La query è stata eseguita con successo" -#: db_qbe.php:41 +#: db_qbe.php:38 msgid "You have to choose at least one column to display" msgstr "Devi scegliere almeno una Colonna da mostrare" -#: db_qbe.php:199 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:865 +#: db_qbe.php:196 libraries/db_structure.lib.php:95 +#: libraries/display_tbl.lib.php:864 msgid "Sort" msgstr "Ordinamento" -#: db_qbe.php:208 db_qbe.php:242 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:522 libraries/display_tbl.lib.php:827 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:259 -#: tbl_select.php:311 +#: db_qbe.php:205 db_qbe.php:239 libraries/db_structure.lib.php:102 +#: libraries/display_tbl.lib.php:521 libraries/display_tbl.lib.php:826 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:257 +#: tbl_select.php:310 msgid "Ascending" msgstr "Crescente" -#: db_qbe.php:209 db_qbe.php:250 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:527 libraries/display_tbl.lib.php:824 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:260 -#: tbl_select.php:312 +#: db_qbe.php:206 db_qbe.php:247 libraries/db_structure.lib.php:110 +#: libraries/display_tbl.lib.php:526 libraries/display_tbl.lib.php:823 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:258 +#: tbl_select.php:311 msgid "Descending" msgstr "Decrescente" -#: db_qbe.php:263 db_tracking.php:77 libraries/display_tbl.lib.php:307 -#: tbl_change.php:275 tbl_tracking.php:596 +#: db_qbe.php:260 db_tracking.php:73 libraries/display_tbl.lib.php:306 +#: tbl_change.php:270 tbl_tracking.php:591 msgid "Show" msgstr "Mostra" -#: db_qbe.php:299 +#: db_qbe.php:296 msgid "Criteria" msgstr "Criterio" -#: db_qbe.php:352 db_qbe.php:434 db_qbe.php:526 db_qbe.php:557 +#: db_qbe.php:349 db_qbe.php:431 db_qbe.php:523 db_qbe.php:554 msgid "Ins" msgstr "Aggiungi" -#: db_qbe.php:356 db_qbe.php:438 db_qbe.php:523 db_qbe.php:554 +#: db_qbe.php:353 db_qbe.php:435 db_qbe.php:520 db_qbe.php:551 msgid "And" msgstr "e" -#: db_qbe.php:365 db_qbe.php:446 db_qbe.php:528 db_qbe.php:559 +#: db_qbe.php:362 db_qbe.php:443 db_qbe.php:525 db_qbe.php:556 msgid "Del" msgstr "Elimina" -#: db_qbe.php:369 db_qbe.php:450 db_qbe.php:521 db_qbe.php:552 -#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:778 -#: server_privileges.php:297 tbl_change.php:1027 tbl_indexes.php:249 -#: tbl_select.php:285 +#: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 +#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:777 +#: server_privileges.php:296 tbl_change.php:925 tbl_indexes.php:248 +#: tbl_select.php:284 msgid "Or" msgstr "Oppure" -#: db_qbe.php:506 +#: db_qbe.php:503 msgid "Modify" msgstr "Modifica" -#: db_qbe.php:583 +#: db_qbe.php:580 #, fuzzy #| msgid "Add/Delete Criteria Row" msgid "Add/Delete criteria rows" msgstr "Aggiungi/Cancella criterio" -#: db_qbe.php:595 +#: db_qbe.php:592 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Add/Delete columns" msgstr "Aggiungi/Cancella campo" -#: db_qbe.php:608 db_qbe.php:633 +#: db_qbe.php:605 db_qbe.php:630 msgid "Update Query" msgstr "Aggiorna Query" -#: db_qbe.php:616 +#: db_qbe.php:613 msgid "Use Tables" msgstr "Utilizza tabelle" -#: db_qbe.php:639 +#: db_qbe.php:636 #, php-format msgid "SQL query on database %s:" msgstr "SQL-query sul database %s:" -#: db_qbe.php:933 libraries/common.lib.php:1222 +#: db_qbe.php:930 libraries/common.lib.php:1215 msgid "Submit Query" msgstr "Invia Query" @@ -514,17 +494,17 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s corrisponde/ono nella tabella %s" msgstr[1] "%s corrisponde/ono nella tabella %s" -#: db_search.php:249 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2831 -#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:49 -#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:466 +#: db_search.php:249 db_structure.php:75 db_structure.php:76 +#: db_structure.php:88 db_structure.php:90 db_structure.php:101 +#: db_structure.php:103 libraries/common.lib.php:2836 +#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 +#: tbl_structure.php:35 tbl_structure.php:47 tbl_structure.php:464 msgid "Browse" msgstr "Mostra" -#: db_search.php:254 libraries/display_tbl.lib.php:1164 -#: libraries/display_tbl.lib.php:2055 libraries/sql_query_form.lib.php:453 -#: pdf_pages.php:285 pdf_pages.php:424 pdf_pages.php:460 pdf_pages.php:488 +#: db_search.php:254 libraries/display_tbl.lib.php:1163 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 msgid "Delete" @@ -564,66 +544,66 @@ msgstr "Nella/e tabella/e:" msgid "Inside column:" msgstr "Campi contenuti:" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2830 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:75 +#: db_structure.php:79 db_structure.php:80 db_structure.php:92 +#: db_structure.php:93 db_structure.php:105 db_structure.php:106 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 +#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Inserisci" -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2827 libraries/common.lib.php:2834 -#: libraries/db_links.inc.php:62 libraries/export/htmlword.php:22 +#: db_structure.php:81 db_structure.php:94 db_structure.php:107 +#: libraries/common.lib.php:2832 libraries/common.lib.php:2839 +#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 -#: libraries/tbl_links.inc.php:55 pmd_general.php:133 -#: server_privileges.php:593 server_replication.php:314 tbl_tracking.php:268 +#: libraries/tbl_links.inc.php:54 pmd_general.php:133 +#: server_privileges.php:592 server_replication.php:313 tbl_tracking.php:263 msgid "Structure" msgstr "Struttura" -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:544 db_structure.php:545 db_tracking.php:90 -#: libraries/Index.class.php:482 libraries/common.lib.php:1659 -#: libraries/db_links.inc.php:99 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:126 -#: server_databases.php:351 tbl_structure.php:26 tbl_structure.php:150 -#: tbl_structure.php:151 tbl_structure.php:470 +#: db_structure.php:82 db_structure.php:83 db_structure.php:95 +#: db_structure.php:96 db_structure.php:108 db_structure.php:109 +#: db_structure.php:530 db_structure.php:531 db_tracking.php:86 +#: libraries/Index.class.php:482 libraries/common.lib.php:1663 +#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 +#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 +#: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" msgstr "Elimina" -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:542 db_structure.php:543 libraries/common.lib.php:1658 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:104 +#: db_structure.php:84 db_structure.php:85 db_structure.php:97 +#: db_structure.php:98 db_structure.php:110 db_structure.php:111 +#: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 +#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 msgid "Empty" msgstr "Svuota" -#: db_structure.php:315 libraries/tbl_links.inc.php:99 +#: db_structure.php:301 libraries/tbl_links.inc.php:98 #, php-format msgid "Table %s has been emptied" msgstr "La tabella %s è stata svuotata" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "View %s has been dropped" msgstr "La vista %s è stata eliminata" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "Table %s has been dropped" msgstr "La tabella %s è stata eliminata" -#: db_structure.php:332 +#: db_structure.php:318 msgid "Tracking is active." msgstr "Il tracking è attivo." -#: db_structure.php:334 +#: db_structure.php:320 msgid "Tracking is not active." msgstr "Il tracking non è attivo." -#: db_structure.php:419 libraries/display_tbl.lib.php:1943 +#: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -632,162 +612,168 @@ msgstr "" "Questa visuale ha, come minimo, questo numero di righe. Per informazioni " "controlla la %sdocumentazione%s." -#: db_structure.php:433 db_structure.php:447 libraries/header.inc.php:125 -#: libraries/tbl_info.inc.php:65 tbl_structure.php:184 test/theme.php:73 +#: db_structure.php:419 db_structure.php:433 libraries/header.inc.php:125 +#: libraries/tbl_info.inc.php:60 tbl_structure.php:183 test/theme.php:73 msgid "View" msgstr "Vista" -#: db_structure.php:484 libraries/db_structure.lib.php:40 -#: libraries/server_links.inc.php:69 server_replication.php:32 -#: server_replication.php:163 server_status.php:368 +#: db_structure.php:470 libraries/db_structure.lib.php:40 +#: libraries/server_links.inc.php:69 server_replication.php:31 +#: server_replication.php:162 server_status.php:368 msgid "Replication" msgstr "Replicazione" -#: db_structure.php:488 +#: db_structure.php:474 msgid "Sum" msgstr "Totali" -#: db_structure.php:495 libraries/StorageEngine.class.php:349 +#: db_structure.php:481 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s è il motore di memorizzazione predefinito su questo server MySQL." -#: db_structure.php:523 db_structure.php:540 db_structure.php:541 -#: libraries/display_tbl.lib.php:2080 libraries/display_tbl.lib.php:2085 -#: libraries/mult_submits.inc.php:15 server_databases.php:345 -#: server_databases.php:350 server_privileges.php:1588 tbl_structure.php:454 -#: tbl_structure.php:463 +#: db_structure.php:509 db_structure.php:526 db_structure.php:527 +#: libraries/display_tbl.lib.php:2039 libraries/display_tbl.lib.php:2044 +#: libraries/mult_submits.inc.php:15 server_databases.php:343 +#: server_databases.php:348 server_privileges.php:1592 tbl_structure.php:452 +#: tbl_structure.php:461 msgid "With selected:" msgstr "Se selezionati:" -#: db_structure.php:526 libraries/display_tbl.lib.php:2075 -#: server_databases.php:347 server_privileges.php:569 -#: server_privileges.php:1591 tbl_structure.php:457 +#: db_structure.php:512 libraries/display_tbl.lib.php:2034 +#: server_databases.php:345 server_privileges.php:568 +#: server_privileges.php:1595 tbl_structure.php:455 msgid "Check All" msgstr "Seleziona tutti" -#: db_structure.php:530 libraries/display_tbl.lib.php:2076 -#: libraries/replication_gui.lib.php:35 server_databases.php:349 -#: server_privileges.php:572 server_privileges.php:1595 tbl_structure.php:461 +#: db_structure.php:516 libraries/display_tbl.lib.php:2035 +#: libraries/replication_gui.lib.php:35 server_databases.php:347 +#: server_privileges.php:571 server_privileges.php:1599 tbl_structure.php:459 msgid "Uncheck All" msgstr "Deseleziona tutti" -#: db_structure.php:535 +#: db_structure.php:521 msgid "Check tables having overhead" msgstr "Controllo addizionale" -#: db_structure.php:546 db_structure.php:547 db_structure.php:598 -#: libraries/display_tbl.lib.php:2179 libraries/mult_submits.inc.php:27 -#: tbl_structure.php:491 tbl_structure.php:493 +#: db_structure.php:532 db_structure.php:533 db_structure.php:584 +#: libraries/display_tbl.lib.php:2138 libraries/mult_submits.inc.php:27 +#: tbl_structure.php:489 tbl_structure.php:491 msgid "Print view" msgstr "Visualizza per stampa" -#: db_structure.php:548 db_structure.php:549 libraries/mult_submits.inc.php:41 -#: tbl_operations.php:580 +#: db_structure.php:534 db_structure.php:535 libraries/mult_submits.inc.php:41 +#: tbl_operations.php:578 msgid "Check table" msgstr "Controlla tabella" -#: db_structure.php:550 db_structure.php:551 libraries/mult_submits.inc.php:46 -#: tbl_operations.php:620 tbl_structure.php:708 tbl_structure.php:710 +#: db_structure.php:536 db_structure.php:537 libraries/mult_submits.inc.php:46 +#: tbl_operations.php:618 tbl_structure.php:706 tbl_structure.php:708 msgid "Optimize table" msgstr "Ottimizza tabella" -#: db_structure.php:552 db_structure.php:553 libraries/mult_submits.inc.php:51 -#: tbl_operations.php:610 +#: db_structure.php:538 db_structure.php:539 libraries/mult_submits.inc.php:51 +#: tbl_operations.php:608 msgid "Repair table" msgstr "Ripara tabella" -#: db_structure.php:554 db_structure.php:555 libraries/mult_submits.inc.php:56 -#: tbl_operations.php:600 +#: db_structure.php:540 db_structure.php:541 libraries/mult_submits.inc.php:56 +#: tbl_operations.php:598 msgid "Analyze table" msgstr "Analizza tabella" -#: db_structure.php:556 db_structure.php:557 libraries/db_links.inc.php:70 -#: libraries/display_export.lib.php:82 libraries/display_tbl.lib.php:2093 -#: libraries/display_tbl.lib.php:2224 libraries/mult_submits.inc.php:61 -#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:81 -#: pmd_pdf.php:83 pmd_pdf.php:108 server_privileges.php:1372 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 +#: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 +#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 +#: pmd_pdf.php:81 pmd_pdf.php:106 server_privileges.php:1376 #: setup/frames/menu.inc.php:22 tbl_row_action.php:58 msgid "Export" msgstr "Esporta" -#: db_structure.php:605 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:591 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "Data Dictionary" -#: db_tracking.php:65 +#: db_tracking.php:61 msgid "Tracked tables" msgstr "Controlla tabelle" -#: db_tracking.php:70 libraries/export/htmlword.php:85 +#: db_tracking.php:66 libraries/export/htmlword.php:85 #: libraries/export/latex.php:152 libraries/export/odt.php:112 #: libraries/export/sql.php:339 libraries/export/texytext.php:84 #: libraries/export/xml.php:254 libraries/header.inc.php:105 -#: libraries/header_printview.inc.php:57 server_databases.php:168 -#: server_privileges.php:1652 server_privileges.php:1713 -#: server_privileges.php:1971 server_processlist.php:55 -#: server_synchronize.php:1178 server_synchronize.php:1182 -#: tbl_tracking.php:590 test/theme.php:64 +#: libraries/header_printview.inc.php:57 server_databases.php:166 +#: server_privileges.php:1656 server_privileges.php:1717 +#: server_privileges.php:1975 server_processlist.php:55 +#: server_synchronize.php:1177 server_synchronize.php:1181 +#: tbl_tracking.php:585 test/theme.php:64 msgid "Database" msgstr "Database" -#: db_tracking.php:72 +#: db_tracking.php:68 msgid "Last version" msgstr "Ultima versione" -#: db_tracking.php:73 tbl_tracking.php:593 +#: db_tracking.php:69 tbl_tracking.php:588 msgid "Created" msgstr "Creato" -#: db_tracking.php:74 tbl_tracking.php:594 +#: db_tracking.php:70 tbl_tracking.php:589 msgid "Updated" msgstr "Aggiornato" -#: db_tracking.php:76 libraries/Index.class.php:439 -#: libraries/db_structure.lib.php:44 server_databases.php:202 -#: server_privileges.php:1534 server_privileges.php:1717 -#: server_privileges.php:2065 tbl_structure.php:186 +#: db_tracking.php:71 libraries/common.lib.php:1361 +#: libraries/server_links.inc.php:48 server_processlist.php:58 +#: tbl_tracking.php:590 test/theme.php:100 +msgid "Status" +msgstr "Stato" + +#: db_tracking.php:72 libraries/Index.class.php:439 +#: libraries/db_structure.lib.php:44 server_databases.php:200 +#: server_privileges.php:1538 server_privileges.php:1721 +#: server_privileges.php:2069 tbl_structure.php:185 msgid "Action" msgstr "Azione" -#: db_tracking.php:87 db_tracking.php:119 +#: db_tracking.php:83 db_tracking.php:115 msgid "Delete tracking data for this table" msgstr "Cancella dati di tracciamento per questa tabella" -#: db_tracking.php:105 tbl_tracking.php:547 tbl_tracking.php:605 -#: tbl_tracking.php:612 +#: db_tracking.php:101 tbl_tracking.php:542 tbl_tracking.php:600 +#: tbl_tracking.php:607 msgid "active" msgstr "attivo" -#: db_tracking.php:107 tbl_tracking.php:549 tbl_tracking.php:607 -#: tbl_tracking.php:609 +#: db_tracking.php:103 tbl_tracking.php:544 tbl_tracking.php:602 +#: tbl_tracking.php:604 msgid "not active" msgstr "non attivo" -#: db_tracking.php:120 +#: db_tracking.php:116 msgid "Versions" msgstr "Versioni" -#: db_tracking.php:121 tbl_tracking.php:378 tbl_tracking.php:623 +#: db_tracking.php:117 tbl_tracking.php:373 tbl_tracking.php:618 msgid "Tracking report" msgstr "Rapporto tracking" -#: db_tracking.php:122 tbl_tracking.php:250 tbl_tracking.php:623 +#: db_tracking.php:118 tbl_tracking.php:245 tbl_tracking.php:618 #, fuzzy msgid "Structure snapshot" msgstr "Solo struttura" -#: db_tracking.php:151 +#: db_tracking.php:147 #, fuzzy msgid "Untracked tables" msgstr "Controlla tabella" -#: db_tracking.php:171 db_tracking.php:173 tbl_structure.php:527 -#: tbl_structure.php:529 +#: db_tracking.php:167 db_tracking.php:169 tbl_structure.php:525 +#: tbl_structure.php:527 msgid "Track table" msgstr "Controlla tabella" -#: db_tracking.php:199 +#: db_tracking.php:195 msgid "Database Log" msgstr "Log database" @@ -796,12 +782,12 @@ msgid "Selected export type has to be saved in file!" msgstr "" "Il tipo di esportazione selezionato necessita di essere salvato in un file!" -#: export.php:153 export.php:178 export.php:620 +#: export.php:152 export.php:177 export.php:615 #, php-format msgid "Insufficient space to save the file %s." msgstr "Spazio insufficiente per salvare il file %s." -#: export.php:287 +#: export.php:286 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -809,17 +795,17 @@ msgstr "" "Il file %s esiste già sul server: prego, cambiare nome del file o " "selezionare l'opzione \"sovrascrivi\"." -#: export.php:291 export.php:295 +#: export.php:290 export.php:294 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Il server web non possiede i privilegi per salvare il file %s." -#: export.php:622 +#: export.php:617 #, php-format msgid "Dump has been saved to file %s." msgstr "Il dump è stato salvato sul file %s." -#: import.php:59 +#: import.php:58 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -829,14 +815,14 @@ msgstr "" "Fai riferimento alla documentazione %sdocumentation%s Per i modi di aggirare " "questo limite." -#: import.php:278 import.php:331 libraries/File.class.php:840 -#: libraries/File.class.php:950 +#: import.php:277 import.php:330 libraries/File.class.php:566 +#: libraries/File.class.php:676 msgid "File could not be read" msgstr "Il file non può essere letto" -#: import.php:286 import.php:295 import.php:314 import.php:323 -#: libraries/File.class.php:1020 libraries/File.class.php:1028 -#: libraries/File.class.php:1044 libraries/File.class.php:1052 +#: import.php:285 import.php:294 import.php:313 import.php:322 +#: libraries/File.class.php:746 libraries/File.class.php:754 +#: libraries/File.class.php:770 libraries/File.class.php:778 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -846,7 +832,7 @@ msgstr "" "supportato. Altrimenti il supporto per questo tipo di compressione non è " "stato ancora implementato o è stato disabilitato dalla tua configurazione." -#: import.php:336 +#: import.php:335 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -856,31 +842,31 @@ msgstr "" "file, oppure è stato superata la dimensione massima consentita per il file, " "impostata nella configurazione di PHP. Vedi FAQ 1.16." -#: import.php:371 libraries/display_import.lib.php:23 +#: import.php:370 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "" "Non posso caricare i plugins di importazione, controlla la tua " "configurazione!" -#: import.php:396 +#: import.php:395 msgid "The bookmark has been deleted." msgstr "Il bookmark è stato cancellato." -#: import.php:400 +#: import.php:399 msgid "Showing bookmark" msgstr "Mostrando i segnalibri" -#: import.php:402 sql.php:625 +#: import.php:401 sql.php:618 #, php-format msgid "Bookmark %s created" msgstr "Segnalibro %s creato" -#: import.php:408 import.php:414 +#: import.php:407 import.php:413 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Importazione eseguita con successo, %d query eseguite." -#: import.php:423 +#: import.php:422 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -888,7 +874,7 @@ msgstr "" "Superato il tempo limite dello script, se vuoi finire l'importazione inoltra " "nuovamente il file e il processo riprenderà." -#: import.php:425 +#: import.php:424 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -897,19 +883,19 @@ msgstr "" "vuole dire che che phpMyAdmin non è in grado di ultimare l'operazione fino a " "che non verrà aumentato il parametro php time limits." -#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:240 +#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:239 #: user_password.php:110 msgid "Back" msgstr "Indietro" -#: index.php:188 +#: index.php:183 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin funziona meglio con browser che supportano frames" -#: js/messages.php:25 server_synchronize.php:344 server_synchronize.php:356 -#: server_synchronize.php:372 server_synchronize.php:379 -#: server_synchronize.php:738 server_synchronize.php:766 -#: server_synchronize.php:794 server_synchronize.php:806 +#: js/messages.php:25 server_synchronize.php:343 server_synchronize.php:355 +#: server_synchronize.php:371 server_synchronize.php:378 +#: server_synchronize.php:737 server_synchronize.php:765 +#: server_synchronize.php:793 server_synchronize.php:805 msgid "Click to select" msgstr "Clicca per selezionare" @@ -917,15 +903,15 @@ msgstr "Clicca per selezionare" msgid "Click to unselect" msgstr "Clicca per deselezionare" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:88 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:87 msgid "\"DROP DATABASE\" statements are disabled." msgstr "I comandi \"DROP DATABASE\" sono disabilitati." -#: js/messages.php:30 libraries/mult_submits.inc.php:257 sql.php:187 +#: js/messages.php:30 libraries/mult_submits.inc.php:256 sql.php:186 msgid "Do you really want to " msgstr "Confermi: " -#: js/messages.php:31 libraries/mult_submits.inc.php:257 sql.php:171 +#: js/messages.php:31 libraries/mult_submits.inc.php:256 sql.php:170 msgid "You are about to DESTROY a complete database!" msgstr "Si sta per DISTRUGGERE COMPLETAMENTE un intero DataBase!" @@ -955,11 +941,11 @@ msgstr "Il nome di host è vuoto!" msgid "The user name is empty!" msgstr "Il nome utente è vuoto!" -#: js/messages.php:44 server_privileges.php:1228 user_password.php:65 +#: js/messages.php:44 server_privileges.php:1229 user_password.php:65 msgid "The password is empty!" msgstr "La password è vuota!" -#: js/messages.php:45 server_privileges.php:1226 user_password.php:68 +#: js/messages.php:45 server_privileges.php:1227 user_password.php:68 msgid "The passwords aren't the same!" msgstr "La password non coincide!" @@ -967,27 +953,27 @@ msgstr "La password non coincide!" msgid "Cancel" msgstr "Annulla" -#: js/messages.php:52 pmd_save_pos.php:53 +#: js/messages.php:52 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "Le modifiche sono state salvate" -#: js/messages.php:53 pmd_relation_upd.php:48 +#: js/messages.php:53 pmd_relation_upd.php:47 msgid "Relation deleted" msgstr "Relazione cancellata" -#: js/messages.php:54 pmd_relation_new.php:63 +#: js/messages.php:54 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "Relazione \"FOREIGN KEY\" aggiunta" -#: js/messages.php:55 pmd_relation_new.php:85 +#: js/messages.php:55 pmd_relation_new.php:84 msgid "Internal relation added" msgstr "Aggiunte relazioni internet" -#: js/messages.php:56 pmd_relation_new.php:62 pmd_relation_new.php:87 +#: js/messages.php:56 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "Errore: relazione non aggiunta." -#: js/messages.php:57 pmd_relation_new.php:30 +#: js/messages.php:57 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "Errore: relazione già esistente." @@ -995,13 +981,13 @@ msgstr "Errore: relazione già esistente." msgid "Error saving coordinates for Designer." msgstr "Errore nel salvare le coordinate per il Designer." -#: js/messages.php:59 libraries/relation.lib.php:94 -#: libraries/relation.lib.php:106 +#: js/messages.php:59 libraries/relation.lib.php:89 +#: libraries/relation.lib.php:101 msgid "General relation features" msgstr "Caratteristiche Generali di Relazione" -#: js/messages.php:59 libraries/relation.lib.php:88 -#: libraries/relation.lib.php:95 +#: js/messages.php:59 libraries/relation.lib.php:83 +#: libraries/relation.lib.php:90 msgid "Disabled" msgstr "Disabilitata" @@ -1017,7 +1003,7 @@ msgstr "Seleziona Foreign Key" msgid "Please select the primary key or a unique key" msgstr "Seleziona la chiave primaria o una chiave univoca" -#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:547 +#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" @@ -1044,10 +1030,10 @@ msgid "Prev" msgstr "Precedente" #. l10n: Display text for next month link in calendar -#: js/messages.php:81 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:337 -#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:422 -#: tbl_structure.php:800 +#: js/messages.php:81 libraries/common.lib.php:2358 +#: libraries/common.lib.php:2361 libraries/display_tbl.lib.php:336 +#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 +#: tbl_structure.php:798 msgid "Next" msgstr "Prossimo" @@ -1105,63 +1091,63 @@ msgid "December" msgstr "Dicembre" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1562 +#: js/messages.php:101 libraries/common.lib.php:1566 msgid "Jan" msgstr "Gen" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1564 +#: js/messages.php:103 libraries/common.lib.php:1568 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1566 +#: js/messages.php:105 libraries/common.lib.php:1570 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1568 +#: js/messages.php:107 libraries/common.lib.php:1572 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1570 +#: js/messages.php:109 libraries/common.lib.php:1574 msgctxt "Short month name" msgid "May" msgstr "Mag" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1572 +#: js/messages.php:111 libraries/common.lib.php:1576 msgid "Jun" msgstr "Giu" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1574 +#: js/messages.php:113 libraries/common.lib.php:1578 msgid "Jul" msgstr "lug" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1576 +#: js/messages.php:115 libraries/common.lib.php:1580 msgid "Aug" msgstr "ago" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1578 +#: js/messages.php:117 libraries/common.lib.php:1582 msgid "Sep" msgstr "set" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1580 +#: js/messages.php:119 libraries/common.lib.php:1584 msgid "Oct" msgstr "ott" #. l10n: Short month name -#: js/messages.php:121 libraries/common.lib.php:1582 +#: js/messages.php:121 libraries/common.lib.php:1586 msgid "Nov" msgstr "nov" #. l10n: Short month name -#: js/messages.php:123 libraries/common.lib.php:1584 +#: js/messages.php:123 libraries/common.lib.php:1588 msgid "Dec" msgstr "dic" @@ -1194,37 +1180,37 @@ msgid "Saturday" msgstr "Sabato" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1587 +#: js/messages.php:136 libraries/common.lib.php:1591 msgid "Sun" msgstr "Dom" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1589 +#: js/messages.php:138 libraries/common.lib.php:1593 msgid "Mon" msgstr "Lun" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1591 +#: js/messages.php:140 libraries/common.lib.php:1595 msgid "Tue" msgstr "Mar" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1593 +#: js/messages.php:142 libraries/common.lib.php:1597 msgid "Wed" msgstr "Mer" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1595 +#: js/messages.php:144 libraries/common.lib.php:1599 msgid "Thu" msgstr "Gio" #. l10n: Short week day name -#: js/messages.php:146 libraries/common.lib.php:1597 +#: js/messages.php:146 libraries/common.lib.php:1601 msgid "Fri" msgstr "Ven" #. l10n: Short week day name -#: js/messages.php:148 libraries/common.lib.php:1599 +#: js/messages.php:148 libraries/common.lib.php:1603 msgid "Sat" msgstr "Sab" @@ -1286,75 +1272,74 @@ msgstr "Secondo" msgid "Font size" msgstr "Dimensione font" -#: libraries/File.class.php:336 libraries/File.class.php:424 -#: libraries/File.class.php:561 libraries/File.class.php:700 -msgid "Unknown error in file upload." -msgstr "Errore sconosciuto nel caricamento del file." - -#: libraries/File.class.php:406 +#: libraries/File.class.php:315 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:409 +#: libraries/File.class.php:318 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:412 +#: libraries/File.class.php:321 msgid "The uploaded file was only partially uploaded." msgstr "Il file è stato solo parzialmente caricato." -#: libraries/File.class.php:415 +#: libraries/File.class.php:324 msgid "Missing a temporary folder." msgstr "Non trovo la cartella temporanea." -#: libraries/File.class.php:418 +#: libraries/File.class.php:327 msgid "Failed to write file to disk." msgstr "Non riesco a scrivere il file su disco." -#: libraries/File.class.php:421 +#: libraries/File.class.php:330 msgid "File upload stopped by extension." msgstr "Caricamento del file interrotto per estensione errata." -#: libraries/File.class.php:898 +#: libraries/File.class.php:333 +msgid "Unknown error in file upload." +msgstr "Errore sconosciuto nel caricamento del file." + +#: libraries/File.class.php:624 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 FAQ 1.11" -#: libraries/Index.class.php:427 tbl_relation.php:528 +#: libraries/Index.class.php:427 tbl_relation.php:526 msgid "No index defined!" msgstr "Nessun indice definito!" -#: libraries/Index.class.php:432 server_databases.php:131 tbl_tracking.php:315 +#: libraries/Index.class.php:432 server_databases.php:129 tbl_tracking.php:310 msgid "Indexes" msgstr "Indici" #: libraries/Index.class.php:443 libraries/mult_submits.inc.php:102 -#: libraries/tbl_properties.inc.php:518 tbl_structure.php:32 -#: tbl_structure.php:154 tbl_structure.php:158 tbl_structure.php:473 -#: tbl_tracking.php:321 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:31 +#: tbl_structure.php:153 tbl_structure.php:157 tbl_structure.php:471 +#: tbl_tracking.php:316 msgid "Unique" msgstr "Unica" -#: libraries/Index.class.php:444 tbl_tracking.php:322 +#: libraries/Index.class.php:444 tbl_tracking.php:317 msgid "Packed" msgstr "Compresso" -#: libraries/Index.class.php:446 tbl_tracking.php:324 +#: libraries/Index.class.php:446 tbl_tracking.php:319 msgid "Cardinality" msgstr "Cardinalità" -#: libraries/Index.class.php:449 tbl_tracking.php:278 tbl_tracking.php:327 +#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322 msgid "Comment" msgstr "Commenti" #: libraries/Index.class.php:465 libraries/common.lib.php:609 -#: libraries/common.lib.php:1198 libraries/display_tbl.lib.php:1116 +#: libraries/common.lib.php:1191 libraries/display_tbl.lib.php:1115 #: libraries/import.lib.php:1119 libraries/import.lib.php:1143 -#: pdf_pages.php:284 setup/frames/index.inc.php:124 +#: pdf_pages.php:283 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:349 tbl_row_action.php:68 msgid "Edit" msgstr "Modifica" @@ -1378,15 +1363,15 @@ msgstr "" "essere rimossi." #: libraries/List_Database.class.php:430 libraries/server_links.inc.php:40 -#: server_databases.php:87 server_privileges.php:1652 +#: server_databases.php:85 server_privileges.php:1656 #: setup/lib/messages.inc.php:107 test/theme.php:92 msgid "Databases" msgstr "Database" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:259 libraries/import.lib.php:134 pdf_schema.php:31 -#: pdf_schema.php:231 tbl_change.php:1023 tbl_operations.php:212 -#: tbl_relation.php:289 view_operations.php:61 +#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 +#: tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Errore" @@ -1411,42 +1396,42 @@ msgid_plural "%1$d rows inserted." msgstr[0] "%1$d riga inserita." msgstr[1] "%1$d righe inserite." -#: libraries/StorageEngine.class.php:196 +#: libraries/StorageEngine.class.php:194 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:352 +#: libraries/StorageEngine.class.php:354 #, php-format msgid "%s is available on this MySQL server." msgstr "%s è disponibile su questo server MySQL." -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:357 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s è stato disabilitato su questo server MySQL." -#: libraries/StorageEngine.class.php:359 +#: libraries/StorageEngine.class.php:361 #, 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:1018 +#: libraries/Table.class.php:1017 msgid "Invalid database" msgstr "Database non valido" -#: libraries/Table.class.php:1032 tbl_get_field.php:25 +#: libraries/Table.class.php:1031 tbl_get_field.php:25 msgid "Invalid table name" msgstr "Nome tabella non valido" -#: libraries/Table.class.php:1047 +#: libraries/Table.class.php:1046 #, 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:1131 +#: libraries/Table.class.php:1129 #, php-format msgid "Table %s has been renamed to %s" msgstr "La tabella %s è stata rinominata %s" @@ -1464,22 +1449,22 @@ msgstr "Nessuna preview disponibile." msgid "take it" msgstr "prendilo" -#: libraries/Theme_Manager.class.php:114 +#: 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:152 +#: libraries/Theme_Manager.class.php:147 #, php-format msgid "Theme %s not found!" msgstr "Tema %s non trovato!" -#: libraries/Theme_Manager.class.php:220 +#: 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:296 test/theme.php:160 themes.php:20 +#: libraries/Theme_Manager.class.php:291 test/theme.php:160 themes.php:20 #: themes.php:40 msgid "Theme / Style" msgstr "Tema / Stile" @@ -1594,19 +1579,19 @@ msgstr "Nessuna chiave di autentificazione valida inserita" msgid "Authenticating..." msgstr "Autenticazione..." -#: libraries/blobstreaming.lib.php:689 +#: libraries/blobstreaming.lib.php:340 msgid "View image" msgstr "Visualizza immagine" -#: libraries/blobstreaming.lib.php:693 +#: libraries/blobstreaming.lib.php:344 msgid "Play audio" msgstr "Avvia audio" -#: libraries/blobstreaming.lib.php:698 +#: libraries/blobstreaming.lib.php:349 msgid "View video" msgstr "Visualizza video" -#: libraries/blobstreaming.lib.php:702 +#: libraries/blobstreaming.lib.php:353 msgid "Download file" msgstr "Scarica file" @@ -1660,7 +1645,7 @@ msgstr "Server" msgid "Invalid authentication method set in configuration:" msgstr "Metodo di autenticazione settato nella configurazione non valido:" -#: libraries/common.inc.php:909 +#: libraries/common.inc.php:908 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Si dovrebbe aggiornare %s alla versione %s o successiva." @@ -1685,7 +1670,8 @@ msgstr "en" #: libraries/common.lib.php:425 libraries/common.lib.php:427 #: libraries/common.lib.php:429 libraries/common.lib.php:445 #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 -#: libraries/display_export.lib.php:163 libraries/relation.lib.php:84 +#: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 +#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 #: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" @@ -1700,148 +1686,148 @@ msgstr "query SQL" msgid "MySQL said: " msgstr "Messaggio di MySQL: " -#: libraries/common.lib.php:1136 +#: libraries/common.lib.php:1129 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1174 setup/lib/messages.inc.php:350 +#: libraries/common.lib.php:1167 setup/lib/messages.inc.php:350 msgid "Explain SQL" msgstr "Spiega SQL" -#: libraries/common.lib.php:1177 +#: libraries/common.lib.php:1170 msgid "Skip Explain SQL" msgstr "Non Spiegare SQL" -#: libraries/common.lib.php:1211 +#: libraries/common.lib.php:1204 msgid "Without PHP Code" msgstr "senza codice PHP" -#: libraries/common.lib.php:1214 setup/lib/messages.inc.php:352 +#: libraries/common.lib.php:1207 setup/lib/messages.inc.php:352 msgid "Create PHP Code" msgstr "Crea il codice PHP" -#: libraries/common.lib.php:1232 server_status.php:451 +#: libraries/common.lib.php:1225 server_status.php:451 #: setup/lib/messages.inc.php:351 msgid "Refresh" msgstr "Aggiorna" -#: libraries/common.lib.php:1241 +#: libraries/common.lib.php:1234 msgid "Skip Validate SQL" msgstr "Non Validare SQL" -#: libraries/common.lib.php:1244 setup/lib/messages.inc.php:353 +#: libraries/common.lib.php:1237 setup/lib/messages.inc.php:353 msgid "Validate SQL" msgstr "Valida SQL" -#: libraries/common.lib.php:1283 +#: libraries/common.lib.php:1287 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1285 +#: libraries/common.lib.php:1289 #, fuzzy #| msgid "Engines" msgid "Inline" msgstr "In linea" -#: libraries/common.lib.php:1339 libraries/common.lib.php:1354 +#: libraries/common.lib.php:1343 libraries/common.lib.php:1358 msgid "Profiling" msgstr "Profiling" -#: libraries/common.lib.php:1358 libraries/tbl_triggers.lib.php:27 +#: libraries/common.lib.php:1362 libraries/tbl_triggers.lib.php:27 #: server_processlist.php:57 msgid "Time" msgstr "Tempo" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "B" msgstr "B" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "KiB" msgstr "KiB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "MiB" msgstr "MiB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "GiB" msgstr "GiB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "TiB" msgstr "TiB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "PiB" msgstr "PiB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "EiB" msgstr "EiB" #. l10n: Thousands separator -#: libraries/common.lib.php:1424 +#: libraries/common.lib.php:1428 msgid "," msgstr "." #. l10n: Decimal separator -#: libraries/common.lib.php:1426 +#: libraries/common.lib.php:1430 msgid "." msgstr "," #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1603 +#: libraries/common.lib.php:1607 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B, %Y at %I:%M %p" -#: libraries/common.lib.php:1909 +#: libraries/common.lib.php:1913 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s giorni, %s ore, %s minuti e %s secondi" -#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 -#: libraries/display_tbl.lib.php:289 server_status.php:718 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 +#: libraries/display_tbl.lib.php:288 server_status.php:718 msgid "Begin" msgstr "Inizio" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 -#: libraries/display_tbl.lib.php:290 server_binlog.php:154 +#: libraries/common.lib.php:2328 libraries/common.lib.php:2331 +#: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "Precedente" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 -#: libraries/display_tbl.lib.php:352 +#: libraries/common.lib.php:2359 libraries/common.lib.php:2362 +#: libraries/display_tbl.lib.php:351 msgid "End" msgstr "Fine" -#: libraries/common.lib.php:2429 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "Passa al database \"%s\"." -#: libraries/common.lib.php:2448 +#: libraries/common.lib.php:2453 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "La %s funzionalità è affetta da un bug noto, vedi %s" -#: libraries/common.lib.php:2828 libraries/common.lib.php:2835 -#: libraries/db_links.inc.php:67 libraries/export/sql.php:24 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 +#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 -#: libraries/tbl_links.inc.php:59 querywindow.php:89 test/theme.php:96 +#: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2837 libraries/db_links.inc.php:103 -#: libraries/tbl_links.inc.php:94 libraries/tbl_links.inc.php:116 -#: view_operations.php:88 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: view_operations.php:87 msgid "Operations" msgstr "Operazioni" -#: libraries/core.lib.php:282 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1857,38 +1843,38 @@ msgstr "Eventi" msgid "Name" msgstr "Nome" -#: libraries/db_links.inc.php:44 +#: libraries/db_links.inc.php:43 #, php-format msgid "Database %s has been dropped." msgstr "Il Database %s è stato eliminato." -#: libraries/db_links.inc.php:56 libraries/db_links.inc.php:57 -#: libraries/db_links.inc.php:58 +#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 +#: libraries/db_links.inc.php:57 msgid "Database seems to be empty!" msgstr "Il databse sembra essere vuoto!" -#: libraries/db_links.inc.php:80 libraries/relation.lib.php:142 -#: libraries/tbl_links.inc.php:68 +#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:85 +#: libraries/db_links.inc.php:84 msgid "Query" msgstr "Query da esempio" -#: libraries/db_links.inc.php:90 libraries/relation.lib.php:138 +#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 msgid "Designer" msgstr "Designer" -#: libraries/db_links.inc.php:97 libraries/server_links.inc.php:87 -#: libraries/tbl_links.inc.php:90 pmd_pdf.php:83 pmd_pdf.php:109 +#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importa" -#: libraries/db_links.inc.php:110 libraries/server_links.inc.php:65 -#: server_privileges.php:111 server_privileges.php:1714 -#: server_privileges.php:2063 test/theme.php:116 +#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: server_privileges.php:110 server_privileges.php:1718 +#: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" msgstr "Privilegi" @@ -1900,14 +1886,14 @@ msgstr "Routines" msgid "Return type" msgstr "Tipo di risultato" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1847 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1806 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "Può essere approssimato. Vedere FAQ 3.11" -#: libraries/db_structure.lib.php:60 server_databases.php:141 -#: tbl_printview.php:334 tbl_structure.php:681 +#: libraries/db_structure.lib.php:60 server_databases.php:139 +#: tbl_printview.php:333 tbl_structure.php:679 msgid "Overhead" msgstr "In eccesso" @@ -1925,7 +1911,7 @@ msgstr "Il server non risponde" 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:358 tbl_structure.php:607 +#: libraries/dbi/mysql.dbi.lib.php:358 tbl_structure.php:605 msgid "Details..." msgstr "Dettagli..." @@ -1935,22 +1921,22 @@ msgid "Change password" msgstr "Cambia password" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:807 +#: libraries/replication_gui.lib.php:347 server_privileges.php:806 msgid "No Password" msgstr "Nessuna Password" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1530 server_synchronize.php:1174 +#: libraries/replication_gui.lib.php:351 server_privileges.php:795 +#: server_privileges.php:799 server_privileges.php:810 +#: server_privileges.php:1534 server_synchronize.php:1173 msgid "Password" msgstr "Password" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:815 server_privileges.php:818 +#: server_privileges.php:814 server_privileges.php:817 msgid "Re-type" msgstr "Reinserisci" @@ -1971,8 +1957,8 @@ msgstr "Crea un nuovo database" msgid "Create" msgstr "Crea" -#: libraries/display_create_database.lib.php:39 server_privileges.php:113 -#: server_privileges.php:1419 server_replication.php:34 +#: libraries/display_create_database.lib.php:39 server_privileges.php:112 +#: server_privileges.php:1423 server_replication.php:33 msgid "No Privileges" msgstr "Nessun Privilegio" @@ -1993,51 +1979,51 @@ msgstr "Crea una nuova tabella nel database %s" msgid "Number of columns" msgstr "Numero di campi" -#: libraries/display_export.lib.php:41 +#: libraries/display_export.lib.php:35 msgid "Could not load export plugins, please check your installation!" msgstr "" "Non posso caricare i plugins di esportazione. Controlla l'installazione!" -#: libraries/display_export.lib.php:106 +#: libraries/display_export.lib.php:100 #, fuzzy, php-format #| msgid "Dump %s row(s) starting at record # %s" msgid "Dump %s row(s) starting at row # %s" msgstr "Dump di %s righe a partire dalla riga %s." -#: libraries/display_export.lib.php:114 +#: libraries/display_export.lib.php:108 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:124 setup/lib/messages.inc.php:79 +#: libraries/display_export.lib.php:118 setup/lib/messages.inc.php:79 msgid "Save as file" msgstr "Salva con nome..." -#: libraries/display_export.lib.php:133 +#: libraries/display_export.lib.php:127 #, php-format msgid "Save on server in %s directory" msgstr "Salva sul server nella directory %s" -#: libraries/display_export.lib.php:141 setup/lib/messages.inc.php:87 +#: libraries/display_export.lib.php:135 setup/lib/messages.inc.php:87 msgid "Overwrite existing file(s)" msgstr "Sovrascrivi file(s) esistente/i" -#: libraries/display_export.lib.php:147 +#: libraries/display_export.lib.php:141 msgid "File name template" msgstr "Nome file template" -#: libraries/display_export.lib.php:151 +#: libraries/display_export.lib.php:145 msgid "server name" msgstr "nome server" -#: libraries/display_export.lib.php:154 +#: libraries/display_export.lib.php:148 msgid "database name" msgstr "nome database" -#: libraries/display_export.lib.php:157 +#: libraries/display_export.lib.php:151 msgid "table name" msgstr "nome tabella" -#: libraries/display_export.lib.php:161 +#: libraries/display_export.lib.php:155 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2048,39 +2034,39 @@ msgstr "" "usare stringhe di formattazione per le date/tempi. Verranno anche aggiunte " "le seguenti trasformazioni: %3$s. Il testo rimanente resterà invariato." -#: libraries/display_export.lib.php:202 +#: libraries/display_export.lib.php:196 msgid "remember template" msgstr "ricorda il template" -#: libraries/display_export.lib.php:210 libraries/display_import.lib.php:177 +#: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 #: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 msgid "Character set of the file:" msgstr "Set di caratteri del file:" -#: libraries/display_export.lib.php:235 setup/lib/messages.inc.php:81 +#: libraries/display_export.lib.php:229 setup/lib/messages.inc.php:81 msgid "Compression" msgstr "Compressione" -#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:196 -#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:529 -#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:574 -#: server_privileges.php:1867 server_processlist.php:74 +#: libraries/display_export.lib.php:234 libraries/display_import.lib.php:196 +#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:528 +#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:573 +#: server_privileges.php:1871 server_processlist.php:74 msgid "None" msgstr "Nessuno" -#: libraries/display_export.lib.php:247 +#: libraries/display_export.lib.php:241 msgid "\"zipped\"" msgstr "\"compresso con zip\"" -#: libraries/display_export.lib.php:253 +#: libraries/display_export.lib.php:247 msgid "\"gzipped\"" msgstr "\"compresso con gzip\"" -#: libraries/display_export.lib.php:259 +#: libraries/display_export.lib.php:253 msgid "\"bzipped\"" msgstr "\"compresso con bzip\"" -#: libraries/display_export.lib.php:274 libraries/export/sql.php:42 +#: libraries/display_export.lib.php:268 libraries/export/sql.php:42 #: libraries/import/sql.php:31 msgid "SQL compatibility mode" msgstr "Modo di compatibilità SQL" @@ -2120,12 +2106,12 @@ msgid "File uploads are not allowed on this server." msgstr "Non è permesso l'upload dei file su questo server." #: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 -#: tbl_change.php:1024 +#: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "La directory impostata per l'upload non può essere trovata" #: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 -#: tbl_change.php:1027 +#: tbl_change.php:925 msgid "web server upload directory" msgstr "directory di upload del web-server" @@ -2213,43 +2199,43 @@ msgstr "Dimensioni carta" msgid "Language" msgstr "Lingua" -#: libraries/display_tbl.lib.php:303 +#: libraries/display_tbl.lib.php:302 #, php-format msgid "%d is not valid row number." msgstr "%d non è un numero valido di righe." -#: libraries/display_tbl.lib.php:309 +#: libraries/display_tbl.lib.php:308 #, fuzzy #| msgid "row(s) starting from record #" msgid "row(s) starting from row #" msgstr "righe a partire da" -#: libraries/display_tbl.lib.php:315 +#: libraries/display_tbl.lib.php:314 msgid "horizontal" msgstr " orizzontale " -#: libraries/display_tbl.lib.php:316 +#: libraries/display_tbl.lib.php:315 msgid "horizontal (rotated headers)" msgstr "orizzontale (headers ruotati)" -#: libraries/display_tbl.lib.php:317 +#: libraries/display_tbl.lib.php:316 msgid "vertical" msgstr " verticale " -#: libraries/display_tbl.lib.php:323 +#: libraries/display_tbl.lib.php:322 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr " in modalità %s e ripeti gli headers dopo %s celle " -#: libraries/display_tbl.lib.php:345 +#: libraries/display_tbl.lib.php:344 msgid "This operation could take a long time. Proceed anyway?" msgstr "Questa operazione potrebbe impiegare molto tempo. Procedere comunque?" -#: libraries/display_tbl.lib.php:511 +#: libraries/display_tbl.lib.php:510 msgid "Sort by key" msgstr "Ordina per chiave" -#: libraries/display_tbl.lib.php:554 libraries/export/codegen.php:38 +#: libraries/display_tbl.lib.php:553 libraries/export/codegen.php:38 #: libraries/export/csv.php:29 libraries/export/excel.php:34 #: libraries/export/htmlword.php:28 libraries/export/latex.php:32 #: libraries/export/mediawiki.php:21 libraries/export/ods.php:26 @@ -2259,99 +2245,99 @@ msgstr "Ordina per chiave" #: libraries/export/xlsx.php:26 libraries/export/xml.php:23 #: libraries/export/yaml.php:27 libraries/import.lib.php:1114 #: libraries/import.lib.php:1136 libraries/import/csv.php:31 -#: libraries/import/docsql.php:33 libraries/import/ldi.php:46 +#: libraries/import/docsql.php:32 libraries/import/ldi.php:46 #: libraries/import/ods.php:30 libraries/import/sql.php:19 #: libraries/import/xls.php:25 libraries/import/xlsx.php:25 -#: libraries/import/xml.php:25 tbl_select.php:264 tbl_structure.php:752 +#: libraries/import/xml.php:25 tbl_select.php:263 tbl_structure.php:750 msgid "Options" msgstr "Opzioni" -#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:569 +#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:568 msgid "Partial Texts" msgstr "Testo parziale" -#: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:573 +#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:572 msgid "Full Texts" msgstr "Testo completo" -#: libraries/display_tbl.lib.php:586 +#: libraries/display_tbl.lib.php:585 msgid "Relational key" msgstr "Chiave relazionale" -#: libraries/display_tbl.lib.php:587 +#: libraries/display_tbl.lib.php:586 #, fuzzy #| msgid "Relational display field" msgid "Relational display column" msgstr "Mosta il campo relazionale" -#: libraries/display_tbl.lib.php:594 +#: libraries/display_tbl.lib.php:593 msgid "Show binary contents" msgstr "Mostra contenuti binari" -#: libraries/display_tbl.lib.php:596 +#: libraries/display_tbl.lib.php:595 msgid "Show BLOB contents" msgstr "Mostra contenuti BLOB" -#: libraries/display_tbl.lib.php:598 +#: libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "Mostra contenuti binati come esadecimali" -#: libraries/display_tbl.lib.php:606 pmd_general.php:140 tbl_change.php:312 -#: tbl_change.php:318 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:307 +#: tbl_change.php:313 msgid "Hide" msgstr "Nascondi" -#: libraries/display_tbl.lib.php:606 libraries/relation.lib.php:122 -#: libraries/tbl_properties.inc.php:143 transformation_overview.php:46 +#: libraries/display_tbl.lib.php:605 libraries/relation.lib.php:117 +#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46 msgid "Browser transformation" msgstr "Trasformazione del Browser" -#: libraries/display_tbl.lib.php:1125 libraries/display_tbl.lib.php:1129 -#: libraries/display_tbl.lib.php:1131 +#: libraries/display_tbl.lib.php:1124 libraries/display_tbl.lib.php:1128 +#: libraries/display_tbl.lib.php:1130 msgid "Execute bookmarked query" msgstr "Esegue la query dalle preferite" -#: libraries/display_tbl.lib.php:1144 libraries/display_tbl.lib.php:1156 +#: libraries/display_tbl.lib.php:1143 libraries/display_tbl.lib.php:1155 msgid "The row has been deleted" msgstr "La riga è stata cancellata" -#: libraries/display_tbl.lib.php:1183 libraries/display_tbl.lib.php:2055 +#: libraries/display_tbl.lib.php:1182 libraries/display_tbl.lib.php:2014 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "Rimuovi" -#: libraries/display_tbl.lib.php:1933 +#: libraries/display_tbl.lib.php:1892 msgid "in query" msgstr "nella query" -#: libraries/display_tbl.lib.php:1951 +#: libraries/display_tbl.lib.php:1910 msgid "Showing rows" msgstr "Visualizzazione record " -#: libraries/display_tbl.lib.php:1961 +#: libraries/display_tbl.lib.php:1920 msgid "total" msgstr "Totali" -#: libraries/display_tbl.lib.php:1969 sql.php:523 +#: libraries/display_tbl.lib.php:1928 sql.php:522 #, php-format msgid "Query took %01.4f sec" msgstr "La query ha impiegato %01.4f sec" -#: libraries/display_tbl.lib.php:2088 libraries/mult_submits.inc.php:112 -#: querywindow.php:115 querywindow.php:119 querywindow.php:122 -#: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:469 +#: libraries/display_tbl.lib.php:2047 libraries/mult_submits.inc.php:112 +#: querywindow.php:114 querywindow.php:118 querywindow.php:121 +#: tbl_structure.php:23 tbl_structure.php:148 tbl_structure.php:467 msgid "Change" msgstr "Modifica" -#: libraries/display_tbl.lib.php:2158 +#: libraries/display_tbl.lib.php:2117 msgid "Query results operations" msgstr "Risultato delle operazioni di Query" -#: libraries/display_tbl.lib.php:2186 +#: libraries/display_tbl.lib.php:2145 msgid "Print view (with full texts)" msgstr "Vista stampa (con full text)" -#: libraries/display_tbl.lib.php:2359 +#: libraries/display_tbl.lib.php:2318 msgid "Link not found" msgstr "Link non trovato" @@ -2407,9 +2393,9 @@ msgstr "Stato InnoDB" msgid "Buffer Pool Usage" msgstr "Utilizzo del Buffer Pool" -#: libraries/engines/innodb.lib.php:168 server_databases.php:136 -#: server_databases.php:304 server_status.php:524 server_status.php:585 -#: server_status.php:606 tbl_printview.php:349 tbl_structure.php:695 +#: libraries/engines/innodb.lib.php:168 server_databases.php:134 +#: server_databases.php:302 server_status.php:524 server_status.php:585 +#: server_status.php:606 tbl_printview.php:348 tbl_structure.php:693 msgid "Total" msgstr "Totale" @@ -2547,6 +2533,89 @@ msgstr "" "Il buffer che viene allocato nell'ordinamento degli indici MyISAM durante un " "REPAIR TABLE o nella creazione degli indici con CREATE INDEX o ALTER TABLE." +#: libraries/engines/pbms.lib.php:31 +#, fuzzy +#| msgid "Garbage threshold" +msgid "Garbage Threshold" +msgstr "Dimensione del cestino" + +#: libraries/engines/pbms.lib.php:32 +#, fuzzy +#| msgid "" +#| "The percentage of garbage in a data log file before it is compacted. This " +#| "is a value between 1 and 99. The default is 50." +msgid "The percentage of garbage in a repository file before it is compacted." +msgstr "" +"La percentuale di dati \"spazzatura\" in un file di log prima che questo " +"debba essere compattato. Il valore deve essere compreso tra 1 e 99. Il " +"valore di default è 50." + +#: libraries/engines/pbms.lib.php:36 libraries/replication_gui.lib.php:69 +#: server_synchronize.php:1161 +#, fuzzy +msgid "Port" +msgstr "Ordinamento" + +#: libraries/engines/pbms.lib.php:37 +msgid "" +"The port for the PBMS stream-based communications. Setting this value to 0 " +"will disable HTTP communication with the daemon." +msgstr "" + +#: libraries/engines/pbms.lib.php:41 +msgid "Repository Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:42 +msgid "" +"The maximum size of a BLOB repository file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:46 +msgid "Temp Blob Timeout" +msgstr "" + +#: libraries/engines/pbms.lib.php:47 +msgid "" +"The timeout, in seconds, for temporary BLOBs. Uploaded BLOB data is removed " +"after this time, unless they are referenced by a record in the database." +msgstr "" + +#: libraries/engines/pbms.lib.php:51 +#, fuzzy +#| msgid "Log file threshold" +msgid "Temp Log Threshold" +msgstr "Soglia dei file di log" + +#: libraries/engines/pbms.lib.php:52 +msgid "" +"The maximum size of a temporary BLOB log file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:56 +msgid "Max Keep Alive" +msgstr "" + +#: libraries/engines/pbms.lib.php:57 +msgid "" +"The timeout for inactive connection with the keep-alive flag set. After this " +"time the connection will be closed. The time-out is in milliseconds (1/1000)." +msgstr "" + +#: libraries/engines/pbms.lib.php:61 +msgid "Metadata Headers" +msgstr "" + +#: libraries/engines/pbms.lib.php:62 +msgid "" +"A \":\" delimited list of metadata headers to be used to initialize the " +"pbms_metadata_header table when a database is created." +msgstr "" + #: libraries/engines/pbxt.lib.php:22 msgid "Index cache size" msgstr "Dimensione cache degli indici" @@ -2700,7 +2769,7 @@ msgstr "" "più alto." #: libraries/export/codegen.php:36 setup/lib/messages.inc.php:85 -#: tbl_printview.php:374 tbl_structure.php:736 +#: tbl_printview.php:373 tbl_structure.php:734 msgid "Format" msgstr "Formato" @@ -2771,9 +2840,9 @@ msgstr "Microsoft Word 2000" #: libraries/export/htmlword.php:23 libraries/export/latex.php:59 #: libraries/export/latex.php:205 libraries/export/odt.php:47 #: libraries/export/sql.php:105 libraries/export/sql.php:865 -#: libraries/export/texytext.php:27 server_databases.php:126 -#: server_privileges.php:576 server_replication.php:315 tbl_printview.php:315 -#: tbl_structure.php:664 +#: libraries/export/texytext.php:27 server_databases.php:124 +#: server_privileges.php:575 server_replication.php:314 tbl_printview.php:314 +#: tbl_structure.php:662 msgid "Data" msgstr "Dati" @@ -2824,13 +2893,13 @@ msgid "Label key" msgstr "Chiave etichetta" #: libraries/export/latex.php:46 libraries/export/odt.php:34 -#: libraries/export/sql.php:90 tbl_relation.php:398 +#: libraries/export/sql.php:90 tbl_relation.php:396 msgid "Relations" msgstr "Relazioni" #: libraries/export/latex.php:52 libraries/export/odt.php:40 #: libraries/export/odt.php:317 libraries/export/sql.php:94 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "tipo MIME" @@ -2838,10 +2907,10 @@ msgstr "tipo MIME" #: libraries/export/xml.php:101 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1529 server_privileges.php:2061 -#: server_processlist.php:54 server_synchronize.php:1158 +#: libraries/replication_gui.lib.php:331 server_privileges.php:730 +#: server_privileges.php:733 server_privileges.php:789 +#: server_privileges.php:1533 server_privileges.php:2065 +#: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "Host" @@ -3031,8 +3100,8 @@ msgstr "Esporta visualizzazione" msgid "Export contents" msgstr "Esporta contenuti" -#: libraries/footer.inc.php:182 libraries/footer.inc.php:193 -#: libraries/footer.inc.php:196 +#: libraries/footer.inc.php:180 libraries/footer.inc.php:191 +#: libraries/footer.inc.php:194 msgid "Open new phpMyAdmin window" msgstr "Apri una nuova finestra di PhpMyAdmin" @@ -3048,7 +3117,7 @@ msgstr "Risultato SQL" msgid "Generated by" msgstr "Generato da" -#: libraries/import.lib.php:151 sql.php:519 tbl_change.php:180 +#: libraries/import.lib.php:151 sql.php:518 tbl_change.php:175 #: 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)." @@ -3105,7 +3174,7 @@ msgstr "Ignora le righe duplicate" msgid "Column names in first row" msgstr "I nomi delle colonne in prima fila" -#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:501 +#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:500 #: view_create.php:147 msgid "Column names" msgstr "Nomi delle colonne" @@ -3132,12 +3201,12 @@ msgstr "Formato non valido per l'input CSV alla linea %d." msgid "Invalid column count in CSV input on line %d." msgstr "Contatore di campo non valido nell'input CSV alla linea %d." -#: libraries/import/docsql.php:28 +#: libraries/import/docsql.php:27 msgid "DocSQL" msgstr "DocSQL" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 -#: server_synchronize.php:427 server_synchronize.php:870 +#: libraries/import/docsql.php:30 libraries/tbl_properties.inc.php:616 +#: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "Nome tabella" @@ -3193,26 +3262,26 @@ msgstr "Nessuno" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:512 -#: tbl_structure.php:28 tbl_structure.php:152 tbl_structure.php:156 -#: tbl_structure.php:472 +#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:511 +#: tbl_structure.php:27 tbl_structure.php:151 tbl_structure.php:155 +#: tbl_structure.php:470 msgid "Primary" msgstr "Primaria" #: libraries/mult_submits.inc.php:97 libraries/tbl_properties.inc.php:115 -#: libraries/tbl_properties.inc.php:524 tbl_printview.php:324 -#: tbl_structure.php:30 tbl_structure.php:153 tbl_structure.php:157 -#: tbl_structure.php:474 tbl_structure.php:672 +#: libraries/tbl_properties.inc.php:523 tbl_printview.php:323 +#: tbl_structure.php:29 tbl_structure.php:152 tbl_structure.php:156 +#: tbl_structure.php:472 tbl_structure.php:670 msgid "Index" msgstr "Indice" -#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:530 -#: tbl_structure.php:34 tbl_structure.php:155 tbl_structure.php:159 -#: tbl_structure.php:477 +#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:529 +#: tbl_structure.php:33 tbl_structure.php:154 tbl_structure.php:158 +#: tbl_structure.php:475 msgid "Fulltext" msgstr "Testo completo" -#: libraries/mult_submits.inc.php:434 tbl_replace.php:330 +#: libraries/mult_submits.inc.php:433 tbl_replace.php:330 msgid "No change" msgstr "Nessun cambiamento" @@ -3220,190 +3289,190 @@ msgstr "Nessun cambiamento" msgid "Charset" msgstr "Set di caratteri" -#: libraries/mysql_charsets.lib.php:210 libraries/mysql_charsets.lib.php:411 -#: tbl_change.php:515 +#: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 +#: tbl_change.php:510 msgid "Binary" msgstr "Binario" -#: libraries/mysql_charsets.lib.php:222 +#: libraries/mysql_charsets.lib.php:214 msgid "Bulgarian" msgstr "Bulgaro" -#: libraries/mysql_charsets.lib.php:226 libraries/mysql_charsets.lib.php:351 +#: libraries/mysql_charsets.lib.php:218 libraries/mysql_charsets.lib.php:343 msgid "Simplified Chinese" msgstr "Cinese Semplificato" -#: libraries/mysql_charsets.lib.php:228 libraries/mysql_charsets.lib.php:371 +#: libraries/mysql_charsets.lib.php:220 libraries/mysql_charsets.lib.php:363 msgid "Traditional Chinese" msgstr "Cinese Tradizionale" -#: libraries/mysql_charsets.lib.php:232 libraries/mysql_charsets.lib.php:418 +#: libraries/mysql_charsets.lib.php:224 libraries/mysql_charsets.lib.php:410 msgid "case-insensitive" msgstr "case-insensitive" -#: libraries/mysql_charsets.lib.php:235 libraries/mysql_charsets.lib.php:420 +#: libraries/mysql_charsets.lib.php:227 libraries/mysql_charsets.lib.php:412 msgid "case-sensitive" msgstr "case-sensitive" -#: libraries/mysql_charsets.lib.php:238 +#: libraries/mysql_charsets.lib.php:230 msgid "Croatian" msgstr "Croato" -#: libraries/mysql_charsets.lib.php:241 +#: libraries/mysql_charsets.lib.php:233 msgid "Czech" msgstr "Ceco" -#: libraries/mysql_charsets.lib.php:244 +#: libraries/mysql_charsets.lib.php:236 msgid "Danish" msgstr "Danese" -#: libraries/mysql_charsets.lib.php:247 +#: libraries/mysql_charsets.lib.php:239 msgid "English" msgstr "Inglese" -#: libraries/mysql_charsets.lib.php:250 +#: libraries/mysql_charsets.lib.php:242 msgid "Esperanto" msgstr "Esperanto" -#: libraries/mysql_charsets.lib.php:253 +#: libraries/mysql_charsets.lib.php:245 msgid "Estonian" msgstr "Estone" -#: libraries/mysql_charsets.lib.php:256 libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:248 libraries/mysql_charsets.lib.php:251 msgid "German" msgstr "Tedesco" -#: libraries/mysql_charsets.lib.php:256 +#: libraries/mysql_charsets.lib.php:248 msgid "dictionary" msgstr "dizionario" -#: libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:251 msgid "phone book" msgstr "rubrica" -#: libraries/mysql_charsets.lib.php:262 +#: libraries/mysql_charsets.lib.php:254 msgid "Hungarian" msgstr "Ungherese" -#: libraries/mysql_charsets.lib.php:265 +#: libraries/mysql_charsets.lib.php:257 msgid "Icelandic" msgstr "Islandese" -#: libraries/mysql_charsets.lib.php:268 libraries/mysql_charsets.lib.php:358 +#: libraries/mysql_charsets.lib.php:260 libraries/mysql_charsets.lib.php:350 msgid "Japanese" msgstr "Giapponese" -#: libraries/mysql_charsets.lib.php:271 +#: libraries/mysql_charsets.lib.php:263 msgid "Latvian" msgstr "Lituano" -#: libraries/mysql_charsets.lib.php:274 +#: libraries/mysql_charsets.lib.php:266 msgid "Lithuanian" msgstr "Lituano" -#: libraries/mysql_charsets.lib.php:277 libraries/mysql_charsets.lib.php:380 +#: libraries/mysql_charsets.lib.php:269 libraries/mysql_charsets.lib.php:372 msgid "Korean" msgstr "Coreano" -#: libraries/mysql_charsets.lib.php:280 +#: libraries/mysql_charsets.lib.php:272 msgid "Persian" msgstr "Persiano" -#: libraries/mysql_charsets.lib.php:283 +#: libraries/mysql_charsets.lib.php:275 msgid "Polish" msgstr "Polacco" -#: libraries/mysql_charsets.lib.php:286 libraries/mysql_charsets.lib.php:334 +#: libraries/mysql_charsets.lib.php:278 libraries/mysql_charsets.lib.php:326 msgid "West European" msgstr "Europeo Occidentale" -#: libraries/mysql_charsets.lib.php:289 +#: libraries/mysql_charsets.lib.php:281 msgid "Romanian" msgstr "Rumeno" -#: libraries/mysql_charsets.lib.php:292 +#: libraries/mysql_charsets.lib.php:284 msgid "Slovak" msgstr "Slovacco" -#: libraries/mysql_charsets.lib.php:295 +#: libraries/mysql_charsets.lib.php:287 msgid "Slovenian" msgstr "Sloveno" -#: libraries/mysql_charsets.lib.php:298 +#: libraries/mysql_charsets.lib.php:290 msgid "Spanish" msgstr "Spagnolo" -#: libraries/mysql_charsets.lib.php:301 +#: libraries/mysql_charsets.lib.php:293 msgid "Traditional Spanish" msgstr "Spagnolo tradizionale" -#: libraries/mysql_charsets.lib.php:304 libraries/mysql_charsets.lib.php:401 +#: libraries/mysql_charsets.lib.php:296 libraries/mysql_charsets.lib.php:393 msgid "Swedish" msgstr "Svedese" -#: libraries/mysql_charsets.lib.php:307 libraries/mysql_charsets.lib.php:404 +#: libraries/mysql_charsets.lib.php:299 libraries/mysql_charsets.lib.php:396 msgid "Thai" msgstr "Thai" -#: libraries/mysql_charsets.lib.php:310 libraries/mysql_charsets.lib.php:398 +#: libraries/mysql_charsets.lib.php:302 libraries/mysql_charsets.lib.php:390 msgid "Turkish" msgstr "Turco" -#: libraries/mysql_charsets.lib.php:313 libraries/mysql_charsets.lib.php:395 +#: libraries/mysql_charsets.lib.php:305 libraries/mysql_charsets.lib.php:387 msgid "Ukrainian" msgstr "Ucraino" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 msgid "Unicode" msgstr "Unicode" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 -#: libraries/mysql_charsets.lib.php:334 libraries/mysql_charsets.lib.php:341 -#: libraries/mysql_charsets.lib.php:363 libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 +#: libraries/mysql_charsets.lib.php:326 libraries/mysql_charsets.lib.php:333 +#: libraries/mysql_charsets.lib.php:355 libraries/mysql_charsets.lib.php:366 msgid "multilingual" msgstr "multilingua" -#: libraries/mysql_charsets.lib.php:341 +#: libraries/mysql_charsets.lib.php:333 msgid "Central European" msgstr "Europeo Centrale" -#: libraries/mysql_charsets.lib.php:346 +#: libraries/mysql_charsets.lib.php:338 msgid "Russian" msgstr "Russo" -#: libraries/mysql_charsets.lib.php:363 +#: libraries/mysql_charsets.lib.php:355 msgid "Baltic" msgstr "Baltico" -#: libraries/mysql_charsets.lib.php:368 +#: libraries/mysql_charsets.lib.php:360 msgid "Armenian" msgstr "Armeno" -#: libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:366 msgid "Cyrillic" msgstr "Cirillico" -#: libraries/mysql_charsets.lib.php:377 +#: libraries/mysql_charsets.lib.php:369 msgid "Arabic" msgstr "Arabo" -#: libraries/mysql_charsets.lib.php:383 +#: libraries/mysql_charsets.lib.php:375 msgid "Hebrew" msgstr "Ebreo" -#: libraries/mysql_charsets.lib.php:386 +#: libraries/mysql_charsets.lib.php:378 msgid "Georgian" msgstr "Georgiano" -#: libraries/mysql_charsets.lib.php:389 +#: libraries/mysql_charsets.lib.php:381 msgid "Greek" msgstr "Greco" -#: libraries/mysql_charsets.lib.php:392 +#: libraries/mysql_charsets.lib.php:384 msgid "Czech-Slovak" msgstr "Ceco-Slovacco" -#: libraries/mysql_charsets.lib.php:407 libraries/mysql_charsets.lib.php:414 +#: libraries/mysql_charsets.lib.php:399 libraries/mysql_charsets.lib.php:406 msgid "unknown" msgstr "sconosciuto" @@ -3429,59 +3498,59 @@ msgstr "Finestra della Query" msgid "This format has no options" msgstr "Questo formato non ha opzioni" -#: libraries/relation.lib.php:82 +#: libraries/relation.lib.php:77 msgid "not OK" msgstr "non OK" -#: libraries/relation.lib.php:86 pmd_general.php:339 +#: libraries/relation.lib.php:81 pmd_general.php:339 msgid "OK" msgstr "OK" -#: libraries/relation.lib.php:87 +#: libraries/relation.lib.php:82 msgid "Enabled" msgstr "Abilitata" -#: libraries/relation.lib.php:110 +#: libraries/relation.lib.php:105 msgid "Display Features" msgstr "Mostra Caratteristiche" -#: libraries/relation.lib.php:116 +#: libraries/relation.lib.php:111 msgid "Creation of PDFs" msgstr "Creazione di PDF" -#: libraries/relation.lib.php:120 +#: libraries/relation.lib.php:115 msgid "Displaying Column Comments" msgstr "Visualizzazione commenti delle colonne" -#: libraries/relation.lib.php:125 +#: libraries/relation.lib.php:120 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "Prego leggere la documentazione su come aggiornare la vostra tabella " "Column_comments" -#: libraries/relation.lib.php:130 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 msgid "Bookmarked SQL query" msgstr "Query SQL aggiunte ai preferiti" -#: libraries/relation.lib.php:134 querywindow.php:99 querywindow.php:207 +#: libraries/relation.lib.php:129 querywindow.php:98 querywindow.php:205 msgid "SQL history" msgstr "Storico dell'SQL" -#: libraries/relation.lib.php:146 +#: libraries/relation.lib.php:141 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:148 +#: libraries/relation.lib.php:143 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "Crea le tabelle necessarie script/create_tables.sql." -#: libraries/relation.lib.php:149 +#: libraries/relation.lib.php:144 msgid "Create a pma user and give access to these tables." msgstr "Crea l'utente pma e dagli accesso a queste tabelle." -#: libraries/relation.lib.php:150 +#: libraries/relation.lib.php:145 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." @@ -3489,11 +3558,11 @@ msgstr "" "Attiva funzionalità avanzate nel file di configuratione (config.inc." "php), per esempio partendo da config.sample.inc.php." -#: libraries/relation.lib.php:151 +#: libraries/relation.lib.php:146 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1158 +#: libraries/relation.lib.php:1153 msgid "no description" msgstr "nessuna Description" @@ -3502,7 +3571,7 @@ msgstr "nessuna Description" msgid "Slave configuration" msgstr "Configurazione del server" -#: libraries/replication_gui.lib.php:53 server_replication.php:346 +#: libraries/replication_gui.lib.php:53 server_replication.php:345 msgid "Change or reconfigure master server" msgstr "" @@ -3514,17 +3583,12 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:711 -#: server_privileges.php:714 server_privileges.php:721 -#: server_synchronize.php:1170 +#: libraries/replication_gui.lib.php:261 server_privileges.php:710 +#: server_privileges.php:713 server_privileges.php:720 +#: server_synchronize.php:1169 msgid "User name" msgstr "Nome utente" -#: libraries/replication_gui.lib.php:69 server_synchronize.php:1162 -#, fuzzy -msgid "Port" -msgstr "Ordinamento" - #: libraries/replication_gui.lib.php:105 #, fuzzy msgid "Master status" @@ -3541,8 +3605,8 @@ msgid "Variable" msgstr "Variabile" #: libraries/replication_gui.lib.php:117 server_status.php:737 -#: tbl_change.php:322 tbl_printview.php:368 tbl_select.php:137 -#: tbl_structure.php:728 +#: tbl_change.php:317 tbl_printview.php:367 tbl_select.php:136 +#: tbl_structure.php:726 msgid "Value" msgstr "Valore" @@ -3556,38 +3620,38 @@ msgid "" "this list." msgstr "" -#: libraries/replication_gui.lib.php:242 server_replication.php:193 +#: libraries/replication_gui.lib.php:242 server_replication.php:192 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:256 server_privileges.php:716 +#: libraries/replication_gui.lib.php:256 server_privileges.php:715 msgid "Any user" msgstr "Qualsiasi utente" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1920 server_privileges.php:1950 +#: libraries/replication_gui.lib.php:348 server_privileges.php:716 +#: server_privileges.php:783 server_privileges.php:807 +#: server_privileges.php:1924 server_privileges.php:1954 msgid "Use text field" msgstr "Utilizza campo text" -#: libraries/replication_gui.lib.php:304 server_privileges.php:764 +#: libraries/replication_gui.lib.php:304 server_privileges.php:763 msgid "Any host" msgstr "Qualsiasi host" -#: libraries/replication_gui.lib.php:308 server_privileges.php:768 +#: libraries/replication_gui.lib.php:308 server_privileges.php:767 msgid "Local" msgstr "Locale" -#: libraries/replication_gui.lib.php:314 server_privileges.php:773 +#: libraries/replication_gui.lib.php:314 server_privileges.php:772 msgid "This Host" msgstr "Questo Host" -#: libraries/replication_gui.lib.php:320 server_privileges.php:779 +#: libraries/replication_gui.lib.php:320 server_privileges.php:778 msgid "Use Host Table" msgstr "Utilizza la Tabella dell'Host" -#: libraries/replication_gui.lib.php:333 server_privileges.php:792 +#: libraries/replication_gui.lib.php:333 server_privileges.php:791 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3615,8 +3679,8 @@ msgstr "Lingua non conosciuta : %1$s." msgid "Servers" msgstr "Servers" -#: libraries/server_links.inc.php:52 server_engines.php:111 -#: server_engines.php:115 server_status.php:414 test/theme.php:104 +#: libraries/server_links.inc.php:52 server_engines.php:125 +#: server_engines.php:129 server_status.php:414 test/theme.php:104 msgid "Variables" msgstr "Variabili" @@ -3637,12 +3701,12 @@ msgstr "Log binario" msgid "Processes" msgstr "Processi" -#: libraries/server_links.inc.php:91 server_synchronize.php:1091 -#: server_synchronize.php:1099 +#: libraries/server_links.inc.php:91 server_synchronize.php:1090 +#: server_synchronize.php:1098 msgid "Synchronize" msgstr "Sincronizza" -#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1109 +#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1108 msgid "Source database" msgstr "Database di origine" @@ -3660,7 +3724,7 @@ msgstr "Server remoto" msgid "Difference" msgstr "Differenza" -#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1111 +#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1110 msgid "Target database" msgstr "Database di destinazione" @@ -3680,11 +3744,11 @@ msgstr "Esegui la/e query SQL sul database %s" msgid "Columns" msgstr "Nomi delle colonne" -#: libraries/sql_query_form.lib.php:342 sql.php:664 sql.php:665 sql.php:682 +#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "Aggiungi ai preferiti questa query SQL" -#: libraries/sql_query_form.lib.php:349 sql.php:676 +#: libraries/sql_query_form.lib.php:349 sql.php:669 msgid "Let every user access this bookmark" msgstr "Permetti ad ogni utente di accedere a questo bookmark" @@ -3782,12 +3846,12 @@ msgstr "" "installato le estensioni php necessarie come descritto nella %sdocumentazione" "%s." -#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:139 -#: libraries/tbl_links.inc.php:140 +#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 +#: libraries/tbl_links.inc.php:139 msgid "Table seems to be empty!" msgstr "La tabella sembra essere vuota!" -#: libraries/tbl_links.inc.php:148 +#: libraries/tbl_links.inc.php:147 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" @@ -3822,12 +3886,12 @@ msgstr "" "Per i valori predefiniti, prego inserire un singolo valore, senza backslash " "escaping o virgolette, utilizzando questo formato: a" -#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1263 -#: pdf_schema.php:1284 tbl_printview.php:142 tbl_structure.php:179 +#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1262 +#: pdf_schema.php:1283 tbl_printview.php:141 tbl_structure.php:178 msgid "Attributes" msgstr "Attributi" -#: libraries/tbl_properties.inc.php:136 +#: libraries/tbl_properties.inc.php:135 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -3836,11 +3900,11 @@ msgstr "" "Per una lista di opzioni di trasformazione disponibili e le loro rispettive " "trasformazioni di tipi-MIME, cliccate su %strasformazione descrizioni%s" -#: libraries/tbl_properties.inc.php:144 +#: libraries/tbl_properties.inc.php:143 msgid "Transformation options" msgstr "Opzioni di Transformation" -#: libraries/tbl_properties.inc.php:145 +#: libraries/tbl_properties.inc.php:144 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
                            If you ever need to put a backslash (\"\\\") or a single " @@ -3852,18 +3916,18 @@ msgstr "" "backslash (\"\\\") o un apostrofo (\"'\") tra questi valori, essi vanno " "backslashati (per es. '\\\\xyz' or 'a\\'b')." -#: libraries/tbl_properties.inc.php:392 +#: libraries/tbl_properties.inc.php:391 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "Nessuno" -#: libraries/tbl_properties.inc.php:393 +#: libraries/tbl_properties.inc.php:392 msgid "As defined:" msgstr "Come definito:" -#: libraries/tbl_properties.inc.php:579 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:578 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
                            Please ask the " @@ -3872,29 +3936,29 @@ msgstr "" "Nessuna descrizione è disponibile per questa trasformazione.
                            Prego, " "chiedere all'autore cosa %s faccia." -#: libraries/tbl_properties.inc.php:725 server_engines.php:57 -#: tbl_operations.php:354 +#: libraries/tbl_properties.inc.php:724 server_engines.php:56 +#: tbl_operations.php:352 msgid "Storage Engine" msgstr "Motore di Memorizzazione" -#: libraries/tbl_properties.inc.php:754 +#: libraries/tbl_properties.inc.php:753 msgid "PARTITION definition" msgstr "Definizione Partizioni" -#: libraries/tbl_properties.inc.php:775 pdf_pages.php:502 +#: libraries/tbl_properties.inc.php:774 pdf_pages.php:501 #: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214 -#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1124 tbl_indexes.php:247 -#: tbl_relation.php:565 +#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1022 tbl_indexes.php:246 +#: tbl_relation.php:563 msgid "Save" msgstr "Salva" -#: libraries/tbl_properties.inc.php:779 tbl_structure.php:541 +#: libraries/tbl_properties.inc.php:778 tbl_structure.php:539 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "Aggiungi %s campo(i)" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:535 +#: libraries/tbl_properties.inc.php:782 tbl_structure.php:533 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -4103,8 +4167,8 @@ msgstr "Interfacce" msgid "Custom color" msgstr "Colore definito dall'utente" -#: main.php:162 pdf_pages.php:362 setup/lib/FormDisplay.tpl.php:216 -#: tbl_change.php:1173 +#: main.php:162 pdf_pages.php:361 setup/lib/FormDisplay.tpl.php:216 +#: tbl_change.php:1071 msgid "Reset" msgstr "Riavvia" @@ -4112,8 +4176,8 @@ msgstr "Riavvia" msgid "Protocol version" msgstr "Versione protocollo" -#: main.php:188 server_privileges.php:1381 server_privileges.php:1528 -#: server_privileges.php:1642 server_privileges.php:2060 +#: main.php:188 server_privileges.php:1385 server_privileges.php:1532 +#: server_privileges.php:1646 server_privileges.php:2064 #: server_processlist.php:53 msgid "User" msgstr "Utente" @@ -4203,7 +4267,16 @@ msgstr "" "installazione, esiste ancora nella cartella del tuo phpMyAdmin. Si consiglia " "di rimuoverla una volta configurato phpMyAdmin." -#: main.php:330 +#: main.php:314 +#, php-format +msgid "" +"The additional features for working with linked tables have been " +"deactivated. To find out why click %shere%s." +msgstr "" +"Le caratteristiche aggiuntive sono state disattivate per funzionare con le " +"tabelle linkate. Per scoprire perché clicca %squi%s." + +#: main.php:329 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " @@ -4213,7 +4286,7 @@ msgstr "" "funzioni di phpMyAdmin saranno mancanti. Per esempio la navigazione dei " "frame non sarà aggiornata automaticamente." -#: main.php:345 +#: main.php:344 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -4222,7 +4295,7 @@ msgstr "" "Le tue librerie di PHP per MySQL versione %s sono diverse dalla versione di " "MySQL server %s. Potrebbe causare comportamenti imprevedibili." -#: main.php:357 +#: main.php:356 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -4236,70 +4309,70 @@ msgstr "" msgid "Reload navigation frame" msgstr "Personalizza frame di navigazione" -#: navigation.php:204 server_databases.php:370 server_synchronize.php:1190 +#: navigation.php:203 server_databases.php:368 server_synchronize.php:1189 msgid "No databases" msgstr "Nessun database" -#: navigation.php:298 +#: navigation.php:297 #, fuzzy msgid "Filter" msgstr "File" -#: navigation.php:299 setup/frames/index.inc.php:218 +#: navigation.php:298 setup/frames/index.inc.php:218 #: setup/lib/messages.inc.php:41 #, fuzzy msgid "Clear" msgstr "Calendario" -#: navigation.php:330 navigation.php:331 +#: navigation.php:329 navigation.php:330 #, fuzzy #| msgid "Create table" msgctxt "short form" msgid "Create table" msgstr "Crea tabelle" -#: navigation.php:333 navigation.php:495 +#: navigation.php:332 navigation.php:494 msgid "Please select a database" msgstr "Prego, selezionare un database" -#: pdf_pages.php:40 pdf_pages.php:46 pdf_pages.php:52 pdf_pages.php:57 +#: pdf_pages.php:39 pdf_pages.php:45 pdf_pages.php:51 pdf_pages.php:56 #, php-format msgid "%s table not found or not set in %s" msgstr "%s tabella non trovata o non settata in %s" -#: pdf_pages.php:265 +#: pdf_pages.php:264 msgid "Please choose a page to edit" msgstr "Prego scegliere una Page da modificare" -#: pdf_pages.php:303 pmd_pdf.php:113 +#: pdf_pages.php:302 pmd_pdf.php:111 msgid "Create a page" msgstr "Crea una nuova pagina" -#: pdf_pages.php:309 +#: pdf_pages.php:308 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Numero pagina:" -#: pdf_pages.php:313 +#: pdf_pages.php:312 #, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "Impaginazione automatica" -#: pdf_pages.php:315 +#: pdf_pages.php:314 msgid "Internal relations" msgstr "Relazioni interne" -#: pdf_pages.php:338 +#: pdf_pages.php:337 msgid "Select Tables" msgstr "Seleziona Tables" -#: pdf_pages.php:361 +#: pdf_pages.php:360 msgid "Toggle scratchboard" msgstr "(dis)attiva scratchboard" -#: pdf_pages.php:524 +#: pdf_pages.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -4307,37 +4380,37 @@ msgstr "" "La Pagina corrente contiene Riferimenti a Tabelle che non esistono più. " "Volete cancellare questi Riferimenti?" -#: pdf_schema.php:635 +#: pdf_schema.php:634 #, fuzzy, php-format #| msgid "The \"%s\" table doesn't exist!" msgid "The %s table doesn't exist!" msgstr "La tabella \"%s\" non esiste!" -#: pdf_schema.php:671 +#: pdf_schema.php:670 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Prego, configurare le coordinate per la tabella %s" -#: pdf_schema.php:994 +#: pdf_schema.php:993 #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" msgstr "Schema del database \"%s\" - Pagina %s" -#: pdf_schema.php:1012 +#: pdf_schema.php:1011 msgid "No tables" msgstr "Nessuna Tabella" -#: pdf_schema.php:1031 pdf_schema.php:1140 +#: pdf_schema.php:1030 pdf_schema.php:1139 msgid "Relational schema" msgstr "Schema relazionale" -#: pdf_schema.php:1115 +#: pdf_schema.php:1114 msgid "Table of contents" msgstr "Tabella dei contenuti" -#: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:145 -#: tbl_structure.php:182 tbl_tracking.php:277 +#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 +#: tbl_structure.php:181 tbl_tracking.php:272 msgid "Extra" msgstr "Extra" @@ -4349,7 +4422,7 @@ msgstr "Mostra/nascondi il menù di sinistra" msgid "Save position" msgstr "Salva la posizione" -#: pmd_general.php:70 server_synchronize.php:428 server_synchronize.php:871 +#: pmd_general.php:70 server_synchronize.php:427 server_synchronize.php:870 msgid "Create table" msgstr "Crea tabelle" @@ -4428,31 +4501,31 @@ msgstr "" "come campo da mostrare, clicca l'icona \"Scegli il campo da mostrare\", e " "poi clicca sul nome appropriato del campo." -#: pmd_pdf.php:62 +#: pmd_pdf.php:60 msgid "Page has been created" msgstr "La pagina è stata creata" -#: pmd_pdf.php:64 +#: pmd_pdf.php:62 msgid "Page creation failed" msgstr "Creazione della pagina fallita" -#: pmd_pdf.php:84 +#: pmd_pdf.php:82 msgid "Export/Import to scale" msgstr "Importa/esporta alla dimensione" -#: pmd_pdf.php:88 +#: pmd_pdf.php:86 msgid "recommended" msgstr "raccomandato" -#: pmd_pdf.php:93 +#: pmd_pdf.php:91 msgid "to/from page" msgstr "da/per pagina" -#: querywindow.php:94 +#: querywindow.php:93 msgid "Import files" msgstr "Importa file" -#: querywindow.php:105 +#: querywindow.php:104 msgid "All" msgstr "Tutti" @@ -4498,70 +4571,70 @@ msgstr "Informazioni" msgid "Character Sets and Collations" msgstr "Set di Caratteri e Collation" -#: server_databases.php:51 +#: server_databases.php:49 msgid "No databases selected." msgstr "Nessun database selezionato." -#: server_databases.php:62 +#: server_databases.php:60 #, php-format msgid "%s databases have been dropped successfully." msgstr "%s databases sono stati cancellati correttamente." -#: server_databases.php:87 +#: server_databases.php:85 msgid "Databases statistics" msgstr "Statistiche dei databases" -#: server_databases.php:116 server_status.php:370 +#: server_databases.php:114 server_status.php:370 #: setup/lib/messages.inc.php:114 msgid "Tables" msgstr "Tabelle" -#: server_databases.php:194 server_replication.php:180 -#: server_replication.php:208 +#: server_databases.php:192 server_replication.php:179 +#: server_replication.php:207 #, fuzzy msgid "Master replication" msgstr "Configurazione del server" -#: server_databases.php:196 server_replication.php:247 +#: server_databases.php:194 server_replication.php:246 #, fuzzy msgid "Slave replication" msgstr "Configurazione del server" -#: server_databases.php:229 +#: server_databases.php:227 #, fuzzy #| msgid "Go to database" msgid "Jump to database" msgstr "Vai al database" -#: server_databases.php:266 +#: server_databases.php:264 #, fuzzy msgid "Not replicated" msgstr "Configurazione del server" -#: server_databases.php:272 +#: server_databases.php:270 #, fuzzy #| msgid "Replication" msgid "Replicated" msgstr "Replicazione" -#: server_databases.php:288 +#: server_databases.php:286 #, php-format msgid "Check privileges for database "%s"." msgstr "Controlla i privilegi per il database \"%s\"." -#: server_databases.php:292 server_databases.php:293 +#: server_databases.php:290 server_databases.php:291 msgid "Check Privileges" msgstr "Controlla i privilegi" -#: server_databases.php:357 server_databases.php:358 +#: server_databases.php:355 server_databases.php:356 msgid "Enable Statistics" msgstr "Abilita le Statistiche" -#: server_databases.php:361 server_databases.php:362 +#: server_databases.php:359 server_databases.php:360 msgid "Disable Statistics" msgstr "Disabilita le Statistiche" -#: server_databases.php:365 +#: server_databases.php:363 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -4569,123 +4642,123 @@ msgstr "" "N.B.: Abilitare qui le statistiche del Database potrebbe causare del " "traffico intenso fra il server web e MySQL." -#: server_engines.php:48 +#: server_engines.php:47 msgid "Storage Engines" msgstr "Motori di Memorizzazione" -#: server_export.php:20 +#: server_export.php:18 msgid "View dump (schema) of databases" msgstr "Visualizza il dump (schema) dei databases" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:23 server_privileges.php:265 msgid "Includes all privileges except GRANT." msgstr "Comprende tutti i privilegi tranne GRANT." -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:24 server_privileges.php:191 +#: server_privileges.php:514 msgid "Allows altering the structure of existing tables." msgstr "Permette di alterare la struttura di tabelle esistenti." -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:25 server_privileges.php:207 +#: server_privileges.php:520 msgid "Allows altering and dropping stored routines." msgstr "Permette l'alterazione e l'eliminazione di routines memorizzate." -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:26 server_privileges.php:183 +#: server_privileges.php:513 msgid "Allows creating new databases and tables." msgstr "Permette di creare nuove tabelle e nuovi databases." -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:27 server_privileges.php:206 +#: server_privileges.php:519 msgid "Allows creating stored routines." msgstr "Permette la creazione di routines memorizzate." -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:513 msgid "Allows creating new tables." msgstr "Permette di creare nuove tabelle." -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:29 server_privileges.php:194 +#: server_privileges.php:517 msgid "Allows creating temporary tables." msgstr "Permette di creare tabelle temporanee." -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:30 server_privileges.php:208 +#: server_privileges.php:553 msgid "Allows creating, dropping and renaming user accounts." msgstr "Permette di creare, cancellare e rinominare gli account utente." -#: server_privileges.php:32 server_privileges.php:199 -#: server_privileges.php:203 server_privileges.php:526 -#: server_privileges.php:530 +#: server_privileges.php:31 server_privileges.php:198 +#: server_privileges.php:202 server_privileges.php:525 +#: server_privileges.php:529 msgid "Allows creating new views." msgstr "Permette la creazione di nuove viste." -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:32 server_privileges.php:182 +#: server_privileges.php:505 msgid "Allows deleting data." msgstr "Permette di cancellare dati." -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:33 server_privileges.php:184 +#: server_privileges.php:516 msgid "Allows dropping databases and tables." msgstr "Permette di eliminare databases e tabelle." -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:34 server_privileges.php:516 msgid "Allows dropping tables." msgstr "Permette di eliminare tabelle." -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:35 server_privileges.php:199 +#: server_privileges.php:533 msgid "Allows to set up events for the event scheduler" msgstr "Permette di impostare gli eventi per lo scheduler" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:36 server_privileges.php:209 +#: server_privileges.php:521 msgid "Allows executing stored routines." msgstr "Permette l'esecuzione di routines memorizzate." -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:37 server_privileges.php:188 +#: server_privileges.php:508 msgid "Allows importing data from and exporting data into files." msgstr "Permette di importare dati da e esportare dati in file." -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:38 server_privileges.php:539 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Permette di aggiungere utenti e privilegi senza ricaricare le tabelle dei " "privilegi." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:515 msgid "Allows creating and dropping indexes." msgstr "Permette di creare ed eliminare gli indici." -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:40 server_privileges.php:180 +#: server_privileges.php:441 server_privileges.php:503 msgid "Allows inserting and replacing data." msgstr "Permette di inserire e sovrascrivere dati." -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:41 server_privileges.php:195 +#: server_privileges.php:548 msgid "Allows locking tables for the current thread." msgstr "Permette di bloccare le tabelle per il thread corrente." -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:42 server_privileges.php:645 +#: server_privileges.php:647 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Limita il numero di nuove connessioni che un utente può aprire in un'ora." -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:43 server_privileges.php:633 +#: server_privileges.php:635 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Limita il numero di query che un utente può mandare al server in un'ora." -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:44 server_privileges.php:639 +#: server_privileges.php:641 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -4693,61 +4766,61 @@ msgstr "" "Limita il numero di comandi che possono cambiare una tabella o un database " "che un utente può eseguire in un'ora." -#: server_privileges.php:46 server_privileges.php:652 -#: server_privileges.php:654 +#: server_privileges.php:45 server_privileges.php:651 +#: server_privileges.php:653 msgid "Limits the number of simultaneous connections the user may have." msgstr "Limite di connessioni simultanee che un utente può fare." -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:46 server_privileges.php:187 +#: server_privileges.php:543 msgid "Allows viewing processes of all users" msgstr "Permette di vedere i processi di tutti gli utenti" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:47 server_privileges.php:189 +#: server_privileges.php:447 server_privileges.php:549 msgid "Has no effect in this MySQL version." msgstr "Non ha alcun effetto in questa versione di MySQL." -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:48 server_privileges.php:185 +#: server_privileges.php:544 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Permette di ricaricare i parametri del server e di resettare la cache del " "server." -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:197 +#: server_privileges.php:551 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Accorda il diritto ad un utente di domandare dove sono i masters/slaves." -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:50 server_privileges.php:196 +#: server_privileges.php:552 msgid "Needed for the replication slaves." msgstr "Necessario per la replicazione degli slaves." -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:51 server_privileges.php:179 +#: server_privileges.php:438 server_privileges.php:502 msgid "Allows reading data." msgstr "Permette di leggere i dati." -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:52 server_privileges.php:192 +#: server_privileges.php:546 msgid "Gives access to the complete list of databases." msgstr "Accorda l'accesso alla lista completa dei databases." -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:53 server_privileges.php:203 +#: server_privileges.php:205 server_privileges.php:518 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Permette di effettuare query del tipo SHOW CREATE VIEW." -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:54 server_privileges.php:186 +#: server_privileges.php:545 msgid "Allows shutting down the server." msgstr "Permette di chiudere il server." -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:55 server_privileges.php:193 +#: server_privileges.php:542 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -4758,156 +4831,156 @@ msgstr "" "settaggio di variabili globali o la cancellazione dei threads di altri " "utenti." -#: server_privileges.php:57 server_privileges.php:201 -#: server_privileges.php:535 +#: server_privileges.php:56 server_privileges.php:200 +#: server_privileges.php:534 msgid "Allows creating and dropping triggers" msgstr "Permette di creare e di eliminare i triggers" -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:57 server_privileges.php:181 +#: server_privileges.php:444 server_privileges.php:504 msgid "Allows changing data." msgstr "Permette di cambiare i dati." -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:58 server_privileges.php:259 msgid "No privileges." msgstr "Nessun privilegio." -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:301 server_privileges.php:302 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Nessuno" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1710 server_privileges.php:1716 +#: server_privileges.php:430 server_privileges.php:565 +#: server_privileges.php:1714 server_privileges.php:1720 msgid "Table-specific privileges" msgstr "Privilegi relativi alle tabelle" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1532 +#: server_privileges.php:431 server_privileges.php:573 +#: server_privileges.php:1536 msgid " Note: MySQL privilege names are expressed in English " msgstr "Nota: i nomi dei privilegi di MySQL sono in Inglese" -#: server_privileges.php:563 server_privileges.php:1531 +#: server_privileges.php:562 server_privileges.php:1535 msgid "Global privileges" msgstr "Privilegi globali" -#: server_privileges.php:565 server_privileges.php:1710 +#: server_privileges.php:564 server_privileges.php:1714 msgid "Database-specific privileges" msgstr "Privilegi specifici al database" -#: server_privileges.php:610 +#: server_privileges.php:609 msgid "Administration" msgstr "Amministrazione" -#: server_privileges.php:630 +#: server_privileges.php:629 msgid "Resource limits" msgstr "Limiti di risorse" -#: server_privileges.php:631 +#: server_privileges.php:630 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "N.B.: 0 (zero) significa nessun limite." -#: server_privileges.php:708 +#: server_privileges.php:707 msgid "Login Information" msgstr "Informazioni di Login" -#: server_privileges.php:802 +#: server_privileges.php:801 msgid "Do not change the password" msgstr "Non cambiare la password" -#: server_privileges.php:835 server_privileges.php:2197 +#: server_privileges.php:834 server_privileges.php:2201 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Nessun utente trovato." -#: server_privileges.php:879 +#: server_privileges.php:878 #, php-format msgid "The user %s already exists!" msgstr "L'utente %s esiste già!" -#: server_privileges.php:962 +#: server_privileges.php:961 msgid "You have added a new user." msgstr "Hai aggiunto un nuovo utente." -#: server_privileges.php:1183 +#: server_privileges.php:1184 #, php-format msgid "You have updated the privileges for %s." msgstr "Hai aggiornato i permessi per %s." -#: server_privileges.php:1207 +#: server_privileges.php:1208 #, php-format msgid "You have revoked the privileges for %s" msgstr "Hai revocato i privilegi per %s" -#: server_privileges.php:1243 +#: server_privileges.php:1244 #, php-format msgid "The password for %s was changed successfully." msgstr "La password per l'utente %s è cambiata con successo." -#: server_privileges.php:1263 +#: server_privileges.php:1264 #, php-format msgid "Deleting %s" msgstr "Cancellazione in corso di %s" -#: server_privileges.php:1274 +#: server_privileges.php:1275 msgid "No users selected for deleting!" msgstr "Nessun utente selezionato per la cancellazione!" -#: server_privileges.php:1277 +#: server_privileges.php:1278 msgid "Reloading the privileges" msgstr "Caricamento dei privilegi in corso" -#: server_privileges.php:1292 +#: server_privileges.php:1296 msgid "The selected users have been deleted successfully." msgstr "Gli utenti selezionati sono stati cancellati con successo." -#: server_privileges.php:1327 +#: server_privileges.php:1331 msgid "The privileges were reloaded successfully." msgstr "I privilegi sono stati ricaricati con successo." -#: server_privileges.php:1355 server_privileges.php:1641 +#: server_privileges.php:1359 server_privileges.php:1645 msgid "Edit Privileges" msgstr "Modifica Privilegi" -#: server_privileges.php:1364 +#: server_privileges.php:1368 msgid "Revoke" msgstr "Revoca" -#: server_privileges.php:1396 +#: server_privileges.php:1400 msgid "User overview" msgstr "Vista d'insieme dell'utente" -#: server_privileges.php:1533 server_privileges.php:1715 -#: server_privileges.php:2064 +#: server_privileges.php:1537 server_privileges.php:1719 +#: server_privileges.php:2068 msgid "Grant" msgstr "Grant" -#: server_privileges.php:1552 server_privileges.php:2154 +#: server_privileges.php:1556 server_privileges.php:2158 msgid "Any" msgstr "Qualsiasi" -#: server_privileges.php:1601 server_privileges.php:1625 -#: server_privileges.php:2019 server_privileges.php:2208 +#: server_privileges.php:1605 server_privileges.php:1629 +#: server_privileges.php:2023 server_privileges.php:2212 msgid "Add a new User" msgstr "Aggiungi un nuovo utente" -#: server_privileges.php:1606 +#: server_privileges.php:1610 msgid "Remove selected users" msgstr "Rimuove gli utenti selezionati" -#: server_privileges.php:1609 +#: server_privileges.php:1613 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Revoca tutti i privilegi attivi agli utenti e dopo li cancella." -#: server_privileges.php:1610 server_privileges.php:1611 -#: server_privileges.php:1612 +#: server_privileges.php:1614 server_privileges.php:1615 +#: server_privileges.php:1616 msgid "Drop the databases that have the same names as the users." msgstr "Elimina i databases gli stessi nomi degli utenti." -#: server_privileges.php:1628 +#: server_privileges.php:1632 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4920,52 +4993,52 @@ msgstr "" "privilegi usati dal server se sono stati fatti cambiamenti manuali. In " "questo caso, Si dovrebbero %srinfrescare i privilegi%s prima di continuare." -#: server_privileges.php:1676 +#: server_privileges.php:1680 msgid "The selected user was not found in the privilege table." msgstr "L'utente selezionato non è stato trovato nella tabella dei privilegi." -#: server_privileges.php:1716 +#: server_privileges.php:1720 msgid "Column-specific privileges" msgstr "Privilegi relativi alle colonne" -#: server_privileges.php:1917 +#: server_privileges.php:1921 msgid "Add privileges on the following database" msgstr "Aggiungi privilegi sul seguente database" -#: server_privileges.php:1935 +#: server_privileges.php:1939 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "I caratteri jolly _ e % dovrebbero essere preceduti da un \\ per l'utilizzo " "letterale" -#: server_privileges.php:1938 +#: server_privileges.php:1942 msgid "Add privileges on the following table" msgstr "Aggiungi privilegi sulla seguente tabella" -#: server_privileges.php:1995 +#: server_privileges.php:1999 msgid "Change Login Information / Copy User" msgstr "Cambia le Informazioni di Login / Copia Utente" -#: server_privileges.php:1998 +#: server_privileges.php:2002 msgid "Create a new user with the same privileges and ..." msgstr "Crea un nuovo utente con gli stessi privilegi e ..." -#: server_privileges.php:2000 +#: server_privileges.php:2004 msgid "... keep the old one." msgstr "... mantieni quello vecchio." -#: server_privileges.php:2001 +#: server_privileges.php:2005 msgid " ... delete the old one from the user tables." msgstr " ... cancella quello vecchio dalla tabella degli utenti." -#: server_privileges.php:2002 +#: server_privileges.php:2006 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "" " ... revoca tutti i privilegi attivi da quello vecchio e in seguito " "cancellalo." -#: server_privileges.php:2003 +#: server_privileges.php:2007 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -4973,44 +5046,44 @@ msgstr "" " ... cancella quello vecchio dalla tabella degli utenti e in seguito " "ricarica i privilegi." -#: server_privileges.php:2025 +#: server_privileges.php:2029 msgid "Database for user" msgstr "Database per l'utente" -#: server_privileges.php:2029 +#: server_privileges.php:2033 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Nessuno" -#: server_privileges.php:2030 +#: server_privileges.php:2034 msgid "Create database with same name and grant all privileges" msgstr "Crea un database con lo stesso nome e concedi tutti i privilegi" -#: server_privileges.php:2031 +#: server_privileges.php:2035 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Concedi tutti i privilegi al nome con caratteri jolly (username\\_%)" -#: server_privileges.php:2034 +#: server_privileges.php:2038 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Garantisci tutti i privilegi per il database "%s"" -#: server_privileges.php:2057 +#: server_privileges.php:2061 #, php-format msgid "Users having access to "%s"" msgstr "Utenti che hanno accesso a \"%s\"" -#: server_privileges.php:2165 +#: server_privileges.php:2169 msgid "global" msgstr "globale" -#: server_privileges.php:2167 +#: server_privileges.php:2171 msgid "database-specific" msgstr "specifico del database" -#: server_privileges.php:2169 +#: server_privileges.php:2173 msgid "wildcard" msgstr "wildcard" @@ -5031,55 +5104,55 @@ msgstr "" msgid "ID" msgstr "ID" -#: server_replication.php:50 +#: server_replication.php:49 msgid "Unknown error" msgstr "" -#: server_replication.php:57 +#: server_replication.php:56 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:64 +#: server_replication.php:63 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:70 +#: server_replication.php:69 msgid "Unable to change master" msgstr "" -#: server_replication.php:73 +#: server_replication.php:72 #, php-format msgid "Master server changed succesfully to %s" msgstr "" -#: server_replication.php:181 +#: server_replication.php:180 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:183 server_status.php:391 +#: server_replication.php:182 server_status.php:391 #, fuzzy msgid "Show master status" msgstr "Mostra lo stato degli slave" -#: server_replication.php:186 +#: server_replication.php:185 msgid "Show connected slaves" msgstr "" -#: server_replication.php:209 +#: server_replication.php:208 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:216 +#: server_replication.php:215 #, fuzzy msgid "Master configuration" msgstr "Configurazione del server" -#: server_replication.php:217 +#: server_replication.php:216 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -5088,109 +5161,109 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:220 +#: server_replication.php:219 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:221 +#: server_replication.php:220 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:224 +#: server_replication.php:223 #, fuzzy msgid "Please select databases:" msgstr "Prego, selezionare un database" -#: server_replication.php:227 +#: server_replication.php:226 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: server_replication.php:229 +#: server_replication.php:228 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: server_replication.php:292 +#: server_replication.php:291 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:295 +#: server_replication.php:294 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:304 +#: server_replication.php:303 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:307 +#: server_replication.php:306 msgid "See slave status table" msgstr "" -#: server_replication.php:310 +#: server_replication.php:309 msgid "Synchronize databases with master" msgstr "Sincronizza i database con il master" -#: server_replication.php:321 +#: server_replication.php:320 msgid "Control slave:" msgstr "" -#: server_replication.php:324 +#: server_replication.php:323 msgid "Full start" msgstr "Pieno avvio" -#: server_replication.php:324 +#: server_replication.php:323 msgid "Full stop" msgstr "Pieno spegnimento" -#: server_replication.php:325 +#: server_replication.php:324 msgid "Reset slave" msgstr "" -#: server_replication.php:326 +#: server_replication.php:325 #, php-format msgid "SQL Thread %s only" msgstr "" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 #, fuzzy msgid "Start" msgstr "Avvio" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 msgid "Stop" msgstr "" -#: server_replication.php:327 +#: server_replication.php:326 #, php-format msgid "IO Thread %s only" msgstr "" -#: server_replication.php:331 +#: server_replication.php:330 msgid "Error management:" msgstr "" -#: server_replication.php:333 +#: server_replication.php:332 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:335 +#: server_replication.php:334 msgid "Skip current error" msgstr "" -#: server_replication.php:336 +#: server_replication.php:335 msgid "Skip next" msgstr "" -#: server_replication.php:339 +#: server_replication.php:338 msgid "errors." msgstr "" -#: server_replication.php:354 +#: server_replication.php:353 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -6029,116 +6102,116 @@ msgstr "Tipo di Query" msgid "Replication status" msgstr "Replicazione" -#: server_synchronize.php:93 +#: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "Impossibile connettersi all'origine" -#: server_synchronize.php:96 +#: server_synchronize.php:95 msgid "Could not connect to the target" msgstr "Impossibile connettersi alla destinazione" -#: server_synchronize.php:121 server_synchronize.php:124 tbl_create.php:77 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "database '%s' non esistente." -#: server_synchronize.php:264 +#: server_synchronize.php:263 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:271 +#: server_synchronize.php:270 msgid "Data Synchronization" msgstr "Sincronizzazione dati" -#: server_synchronize.php:399 server_synchronize.php:838 +#: server_synchronize.php:398 server_synchronize.php:837 msgid "not present" msgstr "non presente" -#: server_synchronize.php:423 server_synchronize.php:866 +#: server_synchronize.php:422 server_synchronize.php:865 #, fuzzy msgid "Structure Difference" msgstr "Struttura per la vista" -#: server_synchronize.php:424 server_synchronize.php:867 +#: server_synchronize.php:423 server_synchronize.php:866 msgid "Data Difference" msgstr "Differenze dei dati" -#: server_synchronize.php:429 server_synchronize.php:872 +#: server_synchronize.php:428 server_synchronize.php:871 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:430 server_synchronize.php:873 +#: server_synchronize.php:429 server_synchronize.php:872 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:431 server_synchronize.php:874 +#: server_synchronize.php:430 server_synchronize.php:873 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:432 server_synchronize.php:875 +#: server_synchronize.php:431 server_synchronize.php:874 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:433 server_synchronize.php:876 +#: server_synchronize.php:432 server_synchronize.php:875 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:434 server_synchronize.php:877 +#: server_synchronize.php:433 server_synchronize.php:876 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:435 server_synchronize.php:878 +#: server_synchronize.php:434 server_synchronize.php:877 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:445 server_synchronize.php:889 +#: server_synchronize.php:444 server_synchronize.php:888 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:448 server_synchronize.php:893 +#: server_synchronize.php:447 server_synchronize.php:892 msgid "Apply Selected Changes" msgstr "Applica i cambiamenti selezionati" -#: server_synchronize.php:450 server_synchronize.php:895 +#: server_synchronize.php:449 server_synchronize.php:894 msgid "Synchronize Databases" msgstr "Sincronizzare i database" -#: server_synchronize.php:463 +#: server_synchronize.php:462 msgid "Selected target tables have been synchronized with source tables." msgstr "" "Le tabelle di destinazione selezionate sono state sincronizzate con le " "tabelle di origine." -#: server_synchronize.php:941 +#: server_synchronize.php:940 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:1002 +#: server_synchronize.php:1001 msgid "The following queries have been executed:" msgstr "Le seguenti query sono state eseguite:" -#: server_synchronize.php:1121 +#: server_synchronize.php:1120 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1122 +#: server_synchronize.php:1121 #, fuzzy #| msgid "Insecure connection" msgid "Current connection" msgstr "Connessione non sicura" -#: server_synchronize.php:1151 +#: server_synchronize.php:1150 #, fuzzy, php-format #| msgid "Configuration" msgid "Configuration: %s" msgstr "Configurazione" -#: server_synchronize.php:1166 +#: server_synchronize.php:1165 msgid "Socket" msgstr "" -#: server_synchronize.php:1212 +#: server_synchronize.php:1211 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -6703,8 +6776,8 @@ msgstr "" #: setup/lib/messages.inc.php:128 msgid "" "Configure phpMyAdmin database to gain access to additional features, see " -"[a@../Documentation.html#linked-tables]linked-tables infrastructure[/a] in " -"documentation" +"[a@../Documentation.html#linked-tables]phpMyAdmin configuration storage[/a] " +"in documentation" msgstr "" #: setup/lib/messages.inc.php:129 setup/lib/messages.inc.php:290 @@ -7778,118 +7851,118 @@ msgstr "" msgid "ZIP" msgstr "" -#: sql.php:495 tbl_replace.php:385 +#: sql.php:494 tbl_replace.php:384 #, php-format msgid "Inserted row id: %1$d" msgstr "Inserita riga id: %1$d" -#: sql.php:512 +#: sql.php:511 msgid "Showing as PHP code" msgstr "Mostrando il codice PHP" -#: sql.php:515 tbl_replace.php:359 +#: sql.php:514 tbl_replace.php:358 msgid "Showing SQL query" msgstr "Mostrando la query SQL" -#: sql.php:517 +#: sql.php:516 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Valida SQL" -#: sql.php:638 +#: sql.php:631 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemi con gli indici della tabella `%s`" -#: sql.php:670 +#: sql.php:663 msgid "Label" msgstr "Etichetta" -#: tbl_addfield.php:188 tbl_alter.php:102 tbl_indexes.php:97 +#: tbl_addfield.php:185 tbl_alter.php:100 tbl_indexes.php:97 #, php-format msgid "Table %1$s has been altered successfully" msgstr "La tabella %1$s è già stata modificata con successo" -#: tbl_change.php:250 tbl_select.php:26 tbl_select.php:27 tbl_select.php:30 -#: tbl_select.php:33 +#: tbl_change.php:245 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_select.php:32 msgid "Browse foreign values" msgstr "Naviga tra i valori esterni" -#: tbl_change.php:280 tbl_change.php:318 +#: tbl_change.php:275 tbl_change.php:313 msgid "Function" msgstr "Funzione" -#: tbl_change.php:300 tbl_indexes.php:199 tbl_indexes.php:224 +#: tbl_change.php:295 tbl_indexes.php:198 tbl_indexes.php:223 msgid "Ignore" msgstr "Ignora" -#: tbl_change.php:725 +#: tbl_change.php:720 #, fuzzy #| msgid " Because of its length,
                            this field might not be editable " msgid " Because of its length,
                            this column might not be editable " msgstr "" " A causa della sua lunghezza,
                            questo campo non può essere modificato " -#: tbl_change.php:884 +#: tbl_change.php:835 msgid "Remove BLOB Repository Reference" msgstr "Rimuovi le referenze al REPOSITORY BLOB" -#: tbl_change.php:890 +#: tbl_change.php:841 msgid "Binary - do not edit" msgstr "Tipo di dato Binario - non modificare" -#: tbl_change.php:983 +#: tbl_change.php:889 msgid "Upload to BLOB repository" msgstr "Carica nella repository BLOB" -#: tbl_change.php:1128 +#: tbl_change.php:1026 msgid "Insert as new row" msgstr "Inserisci come nuova riga" -#: tbl_change.php:1129 +#: tbl_change.php:1027 msgid "Insert as new row and ignore errors" msgstr "Inserisci come nuova riga e ignora gli errori" -#: tbl_change.php:1130 +#: tbl_change.php:1028 #, fuzzy msgid "Show insert query" msgstr "Mostrando la query SQL" -#: tbl_change.php:1145 +#: tbl_change.php:1043 msgid "Go back to previous page" msgstr "Indietro" -#: tbl_change.php:1146 +#: tbl_change.php:1044 msgid "Insert another new row" msgstr "Inserisci un nuovo record" -#: tbl_change.php:1150 +#: tbl_change.php:1048 msgid "Go back to this page" msgstr "Torna a questa pagina" -#: tbl_change.php:1158 +#: tbl_change.php:1056 msgid "Edit next row" msgstr "Modifica il record successivo" -#: tbl_change.php:1169 +#: tbl_change.php:1067 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Usare il tasto TAB per spostare il cursore di valore in valore, o CTRL" "+frecce per spostarlo altrove" -#: tbl_change.php:1207 +#: tbl_change.php:1105 #, php-format msgid "Restart insertion with %s rows" msgstr "Riprendi inserimento con la riga %s" -#: tbl_create.php:57 +#: tbl_create.php:55 #, php-format msgid "Table %s already exists!" msgstr "La tabella %s esiste già!" -#: tbl_create.php:244 +#: tbl_create.php:241 #, php-format msgid "Table %1$s has been created." msgstr "La tabella %1$s è stata creata." @@ -7910,197 +7983,197 @@ msgstr "Impossibile rinominare l'indice a PRIMARIO!" msgid "No index parts defined!" msgstr "Nessuna parte di indice definita!" -#: tbl_indexes.php:159 +#: tbl_indexes.php:158 msgid "Create a new index" msgstr "Crea un nuovo indice" -#: tbl_indexes.php:161 +#: tbl_indexes.php:160 msgid "Modify an index" msgstr "Modifica un indice" -#: tbl_indexes.php:167 +#: tbl_indexes.php:166 msgid "Index name:" msgstr "Nome dell'indice :" -#: tbl_indexes.php:173 +#: tbl_indexes.php:172 msgid "Index type:" msgstr "Tipo di indice :" -#: tbl_indexes.php:183 +#: tbl_indexes.php:182 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" "(\"PRIMARY\" deve essere il nome di, e solo di, una chiave " "primaria!)" -#: tbl_indexes.php:250 +#: tbl_indexes.php:249 #, php-format msgid "Add to index  %s column(s)" msgstr "Aggiungi all'indice %s colonna/e" -#: tbl_indexes.php:255 tbl_structure.php:588 tbl_structure.php:599 +#: tbl_indexes.php:254 tbl_structure.php:586 tbl_structure.php:597 msgid "Column count has to be larger than zero." msgstr "Il contatore delle colonne deve essere superiore a 0." -#: tbl_move_copy.php:45 +#: tbl_move_copy.php:44 msgid "Can't move table to same one!" msgstr "Impossibile spostare la tabella su se stessa!" -#: tbl_move_copy.php:47 +#: tbl_move_copy.php:46 msgid "Can't copy table to same one!" msgstr "Impossibile copiare la tabella su se stessa!" -#: tbl_move_copy.php:55 +#: tbl_move_copy.php:54 #, php-format msgid "Table %s has been moved to %s." msgstr "La tabella %s è stata spostata in %s." -#: tbl_move_copy.php:57 +#: tbl_move_copy.php:56 #, php-format msgid "Table %s has been copied to %s." msgstr "La tabella %s è stata copiata su %s." -#: tbl_move_copy.php:81 +#: tbl_move_copy.php:80 msgid "The table name is empty!" msgstr "Il nome della tabella è vuoto!" -#: tbl_operations.php:248 +#: tbl_operations.php:246 msgid "Alter table order by" msgstr "Altera tabella ordinata per" -#: tbl_operations.php:257 +#: tbl_operations.php:255 msgid "(singly)" msgstr "(singolarmente)" -#: tbl_operations.php:277 +#: tbl_operations.php:275 msgid "Move table to (database.table):" msgstr "Sposta la tabella nel (database.tabella):" -#: tbl_operations.php:335 +#: tbl_operations.php:333 msgid "Table options" msgstr "Opzioni della tabella" -#: tbl_operations.php:339 +#: tbl_operations.php:337 msgid "Rename table to" msgstr "Rinomina la tabella in" -#: tbl_operations.php:510 +#: tbl_operations.php:508 msgid "Copy table to (database.table):" msgstr "Copia la tabella nel (database.tabella):" -#: tbl_operations.php:557 +#: tbl_operations.php:555 msgid "Switch to copied table" msgstr "Passa alla tabella copiata" -#: tbl_operations.php:569 +#: tbl_operations.php:567 msgid "Table maintenance" msgstr "Amministrazione tabella" -#: tbl_operations.php:590 +#: tbl_operations.php:588 msgid "Defragment table" msgstr "Deframmenta la tabella" -#: tbl_operations.php:629 +#: tbl_operations.php:627 #, php-format msgid "Table %s has been flushed" msgstr "La tabella %s è stata inizializzata" -#: tbl_operations.php:635 +#: tbl_operations.php:633 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Inizializza (\"FLUSH\") la tabella" -#: tbl_operations.php:650 +#: tbl_operations.php:648 msgid "Partition maintenance" msgstr "Manutenzione partizione" -#: tbl_operations.php:658 +#: tbl_operations.php:656 #, php-format msgid "Partition %s" msgstr "Partizione %s" -#: tbl_operations.php:661 +#: tbl_operations.php:659 msgid "Analyze" msgstr "Analizza" -#: tbl_operations.php:662 +#: tbl_operations.php:660 msgid "Check" msgstr "Controlla" -#: tbl_operations.php:663 +#: tbl_operations.php:661 msgid "Optimize" msgstr "Ottimizza" -#: tbl_operations.php:664 +#: tbl_operations.php:662 msgid "Rebuild" msgstr "Ricrea" -#: tbl_operations.php:665 +#: tbl_operations.php:663 msgid "Repair" msgstr "Ripara" -#: tbl_operations.php:677 +#: tbl_operations.php:675 msgid "Remove partitioning" msgstr "Rimuove partizionamento" -#: tbl_operations.php:703 +#: tbl_operations.php:701 msgid "Check referential integrity:" msgstr "Controlla l'integrità delle referenze:" -#: tbl_printview.php:73 +#: tbl_printview.php:72 msgid "Show tables" msgstr "Mostra le tabelle" -#: tbl_printview.php:308 tbl_structure.php:655 +#: tbl_printview.php:307 tbl_structure.php:653 msgid "Space usage" msgstr "Spazio utilizzato" -#: tbl_printview.php:312 tbl_structure.php:659 +#: tbl_printview.php:311 tbl_structure.php:657 msgid "Usage" msgstr "Utilizzo" -#: tbl_printview.php:339 tbl_structure.php:686 +#: tbl_printview.php:338 tbl_structure.php:684 msgid "Effective" msgstr "Effettivo" -#: tbl_printview.php:364 tbl_structure.php:724 +#: tbl_printview.php:363 tbl_structure.php:722 msgid "Row Statistics" msgstr "Statistiche righe" -#: tbl_printview.php:367 tbl_structure.php:727 +#: tbl_printview.php:366 tbl_structure.php:725 msgid "Statements" msgstr "Istruzioni" -#: tbl_printview.php:378 tbl_structure.php:739 +#: tbl_printview.php:377 tbl_structure.php:737 msgid "static" msgstr "" -#: tbl_printview.php:380 tbl_structure.php:741 +#: tbl_printview.php:379 tbl_structure.php:739 msgid "dynamic" msgstr "dinamico" -#: tbl_printview.php:402 tbl_structure.php:784 +#: tbl_printview.php:401 tbl_structure.php:782 msgid "Row length" msgstr "Lunghezza riga" -#: tbl_printview.php:412 tbl_structure.php:792 +#: tbl_printview.php:411 tbl_structure.php:790 msgid " Row size " msgstr "Dimensione riga" -#: tbl_relation.php:278 +#: tbl_relation.php:276 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" "Errore nel creare una \"foreign key\" su %1$s (controlla il tipo di dati)" -#: tbl_relation.php:404 +#: tbl_relation.php:402 #, fuzzy #| msgid "Internal relations" msgid "Internal relation" msgstr "Relazioni interne" -#: tbl_relation.php:406 +#: tbl_relation.php:404 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -8108,7 +8181,7 @@ msgstr "" "Una relazione interna non %è necessaria, quando una corrispondente relazione " "FOREIGN KEY esiste." -#: tbl_relation.php:412 +#: tbl_relation.php:410 msgid "Foreign key constraint" msgstr "" @@ -8116,232 +8189,232 @@ msgstr "" msgid "No rows selected" msgstr "Nessuna riga selezionata" -#: tbl_select.php:130 +#: tbl_select.php:129 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Esegui \"query da esempio\" (carattere jolly: \"%\")" -#: tbl_select.php:136 +#: tbl_select.php:135 msgid "Operator" msgstr "Operatore" -#: tbl_select.php:267 +#: tbl_select.php:266 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "Seleziona campi (almeno uno):" -#: tbl_select.php:285 +#: tbl_select.php:284 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Aggiungi condizioni di ricerca (corpo della clausola \"where\"):" -#: tbl_select.php:292 +#: tbl_select.php:291 msgid "Number of rows per page" msgstr "record per pagina" -#: tbl_select.php:298 +#: tbl_select.php:297 msgid "Display order:" msgstr "Ordine di visualizzazione:" -#: tbl_structure.php:160 +#: tbl_structure.php:159 msgid "Browse distinct values" msgstr "Naviga tra i valori DISTINCT" -#: tbl_structure.php:360 +#: tbl_structure.php:358 #, fuzzy #| msgid "None" msgctxt "None for default" msgid "None" msgstr "Nessuno" -#: tbl_structure.php:373 +#: tbl_structure.php:371 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Column %s has been dropped" msgstr "La tabella %s è stata eliminata" -#: tbl_structure.php:384 +#: tbl_structure.php:382 #, php-format msgid "A primary key has been added on %s" msgstr "Una chiave primaria è stata aggiunta in %s" -#: tbl_structure.php:399 tbl_structure.php:413 tbl_structure.php:427 +#: tbl_structure.php:397 tbl_structure.php:411 tbl_structure.php:425 #, php-format msgid "An index has been added on %s" msgstr "Un indice è stato aggiunto in %s" -#: tbl_structure.php:505 tbl_structure.php:507 +#: tbl_structure.php:503 tbl_structure.php:505 msgid "Relation view" msgstr "Vedi relazioni" -#: tbl_structure.php:514 tbl_structure.php:516 +#: tbl_structure.php:512 tbl_structure.php:514 msgid "Propose table structure" msgstr "Proponi la struttura della tabella" -#: tbl_structure.php:539 +#: tbl_structure.php:537 #, fuzzy #| msgid "Add %s field(s)" msgid "Add column" msgstr "Aggiungi %s campo(i)" -#: tbl_structure.php:553 +#: tbl_structure.php:551 msgid "At End of Table" msgstr "Alla fine della tabella" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At Beginning of Table" msgstr "All'inizio della tabella" -#: tbl_structure.php:555 +#: tbl_structure.php:553 #, php-format msgid "After %s" msgstr "Dopo %s" -#: tbl_structure.php:593 +#: tbl_structure.php:591 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "Crea un indice su %s columns" -#: tbl_structure.php:755 +#: tbl_structure.php:753 msgid "partitioned" msgstr "partizionato" -#: tbl_tracking.php:113 +#: tbl_tracking.php:109 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:186 +#: tbl_tracking.php:182 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "" -#: tbl_tracking.php:194 +#: tbl_tracking.php:190 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "" -#: tbl_tracking.php:202 +#: tbl_tracking.php:198 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "" -#: tbl_tracking.php:212 +#: tbl_tracking.php:208 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:219 +#: tbl_tracking.php:215 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:220 +#: tbl_tracking.php:216 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:229 +#: tbl_tracking.php:225 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:250 tbl_tracking.php:378 +#: tbl_tracking.php:245 tbl_tracking.php:373 msgid "Close" msgstr "" -#: tbl_tracking.php:261 +#: tbl_tracking.php:256 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:380 +#: tbl_tracking.php:375 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:396 tbl_tracking.php:503 +#: tbl_tracking.php:391 tbl_tracking.php:498 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "" -#: tbl_tracking.php:409 tbl_tracking.php:460 +#: tbl_tracking.php:404 tbl_tracking.php:455 #, fuzzy msgid "Date" msgstr "Dati" -#: tbl_tracking.php:410 tbl_tracking.php:461 +#: tbl_tracking.php:405 tbl_tracking.php:456 #, fuzzy msgid "Username" msgstr "Nome utente:" -#: tbl_tracking.php:411 +#: tbl_tracking.php:406 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:462 +#: tbl_tracking.php:457 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:506 +#: tbl_tracking.php:501 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:507 +#: tbl_tracking.php:502 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:520 +#: tbl_tracking.php:515 #, fuzzy, php-format msgid "Export as %s" msgstr "Tipo di esportazione" -#: tbl_tracking.php:560 +#: tbl_tracking.php:555 msgid "Show versions" msgstr "" -#: tbl_tracking.php:592 +#: tbl_tracking.php:587 #, fuzzy msgid "Version" msgstr "Persiano" -#: tbl_tracking.php:639 +#: tbl_tracking.php:634 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "" -#: tbl_tracking.php:641 +#: tbl_tracking.php:636 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:652 +#: tbl_tracking.php:647 #, php-format msgid "Activate tracking for %s.%s" msgstr "" -#: tbl_tracking.php:654 +#: tbl_tracking.php:649 msgid "Activate now" msgstr "" -#: tbl_tracking.php:667 +#: tbl_tracking.php:662 #, php-format msgid "Create version %s of %s.%s" msgstr "" -#: tbl_tracking.php:671 +#: tbl_tracking.php:666 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:679 +#: tbl_tracking.php:674 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:687 +#: tbl_tracking.php:682 #, fuzzy msgid "Create version" msgstr "Crea relazioni" @@ -8393,11 +8466,35 @@ msgstr "Il profilo è stato aggiornato." msgid "VIEW name" msgstr "Nome VISTA" -#: view_operations.php:92 +#: view_operations.php:91 #, fuzzy msgid "Rename view to" msgstr "Rinomina la tabella in" +#~ msgid "BLOB Repository" +#~ msgstr "Repository BLOB" + +#~ msgctxt "BLOB repository" +#~ msgid "Enabled" +#~ msgstr "Attivato" + +#~ msgid "Disable" +#~ msgstr "Disabilita" + +#~ msgid "Damaged" +#~ msgstr "Danneggiato" + +#~ msgctxt "BLOB repository" +#~ msgid "Repair" +#~ msgstr "Riparazione" + +#~ msgctxt "BLOB repository" +#~ msgid "Disabled" +#~ msgstr "Disabilitato" + +#~ msgid "Enable" +#~ msgstr "Abilita" + #~ msgid "" #~ "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " #~ "extension. Please check your PHP configuration." diff --git a/po/ja.po b/po/ja.po index 21e289434..30df2220c 100644 --- a/po/ja.po +++ b/po/ja.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-21 13:53+0200\n" +"POT-Creation-Date: 2010-07-26 17:18+0200\n" "PO-Revision-Date: 2010-03-12 11:22+0200\n" "Last-Translator: Michal \n" "Language-Team: japanese \n" @@ -14,19 +14,19 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.1\n" -#: browse_foreigners.php:37 browse_foreigners.php:58 -#: libraries/display_tbl.lib.php:416 server_privileges.php:1506 +#: browse_foreigners.php:36 browse_foreigners.php:57 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1510 msgid "Show all" msgstr "すべて表示" -#: browse_foreigners.php:81 libraries/common.lib.php:2313 -#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:393 -#: libraries/export/pdf.php:146 pdf_schema.php:282 pdf_schema.php:1122 -#: pdf_schema.php:1138 +#: browse_foreigners.php:80 libraries/common.lib.php:2318 +#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:392 +#: libraries/export/pdf.php:146 pdf_schema.php:281 pdf_schema.php:1121 +#: pdf_schema.php:1137 msgid "Page number:" msgstr "ページ番号:" -#: browse_foreigners.php:131 +#: browse_foreigners.php:130 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -36,139 +36,153 @@ msgstr "" "たか、ブラウザのセキュリティ設定でクロスウィンドウの更新をブロックしているも" "のと思われます" -#: browse_foreigners.php:149 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2829 -#: libraries/common.lib.php:2836 libraries/db_links.inc.php:74 -#: libraries/tbl_links.inc.php:62 +#: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 +#: db_structure.php:89 db_structure.php:91 db_structure.php:102 +#: db_structure.php:104 libraries/common.lib.php:2834 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "検索" -#: browse_foreigners.php:152 db_operations.php:384 db_operations.php:428 -#: db_operations.php:498 db_operations.php:608 db_search.php:344 -#: db_structure.php:566 js/messages.php:48 libraries/Config.class.php:1043 -#: libraries/Theme_Manager.class.php:310 +#: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 +#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 +#: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 -#: libraries/common.lib.php:1340 libraries/common.lib.php:2289 +#: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 -#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:275 -#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:531 -#: libraries/display_tbl.lib.php:613 libraries/replication_gui.lib.php:75 +#: libraries/display_export.lib.php:269 libraries/display_import.lib.php:275 +#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 +#: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 #: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:781 -#: main.php:127 navigation.php:231 pdf_pages.php:291 pdf_pages.php:327 -#: pdf_pages.php:529 pmd_pdf.php:115 server_binlog.php:128 -#: server_privileges.php:664 server_privileges.php:1616 -#: server_privileges.php:1963 server_privileges.php:2010 -#: server_privileges.php:2049 server_replication.php:234 -#: server_replication.php:317 server_replication.php:340 -#: server_synchronize.php:1208 tbl_change.php:328 tbl_change.php:1172 -#: tbl_change.php:1209 tbl_indexes.php:253 tbl_operations.php:264 -#: tbl_operations.php:301 tbl_operations.php:498 tbl_operations.php:560 -#: tbl_operations.php:680 tbl_select.php:324 tbl_structure.php:561 -#: tbl_structure.php:596 tbl_tracking.php:394 tbl_tracking.php:511 -#: view_create.php:181 view_operations.php:100 +#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 +#: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 +#: server_privileges.php:663 server_privileges.php:1620 +#: server_privileges.php:1967 server_privileges.php:2014 +#: server_privileges.php:2053 server_replication.php:233 +#: server_replication.php:316 server_replication.php:339 +#: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 +#: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 +#: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 +#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "実行する" -#: browse_foreigners.php:167 browse_foreigners.php:171 -#: libraries/Index.class.php:441 tbl_tracking.php:319 +#: browse_foreigners.php:166 browse_foreigners.php:170 +#: libraries/Index.class.php:441 tbl_tracking.php:314 msgid "Keyname" msgstr "キー名" -#: browse_foreigners.php:168 browse_foreigners.php:170 -#: server_collations.php:54 server_collations.php:66 server_engines.php:58 +#: browse_foreigners.php:167 browse_foreigners.php:169 +#: server_collations.php:54 server_collations.php:66 server_engines.php:57 #: server_status.php:738 msgid "Description" msgstr "説明" -#: browse_foreigners.php:246 browse_foreigners.php:255 -#: browse_foreigners.php:267 browse_foreigners.php:275 +#: browse_foreigners.php:245 browse_foreigners.php:254 +#: browse_foreigners.php:266 browse_foreigners.php:274 msgid "Use this value" msgstr "この値を利用する" -#: db_create.php:45 +#: bs_disp_as_mime_type.php:29 bs_play_media.php:35 +msgid "No blob streaming server configured!" +msgstr "" + +#: bs_disp_as_mime_type.php:35 +#, fuzzy +#| msgid "Failed to write file to disk." +msgid "Failed to fetch headers" +msgstr "ファイルをディスクに書き込めません。" + +#: bs_disp_as_mime_type.php:41 +msgid "Failed to open remote URL" +msgstr "" + +#: db_create.php:44 #, php-format msgid "Database %1$s has been created." msgstr "データベース %1$s を作成しました。" -#: db_datadict.php:48 db_operations.php:377 +#: db_datadict.php:48 db_operations.php:313 msgid "Database comment: " msgstr "データベースのコメント:" -#: db_datadict.php:164 libraries/tbl_properties.inc.php:723 -#: pdf_schema.php:1235 tbl_operations.php:346 tbl_printview.php:128 +#: db_datadict.php:164 libraries/tbl_properties.inc.php:722 +#: pdf_schema.php:1234 tbl_operations.php:344 tbl_printview.php:127 msgid "Table comments" msgstr "テーブルのコメント" -#: db_datadict.php:173 db_qbe.php:173 libraries/Index.class.php:445 +#: db_datadict.php:173 db_qbe.php:170 libraries/Index.class.php:445 #: libraries/export/htmlword.php:243 libraries/export/latex.php:364 #: libraries/export/odt.php:293 libraries/export/texytext.php:233 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:274 -#: pdf_schema.php:1261 pdf_schema.php:1282 tbl_change.php:306 -#: tbl_indexes.php:188 tbl_printview.php:140 tbl_relation.php:401 -#: tbl_select.php:133 tbl_structure.php:176 tbl_tracking.php:272 -#: tbl_tracking.php:323 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 +#: pdf_schema.php:1260 pdf_schema.php:1281 tbl_change.php:301 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:132 tbl_structure.php:175 tbl_tracking.php:267 +#: tbl_tracking.php:318 #, fuzzy #| msgid "Column names" msgid "Column" msgstr "カラム名" -#: db_datadict.php:174 db_printview.php:105 libraries/Index.class.php:442 +#: db_datadict.php:174 db_printview.php:104 libraries/Index.class.php:442 #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 #: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:244 #: libraries/export/latex.php:364 libraries/export/odt.php:296 #: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:99 -#: pdf_schema.php:1262 pdf_schema.php:1283 server_privileges.php:2062 -#: tbl_change.php:285 tbl_change.php:312 tbl_printview.php:141 -#: tbl_printview.php:311 tbl_select.php:134 tbl_structure.php:177 -#: tbl_structure.php:658 tbl_tracking.php:273 tbl_tracking.php:320 +#: pdf_schema.php:1261 pdf_schema.php:1282 server_privileges.php:2066 +#: tbl_change.php:280 tbl_change.php:307 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:133 tbl_structure.php:176 +#: tbl_structure.php:656 tbl_tracking.php:268 tbl_tracking.php:315 msgid "Type" msgstr "種別" #: db_datadict.php:176 libraries/Index.class.php:448 #: libraries/export/htmlword.php:245 libraries/export/latex.php:364 #: libraries/export/odt.php:299 libraries/export/texytext.php:235 -#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1264 -#: pdf_schema.php:1285 tbl_change.php:321 tbl_printview.php:143 -#: tbl_structure.php:180 tbl_tracking.php:275 tbl_tracking.php:326 +#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1263 +#: pdf_schema.php:1284 tbl_change.php:316 tbl_printview.php:142 +#: tbl_structure.php:179 tbl_tracking.php:270 tbl_tracking.php:321 msgid "Null" msgstr "ヌル(NULL)" -#: db_datadict.php:177 db_structure.php:500 libraries/export/htmlword.php:246 +#: db_datadict.php:177 db_structure.php:486 libraries/export/htmlword.php:246 #: libraries/export/latex.php:364 libraries/export/odt.php:302 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:105 -#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 -#: tbl_structure.php:181 tbl_tracking.php:276 +#: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:143 +#: tbl_structure.php:180 tbl_tracking.php:271 msgid "Default" msgstr "デフォルト値" #: db_datadict.php:181 libraries/export/htmlword.php:248 #: libraries/export/latex.php:366 libraries/export/odt.php:306 -#: libraries/export/texytext.php:238 pdf_schema.php:1267 pdf_schema.php:1288 -#: tbl_printview.php:148 +#: libraries/export/texytext.php:238 pdf_schema.php:1266 pdf_schema.php:1287 +#: tbl_printview.php:147 msgid "Links to" msgstr "リンク先" -#: db_datadict.php:183 db_printview.php:111 libraries/export/htmlword.php:251 +#: db_datadict.php:183 db_printview.php:110 libraries/export/htmlword.php:251 #: libraries/export/latex.php:49 libraries/export/latex.php:369 #: libraries/export/odt.php:37 libraries/export/odt.php:311 #: libraries/export/sql.php:29 libraries/export/texytext.php:241 -#: libraries/tbl_properties.inc.php:129 pdf_schema.php:1278 -#: pdf_schema.php:1289 tbl_printview.php:150 +#: libraries/tbl_properties.inc.php:128 pdf_schema.php:1277 +#: pdf_schema.php:1288 tbl_printview.php:149 msgid "Comments" msgstr "コメント" #: db_datadict.php:266 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/export/htmlword.php:321 #: libraries/export/latex.php:434 libraries/export/odt.php:367 -#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:262 -#: pdf_schema.php:1343 server_privileges.php:1560 server_privileges.php:1571 -#: server_privileges.php:1881 server_privileges.php:1886 -#: server_privileges.php:2179 sql.php:131 sql.php:193 tbl_printview.php:227 -#: tbl_structure.php:349 tbl_tracking.php:336 tbl_tracking.php:341 +#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:261 +#: pdf_schema.php:1342 server_privileges.php:1564 server_privileges.php:1575 +#: server_privileges.php:1885 server_privileges.php:1890 +#: server_privileges.php:2183 sql.php:130 sql.php:192 tbl_printview.php:226 +#: tbl_structure.php:347 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "いいえ" @@ -179,17 +193,17 @@ msgstr "いいえ" #: libraries/mult_submits.inc.php:49 libraries/mult_submits.inc.php:54 #: libraries/mult_submits.inc.php:59 libraries/mult_submits.inc.php:91 #: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:105 -#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:261 -#: libraries/mult_submits.inc.php:272 pdf_schema.php:1343 -#: server_databases.php:63 server_privileges.php:1557 -#: server_privileges.php:1571 server_privileges.php:1881 -#: server_privileges.php:1884 server_privileges.php:2179 sql.php:192 -#: tbl_printview.php:227 tbl_structure.php:39 tbl_structure.php:349 -#: tbl_tracking.php:334 tbl_tracking.php:339 +#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:260 +#: libraries/mult_submits.inc.php:271 pdf_schema.php:1342 +#: server_databases.php:61 server_privileges.php:1561 +#: server_privileges.php:1575 server_privileges.php:1885 +#: server_privileges.php:1888 server_privileges.php:2183 sql.php:191 +#: tbl_printview.php:226 tbl_structure.php:38 tbl_structure.php:347 +#: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" msgstr "はい" -#: db_datadict.php:321 db_printview.php:265 tbl_printview.php:496 +#: db_datadict.php:321 db_printview.php:264 tbl_printview.php:495 msgid "Print" msgstr "印刷" @@ -197,288 +211,248 @@ msgstr "印刷" msgid "View dump (schema) of database" msgstr "DB のダンプ(スキーマ)表示" -#: db_export.php:32 db_printview.php:95 db_qbe.php:101 db_structure.php:50 -#: db_tracking.php:34 export.php:352 navigation.php:326 +#: db_export.php:32 db_printview.php:94 db_qbe.php:98 db_structure.php:49 +#: db_tracking.php:30 export.php:350 navigation.php:325 msgid "No tables found in database." msgstr "このデータベースにはテーブルがありません" -#: db_export.php:42 db_search.php:326 server_export.php:26 +#: db_export.php:42 db_search.php:326 server_export.php:24 msgid "Select All" msgstr "全選択" -#: db_export.php:44 db_search.php:329 server_export.php:28 +#: db_export.php:44 db_search.php:329 server_export.php:26 msgid "Unselect All" msgstr "全選択解除" -#: db_operations.php:37 tbl_create.php:49 +#: db_operations.php:33 tbl_create.php:47 msgid "The database name is empty!" msgstr "データベース名が空です!" -#: db_operations.php:235 +#: db_operations.php:231 #, php-format msgid "Database %s has been renamed to %s" msgstr "データベース %s を %s にリネームしました" -#: db_operations.php:239 +#: db_operations.php:235 #, php-format msgid "Database %s has been copied to %s" msgstr "データベース %s を %s にコピーしました" -#: db_operations.php:411 +#: db_operations.php:347 msgid "Rename database to" msgstr "新しいデータベース名" -#: db_operations.php:416 server_processlist.php:56 +#: db_operations.php:352 server_processlist.php:56 msgid "Command" msgstr "コマンド" -#: db_operations.php:428 tbl_change.php:1141 +#: db_operations.php:364 tbl_change.php:1039 msgid "and then" msgstr "続いて" -#: db_operations.php:454 +#: db_operations.php:390 msgid "Copy database to" msgstr "データベースのコピー先" -#: db_operations.php:461 tbl_operations.php:527 tbl_tracking.php:387 +#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "構造のみ" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:389 +#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "構造とデータ" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:388 +#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "データのみ" -#: db_operations.php:471 +#: db_operations.php:407 msgid "CREATE DATABASE before copying" msgstr "コピーの前に CREATE DATABASE する" -#: db_operations.php:474 libraries/export/sql.php:51 +#: db_operations.php:410 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 -#: libraries/export/sql.php:81 tbl_operations.php:535 +#: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "%s を追加" -#: db_operations.php:478 libraries/export/sql.php:77 tbl_operations.php:298 -#: tbl_operations.php:537 +#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT 値を追加する" -#: db_operations.php:482 tbl_operations.php:544 +#: db_operations.php:418 tbl_operations.php:542 msgid "Add constraints" msgstr "制約を追加する" -#: db_operations.php:495 +#: db_operations.php:431 msgid "Switch to copied database" msgstr "コピーしたデータベースに切り替える" -#: db_operations.php:536 -msgid "BLOB Repository" -msgstr "" - -#: db_operations.php:539 db_tracking.php:75 libraries/common.lib.php:1357 -#: libraries/server_links.inc.php:48 server_processlist.php:58 -#: tbl_tracking.php:595 test/theme.php:100 -msgid "Status" -msgstr "状態" - -#: db_operations.php:547 -#, fuzzy -#| msgid "Enabled" -msgctxt "BLOB repository" -msgid "Enabled" -msgstr "有効" - -#: db_operations.php:551 -msgid "Disable" -msgstr "" - -#: db_operations.php:561 -msgid "Damaged" -msgstr "" - -#: db_operations.php:565 -#, fuzzy -#| msgid "Repair" -msgctxt "BLOB repository" -msgid "Repair" -msgstr "修復" - -#: db_operations.php:573 -#, fuzzy -#| msgid "Disabled" -msgctxt "BLOB repository" -msgid "Disabled" -msgstr "無効" - -#: db_operations.php:577 -msgid "Enable" -msgstr "" - -#: db_operations.php:601 libraries/Index.class.php:447 +#: db_operations.php:451 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 -#: server_collations.php:53 server_collations.php:65 server_databases.php:110 -#: tbl_operations.php:362 tbl_select.php:135 tbl_structure.php:178 -#: tbl_structure.php:766 tbl_tracking.php:274 tbl_tracking.php:325 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 +#: server_collations.php:53 server_collations.php:65 server_databases.php:108 +#: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:177 +#: tbl_structure.php:764 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "照合順序" -#: db_operations.php:614 main.php:315 pdf_schema.php:33 -#, php-format +#: db_operations.php:464 pdf_schema.php:32 +#, fuzzy, php-format +#| msgid "" +#| "The additional features for working with linked tables have been " +#| "deactivated. To find out why click %shere%s." msgid "" -"The additional features for working with linked tables have been " -"deactivated. To find out why click %shere%s." +"The phpMyAdmin configuration storage has been deactivated. To find out why " +"click %shere%s." msgstr "" "リンクテーブルを処理するための追加機能が無効になっています。理由については%s" "こちら%sをご覧ください" -#: db_operations.php:647 +#: db_operations.php:497 msgid "Edit PDF Pages" msgstr "PDF ページを編集する" -#: db_printview.php:103 db_tracking.php:71 db_tracking.php:156 +#: db_printview.php:102 db_tracking.php:67 db_tracking.php:152 #: libraries/db_structure.lib.php:37 libraries/export/xml.php:327 -#: libraries/header.inc.php:125 pdf_pages.php:423 server_privileges.php:1657 -#: server_privileges.php:1713 server_privileges.php:1977 -#: server_synchronize.php:422 server_synchronize.php:865 tbl_tracking.php:591 +#: libraries/header.inc.php:125 pdf_pages.php:422 server_privileges.php:1661 +#: server_privileges.php:1717 server_privileges.php:1981 +#: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "テーブル" -#: db_printview.php:104 libraries/db_structure.lib.php:47 +#: db_printview.php:103 libraries/db_structure.lib.php:47 #: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 -#: navigation.php:629 navigation.php:651 server_databases.php:121 -#: tbl_printview.php:392 tbl_structure.php:364 tbl_structure.php:776 +#: navigation.php:628 navigation.php:650 server_databases.php:119 +#: tbl_printview.php:391 tbl_structure.php:362 tbl_structure.php:774 msgid "Rows" msgstr "行" -#: db_printview.php:108 libraries/db_structure.lib.php:58 tbl_indexes.php:189 +#: db_printview.php:107 libraries/db_structure.lib.php:58 tbl_indexes.php:188 msgid "Size" msgstr "サイズ" -#: db_printview.php:161 db_structure.php:456 libraries/export/sql.php:556 +#: db_printview.php:160 db_structure.php:442 libraries/export/sql.php:556 #: libraries/export/sql.php:896 msgid "in use" msgstr "使用中" -#: db_printview.php:186 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:511 pdf_schema.php:1240 tbl_printview.php:432 -#: tbl_structure.php:808 +#: db_printview.php:185 libraries/db_info.inc.php:86 +#: libraries/export/sql.php:511 pdf_schema.php:1239 tbl_printview.php:431 +#: tbl_structure.php:806 msgid "Creation" msgstr "作成日時" -#: db_printview.php:195 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:516 pdf_schema.php:1245 tbl_printview.php:442 -#: tbl_structure.php:816 +#: db_printview.php:194 libraries/db_info.inc.php:91 +#: libraries/export/sql.php:516 pdf_schema.php:1244 tbl_printview.php:441 +#: tbl_structure.php:814 msgid "Last update" msgstr "最終更新" -#: db_printview.php:204 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:521 pdf_schema.php:1250 tbl_printview.php:452 -#: tbl_structure.php:824 +#: db_printview.php:203 libraries/db_info.inc.php:96 +#: libraries/export/sql.php:521 pdf_schema.php:1249 tbl_printview.php:451 +#: tbl_structure.php:822 msgid "Last check" msgstr "最終検査" -#: db_printview.php:221 db_structure.php:479 +#: db_printview.php:220 db_structure.php:465 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" msgid_plural "%s tables" msgstr[0] "%s テーブル" -#: db_qbe.php:28 import.php:453 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1980 libraries/sql_query_form.lib.php:138 -#: tbl_operations.php:212 tbl_relation.php:291 tbl_row_action.php:130 -#: view_operations.php:61 +#: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 +#: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "SQL は正常に実行されました" -#: db_qbe.php:41 +#: db_qbe.php:38 msgid "You have to choose at least one column to display" msgstr "最低ひとつは表示するカラムを選択してください" -#: db_qbe.php:199 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:865 +#: db_qbe.php:196 libraries/db_structure.lib.php:95 +#: libraries/display_tbl.lib.php:864 msgid "Sort" msgstr "ソート" -#: db_qbe.php:208 db_qbe.php:242 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:522 libraries/display_tbl.lib.php:827 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:259 -#: tbl_select.php:311 +#: db_qbe.php:205 db_qbe.php:239 libraries/db_structure.lib.php:102 +#: libraries/display_tbl.lib.php:521 libraries/display_tbl.lib.php:826 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:257 +#: tbl_select.php:310 msgid "Ascending" msgstr "昇順" -#: db_qbe.php:209 db_qbe.php:250 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:527 libraries/display_tbl.lib.php:824 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:260 -#: tbl_select.php:312 +#: db_qbe.php:206 db_qbe.php:247 libraries/db_structure.lib.php:110 +#: libraries/display_tbl.lib.php:526 libraries/display_tbl.lib.php:823 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:258 +#: tbl_select.php:311 msgid "Descending" msgstr "降順" -#: db_qbe.php:263 db_tracking.php:77 libraries/display_tbl.lib.php:307 -#: tbl_change.php:275 tbl_tracking.php:596 +#: db_qbe.php:260 db_tracking.php:73 libraries/display_tbl.lib.php:306 +#: tbl_change.php:270 tbl_tracking.php:591 msgid "Show" msgstr "表示" -#: db_qbe.php:299 +#: db_qbe.php:296 msgid "Criteria" msgstr "条件" -#: db_qbe.php:352 db_qbe.php:434 db_qbe.php:526 db_qbe.php:557 +#: db_qbe.php:349 db_qbe.php:431 db_qbe.php:523 db_qbe.php:554 msgid "Ins" msgstr "挿入" -#: db_qbe.php:356 db_qbe.php:438 db_qbe.php:523 db_qbe.php:554 +#: db_qbe.php:353 db_qbe.php:435 db_qbe.php:520 db_qbe.php:551 msgid "And" msgstr "および" -#: db_qbe.php:365 db_qbe.php:446 db_qbe.php:528 db_qbe.php:559 +#: db_qbe.php:362 db_qbe.php:443 db_qbe.php:525 db_qbe.php:556 msgid "Del" msgstr "削除" -#: db_qbe.php:369 db_qbe.php:450 db_qbe.php:521 db_qbe.php:552 -#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:778 -#: server_privileges.php:297 tbl_change.php:1027 tbl_indexes.php:249 -#: tbl_select.php:285 +#: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 +#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:777 +#: server_privileges.php:296 tbl_change.php:925 tbl_indexes.php:248 +#: tbl_select.php:284 msgid "Or" msgstr "または" -#: db_qbe.php:506 +#: db_qbe.php:503 msgid "Modify" msgstr "修正" -#: db_qbe.php:583 +#: db_qbe.php:580 #, fuzzy #| msgid "Add/Delete Criteria Row" msgid "Add/Delete criteria rows" msgstr "条件行を追加・削除する" -#: db_qbe.php:595 +#: db_qbe.php:592 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Add/Delete columns" msgstr "フィールド列を追加・削除する" -#: db_qbe.php:608 db_qbe.php:633 +#: db_qbe.php:605 db_qbe.php:630 msgid "Update Query" msgstr "クエリを更新する" -#: db_qbe.php:616 +#: db_qbe.php:613 msgid "Use Tables" msgstr "利用するテーブル" -#: db_qbe.php:639 +#: db_qbe.php:636 #, php-format msgid "SQL query on database %s:" msgstr "データベース %s のSQL:" -#: db_qbe.php:933 libraries/common.lib.php:1222 +#: db_qbe.php:930 libraries/common.lib.php:1215 msgid "Submit Query" msgstr "クエリを実行する" @@ -517,17 +491,17 @@ msgid "%s match inside table %s" msgid_plural "%s matches inside table %s" msgstr[0] "%s 件(テーブル %s)" -#: db_search.php:249 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2831 -#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:49 -#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:466 +#: db_search.php:249 db_structure.php:75 db_structure.php:76 +#: db_structure.php:88 db_structure.php:90 db_structure.php:101 +#: db_structure.php:103 libraries/common.lib.php:2836 +#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 +#: tbl_structure.php:35 tbl_structure.php:47 tbl_structure.php:464 msgid "Browse" msgstr "表示" -#: db_search.php:254 libraries/display_tbl.lib.php:1164 -#: libraries/display_tbl.lib.php:2055 libraries/sql_query_form.lib.php:453 -#: pdf_pages.php:285 pdf_pages.php:424 pdf_pages.php:460 pdf_pages.php:488 +#: db_search.php:254 libraries/display_tbl.lib.php:1163 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 msgid "Delete" @@ -566,226 +540,232 @@ msgstr "検索するテーブル:" msgid "Inside column:" msgstr "検索するフィールド:" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2830 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:75 +#: db_structure.php:79 db_structure.php:80 db_structure.php:92 +#: db_structure.php:93 db_structure.php:105 db_structure.php:106 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 +#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "挿入" -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2827 libraries/common.lib.php:2834 -#: libraries/db_links.inc.php:62 libraries/export/htmlword.php:22 +#: db_structure.php:81 db_structure.php:94 db_structure.php:107 +#: libraries/common.lib.php:2832 libraries/common.lib.php:2839 +#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 -#: libraries/tbl_links.inc.php:55 pmd_general.php:133 -#: server_privileges.php:593 server_replication.php:314 tbl_tracking.php:268 +#: libraries/tbl_links.inc.php:54 pmd_general.php:133 +#: server_privileges.php:592 server_replication.php:313 tbl_tracking.php:263 msgid "Structure" msgstr "構造" -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:544 db_structure.php:545 db_tracking.php:90 -#: libraries/Index.class.php:482 libraries/common.lib.php:1659 -#: libraries/db_links.inc.php:99 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:126 -#: server_databases.php:351 tbl_structure.php:26 tbl_structure.php:150 -#: tbl_structure.php:151 tbl_structure.php:470 +#: db_structure.php:82 db_structure.php:83 db_structure.php:95 +#: db_structure.php:96 db_structure.php:108 db_structure.php:109 +#: db_structure.php:530 db_structure.php:531 db_tracking.php:86 +#: libraries/Index.class.php:482 libraries/common.lib.php:1663 +#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 +#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 +#: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" msgstr "削除" -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:542 db_structure.php:543 libraries/common.lib.php:1658 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:104 +#: db_structure.php:84 db_structure.php:85 db_structure.php:97 +#: db_structure.php:98 db_structure.php:110 db_structure.php:111 +#: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 +#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 msgid "Empty" msgstr "空にする" -#: db_structure.php:315 libraries/tbl_links.inc.php:99 +#: db_structure.php:301 libraries/tbl_links.inc.php:98 #, php-format msgid "Table %s has been emptied" msgstr "テーブル %s を空にしました" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "View %s has been dropped" msgstr "ビュー %s を破棄しました" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "Table %s has been dropped" msgstr "テーブル %s を削除しました" -#: db_structure.php:332 +#: db_structure.php:318 msgid "Tracking is active." msgstr "" -#: db_structure.php:334 +#: db_structure.php:320 msgid "Tracking is not active." msgstr "" -#: db_structure.php:419 libraries/display_tbl.lib.php:1943 +#: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "このビューの最低行数。詳しくは%sドキュメント%sをご覧ください。" -#: db_structure.php:433 db_structure.php:447 libraries/header.inc.php:125 -#: libraries/tbl_info.inc.php:65 tbl_structure.php:184 test/theme.php:73 +#: db_structure.php:419 db_structure.php:433 libraries/header.inc.php:125 +#: libraries/tbl_info.inc.php:60 tbl_structure.php:183 test/theme.php:73 msgid "View" msgstr "ビュー" -#: db_structure.php:484 libraries/db_structure.lib.php:40 -#: libraries/server_links.inc.php:69 server_replication.php:32 -#: server_replication.php:163 server_status.php:368 +#: db_structure.php:470 libraries/db_structure.lib.php:40 +#: libraries/server_links.inc.php:69 server_replication.php:31 +#: server_replication.php:162 server_status.php:368 msgid "Replication" msgstr "レプリケーション" -#: db_structure.php:488 +#: db_structure.php:474 msgid "Sum" msgstr "合計" -#: db_structure.php:495 libraries/StorageEngine.class.php:349 +#: db_structure.php:481 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s はこの MySQL サーバのデフォルトストレージエンジンです" -#: db_structure.php:523 db_structure.php:540 db_structure.php:541 -#: libraries/display_tbl.lib.php:2080 libraries/display_tbl.lib.php:2085 -#: libraries/mult_submits.inc.php:15 server_databases.php:345 -#: server_databases.php:350 server_privileges.php:1588 tbl_structure.php:454 -#: tbl_structure.php:463 +#: db_structure.php:509 db_structure.php:526 db_structure.php:527 +#: libraries/display_tbl.lib.php:2039 libraries/display_tbl.lib.php:2044 +#: libraries/mult_submits.inc.php:15 server_databases.php:343 +#: server_databases.php:348 server_privileges.php:1592 tbl_structure.php:452 +#: tbl_structure.php:461 msgid "With selected:" msgstr "チェックしたものを:" -#: db_structure.php:526 libraries/display_tbl.lib.php:2075 -#: server_databases.php:347 server_privileges.php:569 -#: server_privileges.php:1591 tbl_structure.php:457 +#: db_structure.php:512 libraries/display_tbl.lib.php:2034 +#: server_databases.php:345 server_privileges.php:568 +#: server_privileges.php:1595 tbl_structure.php:455 msgid "Check All" msgstr "すべてチェックする" -#: db_structure.php:530 libraries/display_tbl.lib.php:2076 -#: libraries/replication_gui.lib.php:35 server_databases.php:349 -#: server_privileges.php:572 server_privileges.php:1595 tbl_structure.php:461 +#: db_structure.php:516 libraries/display_tbl.lib.php:2035 +#: libraries/replication_gui.lib.php:35 server_databases.php:347 +#: server_privileges.php:571 server_privileges.php:1599 tbl_structure.php:459 msgid "Uncheck All" msgstr "すべてのチェックを外す" -#: db_structure.php:535 +#: db_structure.php:521 msgid "Check tables having overhead" msgstr "オーバーヘッドのあるテーブルを確認してください" -#: db_structure.php:546 db_structure.php:547 db_structure.php:598 -#: libraries/display_tbl.lib.php:2179 libraries/mult_submits.inc.php:27 -#: tbl_structure.php:491 tbl_structure.php:493 +#: db_structure.php:532 db_structure.php:533 db_structure.php:584 +#: libraries/display_tbl.lib.php:2138 libraries/mult_submits.inc.php:27 +#: tbl_structure.php:489 tbl_structure.php:491 msgid "Print view" msgstr "印刷用画面" -#: db_structure.php:548 db_structure.php:549 libraries/mult_submits.inc.php:41 -#: tbl_operations.php:580 +#: db_structure.php:534 db_structure.php:535 libraries/mult_submits.inc.php:41 +#: tbl_operations.php:578 msgid "Check table" msgstr "テーブルをチェックする" -#: db_structure.php:550 db_structure.php:551 libraries/mult_submits.inc.php:46 -#: tbl_operations.php:620 tbl_structure.php:708 tbl_structure.php:710 +#: db_structure.php:536 db_structure.php:537 libraries/mult_submits.inc.php:46 +#: tbl_operations.php:618 tbl_structure.php:706 tbl_structure.php:708 msgid "Optimize table" msgstr "テーブルを最適化する" -#: db_structure.php:552 db_structure.php:553 libraries/mult_submits.inc.php:51 -#: tbl_operations.php:610 +#: db_structure.php:538 db_structure.php:539 libraries/mult_submits.inc.php:51 +#: tbl_operations.php:608 msgid "Repair table" msgstr "テーブルを修復する" -#: db_structure.php:554 db_structure.php:555 libraries/mult_submits.inc.php:56 -#: tbl_operations.php:600 +#: db_structure.php:540 db_structure.php:541 libraries/mult_submits.inc.php:56 +#: tbl_operations.php:598 msgid "Analyze table" msgstr "テーブルを分析する" -#: db_structure.php:556 db_structure.php:557 libraries/db_links.inc.php:70 -#: libraries/display_export.lib.php:82 libraries/display_tbl.lib.php:2093 -#: libraries/display_tbl.lib.php:2224 libraries/mult_submits.inc.php:61 -#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:81 -#: pmd_pdf.php:83 pmd_pdf.php:108 server_privileges.php:1372 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 +#: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 +#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 +#: pmd_pdf.php:81 pmd_pdf.php:106 server_privileges.php:1376 #: setup/frames/menu.inc.php:22 tbl_row_action.php:58 msgid "Export" msgstr "エクスポート" -#: db_structure.php:605 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:591 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "データ辞書" -#: db_tracking.php:65 +#: db_tracking.php:61 msgid "Tracked tables" msgstr "" -#: db_tracking.php:70 libraries/export/htmlword.php:85 +#: db_tracking.php:66 libraries/export/htmlword.php:85 #: libraries/export/latex.php:152 libraries/export/odt.php:112 #: libraries/export/sql.php:339 libraries/export/texytext.php:84 #: libraries/export/xml.php:254 libraries/header.inc.php:105 -#: libraries/header_printview.inc.php:57 server_databases.php:168 -#: server_privileges.php:1652 server_privileges.php:1713 -#: server_privileges.php:1971 server_processlist.php:55 -#: server_synchronize.php:1178 server_synchronize.php:1182 -#: tbl_tracking.php:590 test/theme.php:64 +#: libraries/header_printview.inc.php:57 server_databases.php:166 +#: server_privileges.php:1656 server_privileges.php:1717 +#: server_privileges.php:1975 server_processlist.php:55 +#: server_synchronize.php:1177 server_synchronize.php:1181 +#: tbl_tracking.php:585 test/theme.php:64 msgid "Database" msgstr "データベース" -#: db_tracking.php:72 +#: db_tracking.php:68 msgid "Last version" msgstr "" -#: db_tracking.php:73 tbl_tracking.php:593 +#: db_tracking.php:69 tbl_tracking.php:588 msgid "Created" msgstr "" -#: db_tracking.php:74 tbl_tracking.php:594 +#: db_tracking.php:70 tbl_tracking.php:589 msgid "Updated" msgstr "" -#: db_tracking.php:76 libraries/Index.class.php:439 -#: libraries/db_structure.lib.php:44 server_databases.php:202 -#: server_privileges.php:1534 server_privileges.php:1717 -#: server_privileges.php:2065 tbl_structure.php:186 +#: db_tracking.php:71 libraries/common.lib.php:1361 +#: libraries/server_links.inc.php:48 server_processlist.php:58 +#: tbl_tracking.php:590 test/theme.php:100 +msgid "Status" +msgstr "状態" + +#: db_tracking.php:72 libraries/Index.class.php:439 +#: libraries/db_structure.lib.php:44 server_databases.php:200 +#: server_privileges.php:1538 server_privileges.php:1721 +#: server_privileges.php:2069 tbl_structure.php:185 msgid "Action" msgstr "操作" -#: db_tracking.php:87 db_tracking.php:119 +#: db_tracking.php:83 db_tracking.php:115 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:105 tbl_tracking.php:547 tbl_tracking.php:605 -#: tbl_tracking.php:612 +#: db_tracking.php:101 tbl_tracking.php:542 tbl_tracking.php:600 +#: tbl_tracking.php:607 msgid "active" msgstr "" -#: db_tracking.php:107 tbl_tracking.php:549 tbl_tracking.php:607 -#: tbl_tracking.php:609 +#: db_tracking.php:103 tbl_tracking.php:544 tbl_tracking.php:602 +#: tbl_tracking.php:604 msgid "not active" msgstr "" -#: db_tracking.php:120 +#: db_tracking.php:116 msgid "Versions" msgstr "" -#: db_tracking.php:121 tbl_tracking.php:378 tbl_tracking.php:623 +#: db_tracking.php:117 tbl_tracking.php:373 tbl_tracking.php:618 msgid "Tracking report" msgstr "" -#: db_tracking.php:122 tbl_tracking.php:250 tbl_tracking.php:623 +#: db_tracking.php:118 tbl_tracking.php:245 tbl_tracking.php:618 msgid "Structure snapshot" msgstr "" -#: db_tracking.php:151 +#: db_tracking.php:147 msgid "Untracked tables" msgstr "" -#: db_tracking.php:171 db_tracking.php:173 tbl_structure.php:527 -#: tbl_structure.php:529 +#: db_tracking.php:167 db_tracking.php:169 tbl_structure.php:525 +#: tbl_structure.php:527 msgid "Track table" msgstr "" -#: db_tracking.php:199 +#: db_tracking.php:195 msgid "Database Log" msgstr "" @@ -793,12 +773,12 @@ msgstr "" msgid "Selected export type has to be saved in file!" msgstr "この形式のエクスポートはファイルに保存する必要があります!" -#: export.php:153 export.php:178 export.php:620 +#: export.php:152 export.php:177 export.php:615 #, php-format msgid "Insufficient space to save the file %s." msgstr "空き容量不足でファイル %s を保存できません" -#: export.php:287 +#: export.php:286 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -806,17 +786,17 @@ msgstr "" "サーバ上に既存のファイル %s があります。ファイル名を変更するか、上書きオプ" "ションを有効にしてください" -#: export.php:291 export.php:295 +#: export.php:290 export.php:294 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "このウェブサーバにはファイル %s を保存する権限がありません" -#: export.php:622 +#: export.php:617 #, php-format msgid "Dump has been saved to file %s." msgstr "ダンプをファイル %s に保存しました" -#: import.php:59 +#: import.php:58 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -825,14 +805,14 @@ msgstr "" "アップロードしようとしたファイルが大きすぎるようです。対策については %sドキュ" "メント%s をご覧ください" -#: import.php:278 import.php:331 libraries/File.class.php:840 -#: libraries/File.class.php:950 +#: import.php:277 import.php:330 libraries/File.class.php:566 +#: libraries/File.class.php:676 msgid "File could not be read" msgstr "ファイルを読み込めませんでした" -#: import.php:286 import.php:295 import.php:314 import.php:323 -#: libraries/File.class.php:1020 libraries/File.class.php:1028 -#: libraries/File.class.php:1044 libraries/File.class.php:1052 +#: import.php:285 import.php:294 import.php:313 import.php:322 +#: libraries/File.class.php:746 libraries/File.class.php:754 +#: libraries/File.class.php:770 libraries/File.class.php:778 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -841,7 +821,7 @@ msgstr "" "サポートされていない圧縮形式(%s)のファイルをロードしようとしました。この形式" "はサポートされていないか設定で無効にされています" -#: import.php:336 +#: import.php:335 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -851,31 +831,31 @@ msgstr "" "ファイルサイズが PHP の設定で許可された最大値を超えています。FAQ 1.16をご覧く" "ださい" -#: import.php:371 libraries/display_import.lib.php:23 +#: import.php:370 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "" "インポートプラグインをロードできません。正しくインストールされているか確認し" "てください!" -#: import.php:396 +#: import.php:395 msgid "The bookmark has been deleted." msgstr "ブックマークを削除しました" -#: import.php:400 +#: import.php:399 msgid "Showing bookmark" msgstr "表示中のブックマーク" -#: import.php:402 sql.php:625 +#: import.php:401 sql.php:618 #, php-format msgid "Bookmark %s created" msgstr "ブックマーク %s を作成しました" -#: import.php:408 import.php:414 +#: import.php:407 import.php:413 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "インポートは正常終了しました。%d 個のクエリを実行しました" -#: import.php:423 +#: import.php:422 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -883,7 +863,7 @@ msgstr "" "スクリプトがタイムアウトしました。インポートを完了させたいのであれば同じファ" "イルを再送信すればインポートが再開されます" -#: import.php:425 +#: import.php:424 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -891,19 +871,19 @@ msgstr "" "ただし、最後に実行したときはまったくデータを解析できませんでした。ふつうは " "PHP の時間制限を伸ばさない限りこのデータのインポートはできません" -#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:240 +#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:239 #: user_password.php:110 msgid "Back" msgstr "戻る" -#: index.php:188 +#: index.php:183 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin はフレーム対応ブラウザでの利用をお勧めします" -#: js/messages.php:25 server_synchronize.php:344 server_synchronize.php:356 -#: server_synchronize.php:372 server_synchronize.php:379 -#: server_synchronize.php:738 server_synchronize.php:766 -#: server_synchronize.php:794 server_synchronize.php:806 +#: js/messages.php:25 server_synchronize.php:343 server_synchronize.php:355 +#: server_synchronize.php:371 server_synchronize.php:378 +#: server_synchronize.php:737 server_synchronize.php:765 +#: server_synchronize.php:793 server_synchronize.php:805 msgid "Click to select" msgstr "" @@ -911,15 +891,15 @@ msgstr "" msgid "Click to unselect" msgstr "" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:88 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:87 msgid "\"DROP DATABASE\" statements are disabled." msgstr "DROP DATABASE 文は無効にされています" -#: js/messages.php:30 libraries/mult_submits.inc.php:257 sql.php:187 +#: js/messages.php:30 libraries/mult_submits.inc.php:256 sql.php:186 msgid "Do you really want to " msgstr "本当に実行しますか?" -#: js/messages.php:31 libraries/mult_submits.inc.php:257 sql.php:171 +#: js/messages.php:31 libraries/mult_submits.inc.php:256 sql.php:170 msgid "You are about to DESTROY a complete database!" msgstr "データベースを完全に削除しようとしています!" @@ -948,11 +928,11 @@ msgstr "ホスト名が空です!" msgid "The user name is empty!" msgstr "ユーザ名が空です!" -#: js/messages.php:44 server_privileges.php:1228 user_password.php:65 +#: js/messages.php:44 server_privileges.php:1229 user_password.php:65 msgid "The password is empty!" msgstr "パスワードが空です!" -#: js/messages.php:45 server_privileges.php:1226 user_password.php:68 +#: js/messages.php:45 server_privileges.php:1227 user_password.php:68 msgid "The passwords aren't the same!" msgstr "パスワードが異なっています!" @@ -960,27 +940,27 @@ msgstr "パスワードが異なっています!" msgid "Cancel" msgstr "キャンセル" -#: js/messages.php:52 pmd_save_pos.php:53 +#: js/messages.php:52 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "修正を保存しました" -#: js/messages.php:53 pmd_relation_upd.php:48 +#: js/messages.php:53 pmd_relation_upd.php:47 msgid "Relation deleted" msgstr "リレーションを削除しました" -#: js/messages.php:54 pmd_relation_new.php:63 +#: js/messages.php:54 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "外部キーを追加しました" -#: js/messages.php:55 pmd_relation_new.php:85 +#: js/messages.php:55 pmd_relation_new.php:84 msgid "Internal relation added" msgstr "内部リレーションを追加しました" -#: js/messages.php:56 pmd_relation_new.php:62 pmd_relation_new.php:87 +#: js/messages.php:56 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "エラー: リレーションを追加できませんでした" -#: js/messages.php:57 pmd_relation_new.php:30 +#: js/messages.php:57 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "エラー: リレーションはすでに存在しています" @@ -988,13 +968,13 @@ msgstr "エラー: リレーションはすでに存在しています" msgid "Error saving coordinates for Designer." msgstr "デザイナの座標を保存するときにエラーが発生しました" -#: js/messages.php:59 libraries/relation.lib.php:94 -#: libraries/relation.lib.php:106 +#: js/messages.php:59 libraries/relation.lib.php:89 +#: libraries/relation.lib.php:101 msgid "General relation features" msgstr "一般的なリレーション機能" -#: js/messages.php:59 libraries/relation.lib.php:88 -#: libraries/relation.lib.php:95 +#: js/messages.php:59 libraries/relation.lib.php:83 +#: libraries/relation.lib.php:90 msgid "Disabled" msgstr "無効" @@ -1010,7 +990,7 @@ msgstr "外部キーを選択してください" msgid "Please select the primary key or a unique key" msgstr "主キーまたはユニークキーを選択してください" -#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:547 +#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" @@ -1041,10 +1021,10 @@ msgid "Prev" msgstr "前" #. l10n: Display text for next month link in calendar -#: js/messages.php:81 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:337 -#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:422 -#: tbl_structure.php:800 +#: js/messages.php:81 libraries/common.lib.php:2358 +#: libraries/common.lib.php:2361 libraries/display_tbl.lib.php:336 +#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 +#: tbl_structure.php:798 msgid "Next" msgstr "次へ" @@ -1113,27 +1093,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1562 +#: js/messages.php:101 libraries/common.lib.php:1566 msgid "Jan" msgstr "1 月','2 月','3 月','4 月','5 月','6 月" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1564 +#: js/messages.php:103 libraries/common.lib.php:1568 msgid "Feb" msgstr "7 月" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1566 +#: js/messages.php:105 libraries/common.lib.php:1570 msgid "Mar" msgstr "8 月" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1568 +#: js/messages.php:107 libraries/common.lib.php:1572 msgid "Apr" msgstr "9 月" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1570 +#: js/messages.php:109 libraries/common.lib.php:1574 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1141,38 +1121,38 @@ msgid "May" msgstr "10 月" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1572 +#: js/messages.php:111 libraries/common.lib.php:1576 msgid "Jun" msgstr "11 月" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1574 +#: js/messages.php:113 libraries/common.lib.php:1578 #, fuzzy msgid "Jul" msgstr "日" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1576 +#: js/messages.php:115 libraries/common.lib.php:1580 msgid "Aug" msgstr "" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1578 +#: js/messages.php:117 libraries/common.lib.php:1582 msgid "Sep" msgstr "" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1580 +#: js/messages.php:119 libraries/common.lib.php:1584 msgid "Oct" msgstr "" #. l10n: Short month name -#: js/messages.php:121 libraries/common.lib.php:1582 +#: js/messages.php:121 libraries/common.lib.php:1586 msgid "Nov" msgstr "" #. l10n: Short month name -#: js/messages.php:123 libraries/common.lib.php:1584 +#: js/messages.php:123 libraries/common.lib.php:1588 msgid "Dec" msgstr "" @@ -1213,37 +1193,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1587 +#: js/messages.php:136 libraries/common.lib.php:1591 msgid "Sun" msgstr "日" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1589 +#: js/messages.php:138 libraries/common.lib.php:1593 msgid "Mon" msgstr "月" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1591 +#: js/messages.php:140 libraries/common.lib.php:1595 msgid "Tue" msgstr "火" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1593 +#: js/messages.php:142 libraries/common.lib.php:1597 msgid "Wed" msgstr "水" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1595 +#: js/messages.php:144 libraries/common.lib.php:1599 msgid "Thu" msgstr "木" #. l10n: Short week day name -#: js/messages.php:146 libraries/common.lib.php:1597 +#: js/messages.php:146 libraries/common.lib.php:1601 msgid "Fri" msgstr "金" #. l10n: Short week day name -#: js/messages.php:148 libraries/common.lib.php:1599 +#: js/messages.php:148 libraries/common.lib.php:1603 msgid "Sat" msgstr "土" @@ -1323,18 +1303,13 @@ msgstr "/秒" msgid "Font size" msgstr "フォントサイズ" -#: libraries/File.class.php:336 libraries/File.class.php:424 -#: libraries/File.class.php:561 libraries/File.class.php:700 -msgid "Unknown error in file upload." -msgstr "ファイルのアップロード中に予期しないエラーが発生しました。" - -#: libraries/File.class.php:406 +#: libraries/File.class.php:315 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "アップロードしたファイルは php.ini に指定されている upload_max_filesize ディ" "レクティブの値を超えています。" -#: libraries/File.class.php:409 +#: libraries/File.class.php:318 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -1342,60 +1317,64 @@ msgstr "" "アップロードしたファイルは HTML フォームに指定されている MAX_FILE_SIZE ディレ" "クティブの値を超えています。" -#: libraries/File.class.php:412 +#: libraries/File.class.php:321 msgid "The uploaded file was only partially uploaded." msgstr "アップロードしたファイルは一部分しかアップロードできませんでした。" -#: libraries/File.class.php:415 +#: libraries/File.class.php:324 msgid "Missing a temporary folder." msgstr "一時フォルダが見つかりません。" -#: libraries/File.class.php:418 +#: libraries/File.class.php:327 msgid "Failed to write file to disk." msgstr "ファイルをディスクに書き込めません。" -#: libraries/File.class.php:421 +#: libraries/File.class.php:330 msgid "File upload stopped by extension." msgstr "拡張のせいでファイルのアップロードが中断されました。" -#: libraries/File.class.php:898 +#: libraries/File.class.php:333 +msgid "Unknown error in file upload." +msgstr "ファイルのアップロード中に予期しないエラーが発生しました。" + +#: libraries/File.class.php:624 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:427 tbl_relation.php:528 +#: libraries/Index.class.php:427 tbl_relation.php:526 msgid "No index defined!" msgstr "インデックスが定義されていません!" -#: libraries/Index.class.php:432 server_databases.php:131 tbl_tracking.php:315 +#: libraries/Index.class.php:432 server_databases.php:129 tbl_tracking.php:310 msgid "Indexes" msgstr "インデックスサイズ" #: libraries/Index.class.php:443 libraries/mult_submits.inc.php:102 -#: libraries/tbl_properties.inc.php:518 tbl_structure.php:32 -#: tbl_structure.php:154 tbl_structure.php:158 tbl_structure.php:473 -#: tbl_tracking.php:321 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:31 +#: tbl_structure.php:153 tbl_structure.php:157 tbl_structure.php:471 +#: tbl_tracking.php:316 msgid "Unique" msgstr "ユニーク" -#: libraries/Index.class.php:444 tbl_tracking.php:322 +#: libraries/Index.class.php:444 tbl_tracking.php:317 msgid "Packed" msgstr "圧縮" -#: libraries/Index.class.php:446 tbl_tracking.php:324 +#: libraries/Index.class.php:446 tbl_tracking.php:319 msgid "Cardinality" msgstr "一意な値の数" -#: libraries/Index.class.php:449 tbl_tracking.php:278 tbl_tracking.php:327 +#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322 msgid "Comment" msgstr "コメント" #: libraries/Index.class.php:465 libraries/common.lib.php:609 -#: libraries/common.lib.php:1198 libraries/display_tbl.lib.php:1116 +#: libraries/common.lib.php:1191 libraries/display_tbl.lib.php:1115 #: libraries/import.lib.php:1119 libraries/import.lib.php:1143 -#: pdf_pages.php:284 setup/frames/index.inc.php:124 +#: pdf_pages.php:283 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:349 tbl_row_action.php:68 msgid "Edit" msgstr "編集" @@ -1419,15 +1398,15 @@ msgstr "" "れません。" #: libraries/List_Database.class.php:430 libraries/server_links.inc.php:40 -#: server_databases.php:87 server_privileges.php:1652 +#: server_databases.php:85 server_privileges.php:1656 #: setup/lib/messages.inc.php:107 test/theme.php:92 msgid "Databases" msgstr "データベース" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:259 libraries/import.lib.php:134 pdf_schema.php:31 -#: pdf_schema.php:231 tbl_change.php:1023 tbl_operations.php:212 -#: tbl_relation.php:289 view_operations.php:61 +#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 +#: tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "エラー" @@ -1452,40 +1431,40 @@ msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." msgstr[0] "%1$d 行挿入しました。" -#: libraries/StorageEngine.class.php:196 +#: libraries/StorageEngine.class.php:194 msgid "" "There is no detailed status information available for this storage engine." msgstr "このストレージエンジンにはステータスの詳細情報はありません" -#: libraries/StorageEngine.class.php:352 +#: libraries/StorageEngine.class.php:354 #, php-format msgid "%s is available on this MySQL server." msgstr "%s は有効になっています" -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:357 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s は無効になっています" -#: libraries/StorageEngine.class.php:359 +#: libraries/StorageEngine.class.php:361 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "この MySQL サーバは %s ストレージエンジンをサポートしていません" -#: libraries/Table.class.php:1018 +#: libraries/Table.class.php:1017 msgid "Invalid database" msgstr "不正なデータベースです" -#: libraries/Table.class.php:1032 tbl_get_field.php:25 +#: libraries/Table.class.php:1031 tbl_get_field.php:25 msgid "Invalid table name" msgstr "テーブル名が不正です" -#: libraries/Table.class.php:1047 +#: libraries/Table.class.php:1046 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "テーブルを %1$s から %2$s にリネームするときにエラーが発生しました" -#: libraries/Table.class.php:1131 +#: libraries/Table.class.php:1129 #, php-format msgid "Table %s has been renamed to %s" msgstr "テーブル %s を %s にリネームしました" @@ -1503,22 +1482,22 @@ msgstr "プレビューは利用できません" msgid "take it" msgstr "これにする" -#: libraries/Theme_Manager.class.php:114 +#: libraries/Theme_Manager.class.php:109 #, php-format msgid "Default theme %s not found!" msgstr "デフォルトテーマ %s が見つかりません!" -#: libraries/Theme_Manager.class.php:152 +#: libraries/Theme_Manager.class.php:147 #, php-format msgid "Theme %s not found!" msgstr "テーマ %s が見つかりません!" -#: libraries/Theme_Manager.class.php:220 +#: libraries/Theme_Manager.class.php:215 #, php-format msgid "Theme path not found for theme %s!" msgstr "テーマ %s のテーマパスが見つかりません!" -#: libraries/Theme_Manager.class.php:296 test/theme.php:160 themes.php:20 +#: libraries/Theme_Manager.class.php:291 test/theme.php:160 themes.php:20 #: themes.php:40 msgid "Theme / Style" msgstr "テーマ / スタイル" @@ -1631,19 +1610,19 @@ msgstr "" msgid "Authenticating..." msgstr "" -#: libraries/blobstreaming.lib.php:689 +#: libraries/blobstreaming.lib.php:340 msgid "View image" msgstr "" -#: libraries/blobstreaming.lib.php:693 +#: libraries/blobstreaming.lib.php:344 msgid "Play audio" msgstr "" -#: libraries/blobstreaming.lib.php:698 +#: libraries/blobstreaming.lib.php:349 msgid "View video" msgstr "" -#: libraries/blobstreaming.lib.php:702 +#: libraries/blobstreaming.lib.php:353 msgid "Download file" msgstr "" @@ -1696,7 +1675,7 @@ msgstr "サーバ" msgid "Invalid authentication method set in configuration:" msgstr "設定ファイルに無効な認証方法が指定されています:" -#: libraries/common.inc.php:909 +#: libraries/common.inc.php:908 #, php-format msgid "You should upgrade to %s %s or later." msgstr "%s を %s 以降にアップグレードしてください" @@ -1721,7 +1700,8 @@ msgstr "en" #: libraries/common.lib.php:425 libraries/common.lib.php:427 #: libraries/common.lib.php:429 libraries/common.lib.php:445 #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 -#: libraries/display_export.lib.php:163 libraries/relation.lib.php:84 +#: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 +#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 #: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" @@ -1736,148 +1716,148 @@ msgstr "実行した SQL" msgid "MySQL said: " msgstr "MySQLのメッセージ: " -#: libraries/common.lib.php:1136 +#: libraries/common.lib.php:1129 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1174 setup/lib/messages.inc.php:350 +#: libraries/common.lib.php:1167 setup/lib/messages.inc.php:350 msgid "Explain SQL" msgstr "EXPLAIN で確認" -#: libraries/common.lib.php:1177 +#: libraries/common.lib.php:1170 msgid "Skip Explain SQL" msgstr "SQL の EXPLAIN 解析をスキップ" -#: libraries/common.lib.php:1211 +#: libraries/common.lib.php:1204 msgid "Without PHP Code" msgstr "PHP コードを省略" -#: libraries/common.lib.php:1214 setup/lib/messages.inc.php:352 +#: libraries/common.lib.php:1207 setup/lib/messages.inc.php:352 msgid "Create PHP Code" msgstr "PHP コードの作成" -#: libraries/common.lib.php:1232 server_status.php:451 +#: libraries/common.lib.php:1225 server_status.php:451 #: setup/lib/messages.inc.php:351 msgid "Refresh" msgstr "再描画" -#: libraries/common.lib.php:1241 +#: libraries/common.lib.php:1234 msgid "Skip Validate SQL" msgstr "SQL の検証をスキップ" -#: libraries/common.lib.php:1244 setup/lib/messages.inc.php:353 +#: libraries/common.lib.php:1237 setup/lib/messages.inc.php:353 msgid "Validate SQL" msgstr "SQL の検証" -#: libraries/common.lib.php:1283 +#: libraries/common.lib.php:1287 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1285 +#: libraries/common.lib.php:1289 #, fuzzy #| msgid "Engines" msgid "Inline" msgstr "エンジン" -#: libraries/common.lib.php:1339 libraries/common.lib.php:1354 +#: libraries/common.lib.php:1343 libraries/common.lib.php:1358 msgid "Profiling" msgstr "プロファイリング" -#: libraries/common.lib.php:1358 libraries/tbl_triggers.lib.php:27 +#: libraries/common.lib.php:1362 libraries/tbl_triggers.lib.php:27 #: server_processlist.php:57 msgid "Time" msgstr "時間" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "B" msgstr "バイト" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "KiB" msgstr "KiB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "MiB" msgstr "MiB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "GiB" msgstr "GiB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "TiB" msgstr "TiB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "PiB" msgstr "PiB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "EiB" msgstr "EiB" #. l10n: Thousands separator -#: libraries/common.lib.php:1424 +#: libraries/common.lib.php:1428 msgid "," msgstr "," #. l10n: Decimal separator -#: libraries/common.lib.php:1426 +#: libraries/common.lib.php:1430 msgid "." msgstr "." #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1603 +#: libraries/common.lib.php:1607 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%Y 年 %B %d 日 %H:%M" -#: libraries/common.lib.php:1909 +#: libraries/common.lib.php:1913 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s 日 %s 時間 %s 分 %s 秒" -#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 -#: libraries/display_tbl.lib.php:289 server_status.php:718 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 +#: libraries/display_tbl.lib.php:288 server_status.php:718 msgid "Begin" msgstr "先頭" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 -#: libraries/display_tbl.lib.php:290 server_binlog.php:154 +#: libraries/common.lib.php:2328 libraries/common.lib.php:2331 +#: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "前" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 -#: libraries/display_tbl.lib.php:352 +#: libraries/common.lib.php:2359 libraries/common.lib.php:2362 +#: libraries/display_tbl.lib.php:351 msgid "End" msgstr "最後" -#: libraries/common.lib.php:2429 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr ""%s" データベースに移動" -#: libraries/common.lib.php:2448 +#: libraries/common.lib.php:2453 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "%s の機能には既知のバグがあります。%s をご覧ください" -#: libraries/common.lib.php:2828 libraries/common.lib.php:2835 -#: libraries/db_links.inc.php:67 libraries/export/sql.php:24 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 +#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 -#: libraries/tbl_links.inc.php:59 querywindow.php:89 test/theme.php:96 +#: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2837 libraries/db_links.inc.php:103 -#: libraries/tbl_links.inc.php:94 libraries/tbl_links.inc.php:116 -#: view_operations.php:88 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: view_operations.php:87 msgid "Operations" msgstr "操作" -#: libraries/core.lib.php:282 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1893,38 +1873,38 @@ msgstr "イベント" msgid "Name" msgstr "名前" -#: libraries/db_links.inc.php:44 +#: libraries/db_links.inc.php:43 #, php-format msgid "Database %s has been dropped." msgstr "データベース %s を削除しました" -#: libraries/db_links.inc.php:56 libraries/db_links.inc.php:57 -#: libraries/db_links.inc.php:58 +#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 +#: libraries/db_links.inc.php:57 msgid "Database seems to be empty!" msgstr "データベースが空のようです!" -#: libraries/db_links.inc.php:80 libraries/relation.lib.php:142 -#: libraries/tbl_links.inc.php:68 +#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:85 +#: libraries/db_links.inc.php:84 msgid "Query" msgstr "クエリ" -#: libraries/db_links.inc.php:90 libraries/relation.lib.php:138 +#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 msgid "Designer" msgstr "デザイナ" -#: libraries/db_links.inc.php:97 libraries/server_links.inc.php:87 -#: libraries/tbl_links.inc.php:90 pmd_pdf.php:83 pmd_pdf.php:109 +#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "インポート" -#: libraries/db_links.inc.php:110 libraries/server_links.inc.php:65 -#: server_privileges.php:111 server_privileges.php:1714 -#: server_privileges.php:2063 test/theme.php:116 +#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: server_privileges.php:110 server_privileges.php:1718 +#: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" msgstr "特権" @@ -1936,14 +1916,14 @@ msgstr "ルーチン" msgid "Return type" msgstr "返り値の種類" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1847 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1806 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "正確な数字とは限りません。FAQ 3.11 をご覧ください" -#: libraries/db_structure.lib.php:60 server_databases.php:141 -#: tbl_printview.php:334 tbl_structure.php:681 +#: libraries/db_structure.lib.php:60 server_databases.php:139 +#: tbl_printview.php:333 tbl_structure.php:679 msgid "Overhead" msgstr "オーバーヘッド" @@ -1961,7 +1941,7 @@ msgstr "サーバが応答しません" msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "(あるいはローカルの MySQL サーバのソケットが正しく設定されていません)" -#: libraries/dbi/mysql.dbi.lib.php:358 tbl_structure.php:607 +#: libraries/dbi/mysql.dbi.lib.php:358 tbl_structure.php:605 msgid "Details..." msgstr "詳細..." @@ -1971,22 +1951,22 @@ msgid "Change password" msgstr "パスワードを変更する" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:807 +#: libraries/replication_gui.lib.php:347 server_privileges.php:806 msgid "No Password" msgstr "パスワードなし" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1530 server_synchronize.php:1174 +#: libraries/replication_gui.lib.php:351 server_privileges.php:795 +#: server_privileges.php:799 server_privileges.php:810 +#: server_privileges.php:1534 server_synchronize.php:1173 msgid "Password" msgstr "パスワード" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:815 server_privileges.php:818 +#: server_privileges.php:814 server_privileges.php:817 msgid "Re-type" msgstr "もう一度入力してください" @@ -2009,8 +1989,8 @@ msgstr "新規データベースを作成する" msgid "Create" msgstr "作成" -#: libraries/display_create_database.lib.php:39 server_privileges.php:113 -#: server_privileges.php:1419 server_replication.php:34 +#: libraries/display_create_database.lib.php:39 server_privileges.php:112 +#: server_privileges.php:1423 server_replication.php:33 msgid "No Privileges" msgstr "特権なし" @@ -2031,52 +2011,52 @@ msgstr "データベース %s に新しいテーブルを作成する" msgid "Number of columns" msgstr "フィールド数" -#: libraries/display_export.lib.php:41 +#: libraries/display_export.lib.php:35 msgid "Could not load export plugins, please check your installation!" msgstr "" "エクスポートプラグインをロードできません。正しくインストールされているか確認" "してください!" -#: libraries/display_export.lib.php:106 +#: libraries/display_export.lib.php:100 #, fuzzy, php-format #| msgid "Dump %s row(s) starting at record # %s" msgid "Dump %s row(s) starting at row # %s" msgstr "%s 行をダンプします(開始行: %s)" -#: libraries/display_export.lib.php:114 +#: libraries/display_export.lib.php:108 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:124 setup/lib/messages.inc.php:79 +#: libraries/display_export.lib.php:118 setup/lib/messages.inc.php:79 msgid "Save as file" msgstr "ファイルに保存する" -#: libraries/display_export.lib.php:133 +#: libraries/display_export.lib.php:127 #, php-format msgid "Save on server in %s directory" msgstr "サーバ上のディレクトリ %s に保存する" -#: libraries/display_export.lib.php:141 setup/lib/messages.inc.php:87 +#: libraries/display_export.lib.php:135 setup/lib/messages.inc.php:87 msgid "Overwrite existing file(s)" msgstr "既存のファイルは上書き" -#: libraries/display_export.lib.php:147 +#: libraries/display_export.lib.php:141 msgid "File name template" msgstr "ファイル名のテンプレート" -#: libraries/display_export.lib.php:151 +#: libraries/display_export.lib.php:145 msgid "server name" msgstr "サーバ名" -#: libraries/display_export.lib.php:154 +#: libraries/display_export.lib.php:148 msgid "database name" msgstr "データベース名" -#: libraries/display_export.lib.php:157 +#: libraries/display_export.lib.php:151 msgid "table name" msgstr "テーブル名" -#: libraries/display_export.lib.php:161 +#: libraries/display_export.lib.php:155 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2087,39 +2067,39 @@ msgstr "" "式文字列を利用できます。また、次の変換も行われます。%3$s それ以外のテキストは" "修正されません" -#: libraries/display_export.lib.php:202 +#: libraries/display_export.lib.php:196 msgid "remember template" msgstr "テンプレートを記憶させる" -#: libraries/display_export.lib.php:210 libraries/display_import.lib.php:177 +#: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 #: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 msgid "Character set of the file:" msgstr "ファイルの文字セット:" -#: libraries/display_export.lib.php:235 setup/lib/messages.inc.php:81 +#: libraries/display_export.lib.php:229 setup/lib/messages.inc.php:81 msgid "Compression" msgstr "圧縮" -#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:196 -#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:529 -#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:574 -#: server_privileges.php:1867 server_processlist.php:74 +#: libraries/display_export.lib.php:234 libraries/display_import.lib.php:196 +#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:528 +#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:573 +#: server_privileges.php:1871 server_processlist.php:74 msgid "None" msgstr "なし" -#: libraries/display_export.lib.php:247 +#: libraries/display_export.lib.php:241 msgid "\"zipped\"" msgstr "\"zip 形式\"" -#: libraries/display_export.lib.php:253 +#: libraries/display_export.lib.php:247 msgid "\"gzipped\"" msgstr "\"gzip 形式\"" -#: libraries/display_export.lib.php:259 +#: libraries/display_export.lib.php:253 msgid "\"bzipped\"" msgstr "\"bzip 形式\"" -#: libraries/display_export.lib.php:274 libraries/export/sql.php:42 +#: libraries/display_export.lib.php:268 libraries/export/sql.php:42 #: libraries/import/sql.php:31 msgid "SQL compatibility mode" msgstr "SQL互換モード" @@ -2154,12 +2134,12 @@ msgid "File uploads are not allowed on this server." msgstr "このサーバではファイルのアップロードはできません" #: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 -#: tbl_change.php:1024 +#: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "指定したアップロードディレクトリが利用できません" #: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 -#: tbl_change.php:1027 +#: tbl_change.php:925 msgid "web server upload directory" msgstr "ウェブサーバ上のアップロードディレクトリ" @@ -2244,43 +2224,43 @@ msgstr "用紙サイズ" msgid "Language" msgstr "言語" -#: libraries/display_tbl.lib.php:303 +#: libraries/display_tbl.lib.php:302 #, php-format msgid "%d is not valid row number." msgstr "%d は不正な行番号です" -#: libraries/display_tbl.lib.php:309 +#: libraries/display_tbl.lib.php:308 #, fuzzy #| msgid "row(s) starting from record #" msgid "row(s) starting from row #" msgstr "開始行" -#: libraries/display_tbl.lib.php:315 +#: libraries/display_tbl.lib.php:314 msgid "horizontal" msgstr "水平" -#: libraries/display_tbl.lib.php:316 +#: libraries/display_tbl.lib.php:315 msgid "horizontal (rotated headers)" msgstr "水平 (ヘッダも回転)" -#: libraries/display_tbl.lib.php:317 +#: libraries/display_tbl.lib.php:316 msgid "vertical" msgstr "垂直" -#: libraries/display_tbl.lib.php:323 +#: libraries/display_tbl.lib.php:322 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "モード: %s (%s セルごとにヘッダを表示)" -#: libraries/display_tbl.lib.php:345 +#: libraries/display_tbl.lib.php:344 msgid "This operation could take a long time. Proceed anyway?" msgstr "この作業には時間がかかることがあります。続行しますか?" -#: libraries/display_tbl.lib.php:511 +#: libraries/display_tbl.lib.php:510 msgid "Sort by key" msgstr "キーでソート" -#: libraries/display_tbl.lib.php:554 libraries/export/codegen.php:38 +#: libraries/display_tbl.lib.php:553 libraries/export/codegen.php:38 #: libraries/export/csv.php:29 libraries/export/excel.php:34 #: libraries/export/htmlword.php:28 libraries/export/latex.php:32 #: libraries/export/mediawiki.php:21 libraries/export/ods.php:26 @@ -2290,99 +2270,99 @@ msgstr "キーでソート" #: libraries/export/xlsx.php:26 libraries/export/xml.php:23 #: libraries/export/yaml.php:27 libraries/import.lib.php:1114 #: libraries/import.lib.php:1136 libraries/import/csv.php:31 -#: libraries/import/docsql.php:33 libraries/import/ldi.php:46 +#: libraries/import/docsql.php:32 libraries/import/ldi.php:46 #: libraries/import/ods.php:30 libraries/import/sql.php:19 #: libraries/import/xls.php:25 libraries/import/xlsx.php:25 -#: libraries/import/xml.php:25 tbl_select.php:264 tbl_structure.php:752 +#: libraries/import/xml.php:25 tbl_select.php:263 tbl_structure.php:750 msgid "Options" msgstr "オプション" -#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:569 +#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:568 msgid "Partial Texts" msgstr "部分テキスト" -#: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:573 +#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:572 msgid "Full Texts" msgstr "全文" -#: libraries/display_tbl.lib.php:586 +#: libraries/display_tbl.lib.php:585 msgid "Relational key" msgstr "リレーションキー" -#: libraries/display_tbl.lib.php:587 +#: libraries/display_tbl.lib.php:586 #, fuzzy #| msgid "Relational display field" msgid "Relational display column" msgstr "リレーション表示フィールド" -#: libraries/display_tbl.lib.php:594 +#: libraries/display_tbl.lib.php:593 msgid "Show binary contents" msgstr "" -#: libraries/display_tbl.lib.php:596 +#: libraries/display_tbl.lib.php:595 msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:598 +#: libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "" -#: libraries/display_tbl.lib.php:606 pmd_general.php:140 tbl_change.php:312 -#: tbl_change.php:318 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:307 +#: tbl_change.php:313 msgid "Hide" msgstr "隠す" -#: libraries/display_tbl.lib.php:606 libraries/relation.lib.php:122 -#: libraries/tbl_properties.inc.php:143 transformation_overview.php:46 +#: libraries/display_tbl.lib.php:605 libraries/relation.lib.php:117 +#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46 msgid "Browser transformation" msgstr "ブラウザ変換機能" -#: libraries/display_tbl.lib.php:1125 libraries/display_tbl.lib.php:1129 -#: libraries/display_tbl.lib.php:1131 +#: libraries/display_tbl.lib.php:1124 libraries/display_tbl.lib.php:1128 +#: libraries/display_tbl.lib.php:1130 msgid "Execute bookmarked query" msgstr "ブックマークされたクエリを実行する" -#: libraries/display_tbl.lib.php:1144 libraries/display_tbl.lib.php:1156 +#: libraries/display_tbl.lib.php:1143 libraries/display_tbl.lib.php:1155 msgid "The row has been deleted" msgstr "行を削除しました" -#: libraries/display_tbl.lib.php:1183 libraries/display_tbl.lib.php:2055 +#: libraries/display_tbl.lib.php:1182 libraries/display_tbl.lib.php:2014 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "停止" -#: libraries/display_tbl.lib.php:1933 +#: libraries/display_tbl.lib.php:1892 msgid "in query" msgstr "行/クエリ" -#: libraries/display_tbl.lib.php:1951 +#: libraries/display_tbl.lib.php:1910 msgid "Showing rows" msgstr "表示中の列" -#: libraries/display_tbl.lib.php:1961 +#: libraries/display_tbl.lib.php:1920 msgid "total" msgstr "合計" -#: libraries/display_tbl.lib.php:1969 sql.php:523 +#: libraries/display_tbl.lib.php:1928 sql.php:522 #, php-format msgid "Query took %01.4f sec" msgstr "クエリの実行時間 %01.4f 秒" -#: libraries/display_tbl.lib.php:2088 libraries/mult_submits.inc.php:112 -#: querywindow.php:115 querywindow.php:119 querywindow.php:122 -#: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:469 +#: libraries/display_tbl.lib.php:2047 libraries/mult_submits.inc.php:112 +#: querywindow.php:114 querywindow.php:118 querywindow.php:121 +#: tbl_structure.php:23 tbl_structure.php:148 tbl_structure.php:467 msgid "Change" msgstr "変更" -#: libraries/display_tbl.lib.php:2158 +#: libraries/display_tbl.lib.php:2117 msgid "Query results operations" msgstr "クエリ結果操作" -#: libraries/display_tbl.lib.php:2186 +#: libraries/display_tbl.lib.php:2145 msgid "Print view (with full texts)" msgstr "印刷用画面 (全テキストを含む)" -#: libraries/display_tbl.lib.php:2359 +#: libraries/display_tbl.lib.php:2318 msgid "Link not found" msgstr "リンク先が見つかりません" @@ -2438,9 +2418,9 @@ msgstr "InnoDB ステータス" msgid "Buffer Pool Usage" msgstr "バッファプールの使用量" -#: libraries/engines/innodb.lib.php:168 server_databases.php:136 -#: server_databases.php:304 server_status.php:524 server_status.php:585 -#: server_status.php:606 tbl_printview.php:349 tbl_structure.php:695 +#: libraries/engines/innodb.lib.php:168 server_databases.php:134 +#: server_databases.php:302 server_status.php:524 server_status.php:585 +#: server_status.php:606 tbl_printview.php:348 tbl_structure.php:693 msgid "Total" msgstr "合計" @@ -2575,6 +2555,87 @@ msgstr "" "REPAIR TABLE の最中に MyISAM のインデックスをソートするとき、あるいは CREATE " "INDEX や ALTER TABLE でインデックスを作成するときに割り当てられるバッファ" +#: libraries/engines/pbms.lib.php:31 +#, fuzzy +#| msgid "Garbage threshold" +msgid "Garbage Threshold" +msgstr "ガベージ閾値" + +#: libraries/engines/pbms.lib.php:32 +#, fuzzy +#| msgid "" +#| "The percentage of garbage in a data log file before it is compacted. This " +#| "is a value between 1 and 99. The default is 50." +msgid "The percentage of garbage in a repository file before it is compacted." +msgstr "" +"データログファイルのガベージが何%になったら圧縮するか。1 から 99 までの値を" +"とります。デフォルトは 50 です。" + +#: libraries/engines/pbms.lib.php:36 libraries/replication_gui.lib.php:69 +#: server_synchronize.php:1161 +msgid "Port" +msgstr "" + +#: libraries/engines/pbms.lib.php:37 +msgid "" +"The port for the PBMS stream-based communications. Setting this value to 0 " +"will disable HTTP communication with the daemon." +msgstr "" + +#: libraries/engines/pbms.lib.php:41 +msgid "Repository Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:42 +msgid "" +"The maximum size of a BLOB repository file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:46 +msgid "Temp Blob Timeout" +msgstr "" + +#: libraries/engines/pbms.lib.php:47 +msgid "" +"The timeout, in seconds, for temporary BLOBs. Uploaded BLOB data is removed " +"after this time, unless they are referenced by a record in the database." +msgstr "" + +#: libraries/engines/pbms.lib.php:51 +#, fuzzy +#| msgid "Log file threshold" +msgid "Temp Log Threshold" +msgstr "ログファイルの閾値" + +#: libraries/engines/pbms.lib.php:52 +msgid "" +"The maximum size of a temporary BLOB log file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:56 +msgid "Max Keep Alive" +msgstr "" + +#: libraries/engines/pbms.lib.php:57 +msgid "" +"The timeout for inactive connection with the keep-alive flag set. After this " +"time the connection will be closed. The time-out is in milliseconds (1/1000)." +msgstr "" + +#: libraries/engines/pbms.lib.php:61 +msgid "Metadata Headers" +msgstr "" + +#: libraries/engines/pbms.lib.php:62 +msgid "" +"A \":\" delimited list of metadata headers to be used to initialize the " +"pbms_metadata_header table when a database is created." +msgstr "" + #: libraries/engines/pbxt.lib.php:22 msgid "Index cache size" msgstr "インデックスキャッシュの大きさ" @@ -2723,7 +2784,7 @@ msgstr "" "の番号がつけられます。" #: libraries/export/codegen.php:36 setup/lib/messages.inc.php:85 -#: tbl_printview.php:374 tbl_structure.php:736 +#: tbl_printview.php:373 tbl_structure.php:734 msgid "Format" msgstr "フォーマット" @@ -2794,9 +2855,9 @@ msgstr "Microsoft Word 2000" #: libraries/export/htmlword.php:23 libraries/export/latex.php:59 #: libraries/export/latex.php:205 libraries/export/odt.php:47 #: libraries/export/sql.php:105 libraries/export/sql.php:865 -#: libraries/export/texytext.php:27 server_databases.php:126 -#: server_privileges.php:576 server_replication.php:315 tbl_printview.php:315 -#: tbl_structure.php:664 +#: libraries/export/texytext.php:27 server_databases.php:124 +#: server_privileges.php:575 server_replication.php:314 tbl_printview.php:314 +#: tbl_structure.php:662 msgid "Data" msgstr "データ" @@ -2847,13 +2908,13 @@ msgid "Label key" msgstr "ラベルキー" #: libraries/export/latex.php:46 libraries/export/odt.php:34 -#: libraries/export/sql.php:90 tbl_relation.php:398 +#: libraries/export/sql.php:90 tbl_relation.php:396 msgid "Relations" msgstr "リレーション" #: libraries/export/latex.php:52 libraries/export/odt.php:40 #: libraries/export/odt.php:317 libraries/export/sql.php:94 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "MIME タイプ" @@ -2861,10 +2922,10 @@ msgstr "MIME タイプ" #: libraries/export/xml.php:101 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1529 server_privileges.php:2061 -#: server_processlist.php:54 server_synchronize.php:1158 +#: libraries/replication_gui.lib.php:331 server_privileges.php:730 +#: server_privileges.php:733 server_privileges.php:789 +#: server_privileges.php:1533 server_privileges.php:2065 +#: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "ホスト" @@ -3053,8 +3114,8 @@ msgstr "" msgid "Export contents" msgstr "" -#: libraries/footer.inc.php:182 libraries/footer.inc.php:193 -#: libraries/footer.inc.php:196 +#: libraries/footer.inc.php:180 libraries/footer.inc.php:191 +#: libraries/footer.inc.php:194 msgid "Open new phpMyAdmin window" msgstr "別ウィンドウで開く" @@ -3070,7 +3131,7 @@ msgstr "SQL の結果" msgid "Generated by" msgstr "生成環境" -#: libraries/import.lib.php:151 sql.php:519 tbl_change.php:180 +#: libraries/import.lib.php:151 sql.php:518 tbl_change.php:175 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "返り値が空でした(行数0)" @@ -3126,7 +3187,7 @@ msgstr "重複している行を無視する" msgid "Column names in first row" msgstr "" -#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:501 +#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:500 #: view_create.php:147 msgid "Column names" msgstr "カラム名" @@ -3153,12 +3214,12 @@ msgstr "CSV 入力の書式が不正です (行: %d)" msgid "Invalid column count in CSV input on line %d." msgstr "CSV 入力のフィールド数が不正です (行: %d)" -#: libraries/import/docsql.php:28 +#: libraries/import/docsql.php:27 msgid "DocSQL" msgstr "DocSQL" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 -#: server_synchronize.php:427 server_synchronize.php:870 +#: libraries/import/docsql.php:30 libraries/tbl_properties.inc.php:616 +#: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "テーブル名" @@ -3216,26 +3277,26 @@ msgstr "なし" msgid "Convert to Kana" msgstr "全角カナへ変換する" -#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:512 -#: tbl_structure.php:28 tbl_structure.php:152 tbl_structure.php:156 -#: tbl_structure.php:472 +#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:511 +#: tbl_structure.php:27 tbl_structure.php:151 tbl_structure.php:155 +#: tbl_structure.php:470 msgid "Primary" msgstr "主" #: libraries/mult_submits.inc.php:97 libraries/tbl_properties.inc.php:115 -#: libraries/tbl_properties.inc.php:524 tbl_printview.php:324 -#: tbl_structure.php:30 tbl_structure.php:153 tbl_structure.php:157 -#: tbl_structure.php:474 tbl_structure.php:672 +#: libraries/tbl_properties.inc.php:523 tbl_printview.php:323 +#: tbl_structure.php:29 tbl_structure.php:152 tbl_structure.php:156 +#: tbl_structure.php:472 tbl_structure.php:670 msgid "Index" msgstr "インデックス" -#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:530 -#: tbl_structure.php:34 tbl_structure.php:155 tbl_structure.php:159 -#: tbl_structure.php:477 +#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:529 +#: tbl_structure.php:33 tbl_structure.php:154 tbl_structure.php:158 +#: tbl_structure.php:475 msgid "Fulltext" msgstr "全文" -#: libraries/mult_submits.inc.php:434 tbl_replace.php:330 +#: libraries/mult_submits.inc.php:433 tbl_replace.php:330 msgid "No change" msgstr "変更なし" @@ -3243,190 +3304,190 @@ msgstr "変更なし" msgid "Charset" msgstr "文字セット" -#: libraries/mysql_charsets.lib.php:210 libraries/mysql_charsets.lib.php:411 -#: tbl_change.php:515 +#: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 +#: tbl_change.php:510 msgid "Binary" msgstr " バイナリ" -#: libraries/mysql_charsets.lib.php:222 +#: libraries/mysql_charsets.lib.php:214 msgid "Bulgarian" msgstr "ブルガリア語" -#: libraries/mysql_charsets.lib.php:226 libraries/mysql_charsets.lib.php:351 +#: libraries/mysql_charsets.lib.php:218 libraries/mysql_charsets.lib.php:343 msgid "Simplified Chinese" msgstr "簡体字中国語" -#: libraries/mysql_charsets.lib.php:228 libraries/mysql_charsets.lib.php:371 +#: libraries/mysql_charsets.lib.php:220 libraries/mysql_charsets.lib.php:363 msgid "Traditional Chinese" msgstr "繁体字中国語" -#: libraries/mysql_charsets.lib.php:232 libraries/mysql_charsets.lib.php:418 +#: libraries/mysql_charsets.lib.php:224 libraries/mysql_charsets.lib.php:410 msgid "case-insensitive" msgstr "大文字小文字を区別しない" -#: libraries/mysql_charsets.lib.php:235 libraries/mysql_charsets.lib.php:420 +#: libraries/mysql_charsets.lib.php:227 libraries/mysql_charsets.lib.php:412 msgid "case-sensitive" msgstr "大文字小文字を区別する" -#: libraries/mysql_charsets.lib.php:238 +#: libraries/mysql_charsets.lib.php:230 msgid "Croatian" msgstr "クロアチア語" -#: libraries/mysql_charsets.lib.php:241 +#: libraries/mysql_charsets.lib.php:233 msgid "Czech" msgstr "チェコ語" -#: libraries/mysql_charsets.lib.php:244 +#: libraries/mysql_charsets.lib.php:236 msgid "Danish" msgstr "デンマーク語" -#: libraries/mysql_charsets.lib.php:247 +#: libraries/mysql_charsets.lib.php:239 msgid "English" msgstr "英語" -#: libraries/mysql_charsets.lib.php:250 +#: libraries/mysql_charsets.lib.php:242 msgid "Esperanto" msgstr "エスペラント語" -#: libraries/mysql_charsets.lib.php:253 +#: libraries/mysql_charsets.lib.php:245 msgid "Estonian" msgstr "エストニア語" -#: libraries/mysql_charsets.lib.php:256 libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:248 libraries/mysql_charsets.lib.php:251 msgid "German" msgstr "ドイツ語" -#: libraries/mysql_charsets.lib.php:256 +#: libraries/mysql_charsets.lib.php:248 msgid "dictionary" msgstr "辞書" -#: libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:251 msgid "phone book" msgstr "電話帳" -#: libraries/mysql_charsets.lib.php:262 +#: libraries/mysql_charsets.lib.php:254 msgid "Hungarian" msgstr "ハンガリー語" -#: libraries/mysql_charsets.lib.php:265 +#: libraries/mysql_charsets.lib.php:257 msgid "Icelandic" msgstr "アイスランド語" -#: libraries/mysql_charsets.lib.php:268 libraries/mysql_charsets.lib.php:358 +#: libraries/mysql_charsets.lib.php:260 libraries/mysql_charsets.lib.php:350 msgid "Japanese" msgstr "日本語" -#: libraries/mysql_charsets.lib.php:271 +#: libraries/mysql_charsets.lib.php:263 msgid "Latvian" msgstr "ラトビア語" -#: libraries/mysql_charsets.lib.php:274 +#: libraries/mysql_charsets.lib.php:266 msgid "Lithuanian" msgstr "リトアニア語" -#: libraries/mysql_charsets.lib.php:277 libraries/mysql_charsets.lib.php:380 +#: libraries/mysql_charsets.lib.php:269 libraries/mysql_charsets.lib.php:372 msgid "Korean" msgstr "韓国語" -#: libraries/mysql_charsets.lib.php:280 +#: libraries/mysql_charsets.lib.php:272 msgid "Persian" msgstr "ペルシア語" -#: libraries/mysql_charsets.lib.php:283 +#: libraries/mysql_charsets.lib.php:275 msgid "Polish" msgstr "ポーランド語" -#: libraries/mysql_charsets.lib.php:286 libraries/mysql_charsets.lib.php:334 +#: libraries/mysql_charsets.lib.php:278 libraries/mysql_charsets.lib.php:326 msgid "West European" msgstr "西ヨーロッパ諸語" -#: libraries/mysql_charsets.lib.php:289 +#: libraries/mysql_charsets.lib.php:281 msgid "Romanian" msgstr "ルーマニア語" -#: libraries/mysql_charsets.lib.php:292 +#: libraries/mysql_charsets.lib.php:284 msgid "Slovak" msgstr "スロバキア語" -#: libraries/mysql_charsets.lib.php:295 +#: libraries/mysql_charsets.lib.php:287 msgid "Slovenian" msgstr "スロベニア語" -#: libraries/mysql_charsets.lib.php:298 +#: libraries/mysql_charsets.lib.php:290 msgid "Spanish" msgstr "スペイン語" -#: libraries/mysql_charsets.lib.php:301 +#: libraries/mysql_charsets.lib.php:293 msgid "Traditional Spanish" msgstr "スペイン語 (伝統表記)" -#: libraries/mysql_charsets.lib.php:304 libraries/mysql_charsets.lib.php:401 +#: libraries/mysql_charsets.lib.php:296 libraries/mysql_charsets.lib.php:393 msgid "Swedish" msgstr "スウェーデン語" -#: libraries/mysql_charsets.lib.php:307 libraries/mysql_charsets.lib.php:404 +#: libraries/mysql_charsets.lib.php:299 libraries/mysql_charsets.lib.php:396 msgid "Thai" msgstr "タイ語" -#: libraries/mysql_charsets.lib.php:310 libraries/mysql_charsets.lib.php:398 +#: libraries/mysql_charsets.lib.php:302 libraries/mysql_charsets.lib.php:390 msgid "Turkish" msgstr "トルコ語" -#: libraries/mysql_charsets.lib.php:313 libraries/mysql_charsets.lib.php:395 +#: libraries/mysql_charsets.lib.php:305 libraries/mysql_charsets.lib.php:387 msgid "Ukrainian" msgstr "ウクライナ語" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 msgid "Unicode" msgstr "UNICODE" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 -#: libraries/mysql_charsets.lib.php:334 libraries/mysql_charsets.lib.php:341 -#: libraries/mysql_charsets.lib.php:363 libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 +#: libraries/mysql_charsets.lib.php:326 libraries/mysql_charsets.lib.php:333 +#: libraries/mysql_charsets.lib.php:355 libraries/mysql_charsets.lib.php:366 msgid "multilingual" msgstr "多言語" -#: libraries/mysql_charsets.lib.php:341 +#: libraries/mysql_charsets.lib.php:333 msgid "Central European" msgstr "中央ヨーロッパ諸語" -#: libraries/mysql_charsets.lib.php:346 +#: libraries/mysql_charsets.lib.php:338 msgid "Russian" msgstr "ロシア語" -#: libraries/mysql_charsets.lib.php:363 +#: libraries/mysql_charsets.lib.php:355 msgid "Baltic" msgstr "バルト諸語" -#: libraries/mysql_charsets.lib.php:368 +#: libraries/mysql_charsets.lib.php:360 msgid "Armenian" msgstr "アルメニア語" -#: libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:366 msgid "Cyrillic" msgstr "キリル諸語" -#: libraries/mysql_charsets.lib.php:377 +#: libraries/mysql_charsets.lib.php:369 msgid "Arabic" msgstr "アラビア語" -#: libraries/mysql_charsets.lib.php:383 +#: libraries/mysql_charsets.lib.php:375 msgid "Hebrew" msgstr "ヘブライ語" -#: libraries/mysql_charsets.lib.php:386 +#: libraries/mysql_charsets.lib.php:378 msgid "Georgian" msgstr "グルジア語" -#: libraries/mysql_charsets.lib.php:389 +#: libraries/mysql_charsets.lib.php:381 msgid "Greek" msgstr "ギリシア語" -#: libraries/mysql_charsets.lib.php:392 +#: libraries/mysql_charsets.lib.php:384 msgid "Czech-Slovak" msgstr "チェコのスロバキア語" -#: libraries/mysql_charsets.lib.php:407 libraries/mysql_charsets.lib.php:414 +#: libraries/mysql_charsets.lib.php:399 libraries/mysql_charsets.lib.php:406 msgid "unknown" msgstr "不明" @@ -3452,67 +3513,67 @@ msgstr "クエリウィンドウ" msgid "This format has no options" msgstr "この書式にはオプションはありません" -#: libraries/relation.lib.php:82 +#: libraries/relation.lib.php:77 msgid "not OK" msgstr "Not OK" -#: libraries/relation.lib.php:86 pmd_general.php:339 +#: libraries/relation.lib.php:81 pmd_general.php:339 msgid "OK" msgstr "OK" -#: libraries/relation.lib.php:87 +#: libraries/relation.lib.php:82 msgid "Enabled" msgstr "有効" -#: libraries/relation.lib.php:110 +#: libraries/relation.lib.php:105 msgid "Display Features" msgstr "表示機能" -#: libraries/relation.lib.php:116 +#: libraries/relation.lib.php:111 msgid "Creation of PDFs" msgstr "PDF の作成" -#: libraries/relation.lib.php:120 +#: libraries/relation.lib.php:115 msgid "Displaying Column Comments" msgstr "列コメント表示機能" -#: libraries/relation.lib.php:125 +#: libraries/relation.lib.php:120 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "column_comments テーブルの更新方法についてはドキュメントをご覧ください" -#: libraries/relation.lib.php:130 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 msgid "Bookmarked SQL query" msgstr "ブックマークされている SQL" -#: libraries/relation.lib.php:134 querywindow.php:99 querywindow.php:207 +#: libraries/relation.lib.php:129 querywindow.php:98 querywindow.php:205 msgid "SQL history" msgstr "SQL 履歴" -#: libraries/relation.lib.php:146 +#: libraries/relation.lib.php:141 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:148 +#: libraries/relation.lib.php:143 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" -#: libraries/relation.lib.php:149 +#: libraries/relation.lib.php:144 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:150 +#: libraries/relation.lib.php:145 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:151 +#: libraries/relation.lib.php:146 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1158 +#: libraries/relation.lib.php:1153 msgid "no description" msgstr "説明がありません" @@ -3520,7 +3581,7 @@ msgstr "説明がありません" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:53 server_replication.php:346 +#: libraries/replication_gui.lib.php:53 server_replication.php:345 msgid "Change or reconfigure master server" msgstr "" @@ -3532,16 +3593,12 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:711 -#: server_privileges.php:714 server_privileges.php:721 -#: server_synchronize.php:1170 +#: libraries/replication_gui.lib.php:261 server_privileges.php:710 +#: server_privileges.php:713 server_privileges.php:720 +#: server_synchronize.php:1169 msgid "User name" msgstr "ユーザ名" -#: libraries/replication_gui.lib.php:69 server_synchronize.php:1162 -msgid "Port" -msgstr "" - #: libraries/replication_gui.lib.php:105 msgid "Master status" msgstr "" @@ -3556,8 +3613,8 @@ msgid "Variable" msgstr "変数" #: libraries/replication_gui.lib.php:117 server_status.php:737 -#: tbl_change.php:322 tbl_printview.php:368 tbl_select.php:137 -#: tbl_structure.php:728 +#: tbl_change.php:317 tbl_printview.php:367 tbl_select.php:136 +#: tbl_structure.php:726 msgid "Value" msgstr "値" @@ -3571,38 +3628,38 @@ msgid "" "this list." msgstr "" -#: libraries/replication_gui.lib.php:242 server_replication.php:193 +#: libraries/replication_gui.lib.php:242 server_replication.php:192 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:256 server_privileges.php:716 +#: libraries/replication_gui.lib.php:256 server_privileges.php:715 msgid "Any user" msgstr "すべてのユーザ" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1920 server_privileges.php:1950 +#: libraries/replication_gui.lib.php:348 server_privileges.php:716 +#: server_privileges.php:783 server_privileges.php:807 +#: server_privileges.php:1924 server_privileges.php:1954 msgid "Use text field" msgstr "テキストフィールドの値を利用する" -#: libraries/replication_gui.lib.php:304 server_privileges.php:764 +#: libraries/replication_gui.lib.php:304 server_privileges.php:763 msgid "Any host" msgstr "すべてのホスト" -#: libraries/replication_gui.lib.php:308 server_privileges.php:768 +#: libraries/replication_gui.lib.php:308 server_privileges.php:767 msgid "Local" msgstr "ローカル" -#: libraries/replication_gui.lib.php:314 server_privileges.php:773 +#: libraries/replication_gui.lib.php:314 server_privileges.php:772 msgid "This Host" msgstr "このホスト" -#: libraries/replication_gui.lib.php:320 server_privileges.php:779 +#: libraries/replication_gui.lib.php:320 server_privileges.php:778 msgid "Use Host Table" msgstr "ホストテーブルを使う" -#: libraries/replication_gui.lib.php:333 server_privileges.php:792 +#: libraries/replication_gui.lib.php:333 server_privileges.php:791 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3628,8 +3685,8 @@ msgstr "言語ファイルが登録されていません: %1$s" msgid "Servers" msgstr "サーバ" -#: libraries/server_links.inc.php:52 server_engines.php:111 -#: server_engines.php:115 server_status.php:414 test/theme.php:104 +#: libraries/server_links.inc.php:52 server_engines.php:125 +#: server_engines.php:129 server_status.php:414 test/theme.php:104 msgid "Variables" msgstr "変数" @@ -3650,12 +3707,12 @@ msgstr "バイナリログ" msgid "Processes" msgstr "プロセス" -#: libraries/server_links.inc.php:91 server_synchronize.php:1091 -#: server_synchronize.php:1099 +#: libraries/server_links.inc.php:91 server_synchronize.php:1090 +#: server_synchronize.php:1098 msgid "Synchronize" msgstr "" -#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1109 +#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1108 msgid "Source database" msgstr "" @@ -3673,7 +3730,7 @@ msgstr "" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1111 +#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1110 msgid "Target database" msgstr "" @@ -3693,11 +3750,11 @@ msgstr "データベース %s 上でクエリを実行する" msgid "Columns" msgstr "カラム名" -#: libraries/sql_query_form.lib.php:342 sql.php:664 sql.php:665 sql.php:682 +#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "この SQL をブックマークする" -#: libraries/sql_query_form.lib.php:349 sql.php:676 +#: libraries/sql_query_form.lib.php:349 sql.php:669 msgid "Let every user access this bookmark" msgstr "すべてのユーザがこのブックマークを利用できるようにする" @@ -3792,12 +3849,12 @@ msgstr "" "SQL の検証機能を初期化できません。%sドキュメント%s の記載通りに必要な PHP 拡" "張がインストールされているか確認してください" -#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:139 -#: libraries/tbl_links.inc.php:140 +#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 +#: libraries/tbl_links.inc.php:139 msgid "Table seems to be empty!" msgstr "テーブルが空のようです!" -#: libraries/tbl_links.inc.php:148 +#: libraries/tbl_links.inc.php:147 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" @@ -3831,12 +3888,12 @@ msgstr "" "デフォルト値にはひとつの値のみ入力してください。バックスラッシュによるエス" "ケープや引用符を含めることはできません。例: a" -#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1263 -#: pdf_schema.php:1284 tbl_printview.php:142 tbl_structure.php:179 +#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1262 +#: pdf_schema.php:1283 tbl_printview.php:141 tbl_structure.php:178 msgid "Attributes" msgstr "属性" -#: libraries/tbl_properties.inc.php:136 +#: libraries/tbl_properties.inc.php:135 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -3845,11 +3902,11 @@ msgstr "" "利用可能な変換オプションや MIME タイプの変換の一覧については %s変換機能の説" "明%s をご覧ください" -#: libraries/tbl_properties.inc.php:144 +#: libraries/tbl_properties.inc.php:143 msgid "Transformation options" msgstr "変換オプション" -#: libraries/tbl_properties.inc.php:145 +#: libraries/tbl_properties.inc.php:144 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
                            If you ever need to put a backslash (\"\\\") or a single " @@ -3860,18 +3917,18 @@ msgstr "" "ングルクォート (\"'\") を値に含める必要がある場合は ( \\\\xyz や a\\'b のよう" "に) バックスラッシュでエスケープしてください" -#: libraries/tbl_properties.inc.php:392 +#: libraries/tbl_properties.inc.php:391 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "なし" -#: libraries/tbl_properties.inc.php:393 +#: libraries/tbl_properties.inc.php:392 msgid "As defined:" msgstr "ユーザ定義" -#: libraries/tbl_properties.inc.php:579 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:578 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
                            Please ask the " @@ -3880,29 +3937,29 @@ msgstr "" "この変換機能には説明がありません。
                            %s の動作については作者にご確認くださ" "い" -#: libraries/tbl_properties.inc.php:725 server_engines.php:57 -#: tbl_operations.php:354 +#: libraries/tbl_properties.inc.php:724 server_engines.php:56 +#: tbl_operations.php:352 msgid "Storage Engine" msgstr "ストレージエンジン" -#: libraries/tbl_properties.inc.php:754 +#: libraries/tbl_properties.inc.php:753 msgid "PARTITION definition" msgstr "パーティションの定義" -#: libraries/tbl_properties.inc.php:775 pdf_pages.php:502 +#: libraries/tbl_properties.inc.php:774 pdf_pages.php:501 #: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214 -#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1124 tbl_indexes.php:247 -#: tbl_relation.php:565 +#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1022 tbl_indexes.php:246 +#: tbl_relation.php:563 msgid "Save" msgstr "保存する" -#: libraries/tbl_properties.inc.php:779 tbl_structure.php:541 +#: libraries/tbl_properties.inc.php:778 tbl_structure.php:539 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "%s 個のフィールドを追加する" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:535 +#: libraries/tbl_properties.inc.php:782 tbl_structure.php:533 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -4105,8 +4162,8 @@ msgstr "インタフェース" msgid "Custom color" msgstr "カスタムカラー" -#: main.php:162 pdf_pages.php:362 setup/lib/FormDisplay.tpl.php:216 -#: tbl_change.php:1173 +#: main.php:162 pdf_pages.php:361 setup/lib/FormDisplay.tpl.php:216 +#: tbl_change.php:1071 msgid "Reset" msgstr "リセット" @@ -4114,8 +4171,8 @@ msgstr "リセット" msgid "Protocol version" msgstr "プロトコルバージョン" -#: main.php:188 server_privileges.php:1381 server_privileges.php:1528 -#: server_privileges.php:1642 server_privileges.php:2060 +#: main.php:188 server_privileges.php:1385 server_privileges.php:1532 +#: server_privileges.php:1646 server_privileges.php:2064 #: server_processlist.php:53 msgid "User" msgstr "ユーザ" @@ -4200,14 +4257,23 @@ msgid "" "has been configured." msgstr "" -#: main.php:330 +#: main.php:314 +#, php-format +msgid "" +"The additional features for working with linked tables have been " +"deactivated. To find out why click %shere%s." +msgstr "" +"リンクテーブルを処理するための追加機能が無効になっています。理由については%s" +"こちら%sをご覧ください" + +#: main.php:329 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:345 +#: main.php:344 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -4216,7 +4282,7 @@ msgstr "" "お使いの PHP MySQL ライブラリのバージョン %s が MySQL サーバのバージョン %s " "と異なります。これは予期しない不具合を起こす可能性があります。" -#: main.php:357 +#: main.php:356 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -4229,69 +4295,69 @@ msgstr "" msgid "Reload navigation frame" msgstr "" -#: navigation.php:204 server_databases.php:370 server_synchronize.php:1190 +#: navigation.php:203 server_databases.php:368 server_synchronize.php:1189 msgid "No databases" msgstr "データベースが存在しません" -#: navigation.php:298 +#: navigation.php:297 msgid "Filter" msgstr "" -#: navigation.php:299 setup/frames/index.inc.php:218 +#: navigation.php:298 setup/frames/index.inc.php:218 #: setup/lib/messages.inc.php:41 msgid "Clear" msgstr "" -#: navigation.php:330 navigation.php:331 +#: navigation.php:329 navigation.php:330 #, fuzzy #| msgid "Create table" msgctxt "short form" msgid "Create table" msgstr "テーブルを作成" -#: navigation.php:333 navigation.php:495 +#: navigation.php:332 navigation.php:494 msgid "Please select a database" msgstr "データベースを選択してください" -#: pdf_pages.php:40 pdf_pages.php:46 pdf_pages.php:52 pdf_pages.php:57 +#: pdf_pages.php:39 pdf_pages.php:45 pdf_pages.php:51 pdf_pages.php:56 #, php-format msgid "%s table not found or not set in %s" msgstr "" "テーブル %s が見つかりません。あるいは %s には設定されていません" -#: pdf_pages.php:265 +#: pdf_pages.php:264 msgid "Please choose a page to edit" msgstr "編集するページを選択してください" -#: pdf_pages.php:303 pmd_pdf.php:113 +#: pdf_pages.php:302 pmd_pdf.php:111 msgid "Create a page" msgstr "新しいページを作成する" -#: pdf_pages.php:309 +#: pdf_pages.php:308 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "ページ番号:" -#: pdf_pages.php:313 +#: pdf_pages.php:312 #, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "自動レイアウト" -#: pdf_pages.php:315 +#: pdf_pages.php:314 msgid "Internal relations" msgstr "内部リレーション" -#: pdf_pages.php:338 +#: pdf_pages.php:337 msgid "Select Tables" msgstr "テーブルを選択してください" -#: pdf_pages.php:361 +#: pdf_pages.php:360 msgid "Toggle scratchboard" msgstr "スクラッチボードを切り替える" -#: pdf_pages.php:524 +#: pdf_pages.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -4299,37 +4365,37 @@ msgstr "" "このページには存在しないテーブルへの参照があります。これらの参照を削除します" "か?" -#: pdf_schema.php:635 +#: pdf_schema.php:634 #, fuzzy, php-format #| msgid "The \"%s\" table doesn't exist!" msgid "The %s table doesn't exist!" msgstr "\"%s\" テーブルは存在しません!" -#: pdf_schema.php:671 +#: pdf_schema.php:670 #, php-format msgid "Please configure the coordinates for table %s" msgstr "テーブル %s の座標を設定してください" -#: pdf_schema.php:994 +#: pdf_schema.php:993 #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" msgstr "データベース %s のスキーマ - ページ %s" -#: pdf_schema.php:1012 +#: pdf_schema.php:1011 msgid "No tables" msgstr "テーブルがありません" -#: pdf_schema.php:1031 pdf_schema.php:1140 +#: pdf_schema.php:1030 pdf_schema.php:1139 msgid "Relational schema" msgstr "リレーショナルスキーマ" -#: pdf_schema.php:1115 +#: pdf_schema.php:1114 msgid "Table of contents" msgstr "テーブルの内容" -#: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:145 -#: tbl_structure.php:182 tbl_tracking.php:277 +#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 +#: tbl_structure.php:181 tbl_tracking.php:272 msgid "Extra" msgstr "その他" @@ -4341,7 +4407,7 @@ msgstr "左側のメニューを表示する/隠す" msgid "Save position" msgstr "位置を保存" -#: pmd_general.php:70 server_synchronize.php:428 server_synchronize.php:871 +#: pmd_general.php:70 server_synchronize.php:427 server_synchronize.php:870 msgid "Create table" msgstr "テーブルを作成" @@ -4420,31 +4486,31 @@ msgstr "" "示するフィールドを選択する」というアイコンをクリックしてから適切なフィールド" "名をクリックください" -#: pmd_pdf.php:62 +#: pmd_pdf.php:60 msgid "Page has been created" msgstr "" -#: pmd_pdf.php:64 +#: pmd_pdf.php:62 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:84 +#: pmd_pdf.php:82 msgid "Export/Import to scale" msgstr "倍率にあわせたエクスポート/インポート" -#: pmd_pdf.php:88 +#: pmd_pdf.php:86 msgid "recommended" msgstr "推奨" -#: pmd_pdf.php:93 +#: pmd_pdf.php:91 msgid "to/from page" msgstr "開始/終了ページ" -#: querywindow.php:94 +#: querywindow.php:93 msgid "Import files" msgstr "インポートファイル" -#: querywindow.php:105 +#: querywindow.php:104 msgid "All" msgstr "全部" @@ -4490,67 +4556,67 @@ msgstr "情報" msgid "Character Sets and Collations" msgstr "文字セットと照合順序" -#: server_databases.php:51 +#: server_databases.php:49 msgid "No databases selected." msgstr "データベースが選択されていません" -#: server_databases.php:62 +#: server_databases.php:60 #, php-format msgid "%s databases have been dropped successfully." msgstr "データベース %s を正常に削除しました" -#: server_databases.php:87 +#: server_databases.php:85 msgid "Databases statistics" msgstr "データベースの統計" -#: server_databases.php:116 server_status.php:370 +#: server_databases.php:114 server_status.php:370 #: setup/lib/messages.inc.php:114 msgid "Tables" msgstr "テーブル" -#: server_databases.php:194 server_replication.php:180 -#: server_replication.php:208 +#: server_databases.php:192 server_replication.php:179 +#: server_replication.php:207 msgid "Master replication" msgstr "" -#: server_databases.php:196 server_replication.php:247 +#: server_databases.php:194 server_replication.php:246 msgid "Slave replication" msgstr "" -#: server_databases.php:229 +#: server_databases.php:227 #, fuzzy #| msgid "No databases" msgid "Jump to database" msgstr "データベースが存在しません" -#: server_databases.php:266 +#: server_databases.php:264 msgid "Not replicated" msgstr "" -#: server_databases.php:272 +#: server_databases.php:270 #, fuzzy #| msgid "Replication" msgid "Replicated" msgstr "レプリケーション" -#: server_databases.php:288 +#: server_databases.php:286 #, php-format msgid "Check privileges for database "%s"." msgstr "データベース "%s" の特権を確認してください" -#: server_databases.php:292 server_databases.php:293 +#: server_databases.php:290 server_databases.php:291 msgid "Check Privileges" msgstr "特権をチェックする" -#: server_databases.php:357 server_databases.php:358 +#: server_databases.php:355 server_databases.php:356 msgid "Enable Statistics" msgstr "統計を有効にする" -#: server_databases.php:361 server_databases.php:362 +#: server_databases.php:359 server_databases.php:360 msgid "Disable Statistics" msgstr "統計を無効にする" -#: server_databases.php:365 +#: server_databases.php:363 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -4558,177 +4624,177 @@ msgstr "" "注意: データベースの統計を有効にするとウェブサーバと MySQL サーバの間の通信量" "が激増することがあります" -#: server_engines.php:48 +#: server_engines.php:47 msgid "Storage Engines" msgstr "ストレージエンジン" -#: server_export.php:20 +#: server_export.php:18 msgid "View dump (schema) of databases" msgstr "データベースのダンプ(スキーマ)表示" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:23 server_privileges.php:265 msgid "Includes all privileges except GRANT." msgstr "GRANT 以外のすべての特権を付与する" -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:24 server_privileges.php:191 +#: server_privileges.php:514 msgid "Allows altering the structure of existing tables." msgstr "既存のテーブル構造の変更を許可する" -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:25 server_privileges.php:207 +#: server_privileges.php:520 msgid "Allows altering and dropping stored routines." msgstr "ストアドルーチンの修正と削除を許可する" -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:26 server_privileges.php:183 +#: server_privileges.php:513 msgid "Allows creating new databases and tables." msgstr "新しいデータベースやテーブルの作成を許可する" -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:27 server_privileges.php:206 +#: server_privileges.php:519 msgid "Allows creating stored routines." msgstr "ストアドルーチンの作成を許可する" -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:513 msgid "Allows creating new tables." msgstr "新しいテーブルの作成を許可する" -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:29 server_privileges.php:194 +#: server_privileges.php:517 msgid "Allows creating temporary tables." msgstr "一時テーブルの作成を許可する" -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:30 server_privileges.php:208 +#: server_privileges.php:553 msgid "Allows creating, dropping and renaming user accounts." msgstr "ユーザアカウントの作成・削除・リネームを許可する" -#: server_privileges.php:32 server_privileges.php:199 -#: server_privileges.php:203 server_privileges.php:526 -#: server_privileges.php:530 +#: server_privileges.php:31 server_privileges.php:198 +#: server_privileges.php:202 server_privileges.php:525 +#: server_privileges.php:529 msgid "Allows creating new views." msgstr "新しいビューの作成を許可する" -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:32 server_privileges.php:182 +#: server_privileges.php:505 msgid "Allows deleting data." msgstr "データの削除を許可する" -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:33 server_privileges.php:184 +#: server_privileges.php:516 msgid "Allows dropping databases and tables." msgstr "データベースとテーブルの削除を許可す" -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:34 server_privileges.php:516 msgid "Allows dropping tables." msgstr "テーブルの削除を許可する" -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:35 server_privileges.php:199 +#: server_privileges.php:533 msgid "Allows to set up events for the event scheduler" msgstr "イベントスケジューラにイベントを設定できるようにする" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:36 server_privileges.php:209 +#: server_privileges.php:521 msgid "Allows executing stored routines." msgstr "ストアドルーチンの実行を許可する" -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:37 server_privileges.php:188 +#: server_privileges.php:508 msgid "Allows importing data from and exporting data into files." msgstr "データのインポート、エクスポートを許可する" -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:38 server_privileges.php:539 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "特権テーブルのリロードなしのユーザ・特権の追加を許可する" -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:515 msgid "Allows creating and dropping indexes." msgstr "インデックスの作成、削除を許可する" -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:40 server_privileges.php:180 +#: server_privileges.php:441 server_privileges.php:503 msgid "Allows inserting and replacing data." msgstr "データの挿入、置換を許可する" -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:41 server_privileges.php:195 +#: server_privileges.php:548 msgid "Allows locking tables for the current thread." msgstr "現在のスレッドのテーブルロックを許可する" -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:42 server_privileges.php:645 +#: server_privileges.php:647 msgid "Limits the number of new connections the user may open per hour." msgstr "単位時間内に可能な新規接続回数を制限する" -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:43 server_privileges.php:633 +#: server_privileges.php:635 msgid "Limits the number of queries the user may send to the server per hour." msgstr "単位時間内にサーバに送信可能なクエリ数を制限する" -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:44 server_privileges.php:639 +#: server_privileges.php:641 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" "単位時間内に実行可能なテーブルないしデータベースの編集コマンド数を制限する" -#: server_privileges.php:46 server_privileges.php:652 -#: server_privileges.php:654 +#: server_privileges.php:45 server_privileges.php:651 +#: server_privileges.php:653 msgid "Limits the number of simultaneous connections the user may have." msgstr "ユーザの同時接続数を制限する" -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:46 server_privileges.php:187 +#: server_privileges.php:543 msgid "Allows viewing processes of all users" msgstr "全ユーザのプロセスを閲覧できるようにする" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:47 server_privileges.php:189 +#: server_privileges.php:447 server_privileges.php:549 msgid "Has no effect in this MySQL version." msgstr "このバージョンの MySQL では無効です" -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:48 server_privileges.php:185 +#: server_privileges.php:544 msgid "Allows reloading server settings and flushing the server's caches." msgstr "サーバ設定のリロード、サーバキャッシュのフラッシュを許可する" -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:197 +#: server_privileges.php:551 msgid "Allows the user to ask where the slaves / masters are." msgstr "スレーブ/マスターの照会を許可する" -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:50 server_privileges.php:196 +#: server_privileges.php:552 msgid "Needed for the replication slaves." msgstr "レプリケーションスレーブでは有効にする必要があります" -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:51 server_privileges.php:179 +#: server_privileges.php:438 server_privileges.php:502 msgid "Allows reading data." msgstr "データの読み込みを許可する" -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:52 server_privileges.php:192 +#: server_privileges.php:546 msgid "Gives access to the complete list of databases." msgstr "データベース総一覧へのアクセスを許可する" -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:53 server_privileges.php:203 +#: server_privileges.php:205 server_privileges.php:518 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "SHOW CREATE VIEW クエリの実行を許可する" -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:54 server_privileges.php:186 +#: server_privileges.php:545 msgid "Allows shutting down the server." msgstr "サーバのシャットダウンを許可する" -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:55 server_privileges.php:193 +#: server_privileges.php:542 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -4738,156 +4804,156 @@ msgstr "" "ザのスレッドを停止するといった管理操作をする場合はたいていこの設定が必要にな" "ります" -#: server_privileges.php:57 server_privileges.php:201 -#: server_privileges.php:535 +#: server_privileges.php:56 server_privileges.php:200 +#: server_privileges.php:534 msgid "Allows creating and dropping triggers" msgstr "トリガの作成・削除を許可する" -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:57 server_privileges.php:181 +#: server_privileges.php:444 server_privileges.php:504 msgid "Allows changing data." msgstr "データの修正を許可する" -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:58 server_privileges.php:259 msgid "No privileges." msgstr "特権はありません" -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:301 server_privileges.php:302 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "なし" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1710 server_privileges.php:1716 +#: server_privileges.php:430 server_privileges.php:565 +#: server_privileges.php:1714 server_privileges.php:1720 msgid "Table-specific privileges" msgstr "テーブル固有の特権" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1532 +#: server_privileges.php:431 server_privileges.php:573 +#: server_privileges.php:1536 msgid " Note: MySQL privilege names are expressed in English " msgstr "注意: MySQL の特権名は英語で表示されます" -#: server_privileges.php:563 server_privileges.php:1531 +#: server_privileges.php:562 server_privileges.php:1535 msgid "Global privileges" msgstr "グローバル特権" -#: server_privileges.php:565 server_privileges.php:1710 +#: server_privileges.php:564 server_privileges.php:1714 msgid "Database-specific privileges" msgstr "データベースに固有の特権" -#: server_privileges.php:610 +#: server_privileges.php:609 msgid "Administration" msgstr "管理" -#: server_privileges.php:630 +#: server_privileges.php:629 msgid "Resource limits" msgstr "リソースの制限" -#: server_privileges.php:631 +#: server_privileges.php:630 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "注意: オプションを 0 (ゼロ)に設定すると制限を解除します" -#: server_privileges.php:708 +#: server_privileges.php:707 msgid "Login Information" msgstr "ログイン情報" -#: server_privileges.php:802 +#: server_privileges.php:801 msgid "Do not change the password" msgstr "パスワードは変更しない" -#: server_privileges.php:835 server_privileges.php:2197 +#: server_privileges.php:834 server_privileges.php:2201 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "ユーザが存在しません" -#: server_privileges.php:879 +#: server_privileges.php:878 #, php-format msgid "The user %s already exists!" msgstr "ユーザ %s は既に存在します!" -#: server_privileges.php:962 +#: server_privileges.php:961 msgid "You have added a new user." msgstr "新しいユーザを追加しました" -#: server_privileges.php:1183 +#: server_privileges.php:1184 #, php-format msgid "You have updated the privileges for %s." msgstr "%s の特権を更新しました" -#: server_privileges.php:1207 +#: server_privileges.php:1208 #, php-format msgid "You have revoked the privileges for %s" msgstr "%s の特権を取り消しました" -#: server_privileges.php:1243 +#: server_privileges.php:1244 #, php-format msgid "The password for %s was changed successfully." msgstr "%s のパスワードは正しく変更されました" -#: server_privileges.php:1263 +#: server_privileges.php:1264 #, php-format msgid "Deleting %s" msgstr "%s を削除中です" -#: server_privileges.php:1274 +#: server_privileges.php:1275 msgid "No users selected for deleting!" msgstr "削除するユーザが選択されていません!" -#: server_privileges.php:1277 +#: server_privileges.php:1278 msgid "Reloading the privileges" msgstr "特権をリロードしています" -#: server_privileges.php:1292 +#: server_privileges.php:1296 msgid "The selected users have been deleted successfully." msgstr "選択したユーザを正しく削除しました" -#: server_privileges.php:1327 +#: server_privileges.php:1331 msgid "The privileges were reloaded successfully." msgstr "特権を正常にリロードしました" -#: server_privileges.php:1355 server_privileges.php:1641 +#: server_privileges.php:1359 server_privileges.php:1645 msgid "Edit Privileges" msgstr "特権を編集" -#: server_privileges.php:1364 +#: server_privileges.php:1368 msgid "Revoke" msgstr "取り消し" -#: server_privileges.php:1396 +#: server_privileges.php:1400 msgid "User overview" msgstr "ユーザ概略" -#: server_privileges.php:1533 server_privileges.php:1715 -#: server_privileges.php:2064 +#: server_privileges.php:1537 server_privileges.php:1719 +#: server_privileges.php:2068 msgid "Grant" msgstr "権限委譲" -#: server_privileges.php:1552 server_privileges.php:2154 +#: server_privileges.php:1556 server_privileges.php:2158 msgid "Any" msgstr "すべて" -#: server_privileges.php:1601 server_privileges.php:1625 -#: server_privileges.php:2019 server_privileges.php:2208 +#: server_privileges.php:1605 server_privileges.php:1629 +#: server_privileges.php:2023 server_privileges.php:2212 msgid "Add a new User" msgstr "新しいユーザを追加する" -#: server_privileges.php:1606 +#: server_privileges.php:1610 msgid "Remove selected users" msgstr "選択したユーザを削除する" -#: server_privileges.php:1609 +#: server_privileges.php:1613 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "特権をすべて取り消してユーザを削除する" -#: server_privileges.php:1610 server_privileges.php:1611 -#: server_privileges.php:1612 +#: server_privileges.php:1614 server_privileges.php:1615 +#: server_privileges.php:1616 msgid "Drop the databases that have the same names as the users." msgstr "ユーザと同名のデータベースを削除する" -#: server_privileges.php:1628 +#: server_privileges.php:1632 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4900,91 +4966,91 @@ msgstr "" "特権の内容が一致しなくなることがありますので、作業を続ける前に %s特権リロー" "ド%s をしてください" -#: server_privileges.php:1676 +#: server_privileges.php:1680 msgid "The selected user was not found in the privilege table." msgstr "特権テーブルには選択したユーザがいません" -#: server_privileges.php:1716 +#: server_privileges.php:1720 msgid "Column-specific privileges" msgstr "このカラムに固有の特権" -#: server_privileges.php:1917 +#: server_privileges.php:1921 msgid "Add privileges on the following database" msgstr "データベースに特権を追加" -#: server_privileges.php:1935 +#: server_privileges.php:1939 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:1938 +#: server_privileges.php:1942 msgid "Add privileges on the following table" msgstr "テーブルに特権を追加" -#: server_privileges.php:1995 +#: server_privileges.php:1999 msgid "Change Login Information / Copy User" msgstr "ログイン情報の変更 / ユーザの複製" -#: server_privileges.php:1998 +#: server_privileges.php:2002 msgid "Create a new user with the same privileges and ..." msgstr "同じ特権を持つ新しいユーザを作る" -#: server_privileges.php:2000 +#: server_privileges.php:2004 msgid "... keep the old one." msgstr "元のユーザも残す" -#: server_privileges.php:2001 +#: server_privileges.php:2005 msgid " ... delete the old one from the user tables." msgstr "ユーザテーブルから元のユーザを削除する" -#: server_privileges.php:2002 +#: server_privileges.php:2006 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "元のユーザの特権をすべて無効にしてから削除する" -#: server_privileges.php:2003 +#: server_privileges.php:2007 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "ユーザテーブルから元のユーザを削除し、特権をリロードする" -#: server_privileges.php:2025 +#: server_privileges.php:2029 msgid "Database for user" msgstr "ユーザ専用データベース" -#: server_privileges.php:2029 +#: server_privileges.php:2033 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "なし" -#: server_privileges.php:2030 +#: server_privileges.php:2034 msgid "Create database with same name and grant all privileges" msgstr "同名のデータベースを作成してすべての特権を与える" -#: server_privileges.php:2031 +#: server_privileges.php:2035 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "ワイルドカード(ユーザ名_%)に該当するデータベースにすべての特権を与える" -#: server_privileges.php:2034 +#: server_privileges.php:2038 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: server_privileges.php:2057 +#: server_privileges.php:2061 #, php-format msgid "Users having access to "%s"" msgstr ""%s" にアクセスできるユーザ" -#: server_privileges.php:2165 +#: server_privileges.php:2169 msgid "global" msgstr "グローバル" -#: server_privileges.php:2167 +#: server_privileges.php:2171 msgid "database-specific" msgstr "データベース固有" -#: server_privileges.php:2169 +#: server_privileges.php:2173 msgid "wildcard" msgstr "ワイルドカード" @@ -5003,53 +5069,53 @@ msgstr "スレッド %s の終了に失敗しました。すでに閉じてい msgid "ID" msgstr "ID" -#: server_replication.php:50 +#: server_replication.php:49 msgid "Unknown error" msgstr "" -#: server_replication.php:57 +#: server_replication.php:56 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:64 +#: server_replication.php:63 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:70 +#: server_replication.php:69 msgid "Unable to change master" msgstr "" -#: server_replication.php:73 +#: server_replication.php:72 #, php-format msgid "Master server changed succesfully to %s" msgstr "" -#: server_replication.php:181 +#: server_replication.php:180 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:183 server_status.php:391 +#: server_replication.php:182 server_status.php:391 msgid "Show master status" msgstr "" -#: server_replication.php:186 +#: server_replication.php:185 msgid "Show connected slaves" msgstr "" -#: server_replication.php:209 +#: server_replication.php:208 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:216 +#: server_replication.php:215 msgid "Master configuration" msgstr "" -#: server_replication.php:217 +#: server_replication.php:216 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -5058,108 +5124,108 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:220 +#: server_replication.php:219 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:221 +#: server_replication.php:220 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:224 +#: server_replication.php:223 msgid "Please select databases:" msgstr "" -#: server_replication.php:227 +#: server_replication.php:226 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: server_replication.php:229 +#: server_replication.php:228 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: server_replication.php:292 +#: server_replication.php:291 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:295 +#: server_replication.php:294 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:304 +#: server_replication.php:303 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:307 +#: server_replication.php:306 msgid "See slave status table" msgstr "" -#: server_replication.php:310 +#: server_replication.php:309 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:321 +#: server_replication.php:320 msgid "Control slave:" msgstr "" -#: server_replication.php:324 +#: server_replication.php:323 msgid "Full start" msgstr "" -#: server_replication.php:324 +#: server_replication.php:323 msgid "Full stop" msgstr "" -#: server_replication.php:325 +#: server_replication.php:324 msgid "Reset slave" msgstr "" -#: server_replication.php:326 +#: server_replication.php:325 #, php-format msgid "SQL Thread %s only" msgstr "" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 #, fuzzy msgid "Start" msgstr "土" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 msgid "Stop" msgstr "" -#: server_replication.php:327 +#: server_replication.php:326 #, php-format msgid "IO Thread %s only" msgstr "" -#: server_replication.php:331 +#: server_replication.php:330 msgid "Error management:" msgstr "" -#: server_replication.php:333 +#: server_replication.php:332 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:335 +#: server_replication.php:334 msgid "Skip current error" msgstr "" -#: server_replication.php:336 +#: server_replication.php:335 msgid "Skip next" msgstr "" -#: server_replication.php:339 +#: server_replication.php:338 msgid "errors." msgstr "" -#: server_replication.php:354 +#: server_replication.php:353 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -5955,113 +6021,113 @@ msgstr "クエリ種別" msgid "Replication status" msgstr "" -#: server_synchronize.php:93 +#: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:96 +#: server_synchronize.php:95 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:121 server_synchronize.php:124 tbl_create.php:77 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:264 +#: server_synchronize.php:263 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:271 +#: server_synchronize.php:270 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:399 server_synchronize.php:838 +#: server_synchronize.php:398 server_synchronize.php:837 msgid "not present" msgstr "" -#: server_synchronize.php:423 server_synchronize.php:866 +#: server_synchronize.php:422 server_synchronize.php:865 msgid "Structure Difference" msgstr "" -#: server_synchronize.php:424 server_synchronize.php:867 +#: server_synchronize.php:423 server_synchronize.php:866 msgid "Data Difference" msgstr "" -#: server_synchronize.php:429 server_synchronize.php:872 +#: server_synchronize.php:428 server_synchronize.php:871 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:430 server_synchronize.php:873 +#: server_synchronize.php:429 server_synchronize.php:872 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:431 server_synchronize.php:874 +#: server_synchronize.php:430 server_synchronize.php:873 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:432 server_synchronize.php:875 +#: server_synchronize.php:431 server_synchronize.php:874 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:433 server_synchronize.php:876 +#: server_synchronize.php:432 server_synchronize.php:875 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:434 server_synchronize.php:877 +#: server_synchronize.php:433 server_synchronize.php:876 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:435 server_synchronize.php:878 +#: server_synchronize.php:434 server_synchronize.php:877 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:445 server_synchronize.php:889 +#: server_synchronize.php:444 server_synchronize.php:888 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:448 server_synchronize.php:893 +#: server_synchronize.php:447 server_synchronize.php:892 msgid "Apply Selected Changes" msgstr "" -#: server_synchronize.php:450 server_synchronize.php:895 +#: server_synchronize.php:449 server_synchronize.php:894 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:463 +#: server_synchronize.php:462 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:941 +#: server_synchronize.php:940 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:1002 +#: server_synchronize.php:1001 msgid "The following queries have been executed:" msgstr "" -#: server_synchronize.php:1121 +#: server_synchronize.php:1120 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1122 +#: server_synchronize.php:1121 #, fuzzy #| msgid "max. concurrent connections" msgid "Current connection" msgstr "最大同時接続数" -#: server_synchronize.php:1151 +#: server_synchronize.php:1150 #, fuzzy, php-format #| msgid "Configuration" msgid "Configuration: %s" msgstr "設定" -#: server_synchronize.php:1166 +#: server_synchronize.php:1165 msgid "Socket" msgstr "" -#: server_synchronize.php:1212 +#: server_synchronize.php:1211 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -6607,8 +6673,8 @@ msgstr "" #: setup/lib/messages.inc.php:128 msgid "" "Configure phpMyAdmin database to gain access to additional features, see " -"[a@../Documentation.html#linked-tables]linked-tables infrastructure[/a] in " -"documentation" +"[a@../Documentation.html#linked-tables]phpMyAdmin configuration storage[/a] " +"in documentation" msgstr "" #: setup/lib/messages.inc.php:129 setup/lib/messages.inc.php:290 @@ -7653,116 +7719,116 @@ msgstr "" msgid "ZIP" msgstr "" -#: sql.php:495 tbl_replace.php:385 +#: sql.php:494 tbl_replace.php:384 #, php-format msgid "Inserted row id: %1$d" msgstr "id %1$d の行を挿入しました" -#: sql.php:512 +#: sql.php:511 msgid "Showing as PHP code" msgstr "PHP コードとして表示" -#: sql.php:515 tbl_replace.php:359 +#: sql.php:514 tbl_replace.php:358 msgid "Showing SQL query" msgstr "SQL クエリを表示" -#: sql.php:517 +#: sql.php:516 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "SQL の検証" -#: sql.php:638 +#: sql.php:631 #, php-format msgid "Problems with indexes of table `%s`" msgstr "テーブル `%s` のインデックスに問題があります" -#: sql.php:670 +#: sql.php:663 msgid "Label" msgstr "ラベル" -#: tbl_addfield.php:188 tbl_alter.php:102 tbl_indexes.php:97 +#: tbl_addfield.php:185 tbl_alter.php:100 tbl_indexes.php:97 #, php-format msgid "Table %1$s has been altered successfully" msgstr "テーブル %1$s を変更しました" -#: tbl_change.php:250 tbl_select.php:26 tbl_select.php:27 tbl_select.php:30 -#: tbl_select.php:33 +#: tbl_change.php:245 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_select.php:32 msgid "Browse foreign values" msgstr "参照されている値を表示する" -#: tbl_change.php:280 tbl_change.php:318 +#: tbl_change.php:275 tbl_change.php:313 msgid "Function" msgstr "関数" -#: tbl_change.php:300 tbl_indexes.php:199 tbl_indexes.php:224 +#: tbl_change.php:295 tbl_indexes.php:198 tbl_indexes.php:223 msgid "Ignore" msgstr "無視" -#: tbl_change.php:725 +#: tbl_change.php:720 #, fuzzy #| msgid " Because of its length,
                            this field might not be editable " msgid " Because of its length,
                            this column might not be editable " msgstr " 長さによってはこのフィールドを
                            修正できなくなる場合もあります" -#: tbl_change.php:884 +#: tbl_change.php:835 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:890 +#: tbl_change.php:841 msgid "Binary - do not edit" msgstr " バイナリ - 編集不可" -#: tbl_change.php:983 +#: tbl_change.php:889 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:1128 +#: tbl_change.php:1026 msgid "Insert as new row" msgstr "新しい行として挿入する" -#: tbl_change.php:1129 +#: tbl_change.php:1027 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:1130 +#: tbl_change.php:1028 msgid "Show insert query" msgstr "" -#: tbl_change.php:1145 +#: tbl_change.php:1043 msgid "Go back to previous page" msgstr "前のページに戻る" -#: tbl_change.php:1146 +#: tbl_change.php:1044 msgid "Insert another new row" msgstr "新しいレコードを追加する" -#: tbl_change.php:1150 +#: tbl_change.php:1048 msgid "Go back to this page" msgstr "このページに戻る" -#: tbl_change.php:1158 +#: tbl_change.php:1056 msgid "Edit next row" msgstr "次の行を編集する" -#: tbl_change.php:1169 +#: tbl_change.php:1067 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "次の値に移動するときは TAB キーを使ってください。CTRL+カーソルキーを使うと自" "由に移動できます" -#: tbl_change.php:1207 +#: tbl_change.php:1105 #, php-format msgid "Restart insertion with %s rows" msgstr "%s 行から挿入を再開する" -#: tbl_create.php:57 +#: tbl_create.php:55 #, php-format msgid "Table %s already exists!" msgstr "テーブル %s は既に存在します!" -#: tbl_create.php:244 +#: tbl_create.php:241 #, php-format msgid "Table %1$s has been created." msgstr "テーブル %1$s を作成しました。" @@ -7783,205 +7849,205 @@ msgstr "インデックス名を PRIMARY に変更することはできません msgid "No index parts defined!" msgstr "インデックス部分が定義されていません!" -#: tbl_indexes.php:159 +#: tbl_indexes.php:158 msgid "Create a new index" msgstr "新しいインデックスを作成する" -#: tbl_indexes.php:161 +#: tbl_indexes.php:160 msgid "Modify an index" msgstr "インデックスを修正する" -#: tbl_indexes.php:167 +#: tbl_indexes.php:166 msgid "Index name:" msgstr "インデックス名:" -#: tbl_indexes.php:173 +#: tbl_indexes.php:172 msgid "Index type:" msgstr "インデックスの種類:" -#: tbl_indexes.php:183 +#: tbl_indexes.php:182 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" "(主キーはかならず \"PRIMARY\" という名前でなければなりません。また主キー以外" "に \"PRIMARY\" という名前を使ってはなりません!)" -#: tbl_indexes.php:250 +#: tbl_indexes.php:249 #, php-format msgid "Add to index  %s column(s)" msgstr "インデックスに %s  の列を追加しました" -#: tbl_indexes.php:255 tbl_structure.php:588 tbl_structure.php:599 +#: tbl_indexes.php:254 tbl_structure.php:586 tbl_structure.php:597 msgid "Column count has to be larger than zero." msgstr "カラム数は 0 より大きくなければいけません" -#: tbl_move_copy.php:45 +#: tbl_move_copy.php:44 msgid "Can't move table to same one!" msgstr "同じテーブルには移動できません!" -#: tbl_move_copy.php:47 +#: tbl_move_copy.php:46 msgid "Can't copy table to same one!" msgstr "同じテーブルにはコピーできません!" -#: tbl_move_copy.php:55 +#: tbl_move_copy.php:54 #, php-format msgid "Table %s has been moved to %s." msgstr "テーブル %s を %s に移動しました" -#: tbl_move_copy.php:57 +#: tbl_move_copy.php:56 #, php-format msgid "Table %s has been copied to %s." msgstr "テーブル %s を %s にコピーしました" -#: tbl_move_copy.php:81 +#: tbl_move_copy.php:80 msgid "The table name is empty!" msgstr "テーブル名が空です!" -#: tbl_operations.php:248 +#: tbl_operations.php:246 msgid "Alter table order by" msgstr "テーブルの並び順" -#: tbl_operations.php:257 +#: tbl_operations.php:255 msgid "(singly)" msgstr "(1 回)" -#: tbl_operations.php:277 +#: tbl_operations.php:275 msgid "Move table to (database.table):" msgstr "テーブルの移動先(database.table):" -#: tbl_operations.php:335 +#: tbl_operations.php:333 msgid "Table options" msgstr "テーブルオプション" -#: tbl_operations.php:339 +#: tbl_operations.php:337 msgid "Rename table to" msgstr "リネーム後のテーブル名" -#: tbl_operations.php:510 +#: tbl_operations.php:508 msgid "Copy table to (database.table):" msgstr "テーブルを(database.table)にコピーする:" -#: tbl_operations.php:557 +#: tbl_operations.php:555 msgid "Switch to copied table" msgstr "コピーしたテーブルに切り替える" -#: tbl_operations.php:569 +#: tbl_operations.php:567 msgid "Table maintenance" msgstr "テーブル管理" -#: tbl_operations.php:590 +#: tbl_operations.php:588 msgid "Defragment table" msgstr "テーブルのデフラグ" -#: tbl_operations.php:629 +#: tbl_operations.php:627 #, php-format msgid "Table %s has been flushed" msgstr "テーブル %s をフラッシュしました" -#: tbl_operations.php:635 +#: tbl_operations.php:633 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "テーブルをフラッシュする(\"FLUSH\")" -#: tbl_operations.php:650 +#: tbl_operations.php:648 msgid "Partition maintenance" msgstr "パーティション管理" -#: tbl_operations.php:658 +#: tbl_operations.php:656 #, php-format msgid "Partition %s" msgstr "パーティション %s" -#: tbl_operations.php:661 +#: tbl_operations.php:659 msgid "Analyze" msgstr "分析" -#: tbl_operations.php:662 +#: tbl_operations.php:660 msgid "Check" msgstr "確認" -#: tbl_operations.php:663 +#: tbl_operations.php:661 msgid "Optimize" msgstr "最適化" -#: tbl_operations.php:664 +#: tbl_operations.php:662 msgid "Rebuild" msgstr "再構築" -#: tbl_operations.php:665 +#: tbl_operations.php:663 msgid "Repair" msgstr "修復" -#: tbl_operations.php:677 +#: tbl_operations.php:675 msgid "Remove partitioning" msgstr "パーティションを削除" -#: tbl_operations.php:703 +#: tbl_operations.php:701 msgid "Check referential integrity:" msgstr "参照整合性の確認:" -#: tbl_printview.php:73 +#: tbl_printview.php:72 msgid "Show tables" msgstr "テーブルを表示する" -#: tbl_printview.php:308 tbl_structure.php:655 +#: tbl_printview.php:307 tbl_structure.php:653 msgid "Space usage" msgstr "ディスク使用量" -#: tbl_printview.php:312 tbl_structure.php:659 +#: tbl_printview.php:311 tbl_structure.php:657 msgid "Usage" msgstr "使用量" -#: tbl_printview.php:339 tbl_structure.php:686 +#: tbl_printview.php:338 tbl_structure.php:684 msgid "Effective" msgstr "有効" -#: tbl_printview.php:364 tbl_structure.php:724 +#: tbl_printview.php:363 tbl_structure.php:722 msgid "Row Statistics" msgstr "行の統計" -#: tbl_printview.php:367 tbl_structure.php:727 +#: tbl_printview.php:366 tbl_structure.php:725 msgid "Statements" msgstr "ステートメント" -#: tbl_printview.php:378 tbl_structure.php:739 +#: tbl_printview.php:377 tbl_structure.php:737 msgid "static" msgstr "" -#: tbl_printview.php:380 tbl_structure.php:741 +#: tbl_printview.php:379 tbl_structure.php:739 msgid "dynamic" msgstr "動的" -#: tbl_printview.php:402 tbl_structure.php:784 +#: tbl_printview.php:401 tbl_structure.php:782 msgid "Row length" msgstr "行の長さ" -#: tbl_printview.php:412 tbl_structure.php:792 +#: tbl_printview.php:411 tbl_structure.php:790 msgid " Row size " msgstr " 行のサイズ " -#: tbl_relation.php:278 +#: tbl_relation.php:276 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" "%1$s に外部キーを作成するときにエラーが発生しました (データ型を確認してくださ" "い)" -#: tbl_relation.php:404 +#: tbl_relation.php:402 #, fuzzy #| msgid "Internal relations" msgid "Internal relation" msgstr "内部リレーション" -#: tbl_relation.php:406 +#: tbl_relation.php:404 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" "対応する外部リレーションが存在する場合、内部リレーションは必要ありません。" -#: tbl_relation.php:412 +#: tbl_relation.php:410 msgid "Foreign key constraint" msgstr "" @@ -7989,229 +8055,229 @@ msgstr "" msgid "No rows selected" msgstr "行が選択されていません" -#: tbl_select.php:130 +#: tbl_select.php:129 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "\"query by example\"を実行 (ワイルドカード: \"%\")" -#: tbl_select.php:136 +#: tbl_select.php:135 msgid "Operator" msgstr "演算子" -#: tbl_select.php:267 +#: tbl_select.php:266 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "フィールドを選択してください(最低1つ):" -#: tbl_select.php:285 +#: tbl_select.php:284 msgid "Add search conditions (body of the \"where\" clause):" msgstr "検索条件(\"where\"節の内容)を追加してください:" -#: tbl_select.php:292 +#: tbl_select.php:291 msgid "Number of rows per page" msgstr "ページあたりの行数" -#: tbl_select.php:298 +#: tbl_select.php:297 msgid "Display order:" msgstr "表示順:" -#: tbl_structure.php:160 +#: tbl_structure.php:159 msgid "Browse distinct values" msgstr "重複している値を表示しない" -#: tbl_structure.php:360 +#: tbl_structure.php:358 #, fuzzy #| msgid "None" msgctxt "None for default" msgid "None" msgstr "なし" -#: tbl_structure.php:373 +#: tbl_structure.php:371 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Column %s has been dropped" msgstr "テーブル %s を削除しました" -#: tbl_structure.php:384 +#: tbl_structure.php:382 #, php-format msgid "A primary key has been added on %s" msgstr "%s に主キーを追加しました" -#: tbl_structure.php:399 tbl_structure.php:413 tbl_structure.php:427 +#: tbl_structure.php:397 tbl_structure.php:411 tbl_structure.php:425 #, php-format msgid "An index has been added on %s" msgstr "%s にインデックスを追加しました" -#: tbl_structure.php:505 tbl_structure.php:507 +#: tbl_structure.php:503 tbl_structure.php:505 msgid "Relation view" msgstr "リレーションビュー" -#: tbl_structure.php:514 tbl_structure.php:516 +#: tbl_structure.php:512 tbl_structure.php:514 msgid "Propose table structure" msgstr "テーブル構造を確認する" -#: tbl_structure.php:539 +#: tbl_structure.php:537 #, fuzzy #| msgid "Add %s field(s)" msgid "Add column" msgstr "%s 個のフィールドを追加する" -#: tbl_structure.php:553 +#: tbl_structure.php:551 msgid "At End of Table" msgstr "テーブルの末尾" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At Beginning of Table" msgstr "テーブルの先頭" -#: tbl_structure.php:555 +#: tbl_structure.php:553 #, php-format msgid "After %s" msgstr "指定カラムの後に %s" -#: tbl_structure.php:593 +#: tbl_structure.php:591 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr " %s  のカラムにインデックスを作成する" -#: tbl_structure.php:755 +#: tbl_structure.php:753 msgid "partitioned" msgstr "パーティション有り" -#: tbl_tracking.php:113 +#: tbl_tracking.php:109 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:186 +#: tbl_tracking.php:182 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "" -#: tbl_tracking.php:194 +#: tbl_tracking.php:190 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "" -#: tbl_tracking.php:202 +#: tbl_tracking.php:198 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "" -#: tbl_tracking.php:212 +#: tbl_tracking.php:208 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:219 +#: tbl_tracking.php:215 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:220 +#: tbl_tracking.php:216 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:229 +#: tbl_tracking.php:225 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:250 tbl_tracking.php:378 +#: tbl_tracking.php:245 tbl_tracking.php:373 msgid "Close" msgstr "" -#: tbl_tracking.php:261 +#: tbl_tracking.php:256 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:380 +#: tbl_tracking.php:375 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:396 tbl_tracking.php:503 +#: tbl_tracking.php:391 tbl_tracking.php:498 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "" -#: tbl_tracking.php:409 tbl_tracking.php:460 +#: tbl_tracking.php:404 tbl_tracking.php:455 msgid "Date" msgstr "" -#: tbl_tracking.php:410 tbl_tracking.php:461 +#: tbl_tracking.php:405 tbl_tracking.php:456 msgid "Username" msgstr "" -#: tbl_tracking.php:411 +#: tbl_tracking.php:406 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:462 +#: tbl_tracking.php:457 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:506 +#: tbl_tracking.php:501 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:507 +#: tbl_tracking.php:502 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:520 +#: tbl_tracking.php:515 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:560 +#: tbl_tracking.php:555 msgid "Show versions" msgstr "" -#: tbl_tracking.php:592 +#: tbl_tracking.php:587 msgid "Version" msgstr "" -#: tbl_tracking.php:639 +#: tbl_tracking.php:634 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "" -#: tbl_tracking.php:641 +#: tbl_tracking.php:636 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:652 +#: tbl_tracking.php:647 #, php-format msgid "Activate tracking for %s.%s" msgstr "" -#: tbl_tracking.php:654 +#: tbl_tracking.php:649 msgid "Activate now" msgstr "" -#: tbl_tracking.php:667 +#: tbl_tracking.php:662 #, php-format msgid "Create version %s of %s.%s" msgstr "" -#: tbl_tracking.php:671 +#: tbl_tracking.php:666 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:679 +#: tbl_tracking.php:674 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:687 +#: tbl_tracking.php:682 msgid "Create version" msgstr "" @@ -8258,10 +8324,28 @@ msgstr "プロファイルを更新しました" msgid "VIEW name" msgstr "VIEW の名前" -#: view_operations.php:92 +#: view_operations.php:91 msgid "Rename view to" msgstr "" +#, fuzzy +#~| msgid "Enabled" +#~ msgctxt "BLOB repository" +#~ msgid "Enabled" +#~ msgstr "有効" + +#, fuzzy +#~| msgid "Repair" +#~ msgctxt "BLOB repository" +#~ msgid "Repair" +#~ msgstr "修復" + +#, fuzzy +#~| msgid "Disabled" +#~ msgctxt "BLOB repository" +#~ msgid "Disabled" +#~ msgstr "無効" + #~ msgid "" #~ "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " #~ "extension. Please check your PHP configuration." diff --git a/po/ka.po b/po/ka.po index 091b4867d..3667ea8a1 100644 --- a/po/ka.po +++ b/po/ka.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-21 13:53+0200\n" +"POT-Creation-Date: 2010-07-26 17:18+0200\n" "PO-Revision-Date: 2010-03-12 09:14+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: georgian \n" @@ -13,19 +13,19 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.5.3\n" -#: browse_foreigners.php:37 browse_foreigners.php:58 -#: libraries/display_tbl.lib.php:416 server_privileges.php:1506 +#: browse_foreigners.php:36 browse_foreigners.php:57 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1510 msgid "Show all" msgstr "ყველას ჩვენება" -#: browse_foreigners.php:81 libraries/common.lib.php:2313 -#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:393 -#: libraries/export/pdf.php:146 pdf_schema.php:282 pdf_schema.php:1122 -#: pdf_schema.php:1138 +#: browse_foreigners.php:80 libraries/common.lib.php:2318 +#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:392 +#: libraries/export/pdf.php:146 pdf_schema.php:281 pdf_schema.php:1121 +#: pdf_schema.php:1137 msgid "Page number:" msgstr "გვერდის ნომერი:" -#: browse_foreigners.php:131 +#: browse_foreigners.php:130 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -35,139 +35,153 @@ msgstr "" "parent window, or your browser's security settings are configured to block " "cross-window updates." -#: browse_foreigners.php:149 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2829 -#: libraries/common.lib.php:2836 libraries/db_links.inc.php:74 -#: libraries/tbl_links.inc.php:62 +#: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 +#: db_structure.php:89 db_structure.php:91 db_structure.php:102 +#: db_structure.php:104 libraries/common.lib.php:2834 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "ძებნა" -#: browse_foreigners.php:152 db_operations.php:384 db_operations.php:428 -#: db_operations.php:498 db_operations.php:608 db_search.php:344 -#: db_structure.php:566 js/messages.php:48 libraries/Config.class.php:1043 -#: libraries/Theme_Manager.class.php:310 +#: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 +#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 +#: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 -#: libraries/common.lib.php:1340 libraries/common.lib.php:2289 +#: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 -#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:275 -#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:531 -#: libraries/display_tbl.lib.php:613 libraries/replication_gui.lib.php:75 +#: libraries/display_export.lib.php:269 libraries/display_import.lib.php:275 +#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 +#: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 #: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:781 -#: main.php:127 navigation.php:231 pdf_pages.php:291 pdf_pages.php:327 -#: pdf_pages.php:529 pmd_pdf.php:115 server_binlog.php:128 -#: server_privileges.php:664 server_privileges.php:1616 -#: server_privileges.php:1963 server_privileges.php:2010 -#: server_privileges.php:2049 server_replication.php:234 -#: server_replication.php:317 server_replication.php:340 -#: server_synchronize.php:1208 tbl_change.php:328 tbl_change.php:1172 -#: tbl_change.php:1209 tbl_indexes.php:253 tbl_operations.php:264 -#: tbl_operations.php:301 tbl_operations.php:498 tbl_operations.php:560 -#: tbl_operations.php:680 tbl_select.php:324 tbl_structure.php:561 -#: tbl_structure.php:596 tbl_tracking.php:394 tbl_tracking.php:511 -#: view_create.php:181 view_operations.php:100 +#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 +#: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 +#: server_privileges.php:663 server_privileges.php:1620 +#: server_privileges.php:1967 server_privileges.php:2014 +#: server_privileges.php:2053 server_replication.php:233 +#: server_replication.php:316 server_replication.php:339 +#: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 +#: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 +#: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 +#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "გადასვლა" -#: browse_foreigners.php:167 browse_foreigners.php:171 -#: libraries/Index.class.php:441 tbl_tracking.php:319 +#: browse_foreigners.php:166 browse_foreigners.php:170 +#: libraries/Index.class.php:441 tbl_tracking.php:314 msgid "Keyname" msgstr "Keyname" -#: browse_foreigners.php:168 browse_foreigners.php:170 -#: server_collations.php:54 server_collations.php:66 server_engines.php:58 +#: browse_foreigners.php:167 browse_foreigners.php:169 +#: server_collations.php:54 server_collations.php:66 server_engines.php:57 #: server_status.php:738 msgid "Description" msgstr "აღწერილობა" -#: browse_foreigners.php:246 browse_foreigners.php:255 -#: browse_foreigners.php:267 browse_foreigners.php:275 +#: browse_foreigners.php:245 browse_foreigners.php:254 +#: browse_foreigners.php:266 browse_foreigners.php:274 msgid "Use this value" msgstr "გამოიყენე ეს ველი" -#: db_create.php:45 +#: bs_disp_as_mime_type.php:29 bs_play_media.php:35 +msgid "No blob streaming server configured!" +msgstr "" + +#: bs_disp_as_mime_type.php:35 +#, fuzzy +#| msgid "Failed to write file to disk." +msgid "Failed to fetch headers" +msgstr "Failed to write file to disk." + +#: bs_disp_as_mime_type.php:41 +msgid "Failed to open remote URL" +msgstr "" + +#: db_create.php:44 #, php-format msgid "Database %1$s has been created." msgstr "შეიქმნა მონაცემთა ბაზა %1$s." -#: db_datadict.php:48 db_operations.php:377 +#: db_datadict.php:48 db_operations.php:313 msgid "Database comment: " msgstr "მონაცემთა ბაზის კომენტარი: " -#: db_datadict.php:164 libraries/tbl_properties.inc.php:723 -#: pdf_schema.php:1235 tbl_operations.php:346 tbl_printview.php:128 +#: db_datadict.php:164 libraries/tbl_properties.inc.php:722 +#: pdf_schema.php:1234 tbl_operations.php:344 tbl_printview.php:127 msgid "Table comments" msgstr "ცხრილის კომენტარები" -#: db_datadict.php:173 db_qbe.php:173 libraries/Index.class.php:445 +#: db_datadict.php:173 db_qbe.php:170 libraries/Index.class.php:445 #: libraries/export/htmlword.php:243 libraries/export/latex.php:364 #: libraries/export/odt.php:293 libraries/export/texytext.php:233 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:274 -#: pdf_schema.php:1261 pdf_schema.php:1282 tbl_change.php:306 -#: tbl_indexes.php:188 tbl_printview.php:140 tbl_relation.php:401 -#: tbl_select.php:133 tbl_structure.php:176 tbl_tracking.php:272 -#: tbl_tracking.php:323 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 +#: pdf_schema.php:1260 pdf_schema.php:1281 tbl_change.php:301 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:132 tbl_structure.php:175 tbl_tracking.php:267 +#: tbl_tracking.php:318 #, fuzzy #| msgid "Column names" msgid "Column" msgstr "სვეტების სახელები" -#: db_datadict.php:174 db_printview.php:105 libraries/Index.class.php:442 +#: db_datadict.php:174 db_printview.php:104 libraries/Index.class.php:442 #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 #: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:244 #: libraries/export/latex.php:364 libraries/export/odt.php:296 #: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:99 -#: pdf_schema.php:1262 pdf_schema.php:1283 server_privileges.php:2062 -#: tbl_change.php:285 tbl_change.php:312 tbl_printview.php:141 -#: tbl_printview.php:311 tbl_select.php:134 tbl_structure.php:177 -#: tbl_structure.php:658 tbl_tracking.php:273 tbl_tracking.php:320 +#: pdf_schema.php:1261 pdf_schema.php:1282 server_privileges.php:2066 +#: tbl_change.php:280 tbl_change.php:307 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:133 tbl_structure.php:176 +#: tbl_structure.php:656 tbl_tracking.php:268 tbl_tracking.php:315 msgid "Type" msgstr "ტიპი" #: db_datadict.php:176 libraries/Index.class.php:448 #: libraries/export/htmlword.php:245 libraries/export/latex.php:364 #: libraries/export/odt.php:299 libraries/export/texytext.php:235 -#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1264 -#: pdf_schema.php:1285 tbl_change.php:321 tbl_printview.php:143 -#: tbl_structure.php:180 tbl_tracking.php:275 tbl_tracking.php:326 +#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1263 +#: pdf_schema.php:1284 tbl_change.php:316 tbl_printview.php:142 +#: tbl_structure.php:179 tbl_tracking.php:270 tbl_tracking.php:321 msgid "Null" msgstr "ნული" -#: db_datadict.php:177 db_structure.php:500 libraries/export/htmlword.php:246 +#: db_datadict.php:177 db_structure.php:486 libraries/export/htmlword.php:246 #: libraries/export/latex.php:364 libraries/export/odt.php:302 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:105 -#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 -#: tbl_structure.php:181 tbl_tracking.php:276 +#: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:143 +#: tbl_structure.php:180 tbl_tracking.php:271 msgid "Default" msgstr "ნაგულისხმები" #: db_datadict.php:181 libraries/export/htmlword.php:248 #: libraries/export/latex.php:366 libraries/export/odt.php:306 -#: libraries/export/texytext.php:238 pdf_schema.php:1267 pdf_schema.php:1288 -#: tbl_printview.php:148 +#: libraries/export/texytext.php:238 pdf_schema.php:1266 pdf_schema.php:1287 +#: tbl_printview.php:147 msgid "Links to" msgstr "Links to" -#: db_datadict.php:183 db_printview.php:111 libraries/export/htmlword.php:251 +#: db_datadict.php:183 db_printview.php:110 libraries/export/htmlword.php:251 #: libraries/export/latex.php:49 libraries/export/latex.php:369 #: libraries/export/odt.php:37 libraries/export/odt.php:311 #: libraries/export/sql.php:29 libraries/export/texytext.php:241 -#: libraries/tbl_properties.inc.php:129 pdf_schema.php:1278 -#: pdf_schema.php:1289 tbl_printview.php:150 +#: libraries/tbl_properties.inc.php:128 pdf_schema.php:1277 +#: pdf_schema.php:1288 tbl_printview.php:149 msgid "Comments" msgstr "კომენტარები" #: db_datadict.php:266 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/export/htmlword.php:321 #: libraries/export/latex.php:434 libraries/export/odt.php:367 -#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:262 -#: pdf_schema.php:1343 server_privileges.php:1560 server_privileges.php:1571 -#: server_privileges.php:1881 server_privileges.php:1886 -#: server_privileges.php:2179 sql.php:131 sql.php:193 tbl_printview.php:227 -#: tbl_structure.php:349 tbl_tracking.php:336 tbl_tracking.php:341 +#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:261 +#: pdf_schema.php:1342 server_privileges.php:1564 server_privileges.php:1575 +#: server_privileges.php:1885 server_privileges.php:1890 +#: server_privileges.php:2183 sql.php:130 sql.php:192 tbl_printview.php:226 +#: tbl_structure.php:347 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "არა" @@ -178,17 +192,17 @@ msgstr "არა" #: libraries/mult_submits.inc.php:49 libraries/mult_submits.inc.php:54 #: libraries/mult_submits.inc.php:59 libraries/mult_submits.inc.php:91 #: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:105 -#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:261 -#: libraries/mult_submits.inc.php:272 pdf_schema.php:1343 -#: server_databases.php:63 server_privileges.php:1557 -#: server_privileges.php:1571 server_privileges.php:1881 -#: server_privileges.php:1884 server_privileges.php:2179 sql.php:192 -#: tbl_printview.php:227 tbl_structure.php:39 tbl_structure.php:349 -#: tbl_tracking.php:334 tbl_tracking.php:339 +#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:260 +#: libraries/mult_submits.inc.php:271 pdf_schema.php:1342 +#: server_databases.php:61 server_privileges.php:1561 +#: server_privileges.php:1575 server_privileges.php:1885 +#: server_privileges.php:1888 server_privileges.php:2183 sql.php:191 +#: tbl_printview.php:226 tbl_structure.php:38 tbl_structure.php:347 +#: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" msgstr "დიახ" -#: db_datadict.php:321 db_printview.php:265 tbl_printview.php:496 +#: db_datadict.php:321 db_printview.php:264 tbl_printview.php:495 msgid "Print" msgstr "დაბეჭდვა" @@ -196,194 +210,154 @@ msgstr "დაბეჭდვა" msgid "View dump (schema) of database" msgstr "View dump (schema) of database" -#: db_export.php:32 db_printview.php:95 db_qbe.php:101 db_structure.php:50 -#: db_tracking.php:34 export.php:352 navigation.php:326 +#: db_export.php:32 db_printview.php:94 db_qbe.php:98 db_structure.php:49 +#: db_tracking.php:30 export.php:350 navigation.php:325 msgid "No tables found in database." msgstr "No tables found in database." -#: db_export.php:42 db_search.php:326 server_export.php:26 +#: db_export.php:42 db_search.php:326 server_export.php:24 msgid "Select All" msgstr "ყველას მონიშნვა" -#: db_export.php:44 db_search.php:329 server_export.php:28 +#: db_export.php:44 db_search.php:329 server_export.php:26 msgid "Unselect All" msgstr "მონიშნვის მოხსნა" -#: db_operations.php:37 tbl_create.php:49 +#: db_operations.php:33 tbl_create.php:47 msgid "The database name is empty!" msgstr "მონაცემთა ბაზა ცარიელია!" -#: db_operations.php:235 +#: db_operations.php:231 #, php-format msgid "Database %s has been renamed to %s" msgstr "Database %s has been renamed to %s" -#: db_operations.php:239 +#: db_operations.php:235 #, php-format msgid "Database %s has been copied to %s" msgstr "Database %s has been copied to %s" -#: db_operations.php:411 +#: db_operations.php:347 msgid "Rename database to" msgstr "Rename database to" -#: db_operations.php:416 server_processlist.php:56 +#: db_operations.php:352 server_processlist.php:56 msgid "Command" msgstr "ბრძანება" -#: db_operations.php:428 tbl_change.php:1141 +#: db_operations.php:364 tbl_change.php:1039 msgid "and then" msgstr "და შემდეგ" -#: db_operations.php:454 +#: db_operations.php:390 msgid "Copy database to" msgstr "Copy database to" -#: db_operations.php:461 tbl_operations.php:527 tbl_tracking.php:387 +#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "მხოლოდ სტრუქტურა" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:389 +#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "სტრუქტურა და მონაცემები" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:388 +#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "მხოლოდ მონაცემები" -#: db_operations.php:471 +#: db_operations.php:407 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE before copying" -#: db_operations.php:474 libraries/export/sql.php:51 +#: db_operations.php:410 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 -#: libraries/export/sql.php:81 tbl_operations.php:535 +#: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "Add %s" -#: db_operations.php:478 libraries/export/sql.php:77 tbl_operations.php:298 -#: tbl_operations.php:537 +#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Add AUTO_INCREMENT value" -#: db_operations.php:482 tbl_operations.php:544 +#: db_operations.php:418 tbl_operations.php:542 msgid "Add constraints" msgstr "Add constraints" -#: db_operations.php:495 +#: db_operations.php:431 msgid "Switch to copied database" msgstr "Switch to copied database" -#: db_operations.php:536 -msgid "BLOB Repository" -msgstr "BLOB რეპოზიტორია" - -#: db_operations.php:539 db_tracking.php:75 libraries/common.lib.php:1357 -#: libraries/server_links.inc.php:48 server_processlist.php:58 -#: tbl_tracking.php:595 test/theme.php:100 -msgid "Status" -msgstr "მდგომარეობა" - -#: db_operations.php:547 -#, fuzzy -#| msgid "Enabled" -msgctxt "BLOB repository" -msgid "Enabled" -msgstr "ჩართულია" - -#: db_operations.php:551 -msgid "Disable" -msgstr "გათიშვა" - -#: db_operations.php:561 -msgid "Damaged" -msgstr "დაზიანებული" - -#: db_operations.php:565 -#, fuzzy -#| msgid "Repair" -msgctxt "BLOB repository" -msgid "Repair" -msgstr "აღდგენა" - -#: db_operations.php:573 -#, fuzzy -#| msgid "Disabled" -msgctxt "BLOB repository" -msgid "Disabled" -msgstr "გათიშულია" - -#: db_operations.php:577 -msgid "Enable" -msgstr "ჩართვა" - -#: db_operations.php:601 libraries/Index.class.php:447 +#: db_operations.php:451 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 -#: server_collations.php:53 server_collations.php:65 server_databases.php:110 -#: tbl_operations.php:362 tbl_select.php:135 tbl_structure.php:178 -#: tbl_structure.php:766 tbl_tracking.php:274 tbl_tracking.php:325 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 +#: server_collations.php:53 server_collations.php:65 server_databases.php:108 +#: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:177 +#: tbl_structure.php:764 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "კოლაცია" -#: db_operations.php:614 main.php:315 pdf_schema.php:33 -#, php-format +#: db_operations.php:464 pdf_schema.php:32 +#, fuzzy, php-format +#| msgid "" +#| "The additional features for working with linked tables have been " +#| "deactivated. To find out why click %shere%s." msgid "" -"The additional features for working with linked tables have been " -"deactivated. To find out why click %shere%s." +"The phpMyAdmin configuration storage has been deactivated. To find out why " +"click %shere%s." msgstr "" "The additional features for working with linked tables have been " "deactivated. To find out why click %shere%s." -#: db_operations.php:647 +#: db_operations.php:497 msgid "Edit PDF Pages" msgstr "PDF გვერდების რედაქტირება" -#: db_printview.php:103 db_tracking.php:71 db_tracking.php:156 +#: db_printview.php:102 db_tracking.php:67 db_tracking.php:152 #: libraries/db_structure.lib.php:37 libraries/export/xml.php:327 -#: libraries/header.inc.php:125 pdf_pages.php:423 server_privileges.php:1657 -#: server_privileges.php:1713 server_privileges.php:1977 -#: server_synchronize.php:422 server_synchronize.php:865 tbl_tracking.php:591 +#: libraries/header.inc.php:125 pdf_pages.php:422 server_privileges.php:1661 +#: server_privileges.php:1717 server_privileges.php:1981 +#: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "ცხრილი" -#: db_printview.php:104 libraries/db_structure.lib.php:47 +#: db_printview.php:103 libraries/db_structure.lib.php:47 #: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 -#: navigation.php:629 navigation.php:651 server_databases.php:121 -#: tbl_printview.php:392 tbl_structure.php:364 tbl_structure.php:776 +#: navigation.php:628 navigation.php:650 server_databases.php:119 +#: tbl_printview.php:391 tbl_structure.php:362 tbl_structure.php:774 msgid "Rows" msgstr "სტრიქონები" -#: db_printview.php:108 libraries/db_structure.lib.php:58 tbl_indexes.php:189 +#: db_printview.php:107 libraries/db_structure.lib.php:58 tbl_indexes.php:188 msgid "Size" msgstr "ზომა" -#: db_printview.php:161 db_structure.php:456 libraries/export/sql.php:556 +#: db_printview.php:160 db_structure.php:442 libraries/export/sql.php:556 #: libraries/export/sql.php:896 msgid "in use" msgstr "in use" -#: db_printview.php:186 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:511 pdf_schema.php:1240 tbl_printview.php:432 -#: tbl_structure.php:808 +#: db_printview.php:185 libraries/db_info.inc.php:86 +#: libraries/export/sql.php:511 pdf_schema.php:1239 tbl_printview.php:431 +#: tbl_structure.php:806 msgid "Creation" msgstr "შეიქმნა" -#: db_printview.php:195 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:516 pdf_schema.php:1245 tbl_printview.php:442 -#: tbl_structure.php:816 +#: db_printview.php:194 libraries/db_info.inc.php:91 +#: libraries/export/sql.php:516 pdf_schema.php:1244 tbl_printview.php:441 +#: tbl_structure.php:814 msgid "Last update" msgstr "უკანასკნელი განახლება" -#: db_printview.php:204 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:521 pdf_schema.php:1250 tbl_printview.php:452 -#: tbl_structure.php:824 +#: db_printview.php:203 libraries/db_info.inc.php:96 +#: libraries/export/sql.php:521 pdf_schema.php:1249 tbl_printview.php:451 +#: tbl_structure.php:822 msgid "Last check" msgstr "Last check" -#: db_printview.php:221 db_structure.php:479 +#: db_printview.php:220 db_structure.php:465 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -391,94 +365,94 @@ msgid_plural "%s tables" msgstr[0] "%s table(s)" msgstr[1] "%s table(s)" -#: db_qbe.php:28 import.php:453 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1980 libraries/sql_query_form.lib.php:138 -#: tbl_operations.php:212 tbl_relation.php:291 tbl_row_action.php:130 -#: view_operations.php:61 +#: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 +#: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "Your SQL query has been executed successfully" -#: db_qbe.php:41 +#: db_qbe.php:38 msgid "You have to choose at least one column to display" msgstr "You have to choose at least one column to display" -#: db_qbe.php:199 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:865 +#: db_qbe.php:196 libraries/db_structure.lib.php:95 +#: libraries/display_tbl.lib.php:864 msgid "Sort" msgstr "დალაგება" -#: db_qbe.php:208 db_qbe.php:242 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:522 libraries/display_tbl.lib.php:827 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:259 -#: tbl_select.php:311 +#: db_qbe.php:205 db_qbe.php:239 libraries/db_structure.lib.php:102 +#: libraries/display_tbl.lib.php:521 libraries/display_tbl.lib.php:826 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:257 +#: tbl_select.php:310 msgid "Ascending" msgstr "ზრდადობით" -#: db_qbe.php:209 db_qbe.php:250 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:527 libraries/display_tbl.lib.php:824 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:260 -#: tbl_select.php:312 +#: db_qbe.php:206 db_qbe.php:247 libraries/db_structure.lib.php:110 +#: libraries/display_tbl.lib.php:526 libraries/display_tbl.lib.php:823 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:258 +#: tbl_select.php:311 msgid "Descending" msgstr "კლებადობით" -#: db_qbe.php:263 db_tracking.php:77 libraries/display_tbl.lib.php:307 -#: tbl_change.php:275 tbl_tracking.php:596 +#: db_qbe.php:260 db_tracking.php:73 libraries/display_tbl.lib.php:306 +#: tbl_change.php:270 tbl_tracking.php:591 msgid "Show" msgstr "ჩვენება" -#: db_qbe.php:299 +#: db_qbe.php:296 msgid "Criteria" msgstr "კრიტერია" -#: db_qbe.php:352 db_qbe.php:434 db_qbe.php:526 db_qbe.php:557 +#: db_qbe.php:349 db_qbe.php:431 db_qbe.php:523 db_qbe.php:554 msgid "Ins" msgstr "Ins" -#: db_qbe.php:356 db_qbe.php:438 db_qbe.php:523 db_qbe.php:554 +#: db_qbe.php:353 db_qbe.php:435 db_qbe.php:520 db_qbe.php:551 msgid "And" msgstr "და" -#: db_qbe.php:365 db_qbe.php:446 db_qbe.php:528 db_qbe.php:559 +#: db_qbe.php:362 db_qbe.php:443 db_qbe.php:525 db_qbe.php:556 msgid "Del" msgstr "Del" -#: db_qbe.php:369 db_qbe.php:450 db_qbe.php:521 db_qbe.php:552 -#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:778 -#: server_privileges.php:297 tbl_change.php:1027 tbl_indexes.php:249 -#: tbl_select.php:285 +#: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 +#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:777 +#: server_privileges.php:296 tbl_change.php:925 tbl_indexes.php:248 +#: tbl_select.php:284 msgid "Or" msgstr "ან" -#: db_qbe.php:506 +#: db_qbe.php:503 msgid "Modify" msgstr "შეცვლა" -#: db_qbe.php:583 +#: db_qbe.php:580 #, fuzzy #| msgid "Add/Delete Criteria Row" msgid "Add/Delete criteria rows" msgstr "Add/Delete Criteria Row" -#: db_qbe.php:595 +#: db_qbe.php:592 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Add/Delete columns" msgstr "ველის სვეტების დამატება/წაშლა" -#: db_qbe.php:608 db_qbe.php:633 +#: db_qbe.php:605 db_qbe.php:630 msgid "Update Query" msgstr "მოთხოვნის განახლება" -#: db_qbe.php:616 +#: db_qbe.php:613 msgid "Use Tables" msgstr "გამოიყენე ცხრილები" -#: db_qbe.php:639 +#: db_qbe.php:636 #, php-format msgid "SQL query on database %s:" msgstr "SQL query on database %s:" -#: db_qbe.php:933 libraries/common.lib.php:1222 +#: db_qbe.php:930 libraries/common.lib.php:1215 msgid "Submit Query" msgstr "მოთხოვნის გაგზავნა" @@ -518,17 +492,17 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s match(es) inside table %s" msgstr[1] "%s match(es) inside table %s" -#: db_search.php:249 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2831 -#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:49 -#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:466 +#: db_search.php:249 db_structure.php:75 db_structure.php:76 +#: db_structure.php:88 db_structure.php:90 db_structure.php:101 +#: db_structure.php:103 libraries/common.lib.php:2836 +#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 +#: tbl_structure.php:35 tbl_structure.php:47 tbl_structure.php:464 msgid "Browse" msgstr "არჩევა" -#: db_search.php:254 libraries/display_tbl.lib.php:1164 -#: libraries/display_tbl.lib.php:2055 libraries/sql_query_form.lib.php:453 -#: pdf_pages.php:285 pdf_pages.php:424 pdf_pages.php:460 pdf_pages.php:488 +#: db_search.php:254 libraries/display_tbl.lib.php:1163 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 msgid "Delete" @@ -568,66 +542,66 @@ msgstr "ცხრილ(ებ)ში:" msgid "Inside column:" msgstr "ველში:" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2830 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:75 +#: db_structure.php:79 db_structure.php:80 db_structure.php:92 +#: db_structure.php:93 db_structure.php:105 db_structure.php:106 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 +#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "ჩასმა" -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2827 libraries/common.lib.php:2834 -#: libraries/db_links.inc.php:62 libraries/export/htmlword.php:22 +#: db_structure.php:81 db_structure.php:94 db_structure.php:107 +#: libraries/common.lib.php:2832 libraries/common.lib.php:2839 +#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 -#: libraries/tbl_links.inc.php:55 pmd_general.php:133 -#: server_privileges.php:593 server_replication.php:314 tbl_tracking.php:268 +#: libraries/tbl_links.inc.php:54 pmd_general.php:133 +#: server_privileges.php:592 server_replication.php:313 tbl_tracking.php:263 msgid "Structure" msgstr "სტრუქტურა" -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:544 db_structure.php:545 db_tracking.php:90 -#: libraries/Index.class.php:482 libraries/common.lib.php:1659 -#: libraries/db_links.inc.php:99 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:126 -#: server_databases.php:351 tbl_structure.php:26 tbl_structure.php:150 -#: tbl_structure.php:151 tbl_structure.php:470 +#: db_structure.php:82 db_structure.php:83 db_structure.php:95 +#: db_structure.php:96 db_structure.php:108 db_structure.php:109 +#: db_structure.php:530 db_structure.php:531 db_tracking.php:86 +#: libraries/Index.class.php:482 libraries/common.lib.php:1663 +#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 +#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 +#: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" msgstr "Drop" -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:542 db_structure.php:543 libraries/common.lib.php:1658 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:104 +#: db_structure.php:84 db_structure.php:85 db_structure.php:97 +#: db_structure.php:98 db_structure.php:110 db_structure.php:111 +#: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 +#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 msgid "Empty" msgstr "ცარიელი" -#: db_structure.php:315 libraries/tbl_links.inc.php:99 +#: db_structure.php:301 libraries/tbl_links.inc.php:98 #, php-format msgid "Table %s has been emptied" msgstr "Table %s has been emptied" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "View %s has been dropped" msgstr "View %s has been dropped" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "Table %s has been dropped" msgstr "Table %s has been dropped" -#: db_structure.php:332 +#: db_structure.php:318 msgid "Tracking is active." msgstr "" -#: db_structure.php:334 +#: db_structure.php:320 msgid "Tracking is not active." msgstr "" -#: db_structure.php:419 libraries/display_tbl.lib.php:1943 +#: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -636,167 +610,173 @@ msgstr "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." -#: db_structure.php:433 db_structure.php:447 libraries/header.inc.php:125 -#: libraries/tbl_info.inc.php:65 tbl_structure.php:184 test/theme.php:73 +#: db_structure.php:419 db_structure.php:433 libraries/header.inc.php:125 +#: libraries/tbl_info.inc.php:60 tbl_structure.php:183 test/theme.php:73 msgid "View" msgstr "ხედო" -#: db_structure.php:484 libraries/db_structure.lib.php:40 -#: libraries/server_links.inc.php:69 server_replication.php:32 -#: server_replication.php:163 server_status.php:368 +#: db_structure.php:470 libraries/db_structure.lib.php:40 +#: libraries/server_links.inc.php:69 server_replication.php:31 +#: server_replication.php:162 server_status.php:368 msgid "Replication" msgstr "რეპლიკაცია" -#: db_structure.php:488 +#: db_structure.php:474 msgid "Sum" msgstr "ჯამი" -#: db_structure.php:495 libraries/StorageEngine.class.php:349 +#: db_structure.php:481 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s is the default storage engine on this MySQL server." -#: db_structure.php:523 db_structure.php:540 db_structure.php:541 -#: libraries/display_tbl.lib.php:2080 libraries/display_tbl.lib.php:2085 -#: libraries/mult_submits.inc.php:15 server_databases.php:345 -#: server_databases.php:350 server_privileges.php:1588 tbl_structure.php:454 -#: tbl_structure.php:463 +#: db_structure.php:509 db_structure.php:526 db_structure.php:527 +#: libraries/display_tbl.lib.php:2039 libraries/display_tbl.lib.php:2044 +#: libraries/mult_submits.inc.php:15 server_databases.php:343 +#: server_databases.php:348 server_privileges.php:1592 tbl_structure.php:452 +#: tbl_structure.php:461 msgid "With selected:" msgstr "With selected:" -#: db_structure.php:526 libraries/display_tbl.lib.php:2075 -#: server_databases.php:347 server_privileges.php:569 -#: server_privileges.php:1591 tbl_structure.php:457 +#: db_structure.php:512 libraries/display_tbl.lib.php:2034 +#: server_databases.php:345 server_privileges.php:568 +#: server_privileges.php:1595 tbl_structure.php:455 msgid "Check All" msgstr "ყველას შემოწმება" -#: db_structure.php:530 libraries/display_tbl.lib.php:2076 -#: libraries/replication_gui.lib.php:35 server_databases.php:349 -#: server_privileges.php:572 server_privileges.php:1595 tbl_structure.php:461 +#: db_structure.php:516 libraries/display_tbl.lib.php:2035 +#: libraries/replication_gui.lib.php:35 server_databases.php:347 +#: server_privileges.php:571 server_privileges.php:1599 tbl_structure.php:459 msgid "Uncheck All" msgstr "მონიშნვის მოხსნა ყველასთვის" -#: db_structure.php:535 +#: db_structure.php:521 msgid "Check tables having overhead" msgstr "Check tables having overhead" -#: db_structure.php:546 db_structure.php:547 db_structure.php:598 -#: libraries/display_tbl.lib.php:2179 libraries/mult_submits.inc.php:27 -#: tbl_structure.php:491 tbl_structure.php:493 +#: db_structure.php:532 db_structure.php:533 db_structure.php:584 +#: libraries/display_tbl.lib.php:2138 libraries/mult_submits.inc.php:27 +#: tbl_structure.php:489 tbl_structure.php:491 msgid "Print view" msgstr "ხედის ამობეჭდვა" -#: db_structure.php:548 db_structure.php:549 libraries/mult_submits.inc.php:41 -#: tbl_operations.php:580 +#: db_structure.php:534 db_structure.php:535 libraries/mult_submits.inc.php:41 +#: tbl_operations.php:578 msgid "Check table" msgstr "ცხრილის შემოწმება" -#: db_structure.php:550 db_structure.php:551 libraries/mult_submits.inc.php:46 -#: tbl_operations.php:620 tbl_structure.php:708 tbl_structure.php:710 +#: db_structure.php:536 db_structure.php:537 libraries/mult_submits.inc.php:46 +#: tbl_operations.php:618 tbl_structure.php:706 tbl_structure.php:708 msgid "Optimize table" msgstr "ცხრილის ოპტიმიზება" -#: db_structure.php:552 db_structure.php:553 libraries/mult_submits.inc.php:51 -#: tbl_operations.php:610 +#: db_structure.php:538 db_structure.php:539 libraries/mult_submits.inc.php:51 +#: tbl_operations.php:608 msgid "Repair table" msgstr "ცხრილის აღდგენა" -#: db_structure.php:554 db_structure.php:555 libraries/mult_submits.inc.php:56 -#: tbl_operations.php:600 +#: db_structure.php:540 db_structure.php:541 libraries/mult_submits.inc.php:56 +#: tbl_operations.php:598 msgid "Analyze table" msgstr "Analyze table" -#: db_structure.php:556 db_structure.php:557 libraries/db_links.inc.php:70 -#: libraries/display_export.lib.php:82 libraries/display_tbl.lib.php:2093 -#: libraries/display_tbl.lib.php:2224 libraries/mult_submits.inc.php:61 -#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:81 -#: pmd_pdf.php:83 pmd_pdf.php:108 server_privileges.php:1372 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 +#: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 +#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 +#: pmd_pdf.php:81 pmd_pdf.php:106 server_privileges.php:1376 #: setup/frames/menu.inc.php:22 tbl_row_action.php:58 msgid "Export" msgstr "ექსპორტი" -#: db_structure.php:605 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:591 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "მონაცემების ლექსიკონი" -#: db_tracking.php:65 +#: db_tracking.php:61 #, fuzzy msgid "Tracked tables" msgstr "დაბლოკილი ცხრილების გამოტოვება" -#: db_tracking.php:70 libraries/export/htmlword.php:85 +#: db_tracking.php:66 libraries/export/htmlword.php:85 #: libraries/export/latex.php:152 libraries/export/odt.php:112 #: libraries/export/sql.php:339 libraries/export/texytext.php:84 #: libraries/export/xml.php:254 libraries/header.inc.php:105 -#: libraries/header_printview.inc.php:57 server_databases.php:168 -#: server_privileges.php:1652 server_privileges.php:1713 -#: server_privileges.php:1971 server_processlist.php:55 -#: server_synchronize.php:1178 server_synchronize.php:1182 -#: tbl_tracking.php:590 test/theme.php:64 +#: libraries/header_printview.inc.php:57 server_databases.php:166 +#: server_privileges.php:1656 server_privileges.php:1717 +#: server_privileges.php:1975 server_processlist.php:55 +#: server_synchronize.php:1177 server_synchronize.php:1181 +#: tbl_tracking.php:585 test/theme.php:64 msgid "Database" msgstr "მონაცემთა ბაზა" -#: db_tracking.php:72 +#: db_tracking.php:68 #, fuzzy msgid "Last version" msgstr "Create relation" -#: db_tracking.php:73 tbl_tracking.php:593 +#: db_tracking.php:69 tbl_tracking.php:588 #, fuzzy msgid "Created" msgstr "შექმნა" -#: db_tracking.php:74 tbl_tracking.php:594 +#: db_tracking.php:70 tbl_tracking.php:589 msgid "Updated" msgstr "" -#: db_tracking.php:76 libraries/Index.class.php:439 -#: libraries/db_structure.lib.php:44 server_databases.php:202 -#: server_privileges.php:1534 server_privileges.php:1717 -#: server_privileges.php:2065 tbl_structure.php:186 +#: db_tracking.php:71 libraries/common.lib.php:1361 +#: libraries/server_links.inc.php:48 server_processlist.php:58 +#: tbl_tracking.php:590 test/theme.php:100 +msgid "Status" +msgstr "მდგომარეობა" + +#: db_tracking.php:72 libraries/Index.class.php:439 +#: libraries/db_structure.lib.php:44 server_databases.php:200 +#: server_privileges.php:1538 server_privileges.php:1721 +#: server_privileges.php:2069 tbl_structure.php:185 msgid "Action" msgstr "მოქმედება" -#: db_tracking.php:87 db_tracking.php:119 +#: db_tracking.php:83 db_tracking.php:115 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:105 tbl_tracking.php:547 tbl_tracking.php:605 -#: tbl_tracking.php:612 +#: db_tracking.php:101 tbl_tracking.php:542 tbl_tracking.php:600 +#: tbl_tracking.php:607 msgid "active" msgstr "" -#: db_tracking.php:107 tbl_tracking.php:549 tbl_tracking.php:607 -#: tbl_tracking.php:609 +#: db_tracking.php:103 tbl_tracking.php:544 tbl_tracking.php:602 +#: tbl_tracking.php:604 msgid "not active" msgstr "" -#: db_tracking.php:120 +#: db_tracking.php:116 #, fuzzy msgid "Versions" msgstr "სპარსული" -#: db_tracking.php:121 tbl_tracking.php:378 tbl_tracking.php:623 +#: db_tracking.php:117 tbl_tracking.php:373 tbl_tracking.php:618 msgid "Tracking report" msgstr "" -#: db_tracking.php:122 tbl_tracking.php:250 tbl_tracking.php:623 +#: db_tracking.php:118 tbl_tracking.php:245 tbl_tracking.php:618 #, fuzzy msgid "Structure snapshot" msgstr "მხოლოდ სტრუქტურა" -#: db_tracking.php:151 +#: db_tracking.php:147 #, fuzzy msgid "Untracked tables" msgstr "დაბლოკილი ცხრილების გამოტოვება" -#: db_tracking.php:171 db_tracking.php:173 tbl_structure.php:527 -#: tbl_structure.php:529 +#: db_tracking.php:167 db_tracking.php:169 tbl_structure.php:525 +#: tbl_structure.php:527 #, fuzzy msgid "Track table" msgstr "ცხრილის შემოწმება" -#: db_tracking.php:199 +#: db_tracking.php:195 #, fuzzy msgid "Database Log" msgstr "მონაცემთა ბაზა" @@ -805,29 +785,29 @@ msgstr "მონაცემთა ბაზა" msgid "Selected export type has to be saved in file!" msgstr "Selected export type has to be saved in file!" -#: export.php:153 export.php:178 export.php:620 +#: export.php:152 export.php:177 export.php:615 #, php-format msgid "Insufficient space to save the file %s." msgstr "Insufficient space to save the file %s." -#: export.php:287 +#: export.php:286 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "" "File %s already exists on server, change filename or check overwrite option." -#: export.php:291 export.php:295 +#: export.php:290 export.php:294 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "The web server does not have permission to save the file %s." -#: export.php:622 +#: export.php:617 #, php-format msgid "Dump has been saved to file %s." msgstr "Dump has been saved to file %s." -#: import.php:59 +#: import.php:58 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -836,14 +816,14 @@ msgstr "" "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:840 -#: libraries/File.class.php:950 +#: import.php:277 import.php:330 libraries/File.class.php:566 +#: libraries/File.class.php:676 msgid "File could not be read" msgstr "ფაილის წაკითხვა ვერ მოხერხდა" -#: import.php:286 import.php:295 import.php:314 import.php:323 -#: libraries/File.class.php:1020 libraries/File.class.php:1028 -#: libraries/File.class.php:1044 libraries/File.class.php:1052 +#: import.php:285 import.php:294 import.php:313 import.php:322 +#: libraries/File.class.php:746 libraries/File.class.php:754 +#: libraries/File.class.php:770 libraries/File.class.php:778 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -852,7 +832,7 @@ msgstr "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." -#: import.php:336 +#: import.php:335 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -862,29 +842,29 @@ msgstr "" "file size exceeded the maximum size permitted by your PHP configuration. See " "[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." -#: import.php:371 libraries/display_import.lib.php:23 +#: import.php:370 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "Could not load import plugins, please check your installation!" -#: import.php:396 +#: import.php:395 msgid "The bookmark has been deleted." msgstr "The bookmark has been deleted." -#: import.php:400 +#: import.php:399 msgid "Showing bookmark" msgstr "Showing bookmark" -#: import.php:402 sql.php:625 +#: import.php:401 sql.php:618 #, php-format msgid "Bookmark %s created" msgstr "Bookmark %s created" -#: import.php:408 import.php:414 +#: import.php:407 import.php:413 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Import has been successfully finished, %d queries executed." -#: import.php:423 +#: import.php:422 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -892,7 +872,7 @@ msgstr "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." -#: import.php:425 +#: import.php:424 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -900,19 +880,19 @@ msgstr "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." -#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:240 +#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:239 #: user_password.php:110 msgid "Back" msgstr "უკან" -#: index.php:188 +#: index.php:183 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin is more friendly with a frames-capable browser." -#: js/messages.php:25 server_synchronize.php:344 server_synchronize.php:356 -#: server_synchronize.php:372 server_synchronize.php:379 -#: server_synchronize.php:738 server_synchronize.php:766 -#: server_synchronize.php:794 server_synchronize.php:806 +#: js/messages.php:25 server_synchronize.php:343 server_synchronize.php:355 +#: server_synchronize.php:371 server_synchronize.php:378 +#: server_synchronize.php:737 server_synchronize.php:765 +#: server_synchronize.php:793 server_synchronize.php:805 msgid "Click to select" msgstr "" @@ -920,15 +900,15 @@ msgstr "" msgid "Click to unselect" msgstr "" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:88 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:87 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" statements are disabled." -#: js/messages.php:30 libraries/mult_submits.inc.php:257 sql.php:187 +#: js/messages.php:30 libraries/mult_submits.inc.php:256 sql.php:186 msgid "Do you really want to " msgstr "ნამდვილად გსურთ " -#: js/messages.php:31 libraries/mult_submits.inc.php:257 sql.php:171 +#: js/messages.php:31 libraries/mult_submits.inc.php:256 sql.php:170 msgid "You are about to DESTROY a complete database!" msgstr "You are about to DESTROY a complete database!" @@ -957,11 +937,11 @@ msgstr "ჰოსტის სახელი არაა შეყვანი msgid "The user name is empty!" msgstr "მომხმარებლის სახელი ცარიელია!" -#: js/messages.php:44 server_privileges.php:1228 user_password.php:65 +#: js/messages.php:44 server_privileges.php:1229 user_password.php:65 msgid "The password is empty!" msgstr "პაროლი ცარიელია!" -#: js/messages.php:45 server_privileges.php:1226 user_password.php:68 +#: js/messages.php:45 server_privileges.php:1227 user_password.php:68 msgid "The passwords aren't the same!" msgstr "პაროლები არ ემთხვევა!" @@ -969,27 +949,27 @@ msgstr "პაროლები არ ემთხვევა!" msgid "Cancel" msgstr "გაუქმება" -#: js/messages.php:52 pmd_save_pos.php:53 +#: js/messages.php:52 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "ცვლილებები შენახულია" -#: js/messages.php:53 pmd_relation_upd.php:48 +#: js/messages.php:53 pmd_relation_upd.php:47 msgid "Relation deleted" msgstr "Relation deleted" -#: js/messages.php:54 pmd_relation_new.php:63 +#: js/messages.php:54 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "FOREIGN KEY relation added" -#: js/messages.php:55 pmd_relation_new.php:85 +#: js/messages.php:55 pmd_relation_new.php:84 msgid "Internal relation added" msgstr "Internal relation added" -#: js/messages.php:56 pmd_relation_new.php:62 pmd_relation_new.php:87 +#: js/messages.php:56 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "Error: Relation not added." -#: js/messages.php:57 pmd_relation_new.php:30 +#: js/messages.php:57 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "Error: relation already exists." @@ -997,13 +977,13 @@ msgstr "Error: relation already exists." msgid "Error saving coordinates for Designer." msgstr "Error saving coordinates for Designer." -#: js/messages.php:59 libraries/relation.lib.php:94 -#: libraries/relation.lib.php:106 +#: js/messages.php:59 libraries/relation.lib.php:89 +#: libraries/relation.lib.php:101 msgid "General relation features" msgstr "General relation features" -#: js/messages.php:59 libraries/relation.lib.php:88 -#: libraries/relation.lib.php:95 +#: js/messages.php:59 libraries/relation.lib.php:83 +#: libraries/relation.lib.php:90 msgid "Disabled" msgstr "გათიშულია" @@ -1019,7 +999,7 @@ msgstr "Select Foreign Key" msgid "Please select the primary key or a unique key" msgstr "Please select the primary key or a unique key" -#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:547 +#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" @@ -1050,10 +1030,10 @@ msgid "Prev" msgstr "წინა" #. l10n: Display text for next month link in calendar -#: js/messages.php:81 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:337 -#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:422 -#: tbl_structure.php:800 +#: js/messages.php:81 libraries/common.lib.php:2358 +#: libraries/common.lib.php:2361 libraries/display_tbl.lib.php:336 +#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 +#: tbl_structure.php:798 msgid "Next" msgstr "შემდეგი" @@ -1127,27 +1107,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1562 +#: js/messages.php:101 libraries/common.lib.php:1566 msgid "Jan" msgstr "იან" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1564 +#: js/messages.php:103 libraries/common.lib.php:1568 msgid "Feb" msgstr "თებ" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1566 +#: js/messages.php:105 libraries/common.lib.php:1570 msgid "Mar" msgstr "მარ" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1568 +#: js/messages.php:107 libraries/common.lib.php:1572 msgid "Apr" msgstr "აპრ" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1570 +#: js/messages.php:109 libraries/common.lib.php:1574 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1155,37 +1135,37 @@ msgid "May" msgstr "მაი" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1572 +#: js/messages.php:111 libraries/common.lib.php:1576 msgid "Jun" msgstr "ივნ" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1574 +#: js/messages.php:113 libraries/common.lib.php:1578 msgid "Jul" msgstr "ივლ" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1576 +#: js/messages.php:115 libraries/common.lib.php:1580 msgid "Aug" msgstr "აგვ" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1578 +#: js/messages.php:117 libraries/common.lib.php:1582 msgid "Sep" msgstr "სექ" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1580 +#: js/messages.php:119 libraries/common.lib.php:1584 msgid "Oct" msgstr "ოქტ" #. l10n: Short month name -#: js/messages.php:121 libraries/common.lib.php:1582 +#: js/messages.php:121 libraries/common.lib.php:1586 msgid "Nov" msgstr "ნოე" #. l10n: Short month name -#: js/messages.php:123 libraries/common.lib.php:1584 +#: js/messages.php:123 libraries/common.lib.php:1588 msgid "Dec" msgstr "დეკ" @@ -1226,37 +1206,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1587 +#: js/messages.php:136 libraries/common.lib.php:1591 msgid "Sun" msgstr "კვი" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1589 +#: js/messages.php:138 libraries/common.lib.php:1593 msgid "Mon" msgstr "ორშ" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1591 +#: js/messages.php:140 libraries/common.lib.php:1595 msgid "Tue" msgstr "სამ" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1593 +#: js/messages.php:142 libraries/common.lib.php:1597 msgid "Wed" msgstr "ოთხ" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1595 +#: js/messages.php:144 libraries/common.lib.php:1599 msgid "Thu" msgstr "ხუთ" #. l10n: Short week day name -#: js/messages.php:146 libraries/common.lib.php:1597 +#: js/messages.php:146 libraries/common.lib.php:1601 msgid "Fri" msgstr "პარ" #. l10n: Short week day name -#: js/messages.php:148 libraries/common.lib.php:1599 +#: js/messages.php:148 libraries/common.lib.php:1603 msgid "Sat" msgstr "შაბ" @@ -1336,17 +1316,12 @@ msgstr "წამში" msgid "Font size" msgstr "შრიფტის ზომა" -#: libraries/File.class.php:336 libraries/File.class.php:424 -#: libraries/File.class.php:561 libraries/File.class.php:700 -msgid "Unknown error in file upload." -msgstr "Unknown error in file upload." - -#: libraries/File.class.php:406 +#: libraries/File.class.php:315 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:409 +#: libraries/File.class.php:318 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -1354,23 +1329,27 @@ msgstr "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." -#: libraries/File.class.php:412 +#: libraries/File.class.php:321 msgid "The uploaded file was only partially uploaded." msgstr "The uploaded file was only partially uploaded." -#: libraries/File.class.php:415 +#: libraries/File.class.php:324 msgid "Missing a temporary folder." msgstr "Missing a temporary folder." -#: libraries/File.class.php:418 +#: libraries/File.class.php:327 msgid "Failed to write file to disk." msgstr "Failed to write file to disk." -#: libraries/File.class.php:421 +#: libraries/File.class.php:330 msgid "File upload stopped by extension." msgstr "File upload stopped by extension." -#: libraries/File.class.php:898 +#: libraries/File.class.php:333 +msgid "Unknown error in file upload." +msgstr "Unknown error in file upload." + +#: libraries/File.class.php:624 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -1378,37 +1357,37 @@ msgstr "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" -#: libraries/Index.class.php:427 tbl_relation.php:528 +#: libraries/Index.class.php:427 tbl_relation.php:526 msgid "No index defined!" msgstr "ინდექსი არაა განსაზღვრული!" -#: libraries/Index.class.php:432 server_databases.php:131 tbl_tracking.php:315 +#: libraries/Index.class.php:432 server_databases.php:129 tbl_tracking.php:310 msgid "Indexes" msgstr "ინდექსები" #: libraries/Index.class.php:443 libraries/mult_submits.inc.php:102 -#: libraries/tbl_properties.inc.php:518 tbl_structure.php:32 -#: tbl_structure.php:154 tbl_structure.php:158 tbl_structure.php:473 -#: tbl_tracking.php:321 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:31 +#: tbl_structure.php:153 tbl_structure.php:157 tbl_structure.php:471 +#: tbl_tracking.php:316 msgid "Unique" msgstr "უნიკალური" -#: libraries/Index.class.php:444 tbl_tracking.php:322 +#: libraries/Index.class.php:444 tbl_tracking.php:317 msgid "Packed" msgstr "შეკუმშული" -#: libraries/Index.class.php:446 tbl_tracking.php:324 +#: libraries/Index.class.php:446 tbl_tracking.php:319 msgid "Cardinality" msgstr "Cardinality" -#: libraries/Index.class.php:449 tbl_tracking.php:278 tbl_tracking.php:327 +#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322 msgid "Comment" msgstr "კომენტარი" #: libraries/Index.class.php:465 libraries/common.lib.php:609 -#: libraries/common.lib.php:1198 libraries/display_tbl.lib.php:1116 +#: libraries/common.lib.php:1191 libraries/display_tbl.lib.php:1115 #: libraries/import.lib.php:1119 libraries/import.lib.php:1143 -#: pdf_pages.php:284 setup/frames/index.inc.php:124 +#: pdf_pages.php:283 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:349 tbl_row_action.php:68 msgid "Edit" msgstr "რედაქტირება" @@ -1432,15 +1411,15 @@ msgstr "" "removed." #: libraries/List_Database.class.php:430 libraries/server_links.inc.php:40 -#: server_databases.php:87 server_privileges.php:1652 +#: server_databases.php:85 server_privileges.php:1656 #: setup/lib/messages.inc.php:107 test/theme.php:92 msgid "Databases" msgstr "მონაცემთა ბაზები" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:259 libraries/import.lib.php:134 pdf_schema.php:31 -#: pdf_schema.php:231 tbl_change.php:1023 tbl_operations.php:212 -#: tbl_relation.php:289 view_operations.php:61 +#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 +#: tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "შეცდომა" @@ -1468,41 +1447,41 @@ msgid_plural "%1$d rows inserted." msgstr[0] "ჩაისვა %1$d სტრიქონი." msgstr[1] "ჩაისვა %1$d სტრიქონი." -#: libraries/StorageEngine.class.php:196 +#: libraries/StorageEngine.class.php:194 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:352 +#: libraries/StorageEngine.class.php:354 #, php-format msgid "%s is available on this MySQL server." msgstr "%s ხელმისაწვდომია ამ MySQL სერვერზე." -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:357 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s გათიშულია ამ MySQL სერვერზე." -#: libraries/StorageEngine.class.php:359 +#: libraries/StorageEngine.class.php:361 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "ამ MySQL სერვერს არ აქვს %s ძრავის მხარდაჭერა." -#: libraries/Table.class.php:1018 +#: libraries/Table.class.php:1017 msgid "Invalid database" msgstr "არასწორი მონაცემთა ბაზა" -#: libraries/Table.class.php:1032 tbl_get_field.php:25 +#: libraries/Table.class.php:1031 tbl_get_field.php:25 msgid "Invalid table name" msgstr "ცხრილის არასწორი სახელი" -#: libraries/Table.class.php:1047 +#: libraries/Table.class.php:1046 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "Error renaming table %1$s to %2$s" -#: libraries/Table.class.php:1131 +#: libraries/Table.class.php:1129 #, php-format msgid "Table %s has been renamed to %s" msgstr "Table %s has been renamed to %s" @@ -1520,22 +1499,22 @@ msgstr "No preview available." msgid "take it" msgstr "take it" -#: libraries/Theme_Manager.class.php:114 +#: 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:152 +#: libraries/Theme_Manager.class.php:147 #, php-format msgid "Theme %s not found!" msgstr "Theme %s not found!" -#: libraries/Theme_Manager.class.php:220 +#: 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:296 test/theme.php:160 themes.php:20 +#: libraries/Theme_Manager.class.php:291 test/theme.php:160 themes.php:20 #: themes.php:40 msgid "Theme / Style" msgstr "თემა / სტიპი" @@ -1648,19 +1627,19 @@ msgstr "No valid authentication key plugged" msgid "Authenticating..." msgstr "ავთენტიფიკაცია..." -#: libraries/blobstreaming.lib.php:689 +#: libraries/blobstreaming.lib.php:340 msgid "View image" msgstr "გამოსახულების ჩვენება" -#: libraries/blobstreaming.lib.php:693 +#: libraries/blobstreaming.lib.php:344 msgid "Play audio" msgstr "ხმის დაკვრა" -#: libraries/blobstreaming.lib.php:698 +#: libraries/blobstreaming.lib.php:349 msgid "View video" msgstr "ვიდეოს ჩვენება" -#: libraries/blobstreaming.lib.php:702 +#: libraries/blobstreaming.lib.php:353 msgid "Download file" msgstr "ფაილის ჩამოტვირთვა" @@ -1715,7 +1694,7 @@ msgstr "სერვერი" msgid "Invalid authentication method set in configuration:" msgstr "Invalid authentication method set in configuration:" -#: libraries/common.inc.php:909 +#: libraries/common.inc.php:908 #, php-format msgid "You should upgrade to %s %s or later." msgstr "You should upgrade to %s %s or later." @@ -1741,7 +1720,8 @@ msgstr "ka" #: libraries/common.lib.php:425 libraries/common.lib.php:427 #: libraries/common.lib.php:429 libraries/common.lib.php:445 #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 -#: libraries/display_export.lib.php:163 libraries/relation.lib.php:84 +#: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 +#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 #: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" @@ -1756,150 +1736,150 @@ msgstr "SQL მოთხოვნა" msgid "MySQL said: " msgstr "MySQL-მა თქვა: " -#: libraries/common.lib.php:1136 +#: libraries/common.lib.php:1129 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "Failed to connect to SQL validator!" msgstr "MySQL სერვერთან დაკავშირება ვერ მოხერხდა" -#: libraries/common.lib.php:1174 setup/lib/messages.inc.php:350 +#: libraries/common.lib.php:1167 setup/lib/messages.inc.php:350 msgid "Explain SQL" msgstr "SQL-ის ახსნა" -#: libraries/common.lib.php:1177 +#: libraries/common.lib.php:1170 msgid "Skip Explain SQL" msgstr "Skip Explain SQL" -#: libraries/common.lib.php:1211 +#: libraries/common.lib.php:1204 msgid "Without PHP Code" msgstr "PHP კოდის გარეშე" -#: libraries/common.lib.php:1214 setup/lib/messages.inc.php:352 +#: libraries/common.lib.php:1207 setup/lib/messages.inc.php:352 msgid "Create PHP Code" msgstr "PHP კოდის შექმნა" -#: libraries/common.lib.php:1232 server_status.php:451 +#: libraries/common.lib.php:1225 server_status.php:451 #: setup/lib/messages.inc.php:351 msgid "Refresh" msgstr "განახლება" -#: libraries/common.lib.php:1241 +#: libraries/common.lib.php:1234 msgid "Skip Validate SQL" msgstr "Skip Validate SQL" -#: libraries/common.lib.php:1244 setup/lib/messages.inc.php:353 +#: libraries/common.lib.php:1237 setup/lib/messages.inc.php:353 msgid "Validate SQL" msgstr "Validate SQL" -#: libraries/common.lib.php:1283 +#: libraries/common.lib.php:1287 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1285 +#: libraries/common.lib.php:1289 #, fuzzy #| msgid "Engines" msgid "Inline" msgstr "ძრავები" -#: libraries/common.lib.php:1339 libraries/common.lib.php:1354 +#: libraries/common.lib.php:1343 libraries/common.lib.php:1358 msgid "Profiling" msgstr "Profiling" -#: libraries/common.lib.php:1358 libraries/tbl_triggers.lib.php:27 +#: libraries/common.lib.php:1362 libraries/tbl_triggers.lib.php:27 #: server_processlist.php:57 msgid "Time" msgstr "დრო" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "B" msgstr "B" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "KiB" msgstr "KiB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "MiB" msgstr "MiB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "GiB" msgstr "GiB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "TiB" msgstr "TiB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "PiB" msgstr "PiB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "EiB" msgstr "EiB" #. l10n: Thousands separator -#: libraries/common.lib.php:1424 +#: libraries/common.lib.php:1428 msgid "," msgstr "," #. l10n: Decimal separator -#: libraries/common.lib.php:1426 +#: libraries/common.lib.php:1430 msgid "." msgstr "." #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1603 +#: libraries/common.lib.php:1607 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y, %I:%M %p" -#: libraries/common.lib.php:1909 +#: libraries/common.lib.php:1913 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s დღე, %s საათი, %s წუთი და %s წამი" -#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 -#: libraries/display_tbl.lib.php:289 server_status.php:718 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 +#: libraries/display_tbl.lib.php:288 server_status.php:718 msgid "Begin" msgstr "დასაწყისი" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 -#: libraries/display_tbl.lib.php:290 server_binlog.php:154 +#: libraries/common.lib.php:2328 libraries/common.lib.php:2331 +#: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "წინა" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 -#: libraries/display_tbl.lib.php:352 +#: libraries/common.lib.php:2359 libraries/common.lib.php:2362 +#: libraries/display_tbl.lib.php:351 msgid "End" msgstr "დასასრული" -#: libraries/common.lib.php:2429 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "Jump to database "%s"." -#: libraries/common.lib.php:2448 +#: libraries/common.lib.php:2453 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "The %s functionality is affected by a known bug, see %s" -#: libraries/common.lib.php:2828 libraries/common.lib.php:2835 -#: libraries/db_links.inc.php:67 libraries/export/sql.php:24 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 +#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 -#: libraries/tbl_links.inc.php:59 querywindow.php:89 test/theme.php:96 +#: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2837 libraries/db_links.inc.php:103 -#: libraries/tbl_links.inc.php:94 libraries/tbl_links.inc.php:116 -#: view_operations.php:88 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: view_operations.php:87 msgid "Operations" msgstr "მოქმედებები" -#: libraries/core.lib.php:282 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1915,38 +1895,38 @@ msgstr "მოვლენები" msgid "Name" msgstr "სახელი" -#: libraries/db_links.inc.php:44 +#: libraries/db_links.inc.php:43 #, php-format msgid "Database %s has been dropped." msgstr "Database %s has been dropped." -#: libraries/db_links.inc.php:56 libraries/db_links.inc.php:57 -#: libraries/db_links.inc.php:58 +#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 +#: libraries/db_links.inc.php:57 msgid "Database seems to be empty!" msgstr "Database seems to be empty!" -#: libraries/db_links.inc.php:80 libraries/relation.lib.php:142 -#: libraries/tbl_links.inc.php:68 +#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:85 +#: libraries/db_links.inc.php:84 msgid "Query" msgstr "მოთხოვნა" -#: libraries/db_links.inc.php:90 libraries/relation.lib.php:138 +#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 msgid "Designer" msgstr "შემქნელი" -#: libraries/db_links.inc.php:97 libraries/server_links.inc.php:87 -#: libraries/tbl_links.inc.php:90 pmd_pdf.php:83 pmd_pdf.php:109 +#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "შემოტანა" -#: libraries/db_links.inc.php:110 libraries/server_links.inc.php:65 -#: server_privileges.php:111 server_privileges.php:1714 -#: server_privileges.php:2063 test/theme.php:116 +#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: server_privileges.php:110 server_privileges.php:1718 +#: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" msgstr "პრივილეგიები" @@ -1958,7 +1938,7 @@ msgstr "Routines" msgid "Return type" msgstr "Return type" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1847 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1806 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -1966,8 +1946,8 @@ msgstr "" "შეიძლება იყოს მიახლოებითი. იხილეთ [a@./Documentation." "html#faq3_11@Documentation]FAQ 3.11[/a]" -#: libraries/db_structure.lib.php:60 server_databases.php:141 -#: tbl_printview.php:334 tbl_structure.php:681 +#: libraries/db_structure.lib.php:60 server_databases.php:139 +#: tbl_printview.php:333 tbl_structure.php:679 msgid "Overhead" msgstr "Overhead" @@ -1984,7 +1964,7 @@ msgstr "სერვერი არ პასუხობს" 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:358 tbl_structure.php:607 +#: libraries/dbi/mysql.dbi.lib.php:358 tbl_structure.php:605 msgid "Details..." msgstr "დეტალები..." @@ -1994,22 +1974,22 @@ msgid "Change password" msgstr "პაროლის შეცვლა" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:807 +#: libraries/replication_gui.lib.php:347 server_privileges.php:806 msgid "No Password" msgstr "პაროლი არაა" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1530 server_synchronize.php:1174 +#: libraries/replication_gui.lib.php:351 server_privileges.php:795 +#: server_privileges.php:799 server_privileges.php:810 +#: server_privileges.php:1534 server_synchronize.php:1173 msgid "Password" msgstr "პაროლი" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:815 server_privileges.php:818 +#: server_privileges.php:814 server_privileges.php:817 msgid "Re-type" msgstr "Re-type" @@ -2032,8 +2012,8 @@ msgstr "ახალი მონაცემთა ბაზის შექმ msgid "Create" msgstr "შექმნა" -#: libraries/display_create_database.lib.php:39 server_privileges.php:113 -#: server_privileges.php:1419 server_replication.php:34 +#: libraries/display_create_database.lib.php:39 server_privileges.php:112 +#: server_privileges.php:1423 server_replication.php:33 msgid "No Privileges" msgstr "პრივილეგიები არაა" @@ -2054,50 +2034,50 @@ msgstr "Create new table on database %s" msgid "Number of columns" msgstr "ველების რაოდენობა" -#: libraries/display_export.lib.php:41 +#: libraries/display_export.lib.php:35 msgid "Could not load export plugins, please check your installation!" msgstr "Could not load export plugins, please check your installation!" -#: libraries/display_export.lib.php:106 +#: libraries/display_export.lib.php:100 #, fuzzy, php-format #| msgid "Dump %s row(s) starting at record # %s" msgid "Dump %s row(s) starting at row # %s" msgstr "Dump %s row(s) starting at record # %s." -#: libraries/display_export.lib.php:114 +#: libraries/display_export.lib.php:108 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:124 setup/lib/messages.inc.php:79 +#: libraries/display_export.lib.php:118 setup/lib/messages.inc.php:79 msgid "Save as file" msgstr "ფაილის სახის შენახვა" -#: libraries/display_export.lib.php:133 +#: libraries/display_export.lib.php:127 #, php-format msgid "Save on server in %s directory" msgstr "სერვერის %s დირექტორიაში შენახვა" -#: libraries/display_export.lib.php:141 setup/lib/messages.inc.php:87 +#: libraries/display_export.lib.php:135 setup/lib/messages.inc.php:87 msgid "Overwrite existing file(s)" msgstr "Overwrite existing file(s)" -#: libraries/display_export.lib.php:147 +#: libraries/display_export.lib.php:141 msgid "File name template" msgstr "File name template" -#: libraries/display_export.lib.php:151 +#: libraries/display_export.lib.php:145 msgid "server name" msgstr "სერვერის სახელი" -#: libraries/display_export.lib.php:154 +#: libraries/display_export.lib.php:148 msgid "database name" msgstr "მონაცემთა ბაზა" -#: libraries/display_export.lib.php:157 +#: libraries/display_export.lib.php:151 msgid "table name" msgstr "ცხრილის სახელი" -#: libraries/display_export.lib.php:161 +#: libraries/display_export.lib.php:155 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2108,39 +2088,39 @@ msgstr "" "formatting strings. Additionally the following transformations will happen: " "%3$s. Other text will be kept as is." -#: libraries/display_export.lib.php:202 +#: libraries/display_export.lib.php:196 msgid "remember template" msgstr "remember template" -#: libraries/display_export.lib.php:210 libraries/display_import.lib.php:177 +#: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 #: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 msgid "Character set of the file:" msgstr "სიმბოლოთა ნაკრები ფაილისთვის:" -#: libraries/display_export.lib.php:235 setup/lib/messages.inc.php:81 +#: libraries/display_export.lib.php:229 setup/lib/messages.inc.php:81 msgid "Compression" msgstr "შეკუმშვა" -#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:196 -#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:529 -#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:574 -#: server_privileges.php:1867 server_processlist.php:74 +#: libraries/display_export.lib.php:234 libraries/display_import.lib.php:196 +#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:528 +#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:573 +#: server_privileges.php:1871 server_processlist.php:74 msgid "None" msgstr "არაა" -#: libraries/display_export.lib.php:247 +#: libraries/display_export.lib.php:241 msgid "\"zipped\"" msgstr "\"zip-ით შეკუმშული\"" -#: libraries/display_export.lib.php:253 +#: libraries/display_export.lib.php:247 msgid "\"gzipped\"" msgstr "\"gzip-ით დაარქივებული\"" -#: libraries/display_export.lib.php:259 +#: libraries/display_export.lib.php:253 msgid "\"bzipped\"" msgstr "\"bzip-ით დაარქივებული\"" -#: libraries/display_export.lib.php:274 libraries/export/sql.php:42 +#: libraries/display_export.lib.php:268 libraries/export/sql.php:42 #: libraries/import/sql.php:31 msgid "SQL compatibility mode" msgstr "SQL compatibility mode" @@ -2175,12 +2155,12 @@ msgid "File uploads are not allowed on this server." msgstr "File uploads are not allowed on this server." #: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 -#: tbl_change.php:1024 +#: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "The directory you set for upload work cannot be reached" #: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 -#: tbl_change.php:1027 +#: tbl_change.php:925 msgid "web server upload directory" msgstr "web server upload directory" @@ -2265,43 +2245,43 @@ msgstr "გვერდის ზომა" msgid "Language" msgstr "ენა" -#: libraries/display_tbl.lib.php:303 +#: libraries/display_tbl.lib.php:302 #, php-format msgid "%d is not valid row number." msgstr "%d is not valid row number." -#: libraries/display_tbl.lib.php:309 +#: libraries/display_tbl.lib.php:308 #, fuzzy #| msgid "row(s) starting from record #" msgid "row(s) starting from row #" msgstr "row(s) starting from record #" -#: libraries/display_tbl.lib.php:315 +#: libraries/display_tbl.lib.php:314 msgid "horizontal" msgstr "ჰორიზონტალური" -#: libraries/display_tbl.lib.php:316 +#: libraries/display_tbl.lib.php:315 msgid "horizontal (rotated headers)" msgstr "horizontal (rotated headers)" -#: libraries/display_tbl.lib.php:317 +#: libraries/display_tbl.lib.php:316 msgid "vertical" msgstr "ვერტიკალური" -#: libraries/display_tbl.lib.php:323 +#: libraries/display_tbl.lib.php:322 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "in %s mode and repeat headers after %s cells" -#: libraries/display_tbl.lib.php:345 +#: libraries/display_tbl.lib.php:344 msgid "This operation could take a long time. Proceed anyway?" msgstr "This operation could take a long time. Proceed anyway?" -#: libraries/display_tbl.lib.php:511 +#: libraries/display_tbl.lib.php:510 msgid "Sort by key" msgstr "Sort by key" -#: libraries/display_tbl.lib.php:554 libraries/export/codegen.php:38 +#: libraries/display_tbl.lib.php:553 libraries/export/codegen.php:38 #: libraries/export/csv.php:29 libraries/export/excel.php:34 #: libraries/export/htmlword.php:28 libraries/export/latex.php:32 #: libraries/export/mediawiki.php:21 libraries/export/ods.php:26 @@ -2311,100 +2291,100 @@ msgstr "Sort by key" #: libraries/export/xlsx.php:26 libraries/export/xml.php:23 #: libraries/export/yaml.php:27 libraries/import.lib.php:1114 #: libraries/import.lib.php:1136 libraries/import/csv.php:31 -#: libraries/import/docsql.php:33 libraries/import/ldi.php:46 +#: libraries/import/docsql.php:32 libraries/import/ldi.php:46 #: libraries/import/ods.php:30 libraries/import/sql.php:19 #: libraries/import/xls.php:25 libraries/import/xlsx.php:25 -#: libraries/import/xml.php:25 tbl_select.php:264 tbl_structure.php:752 +#: libraries/import/xml.php:25 tbl_select.php:263 tbl_structure.php:750 msgid "Options" msgstr "პარამეტრები" -#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:569 +#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:568 msgid "Partial Texts" msgstr "Partial Texts" -#: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:573 +#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:572 msgid "Full Texts" msgstr "Full Texts" -#: libraries/display_tbl.lib.php:586 +#: libraries/display_tbl.lib.php:585 msgid "Relational key" msgstr "Relational key" -#: libraries/display_tbl.lib.php:587 +#: libraries/display_tbl.lib.php:586 #, fuzzy #| msgid "Relational display field" msgid "Relational display column" msgstr "Relational display field" -#: libraries/display_tbl.lib.php:594 +#: libraries/display_tbl.lib.php:593 msgid "Show binary contents" msgstr "ორობითი შიგთავსის ჩვენება" -#: libraries/display_tbl.lib.php:596 +#: libraries/display_tbl.lib.php:595 msgid "Show BLOB contents" msgstr "Show BLOB contents" -#: libraries/display_tbl.lib.php:598 +#: libraries/display_tbl.lib.php:597 #, fuzzy msgid "Show binary contents as HEX" msgstr "ორობითი შიგთავსის ჩვენება" -#: libraries/display_tbl.lib.php:606 pmd_general.php:140 tbl_change.php:312 -#: tbl_change.php:318 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:307 +#: tbl_change.php:313 msgid "Hide" msgstr "დამალვა" -#: libraries/display_tbl.lib.php:606 libraries/relation.lib.php:122 -#: libraries/tbl_properties.inc.php:143 transformation_overview.php:46 +#: libraries/display_tbl.lib.php:605 libraries/relation.lib.php:117 +#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46 msgid "Browser transformation" msgstr "ინფორმაცია ბრაუზერის შესახებ" -#: libraries/display_tbl.lib.php:1125 libraries/display_tbl.lib.php:1129 -#: libraries/display_tbl.lib.php:1131 +#: libraries/display_tbl.lib.php:1124 libraries/display_tbl.lib.php:1128 +#: libraries/display_tbl.lib.php:1130 msgid "Execute bookmarked query" msgstr "ჩანიშნული მოთხოვნის გაშვება" -#: libraries/display_tbl.lib.php:1144 libraries/display_tbl.lib.php:1156 +#: libraries/display_tbl.lib.php:1143 libraries/display_tbl.lib.php:1155 msgid "The row has been deleted" msgstr "სტრიქონი წაიშალა" -#: libraries/display_tbl.lib.php:1183 libraries/display_tbl.lib.php:2055 +#: libraries/display_tbl.lib.php:1182 libraries/display_tbl.lib.php:2014 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "Kill" -#: libraries/display_tbl.lib.php:1933 +#: libraries/display_tbl.lib.php:1892 msgid "in query" msgstr "მოთხოვნაში" -#: libraries/display_tbl.lib.php:1951 +#: libraries/display_tbl.lib.php:1910 msgid "Showing rows" msgstr "Showing rows" -#: libraries/display_tbl.lib.php:1961 +#: libraries/display_tbl.lib.php:1920 msgid "total" msgstr "სულ" -#: libraries/display_tbl.lib.php:1969 sql.php:523 +#: libraries/display_tbl.lib.php:1928 sql.php:522 #, php-format msgid "Query took %01.4f sec" msgstr "მოთხოვნას დასჭირდა %01.4f წმ" -#: libraries/display_tbl.lib.php:2088 libraries/mult_submits.inc.php:112 -#: querywindow.php:115 querywindow.php:119 querywindow.php:122 -#: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:469 +#: libraries/display_tbl.lib.php:2047 libraries/mult_submits.inc.php:112 +#: querywindow.php:114 querywindow.php:118 querywindow.php:121 +#: tbl_structure.php:23 tbl_structure.php:148 tbl_structure.php:467 msgid "Change" msgstr "შეცვლა" -#: libraries/display_tbl.lib.php:2158 +#: libraries/display_tbl.lib.php:2117 msgid "Query results operations" msgstr "Query results operations" -#: libraries/display_tbl.lib.php:2186 +#: libraries/display_tbl.lib.php:2145 msgid "Print view (with full texts)" msgstr "ხედის ამობეჭდვა (სრული ტექსტებით)" -#: libraries/display_tbl.lib.php:2359 +#: libraries/display_tbl.lib.php:2318 msgid "Link not found" msgstr "ბმული ვერ მოიძებნა" @@ -2460,9 +2440,9 @@ msgstr "InnoDB-ის მდგომარეობა" msgid "Buffer Pool Usage" msgstr "Buffer Pool Usage" -#: libraries/engines/innodb.lib.php:168 server_databases.php:136 -#: server_databases.php:304 server_status.php:524 server_status.php:585 -#: server_status.php:606 tbl_printview.php:349 tbl_structure.php:695 +#: libraries/engines/innodb.lib.php:168 server_databases.php:134 +#: server_databases.php:302 server_status.php:524 server_status.php:585 +#: server_status.php:606 tbl_printview.php:348 tbl_structure.php:693 msgid "Total" msgstr "სულ" @@ -2598,6 +2578,88 @@ msgstr "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." +#: libraries/engines/pbms.lib.php:31 +#, fuzzy +#| msgid "Garbage threshold" +msgid "Garbage Threshold" +msgstr "Garbage threshold" + +#: libraries/engines/pbms.lib.php:32 +#, fuzzy +#| msgid "" +#| "The percentage of garbage in a data log file before it is compacted. This " +#| "is a value between 1 and 99. The default is 50." +msgid "The percentage of garbage in a repository file before it is compacted." +msgstr "" +"The percentage of garbage in a data log file before it is compacted. This is " +"a value between 1 and 99. The default is 50." + +#: libraries/engines/pbms.lib.php:36 libraries/replication_gui.lib.php:69 +#: server_synchronize.php:1161 +#, fuzzy +msgid "Port" +msgstr "დალაგება" + +#: libraries/engines/pbms.lib.php:37 +msgid "" +"The port for the PBMS stream-based communications. Setting this value to 0 " +"will disable HTTP communication with the daemon." +msgstr "" + +#: libraries/engines/pbms.lib.php:41 +msgid "Repository Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:42 +msgid "" +"The maximum size of a BLOB repository file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:46 +msgid "Temp Blob Timeout" +msgstr "" + +#: libraries/engines/pbms.lib.php:47 +msgid "" +"The timeout, in seconds, for temporary BLOBs. Uploaded BLOB data is removed " +"after this time, unless they are referenced by a record in the database." +msgstr "" + +#: libraries/engines/pbms.lib.php:51 +#, fuzzy +#| msgid "Log file threshold" +msgid "Temp Log Threshold" +msgstr "Log file threshold" + +#: libraries/engines/pbms.lib.php:52 +msgid "" +"The maximum size of a temporary BLOB log file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:56 +msgid "Max Keep Alive" +msgstr "" + +#: libraries/engines/pbms.lib.php:57 +msgid "" +"The timeout for inactive connection with the keep-alive flag set. After this " +"time the connection will be closed. The time-out is in milliseconds (1/1000)." +msgstr "" + +#: libraries/engines/pbms.lib.php:61 +msgid "Metadata Headers" +msgstr "" + +#: libraries/engines/pbms.lib.php:62 +msgid "" +"A \":\" delimited list of metadata headers to be used to initialize the " +"pbms_metadata_header table when a database is created." +msgstr "" + #: libraries/engines/pbxt.lib.php:22 msgid "Index cache size" msgstr "Index cache size" @@ -2747,7 +2809,7 @@ msgstr "" "number." #: libraries/export/codegen.php:36 setup/lib/messages.inc.php:85 -#: tbl_printview.php:374 tbl_structure.php:736 +#: tbl_printview.php:373 tbl_structure.php:734 msgid "Format" msgstr "ფორმატი" @@ -2818,9 +2880,9 @@ msgstr "Microsoft Word 2000" #: libraries/export/htmlword.php:23 libraries/export/latex.php:59 #: libraries/export/latex.php:205 libraries/export/odt.php:47 #: libraries/export/sql.php:105 libraries/export/sql.php:865 -#: libraries/export/texytext.php:27 server_databases.php:126 -#: server_privileges.php:576 server_replication.php:315 tbl_printview.php:315 -#: tbl_structure.php:664 +#: libraries/export/texytext.php:27 server_databases.php:124 +#: server_privileges.php:575 server_replication.php:314 tbl_printview.php:314 +#: tbl_structure.php:662 msgid "Data" msgstr "მონაცემები" @@ -2871,13 +2933,13 @@ msgid "Label key" msgstr "Label key" #: libraries/export/latex.php:46 libraries/export/odt.php:34 -#: libraries/export/sql.php:90 tbl_relation.php:398 +#: libraries/export/sql.php:90 tbl_relation.php:396 msgid "Relations" msgstr "Relations" #: libraries/export/latex.php:52 libraries/export/odt.php:40 #: libraries/export/odt.php:317 libraries/export/sql.php:94 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "MIME-ის ტიპი" @@ -2885,10 +2947,10 @@ msgstr "MIME-ის ტიპი" #: libraries/export/xml.php:101 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1529 server_privileges.php:2061 -#: server_processlist.php:54 server_synchronize.php:1158 +#: libraries/replication_gui.lib.php:331 server_privileges.php:730 +#: server_privileges.php:733 server_privileges.php:789 +#: server_privileges.php:1533 server_privileges.php:2065 +#: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "ჰოსტი" @@ -3082,8 +3144,8 @@ msgstr "Export defaults" msgid "Export contents" msgstr "Export defaults" -#: libraries/footer.inc.php:182 libraries/footer.inc.php:193 -#: libraries/footer.inc.php:196 +#: libraries/footer.inc.php:180 libraries/footer.inc.php:191 +#: libraries/footer.inc.php:194 msgid "Open new phpMyAdmin window" msgstr "phpMyAdmin-ის ახალი ფანჯრის გახსნა" @@ -3100,7 +3162,7 @@ msgstr "SQL-ის შედეგი" msgid "Generated by" msgstr "Generated by" -#: libraries/import.lib.php:151 sql.php:519 tbl_change.php:180 +#: libraries/import.lib.php:151 sql.php:518 tbl_change.php:175 #: 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)." @@ -3159,7 +3221,7 @@ msgstr "Ignore duplicate rows" msgid "Column names in first row" msgstr "" -#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:501 +#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:500 #: view_create.php:147 msgid "Column names" msgstr "სვეტების სახელები" @@ -3186,12 +3248,12 @@ msgstr "Invalid format of CSV input on line %d." msgid "Invalid column count in CSV input on line %d." msgstr "Invalid field count in CSV input on line %d." -#: libraries/import/docsql.php:28 +#: libraries/import/docsql.php:27 msgid "DocSQL" msgstr "DocSQL" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 -#: server_synchronize.php:427 server_synchronize.php:870 +#: libraries/import/docsql.php:30 libraries/tbl_properties.inc.php:616 +#: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "ცხრილის სახელი" @@ -3249,26 +3311,26 @@ msgstr "არაა" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:512 -#: tbl_structure.php:28 tbl_structure.php:152 tbl_structure.php:156 -#: tbl_structure.php:472 +#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:511 +#: tbl_structure.php:27 tbl_structure.php:151 tbl_structure.php:155 +#: tbl_structure.php:470 msgid "Primary" msgstr "პირველადი" #: libraries/mult_submits.inc.php:97 libraries/tbl_properties.inc.php:115 -#: libraries/tbl_properties.inc.php:524 tbl_printview.php:324 -#: tbl_structure.php:30 tbl_structure.php:153 tbl_structure.php:157 -#: tbl_structure.php:474 tbl_structure.php:672 +#: libraries/tbl_properties.inc.php:523 tbl_printview.php:323 +#: tbl_structure.php:29 tbl_structure.php:152 tbl_structure.php:156 +#: tbl_structure.php:472 tbl_structure.php:670 msgid "Index" msgstr "ინდექსი" -#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:530 -#: tbl_structure.php:34 tbl_structure.php:155 tbl_structure.php:159 -#: tbl_structure.php:477 +#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:529 +#: tbl_structure.php:33 tbl_structure.php:154 tbl_structure.php:158 +#: tbl_structure.php:475 msgid "Fulltext" msgstr "Fulltext" -#: libraries/mult_submits.inc.php:434 tbl_replace.php:330 +#: libraries/mult_submits.inc.php:433 tbl_replace.php:330 msgid "No change" msgstr "ცვლილების გარეშე" @@ -3276,190 +3338,190 @@ msgstr "ცვლილების გარეშე" msgid "Charset" msgstr "სიმბოლოთა ნაკრები" -#: libraries/mysql_charsets.lib.php:210 libraries/mysql_charsets.lib.php:411 -#: tbl_change.php:515 +#: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 +#: tbl_change.php:510 msgid "Binary" msgstr "ბინარული" -#: libraries/mysql_charsets.lib.php:222 +#: libraries/mysql_charsets.lib.php:214 msgid "Bulgarian" msgstr "ბულგარული" -#: libraries/mysql_charsets.lib.php:226 libraries/mysql_charsets.lib.php:351 +#: libraries/mysql_charsets.lib.php:218 libraries/mysql_charsets.lib.php:343 msgid "Simplified Chinese" msgstr "Simplified Chinese" -#: libraries/mysql_charsets.lib.php:228 libraries/mysql_charsets.lib.php:371 +#: libraries/mysql_charsets.lib.php:220 libraries/mysql_charsets.lib.php:363 msgid "Traditional Chinese" msgstr "ტრადიციული ჩინური" -#: libraries/mysql_charsets.lib.php:232 libraries/mysql_charsets.lib.php:418 +#: libraries/mysql_charsets.lib.php:224 libraries/mysql_charsets.lib.php:410 msgid "case-insensitive" msgstr "case-insensitive" -#: libraries/mysql_charsets.lib.php:235 libraries/mysql_charsets.lib.php:420 +#: libraries/mysql_charsets.lib.php:227 libraries/mysql_charsets.lib.php:412 msgid "case-sensitive" msgstr "case-sensitive" -#: libraries/mysql_charsets.lib.php:238 +#: libraries/mysql_charsets.lib.php:230 msgid "Croatian" msgstr "ხორვატული" -#: libraries/mysql_charsets.lib.php:241 +#: libraries/mysql_charsets.lib.php:233 msgid "Czech" msgstr "ჩეხური" -#: libraries/mysql_charsets.lib.php:244 +#: libraries/mysql_charsets.lib.php:236 msgid "Danish" msgstr "დანიური" -#: libraries/mysql_charsets.lib.php:247 +#: libraries/mysql_charsets.lib.php:239 msgid "English" msgstr "ინგლისური" -#: libraries/mysql_charsets.lib.php:250 +#: libraries/mysql_charsets.lib.php:242 msgid "Esperanto" msgstr "ესპერანტო" -#: libraries/mysql_charsets.lib.php:253 +#: libraries/mysql_charsets.lib.php:245 msgid "Estonian" msgstr "ესტონური" -#: libraries/mysql_charsets.lib.php:256 libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:248 libraries/mysql_charsets.lib.php:251 msgid "German" msgstr "გერმანული" -#: libraries/mysql_charsets.lib.php:256 +#: libraries/mysql_charsets.lib.php:248 msgid "dictionary" msgstr "ლექსიკონი" -#: libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:251 msgid "phone book" msgstr "სატელეფონო წიგნი" -#: libraries/mysql_charsets.lib.php:262 +#: libraries/mysql_charsets.lib.php:254 msgid "Hungarian" msgstr "უნგრული" -#: libraries/mysql_charsets.lib.php:265 +#: libraries/mysql_charsets.lib.php:257 msgid "Icelandic" msgstr "ისლანდიური" -#: libraries/mysql_charsets.lib.php:268 libraries/mysql_charsets.lib.php:358 +#: libraries/mysql_charsets.lib.php:260 libraries/mysql_charsets.lib.php:350 msgid "Japanese" msgstr "იაპონური" -#: libraries/mysql_charsets.lib.php:271 +#: libraries/mysql_charsets.lib.php:263 msgid "Latvian" msgstr "ლატვიური" -#: libraries/mysql_charsets.lib.php:274 +#: libraries/mysql_charsets.lib.php:266 msgid "Lithuanian" msgstr "ლიტვური" -#: libraries/mysql_charsets.lib.php:277 libraries/mysql_charsets.lib.php:380 +#: libraries/mysql_charsets.lib.php:269 libraries/mysql_charsets.lib.php:372 msgid "Korean" msgstr "კორეული" -#: libraries/mysql_charsets.lib.php:280 +#: libraries/mysql_charsets.lib.php:272 msgid "Persian" msgstr "სპარსული" -#: libraries/mysql_charsets.lib.php:283 +#: libraries/mysql_charsets.lib.php:275 msgid "Polish" msgstr "პოლონური" -#: libraries/mysql_charsets.lib.php:286 libraries/mysql_charsets.lib.php:334 +#: libraries/mysql_charsets.lib.php:278 libraries/mysql_charsets.lib.php:326 msgid "West European" msgstr "West European" -#: libraries/mysql_charsets.lib.php:289 +#: libraries/mysql_charsets.lib.php:281 msgid "Romanian" msgstr "რუმინული" -#: libraries/mysql_charsets.lib.php:292 +#: libraries/mysql_charsets.lib.php:284 msgid "Slovak" msgstr "სლოვაკური" -#: libraries/mysql_charsets.lib.php:295 +#: libraries/mysql_charsets.lib.php:287 msgid "Slovenian" msgstr "სლოვენური" -#: libraries/mysql_charsets.lib.php:298 +#: libraries/mysql_charsets.lib.php:290 msgid "Spanish" msgstr "ესპანური" -#: libraries/mysql_charsets.lib.php:301 +#: libraries/mysql_charsets.lib.php:293 msgid "Traditional Spanish" msgstr "ტრადიციული ესპანური" -#: libraries/mysql_charsets.lib.php:304 libraries/mysql_charsets.lib.php:401 +#: libraries/mysql_charsets.lib.php:296 libraries/mysql_charsets.lib.php:393 msgid "Swedish" msgstr "შვედური" -#: libraries/mysql_charsets.lib.php:307 libraries/mysql_charsets.lib.php:404 +#: libraries/mysql_charsets.lib.php:299 libraries/mysql_charsets.lib.php:396 msgid "Thai" msgstr "Thai" -#: libraries/mysql_charsets.lib.php:310 libraries/mysql_charsets.lib.php:398 +#: libraries/mysql_charsets.lib.php:302 libraries/mysql_charsets.lib.php:390 msgid "Turkish" msgstr "თურქული" -#: libraries/mysql_charsets.lib.php:313 libraries/mysql_charsets.lib.php:395 +#: libraries/mysql_charsets.lib.php:305 libraries/mysql_charsets.lib.php:387 msgid "Ukrainian" msgstr "უკრაინული" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 msgid "Unicode" msgstr "უნიკოდი" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 -#: libraries/mysql_charsets.lib.php:334 libraries/mysql_charsets.lib.php:341 -#: libraries/mysql_charsets.lib.php:363 libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 +#: libraries/mysql_charsets.lib.php:326 libraries/mysql_charsets.lib.php:333 +#: libraries/mysql_charsets.lib.php:355 libraries/mysql_charsets.lib.php:366 msgid "multilingual" msgstr "მრავალენოვანი" -#: libraries/mysql_charsets.lib.php:341 +#: libraries/mysql_charsets.lib.php:333 msgid "Central European" msgstr "Central European" -#: libraries/mysql_charsets.lib.php:346 +#: libraries/mysql_charsets.lib.php:338 msgid "Russian" msgstr "რუსული" -#: libraries/mysql_charsets.lib.php:363 +#: libraries/mysql_charsets.lib.php:355 msgid "Baltic" msgstr "ბალტიური" -#: libraries/mysql_charsets.lib.php:368 +#: libraries/mysql_charsets.lib.php:360 msgid "Armenian" msgstr "სომხური" -#: libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:366 msgid "Cyrillic" msgstr "კირილიცა" -#: libraries/mysql_charsets.lib.php:377 +#: libraries/mysql_charsets.lib.php:369 msgid "Arabic" msgstr "არაბული" -#: libraries/mysql_charsets.lib.php:383 +#: libraries/mysql_charsets.lib.php:375 msgid "Hebrew" msgstr "ებრაული" -#: libraries/mysql_charsets.lib.php:386 +#: libraries/mysql_charsets.lib.php:378 msgid "Georgian" msgstr "ქართული" -#: libraries/mysql_charsets.lib.php:389 +#: libraries/mysql_charsets.lib.php:381 msgid "Greek" msgstr "ბერძნული" -#: libraries/mysql_charsets.lib.php:392 +#: libraries/mysql_charsets.lib.php:384 msgid "Czech-Slovak" msgstr "ჩეხოსლოვალური" -#: libraries/mysql_charsets.lib.php:407 libraries/mysql_charsets.lib.php:414 +#: libraries/mysql_charsets.lib.php:399 libraries/mysql_charsets.lib.php:406 msgid "unknown" msgstr "უცნობი" @@ -3485,68 +3547,68 @@ msgstr "Query window" msgid "This format has no options" msgstr "ამ ფორმატს არ აქვს პარამეტრები" -#: libraries/relation.lib.php:82 +#: libraries/relation.lib.php:77 msgid "not OK" msgstr "not OK" -#: libraries/relation.lib.php:86 pmd_general.php:339 +#: libraries/relation.lib.php:81 pmd_general.php:339 msgid "OK" msgstr "OK" -#: libraries/relation.lib.php:87 +#: libraries/relation.lib.php:82 msgid "Enabled" msgstr "ჩართულია" -#: libraries/relation.lib.php:110 +#: libraries/relation.lib.php:105 msgid "Display Features" msgstr "Display Features" -#: libraries/relation.lib.php:116 +#: libraries/relation.lib.php:111 msgid "Creation of PDFs" msgstr "PDF-ების შექმნა" -#: libraries/relation.lib.php:120 +#: libraries/relation.lib.php:115 msgid "Displaying Column Comments" msgstr "Displaying Column Comments" -#: libraries/relation.lib.php:125 +#: libraries/relation.lib.php:120 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "Please see the documentation on how to update your column_comments table" -#: libraries/relation.lib.php:130 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 msgid "Bookmarked SQL query" msgstr "Bookmarked SQL query" -#: libraries/relation.lib.php:134 querywindow.php:99 querywindow.php:207 +#: libraries/relation.lib.php:129 querywindow.php:98 querywindow.php:205 msgid "SQL history" msgstr "SQL history" -#: libraries/relation.lib.php:146 +#: libraries/relation.lib.php:141 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:148 +#: libraries/relation.lib.php:143 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" -#: libraries/relation.lib.php:149 +#: libraries/relation.lib.php:144 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:150 +#: libraries/relation.lib.php:145 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:151 +#: libraries/relation.lib.php:146 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1158 +#: libraries/relation.lib.php:1153 msgid "no description" msgstr "no description" @@ -3555,7 +3617,7 @@ msgstr "no description" msgid "Slave configuration" msgstr "სერვერის კონფიგურაცია" -#: libraries/replication_gui.lib.php:53 server_replication.php:346 +#: libraries/replication_gui.lib.php:53 server_replication.php:345 msgid "Change or reconfigure master server" msgstr "" @@ -3567,17 +3629,12 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:711 -#: server_privileges.php:714 server_privileges.php:721 -#: server_synchronize.php:1170 +#: libraries/replication_gui.lib.php:261 server_privileges.php:710 +#: server_privileges.php:713 server_privileges.php:720 +#: server_synchronize.php:1169 msgid "User name" msgstr "მომხმარებლის სახელი" -#: libraries/replication_gui.lib.php:69 server_synchronize.php:1162 -#, fuzzy -msgid "Port" -msgstr "დალაგება" - #: libraries/replication_gui.lib.php:105 #, fuzzy msgid "Master status" @@ -3594,8 +3651,8 @@ msgid "Variable" msgstr "ცვლადი" #: libraries/replication_gui.lib.php:117 server_status.php:737 -#: tbl_change.php:322 tbl_printview.php:368 tbl_select.php:137 -#: tbl_structure.php:728 +#: tbl_change.php:317 tbl_printview.php:367 tbl_select.php:136 +#: tbl_structure.php:726 msgid "Value" msgstr "მნიშვნელობა" @@ -3609,38 +3666,38 @@ msgid "" "this list." msgstr "" -#: libraries/replication_gui.lib.php:242 server_replication.php:193 +#: libraries/replication_gui.lib.php:242 server_replication.php:192 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:256 server_privileges.php:716 +#: libraries/replication_gui.lib.php:256 server_privileges.php:715 msgid "Any user" msgstr "ნებისმიერი მომხმარებელი" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1920 server_privileges.php:1950 +#: libraries/replication_gui.lib.php:348 server_privileges.php:716 +#: server_privileges.php:783 server_privileges.php:807 +#: server_privileges.php:1924 server_privileges.php:1954 msgid "Use text field" msgstr "გამოიყენე ტექსტური ველი" -#: libraries/replication_gui.lib.php:304 server_privileges.php:764 +#: libraries/replication_gui.lib.php:304 server_privileges.php:763 msgid "Any host" msgstr "ნებისმიერი ჰოსტი" -#: libraries/replication_gui.lib.php:308 server_privileges.php:768 +#: libraries/replication_gui.lib.php:308 server_privileges.php:767 msgid "Local" msgstr "ლოკალური" -#: libraries/replication_gui.lib.php:314 server_privileges.php:773 +#: libraries/replication_gui.lib.php:314 server_privileges.php:772 msgid "This Host" msgstr "ეს ჰოსტი" -#: libraries/replication_gui.lib.php:320 server_privileges.php:779 +#: libraries/replication_gui.lib.php:320 server_privileges.php:778 msgid "Use Host Table" msgstr "Use Host Table" -#: libraries/replication_gui.lib.php:333 server_privileges.php:792 +#: libraries/replication_gui.lib.php:333 server_privileges.php:791 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3666,8 +3723,8 @@ msgstr "უცნობი ენა: %1$s." msgid "Servers" msgstr "სერვერები" -#: libraries/server_links.inc.php:52 server_engines.php:111 -#: server_engines.php:115 server_status.php:414 test/theme.php:104 +#: libraries/server_links.inc.php:52 server_engines.php:125 +#: server_engines.php:129 server_status.php:414 test/theme.php:104 msgid "Variables" msgstr "ცვლადები" @@ -3688,12 +3745,12 @@ msgstr "ბინარული ჟურნალი" msgid "Processes" msgstr "პროცესები" -#: libraries/server_links.inc.php:91 server_synchronize.php:1091 -#: server_synchronize.php:1099 +#: libraries/server_links.inc.php:91 server_synchronize.php:1090 +#: server_synchronize.php:1098 msgid "Synchronize" msgstr "" -#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1109 +#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1108 #, fuzzy msgid "Source database" msgstr "მონაცემთა ბაზაში ძებნა" @@ -3713,7 +3770,7 @@ msgstr "ახალი სერვერი" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1111 +#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1110 #, fuzzy msgid "Target database" msgstr "მონაცემთა ბაზაში ძებნა" @@ -3734,11 +3791,11 @@ msgstr "Run SQL query/queries on database %s" msgid "Columns" msgstr "სვეტების სახელები" -#: libraries/sql_query_form.lib.php:342 sql.php:664 sql.php:665 sql.php:682 +#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "Bookmark this SQL query" -#: libraries/sql_query_form.lib.php:349 sql.php:676 +#: libraries/sql_query_form.lib.php:349 sql.php:669 msgid "Let every user access this bookmark" msgstr "Let every user access this bookmark" @@ -3833,12 +3890,12 @@ 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/tbl_links.inc.php:106 libraries/tbl_links.inc.php:139 -#: libraries/tbl_links.inc.php:140 +#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 +#: libraries/tbl_links.inc.php:139 msgid "Table seems to be empty!" msgstr "როგორც ჩანს ცხრილი ცარიელია!" -#: libraries/tbl_links.inc.php:148 +#: libraries/tbl_links.inc.php:147 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" @@ -3873,12 +3930,12 @@ msgstr "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" -#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1263 -#: pdf_schema.php:1284 tbl_printview.php:142 tbl_structure.php:179 +#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1262 +#: pdf_schema.php:1283 tbl_printview.php:141 tbl_structure.php:178 msgid "Attributes" msgstr "ატრიბუტები" -#: libraries/tbl_properties.inc.php:136 +#: libraries/tbl_properties.inc.php:135 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -3887,11 +3944,11 @@ msgstr "" "For a list of available transformation options and their MIME type " "transformations, click on %stransformation descriptions%s" -#: libraries/tbl_properties.inc.php:144 +#: libraries/tbl_properties.inc.php:143 msgid "Transformation options" msgstr "გარდაქმნის პარამეტრები" -#: libraries/tbl_properties.inc.php:145 +#: libraries/tbl_properties.inc.php:144 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
                            If you ever need to put a backslash (\"\\\") or a single " @@ -3903,18 +3960,18 @@ msgstr "" "quote (\"'\") amongst those values, precede it with a backslash (for example " "'\\\\xyz' or 'a\\'b')." -#: libraries/tbl_properties.inc.php:392 +#: libraries/tbl_properties.inc.php:391 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "არაა" -#: libraries/tbl_properties.inc.php:393 +#: libraries/tbl_properties.inc.php:392 msgid "As defined:" msgstr "As defined:" -#: libraries/tbl_properties.inc.php:579 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:578 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
                            Please ask the " @@ -3923,29 +3980,29 @@ msgstr "" "No description is available for this transformation.
                            Please ask the " "author what %s does." -#: libraries/tbl_properties.inc.php:725 server_engines.php:57 -#: tbl_operations.php:354 +#: libraries/tbl_properties.inc.php:724 server_engines.php:56 +#: tbl_operations.php:352 msgid "Storage Engine" msgstr "Storage Engine" -#: libraries/tbl_properties.inc.php:754 +#: libraries/tbl_properties.inc.php:753 msgid "PARTITION definition" msgstr "PARTITION definition" -#: libraries/tbl_properties.inc.php:775 pdf_pages.php:502 +#: libraries/tbl_properties.inc.php:774 pdf_pages.php:501 #: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214 -#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1124 tbl_indexes.php:247 -#: tbl_relation.php:565 +#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1022 tbl_indexes.php:246 +#: tbl_relation.php:563 msgid "Save" msgstr "შენახვა" -#: libraries/tbl_properties.inc.php:779 tbl_structure.php:541 +#: libraries/tbl_properties.inc.php:778 tbl_structure.php:539 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "%s ველის დამატება" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:535 +#: libraries/tbl_properties.inc.php:782 tbl_structure.php:533 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -4151,8 +4208,8 @@ msgstr "ინტერფეისი" msgid "Custom color" msgstr "Custom color" -#: main.php:162 pdf_pages.php:362 setup/lib/FormDisplay.tpl.php:216 -#: tbl_change.php:1173 +#: main.php:162 pdf_pages.php:361 setup/lib/FormDisplay.tpl.php:216 +#: tbl_change.php:1071 msgid "Reset" msgstr "დაბრუნება" @@ -4160,8 +4217,8 @@ msgstr "დაბრუნება" msgid "Protocol version" msgstr "ოქმის ვერსია" -#: main.php:188 server_privileges.php:1381 server_privileges.php:1528 -#: server_privileges.php:1642 server_privileges.php:2060 +#: main.php:188 server_privileges.php:1385 server_privileges.php:1532 +#: server_privileges.php:1646 server_privileges.php:2064 #: server_processlist.php:53 msgid "User" msgstr "მომხმარებელი" @@ -4251,14 +4308,23 @@ msgid "" "has been configured." msgstr "" -#: main.php:330 +#: main.php:314 +#, php-format +msgid "" +"The additional features for working with linked tables have been " +"deactivated. To find out why click %shere%s." +msgstr "" +"The additional features for working with linked tables have been " +"deactivated. To find out why click %shere%s." + +#: main.php:329 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:345 +#: main.php:344 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -4267,7 +4333,7 @@ msgstr "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." -#: main.php:357 +#: main.php:356 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -4281,69 +4347,69 @@ msgstr "" msgid "Reload navigation frame" msgstr "Customize navigation frame" -#: navigation.php:204 server_databases.php:370 server_synchronize.php:1190 +#: navigation.php:203 server_databases.php:368 server_synchronize.php:1189 msgid "No databases" msgstr "მონაცემთა ბაზები არაა" -#: navigation.php:298 +#: navigation.php:297 #, fuzzy msgid "Filter" msgstr "ფაილები" -#: navigation.php:299 setup/frames/index.inc.php:218 +#: navigation.php:298 setup/frames/index.inc.php:218 #: setup/lib/messages.inc.php:41 msgid "Clear" msgstr "გაწმენდა" -#: navigation.php:330 navigation.php:331 +#: navigation.php:329 navigation.php:330 #, fuzzy #| msgid "Create table" msgctxt "short form" msgid "Create table" msgstr "ცხრილის შექმნა" -#: navigation.php:333 navigation.php:495 +#: navigation.php:332 navigation.php:494 msgid "Please select a database" msgstr "გთხოვთ აირჩიოთ მონაცემთა ბაზა" -#: pdf_pages.php:40 pdf_pages.php:46 pdf_pages.php:52 pdf_pages.php:57 +#: pdf_pages.php:39 pdf_pages.php:45 pdf_pages.php:51 pdf_pages.php:56 #, php-format msgid "%s table not found or not set in %s" msgstr "%s table not found or not set in %s" -#: pdf_pages.php:265 +#: pdf_pages.php:264 msgid "Please choose a page to edit" msgstr "გთხოვთ აირჩიოთ დასარედაქტირებელი გვერდი" -#: pdf_pages.php:303 pmd_pdf.php:113 +#: pdf_pages.php:302 pmd_pdf.php:111 msgid "Create a page" msgstr "ახალი გვერდის შექმნა" -#: pdf_pages.php:309 +#: pdf_pages.php:308 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "გვერდის ნომერი:" -#: pdf_pages.php:313 +#: pdf_pages.php:312 #, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "ავტომატური განლაგება" -#: pdf_pages.php:315 +#: pdf_pages.php:314 msgid "Internal relations" msgstr "Internal relations" -#: pdf_pages.php:338 +#: pdf_pages.php:337 msgid "Select Tables" msgstr "ცხრილების არჩევა" -#: pdf_pages.php:361 +#: pdf_pages.php:360 msgid "Toggle scratchboard" msgstr "Toggle scratchboard" -#: pdf_pages.php:524 +#: pdf_pages.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -4351,37 +4417,37 @@ msgstr "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" -#: pdf_schema.php:635 +#: pdf_schema.php:634 #, fuzzy, php-format #| msgid "The \"%s\" table doesn't exist!" msgid "The %s table doesn't exist!" msgstr "ცხრილი \"%s\" არ არსებობს!" -#: pdf_schema.php:671 +#: pdf_schema.php:670 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Please configure the coordinates for table %s" -#: pdf_schema.php:994 +#: pdf_schema.php:993 #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" msgstr "Schema of the \"%s\" database - Page %s" -#: pdf_schema.php:1012 +#: pdf_schema.php:1011 msgid "No tables" msgstr "ცხრილები არაა" -#: pdf_schema.php:1031 pdf_schema.php:1140 +#: pdf_schema.php:1030 pdf_schema.php:1139 msgid "Relational schema" msgstr "Relational schema" -#: pdf_schema.php:1115 +#: pdf_schema.php:1114 msgid "Table of contents" msgstr "Table of contents" -#: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:145 -#: tbl_structure.php:182 tbl_tracking.php:277 +#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 +#: tbl_structure.php:181 tbl_tracking.php:272 msgid "Extra" msgstr "ექსტრა" @@ -4393,7 +4459,7 @@ msgstr "Show/Hide left menu" msgid "Save position" msgstr "მდებარეობის შენახვა" -#: pmd_general.php:70 server_synchronize.php:428 server_synchronize.php:871 +#: pmd_general.php:70 server_synchronize.php:427 server_synchronize.php:870 msgid "Create table" msgstr "ცხრილის შექმნა" @@ -4472,32 +4538,32 @@ msgstr "" "field, click the \"Choose field to display\" icon, then click on the " "appropriate field name." -#: pmd_pdf.php:62 +#: pmd_pdf.php:60 #, fuzzy msgid "Page has been created" msgstr "Table %1$s has been created." -#: pmd_pdf.php:64 +#: pmd_pdf.php:62 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:84 +#: pmd_pdf.php:82 msgid "Export/Import to scale" msgstr "Export/Import to scale" -#: pmd_pdf.php:88 +#: pmd_pdf.php:86 msgid "recommended" msgstr "რეკომენდებული" -#: pmd_pdf.php:93 +#: pmd_pdf.php:91 msgid "to/from page" msgstr "to/from page" -#: querywindow.php:94 +#: querywindow.php:93 msgid "Import files" msgstr "ფაილების შემოტანა" -#: querywindow.php:105 +#: querywindow.php:104 msgid "All" msgstr "ყველა" @@ -4543,69 +4609,69 @@ msgstr "ინფორმაცია" msgid "Character Sets and Collations" msgstr "სიმბოლოთა ნაკრებები და კოლაციები" -#: server_databases.php:51 +#: server_databases.php:49 msgid "No databases selected." msgstr "No databases selected." -#: server_databases.php:62 +#: server_databases.php:60 #, php-format msgid "%s databases have been dropped successfully." msgstr "%s databases have been dropped successfully." -#: server_databases.php:87 +#: server_databases.php:85 msgid "Databases statistics" msgstr "მონაცემთა ბაზების სტატისტიკა" -#: server_databases.php:116 server_status.php:370 +#: server_databases.php:114 server_status.php:370 #: setup/lib/messages.inc.php:114 msgid "Tables" msgstr "ცხრილები" -#: server_databases.php:194 server_replication.php:180 -#: server_replication.php:208 +#: server_databases.php:192 server_replication.php:179 +#: server_replication.php:207 #, fuzzy msgid "Master replication" msgstr "სერვერის კონფიგურაცია" -#: server_databases.php:196 server_replication.php:247 +#: server_databases.php:194 server_replication.php:246 #, fuzzy msgid "Slave replication" msgstr "სერვერის კონფიგურაცია" -#: server_databases.php:229 +#: server_databases.php:227 #, fuzzy msgid "Jump to database" msgstr "მონაცემთა ბაზები არაა" -#: server_databases.php:266 +#: server_databases.php:264 #, fuzzy msgid "Not replicated" msgstr "სერვერის კონფიგურაცია" -#: server_databases.php:272 +#: server_databases.php:270 #, fuzzy #| msgid "Replication" msgid "Replicated" msgstr "რეპლიკაცია" -#: server_databases.php:288 +#: server_databases.php:286 #, php-format msgid "Check privileges for database "%s"." msgstr "Check privileges for database "%s"." -#: server_databases.php:292 server_databases.php:293 +#: server_databases.php:290 server_databases.php:291 msgid "Check Privileges" msgstr "პრივილეგიების შემოწმება" -#: server_databases.php:357 server_databases.php:358 +#: server_databases.php:355 server_databases.php:356 msgid "Enable Statistics" msgstr "სტატისტიკის ჩართვა" -#: server_databases.php:361 server_databases.php:362 +#: server_databases.php:359 server_databases.php:360 msgid "Disable Statistics" msgstr "სტატისტიკის გათიშვა" -#: server_databases.php:365 +#: server_databases.php:363 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -4613,120 +4679,120 @@ msgstr "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." -#: server_engines.php:48 +#: server_engines.php:47 msgid "Storage Engines" msgstr "Storage Engines" -#: server_export.php:20 +#: server_export.php:18 msgid "View dump (schema) of databases" msgstr "View dump (schema) of databases" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:23 server_privileges.php:265 msgid "Includes all privileges except GRANT." msgstr "შეიცავს ყველა პრივილეგიას GRANT-ის გამოკლებით." -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:24 server_privileges.php:191 +#: server_privileges.php:514 msgid "Allows altering the structure of existing tables." msgstr "Allows altering the structure of existing tables." -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:25 server_privileges.php:207 +#: server_privileges.php:520 msgid "Allows altering and dropping stored routines." msgstr "Allows altering and dropping stored routines." -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:26 server_privileges.php:183 +#: server_privileges.php:513 msgid "Allows creating new databases and tables." msgstr "Allows creating new databases and tables." -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:27 server_privileges.php:206 +#: server_privileges.php:519 msgid "Allows creating stored routines." msgstr "Allows creating stored routines." -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:513 msgid "Allows creating new tables." msgstr "Allows creating new tables." -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:29 server_privileges.php:194 +#: server_privileges.php:517 msgid "Allows creating temporary tables." msgstr "Allows creating temporary tables." -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:30 server_privileges.php:208 +#: server_privileges.php:553 msgid "Allows creating, dropping and renaming user accounts." msgstr "Allows creating, dropping and renaming user accounts." -#: server_privileges.php:32 server_privileges.php:199 -#: server_privileges.php:203 server_privileges.php:526 -#: server_privileges.php:530 +#: server_privileges.php:31 server_privileges.php:198 +#: server_privileges.php:202 server_privileges.php:525 +#: server_privileges.php:529 msgid "Allows creating new views." msgstr "Allows creating new views." -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:32 server_privileges.php:182 +#: server_privileges.php:505 msgid "Allows deleting data." msgstr "Allows deleting data." -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:33 server_privileges.php:184 +#: server_privileges.php:516 msgid "Allows dropping databases and tables." msgstr "Allows dropping databases and tables." -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:34 server_privileges.php:516 msgid "Allows dropping tables." msgstr "Allows dropping tables." -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:35 server_privileges.php:199 +#: server_privileges.php:533 msgid "Allows to set up events for the event scheduler" msgstr "Allows to set up events for the event scheduler" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:36 server_privileges.php:209 +#: server_privileges.php:521 msgid "Allows executing stored routines." msgstr "Allows executing stored routines." -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:37 server_privileges.php:188 +#: server_privileges.php:508 msgid "Allows importing data from and exporting data into files." msgstr "Allows importing data from and exporting data into files." -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:38 server_privileges.php:539 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Allows adding users and privileges without reloading the privilege tables." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:515 msgid "Allows creating and dropping indexes." msgstr "Allows creating and dropping indexes." -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:40 server_privileges.php:180 +#: server_privileges.php:441 server_privileges.php:503 msgid "Allows inserting and replacing data." msgstr "Allows inserting and replacing data." -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:41 server_privileges.php:195 +#: server_privileges.php:548 msgid "Allows locking tables for the current thread." msgstr "Allows locking tables for the current thread." -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:42 server_privileges.php:645 +#: server_privileges.php:647 msgid "Limits the number of new connections the user may open per hour." msgstr "Limits the number of new connections the user may open per hour." -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:43 server_privileges.php:633 +#: server_privileges.php:635 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Limits the number of queries the user may send to the server per hour." -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:44 server_privileges.php:639 +#: server_privileges.php:641 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -4734,58 +4800,58 @@ msgstr "" "Limits the number of commands that change any table or database the user may " "execute per hour." -#: server_privileges.php:46 server_privileges.php:652 -#: server_privileges.php:654 +#: server_privileges.php:45 server_privileges.php:651 +#: server_privileges.php:653 msgid "Limits the number of simultaneous connections the user may have." msgstr "Limits the number of simultaneous connections the user may have." -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:46 server_privileges.php:187 +#: server_privileges.php:543 msgid "Allows viewing processes of all users" msgstr "Allows viewing processes of all users" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:47 server_privileges.php:189 +#: server_privileges.php:447 server_privileges.php:549 msgid "Has no effect in this MySQL version." msgstr "Has no effect in this MySQL version." -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:48 server_privileges.php:185 +#: server_privileges.php:544 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Allows reloading server settings and flushing the server's caches." -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:197 +#: server_privileges.php:551 msgid "Allows the user to ask where the slaves / masters are." msgstr "Allows the user to ask where the slaves / masters are." -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:50 server_privileges.php:196 +#: server_privileges.php:552 msgid "Needed for the replication slaves." msgstr "Needed for the replication slaves." -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:51 server_privileges.php:179 +#: server_privileges.php:438 server_privileges.php:502 msgid "Allows reading data." msgstr "Allows reading data." -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:52 server_privileges.php:192 +#: server_privileges.php:546 msgid "Gives access to the complete list of databases." msgstr "Gives access to the complete list of databases." -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:53 server_privileges.php:203 +#: server_privileges.php:205 server_privileges.php:518 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Allows performing SHOW CREATE VIEW queries." -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:54 server_privileges.php:186 +#: server_privileges.php:545 msgid "Allows shutting down the server." msgstr "Allows shutting down the server." -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:55 server_privileges.php:193 +#: server_privileges.php:542 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -4795,157 +4861,157 @@ msgstr "" "required for most administrative operations like setting global variables or " "killing threads of other users." -#: server_privileges.php:57 server_privileges.php:201 -#: server_privileges.php:535 +#: server_privileges.php:56 server_privileges.php:200 +#: server_privileges.php:534 msgid "Allows creating and dropping triggers" msgstr "Allows creating and dropping triggers" -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:57 server_privileges.php:181 +#: server_privileges.php:444 server_privileges.php:504 msgid "Allows changing data." msgstr "Allows changing data." -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:58 server_privileges.php:259 msgid "No privileges." msgstr "პრივილეგიები არაა." -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:301 server_privileges.php:302 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "არაა" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1710 server_privileges.php:1716 +#: server_privileges.php:430 server_privileges.php:565 +#: server_privileges.php:1714 server_privileges.php:1720 msgid "Table-specific privileges" msgstr "Table-specific privileges" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1532 +#: server_privileges.php:431 server_privileges.php:573 +#: server_privileges.php:1536 msgid " Note: MySQL privilege names are expressed in English " msgstr " Note: MySQL privilege names are expressed in English " -#: server_privileges.php:563 server_privileges.php:1531 +#: server_privileges.php:562 server_privileges.php:1535 msgid "Global privileges" msgstr "გლობალური პრივილეგიები" -#: server_privileges.php:565 server_privileges.php:1710 +#: server_privileges.php:564 server_privileges.php:1714 msgid "Database-specific privileges" msgstr "Database-specific privileges" -#: server_privileges.php:610 +#: server_privileges.php:609 msgid "Administration" msgstr "ადმინისტრირება" -#: server_privileges.php:630 +#: server_privileges.php:629 msgid "Resource limits" msgstr "Resource limits" -#: server_privileges.php:631 +#: server_privileges.php:630 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Note: Setting these options to 0 (zero) removes the limit." -#: server_privileges.php:708 +#: server_privileges.php:707 msgid "Login Information" msgstr "Login Information" -#: server_privileges.php:802 +#: server_privileges.php:801 msgid "Do not change the password" msgstr "არ შეცვალო პაროლი" -#: server_privileges.php:835 server_privileges.php:2197 +#: server_privileges.php:834 server_privileges.php:2201 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "მომხმარებლ(ებ)ის პოვნა ვერ მოხერხდა." -#: server_privileges.php:879 +#: server_privileges.php:878 #, php-format msgid "The user %s already exists!" msgstr "მომხმარებელი %s უკვე არსებობს!" -#: server_privileges.php:962 +#: server_privileges.php:961 msgid "You have added a new user." msgstr "თქვენ დაამატეთ ახალი მომხმარებელი." -#: server_privileges.php:1183 +#: server_privileges.php:1184 #, php-format msgid "You have updated the privileges for %s." msgstr "You have updated the privileges for %s." -#: server_privileges.php:1207 +#: server_privileges.php:1208 #, php-format msgid "You have revoked the privileges for %s" msgstr "You have revoked the privileges for %s" -#: server_privileges.php:1243 +#: server_privileges.php:1244 #, php-format msgid "The password for %s was changed successfully." msgstr "The password for %s was changed successfully." -#: server_privileges.php:1263 +#: server_privileges.php:1264 #, php-format msgid "Deleting %s" msgstr "%s-ის წაშლა" -#: server_privileges.php:1274 +#: server_privileges.php:1275 msgid "No users selected for deleting!" msgstr "No users selected for deleting!" -#: server_privileges.php:1277 +#: server_privileges.php:1278 msgid "Reloading the privileges" msgstr "Reloading the privileges" -#: server_privileges.php:1292 +#: server_privileges.php:1296 msgid "The selected users have been deleted successfully." msgstr "The selected users have been deleted successfully." -#: server_privileges.php:1327 +#: server_privileges.php:1331 msgid "The privileges were reloaded successfully." msgstr "The privileges were reloaded successfully." -#: server_privileges.php:1355 server_privileges.php:1641 +#: server_privileges.php:1359 server_privileges.php:1645 msgid "Edit Privileges" msgstr "პრივილეგიების რედაქტირება" -#: server_privileges.php:1364 +#: server_privileges.php:1368 msgid "Revoke" msgstr "Revoke" -#: server_privileges.php:1396 +#: server_privileges.php:1400 msgid "User overview" msgstr "მომხმარებლის მიმოხილვა" -#: server_privileges.php:1533 server_privileges.php:1715 -#: server_privileges.php:2064 +#: server_privileges.php:1537 server_privileges.php:1719 +#: server_privileges.php:2068 msgid "Grant" msgstr "Grant" -#: server_privileges.php:1552 server_privileges.php:2154 +#: server_privileges.php:1556 server_privileges.php:2158 msgid "Any" msgstr "ნებისმიერი" -#: server_privileges.php:1601 server_privileges.php:1625 -#: server_privileges.php:2019 server_privileges.php:2208 +#: server_privileges.php:1605 server_privileges.php:1629 +#: server_privileges.php:2023 server_privileges.php:2212 msgid "Add a new User" msgstr "ახალი მომხმარებლის დამატება" -#: server_privileges.php:1606 +#: server_privileges.php:1610 msgid "Remove selected users" msgstr "Remove selected users" -#: server_privileges.php:1609 +#: server_privileges.php:1613 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Revoke all active privileges from the users and delete them afterwards." -#: server_privileges.php:1610 server_privileges.php:1611 -#: server_privileges.php:1612 +#: server_privileges.php:1614 server_privileges.php:1615 +#: server_privileges.php:1616 msgid "Drop the databases that have the same names as the users." msgstr "Drop the databases that have the same names as the users." -#: server_privileges.php:1628 +#: server_privileges.php:1632 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4958,49 +5024,49 @@ msgstr "" "server uses, if they have been changed manually. In this case, you should " "%sreload the privileges%s before you continue." -#: server_privileges.php:1676 +#: server_privileges.php:1680 msgid "The selected user was not found in the privilege table." msgstr "The selected user was not found in the privilege table." -#: server_privileges.php:1716 +#: server_privileges.php:1720 msgid "Column-specific privileges" msgstr "Column-specific privileges" -#: server_privileges.php:1917 +#: server_privileges.php:1921 msgid "Add privileges on the following database" msgstr "პრივილეგიების დამატება შემდეგი მონაცემთა ბაზისათვის" -#: server_privileges.php:1935 +#: server_privileges.php:1939 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "Wildcards % and _ should be escaped with a \\ to use them literally" -#: server_privileges.php:1938 +#: server_privileges.php:1942 msgid "Add privileges on the following table" msgstr "პრივილეგიების დამატება შემდეგი ცხრილისათვის" -#: server_privileges.php:1995 +#: server_privileges.php:1999 msgid "Change Login Information / Copy User" msgstr "Change Login Information / Copy User" -#: server_privileges.php:1998 +#: server_privileges.php:2002 msgid "Create a new user with the same privileges and ..." msgstr "იგივე პრივილეგიების მქონე ახალი მომხმარებლის შექმნა და ..." -#: server_privileges.php:2000 +#: server_privileges.php:2004 msgid "... keep the old one." msgstr "... ძველის შენახვა." -#: server_privileges.php:2001 +#: server_privileges.php:2005 msgid " ... delete the old one from the user tables." msgstr " ... ძველი მომხმარებლის მომხმარებლების ცხრილიდან წაშლა." -#: server_privileges.php:2002 +#: server_privileges.php:2006 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "" " ... revoke all active privileges from the old one and delete it afterwards." -#: server_privileges.php:2003 +#: server_privileges.php:2007 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -5008,45 +5074,45 @@ msgstr "" " ... ძველი მომხმარებლის მომხმარებლების სიიდან წაშლა და შემდეგ პრივილეგიების " "გადატვირთვა." -#: server_privileges.php:2025 +#: server_privileges.php:2029 msgid "Database for user" msgstr "მონაცემთა ბაზა მომხმარებლისთვის" -#: server_privileges.php:2029 +#: server_privileges.php:2033 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "არაა" -#: server_privileges.php:2030 +#: server_privileges.php:2034 msgid "Create database with same name and grant all privileges" msgstr "" "იგივე სახელის მქონე მონაცემთა ბაზის შექმნა და ყველა პრივილეგიის მინიჭება" -#: server_privileges.php:2031 +#: server_privileges.php:2035 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Grant all privileges on wildcard name (username\\_%)" -#: server_privileges.php:2034 +#: server_privileges.php:2038 #, php-format msgid "Grant all privileges on database "%s"" msgstr "ყველა პრივილეგიის მინიჭება მონაცემთა ბაზისთვის "%s"" -#: server_privileges.php:2057 +#: server_privileges.php:2061 #, php-format msgid "Users having access to "%s"" msgstr "Users having access to "%s"" -#: server_privileges.php:2165 +#: server_privileges.php:2169 msgid "global" msgstr "გლობალულრი" -#: server_privileges.php:2167 +#: server_privileges.php:2171 msgid "database-specific" msgstr "database-specific" -#: server_privileges.php:2169 +#: server_privileges.php:2173 msgid "wildcard" msgstr "wildcard" @@ -5066,55 +5132,55 @@ msgstr "" msgid "ID" msgstr "ID" -#: server_replication.php:50 +#: server_replication.php:49 msgid "Unknown error" msgstr "" -#: server_replication.php:57 +#: server_replication.php:56 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:64 +#: server_replication.php:63 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:70 +#: server_replication.php:69 msgid "Unable to change master" msgstr "" -#: server_replication.php:73 +#: server_replication.php:72 #, php-format msgid "Master server changed succesfully to %s" msgstr "" -#: server_replication.php:181 +#: server_replication.php:180 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:183 server_status.php:391 +#: server_replication.php:182 server_status.php:391 #, fuzzy msgid "Show master status" msgstr "Show slave status" -#: server_replication.php:186 +#: server_replication.php:185 msgid "Show connected slaves" msgstr "" -#: server_replication.php:209 +#: server_replication.php:208 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:216 +#: server_replication.php:215 #, fuzzy msgid "Master configuration" msgstr "სერვერის კონფიგურაცია" -#: server_replication.php:217 +#: server_replication.php:216 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -5123,112 +5189,112 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:220 +#: server_replication.php:219 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:221 +#: server_replication.php:220 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:224 +#: server_replication.php:223 #, fuzzy msgid "Please select databases:" msgstr "გთხოვთ აირჩიოთ მონაცემთა ბაზა" -#: server_replication.php:227 +#: server_replication.php:226 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: server_replication.php:229 +#: server_replication.php:228 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: server_replication.php:292 +#: server_replication.php:291 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:295 +#: server_replication.php:294 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:304 +#: server_replication.php:303 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:307 +#: server_replication.php:306 msgid "See slave status table" msgstr "" -#: server_replication.php:310 +#: server_replication.php:309 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:321 +#: server_replication.php:320 #, fuzzy msgid "Control slave:" msgstr "Control user" -#: server_replication.php:324 +#: server_replication.php:323 #, fuzzy msgid "Full start" msgstr "Fulltext" -#: server_replication.php:324 +#: server_replication.php:323 #, fuzzy msgid "Full stop" msgstr "Fulltext" -#: server_replication.php:325 +#: server_replication.php:324 msgid "Reset slave" msgstr "" -#: server_replication.php:326 +#: server_replication.php:325 #, php-format msgid "SQL Thread %s only" msgstr "" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 #, fuzzy msgid "Start" msgstr "Startup" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 msgid "Stop" msgstr "" -#: server_replication.php:327 +#: server_replication.php:326 #, php-format msgid "IO Thread %s only" msgstr "" -#: server_replication.php:331 +#: server_replication.php:330 msgid "Error management:" msgstr "" -#: server_replication.php:333 +#: server_replication.php:332 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:335 +#: server_replication.php:334 msgid "Skip current error" msgstr "" -#: server_replication.php:336 +#: server_replication.php:335 msgid "Skip next" msgstr "" -#: server_replication.php:339 +#: server_replication.php:338 msgid "errors." msgstr "" -#: server_replication.php:354 +#: server_replication.php:353 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -6040,117 +6106,117 @@ msgstr "მოთხოვნის ტიპი" msgid "Replication status" msgstr "რეპლიკაცია" -#: server_synchronize.php:93 +#: server_synchronize.php:92 #, fuzzy msgid "Could not connect to the source" msgstr "MySQL სერვერთან დაკავშირება ვერ მოხერხდა" -#: server_synchronize.php:96 +#: server_synchronize.php:95 #, fuzzy msgid "Could not connect to the target" msgstr "MySQL სერვერთან დაკავშირება ვერ მოხერხდა" -#: server_synchronize.php:121 server_synchronize.php:124 tbl_create.php:77 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:264 +#: server_synchronize.php:263 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:271 +#: server_synchronize.php:270 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:399 server_synchronize.php:838 +#: server_synchronize.php:398 server_synchronize.php:837 msgid "not present" msgstr "" -#: server_synchronize.php:423 server_synchronize.php:866 +#: server_synchronize.php:422 server_synchronize.php:865 #, fuzzy msgid "Structure Difference" msgstr "სტრუქტურა ხედისათვის" -#: server_synchronize.php:424 server_synchronize.php:867 +#: server_synchronize.php:423 server_synchronize.php:866 #, fuzzy msgid "Data Difference" msgstr "სტრუქტურა ხედისათვის" -#: server_synchronize.php:429 server_synchronize.php:872 +#: server_synchronize.php:428 server_synchronize.php:871 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:430 server_synchronize.php:873 +#: server_synchronize.php:429 server_synchronize.php:872 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:431 server_synchronize.php:874 +#: server_synchronize.php:430 server_synchronize.php:873 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:432 server_synchronize.php:875 +#: server_synchronize.php:431 server_synchronize.php:874 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:433 server_synchronize.php:876 +#: server_synchronize.php:432 server_synchronize.php:875 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:434 server_synchronize.php:877 +#: server_synchronize.php:433 server_synchronize.php:876 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:435 server_synchronize.php:878 +#: server_synchronize.php:434 server_synchronize.php:877 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:445 server_synchronize.php:889 +#: server_synchronize.php:444 server_synchronize.php:888 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:448 server_synchronize.php:893 +#: server_synchronize.php:447 server_synchronize.php:892 msgid "Apply Selected Changes" msgstr "" -#: server_synchronize.php:450 server_synchronize.php:895 +#: server_synchronize.php:449 server_synchronize.php:894 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:463 +#: server_synchronize.php:462 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:941 +#: server_synchronize.php:940 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:1002 +#: server_synchronize.php:1001 msgid "The following queries have been executed:" msgstr "" -#: server_synchronize.php:1121 +#: server_synchronize.php:1120 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1122 +#: server_synchronize.php:1121 #, fuzzy #| msgid "Insecure connection" msgid "Current connection" msgstr "დაუცველი კავშირი" -#: server_synchronize.php:1151 +#: server_synchronize.php:1150 #, fuzzy, php-format #| msgid "Configuration file" msgid "Configuration: %s" msgstr "კონფიგურაციის ფაილი" -#: server_synchronize.php:1166 +#: server_synchronize.php:1165 msgid "Socket" msgstr "" -#: server_synchronize.php:1212 +#: server_synchronize.php:1211 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -6741,10 +6807,15 @@ msgid "Signon login options" msgstr "Signon login options" #: setup/lib/messages.inc.php:128 +#, fuzzy +#| msgid "" +#| "Configure phpMyAdmin database to gain access to additional features, see " +#| "[a@../Documentation.html#linked-tables]linked-tables infrastructure[/a] " +#| "in documentation" msgid "" "Configure phpMyAdmin database to gain access to additional features, see " -"[a@../Documentation.html#linked-tables]linked-tables infrastructure[/a] in " -"documentation" +"[a@../Documentation.html#linked-tables]phpMyAdmin configuration storage[/a] " +"in documentation" msgstr "" "Configure phpMyAdmin database to gain access to additional features, see " "[a@../Documentation.html#linked-tables]linked-tables infrastructure[/a] in " @@ -7935,116 +8006,116 @@ msgstr "" msgid "ZIP" msgstr "ZIP" -#: sql.php:495 tbl_replace.php:385 +#: sql.php:494 tbl_replace.php:384 #, php-format msgid "Inserted row id: %1$d" msgstr "ჩამატებული სტრიქონის id: %1$d" -#: sql.php:512 +#: sql.php:511 msgid "Showing as PHP code" msgstr "PHP კოდის სახით ჩვენება" -#: sql.php:515 tbl_replace.php:359 +#: sql.php:514 tbl_replace.php:358 msgid "Showing SQL query" msgstr "Showing SQL query" -#: sql.php:517 +#: sql.php:516 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Validate SQL" -#: sql.php:638 +#: sql.php:631 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problems with indexes of table `%s`" -#: sql.php:670 +#: sql.php:663 msgid "Label" msgstr "Label" -#: tbl_addfield.php:188 tbl_alter.php:102 tbl_indexes.php:97 +#: tbl_addfield.php:185 tbl_alter.php:100 tbl_indexes.php:97 #, php-format msgid "Table %1$s has been altered successfully" msgstr "Table %1$s has been altered successfully" -#: tbl_change.php:250 tbl_select.php:26 tbl_select.php:27 tbl_select.php:30 -#: tbl_select.php:33 +#: tbl_change.php:245 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_select.php:32 msgid "Browse foreign values" msgstr "Browse foreign values" -#: tbl_change.php:280 tbl_change.php:318 +#: tbl_change.php:275 tbl_change.php:313 msgid "Function" msgstr "ფუნქცია" -#: tbl_change.php:300 tbl_indexes.php:199 tbl_indexes.php:224 +#: tbl_change.php:295 tbl_indexes.php:198 tbl_indexes.php:223 msgid "Ignore" msgstr "იგნორირება" -#: tbl_change.php:725 +#: tbl_change.php:720 #, fuzzy #| msgid " Because of its length,
                            this field might not be editable " msgid " Because of its length,
                            this column might not be editable " msgstr " Because of its length,
                            this field might not be editable " -#: tbl_change.php:884 +#: tbl_change.php:835 msgid "Remove BLOB Repository Reference" msgstr "Remove BLOB Repository Reference" -#: tbl_change.php:890 +#: tbl_change.php:841 msgid "Binary - do not edit" msgstr "Binary - do not edit" -#: tbl_change.php:983 +#: tbl_change.php:889 msgid "Upload to BLOB repository" msgstr "Upload to BLOB repository" -#: tbl_change.php:1128 +#: tbl_change.php:1026 msgid "Insert as new row" msgstr "ახალი სტრიქონის ჩამატება" -#: tbl_change.php:1129 +#: tbl_change.php:1027 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:1130 +#: tbl_change.php:1028 #, fuzzy msgid "Show insert query" msgstr "Showing SQL query" -#: tbl_change.php:1145 +#: tbl_change.php:1043 msgid "Go back to previous page" msgstr "წინა გვერდზე დაბრუნება" -#: tbl_change.php:1146 +#: tbl_change.php:1044 msgid "Insert another new row" msgstr "სხვა ახალი სტრიქონის დამატება" -#: tbl_change.php:1150 +#: tbl_change.php:1048 msgid "Go back to this page" msgstr "ამ გვერდზე დაბრუნება" -#: tbl_change.php:1158 +#: tbl_change.php:1056 msgid "Edit next row" msgstr "შემდეგი სტრიქონის რედაქტირება" -#: tbl_change.php:1169 +#: tbl_change.php:1067 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" -#: tbl_change.php:1207 +#: tbl_change.php:1105 #, php-format msgid "Restart insertion with %s rows" msgstr "Restart insertion with %s rows" -#: tbl_create.php:57 +#: tbl_create.php:55 #, php-format msgid "Table %s already exists!" msgstr "ცხრილი %s უკვე არსებობს!" -#: tbl_create.php:244 +#: tbl_create.php:241 #, php-format msgid "Table %1$s has been created." msgstr "Table %1$s has been created." @@ -8065,195 +8136,195 @@ msgstr "Can't rename index to PRIMARY!" msgid "No index parts defined!" msgstr "No index parts defined!" -#: tbl_indexes.php:159 +#: tbl_indexes.php:158 msgid "Create a new index" msgstr "ახალი ინდექსის შექმნა" -#: tbl_indexes.php:161 +#: tbl_indexes.php:160 msgid "Modify an index" msgstr "ინდექსის შეცვლა" -#: tbl_indexes.php:167 +#: tbl_indexes.php:166 msgid "Index name:" msgstr "ინდექსის სახელი:" -#: tbl_indexes.php:173 +#: tbl_indexes.php:172 msgid "Index type:" msgstr "ინდექსის ტიპი:" -#: tbl_indexes.php:183 +#: tbl_indexes.php:182 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" "(\"PRIMARY\" must be the name of and only of a primary key!)" -#: tbl_indexes.php:250 +#: tbl_indexes.php:249 #, php-format msgid "Add to index  %s column(s)" msgstr "Add to index  %s column(s)" -#: tbl_indexes.php:255 tbl_structure.php:588 tbl_structure.php:599 +#: tbl_indexes.php:254 tbl_structure.php:586 tbl_structure.php:597 msgid "Column count has to be larger than zero." msgstr "Column count has to be larger than zero." -#: tbl_move_copy.php:45 +#: tbl_move_copy.php:44 msgid "Can't move table to same one!" msgstr "Can't move table to same one!" -#: tbl_move_copy.php:47 +#: tbl_move_copy.php:46 msgid "Can't copy table to same one!" msgstr "Can't copy table to same one!" -#: tbl_move_copy.php:55 +#: tbl_move_copy.php:54 #, php-format msgid "Table %s has been moved to %s." msgstr "Table %s has been moved to %s." -#: tbl_move_copy.php:57 +#: tbl_move_copy.php:56 #, php-format msgid "Table %s has been copied to %s." msgstr "Table %s has been copied to %s." -#: tbl_move_copy.php:81 +#: tbl_move_copy.php:80 msgid "The table name is empty!" msgstr "ცხრილის სახელი ცარიელია!" -#: tbl_operations.php:248 +#: tbl_operations.php:246 msgid "Alter table order by" msgstr "Alter table order by" -#: tbl_operations.php:257 +#: tbl_operations.php:255 msgid "(singly)" msgstr "(singly)" -#: tbl_operations.php:277 +#: tbl_operations.php:275 msgid "Move table to (database.table):" msgstr "Move table to (database.table):" -#: tbl_operations.php:335 +#: tbl_operations.php:333 msgid "Table options" msgstr "ცხრილის პარამეტრები" -#: tbl_operations.php:339 +#: tbl_operations.php:337 msgid "Rename table to" msgstr "Rename table to" -#: tbl_operations.php:510 +#: tbl_operations.php:508 msgid "Copy table to (database.table):" msgstr "Copy table to (database.table):" -#: tbl_operations.php:557 +#: tbl_operations.php:555 msgid "Switch to copied table" msgstr "Switch to copied table" -#: tbl_operations.php:569 +#: tbl_operations.php:567 msgid "Table maintenance" msgstr "Table maintenance" -#: tbl_operations.php:590 +#: tbl_operations.php:588 msgid "Defragment table" msgstr "Defragment table" -#: tbl_operations.php:629 +#: tbl_operations.php:627 #, php-format msgid "Table %s has been flushed" msgstr "Table %s has been flushed" -#: tbl_operations.php:635 +#: tbl_operations.php:633 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Flush the table (\"FLUSH\")" -#: tbl_operations.php:650 +#: tbl_operations.php:648 msgid "Partition maintenance" msgstr "Partition maintenance" -#: tbl_operations.php:658 +#: tbl_operations.php:656 #, php-format msgid "Partition %s" msgstr "დანაყოფი %s" -#: tbl_operations.php:661 +#: tbl_operations.php:659 msgid "Analyze" msgstr "Analyze" -#: tbl_operations.php:662 +#: tbl_operations.php:660 msgid "Check" msgstr "შემოწმება" -#: tbl_operations.php:663 +#: tbl_operations.php:661 msgid "Optimize" msgstr "ოპტიმიზება" -#: tbl_operations.php:664 +#: tbl_operations.php:662 msgid "Rebuild" msgstr "Rebuild" -#: tbl_operations.php:665 +#: tbl_operations.php:663 msgid "Repair" msgstr "აღდგენა" -#: tbl_operations.php:677 +#: tbl_operations.php:675 msgid "Remove partitioning" msgstr "Remove partitioning" -#: tbl_operations.php:703 +#: tbl_operations.php:701 msgid "Check referential integrity:" msgstr "Check referential integrity:" -#: tbl_printview.php:73 +#: tbl_printview.php:72 msgid "Show tables" msgstr "ცხრილების ჩვენება" -#: tbl_printview.php:308 tbl_structure.php:655 +#: tbl_printview.php:307 tbl_structure.php:653 msgid "Space usage" msgstr "ადგილის გამოყენება" -#: tbl_printview.php:312 tbl_structure.php:659 +#: tbl_printview.php:311 tbl_structure.php:657 msgid "Usage" msgstr "გამოყენება" -#: tbl_printview.php:339 tbl_structure.php:686 +#: tbl_printview.php:338 tbl_structure.php:684 msgid "Effective" msgstr "ეფექტური" -#: tbl_printview.php:364 tbl_structure.php:724 +#: tbl_printview.php:363 tbl_structure.php:722 msgid "Row Statistics" msgstr "Row Statistics" -#: tbl_printview.php:367 tbl_structure.php:727 +#: tbl_printview.php:366 tbl_structure.php:725 msgid "Statements" msgstr "Statements" -#: tbl_printview.php:378 tbl_structure.php:739 +#: tbl_printview.php:377 tbl_structure.php:737 msgid "static" msgstr "სტატიკური" -#: tbl_printview.php:380 tbl_structure.php:741 +#: tbl_printview.php:379 tbl_structure.php:739 msgid "dynamic" msgstr "დინამიური" -#: tbl_printview.php:402 tbl_structure.php:784 +#: tbl_printview.php:401 tbl_structure.php:782 msgid "Row length" msgstr "სტრიქონის სიგრძე" -#: tbl_printview.php:412 tbl_structure.php:792 +#: tbl_printview.php:411 tbl_structure.php:790 msgid " Row size " msgstr " სტრიქონის ზომა " -#: tbl_relation.php:278 +#: tbl_relation.php:276 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "Error creating foreign key on %1$s (check data types)" -#: tbl_relation.php:404 +#: tbl_relation.php:402 #, fuzzy #| msgid "Internal relations" msgid "Internal relation" msgstr "Internal relations" -#: tbl_relation.php:406 +#: tbl_relation.php:404 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -8261,7 +8332,7 @@ msgstr "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." -#: tbl_relation.php:412 +#: tbl_relation.php:410 #, fuzzy #| msgid "Foreign key limit" msgid "Foreign key constraint" @@ -8271,232 +8342,232 @@ msgstr "Foreign key limit" msgid "No rows selected" msgstr "No rows selected" -#: tbl_select.php:130 +#: tbl_select.php:129 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Do a \"query by example\" (wildcard: \"%\")" -#: tbl_select.php:136 +#: tbl_select.php:135 msgid "Operator" msgstr "ოპერატორი" -#: tbl_select.php:267 +#: tbl_select.php:266 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "Select fields (at least one):" -#: tbl_select.php:285 +#: tbl_select.php:284 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Add search conditions (body of the \"where\" clause):" -#: tbl_select.php:292 +#: tbl_select.php:291 msgid "Number of rows per page" msgstr "Number of rows per page" -#: tbl_select.php:298 +#: tbl_select.php:297 msgid "Display order:" msgstr "Display order:" -#: tbl_structure.php:160 +#: tbl_structure.php:159 msgid "Browse distinct values" msgstr "Browse distinct values" -#: tbl_structure.php:360 +#: tbl_structure.php:358 #, fuzzy #| msgid "None" msgctxt "None for default" msgid "None" msgstr "არაა" -#: tbl_structure.php:373 +#: tbl_structure.php:371 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Column %s has been dropped" msgstr "Table %s has been dropped" -#: tbl_structure.php:384 +#: tbl_structure.php:382 #, php-format msgid "A primary key has been added on %s" msgstr "A primary key has been added on %s" -#: tbl_structure.php:399 tbl_structure.php:413 tbl_structure.php:427 +#: tbl_structure.php:397 tbl_structure.php:411 tbl_structure.php:425 #, php-format msgid "An index has been added on %s" msgstr "An index has been added on %s" -#: tbl_structure.php:505 tbl_structure.php:507 +#: tbl_structure.php:503 tbl_structure.php:505 msgid "Relation view" msgstr "Relation view" -#: tbl_structure.php:514 tbl_structure.php:516 +#: tbl_structure.php:512 tbl_structure.php:514 msgid "Propose table structure" msgstr "ცხრილის სტრუქტურის შეთავაზება" -#: tbl_structure.php:539 +#: tbl_structure.php:537 #, fuzzy #| msgid "Add %s field(s)" msgid "Add column" msgstr "%s ველის დამატება" -#: tbl_structure.php:553 +#: tbl_structure.php:551 msgid "At End of Table" msgstr "ცხრილის ბოლოშო" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At Beginning of Table" msgstr "ცხრილის დასაწყისში" -#: tbl_structure.php:555 +#: tbl_structure.php:553 #, php-format msgid "After %s" msgstr "After %s" -#: tbl_structure.php:593 +#: tbl_structure.php:591 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "Create an index on %s columns" -#: tbl_structure.php:755 +#: tbl_structure.php:753 msgid "partitioned" msgstr "დაყოფილი" -#: tbl_tracking.php:113 +#: tbl_tracking.php:109 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:186 +#: tbl_tracking.php:182 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "" -#: tbl_tracking.php:194 +#: tbl_tracking.php:190 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "" -#: tbl_tracking.php:202 +#: tbl_tracking.php:198 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "" -#: tbl_tracking.php:212 +#: tbl_tracking.php:208 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:219 +#: tbl_tracking.php:215 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:220 +#: tbl_tracking.php:216 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:229 +#: tbl_tracking.php:225 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:250 tbl_tracking.php:378 +#: tbl_tracking.php:245 tbl_tracking.php:373 msgid "Close" msgstr "" -#: tbl_tracking.php:261 +#: tbl_tracking.php:256 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:380 +#: tbl_tracking.php:375 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:396 tbl_tracking.php:503 +#: tbl_tracking.php:391 tbl_tracking.php:498 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "" -#: tbl_tracking.php:409 tbl_tracking.php:460 +#: tbl_tracking.php:404 tbl_tracking.php:455 #, fuzzy msgid "Date" msgstr "მონაცემები" -#: tbl_tracking.php:410 tbl_tracking.php:461 +#: tbl_tracking.php:405 tbl_tracking.php:456 #, fuzzy msgid "Username" msgstr "მომხმარებელი:" -#: tbl_tracking.php:411 +#: tbl_tracking.php:406 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:462 +#: tbl_tracking.php:457 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:506 +#: tbl_tracking.php:501 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:507 +#: tbl_tracking.php:502 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:520 +#: tbl_tracking.php:515 #, fuzzy, php-format msgid "Export as %s" msgstr "Export defaults" -#: tbl_tracking.php:560 +#: tbl_tracking.php:555 msgid "Show versions" msgstr "" -#: tbl_tracking.php:592 +#: tbl_tracking.php:587 #, fuzzy msgid "Version" msgstr "სპარსული" -#: tbl_tracking.php:639 +#: tbl_tracking.php:634 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "" -#: tbl_tracking.php:641 +#: tbl_tracking.php:636 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:652 +#: tbl_tracking.php:647 #, php-format msgid "Activate tracking for %s.%s" msgstr "" -#: tbl_tracking.php:654 +#: tbl_tracking.php:649 msgid "Activate now" msgstr "" -#: tbl_tracking.php:667 +#: tbl_tracking.php:662 #, php-format msgid "Create version %s of %s.%s" msgstr "" -#: tbl_tracking.php:671 +#: tbl_tracking.php:666 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:679 +#: tbl_tracking.php:674 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:687 +#: tbl_tracking.php:682 #, fuzzy msgid "Create version" msgstr "Create relation" @@ -8547,11 +8618,41 @@ msgstr "პროფილი განახლდა." msgid "VIEW name" msgstr "VIEW name" -#: view_operations.php:92 +#: view_operations.php:91 #, fuzzy msgid "Rename view to" msgstr "Rename table to" +#~ msgid "BLOB Repository" +#~ msgstr "BLOB რეპოზიტორია" + +#, fuzzy +#~| msgid "Enabled" +#~ msgctxt "BLOB repository" +#~ msgid "Enabled" +#~ msgstr "ჩართულია" + +#~ msgid "Disable" +#~ msgstr "გათიშვა" + +#~ msgid "Damaged" +#~ msgstr "დაზიანებული" + +#, fuzzy +#~| msgid "Repair" +#~ msgctxt "BLOB repository" +#~ msgid "Repair" +#~ msgstr "აღდგენა" + +#, fuzzy +#~| msgid "Disabled" +#~ msgctxt "BLOB repository" +#~ msgid "Disabled" +#~ msgstr "გათიშულია" + +#~ msgid "Enable" +#~ msgstr "ჩართვა" + #~ msgid "" #~ "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " #~ "extension. Please check your PHP configuration." diff --git a/po/ko.po b/po/ko.po index 7fdd7ce79..8dbbf9198 100644 --- a/po/ko.po +++ b/po/ko.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-21 13:53+0200\n" +"POT-Creation-Date: 2010-07-26 17:18+0200\n" "PO-Revision-Date: 2010-06-16 18:18+0200\n" "Last-Translator: \n" "Language-Team: korean \n" @@ -14,19 +14,19 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.1\n" -#: browse_foreigners.php:37 browse_foreigners.php:58 -#: libraries/display_tbl.lib.php:416 server_privileges.php:1506 +#: browse_foreigners.php:36 browse_foreigners.php:57 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1510 msgid "Show all" msgstr "모두 보기" -#: browse_foreigners.php:81 libraries/common.lib.php:2313 -#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:393 -#: libraries/export/pdf.php:146 pdf_schema.php:282 pdf_schema.php:1122 -#: pdf_schema.php:1138 +#: browse_foreigners.php:80 libraries/common.lib.php:2318 +#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:392 +#: libraries/export/pdf.php:146 pdf_schema.php:281 pdf_schema.php:1121 +#: pdf_schema.php:1137 msgid "Page number:" msgstr "페이지:" -#: browse_foreigners.php:131 +#: browse_foreigners.php:130 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -35,137 +35,151 @@ msgstr "" "대상 브라우저 창을 업데이트할 수 없습니다. 부모 창을 닫았거나 브라우저의 보" "안 설정이 다른 창을 업데이트하지 못하도록 설정되어 있는 것 같습니다." -#: browse_foreigners.php:149 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2829 -#: libraries/common.lib.php:2836 libraries/db_links.inc.php:74 -#: libraries/tbl_links.inc.php:62 +#: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 +#: db_structure.php:89 db_structure.php:91 db_structure.php:102 +#: db_structure.php:104 libraries/common.lib.php:2834 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "검색" -#: browse_foreigners.php:152 db_operations.php:384 db_operations.php:428 -#: db_operations.php:498 db_operations.php:608 db_search.php:344 -#: db_structure.php:566 js/messages.php:48 libraries/Config.class.php:1043 -#: libraries/Theme_Manager.class.php:310 +#: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 +#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 +#: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 -#: libraries/common.lib.php:1340 libraries/common.lib.php:2289 +#: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 -#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:275 -#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:531 -#: libraries/display_tbl.lib.php:613 libraries/replication_gui.lib.php:75 +#: libraries/display_export.lib.php:269 libraries/display_import.lib.php:275 +#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 +#: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 #: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:781 -#: main.php:127 navigation.php:231 pdf_pages.php:291 pdf_pages.php:327 -#: pdf_pages.php:529 pmd_pdf.php:115 server_binlog.php:128 -#: server_privileges.php:664 server_privileges.php:1616 -#: server_privileges.php:1963 server_privileges.php:2010 -#: server_privileges.php:2049 server_replication.php:234 -#: server_replication.php:317 server_replication.php:340 -#: server_synchronize.php:1208 tbl_change.php:328 tbl_change.php:1172 -#: tbl_change.php:1209 tbl_indexes.php:253 tbl_operations.php:264 -#: tbl_operations.php:301 tbl_operations.php:498 tbl_operations.php:560 -#: tbl_operations.php:680 tbl_select.php:324 tbl_structure.php:561 -#: tbl_structure.php:596 tbl_tracking.php:394 tbl_tracking.php:511 -#: view_create.php:181 view_operations.php:100 +#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 +#: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 +#: server_privileges.php:663 server_privileges.php:1620 +#: server_privileges.php:1967 server_privileges.php:2014 +#: server_privileges.php:2053 server_replication.php:233 +#: server_replication.php:316 server_replication.php:339 +#: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 +#: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 +#: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 +#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "실행" -#: browse_foreigners.php:167 browse_foreigners.php:171 -#: libraries/Index.class.php:441 tbl_tracking.php:319 +#: browse_foreigners.php:166 browse_foreigners.php:170 +#: libraries/Index.class.php:441 tbl_tracking.php:314 msgid "Keyname" msgstr "키 이름" -#: browse_foreigners.php:168 browse_foreigners.php:170 -#: server_collations.php:54 server_collations.php:66 server_engines.php:58 +#: browse_foreigners.php:167 browse_foreigners.php:169 +#: server_collations.php:54 server_collations.php:66 server_engines.php:57 #: server_status.php:738 msgid "Description" msgstr "설명" -#: browse_foreigners.php:246 browse_foreigners.php:255 -#: browse_foreigners.php:267 browse_foreigners.php:275 +#: browse_foreigners.php:245 browse_foreigners.php:254 +#: browse_foreigners.php:266 browse_foreigners.php:274 msgid "Use this value" msgstr "이 값을 사용합니다" -#: db_create.php:45 +#: bs_disp_as_mime_type.php:29 bs_play_media.php:35 +msgid "No blob streaming server configured!" +msgstr "" + +#: bs_disp_as_mime_type.php:35 +#, fuzzy +#| msgid "Failed to write file to disk." +msgid "Failed to fetch headers" +msgstr "디스크 쓰기에 실패했습니다." + +#: bs_disp_as_mime_type.php:41 +msgid "Failed to open remote URL" +msgstr "" + +#: db_create.php:44 #, php-format msgid "Database %1$s has been created." msgstr "데이터베이스 %1$s가 생성되었습니다." -#: db_datadict.php:48 db_operations.php:377 +#: db_datadict.php:48 db_operations.php:313 msgid "Database comment: " msgstr "데이터베이스 설명:" -#: db_datadict.php:164 libraries/tbl_properties.inc.php:723 -#: pdf_schema.php:1235 tbl_operations.php:346 tbl_printview.php:128 +#: db_datadict.php:164 libraries/tbl_properties.inc.php:722 +#: pdf_schema.php:1234 tbl_operations.php:344 tbl_printview.php:127 msgid "Table comments" msgstr "테이블 설명" -#: db_datadict.php:173 db_qbe.php:173 libraries/Index.class.php:445 +#: db_datadict.php:173 db_qbe.php:170 libraries/Index.class.php:445 #: libraries/export/htmlword.php:243 libraries/export/latex.php:364 #: libraries/export/odt.php:293 libraries/export/texytext.php:233 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:274 -#: pdf_schema.php:1261 pdf_schema.php:1282 tbl_change.php:306 -#: tbl_indexes.php:188 tbl_printview.php:140 tbl_relation.php:401 -#: tbl_select.php:133 tbl_structure.php:176 tbl_tracking.php:272 -#: tbl_tracking.php:323 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 +#: pdf_schema.php:1260 pdf_schema.php:1281 tbl_change.php:301 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:132 tbl_structure.php:175 tbl_tracking.php:267 +#: tbl_tracking.php:318 msgid "Column" msgstr "컬럼명" -#: db_datadict.php:174 db_printview.php:105 libraries/Index.class.php:442 +#: db_datadict.php:174 db_printview.php:104 libraries/Index.class.php:442 #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 #: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:244 #: libraries/export/latex.php:364 libraries/export/odt.php:296 #: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:99 -#: pdf_schema.php:1262 pdf_schema.php:1283 server_privileges.php:2062 -#: tbl_change.php:285 tbl_change.php:312 tbl_printview.php:141 -#: tbl_printview.php:311 tbl_select.php:134 tbl_structure.php:177 -#: tbl_structure.php:658 tbl_tracking.php:273 tbl_tracking.php:320 +#: pdf_schema.php:1261 pdf_schema.php:1282 server_privileges.php:2066 +#: tbl_change.php:280 tbl_change.php:307 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:133 tbl_structure.php:176 +#: tbl_structure.php:656 tbl_tracking.php:268 tbl_tracking.php:315 msgid "Type" msgstr "종류" #: db_datadict.php:176 libraries/Index.class.php:448 #: libraries/export/htmlword.php:245 libraries/export/latex.php:364 #: libraries/export/odt.php:299 libraries/export/texytext.php:235 -#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1264 -#: pdf_schema.php:1285 tbl_change.php:321 tbl_printview.php:143 -#: tbl_structure.php:180 tbl_tracking.php:275 tbl_tracking.php:326 +#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1263 +#: pdf_schema.php:1284 tbl_change.php:316 tbl_printview.php:142 +#: tbl_structure.php:179 tbl_tracking.php:270 tbl_tracking.php:321 msgid "Null" msgstr "Null" -#: db_datadict.php:177 db_structure.php:500 libraries/export/htmlword.php:246 +#: db_datadict.php:177 db_structure.php:486 libraries/export/htmlword.php:246 #: libraries/export/latex.php:364 libraries/export/odt.php:302 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:105 -#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 -#: tbl_structure.php:181 tbl_tracking.php:276 +#: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:143 +#: tbl_structure.php:180 tbl_tracking.php:271 msgid "Default" msgstr "기본값" #: db_datadict.php:181 libraries/export/htmlword.php:248 #: libraries/export/latex.php:366 libraries/export/odt.php:306 -#: libraries/export/texytext.php:238 pdf_schema.php:1267 pdf_schema.php:1288 -#: tbl_printview.php:148 +#: libraries/export/texytext.php:238 pdf_schema.php:1266 pdf_schema.php:1287 +#: tbl_printview.php:147 msgid "Links to" msgstr "링크 대상:" -#: db_datadict.php:183 db_printview.php:111 libraries/export/htmlword.php:251 +#: db_datadict.php:183 db_printview.php:110 libraries/export/htmlword.php:251 #: libraries/export/latex.php:49 libraries/export/latex.php:369 #: libraries/export/odt.php:37 libraries/export/odt.php:311 #: libraries/export/sql.php:29 libraries/export/texytext.php:241 -#: libraries/tbl_properties.inc.php:129 pdf_schema.php:1278 -#: pdf_schema.php:1289 tbl_printview.php:150 +#: libraries/tbl_properties.inc.php:128 pdf_schema.php:1277 +#: pdf_schema.php:1288 tbl_printview.php:149 msgid "Comments" msgstr "설명(코멘트)" #: db_datadict.php:266 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/export/htmlword.php:321 #: libraries/export/latex.php:434 libraries/export/odt.php:367 -#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:262 -#: pdf_schema.php:1343 server_privileges.php:1560 server_privileges.php:1571 -#: server_privileges.php:1881 server_privileges.php:1886 -#: server_privileges.php:2179 sql.php:131 sql.php:193 tbl_printview.php:227 -#: tbl_structure.php:349 tbl_tracking.php:336 tbl_tracking.php:341 +#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:261 +#: pdf_schema.php:1342 server_privileges.php:1564 server_privileges.php:1575 +#: server_privileges.php:1885 server_privileges.php:1890 +#: server_privileges.php:2183 sql.php:130 sql.php:192 tbl_printview.php:226 +#: tbl_structure.php:347 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr " 아니오 " @@ -176,17 +190,17 @@ msgstr " 아니오 " #: libraries/mult_submits.inc.php:49 libraries/mult_submits.inc.php:54 #: libraries/mult_submits.inc.php:59 libraries/mult_submits.inc.php:91 #: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:105 -#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:261 -#: libraries/mult_submits.inc.php:272 pdf_schema.php:1343 -#: server_databases.php:63 server_privileges.php:1557 -#: server_privileges.php:1571 server_privileges.php:1881 -#: server_privileges.php:1884 server_privileges.php:2179 sql.php:192 -#: tbl_printview.php:227 tbl_structure.php:39 tbl_structure.php:349 -#: tbl_tracking.php:334 tbl_tracking.php:339 +#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:260 +#: libraries/mult_submits.inc.php:271 pdf_schema.php:1342 +#: server_databases.php:61 server_privileges.php:1561 +#: server_privileges.php:1575 server_privileges.php:1885 +#: server_privileges.php:1888 server_privileges.php:2183 sql.php:191 +#: tbl_printview.php:226 tbl_structure.php:38 tbl_structure.php:347 +#: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" msgstr "예" -#: db_datadict.php:321 db_printview.php:265 tbl_printview.php:496 +#: db_datadict.php:321 db_printview.php:264 tbl_printview.php:495 msgid "Print" msgstr "인쇄" @@ -194,277 +208,243 @@ msgstr "인쇄" msgid "View dump (schema) of database" msgstr "데이터베이스의 덤프(스키마) 데이터 보기" -#: db_export.php:32 db_printview.php:95 db_qbe.php:101 db_structure.php:50 -#: db_tracking.php:34 export.php:352 navigation.php:326 +#: db_export.php:32 db_printview.php:94 db_qbe.php:98 db_structure.php:49 +#: db_tracking.php:30 export.php:350 navigation.php:325 msgid "No tables found in database." msgstr "데이터베이스에 테이블이 없습니다." -#: db_export.php:42 db_search.php:326 server_export.php:26 +#: db_export.php:42 db_search.php:326 server_export.php:24 msgid "Select All" msgstr "모두 선택" -#: db_export.php:44 db_search.php:329 server_export.php:28 +#: db_export.php:44 db_search.php:329 server_export.php:26 msgid "Unselect All" msgstr "모두 선택안함" -#: db_operations.php:37 tbl_create.php:49 +#: db_operations.php:33 tbl_create.php:47 msgid "The database name is empty!" msgstr "데이터베이스명이 없습니다!" -#: db_operations.php:235 +#: db_operations.php:231 #, php-format msgid "Database %s has been renamed to %s" msgstr "데이터베이스 %s 의 이름을 %s 로 변경하였습니다." -#: db_operations.php:239 +#: db_operations.php:235 #, php-format msgid "Database %s has been copied to %s" msgstr "데이터베이스 %s 를 %s 로 복사하였습니다." -#: db_operations.php:411 +#: db_operations.php:347 msgid "Rename database to" msgstr "데이터베이스 이름 변경" -#: db_operations.php:416 server_processlist.php:56 +#: db_operations.php:352 server_processlist.php:56 msgid "Command" msgstr "커맨드" -#: db_operations.php:428 tbl_change.php:1141 +#: db_operations.php:364 tbl_change.php:1039 msgid "and then" msgstr "이어서" -#: db_operations.php:454 +#: db_operations.php:390 msgid "Copy database to" msgstr "데이터베이스 복사" -#: db_operations.php:461 tbl_operations.php:527 tbl_tracking.php:387 +#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "구조만" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:389 +#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "구조와 데이터 모두" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:388 +#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "데이터만" -#: db_operations.php:471 +#: db_operations.php:407 msgid "CREATE DATABASE before copying" msgstr "복사 전에 CREATE DATABASE 실행" -#: db_operations.php:474 libraries/export/sql.php:51 +#: db_operations.php:410 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 -#: libraries/export/sql.php:81 tbl_operations.php:535 +#: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "%s 추가" -#: db_operations.php:478 libraries/export/sql.php:77 tbl_operations.php:298 -#: tbl_operations.php:537 +#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT 값 추가" -#: db_operations.php:482 tbl_operations.php:544 +#: db_operations.php:418 tbl_operations.php:542 msgid "Add constraints" msgstr "제약조건 추가" -#: db_operations.php:495 +#: db_operations.php:431 msgid "Switch to copied database" msgstr "복사한 테이블로 옮겨감" -#: db_operations.php:536 -msgid "BLOB Repository" -msgstr "BLOB 저장소" - -#: db_operations.php:539 db_tracking.php:75 libraries/common.lib.php:1357 -#: libraries/server_links.inc.php:48 server_processlist.php:58 -#: tbl_tracking.php:595 test/theme.php:100 -msgid "Status" -msgstr "상태" - -#: db_operations.php:547 -msgctxt "BLOB repository" -msgid "Enabled" -msgstr "유효" - -#: db_operations.php:551 -msgid "Disable" -msgstr "무효" - -#: db_operations.php:561 -msgid "Damaged" -msgstr "손상됨" - -#: db_operations.php:565 -msgctxt "BLOB repository" -msgid "Repair" -msgstr "복구" - -#: db_operations.php:573 -msgctxt "BLOB repository" -msgid "Disabled" -msgstr "무효" - -#: db_operations.php:577 -msgid "Enable" -msgstr "유효" - -#: db_operations.php:601 libraries/Index.class.php:447 +#: db_operations.php:451 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 -#: server_collations.php:53 server_collations.php:65 server_databases.php:110 -#: tbl_operations.php:362 tbl_select.php:135 tbl_structure.php:178 -#: tbl_structure.php:766 tbl_tracking.php:274 tbl_tracking.php:325 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 +#: server_collations.php:53 server_collations.php:65 server_databases.php:108 +#: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:177 +#: tbl_structure.php:764 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "데이터정렬방식" -#: db_operations.php:614 main.php:315 pdf_schema.php:33 -#, php-format +#: db_operations.php:464 pdf_schema.php:32 +#, fuzzy, php-format +#| msgid "" +#| "The additional features for working with linked tables have been " +#| "deactivated. To find out why click %shere%s." msgid "" -"The additional features for working with linked tables have been " -"deactivated. To find out why click %shere%s." +"The phpMyAdmin configuration storage has been deactivated. To find out why " +"click %shere%s." msgstr "" "링크 테이블을 처리하는 추가 기능이 비활성화되어 있습니다. 원인을 확인하려면 " "%s여기를 클릭%s하십시오." -#: db_operations.php:647 +#: db_operations.php:497 msgid "Edit PDF Pages" msgstr "PDF 페이지 편집" -#: db_printview.php:103 db_tracking.php:71 db_tracking.php:156 +#: db_printview.php:102 db_tracking.php:67 db_tracking.php:152 #: libraries/db_structure.lib.php:37 libraries/export/xml.php:327 -#: libraries/header.inc.php:125 pdf_pages.php:423 server_privileges.php:1657 -#: server_privileges.php:1713 server_privileges.php:1977 -#: server_synchronize.php:422 server_synchronize.php:865 tbl_tracking.php:591 +#: libraries/header.inc.php:125 pdf_pages.php:422 server_privileges.php:1661 +#: server_privileges.php:1717 server_privileges.php:1981 +#: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "테이블 " -#: db_printview.php:104 libraries/db_structure.lib.php:47 +#: db_printview.php:103 libraries/db_structure.lib.php:47 #: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 -#: navigation.php:629 navigation.php:651 server_databases.php:121 -#: tbl_printview.php:392 tbl_structure.php:364 tbl_structure.php:776 +#: navigation.php:628 navigation.php:650 server_databases.php:119 +#: tbl_printview.php:391 tbl_structure.php:362 tbl_structure.php:774 msgid "Rows" msgstr "행(레코드)" -#: db_printview.php:108 libraries/db_structure.lib.php:58 tbl_indexes.php:189 +#: db_printview.php:107 libraries/db_structure.lib.php:58 tbl_indexes.php:188 msgid "Size" msgstr "크기" -#: db_printview.php:161 db_structure.php:456 libraries/export/sql.php:556 +#: db_printview.php:160 db_structure.php:442 libraries/export/sql.php:556 #: libraries/export/sql.php:896 msgid "in use" msgstr "사용중" -#: db_printview.php:186 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:511 pdf_schema.php:1240 tbl_printview.php:432 -#: tbl_structure.php:808 +#: db_printview.php:185 libraries/db_info.inc.php:86 +#: libraries/export/sql.php:511 pdf_schema.php:1239 tbl_printview.php:431 +#: tbl_structure.php:806 msgid "Creation" msgstr "생성" -#: db_printview.php:195 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:516 pdf_schema.php:1245 tbl_printview.php:442 -#: tbl_structure.php:816 +#: db_printview.php:194 libraries/db_info.inc.php:91 +#: libraries/export/sql.php:516 pdf_schema.php:1244 tbl_printview.php:441 +#: tbl_structure.php:814 msgid "Last update" msgstr "업데이트" -#: db_printview.php:204 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:521 pdf_schema.php:1250 tbl_printview.php:452 -#: tbl_structure.php:824 +#: db_printview.php:203 libraries/db_info.inc.php:96 +#: libraries/export/sql.php:521 pdf_schema.php:1249 tbl_printview.php:451 +#: tbl_structure.php:822 msgid "Last check" msgstr "검사" -#: db_printview.php:221 db_structure.php:479 +#: db_printview.php:220 db_structure.php:465 #, php-format msgid "%s table" msgid_plural "%s tables" msgstr[0] "%s개 테이블 " -#: db_qbe.php:28 import.php:453 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1980 libraries/sql_query_form.lib.php:138 -#: tbl_operations.php:212 tbl_relation.php:291 tbl_row_action.php:130 -#: view_operations.php:61 +#: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 +#: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "SQL 질의가 바르게 실행되었습니다." -#: db_qbe.php:41 +#: db_qbe.php:38 msgid "You have to choose at least one column to display" msgstr "출력하려면 적어도 1개 이상의 열(칼럼)을 선택해야 합니다." -#: db_qbe.php:199 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:865 +#: db_qbe.php:196 libraries/db_structure.lib.php:95 +#: libraries/display_tbl.lib.php:864 msgid "Sort" msgstr "정렬" -#: db_qbe.php:208 db_qbe.php:242 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:522 libraries/display_tbl.lib.php:827 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:259 -#: tbl_select.php:311 +#: db_qbe.php:205 db_qbe.php:239 libraries/db_structure.lib.php:102 +#: libraries/display_tbl.lib.php:521 libraries/display_tbl.lib.php:826 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:257 +#: tbl_select.php:310 msgid "Ascending" msgstr "오름차순" -#: db_qbe.php:209 db_qbe.php:250 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:527 libraries/display_tbl.lib.php:824 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:260 -#: tbl_select.php:312 +#: db_qbe.php:206 db_qbe.php:247 libraries/db_structure.lib.php:110 +#: libraries/display_tbl.lib.php:526 libraries/display_tbl.lib.php:823 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:258 +#: tbl_select.php:311 msgid "Descending" msgstr "내림차순(역순)" -#: db_qbe.php:263 db_tracking.php:77 libraries/display_tbl.lib.php:307 -#: tbl_change.php:275 tbl_tracking.php:596 +#: db_qbe.php:260 db_tracking.php:73 libraries/display_tbl.lib.php:306 +#: tbl_change.php:270 tbl_tracking.php:591 msgid "Show" msgstr "보기" -#: db_qbe.php:299 +#: db_qbe.php:296 msgid "Criteria" msgstr "Criteria" -#: db_qbe.php:352 db_qbe.php:434 db_qbe.php:526 db_qbe.php:557 +#: db_qbe.php:349 db_qbe.php:431 db_qbe.php:523 db_qbe.php:554 msgid "Ins" msgstr "삽입" -#: db_qbe.php:356 db_qbe.php:438 db_qbe.php:523 db_qbe.php:554 +#: db_qbe.php:353 db_qbe.php:435 db_qbe.php:520 db_qbe.php:551 msgid "And" msgstr "그리고" -#: db_qbe.php:365 db_qbe.php:446 db_qbe.php:528 db_qbe.php:559 +#: db_qbe.php:362 db_qbe.php:443 db_qbe.php:525 db_qbe.php:556 msgid "Del" msgstr "삭제" -#: db_qbe.php:369 db_qbe.php:450 db_qbe.php:521 db_qbe.php:552 -#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:778 -#: server_privileges.php:297 tbl_change.php:1027 tbl_indexes.php:249 -#: tbl_select.php:285 +#: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 +#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:777 +#: server_privileges.php:296 tbl_change.php:925 tbl_indexes.php:248 +#: tbl_select.php:284 msgid "Or" msgstr "또는" -#: db_qbe.php:506 +#: db_qbe.php:503 msgid "Modify" msgstr "수정" -#: db_qbe.php:583 +#: db_qbe.php:580 msgid "Add/Delete criteria rows" msgstr "조건행 추가/삭제" -#: db_qbe.php:595 +#: db_qbe.php:592 msgid "Add/Delete columns" msgstr "컬럼 추가/삭제" -#: db_qbe.php:608 db_qbe.php:633 +#: db_qbe.php:605 db_qbe.php:630 msgid "Update Query" msgstr "질의 업데이트" -#: db_qbe.php:616 +#: db_qbe.php:613 msgid "Use Tables" msgstr "사용할 테이블" -#: db_qbe.php:639 +#: db_qbe.php:636 #, php-format msgid "SQL query on database %s:" msgstr "데이터베이스 %s에 SQL 질의:" -#: db_qbe.php:933 libraries/common.lib.php:1222 +#: db_qbe.php:930 libraries/common.lib.php:1215 msgid "Submit Query" msgstr "질의 실행" @@ -503,17 +483,17 @@ msgid "%s match inside table %s" msgid_plural "%s matches inside table %s" msgstr[0] "%s 건 일치 (테이블 %s)" -#: db_search.php:249 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2831 -#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:49 -#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:466 +#: db_search.php:249 db_structure.php:75 db_structure.php:76 +#: db_structure.php:88 db_structure.php:90 db_structure.php:101 +#: db_structure.php:103 libraries/common.lib.php:2836 +#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 +#: tbl_structure.php:35 tbl_structure.php:47 tbl_structure.php:464 msgid "Browse" msgstr "보기" -#: db_search.php:254 libraries/display_tbl.lib.php:1164 -#: libraries/display_tbl.lib.php:2055 libraries/sql_query_form.lib.php:453 -#: pdf_pages.php:285 pdf_pages.php:424 pdf_pages.php:460 pdf_pages.php:488 +#: db_search.php:254 libraries/display_tbl.lib.php:1163 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 msgid "Delete" @@ -550,230 +530,236 @@ msgstr "찾을 테이블:" msgid "Inside column:" msgstr "검색할 컬럼:" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2830 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:75 +#: db_structure.php:79 db_structure.php:80 db_structure.php:92 +#: db_structure.php:93 db_structure.php:105 db_structure.php:106 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 +#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "삽입" -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2827 libraries/common.lib.php:2834 -#: libraries/db_links.inc.php:62 libraries/export/htmlword.php:22 +#: db_structure.php:81 db_structure.php:94 db_structure.php:107 +#: libraries/common.lib.php:2832 libraries/common.lib.php:2839 +#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 -#: libraries/tbl_links.inc.php:55 pmd_general.php:133 -#: server_privileges.php:593 server_replication.php:314 tbl_tracking.php:268 +#: libraries/tbl_links.inc.php:54 pmd_general.php:133 +#: server_privileges.php:592 server_replication.php:313 tbl_tracking.php:263 msgid "Structure" msgstr "구조" -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:544 db_structure.php:545 db_tracking.php:90 -#: libraries/Index.class.php:482 libraries/common.lib.php:1659 -#: libraries/db_links.inc.php:99 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:126 -#: server_databases.php:351 tbl_structure.php:26 tbl_structure.php:150 -#: tbl_structure.php:151 tbl_structure.php:470 +#: db_structure.php:82 db_structure.php:83 db_structure.php:95 +#: db_structure.php:96 db_structure.php:108 db_structure.php:109 +#: db_structure.php:530 db_structure.php:531 db_tracking.php:86 +#: libraries/Index.class.php:482 libraries/common.lib.php:1663 +#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 +#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 +#: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" msgstr "삭제" -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:542 db_structure.php:543 libraries/common.lib.php:1658 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:104 +#: db_structure.php:84 db_structure.php:85 db_structure.php:97 +#: db_structure.php:98 db_structure.php:110 db_structure.php:111 +#: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 +#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 msgid "Empty" msgstr "비우기" -#: db_structure.php:315 libraries/tbl_links.inc.php:99 +#: db_structure.php:301 libraries/tbl_links.inc.php:98 #, php-format msgid "Table %s has been emptied" msgstr "테이블 %s 을 비웠습니다" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "View %s has been dropped" msgstr "뷰 %s가 제거되었습니다." -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "Table %s has been dropped" msgstr "테이블 %s 을 제거했습니다." -#: db_structure.php:332 +#: db_structure.php:318 msgid "Tracking is active." msgstr "트래킹이 활성화되었습니다." -#: db_structure.php:334 +#: db_structure.php:320 msgid "Tracking is not active." msgstr "트래킹이 활성화되어 있지 않습니다." -#: db_structure.php:419 libraries/display_tbl.lib.php:1943 +#: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -#: db_structure.php:433 db_structure.php:447 libraries/header.inc.php:125 -#: libraries/tbl_info.inc.php:65 tbl_structure.php:184 test/theme.php:73 +#: db_structure.php:419 db_structure.php:433 libraries/header.inc.php:125 +#: libraries/tbl_info.inc.php:60 tbl_structure.php:183 test/theme.php:73 msgid "View" msgstr "" -#: db_structure.php:484 libraries/db_structure.lib.php:40 -#: libraries/server_links.inc.php:69 server_replication.php:32 -#: server_replication.php:163 server_status.php:368 +#: db_structure.php:470 libraries/db_structure.lib.php:40 +#: libraries/server_links.inc.php:69 server_replication.php:31 +#: server_replication.php:162 server_status.php:368 msgid "Replication" msgstr "" -#: db_structure.php:488 +#: db_structure.php:474 msgid "Sum" msgstr "계" -#: db_structure.php:495 libraries/StorageEngine.class.php:349 +#: db_structure.php:481 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s는 이 MySQL 서버의 기본 스토리지 엔진입니다." -#: db_structure.php:523 db_structure.php:540 db_structure.php:541 -#: libraries/display_tbl.lib.php:2080 libraries/display_tbl.lib.php:2085 -#: libraries/mult_submits.inc.php:15 server_databases.php:345 -#: server_databases.php:350 server_privileges.php:1588 tbl_structure.php:454 -#: tbl_structure.php:463 +#: db_structure.php:509 db_structure.php:526 db_structure.php:527 +#: libraries/display_tbl.lib.php:2039 libraries/display_tbl.lib.php:2044 +#: libraries/mult_submits.inc.php:15 server_databases.php:343 +#: server_databases.php:348 server_privileges.php:1592 tbl_structure.php:452 +#: tbl_structure.php:461 msgid "With selected:" msgstr "선택한 것을:" -#: db_structure.php:526 libraries/display_tbl.lib.php:2075 -#: server_databases.php:347 server_privileges.php:569 -#: server_privileges.php:1591 tbl_structure.php:457 +#: db_structure.php:512 libraries/display_tbl.lib.php:2034 +#: server_databases.php:345 server_privileges.php:568 +#: server_privileges.php:1595 tbl_structure.php:455 msgid "Check All" msgstr "모두 체크" -#: db_structure.php:530 libraries/display_tbl.lib.php:2076 -#: libraries/replication_gui.lib.php:35 server_databases.php:349 -#: server_privileges.php:572 server_privileges.php:1595 tbl_structure.php:461 +#: db_structure.php:516 libraries/display_tbl.lib.php:2035 +#: libraries/replication_gui.lib.php:35 server_databases.php:347 +#: server_privileges.php:571 server_privileges.php:1599 tbl_structure.php:459 msgid "Uncheck All" msgstr "모두 체크안함" -#: db_structure.php:535 +#: db_structure.php:521 msgid "Check tables having overhead" msgstr "" -#: db_structure.php:546 db_structure.php:547 db_structure.php:598 -#: libraries/display_tbl.lib.php:2179 libraries/mult_submits.inc.php:27 -#: tbl_structure.php:491 tbl_structure.php:493 +#: db_structure.php:532 db_structure.php:533 db_structure.php:584 +#: libraries/display_tbl.lib.php:2138 libraries/mult_submits.inc.php:27 +#: tbl_structure.php:489 tbl_structure.php:491 msgid "Print view" msgstr "인쇄용 보기" -#: db_structure.php:548 db_structure.php:549 libraries/mult_submits.inc.php:41 -#: tbl_operations.php:580 +#: db_structure.php:534 db_structure.php:535 libraries/mult_submits.inc.php:41 +#: tbl_operations.php:578 msgid "Check table" msgstr "테이블 검사" -#: db_structure.php:550 db_structure.php:551 libraries/mult_submits.inc.php:46 -#: tbl_operations.php:620 tbl_structure.php:708 tbl_structure.php:710 +#: db_structure.php:536 db_structure.php:537 libraries/mult_submits.inc.php:46 +#: tbl_operations.php:618 tbl_structure.php:706 tbl_structure.php:708 msgid "Optimize table" msgstr "테이블 최적화" -#: db_structure.php:552 db_structure.php:553 libraries/mult_submits.inc.php:51 -#: tbl_operations.php:610 +#: db_structure.php:538 db_structure.php:539 libraries/mult_submits.inc.php:51 +#: tbl_operations.php:608 msgid "Repair table" msgstr "테이블 복구" -#: db_structure.php:554 db_structure.php:555 libraries/mult_submits.inc.php:56 -#: tbl_operations.php:600 +#: db_structure.php:540 db_structure.php:541 libraries/mult_submits.inc.php:56 +#: tbl_operations.php:598 msgid "Analyze table" msgstr "테이블 분석" -#: db_structure.php:556 db_structure.php:557 libraries/db_links.inc.php:70 -#: libraries/display_export.lib.php:82 libraries/display_tbl.lib.php:2093 -#: libraries/display_tbl.lib.php:2224 libraries/mult_submits.inc.php:61 -#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:81 -#: pmd_pdf.php:83 pmd_pdf.php:108 server_privileges.php:1372 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 +#: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 +#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 +#: pmd_pdf.php:81 pmd_pdf.php:106 server_privileges.php:1376 #: setup/frames/menu.inc.php:22 tbl_row_action.php:58 msgid "Export" msgstr "내보내기" -#: db_structure.php:605 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:591 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "데이터 사전 (전체 구조보기)" -#: db_tracking.php:65 +#: db_tracking.php:61 msgid "Tracked tables" msgstr "" -#: db_tracking.php:70 libraries/export/htmlword.php:85 +#: db_tracking.php:66 libraries/export/htmlword.php:85 #: libraries/export/latex.php:152 libraries/export/odt.php:112 #: libraries/export/sql.php:339 libraries/export/texytext.php:84 #: libraries/export/xml.php:254 libraries/header.inc.php:105 -#: libraries/header_printview.inc.php:57 server_databases.php:168 -#: server_privileges.php:1652 server_privileges.php:1713 -#: server_privileges.php:1971 server_processlist.php:55 -#: server_synchronize.php:1178 server_synchronize.php:1182 -#: tbl_tracking.php:590 test/theme.php:64 +#: libraries/header_printview.inc.php:57 server_databases.php:166 +#: server_privileges.php:1656 server_privileges.php:1717 +#: server_privileges.php:1975 server_processlist.php:55 +#: server_synchronize.php:1177 server_synchronize.php:1181 +#: tbl_tracking.php:585 test/theme.php:64 msgid "Database" msgstr "데이터베이스" -#: db_tracking.php:72 +#: db_tracking.php:68 msgid "Last version" msgstr "" -#: db_tracking.php:73 tbl_tracking.php:593 +#: db_tracking.php:69 tbl_tracking.php:588 #, fuzzy msgid "Created" msgstr " 만들기 " -#: db_tracking.php:74 tbl_tracking.php:594 +#: db_tracking.php:70 tbl_tracking.php:589 msgid "Updated" msgstr "" -#: db_tracking.php:76 libraries/Index.class.php:439 -#: libraries/db_structure.lib.php:44 server_databases.php:202 -#: server_privileges.php:1534 server_privileges.php:1717 -#: server_privileges.php:2065 tbl_structure.php:186 +#: db_tracking.php:71 libraries/common.lib.php:1361 +#: libraries/server_links.inc.php:48 server_processlist.php:58 +#: tbl_tracking.php:590 test/theme.php:100 +msgid "Status" +msgstr "상태" + +#: db_tracking.php:72 libraries/Index.class.php:439 +#: libraries/db_structure.lib.php:44 server_databases.php:200 +#: server_privileges.php:1538 server_privileges.php:1721 +#: server_privileges.php:2069 tbl_structure.php:185 msgid "Action" msgstr "실행" -#: db_tracking.php:87 db_tracking.php:119 +#: db_tracking.php:83 db_tracking.php:115 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:105 tbl_tracking.php:547 tbl_tracking.php:605 -#: tbl_tracking.php:612 +#: db_tracking.php:101 tbl_tracking.php:542 tbl_tracking.php:600 +#: tbl_tracking.php:607 msgid "active" msgstr "" -#: db_tracking.php:107 tbl_tracking.php:549 tbl_tracking.php:607 -#: tbl_tracking.php:609 +#: db_tracking.php:103 tbl_tracking.php:544 tbl_tracking.php:602 +#: tbl_tracking.php:604 msgid "not active" msgstr "" -#: db_tracking.php:120 +#: db_tracking.php:116 #, fuzzy msgid "Versions" msgstr "테이블 작업" -#: db_tracking.php:121 tbl_tracking.php:378 tbl_tracking.php:623 +#: db_tracking.php:117 tbl_tracking.php:373 tbl_tracking.php:618 msgid "Tracking report" msgstr "" -#: db_tracking.php:122 tbl_tracking.php:250 tbl_tracking.php:623 +#: db_tracking.php:118 tbl_tracking.php:245 tbl_tracking.php:618 #, fuzzy msgid "Structure snapshot" msgstr "구조만" -#: db_tracking.php:151 +#: db_tracking.php:147 msgid "Untracked tables" msgstr "" -#: db_tracking.php:171 db_tracking.php:173 tbl_structure.php:527 -#: tbl_structure.php:529 +#: db_tracking.php:167 db_tracking.php:169 tbl_structure.php:525 +#: tbl_structure.php:527 #, fuzzy msgid "Track table" msgstr "테이블 검사" -#: db_tracking.php:199 +#: db_tracking.php:195 #, fuzzy msgid "Database Log" msgstr "데이터베이스" @@ -782,12 +768,12 @@ msgstr "데이터베이스" msgid "Selected export type has to be saved in file!" msgstr "" -#: export.php:153 export.php:178 export.php:620 +#: export.php:152 export.php:177 export.php:615 #, php-format msgid "Insufficient space to save the file %s." msgstr "" -#: export.php:287 +#: export.php:286 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -795,38 +781,38 @@ msgstr "" "%s 라는 이름의 파일이 이미 서버에 존재합니다. 파일명을 변경하거나 덮어쓰기 옵" "션을 설정해주세요." -#: export.php:291 export.php:295 +#: export.php:290 export.php:294 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "" -#: export.php:622 +#: export.php:617 #, php-format msgid "Dump has been saved to file %s." msgstr "" -#: import.php:59 +#: 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." msgstr "" -#: import.php:278 import.php:331 libraries/File.class.php:840 -#: libraries/File.class.php:950 +#: import.php:277 import.php:330 libraries/File.class.php:566 +#: libraries/File.class.php:676 msgid "File could not be read" msgstr "파일을 읽을 수 없습니다" -#: import.php:286 import.php:295 import.php:314 import.php:323 -#: libraries/File.class.php:1020 libraries/File.class.php:1028 -#: libraries/File.class.php:1044 libraries/File.class.php:1052 +#: import.php:285 import.php:294 import.php:313 import.php:322 +#: libraries/File.class.php:746 libraries/File.class.php:754 +#: libraries/File.class.php:770 libraries/File.class.php:778 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." msgstr "" -#: import.php:336 +#: import.php:335 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -836,30 +822,30 @@ msgstr "" "대 파일 크기를 초과했을 수 있습니다. [a@./Documentation." "html#faq1_16@Documentation]FAQ 1.16[/a] 참조." -#: import.php:371 libraries/display_import.lib.php:23 +#: import.php:370 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "" "가져오기 플러그인을 로드할 수 없습니다. 올바로 설치되었는지 확인해주세요!" -#: import.php:396 +#: import.php:395 msgid "The bookmark has been deleted." msgstr "북마크를 제거했습니다." -#: import.php:400 +#: import.php:399 msgid "Showing bookmark" msgstr "" -#: import.php:402 sql.php:625 +#: import.php:401 sql.php:618 #, php-format msgid "Bookmark %s created" msgstr "" -#: import.php:408 import.php:414 +#: import.php:407 import.php:413 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "가져오기를 마쳤습니다. %d 쿼리가 실행되었습니다." -#: import.php:423 +#: import.php:422 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -867,25 +853,25 @@ msgstr "" "스크립트 타임아웃이 통보되었습니다. 가져오기를 이어서 계속 완료시키려면 같은 " "파일을 다시 전송해주십시오." -#: import.php:425 +#: import.php:424 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." msgstr "" -#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:240 +#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:239 #: user_password.php:110 msgid "Back" msgstr "뒤로" -#: index.php:188 +#: index.php:183 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin 은 프레임을 지원하는 브라우저에서 잘 보입니다." -#: js/messages.php:25 server_synchronize.php:344 server_synchronize.php:356 -#: server_synchronize.php:372 server_synchronize.php:379 -#: server_synchronize.php:738 server_synchronize.php:766 -#: server_synchronize.php:794 server_synchronize.php:806 +#: js/messages.php:25 server_synchronize.php:343 server_synchronize.php:355 +#: server_synchronize.php:371 server_synchronize.php:378 +#: server_synchronize.php:737 server_synchronize.php:765 +#: server_synchronize.php:793 server_synchronize.php:805 msgid "Click to select" msgstr "" @@ -893,15 +879,15 @@ msgstr "" msgid "Click to unselect" msgstr "" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:88 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:87 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" 구문은 허락되지 않습니다." -#: js/messages.php:30 libraries/mult_submits.inc.php:257 sql.php:187 +#: js/messages.php:30 libraries/mult_submits.inc.php:256 sql.php:186 msgid "Do you really want to " msgstr "정말로 다음을 실행하시겠습니까? " -#: js/messages.php:31 libraries/mult_submits.inc.php:257 sql.php:171 +#: js/messages.php:31 libraries/mult_submits.inc.php:256 sql.php:170 msgid "You are about to DESTROY a complete database!" msgstr "" @@ -930,11 +916,11 @@ msgstr "호스트명이 없습니다!" msgid "The user name is empty!" msgstr "사용자명이 없습니다!" -#: js/messages.php:44 server_privileges.php:1228 user_password.php:65 +#: js/messages.php:44 server_privileges.php:1229 user_password.php:65 msgid "The password is empty!" msgstr "암호가 비었습니다!" -#: js/messages.php:45 server_privileges.php:1226 user_password.php:68 +#: js/messages.php:45 server_privileges.php:1227 user_password.php:68 msgid "The passwords aren't the same!" msgstr "암호가 동일하지 않습니다!" @@ -942,27 +928,27 @@ msgstr "암호가 동일하지 않습니다!" msgid "Cancel" msgstr "" -#: js/messages.php:52 pmd_save_pos.php:53 +#: js/messages.php:52 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "수정된 내용이 저장되었습니다." -#: js/messages.php:53 pmd_relation_upd.php:48 +#: js/messages.php:53 pmd_relation_upd.php:47 msgid "Relation deleted" msgstr "" -#: js/messages.php:54 pmd_relation_new.php:63 +#: js/messages.php:54 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:55 pmd_relation_new.php:85 +#: js/messages.php:55 pmd_relation_new.php:84 msgid "Internal relation added" msgstr "" -#: js/messages.php:56 pmd_relation_new.php:62 pmd_relation_new.php:87 +#: js/messages.php:56 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:57 pmd_relation_new.php:30 +#: js/messages.php:57 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "" @@ -970,13 +956,13 @@ msgstr "" msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:59 libraries/relation.lib.php:94 -#: libraries/relation.lib.php:106 +#: js/messages.php:59 libraries/relation.lib.php:89 +#: libraries/relation.lib.php:101 msgid "General relation features" msgstr "" -#: js/messages.php:59 libraries/relation.lib.php:88 -#: libraries/relation.lib.php:95 +#: js/messages.php:59 libraries/relation.lib.php:83 +#: libraries/relation.lib.php:90 msgid "Disabled" msgstr "사용불가" @@ -992,7 +978,7 @@ msgstr "" msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:547 +#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" @@ -1019,10 +1005,10 @@ msgid "Prev" msgstr "이전" #. l10n: Display text for next month link in calendar -#: js/messages.php:81 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:337 -#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:422 -#: tbl_structure.php:800 +#: js/messages.php:81 libraries/common.lib.php:2358 +#: libraries/common.lib.php:2361 libraries/display_tbl.lib.php:336 +#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 +#: tbl_structure.php:798 msgid "Next" msgstr "다음" @@ -1080,63 +1066,63 @@ msgid "December" msgstr "12월" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1562 +#: js/messages.php:101 libraries/common.lib.php:1566 msgid "Jan" msgstr "1월" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1564 +#: js/messages.php:103 libraries/common.lib.php:1568 msgid "Feb" msgstr "2월" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1566 +#: js/messages.php:105 libraries/common.lib.php:1570 msgid "Mar" msgstr "3월" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1568 +#: js/messages.php:107 libraries/common.lib.php:1572 msgid "Apr" msgstr "4월" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1570 +#: js/messages.php:109 libraries/common.lib.php:1574 msgctxt "Short month name" msgid "May" msgstr "5월" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1572 +#: js/messages.php:111 libraries/common.lib.php:1576 msgid "Jun" msgstr "6월" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1574 +#: js/messages.php:113 libraries/common.lib.php:1578 msgid "Jul" msgstr "7월" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1576 +#: js/messages.php:115 libraries/common.lib.php:1580 msgid "Aug" msgstr "8월" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1578 +#: js/messages.php:117 libraries/common.lib.php:1582 msgid "Sep" msgstr "9월" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1580 +#: js/messages.php:119 libraries/common.lib.php:1584 msgid "Oct" msgstr "10월" #. l10n: Short month name -#: js/messages.php:121 libraries/common.lib.php:1582 +#: js/messages.php:121 libraries/common.lib.php:1586 msgid "Nov" msgstr "11월" #. l10n: Short month name -#: js/messages.php:123 libraries/common.lib.php:1584 +#: js/messages.php:123 libraries/common.lib.php:1588 msgid "Dec" msgstr "12월" @@ -1169,37 +1155,37 @@ msgid "Saturday" msgstr "토요일" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1587 +#: js/messages.php:136 libraries/common.lib.php:1591 msgid "Sun" msgstr "일" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1589 +#: js/messages.php:138 libraries/common.lib.php:1593 msgid "Mon" msgstr "월" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1591 +#: js/messages.php:140 libraries/common.lib.php:1595 msgid "Tue" msgstr "화" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1593 +#: js/messages.php:142 libraries/common.lib.php:1597 msgid "Wed" msgstr "수" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1595 +#: js/messages.php:144 libraries/common.lib.php:1599 msgid "Thu" msgstr "목" #. l10n: Short week day name -#: js/messages.php:146 libraries/common.lib.php:1597 +#: js/messages.php:146 libraries/common.lib.php:1601 msgid "Fri" msgstr "금" #. l10n: Short week day name -#: js/messages.php:148 libraries/common.lib.php:1599 +#: js/messages.php:148 libraries/common.lib.php:1603 msgid "Sat" msgstr "토" @@ -1259,40 +1245,39 @@ msgstr "초" msgid "Font size" msgstr "글꼴 크기" -#: libraries/File.class.php:336 libraries/File.class.php:424 -#: libraries/File.class.php:561 libraries/File.class.php:700 -msgid "Unknown error in file upload." -msgstr "파일 업로드 중에 알 수 없는 오류가 발생했습니다." - -#: libraries/File.class.php:406 +#: libraries/File.class.php:315 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "php.ini 파일에 지정된 upload_max_filesize 값보다 더 큰 파일이 업로드되었습니" "다." -#: libraries/File.class.php:409 +#: libraries/File.class.php:318 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:412 +#: libraries/File.class.php:321 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:415 +#: libraries/File.class.php:324 msgid "Missing a temporary folder." msgstr "임시 폴더가 없습니다." -#: libraries/File.class.php:418 +#: libraries/File.class.php:327 msgid "Failed to write file to disk." msgstr "디스크 쓰기에 실패했습니다." -#: libraries/File.class.php:421 +#: libraries/File.class.php:330 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:898 +#: libraries/File.class.php:333 +msgid "Unknown error in file upload." +msgstr "파일 업로드 중에 알 수 없는 오류가 발생했습니다." + +#: libraries/File.class.php:624 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -1300,38 +1285,38 @@ msgstr "" "업로드된 파일을 이동시킬 수 없었습니다. [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a] 참조." -#: libraries/Index.class.php:427 tbl_relation.php:528 +#: libraries/Index.class.php:427 tbl_relation.php:526 msgid "No index defined!" msgstr "인덱스가 설정되지 않았습니다!" -#: libraries/Index.class.php:432 server_databases.php:131 tbl_tracking.php:315 +#: libraries/Index.class.php:432 server_databases.php:129 tbl_tracking.php:310 msgid "Indexes" msgstr "인덱스" #: libraries/Index.class.php:443 libraries/mult_submits.inc.php:102 -#: libraries/tbl_properties.inc.php:518 tbl_structure.php:32 -#: tbl_structure.php:154 tbl_structure.php:158 tbl_structure.php:473 -#: tbl_tracking.php:321 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:31 +#: tbl_structure.php:153 tbl_structure.php:157 tbl_structure.php:471 +#: tbl_tracking.php:316 msgid "Unique" msgstr "고유값" -#: libraries/Index.class.php:444 tbl_tracking.php:322 +#: libraries/Index.class.php:444 tbl_tracking.php:317 msgid "Packed" msgstr "" -#: libraries/Index.class.php:446 tbl_tracking.php:324 +#: libraries/Index.class.php:446 tbl_tracking.php:319 msgid "Cardinality" msgstr "Cardinality" -#: libraries/Index.class.php:449 tbl_tracking.php:278 tbl_tracking.php:327 +#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322 #, fuzzy msgid "Comment" msgstr "설명(코멘트)" #: libraries/Index.class.php:465 libraries/common.lib.php:609 -#: libraries/common.lib.php:1198 libraries/display_tbl.lib.php:1116 +#: libraries/common.lib.php:1191 libraries/display_tbl.lib.php:1115 #: libraries/import.lib.php:1119 libraries/import.lib.php:1143 -#: pdf_pages.php:284 setup/frames/index.inc.php:124 +#: pdf_pages.php:283 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:349 tbl_row_action.php:68 msgid "Edit" msgstr "수정" @@ -1353,15 +1338,15 @@ msgid "" msgstr "" #: libraries/List_Database.class.php:430 libraries/server_links.inc.php:40 -#: server_databases.php:87 server_privileges.php:1652 +#: server_databases.php:85 server_privileges.php:1656 #: setup/lib/messages.inc.php:107 test/theme.php:92 msgid "Databases" msgstr "데이터베이스 " #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:259 libraries/import.lib.php:134 pdf_schema.php:31 -#: pdf_schema.php:231 tbl_change.php:1023 tbl_operations.php:212 -#: tbl_relation.php:289 view_operations.php:61 +#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 +#: tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "오류" @@ -1386,40 +1371,40 @@ msgid_plural "%1$d rows inserted." msgstr[0] "" msgstr[1] "" -#: libraries/StorageEngine.class.php:196 +#: libraries/StorageEngine.class.php:194 msgid "" "There is no detailed status information available for this storage engine." msgstr "" -#: libraries/StorageEngine.class.php:352 +#: libraries/StorageEngine.class.php:354 #, php-format msgid "%s is available on this MySQL server." msgstr "" -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:357 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "" -#: libraries/StorageEngine.class.php:359 +#: libraries/StorageEngine.class.php:361 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "이 MySQL 서버는 %s 스토리지 엔진을 지원하지 않습니다." -#: libraries/Table.class.php:1018 +#: libraries/Table.class.php:1017 msgid "Invalid database" msgstr "" -#: libraries/Table.class.php:1032 tbl_get_field.php:25 +#: libraries/Table.class.php:1031 tbl_get_field.php:25 msgid "Invalid table name" msgstr "" -#: libraries/Table.class.php:1047 +#: libraries/Table.class.php:1046 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "" -#: libraries/Table.class.php:1131 +#: libraries/Table.class.php:1129 #, php-format msgid "Table %s has been renamed to %s" msgstr "테이블 %s을(를) %s(으)로 변경하였습니다." @@ -1437,22 +1422,22 @@ msgstr "" msgid "take it" msgstr "" -#: libraries/Theme_Manager.class.php:114 +#: libraries/Theme_Manager.class.php:109 #, php-format msgid "Default theme %s not found!" msgstr "" -#: libraries/Theme_Manager.class.php:152 +#: libraries/Theme_Manager.class.php:147 #, php-format msgid "Theme %s not found!" msgstr "" -#: libraries/Theme_Manager.class.php:220 +#: libraries/Theme_Manager.class.php:215 #, php-format msgid "Theme path not found for theme %s!" msgstr "" -#: libraries/Theme_Manager.class.php:296 test/theme.php:160 themes.php:20 +#: libraries/Theme_Manager.class.php:291 test/theme.php:160 themes.php:20 #: themes.php:40 msgid "Theme / Style" msgstr "" @@ -1562,19 +1547,19 @@ msgstr "" msgid "Authenticating..." msgstr "인증중입니다..." -#: libraries/blobstreaming.lib.php:689 +#: libraries/blobstreaming.lib.php:340 msgid "View image" msgstr "" -#: libraries/blobstreaming.lib.php:693 +#: libraries/blobstreaming.lib.php:344 msgid "Play audio" msgstr "" -#: libraries/blobstreaming.lib.php:698 +#: libraries/blobstreaming.lib.php:349 msgid "View video" msgstr "" -#: libraries/blobstreaming.lib.php:702 +#: libraries/blobstreaming.lib.php:353 msgid "Download file" msgstr "" @@ -1624,7 +1609,7 @@ msgstr "서버" msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:909 +#: libraries/common.inc.php:908 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" @@ -1649,7 +1634,8 @@ msgstr "ko" #: libraries/common.lib.php:425 libraries/common.lib.php:427 #: libraries/common.lib.php:429 libraries/common.lib.php:445 #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 -#: libraries/display_export.lib.php:163 libraries/relation.lib.php:84 +#: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 +#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 #: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" @@ -1664,146 +1650,146 @@ msgstr "SQL 질의" msgid "MySQL said: " msgstr "MySQL 메시지: " -#: libraries/common.lib.php:1136 +#: libraries/common.lib.php:1129 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1174 setup/lib/messages.inc.php:350 +#: libraries/common.lib.php:1167 setup/lib/messages.inc.php:350 msgid "Explain SQL" msgstr "SQL 해석" -#: libraries/common.lib.php:1177 +#: libraries/common.lib.php:1170 msgid "Skip Explain SQL" msgstr "해석(EXPLAIN) 생략" -#: libraries/common.lib.php:1211 +#: libraries/common.lib.php:1204 msgid "Without PHP Code" msgstr "PHP 코드 없이 보기" -#: libraries/common.lib.php:1214 setup/lib/messages.inc.php:352 +#: libraries/common.lib.php:1207 setup/lib/messages.inc.php:352 msgid "Create PHP Code" msgstr "PHP 코드 보기" -#: libraries/common.lib.php:1232 server_status.php:451 +#: libraries/common.lib.php:1225 server_status.php:451 #: setup/lib/messages.inc.php:351 msgid "Refresh" msgstr "" -#: libraries/common.lib.php:1241 +#: libraries/common.lib.php:1234 msgid "Skip Validate SQL" msgstr "SQL 검사 생략" -#: libraries/common.lib.php:1244 setup/lib/messages.inc.php:353 +#: libraries/common.lib.php:1237 setup/lib/messages.inc.php:353 msgid "Validate SQL" msgstr "SQL 검사" -#: libraries/common.lib.php:1283 +#: libraries/common.lib.php:1287 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1285 +#: libraries/common.lib.php:1289 msgid "Inline" msgstr "" -#: libraries/common.lib.php:1339 libraries/common.lib.php:1354 +#: libraries/common.lib.php:1343 libraries/common.lib.php:1358 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1358 libraries/tbl_triggers.lib.php:27 +#: libraries/common.lib.php:1362 libraries/tbl_triggers.lib.php:27 #: server_processlist.php:57 msgid "Time" msgstr "시간" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "B" msgstr "B" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "KiB" msgstr "KB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "MiB" msgstr "MB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "GiB" msgstr "GB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "TiB" msgstr "TB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "PiB" msgstr "PB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "EiB" msgstr "EB" #. l10n: Thousands separator -#: libraries/common.lib.php:1424 +#: libraries/common.lib.php:1428 msgid "," msgstr "," #. l10n: Decimal separator -#: libraries/common.lib.php:1426 +#: libraries/common.lib.php:1430 msgid "." msgstr "." #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1603 +#: libraries/common.lib.php:1607 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%y-%m-%d %H:%M " -#: libraries/common.lib.php:1909 +#: libraries/common.lib.php:1913 #, fuzzy, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s일 %s시간 %분 %초" -#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 -#: libraries/display_tbl.lib.php:289 server_status.php:718 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 +#: libraries/display_tbl.lib.php:288 server_status.php:718 msgid "Begin" msgstr "처음" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 -#: libraries/display_tbl.lib.php:290 server_binlog.php:154 +#: libraries/common.lib.php:2328 libraries/common.lib.php:2331 +#: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "이전" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 -#: libraries/display_tbl.lib.php:352 +#: libraries/common.lib.php:2359 libraries/common.lib.php:2362 +#: libraries/display_tbl.lib.php:351 msgid "End" msgstr "마지막" -#: libraries/common.lib.php:2429 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "데이터베이스 "%s" 로 이동." -#: libraries/common.lib.php:2448 +#: libraries/common.lib.php:2453 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2828 libraries/common.lib.php:2835 -#: libraries/db_links.inc.php:67 libraries/export/sql.php:24 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 +#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 -#: libraries/tbl_links.inc.php:59 querywindow.php:89 test/theme.php:96 +#: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2837 libraries/db_links.inc.php:103 -#: libraries/tbl_links.inc.php:94 libraries/tbl_links.inc.php:116 -#: view_operations.php:88 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: view_operations.php:87 msgid "Operations" msgstr "테이블 작업" -#: libraries/core.lib.php:282 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1819,39 +1805,39 @@ msgstr "" msgid "Name" msgstr "이름" -#: libraries/db_links.inc.php:44 +#: libraries/db_links.inc.php:43 #, php-format msgid "Database %s has been dropped." msgstr "데이터베이스 %s 를 제거했습니다." -#: libraries/db_links.inc.php:56 libraries/db_links.inc.php:57 -#: libraries/db_links.inc.php:58 +#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 +#: libraries/db_links.inc.php:57 msgid "Database seems to be empty!" msgstr "" -#: libraries/db_links.inc.php:80 libraries/relation.lib.php:142 -#: libraries/tbl_links.inc.php:68 +#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:85 +#: libraries/db_links.inc.php:84 msgid "Query" msgstr "질의 마법사" -#: libraries/db_links.inc.php:90 libraries/relation.lib.php:138 +#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:97 libraries/server_links.inc.php:87 -#: libraries/tbl_links.inc.php:90 pmd_pdf.php:83 pmd_pdf.php:109 +#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 #, fuzzy msgid "Import" msgstr "내보내기" -#: libraries/db_links.inc.php:110 libraries/server_links.inc.php:65 -#: server_privileges.php:111 server_privileges.php:1714 -#: server_privileges.php:2063 test/theme.php:116 +#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: server_privileges.php:110 server_privileges.php:1718 +#: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" msgstr "사용권한" @@ -1863,14 +1849,14 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1847 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1806 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "" -#: libraries/db_structure.lib.php:60 server_databases.php:141 -#: tbl_printview.php:334 tbl_structure.php:681 +#: libraries/db_structure.lib.php:60 server_databases.php:139 +#: tbl_printview.php:333 tbl_structure.php:679 msgid "Overhead" msgstr "부담" @@ -1887,7 +1873,7 @@ msgstr "서버 응답이 없습니다" msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "" -#: libraries/dbi/mysql.dbi.lib.php:358 tbl_structure.php:607 +#: libraries/dbi/mysql.dbi.lib.php:358 tbl_structure.php:605 msgid "Details..." msgstr "" @@ -1897,22 +1883,22 @@ msgid "Change password" msgstr "암호 변경" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:807 +#: libraries/replication_gui.lib.php:347 server_privileges.php:806 msgid "No Password" msgstr "암호 없음" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1530 server_synchronize.php:1174 +#: libraries/replication_gui.lib.php:351 server_privileges.php:795 +#: server_privileges.php:799 server_privileges.php:810 +#: server_privileges.php:1534 server_synchronize.php:1173 msgid "Password" msgstr "암호" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:815 server_privileges.php:818 +#: server_privileges.php:814 server_privileges.php:817 msgid "Re-type" msgstr "재입력" @@ -1933,8 +1919,8 @@ msgstr "새 데이터베이스 만들기" msgid "Create" msgstr " 만들기 " -#: libraries/display_create_database.lib.php:39 server_privileges.php:113 -#: server_privileges.php:1419 server_replication.php:34 +#: libraries/display_create_database.lib.php:39 server_privileges.php:112 +#: server_privileges.php:1423 server_replication.php:33 msgid "No Privileges" msgstr "권한 없음" @@ -1951,51 +1937,51 @@ msgstr "데이터베이스 %s에 새로운 테이블을 만듭니다." msgid "Number of columns" msgstr "컬럼수" -#: libraries/display_export.lib.php:41 +#: libraries/display_export.lib.php:35 msgid "Could not load export plugins, please check your installation!" msgstr "" "내보내기 플러그인을 로드할 수 없습니다. 올바로 설치되었는지 확인해주세요!" -#: libraries/display_export.lib.php:106 +#: libraries/display_export.lib.php:100 #, fuzzy, php-format #| msgid "Dump %s row(s) starting at record # %s" msgid "Dump %s row(s) starting at row # %s" msgstr "%s개의 행(레코드)을 덤프 (%s번째 레코드부터)." -#: libraries/display_export.lib.php:114 +#: libraries/display_export.lib.php:108 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:124 setup/lib/messages.inc.php:79 +#: libraries/display_export.lib.php:118 setup/lib/messages.inc.php:79 msgid "Save as file" msgstr "파일로 저장" -#: libraries/display_export.lib.php:133 +#: libraries/display_export.lib.php:127 #, php-format msgid "Save on server in %s directory" msgstr "서버의 %s 디렉토리에 저장" -#: libraries/display_export.lib.php:141 setup/lib/messages.inc.php:87 +#: libraries/display_export.lib.php:135 setup/lib/messages.inc.php:87 msgid "Overwrite existing file(s)" msgstr "" -#: libraries/display_export.lib.php:147 +#: libraries/display_export.lib.php:141 msgid "File name template" msgstr "파일명 템플릿" -#: libraries/display_export.lib.php:151 +#: libraries/display_export.lib.php:145 msgid "server name" msgstr "서버명" -#: libraries/display_export.lib.php:154 +#: libraries/display_export.lib.php:148 msgid "database name" msgstr "데이터베이스명" -#: libraries/display_export.lib.php:157 +#: libraries/display_export.lib.php:151 msgid "table name" msgstr "테이블명" -#: libraries/display_export.lib.php:161 +#: libraries/display_export.lib.php:155 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2003,39 +1989,39 @@ msgid "" "%3$s. Other text will be kept as is." msgstr "" -#: libraries/display_export.lib.php:202 +#: libraries/display_export.lib.php:196 msgid "remember template" msgstr "템플릿 기억" -#: libraries/display_export.lib.php:210 libraries/display_import.lib.php:177 +#: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 #: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 msgid "Character set of the file:" msgstr "파일 문자셋:" -#: libraries/display_export.lib.php:235 setup/lib/messages.inc.php:81 +#: libraries/display_export.lib.php:229 setup/lib/messages.inc.php:81 msgid "Compression" msgstr "압축" -#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:196 -#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:529 -#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:574 -#: server_privileges.php:1867 server_processlist.php:74 +#: libraries/display_export.lib.php:234 libraries/display_import.lib.php:196 +#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:528 +#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:573 +#: server_privileges.php:1871 server_processlist.php:74 msgid "None" msgstr "없음" -#: libraries/display_export.lib.php:247 +#: libraries/display_export.lib.php:241 msgid "\"zipped\"" msgstr "zip 압축" -#: libraries/display_export.lib.php:253 +#: libraries/display_export.lib.php:247 msgid "\"gzipped\"" msgstr "gz 압축" -#: libraries/display_export.lib.php:259 +#: libraries/display_export.lib.php:253 msgid "\"bzipped\"" msgstr "\"bz 압축\"" -#: libraries/display_export.lib.php:274 libraries/export/sql.php:42 +#: libraries/display_export.lib.php:268 libraries/export/sql.php:42 #: libraries/import/sql.php:31 msgid "SQL compatibility mode" msgstr "" @@ -2070,12 +2056,12 @@ msgid "File uploads are not allowed on this server." msgstr "" #: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 -#: tbl_change.php:1024 +#: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "업로드 디렉토리에 접근할 수 없습니다" #: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 -#: tbl_change.php:1027 +#: tbl_change.php:925 msgid "web server upload directory" msgstr "웹서버 업로드 디렉토리" @@ -2155,43 +2141,43 @@ msgstr "" msgid "Language" msgstr "언어" -#: libraries/display_tbl.lib.php:303 +#: libraries/display_tbl.lib.php:302 #, php-format msgid "%d is not valid row number." msgstr "" -#: libraries/display_tbl.lib.php:309 +#: libraries/display_tbl.lib.php:308 #, fuzzy #| msgid "row(s) starting from record #" msgid "row(s) starting from row #" msgstr "행. 시작(행)위치" -#: libraries/display_tbl.lib.php:315 +#: libraries/display_tbl.lib.php:314 msgid "horizontal" msgstr "수평(가로)" -#: libraries/display_tbl.lib.php:316 +#: libraries/display_tbl.lib.php:315 msgid "horizontal (rotated headers)" msgstr "수평 (rotated headers)" -#: libraries/display_tbl.lib.php:317 +#: libraries/display_tbl.lib.php:316 msgid "vertical" msgstr "수직(세로)" -#: libraries/display_tbl.lib.php:323 +#: libraries/display_tbl.lib.php:322 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr " %s 정렬 (%s 칸이 넘으면 헤더 반복)" -#: libraries/display_tbl.lib.php:345 +#: libraries/display_tbl.lib.php:344 msgid "This operation could take a long time. Proceed anyway?" msgstr "" -#: libraries/display_tbl.lib.php:511 +#: libraries/display_tbl.lib.php:510 msgid "Sort by key" msgstr "" -#: libraries/display_tbl.lib.php:554 libraries/export/codegen.php:38 +#: libraries/display_tbl.lib.php:553 libraries/export/codegen.php:38 #: libraries/export/csv.php:29 libraries/export/excel.php:34 #: libraries/export/htmlword.php:28 libraries/export/latex.php:32 #: libraries/export/mediawiki.php:21 libraries/export/ods.php:26 @@ -2201,98 +2187,98 @@ msgstr "" #: libraries/export/xlsx.php:26 libraries/export/xml.php:23 #: libraries/export/yaml.php:27 libraries/import.lib.php:1114 #: libraries/import.lib.php:1136 libraries/import/csv.php:31 -#: libraries/import/docsql.php:33 libraries/import/ldi.php:46 +#: libraries/import/docsql.php:32 libraries/import/ldi.php:46 #: libraries/import/ods.php:30 libraries/import/sql.php:19 #: libraries/import/xls.php:25 libraries/import/xlsx.php:25 -#: libraries/import/xml.php:25 tbl_select.php:264 tbl_structure.php:752 +#: libraries/import/xml.php:25 tbl_select.php:263 tbl_structure.php:750 #, fuzzy msgid "Options" msgstr "테이블 작업" -#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:569 +#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:568 msgid "Partial Texts" msgstr "Partial Texts" -#: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:573 +#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:572 msgid "Full Texts" msgstr "Full Texts" -#: libraries/display_tbl.lib.php:586 +#: libraries/display_tbl.lib.php:585 msgid "Relational key" msgstr "" -#: libraries/display_tbl.lib.php:587 +#: libraries/display_tbl.lib.php:586 msgid "Relational display column" msgstr "" -#: libraries/display_tbl.lib.php:594 +#: libraries/display_tbl.lib.php:593 msgid "Show binary contents" msgstr "" -#: libraries/display_tbl.lib.php:596 +#: libraries/display_tbl.lib.php:595 msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:598 +#: libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "" -#: libraries/display_tbl.lib.php:606 pmd_general.php:140 tbl_change.php:312 -#: tbl_change.php:318 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:307 +#: tbl_change.php:313 msgid "Hide" msgstr "" -#: libraries/display_tbl.lib.php:606 libraries/relation.lib.php:122 -#: libraries/tbl_properties.inc.php:143 transformation_overview.php:46 +#: libraries/display_tbl.lib.php:605 libraries/relation.lib.php:117 +#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46 msgid "Browser transformation" msgstr "" -#: libraries/display_tbl.lib.php:1125 libraries/display_tbl.lib.php:1129 -#: libraries/display_tbl.lib.php:1131 +#: libraries/display_tbl.lib.php:1124 libraries/display_tbl.lib.php:1128 +#: libraries/display_tbl.lib.php:1130 msgid "Execute bookmarked query" msgstr "" -#: libraries/display_tbl.lib.php:1144 libraries/display_tbl.lib.php:1156 +#: libraries/display_tbl.lib.php:1143 libraries/display_tbl.lib.php:1155 msgid "The row has been deleted" msgstr "선택한 줄(레코드)을 삭제 하였습니다." -#: libraries/display_tbl.lib.php:1183 libraries/display_tbl.lib.php:2055 +#: libraries/display_tbl.lib.php:1182 libraries/display_tbl.lib.php:2014 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "Kill" -#: libraries/display_tbl.lib.php:1933 +#: libraries/display_tbl.lib.php:1892 msgid "in query" msgstr "질의(in query)" -#: libraries/display_tbl.lib.php:1951 +#: libraries/display_tbl.lib.php:1910 msgid "Showing rows" msgstr "행(레코드) 보기" -#: libraries/display_tbl.lib.php:1961 +#: libraries/display_tbl.lib.php:1920 msgid "total" msgstr "합계" -#: libraries/display_tbl.lib.php:1969 sql.php:523 +#: libraries/display_tbl.lib.php:1928 sql.php:522 #, php-format msgid "Query took %01.4f sec" msgstr "질의 실행시간 %01.4f 초" -#: libraries/display_tbl.lib.php:2088 libraries/mult_submits.inc.php:112 -#: querywindow.php:115 querywindow.php:119 querywindow.php:122 -#: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:469 +#: libraries/display_tbl.lib.php:2047 libraries/mult_submits.inc.php:112 +#: querywindow.php:114 querywindow.php:118 querywindow.php:121 +#: tbl_structure.php:23 tbl_structure.php:148 tbl_structure.php:467 msgid "Change" msgstr "변경" -#: libraries/display_tbl.lib.php:2158 +#: libraries/display_tbl.lib.php:2117 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2186 +#: libraries/display_tbl.lib.php:2145 msgid "Print view (with full texts)" msgstr "" -#: libraries/display_tbl.lib.php:2359 +#: libraries/display_tbl.lib.php:2318 msgid "Link not found" msgstr "" @@ -2345,9 +2331,9 @@ msgstr "" msgid "Buffer Pool Usage" msgstr "" -#: libraries/engines/innodb.lib.php:168 server_databases.php:136 -#: server_databases.php:304 server_status.php:524 server_status.php:585 -#: server_status.php:606 tbl_printview.php:349 tbl_structure.php:695 +#: libraries/engines/innodb.lib.php:168 server_databases.php:134 +#: server_databases.php:302 server_status.php:524 server_status.php:585 +#: server_status.php:606 tbl_printview.php:348 tbl_structure.php:693 msgid "Total" msgstr "전체 사용량" @@ -2470,6 +2456,78 @@ msgid "" "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." msgstr "" +#: libraries/engines/pbms.lib.php:31 +msgid "Garbage Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:32 +msgid "The percentage of garbage in a repository file before it is compacted." +msgstr "" + +#: libraries/engines/pbms.lib.php:36 libraries/replication_gui.lib.php:69 +#: server_synchronize.php:1161 +#, fuzzy +msgid "Port" +msgstr "정렬" + +#: libraries/engines/pbms.lib.php:37 +msgid "" +"The port for the PBMS stream-based communications. Setting this value to 0 " +"will disable HTTP communication with the daemon." +msgstr "" + +#: libraries/engines/pbms.lib.php:41 +msgid "Repository Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:42 +msgid "" +"The maximum size of a BLOB repository file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:46 +msgid "Temp Blob Timeout" +msgstr "" + +#: libraries/engines/pbms.lib.php:47 +msgid "" +"The timeout, in seconds, for temporary BLOBs. Uploaded BLOB data is removed " +"after this time, unless they are referenced by a record in the database." +msgstr "" + +#: libraries/engines/pbms.lib.php:51 +msgid "Temp Log Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:52 +msgid "" +"The maximum size of a temporary BLOB log file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:56 +msgid "Max Keep Alive" +msgstr "" + +#: libraries/engines/pbms.lib.php:57 +msgid "" +"The timeout for inactive connection with the keep-alive flag set. After this " +"time the connection will be closed. The time-out is in milliseconds (1/1000)." +msgstr "" + +#: libraries/engines/pbms.lib.php:61 +msgid "Metadata Headers" +msgstr "" + +#: libraries/engines/pbms.lib.php:62 +msgid "" +"A \":\" delimited list of metadata headers to be used to initialize the " +"pbms_metadata_header table when a database is created." +msgstr "" + #: libraries/engines/pbxt.lib.php:22 msgid "Index cache size" msgstr "" @@ -2593,7 +2651,7 @@ msgid "" msgstr "" #: libraries/export/codegen.php:36 setup/lib/messages.inc.php:85 -#: tbl_printview.php:374 tbl_structure.php:736 +#: tbl_printview.php:373 tbl_structure.php:734 msgid "Format" msgstr "Format" @@ -2664,9 +2722,9 @@ msgstr "" #: libraries/export/htmlword.php:23 libraries/export/latex.php:59 #: libraries/export/latex.php:205 libraries/export/odt.php:47 #: libraries/export/sql.php:105 libraries/export/sql.php:865 -#: libraries/export/texytext.php:27 server_databases.php:126 -#: server_privileges.php:576 server_replication.php:315 tbl_printview.php:315 -#: tbl_structure.php:664 +#: libraries/export/texytext.php:27 server_databases.php:124 +#: server_privileges.php:575 server_replication.php:314 tbl_printview.php:314 +#: tbl_structure.php:662 msgid "Data" msgstr "데이터" @@ -2716,14 +2774,14 @@ msgid "Label key" msgstr "" #: libraries/export/latex.php:46 libraries/export/odt.php:34 -#: libraries/export/sql.php:90 tbl_relation.php:398 +#: libraries/export/sql.php:90 tbl_relation.php:396 #, fuzzy msgid "Relations" msgstr "테이블 작업" #: libraries/export/latex.php:52 libraries/export/odt.php:40 #: libraries/export/odt.php:317 libraries/export/sql.php:94 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "" @@ -2731,10 +2789,10 @@ msgstr "" #: libraries/export/xml.php:101 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1529 server_privileges.php:2061 -#: server_processlist.php:54 server_synchronize.php:1158 +#: libraries/replication_gui.lib.php:331 server_privileges.php:730 +#: server_privileges.php:733 server_privileges.php:789 +#: server_privileges.php:1533 server_privileges.php:2065 +#: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "호스트" @@ -2927,8 +2985,8 @@ msgstr "" msgid "Export contents" msgstr "" -#: libraries/footer.inc.php:182 libraries/footer.inc.php:193 -#: libraries/footer.inc.php:196 +#: libraries/footer.inc.php:180 libraries/footer.inc.php:191 +#: libraries/footer.inc.php:194 msgid "Open new phpMyAdmin window" msgstr "" @@ -2945,7 +3003,7 @@ msgstr "SQL 결과" msgid "Generated by" msgstr "" -#: libraries/import.lib.php:151 sql.php:519 tbl_change.php:180 +#: libraries/import.lib.php:151 sql.php:518 tbl_change.php:175 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "결과값이 없습니다. (빈 레코드 리턴.)" @@ -3003,7 +3061,7 @@ msgstr "" msgid "Column names in first row" msgstr "" -#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:501 +#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:500 #: view_create.php:147 msgid "Column names" msgstr "열(칼럼) 이름" @@ -3029,12 +3087,12 @@ msgstr "" msgid "Invalid column count in CSV input on line %d." msgstr "" -#: libraries/import/docsql.php:28 +#: libraries/import/docsql.php:27 msgid "DocSQL" msgstr "" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 -#: server_synchronize.php:427 server_synchronize.php:870 +#: libraries/import/docsql.php:30 libraries/tbl_properties.inc.php:616 +#: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "" @@ -3090,26 +3148,26 @@ msgstr "없음" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:512 -#: tbl_structure.php:28 tbl_structure.php:152 tbl_structure.php:156 -#: tbl_structure.php:472 +#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:511 +#: tbl_structure.php:27 tbl_structure.php:151 tbl_structure.php:155 +#: tbl_structure.php:470 msgid "Primary" msgstr "기본" #: libraries/mult_submits.inc.php:97 libraries/tbl_properties.inc.php:115 -#: libraries/tbl_properties.inc.php:524 tbl_printview.php:324 -#: tbl_structure.php:30 tbl_structure.php:153 tbl_structure.php:157 -#: tbl_structure.php:474 tbl_structure.php:672 +#: libraries/tbl_properties.inc.php:523 tbl_printview.php:323 +#: tbl_structure.php:29 tbl_structure.php:152 tbl_structure.php:156 +#: tbl_structure.php:472 tbl_structure.php:670 msgid "Index" msgstr "인덱스" -#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:530 -#: tbl_structure.php:34 tbl_structure.php:155 tbl_structure.php:159 -#: tbl_structure.php:477 +#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:529 +#: tbl_structure.php:33 tbl_structure.php:154 tbl_structure.php:158 +#: tbl_structure.php:475 msgid "Fulltext" msgstr "Fulltext" -#: libraries/mult_submits.inc.php:434 tbl_replace.php:330 +#: libraries/mult_submits.inc.php:433 tbl_replace.php:330 msgid "No change" msgstr "변화 없음" @@ -3117,192 +3175,192 @@ msgstr "변화 없음" msgid "Charset" msgstr "" -#: libraries/mysql_charsets.lib.php:210 libraries/mysql_charsets.lib.php:411 -#: tbl_change.php:515 +#: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 +#: tbl_change.php:510 msgid "Binary" msgstr "바이너리" -#: libraries/mysql_charsets.lib.php:222 +#: libraries/mysql_charsets.lib.php:214 msgid "Bulgarian" msgstr "" -#: libraries/mysql_charsets.lib.php:226 libraries/mysql_charsets.lib.php:351 +#: libraries/mysql_charsets.lib.php:218 libraries/mysql_charsets.lib.php:343 msgid "Simplified Chinese" msgstr "" -#: libraries/mysql_charsets.lib.php:228 libraries/mysql_charsets.lib.php:371 +#: libraries/mysql_charsets.lib.php:220 libraries/mysql_charsets.lib.php:363 msgid "Traditional Chinese" msgstr "" -#: libraries/mysql_charsets.lib.php:232 libraries/mysql_charsets.lib.php:418 +#: libraries/mysql_charsets.lib.php:224 libraries/mysql_charsets.lib.php:410 msgid "case-insensitive" msgstr "" -#: libraries/mysql_charsets.lib.php:235 libraries/mysql_charsets.lib.php:420 +#: libraries/mysql_charsets.lib.php:227 libraries/mysql_charsets.lib.php:412 msgid "case-sensitive" msgstr "" -#: libraries/mysql_charsets.lib.php:238 +#: libraries/mysql_charsets.lib.php:230 #, fuzzy msgid "Croatian" msgstr "생성" -#: libraries/mysql_charsets.lib.php:241 +#: libraries/mysql_charsets.lib.php:233 msgid "Czech" msgstr "" -#: libraries/mysql_charsets.lib.php:244 +#: libraries/mysql_charsets.lib.php:236 msgid "Danish" msgstr "" -#: libraries/mysql_charsets.lib.php:247 +#: libraries/mysql_charsets.lib.php:239 msgid "English" msgstr "" -#: libraries/mysql_charsets.lib.php:250 +#: libraries/mysql_charsets.lib.php:242 msgid "Esperanto" msgstr "" -#: libraries/mysql_charsets.lib.php:253 +#: libraries/mysql_charsets.lib.php:245 msgid "Estonian" msgstr "" -#: libraries/mysql_charsets.lib.php:256 libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:248 libraries/mysql_charsets.lib.php:251 msgid "German" msgstr "" -#: libraries/mysql_charsets.lib.php:256 +#: libraries/mysql_charsets.lib.php:248 #, fuzzy msgid "dictionary" msgstr "데이터 사전 (전체 구조보기)" -#: libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:251 msgid "phone book" msgstr "" -#: libraries/mysql_charsets.lib.php:262 +#: libraries/mysql_charsets.lib.php:254 msgid "Hungarian" msgstr "" -#: libraries/mysql_charsets.lib.php:265 +#: libraries/mysql_charsets.lib.php:257 msgid "Icelandic" msgstr "" -#: libraries/mysql_charsets.lib.php:268 libraries/mysql_charsets.lib.php:358 +#: libraries/mysql_charsets.lib.php:260 libraries/mysql_charsets.lib.php:350 msgid "Japanese" msgstr "" -#: libraries/mysql_charsets.lib.php:271 +#: libraries/mysql_charsets.lib.php:263 msgid "Latvian" msgstr "" -#: libraries/mysql_charsets.lib.php:274 +#: libraries/mysql_charsets.lib.php:266 msgid "Lithuanian" msgstr "" -#: libraries/mysql_charsets.lib.php:277 libraries/mysql_charsets.lib.php:380 +#: libraries/mysql_charsets.lib.php:269 libraries/mysql_charsets.lib.php:372 msgid "Korean" msgstr "" -#: libraries/mysql_charsets.lib.php:280 +#: libraries/mysql_charsets.lib.php:272 msgid "Persian" msgstr "" -#: libraries/mysql_charsets.lib.php:283 +#: libraries/mysql_charsets.lib.php:275 msgid "Polish" msgstr "" -#: libraries/mysql_charsets.lib.php:286 libraries/mysql_charsets.lib.php:334 +#: libraries/mysql_charsets.lib.php:278 libraries/mysql_charsets.lib.php:326 msgid "West European" msgstr "" -#: libraries/mysql_charsets.lib.php:289 +#: libraries/mysql_charsets.lib.php:281 msgid "Romanian" msgstr "" -#: libraries/mysql_charsets.lib.php:292 +#: libraries/mysql_charsets.lib.php:284 msgid "Slovak" msgstr "" -#: libraries/mysql_charsets.lib.php:295 +#: libraries/mysql_charsets.lib.php:287 msgid "Slovenian" msgstr "" -#: libraries/mysql_charsets.lib.php:298 +#: libraries/mysql_charsets.lib.php:290 msgid "Spanish" msgstr "" -#: libraries/mysql_charsets.lib.php:301 +#: libraries/mysql_charsets.lib.php:293 msgid "Traditional Spanish" msgstr "" -#: libraries/mysql_charsets.lib.php:304 libraries/mysql_charsets.lib.php:401 +#: libraries/mysql_charsets.lib.php:296 libraries/mysql_charsets.lib.php:393 msgid "Swedish" msgstr "" -#: libraries/mysql_charsets.lib.php:307 libraries/mysql_charsets.lib.php:404 +#: libraries/mysql_charsets.lib.php:299 libraries/mysql_charsets.lib.php:396 msgid "Thai" msgstr "" -#: libraries/mysql_charsets.lib.php:310 libraries/mysql_charsets.lib.php:398 +#: libraries/mysql_charsets.lib.php:302 libraries/mysql_charsets.lib.php:390 msgid "Turkish" msgstr "" -#: libraries/mysql_charsets.lib.php:313 libraries/mysql_charsets.lib.php:395 +#: libraries/mysql_charsets.lib.php:305 libraries/mysql_charsets.lib.php:387 msgid "Ukrainian" msgstr "" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 msgid "Unicode" msgstr "" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 -#: libraries/mysql_charsets.lib.php:334 libraries/mysql_charsets.lib.php:341 -#: libraries/mysql_charsets.lib.php:363 libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 +#: libraries/mysql_charsets.lib.php:326 libraries/mysql_charsets.lib.php:333 +#: libraries/mysql_charsets.lib.php:355 libraries/mysql_charsets.lib.php:366 msgid "multilingual" msgstr "" -#: libraries/mysql_charsets.lib.php:341 +#: libraries/mysql_charsets.lib.php:333 msgid "Central European" msgstr "" -#: libraries/mysql_charsets.lib.php:346 +#: libraries/mysql_charsets.lib.php:338 msgid "Russian" msgstr "" -#: libraries/mysql_charsets.lib.php:363 +#: libraries/mysql_charsets.lib.php:355 msgid "Baltic" msgstr "" -#: libraries/mysql_charsets.lib.php:368 +#: libraries/mysql_charsets.lib.php:360 msgid "Armenian" msgstr "" -#: libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:366 msgid "Cyrillic" msgstr "" -#: libraries/mysql_charsets.lib.php:377 +#: libraries/mysql_charsets.lib.php:369 msgid "Arabic" msgstr "" -#: libraries/mysql_charsets.lib.php:383 +#: libraries/mysql_charsets.lib.php:375 msgid "Hebrew" msgstr "" -#: libraries/mysql_charsets.lib.php:386 +#: libraries/mysql_charsets.lib.php:378 msgid "Georgian" msgstr "" -#: libraries/mysql_charsets.lib.php:389 +#: libraries/mysql_charsets.lib.php:381 msgid "Greek" msgstr "" -#: libraries/mysql_charsets.lib.php:392 +#: libraries/mysql_charsets.lib.php:384 msgid "Czech-Slovak" msgstr "" -#: libraries/mysql_charsets.lib.php:407 libraries/mysql_charsets.lib.php:414 +#: libraries/mysql_charsets.lib.php:399 libraries/mysql_charsets.lib.php:406 msgid "unknown" msgstr "" @@ -3328,67 +3386,67 @@ msgstr "질의 창" msgid "This format has no options" msgstr "" -#: libraries/relation.lib.php:82 +#: libraries/relation.lib.php:77 msgid "not OK" msgstr "" -#: libraries/relation.lib.php:86 pmd_general.php:339 +#: libraries/relation.lib.php:81 pmd_general.php:339 msgid "OK" msgstr "" -#: libraries/relation.lib.php:87 +#: libraries/relation.lib.php:82 msgid "Enabled" msgstr "사용가능" -#: libraries/relation.lib.php:110 +#: libraries/relation.lib.php:105 msgid "Display Features" msgstr "" -#: libraries/relation.lib.php:116 +#: libraries/relation.lib.php:111 msgid "Creation of PDFs" msgstr "" -#: libraries/relation.lib.php:120 +#: libraries/relation.lib.php:115 msgid "Displaying Column Comments" msgstr "열(칼럼) 설명(코멘트) 출력하기" -#: libraries/relation.lib.php:125 +#: libraries/relation.lib.php:120 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" -#: libraries/relation.lib.php:130 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 msgid "Bookmarked SQL query" msgstr "북마크된 SQL 질의" -#: libraries/relation.lib.php:134 querywindow.php:99 querywindow.php:207 +#: libraries/relation.lib.php:129 querywindow.php:98 querywindow.php:205 msgid "SQL history" msgstr "SQL 내력(히스토리)" -#: libraries/relation.lib.php:146 +#: libraries/relation.lib.php:141 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:148 +#: libraries/relation.lib.php:143 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" -#: libraries/relation.lib.php:149 +#: libraries/relation.lib.php:144 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:150 +#: libraries/relation.lib.php:145 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:151 +#: libraries/relation.lib.php:146 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1158 +#: libraries/relation.lib.php:1153 msgid "no description" msgstr "설명이 없습니다" @@ -3396,7 +3454,7 @@ msgstr "설명이 없습니다" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:53 server_replication.php:346 +#: libraries/replication_gui.lib.php:53 server_replication.php:345 msgid "Change or reconfigure master server" msgstr "" @@ -3408,17 +3466,12 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:711 -#: server_privileges.php:714 server_privileges.php:721 -#: server_synchronize.php:1170 +#: libraries/replication_gui.lib.php:261 server_privileges.php:710 +#: server_privileges.php:713 server_privileges.php:720 +#: server_synchronize.php:1169 msgid "User name" msgstr "사용자명" -#: libraries/replication_gui.lib.php:69 server_synchronize.php:1162 -#, fuzzy -msgid "Port" -msgstr "정렬" - #: libraries/replication_gui.lib.php:105 msgid "Master status" msgstr "" @@ -3433,8 +3486,8 @@ msgid "Variable" msgstr "변수" #: libraries/replication_gui.lib.php:117 server_status.php:737 -#: tbl_change.php:322 tbl_printview.php:368 tbl_select.php:137 -#: tbl_structure.php:728 +#: tbl_change.php:317 tbl_printview.php:367 tbl_select.php:136 +#: tbl_structure.php:726 msgid "Value" msgstr "값" @@ -3449,38 +3502,38 @@ msgid "" "this list." msgstr "" -#: libraries/replication_gui.lib.php:242 server_replication.php:193 +#: libraries/replication_gui.lib.php:242 server_replication.php:192 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:256 server_privileges.php:716 +#: libraries/replication_gui.lib.php:256 server_privileges.php:715 msgid "Any user" msgstr "아무나" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1920 server_privileges.php:1950 +#: libraries/replication_gui.lib.php:348 server_privileges.php:716 +#: server_privileges.php:783 server_privileges.php:807 +#: server_privileges.php:1924 server_privileges.php:1954 msgid "Use text field" msgstr "" -#: libraries/replication_gui.lib.php:304 server_privileges.php:764 +#: libraries/replication_gui.lib.php:304 server_privileges.php:763 msgid "Any host" msgstr "아무데서나" -#: libraries/replication_gui.lib.php:308 server_privileges.php:768 +#: libraries/replication_gui.lib.php:308 server_privileges.php:767 msgid "Local" msgstr "Local" -#: libraries/replication_gui.lib.php:314 server_privileges.php:773 +#: libraries/replication_gui.lib.php:314 server_privileges.php:772 msgid "This Host" msgstr "" -#: libraries/replication_gui.lib.php:320 server_privileges.php:779 +#: libraries/replication_gui.lib.php:320 server_privileges.php:778 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:333 server_privileges.php:792 +#: libraries/replication_gui.lib.php:333 server_privileges.php:791 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3507,8 +3560,8 @@ msgstr "" msgid "Servers" msgstr "서버" -#: libraries/server_links.inc.php:52 server_engines.php:111 -#: server_engines.php:115 server_status.php:414 test/theme.php:104 +#: libraries/server_links.inc.php:52 server_engines.php:125 +#: server_engines.php:129 server_status.php:414 test/theme.php:104 msgid "Variables" msgstr "환경설정값" @@ -3530,12 +3583,12 @@ msgstr "바이너리" msgid "Processes" msgstr "프로세스 목록" -#: libraries/server_links.inc.php:91 server_synchronize.php:1091 -#: server_synchronize.php:1099 +#: libraries/server_links.inc.php:91 server_synchronize.php:1090 +#: server_synchronize.php:1098 msgid "Synchronize" msgstr "" -#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1109 +#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1108 #, fuzzy msgid "Source database" msgstr "데이터베이스 검색" @@ -3554,7 +3607,7 @@ msgstr "" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1111 +#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1110 #, fuzzy msgid "Target database" msgstr "데이터베이스 검색" @@ -3575,11 +3628,11 @@ msgstr "데이터베이스 %s에 SQL 질의를 실행" msgid "Columns" msgstr "열(칼럼) 이름" -#: libraries/sql_query_form.lib.php:342 sql.php:664 sql.php:665 sql.php:682 +#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "이 SQL 질의를 북마크함" -#: libraries/sql_query_form.lib.php:349 sql.php:676 +#: libraries/sql_query_form.lib.php:349 sql.php:669 msgid "Let every user access this bookmark" msgstr "" @@ -3665,12 +3718,12 @@ msgstr "" "SQL 검사기가 초기화되지 않았습니다. %s문서%s에서 설명한 php 확장모듈을 설치했" "는지 확인해보십시오." -#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:139 -#: libraries/tbl_links.inc.php:140 +#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 +#: libraries/tbl_links.inc.php:139 msgid "Table seems to be empty!" msgstr "" -#: libraries/tbl_links.inc.php:148 +#: libraries/tbl_links.inc.php:147 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" @@ -3702,23 +3755,23 @@ msgid "" "escaping or quotes, using this format: a" msgstr "기본값에는, 역슬래시나 따옴표 없이 단 하나의 값을 넣으십시오. (예: a)" -#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1263 -#: pdf_schema.php:1284 tbl_printview.php:142 tbl_structure.php:179 +#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1262 +#: pdf_schema.php:1283 tbl_printview.php:141 tbl_structure.php:178 msgid "Attributes" msgstr "보기" -#: libraries/tbl_properties.inc.php:136 +#: libraries/tbl_properties.inc.php:135 #, php-format msgid "" "For a list of available transformation options and their MIME type " "transformations, click on %stransformation descriptions%s" msgstr "" -#: libraries/tbl_properties.inc.php:144 +#: libraries/tbl_properties.inc.php:143 msgid "Transformation options" msgstr "" -#: libraries/tbl_properties.inc.php:145 +#: libraries/tbl_properties.inc.php:144 #, fuzzy msgid "" "Please enter the values for transformation options using this format: 'a', " @@ -3730,46 +3783,46 @@ msgstr "" "오: 'a','b','c'...
                            여기에 역슬래시(\\)나 작은 따옴표(')를 넣어야 한다" "면, 그 앞에 역슬래시를 사용하십시오. (예: '\\\\xyz' 또는 'a\\'b')." -#: libraries/tbl_properties.inc.php:392 +#: libraries/tbl_properties.inc.php:391 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "없음" -#: libraries/tbl_properties.inc.php:393 +#: libraries/tbl_properties.inc.php:392 msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:579 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:578 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
                            Please ask the " "author what %s does." msgstr "" -#: libraries/tbl_properties.inc.php:725 server_engines.php:57 -#: tbl_operations.php:354 +#: libraries/tbl_properties.inc.php:724 server_engines.php:56 +#: tbl_operations.php:352 msgid "Storage Engine" msgstr "" -#: libraries/tbl_properties.inc.php:754 +#: libraries/tbl_properties.inc.php:753 msgid "PARTITION definition" msgstr "" -#: libraries/tbl_properties.inc.php:775 pdf_pages.php:502 +#: libraries/tbl_properties.inc.php:774 pdf_pages.php:501 #: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214 -#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1124 tbl_indexes.php:247 -#: tbl_relation.php:565 +#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1022 tbl_indexes.php:246 +#: tbl_relation.php:563 msgid "Save" msgstr "저장" -#: libraries/tbl_properties.inc.php:779 tbl_structure.php:541 +#: libraries/tbl_properties.inc.php:778 tbl_structure.php:539 #, fuzzy, php-format msgid "Add %s column(s)" msgstr "필드 추가하기" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:535 +#: libraries/tbl_properties.inc.php:782 tbl_structure.php:533 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." @@ -3896,8 +3949,8 @@ msgstr "" msgid "Custom color" msgstr "사용자 지정 색상" -#: main.php:162 pdf_pages.php:362 setup/lib/FormDisplay.tpl.php:216 -#: tbl_change.php:1173 +#: main.php:162 pdf_pages.php:361 setup/lib/FormDisplay.tpl.php:216 +#: tbl_change.php:1071 msgid "Reset" msgstr "리세트" @@ -3905,8 +3958,8 @@ msgstr "리세트" msgid "Protocol version" msgstr "" -#: main.php:188 server_privileges.php:1381 server_privileges.php:1528 -#: server_privileges.php:1642 server_privileges.php:2060 +#: main.php:188 server_privileges.php:1385 server_privileges.php:1532 +#: server_privileges.php:1646 server_privileges.php:2064 #: server_processlist.php:53 msgid "User" msgstr "사용자" @@ -3984,21 +4037,30 @@ msgid "" "has been configured." msgstr "" -#: main.php:330 +#: main.php:314 +#, php-format +msgid "" +"The additional features for working with linked tables have been " +"deactivated. To find out why click %shere%s." +msgstr "" +"링크 테이블을 처리하는 추가 기능이 비활성화되어 있습니다. 원인을 확인하려면 " +"%s여기를 클릭%s하십시오." + +#: main.php:329 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:345 +#: main.php:344 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: main.php:357 +#: main.php:356 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -4009,104 +4071,104 @@ msgstr "" msgid "Reload navigation frame" msgstr "" -#: navigation.php:204 server_databases.php:370 server_synchronize.php:1190 +#: navigation.php:203 server_databases.php:368 server_synchronize.php:1189 msgid "No databases" msgstr "데이터베이스가 없습니다" -#: navigation.php:298 +#: navigation.php:297 msgid "Filter" msgstr "" -#: navigation.php:299 setup/frames/index.inc.php:218 +#: navigation.php:298 setup/frames/index.inc.php:218 #: setup/lib/messages.inc.php:41 msgid "Clear" msgstr "" -#: navigation.php:330 navigation.php:331 +#: navigation.php:329 navigation.php:330 #, fuzzy msgctxt "short form" msgid "Create table" msgstr "새 페이지 만들기" -#: navigation.php:333 navigation.php:495 +#: navigation.php:332 navigation.php:494 msgid "Please select a database" msgstr "데이터베이스를 선택하세요" -#: pdf_pages.php:40 pdf_pages.php:46 pdf_pages.php:52 pdf_pages.php:57 +#: pdf_pages.php:39 pdf_pages.php:45 pdf_pages.php:51 pdf_pages.php:56 #, php-format msgid "%s table not found or not set in %s" msgstr "" -#: pdf_pages.php:265 +#: pdf_pages.php:264 msgid "Please choose a page to edit" msgstr "편집할 페이지를 선택하세요" -#: pdf_pages.php:303 pmd_pdf.php:113 +#: pdf_pages.php:302 pmd_pdf.php:111 msgid "Create a page" msgstr "새 페이지 만들기" -#: pdf_pages.php:309 +#: pdf_pages.php:308 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "페이지:" -#: pdf_pages.php:313 +#: pdf_pages.php:312 #, fuzzy msgid "Automatic layout based on" msgstr "서버 버전" -#: pdf_pages.php:315 +#: pdf_pages.php:314 msgid "Internal relations" msgstr "" -#: pdf_pages.php:338 +#: pdf_pages.php:337 #, fuzzy msgid "Select Tables" msgstr "모두 선택" -#: pdf_pages.php:361 +#: pdf_pages.php:360 msgid "Toggle scratchboard" msgstr "" -#: pdf_pages.php:524 +#: pdf_pages.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" msgstr "" -#: pdf_schema.php:635 +#: pdf_schema.php:634 #, fuzzy, php-format #| msgid "The \"%s\" table doesn't exist!" msgid "The %s table doesn't exist!" msgstr "\"%s\" 테이블이 존재하지 않습니다!" -#: pdf_schema.php:671 +#: pdf_schema.php:670 #, php-format msgid "Please configure the coordinates for table %s" msgstr "" -#: pdf_schema.php:994 +#: pdf_schema.php:993 #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" msgstr "\"%s\" 데이터베이스의 스킴(윤곽) - 페이지 %s" -#: pdf_schema.php:1012 +#: pdf_schema.php:1011 msgid "No tables" msgstr "테이블이 없습니다" -#: pdf_schema.php:1031 pdf_schema.php:1140 +#: pdf_schema.php:1030 pdf_schema.php:1139 msgid "Relational schema" msgstr "" -#: pdf_schema.php:1115 +#: pdf_schema.php:1114 #, fuzzy msgid "Table of contents" msgstr "테이블 설명" -#: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:145 -#: tbl_structure.php:182 tbl_tracking.php:277 +#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 +#: tbl_structure.php:181 tbl_tracking.php:272 msgid "Extra" msgstr "추가" @@ -4118,7 +4180,7 @@ msgstr "" msgid "Save position" msgstr "" -#: pmd_general.php:70 server_synchronize.php:428 server_synchronize.php:871 +#: pmd_general.php:70 server_synchronize.php:427 server_synchronize.php:870 #, fuzzy msgid "Create table" msgstr "새 페이지 만들기" @@ -4191,32 +4253,32 @@ msgid "" "appropriate column name." msgstr "" -#: pmd_pdf.php:62 +#: pmd_pdf.php:60 #, fuzzy msgid "Page has been created" msgstr "테이블 %s 을 제거했습니다." -#: pmd_pdf.php:64 +#: pmd_pdf.php:62 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:84 +#: pmd_pdf.php:82 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:88 +#: pmd_pdf.php:86 msgid "recommended" msgstr "" -#: pmd_pdf.php:93 +#: pmd_pdf.php:91 msgid "to/from page" msgstr "" -#: querywindow.php:94 +#: querywindow.php:93 msgid "Import files" msgstr "파일 가져오기" -#: querywindow.php:105 +#: querywindow.php:104 msgid "All" msgstr "All" @@ -4265,187 +4327,187 @@ msgstr "로그인 정보" msgid "Character Sets and Collations" msgstr "" -#: server_databases.php:51 +#: server_databases.php:49 msgid "No databases selected." msgstr "데이터베이스를 선택하지 않았습니다." -#: server_databases.php:62 +#: server_databases.php:60 #, php-format msgid "%s databases have been dropped successfully." msgstr "%s 데이터베이스를 삭제했습니다." -#: server_databases.php:87 +#: server_databases.php:85 msgid "Databases statistics" msgstr "데이터베이스 사용량 통계" -#: server_databases.php:116 server_status.php:370 +#: server_databases.php:114 server_status.php:370 #: setup/lib/messages.inc.php:114 msgid "Tables" msgstr "테이블 수" -#: server_databases.php:194 server_replication.php:180 -#: server_replication.php:208 +#: server_databases.php:192 server_replication.php:179 +#: server_replication.php:207 msgid "Master replication" msgstr "" -#: server_databases.php:196 server_replication.php:247 +#: server_databases.php:194 server_replication.php:246 msgid "Slave replication" msgstr "" -#: server_databases.php:229 +#: server_databases.php:227 #, fuzzy msgid "Jump to database" msgstr "데이터베이스가 없습니다" -#: server_databases.php:266 +#: server_databases.php:264 msgid "Not replicated" msgstr "" -#: server_databases.php:272 +#: server_databases.php:270 msgid "Replicated" msgstr "" -#: server_databases.php:288 +#: server_databases.php:286 #, php-format msgid "Check privileges for database "%s"." msgstr "데이터베이스 "%s" 에 대한 사용권한 검사." -#: server_databases.php:292 server_databases.php:293 +#: server_databases.php:290 server_databases.php:291 msgid "Check Privileges" msgstr "사용권한 보기" -#: server_databases.php:357 server_databases.php:358 +#: server_databases.php:355 server_databases.php:356 msgid "Enable Statistics" msgstr "통계 보기" -#: server_databases.php:361 server_databases.php:362 +#: server_databases.php:359 server_databases.php:360 msgid "Disable Statistics" msgstr "통계 숨기기" -#: server_databases.php:365 +#: server_databases.php:363 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." msgstr "" "주의: 데이터베이스 통계 보기는 웹서버와 MySQL 서버 사이에 큰 부하를 줍니다." -#: server_engines.php:48 +#: server_engines.php:47 msgid "Storage Engines" msgstr "" -#: server_export.php:20 +#: server_export.php:18 #, fuzzy msgid "View dump (schema) of databases" msgstr "데이터베이스의 덤프(스키마) 데이터 보기" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:23 server_privileges.php:265 msgid "Includes all privileges except GRANT." msgstr "GRANT 이외의 모든 권한을 포함함." -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:24 server_privileges.php:191 +#: server_privileges.php:514 msgid "Allows altering the structure of existing tables." msgstr "테이블 구조 변경 허용." -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:25 server_privileges.php:207 +#: server_privileges.php:520 #, fuzzy msgid "Allows altering and dropping stored routines." msgstr "인덱스 생성 및 삭제 허용." -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:26 server_privileges.php:183 +#: server_privileges.php:513 msgid "Allows creating new databases and tables." msgstr "DB 및 테이블 생성 허용." -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:27 server_privileges.php:206 +#: server_privileges.php:519 #, fuzzy msgid "Allows creating stored routines." msgstr "테이블 생성 허용." -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:513 msgid "Allows creating new tables." msgstr "테이블 생성 허용." -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:29 server_privileges.php:194 +#: server_privileges.php:517 msgid "Allows creating temporary tables." msgstr "임시테이블 생성 허용." -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:30 server_privileges.php:208 +#: server_privileges.php:553 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: server_privileges.php:32 server_privileges.php:199 -#: server_privileges.php:203 server_privileges.php:526 -#: server_privileges.php:530 +#: server_privileges.php:31 server_privileges.php:198 +#: server_privileges.php:202 server_privileges.php:525 +#: server_privileges.php:529 #, fuzzy msgid "Allows creating new views." msgstr "테이블 생성 허용." -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:32 server_privileges.php:182 +#: server_privileges.php:505 msgid "Allows deleting data." msgstr "데이터 삭제 허용." -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:33 server_privileges.php:184 +#: server_privileges.php:516 msgid "Allows dropping databases and tables." msgstr "DB 및 테이블 삭제 허용." -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:34 server_privileges.php:516 msgid "Allows dropping tables." msgstr "테이블 삭제 허용." -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:35 server_privileges.php:199 +#: server_privileges.php:533 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:36 server_privileges.php:209 +#: server_privileges.php:521 msgid "Allows executing stored routines." msgstr "" -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:37 server_privileges.php:188 +#: server_privileges.php:508 msgid "Allows importing data from and exporting data into files." msgstr "데이터를 파일에서 가져오기 및 파일로 내보내기 허용." -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:38 server_privileges.php:539 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "권한 테이블을 갱신하지 않고 사용자와 권한 추가하기 허용." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:515 msgid "Allows creating and dropping indexes." msgstr "인덱스 생성 및 삭제 허용." -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:40 server_privileges.php:180 +#: server_privileges.php:441 server_privileges.php:503 msgid "Allows inserting and replacing data." msgstr "데이터 추가(insert) 및 변경(replace) 허용." -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:41 server_privileges.php:195 +#: server_privileges.php:548 msgid "Allows locking tables for the current thread." msgstr "현재 쓰레드에 대한 테이블 잠금(lock) 허용." -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:42 server_privileges.php:645 +#: server_privileges.php:647 msgid "Limits the number of new connections the user may open per hour." msgstr "Limits the number of new connections the user may open per hour." -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:43 server_privileges.php:633 +#: server_privileges.php:635 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Limits the number of queries the user may send to the server per hour." -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:44 server_privileges.php:639 +#: server_privileges.php:641 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -4453,217 +4515,217 @@ msgstr "" "Limits the number of commands that change any table or database the user may " "execute per hour." -#: server_privileges.php:46 server_privileges.php:652 -#: server_privileges.php:654 +#: server_privileges.php:45 server_privileges.php:651 +#: server_privileges.php:653 #, fuzzy msgid "Limits the number of simultaneous connections the user may have." msgstr "Limits the number of new connections the user may open per hour." -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:46 server_privileges.php:187 +#: server_privileges.php:543 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:47 server_privileges.php:189 +#: server_privileges.php:447 server_privileges.php:549 msgid "Has no effect in this MySQL version." msgstr "이 버전의 MySQL에는 소용이 없습니다." -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:48 server_privileges.php:185 +#: server_privileges.php:544 msgid "Allows reloading server settings and flushing the server's caches." msgstr "캐시를 비우고 서버를 재시동하는 것을 허용." -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:197 +#: server_privileges.php:551 msgid "Allows the user to ask where the slaves / masters are." msgstr "" -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:50 server_privileges.php:196 +#: server_privileges.php:552 msgid "Needed for the replication slaves." msgstr "복제서버(replication slaves)에 필요합니다." -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:51 server_privileges.php:179 +#: server_privileges.php:438 server_privileges.php:502 msgid "Allows reading data." msgstr "데이터 읽기 허용." -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:52 server_privileges.php:192 +#: server_privileges.php:546 msgid "Gives access to the complete list of databases." msgstr "전체 데이터베이스 목록 접근을 허용" -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:53 server_privileges.php:203 +#: server_privileges.php:205 server_privileges.php:518 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:54 server_privileges.php:186 +#: server_privileges.php:545 msgid "Allows shutting down the server." msgstr "서버 종료 허용." -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:55 server_privileges.php:193 +#: server_privileges.php:542 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " "killing threads of other users." msgstr "" -#: server_privileges.php:57 server_privileges.php:201 -#: server_privileges.php:535 +#: server_privileges.php:56 server_privileges.php:200 +#: server_privileges.php:534 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "인덱스 생성 및 삭제 허용." -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:57 server_privileges.php:181 +#: server_privileges.php:444 server_privileges.php:504 msgid "Allows changing data." msgstr "데이터 변경 허용." -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:58 server_privileges.php:259 msgid "No privileges." msgstr "권한 없음." -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:301 server_privileges.php:302 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "없음" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1710 server_privileges.php:1716 +#: server_privileges.php:430 server_privileges.php:565 +#: server_privileges.php:1714 server_privileges.php:1720 msgid "Table-specific privileges" msgstr "테이블에 관한 권한" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1532 +#: server_privileges.php:431 server_privileges.php:573 +#: server_privileges.php:1536 msgid " Note: MySQL privilege names are expressed in English " msgstr " 주의: MySQL 권한 이름은 영어로 표기되어야 합니다. " -#: server_privileges.php:563 server_privileges.php:1531 +#: server_privileges.php:562 server_privileges.php:1535 msgid "Global privileges" msgstr "전체적 권한" -#: server_privileges.php:565 server_privileges.php:1710 +#: server_privileges.php:564 server_privileges.php:1714 msgid "Database-specific privileges" msgstr "데이터베이스에 관한 권한" -#: server_privileges.php:610 +#: server_privileges.php:609 msgid "Administration" msgstr "" -#: server_privileges.php:630 +#: server_privileges.php:629 msgid "Resource limits" msgstr "리소스 제한" -#: server_privileges.php:631 +#: server_privileges.php:630 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "주의: 이 옵션을 0으로 하면 제한이 없어집니다." -#: server_privileges.php:708 +#: server_privileges.php:707 msgid "Login Information" msgstr "로그인 정보" -#: server_privileges.php:802 +#: server_privileges.php:801 msgid "Do not change the password" msgstr "암호를 변경하지 않음" -#: server_privileges.php:835 server_privileges.php:2197 +#: server_privileges.php:834 server_privileges.php:2201 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "사용자가 없습니다." -#: server_privileges.php:879 +#: server_privileges.php:878 #, php-format msgid "The user %s already exists!" msgstr "사용자 %s 가 이미 존재합니다!" -#: server_privileges.php:962 +#: server_privileges.php:961 msgid "You have added a new user." msgstr "새 사용자를 추가했습니다." -#: server_privileges.php:1183 +#: server_privileges.php:1184 #, php-format msgid "You have updated the privileges for %s." msgstr "%s 의 권한을 업데이트했습니다." -#: server_privileges.php:1207 +#: server_privileges.php:1208 #, php-format msgid "You have revoked the privileges for %s" msgstr "%s의 권한을 제거했습니다." -#: server_privileges.php:1243 +#: server_privileges.php:1244 #, php-format msgid "The password for %s was changed successfully." msgstr "%s 의 암호가 바뀌었습니다." -#: server_privileges.php:1263 +#: server_privileges.php:1264 #, php-format msgid "Deleting %s" msgstr " %s 을 삭제합니다" -#: server_privileges.php:1274 +#: server_privileges.php:1275 msgid "No users selected for deleting!" msgstr "" -#: server_privileges.php:1277 +#: server_privileges.php:1278 msgid "Reloading the privileges" msgstr "사용권한을 갱신합니다(Reloading the privileges)" -#: server_privileges.php:1292 +#: server_privileges.php:1296 msgid "The selected users have been deleted successfully." msgstr "선택한 사용자들을 삭제했습니다." -#: server_privileges.php:1327 +#: server_privileges.php:1331 msgid "The privileges were reloaded successfully." msgstr "권한을 다시 로딩했습니다." -#: server_privileges.php:1355 server_privileges.php:1641 +#: server_privileges.php:1359 server_privileges.php:1645 msgid "Edit Privileges" msgstr "권한 수정" -#: server_privileges.php:1364 +#: server_privileges.php:1368 msgid "Revoke" msgstr "제거" -#: server_privileges.php:1396 +#: server_privileges.php:1400 msgid "User overview" msgstr "사용자 개요" -#: server_privileges.php:1533 server_privileges.php:1715 -#: server_privileges.php:2064 +#: server_privileges.php:1537 server_privileges.php:1719 +#: server_privileges.php:2068 #, fuzzy msgid "Grant" msgstr "인쇄" -#: server_privileges.php:1552 server_privileges.php:2154 +#: server_privileges.php:1556 server_privileges.php:2158 msgid "Any" msgstr "Any" -#: server_privileges.php:1601 server_privileges.php:1625 -#: server_privileges.php:2019 server_privileges.php:2208 +#: server_privileges.php:1605 server_privileges.php:1629 +#: server_privileges.php:2023 server_privileges.php:2212 msgid "Add a new User" msgstr "새 사용자 추가" -#: server_privileges.php:1606 +#: server_privileges.php:1610 msgid "Remove selected users" msgstr "선택한 사용자를 삭제" -#: server_privileges.php:1609 +#: server_privileges.php:1613 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "모든 활성화된 권한을 박탈하고 사용자를 삭제함." -#: server_privileges.php:1610 server_privileges.php:1611 -#: server_privileges.php:1612 +#: server_privileges.php:1614 server_privileges.php:1615 +#: server_privileges.php:1616 msgid "Drop the databases that have the same names as the users." msgstr "사용자명과 같은 이름의 데이터베이스를 삭제" -#: server_privileges.php:1628 +#: server_privileges.php:1632 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4672,94 +4734,94 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: server_privileges.php:1676 +#: server_privileges.php:1680 msgid "The selected user was not found in the privilege table." msgstr "선택한 사용자는 사용권한 테이블에 존재하지 않습니다." -#: server_privileges.php:1716 +#: server_privileges.php:1720 msgid "Column-specific privileges" msgstr "열(칼럼)에 관한 권한" -#: server_privileges.php:1917 +#: server_privileges.php:1921 msgid "Add privileges on the following database" msgstr "다음 데이터베이스에 권한 추가하기" -#: server_privileges.php:1935 +#: server_privileges.php:1939 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:1938 +#: server_privileges.php:1942 msgid "Add privileges on the following table" msgstr "다음 테이블에 권한 추가하기" -#: server_privileges.php:1995 +#: server_privileges.php:1999 msgid "Change Login Information / Copy User" msgstr "" -#: server_privileges.php:1998 +#: server_privileges.php:2002 msgid "Create a new user with the same privileges and ..." msgstr "" -#: server_privileges.php:2000 +#: server_privileges.php:2004 msgid "... keep the old one." msgstr "" -#: server_privileges.php:2001 +#: server_privileges.php:2005 #, fuzzy msgid " ... delete the old one from the user tables." msgstr "권한 테이블에서 사용자를 삭제하기만 함." -#: server_privileges.php:2002 +#: server_privileges.php:2006 #, fuzzy msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "모든 활성화된 권한을 박탈하고 사용자를 삭제함." -#: server_privileges.php:2003 +#: server_privileges.php:2007 #, fuzzy msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "사용자를 삭제하고 사용권한을 갱신함." -#: server_privileges.php:2025 +#: server_privileges.php:2029 msgid "Database for user" msgstr "" -#: server_privileges.php:2029 +#: server_privileges.php:2033 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "없음" -#: server_privileges.php:2030 +#: server_privileges.php:2034 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2031 +#: server_privileges.php:2035 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2034 +#: server_privileges.php:2038 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "데이터베이스 "%s" 에 대한 사용권한 검사." -#: server_privileges.php:2057 +#: server_privileges.php:2061 #, php-format msgid "Users having access to "%s"" msgstr ""%s" 에 접근할 수 있는 사용자들" -#: server_privileges.php:2165 +#: server_privileges.php:2169 msgid "global" msgstr "" -#: server_privileges.php:2167 +#: server_privileges.php:2171 msgid "database-specific" msgstr "" -#: server_privileges.php:2169 +#: server_privileges.php:2173 msgid "wildcard" msgstr "" @@ -4778,53 +4840,53 @@ msgstr "" msgid "ID" msgstr "" -#: server_replication.php:50 +#: server_replication.php:49 msgid "Unknown error" msgstr "" -#: server_replication.php:57 +#: server_replication.php:56 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:64 +#: server_replication.php:63 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:70 +#: server_replication.php:69 msgid "Unable to change master" msgstr "" -#: server_replication.php:73 +#: server_replication.php:72 #, php-format msgid "Master server changed succesfully to %s" msgstr "" -#: server_replication.php:181 +#: server_replication.php:180 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:183 server_status.php:391 +#: server_replication.php:182 server_status.php:391 msgid "Show master status" msgstr "" -#: server_replication.php:186 +#: server_replication.php:185 msgid "Show connected slaves" msgstr "" -#: server_replication.php:209 +#: server_replication.php:208 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:216 +#: server_replication.php:215 msgid "Master configuration" msgstr "" -#: server_replication.php:217 +#: server_replication.php:216 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -4833,110 +4895,110 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:220 +#: server_replication.php:219 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:221 +#: server_replication.php:220 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:224 +#: server_replication.php:223 #, fuzzy msgid "Please select databases:" msgstr "데이터베이스를 선택하세요" -#: server_replication.php:227 +#: server_replication.php:226 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: server_replication.php:229 +#: server_replication.php:228 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: server_replication.php:292 +#: server_replication.php:291 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:295 +#: server_replication.php:294 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:304 +#: server_replication.php:303 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:307 +#: server_replication.php:306 msgid "See slave status table" msgstr "" -#: server_replication.php:310 +#: server_replication.php:309 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:321 +#: server_replication.php:320 msgid "Control slave:" msgstr "" -#: server_replication.php:324 +#: server_replication.php:323 #, fuzzy msgid "Full start" msgstr "Fulltext" -#: server_replication.php:324 +#: server_replication.php:323 msgid "Full stop" msgstr "" -#: server_replication.php:325 +#: server_replication.php:324 msgid "Reset slave" msgstr "" -#: server_replication.php:326 +#: server_replication.php:325 #, php-format msgid "SQL Thread %s only" msgstr "" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 #, fuzzy msgid "Start" msgstr "토" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 msgid "Stop" msgstr "" -#: server_replication.php:327 +#: server_replication.php:326 #, php-format msgid "IO Thread %s only" msgstr "" -#: server_replication.php:331 +#: server_replication.php:330 msgid "Error management:" msgstr "" -#: server_replication.php:333 +#: server_replication.php:332 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:335 +#: server_replication.php:334 msgid "Skip current error" msgstr "" -#: server_replication.php:336 +#: server_replication.php:335 msgid "Skip next" msgstr "" -#: server_replication.php:339 +#: server_replication.php:338 msgid "errors." msgstr "" -#: server_replication.php:354 +#: server_replication.php:353 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -5645,112 +5707,112 @@ msgstr "질의 종류" msgid "Replication status" msgstr "" -#: server_synchronize.php:93 +#: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:96 +#: server_synchronize.php:95 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:121 server_synchronize.php:124 tbl_create.php:77 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:264 +#: server_synchronize.php:263 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:271 +#: server_synchronize.php:270 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:399 server_synchronize.php:838 +#: server_synchronize.php:398 server_synchronize.php:837 msgid "not present" msgstr "" -#: server_synchronize.php:423 server_synchronize.php:866 +#: server_synchronize.php:422 server_synchronize.php:865 msgid "Structure Difference" msgstr "" -#: server_synchronize.php:424 server_synchronize.php:867 +#: server_synchronize.php:423 server_synchronize.php:866 msgid "Data Difference" msgstr "" -#: server_synchronize.php:429 server_synchronize.php:872 +#: server_synchronize.php:428 server_synchronize.php:871 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:430 server_synchronize.php:873 +#: server_synchronize.php:429 server_synchronize.php:872 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:431 server_synchronize.php:874 +#: server_synchronize.php:430 server_synchronize.php:873 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:432 server_synchronize.php:875 +#: server_synchronize.php:431 server_synchronize.php:874 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:433 server_synchronize.php:876 +#: server_synchronize.php:432 server_synchronize.php:875 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:434 server_synchronize.php:877 +#: server_synchronize.php:433 server_synchronize.php:876 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:435 server_synchronize.php:878 +#: server_synchronize.php:434 server_synchronize.php:877 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:445 server_synchronize.php:889 +#: server_synchronize.php:444 server_synchronize.php:888 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:448 server_synchronize.php:893 +#: server_synchronize.php:447 server_synchronize.php:892 msgid "Apply Selected Changes" msgstr "" -#: server_synchronize.php:450 server_synchronize.php:895 +#: server_synchronize.php:449 server_synchronize.php:894 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:463 +#: server_synchronize.php:462 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:941 +#: server_synchronize.php:940 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:1002 +#: server_synchronize.php:1001 msgid "The following queries have been executed:" msgstr "" -#: server_synchronize.php:1121 +#: server_synchronize.php:1120 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1122 +#: server_synchronize.php:1121 #, fuzzy #| msgid "Connections" msgid "Current connection" msgstr "연결 수" -#: server_synchronize.php:1151 +#: server_synchronize.php:1150 #, php-format msgid "Configuration: %s" msgstr "" -#: server_synchronize.php:1166 +#: server_synchronize.php:1165 msgid "Socket" msgstr "" -#: server_synchronize.php:1212 +#: server_synchronize.php:1211 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -6306,8 +6368,8 @@ msgstr "" #: setup/lib/messages.inc.php:128 msgid "" "Configure phpMyAdmin database to gain access to additional features, see " -"[a@../Documentation.html#linked-tables]linked-tables infrastructure[/a] in " -"documentation" +"[a@../Documentation.html#linked-tables]phpMyAdmin configuration storage[/a] " +"in documentation" msgstr "" #: setup/lib/messages.inc.php:129 setup/lib/messages.inc.php:290 @@ -7363,115 +7425,115 @@ msgstr "" msgid "ZIP" msgstr "" -#: sql.php:495 tbl_replace.php:385 +#: sql.php:494 tbl_replace.php:384 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: sql.php:512 +#: sql.php:511 msgid "Showing as PHP code" msgstr "" -#: sql.php:515 tbl_replace.php:359 +#: sql.php:514 tbl_replace.php:358 msgid "Showing SQL query" msgstr "" -#: sql.php:517 +#: sql.php:516 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "SQL 검사" -#: sql.php:638 +#: sql.php:631 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:670 +#: sql.php:663 msgid "Label" msgstr "Label" -#: tbl_addfield.php:188 tbl_alter.php:102 tbl_indexes.php:97 +#: tbl_addfield.php:185 tbl_alter.php:100 tbl_indexes.php:97 #, fuzzy, php-format msgid "Table %1$s has been altered successfully" msgstr "선택한 사용자들을 삭제했습니다." -#: tbl_change.php:250 tbl_select.php:26 tbl_select.php:27 tbl_select.php:30 -#: tbl_select.php:33 +#: tbl_change.php:245 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_select.php:32 msgid "Browse foreign values" msgstr "" -#: tbl_change.php:280 tbl_change.php:318 +#: tbl_change.php:275 tbl_change.php:313 msgid "Function" msgstr "함수" -#: tbl_change.php:300 tbl_indexes.php:199 tbl_indexes.php:224 +#: tbl_change.php:295 tbl_indexes.php:198 tbl_indexes.php:223 msgid "Ignore" msgstr "Ignore" -#: tbl_change.php:725 +#: tbl_change.php:720 #, fuzzy #| msgid " Because of its length,
                            this field might not be editable " msgid " Because of its length,
                            this column might not be editable " msgstr " 필드의 길이 때문에,
                            이 필드를 편집할 수 없습니다 " -#: tbl_change.php:884 +#: tbl_change.php:835 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:890 +#: tbl_change.php:841 msgid "Binary - do not edit" msgstr " 바이너리 - 편집 금지 " -#: tbl_change.php:983 +#: tbl_change.php:889 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:1128 +#: tbl_change.php:1026 msgid "Insert as new row" msgstr "새 열을 삽입합니다" -#: tbl_change.php:1129 +#: tbl_change.php:1027 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:1130 +#: tbl_change.php:1028 msgid "Show insert query" msgstr "" -#: tbl_change.php:1145 +#: tbl_change.php:1043 msgid "Go back to previous page" msgstr "되돌아가기" -#: tbl_change.php:1146 +#: tbl_change.php:1044 msgid "Insert another new row" msgstr "새 행(레코드) 삽입하기" -#: tbl_change.php:1150 +#: tbl_change.php:1048 #, fuzzy msgid "Go back to this page" msgstr "되돌아가기" -#: tbl_change.php:1158 +#: tbl_change.php:1056 msgid "Edit next row" msgstr "" -#: tbl_change.php:1169 +#: tbl_change.php:1067 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: tbl_change.php:1207 +#: tbl_change.php:1105 #, php-format msgid "Restart insertion with %s rows" msgstr "" -#: tbl_create.php:57 +#: tbl_create.php:55 #, fuzzy, php-format msgid "Table %s already exists!" msgstr "사용자 %s 가 이미 존재합니다!" -#: tbl_create.php:244 +#: tbl_create.php:241 #, fuzzy, php-format msgid "Table %1$s has been created." msgstr "테이블 %s 을 제거했습니다." @@ -7492,200 +7554,200 @@ msgstr "인덱스 이름을 기본 키로 바꿀 수 없습니다!" msgid "No index parts defined!" msgstr "No index parts defined!" -#: tbl_indexes.php:159 +#: tbl_indexes.php:158 msgid "Create a new index" msgstr "새 인덱스 만들기" -#: tbl_indexes.php:161 +#: tbl_indexes.php:160 msgid "Modify an index" msgstr "인덱스 수정" -#: tbl_indexes.php:167 +#: tbl_indexes.php:166 msgid "Index name:" msgstr "인덱스 이름:" -#: tbl_indexes.php:173 +#: tbl_indexes.php:172 msgid "Index type:" msgstr "인덱스 종류:" -#: tbl_indexes.php:183 +#: tbl_indexes.php:182 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "(\"PRIMARY\"는 기본 키만의 유일한 이름입니다!)" -#: tbl_indexes.php:250 +#: tbl_indexes.php:249 #, php-format msgid "Add to index  %s column(s)" msgstr "%s개 열(칼럼)에 인덱스 추가" -#: tbl_indexes.php:255 tbl_structure.php:588 tbl_structure.php:599 +#: tbl_indexes.php:254 tbl_structure.php:586 tbl_structure.php:597 msgid "Column count has to be larger than zero." msgstr "" -#: tbl_move_copy.php:45 +#: tbl_move_copy.php:44 msgid "Can't move table to same one!" msgstr "" -#: tbl_move_copy.php:47 +#: tbl_move_copy.php:46 msgid "Can't copy table to same one!" msgstr "" -#: tbl_move_copy.php:55 +#: tbl_move_copy.php:54 #, php-format msgid "Table %s has been moved to %s." msgstr "테이블 %s 을 %s 로 옮겼습니다." -#: tbl_move_copy.php:57 +#: tbl_move_copy.php:56 #, php-format msgid "Table %s has been copied to %s." msgstr "%s 테이블이 %s 으로 복사되었습니다." -#: tbl_move_copy.php:81 +#: tbl_move_copy.php:80 msgid "The table name is empty!" msgstr "테이블명이 없습니다!" -#: tbl_operations.php:248 +#: tbl_operations.php:246 msgid "Alter table order by" msgstr "다음 순서대로 테이블 정렬(변경)" -#: tbl_operations.php:257 +#: tbl_operations.php:255 msgid "(singly)" msgstr "(단독으로)" -#: tbl_operations.php:277 +#: tbl_operations.php:275 msgid "Move table to (database.table):" msgstr "테이블 이동 (데이터베이스명.테이블명):" -#: tbl_operations.php:335 +#: tbl_operations.php:333 msgid "Table options" msgstr "" -#: tbl_operations.php:339 +#: tbl_operations.php:337 msgid "Rename table to" msgstr "테이블 이름 바꾸기" -#: tbl_operations.php:510 +#: tbl_operations.php:508 msgid "Copy table to (database.table):" msgstr "테이블 복사 (데이터베이스명.테이블명):" -#: tbl_operations.php:557 +#: tbl_operations.php:555 msgid "Switch to copied table" msgstr "복사한 테이블로 옮겨감" -#: tbl_operations.php:569 +#: tbl_operations.php:567 msgid "Table maintenance" msgstr "테이블 유지보수" -#: tbl_operations.php:590 +#: tbl_operations.php:588 msgid "Defragment table" msgstr "" -#: tbl_operations.php:629 +#: tbl_operations.php:627 #, php-format msgid "Table %s has been flushed" msgstr "테이블 %s 을 닫았습니다(캐시 삭제)" -#: tbl_operations.php:635 +#: tbl_operations.php:633 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "테이블 닫기(캐시 삭제)" -#: tbl_operations.php:650 +#: tbl_operations.php:648 #, fuzzy msgid "Partition maintenance" msgstr "테이블 유지보수" -#: tbl_operations.php:658 +#: tbl_operations.php:656 #, php-format msgid "Partition %s" msgstr "" -#: tbl_operations.php:661 +#: tbl_operations.php:659 msgid "Analyze" msgstr "" -#: tbl_operations.php:662 +#: tbl_operations.php:660 msgid "Check" msgstr "" -#: tbl_operations.php:663 +#: tbl_operations.php:661 msgid "Optimize" msgstr "" -#: tbl_operations.php:664 +#: tbl_operations.php:662 msgid "Rebuild" msgstr "" -#: tbl_operations.php:665 +#: tbl_operations.php:663 #, fuzzy msgid "Repair" msgstr "테이블 복구" -#: tbl_operations.php:677 +#: tbl_operations.php:675 msgid "Remove partitioning" msgstr "" -#: tbl_operations.php:703 +#: tbl_operations.php:701 msgid "Check referential integrity:" msgstr "referential 무결성 검사:" -#: tbl_printview.php:73 +#: tbl_printview.php:72 msgid "Show tables" msgstr "테이블 보기" -#: tbl_printview.php:308 tbl_structure.php:655 +#: tbl_printview.php:307 tbl_structure.php:653 msgid "Space usage" msgstr "공간 사용량" -#: tbl_printview.php:312 tbl_structure.php:659 +#: tbl_printview.php:311 tbl_structure.php:657 msgid "Usage" msgstr "사용법(량)" -#: tbl_printview.php:339 tbl_structure.php:686 +#: tbl_printview.php:338 tbl_structure.php:684 msgid "Effective" msgstr "실제량" -#: tbl_printview.php:364 tbl_structure.php:724 +#: tbl_printview.php:363 tbl_structure.php:722 msgid "Row Statistics" msgstr "행(레코드) 통계" -#: tbl_printview.php:367 tbl_structure.php:727 +#: tbl_printview.php:366 tbl_structure.php:725 msgid "Statements" msgstr "명세" -#: tbl_printview.php:378 tbl_structure.php:739 +#: tbl_printview.php:377 tbl_structure.php:737 msgid "static" msgstr "" -#: tbl_printview.php:380 tbl_structure.php:741 +#: tbl_printview.php:379 tbl_structure.php:739 msgid "dynamic" msgstr "동적(다이내믹)" -#: tbl_printview.php:402 tbl_structure.php:784 +#: tbl_printview.php:401 tbl_structure.php:782 msgid "Row length" msgstr "행 길이" -#: tbl_printview.php:412 tbl_structure.php:792 +#: tbl_printview.php:411 tbl_structure.php:790 msgid " Row size " msgstr " Row size " -#: tbl_relation.php:278 +#: tbl_relation.php:276 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" -#: tbl_relation.php:404 +#: tbl_relation.php:402 msgid "Internal relation" msgstr "" -#: tbl_relation.php:406 +#: tbl_relation.php:404 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: tbl_relation.php:412 +#: tbl_relation.php:410 msgid "Foreign key constraint" msgstr "" @@ -7693,232 +7755,232 @@ msgstr "" msgid "No rows selected" msgstr "" -#: tbl_select.php:130 +#: tbl_select.php:129 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "다음으로 질의를 만들기 (와일드카드: \"%\")" -#: tbl_select.php:136 +#: tbl_select.php:135 #, fuzzy msgid "Operator" msgstr "테이블 작업" -#: tbl_select.php:267 +#: tbl_select.php:266 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "필드 선택 (하나 이상):" -#: tbl_select.php:285 +#: tbl_select.php:284 msgid "Add search conditions (body of the \"where\" clause):" msgstr "검색 조건 추가 (\"where\" 조건):" -#: tbl_select.php:292 +#: tbl_select.php:291 msgid "Number of rows per page" msgstr "페이지당 레코드 수" -#: tbl_select.php:298 +#: tbl_select.php:297 msgid "Display order:" msgstr "출력 순서:" -#: tbl_structure.php:160 +#: tbl_structure.php:159 msgid "Browse distinct values" msgstr "" -#: tbl_structure.php:360 +#: tbl_structure.php:358 #, fuzzy #| msgid "None" msgctxt "None for default" msgid "None" msgstr "없음" -#: tbl_structure.php:373 +#: tbl_structure.php:371 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Column %s has been dropped" msgstr "테이블 %s 을 제거했습니다." -#: tbl_structure.php:384 +#: tbl_structure.php:382 #, php-format msgid "A primary key has been added on %s" msgstr " %s에 기본 키가 추가되었습니다" -#: tbl_structure.php:399 tbl_structure.php:413 tbl_structure.php:427 +#: tbl_structure.php:397 tbl_structure.php:411 tbl_structure.php:425 #, php-format msgid "An index has been added on %s" msgstr "%s 에 인덱스가 걸렸습니다" -#: tbl_structure.php:505 tbl_structure.php:507 +#: tbl_structure.php:503 tbl_structure.php:505 msgid "Relation view" msgstr "" -#: tbl_structure.php:514 tbl_structure.php:516 +#: tbl_structure.php:512 tbl_structure.php:514 msgid "Propose table structure" msgstr "제안하는 테이블 구조" -#: tbl_structure.php:539 +#: tbl_structure.php:537 #, fuzzy msgid "Add column" msgstr "필드 추가하기" -#: tbl_structure.php:553 +#: tbl_structure.php:551 msgid "At End of Table" msgstr "테이블의 마지막" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At Beginning of Table" msgstr "테이블의 처음" -#: tbl_structure.php:555 +#: tbl_structure.php:553 #, php-format msgid "After %s" msgstr "%s 다음에" -#: tbl_structure.php:593 +#: tbl_structure.php:591 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "%s 개 열(칼럼)에 인덱스 만들기 " -#: tbl_structure.php:755 +#: tbl_structure.php:753 msgid "partitioned" msgstr "" -#: tbl_tracking.php:113 +#: tbl_tracking.php:109 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:186 +#: tbl_tracking.php:182 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "" -#: tbl_tracking.php:194 +#: tbl_tracking.php:190 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "" -#: tbl_tracking.php:202 +#: tbl_tracking.php:198 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "" -#: tbl_tracking.php:212 +#: tbl_tracking.php:208 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:219 +#: tbl_tracking.php:215 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:220 +#: tbl_tracking.php:216 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:229 +#: tbl_tracking.php:225 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:250 tbl_tracking.php:378 +#: tbl_tracking.php:245 tbl_tracking.php:373 msgid "Close" msgstr "" -#: tbl_tracking.php:261 +#: tbl_tracking.php:256 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:380 +#: tbl_tracking.php:375 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:396 tbl_tracking.php:503 +#: tbl_tracking.php:391 tbl_tracking.php:498 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "" -#: tbl_tracking.php:409 tbl_tracking.php:460 +#: tbl_tracking.php:404 tbl_tracking.php:455 #, fuzzy msgid "Date" msgstr "데이터" -#: tbl_tracking.php:410 tbl_tracking.php:461 +#: tbl_tracking.php:405 tbl_tracking.php:456 #, fuzzy msgid "Username" msgstr "사용자명:" -#: tbl_tracking.php:411 +#: tbl_tracking.php:406 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:462 +#: tbl_tracking.php:457 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:506 +#: tbl_tracking.php:501 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:507 +#: tbl_tracking.php:502 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:520 +#: tbl_tracking.php:515 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:560 +#: tbl_tracking.php:555 msgid "Show versions" msgstr "" -#: tbl_tracking.php:592 +#: tbl_tracking.php:587 #, fuzzy msgid "Version" msgstr "PHP 버전" -#: tbl_tracking.php:639 +#: tbl_tracking.php:634 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "" -#: tbl_tracking.php:641 +#: tbl_tracking.php:636 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:652 +#: tbl_tracking.php:647 #, php-format msgid "Activate tracking for %s.%s" msgstr "" -#: tbl_tracking.php:654 +#: tbl_tracking.php:649 msgid "Activate now" msgstr "" -#: tbl_tracking.php:667 +#: tbl_tracking.php:662 #, php-format msgid "Create version %s of %s.%s" msgstr "" -#: tbl_tracking.php:671 +#: tbl_tracking.php:666 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:679 +#: tbl_tracking.php:674 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:687 +#: tbl_tracking.php:682 #, fuzzy msgid "Create version" msgstr "서버 버전" @@ -7965,11 +8027,35 @@ msgstr "프로파일을 업데이트했습니다." msgid "VIEW name" msgstr "" -#: view_operations.php:92 +#: view_operations.php:91 #, fuzzy msgid "Rename view to" msgstr "테이블 이름 바꾸기" +#~ msgid "BLOB Repository" +#~ msgstr "BLOB 저장소" + +#~ msgctxt "BLOB repository" +#~ msgid "Enabled" +#~ msgstr "유효" + +#~ msgid "Disable" +#~ msgstr "무효" + +#~ msgid "Damaged" +#~ msgstr "손상됨" + +#~ msgctxt "BLOB repository" +#~ msgid "Repair" +#~ msgstr "복구" + +#~ msgctxt "BLOB repository" +#~ msgid "Disabled" +#~ msgstr "무효" + +#~ msgid "Enable" +#~ msgstr "유효" + #~ msgid "" #~ "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " #~ "extension. Please check your PHP configuration." diff --git a/po/lt.po b/po/lt.po index 0005f0c2b..3884cd010 100644 --- a/po/lt.po +++ b/po/lt.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-21 13:53+0200\n" +"POT-Creation-Date: 2010-07-26 17:18+0200\n" "PO-Revision-Date: 2010-04-16 19:52+0200\n" "Last-Translator: Rytis \n" "Language-Team: lithuanian \n" @@ -15,19 +15,19 @@ msgstr "" "%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Pootle 2.0.1\n" -#: browse_foreigners.php:37 browse_foreigners.php:58 -#: libraries/display_tbl.lib.php:416 server_privileges.php:1506 +#: browse_foreigners.php:36 browse_foreigners.php:57 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1510 msgid "Show all" msgstr "Rodyti viską" -#: browse_foreigners.php:81 libraries/common.lib.php:2313 -#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:393 -#: libraries/export/pdf.php:146 pdf_schema.php:282 pdf_schema.php:1122 -#: pdf_schema.php:1138 +#: browse_foreigners.php:80 libraries/common.lib.php:2318 +#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:392 +#: libraries/export/pdf.php:146 pdf_schema.php:281 pdf_schema.php:1121 +#: pdf_schema.php:1137 msgid "Page number:" msgstr "Puslapis:" -#: browse_foreigners.php:131 +#: browse_foreigners.php:130 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -36,139 +36,151 @@ msgstr "" "Tikslo langas neatnaujintas. Galbūt Jūs uždarėte pagrindinį langą arba Jūsų " "naršyklė blokuoja atnaujinimus tarp langų dėl nustatyto saugumo." -#: browse_foreigners.php:149 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2829 -#: libraries/common.lib.php:2836 libraries/db_links.inc.php:74 -#: libraries/tbl_links.inc.php:62 +#: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 +#: db_structure.php:89 db_structure.php:91 db_structure.php:102 +#: db_structure.php:104 libraries/common.lib.php:2834 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Paieška" -#: browse_foreigners.php:152 db_operations.php:384 db_operations.php:428 -#: db_operations.php:498 db_operations.php:608 db_search.php:344 -#: db_structure.php:566 js/messages.php:48 libraries/Config.class.php:1043 -#: libraries/Theme_Manager.class.php:310 +#: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 +#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 +#: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 -#: libraries/common.lib.php:1340 libraries/common.lib.php:2289 +#: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 -#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:275 -#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:531 -#: libraries/display_tbl.lib.php:613 libraries/replication_gui.lib.php:75 +#: libraries/display_export.lib.php:269 libraries/display_import.lib.php:275 +#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 +#: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 #: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:781 -#: main.php:127 navigation.php:231 pdf_pages.php:291 pdf_pages.php:327 -#: pdf_pages.php:529 pmd_pdf.php:115 server_binlog.php:128 -#: server_privileges.php:664 server_privileges.php:1616 -#: server_privileges.php:1963 server_privileges.php:2010 -#: server_privileges.php:2049 server_replication.php:234 -#: server_replication.php:317 server_replication.php:340 -#: server_synchronize.php:1208 tbl_change.php:328 tbl_change.php:1172 -#: tbl_change.php:1209 tbl_indexes.php:253 tbl_operations.php:264 -#: tbl_operations.php:301 tbl_operations.php:498 tbl_operations.php:560 -#: tbl_operations.php:680 tbl_select.php:324 tbl_structure.php:561 -#: tbl_structure.php:596 tbl_tracking.php:394 tbl_tracking.php:511 -#: view_create.php:181 view_operations.php:100 +#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 +#: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 +#: server_privileges.php:663 server_privileges.php:1620 +#: server_privileges.php:1967 server_privileges.php:2014 +#: server_privileges.php:2053 server_replication.php:233 +#: server_replication.php:316 server_replication.php:339 +#: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 +#: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 +#: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 +#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "Vykdyti" -#: browse_foreigners.php:167 browse_foreigners.php:171 -#: libraries/Index.class.php:441 tbl_tracking.php:319 +#: browse_foreigners.php:166 browse_foreigners.php:170 +#: libraries/Index.class.php:441 tbl_tracking.php:314 msgid "Keyname" msgstr "Raktinis žodis" -#: browse_foreigners.php:168 browse_foreigners.php:170 -#: server_collations.php:54 server_collations.php:66 server_engines.php:58 +#: browse_foreigners.php:167 browse_foreigners.php:169 +#: server_collations.php:54 server_collations.php:66 server_engines.php:57 #: server_status.php:738 msgid "Description" msgstr "Paaiškinimas" -#: browse_foreigners.php:246 browse_foreigners.php:255 -#: browse_foreigners.php:267 browse_foreigners.php:275 +#: browse_foreigners.php:245 browse_foreigners.php:254 +#: browse_foreigners.php:266 browse_foreigners.php:274 msgid "Use this value" msgstr "Naudokite šią reikšmę" -#: db_create.php:45 +#: bs_disp_as_mime_type.php:29 bs_play_media.php:35 +msgid "No blob streaming server configured!" +msgstr "" + +#: bs_disp_as_mime_type.php:35 +msgid "Failed to fetch headers" +msgstr "" + +#: bs_disp_as_mime_type.php:41 +msgid "Failed to open remote URL" +msgstr "" + +#: db_create.php:44 #, php-format msgid "Database %1$s has been created." msgstr "Duomenų bazė %1$s sukurta." -#: db_datadict.php:48 db_operations.php:377 +#: db_datadict.php:48 db_operations.php:313 msgid "Database comment: " msgstr "Duombazės komantaras: " -#: db_datadict.php:164 libraries/tbl_properties.inc.php:723 -#: pdf_schema.php:1235 tbl_operations.php:346 tbl_printview.php:128 +#: db_datadict.php:164 libraries/tbl_properties.inc.php:722 +#: pdf_schema.php:1234 tbl_operations.php:344 tbl_printview.php:127 msgid "Table comments" msgstr "Lentelės komentarai" -#: db_datadict.php:173 db_qbe.php:173 libraries/Index.class.php:445 +#: db_datadict.php:173 db_qbe.php:170 libraries/Index.class.php:445 #: libraries/export/htmlword.php:243 libraries/export/latex.php:364 #: libraries/export/odt.php:293 libraries/export/texytext.php:233 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:274 -#: pdf_schema.php:1261 pdf_schema.php:1282 tbl_change.php:306 -#: tbl_indexes.php:188 tbl_printview.php:140 tbl_relation.php:401 -#: tbl_select.php:133 tbl_structure.php:176 tbl_tracking.php:272 -#: tbl_tracking.php:323 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 +#: pdf_schema.php:1260 pdf_schema.php:1281 tbl_change.php:301 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:132 tbl_structure.php:175 tbl_tracking.php:267 +#: tbl_tracking.php:318 #, fuzzy #| msgid "Column names" msgid "Column" msgstr "Stulpelių vardai" -#: db_datadict.php:174 db_printview.php:105 libraries/Index.class.php:442 +#: db_datadict.php:174 db_printview.php:104 libraries/Index.class.php:442 #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 #: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:244 #: libraries/export/latex.php:364 libraries/export/odt.php:296 #: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:99 -#: pdf_schema.php:1262 pdf_schema.php:1283 server_privileges.php:2062 -#: tbl_change.php:285 tbl_change.php:312 tbl_printview.php:141 -#: tbl_printview.php:311 tbl_select.php:134 tbl_structure.php:177 -#: tbl_structure.php:658 tbl_tracking.php:273 tbl_tracking.php:320 +#: pdf_schema.php:1261 pdf_schema.php:1282 server_privileges.php:2066 +#: tbl_change.php:280 tbl_change.php:307 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:133 tbl_structure.php:176 +#: tbl_structure.php:656 tbl_tracking.php:268 tbl_tracking.php:315 msgid "Type" msgstr "Tipas" #: db_datadict.php:176 libraries/Index.class.php:448 #: libraries/export/htmlword.php:245 libraries/export/latex.php:364 #: libraries/export/odt.php:299 libraries/export/texytext.php:235 -#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1264 -#: pdf_schema.php:1285 tbl_change.php:321 tbl_printview.php:143 -#: tbl_structure.php:180 tbl_tracking.php:275 tbl_tracking.php:326 +#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1263 +#: pdf_schema.php:1284 tbl_change.php:316 tbl_printview.php:142 +#: tbl_structure.php:179 tbl_tracking.php:270 tbl_tracking.php:321 msgid "Null" msgstr "Null" -#: db_datadict.php:177 db_structure.php:500 libraries/export/htmlword.php:246 +#: db_datadict.php:177 db_structure.php:486 libraries/export/htmlword.php:246 #: libraries/export/latex.php:364 libraries/export/odt.php:302 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:105 -#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 -#: tbl_structure.php:181 tbl_tracking.php:276 +#: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:143 +#: tbl_structure.php:180 tbl_tracking.php:271 msgid "Default" msgstr "Nutylint" #: db_datadict.php:181 libraries/export/htmlword.php:248 #: libraries/export/latex.php:366 libraries/export/odt.php:306 -#: libraries/export/texytext.php:238 pdf_schema.php:1267 pdf_schema.php:1288 -#: tbl_printview.php:148 +#: libraries/export/texytext.php:238 pdf_schema.php:1266 pdf_schema.php:1287 +#: tbl_printview.php:147 msgid "Links to" msgstr "Sąryšis su" -#: db_datadict.php:183 db_printview.php:111 libraries/export/htmlword.php:251 +#: db_datadict.php:183 db_printview.php:110 libraries/export/htmlword.php:251 #: libraries/export/latex.php:49 libraries/export/latex.php:369 #: libraries/export/odt.php:37 libraries/export/odt.php:311 #: libraries/export/sql.php:29 libraries/export/texytext.php:241 -#: libraries/tbl_properties.inc.php:129 pdf_schema.php:1278 -#: pdf_schema.php:1289 tbl_printview.php:150 +#: libraries/tbl_properties.inc.php:128 pdf_schema.php:1277 +#: pdf_schema.php:1288 tbl_printview.php:149 msgid "Comments" msgstr "Komentarai" #: db_datadict.php:266 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/export/htmlword.php:321 #: libraries/export/latex.php:434 libraries/export/odt.php:367 -#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:262 -#: pdf_schema.php:1343 server_privileges.php:1560 server_privileges.php:1571 -#: server_privileges.php:1881 server_privileges.php:1886 -#: server_privileges.php:2179 sql.php:131 sql.php:193 tbl_printview.php:227 -#: tbl_structure.php:349 tbl_tracking.php:336 tbl_tracking.php:341 +#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:261 +#: pdf_schema.php:1342 server_privileges.php:1564 server_privileges.php:1575 +#: server_privileges.php:1885 server_privileges.php:1890 +#: server_privileges.php:2183 sql.php:130 sql.php:192 tbl_printview.php:226 +#: tbl_structure.php:347 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "Ne" @@ -179,17 +191,17 @@ msgstr "Ne" #: libraries/mult_submits.inc.php:49 libraries/mult_submits.inc.php:54 #: libraries/mult_submits.inc.php:59 libraries/mult_submits.inc.php:91 #: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:105 -#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:261 -#: libraries/mult_submits.inc.php:272 pdf_schema.php:1343 -#: server_databases.php:63 server_privileges.php:1557 -#: server_privileges.php:1571 server_privileges.php:1881 -#: server_privileges.php:1884 server_privileges.php:2179 sql.php:192 -#: tbl_printview.php:227 tbl_structure.php:39 tbl_structure.php:349 -#: tbl_tracking.php:334 tbl_tracking.php:339 +#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:260 +#: libraries/mult_submits.inc.php:271 pdf_schema.php:1342 +#: server_databases.php:61 server_privileges.php:1561 +#: server_privileges.php:1575 server_privileges.php:1885 +#: server_privileges.php:1888 server_privileges.php:2183 sql.php:191 +#: tbl_printview.php:226 tbl_structure.php:38 tbl_structure.php:347 +#: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" msgstr "Taip" -#: db_datadict.php:321 db_printview.php:265 tbl_printview.php:496 +#: db_datadict.php:321 db_printview.php:264 tbl_printview.php:495 msgid "Print" msgstr "Spausdinti" @@ -197,194 +209,154 @@ msgstr "Spausdinti" msgid "View dump (schema) of database" msgstr "Sukurti, peržiūrėti duombazės atvaizdį" -#: db_export.php:32 db_printview.php:95 db_qbe.php:101 db_structure.php:50 -#: db_tracking.php:34 export.php:352 navigation.php:326 +#: db_export.php:32 db_printview.php:94 db_qbe.php:98 db_structure.php:49 +#: db_tracking.php:30 export.php:350 navigation.php:325 msgid "No tables found in database." msgstr "Duombazėje nerasta lentelių." -#: db_export.php:42 db_search.php:326 server_export.php:26 +#: db_export.php:42 db_search.php:326 server_export.php:24 msgid "Select All" msgstr "Pažymėti visus" -#: db_export.php:44 db_search.php:329 server_export.php:28 +#: db_export.php:44 db_search.php:329 server_export.php:26 msgid "Unselect All" msgstr "Atžymėti visus" -#: db_operations.php:37 tbl_create.php:49 +#: db_operations.php:33 tbl_create.php:47 msgid "The database name is empty!" msgstr "Nenurodytas duombazės vardas!" -#: db_operations.php:235 +#: db_operations.php:231 #, php-format msgid "Database %s has been renamed to %s" msgstr "Duombazė %s pervadinta į %s" -#: db_operations.php:239 +#: db_operations.php:235 #, php-format msgid "Database %s has been copied to %s" msgstr "Duombazė %s buvo nukopijuota į %s" -#: db_operations.php:411 +#: db_operations.php:347 msgid "Rename database to" msgstr "Pervadinti duombazę į" -#: db_operations.php:416 server_processlist.php:56 +#: db_operations.php:352 server_processlist.php:56 msgid "Command" msgstr "Komanda" -#: db_operations.php:428 tbl_change.php:1141 +#: db_operations.php:364 tbl_change.php:1039 msgid "and then" msgstr "ir tada" -#: db_operations.php:454 +#: db_operations.php:390 msgid "Copy database to" msgstr "Kopijuoti duombazę į" -#: db_operations.php:461 tbl_operations.php:527 tbl_tracking.php:387 +#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Tik struktūra" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:389 +#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Struktūra ir duomenys" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:388 +#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Tik duomenys" -#: db_operations.php:471 +#: db_operations.php:407 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE prieš kopijuojant" -#: db_operations.php:474 libraries/export/sql.php:51 +#: db_operations.php:410 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 -#: libraries/export/sql.php:81 tbl_operations.php:535 +#: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "Pridėti %s" -#: db_operations.php:478 libraries/export/sql.php:77 tbl_operations.php:298 -#: tbl_operations.php:537 +#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Pridėti AUTO_INCREMENT reikšmę" -#: db_operations.php:482 tbl_operations.php:544 +#: db_operations.php:418 tbl_operations.php:542 msgid "Add constraints" msgstr "Pridėti apribojimą" -#: db_operations.php:495 +#: db_operations.php:431 msgid "Switch to copied database" msgstr "Pereiti į nukopijuotą duombazę" -#: db_operations.php:536 -msgid "BLOB Repository" -msgstr "BLOB saugykla" - -#: db_operations.php:539 db_tracking.php:75 libraries/common.lib.php:1357 -#: libraries/server_links.inc.php:48 server_processlist.php:58 -#: tbl_tracking.php:595 test/theme.php:100 -msgid "Status" -msgstr "Statusas" - -#: db_operations.php:547 -#, fuzzy -#| msgid "Enabled" -msgctxt "BLOB repository" -msgid "Enabled" -msgstr "Įjungta" - -#: db_operations.php:551 -msgid "Disable" -msgstr "Išjungti" - -#: db_operations.php:561 -msgid "Damaged" -msgstr "Pažeista" - -#: db_operations.php:565 -#, fuzzy -#| msgid "Repair" -msgctxt "BLOB repository" -msgid "Repair" -msgstr "Taisyti" - -#: db_operations.php:573 -#, fuzzy -#| msgid "Disabled" -msgctxt "BLOB repository" -msgid "Disabled" -msgstr "Išjungta" - -#: db_operations.php:577 -msgid "Enable" -msgstr "Įjungti" - -#: db_operations.php:601 libraries/Index.class.php:447 +#: db_operations.php:451 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 -#: server_collations.php:53 server_collations.php:65 server_databases.php:110 -#: tbl_operations.php:362 tbl_select.php:135 tbl_structure.php:178 -#: tbl_structure.php:766 tbl_tracking.php:274 tbl_tracking.php:325 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 +#: server_collations.php:53 server_collations.php:65 server_databases.php:108 +#: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:177 +#: tbl_structure.php:764 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "Palyginimas" -#: db_operations.php:614 main.php:315 pdf_schema.php:33 -#, php-format +#: db_operations.php:464 pdf_schema.php:32 +#, fuzzy, php-format +#| msgid "" +#| "The additional features for working with linked tables have been " +#| "deactivated. To find out why click %shere%s." msgid "" -"The additional features for working with linked tables have been " -"deactivated. To find out why click %shere%s." +"The phpMyAdmin configuration storage has been deactivated. To find out why " +"click %shere%s." msgstr "" "Nėra PMA lentelių, kurios leidžia dirbti su jungtinėmis MySQL lentelėmis. " "%sPaaiškinimas%s." -#: db_operations.php:647 +#: db_operations.php:497 msgid "Edit PDF Pages" msgstr "Redaguoti PDF puslapius" -#: db_printview.php:103 db_tracking.php:71 db_tracking.php:156 +#: db_printview.php:102 db_tracking.php:67 db_tracking.php:152 #: libraries/db_structure.lib.php:37 libraries/export/xml.php:327 -#: libraries/header.inc.php:125 pdf_pages.php:423 server_privileges.php:1657 -#: server_privileges.php:1713 server_privileges.php:1977 -#: server_synchronize.php:422 server_synchronize.php:865 tbl_tracking.php:591 +#: libraries/header.inc.php:125 pdf_pages.php:422 server_privileges.php:1661 +#: server_privileges.php:1717 server_privileges.php:1981 +#: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "Lentelė" -#: db_printview.php:104 libraries/db_structure.lib.php:47 +#: db_printview.php:103 libraries/db_structure.lib.php:47 #: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 -#: navigation.php:629 navigation.php:651 server_databases.php:121 -#: tbl_printview.php:392 tbl_structure.php:364 tbl_structure.php:776 +#: navigation.php:628 navigation.php:650 server_databases.php:119 +#: tbl_printview.php:391 tbl_structure.php:362 tbl_structure.php:774 msgid "Rows" msgstr "Eilutės" -#: db_printview.php:108 libraries/db_structure.lib.php:58 tbl_indexes.php:189 +#: db_printview.php:107 libraries/db_structure.lib.php:58 tbl_indexes.php:188 msgid "Size" msgstr "Dydis" -#: db_printview.php:161 db_structure.php:456 libraries/export/sql.php:556 +#: db_printview.php:160 db_structure.php:442 libraries/export/sql.php:556 #: libraries/export/sql.php:896 msgid "in use" msgstr "šiuo metu naudojama" -#: db_printview.php:186 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:511 pdf_schema.php:1240 tbl_printview.php:432 -#: tbl_structure.php:808 +#: db_printview.php:185 libraries/db_info.inc.php:86 +#: libraries/export/sql.php:511 pdf_schema.php:1239 tbl_printview.php:431 +#: tbl_structure.php:806 msgid "Creation" msgstr "Sukurta" -#: db_printview.php:195 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:516 pdf_schema.php:1245 tbl_printview.php:442 -#: tbl_structure.php:816 +#: db_printview.php:194 libraries/db_info.inc.php:91 +#: libraries/export/sql.php:516 pdf_schema.php:1244 tbl_printview.php:441 +#: tbl_structure.php:814 msgid "Last update" msgstr "Paskutinis atnaujinimas" -#: db_printview.php:204 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:521 pdf_schema.php:1250 tbl_printview.php:452 -#: tbl_structure.php:824 +#: db_printview.php:203 libraries/db_info.inc.php:96 +#: libraries/export/sql.php:521 pdf_schema.php:1249 tbl_printview.php:451 +#: tbl_structure.php:822 msgid "Last check" msgstr "Paskutinis patikrinimas" -#: db_printview.php:221 db_structure.php:479 +#: db_printview.php:220 db_structure.php:465 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -393,94 +365,94 @@ msgstr[0] "%s lentelė(s)" msgstr[1] "%s lentelė(s)" msgstr[2] "%s lentelė(s)" -#: db_qbe.php:28 import.php:453 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1980 libraries/sql_query_form.lib.php:138 -#: tbl_operations.php:212 tbl_relation.php:291 tbl_row_action.php:130 -#: view_operations.php:61 +#: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 +#: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "Jūsų SQL užklausa sėkmingai įvykdyta" -#: db_qbe.php:41 +#: db_qbe.php:38 msgid "You have to choose at least one column to display" msgstr "Pasirinkite bent vieną stulpelį išvedimui" -#: db_qbe.php:199 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:865 +#: db_qbe.php:196 libraries/db_structure.lib.php:95 +#: libraries/display_tbl.lib.php:864 msgid "Sort" msgstr "Rūšiuoti" -#: db_qbe.php:208 db_qbe.php:242 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:522 libraries/display_tbl.lib.php:827 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:259 -#: tbl_select.php:311 +#: db_qbe.php:205 db_qbe.php:239 libraries/db_structure.lib.php:102 +#: libraries/display_tbl.lib.php:521 libraries/display_tbl.lib.php:826 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:257 +#: tbl_select.php:310 msgid "Ascending" msgstr "Didėjimo tvarka" -#: db_qbe.php:209 db_qbe.php:250 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:527 libraries/display_tbl.lib.php:824 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:260 -#: tbl_select.php:312 +#: db_qbe.php:206 db_qbe.php:247 libraries/db_structure.lib.php:110 +#: libraries/display_tbl.lib.php:526 libraries/display_tbl.lib.php:823 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:258 +#: tbl_select.php:311 msgid "Descending" msgstr "Mažėjimo tvarka" -#: db_qbe.php:263 db_tracking.php:77 libraries/display_tbl.lib.php:307 -#: tbl_change.php:275 tbl_tracking.php:596 +#: db_qbe.php:260 db_tracking.php:73 libraries/display_tbl.lib.php:306 +#: tbl_change.php:270 tbl_tracking.php:591 msgid "Show" msgstr "Rodyti" -#: db_qbe.php:299 +#: db_qbe.php:296 msgid "Criteria" msgstr "Kriterijai" -#: db_qbe.php:352 db_qbe.php:434 db_qbe.php:526 db_qbe.php:557 +#: db_qbe.php:349 db_qbe.php:431 db_qbe.php:523 db_qbe.php:554 msgid "Ins" msgstr "Įterpiant" -#: db_qbe.php:356 db_qbe.php:438 db_qbe.php:523 db_qbe.php:554 +#: db_qbe.php:353 db_qbe.php:435 db_qbe.php:520 db_qbe.php:551 msgid "And" msgstr "IR" -#: db_qbe.php:365 db_qbe.php:446 db_qbe.php:528 db_qbe.php:559 +#: db_qbe.php:362 db_qbe.php:443 db_qbe.php:525 db_qbe.php:556 msgid "Del" msgstr "Pakeičiant" -#: db_qbe.php:369 db_qbe.php:450 db_qbe.php:521 db_qbe.php:552 -#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:778 -#: server_privileges.php:297 tbl_change.php:1027 tbl_indexes.php:249 -#: tbl_select.php:285 +#: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 +#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:777 +#: server_privileges.php:296 tbl_change.php:925 tbl_indexes.php:248 +#: tbl_select.php:284 msgid "Or" msgstr "Arba" -#: db_qbe.php:506 +#: db_qbe.php:503 msgid "Modify" msgstr "Keisti" -#: db_qbe.php:583 +#: db_qbe.php:580 #, fuzzy #| msgid "Add/Delete Criteria Row" msgid "Add/Delete criteria rows" msgstr "Įterpti/Trinti požymio eilutę(es)" -#: db_qbe.php:595 +#: db_qbe.php:592 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Add/Delete columns" msgstr "Įterpti/trinti laukus" -#: db_qbe.php:608 db_qbe.php:633 +#: db_qbe.php:605 db_qbe.php:630 msgid "Update Query" msgstr "Atnaujinti užklausą" -#: db_qbe.php:616 +#: db_qbe.php:613 msgid "Use Tables" msgstr "Naudoti lenteles" -#: db_qbe.php:639 +#: db_qbe.php:636 #, php-format msgid "SQL query on database %s:" msgstr "SQL-užklausa duombazėje %s:" -#: db_qbe.php:933 libraries/common.lib.php:1222 +#: db_qbe.php:930 libraries/common.lib.php:1215 msgid "Submit Query" msgstr "Vykdyti užklausą" @@ -521,17 +493,17 @@ msgstr[0] "%s atitikmuo(enys) lentelėje %s" msgstr[1] "%s atitikmuo(enys) lentelėje %s" msgstr[2] "%s atitikmuo(enys) lentelėje %s" -#: db_search.php:249 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2831 -#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:49 -#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:466 +#: db_search.php:249 db_structure.php:75 db_structure.php:76 +#: db_structure.php:88 db_structure.php:90 db_structure.php:101 +#: db_structure.php:103 libraries/common.lib.php:2836 +#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 +#: tbl_structure.php:35 tbl_structure.php:47 tbl_structure.php:464 msgid "Browse" msgstr "Peržiūrėti" -#: db_search.php:254 libraries/display_tbl.lib.php:1164 -#: libraries/display_tbl.lib.php:2055 libraries/sql_query_form.lib.php:453 -#: pdf_pages.php:285 pdf_pages.php:424 pdf_pages.php:460 pdf_pages.php:488 +#: db_search.php:254 libraries/display_tbl.lib.php:1163 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 msgid "Delete" @@ -572,230 +544,236 @@ msgstr "Lentelės(ių) viduje:" msgid "Inside column:" msgstr "Lentelės(ių) viduje:" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2830 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:75 +#: db_structure.php:79 db_structure.php:80 db_structure.php:92 +#: db_structure.php:93 db_structure.php:105 db_structure.php:106 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 +#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Įterpti" -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2827 libraries/common.lib.php:2834 -#: libraries/db_links.inc.php:62 libraries/export/htmlword.php:22 +#: db_structure.php:81 db_structure.php:94 db_structure.php:107 +#: libraries/common.lib.php:2832 libraries/common.lib.php:2839 +#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 -#: libraries/tbl_links.inc.php:55 pmd_general.php:133 -#: server_privileges.php:593 server_replication.php:314 tbl_tracking.php:268 +#: libraries/tbl_links.inc.php:54 pmd_general.php:133 +#: server_privileges.php:592 server_replication.php:313 tbl_tracking.php:263 msgid "Structure" msgstr "Struktūra" -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:544 db_structure.php:545 db_tracking.php:90 -#: libraries/Index.class.php:482 libraries/common.lib.php:1659 -#: libraries/db_links.inc.php:99 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:126 -#: server_databases.php:351 tbl_structure.php:26 tbl_structure.php:150 -#: tbl_structure.php:151 tbl_structure.php:470 +#: db_structure.php:82 db_structure.php:83 db_structure.php:95 +#: db_structure.php:96 db_structure.php:108 db_structure.php:109 +#: db_structure.php:530 db_structure.php:531 db_tracking.php:86 +#: libraries/Index.class.php:482 libraries/common.lib.php:1663 +#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 +#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 +#: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" msgstr "Šalinti" -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:542 db_structure.php:543 libraries/common.lib.php:1658 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:104 +#: db_structure.php:84 db_structure.php:85 db_structure.php:97 +#: db_structure.php:98 db_structure.php:110 db_structure.php:111 +#: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 +#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 msgid "Empty" msgstr "Išvalyti" -#: db_structure.php:315 libraries/tbl_links.inc.php:99 +#: db_structure.php:301 libraries/tbl_links.inc.php:98 #, php-format msgid "Table %s has been emptied" msgstr "Lentelės reikšmės %s ištuštintos" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "View %s has been dropped" msgstr "View'as %s buvo panaikintas" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "Table %s has been dropped" msgstr "Lentelė %s panaikinta" -#: db_structure.php:332 +#: db_structure.php:318 msgid "Tracking is active." msgstr "" -#: db_structure.php:334 +#: db_structure.php:320 msgid "Tracking is not active." msgstr "" -#: db_structure.php:419 libraries/display_tbl.lib.php:1943 +#: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -#: db_structure.php:433 db_structure.php:447 libraries/header.inc.php:125 -#: libraries/tbl_info.inc.php:65 tbl_structure.php:184 test/theme.php:73 +#: db_structure.php:419 db_structure.php:433 libraries/header.inc.php:125 +#: libraries/tbl_info.inc.php:60 tbl_structure.php:183 test/theme.php:73 msgid "View" msgstr "View'as" -#: db_structure.php:484 libraries/db_structure.lib.php:40 -#: libraries/server_links.inc.php:69 server_replication.php:32 -#: server_replication.php:163 server_status.php:368 +#: db_structure.php:470 libraries/db_structure.lib.php:40 +#: libraries/server_links.inc.php:69 server_replication.php:31 +#: server_replication.php:162 server_status.php:368 msgid "Replication" msgstr "Replikacija" -#: db_structure.php:488 +#: db_structure.php:474 msgid "Sum" msgstr "Sumos" -#: db_structure.php:495 libraries/StorageEngine.class.php:349 +#: db_structure.php:481 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s yra standartinis saugojimo variklis šiame MySQL serveryje." -#: db_structure.php:523 db_structure.php:540 db_structure.php:541 -#: libraries/display_tbl.lib.php:2080 libraries/display_tbl.lib.php:2085 -#: libraries/mult_submits.inc.php:15 server_databases.php:345 -#: server_databases.php:350 server_privileges.php:1588 tbl_structure.php:454 -#: tbl_structure.php:463 +#: db_structure.php:509 db_structure.php:526 db_structure.php:527 +#: libraries/display_tbl.lib.php:2039 libraries/display_tbl.lib.php:2044 +#: libraries/mult_submits.inc.php:15 server_databases.php:343 +#: server_databases.php:348 server_privileges.php:1592 tbl_structure.php:452 +#: tbl_structure.php:461 msgid "With selected:" msgstr "Pasirinktus:" -#: db_structure.php:526 libraries/display_tbl.lib.php:2075 -#: server_databases.php:347 server_privileges.php:569 -#: server_privileges.php:1591 tbl_structure.php:457 +#: db_structure.php:512 libraries/display_tbl.lib.php:2034 +#: server_databases.php:345 server_privileges.php:568 +#: server_privileges.php:1595 tbl_structure.php:455 msgid "Check All" msgstr "Pažymėti visus" -#: db_structure.php:530 libraries/display_tbl.lib.php:2076 -#: libraries/replication_gui.lib.php:35 server_databases.php:349 -#: server_privileges.php:572 server_privileges.php:1595 tbl_structure.php:461 +#: db_structure.php:516 libraries/display_tbl.lib.php:2035 +#: libraries/replication_gui.lib.php:35 server_databases.php:347 +#: server_privileges.php:571 server_privileges.php:1599 tbl_structure.php:459 msgid "Uncheck All" msgstr "Atžymėti visus" -#: db_structure.php:535 +#: db_structure.php:521 msgid "Check tables having overhead" msgstr "Pažymėti turinčias perteklių" -#: db_structure.php:546 db_structure.php:547 db_structure.php:598 -#: libraries/display_tbl.lib.php:2179 libraries/mult_submits.inc.php:27 -#: tbl_structure.php:491 tbl_structure.php:493 +#: db_structure.php:532 db_structure.php:533 db_structure.php:584 +#: libraries/display_tbl.lib.php:2138 libraries/mult_submits.inc.php:27 +#: tbl_structure.php:489 tbl_structure.php:491 msgid "Print view" msgstr "Spausdinti struktūrą" -#: db_structure.php:548 db_structure.php:549 libraries/mult_submits.inc.php:41 -#: tbl_operations.php:580 +#: db_structure.php:534 db_structure.php:535 libraries/mult_submits.inc.php:41 +#: tbl_operations.php:578 msgid "Check table" msgstr "Patikrinti lentelę" -#: db_structure.php:550 db_structure.php:551 libraries/mult_submits.inc.php:46 -#: tbl_operations.php:620 tbl_structure.php:708 tbl_structure.php:710 +#: db_structure.php:536 db_structure.php:537 libraries/mult_submits.inc.php:46 +#: tbl_operations.php:618 tbl_structure.php:706 tbl_structure.php:708 msgid "Optimize table" msgstr "Optimizuoti" -#: db_structure.php:552 db_structure.php:553 libraries/mult_submits.inc.php:51 -#: tbl_operations.php:610 +#: db_structure.php:538 db_structure.php:539 libraries/mult_submits.inc.php:51 +#: tbl_operations.php:608 msgid "Repair table" msgstr "Redaguoti" -#: db_structure.php:554 db_structure.php:555 libraries/mult_submits.inc.php:56 -#: tbl_operations.php:600 +#: db_structure.php:540 db_structure.php:541 libraries/mult_submits.inc.php:56 +#: tbl_operations.php:598 msgid "Analyze table" msgstr "Analizuoti lentelę" -#: db_structure.php:556 db_structure.php:557 libraries/db_links.inc.php:70 -#: libraries/display_export.lib.php:82 libraries/display_tbl.lib.php:2093 -#: libraries/display_tbl.lib.php:2224 libraries/mult_submits.inc.php:61 -#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:81 -#: pmd_pdf.php:83 pmd_pdf.php:108 server_privileges.php:1372 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 +#: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 +#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 +#: pmd_pdf.php:81 pmd_pdf.php:106 server_privileges.php:1376 #: setup/frames/menu.inc.php:22 tbl_row_action.php:58 msgid "Export" msgstr "Eksportuoti" -#: db_structure.php:605 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:591 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "Duomenų žodynas" -#: db_tracking.php:65 +#: db_tracking.php:61 #, fuzzy msgid "Tracked tables" msgstr "Patikrinti lentelę" -#: db_tracking.php:70 libraries/export/htmlword.php:85 +#: db_tracking.php:66 libraries/export/htmlword.php:85 #: libraries/export/latex.php:152 libraries/export/odt.php:112 #: libraries/export/sql.php:339 libraries/export/texytext.php:84 #: libraries/export/xml.php:254 libraries/header.inc.php:105 -#: libraries/header_printview.inc.php:57 server_databases.php:168 -#: server_privileges.php:1652 server_privileges.php:1713 -#: server_privileges.php:1971 server_processlist.php:55 -#: server_synchronize.php:1178 server_synchronize.php:1182 -#: tbl_tracking.php:590 test/theme.php:64 +#: libraries/header_printview.inc.php:57 server_databases.php:166 +#: server_privileges.php:1656 server_privileges.php:1717 +#: server_privileges.php:1975 server_processlist.php:55 +#: server_synchronize.php:1177 server_synchronize.php:1181 +#: tbl_tracking.php:585 test/theme.php:64 msgid "Database" msgstr "Duombazė" -#: db_tracking.php:72 +#: db_tracking.php:68 msgid "Last version" msgstr "Paskutinė versija" -#: db_tracking.php:73 tbl_tracking.php:593 +#: db_tracking.php:69 tbl_tracking.php:588 msgid "Created" msgstr "Sukurta" -#: db_tracking.php:74 tbl_tracking.php:594 +#: db_tracking.php:70 tbl_tracking.php:589 msgid "Updated" msgstr "Atnaujinta" -#: db_tracking.php:76 libraries/Index.class.php:439 -#: libraries/db_structure.lib.php:44 server_databases.php:202 -#: server_privileges.php:1534 server_privileges.php:1717 -#: server_privileges.php:2065 tbl_structure.php:186 +#: db_tracking.php:71 libraries/common.lib.php:1361 +#: libraries/server_links.inc.php:48 server_processlist.php:58 +#: tbl_tracking.php:590 test/theme.php:100 +msgid "Status" +msgstr "Statusas" + +#: db_tracking.php:72 libraries/Index.class.php:439 +#: libraries/db_structure.lib.php:44 server_databases.php:200 +#: server_privileges.php:1538 server_privileges.php:1721 +#: server_privileges.php:2069 tbl_structure.php:185 msgid "Action" msgstr "Veiksmas" -#: db_tracking.php:87 db_tracking.php:119 +#: db_tracking.php:83 db_tracking.php:115 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:105 tbl_tracking.php:547 tbl_tracking.php:605 -#: tbl_tracking.php:612 +#: db_tracking.php:101 tbl_tracking.php:542 tbl_tracking.php:600 +#: tbl_tracking.php:607 msgid "active" msgstr "" -#: db_tracking.php:107 tbl_tracking.php:549 tbl_tracking.php:607 -#: tbl_tracking.php:609 +#: db_tracking.php:103 tbl_tracking.php:544 tbl_tracking.php:602 +#: tbl_tracking.php:604 msgid "not active" msgstr "" -#: db_tracking.php:120 +#: db_tracking.php:116 msgid "Versions" msgstr "Versijos" -#: db_tracking.php:121 tbl_tracking.php:378 tbl_tracking.php:623 +#: db_tracking.php:117 tbl_tracking.php:373 tbl_tracking.php:618 msgid "Tracking report" msgstr "" -#: db_tracking.php:122 tbl_tracking.php:250 tbl_tracking.php:623 +#: db_tracking.php:118 tbl_tracking.php:245 tbl_tracking.php:618 #, fuzzy msgid "Structure snapshot" msgstr "Tik struktūra" -#: db_tracking.php:151 +#: db_tracking.php:147 #, fuzzy msgid "Untracked tables" msgstr "Patikrinti lentelę" -#: db_tracking.php:171 db_tracking.php:173 tbl_structure.php:527 -#: tbl_structure.php:529 +#: db_tracking.php:167 db_tracking.php:169 tbl_structure.php:525 +#: tbl_structure.php:527 #, fuzzy msgid "Track table" msgstr "Patikrinti lentelę" -#: db_tracking.php:199 +#: db_tracking.php:195 #, fuzzy msgid "Database Log" msgstr "Duombazė" @@ -804,12 +782,12 @@ msgstr "Duombazė" msgid "Selected export type has to be saved in file!" msgstr "" -#: export.php:153 export.php:178 export.php:620 +#: export.php:152 export.php:177 export.php:615 #, php-format msgid "Insufficient space to save the file %s." msgstr "Nėra pakankamai vietos išsaugoti failui %s." -#: export.php:287 +#: export.php:286 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -817,92 +795,92 @@ msgstr "" "Failas pavadinimu %s jau yra darbinėje stotyje, pakeiskite norimą pavadinimą " "arba pasirinkite nustatymą leidžiantį perrašyti esamus failus." -#: export.php:291 export.php:295 +#: export.php:290 export.php:294 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Nėra teisių išsaugoti failui %s." -#: export.php:622 +#: export.php:617 #, php-format msgid "Dump has been saved to file %s." msgstr "Duombazės atvaizdis išsaugotas faile %s." -#: import.php:59 +#: 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." msgstr "" -#: import.php:278 import.php:331 libraries/File.class.php:840 -#: libraries/File.class.php:950 +#: import.php:277 import.php:330 libraries/File.class.php:566 +#: libraries/File.class.php:676 msgid "File could not be read" msgstr "Negalima perskaityti failo" -#: import.php:286 import.php:295 import.php:314 import.php:323 -#: libraries/File.class.php:1020 libraries/File.class.php:1028 -#: libraries/File.class.php:1044 libraries/File.class.php:1052 +#: import.php:285 import.php:294 import.php:313 import.php:322 +#: libraries/File.class.php:746 libraries/File.class.php:754 +#: libraries/File.class.php:770 libraries/File.class.php:778 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." msgstr "" -#: import.php:336 +#: import.php:335 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " "[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." msgstr "" -#: import.php:371 libraries/display_import.lib.php:23 +#: import.php:370 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:396 +#: import.php:395 msgid "The bookmark has been deleted." msgstr "Nuoroda ištrinta." -#: import.php:400 +#: import.php:399 msgid "Showing bookmark" msgstr "" -#: import.php:402 sql.php:625 +#: import.php:401 sql.php:618 #, php-format msgid "Bookmark %s created" msgstr "Žymė %s sukurta" -#: import.php:408 import.php:414 +#: import.php:407 import.php:413 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" -#: import.php:423 +#: import.php:422 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: import.php:425 +#: import.php:424 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." msgstr "" -#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:240 +#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:239 #: user_password.php:110 msgid "Back" msgstr "Atgal" -#: index.php:188 +#: index.php:183 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" "phpMyAdmin draugiškesnis su rėmelius palaikančiomis naršyklėmis." -#: js/messages.php:25 server_synchronize.php:344 server_synchronize.php:356 -#: server_synchronize.php:372 server_synchronize.php:379 -#: server_synchronize.php:738 server_synchronize.php:766 -#: server_synchronize.php:794 server_synchronize.php:806 +#: js/messages.php:25 server_synchronize.php:343 server_synchronize.php:355 +#: server_synchronize.php:371 server_synchronize.php:378 +#: server_synchronize.php:737 server_synchronize.php:765 +#: server_synchronize.php:793 server_synchronize.php:805 msgid "Click to select" msgstr "Spustelėkite pažymėjimui" @@ -910,15 +888,15 @@ msgstr "Spustelėkite pažymėjimui" msgid "Click to unselect" msgstr "Spustelėkite atžymėjimui" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:88 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:87 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" komandos įvykdyti negalima." -#: js/messages.php:30 libraries/mult_submits.inc.php:257 sql.php:187 +#: js/messages.php:30 libraries/mult_submits.inc.php:256 sql.php:186 msgid "Do you really want to " msgstr "Ar TIKRAI norite " -#: js/messages.php:31 libraries/mult_submits.inc.php:257 sql.php:171 +#: js/messages.php:31 libraries/mult_submits.inc.php:256 sql.php:170 msgid "You are about to DESTROY a complete database!" msgstr "Jūs ruošiatės SUNAIKINTI visą duombazę!" @@ -947,11 +925,11 @@ msgstr "Tuščias prisijungimo adresas!" msgid "The user name is empty!" msgstr "Tuščias vartotojo vardas!" -#: js/messages.php:44 server_privileges.php:1228 user_password.php:65 +#: js/messages.php:44 server_privileges.php:1229 user_password.php:65 msgid "The password is empty!" msgstr "Tuščias slaptažodis!" -#: js/messages.php:45 server_privileges.php:1226 user_password.php:68 +#: js/messages.php:45 server_privileges.php:1227 user_password.php:68 msgid "The passwords aren't the same!" msgstr "Slaptažodžiai nesutampa!" @@ -959,29 +937,29 @@ msgstr "Slaptažodžiai nesutampa!" msgid "Cancel" msgstr "Atšaukti" -#: js/messages.php:52 pmd_save_pos.php:53 +#: js/messages.php:52 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "Pakeitimai išsaugoti" -#: js/messages.php:53 pmd_relation_upd.php:48 +#: js/messages.php:53 pmd_relation_upd.php:47 #, fuzzy msgid "Relation deleted" msgstr "Peržiūrėti sąryšius" -#: js/messages.php:54 pmd_relation_new.php:63 +#: js/messages.php:54 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:55 pmd_relation_new.php:85 +#: js/messages.php:55 pmd_relation_new.php:84 #, fuzzy msgid "Internal relation added" msgstr "Vidiniai sąryšiai" -#: js/messages.php:56 pmd_relation_new.php:62 pmd_relation_new.php:87 +#: js/messages.php:56 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:57 pmd_relation_new.php:30 +#: js/messages.php:57 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "" @@ -989,13 +967,13 @@ msgstr "" msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:59 libraries/relation.lib.php:94 -#: libraries/relation.lib.php:106 +#: js/messages.php:59 libraries/relation.lib.php:89 +#: libraries/relation.lib.php:101 msgid "General relation features" msgstr "Pagrindinės sąryšių sąvybės" -#: js/messages.php:59 libraries/relation.lib.php:88 -#: libraries/relation.lib.php:95 +#: js/messages.php:59 libraries/relation.lib.php:83 +#: libraries/relation.lib.php:90 msgid "Disabled" msgstr "Išjungta" @@ -1011,7 +989,7 @@ msgstr "" msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:547 +#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" @@ -1042,10 +1020,10 @@ msgid "Prev" msgstr "Praėjęs" #. l10n: Display text for next month link in calendar -#: js/messages.php:81 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:337 -#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:422 -#: tbl_structure.php:800 +#: js/messages.php:81 libraries/common.lib.php:2358 +#: libraries/common.lib.php:2361 libraries/display_tbl.lib.php:336 +#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 +#: tbl_structure.php:798 msgid "Next" msgstr "Sekantis" @@ -1119,27 +1097,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1562 +#: js/messages.php:101 libraries/common.lib.php:1566 msgid "Jan" msgstr "sausio" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1564 +#: js/messages.php:103 libraries/common.lib.php:1568 msgid "Feb" msgstr "vasario" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1566 +#: js/messages.php:105 libraries/common.lib.php:1570 msgid "Mar" msgstr "kovo" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1568 +#: js/messages.php:107 libraries/common.lib.php:1572 msgid "Apr" msgstr "balandžio" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1570 +#: js/messages.php:109 libraries/common.lib.php:1574 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1147,37 +1125,37 @@ msgid "May" msgstr "gegužės" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1572 +#: js/messages.php:111 libraries/common.lib.php:1576 msgid "Jun" msgstr "birželio" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1574 +#: js/messages.php:113 libraries/common.lib.php:1578 msgid "Jul" msgstr "liepos" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1576 +#: js/messages.php:115 libraries/common.lib.php:1580 msgid "Aug" msgstr "rugpjūčio" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1578 +#: js/messages.php:117 libraries/common.lib.php:1582 msgid "Sep" msgstr "rugsėjo" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1580 +#: js/messages.php:119 libraries/common.lib.php:1584 msgid "Oct" msgstr "spalio" #. l10n: Short month name -#: js/messages.php:121 libraries/common.lib.php:1582 +#: js/messages.php:121 libraries/common.lib.php:1586 msgid "Nov" msgstr "lapkričio" #. l10n: Short month name -#: js/messages.php:123 libraries/common.lib.php:1584 +#: js/messages.php:123 libraries/common.lib.php:1588 msgid "Dec" msgstr "gruodžio" @@ -1218,37 +1196,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1587 +#: js/messages.php:136 libraries/common.lib.php:1591 msgid "Sun" msgstr "Sekmadienis" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1589 +#: js/messages.php:138 libraries/common.lib.php:1593 msgid "Mon" msgstr "Pirmadienis" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1591 +#: js/messages.php:140 libraries/common.lib.php:1595 msgid "Tue" msgstr "Antradienis" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1593 +#: js/messages.php:142 libraries/common.lib.php:1597 msgid "Wed" msgstr "Trečiadienis" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1595 +#: js/messages.php:144 libraries/common.lib.php:1599 msgid "Thu" msgstr "Ketvirtadienis" #. l10n: Short week day name -#: js/messages.php:146 libraries/common.lib.php:1597 +#: js/messages.php:146 libraries/common.lib.php:1601 msgid "Fri" msgstr "Penktadienis" #. l10n: Short week day name -#: js/messages.php:148 libraries/common.lib.php:1599 +#: js/messages.php:148 libraries/common.lib.php:1603 msgid "Sat" msgstr "Šeštadienis" @@ -1328,75 +1306,74 @@ msgstr "per sekundę" msgid "Font size" msgstr "Šrifto dydis" -#: libraries/File.class.php:336 libraries/File.class.php:424 -#: libraries/File.class.php:561 libraries/File.class.php:700 -msgid "Unknown error in file upload." -msgstr "" - -#: libraries/File.class.php:406 +#: libraries/File.class.php:315 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:409 +#: libraries/File.class.php:318 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:412 +#: libraries/File.class.php:321 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:415 +#: libraries/File.class.php:324 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:418 +#: libraries/File.class.php:327 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:421 +#: libraries/File.class.php:330 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:898 +#: libraries/File.class.php:333 +msgid "Unknown error in file upload." +msgstr "" + +#: libraries/File.class.php:624 #, fuzzy msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "Gali būti apytikslis. Žiūrėkite DUK 3.11" -#: libraries/Index.class.php:427 tbl_relation.php:528 +#: libraries/Index.class.php:427 tbl_relation.php:526 msgid "No index defined!" msgstr "Neaprašyti indeksai!" -#: libraries/Index.class.php:432 server_databases.php:131 tbl_tracking.php:315 +#: libraries/Index.class.php:432 server_databases.php:129 tbl_tracking.php:310 msgid "Indexes" msgstr "Indeksai" #: libraries/Index.class.php:443 libraries/mult_submits.inc.php:102 -#: libraries/tbl_properties.inc.php:518 tbl_structure.php:32 -#: tbl_structure.php:154 tbl_structure.php:158 tbl_structure.php:473 -#: tbl_tracking.php:321 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:31 +#: tbl_structure.php:153 tbl_structure.php:157 tbl_structure.php:471 +#: tbl_tracking.php:316 msgid "Unique" msgstr "Unikalus" -#: libraries/Index.class.php:444 tbl_tracking.php:322 +#: libraries/Index.class.php:444 tbl_tracking.php:317 msgid "Packed" msgstr "Suspausta" -#: libraries/Index.class.php:446 tbl_tracking.php:324 +#: libraries/Index.class.php:446 tbl_tracking.php:319 msgid "Cardinality" msgstr "Elementų skaičius" -#: libraries/Index.class.php:449 tbl_tracking.php:278 tbl_tracking.php:327 +#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322 msgid "Comment" msgstr "Komentaras" #: libraries/Index.class.php:465 libraries/common.lib.php:609 -#: libraries/common.lib.php:1198 libraries/display_tbl.lib.php:1116 +#: libraries/common.lib.php:1191 libraries/display_tbl.lib.php:1115 #: libraries/import.lib.php:1119 libraries/import.lib.php:1143 -#: pdf_pages.php:284 setup/frames/index.inc.php:124 +#: pdf_pages.php:283 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:349 tbl_row_action.php:68 msgid "Edit" msgstr "Redaguoti" @@ -1418,15 +1395,15 @@ msgid "" msgstr "" #: libraries/List_Database.class.php:430 libraries/server_links.inc.php:40 -#: server_databases.php:87 server_privileges.php:1652 +#: server_databases.php:85 server_privileges.php:1656 #: setup/lib/messages.inc.php:107 test/theme.php:92 msgid "Databases" msgstr "Duombazės" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:259 libraries/import.lib.php:134 pdf_schema.php:31 -#: pdf_schema.php:231 tbl_change.php:1023 tbl_operations.php:212 -#: tbl_relation.php:289 view_operations.php:61 +#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 +#: tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Klaida" @@ -1454,41 +1431,41 @@ msgstr[0] "Įterpta %1$d eilutė." msgstr[1] "Įterptos %1$d eilutės." msgstr[2] "Įterpta %1$d eilučių." -#: libraries/StorageEngine.class.php:196 +#: libraries/StorageEngine.class.php:194 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:352 +#: libraries/StorageEngine.class.php:354 #, php-format msgid "%s is available on this MySQL server." msgstr "%s nėra galimas šiame MySQL serveryje." -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:357 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s šiame MySQL serveryje yra išjungtas." -#: libraries/StorageEngine.class.php:359 +#: libraries/StorageEngine.class.php:361 #, 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:1018 +#: libraries/Table.class.php:1017 #, fuzzy msgid "Invalid database" msgstr "Neteisingas lentelės vardas" -#: libraries/Table.class.php:1032 tbl_get_field.php:25 +#: libraries/Table.class.php:1031 tbl_get_field.php:25 msgid "Invalid table name" msgstr "Neteisingas lentelės vardas" -#: libraries/Table.class.php:1047 +#: libraries/Table.class.php:1046 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "" -#: libraries/Table.class.php:1131 +#: libraries/Table.class.php:1129 #, php-format msgid "Table %s has been renamed to %s" msgstr "Lentelė %s pervadinta į %s" @@ -1506,22 +1483,22 @@ msgstr "" msgid "take it" msgstr "pasirinkti" -#: libraries/Theme_Manager.class.php:114 +#: libraries/Theme_Manager.class.php:109 #, php-format msgid "Default theme %s not found!" msgstr "Standartinė tema %s nerasta!" -#: libraries/Theme_Manager.class.php:152 +#: libraries/Theme_Manager.class.php:147 #, php-format msgid "Theme %s not found!" msgstr "Tema %s nerasta!" -#: libraries/Theme_Manager.class.php:220 +#: libraries/Theme_Manager.class.php:215 #, php-format msgid "Theme path not found for theme %s!" msgstr "" -#: libraries/Theme_Manager.class.php:296 test/theme.php:160 themes.php:20 +#: libraries/Theme_Manager.class.php:291 test/theme.php:160 themes.php:20 #: themes.php:40 msgid "Theme / Style" msgstr "Tema / Stilius" @@ -1636,19 +1613,19 @@ msgstr "" msgid "Authenticating..." msgstr "" -#: libraries/blobstreaming.lib.php:689 +#: libraries/blobstreaming.lib.php:340 msgid "View image" msgstr "Žiūrėti paveikslėlį" -#: libraries/blobstreaming.lib.php:693 +#: libraries/blobstreaming.lib.php:344 msgid "Play audio" msgstr "Groti garsą" -#: libraries/blobstreaming.lib.php:698 +#: libraries/blobstreaming.lib.php:349 msgid "View video" msgstr "Žiūrėti video" -#: libraries/blobstreaming.lib.php:702 +#: libraries/blobstreaming.lib.php:353 msgid "Download file" msgstr "Atsisiųsti failą" @@ -1701,7 +1678,7 @@ msgstr "Serveris" msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:909 +#: libraries/common.inc.php:908 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Rekomenduojame atnaujint %s iki %s ar vėlesnės versijos." @@ -1726,7 +1703,8 @@ msgstr "en" #: libraries/common.lib.php:425 libraries/common.lib.php:427 #: libraries/common.lib.php:429 libraries/common.lib.php:445 #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 -#: libraries/display_export.lib.php:163 libraries/relation.lib.php:84 +#: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 +#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 #: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" @@ -1741,148 +1719,148 @@ msgstr "SQL užklausa" msgid "MySQL said: " msgstr "MySQL atsakymas: " -#: libraries/common.lib.php:1136 +#: libraries/common.lib.php:1129 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "Failed to connect to SQL validator!" msgstr "Nepavyko prisijungti prie MySQL serverio" -#: libraries/common.lib.php:1174 setup/lib/messages.inc.php:350 +#: libraries/common.lib.php:1167 setup/lib/messages.inc.php:350 msgid "Explain SQL" msgstr "Paaiškinti" -#: libraries/common.lib.php:1177 +#: libraries/common.lib.php:1170 msgid "Skip Explain SQL" msgstr "Praleisti SQL užklausos aiškinimą" -#: libraries/common.lib.php:1211 +#: libraries/common.lib.php:1204 msgid "Without PHP Code" msgstr "be PHP kodo" -#: libraries/common.lib.php:1214 setup/lib/messages.inc.php:352 +#: libraries/common.lib.php:1207 setup/lib/messages.inc.php:352 msgid "Create PHP Code" msgstr "PHP kodas" -#: libraries/common.lib.php:1232 server_status.php:451 +#: libraries/common.lib.php:1225 server_status.php:451 #: setup/lib/messages.inc.php:351 msgid "Refresh" msgstr "Atnaujinti" -#: libraries/common.lib.php:1241 +#: libraries/common.lib.php:1234 msgid "Skip Validate SQL" msgstr "Praleisti SQL užklausos tikrinimą" -#: libraries/common.lib.php:1244 setup/lib/messages.inc.php:353 +#: libraries/common.lib.php:1237 setup/lib/messages.inc.php:353 msgid "Validate SQL" msgstr "Patikrinti SQL užklausą" -#: libraries/common.lib.php:1283 +#: libraries/common.lib.php:1287 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1285 +#: libraries/common.lib.php:1289 msgid "Inline" msgstr "" -#: libraries/common.lib.php:1339 libraries/common.lib.php:1354 +#: libraries/common.lib.php:1343 libraries/common.lib.php:1358 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1358 libraries/tbl_triggers.lib.php:27 +#: libraries/common.lib.php:1362 libraries/tbl_triggers.lib.php:27 #: server_processlist.php:57 msgid "Time" msgstr "Laikas" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "B" msgstr "B" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "KiB" msgstr "KiB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "MiB" msgstr "MiB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "GiB" msgstr "GiB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "TiB" msgstr "TiB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "PiB" msgstr "PiB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "EiB" msgstr "EiB" #. l10n: Thousands separator -#: libraries/common.lib.php:1424 +#: libraries/common.lib.php:1428 msgid "," msgstr " " #. l10n: Decimal separator -#: libraries/common.lib.php:1426 +#: libraries/common.lib.php:1430 msgid "." msgstr "," #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1603 +#: libraries/common.lib.php:1607 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%Y m. %B %d d. %H:%M" -#: libraries/common.lib.php:1909 +#: libraries/common.lib.php:1913 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s d., %s val., %s min. ir %s s" -#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 -#: libraries/display_tbl.lib.php:289 server_status.php:718 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 +#: libraries/display_tbl.lib.php:288 server_status.php:718 msgid "Begin" msgstr "Pradžia" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 -#: libraries/display_tbl.lib.php:290 server_binlog.php:154 +#: libraries/common.lib.php:2328 libraries/common.lib.php:2331 +#: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "Praėjęs" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 -#: libraries/display_tbl.lib.php:352 +#: libraries/common.lib.php:2359 libraries/common.lib.php:2362 +#: libraries/display_tbl.lib.php:351 msgid "End" msgstr "Pabaiga" -#: libraries/common.lib.php:2429 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "Pereiti į "%s" duombazę." -#: libraries/common.lib.php:2448 +#: libraries/common.lib.php:2453 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2828 libraries/common.lib.php:2835 -#: libraries/db_links.inc.php:67 libraries/export/sql.php:24 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 +#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 -#: libraries/tbl_links.inc.php:59 querywindow.php:89 test/theme.php:96 +#: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2837 libraries/db_links.inc.php:103 -#: libraries/tbl_links.inc.php:94 libraries/tbl_links.inc.php:116 -#: view_operations.php:88 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: view_operations.php:87 msgid "Operations" msgstr "Veiksmai" -#: libraries/core.lib.php:282 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1898,39 +1876,39 @@ msgstr "Įvykiai" msgid "Name" msgstr "Pavadinimas" -#: libraries/db_links.inc.php:44 +#: libraries/db_links.inc.php:43 #, php-format msgid "Database %s has been dropped." msgstr "Duombazė %s ištrinta." -#: libraries/db_links.inc.php:56 libraries/db_links.inc.php:57 -#: libraries/db_links.inc.php:58 +#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 +#: libraries/db_links.inc.php:57 #, fuzzy msgid "Database seems to be empty!" msgstr "Lentelė atrodo tuščia!" -#: libraries/db_links.inc.php:80 libraries/relation.lib.php:142 -#: libraries/tbl_links.inc.php:68 +#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:85 +#: libraries/db_links.inc.php:84 msgid "Query" msgstr "SQL užklausa" -#: libraries/db_links.inc.php:90 libraries/relation.lib.php:138 +#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:97 libraries/server_links.inc.php:87 -#: libraries/tbl_links.inc.php:90 pmd_pdf.php:83 pmd_pdf.php:109 +#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importuoti" -#: libraries/db_links.inc.php:110 libraries/server_links.inc.php:65 -#: server_privileges.php:111 server_privileges.php:1714 -#: server_privileges.php:2063 test/theme.php:116 +#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: server_privileges.php:110 server_privileges.php:1718 +#: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" msgstr "Privilegijos" @@ -1942,14 +1920,14 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1847 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1806 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "Gali būti apytikslis. Žiūrėkite DUK 3.11" -#: libraries/db_structure.lib.php:60 server_databases.php:141 -#: tbl_printview.php:334 tbl_structure.php:681 +#: libraries/db_structure.lib.php:60 server_databases.php:139 +#: tbl_printview.php:333 tbl_structure.php:679 msgid "Overhead" msgstr "Perteklius" @@ -1966,7 +1944,7 @@ msgstr "Serveris neatsako" 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:358 tbl_structure.php:607 +#: libraries/dbi/mysql.dbi.lib.php:358 tbl_structure.php:605 msgid "Details..." msgstr "Detalės..." @@ -1976,22 +1954,22 @@ msgid "Change password" msgstr "Pakeisti slaptažodį" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:807 +#: libraries/replication_gui.lib.php:347 server_privileges.php:806 msgid "No Password" msgstr "Nėra slaptažodžio" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1530 server_synchronize.php:1174 +#: libraries/replication_gui.lib.php:351 server_privileges.php:795 +#: server_privileges.php:799 server_privileges.php:810 +#: server_privileges.php:1534 server_synchronize.php:1173 msgid "Password" msgstr "Slaptažodis" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:815 server_privileges.php:818 +#: server_privileges.php:814 server_privileges.php:817 msgid "Re-type" msgstr "Įveskite dar kartą" @@ -2014,8 +1992,8 @@ msgstr "Sukurti naują duombazę" msgid "Create" msgstr "Sukurti" -#: libraries/display_create_database.lib.php:39 server_privileges.php:113 -#: server_privileges.php:1419 server_replication.php:34 +#: libraries/display_create_database.lib.php:39 server_privileges.php:112 +#: server_privileges.php:1423 server_replication.php:33 msgid "No Privileges" msgstr "Nėra privilegijų" @@ -2036,50 +2014,50 @@ msgstr "Sukurti naują lentelę duombazėje %s" msgid "Number of columns" msgstr "Laukų skaičius" -#: libraries/display_export.lib.php:41 +#: libraries/display_export.lib.php:35 msgid "Could not load export plugins, please check your installation!" msgstr "" -#: libraries/display_export.lib.php:106 +#: libraries/display_export.lib.php:100 #, fuzzy, php-format #| msgid "Dump %s row(s) starting at record # %s" msgid "Dump %s row(s) starting at row # %s" msgstr "Išvesti %s eilučių pradedant nuo %s eilutės." -#: libraries/display_export.lib.php:114 +#: libraries/display_export.lib.php:108 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:124 setup/lib/messages.inc.php:79 +#: libraries/display_export.lib.php:118 setup/lib/messages.inc.php:79 msgid "Save as file" msgstr "Išsaugoti į failą" -#: libraries/display_export.lib.php:133 +#: libraries/display_export.lib.php:127 #, php-format msgid "Save on server in %s directory" msgstr "Išsaugoti serveryje, kataloge pavadinimu %s" -#: libraries/display_export.lib.php:141 setup/lib/messages.inc.php:87 +#: libraries/display_export.lib.php:135 setup/lib/messages.inc.php:87 msgid "Overwrite existing file(s)" msgstr "Perrašyti esamus failus" -#: libraries/display_export.lib.php:147 +#: libraries/display_export.lib.php:141 msgid "File name template" msgstr "Failo pavadinimo šablonas" -#: libraries/display_export.lib.php:151 +#: libraries/display_export.lib.php:145 msgid "server name" msgstr "serverio vardas" -#: libraries/display_export.lib.php:154 +#: libraries/display_export.lib.php:148 msgid "database name" msgstr "duomenų bazės vardas" -#: libraries/display_export.lib.php:157 +#: libraries/display_export.lib.php:151 msgid "table name" msgstr "lentelės vardas" -#: libraries/display_export.lib.php:161 +#: libraries/display_export.lib.php:155 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2090,39 +2068,39 @@ msgstr "" "laiko formatavimo eilutes. Taip pat pakeičiamos šios eilutės: %3$s. Kitas " "tekstas bus paliktas kaip yra." -#: libraries/display_export.lib.php:202 +#: libraries/display_export.lib.php:196 msgid "remember template" msgstr "atsiminti šabloną" -#: libraries/display_export.lib.php:210 libraries/display_import.lib.php:177 +#: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 #: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 msgid "Character set of the file:" msgstr "Simbolių koduotė faile:" -#: libraries/display_export.lib.php:235 setup/lib/messages.inc.php:81 +#: libraries/display_export.lib.php:229 setup/lib/messages.inc.php:81 msgid "Compression" msgstr "Kompresija" -#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:196 -#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:529 -#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:574 -#: server_privileges.php:1867 server_processlist.php:74 +#: libraries/display_export.lib.php:234 libraries/display_import.lib.php:196 +#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:528 +#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:573 +#: server_privileges.php:1871 server_processlist.php:74 msgid "None" msgstr "Nėra" -#: libraries/display_export.lib.php:247 +#: libraries/display_export.lib.php:241 msgid "\"zipped\"" msgstr "\"zip\"" -#: libraries/display_export.lib.php:253 +#: libraries/display_export.lib.php:247 msgid "\"gzipped\"" msgstr "\"gzipped\"" -#: libraries/display_export.lib.php:259 +#: libraries/display_export.lib.php:253 msgid "\"bzipped\"" msgstr "\"bzip\"" -#: libraries/display_export.lib.php:274 libraries/export/sql.php:42 +#: libraries/display_export.lib.php:268 libraries/export/sql.php:42 #: libraries/import/sql.php:31 msgid "SQL compatibility mode" msgstr "SQL suderinamumas" @@ -2157,12 +2135,12 @@ msgid "File uploads are not allowed on this server." msgstr "" #: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 -#: tbl_change.php:1024 +#: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "Nepasiekimas nurodytas www-serverio katalogas atsiuntimams." #: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 -#: tbl_change.php:1027 +#: tbl_change.php:925 msgid "web server upload directory" msgstr "web serverio katalogas atsiuntimams" @@ -2246,43 +2224,43 @@ msgstr "Lapo dydis" msgid "Language" msgstr "Kalba" -#: libraries/display_tbl.lib.php:303 +#: libraries/display_tbl.lib.php:302 #, php-format msgid "%d is not valid row number." msgstr "" -#: libraries/display_tbl.lib.php:309 +#: libraries/display_tbl.lib.php:308 #, fuzzy #| msgid "row(s) starting from record #" msgid "row(s) starting from row #" msgstr "eilučių pradedant nuo" -#: libraries/display_tbl.lib.php:315 +#: libraries/display_tbl.lib.php:314 msgid "horizontal" msgstr "horizontaliai" -#: libraries/display_tbl.lib.php:316 +#: libraries/display_tbl.lib.php:315 msgid "horizontal (rotated headers)" msgstr "horizontalūs (pasukti pavadinimai)" -#: libraries/display_tbl.lib.php:317 +#: libraries/display_tbl.lib.php:316 msgid "vertical" msgstr "vertikaliai" -#: libraries/display_tbl.lib.php:323 +#: libraries/display_tbl.lib.php:322 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "išdėstant %s pakartoti antraštes kas %s įrašų" -#: libraries/display_tbl.lib.php:345 +#: libraries/display_tbl.lib.php:344 msgid "This operation could take a long time. Proceed anyway?" msgstr "Operacija gali užtrukti. Tęsti?" -#: libraries/display_tbl.lib.php:511 +#: libraries/display_tbl.lib.php:510 msgid "Sort by key" msgstr "Rūšiuoti pagal raktą" -#: libraries/display_tbl.lib.php:554 libraries/export/codegen.php:38 +#: libraries/display_tbl.lib.php:553 libraries/export/codegen.php:38 #: libraries/export/csv.php:29 libraries/export/excel.php:34 #: libraries/export/htmlword.php:28 libraries/export/latex.php:32 #: libraries/export/mediawiki.php:21 libraries/export/ods.php:26 @@ -2292,100 +2270,100 @@ msgstr "Rūšiuoti pagal raktą" #: libraries/export/xlsx.php:26 libraries/export/xml.php:23 #: libraries/export/yaml.php:27 libraries/import.lib.php:1114 #: libraries/import.lib.php:1136 libraries/import/csv.php:31 -#: libraries/import/docsql.php:33 libraries/import/ldi.php:46 +#: libraries/import/docsql.php:32 libraries/import/ldi.php:46 #: libraries/import/ods.php:30 libraries/import/sql.php:19 #: libraries/import/xls.php:25 libraries/import/xlsx.php:25 -#: libraries/import/xml.php:25 tbl_select.php:264 tbl_structure.php:752 +#: libraries/import/xml.php:25 tbl_select.php:263 tbl_structure.php:750 msgid "Options" msgstr "Nustatymai" -#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:569 +#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:568 msgid "Partial Texts" msgstr "Tekstus rodyti dalinai" -#: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:573 +#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:572 msgid "Full Texts" msgstr "Tekstus rodyti pilnai" -#: libraries/display_tbl.lib.php:586 +#: libraries/display_tbl.lib.php:585 #, fuzzy msgid "Relational key" msgstr "Ryšių schema" -#: libraries/display_tbl.lib.php:587 +#: libraries/display_tbl.lib.php:586 #, fuzzy #| msgid "Relational schema" msgid "Relational display column" msgstr "Ryšių schema" -#: libraries/display_tbl.lib.php:594 +#: libraries/display_tbl.lib.php:593 msgid "Show binary contents" msgstr "" -#: libraries/display_tbl.lib.php:596 +#: libraries/display_tbl.lib.php:595 msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:598 +#: libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "" -#: libraries/display_tbl.lib.php:606 pmd_general.php:140 tbl_change.php:312 -#: tbl_change.php:318 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:307 +#: tbl_change.php:313 msgid "Hide" msgstr "Paslėpti" -#: libraries/display_tbl.lib.php:606 libraries/relation.lib.php:122 -#: libraries/tbl_properties.inc.php:143 transformation_overview.php:46 +#: libraries/display_tbl.lib.php:605 libraries/relation.lib.php:117 +#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46 msgid "Browser transformation" msgstr "Naršyklės transformacija" -#: libraries/display_tbl.lib.php:1125 libraries/display_tbl.lib.php:1129 -#: libraries/display_tbl.lib.php:1131 +#: libraries/display_tbl.lib.php:1124 libraries/display_tbl.lib.php:1128 +#: libraries/display_tbl.lib.php:1130 msgid "Execute bookmarked query" msgstr "Įvykdyti išsaugotą užklausą" -#: libraries/display_tbl.lib.php:1144 libraries/display_tbl.lib.php:1156 +#: libraries/display_tbl.lib.php:1143 libraries/display_tbl.lib.php:1155 msgid "The row has been deleted" msgstr "Eilutė ištrinta" -#: libraries/display_tbl.lib.php:1183 libraries/display_tbl.lib.php:2055 +#: libraries/display_tbl.lib.php:1182 libraries/display_tbl.lib.php:2014 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "Stabdyti procesą" -#: libraries/display_tbl.lib.php:1933 +#: libraries/display_tbl.lib.php:1892 msgid "in query" msgstr "užklausą vykdoma" -#: libraries/display_tbl.lib.php:1951 +#: libraries/display_tbl.lib.php:1910 msgid "Showing rows" msgstr "Rodomi įrašai" -#: libraries/display_tbl.lib.php:1961 +#: libraries/display_tbl.lib.php:1920 msgid "total" msgstr " iš viso " -#: libraries/display_tbl.lib.php:1969 sql.php:523 +#: libraries/display_tbl.lib.php:1928 sql.php:522 #, php-format msgid "Query took %01.4f sec" msgstr "Užklausa užtruko %01.4f sek." -#: libraries/display_tbl.lib.php:2088 libraries/mult_submits.inc.php:112 -#: querywindow.php:115 querywindow.php:119 querywindow.php:122 -#: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:469 +#: libraries/display_tbl.lib.php:2047 libraries/mult_submits.inc.php:112 +#: querywindow.php:114 querywindow.php:118 querywindow.php:121 +#: tbl_structure.php:23 tbl_structure.php:148 tbl_structure.php:467 msgid "Change" msgstr "Redaguoti" -#: libraries/display_tbl.lib.php:2158 +#: libraries/display_tbl.lib.php:2117 msgid "Query results operations" msgstr "Veiksmai su užklausos rezultatais" -#: libraries/display_tbl.lib.php:2186 +#: libraries/display_tbl.lib.php:2145 msgid "Print view (with full texts)" msgstr "Spausdinti rezultatus (su pilnais tekstais)" -#: libraries/display_tbl.lib.php:2359 +#: libraries/display_tbl.lib.php:2318 msgid "Link not found" msgstr "Sąryšis nerastas" @@ -2437,9 +2415,9 @@ msgstr "InnoDB būsena" msgid "Buffer Pool Usage" msgstr "Buferio Pool'o naudojimas" -#: libraries/engines/innodb.lib.php:168 server_databases.php:136 -#: server_databases.php:304 server_status.php:524 server_status.php:585 -#: server_status.php:606 tbl_printview.php:349 tbl_structure.php:695 +#: libraries/engines/innodb.lib.php:168 server_databases.php:134 +#: server_databases.php:302 server_status.php:524 server_status.php:585 +#: server_status.php:606 tbl_printview.php:348 tbl_structure.php:693 msgid "Total" msgstr "Viso" @@ -2571,6 +2549,77 @@ msgid "" "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." msgstr "" +#: libraries/engines/pbms.lib.php:31 +msgid "Garbage Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:32 +msgid "The percentage of garbage in a repository file before it is compacted." +msgstr "" + +#: libraries/engines/pbms.lib.php:36 libraries/replication_gui.lib.php:69 +#: server_synchronize.php:1161 +msgid "Port" +msgstr "Jungtis" + +#: libraries/engines/pbms.lib.php:37 +msgid "" +"The port for the PBMS stream-based communications. Setting this value to 0 " +"will disable HTTP communication with the daemon." +msgstr "" + +#: libraries/engines/pbms.lib.php:41 +msgid "Repository Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:42 +msgid "" +"The maximum size of a BLOB repository file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:46 +msgid "Temp Blob Timeout" +msgstr "" + +#: libraries/engines/pbms.lib.php:47 +msgid "" +"The timeout, in seconds, for temporary BLOBs. Uploaded BLOB data is removed " +"after this time, unless they are referenced by a record in the database." +msgstr "" + +#: libraries/engines/pbms.lib.php:51 +msgid "Temp Log Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:52 +msgid "" +"The maximum size of a temporary BLOB log file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:56 +msgid "Max Keep Alive" +msgstr "" + +#: libraries/engines/pbms.lib.php:57 +msgid "" +"The timeout for inactive connection with the keep-alive flag set. After this " +"time the connection will be closed. The time-out is in milliseconds (1/1000)." +msgstr "" + +#: libraries/engines/pbms.lib.php:61 +msgid "Metadata Headers" +msgstr "" + +#: libraries/engines/pbms.lib.php:62 +msgid "" +"A \":\" delimited list of metadata headers to be used to initialize the " +"pbms_metadata_header table when a database is created." +msgstr "" + #: libraries/engines/pbxt.lib.php:22 msgid "Index cache size" msgstr "" @@ -2696,7 +2745,7 @@ msgid "" msgstr "" #: libraries/export/codegen.php:36 setup/lib/messages.inc.php:85 -#: tbl_printview.php:374 tbl_structure.php:736 +#: tbl_printview.php:373 tbl_structure.php:734 msgid "Format" msgstr "Formatas" @@ -2767,9 +2816,9 @@ msgstr "Microsoft Word 2000" #: libraries/export/htmlword.php:23 libraries/export/latex.php:59 #: libraries/export/latex.php:205 libraries/export/odt.php:47 #: libraries/export/sql.php:105 libraries/export/sql.php:865 -#: libraries/export/texytext.php:27 server_databases.php:126 -#: server_privileges.php:576 server_replication.php:315 tbl_printview.php:315 -#: tbl_structure.php:664 +#: libraries/export/texytext.php:27 server_databases.php:124 +#: server_privileges.php:575 server_replication.php:314 tbl_printview.php:314 +#: tbl_structure.php:662 msgid "Data" msgstr "Duomenys" @@ -2820,13 +2869,13 @@ msgid "Label key" msgstr "Pavadinimo raktas" #: libraries/export/latex.php:46 libraries/export/odt.php:34 -#: libraries/export/sql.php:90 tbl_relation.php:398 +#: libraries/export/sql.php:90 tbl_relation.php:396 msgid "Relations" msgstr "Sąryšiai" #: libraries/export/latex.php:52 libraries/export/odt.php:40 #: libraries/export/odt.php:317 libraries/export/sql.php:94 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "MIME tipai" @@ -2834,10 +2883,10 @@ msgstr "MIME tipai" #: libraries/export/xml.php:101 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1529 server_privileges.php:2061 -#: server_processlist.php:54 server_synchronize.php:1158 +#: libraries/replication_gui.lib.php:331 server_privileges.php:730 +#: server_privileges.php:733 server_privileges.php:789 +#: server_privileges.php:1533 server_privileges.php:2065 +#: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "Darbinė stotis" @@ -3031,8 +3080,8 @@ msgstr "Eksportuoti lenteles" msgid "Export contents" msgstr "Eksportuoti funkcijas" -#: libraries/footer.inc.php:182 libraries/footer.inc.php:193 -#: libraries/footer.inc.php:196 +#: libraries/footer.inc.php:180 libraries/footer.inc.php:191 +#: libraries/footer.inc.php:194 msgid "Open new phpMyAdmin window" msgstr "Atverti naują phpMyAdmin langą" @@ -3049,7 +3098,7 @@ msgstr "SQL rezultatas" msgid "Generated by" msgstr "Generavo:" -#: libraries/import.lib.php:151 sql.php:519 tbl_change.php:180 +#: libraries/import.lib.php:151 sql.php:518 tbl_change.php:175 #: 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ų)." @@ -3106,7 +3155,7 @@ msgstr "Ignoruoti pasikartojančias eilutes" msgid "Column names in first row" msgstr "" -#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:501 +#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:500 #: view_create.php:147 msgid "Column names" msgstr "Stulpelių vardai" @@ -3132,12 +3181,12 @@ msgstr "" msgid "Invalid column count in CSV input on line %d." msgstr "" -#: libraries/import/docsql.php:28 +#: libraries/import/docsql.php:27 msgid "DocSQL" msgstr "" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 -#: server_synchronize.php:427 server_synchronize.php:870 +#: libraries/import/docsql.php:30 libraries/tbl_properties.inc.php:616 +#: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "Lentelės vardas" @@ -3194,26 +3243,26 @@ msgstr "Nėra" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:512 -#: tbl_structure.php:28 tbl_structure.php:152 tbl_structure.php:156 -#: tbl_structure.php:472 +#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:511 +#: tbl_structure.php:27 tbl_structure.php:151 tbl_structure.php:155 +#: tbl_structure.php:470 msgid "Primary" msgstr "Pirminis" #: libraries/mult_submits.inc.php:97 libraries/tbl_properties.inc.php:115 -#: libraries/tbl_properties.inc.php:524 tbl_printview.php:324 -#: tbl_structure.php:30 tbl_structure.php:153 tbl_structure.php:157 -#: tbl_structure.php:474 tbl_structure.php:672 +#: libraries/tbl_properties.inc.php:523 tbl_printview.php:323 +#: tbl_structure.php:29 tbl_structure.php:152 tbl_structure.php:156 +#: tbl_structure.php:472 tbl_structure.php:670 msgid "Index" msgstr "Indeksas" -#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:530 -#: tbl_structure.php:34 tbl_structure.php:155 tbl_structure.php:159 -#: tbl_structure.php:477 +#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:529 +#: tbl_structure.php:33 tbl_structure.php:154 tbl_structure.php:158 +#: tbl_structure.php:475 msgid "Fulltext" msgstr "Fulltext" -#: libraries/mult_submits.inc.php:434 tbl_replace.php:330 +#: libraries/mult_submits.inc.php:433 tbl_replace.php:330 msgid "No change" msgstr "Nėra pakeitimų" @@ -3221,190 +3270,190 @@ msgstr "Nėra pakeitimų" msgid "Charset" msgstr "Koduotė" -#: libraries/mysql_charsets.lib.php:210 libraries/mysql_charsets.lib.php:411 -#: tbl_change.php:515 +#: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 +#: tbl_change.php:510 msgid "Binary" msgstr "Dvejetainis" -#: libraries/mysql_charsets.lib.php:222 +#: libraries/mysql_charsets.lib.php:214 msgid "Bulgarian" msgstr "Bulgarų" -#: libraries/mysql_charsets.lib.php:226 libraries/mysql_charsets.lib.php:351 +#: libraries/mysql_charsets.lib.php:218 libraries/mysql_charsets.lib.php:343 msgid "Simplified Chinese" msgstr "Supaprastinta Kiniečių" -#: libraries/mysql_charsets.lib.php:228 libraries/mysql_charsets.lib.php:371 +#: libraries/mysql_charsets.lib.php:220 libraries/mysql_charsets.lib.php:363 msgid "Traditional Chinese" msgstr "Tradicinė Kiniečių" -#: libraries/mysql_charsets.lib.php:232 libraries/mysql_charsets.lib.php:418 +#: libraries/mysql_charsets.lib.php:224 libraries/mysql_charsets.lib.php:410 msgid "case-insensitive" msgstr "simbolių registras nesvarbus" -#: libraries/mysql_charsets.lib.php:235 libraries/mysql_charsets.lib.php:420 +#: libraries/mysql_charsets.lib.php:227 libraries/mysql_charsets.lib.php:412 msgid "case-sensitive" msgstr "simbolių registras svarbus" -#: libraries/mysql_charsets.lib.php:238 +#: libraries/mysql_charsets.lib.php:230 msgid "Croatian" msgstr "Kroatų" -#: libraries/mysql_charsets.lib.php:241 +#: libraries/mysql_charsets.lib.php:233 msgid "Czech" msgstr "Čekų" -#: libraries/mysql_charsets.lib.php:244 +#: libraries/mysql_charsets.lib.php:236 msgid "Danish" msgstr "Danų" -#: libraries/mysql_charsets.lib.php:247 +#: libraries/mysql_charsets.lib.php:239 msgid "English" msgstr "Anglų" -#: libraries/mysql_charsets.lib.php:250 +#: libraries/mysql_charsets.lib.php:242 msgid "Esperanto" msgstr "Esperanto" -#: libraries/mysql_charsets.lib.php:253 +#: libraries/mysql_charsets.lib.php:245 msgid "Estonian" msgstr "Estų" -#: libraries/mysql_charsets.lib.php:256 libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:248 libraries/mysql_charsets.lib.php:251 msgid "German" msgstr "Vokiečių" -#: libraries/mysql_charsets.lib.php:256 +#: libraries/mysql_charsets.lib.php:248 msgid "dictionary" msgstr "žodynas" -#: libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:251 msgid "phone book" msgstr "telefonų knyga" -#: libraries/mysql_charsets.lib.php:262 +#: libraries/mysql_charsets.lib.php:254 msgid "Hungarian" msgstr "Vengrų" -#: libraries/mysql_charsets.lib.php:265 +#: libraries/mysql_charsets.lib.php:257 msgid "Icelandic" msgstr "Islandų" -#: libraries/mysql_charsets.lib.php:268 libraries/mysql_charsets.lib.php:358 +#: libraries/mysql_charsets.lib.php:260 libraries/mysql_charsets.lib.php:350 msgid "Japanese" msgstr "Japonų" -#: libraries/mysql_charsets.lib.php:271 +#: libraries/mysql_charsets.lib.php:263 msgid "Latvian" msgstr "Latvių" -#: libraries/mysql_charsets.lib.php:274 +#: libraries/mysql_charsets.lib.php:266 msgid "Lithuanian" msgstr "Lietuvių" -#: libraries/mysql_charsets.lib.php:277 libraries/mysql_charsets.lib.php:380 +#: libraries/mysql_charsets.lib.php:269 libraries/mysql_charsets.lib.php:372 msgid "Korean" msgstr "Korėjiečių" -#: libraries/mysql_charsets.lib.php:280 +#: libraries/mysql_charsets.lib.php:272 msgid "Persian" msgstr "Persų" -#: libraries/mysql_charsets.lib.php:283 +#: libraries/mysql_charsets.lib.php:275 msgid "Polish" msgstr "Lenkų" -#: libraries/mysql_charsets.lib.php:286 libraries/mysql_charsets.lib.php:334 +#: libraries/mysql_charsets.lib.php:278 libraries/mysql_charsets.lib.php:326 msgid "West European" msgstr "Vakarų Europos" -#: libraries/mysql_charsets.lib.php:289 +#: libraries/mysql_charsets.lib.php:281 msgid "Romanian" msgstr "Rumunų" -#: libraries/mysql_charsets.lib.php:292 +#: libraries/mysql_charsets.lib.php:284 msgid "Slovak" msgstr "Slovakų" -#: libraries/mysql_charsets.lib.php:295 +#: libraries/mysql_charsets.lib.php:287 msgid "Slovenian" msgstr "Slovėnų" -#: libraries/mysql_charsets.lib.php:298 +#: libraries/mysql_charsets.lib.php:290 msgid "Spanish" msgstr "Ispanų" -#: libraries/mysql_charsets.lib.php:301 +#: libraries/mysql_charsets.lib.php:293 msgid "Traditional Spanish" msgstr "Tradicinė ispanų" -#: libraries/mysql_charsets.lib.php:304 libraries/mysql_charsets.lib.php:401 +#: libraries/mysql_charsets.lib.php:296 libraries/mysql_charsets.lib.php:393 msgid "Swedish" msgstr "Švedų" -#: libraries/mysql_charsets.lib.php:307 libraries/mysql_charsets.lib.php:404 +#: libraries/mysql_charsets.lib.php:299 libraries/mysql_charsets.lib.php:396 msgid "Thai" msgstr "Tailando" -#: libraries/mysql_charsets.lib.php:310 libraries/mysql_charsets.lib.php:398 +#: libraries/mysql_charsets.lib.php:302 libraries/mysql_charsets.lib.php:390 msgid "Turkish" msgstr "Turkų" -#: libraries/mysql_charsets.lib.php:313 libraries/mysql_charsets.lib.php:395 +#: libraries/mysql_charsets.lib.php:305 libraries/mysql_charsets.lib.php:387 msgid "Ukrainian" msgstr "Ukrainiečių" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 msgid "Unicode" msgstr "Unicodas" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 -#: libraries/mysql_charsets.lib.php:334 libraries/mysql_charsets.lib.php:341 -#: libraries/mysql_charsets.lib.php:363 libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 +#: libraries/mysql_charsets.lib.php:326 libraries/mysql_charsets.lib.php:333 +#: libraries/mysql_charsets.lib.php:355 libraries/mysql_charsets.lib.php:366 msgid "multilingual" msgstr "daugiakalbis" -#: libraries/mysql_charsets.lib.php:341 +#: libraries/mysql_charsets.lib.php:333 msgid "Central European" msgstr "Centrinės Europos" -#: libraries/mysql_charsets.lib.php:346 +#: libraries/mysql_charsets.lib.php:338 msgid "Russian" msgstr "Rusų" -#: libraries/mysql_charsets.lib.php:363 +#: libraries/mysql_charsets.lib.php:355 msgid "Baltic" msgstr "Baltų" -#: libraries/mysql_charsets.lib.php:368 +#: libraries/mysql_charsets.lib.php:360 msgid "Armenian" msgstr "Armėnų" -#: libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:366 msgid "Cyrillic" msgstr "Kirylica" -#: libraries/mysql_charsets.lib.php:377 +#: libraries/mysql_charsets.lib.php:369 msgid "Arabic" msgstr "Arabų" -#: libraries/mysql_charsets.lib.php:383 +#: libraries/mysql_charsets.lib.php:375 msgid "Hebrew" msgstr "Žydų" -#: libraries/mysql_charsets.lib.php:386 +#: libraries/mysql_charsets.lib.php:378 msgid "Georgian" msgstr "Gruzinų" -#: libraries/mysql_charsets.lib.php:389 +#: libraries/mysql_charsets.lib.php:381 msgid "Greek" msgstr "Graikų" -#: libraries/mysql_charsets.lib.php:392 +#: libraries/mysql_charsets.lib.php:384 msgid "Czech-Slovak" msgstr "Čekų-Slovakų" -#: libraries/mysql_charsets.lib.php:407 libraries/mysql_charsets.lib.php:414 +#: libraries/mysql_charsets.lib.php:399 libraries/mysql_charsets.lib.php:406 msgid "unknown" msgstr "nežinoma" @@ -3430,69 +3479,69 @@ msgstr "Užklausų langas" msgid "This format has no options" msgstr "Šis formatas neturi nustatymų" -#: libraries/relation.lib.php:82 +#: libraries/relation.lib.php:77 msgid "not OK" msgstr "Negerai" -#: libraries/relation.lib.php:86 pmd_general.php:339 +#: libraries/relation.lib.php:81 pmd_general.php:339 msgid "OK" msgstr "Gerai" -#: libraries/relation.lib.php:87 +#: libraries/relation.lib.php:82 msgid "Enabled" msgstr "Įjungta" -#: libraries/relation.lib.php:110 +#: libraries/relation.lib.php:105 msgid "Display Features" msgstr "Išvedimo sąvybės" -#: libraries/relation.lib.php:116 +#: libraries/relation.lib.php:111 msgid "Creation of PDFs" msgstr "PDF failo generavimas" -#: libraries/relation.lib.php:120 +#: libraries/relation.lib.php:115 msgid "Displaying Column Comments" msgstr "Stulpelių komentarų išvedimas" -#: libraries/relation.lib.php:125 +#: libraries/relation.lib.php:120 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "Informaciją, kaip atnaujinti Column_comments lentelę, galite rasti " "dokumentacijoje." -#: libraries/relation.lib.php:130 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 msgid "Bookmarked SQL query" msgstr "Sukurti nuoroda SQL-užklausai" -#: libraries/relation.lib.php:134 querywindow.php:99 querywindow.php:207 +#: libraries/relation.lib.php:129 querywindow.php:98 querywindow.php:205 msgid "SQL history" msgstr "SQL užklausų istorija" -#: libraries/relation.lib.php:146 +#: libraries/relation.lib.php:141 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:148 +#: libraries/relation.lib.php:143 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" -#: libraries/relation.lib.php:149 +#: libraries/relation.lib.php:144 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:150 +#: libraries/relation.lib.php:145 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:151 +#: libraries/relation.lib.php:146 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1158 +#: libraries/relation.lib.php:1153 msgid "no description" msgstr "Aprašymo nėra" @@ -3501,7 +3550,7 @@ msgstr "Aprašymo nėra" msgid "Slave configuration" msgstr "Serverio nustatymai" -#: libraries/replication_gui.lib.php:53 server_replication.php:346 +#: libraries/replication_gui.lib.php:53 server_replication.php:345 msgid "Change or reconfigure master server" msgstr "" @@ -3513,16 +3562,12 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:711 -#: server_privileges.php:714 server_privileges.php:721 -#: server_synchronize.php:1170 +#: libraries/replication_gui.lib.php:261 server_privileges.php:710 +#: server_privileges.php:713 server_privileges.php:720 +#: server_synchronize.php:1169 msgid "User name" msgstr "Vartotojo vardas" -#: libraries/replication_gui.lib.php:69 server_synchronize.php:1162 -msgid "Port" -msgstr "Jungtis" - #: libraries/replication_gui.lib.php:105 msgid "Master status" msgstr "" @@ -3537,8 +3582,8 @@ msgid "Variable" msgstr "Kintamasis" #: libraries/replication_gui.lib.php:117 server_status.php:737 -#: tbl_change.php:322 tbl_printview.php:368 tbl_select.php:137 -#: tbl_structure.php:728 +#: tbl_change.php:317 tbl_printview.php:367 tbl_select.php:136 +#: tbl_structure.php:726 msgid "Value" msgstr "Reikšmė" @@ -3552,38 +3597,38 @@ msgid "" "this list." msgstr "" -#: libraries/replication_gui.lib.php:242 server_replication.php:193 +#: libraries/replication_gui.lib.php:242 server_replication.php:192 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:256 server_privileges.php:716 +#: libraries/replication_gui.lib.php:256 server_privileges.php:715 msgid "Any user" msgstr "Bet kurį vartotoją" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1920 server_privileges.php:1950 +#: libraries/replication_gui.lib.php:348 server_privileges.php:716 +#: server_privileges.php:783 server_privileges.php:807 +#: server_privileges.php:1924 server_privileges.php:1954 msgid "Use text field" msgstr "Naudokite teksto įvedimo lauką" -#: libraries/replication_gui.lib.php:304 server_privileges.php:764 +#: libraries/replication_gui.lib.php:304 server_privileges.php:763 msgid "Any host" msgstr "Bet kurį prisijungimo adresą" -#: libraries/replication_gui.lib.php:308 server_privileges.php:768 +#: libraries/replication_gui.lib.php:308 server_privileges.php:767 msgid "Local" msgstr "Lokali darbinė stotis" -#: libraries/replication_gui.lib.php:314 server_privileges.php:773 +#: libraries/replication_gui.lib.php:314 server_privileges.php:772 msgid "This Host" msgstr "Dabartinis serveris" -#: libraries/replication_gui.lib.php:320 server_privileges.php:779 +#: libraries/replication_gui.lib.php:320 server_privileges.php:778 msgid "Use Host Table" msgstr "Naudoti Host lentelę" -#: libraries/replication_gui.lib.php:333 server_privileges.php:792 +#: libraries/replication_gui.lib.php:333 server_privileges.php:791 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3609,8 +3654,8 @@ msgstr "Nežinoma kalba: %1$s." msgid "Servers" msgstr "Serveriai" -#: libraries/server_links.inc.php:52 server_engines.php:111 -#: server_engines.php:115 server_status.php:414 test/theme.php:104 +#: libraries/server_links.inc.php:52 server_engines.php:125 +#: server_engines.php:129 server_status.php:414 test/theme.php:104 msgid "Variables" msgstr "Kintamieji" @@ -3631,12 +3676,12 @@ msgstr "Binarinis logas" msgid "Processes" msgstr "Procesai" -#: libraries/server_links.inc.php:91 server_synchronize.php:1091 -#: server_synchronize.php:1099 +#: libraries/server_links.inc.php:91 server_synchronize.php:1090 +#: server_synchronize.php:1098 msgid "Synchronize" msgstr "Sinchronizuoti" -#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1109 +#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1108 #, fuzzy msgid "Source database" msgstr "Eiti į duomenų bazę" @@ -3655,7 +3700,7 @@ msgstr "Nutolęs serveris" msgid "Difference" msgstr "Skirtumas" -#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1111 +#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1110 #, fuzzy msgid "Target database" msgstr "Paieška duombazėje" @@ -3676,11 +3721,11 @@ msgstr "Vykdyti SQL sakinius duombazėje %s" msgid "Columns" msgstr "Stulpelių vardai" -#: libraries/sql_query_form.lib.php:342 sql.php:664 sql.php:665 sql.php:682 +#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "Sukurti nuorodą" -#: libraries/sql_query_form.lib.php:349 sql.php:676 +#: libraries/sql_query_form.lib.php:349 sql.php:669 msgid "Let every user access this bookmark" msgstr "Leisti kitiems vartotojams naudotis šia žyme" @@ -3775,12 +3820,12 @@ msgstr "" "Neveikia SQL interpretatorius. Prašome patikrinkite ar yra suinstaliuoti " "visi privalomi php moduliai, nurodyti %sdokumentacijoje%s." -#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:139 -#: libraries/tbl_links.inc.php:140 +#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 +#: libraries/tbl_links.inc.php:139 msgid "Table seems to be empty!" msgstr "Lentelė atrodo tuščia!" -#: libraries/tbl_links.inc.php:148 +#: libraries/tbl_links.inc.php:147 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" @@ -3816,12 +3861,12 @@ msgstr "" "Nenaudokite išskyrimo simbolių ar kabučiu, nurodydami reikšmę pagal " "nutylėjimą. Naudokitės šiuo formatu: a" -#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1263 -#: pdf_schema.php:1284 tbl_printview.php:142 tbl_structure.php:179 +#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1262 +#: pdf_schema.php:1283 tbl_printview.php:141 tbl_structure.php:178 msgid "Attributes" msgstr "Atributai" -#: libraries/tbl_properties.inc.php:136 +#: libraries/tbl_properties.inc.php:135 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -3830,11 +3875,11 @@ msgstr "" "Norėdami gauti pilną sąrašą galimų transformacijų ir jų MIME tipų " "transformacijų, spauskite %stransformacijos paaiškinimą%s" -#: libraries/tbl_properties.inc.php:144 +#: libraries/tbl_properties.inc.php:143 msgid "Transformation options" msgstr "Transformacijos nustatymai" -#: libraries/tbl_properties.inc.php:145 +#: libraries/tbl_properties.inc.php:144 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
                            If you ever need to put a backslash (\"\\\") or a single " @@ -3847,18 +3892,18 @@ msgstr "" "(\"'\"), naudokite viršutinį vertikalų pasvirą brūkšnį prieš šiuos simbolius " "(pvz: '\\\\xyz' ar 'a\\'b')." -#: libraries/tbl_properties.inc.php:392 +#: libraries/tbl_properties.inc.php:391 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "Nėra" -#: libraries/tbl_properties.inc.php:393 +#: libraries/tbl_properties.inc.php:392 msgid "As defined:" msgstr "Kaip nurodyta:" -#: libraries/tbl_properties.inc.php:579 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:578 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
                            Please ask the " @@ -3866,29 +3911,29 @@ msgid "" msgstr "" "Ši transformacija neturi paaiškinimo.
                            Klauskite autoriaus ką %s daro." -#: libraries/tbl_properties.inc.php:725 server_engines.php:57 -#: tbl_operations.php:354 +#: libraries/tbl_properties.inc.php:724 server_engines.php:56 +#: tbl_operations.php:352 msgid "Storage Engine" msgstr "Saugojimo variklis" -#: libraries/tbl_properties.inc.php:754 +#: libraries/tbl_properties.inc.php:753 msgid "PARTITION definition" msgstr "" -#: libraries/tbl_properties.inc.php:775 pdf_pages.php:502 +#: libraries/tbl_properties.inc.php:774 pdf_pages.php:501 #: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214 -#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1124 tbl_indexes.php:247 -#: tbl_relation.php:565 +#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1022 tbl_indexes.php:246 +#: tbl_relation.php:563 msgid "Save" msgstr "Išsaugoti" -#: libraries/tbl_properties.inc.php:779 tbl_structure.php:541 +#: libraries/tbl_properties.inc.php:778 tbl_structure.php:539 #, fuzzy, php-format #| msgid "Add column(s)" msgid "Add %s column(s)" msgstr "Pridėti stulpelį(-ius)" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:535 +#: libraries/tbl_properties.inc.php:782 tbl_structure.php:533 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." @@ -4073,8 +4118,8 @@ msgstr "" msgid "Custom color" msgstr "Pasirinkta spalva" -#: main.php:162 pdf_pages.php:362 setup/lib/FormDisplay.tpl.php:216 -#: tbl_change.php:1173 +#: main.php:162 pdf_pages.php:361 setup/lib/FormDisplay.tpl.php:216 +#: tbl_change.php:1071 msgid "Reset" msgstr "Atstatyti į pradinę būseną" @@ -4082,8 +4127,8 @@ msgstr "Atstatyti į pradinę būseną" msgid "Protocol version" msgstr "Protokolo versija" -#: main.php:188 server_privileges.php:1381 server_privileges.php:1528 -#: server_privileges.php:1642 server_privileges.php:2060 +#: main.php:188 server_privileges.php:1385 server_privileges.php:1532 +#: server_privileges.php:1646 server_privileges.php:2064 #: server_processlist.php:53 msgid "User" msgstr "Vartotojas" @@ -4166,21 +4211,30 @@ msgid "" "has been configured." msgstr "" -#: main.php:330 +#: main.php:314 +#, php-format +msgid "" +"The additional features for working with linked tables have been " +"deactivated. To find out why click %shere%s." +msgstr "" +"Nėra PMA lentelių, kurios leidžia dirbti su jungtinėmis MySQL lentelėmis. " +"%sPaaiškinimas%s." + +#: main.php:329 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:345 +#: main.php:344 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: main.php:357 +#: main.php:356 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -4191,68 +4245,68 @@ msgstr "" msgid "Reload navigation frame" msgstr "" -#: navigation.php:204 server_databases.php:370 server_synchronize.php:1190 +#: navigation.php:203 server_databases.php:368 server_synchronize.php:1189 msgid "No databases" msgstr "Nėra duombazių" -#: navigation.php:298 +#: navigation.php:297 msgid "Filter" msgstr "Filtras" -#: navigation.php:299 setup/frames/index.inc.php:218 +#: navigation.php:298 setup/frames/index.inc.php:218 #: setup/lib/messages.inc.php:41 msgid "Clear" msgstr "Išvalyti" -#: navigation.php:330 navigation.php:331 +#: navigation.php:329 navigation.php:330 #, fuzzy #| msgid "Create table" msgctxt "short form" msgid "Create table" msgstr "Sukurti lentelę" -#: navigation.php:333 navigation.php:495 +#: navigation.php:332 navigation.php:494 msgid "Please select a database" msgstr "Pasirinkite duombazę" -#: pdf_pages.php:40 pdf_pages.php:46 pdf_pages.php:52 pdf_pages.php:57 +#: pdf_pages.php:39 pdf_pages.php:45 pdf_pages.php:51 pdf_pages.php:56 #, php-format msgid "%s table not found or not set in %s" msgstr "Lentelė %s nerasta arba nenurodyta %s faile" -#: pdf_pages.php:265 +#: pdf_pages.php:264 msgid "Please choose a page to edit" msgstr "Pasirinkite puslapį redagavimui" -#: pdf_pages.php:303 pmd_pdf.php:113 +#: pdf_pages.php:302 pmd_pdf.php:111 msgid "Create a page" msgstr "Sukurti naują puslapį" -#: pdf_pages.php:309 +#: pdf_pages.php:308 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Puslapis:" -#: pdf_pages.php:313 +#: pdf_pages.php:312 #, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "Automatinis išdėstymas" -#: pdf_pages.php:315 +#: pdf_pages.php:314 msgid "Internal relations" msgstr "Vidiniai sąryšiai" -#: pdf_pages.php:338 +#: pdf_pages.php:337 msgid "Select Tables" msgstr "Pasirinkite lenteles" -#: pdf_pages.php:361 +#: pdf_pages.php:360 msgid "Toggle scratchboard" msgstr "įjungti scratchboard" -#: pdf_pages.php:524 +#: pdf_pages.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -4260,37 +4314,37 @@ msgstr "" "Šis puslapis turi nuorodų į lenteles, kurios jau neegzistuoja. Ar norite " "pašalinti šias nuorodas?" -#: pdf_schema.php:635 +#: pdf_schema.php:634 #, fuzzy, php-format #| msgid "The \"%s\" table doesn't exist!" msgid "The %s table doesn't exist!" msgstr "Lentelė \"%s\" neegzistuoja!" -#: pdf_schema.php:671 +#: pdf_schema.php:670 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Nustatykite lentelės %s koordinates" -#: pdf_schema.php:994 +#: pdf_schema.php:993 #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" msgstr "Duombazės \"%s\" schema - %s puslapis" -#: pdf_schema.php:1012 +#: pdf_schema.php:1011 msgid "No tables" msgstr "No tables" -#: pdf_schema.php:1031 pdf_schema.php:1140 +#: pdf_schema.php:1030 pdf_schema.php:1139 msgid "Relational schema" msgstr "Ryšių schema" -#: pdf_schema.php:1115 +#: pdf_schema.php:1114 msgid "Table of contents" msgstr "Turinys" -#: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:145 -#: tbl_structure.php:182 tbl_tracking.php:277 +#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 +#: tbl_structure.php:181 tbl_tracking.php:272 msgid "Extra" msgstr "Papildomai" @@ -4302,7 +4356,7 @@ msgstr "" msgid "Save position" msgstr "Išsaugoti vietą" -#: pmd_general.php:70 server_synchronize.php:428 server_synchronize.php:871 +#: pmd_general.php:70 server_synchronize.php:427 server_synchronize.php:870 msgid "Create table" msgstr "Sukurti lentelę" @@ -4374,32 +4428,32 @@ msgid "" "appropriate column name." msgstr "" -#: pmd_pdf.php:62 +#: pmd_pdf.php:60 #, fuzzy msgid "Page has been created" msgstr "Duomenų bazė %1$s sukurta." -#: pmd_pdf.php:64 +#: pmd_pdf.php:62 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:84 +#: pmd_pdf.php:82 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:88 +#: pmd_pdf.php:86 msgid "recommended" msgstr "" -#: pmd_pdf.php:93 +#: pmd_pdf.php:91 msgid "to/from page" msgstr "" -#: querywindow.php:94 +#: querywindow.php:93 msgid "Import files" msgstr "Importuoti failus" -#: querywindow.php:105 +#: querywindow.php:104 msgid "All" msgstr "Viską" @@ -4445,70 +4499,70 @@ msgstr "Informacija" msgid "Character Sets and Collations" msgstr "Simbolių rinkiniai ir Palyginimai" -#: server_databases.php:51 +#: server_databases.php:49 msgid "No databases selected." msgstr "Nepažymėjote duombazės." -#: server_databases.php:62 +#: server_databases.php:60 #, php-format msgid "%s databases have been dropped successfully." msgstr "Sėkmingai pašalintos %s duombazės." -#: server_databases.php:87 +#: server_databases.php:85 msgid "Databases statistics" msgstr "Duombazių statistika" -#: server_databases.php:116 server_status.php:370 +#: server_databases.php:114 server_status.php:370 #: setup/lib/messages.inc.php:114 msgid "Tables" msgstr "Lentelės" -#: server_databases.php:194 server_replication.php:180 -#: server_replication.php:208 +#: server_databases.php:192 server_replication.php:179 +#: server_replication.php:207 #, fuzzy msgid "Master replication" msgstr "Serverio nustatymai" -#: server_databases.php:196 server_replication.php:247 +#: server_databases.php:194 server_replication.php:246 #, fuzzy msgid "Slave replication" msgstr "Serverio nustatymai" -#: server_databases.php:229 +#: server_databases.php:227 #, fuzzy #| msgid "Go to database" msgid "Jump to database" msgstr "Eiti į duomenų bazę" -#: server_databases.php:266 +#: server_databases.php:264 #, fuzzy msgid "Not replicated" msgstr "Serverio nustatymai" -#: server_databases.php:272 +#: server_databases.php:270 #, fuzzy #| msgid "Replication" msgid "Replicated" msgstr "Replikacija" -#: server_databases.php:288 +#: server_databases.php:286 #, php-format msgid "Check privileges for database "%s"." msgstr "Patikrinti duombazės "%s" privilegijas." -#: server_databases.php:292 server_databases.php:293 +#: server_databases.php:290 server_databases.php:291 msgid "Check Privileges" msgstr "Patikrinti privilegijas" -#: server_databases.php:357 server_databases.php:358 +#: server_databases.php:355 server_databases.php:356 msgid "Enable Statistics" msgstr "Neleisti statistikos" -#: server_databases.php:361 server_databases.php:362 +#: server_databases.php:359 server_databases.php:360 msgid "Disable Statistics" msgstr "Leisti statistiką" -#: server_databases.php:365 +#: server_databases.php:363 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -4516,124 +4570,124 @@ msgstr "" "Pastaba: jeigu duombazės statistika įjungta - apkrovimas tarp www ir MySQL " "darbinių stočių, gali padidėti aukščiau normos." -#: server_engines.php:48 +#: server_engines.php:47 msgid "Storage Engines" msgstr "Saugojimo varikliai" -#: server_export.php:20 +#: server_export.php:18 msgid "View dump (schema) of databases" msgstr "Peržiūrėti duombazių išrašą" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:23 server_privileges.php:265 msgid "Includes all privileges except GRANT." msgstr "Įtraukti visas teises, išskyrus GRANT." -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:24 server_privileges.php:191 +#: server_privileges.php:514 msgid "Allows altering the structure of existing tables." msgstr "Leisti keisti jau egzistuojančių lenetelių struktūrą." -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:25 server_privileges.php:207 +#: server_privileges.php:520 #, fuzzy msgid "Allows altering and dropping stored routines." msgstr "Leisti įterpti ir modifikuoti indeksus." -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:26 server_privileges.php:183 +#: server_privileges.php:513 msgid "Allows creating new databases and tables." msgstr "Leisti kurti naujas duombazes ir lenteles." -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:27 server_privileges.php:206 +#: server_privileges.php:519 #, fuzzy msgid "Allows creating stored routines." msgstr "Leidžia sukurti naujus view'us." -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:513 msgid "Allows creating new tables." msgstr "Leisti kurti naujas lenteles." -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:29 server_privileges.php:194 +#: server_privileges.php:517 msgid "Allows creating temporary tables." msgstr "Leisti kurti laikinas lenteles." -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:30 server_privileges.php:208 +#: server_privileges.php:553 msgid "Allows creating, dropping and renaming user accounts." msgstr "Leidžia kurti, šalinti ir pervadinti vartotojus." -#: server_privileges.php:32 server_privileges.php:199 -#: server_privileges.php:203 server_privileges.php:526 -#: server_privileges.php:530 +#: server_privileges.php:31 server_privileges.php:198 +#: server_privileges.php:202 server_privileges.php:525 +#: server_privileges.php:529 msgid "Allows creating new views." msgstr "Leidžia sukurti naujus view'us." -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:32 server_privileges.php:182 +#: server_privileges.php:505 msgid "Allows deleting data." msgstr "Leisti šalinti duomenis." -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:33 server_privileges.php:184 +#: server_privileges.php:516 msgid "Allows dropping databases and tables." msgstr "Leisti šalinti duombazes ir lenteles." -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:34 server_privileges.php:516 msgid "Allows dropping tables." msgstr "Leisti šalinti lenteles." -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:35 server_privileges.php:199 +#: server_privileges.php:533 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:36 server_privileges.php:209 +#: server_privileges.php:521 #, fuzzy msgid "Allows executing stored routines." msgstr "Leidžia sukurti naujus view'us." -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:37 server_privileges.php:188 +#: server_privileges.php:508 msgid "Allows importing data from and exporting data into files." msgstr "Leisti įterpti ir eksportuoti duomenis iš failų." -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:38 server_privileges.php:539 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Leisti įterpti naujus vartotojus, bei prisikirti privilegijas, neperkraunant " "privilegijų lentelės." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:515 msgid "Allows creating and dropping indexes." msgstr "Leisti įterpti ir modifikuoti indeksus." -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:40 server_privileges.php:180 +#: server_privileges.php:441 server_privileges.php:503 msgid "Allows inserting and replacing data." msgstr "Leisti įterpti ir modifikuoti duomenis." -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:41 server_privileges.php:195 +#: server_privileges.php:548 msgid "Allows locking tables for the current thread." msgstr "Leisti užrakinti lenteles procesų metu." -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:42 server_privileges.php:645 +#: server_privileges.php:647 msgid "Limits the number of new connections the user may open per hour." msgstr "Riboti prisijungimų kiekį per valandą." -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:43 server_privileges.php:633 +#: server_privileges.php:635 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Riboti užklausų kiekį per valandą" -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:44 server_privileges.php:639 +#: server_privileges.php:641 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -4641,61 +4695,61 @@ msgstr "" "Riboti komandų (kurios vienaip ar kitaip modifikuoja lenteles ar duombazes) " "kiekį per valandą." -#: server_privileges.php:46 server_privileges.php:652 -#: server_privileges.php:654 +#: server_privileges.php:45 server_privileges.php:651 +#: server_privileges.php:653 #, fuzzy msgid "Limits the number of simultaneous connections the user may have." msgstr "Riboti prisijungimų kiekį per valandą." -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:46 server_privileges.php:187 +#: server_privileges.php:543 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:47 server_privileges.php:189 +#: server_privileges.php:447 server_privileges.php:549 msgid "Has no effect in this MySQL version." msgstr " Negalioja šioje MySQL versijoje." -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:48 server_privileges.php:185 +#: server_privileges.php:544 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Leisti perkrauti darbinę stotį, bei išvalyti laikinąją atmintį (cache)." -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:197 +#: server_privileges.php:551 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Leisti vartotojo užklausas dėl atstatymo master / slave darbinių stočių." -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:50 server_privileges.php:196 +#: server_privileges.php:552 msgid "Needed for the replication slaves." msgstr "Reikalinga atstatyti slave darbinei stočiai" -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:51 server_privileges.php:179 +#: server_privileges.php:438 server_privileges.php:502 msgid "Allows reading data." msgstr "Leisti skaityti duomenis." -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:52 server_privileges.php:192 +#: server_privileges.php:546 msgid "Gives access to the complete list of databases." msgstr "Suteikti prieigą prie visų duombazių." -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:53 server_privileges.php:203 +#: server_privileges.php:205 server_privileges.php:518 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Leidžia vykdyti SHOW CREATE VIEW užklausas." -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:54 server_privileges.php:186 +#: server_privileges.php:545 msgid "Allows shutting down the server." msgstr "Leisti išjungti serverį." -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:55 server_privileges.php:193 +#: server_privileges.php:542 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -4705,159 +4759,159 @@ msgstr "" "administratoriaus darbų, tokių kaip globalių reikšmių modifikavimui ar " "vartotojų atjungimui." -#: server_privileges.php:57 server_privileges.php:201 -#: server_privileges.php:535 +#: server_privileges.php:56 server_privileges.php:200 +#: server_privileges.php:534 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "Leisti įterpti ir modifikuoti indeksus." -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:57 server_privileges.php:181 +#: server_privileges.php:444 server_privileges.php:504 msgid "Allows changing data." msgstr "Leisti modifikuoti duomenis." -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:58 server_privileges.php:259 msgid "No privileges." msgstr "Be teisių." -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:301 server_privileges.php:302 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Nėra" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1710 server_privileges.php:1716 +#: server_privileges.php:430 server_privileges.php:565 +#: server_privileges.php:1714 server_privileges.php:1720 msgid "Table-specific privileges" msgstr "Specifinės lentelių privilegijos" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1532 +#: server_privileges.php:431 server_privileges.php:573 +#: server_privileges.php:1536 msgid " Note: MySQL privilege names are expressed in English " msgstr " Pastaba: MySQL privilegijų pavadinimai pateikiami anglų kalba" -#: server_privileges.php:563 server_privileges.php:1531 +#: server_privileges.php:562 server_privileges.php:1535 msgid "Global privileges" msgstr "Globalios teisės" -#: server_privileges.php:565 server_privileges.php:1710 +#: server_privileges.php:564 server_privileges.php:1714 msgid "Database-specific privileges" msgstr "Specifinės duombazių privilegijos" -#: server_privileges.php:610 +#: server_privileges.php:609 msgid "Administration" msgstr "Administracija" -#: server_privileges.php:630 +#: server_privileges.php:629 msgid "Resource limits" msgstr "Išteklių apribojimai" -#: server_privileges.php:631 +#: server_privileges.php:630 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Pastaba: nėra jokių apribojimų jeigu reikšmė nurodyta lygi 0 (nuliui)." -#: server_privileges.php:708 +#: server_privileges.php:707 msgid "Login Information" msgstr "Prisijungimo informacija" -#: server_privileges.php:802 +#: server_privileges.php:801 msgid "Do not change the password" msgstr "Nekeisti slaptažodžio" -#: server_privileges.php:835 server_privileges.php:2197 +#: server_privileges.php:834 server_privileges.php:2201 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Nerasta vartotojo(ų)." -#: server_privileges.php:879 +#: server_privileges.php:878 #, php-format msgid "The user %s already exists!" msgstr "Vartotojas %s jau yra!" -#: server_privileges.php:962 +#: server_privileges.php:961 msgid "You have added a new user." msgstr "Jūs sukūrėte naują vartotoją." -#: server_privileges.php:1183 +#: server_privileges.php:1184 #, php-format msgid "You have updated the privileges for %s." msgstr "Jūs pakeitėte privilegijas %s." -#: server_privileges.php:1207 +#: server_privileges.php:1208 #, php-format msgid "You have revoked the privileges for %s" msgstr "Jūs panaikinote privilegijas %s" -#: server_privileges.php:1243 +#: server_privileges.php:1244 #, php-format msgid "The password for %s was changed successfully." msgstr "Vartotojo %s slaptažodis sėkmingai pakeistas." -#: server_privileges.php:1263 +#: server_privileges.php:1264 #, php-format msgid "Deleting %s" msgstr "Šaliname: %s" -#: server_privileges.php:1274 +#: server_privileges.php:1275 msgid "No users selected for deleting!" msgstr "Nepasirinta vartotojų trynimui!" -#: server_privileges.php:1277 +#: server_privileges.php:1278 msgid "Reloading the privileges" msgstr "Perkraunamos privilegijos" -#: server_privileges.php:1292 +#: server_privileges.php:1296 msgid "The selected users have been deleted successfully." msgstr "Pažymėti vartotojai sėkmingai pašalinti." -#: server_privileges.php:1327 +#: server_privileges.php:1331 msgid "The privileges were reloaded successfully." msgstr "Teisės sėkmingai perkrautos." -#: server_privileges.php:1355 server_privileges.php:1641 +#: server_privileges.php:1359 server_privileges.php:1645 msgid "Edit Privileges" msgstr "Redaguoti privilegijas" -#: server_privileges.php:1364 +#: server_privileges.php:1368 msgid "Revoke" msgstr "Panaikinti" -#: server_privileges.php:1396 +#: server_privileges.php:1400 msgid "User overview" msgstr "Vartotojų peržiūra" -#: server_privileges.php:1533 server_privileges.php:1715 -#: server_privileges.php:2064 +#: server_privileges.php:1537 server_privileges.php:1719 +#: server_privileges.php:2068 msgid "Grant" msgstr "Suteikti" -#: server_privileges.php:1552 server_privileges.php:2154 +#: server_privileges.php:1556 server_privileges.php:2158 msgid "Any" msgstr "Bet kurį(ią)" -#: server_privileges.php:1601 server_privileges.php:1625 -#: server_privileges.php:2019 server_privileges.php:2208 +#: server_privileges.php:1605 server_privileges.php:1629 +#: server_privileges.php:2023 server_privileges.php:2212 msgid "Add a new User" msgstr "Sukurti naują vartotoją" -#: server_privileges.php:1606 +#: server_privileges.php:1610 msgid "Remove selected users" msgstr "Pašalinti pažymėtus vartotojus" -#: server_privileges.php:1609 +#: server_privileges.php:1613 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Panaikinti visas aktyvias vartotojų privilegijas ir pašalinti vartotojus." -#: server_privileges.php:1610 server_privileges.php:1611 -#: server_privileges.php:1612 +#: server_privileges.php:1614 server_privileges.php:1615 +#: server_privileges.php:1616 msgid "Drop the databases that have the same names as the users." msgstr "" "Pašalinti duombazes, turinčias tokius pačius vardus kaip ir vartotojai." -#: server_privileges.php:1628 +#: server_privileges.php:1632 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4869,49 +4923,49 @@ msgstr "" "lentelės. Šiose lentelėse nurodytos teisės gali skirtis nuo nustatymų " "failuose nurodytų teisių. Todėl %sperkraukite teises%s, jeigu norite tęsti. " -#: server_privileges.php:1676 +#: server_privileges.php:1680 msgid "The selected user was not found in the privilege table." msgstr "Privilegijų lentelėje pasirinktas vartotojas nerastas." -#: server_privileges.php:1716 +#: server_privileges.php:1720 msgid "Column-specific privileges" msgstr "Specifinės stulpelių privilegijos" -#: server_privileges.php:1917 +#: server_privileges.php:1921 msgid "Add privileges on the following database" msgstr "Sukurti privilegijas šiai duombazei" -#: server_privileges.php:1935 +#: server_privileges.php:1939 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "Norint naudoti _ ir % simblius, juos reikėtų eskeipinti su \\" -#: server_privileges.php:1938 +#: server_privileges.php:1942 msgid "Add privileges on the following table" msgstr "Sukurti privilegijas šiai lentelei" -#: server_privileges.php:1995 +#: server_privileges.php:1999 msgid "Change Login Information / Copy User" msgstr "Pakeisti prisijungimo informaciją / Kopijuoti vartotojo duomenis" -#: server_privileges.php:1998 +#: server_privileges.php:2002 msgid "Create a new user with the same privileges and ..." msgstr "Sukurti naują vartotoją su tom pačiom privilegijom ir ..." -#: server_privileges.php:2000 +#: server_privileges.php:2004 msgid "... keep the old one." msgstr "... palikti seną vartotoją." -#: server_privileges.php:2001 +#: server_privileges.php:2005 msgid " ... delete the old one from the user tables." msgstr " ... pašalinti seną vartotoją iš vartotojų lentelės." -#: server_privileges.php:2002 +#: server_privileges.php:2006 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "" " ... panaikinti visas privilegijas iš seno vartotojo ir poto jį pašalinti." -#: server_privileges.php:2003 +#: server_privileges.php:2007 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -4919,44 +4973,44 @@ msgstr "" " ... pašalinti seną vartotoją iš vartotojų lentelės ir poto perkrauti " "privilegijas" -#: server_privileges.php:2025 +#: server_privileges.php:2029 msgid "Database for user" msgstr "" -#: server_privileges.php:2029 +#: server_privileges.php:2033 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Nėra" -#: server_privileges.php:2030 +#: server_privileges.php:2034 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2031 +#: server_privileges.php:2035 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2034 +#: server_privileges.php:2038 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "Patikrinti duombazės "%s" privilegijas." -#: server_privileges.php:2057 +#: server_privileges.php:2061 #, php-format msgid "Users having access to "%s"" msgstr "Vartotojai turintys priėjimą prie "%s"" -#: server_privileges.php:2165 +#: server_privileges.php:2169 msgid "global" msgstr "globalus" -#: server_privileges.php:2167 +#: server_privileges.php:2171 msgid "database-specific" msgstr "priklausantis nuo duombazės tipo" -#: server_privileges.php:2169 +#: server_privileges.php:2173 msgid "wildcard" msgstr "pakaitos simbolis" @@ -4976,54 +5030,54 @@ msgstr "" msgid "ID" msgstr "ID" -#: server_replication.php:50 +#: server_replication.php:49 msgid "Unknown error" msgstr "Nežinoma klaida" -#: server_replication.php:57 +#: server_replication.php:56 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:64 +#: server_replication.php:63 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:70 +#: server_replication.php:69 msgid "Unable to change master" msgstr "" -#: server_replication.php:73 +#: server_replication.php:72 #, php-format msgid "Master server changed succesfully to %s" msgstr "" -#: server_replication.php:181 +#: server_replication.php:180 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:183 server_status.php:391 +#: server_replication.php:182 server_status.php:391 msgid "Show master status" msgstr "" -#: server_replication.php:186 +#: server_replication.php:185 msgid "Show connected slaves" msgstr "" -#: server_replication.php:209 +#: server_replication.php:208 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:216 +#: server_replication.php:215 #, fuzzy msgid "Master configuration" msgstr "Serverio nustatymai" -#: server_replication.php:217 +#: server_replication.php:216 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -5032,112 +5086,112 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:220 +#: server_replication.php:219 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:221 +#: server_replication.php:220 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:224 +#: server_replication.php:223 #, fuzzy msgid "Please select databases:" msgstr "Pasirinkite duombazę" -#: server_replication.php:227 +#: server_replication.php:226 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: server_replication.php:229 +#: server_replication.php:228 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: server_replication.php:292 +#: server_replication.php:291 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:295 +#: server_replication.php:294 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:304 +#: server_replication.php:303 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:307 +#: server_replication.php:306 msgid "See slave status table" msgstr "" -#: server_replication.php:310 +#: server_replication.php:309 #, fuzzy msgid "Synchronize databases with master" msgstr "Sinchronizuoti duomenų bazes" -#: server_replication.php:321 +#: server_replication.php:320 msgid "Control slave:" msgstr "" -#: server_replication.php:324 +#: server_replication.php:323 #, fuzzy msgid "Full start" msgstr "Fulltext" -#: server_replication.php:324 +#: server_replication.php:323 #, fuzzy msgid "Full stop" msgstr "Fulltext" -#: server_replication.php:325 +#: server_replication.php:324 msgid "Reset slave" msgstr "" -#: server_replication.php:326 +#: server_replication.php:325 #, php-format msgid "SQL Thread %s only" msgstr "" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 #, fuzzy msgid "Start" msgstr "Šeštadienis" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 msgid "Stop" msgstr "" -#: server_replication.php:327 +#: server_replication.php:326 #, php-format msgid "IO Thread %s only" msgstr "" -#: server_replication.php:331 +#: server_replication.php:330 msgid "Error management:" msgstr "" -#: server_replication.php:333 +#: server_replication.php:332 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:335 +#: server_replication.php:334 msgid "Skip current error" msgstr "Praleisti klaidą" -#: server_replication.php:336 +#: server_replication.php:335 msgid "Skip next" msgstr "" -#: server_replication.php:339 +#: server_replication.php:338 msgid "errors." msgstr "" -#: server_replication.php:354 +#: server_replication.php:353 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -5862,121 +5916,121 @@ msgstr "Užklausos tipas" msgid "Replication status" msgstr "Replikacijos būsena" -#: server_synchronize.php:93 +#: server_synchronize.php:92 #, fuzzy msgid "Could not connect to the source" msgstr "Nepavyko prisijungti prie MySQL serverio" -#: server_synchronize.php:96 +#: server_synchronize.php:95 #, fuzzy msgid "Could not connect to the target" msgstr "Nepavyko prisijungti prie MySQL serverio" -#: server_synchronize.php:121 server_synchronize.php:124 tbl_create.php:77 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "'%s' duomenų bazė neegzistuoja." -#: server_synchronize.php:264 +#: server_synchronize.php:263 #, fuzzy msgid "Structure Synchronization" msgstr "Duomenų sinchronizacija" -#: server_synchronize.php:271 +#: server_synchronize.php:270 msgid "Data Synchronization" msgstr "Duomenų sinchronizacija" -#: server_synchronize.php:399 server_synchronize.php:838 +#: server_synchronize.php:398 server_synchronize.php:837 msgid "not present" msgstr "" -#: server_synchronize.php:423 server_synchronize.php:866 +#: server_synchronize.php:422 server_synchronize.php:865 #, fuzzy msgid "Structure Difference" msgstr "Skirtumas" -#: server_synchronize.php:424 server_synchronize.php:867 +#: server_synchronize.php:423 server_synchronize.php:866 #, fuzzy msgid "Data Difference" msgstr "Skirtumas" -#: server_synchronize.php:429 server_synchronize.php:872 +#: server_synchronize.php:428 server_synchronize.php:871 msgid "Add column(s)" msgstr "Pridėti stulpelį(-ius)" -#: server_synchronize.php:430 server_synchronize.php:873 +#: server_synchronize.php:429 server_synchronize.php:872 #, fuzzy msgid "Remove column(s)" msgstr "Pridėti stulpelį(-ius)" -#: server_synchronize.php:431 server_synchronize.php:874 +#: server_synchronize.php:430 server_synchronize.php:873 msgid "Alter column(s)" msgstr "Pakeisti stulpelį(-ius)" -#: server_synchronize.php:432 server_synchronize.php:875 +#: server_synchronize.php:431 server_synchronize.php:874 #, fuzzy msgid "Remove index(s)" msgstr "Keisti indeksą(-us)" -#: server_synchronize.php:433 server_synchronize.php:876 +#: server_synchronize.php:432 server_synchronize.php:875 #, fuzzy msgid "Apply index(s)" msgstr "Keisti indeksą(-us)" -#: server_synchronize.php:434 server_synchronize.php:877 +#: server_synchronize.php:433 server_synchronize.php:876 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:435 server_synchronize.php:878 +#: server_synchronize.php:434 server_synchronize.php:877 msgid "Insert row(s)" msgstr "Įterpti eilutę(-es)" -#: server_synchronize.php:445 server_synchronize.php:889 +#: server_synchronize.php:444 server_synchronize.php:888 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:448 server_synchronize.php:893 +#: server_synchronize.php:447 server_synchronize.php:892 msgid "Apply Selected Changes" msgstr "Įrašyti pakeitimus" -#: server_synchronize.php:450 server_synchronize.php:895 +#: server_synchronize.php:449 server_synchronize.php:894 msgid "Synchronize Databases" msgstr "Sinchronizuoti duomenų bazes" -#: server_synchronize.php:463 +#: server_synchronize.php:462 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:941 +#: server_synchronize.php:940 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:1002 +#: server_synchronize.php:1001 msgid "The following queries have been executed:" msgstr "" -#: server_synchronize.php:1121 +#: server_synchronize.php:1120 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1122 +#: server_synchronize.php:1121 #, fuzzy #| msgid "Insecure connection" msgid "Current connection" msgstr "Nesaugus susijungimas" -#: server_synchronize.php:1151 +#: server_synchronize.php:1150 #, fuzzy, php-format #| msgid "Configuration file" msgid "Configuration: %s" msgstr "Nustatymų failas" -#: server_synchronize.php:1166 +#: server_synchronize.php:1165 msgid "Socket" msgstr "" -#: server_synchronize.php:1212 +#: server_synchronize.php:1211 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -6535,8 +6589,8 @@ msgstr "" #: setup/lib/messages.inc.php:128 msgid "" "Configure phpMyAdmin database to gain access to additional features, see " -"[a@../Documentation.html#linked-tables]linked-tables infrastructure[/a] in " -"documentation" +"[a@../Documentation.html#linked-tables]phpMyAdmin configuration storage[/a] " +"in documentation" msgstr "" #: setup/lib/messages.inc.php:129 setup/lib/messages.inc.php:290 @@ -7606,116 +7660,116 @@ msgstr "" msgid "ZIP" msgstr "ZIP" -#: sql.php:495 tbl_replace.php:385 +#: sql.php:494 tbl_replace.php:384 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: sql.php:512 +#: sql.php:511 msgid "Showing as PHP code" msgstr "Rodomas PHP kodas" -#: sql.php:515 tbl_replace.php:359 +#: sql.php:514 tbl_replace.php:358 msgid "Showing SQL query" msgstr "Rodoma SQL užklausa" -#: sql.php:517 +#: sql.php:516 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Patikrinti SQL užklausą" -#: sql.php:638 +#: sql.php:631 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Iškilo problemos su `%s` lentelės indeksais" -#: sql.php:670 +#: sql.php:663 msgid "Label" msgstr "Nuorodos Antraštė" -#: tbl_addfield.php:188 tbl_alter.php:102 tbl_indexes.php:97 +#: tbl_addfield.php:185 tbl_alter.php:100 tbl_indexes.php:97 #, php-format msgid "Table %1$s has been altered successfully" msgstr "Lentelė %1$s sėkmingai pakeista" -#: tbl_change.php:250 tbl_select.php:26 tbl_select.php:27 tbl_select.php:30 -#: tbl_select.php:33 +#: tbl_change.php:245 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_select.php:32 msgid "Browse foreign values" msgstr "Naršyti išorines reikšmes" -#: tbl_change.php:280 tbl_change.php:318 +#: tbl_change.php:275 tbl_change.php:313 msgid "Function" msgstr "Funkcija" -#: tbl_change.php:300 tbl_indexes.php:199 tbl_indexes.php:224 +#: tbl_change.php:295 tbl_indexes.php:198 tbl_indexes.php:223 msgid "Ignore" msgstr "Ignoruoti" -#: tbl_change.php:725 +#: tbl_change.php:720 #, fuzzy #| msgid " Because of its length,
                            this field might not be editable " msgid " Because of its length,
                            this column might not be editable " msgstr " Tai yra jo ilgis,
                            šis laukelis neredaguojamas " -#: tbl_change.php:884 +#: tbl_change.php:835 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:890 +#: tbl_change.php:841 msgid "Binary - do not edit" msgstr "Dvejetainis - nekeisti" -#: tbl_change.php:983 +#: tbl_change.php:889 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:1128 +#: tbl_change.php:1026 msgid "Insert as new row" msgstr "Įterpti naują įrašą" -#: tbl_change.php:1129 +#: tbl_change.php:1027 msgid "Insert as new row and ignore errors" msgstr "Įterpti kaip naują eilutę ir ignoruoti klaidas" -#: tbl_change.php:1130 +#: tbl_change.php:1028 #, fuzzy msgid "Show insert query" msgstr "Rodoma SQL užklausa" -#: tbl_change.php:1145 +#: tbl_change.php:1043 msgid "Go back to previous page" msgstr "Sugrįžti į buvusį puslapį" -#: tbl_change.php:1146 +#: tbl_change.php:1044 msgid "Insert another new row" msgstr "Įterpti kitą naują eilutę" -#: tbl_change.php:1150 +#: tbl_change.php:1048 msgid "Go back to this page" msgstr "Grįžti atgal į šį puslapį" -#: tbl_change.php:1158 +#: tbl_change.php:1056 msgid "Edit next row" msgstr "Redaguoti kitą įrašą" -#: tbl_change.php:1169 +#: tbl_change.php:1067 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Šokinėjimui tarp reikšmių naudokite TAB mygtuką arba naudokite CTRL+rodyklės" -#: tbl_change.php:1207 +#: tbl_change.php:1105 #, php-format msgid "Restart insertion with %s rows" msgstr "" -#: tbl_create.php:57 +#: tbl_create.php:55 #, php-format msgid "Table %s already exists!" msgstr "Lentelė %s jau yra!" -#: tbl_create.php:244 +#: tbl_create.php:241 #, fuzzy, php-format msgid "Table %1$s has been created." msgstr "Duomenų bazė %1$s sukurta." @@ -7736,202 +7790,202 @@ msgstr "Indeksą pervadinti PIRMINIU nepavyko!" msgid "No index parts defined!" msgstr "Neaprašytos indekso dalys!" -#: tbl_indexes.php:159 +#: tbl_indexes.php:158 msgid "Create a new index" msgstr "Sukurti naują indeksą" -#: tbl_indexes.php:161 +#: tbl_indexes.php:160 msgid "Modify an index" msgstr "Keisti indeksą" -#: tbl_indexes.php:167 +#: tbl_indexes.php:166 msgid "Index name:" msgstr "Indekso vardas :" -#: tbl_indexes.php:173 +#: tbl_indexes.php:172 msgid "Index type:" msgstr "Indekso tipas :" -#: tbl_indexes.php:183 +#: tbl_indexes.php:182 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "(\"PRIMARY\" yra vienintelis pirminio rakto tipas!)" -#: tbl_indexes.php:250 +#: tbl_indexes.php:249 #, php-format msgid "Add to index  %s column(s)" msgstr "Įterpti indeksui papildomus  %s stulpelį(ius)" -#: tbl_indexes.php:255 tbl_structure.php:588 tbl_structure.php:599 +#: tbl_indexes.php:254 tbl_structure.php:586 tbl_structure.php:597 msgid "Column count has to be larger than zero." msgstr "" -#: tbl_move_copy.php:45 +#: tbl_move_copy.php:44 msgid "Can't move table to same one!" msgstr "Negalima perkelti lentelės į ją pačią!" -#: tbl_move_copy.php:47 +#: tbl_move_copy.php:46 msgid "Can't copy table to same one!" msgstr "Negalima kopijuoti lentelės į ją pačią!" -#: tbl_move_copy.php:55 +#: tbl_move_copy.php:54 #, php-format msgid "Table %s has been moved to %s." msgstr "Lentelė %s perkelta į %s." -#: tbl_move_copy.php:57 +#: tbl_move_copy.php:56 #, php-format msgid "Table %s has been copied to %s." msgstr "Letelė %s nukopijuota į %s." -#: tbl_move_copy.php:81 +#: tbl_move_copy.php:80 msgid "The table name is empty!" msgstr "Tuščias lentelės vardas!" -#: tbl_operations.php:248 +#: tbl_operations.php:246 msgid "Alter table order by" msgstr "Pakeisti lentelės rikiavimą pagal:" -#: tbl_operations.php:257 +#: tbl_operations.php:255 msgid "(singly)" msgstr "(pavieniui)" -#: tbl_operations.php:277 +#: tbl_operations.php:275 msgid "Move table to (database.table):" msgstr "Perkelti lentelė į (duombazė.lentelė):" -#: tbl_operations.php:335 +#: tbl_operations.php:333 msgid "Table options" msgstr "Lentelės parinktys" -#: tbl_operations.php:339 +#: tbl_operations.php:337 msgid "Rename table to" msgstr "Pervadinti lentelę į" -#: tbl_operations.php:510 +#: tbl_operations.php:508 msgid "Copy table to (database.table):" msgstr "Kopijuoti lentelė į (duombazė.lentelė):" -#: tbl_operations.php:557 +#: tbl_operations.php:555 msgid "Switch to copied table" msgstr "Pereiti į lentelės kopiją" -#: tbl_operations.php:569 +#: tbl_operations.php:567 msgid "Table maintenance" msgstr "Lentelės diagnostika" -#: tbl_operations.php:590 +#: tbl_operations.php:588 msgid "Defragment table" msgstr "Defragmentuoti lentelę" -#: tbl_operations.php:629 +#: tbl_operations.php:627 #, php-format msgid "Table %s has been flushed" msgstr "Lentelės buferis %s išvalytas" -#: tbl_operations.php:635 +#: tbl_operations.php:633 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Išvalyti lentelę (\"FLUSH\")" -#: tbl_operations.php:650 +#: tbl_operations.php:648 #, fuzzy msgid "Partition maintenance" msgstr "Lentelės diagnostika" -#: tbl_operations.php:658 +#: tbl_operations.php:656 #, php-format msgid "Partition %s" msgstr "" -#: tbl_operations.php:661 +#: tbl_operations.php:659 msgid "Analyze" msgstr "Analizuoti" -#: tbl_operations.php:662 +#: tbl_operations.php:660 #, fuzzy msgid "Check" msgstr "Pažymėti" -#: tbl_operations.php:663 +#: tbl_operations.php:661 msgid "Optimize" msgstr "Optimizuoti" -#: tbl_operations.php:664 +#: tbl_operations.php:662 msgid "Rebuild" msgstr "" -#: tbl_operations.php:665 +#: tbl_operations.php:663 msgid "Repair" msgstr "Taisyti" -#: tbl_operations.php:677 +#: tbl_operations.php:675 msgid "Remove partitioning" msgstr "" -#: tbl_operations.php:703 +#: tbl_operations.php:701 msgid "Check referential integrity:" msgstr "Patikrinti sąryšių vientisumą:" -#: tbl_printview.php:73 +#: tbl_printview.php:72 msgid "Show tables" msgstr "Rodyti lentelės" -#: tbl_printview.php:308 tbl_structure.php:655 +#: tbl_printview.php:307 tbl_structure.php:653 msgid "Space usage" msgstr "Vietos naudojimas" -#: tbl_printview.php:312 tbl_structure.php:659 +#: tbl_printview.php:311 tbl_structure.php:657 msgid "Usage" msgstr "Išnaudota" -#: tbl_printview.php:339 tbl_structure.php:686 +#: tbl_printview.php:338 tbl_structure.php:684 msgid "Effective" msgstr "Efektyvus" -#: tbl_printview.php:364 tbl_structure.php:724 +#: tbl_printview.php:363 tbl_structure.php:722 msgid "Row Statistics" msgstr "Eilučių statistika" -#: tbl_printview.php:367 tbl_structure.php:727 +#: tbl_printview.php:366 tbl_structure.php:725 msgid "Statements" msgstr "Parametrai" -#: tbl_printview.php:378 tbl_structure.php:739 +#: tbl_printview.php:377 tbl_structure.php:737 msgid "static" msgstr "" -#: tbl_printview.php:380 tbl_structure.php:741 +#: tbl_printview.php:379 tbl_structure.php:739 msgid "dynamic" msgstr "dinaminis" -#: tbl_printview.php:402 tbl_structure.php:784 +#: tbl_printview.php:401 tbl_structure.php:782 msgid "Row length" msgstr "Eilutės ilgis" -#: tbl_printview.php:412 tbl_structure.php:792 +#: tbl_printview.php:411 tbl_structure.php:790 msgid " Row size " msgstr "Eilutės dydis" -#: tbl_relation.php:278 +#: tbl_relation.php:276 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" -#: tbl_relation.php:404 +#: tbl_relation.php:402 #, fuzzy #| msgid "Internal relations" msgid "Internal relation" msgstr "Vidiniai sąryšiai" -#: tbl_relation.php:406 +#: tbl_relation.php:404 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: tbl_relation.php:412 +#: tbl_relation.php:410 msgid "Foreign key constraint" msgstr "" @@ -7939,230 +7993,230 @@ msgstr "" msgid "No rows selected" msgstr "Nepasirinkti įrašai" -#: tbl_select.php:130 +#: tbl_select.php:129 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Vykdyti \"užklausą pagal pavyzdį\" (pakaitos simbolis: \"%\")" -#: tbl_select.php:136 +#: tbl_select.php:135 msgid "Operator" msgstr "Operatorius" -#: tbl_select.php:267 +#: tbl_select.php:266 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "Pasirinkite laukus (nors vieną)" -#: tbl_select.php:285 +#: tbl_select.php:284 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Įterpkite paieškos sąlygas į \"where\" sakinį:" -#: tbl_select.php:292 +#: tbl_select.php:291 msgid "Number of rows per page" msgstr "Eilučių skaičius puslapyje" -#: tbl_select.php:298 +#: tbl_select.php:297 msgid "Display order:" msgstr "Atvaizdavimo tvarka:" -#: tbl_structure.php:160 +#: tbl_structure.php:159 msgid "Browse distinct values" msgstr "Peržiūrėti skirtingas reikšmes" -#: tbl_structure.php:360 +#: tbl_structure.php:358 #, fuzzy #| msgid "None" msgctxt "None for default" msgid "None" msgstr "Nėra" -#: tbl_structure.php:373 +#: tbl_structure.php:371 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Column %s has been dropped" msgstr "Lentelė %s panaikinta" -#: tbl_structure.php:384 +#: tbl_structure.php:382 #, php-format msgid "A primary key has been added on %s" msgstr "Stulpeliui %s sukurtas PIRMINIS raktas" -#: tbl_structure.php:399 tbl_structure.php:413 tbl_structure.php:427 +#: tbl_structure.php:397 tbl_structure.php:411 tbl_structure.php:425 #, php-format msgid "An index has been added on %s" msgstr "Indeksas sukurtas %s stulpeliui" -#: tbl_structure.php:505 tbl_structure.php:507 +#: tbl_structure.php:503 tbl_structure.php:505 msgid "Relation view" msgstr "Peržiūrėti sąryšius" -#: tbl_structure.php:514 tbl_structure.php:516 +#: tbl_structure.php:512 tbl_structure.php:514 msgid "Propose table structure" msgstr "Analizuoti lentelės struktūrą" -#: tbl_structure.php:539 +#: tbl_structure.php:537 #, fuzzy #| msgid "Add column(s)" msgid "Add column" msgstr "Pridėti stulpelį(-ius)" -#: tbl_structure.php:553 +#: tbl_structure.php:551 msgid "At End of Table" msgstr "Lentelės pabaigoje" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At Beginning of Table" msgstr "Lentelės pradžioje" -#: tbl_structure.php:555 +#: tbl_structure.php:553 #, php-format msgid "After %s" msgstr "Po %s" -#: tbl_structure.php:593 +#: tbl_structure.php:591 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "Sukurti indeksą  %s stulpeliui(iams)" -#: tbl_structure.php:755 +#: tbl_structure.php:753 msgid "partitioned" msgstr "" -#: tbl_tracking.php:113 +#: tbl_tracking.php:109 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:186 +#: tbl_tracking.php:182 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "" -#: tbl_tracking.php:194 +#: tbl_tracking.php:190 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "" -#: tbl_tracking.php:202 +#: tbl_tracking.php:198 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "" -#: tbl_tracking.php:212 +#: tbl_tracking.php:208 msgid "SQL statements executed." msgstr "SQL užklausos įvykdytos." -#: tbl_tracking.php:219 +#: tbl_tracking.php:215 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:220 +#: tbl_tracking.php:216 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:229 +#: tbl_tracking.php:225 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:250 tbl_tracking.php:378 +#: tbl_tracking.php:245 tbl_tracking.php:373 msgid "Close" msgstr "Uždaryti" -#: tbl_tracking.php:261 +#: tbl_tracking.php:256 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:380 +#: tbl_tracking.php:375 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:396 tbl_tracking.php:503 +#: tbl_tracking.php:391 tbl_tracking.php:498 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "" -#: tbl_tracking.php:409 tbl_tracking.php:460 +#: tbl_tracking.php:404 tbl_tracking.php:455 msgid "Date" msgstr "Data" -#: tbl_tracking.php:410 tbl_tracking.php:461 +#: tbl_tracking.php:405 tbl_tracking.php:456 msgid "Username" msgstr "Vartotojo vardas" -#: tbl_tracking.php:411 +#: tbl_tracking.php:406 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:462 +#: tbl_tracking.php:457 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:506 +#: tbl_tracking.php:501 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:507 +#: tbl_tracking.php:502 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "SQL execution" msgstr "SQL vykdymas" -#: tbl_tracking.php:520 +#: tbl_tracking.php:515 #, fuzzy, php-format msgid "Export as %s" msgstr "Eksportuoti lenteles" -#: tbl_tracking.php:560 +#: tbl_tracking.php:555 #, fuzzy msgid "Show versions" msgstr "Paskutinė versija" -#: tbl_tracking.php:592 +#: tbl_tracking.php:587 msgid "Version" msgstr "Versija" -#: tbl_tracking.php:639 +#: tbl_tracking.php:634 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "" -#: tbl_tracking.php:641 +#: tbl_tracking.php:636 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:652 +#: tbl_tracking.php:647 #, php-format msgid "Activate tracking for %s.%s" msgstr "" -#: tbl_tracking.php:654 +#: tbl_tracking.php:649 msgid "Activate now" msgstr "" -#: tbl_tracking.php:667 +#: tbl_tracking.php:662 #, php-format msgid "Create version %s of %s.%s" msgstr "" -#: tbl_tracking.php:671 +#: tbl_tracking.php:666 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:679 +#: tbl_tracking.php:674 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:687 +#: tbl_tracking.php:682 #, fuzzy msgid "Create version" msgstr "Paskutinė versija" @@ -8214,11 +8268,41 @@ msgstr "Profilis papildytas." msgid "VIEW name" msgstr "" -#: view_operations.php:92 +#: view_operations.php:91 #, fuzzy msgid "Rename view to" msgstr "Pervadinti lentelę į" +#~ msgid "BLOB Repository" +#~ msgstr "BLOB saugykla" + +#, fuzzy +#~| msgid "Enabled" +#~ msgctxt "BLOB repository" +#~ msgid "Enabled" +#~ msgstr "Įjungta" + +#~ msgid "Disable" +#~ msgstr "Išjungti" + +#~ msgid "Damaged" +#~ msgstr "Pažeista" + +#, fuzzy +#~| msgid "Repair" +#~ msgctxt "BLOB repository" +#~ msgid "Repair" +#~ msgstr "Taisyti" + +#, fuzzy +#~| msgid "Disabled" +#~ msgctxt "BLOB repository" +#~ msgid "Disabled" +#~ msgstr "Išjungta" + +#~ msgid "Enable" +#~ msgstr "Įjungti" + #~ msgid "" #~ "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " #~ "extension. Please check your PHP configuration." diff --git a/po/lv.po b/po/lv.po index 0451e597d..741e161e1 100644 --- a/po/lv.po +++ b/po/lv.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-21 13:53+0200\n" +"POT-Creation-Date: 2010-07-26 17:18+0200\n" "PO-Revision-Date: 2010-03-12 09:16+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: latvian \n" @@ -13,19 +13,19 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.5.3\n" -#: browse_foreigners.php:37 browse_foreigners.php:58 -#: libraries/display_tbl.lib.php:416 server_privileges.php:1506 +#: browse_foreigners.php:36 browse_foreigners.php:57 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1510 msgid "Show all" msgstr "Rādīt visu" -#: browse_foreigners.php:81 libraries/common.lib.php:2313 -#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:393 -#: libraries/export/pdf.php:146 pdf_schema.php:282 pdf_schema.php:1122 -#: pdf_schema.php:1138 +#: browse_foreigners.php:80 libraries/common.lib.php:2318 +#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:392 +#: libraries/export/pdf.php:146 pdf_schema.php:281 pdf_schema.php:1121 +#: pdf_schema.php:1137 msgid "Page number:" msgstr "Lapas numurs:" -#: browse_foreigners.php:131 +#: browse_foreigners.php:130 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -35,139 +35,151 @@ msgstr "" "vai arī Jūsu pārlūkprogramma bloķe starplogu saskarsmi Jūsu drošības " "iestādījumu dēļ." -#: browse_foreigners.php:149 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2829 -#: libraries/common.lib.php:2836 libraries/db_links.inc.php:74 -#: libraries/tbl_links.inc.php:62 +#: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 +#: db_structure.php:89 db_structure.php:91 db_structure.php:102 +#: db_structure.php:104 libraries/common.lib.php:2834 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Meklēt" -#: browse_foreigners.php:152 db_operations.php:384 db_operations.php:428 -#: db_operations.php:498 db_operations.php:608 db_search.php:344 -#: db_structure.php:566 js/messages.php:48 libraries/Config.class.php:1043 -#: libraries/Theme_Manager.class.php:310 +#: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 +#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 +#: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 -#: libraries/common.lib.php:1340 libraries/common.lib.php:2289 +#: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 -#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:275 -#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:531 -#: libraries/display_tbl.lib.php:613 libraries/replication_gui.lib.php:75 +#: libraries/display_export.lib.php:269 libraries/display_import.lib.php:275 +#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 +#: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 #: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:781 -#: main.php:127 navigation.php:231 pdf_pages.php:291 pdf_pages.php:327 -#: pdf_pages.php:529 pmd_pdf.php:115 server_binlog.php:128 -#: server_privileges.php:664 server_privileges.php:1616 -#: server_privileges.php:1963 server_privileges.php:2010 -#: server_privileges.php:2049 server_replication.php:234 -#: server_replication.php:317 server_replication.php:340 -#: server_synchronize.php:1208 tbl_change.php:328 tbl_change.php:1172 -#: tbl_change.php:1209 tbl_indexes.php:253 tbl_operations.php:264 -#: tbl_operations.php:301 tbl_operations.php:498 tbl_operations.php:560 -#: tbl_operations.php:680 tbl_select.php:324 tbl_structure.php:561 -#: tbl_structure.php:596 tbl_tracking.php:394 tbl_tracking.php:511 -#: view_create.php:181 view_operations.php:100 +#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 +#: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 +#: server_privileges.php:663 server_privileges.php:1620 +#: server_privileges.php:1967 server_privileges.php:2014 +#: server_privileges.php:2053 server_replication.php:233 +#: server_replication.php:316 server_replication.php:339 +#: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 +#: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 +#: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 +#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "Aiziet!" -#: browse_foreigners.php:167 browse_foreigners.php:171 -#: libraries/Index.class.php:441 tbl_tracking.php:319 +#: browse_foreigners.php:166 browse_foreigners.php:170 +#: libraries/Index.class.php:441 tbl_tracking.php:314 msgid "Keyname" msgstr "Atslēgas nosaukums" -#: browse_foreigners.php:168 browse_foreigners.php:170 -#: server_collations.php:54 server_collations.php:66 server_engines.php:58 +#: browse_foreigners.php:167 browse_foreigners.php:169 +#: server_collations.php:54 server_collations.php:66 server_engines.php:57 #: server_status.php:738 msgid "Description" msgstr "Apraksts" -#: browse_foreigners.php:246 browse_foreigners.php:255 -#: browse_foreigners.php:267 browse_foreigners.php:275 +#: browse_foreigners.php:245 browse_foreigners.php:254 +#: browse_foreigners.php:266 browse_foreigners.php:274 msgid "Use this value" msgstr "Lietot šo vērtību" -#: db_create.php:45 +#: bs_disp_as_mime_type.php:29 bs_play_media.php:35 +msgid "No blob streaming server configured!" +msgstr "" + +#: bs_disp_as_mime_type.php:35 +msgid "Failed to fetch headers" +msgstr "" + +#: bs_disp_as_mime_type.php:41 +msgid "Failed to open remote URL" +msgstr "" + +#: db_create.php:44 #, fuzzy, php-format msgid "Database %1$s has been created." msgstr "Datubāze %s tika izdzēsta." -#: db_datadict.php:48 db_operations.php:377 +#: db_datadict.php:48 db_operations.php:313 msgid "Database comment: " msgstr "Datubāzes komentārs: " -#: db_datadict.php:164 libraries/tbl_properties.inc.php:723 -#: pdf_schema.php:1235 tbl_operations.php:346 tbl_printview.php:128 +#: db_datadict.php:164 libraries/tbl_properties.inc.php:722 +#: pdf_schema.php:1234 tbl_operations.php:344 tbl_printview.php:127 msgid "Table comments" msgstr "Komentārs tabulai" -#: db_datadict.php:173 db_qbe.php:173 libraries/Index.class.php:445 +#: db_datadict.php:173 db_qbe.php:170 libraries/Index.class.php:445 #: libraries/export/htmlword.php:243 libraries/export/latex.php:364 #: libraries/export/odt.php:293 libraries/export/texytext.php:233 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:274 -#: pdf_schema.php:1261 pdf_schema.php:1282 tbl_change.php:306 -#: tbl_indexes.php:188 tbl_printview.php:140 tbl_relation.php:401 -#: tbl_select.php:133 tbl_structure.php:176 tbl_tracking.php:272 -#: tbl_tracking.php:323 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 +#: pdf_schema.php:1260 pdf_schema.php:1281 tbl_change.php:301 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:132 tbl_structure.php:175 tbl_tracking.php:267 +#: tbl_tracking.php:318 #, fuzzy #| msgid "Column names" msgid "Column" msgstr "Kolonnu nosaukumi" -#: db_datadict.php:174 db_printview.php:105 libraries/Index.class.php:442 +#: db_datadict.php:174 db_printview.php:104 libraries/Index.class.php:442 #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 #: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:244 #: libraries/export/latex.php:364 libraries/export/odt.php:296 #: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:99 -#: pdf_schema.php:1262 pdf_schema.php:1283 server_privileges.php:2062 -#: tbl_change.php:285 tbl_change.php:312 tbl_printview.php:141 -#: tbl_printview.php:311 tbl_select.php:134 tbl_structure.php:177 -#: tbl_structure.php:658 tbl_tracking.php:273 tbl_tracking.php:320 +#: pdf_schema.php:1261 pdf_schema.php:1282 server_privileges.php:2066 +#: tbl_change.php:280 tbl_change.php:307 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:133 tbl_structure.php:176 +#: tbl_structure.php:656 tbl_tracking.php:268 tbl_tracking.php:315 msgid "Type" msgstr "Tips" #: db_datadict.php:176 libraries/Index.class.php:448 #: libraries/export/htmlword.php:245 libraries/export/latex.php:364 #: libraries/export/odt.php:299 libraries/export/texytext.php:235 -#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1264 -#: pdf_schema.php:1285 tbl_change.php:321 tbl_printview.php:143 -#: tbl_structure.php:180 tbl_tracking.php:275 tbl_tracking.php:326 +#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1263 +#: pdf_schema.php:1284 tbl_change.php:316 tbl_printview.php:142 +#: tbl_structure.php:179 tbl_tracking.php:270 tbl_tracking.php:321 msgid "Null" msgstr "Nulle" -#: db_datadict.php:177 db_structure.php:500 libraries/export/htmlword.php:246 +#: db_datadict.php:177 db_structure.php:486 libraries/export/htmlword.php:246 #: libraries/export/latex.php:364 libraries/export/odt.php:302 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:105 -#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 -#: tbl_structure.php:181 tbl_tracking.php:276 +#: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:143 +#: tbl_structure.php:180 tbl_tracking.php:271 msgid "Default" msgstr "Noklusēts" #: db_datadict.php:181 libraries/export/htmlword.php:248 #: libraries/export/latex.php:366 libraries/export/odt.php:306 -#: libraries/export/texytext.php:238 pdf_schema.php:1267 pdf_schema.php:1288 -#: tbl_printview.php:148 +#: libraries/export/texytext.php:238 pdf_schema.php:1266 pdf_schema.php:1287 +#: tbl_printview.php:147 msgid "Links to" msgstr "Linki uz" -#: db_datadict.php:183 db_printview.php:111 libraries/export/htmlword.php:251 +#: db_datadict.php:183 db_printview.php:110 libraries/export/htmlword.php:251 #: libraries/export/latex.php:49 libraries/export/latex.php:369 #: libraries/export/odt.php:37 libraries/export/odt.php:311 #: libraries/export/sql.php:29 libraries/export/texytext.php:241 -#: libraries/tbl_properties.inc.php:129 pdf_schema.php:1278 -#: pdf_schema.php:1289 tbl_printview.php:150 +#: libraries/tbl_properties.inc.php:128 pdf_schema.php:1277 +#: pdf_schema.php:1288 tbl_printview.php:149 msgid "Comments" msgstr "Komentāri" #: db_datadict.php:266 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/export/htmlword.php:321 #: libraries/export/latex.php:434 libraries/export/odt.php:367 -#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:262 -#: pdf_schema.php:1343 server_privileges.php:1560 server_privileges.php:1571 -#: server_privileges.php:1881 server_privileges.php:1886 -#: server_privileges.php:2179 sql.php:131 sql.php:193 tbl_printview.php:227 -#: tbl_structure.php:349 tbl_tracking.php:336 tbl_tracking.php:341 +#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:261 +#: pdf_schema.php:1342 server_privileges.php:1564 server_privileges.php:1575 +#: server_privileges.php:1885 server_privileges.php:1890 +#: server_privileges.php:2183 sql.php:130 sql.php:192 tbl_printview.php:226 +#: tbl_structure.php:347 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "Nē" @@ -178,17 +190,17 @@ msgstr "Nē" #: libraries/mult_submits.inc.php:49 libraries/mult_submits.inc.php:54 #: libraries/mult_submits.inc.php:59 libraries/mult_submits.inc.php:91 #: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:105 -#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:261 -#: libraries/mult_submits.inc.php:272 pdf_schema.php:1343 -#: server_databases.php:63 server_privileges.php:1557 -#: server_privileges.php:1571 server_privileges.php:1881 -#: server_privileges.php:1884 server_privileges.php:2179 sql.php:192 -#: tbl_printview.php:227 tbl_structure.php:39 tbl_structure.php:349 -#: tbl_tracking.php:334 tbl_tracking.php:339 +#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:260 +#: libraries/mult_submits.inc.php:271 pdf_schema.php:1342 +#: server_databases.php:61 server_privileges.php:1561 +#: server_privileges.php:1575 server_privileges.php:1885 +#: server_privileges.php:1888 server_privileges.php:2183 sql.php:191 +#: tbl_printview.php:226 tbl_structure.php:38 tbl_structure.php:347 +#: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" msgstr "Jā" -#: db_datadict.php:321 db_printview.php:265 tbl_printview.php:496 +#: db_datadict.php:321 db_printview.php:264 tbl_printview.php:495 msgid "Print" msgstr "Drukāt" @@ -196,195 +208,154 @@ msgstr "Drukāt" msgid "View dump (schema) of database" msgstr "Apskatīt datubāzes dampu (shēmu)" -#: db_export.php:32 db_printview.php:95 db_qbe.php:101 db_structure.php:50 -#: db_tracking.php:34 export.php:352 navigation.php:326 +#: db_export.php:32 db_printview.php:94 db_qbe.php:98 db_structure.php:49 +#: db_tracking.php:30 export.php:350 navigation.php:325 msgid "No tables found in database." msgstr "Tabulas nav atrastas šajā datubāzē." -#: db_export.php:42 db_search.php:326 server_export.php:26 +#: db_export.php:42 db_search.php:326 server_export.php:24 msgid "Select All" msgstr "Iezīmēt visu" -#: db_export.php:44 db_search.php:329 server_export.php:28 +#: db_export.php:44 db_search.php:329 server_export.php:26 msgid "Unselect All" msgstr "Neiezīmēt neko" -#: db_operations.php:37 tbl_create.php:49 +#: db_operations.php:33 tbl_create.php:47 msgid "The database name is empty!" msgstr "Datubāzes nosaukums ir tukšs!" -#: db_operations.php:235 +#: db_operations.php:231 #, php-format msgid "Database %s has been renamed to %s" msgstr "Datubāze %s tika pārsaukta par %s" -#: db_operations.php:239 +#: db_operations.php:235 #, php-format msgid "Database %s has been copied to %s" msgstr "Datubāze %s tika pārkopēta uz %s" -#: db_operations.php:411 +#: db_operations.php:347 msgid "Rename database to" msgstr "Pārsaukt datubāzi par" -#: db_operations.php:416 server_processlist.php:56 +#: db_operations.php:352 server_processlist.php:56 msgid "Command" msgstr "Komanda" -#: db_operations.php:428 tbl_change.php:1141 +#: db_operations.php:364 tbl_change.php:1039 msgid "and then" msgstr "" -#: db_operations.php:454 +#: db_operations.php:390 msgid "Copy database to" msgstr "Kopēt datubāzi uz" -#: db_operations.php:461 tbl_operations.php:527 tbl_tracking.php:387 +#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Tikai struktūra" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:389 +#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Struktūra un dati" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:388 +#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Tikai dati" -#: db_operations.php:471 +#: db_operations.php:407 msgid "CREATE DATABASE before copying" msgstr "" -#: db_operations.php:474 libraries/export/sql.php:51 +#: db_operations.php:410 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 -#: libraries/export/sql.php:81 tbl_operations.php:535 +#: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "" -#: db_operations.php:478 libraries/export/sql.php:77 tbl_operations.php:298 -#: tbl_operations.php:537 +#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Pievienot AUTO_INCREMENT vērtību" -#: db_operations.php:482 tbl_operations.php:544 +#: db_operations.php:418 tbl_operations.php:542 msgid "Add constraints" msgstr "Pievienot ierobežojumus" -#: db_operations.php:495 +#: db_operations.php:431 msgid "Switch to copied database" msgstr "Pārslēgties uz nokopēto datubāzi" -#: db_operations.php:536 -msgid "BLOB Repository" -msgstr "" - -#: db_operations.php:539 db_tracking.php:75 libraries/common.lib.php:1357 -#: libraries/server_links.inc.php:48 server_processlist.php:58 -#: tbl_tracking.php:595 test/theme.php:100 -msgid "Status" -msgstr "Statuss" - -#: db_operations.php:547 -#, fuzzy -#| msgid "Enabled" -msgctxt "BLOB repository" -msgid "Enabled" -msgstr "Ieslēgts" - -#: db_operations.php:551 -#, fuzzy -msgid "Disable" -msgstr "Izslēgts" - -#: db_operations.php:561 -msgid "Damaged" -msgstr "" - -#: db_operations.php:565 -#, fuzzy -msgctxt "BLOB repository" -msgid "Repair" -msgstr "Restaurēt tabulu" - -#: db_operations.php:573 -#, fuzzy -#| msgid "Disabled" -msgctxt "BLOB repository" -msgid "Disabled" -msgstr "Izslēgts" - -#: db_operations.php:577 -#, fuzzy -msgid "Enable" -msgstr "Ieslēgts" - -#: db_operations.php:601 libraries/Index.class.php:447 +#: db_operations.php:451 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 -#: server_collations.php:53 server_collations.php:65 server_databases.php:110 -#: tbl_operations.php:362 tbl_select.php:135 tbl_structure.php:178 -#: tbl_structure.php:766 tbl_tracking.php:274 tbl_tracking.php:325 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 +#: server_collations.php:53 server_collations.php:65 server_databases.php:108 +#: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:177 +#: tbl_structure.php:764 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "Izkārtojumi" -#: db_operations.php:614 main.php:315 pdf_schema.php:33 -#, php-format +#: db_operations.php:464 pdf_schema.php:32 +#, fuzzy, php-format +#| msgid "" +#| "The additional features for working with linked tables have been " +#| "deactivated. To find out why click %shere%s." msgid "" -"The additional features for working with linked tables have been " -"deactivated. To find out why click %shere%s." +"The phpMyAdmin configuration storage has been deactivated. To find out why " +"click %shere%s." 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:647 +#: db_operations.php:497 msgid "Edit PDF Pages" msgstr "Labot PDF lapas" -#: db_printview.php:103 db_tracking.php:71 db_tracking.php:156 +#: db_printview.php:102 db_tracking.php:67 db_tracking.php:152 #: libraries/db_structure.lib.php:37 libraries/export/xml.php:327 -#: libraries/header.inc.php:125 pdf_pages.php:423 server_privileges.php:1657 -#: server_privileges.php:1713 server_privileges.php:1977 -#: server_synchronize.php:422 server_synchronize.php:865 tbl_tracking.php:591 +#: libraries/header.inc.php:125 pdf_pages.php:422 server_privileges.php:1661 +#: server_privileges.php:1717 server_privileges.php:1981 +#: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "Tabula" -#: db_printview.php:104 libraries/db_structure.lib.php:47 +#: db_printview.php:103 libraries/db_structure.lib.php:47 #: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 -#: navigation.php:629 navigation.php:651 server_databases.php:121 -#: tbl_printview.php:392 tbl_structure.php:364 tbl_structure.php:776 +#: navigation.php:628 navigation.php:650 server_databases.php:119 +#: tbl_printview.php:391 tbl_structure.php:362 tbl_structure.php:774 msgid "Rows" msgstr "Rindas" -#: db_printview.php:108 libraries/db_structure.lib.php:58 tbl_indexes.php:189 +#: db_printview.php:107 libraries/db_structure.lib.php:58 tbl_indexes.php:188 msgid "Size" msgstr "Izmērs" -#: db_printview.php:161 db_structure.php:456 libraries/export/sql.php:556 +#: db_printview.php:160 db_structure.php:442 libraries/export/sql.php:556 #: libraries/export/sql.php:896 msgid "in use" msgstr "lietošanā" -#: db_printview.php:186 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:511 pdf_schema.php:1240 tbl_printview.php:432 -#: tbl_structure.php:808 +#: db_printview.php:185 libraries/db_info.inc.php:86 +#: libraries/export/sql.php:511 pdf_schema.php:1239 tbl_printview.php:431 +#: tbl_structure.php:806 msgid "Creation" msgstr "Izveidošana" -#: db_printview.php:195 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:516 pdf_schema.php:1245 tbl_printview.php:442 -#: tbl_structure.php:816 +#: db_printview.php:194 libraries/db_info.inc.php:91 +#: libraries/export/sql.php:516 pdf_schema.php:1244 tbl_printview.php:441 +#: tbl_structure.php:814 msgid "Last update" msgstr "Pēdējā atjaunošana" -#: db_printview.php:204 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:521 pdf_schema.php:1250 tbl_printview.php:452 -#: tbl_structure.php:824 +#: db_printview.php:203 libraries/db_info.inc.php:96 +#: libraries/export/sql.php:521 pdf_schema.php:1249 tbl_printview.php:451 +#: tbl_structure.php:822 msgid "Last check" msgstr "Pēdējā pārbaude" -#: db_printview.php:221 db_structure.php:479 +#: db_printview.php:220 db_structure.php:465 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -392,94 +363,94 @@ msgid_plural "%s tables" msgstr[0] "%s tabula(s)" msgstr[1] "%s tabula(s)" -#: db_qbe.php:28 import.php:453 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1980 libraries/sql_query_form.lib.php:138 -#: tbl_operations.php:212 tbl_relation.php:291 tbl_row_action.php:130 -#: view_operations.php:61 +#: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 +#: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "Jūsu SQL vaicājums tika veiksmīgi izpildīts" -#: db_qbe.php:41 +#: db_qbe.php:38 msgid "You have to choose at least one column to display" msgstr "Izvēlieties vismaz vienu kolonnu attēlošanai" -#: db_qbe.php:199 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:865 +#: db_qbe.php:196 libraries/db_structure.lib.php:95 +#: libraries/display_tbl.lib.php:864 msgid "Sort" msgstr "Kārtošana" -#: db_qbe.php:208 db_qbe.php:242 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:522 libraries/display_tbl.lib.php:827 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:259 -#: tbl_select.php:311 +#: db_qbe.php:205 db_qbe.php:239 libraries/db_structure.lib.php:102 +#: libraries/display_tbl.lib.php:521 libraries/display_tbl.lib.php:826 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:257 +#: tbl_select.php:310 msgid "Ascending" msgstr "Augošā secībā" -#: db_qbe.php:209 db_qbe.php:250 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:527 libraries/display_tbl.lib.php:824 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:260 -#: tbl_select.php:312 +#: db_qbe.php:206 db_qbe.php:247 libraries/db_structure.lib.php:110 +#: libraries/display_tbl.lib.php:526 libraries/display_tbl.lib.php:823 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:258 +#: tbl_select.php:311 msgid "Descending" msgstr "Dilstošā secībā" -#: db_qbe.php:263 db_tracking.php:77 libraries/display_tbl.lib.php:307 -#: tbl_change.php:275 tbl_tracking.php:596 +#: db_qbe.php:260 db_tracking.php:73 libraries/display_tbl.lib.php:306 +#: tbl_change.php:270 tbl_tracking.php:591 msgid "Show" msgstr "Rādīt" -#: db_qbe.php:299 +#: db_qbe.php:296 msgid "Criteria" msgstr "Kritērijs" -#: db_qbe.php:352 db_qbe.php:434 db_qbe.php:526 db_qbe.php:557 +#: db_qbe.php:349 db_qbe.php:431 db_qbe.php:523 db_qbe.php:554 msgid "Ins" msgstr "Ielikt" -#: db_qbe.php:356 db_qbe.php:438 db_qbe.php:523 db_qbe.php:554 +#: db_qbe.php:353 db_qbe.php:435 db_qbe.php:520 db_qbe.php:551 msgid "And" msgstr "Un" -#: db_qbe.php:365 db_qbe.php:446 db_qbe.php:528 db_qbe.php:559 +#: db_qbe.php:362 db_qbe.php:443 db_qbe.php:525 db_qbe.php:556 msgid "Del" msgstr "Dzēst" -#: db_qbe.php:369 db_qbe.php:450 db_qbe.php:521 db_qbe.php:552 -#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:778 -#: server_privileges.php:297 tbl_change.php:1027 tbl_indexes.php:249 -#: tbl_select.php:285 +#: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 +#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:777 +#: server_privileges.php:296 tbl_change.php:925 tbl_indexes.php:248 +#: tbl_select.php:284 msgid "Or" msgstr "Vai" -#: db_qbe.php:506 +#: db_qbe.php:503 msgid "Modify" msgstr "Labot" -#: db_qbe.php:583 +#: db_qbe.php:580 #, fuzzy #| msgid "Add/Delete Criteria Row" msgid "Add/Delete criteria rows" msgstr "Pievienot/Dzēst ierakstu" -#: db_qbe.php:595 +#: db_qbe.php:592 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Add/Delete columns" msgstr "Pievienot/Dzēst laukus (kolonnas)" -#: db_qbe.php:608 db_qbe.php:633 +#: db_qbe.php:605 db_qbe.php:630 msgid "Update Query" msgstr "Atjaunot vaicājumu" -#: db_qbe.php:616 +#: db_qbe.php:613 msgid "Use Tables" msgstr "Lietot tabulas" -#: db_qbe.php:639 +#: db_qbe.php:636 #, php-format msgid "SQL query on database %s:" msgstr "SQL vaicājums uz datubāzes %s:" -#: db_qbe.php:933 libraries/common.lib.php:1222 +#: db_qbe.php:930 libraries/common.lib.php:1215 msgid "Submit Query" msgstr "Izpildīt vaicājumu" @@ -519,17 +490,17 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s rezultāti tabulā %s" msgstr[1] "%s rezultāti tabulā %s" -#: db_search.php:249 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2831 -#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:49 -#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:466 +#: db_search.php:249 db_structure.php:75 db_structure.php:76 +#: db_structure.php:88 db_structure.php:90 db_structure.php:101 +#: db_structure.php:103 libraries/common.lib.php:2836 +#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 +#: tbl_structure.php:35 tbl_structure.php:47 tbl_structure.php:464 msgid "Browse" msgstr "Apskatīt" -#: db_search.php:254 libraries/display_tbl.lib.php:1164 -#: libraries/display_tbl.lib.php:2055 libraries/sql_query_form.lib.php:453 -#: pdf_pages.php:285 pdf_pages.php:424 pdf_pages.php:460 pdf_pages.php:488 +#: db_search.php:254 libraries/display_tbl.lib.php:1163 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 msgid "Delete" @@ -569,231 +540,237 @@ msgstr "Tabulā(s):" msgid "Inside column:" msgstr "Tabulā(s):" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2830 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:75 +#: db_structure.php:79 db_structure.php:80 db_structure.php:92 +#: db_structure.php:93 db_structure.php:105 db_structure.php:106 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 +#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Pievienot" -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2827 libraries/common.lib.php:2834 -#: libraries/db_links.inc.php:62 libraries/export/htmlword.php:22 +#: db_structure.php:81 db_structure.php:94 db_structure.php:107 +#: libraries/common.lib.php:2832 libraries/common.lib.php:2839 +#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 -#: libraries/tbl_links.inc.php:55 pmd_general.php:133 -#: server_privileges.php:593 server_replication.php:314 tbl_tracking.php:268 +#: libraries/tbl_links.inc.php:54 pmd_general.php:133 +#: server_privileges.php:592 server_replication.php:313 tbl_tracking.php:263 msgid "Structure" msgstr "Struktūra" -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:544 db_structure.php:545 db_tracking.php:90 -#: libraries/Index.class.php:482 libraries/common.lib.php:1659 -#: libraries/db_links.inc.php:99 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:126 -#: server_databases.php:351 tbl_structure.php:26 tbl_structure.php:150 -#: tbl_structure.php:151 tbl_structure.php:470 +#: db_structure.php:82 db_structure.php:83 db_structure.php:95 +#: db_structure.php:96 db_structure.php:108 db_structure.php:109 +#: db_structure.php:530 db_structure.php:531 db_tracking.php:86 +#: libraries/Index.class.php:482 libraries/common.lib.php:1663 +#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 +#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 +#: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" msgstr "Likvidēt" -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:542 db_structure.php:543 libraries/common.lib.php:1658 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:104 +#: db_structure.php:84 db_structure.php:85 db_structure.php:97 +#: db_structure.php:98 db_structure.php:110 db_structure.php:111 +#: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 +#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 msgid "Empty" msgstr "Iztukšot" -#: db_structure.php:315 libraries/tbl_links.inc.php:99 +#: db_structure.php:301 libraries/tbl_links.inc.php:98 #, php-format msgid "Table %s has been emptied" msgstr "Tabula %s tika iztukšota" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, fuzzy, php-format msgid "View %s has been dropped" msgstr "Lauks %s tika izdzēsts" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "Table %s has been dropped" msgstr "Tabula %s tika izdzēsta" -#: db_structure.php:332 +#: db_structure.php:318 msgid "Tracking is active." msgstr "" -#: db_structure.php:334 +#: db_structure.php:320 msgid "Tracking is not active." msgstr "" -#: db_structure.php:419 libraries/display_tbl.lib.php:1943 +#: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -#: db_structure.php:433 db_structure.php:447 libraries/header.inc.php:125 -#: libraries/tbl_info.inc.php:65 tbl_structure.php:184 test/theme.php:73 +#: db_structure.php:419 db_structure.php:433 libraries/header.inc.php:125 +#: libraries/tbl_info.inc.php:60 tbl_structure.php:183 test/theme.php:73 msgid "View" msgstr "" -#: db_structure.php:484 libraries/db_structure.lib.php:40 -#: libraries/server_links.inc.php:69 server_replication.php:32 -#: server_replication.php:163 server_status.php:368 +#: db_structure.php:470 libraries/db_structure.lib.php:40 +#: libraries/server_links.inc.php:69 server_replication.php:31 +#: server_replication.php:162 server_status.php:368 #, fuzzy msgid "Replication" msgstr "Relācijas" -#: db_structure.php:488 +#: db_structure.php:474 msgid "Sum" msgstr "Kopumā" -#: db_structure.php:495 libraries/StorageEngine.class.php:349 +#: db_structure.php:481 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: db_structure.php:523 db_structure.php:540 db_structure.php:541 -#: libraries/display_tbl.lib.php:2080 libraries/display_tbl.lib.php:2085 -#: libraries/mult_submits.inc.php:15 server_databases.php:345 -#: server_databases.php:350 server_privileges.php:1588 tbl_structure.php:454 -#: tbl_structure.php:463 +#: db_structure.php:509 db_structure.php:526 db_structure.php:527 +#: libraries/display_tbl.lib.php:2039 libraries/display_tbl.lib.php:2044 +#: libraries/mult_submits.inc.php:15 server_databases.php:343 +#: server_databases.php:348 server_privileges.php:1592 tbl_structure.php:452 +#: tbl_structure.php:461 msgid "With selected:" msgstr "Ar iezīmēto:" -#: db_structure.php:526 libraries/display_tbl.lib.php:2075 -#: server_databases.php:347 server_privileges.php:569 -#: server_privileges.php:1591 tbl_structure.php:457 +#: db_structure.php:512 libraries/display_tbl.lib.php:2034 +#: server_databases.php:345 server_privileges.php:568 +#: server_privileges.php:1595 tbl_structure.php:455 msgid "Check All" msgstr "Iezīmēt visu" -#: db_structure.php:530 libraries/display_tbl.lib.php:2076 -#: libraries/replication_gui.lib.php:35 server_databases.php:349 -#: server_privileges.php:572 server_privileges.php:1595 tbl_structure.php:461 +#: db_structure.php:516 libraries/display_tbl.lib.php:2035 +#: libraries/replication_gui.lib.php:35 server_databases.php:347 +#: server_privileges.php:571 server_privileges.php:1599 tbl_structure.php:459 msgid "Uncheck All" msgstr "Neiezīmēt neko" -#: db_structure.php:535 +#: db_structure.php:521 msgid "Check tables having overhead" msgstr "Iezīmēt tabulas ar pārtēriņu" -#: db_structure.php:546 db_structure.php:547 db_structure.php:598 -#: libraries/display_tbl.lib.php:2179 libraries/mult_submits.inc.php:27 -#: tbl_structure.php:491 tbl_structure.php:493 +#: db_structure.php:532 db_structure.php:533 db_structure.php:584 +#: libraries/display_tbl.lib.php:2138 libraries/mult_submits.inc.php:27 +#: tbl_structure.php:489 tbl_structure.php:491 msgid "Print view" msgstr "Izdrukas versija" -#: db_structure.php:548 db_structure.php:549 libraries/mult_submits.inc.php:41 -#: tbl_operations.php:580 +#: db_structure.php:534 db_structure.php:535 libraries/mult_submits.inc.php:41 +#: tbl_operations.php:578 msgid "Check table" msgstr "Pārbaudīt tabulu" -#: db_structure.php:550 db_structure.php:551 libraries/mult_submits.inc.php:46 -#: tbl_operations.php:620 tbl_structure.php:708 tbl_structure.php:710 +#: db_structure.php:536 db_structure.php:537 libraries/mult_submits.inc.php:46 +#: tbl_operations.php:618 tbl_structure.php:706 tbl_structure.php:708 msgid "Optimize table" msgstr "Optimizēt tabulu" -#: db_structure.php:552 db_structure.php:553 libraries/mult_submits.inc.php:51 -#: tbl_operations.php:610 +#: db_structure.php:538 db_structure.php:539 libraries/mult_submits.inc.php:51 +#: tbl_operations.php:608 msgid "Repair table" msgstr "Restaurēt tabulu" -#: db_structure.php:554 db_structure.php:555 libraries/mult_submits.inc.php:56 -#: tbl_operations.php:600 +#: db_structure.php:540 db_structure.php:541 libraries/mult_submits.inc.php:56 +#: tbl_operations.php:598 msgid "Analyze table" msgstr "Analizēt tabulu" -#: db_structure.php:556 db_structure.php:557 libraries/db_links.inc.php:70 -#: libraries/display_export.lib.php:82 libraries/display_tbl.lib.php:2093 -#: libraries/display_tbl.lib.php:2224 libraries/mult_submits.inc.php:61 -#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:81 -#: pmd_pdf.php:83 pmd_pdf.php:108 server_privileges.php:1372 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 +#: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 +#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 +#: pmd_pdf.php:81 pmd_pdf.php:106 server_privileges.php:1376 #: setup/frames/menu.inc.php:22 tbl_row_action.php:58 msgid "Export" msgstr "Eksports" -#: db_structure.php:605 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:591 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "Datu vārdnīca" -#: db_tracking.php:65 +#: db_tracking.php:61 msgid "Tracked tables" msgstr "" -#: db_tracking.php:70 libraries/export/htmlword.php:85 +#: db_tracking.php:66 libraries/export/htmlword.php:85 #: libraries/export/latex.php:152 libraries/export/odt.php:112 #: libraries/export/sql.php:339 libraries/export/texytext.php:84 #: libraries/export/xml.php:254 libraries/header.inc.php:105 -#: libraries/header_printview.inc.php:57 server_databases.php:168 -#: server_privileges.php:1652 server_privileges.php:1713 -#: server_privileges.php:1971 server_processlist.php:55 -#: server_synchronize.php:1178 server_synchronize.php:1182 -#: tbl_tracking.php:590 test/theme.php:64 +#: libraries/header_printview.inc.php:57 server_databases.php:166 +#: server_privileges.php:1656 server_privileges.php:1717 +#: server_privileges.php:1975 server_processlist.php:55 +#: server_synchronize.php:1177 server_synchronize.php:1181 +#: tbl_tracking.php:585 test/theme.php:64 msgid "Database" msgstr "Datubāze" -#: db_tracking.php:72 +#: db_tracking.php:68 msgid "Last version" msgstr "" -#: db_tracking.php:73 tbl_tracking.php:593 +#: db_tracking.php:69 tbl_tracking.php:588 #, fuzzy msgid "Created" msgstr "Izveidot" -#: db_tracking.php:74 tbl_tracking.php:594 +#: db_tracking.php:70 tbl_tracking.php:589 msgid "Updated" msgstr "" -#: db_tracking.php:76 libraries/Index.class.php:439 -#: libraries/db_structure.lib.php:44 server_databases.php:202 -#: server_privileges.php:1534 server_privileges.php:1717 -#: server_privileges.php:2065 tbl_structure.php:186 +#: db_tracking.php:71 libraries/common.lib.php:1361 +#: libraries/server_links.inc.php:48 server_processlist.php:58 +#: tbl_tracking.php:590 test/theme.php:100 +msgid "Status" +msgstr "Statuss" + +#: db_tracking.php:72 libraries/Index.class.php:439 +#: libraries/db_structure.lib.php:44 server_databases.php:200 +#: server_privileges.php:1538 server_privileges.php:1721 +#: server_privileges.php:2069 tbl_structure.php:185 msgid "Action" msgstr "Darbība" -#: db_tracking.php:87 db_tracking.php:119 +#: db_tracking.php:83 db_tracking.php:115 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:105 tbl_tracking.php:547 tbl_tracking.php:605 -#: tbl_tracking.php:612 +#: db_tracking.php:101 tbl_tracking.php:542 tbl_tracking.php:600 +#: tbl_tracking.php:607 msgid "active" msgstr "" -#: db_tracking.php:107 tbl_tracking.php:549 tbl_tracking.php:607 -#: tbl_tracking.php:609 +#: db_tracking.php:103 tbl_tracking.php:544 tbl_tracking.php:602 +#: tbl_tracking.php:604 msgid "not active" msgstr "" -#: db_tracking.php:120 +#: db_tracking.php:116 #, fuzzy msgid "Versions" msgstr "Persiešu" -#: db_tracking.php:121 tbl_tracking.php:378 tbl_tracking.php:623 +#: db_tracking.php:117 tbl_tracking.php:373 tbl_tracking.php:618 msgid "Tracking report" msgstr "" -#: db_tracking.php:122 tbl_tracking.php:250 tbl_tracking.php:623 +#: db_tracking.php:118 tbl_tracking.php:245 tbl_tracking.php:618 #, fuzzy msgid "Structure snapshot" msgstr "Tikai struktūra" -#: db_tracking.php:151 +#: db_tracking.php:147 msgid "Untracked tables" msgstr "" -#: db_tracking.php:171 db_tracking.php:173 tbl_structure.php:527 -#: tbl_structure.php:529 +#: db_tracking.php:167 db_tracking.php:169 tbl_structure.php:525 +#: tbl_structure.php:527 #, fuzzy msgid "Track table" msgstr "Pārbaudīt tabulu" -#: db_tracking.php:199 +#: db_tracking.php:195 #, fuzzy msgid "Database Log" msgstr "Datubāze" @@ -802,12 +779,12 @@ msgstr "Datubāze" msgid "Selected export type has to be saved in file!" msgstr "" -#: export.php:153 export.php:178 export.php:620 +#: export.php:152 export.php:177 export.php:615 #, php-format msgid "Insufficient space to save the file %s." msgstr "Nepietiek vietas, lai saglabātu failu %s." -#: export.php:287 +#: export.php:286 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -815,92 +792,92 @@ msgstr "" "Fails %s jau eksistē uz servera. Lūdzu nomainiet faila nosaukumu vai " "atzīmējiet failu pārrakstīšanas opciju." -#: export.php:291 export.php:295 +#: export.php:290 export.php:294 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Web serverim nav tiesību rakstīt failā %s." -#: export.php:622 +#: export.php:617 #, php-format msgid "Dump has been saved to file %s." msgstr "Damps tika saglabāts failā %s." -#: import.php:59 +#: 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." msgstr "" -#: import.php:278 import.php:331 libraries/File.class.php:840 -#: libraries/File.class.php:950 +#: import.php:277 import.php:330 libraries/File.class.php:566 +#: libraries/File.class.php:676 msgid "File could not be read" msgstr "Nevar nolasīt failu" -#: import.php:286 import.php:295 import.php:314 import.php:323 -#: libraries/File.class.php:1020 libraries/File.class.php:1028 -#: libraries/File.class.php:1044 libraries/File.class.php:1052 +#: import.php:285 import.php:294 import.php:313 import.php:322 +#: libraries/File.class.php:746 libraries/File.class.php:754 +#: libraries/File.class.php:770 libraries/File.class.php:778 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." msgstr "" -#: import.php:336 +#: import.php:335 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " "[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." msgstr "" -#: import.php:371 libraries/display_import.lib.php:23 +#: import.php:370 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:396 +#: import.php:395 msgid "The bookmark has been deleted." msgstr "Ieraksts tika dzēsts." -#: import.php:400 +#: import.php:399 msgid "Showing bookmark" msgstr "" -#: import.php:402 sql.php:625 +#: import.php:401 sql.php:618 #, php-format msgid "Bookmark %s created" msgstr "" -#: import.php:408 import.php:414 +#: import.php:407 import.php:413 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" -#: import.php:423 +#: import.php:422 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: import.php:425 +#: import.php:424 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." msgstr "" -#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:240 +#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:239 #: user_password.php:110 msgid "Back" msgstr "Atpakaļ" -#: index.php:188 +#: index.php:183 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" "phpMyAdmin ir vairāk draudzīgs freimu atbalstošām pārlūkprogrammām." -#: js/messages.php:25 server_synchronize.php:344 server_synchronize.php:356 -#: server_synchronize.php:372 server_synchronize.php:379 -#: server_synchronize.php:738 server_synchronize.php:766 -#: server_synchronize.php:794 server_synchronize.php:806 +#: js/messages.php:25 server_synchronize.php:343 server_synchronize.php:355 +#: server_synchronize.php:371 server_synchronize.php:378 +#: server_synchronize.php:737 server_synchronize.php:765 +#: server_synchronize.php:793 server_synchronize.php:805 msgid "Click to select" msgstr "" @@ -908,15 +885,15 @@ msgstr "" msgid "Click to unselect" msgstr "" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:88 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:87 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" komanda ir aizliegta." -#: js/messages.php:30 libraries/mult_submits.inc.php:257 sql.php:187 +#: js/messages.php:30 libraries/mult_submits.inc.php:256 sql.php:186 msgid "Do you really want to " msgstr "Vai Jūs tiešām gribat " -#: js/messages.php:31 libraries/mult_submits.inc.php:257 sql.php:171 +#: js/messages.php:31 libraries/mult_submits.inc.php:256 sql.php:170 msgid "You are about to DESTROY a complete database!" msgstr "Jūs taisaties LIKVIDĒT veselu datubāzi!" @@ -945,11 +922,11 @@ msgstr "Hosts nav norādīts!" msgid "The user name is empty!" msgstr "Lietotāja vārds nav norādīts!" -#: js/messages.php:44 server_privileges.php:1228 user_password.php:65 +#: js/messages.php:44 server_privileges.php:1229 user_password.php:65 msgid "The password is empty!" msgstr "Parole nav norādīta!" -#: js/messages.php:45 server_privileges.php:1226 user_password.php:68 +#: js/messages.php:45 server_privileges.php:1227 user_password.php:68 msgid "The passwords aren't the same!" msgstr "Paroles nesakrīt!" @@ -957,29 +934,29 @@ msgstr "Paroles nesakrīt!" msgid "Cancel" msgstr "" -#: js/messages.php:52 pmd_save_pos.php:53 +#: js/messages.php:52 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "Labojumi tika saglabāti" -#: js/messages.php:53 pmd_relation_upd.php:48 +#: js/messages.php:53 pmd_relation_upd.php:47 #, fuzzy msgid "Relation deleted" msgstr "Relāciju pārskats" -#: js/messages.php:54 pmd_relation_new.php:63 +#: js/messages.php:54 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:55 pmd_relation_new.php:85 +#: js/messages.php:55 pmd_relation_new.php:84 #, fuzzy msgid "Internal relation added" msgstr "Iekšējās relācijas" -#: js/messages.php:56 pmd_relation_new.php:62 pmd_relation_new.php:87 +#: js/messages.php:56 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:57 pmd_relation_new.php:30 +#: js/messages.php:57 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "" @@ -987,13 +964,13 @@ msgstr "" msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:59 libraries/relation.lib.php:94 -#: libraries/relation.lib.php:106 +#: js/messages.php:59 libraries/relation.lib.php:89 +#: libraries/relation.lib.php:101 msgid "General relation features" msgstr "Galvenās relāciju īpašības" -#: js/messages.php:59 libraries/relation.lib.php:88 -#: libraries/relation.lib.php:95 +#: js/messages.php:59 libraries/relation.lib.php:83 +#: libraries/relation.lib.php:90 msgid "Disabled" msgstr "Izslēgts" @@ -1009,7 +986,7 @@ msgstr "" msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:547 +#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" @@ -1041,10 +1018,10 @@ msgid "Prev" msgstr "Iepriekšējie" #. l10n: Display text for next month link in calendar -#: js/messages.php:81 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:337 -#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:422 -#: tbl_structure.php:800 +#: js/messages.php:81 libraries/common.lib.php:2358 +#: libraries/common.lib.php:2361 libraries/display_tbl.lib.php:336 +#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 +#: tbl_structure.php:798 msgid "Next" msgstr "Nākamie" @@ -1118,27 +1095,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1562 +#: js/messages.php:101 libraries/common.lib.php:1566 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1564 +#: js/messages.php:103 libraries/common.lib.php:1568 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1566 +#: js/messages.php:105 libraries/common.lib.php:1570 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1568 +#: js/messages.php:107 libraries/common.lib.php:1572 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1570 +#: js/messages.php:109 libraries/common.lib.php:1574 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1146,37 +1123,37 @@ msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1572 +#: js/messages.php:111 libraries/common.lib.php:1576 msgid "Jun" msgstr "Jūn" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1574 +#: js/messages.php:113 libraries/common.lib.php:1578 msgid "Jul" msgstr "Jūl" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1576 +#: js/messages.php:115 libraries/common.lib.php:1580 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1578 +#: js/messages.php:117 libraries/common.lib.php:1582 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1580 +#: js/messages.php:119 libraries/common.lib.php:1584 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:121 libraries/common.lib.php:1582 +#: js/messages.php:121 libraries/common.lib.php:1586 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:123 libraries/common.lib.php:1584 +#: js/messages.php:123 libraries/common.lib.php:1588 msgid "Dec" msgstr "Dec" @@ -1217,37 +1194,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1587 +#: js/messages.php:136 libraries/common.lib.php:1591 msgid "Sun" msgstr "Sv" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1589 +#: js/messages.php:138 libraries/common.lib.php:1593 msgid "Mon" msgstr "P" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1591 +#: js/messages.php:140 libraries/common.lib.php:1595 msgid "Tue" msgstr "O" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1593 +#: js/messages.php:142 libraries/common.lib.php:1597 msgid "Wed" msgstr "T" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1595 +#: js/messages.php:144 libraries/common.lib.php:1599 msgid "Thu" msgstr "C" #. l10n: Short week day name -#: js/messages.php:146 libraries/common.lib.php:1597 +#: js/messages.php:146 libraries/common.lib.php:1601 msgid "Fri" msgstr "Pk" #. l10n: Short week day name -#: js/messages.php:148 libraries/common.lib.php:1599 +#: js/messages.php:148 libraries/common.lib.php:1603 msgid "Sat" msgstr "S" @@ -1325,76 +1302,75 @@ msgstr "sekundē" msgid "Font size" msgstr "" -#: libraries/File.class.php:336 libraries/File.class.php:424 -#: libraries/File.class.php:561 libraries/File.class.php:700 -msgid "Unknown error in file upload." -msgstr "" - -#: libraries/File.class.php:406 +#: libraries/File.class.php:315 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:409 +#: libraries/File.class.php:318 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:412 +#: libraries/File.class.php:321 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:415 +#: libraries/File.class.php:324 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:418 +#: libraries/File.class.php:327 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:421 +#: libraries/File.class.php:330 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:898 +#: libraries/File.class.php:333 +msgid "Unknown error in file upload." +msgstr "" + +#: libraries/File.class.php:624 #, 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:427 tbl_relation.php:528 +#: libraries/Index.class.php:427 tbl_relation.php:526 msgid "No index defined!" msgstr "Nav definēti indeksi!" -#: libraries/Index.class.php:432 server_databases.php:131 tbl_tracking.php:315 +#: libraries/Index.class.php:432 server_databases.php:129 tbl_tracking.php:310 msgid "Indexes" msgstr "Indeksi" #: libraries/Index.class.php:443 libraries/mult_submits.inc.php:102 -#: libraries/tbl_properties.inc.php:518 tbl_structure.php:32 -#: tbl_structure.php:154 tbl_structure.php:158 tbl_structure.php:473 -#: tbl_tracking.php:321 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:31 +#: tbl_structure.php:153 tbl_structure.php:157 tbl_structure.php:471 +#: tbl_tracking.php:316 msgid "Unique" msgstr "Unikālais" -#: libraries/Index.class.php:444 tbl_tracking.php:322 +#: libraries/Index.class.php:444 tbl_tracking.php:317 msgid "Packed" msgstr "" -#: libraries/Index.class.php:446 tbl_tracking.php:324 +#: libraries/Index.class.php:446 tbl_tracking.php:319 msgid "Cardinality" msgstr "Kardinalitāte" -#: libraries/Index.class.php:449 tbl_tracking.php:278 tbl_tracking.php:327 +#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322 #, fuzzy msgid "Comment" msgstr "Komentāri" #: libraries/Index.class.php:465 libraries/common.lib.php:609 -#: libraries/common.lib.php:1198 libraries/display_tbl.lib.php:1116 +#: libraries/common.lib.php:1191 libraries/display_tbl.lib.php:1115 #: libraries/import.lib.php:1119 libraries/import.lib.php:1143 -#: pdf_pages.php:284 setup/frames/index.inc.php:124 +#: pdf_pages.php:283 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:349 tbl_row_action.php:68 msgid "Edit" msgstr "Labot" @@ -1416,15 +1392,15 @@ msgid "" msgstr "" #: libraries/List_Database.class.php:430 libraries/server_links.inc.php:40 -#: server_databases.php:87 server_privileges.php:1652 +#: server_databases.php:85 server_privileges.php:1656 #: setup/lib/messages.inc.php:107 test/theme.php:92 msgid "Databases" msgstr "Datubāzes" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:259 libraries/import.lib.php:134 pdf_schema.php:31 -#: pdf_schema.php:231 tbl_change.php:1023 tbl_operations.php:212 -#: tbl_relation.php:289 view_operations.php:61 +#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 +#: tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Kļūda" @@ -1451,40 +1427,40 @@ msgid_plural "%1$d rows inserted." msgstr[0] "Rindas nav iezīmētas" msgstr[1] "Rindas nav iezīmētas" -#: libraries/StorageEngine.class.php:196 +#: libraries/StorageEngine.class.php:194 msgid "" "There is no detailed status information available for this storage engine." msgstr "" -#: libraries/StorageEngine.class.php:352 +#: libraries/StorageEngine.class.php:354 #, php-format msgid "%s is available on this MySQL server." msgstr "" -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:357 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "" -#: libraries/StorageEngine.class.php:359 +#: libraries/StorageEngine.class.php:361 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "" -#: libraries/Table.class.php:1018 +#: libraries/Table.class.php:1017 msgid "Invalid database" msgstr "" -#: libraries/Table.class.php:1032 tbl_get_field.php:25 +#: libraries/Table.class.php:1031 tbl_get_field.php:25 msgid "Invalid table name" msgstr "" -#: libraries/Table.class.php:1047 +#: libraries/Table.class.php:1046 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "" -#: libraries/Table.class.php:1131 +#: libraries/Table.class.php:1129 #, php-format msgid "Table %s has been renamed to %s" msgstr "Tabula %s tika pārsaukta par %s" @@ -1502,22 +1478,22 @@ msgstr "" msgid "take it" msgstr "izmantot šo stilu" -#: libraries/Theme_Manager.class.php:114 +#: libraries/Theme_Manager.class.php:109 #, php-format msgid "Default theme %s not found!" msgstr "" -#: libraries/Theme_Manager.class.php:152 +#: libraries/Theme_Manager.class.php:147 #, php-format msgid "Theme %s not found!" msgstr "" -#: libraries/Theme_Manager.class.php:220 +#: libraries/Theme_Manager.class.php:215 #, php-format msgid "Theme path not found for theme %s!" msgstr "" -#: libraries/Theme_Manager.class.php:296 test/theme.php:160 themes.php:20 +#: libraries/Theme_Manager.class.php:291 test/theme.php:160 themes.php:20 #: themes.php:40 msgid "Theme / Style" msgstr "Tēma / Stils" @@ -1629,19 +1605,19 @@ msgstr "" msgid "Authenticating..." msgstr "" -#: libraries/blobstreaming.lib.php:689 +#: libraries/blobstreaming.lib.php:340 msgid "View image" msgstr "" -#: libraries/blobstreaming.lib.php:693 +#: libraries/blobstreaming.lib.php:344 msgid "Play audio" msgstr "" -#: libraries/blobstreaming.lib.php:698 +#: libraries/blobstreaming.lib.php:349 msgid "View video" msgstr "" -#: libraries/blobstreaming.lib.php:702 +#: libraries/blobstreaming.lib.php:353 msgid "Download file" msgstr "" @@ -1693,7 +1669,7 @@ msgstr "Serveris" msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:909 +#: libraries/common.inc.php:908 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Jums ir jāuzliek %s %s vai jaunāks." @@ -1720,7 +1696,8 @@ msgstr "Nosūtīts" #: libraries/common.lib.php:425 libraries/common.lib.php:427 #: libraries/common.lib.php:429 libraries/common.lib.php:445 #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 -#: libraries/display_export.lib.php:163 libraries/relation.lib.php:84 +#: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 +#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 #: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" @@ -1735,146 +1712,146 @@ msgstr "SQL vaicājums" msgid "MySQL said: " msgstr "MySQL teica: " -#: libraries/common.lib.php:1136 +#: libraries/common.lib.php:1129 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1174 setup/lib/messages.inc.php:350 +#: libraries/common.lib.php:1167 setup/lib/messages.inc.php:350 msgid "Explain SQL" msgstr "Izskaidrot SQL" -#: libraries/common.lib.php:1177 +#: libraries/common.lib.php:1170 msgid "Skip Explain SQL" msgstr "Neizskaidrot SQL" -#: libraries/common.lib.php:1211 +#: libraries/common.lib.php:1204 msgid "Without PHP Code" msgstr "Bez PHP koda" -#: libraries/common.lib.php:1214 setup/lib/messages.inc.php:352 +#: libraries/common.lib.php:1207 setup/lib/messages.inc.php:352 msgid "Create PHP Code" msgstr "Izveidot PHP kodu" -#: libraries/common.lib.php:1232 server_status.php:451 +#: libraries/common.lib.php:1225 server_status.php:451 #: setup/lib/messages.inc.php:351 msgid "Refresh" msgstr "Atjaunot" -#: libraries/common.lib.php:1241 +#: libraries/common.lib.php:1234 msgid "Skip Validate SQL" msgstr "Nepārbaudīt SQL" -#: libraries/common.lib.php:1244 setup/lib/messages.inc.php:353 +#: libraries/common.lib.php:1237 setup/lib/messages.inc.php:353 msgid "Validate SQL" msgstr "Pārbaudīt SQL" -#: libraries/common.lib.php:1283 +#: libraries/common.lib.php:1287 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1285 +#: libraries/common.lib.php:1289 msgid "Inline" msgstr "" -#: libraries/common.lib.php:1339 libraries/common.lib.php:1354 +#: libraries/common.lib.php:1343 libraries/common.lib.php:1358 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1358 libraries/tbl_triggers.lib.php:27 +#: libraries/common.lib.php:1362 libraries/tbl_triggers.lib.php:27 #: server_processlist.php:57 msgid "Time" msgstr "Laiks" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "B" msgstr "baiti" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "KiB" msgstr "KB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "MiB" msgstr "MB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "GiB" msgstr "GB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "TiB" msgstr "TB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "PiB" msgstr "PB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "EiB" msgstr "EB" #. l10n: Thousands separator -#: libraries/common.lib.php:1424 +#: libraries/common.lib.php:1428 msgid "," msgstr " " #. l10n: Decimal separator -#: libraries/common.lib.php:1426 +#: libraries/common.lib.php:1430 msgid "." msgstr "." #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1603 +#: libraries/common.lib.php:1607 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%d.%m.%Y %H:%M" -#: libraries/common.lib.php:1909 +#: libraries/common.lib.php:1913 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dienas, %s stundas, %s minūtes un %s sekundes" -#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 -#: libraries/display_tbl.lib.php:289 server_status.php:718 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 +#: libraries/display_tbl.lib.php:288 server_status.php:718 msgid "Begin" msgstr "Sākums" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 -#: libraries/display_tbl.lib.php:290 server_binlog.php:154 +#: libraries/common.lib.php:2328 libraries/common.lib.php:2331 +#: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "Iepriekšējie" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 -#: libraries/display_tbl.lib.php:352 +#: libraries/common.lib.php:2359 libraries/common.lib.php:2362 +#: libraries/display_tbl.lib.php:351 msgid "End" msgstr "Beigas" -#: libraries/common.lib.php:2429 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "pāriet pie datubāzes "%s"." -#: libraries/common.lib.php:2448 +#: libraries/common.lib.php:2453 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2828 libraries/common.lib.php:2835 -#: libraries/db_links.inc.php:67 libraries/export/sql.php:24 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 +#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 -#: libraries/tbl_links.inc.php:59 querywindow.php:89 test/theme.php:96 +#: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2837 libraries/db_links.inc.php:103 -#: libraries/tbl_links.inc.php:94 libraries/tbl_links.inc.php:116 -#: view_operations.php:88 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: view_operations.php:87 msgid "Operations" msgstr "Darbības" -#: libraries/core.lib.php:282 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1890,39 +1867,39 @@ msgstr "" msgid "Name" msgstr "Nosaukums" -#: libraries/db_links.inc.php:44 +#: libraries/db_links.inc.php:43 #, php-format msgid "Database %s has been dropped." msgstr "Datubāze %s tika izdzēsta." -#: libraries/db_links.inc.php:56 libraries/db_links.inc.php:57 -#: libraries/db_links.inc.php:58 +#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 +#: libraries/db_links.inc.php:57 msgid "Database seems to be empty!" msgstr "" -#: libraries/db_links.inc.php:80 libraries/relation.lib.php:142 -#: libraries/tbl_links.inc.php:68 +#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:85 +#: libraries/db_links.inc.php:84 msgid "Query" msgstr "Vaicājums pēc parauga" -#: libraries/db_links.inc.php:90 libraries/relation.lib.php:138 +#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:97 libraries/server_links.inc.php:87 -#: libraries/tbl_links.inc.php:90 pmd_pdf.php:83 pmd_pdf.php:109 +#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 #, fuzzy msgid "Import" msgstr "Eksports" -#: libraries/db_links.inc.php:110 libraries/server_links.inc.php:65 -#: server_privileges.php:111 server_privileges.php:1714 -#: server_privileges.php:2063 test/theme.php:116 +#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: server_privileges.php:110 server_privileges.php:1718 +#: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" msgstr "Privilēģijas" @@ -1934,14 +1911,14 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1847 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1806 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "Var būt aptuvens skaits. Skatīt FAQ 3.11" -#: libraries/db_structure.lib.php:60 server_databases.php:141 -#: tbl_printview.php:334 tbl_structure.php:681 +#: libraries/db_structure.lib.php:60 server_databases.php:139 +#: tbl_printview.php:333 tbl_structure.php:679 msgid "Overhead" msgstr "Pārtēriņš" @@ -1958,7 +1935,7 @@ msgstr "Serveris neatbild" msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "" -#: libraries/dbi/mysql.dbi.lib.php:358 tbl_structure.php:607 +#: libraries/dbi/mysql.dbi.lib.php:358 tbl_structure.php:605 msgid "Details..." msgstr "" @@ -1968,22 +1945,22 @@ msgid "Change password" msgstr "Mainīt paroli" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:807 +#: libraries/replication_gui.lib.php:347 server_privileges.php:806 msgid "No Password" msgstr "Nav paroles" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1530 server_synchronize.php:1174 +#: libraries/replication_gui.lib.php:351 server_privileges.php:795 +#: server_privileges.php:799 server_privileges.php:810 +#: server_privileges.php:1534 server_synchronize.php:1173 msgid "Password" msgstr "Parole" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:815 server_privileges.php:818 +#: server_privileges.php:814 server_privileges.php:817 msgid "Re-type" msgstr "Atkārtojiet" @@ -2006,8 +1983,8 @@ msgstr "Izveidot jaunu datubāzi" msgid "Create" msgstr "Izveidot" -#: libraries/display_create_database.lib.php:39 server_privileges.php:113 -#: server_privileges.php:1419 server_replication.php:34 +#: libraries/display_create_database.lib.php:39 server_privileges.php:112 +#: server_privileges.php:1423 server_replication.php:33 msgid "No Privileges" msgstr "Nav privilēģiju" @@ -2028,51 +2005,51 @@ msgstr "Izveidot jaunu tabulu datubāzē %s" msgid "Number of columns" msgstr "Rindu skaits vienā lapā" -#: libraries/display_export.lib.php:41 +#: libraries/display_export.lib.php:35 msgid "Could not load export plugins, please check your installation!" msgstr "" -#: libraries/display_export.lib.php:106 +#: libraries/display_export.lib.php:100 #, fuzzy, php-format #| msgid "Dump %s row(s) starting at record # %s" msgid "Dump %s row(s) starting at row # %s" msgstr "Saglabāt %s rindas, sākot ar %s." -#: libraries/display_export.lib.php:114 +#: libraries/display_export.lib.php:108 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:124 setup/lib/messages.inc.php:79 +#: libraries/display_export.lib.php:118 setup/lib/messages.inc.php:79 msgid "Save as file" msgstr "Saglabāt kā failu" -#: libraries/display_export.lib.php:133 +#: libraries/display_export.lib.php:127 #, php-format msgid "Save on server in %s directory" msgstr "Saglabāt uz servera direktorijā %s" -#: libraries/display_export.lib.php:141 setup/lib/messages.inc.php:87 +#: libraries/display_export.lib.php:135 setup/lib/messages.inc.php:87 msgid "Overwrite existing file(s)" msgstr "Pārrakstīt eksistējošos failus" -#: libraries/display_export.lib.php:147 +#: libraries/display_export.lib.php:141 msgid "File name template" msgstr "Faila nosaukuma šablons" -#: libraries/display_export.lib.php:151 +#: libraries/display_export.lib.php:145 #, fuzzy msgid "server name" msgstr "Lietotājvārds" -#: libraries/display_export.lib.php:154 +#: libraries/display_export.lib.php:148 msgid "database name" msgstr "" -#: libraries/display_export.lib.php:157 +#: libraries/display_export.lib.php:151 msgid "table name" msgstr "" -#: libraries/display_export.lib.php:161 +#: libraries/display_export.lib.php:155 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2080,39 +2057,39 @@ msgid "" "%3$s. Other text will be kept as is." msgstr "" -#: libraries/display_export.lib.php:202 +#: libraries/display_export.lib.php:196 msgid "remember template" msgstr "atcerēties šablonu" -#: libraries/display_export.lib.php:210 libraries/display_import.lib.php:177 +#: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 #: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 msgid "Character set of the file:" msgstr "Tabulas kodējums:" -#: libraries/display_export.lib.php:235 setup/lib/messages.inc.php:81 +#: libraries/display_export.lib.php:229 setup/lib/messages.inc.php:81 msgid "Compression" msgstr "Kompresija" -#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:196 -#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:529 -#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:574 -#: server_privileges.php:1867 server_processlist.php:74 +#: libraries/display_export.lib.php:234 libraries/display_import.lib.php:196 +#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:528 +#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:573 +#: server_privileges.php:1871 server_processlist.php:74 msgid "None" msgstr "Nav" -#: libraries/display_export.lib.php:247 +#: libraries/display_export.lib.php:241 msgid "\"zipped\"" msgstr "Arhivēts ar zip" -#: libraries/display_export.lib.php:253 +#: libraries/display_export.lib.php:247 msgid "\"gzipped\"" msgstr "Arhivēts ar gzip" -#: libraries/display_export.lib.php:259 +#: libraries/display_export.lib.php:253 msgid "\"bzipped\"" msgstr "Arhivēts ar bzip" -#: libraries/display_export.lib.php:274 libraries/export/sql.php:42 +#: libraries/display_export.lib.php:268 libraries/export/sql.php:42 #: libraries/import/sql.php:31 msgid "SQL compatibility mode" msgstr "" @@ -2147,12 +2124,12 @@ msgid "File uploads are not allowed on this server." msgstr "" #: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 -#: tbl_change.php:1024 +#: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "Direktoija, kuru norādijāt augšupielādei, nav pieejama" #: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 -#: tbl_change.php:1027 +#: tbl_change.php:925 msgid "web server upload directory" msgstr "web servera augšupielādes direktorija" @@ -2231,43 +2208,43 @@ msgstr "Papīra izmērs" msgid "Language" msgstr "" -#: libraries/display_tbl.lib.php:303 +#: libraries/display_tbl.lib.php:302 #, php-format msgid "%d is not valid row number." msgstr "" -#: libraries/display_tbl.lib.php:309 +#: libraries/display_tbl.lib.php:308 #, fuzzy #| msgid "row(s) starting from record #" msgid "row(s) starting from row #" msgstr "rindas sākot no" -#: libraries/display_tbl.lib.php:315 +#: libraries/display_tbl.lib.php:314 msgid "horizontal" msgstr "horizontālā" -#: libraries/display_tbl.lib.php:316 +#: libraries/display_tbl.lib.php:315 msgid "horizontal (rotated headers)" msgstr "horizontālā (pagriezti virsraksti)" -#: libraries/display_tbl.lib.php:317 +#: libraries/display_tbl.lib.php:316 msgid "vertical" msgstr "vertikālā" -#: libraries/display_tbl.lib.php:323 +#: libraries/display_tbl.lib.php:322 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "%s skatā un atkārtot virsrakstus ik pēc %s rindām" -#: libraries/display_tbl.lib.php:345 +#: libraries/display_tbl.lib.php:344 msgid "This operation could take a long time. Proceed anyway?" msgstr "" -#: libraries/display_tbl.lib.php:511 +#: libraries/display_tbl.lib.php:510 msgid "Sort by key" msgstr "Kārtot pēc atslēgas" -#: libraries/display_tbl.lib.php:554 libraries/export/codegen.php:38 +#: libraries/display_tbl.lib.php:553 libraries/export/codegen.php:38 #: libraries/export/csv.php:29 libraries/export/excel.php:34 #: libraries/export/htmlword.php:28 libraries/export/latex.php:32 #: libraries/export/mediawiki.php:21 libraries/export/ods.php:26 @@ -2277,101 +2254,101 @@ msgstr "Kārtot pēc atslēgas" #: libraries/export/xlsx.php:26 libraries/export/xml.php:23 #: libraries/export/yaml.php:27 libraries/import.lib.php:1114 #: libraries/import.lib.php:1136 libraries/import/csv.php:31 -#: libraries/import/docsql.php:33 libraries/import/ldi.php:46 +#: libraries/import/docsql.php:32 libraries/import/ldi.php:46 #: libraries/import/ods.php:30 libraries/import/sql.php:19 #: libraries/import/xls.php:25 libraries/import/xlsx.php:25 -#: libraries/import/xml.php:25 tbl_select.php:264 tbl_structure.php:752 +#: libraries/import/xml.php:25 tbl_select.php:263 tbl_structure.php:750 #, fuzzy msgid "Options" msgstr "Darbības" -#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:569 +#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:568 msgid "Partial Texts" msgstr "Daļēji teksti" -#: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:573 +#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:572 msgid "Full Texts" msgstr "Pilni teksti" -#: libraries/display_tbl.lib.php:586 +#: libraries/display_tbl.lib.php:585 #, fuzzy msgid "Relational key" msgstr "Relāciju shēma" -#: libraries/display_tbl.lib.php:587 +#: libraries/display_tbl.lib.php:586 #, fuzzy #| msgid "Relational schema" msgid "Relational display column" msgstr "Relāciju shēma" -#: libraries/display_tbl.lib.php:594 +#: libraries/display_tbl.lib.php:593 msgid "Show binary contents" msgstr "" -#: libraries/display_tbl.lib.php:596 +#: libraries/display_tbl.lib.php:595 msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:598 +#: libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "" -#: libraries/display_tbl.lib.php:606 pmd_general.php:140 tbl_change.php:312 -#: tbl_change.php:318 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:307 +#: tbl_change.php:313 msgid "Hide" msgstr "" -#: libraries/display_tbl.lib.php:606 libraries/relation.lib.php:122 -#: libraries/tbl_properties.inc.php:143 transformation_overview.php:46 +#: libraries/display_tbl.lib.php:605 libraries/relation.lib.php:117 +#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46 msgid "Browser transformation" msgstr "Pārlūkprogrammas transformācija" -#: libraries/display_tbl.lib.php:1125 libraries/display_tbl.lib.php:1129 -#: libraries/display_tbl.lib.php:1131 +#: libraries/display_tbl.lib.php:1124 libraries/display_tbl.lib.php:1128 +#: libraries/display_tbl.lib.php:1130 msgid "Execute bookmarked query" msgstr "Izpildīt iegrāmatoto vaicājumu" -#: libraries/display_tbl.lib.php:1144 libraries/display_tbl.lib.php:1156 +#: libraries/display_tbl.lib.php:1143 libraries/display_tbl.lib.php:1155 msgid "The row has been deleted" msgstr "Ieraksts tika dzēsts" -#: libraries/display_tbl.lib.php:1183 libraries/display_tbl.lib.php:2055 +#: libraries/display_tbl.lib.php:1182 libraries/display_tbl.lib.php:2014 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "Nogalināt" -#: libraries/display_tbl.lib.php:1933 +#: libraries/display_tbl.lib.php:1892 msgid "in query" msgstr "vaicājumā" -#: libraries/display_tbl.lib.php:1951 +#: libraries/display_tbl.lib.php:1910 msgid "Showing rows" msgstr "Parādu rindas" -#: libraries/display_tbl.lib.php:1961 +#: libraries/display_tbl.lib.php:1920 msgid "total" msgstr "kopā" -#: libraries/display_tbl.lib.php:1969 sql.php:523 +#: libraries/display_tbl.lib.php:1928 sql.php:522 #, php-format msgid "Query took %01.4f sec" msgstr "Vaicājums ilga %01.4f s" -#: libraries/display_tbl.lib.php:2088 libraries/mult_submits.inc.php:112 -#: querywindow.php:115 querywindow.php:119 querywindow.php:122 -#: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:469 +#: libraries/display_tbl.lib.php:2047 libraries/mult_submits.inc.php:112 +#: querywindow.php:114 querywindow.php:118 querywindow.php:121 +#: tbl_structure.php:23 tbl_structure.php:148 tbl_structure.php:467 msgid "Change" msgstr "Labot" -#: libraries/display_tbl.lib.php:2158 +#: libraries/display_tbl.lib.php:2117 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2186 +#: libraries/display_tbl.lib.php:2145 msgid "Print view (with full texts)" msgstr "Drukas skats (ar pilniem tekstiem)" -#: libraries/display_tbl.lib.php:2359 +#: libraries/display_tbl.lib.php:2318 msgid "Link not found" msgstr "Links nav atrasts" @@ -2425,9 +2402,9 @@ msgstr "InnoDB statuss" msgid "Buffer Pool Usage" msgstr "" -#: libraries/engines/innodb.lib.php:168 server_databases.php:136 -#: server_databases.php:304 server_status.php:524 server_status.php:585 -#: server_status.php:606 tbl_printview.php:349 tbl_structure.php:695 +#: libraries/engines/innodb.lib.php:168 server_databases.php:134 +#: server_databases.php:302 server_status.php:524 server_status.php:585 +#: server_status.php:606 tbl_printview.php:348 tbl_structure.php:693 msgid "Total" msgstr "Kopā" @@ -2550,6 +2527,78 @@ msgid "" "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." msgstr "" +#: libraries/engines/pbms.lib.php:31 +msgid "Garbage Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:32 +msgid "The percentage of garbage in a repository file before it is compacted." +msgstr "" + +#: libraries/engines/pbms.lib.php:36 libraries/replication_gui.lib.php:69 +#: server_synchronize.php:1161 +#, fuzzy +msgid "Port" +msgstr "Kārtošana" + +#: libraries/engines/pbms.lib.php:37 +msgid "" +"The port for the PBMS stream-based communications. Setting this value to 0 " +"will disable HTTP communication with the daemon." +msgstr "" + +#: libraries/engines/pbms.lib.php:41 +msgid "Repository Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:42 +msgid "" +"The maximum size of a BLOB repository file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:46 +msgid "Temp Blob Timeout" +msgstr "" + +#: libraries/engines/pbms.lib.php:47 +msgid "" +"The timeout, in seconds, for temporary BLOBs. Uploaded BLOB data is removed " +"after this time, unless they are referenced by a record in the database." +msgstr "" + +#: libraries/engines/pbms.lib.php:51 +msgid "Temp Log Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:52 +msgid "" +"The maximum size of a temporary BLOB log file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:56 +msgid "Max Keep Alive" +msgstr "" + +#: libraries/engines/pbms.lib.php:57 +msgid "" +"The timeout for inactive connection with the keep-alive flag set. After this " +"time the connection will be closed. The time-out is in milliseconds (1/1000)." +msgstr "" + +#: libraries/engines/pbms.lib.php:61 +msgid "Metadata Headers" +msgstr "" + +#: libraries/engines/pbms.lib.php:62 +msgid "" +"A \":\" delimited list of metadata headers to be used to initialize the " +"pbms_metadata_header table when a database is created." +msgstr "" + #: libraries/engines/pbxt.lib.php:22 msgid "Index cache size" msgstr "" @@ -2673,7 +2722,7 @@ msgid "" msgstr "" #: libraries/export/codegen.php:36 setup/lib/messages.inc.php:85 -#: tbl_printview.php:374 tbl_structure.php:736 +#: tbl_printview.php:373 tbl_structure.php:734 msgid "Format" msgstr "Formats" @@ -2744,9 +2793,9 @@ msgstr "" #: libraries/export/htmlword.php:23 libraries/export/latex.php:59 #: libraries/export/latex.php:205 libraries/export/odt.php:47 #: libraries/export/sql.php:105 libraries/export/sql.php:865 -#: libraries/export/texytext.php:27 server_databases.php:126 -#: server_privileges.php:576 server_replication.php:315 tbl_printview.php:315 -#: tbl_structure.php:664 +#: libraries/export/texytext.php:27 server_databases.php:124 +#: server_privileges.php:575 server_replication.php:314 tbl_printview.php:314 +#: tbl_structure.php:662 msgid "Data" msgstr "Dati" @@ -2797,13 +2846,13 @@ msgid "Label key" msgstr "Etiķetes atslēga" #: libraries/export/latex.php:46 libraries/export/odt.php:34 -#: libraries/export/sql.php:90 tbl_relation.php:398 +#: libraries/export/sql.php:90 tbl_relation.php:396 msgid "Relations" msgstr "Relācijas" #: libraries/export/latex.php:52 libraries/export/odt.php:40 #: libraries/export/odt.php:317 libraries/export/sql.php:94 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "MIME tips" @@ -2811,10 +2860,10 @@ msgstr "MIME tips" #: libraries/export/xml.php:101 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1529 server_privileges.php:2061 -#: server_processlist.php:54 server_synchronize.php:1158 +#: libraries/replication_gui.lib.php:331 server_privileges.php:730 +#: server_privileges.php:733 server_privileges.php:789 +#: server_privileges.php:1533 server_privileges.php:2065 +#: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "Hosts" @@ -3008,8 +3057,8 @@ msgstr "" msgid "Export contents" msgstr "" -#: libraries/footer.inc.php:182 libraries/footer.inc.php:193 -#: libraries/footer.inc.php:196 +#: libraries/footer.inc.php:180 libraries/footer.inc.php:191 +#: libraries/footer.inc.php:194 msgid "Open new phpMyAdmin window" msgstr "" @@ -3026,7 +3075,7 @@ msgstr "SQL rezultāts" msgid "Generated by" msgstr "Uzģenerēja" -#: libraries/import.lib.php:151 sql.php:519 tbl_change.php:180 +#: libraries/import.lib.php:151 sql.php:518 tbl_change.php:175 #: 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)." @@ -3084,7 +3133,7 @@ msgstr "" msgid "Column names in first row" msgstr "" -#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:501 +#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:500 #: view_create.php:147 msgid "Column names" msgstr "Kolonnu nosaukumi" @@ -3110,12 +3159,12 @@ msgstr "" msgid "Invalid column count in CSV input on line %d." msgstr "" -#: libraries/import/docsql.php:28 +#: libraries/import/docsql.php:27 msgid "DocSQL" msgstr "" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 -#: server_synchronize.php:427 server_synchronize.php:870 +#: libraries/import/docsql.php:30 libraries/tbl_properties.inc.php:616 +#: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "" @@ -3171,26 +3220,26 @@ msgstr "Nav" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:512 -#: tbl_structure.php:28 tbl_structure.php:152 tbl_structure.php:156 -#: tbl_structure.php:472 +#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:511 +#: tbl_structure.php:27 tbl_structure.php:151 tbl_structure.php:155 +#: tbl_structure.php:470 msgid "Primary" msgstr "Primārā" #: libraries/mult_submits.inc.php:97 libraries/tbl_properties.inc.php:115 -#: libraries/tbl_properties.inc.php:524 tbl_printview.php:324 -#: tbl_structure.php:30 tbl_structure.php:153 tbl_structure.php:157 -#: tbl_structure.php:474 tbl_structure.php:672 +#: libraries/tbl_properties.inc.php:523 tbl_printview.php:323 +#: tbl_structure.php:29 tbl_structure.php:152 tbl_structure.php:156 +#: tbl_structure.php:472 tbl_structure.php:670 msgid "Index" msgstr "Indekss" -#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:530 -#: tbl_structure.php:34 tbl_structure.php:155 tbl_structure.php:159 -#: tbl_structure.php:477 +#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:529 +#: tbl_structure.php:33 tbl_structure.php:154 tbl_structure.php:158 +#: tbl_structure.php:475 msgid "Fulltext" msgstr "Pilni teksti" -#: libraries/mult_submits.inc.php:434 tbl_replace.php:330 +#: libraries/mult_submits.inc.php:433 tbl_replace.php:330 msgid "No change" msgstr "Netika labots" @@ -3198,190 +3247,190 @@ msgstr "Netika labots" msgid "Charset" msgstr "Kodējums" -#: libraries/mysql_charsets.lib.php:210 libraries/mysql_charsets.lib.php:411 -#: tbl_change.php:515 +#: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 +#: tbl_change.php:510 msgid "Binary" msgstr "Binārais" -#: libraries/mysql_charsets.lib.php:222 +#: libraries/mysql_charsets.lib.php:214 msgid "Bulgarian" msgstr "Bulgāru" -#: libraries/mysql_charsets.lib.php:226 libraries/mysql_charsets.lib.php:351 +#: libraries/mysql_charsets.lib.php:218 libraries/mysql_charsets.lib.php:343 msgid "Simplified Chinese" msgstr "Vienkāršota ķīniešu" -#: libraries/mysql_charsets.lib.php:228 libraries/mysql_charsets.lib.php:371 +#: libraries/mysql_charsets.lib.php:220 libraries/mysql_charsets.lib.php:363 msgid "Traditional Chinese" msgstr "Tradicionāla ķīniešu" -#: libraries/mysql_charsets.lib.php:232 libraries/mysql_charsets.lib.php:418 +#: libraries/mysql_charsets.lib.php:224 libraries/mysql_charsets.lib.php:410 msgid "case-insensitive" msgstr "reģistrnejūtīgs" -#: libraries/mysql_charsets.lib.php:235 libraries/mysql_charsets.lib.php:420 +#: libraries/mysql_charsets.lib.php:227 libraries/mysql_charsets.lib.php:412 msgid "case-sensitive" msgstr "reģistrjūtīgs" -#: libraries/mysql_charsets.lib.php:238 +#: libraries/mysql_charsets.lib.php:230 msgid "Croatian" msgstr "Horvātu" -#: libraries/mysql_charsets.lib.php:241 +#: libraries/mysql_charsets.lib.php:233 msgid "Czech" msgstr "Čehu" -#: libraries/mysql_charsets.lib.php:244 +#: libraries/mysql_charsets.lib.php:236 msgid "Danish" msgstr "Dāņu" -#: libraries/mysql_charsets.lib.php:247 +#: libraries/mysql_charsets.lib.php:239 msgid "English" msgstr "Angļu" -#: libraries/mysql_charsets.lib.php:250 +#: libraries/mysql_charsets.lib.php:242 msgid "Esperanto" msgstr "" -#: libraries/mysql_charsets.lib.php:253 +#: libraries/mysql_charsets.lib.php:245 msgid "Estonian" msgstr "Igauņu" -#: libraries/mysql_charsets.lib.php:256 libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:248 libraries/mysql_charsets.lib.php:251 msgid "German" msgstr "Vācu" -#: libraries/mysql_charsets.lib.php:256 +#: libraries/mysql_charsets.lib.php:248 msgid "dictionary" msgstr "vārdnīca" -#: libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:251 msgid "phone book" msgstr "telefonu grāmata" -#: libraries/mysql_charsets.lib.php:262 +#: libraries/mysql_charsets.lib.php:254 msgid "Hungarian" msgstr "Ungāru" -#: libraries/mysql_charsets.lib.php:265 +#: libraries/mysql_charsets.lib.php:257 msgid "Icelandic" msgstr "Islandiešu" -#: libraries/mysql_charsets.lib.php:268 libraries/mysql_charsets.lib.php:358 +#: libraries/mysql_charsets.lib.php:260 libraries/mysql_charsets.lib.php:350 msgid "Japanese" msgstr "Japāņu" -#: libraries/mysql_charsets.lib.php:271 +#: libraries/mysql_charsets.lib.php:263 msgid "Latvian" msgstr "Latviešu" -#: libraries/mysql_charsets.lib.php:274 +#: libraries/mysql_charsets.lib.php:266 msgid "Lithuanian" msgstr "Lietuviešu" -#: libraries/mysql_charsets.lib.php:277 libraries/mysql_charsets.lib.php:380 +#: libraries/mysql_charsets.lib.php:269 libraries/mysql_charsets.lib.php:372 msgid "Korean" msgstr "Korejiešu" -#: libraries/mysql_charsets.lib.php:280 +#: libraries/mysql_charsets.lib.php:272 msgid "Persian" msgstr "Persiešu" -#: libraries/mysql_charsets.lib.php:283 +#: libraries/mysql_charsets.lib.php:275 msgid "Polish" msgstr "Poļu" -#: libraries/mysql_charsets.lib.php:286 libraries/mysql_charsets.lib.php:334 +#: libraries/mysql_charsets.lib.php:278 libraries/mysql_charsets.lib.php:326 msgid "West European" msgstr "Rietumeiropas" -#: libraries/mysql_charsets.lib.php:289 +#: libraries/mysql_charsets.lib.php:281 msgid "Romanian" msgstr "Rumāņu" -#: libraries/mysql_charsets.lib.php:292 +#: libraries/mysql_charsets.lib.php:284 msgid "Slovak" msgstr "Slovāku" -#: libraries/mysql_charsets.lib.php:295 +#: libraries/mysql_charsets.lib.php:287 msgid "Slovenian" msgstr "Slovēņu" -#: libraries/mysql_charsets.lib.php:298 +#: libraries/mysql_charsets.lib.php:290 msgid "Spanish" msgstr "Spāņu" -#: libraries/mysql_charsets.lib.php:301 +#: libraries/mysql_charsets.lib.php:293 msgid "Traditional Spanish" msgstr "Tradicionālā spāņu" -#: libraries/mysql_charsets.lib.php:304 libraries/mysql_charsets.lib.php:401 +#: libraries/mysql_charsets.lib.php:296 libraries/mysql_charsets.lib.php:393 msgid "Swedish" msgstr "Zviedru" -#: libraries/mysql_charsets.lib.php:307 libraries/mysql_charsets.lib.php:404 +#: libraries/mysql_charsets.lib.php:299 libraries/mysql_charsets.lib.php:396 msgid "Thai" msgstr "Taizemiešu" -#: libraries/mysql_charsets.lib.php:310 libraries/mysql_charsets.lib.php:398 +#: libraries/mysql_charsets.lib.php:302 libraries/mysql_charsets.lib.php:390 msgid "Turkish" msgstr "Turku" -#: libraries/mysql_charsets.lib.php:313 libraries/mysql_charsets.lib.php:395 +#: libraries/mysql_charsets.lib.php:305 libraries/mysql_charsets.lib.php:387 msgid "Ukrainian" msgstr "Ukraiņu" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 msgid "Unicode" msgstr "Unikods" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 -#: libraries/mysql_charsets.lib.php:334 libraries/mysql_charsets.lib.php:341 -#: libraries/mysql_charsets.lib.php:363 libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 +#: libraries/mysql_charsets.lib.php:326 libraries/mysql_charsets.lib.php:333 +#: libraries/mysql_charsets.lib.php:355 libraries/mysql_charsets.lib.php:366 msgid "multilingual" msgstr "daudzvalodu" -#: libraries/mysql_charsets.lib.php:341 +#: libraries/mysql_charsets.lib.php:333 msgid "Central European" msgstr "Centrāleiropas" -#: libraries/mysql_charsets.lib.php:346 +#: libraries/mysql_charsets.lib.php:338 msgid "Russian" msgstr "Krievu" -#: libraries/mysql_charsets.lib.php:363 +#: libraries/mysql_charsets.lib.php:355 msgid "Baltic" msgstr "Baltijas" -#: libraries/mysql_charsets.lib.php:368 +#: libraries/mysql_charsets.lib.php:360 msgid "Armenian" msgstr "Armēņu" -#: libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:366 msgid "Cyrillic" msgstr "Kirilisks" -#: libraries/mysql_charsets.lib.php:377 +#: libraries/mysql_charsets.lib.php:369 msgid "Arabic" msgstr "Arābu" -#: libraries/mysql_charsets.lib.php:383 +#: libraries/mysql_charsets.lib.php:375 msgid "Hebrew" msgstr "Ebreju" -#: libraries/mysql_charsets.lib.php:386 +#: libraries/mysql_charsets.lib.php:378 msgid "Georgian" msgstr "Gruzīnu" -#: libraries/mysql_charsets.lib.php:389 +#: libraries/mysql_charsets.lib.php:381 msgid "Greek" msgstr "Grieķu" -#: libraries/mysql_charsets.lib.php:392 +#: libraries/mysql_charsets.lib.php:384 msgid "Czech-Slovak" msgstr "Čehu-Slovāku" -#: libraries/mysql_charsets.lib.php:407 libraries/mysql_charsets.lib.php:414 +#: libraries/mysql_charsets.lib.php:399 libraries/mysql_charsets.lib.php:406 msgid "unknown" msgstr "nazināma" @@ -3407,68 +3456,68 @@ msgstr "Vaicājuma logs" msgid "This format has no options" msgstr "Šim formātam nav opciju" -#: libraries/relation.lib.php:82 +#: libraries/relation.lib.php:77 msgid "not OK" msgstr "nav OK" -#: libraries/relation.lib.php:86 pmd_general.php:339 +#: libraries/relation.lib.php:81 pmd_general.php:339 msgid "OK" msgstr "Labi" -#: libraries/relation.lib.php:87 +#: libraries/relation.lib.php:82 msgid "Enabled" msgstr "Ieslēgts" -#: libraries/relation.lib.php:110 +#: libraries/relation.lib.php:105 msgid "Display Features" msgstr "Rādīt iespējas" -#: libraries/relation.lib.php:116 +#: libraries/relation.lib.php:111 msgid "Creation of PDFs" msgstr "PDF failu izveide" -#: libraries/relation.lib.php:120 +#: libraries/relation.lib.php:115 msgid "Displaying Column Comments" msgstr "Rādu kolonnu komentārus" -#: libraries/relation.lib.php:125 +#: libraries/relation.lib.php:120 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "Lūdzu skatieties dokumentāciju par to, kā atjaunot 'Column_comments' tabulu" -#: libraries/relation.lib.php:130 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 msgid "Bookmarked SQL query" msgstr "Saglabātie SQL vaicājumi" -#: libraries/relation.lib.php:134 querywindow.php:99 querywindow.php:207 +#: libraries/relation.lib.php:129 querywindow.php:98 querywindow.php:205 msgid "SQL history" msgstr "SQL vēsture" -#: libraries/relation.lib.php:146 +#: libraries/relation.lib.php:141 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:148 +#: libraries/relation.lib.php:143 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" -#: libraries/relation.lib.php:149 +#: libraries/relation.lib.php:144 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:150 +#: libraries/relation.lib.php:145 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:151 +#: libraries/relation.lib.php:146 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1158 +#: libraries/relation.lib.php:1153 msgid "no description" msgstr "Bez apraksta" @@ -3476,7 +3525,7 @@ msgstr "Bez apraksta" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:53 server_replication.php:346 +#: libraries/replication_gui.lib.php:53 server_replication.php:345 msgid "Change or reconfigure master server" msgstr "" @@ -3488,17 +3537,12 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:711 -#: server_privileges.php:714 server_privileges.php:721 -#: server_synchronize.php:1170 +#: libraries/replication_gui.lib.php:261 server_privileges.php:710 +#: server_privileges.php:713 server_privileges.php:720 +#: server_synchronize.php:1169 msgid "User name" msgstr "Lietotājvārds" -#: libraries/replication_gui.lib.php:69 server_synchronize.php:1162 -#, fuzzy -msgid "Port" -msgstr "Kārtošana" - #: libraries/replication_gui.lib.php:105 msgid "Master status" msgstr "" @@ -3513,8 +3557,8 @@ msgid "Variable" msgstr "Mainīgais" #: libraries/replication_gui.lib.php:117 server_status.php:737 -#: tbl_change.php:322 tbl_printview.php:368 tbl_select.php:137 -#: tbl_structure.php:728 +#: tbl_change.php:317 tbl_printview.php:367 tbl_select.php:136 +#: tbl_structure.php:726 msgid "Value" msgstr "Vērtība" @@ -3528,38 +3572,38 @@ msgid "" "this list." msgstr "" -#: libraries/replication_gui.lib.php:242 server_replication.php:193 +#: libraries/replication_gui.lib.php:242 server_replication.php:192 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:256 server_privileges.php:716 +#: libraries/replication_gui.lib.php:256 server_privileges.php:715 msgid "Any user" msgstr "Jebkurš lietotājs" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1920 server_privileges.php:1950 +#: libraries/replication_gui.lib.php:348 server_privileges.php:716 +#: server_privileges.php:783 server_privileges.php:807 +#: server_privileges.php:1924 server_privileges.php:1954 msgid "Use text field" msgstr "Lietot teksta lauku" -#: libraries/replication_gui.lib.php:304 server_privileges.php:764 +#: libraries/replication_gui.lib.php:304 server_privileges.php:763 msgid "Any host" msgstr "Jebkurš hosts" -#: libraries/replication_gui.lib.php:308 server_privileges.php:768 +#: libraries/replication_gui.lib.php:308 server_privileges.php:767 msgid "Local" msgstr "Lokāls" -#: libraries/replication_gui.lib.php:314 server_privileges.php:773 +#: libraries/replication_gui.lib.php:314 server_privileges.php:772 msgid "This Host" msgstr "Šis hosts" -#: libraries/replication_gui.lib.php:320 server_privileges.php:779 +#: libraries/replication_gui.lib.php:320 server_privileges.php:778 msgid "Use Host Table" msgstr "Lietot hostu tabulu" -#: libraries/replication_gui.lib.php:333 server_privileges.php:792 +#: libraries/replication_gui.lib.php:333 server_privileges.php:791 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3586,8 +3630,8 @@ msgstr "" msgid "Servers" msgstr "Serveris" -#: libraries/server_links.inc.php:52 server_engines.php:111 -#: server_engines.php:115 server_status.php:414 test/theme.php:104 +#: libraries/server_links.inc.php:52 server_engines.php:125 +#: server_engines.php:129 server_status.php:414 test/theme.php:104 msgid "Variables" msgstr "Mainīgie" @@ -3608,12 +3652,12 @@ msgstr "Binārais log-fails" msgid "Processes" msgstr "Procesi" -#: libraries/server_links.inc.php:91 server_synchronize.php:1091 -#: server_synchronize.php:1099 +#: libraries/server_links.inc.php:91 server_synchronize.php:1090 +#: server_synchronize.php:1098 msgid "Synchronize" msgstr "" -#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1109 +#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1108 #, fuzzy msgid "Source database" msgstr "Meklēt datubāzē" @@ -3632,7 +3676,7 @@ msgstr "" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1111 +#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1110 #, fuzzy msgid "Target database" msgstr "Meklēt datubāzē" @@ -3653,11 +3697,11 @@ msgstr "Izpildīt SQL vaicājumu(s) uz datubāzes %s" msgid "Columns" msgstr "Kolonnu nosaukumi" -#: libraries/sql_query_form.lib.php:342 sql.php:664 sql.php:665 sql.php:682 +#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "Saglabāt šo SQL vaicājumu" -#: libraries/sql_query_form.lib.php:349 sql.php:676 +#: libraries/sql_query_form.lib.php:349 sql.php:669 msgid "Let every user access this bookmark" msgstr "Dot ikvienam lietotājam pieeju šai grāmatzīmei" @@ -3753,12 +3797,12 @@ 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/tbl_links.inc.php:106 libraries/tbl_links.inc.php:139 -#: libraries/tbl_links.inc.php:140 +#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 +#: libraries/tbl_links.inc.php:139 msgid "Table seems to be empty!" msgstr "" -#: libraries/tbl_links.inc.php:148 +#: libraries/tbl_links.inc.php:147 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" @@ -3793,12 +3837,12 @@ msgstr "" "Noklusētajām vērtībām, lūdzu ievadiet tikai pašu vertību, bez izsargāšanās " "ar atpakaļējo slīpsvītru vai pēdiņām, lietojot šo formatu: a" -#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1263 -#: pdf_schema.php:1284 tbl_printview.php:142 tbl_structure.php:179 +#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1262 +#: pdf_schema.php:1283 tbl_printview.php:141 tbl_structure.php:178 msgid "Attributes" msgstr "Atribūti" -#: libraries/tbl_properties.inc.php:136 +#: libraries/tbl_properties.inc.php:135 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -3807,11 +3851,11 @@ msgstr "" "Lai iegūtu pieejamo transformāciju opcijas un to MIME tipu transformācijas, " "uzklikšķiniet uz %stransformāciju apraksti%s" -#: libraries/tbl_properties.inc.php:144 +#: libraries/tbl_properties.inc.php:143 msgid "Transformation options" msgstr "Transformācijas opcijas" -#: libraries/tbl_properties.inc.php:145 +#: libraries/tbl_properties.inc.php:144 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
                            If you ever need to put a backslash (\"\\\") or a single " @@ -3823,47 +3867,47 @@ msgstr "" "vienkāršā pēdiņa (\"'\") starp šīm vērtībām, lieciet tās priekšā vēl vienu " "atpakaļējo slīpsvītru (piemēram '\\\\xyz' or 'a\\'b')." -#: libraries/tbl_properties.inc.php:392 +#: libraries/tbl_properties.inc.php:391 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "Nav" -#: libraries/tbl_properties.inc.php:393 +#: libraries/tbl_properties.inc.php:392 msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:579 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:578 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
                            Please ask the " "author what %s does." msgstr "Šai transformācijai nav apraksta.
                            Jautājiet autoram, ko %s dara." -#: libraries/tbl_properties.inc.php:725 server_engines.php:57 -#: tbl_operations.php:354 +#: libraries/tbl_properties.inc.php:724 server_engines.php:56 +#: tbl_operations.php:352 msgid "Storage Engine" msgstr "" -#: libraries/tbl_properties.inc.php:754 +#: libraries/tbl_properties.inc.php:753 msgid "PARTITION definition" msgstr "" -#: libraries/tbl_properties.inc.php:775 pdf_pages.php:502 +#: libraries/tbl_properties.inc.php:774 pdf_pages.php:501 #: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214 -#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1124 tbl_indexes.php:247 -#: tbl_relation.php:565 +#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1022 tbl_indexes.php:246 +#: tbl_relation.php:563 msgid "Save" msgstr "Saglabāt" -#: libraries/tbl_properties.inc.php:779 tbl_structure.php:541 +#: libraries/tbl_properties.inc.php:778 tbl_structure.php:539 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "Pievienot %s lauku(s)" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:535 +#: libraries/tbl_properties.inc.php:782 tbl_structure.php:533 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." @@ -4047,8 +4091,8 @@ msgstr "" msgid "Custom color" msgstr "" -#: main.php:162 pdf_pages.php:362 setup/lib/FormDisplay.tpl.php:216 -#: tbl_change.php:1173 +#: main.php:162 pdf_pages.php:361 setup/lib/FormDisplay.tpl.php:216 +#: tbl_change.php:1071 msgid "Reset" msgstr "Atcelt" @@ -4056,8 +4100,8 @@ msgstr "Atcelt" msgid "Protocol version" msgstr "" -#: main.php:188 server_privileges.php:1381 server_privileges.php:1528 -#: server_privileges.php:1642 server_privileges.php:2060 +#: main.php:188 server_privileges.php:1385 server_privileges.php:1532 +#: server_privileges.php:1646 server_privileges.php:2064 #: server_processlist.php:53 msgid "User" msgstr "Lietotājs" @@ -4136,21 +4180,30 @@ msgid "" "has been configured." msgstr "" -#: main.php:330 +#: main.php:314 +#, php-format +msgid "" +"The additional features for working with linked tables have been " +"deactivated. To find out why click %shere%s." +msgstr "" +"Papildiespējas darbam ar saistītām tabulām tika izslēgtas. Lai uzzinātu " +"kāpēc, klikškiniet %sšeit%s." + +#: main.php:329 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:345 +#: main.php:344 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: main.php:357 +#: main.php:356 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -4161,68 +4214,68 @@ msgstr "" msgid "Reload navigation frame" msgstr "" -#: navigation.php:204 server_databases.php:370 server_synchronize.php:1190 +#: navigation.php:203 server_databases.php:368 server_synchronize.php:1189 msgid "No databases" msgstr "Nav datubāzu" -#: navigation.php:298 +#: navigation.php:297 msgid "Filter" msgstr "" -#: navigation.php:299 setup/frames/index.inc.php:218 +#: navigation.php:298 setup/frames/index.inc.php:218 #: setup/lib/messages.inc.php:41 #, fuzzy msgid "Clear" msgstr "Kalendārs" -#: navigation.php:330 navigation.php:331 +#: navigation.php:329 navigation.php:330 #, fuzzy msgctxt "short form" msgid "Create table" msgstr "Izveidot jaunu lapu" -#: navigation.php:333 navigation.php:495 +#: navigation.php:332 navigation.php:494 msgid "Please select a database" msgstr "Lūdzu izvēlieties datubāzi" -#: pdf_pages.php:40 pdf_pages.php:46 pdf_pages.php:52 pdf_pages.php:57 +#: pdf_pages.php:39 pdf_pages.php:45 pdf_pages.php:51 pdf_pages.php:56 #, php-format msgid "%s table not found or not set in %s" msgstr "Tabula %s nav atrasta vai nav atzīmeta iekš %s" -#: pdf_pages.php:265 +#: pdf_pages.php:264 msgid "Please choose a page to edit" msgstr "Izvēlieties lapu redigēšanai" -#: pdf_pages.php:303 pmd_pdf.php:113 +#: pdf_pages.php:302 pmd_pdf.php:111 msgid "Create a page" msgstr "Izveidot jaunu lapu" -#: pdf_pages.php:309 +#: pdf_pages.php:308 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Lapas numurs:" -#: pdf_pages.php:313 +#: pdf_pages.php:312 #, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "Automātiskais izvietojums" -#: pdf_pages.php:315 +#: pdf_pages.php:314 msgid "Internal relations" msgstr "Iekšējās relācijas" -#: pdf_pages.php:338 +#: pdf_pages.php:337 msgid "Select Tables" msgstr "Izvēlieties tabulas" -#: pdf_pages.php:361 +#: pdf_pages.php:360 msgid "Toggle scratchboard" msgstr "parādīt/noslēpt piezīmju tafeli" -#: pdf_pages.php:524 +#: pdf_pages.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -4230,37 +4283,37 @@ msgstr "" "Tekošajā lapā ir atsauces uz tabulām, kas vairs neeksistē. Vai Jūs gribat " "dzēst šīs atsauces?" -#: pdf_schema.php:635 +#: pdf_schema.php:634 #, fuzzy, php-format #| msgid "The \"%s\" table doesn't exist!" msgid "The %s table doesn't exist!" msgstr "Tabula \"%s\" neeksistē!" -#: pdf_schema.php:671 +#: pdf_schema.php:670 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Lūdzu konfigurējiet koordinātes tabulai %s" -#: pdf_schema.php:994 +#: pdf_schema.php:993 #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" msgstr "Datubāzes \"%s\" shēma, %s. lapa" -#: pdf_schema.php:1012 +#: pdf_schema.php:1011 msgid "No tables" msgstr "Nav tabulu" -#: pdf_schema.php:1031 pdf_schema.php:1140 +#: pdf_schema.php:1030 pdf_schema.php:1139 msgid "Relational schema" msgstr "Relāciju shēma" -#: pdf_schema.php:1115 +#: pdf_schema.php:1114 msgid "Table of contents" msgstr "Satura rādītājs" -#: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:145 -#: tbl_structure.php:182 tbl_tracking.php:277 +#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 +#: tbl_structure.php:181 tbl_tracking.php:272 msgid "Extra" msgstr "Ekstras" @@ -4272,7 +4325,7 @@ msgstr "" msgid "Save position" msgstr "" -#: pmd_general.php:70 server_synchronize.php:428 server_synchronize.php:871 +#: pmd_general.php:70 server_synchronize.php:427 server_synchronize.php:870 #, fuzzy msgid "Create table" msgstr "Izveidot jaunu lapu" @@ -4345,32 +4398,32 @@ msgid "" "appropriate column name." msgstr "" -#: pmd_pdf.php:62 +#: pmd_pdf.php:60 #, fuzzy msgid "Page has been created" msgstr "Tabula %s tika izdzēsta" -#: pmd_pdf.php:64 +#: pmd_pdf.php:62 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:84 +#: pmd_pdf.php:82 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:88 +#: pmd_pdf.php:86 msgid "recommended" msgstr "" -#: pmd_pdf.php:93 +#: pmd_pdf.php:91 msgid "to/from page" msgstr "" -#: querywindow.php:94 +#: querywindow.php:93 msgid "Import files" msgstr "Importēt failus" -#: querywindow.php:105 +#: querywindow.php:104 msgid "All" msgstr "Visi" @@ -4417,65 +4470,65 @@ msgstr "Informācija" msgid "Character Sets and Collations" msgstr "Rakstzīmju kodējumi un izkārtojumi" -#: server_databases.php:51 +#: server_databases.php:49 msgid "No databases selected." msgstr "Datubāze nav izvēlēta." -#: server_databases.php:62 +#: server_databases.php:60 #, php-format msgid "%s databases have been dropped successfully." msgstr "%s datubāzes tika veiksmīgi dzēstas." -#: server_databases.php:87 +#: server_databases.php:85 msgid "Databases statistics" msgstr "Datubāzu statistika" -#: server_databases.php:116 server_status.php:370 +#: server_databases.php:114 server_status.php:370 #: setup/lib/messages.inc.php:114 msgid "Tables" msgstr "Tabulas" -#: server_databases.php:194 server_replication.php:180 -#: server_replication.php:208 +#: server_databases.php:192 server_replication.php:179 +#: server_replication.php:207 msgid "Master replication" msgstr "" -#: server_databases.php:196 server_replication.php:247 +#: server_databases.php:194 server_replication.php:246 msgid "Slave replication" msgstr "" -#: server_databases.php:229 +#: server_databases.php:227 #, fuzzy msgid "Jump to database" msgstr "Nav datubāzu" -#: server_databases.php:266 +#: server_databases.php:264 msgid "Not replicated" msgstr "" -#: server_databases.php:272 +#: server_databases.php:270 #, fuzzy msgid "Replicated" msgstr "Relācijas" -#: server_databases.php:288 +#: server_databases.php:286 #, php-format msgid "Check privileges for database "%s"." msgstr "Pārbaudīt privilēģijas uz datubāzi "%s"." -#: server_databases.php:292 server_databases.php:293 +#: server_databases.php:290 server_databases.php:291 msgid "Check Privileges" msgstr "Pārbaudīt privilēģijas" -#: server_databases.php:357 server_databases.php:358 +#: server_databases.php:355 server_databases.php:356 msgid "Enable Statistics" msgstr "Ieslēgt statistiku" -#: server_databases.php:361 server_databases.php:362 +#: server_databases.php:359 server_databases.php:360 msgid "Disable Statistics" msgstr "Izslēgt statistiku" -#: server_databases.php:365 +#: server_databases.php:363 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -4483,126 +4536,126 @@ msgstr "" "Piezīme: Datubāzes statistikas ieslēgšana šeit var izsaukt palielināto datu " "apmaiņu starp webserveri un MySQL serveri." -#: server_engines.php:48 +#: server_engines.php:47 msgid "Storage Engines" msgstr "" -#: server_export.php:20 +#: server_export.php:18 msgid "View dump (schema) of databases" msgstr "Apskatīt datubāzu dampu (shēmu)" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:23 server_privileges.php:265 msgid "Includes all privileges except GRANT." msgstr "Iekļauj visas privilēģijas, izņemot GRANT." -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:24 server_privileges.php:191 +#: server_privileges.php:514 msgid "Allows altering the structure of existing tables." msgstr "Ļauj mainīt esošo tabulu struktūru." -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:25 server_privileges.php:207 +#: server_privileges.php:520 #, fuzzy msgid "Allows altering and dropping stored routines." msgstr "Ļauj veidot un dzēst indeksus." -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:26 server_privileges.php:183 +#: server_privileges.php:513 msgid "Allows creating new databases and tables." msgstr "Ļauj veidot jaunas datubāzes un tabulas." -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:27 server_privileges.php:206 +#: server_privileges.php:519 #, fuzzy msgid "Allows creating stored routines." msgstr "Ļauj veidot jaunas tabulas." -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:513 msgid "Allows creating new tables." msgstr "Ļauj veidot jaunas tabulas." -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:29 server_privileges.php:194 +#: server_privileges.php:517 msgid "Allows creating temporary tables." msgstr "Ļauj veidot pagaidu tabulas." -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:30 server_privileges.php:208 +#: server_privileges.php:553 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: server_privileges.php:32 server_privileges.php:199 -#: server_privileges.php:203 server_privileges.php:526 -#: server_privileges.php:530 +#: server_privileges.php:31 server_privileges.php:198 +#: server_privileges.php:202 server_privileges.php:525 +#: server_privileges.php:529 #, fuzzy msgid "Allows creating new views." msgstr "Ļauj veidot jaunas tabulas." -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:32 server_privileges.php:182 +#: server_privileges.php:505 msgid "Allows deleting data." msgstr "Ļauj dzēst datus." -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:33 server_privileges.php:184 +#: server_privileges.php:516 msgid "Allows dropping databases and tables." msgstr "Ļauj dzēst datubāzes un tabulas." -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:34 server_privileges.php:516 msgid "Allows dropping tables." msgstr "Ļauj dzēst tabulas." -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:35 server_privileges.php:199 +#: server_privileges.php:533 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:36 server_privileges.php:209 +#: server_privileges.php:521 msgid "Allows executing stored routines." msgstr "" -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:37 server_privileges.php:188 +#: server_privileges.php:508 msgid "Allows importing data from and exporting data into files." msgstr "Ļauj importēt/eksportēt datus no/uz failiem." -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:38 server_privileges.php:539 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Ļauj pievienot lietotājus un privilēģijas bez privilēģiju tabulu " "pārlādēšanas." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:515 msgid "Allows creating and dropping indexes." msgstr "Ļauj veidot un dzēst indeksus." -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:40 server_privileges.php:180 +#: server_privileges.php:441 server_privileges.php:503 msgid "Allows inserting and replacing data." msgstr "Ļauj ievietot un mainīt datus." -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:41 server_privileges.php:195 +#: server_privileges.php:548 msgid "Allows locking tables for the current thread." msgstr "Ļauj bloķēt tabulas tekošajai darbībai." -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:42 server_privileges.php:645 +#: server_privileges.php:647 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Ierobežo jauno konekciju skaitu, ko lietotājs var atvērt stundas laikā." -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:43 server_privileges.php:633 +#: server_privileges.php:635 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Ierobežo vaicājumu skaitu, ko lietotājs var mosūtīt uz serveri stundas laikā." -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:44 server_privileges.php:639 +#: server_privileges.php:641 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -4610,61 +4663,61 @@ msgstr "" "Ierobežo komandu skaitu, kas maina kas maina tabulas vai datubāzes, ko " "lietotājs var izpildīt stundas laikā." -#: server_privileges.php:46 server_privileges.php:652 -#: server_privileges.php:654 +#: server_privileges.php:45 server_privileges.php:651 +#: server_privileges.php:653 #, fuzzy msgid "Limits the number of simultaneous connections the user may have." msgstr "" "Ierobežo jauno konekciju skaitu, ko lietotājs var atvērt stundas laikā." -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:46 server_privileges.php:187 +#: server_privileges.php:543 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:47 server_privileges.php:189 +#: server_privileges.php:447 server_privileges.php:549 msgid "Has no effect in this MySQL version." msgstr "Nedarbojas šajā MySQL versijā." -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:48 server_privileges.php:185 +#: server_privileges.php:544 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Ļauj prlādēt servera iestādījumus un iztukšot servera kešu." -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:197 +#: server_privileges.php:551 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Dod lietotājam tiesības jautāt, kur ir replikācijas oriģināli / kopijas." -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:50 server_privileges.php:196 +#: server_privileges.php:552 msgid "Needed for the replication slaves." msgstr "Nepieciešams replikāciju kopijām." -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:51 server_privileges.php:179 +#: server_privileges.php:438 server_privileges.php:502 msgid "Allows reading data." msgstr "Ļauj lasīt datus." -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:52 server_privileges.php:192 +#: server_privileges.php:546 msgid "Gives access to the complete list of databases." msgstr "Dod pieeju pilnam datubāzu sarakstam." -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:53 server_privileges.php:203 +#: server_privileges.php:205 server_privileges.php:518 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:54 server_privileges.php:186 +#: server_privileges.php:545 msgid "Allows shutting down the server." msgstr "Ļauj apstādināt serveri." -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:55 server_privileges.php:193 +#: server_privileges.php:542 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -4674,157 +4727,157 @@ msgstr "" "Nepieciešams vairumam administratīvo operāciju, kā globālo mainīgo maiņa vai " "citu lietotāju procesu nogalināšana." -#: server_privileges.php:57 server_privileges.php:201 -#: server_privileges.php:535 +#: server_privileges.php:56 server_privileges.php:200 +#: server_privileges.php:534 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "Ļauj veidot un dzēst indeksus." -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:57 server_privileges.php:181 +#: server_privileges.php:444 server_privileges.php:504 msgid "Allows changing data." msgstr "Ļauj mainīt datus." -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:58 server_privileges.php:259 msgid "No privileges." msgstr "Nav privilēģiju." -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:301 server_privileges.php:302 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Nav" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1710 server_privileges.php:1716 +#: server_privileges.php:430 server_privileges.php:565 +#: server_privileges.php:1714 server_privileges.php:1720 msgid "Table-specific privileges" msgstr "Tabulu specifiskās privilēģijas" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1532 +#: server_privileges.php:431 server_privileges.php:573 +#: server_privileges.php:1536 msgid " Note: MySQL privilege names are expressed in English " msgstr " Piezīme: MySQL privilēģiju apzīmējumi tiek rakstīti angļu valodā " -#: server_privileges.php:563 server_privileges.php:1531 +#: server_privileges.php:562 server_privileges.php:1535 msgid "Global privileges" msgstr "Globālās privilēģijas" -#: server_privileges.php:565 server_privileges.php:1710 +#: server_privileges.php:564 server_privileges.php:1714 msgid "Database-specific privileges" msgstr "Datubāžu specifiskās privilēģijas" -#: server_privileges.php:610 +#: server_privileges.php:609 msgid "Administration" msgstr "Administrācija" -#: server_privileges.php:630 +#: server_privileges.php:629 msgid "Resource limits" msgstr "Resursu ierobežojumi" -#: server_privileges.php:631 +#: server_privileges.php:630 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Piezīme: Šo opciju uzstādīšana uz 0 (nulli) atceļ ierobežojumus." -#: server_privileges.php:708 +#: server_privileges.php:707 msgid "Login Information" msgstr "Piekļuves informācija" -#: server_privileges.php:802 +#: server_privileges.php:801 msgid "Do not change the password" msgstr "Nemainīt paroli" -#: server_privileges.php:835 server_privileges.php:2197 +#: server_privileges.php:834 server_privileges.php:2201 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Lietotāji netika atrasti." -#: server_privileges.php:879 +#: server_privileges.php:878 #, php-format msgid "The user %s already exists!" msgstr "Lietotājs %s jau eksistē!" -#: server_privileges.php:962 +#: server_privileges.php:961 msgid "You have added a new user." msgstr "Jūs pievienojāt jaunu lietotāju." -#: server_privileges.php:1183 +#: server_privileges.php:1184 #, php-format msgid "You have updated the privileges for %s." msgstr "Jūs modificējāt privilēģijas objektam %s." -#: server_privileges.php:1207 +#: server_privileges.php:1208 #, php-format msgid "You have revoked the privileges for %s" msgstr "Jūs atņēmāt privilēgijas lietotājam %s" -#: server_privileges.php:1243 +#: server_privileges.php:1244 #, php-format msgid "The password for %s was changed successfully." msgstr "Lietotāja %s parole tika veiksmīgi mainīta." -#: server_privileges.php:1263 +#: server_privileges.php:1264 #, php-format msgid "Deleting %s" msgstr "Dzēšam %s" -#: server_privileges.php:1274 +#: server_privileges.php:1275 msgid "No users selected for deleting!" msgstr "" -#: server_privileges.php:1277 +#: server_privileges.php:1278 msgid "Reloading the privileges" msgstr "Pārlādējam privilēģijas" -#: server_privileges.php:1292 +#: server_privileges.php:1296 msgid "The selected users have been deleted successfully." msgstr "Izvēlētie lietotāji tika veiksmīgi dzēsti." -#: server_privileges.php:1327 +#: server_privileges.php:1331 msgid "The privileges were reloaded successfully." msgstr "Privilēģijas tika veiksmīgi pārlādētas." -#: server_privileges.php:1355 server_privileges.php:1641 +#: server_privileges.php:1359 server_privileges.php:1645 msgid "Edit Privileges" msgstr "Mainīt privilēģijas" -#: server_privileges.php:1364 +#: server_privileges.php:1368 msgid "Revoke" msgstr "Atsaukt" -#: server_privileges.php:1396 +#: server_privileges.php:1400 msgid "User overview" msgstr "Lietotāju pārskats" -#: server_privileges.php:1533 server_privileges.php:1715 -#: server_privileges.php:2064 +#: server_privileges.php:1537 server_privileges.php:1719 +#: server_privileges.php:2068 msgid "Grant" msgstr "Piešķirt" -#: server_privileges.php:1552 server_privileges.php:2154 +#: server_privileges.php:1556 server_privileges.php:2158 msgid "Any" msgstr "Jebkurš" -#: server_privileges.php:1601 server_privileges.php:1625 -#: server_privileges.php:2019 server_privileges.php:2208 +#: server_privileges.php:1605 server_privileges.php:1629 +#: server_privileges.php:2023 server_privileges.php:2212 msgid "Add a new User" msgstr "Pievienot jaunu lietotāju" -#: server_privileges.php:1606 +#: server_privileges.php:1610 msgid "Remove selected users" msgstr "Dzēst izvēlētos lietotājus" -#: server_privileges.php:1609 +#: server_privileges.php:1613 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Atņemt visas aktīvās privilēģijas lietotājiem, un pēc tam dzēst tos." -#: server_privileges.php:1610 server_privileges.php:1611 -#: server_privileges.php:1612 +#: server_privileges.php:1614 server_privileges.php:1615 +#: server_privileges.php:1616 msgid "Drop the databases that have the same names as the users." msgstr "Dzēst datubāzes, kurām ir tādi paši vārdi, kā lietotājiem." -#: server_privileges.php:1628 +#: server_privileges.php:1632 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4837,51 +4890,51 @@ msgstr "" "lieto serveris, ja tur tika veikti labojumi. Šajā gadījumā ir nepieciešams " "%spārlādēt privilēģijas%s pirms Jūs turpināt." -#: server_privileges.php:1676 +#: server_privileges.php:1680 msgid "The selected user was not found in the privilege table." msgstr "Izvēlētais lietotājs nav atrasts privilēģiju tabulā." -#: server_privileges.php:1716 +#: server_privileges.php:1720 msgid "Column-specific privileges" msgstr "Kolonnu specifiskās privilēģijas" -#: server_privileges.php:1917 +#: server_privileges.php:1921 msgid "Add privileges on the following database" msgstr "Pievienot privilēģijas uz sekojošo datubāzi" -#: server_privileges.php:1935 +#: server_privileges.php:1939 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "Aizstājējzīmes _ un % jāaizsargā ar \\ priekšā, lai izmantotu tās burtiski" -#: server_privileges.php:1938 +#: server_privileges.php:1942 msgid "Add privileges on the following table" msgstr "Pievienot privilēģijas uz sekojošo tabulu" -#: server_privileges.php:1995 +#: server_privileges.php:1999 msgid "Change Login Information / Copy User" msgstr "Mainīt piekļuves informāciju / Klonēt lietotāju" -#: server_privileges.php:1998 +#: server_privileges.php:2002 msgid "Create a new user with the same privileges and ..." msgstr "Izveidot jaunu lietotāju ar tādām pašām privilēģijām un ..." -#: server_privileges.php:2000 +#: server_privileges.php:2004 msgid "... keep the old one." msgstr "... paturēt veco lietotāju." -#: server_privileges.php:2001 +#: server_privileges.php:2005 msgid " ... delete the old one from the user tables." msgstr " ... dzēst veco lietotāju no lietotāju tabulas." -#: server_privileges.php:2002 +#: server_privileges.php:2006 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "" " ... atņemt vecajam lietotājam visas aktīvās privilēģijas, un pēc tam dzēst " "viņu." -#: server_privileges.php:2003 +#: server_privileges.php:2007 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -4889,44 +4942,44 @@ msgstr "" " ... dzēst veco lietotāju no lietotāju tabulas, un pēc tam pārlādēt " "privilēģijas." -#: server_privileges.php:2025 +#: server_privileges.php:2029 msgid "Database for user" msgstr "" -#: server_privileges.php:2029 +#: server_privileges.php:2033 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Nav" -#: server_privileges.php:2030 +#: server_privileges.php:2034 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2031 +#: server_privileges.php:2035 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2034 +#: server_privileges.php:2038 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "Pārbaudīt privilēģijas uz datubāzi "%s"." -#: server_privileges.php:2057 +#: server_privileges.php:2061 #, php-format msgid "Users having access to "%s"" msgstr "Lietotāji, kam ir pieja datubāzei "%s"" -#: server_privileges.php:2165 +#: server_privileges.php:2169 msgid "global" msgstr "globāls" -#: server_privileges.php:2167 +#: server_privileges.php:2171 msgid "database-specific" msgstr "datubāzei specifisks" -#: server_privileges.php:2169 +#: server_privileges.php:2173 msgid "wildcard" msgstr "aizstājējzīme" @@ -4947,53 +5000,53 @@ msgstr "" msgid "ID" msgstr "ID" -#: server_replication.php:50 +#: server_replication.php:49 msgid "Unknown error" msgstr "" -#: server_replication.php:57 +#: server_replication.php:56 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:64 +#: server_replication.php:63 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:70 +#: server_replication.php:69 msgid "Unable to change master" msgstr "" -#: server_replication.php:73 +#: server_replication.php:72 #, php-format msgid "Master server changed succesfully to %s" msgstr "" -#: server_replication.php:181 +#: server_replication.php:180 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:183 server_status.php:391 +#: server_replication.php:182 server_status.php:391 msgid "Show master status" msgstr "" -#: server_replication.php:186 +#: server_replication.php:185 msgid "Show connected slaves" msgstr "" -#: server_replication.php:209 +#: server_replication.php:208 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:216 +#: server_replication.php:215 msgid "Master configuration" msgstr "" -#: server_replication.php:217 +#: server_replication.php:216 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -5002,110 +5055,110 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:220 +#: server_replication.php:219 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:221 +#: server_replication.php:220 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:224 +#: server_replication.php:223 #, fuzzy msgid "Please select databases:" msgstr "Lūdzu izvēlieties datubāzi" -#: server_replication.php:227 +#: server_replication.php:226 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: server_replication.php:229 +#: server_replication.php:228 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: server_replication.php:292 +#: server_replication.php:291 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:295 +#: server_replication.php:294 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:304 +#: server_replication.php:303 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:307 +#: server_replication.php:306 msgid "See slave status table" msgstr "" -#: server_replication.php:310 +#: server_replication.php:309 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:321 +#: server_replication.php:320 msgid "Control slave:" msgstr "" -#: server_replication.php:324 +#: server_replication.php:323 #, fuzzy msgid "Full start" msgstr "Pilni teksti" -#: server_replication.php:324 +#: server_replication.php:323 msgid "Full stop" msgstr "" -#: server_replication.php:325 +#: server_replication.php:324 msgid "Reset slave" msgstr "" -#: server_replication.php:326 +#: server_replication.php:325 #, php-format msgid "SQL Thread %s only" msgstr "" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 #, fuzzy msgid "Start" msgstr "S" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 msgid "Stop" msgstr "" -#: server_replication.php:327 +#: server_replication.php:326 #, php-format msgid "IO Thread %s only" msgstr "" -#: server_replication.php:331 +#: server_replication.php:330 msgid "Error management:" msgstr "" -#: server_replication.php:333 +#: server_replication.php:332 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:335 +#: server_replication.php:334 msgid "Skip current error" msgstr "" -#: server_replication.php:336 +#: server_replication.php:335 msgid "Skip next" msgstr "" -#: server_replication.php:339 +#: server_replication.php:338 msgid "errors." msgstr "" -#: server_replication.php:354 +#: server_replication.php:353 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -5815,112 +5868,112 @@ msgstr "Vaicājuma tips" msgid "Replication status" msgstr "" -#: server_synchronize.php:93 +#: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:96 +#: server_synchronize.php:95 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:121 server_synchronize.php:124 tbl_create.php:77 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:264 +#: server_synchronize.php:263 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:271 +#: server_synchronize.php:270 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:399 server_synchronize.php:838 +#: server_synchronize.php:398 server_synchronize.php:837 msgid "not present" msgstr "" -#: server_synchronize.php:423 server_synchronize.php:866 +#: server_synchronize.php:422 server_synchronize.php:865 msgid "Structure Difference" msgstr "" -#: server_synchronize.php:424 server_synchronize.php:867 +#: server_synchronize.php:423 server_synchronize.php:866 msgid "Data Difference" msgstr "" -#: server_synchronize.php:429 server_synchronize.php:872 +#: server_synchronize.php:428 server_synchronize.php:871 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:430 server_synchronize.php:873 +#: server_synchronize.php:429 server_synchronize.php:872 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:431 server_synchronize.php:874 +#: server_synchronize.php:430 server_synchronize.php:873 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:432 server_synchronize.php:875 +#: server_synchronize.php:431 server_synchronize.php:874 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:433 server_synchronize.php:876 +#: server_synchronize.php:432 server_synchronize.php:875 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:434 server_synchronize.php:877 +#: server_synchronize.php:433 server_synchronize.php:876 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:435 server_synchronize.php:878 +#: server_synchronize.php:434 server_synchronize.php:877 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:445 server_synchronize.php:889 +#: server_synchronize.php:444 server_synchronize.php:888 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:448 server_synchronize.php:893 +#: server_synchronize.php:447 server_synchronize.php:892 msgid "Apply Selected Changes" msgstr "" -#: server_synchronize.php:450 server_synchronize.php:895 +#: server_synchronize.php:449 server_synchronize.php:894 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:463 +#: server_synchronize.php:462 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:941 +#: server_synchronize.php:940 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:1002 +#: server_synchronize.php:1001 msgid "The following queries have been executed:" msgstr "" -#: server_synchronize.php:1121 +#: server_synchronize.php:1120 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1122 +#: server_synchronize.php:1121 #, fuzzy #| msgid "Connections" msgid "Current connection" msgstr "Konekcijas" -#: server_synchronize.php:1151 +#: server_synchronize.php:1150 #, php-format msgid "Configuration: %s" msgstr "" -#: server_synchronize.php:1166 +#: server_synchronize.php:1165 msgid "Socket" msgstr "" -#: server_synchronize.php:1212 +#: server_synchronize.php:1211 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -6477,8 +6530,8 @@ msgstr "" #: setup/lib/messages.inc.php:128 msgid "" "Configure phpMyAdmin database to gain access to additional features, see " -"[a@../Documentation.html#linked-tables]linked-tables infrastructure[/a] in " -"documentation" +"[a@../Documentation.html#linked-tables]phpMyAdmin configuration storage[/a] " +"in documentation" msgstr "" #: setup/lib/messages.inc.php:129 setup/lib/messages.inc.php:290 @@ -7537,116 +7590,116 @@ msgstr "" msgid "ZIP" msgstr "" -#: sql.php:495 tbl_replace.php:385 +#: sql.php:494 tbl_replace.php:384 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: sql.php:512 +#: sql.php:511 msgid "Showing as PHP code" msgstr "" -#: sql.php:515 tbl_replace.php:359 +#: sql.php:514 tbl_replace.php:358 msgid "Showing SQL query" msgstr "" -#: sql.php:517 +#: sql.php:516 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Pārbaudīt SQL" -#: sql.php:638 +#: sql.php:631 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problēmas ar indeksiem tabulā `%s`" -#: sql.php:670 +#: sql.php:663 msgid "Label" msgstr "Nosaukums" -#: tbl_addfield.php:188 tbl_alter.php:102 tbl_indexes.php:97 +#: tbl_addfield.php:185 tbl_alter.php:100 tbl_indexes.php:97 #, fuzzy, php-format msgid "Table %1$s has been altered successfully" msgstr "Izvēlētie lietotāji tika veiksmīgi dzēsti." -#: tbl_change.php:250 tbl_select.php:26 tbl_select.php:27 tbl_select.php:30 -#: tbl_select.php:33 +#: tbl_change.php:245 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_select.php:32 msgid "Browse foreign values" msgstr "Pārlūkot ārējās vērtības" -#: tbl_change.php:280 tbl_change.php:318 +#: tbl_change.php:275 tbl_change.php:313 msgid "Function" msgstr "Funkcija" -#: tbl_change.php:300 tbl_indexes.php:199 tbl_indexes.php:224 +#: tbl_change.php:295 tbl_indexes.php:198 tbl_indexes.php:223 msgid "Ignore" msgstr "Ignorēt" -#: tbl_change.php:725 +#: tbl_change.php:720 #, fuzzy #| msgid " Because of its length,
                            this field might not be editable " msgid " Because of its length,
                            this column might not be editable " msgstr " Sava garuma dēļ,
                            šis lauks var būt nerediģējams " -#: tbl_change.php:884 +#: tbl_change.php:835 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:890 +#: tbl_change.php:841 msgid "Binary - do not edit" msgstr "Binārais - netiek labots" -#: tbl_change.php:983 +#: tbl_change.php:889 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:1128 +#: tbl_change.php:1026 msgid "Insert as new row" msgstr "Ievietot kā jaunu rindu" -#: tbl_change.php:1129 +#: tbl_change.php:1027 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:1130 +#: tbl_change.php:1028 msgid "Show insert query" msgstr "" -#: tbl_change.php:1145 +#: tbl_change.php:1043 msgid "Go back to previous page" msgstr "Atgriezties atpakaļ iepriekšējā lapā" -#: tbl_change.php:1146 +#: tbl_change.php:1044 msgid "Insert another new row" msgstr "Ievietot vēl vienu rindu" -#: tbl_change.php:1150 +#: tbl_change.php:1048 msgid "Go back to this page" msgstr "Atgriezties šajā lapā" -#: tbl_change.php:1158 +#: tbl_change.php:1056 msgid "Edit next row" msgstr "" -#: tbl_change.php:1169 +#: tbl_change.php:1067 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Lietojiet TAB taustiņu, lai pārvietotos no vērtības līdz vērtībai, vai CTRL" "+bultiņas, lai pārvietotos jebkurā vietā" -#: tbl_change.php:1207 +#: tbl_change.php:1105 #, php-format msgid "Restart insertion with %s rows" msgstr "" -#: tbl_create.php:57 +#: tbl_create.php:55 #, fuzzy, php-format msgid "Table %s already exists!" msgstr "Lietotājs %s jau eksistē!" -#: tbl_create.php:244 +#: tbl_create.php:241 #, fuzzy, php-format msgid "Table %1$s has been created." msgstr "Tabula %s tika izdzēsta" @@ -7667,205 +7720,205 @@ msgstr "Nevar pārsaukt indeksu par PRIMARY!" msgid "No index parts defined!" msgstr "Nav definēto indeksa daļu!" -#: tbl_indexes.php:159 +#: tbl_indexes.php:158 msgid "Create a new index" msgstr "Izveidot jaunu indeksu" -#: tbl_indexes.php:161 +#: tbl_indexes.php:160 msgid "Modify an index" msgstr "Labot indeksu" -#: tbl_indexes.php:167 +#: tbl_indexes.php:166 msgid "Index name:" msgstr "Indeksa nosaukums :" -#: tbl_indexes.php:173 +#: tbl_indexes.php:172 msgid "Index type:" msgstr "Indeksa tips :" -#: tbl_indexes.php:183 +#: tbl_indexes.php:182 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" "(\"PRIMARY\" jābūt tikai un vienīgi primārās atslēgas indeksa " "nosaukumam!)" -#: tbl_indexes.php:250 +#: tbl_indexes.php:249 #, php-format msgid "Add to index  %s column(s)" msgstr "Pievienot indeksam  %s kolonn(u/as)" -#: tbl_indexes.php:255 tbl_structure.php:588 tbl_structure.php:599 +#: tbl_indexes.php:254 tbl_structure.php:586 tbl_structure.php:597 msgid "Column count has to be larger than zero." msgstr "" -#: tbl_move_copy.php:45 +#: tbl_move_copy.php:44 msgid "Can't move table to same one!" msgstr "Nevar pārvietot tabulu uz viņu pašu!" -#: tbl_move_copy.php:47 +#: tbl_move_copy.php:46 msgid "Can't copy table to same one!" msgstr "Nevar nokopēt tabulu uz viņu pašu!" -#: tbl_move_copy.php:55 +#: tbl_move_copy.php:54 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabula %s tika pārvietota uz %s." -#: tbl_move_copy.php:57 +#: tbl_move_copy.php:56 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabula %s tika pārkopēta uz %s." -#: tbl_move_copy.php:81 +#: tbl_move_copy.php:80 msgid "The table name is empty!" msgstr "Tabulas nosaukums nav norādīts!" -#: tbl_operations.php:248 +#: tbl_operations.php:246 msgid "Alter table order by" msgstr "Mainīt datu kārtošanas laukus" -#: tbl_operations.php:257 +#: tbl_operations.php:255 msgid "(singly)" msgstr "(atsevišķi)" -#: tbl_operations.php:277 +#: tbl_operations.php:275 msgid "Move table to (database.table):" msgstr "Pārvietot tabulu uz (datubāze.tabula):" -#: tbl_operations.php:335 +#: tbl_operations.php:333 msgid "Table options" msgstr "Tabulas opcijas" -#: tbl_operations.php:339 +#: tbl_operations.php:337 msgid "Rename table to" msgstr "Pārsaukt tabulu uz" -#: tbl_operations.php:510 +#: tbl_operations.php:508 msgid "Copy table to (database.table):" msgstr "Kopēt tabulu uz (datubāze.tabula):" -#: tbl_operations.php:557 +#: tbl_operations.php:555 msgid "Switch to copied table" msgstr "Pārslēgties uz nokopēto tabulu" -#: tbl_operations.php:569 +#: tbl_operations.php:567 msgid "Table maintenance" msgstr "Tabulas apkalpošana" -#: tbl_operations.php:590 +#: tbl_operations.php:588 msgid "Defragment table" msgstr "Defragmentēt tabulu" -#: tbl_operations.php:629 +#: tbl_operations.php:627 #, php-format msgid "Table %s has been flushed" msgstr "Tabula %s tika atsvaidzināta" -#: tbl_operations.php:635 +#: tbl_operations.php:633 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Atsvaidzināt tabulu (\"FLUSH\")" -#: tbl_operations.php:650 +#: tbl_operations.php:648 #, fuzzy msgid "Partition maintenance" msgstr "Tabulas apkalpošana" -#: tbl_operations.php:658 +#: tbl_operations.php:656 #, php-format msgid "Partition %s" msgstr "" -#: tbl_operations.php:661 +#: tbl_operations.php:659 msgid "Analyze" msgstr "" -#: tbl_operations.php:662 +#: tbl_operations.php:660 #, fuzzy msgid "Check" msgstr "Čehu" -#: tbl_operations.php:663 +#: tbl_operations.php:661 msgid "Optimize" msgstr "" -#: tbl_operations.php:664 +#: tbl_operations.php:662 msgid "Rebuild" msgstr "" -#: tbl_operations.php:665 +#: tbl_operations.php:663 #, fuzzy msgid "Repair" msgstr "Restaurēt tabulu" -#: tbl_operations.php:677 +#: tbl_operations.php:675 msgid "Remove partitioning" msgstr "" -#: tbl_operations.php:703 +#: tbl_operations.php:701 msgid "Check referential integrity:" msgstr "Pārbaudīt referenciālo integritāti:" -#: tbl_printview.php:73 +#: tbl_printview.php:72 msgid "Show tables" msgstr "Rādīt tabulas" -#: tbl_printview.php:308 tbl_structure.php:655 +#: tbl_printview.php:307 tbl_structure.php:653 msgid "Space usage" msgstr "Diska vietas lietošana" -#: tbl_printview.php:312 tbl_structure.php:659 +#: tbl_printview.php:311 tbl_structure.php:657 msgid "Usage" msgstr "Aizņem" -#: tbl_printview.php:339 tbl_structure.php:686 +#: tbl_printview.php:338 tbl_structure.php:684 msgid "Effective" msgstr "Efektīvs" -#: tbl_printview.php:364 tbl_structure.php:724 +#: tbl_printview.php:363 tbl_structure.php:722 msgid "Row Statistics" msgstr "Rindas statistika" -#: tbl_printview.php:367 tbl_structure.php:727 +#: tbl_printview.php:366 tbl_structure.php:725 msgid "Statements" msgstr "Parametrs" -#: tbl_printview.php:378 tbl_structure.php:739 +#: tbl_printview.php:377 tbl_structure.php:737 msgid "static" msgstr "" -#: tbl_printview.php:380 tbl_structure.php:741 +#: tbl_printview.php:379 tbl_structure.php:739 msgid "dynamic" msgstr "dinamisks" -#: tbl_printview.php:402 tbl_structure.php:784 +#: tbl_printview.php:401 tbl_structure.php:782 msgid "Row length" msgstr "Rindas garums" -#: tbl_printview.php:412 tbl_structure.php:792 +#: tbl_printview.php:411 tbl_structure.php:790 msgid " Row size " msgstr " Rindas izmērs " -#: tbl_relation.php:278 +#: tbl_relation.php:276 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" -#: tbl_relation.php:404 +#: tbl_relation.php:402 #, fuzzy #| msgid "Internal relations" msgid "Internal relation" msgstr "Iekšējās relācijas" -#: tbl_relation.php:406 +#: tbl_relation.php:404 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: tbl_relation.php:412 +#: tbl_relation.php:410 msgid "Foreign key constraint" msgstr "" @@ -7873,233 +7926,233 @@ msgstr "" msgid "No rows selected" msgstr "Rindas nav iezīmētas" -#: tbl_select.php:130 +#: tbl_select.php:129 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Izpildīt \"vaicājumu pēc parauga\" (aizstājējzīme: \"%\")" -#: tbl_select.php:136 +#: tbl_select.php:135 msgid "Operator" msgstr "Operators" -#: tbl_select.php:267 +#: tbl_select.php:266 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "Izvēlieties laukus (kaut vienu):" -#: tbl_select.php:285 +#: tbl_select.php:284 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Pievienot meklēšanas nosacījumus (\"where\" izteiksmes ķermenis):" -#: tbl_select.php:292 +#: tbl_select.php:291 msgid "Number of rows per page" msgstr "Rindu skaits vienā lapā" -#: tbl_select.php:298 +#: tbl_select.php:297 msgid "Display order:" msgstr "Attēlošanas secība:" -#: tbl_structure.php:160 +#: tbl_structure.php:159 #, fuzzy msgid "Browse distinct values" msgstr "Pārlūkot ārējās vērtības" -#: tbl_structure.php:360 +#: tbl_structure.php:358 #, fuzzy #| msgid "None" msgctxt "None for default" msgid "None" msgstr "Nav" -#: tbl_structure.php:373 +#: tbl_structure.php:371 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Column %s has been dropped" msgstr "Tabula %s tika izdzēsta" -#: tbl_structure.php:384 +#: tbl_structure.php:382 #, php-format msgid "A primary key has been added on %s" msgstr "Primārā atslēga pievienota uz lauka %s" -#: tbl_structure.php:399 tbl_structure.php:413 tbl_structure.php:427 +#: tbl_structure.php:397 tbl_structure.php:411 tbl_structure.php:425 #, php-format msgid "An index has been added on %s" msgstr "Indekss tieka pievienots uz %s" -#: tbl_structure.php:505 tbl_structure.php:507 +#: tbl_structure.php:503 tbl_structure.php:505 msgid "Relation view" msgstr "Relāciju pārskats" -#: tbl_structure.php:514 tbl_structure.php:516 +#: tbl_structure.php:512 tbl_structure.php:514 msgid "Propose table structure" msgstr "Ieteikt tabulas sruktūru" -#: tbl_structure.php:539 +#: tbl_structure.php:537 #, fuzzy #| msgid "Add %s field(s)" msgid "Add column" msgstr "Pievienot %s lauku(s)" -#: tbl_structure.php:553 +#: tbl_structure.php:551 msgid "At End of Table" msgstr "Tabulas beigās" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At Beginning of Table" msgstr "Tabulas sākumā" -#: tbl_structure.php:555 +#: tbl_structure.php:553 #, php-format msgid "After %s" msgstr "Pēc %s" -#: tbl_structure.php:593 +#: tbl_structure.php:591 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "Izveidot indeksu uz %s laukiem" -#: tbl_structure.php:755 +#: tbl_structure.php:753 msgid "partitioned" msgstr "" -#: tbl_tracking.php:113 +#: tbl_tracking.php:109 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:186 +#: tbl_tracking.php:182 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "" -#: tbl_tracking.php:194 +#: tbl_tracking.php:190 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "" -#: tbl_tracking.php:202 +#: tbl_tracking.php:198 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "" -#: tbl_tracking.php:212 +#: tbl_tracking.php:208 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:219 +#: tbl_tracking.php:215 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:220 +#: tbl_tracking.php:216 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:229 +#: tbl_tracking.php:225 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:250 tbl_tracking.php:378 +#: tbl_tracking.php:245 tbl_tracking.php:373 msgid "Close" msgstr "" -#: tbl_tracking.php:261 +#: tbl_tracking.php:256 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:380 +#: tbl_tracking.php:375 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:396 tbl_tracking.php:503 +#: tbl_tracking.php:391 tbl_tracking.php:498 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "" -#: tbl_tracking.php:409 tbl_tracking.php:460 +#: tbl_tracking.php:404 tbl_tracking.php:455 #, fuzzy msgid "Date" msgstr "Dati" -#: tbl_tracking.php:410 tbl_tracking.php:461 +#: tbl_tracking.php:405 tbl_tracking.php:456 #, fuzzy msgid "Username" msgstr "Lietotājvārds:" -#: tbl_tracking.php:411 +#: tbl_tracking.php:406 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:462 +#: tbl_tracking.php:457 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:506 +#: tbl_tracking.php:501 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:507 +#: tbl_tracking.php:502 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:520 +#: tbl_tracking.php:515 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:560 +#: tbl_tracking.php:555 msgid "Show versions" msgstr "" -#: tbl_tracking.php:592 +#: tbl_tracking.php:587 #, fuzzy msgid "Version" msgstr "Persiešu" -#: tbl_tracking.php:639 +#: tbl_tracking.php:634 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "" -#: tbl_tracking.php:641 +#: tbl_tracking.php:636 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:652 +#: tbl_tracking.php:647 #, php-format msgid "Activate tracking for %s.%s" msgstr "" -#: tbl_tracking.php:654 +#: tbl_tracking.php:649 msgid "Activate now" msgstr "" -#: tbl_tracking.php:667 +#: tbl_tracking.php:662 #, php-format msgid "Create version %s of %s.%s" msgstr "" -#: tbl_tracking.php:671 +#: tbl_tracking.php:666 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:679 +#: tbl_tracking.php:674 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:687 +#: tbl_tracking.php:682 #, fuzzy msgid "Create version" msgstr "Servera versija" @@ -8151,11 +8204,36 @@ msgstr "Profils tika modificēts." msgid "VIEW name" msgstr "" -#: view_operations.php:92 +#: view_operations.php:91 #, fuzzy msgid "Rename view to" msgstr "Pārsaukt tabulu uz" +#, fuzzy +#~| msgid "Enabled" +#~ msgctxt "BLOB repository" +#~ msgid "Enabled" +#~ msgstr "Ieslēgts" + +#, fuzzy +#~ msgid "Disable" +#~ msgstr "Izslēgts" + +#, fuzzy +#~ msgctxt "BLOB repository" +#~ msgid "Repair" +#~ msgstr "Restaurēt tabulu" + +#, fuzzy +#~| msgid "Disabled" +#~ msgctxt "BLOB repository" +#~ msgid "Disabled" +#~ msgstr "Izslēgts" + +#, fuzzy +#~ msgid "Enable" +#~ msgstr "Ieslēgts" + #~ msgid "" #~ "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " #~ "extension. Please check your PHP configuration." diff --git a/po/mk.po b/po/mk.po index d497e91b8..55ad006e8 100644 --- a/po/mk.po +++ b/po/mk.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-21 13:53+0200\n" +"POT-Creation-Date: 2010-07-26 17:18+0200\n" "PO-Revision-Date: 2010-03-12 09:16+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: macedonian_cyrillic \n" @@ -13,19 +13,19 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.5.3\n" -#: browse_foreigners.php:37 browse_foreigners.php:58 -#: libraries/display_tbl.lib.php:416 server_privileges.php:1506 +#: browse_foreigners.php:36 browse_foreigners.php:57 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1510 msgid "Show all" msgstr "прикажи ги сите" -#: browse_foreigners.php:81 libraries/common.lib.php:2313 -#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:393 -#: libraries/export/pdf.php:146 pdf_schema.php:282 pdf_schema.php:1122 -#: pdf_schema.php:1138 +#: browse_foreigners.php:80 libraries/common.lib.php:2318 +#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:392 +#: libraries/export/pdf.php:146 pdf_schema.php:281 pdf_schema.php:1121 +#: pdf_schema.php:1137 msgid "Page number:" msgstr "Број на страници:" -#: browse_foreigners.php:131 +#: browse_foreigners.php:130 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -35,139 +35,151 @@ msgstr "" "затворили матични прозор, или ваш претраживач онемогућава ажурирање међу " "прозорима због сигурносних подешавања" -#: browse_foreigners.php:149 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2829 -#: libraries/common.lib.php:2836 libraries/db_links.inc.php:74 -#: libraries/tbl_links.inc.php:62 +#: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 +#: db_structure.php:89 db_structure.php:91 db_structure.php:102 +#: db_structure.php:104 libraries/common.lib.php:2834 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Пребарување" -#: browse_foreigners.php:152 db_operations.php:384 db_operations.php:428 -#: db_operations.php:498 db_operations.php:608 db_search.php:344 -#: db_structure.php:566 js/messages.php:48 libraries/Config.class.php:1043 -#: libraries/Theme_Manager.class.php:310 +#: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 +#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 +#: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 -#: libraries/common.lib.php:1340 libraries/common.lib.php:2289 +#: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 -#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:275 -#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:531 -#: libraries/display_tbl.lib.php:613 libraries/replication_gui.lib.php:75 +#: libraries/display_export.lib.php:269 libraries/display_import.lib.php:275 +#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 +#: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 #: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:781 -#: main.php:127 navigation.php:231 pdf_pages.php:291 pdf_pages.php:327 -#: pdf_pages.php:529 pmd_pdf.php:115 server_binlog.php:128 -#: server_privileges.php:664 server_privileges.php:1616 -#: server_privileges.php:1963 server_privileges.php:2010 -#: server_privileges.php:2049 server_replication.php:234 -#: server_replication.php:317 server_replication.php:340 -#: server_synchronize.php:1208 tbl_change.php:328 tbl_change.php:1172 -#: tbl_change.php:1209 tbl_indexes.php:253 tbl_operations.php:264 -#: tbl_operations.php:301 tbl_operations.php:498 tbl_operations.php:560 -#: tbl_operations.php:680 tbl_select.php:324 tbl_structure.php:561 -#: tbl_structure.php:596 tbl_tracking.php:394 tbl_tracking.php:511 -#: view_create.php:181 view_operations.php:100 +#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 +#: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 +#: server_privileges.php:663 server_privileges.php:1620 +#: server_privileges.php:1967 server_privileges.php:2014 +#: server_privileges.php:2053 server_replication.php:233 +#: server_replication.php:316 server_replication.php:339 +#: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 +#: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 +#: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 +#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "OK" -#: browse_foreigners.php:167 browse_foreigners.php:171 -#: libraries/Index.class.php:441 tbl_tracking.php:319 +#: browse_foreigners.php:166 browse_foreigners.php:170 +#: libraries/Index.class.php:441 tbl_tracking.php:314 msgid "Keyname" msgstr "Име на клуч" -#: browse_foreigners.php:168 browse_foreigners.php:170 -#: server_collations.php:54 server_collations.php:66 server_engines.php:58 +#: browse_foreigners.php:167 browse_foreigners.php:169 +#: server_collations.php:54 server_collations.php:66 server_engines.php:57 #: server_status.php:738 msgid "Description" msgstr "Опис" -#: browse_foreigners.php:246 browse_foreigners.php:255 -#: browse_foreigners.php:267 browse_foreigners.php:275 +#: browse_foreigners.php:245 browse_foreigners.php:254 +#: browse_foreigners.php:266 browse_foreigners.php:274 msgid "Use this value" msgstr "Користи ја оваа вредност" -#: db_create.php:45 +#: bs_disp_as_mime_type.php:29 bs_play_media.php:35 +msgid "No blob streaming server configured!" +msgstr "" + +#: bs_disp_as_mime_type.php:35 +msgid "Failed to fetch headers" +msgstr "" + +#: bs_disp_as_mime_type.php:41 +msgid "Failed to open remote URL" +msgstr "" + +#: db_create.php:44 #, fuzzy, php-format msgid "Database %1$s has been created." msgstr "Базата на податоци %s не е прифатена" -#: db_datadict.php:48 db_operations.php:377 +#: db_datadict.php:48 db_operations.php:313 msgid "Database comment: " msgstr "Коментар на базата на податоци:" -#: db_datadict.php:164 libraries/tbl_properties.inc.php:723 -#: pdf_schema.php:1235 tbl_operations.php:346 tbl_printview.php:128 +#: db_datadict.php:164 libraries/tbl_properties.inc.php:722 +#: pdf_schema.php:1234 tbl_operations.php:344 tbl_printview.php:127 msgid "Table comments" msgstr "Коментар на табелата" -#: db_datadict.php:173 db_qbe.php:173 libraries/Index.class.php:445 +#: db_datadict.php:173 db_qbe.php:170 libraries/Index.class.php:445 #: libraries/export/htmlword.php:243 libraries/export/latex.php:364 #: libraries/export/odt.php:293 libraries/export/texytext.php:233 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:274 -#: pdf_schema.php:1261 pdf_schema.php:1282 tbl_change.php:306 -#: tbl_indexes.php:188 tbl_printview.php:140 tbl_relation.php:401 -#: tbl_select.php:133 tbl_structure.php:176 tbl_tracking.php:272 -#: tbl_tracking.php:323 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 +#: pdf_schema.php:1260 pdf_schema.php:1281 tbl_change.php:301 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:132 tbl_structure.php:175 tbl_tracking.php:267 +#: tbl_tracking.php:318 #, fuzzy #| msgid "Column names" msgid "Column" msgstr "Имиња на колони" -#: db_datadict.php:174 db_printview.php:105 libraries/Index.class.php:442 +#: db_datadict.php:174 db_printview.php:104 libraries/Index.class.php:442 #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 #: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:244 #: libraries/export/latex.php:364 libraries/export/odt.php:296 #: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:99 -#: pdf_schema.php:1262 pdf_schema.php:1283 server_privileges.php:2062 -#: tbl_change.php:285 tbl_change.php:312 tbl_printview.php:141 -#: tbl_printview.php:311 tbl_select.php:134 tbl_structure.php:177 -#: tbl_structure.php:658 tbl_tracking.php:273 tbl_tracking.php:320 +#: pdf_schema.php:1261 pdf_schema.php:1282 server_privileges.php:2066 +#: tbl_change.php:280 tbl_change.php:307 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:133 tbl_structure.php:176 +#: tbl_structure.php:656 tbl_tracking.php:268 tbl_tracking.php:315 msgid "Type" msgstr "Тип" #: db_datadict.php:176 libraries/Index.class.php:448 #: libraries/export/htmlword.php:245 libraries/export/latex.php:364 #: libraries/export/odt.php:299 libraries/export/texytext.php:235 -#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1264 -#: pdf_schema.php:1285 tbl_change.php:321 tbl_printview.php:143 -#: tbl_structure.php:180 tbl_tracking.php:275 tbl_tracking.php:326 +#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1263 +#: pdf_schema.php:1284 tbl_change.php:316 tbl_printview.php:142 +#: tbl_structure.php:179 tbl_tracking.php:270 tbl_tracking.php:321 msgid "Null" msgstr "Null" -#: db_datadict.php:177 db_structure.php:500 libraries/export/htmlword.php:246 +#: db_datadict.php:177 db_structure.php:486 libraries/export/htmlword.php:246 #: libraries/export/latex.php:364 libraries/export/odt.php:302 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:105 -#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 -#: tbl_structure.php:181 tbl_tracking.php:276 +#: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:143 +#: tbl_structure.php:180 tbl_tracking.php:271 msgid "Default" msgstr "Default" #: db_datadict.php:181 libraries/export/htmlword.php:248 #: libraries/export/latex.php:366 libraries/export/odt.php:306 -#: libraries/export/texytext.php:238 pdf_schema.php:1267 pdf_schema.php:1288 -#: tbl_printview.php:148 +#: libraries/export/texytext.php:238 pdf_schema.php:1266 pdf_schema.php:1287 +#: tbl_printview.php:147 msgid "Links to" msgstr "Врски кон" -#: db_datadict.php:183 db_printview.php:111 libraries/export/htmlword.php:251 +#: db_datadict.php:183 db_printview.php:110 libraries/export/htmlword.php:251 #: libraries/export/latex.php:49 libraries/export/latex.php:369 #: libraries/export/odt.php:37 libraries/export/odt.php:311 #: libraries/export/sql.php:29 libraries/export/texytext.php:241 -#: libraries/tbl_properties.inc.php:129 pdf_schema.php:1278 -#: pdf_schema.php:1289 tbl_printview.php:150 +#: libraries/tbl_properties.inc.php:128 pdf_schema.php:1277 +#: pdf_schema.php:1288 tbl_printview.php:149 msgid "Comments" msgstr "Коментари" #: db_datadict.php:266 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/export/htmlword.php:321 #: libraries/export/latex.php:434 libraries/export/odt.php:367 -#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:262 -#: pdf_schema.php:1343 server_privileges.php:1560 server_privileges.php:1571 -#: server_privileges.php:1881 server_privileges.php:1886 -#: server_privileges.php:2179 sql.php:131 sql.php:193 tbl_printview.php:227 -#: tbl_structure.php:349 tbl_tracking.php:336 tbl_tracking.php:341 +#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:261 +#: pdf_schema.php:1342 server_privileges.php:1564 server_privileges.php:1575 +#: server_privileges.php:1885 server_privileges.php:1890 +#: server_privileges.php:2183 sql.php:130 sql.php:192 tbl_printview.php:226 +#: tbl_structure.php:347 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "Не" @@ -178,17 +190,17 @@ msgstr "Не" #: libraries/mult_submits.inc.php:49 libraries/mult_submits.inc.php:54 #: libraries/mult_submits.inc.php:59 libraries/mult_submits.inc.php:91 #: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:105 -#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:261 -#: libraries/mult_submits.inc.php:272 pdf_schema.php:1343 -#: server_databases.php:63 server_privileges.php:1557 -#: server_privileges.php:1571 server_privileges.php:1881 -#: server_privileges.php:1884 server_privileges.php:2179 sql.php:192 -#: tbl_printview.php:227 tbl_structure.php:39 tbl_structure.php:349 -#: tbl_tracking.php:334 tbl_tracking.php:339 +#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:260 +#: libraries/mult_submits.inc.php:271 pdf_schema.php:1342 +#: server_databases.php:61 server_privileges.php:1561 +#: server_privileges.php:1575 server_privileges.php:1885 +#: server_privileges.php:1888 server_privileges.php:2183 sql.php:191 +#: tbl_printview.php:226 tbl_structure.php:38 tbl_structure.php:347 +#: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" msgstr "Да" -#: db_datadict.php:321 db_printview.php:265 tbl_printview.php:496 +#: db_datadict.php:321 db_printview.php:264 tbl_printview.php:495 msgid "Print" msgstr "Печати" @@ -196,195 +208,154 @@ msgstr "Печати" msgid "View dump (schema) of database" msgstr "Прикажи содржина (шема) на базата" -#: db_export.php:32 db_printview.php:95 db_qbe.php:101 db_structure.php:50 -#: db_tracking.php:34 export.php:352 navigation.php:326 +#: db_export.php:32 db_printview.php:94 db_qbe.php:98 db_structure.php:49 +#: db_tracking.php:30 export.php:350 navigation.php:325 msgid "No tables found in database." msgstr "Табелите не се пронајдени во базата на податоци." -#: db_export.php:42 db_search.php:326 server_export.php:26 +#: db_export.php:42 db_search.php:326 server_export.php:24 msgid "Select All" msgstr "избери се" -#: db_export.php:44 db_search.php:329 server_export.php:28 +#: db_export.php:44 db_search.php:329 server_export.php:26 msgid "Unselect All" msgstr "ништо" -#: db_operations.php:37 tbl_create.php:49 +#: db_operations.php:33 tbl_create.php:47 msgid "The database name is empty!" msgstr "Името на базата на податоци не е зададено!" -#: db_operations.php:235 +#: db_operations.php:231 #, php-format msgid "Database %s has been renamed to %s" msgstr "Базата на податоци %s е преименувана во %s" -#: db_operations.php:239 +#: db_operations.php:235 #, php-format msgid "Database %s has been copied to %s" msgstr "Базата на податоци %s е ископирана во %s" -#: db_operations.php:411 +#: db_operations.php:347 msgid "Rename database to" msgstr "Преименувај ја базата на податоци во" -#: db_operations.php:416 server_processlist.php:56 +#: db_operations.php:352 server_processlist.php:56 msgid "Command" msgstr "Наредба" -#: db_operations.php:428 tbl_change.php:1141 +#: db_operations.php:364 tbl_change.php:1039 msgid "and then" msgstr "" -#: db_operations.php:454 +#: db_operations.php:390 msgid "Copy database to" msgstr "Копирај ја базата на податоци во" -#: db_operations.php:461 tbl_operations.php:527 tbl_tracking.php:387 +#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Само структура" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:389 +#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Структура и податоци" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:388 +#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Само податоци" -#: db_operations.php:471 +#: db_operations.php:407 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE пред копирање" -#: db_operations.php:474 libraries/export/sql.php:51 +#: db_operations.php:410 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 -#: libraries/export/sql.php:81 tbl_operations.php:535 +#: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "" -#: db_operations.php:478 libraries/export/sql.php:77 tbl_operations.php:298 -#: tbl_operations.php:537 +#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Додади AUTO_INCREMENT вредност" -#: db_operations.php:482 tbl_operations.php:544 +#: db_operations.php:418 tbl_operations.php:542 msgid "Add constraints" msgstr "Додади ограничувања" -#: db_operations.php:495 +#: db_operations.php:431 msgid "Switch to copied database" msgstr "Префрли се на копираната база на податоци" -#: db_operations.php:536 -msgid "BLOB Repository" -msgstr "" - -#: db_operations.php:539 db_tracking.php:75 libraries/common.lib.php:1357 -#: libraries/server_links.inc.php:48 server_processlist.php:58 -#: tbl_tracking.php:595 test/theme.php:100 -msgid "Status" -msgstr "Статус" - -#: db_operations.php:547 -#, fuzzy -#| msgid "Enabled" -msgctxt "BLOB repository" -msgid "Enabled" -msgstr "Овозможено" - -#: db_operations.php:551 -#, fuzzy -msgid "Disable" -msgstr "Оневозможено" - -#: db_operations.php:561 -msgid "Damaged" -msgstr "" - -#: db_operations.php:565 -#, fuzzy -msgctxt "BLOB repository" -msgid "Repair" -msgstr "Поправка на табелата" - -#: db_operations.php:573 -#, fuzzy -#| msgid "Disabled" -msgctxt "BLOB repository" -msgid "Disabled" -msgstr "Оневозможено" - -#: db_operations.php:577 -#, fuzzy -msgid "Enable" -msgstr "Овозможено" - -#: db_operations.php:601 libraries/Index.class.php:447 +#: db_operations.php:451 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 -#: server_collations.php:53 server_collations.php:65 server_databases.php:110 -#: tbl_operations.php:362 tbl_select.php:135 tbl_structure.php:178 -#: tbl_structure.php:766 tbl_tracking.php:274 tbl_tracking.php:325 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 +#: server_collations.php:53 server_collations.php:65 server_databases.php:108 +#: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:177 +#: tbl_structure.php:764 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "Подредување" -#: db_operations.php:614 main.php:315 pdf_schema.php:33 -#, php-format +#: db_operations.php:464 pdf_schema.php:32 +#, fuzzy, php-format +#| msgid "" +#| "The additional features for working with linked tables have been " +#| "deactivated. To find out why click %shere%s." msgid "" -"The additional features for working with linked tables have been " -"deactivated. To find out why click %shere%s." +"The phpMyAdmin configuration storage has been deactivated. To find out why " +"click %shere%s." msgstr "" "Дополнителните можности за работа со поврзаните табели се исклучени. За да " "дознаете зошто, кликнете %sовде%s." -#: db_operations.php:647 +#: db_operations.php:497 msgid "Edit PDF Pages" msgstr "Уредување на PDF страница" -#: db_printview.php:103 db_tracking.php:71 db_tracking.php:156 +#: db_printview.php:102 db_tracking.php:67 db_tracking.php:152 #: libraries/db_structure.lib.php:37 libraries/export/xml.php:327 -#: libraries/header.inc.php:125 pdf_pages.php:423 server_privileges.php:1657 -#: server_privileges.php:1713 server_privileges.php:1977 -#: server_synchronize.php:422 server_synchronize.php:865 tbl_tracking.php:591 +#: libraries/header.inc.php:125 pdf_pages.php:422 server_privileges.php:1661 +#: server_privileges.php:1717 server_privileges.php:1981 +#: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "Табела" -#: db_printview.php:104 libraries/db_structure.lib.php:47 +#: db_printview.php:103 libraries/db_structure.lib.php:47 #: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 -#: navigation.php:629 navigation.php:651 server_databases.php:121 -#: tbl_printview.php:392 tbl_structure.php:364 tbl_structure.php:776 +#: navigation.php:628 navigation.php:650 server_databases.php:119 +#: tbl_printview.php:391 tbl_structure.php:362 tbl_structure.php:774 msgid "Rows" msgstr "Записи" -#: db_printview.php:108 libraries/db_structure.lib.php:58 tbl_indexes.php:189 +#: db_printview.php:107 libraries/db_structure.lib.php:58 tbl_indexes.php:188 msgid "Size" msgstr "Големина" -#: db_printview.php:161 db_structure.php:456 libraries/export/sql.php:556 +#: db_printview.php:160 db_structure.php:442 libraries/export/sql.php:556 #: libraries/export/sql.php:896 msgid "in use" msgstr "се користи" -#: db_printview.php:186 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:511 pdf_schema.php:1240 tbl_printview.php:432 -#: tbl_structure.php:808 +#: db_printview.php:185 libraries/db_info.inc.php:86 +#: libraries/export/sql.php:511 pdf_schema.php:1239 tbl_printview.php:431 +#: tbl_structure.php:806 msgid "Creation" msgstr "Направено" -#: db_printview.php:195 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:516 pdf_schema.php:1245 tbl_printview.php:442 -#: tbl_structure.php:816 +#: db_printview.php:194 libraries/db_info.inc.php:91 +#: libraries/export/sql.php:516 pdf_schema.php:1244 tbl_printview.php:441 +#: tbl_structure.php:814 msgid "Last update" msgstr "Последна измена" -#: db_printview.php:204 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:521 pdf_schema.php:1250 tbl_printview.php:452 -#: tbl_structure.php:824 +#: db_printview.php:203 libraries/db_info.inc.php:96 +#: libraries/export/sql.php:521 pdf_schema.php:1249 tbl_printview.php:451 +#: tbl_structure.php:822 msgid "Last check" msgstr "Последна проверка" -#: db_printview.php:221 db_structure.php:479 +#: db_printview.php:220 db_structure.php:465 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -392,94 +363,94 @@ msgid_plural "%s tables" msgstr[0] "%s табела" msgstr[1] "%s табела" -#: db_qbe.php:28 import.php:453 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1980 libraries/sql_query_form.lib.php:138 -#: tbl_operations.php:212 tbl_relation.php:291 tbl_row_action.php:130 -#: view_operations.php:61 +#: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 +#: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "Вашиот SQL упит успешно е извршен" -#: db_qbe.php:41 +#: db_qbe.php:38 msgid "You have to choose at least one column to display" msgstr "Морате да изберете барем една колона за приказ" -#: db_qbe.php:199 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:865 +#: db_qbe.php:196 libraries/db_structure.lib.php:95 +#: libraries/display_tbl.lib.php:864 msgid "Sort" msgstr "Подредуваање" -#: db_qbe.php:208 db_qbe.php:242 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:522 libraries/display_tbl.lib.php:827 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:259 -#: tbl_select.php:311 +#: db_qbe.php:205 db_qbe.php:239 libraries/db_structure.lib.php:102 +#: libraries/display_tbl.lib.php:521 libraries/display_tbl.lib.php:826 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:257 +#: tbl_select.php:310 msgid "Ascending" msgstr "Растечки редослед" -#: db_qbe.php:209 db_qbe.php:250 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:527 libraries/display_tbl.lib.php:824 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:260 -#: tbl_select.php:312 +#: db_qbe.php:206 db_qbe.php:247 libraries/db_structure.lib.php:110 +#: libraries/display_tbl.lib.php:526 libraries/display_tbl.lib.php:823 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:258 +#: tbl_select.php:311 msgid "Descending" msgstr "Опаѓачки редослед" -#: db_qbe.php:263 db_tracking.php:77 libraries/display_tbl.lib.php:307 -#: tbl_change.php:275 tbl_tracking.php:596 +#: db_qbe.php:260 db_tracking.php:73 libraries/display_tbl.lib.php:306 +#: tbl_change.php:270 tbl_tracking.php:591 msgid "Show" msgstr "Прикажи" -#: db_qbe.php:299 +#: db_qbe.php:296 msgid "Criteria" msgstr "Критериум" -#: db_qbe.php:352 db_qbe.php:434 db_qbe.php:526 db_qbe.php:557 +#: db_qbe.php:349 db_qbe.php:431 db_qbe.php:523 db_qbe.php:554 msgid "Ins" msgstr "Ins" -#: db_qbe.php:356 db_qbe.php:438 db_qbe.php:523 db_qbe.php:554 +#: db_qbe.php:353 db_qbe.php:435 db_qbe.php:520 db_qbe.php:551 msgid "And" msgstr "и" -#: db_qbe.php:365 db_qbe.php:446 db_qbe.php:528 db_qbe.php:559 +#: db_qbe.php:362 db_qbe.php:443 db_qbe.php:525 db_qbe.php:556 msgid "Del" msgstr "Del" -#: db_qbe.php:369 db_qbe.php:450 db_qbe.php:521 db_qbe.php:552 -#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:778 -#: server_privileges.php:297 tbl_change.php:1027 tbl_indexes.php:249 -#: tbl_select.php:285 +#: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 +#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:777 +#: server_privileges.php:296 tbl_change.php:925 tbl_indexes.php:248 +#: tbl_select.php:284 msgid "Or" msgstr "или" -#: db_qbe.php:506 +#: db_qbe.php:503 msgid "Modify" msgstr "Промени" -#: db_qbe.php:583 +#: db_qbe.php:580 #, fuzzy #| msgid "Add/Delete Criteria Row" msgid "Add/Delete criteria rows" msgstr "Додади/избриши поле за критериум" -#: db_qbe.php:595 +#: db_qbe.php:592 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Add/Delete columns" msgstr "Додади/избриши колона" -#: db_qbe.php:608 db_qbe.php:633 +#: db_qbe.php:605 db_qbe.php:630 msgid "Update Query" msgstr "Ажурирај" -#: db_qbe.php:616 +#: db_qbe.php:613 msgid "Use Tables" msgstr "Користи табели" -#: db_qbe.php:639 +#: db_qbe.php:636 #, php-format msgid "SQL query on database %s:" msgstr "SQL упит на базата на податоци %s:" -#: db_qbe.php:933 libraries/common.lib.php:1222 +#: db_qbe.php:930 libraries/common.lib.php:1215 msgid "Submit Query" msgstr "Изврши SQL" @@ -519,17 +490,17 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s погодоци во табелата %s" msgstr[1] "%s погодоци во табелата %s" -#: db_search.php:249 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2831 -#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:49 -#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:466 +#: db_search.php:249 db_structure.php:75 db_structure.php:76 +#: db_structure.php:88 db_structure.php:90 db_structure.php:101 +#: db_structure.php:103 libraries/common.lib.php:2836 +#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 +#: tbl_structure.php:35 tbl_structure.php:47 tbl_structure.php:464 msgid "Browse" msgstr "Преглед" -#: db_search.php:254 libraries/display_tbl.lib.php:1164 -#: libraries/display_tbl.lib.php:2055 libraries/sql_query_form.lib.php:453 -#: pdf_pages.php:285 pdf_pages.php:424 pdf_pages.php:460 pdf_pages.php:488 +#: db_search.php:254 libraries/display_tbl.lib.php:1163 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 msgid "Delete" @@ -569,231 +540,237 @@ msgstr "во табела(и):" msgid "Inside column:" msgstr "во табела(и):" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2830 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:75 +#: db_structure.php:79 db_structure.php:80 db_structure.php:92 +#: db_structure.php:93 db_structure.php:105 db_structure.php:106 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 +#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Нов запис" -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2827 libraries/common.lib.php:2834 -#: libraries/db_links.inc.php:62 libraries/export/htmlword.php:22 +#: db_structure.php:81 db_structure.php:94 db_structure.php:107 +#: libraries/common.lib.php:2832 libraries/common.lib.php:2839 +#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 -#: libraries/tbl_links.inc.php:55 pmd_general.php:133 -#: server_privileges.php:593 server_replication.php:314 tbl_tracking.php:268 +#: libraries/tbl_links.inc.php:54 pmd_general.php:133 +#: server_privileges.php:592 server_replication.php:313 tbl_tracking.php:263 msgid "Structure" msgstr "Структура" -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:544 db_structure.php:545 db_tracking.php:90 -#: libraries/Index.class.php:482 libraries/common.lib.php:1659 -#: libraries/db_links.inc.php:99 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:126 -#: server_databases.php:351 tbl_structure.php:26 tbl_structure.php:150 -#: tbl_structure.php:151 tbl_structure.php:470 +#: db_structure.php:82 db_structure.php:83 db_structure.php:95 +#: db_structure.php:96 db_structure.php:108 db_structure.php:109 +#: db_structure.php:530 db_structure.php:531 db_tracking.php:86 +#: libraries/Index.class.php:482 libraries/common.lib.php:1663 +#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 +#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 +#: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" msgstr "Бриши" -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:542 db_structure.php:543 libraries/common.lib.php:1658 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:104 +#: db_structure.php:84 db_structure.php:85 db_structure.php:97 +#: db_structure.php:98 db_structure.php:110 db_structure.php:111 +#: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 +#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 msgid "Empty" msgstr "Испразни" -#: db_structure.php:315 libraries/tbl_links.inc.php:99 +#: db_structure.php:301 libraries/tbl_links.inc.php:98 #, php-format msgid "Table %s has been emptied" msgstr "Табелата %s е испразнета" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "View %s has been dropped" msgstr "Прегледот %s е избришан" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "Table %s has been dropped" msgstr "Табелата %s е избришана" -#: db_structure.php:332 +#: db_structure.php:318 msgid "Tracking is active." msgstr "" -#: db_structure.php:334 +#: db_structure.php:320 msgid "Tracking is not active." msgstr "" -#: db_structure.php:419 libraries/display_tbl.lib.php:1943 +#: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -#: db_structure.php:433 db_structure.php:447 libraries/header.inc.php:125 -#: libraries/tbl_info.inc.php:65 tbl_structure.php:184 test/theme.php:73 +#: db_structure.php:419 db_structure.php:433 libraries/header.inc.php:125 +#: libraries/tbl_info.inc.php:60 tbl_structure.php:183 test/theme.php:73 msgid "View" msgstr "Поглед" -#: db_structure.php:484 libraries/db_structure.lib.php:40 -#: libraries/server_links.inc.php:69 server_replication.php:32 -#: server_replication.php:163 server_status.php:368 +#: db_structure.php:470 libraries/db_structure.lib.php:40 +#: libraries/server_links.inc.php:69 server_replication.php:31 +#: server_replication.php:162 server_status.php:368 #, fuzzy msgid "Replication" msgstr "Релации" -#: db_structure.php:488 +#: db_structure.php:474 msgid "Sum" msgstr "Вкупно" -#: db_structure.php:495 libraries/StorageEngine.class.php:349 +#: db_structure.php:481 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s е основно складиште на овој MySQL сервер." -#: db_structure.php:523 db_structure.php:540 db_structure.php:541 -#: libraries/display_tbl.lib.php:2080 libraries/display_tbl.lib.php:2085 -#: libraries/mult_submits.inc.php:15 server_databases.php:345 -#: server_databases.php:350 server_privileges.php:1588 tbl_structure.php:454 -#: tbl_structure.php:463 +#: db_structure.php:509 db_structure.php:526 db_structure.php:527 +#: libraries/display_tbl.lib.php:2039 libraries/display_tbl.lib.php:2044 +#: libraries/mult_submits.inc.php:15 server_databases.php:343 +#: server_databases.php:348 server_privileges.php:1592 tbl_structure.php:452 +#: tbl_structure.php:461 msgid "With selected:" msgstr "Обележаното:" -#: db_structure.php:526 libraries/display_tbl.lib.php:2075 -#: server_databases.php:347 server_privileges.php:569 -#: server_privileges.php:1591 tbl_structure.php:457 +#: db_structure.php:512 libraries/display_tbl.lib.php:2034 +#: server_databases.php:345 server_privileges.php:568 +#: server_privileges.php:1595 tbl_structure.php:455 msgid "Check All" msgstr "обележи ги сите" -#: db_structure.php:530 libraries/display_tbl.lib.php:2076 -#: libraries/replication_gui.lib.php:35 server_databases.php:349 -#: server_privileges.php:572 server_privileges.php:1595 tbl_structure.php:461 +#: db_structure.php:516 libraries/display_tbl.lib.php:2035 +#: libraries/replication_gui.lib.php:35 server_databases.php:347 +#: server_privileges.php:571 server_privileges.php:1599 tbl_structure.php:459 msgid "Uncheck All" msgstr "ниедно" -#: db_structure.php:535 +#: db_structure.php:521 msgid "Check tables having overhead" msgstr "табели кои имаат пречекорувања" -#: db_structure.php:546 db_structure.php:547 db_structure.php:598 -#: libraries/display_tbl.lib.php:2179 libraries/mult_submits.inc.php:27 -#: tbl_structure.php:491 tbl_structure.php:493 +#: db_structure.php:532 db_structure.php:533 db_structure.php:584 +#: libraries/display_tbl.lib.php:2138 libraries/mult_submits.inc.php:27 +#: tbl_structure.php:489 tbl_structure.php:491 msgid "Print view" msgstr "Преглед за печатење" -#: db_structure.php:548 db_structure.php:549 libraries/mult_submits.inc.php:41 -#: tbl_operations.php:580 +#: db_structure.php:534 db_structure.php:535 libraries/mult_submits.inc.php:41 +#: tbl_operations.php:578 msgid "Check table" msgstr "Проверка на табелата" -#: db_structure.php:550 db_structure.php:551 libraries/mult_submits.inc.php:46 -#: tbl_operations.php:620 tbl_structure.php:708 tbl_structure.php:710 +#: db_structure.php:536 db_structure.php:537 libraries/mult_submits.inc.php:46 +#: tbl_operations.php:618 tbl_structure.php:706 tbl_structure.php:708 msgid "Optimize table" msgstr "Оптимизација на табелата" -#: db_structure.php:552 db_structure.php:553 libraries/mult_submits.inc.php:51 -#: tbl_operations.php:610 +#: db_structure.php:538 db_structure.php:539 libraries/mult_submits.inc.php:51 +#: tbl_operations.php:608 msgid "Repair table" msgstr "Поправка на табелата" -#: db_structure.php:554 db_structure.php:555 libraries/mult_submits.inc.php:56 -#: tbl_operations.php:600 +#: db_structure.php:540 db_structure.php:541 libraries/mult_submits.inc.php:56 +#: tbl_operations.php:598 msgid "Analyze table" msgstr "Анализа на табелата" -#: db_structure.php:556 db_structure.php:557 libraries/db_links.inc.php:70 -#: libraries/display_export.lib.php:82 libraries/display_tbl.lib.php:2093 -#: libraries/display_tbl.lib.php:2224 libraries/mult_submits.inc.php:61 -#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:81 -#: pmd_pdf.php:83 pmd_pdf.php:108 server_privileges.php:1372 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 +#: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 +#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 +#: pmd_pdf.php:81 pmd_pdf.php:106 server_privileges.php:1376 #: setup/frames/menu.inc.php:22 tbl_row_action.php:58 msgid "Export" msgstr "Извоз" -#: db_structure.php:605 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:591 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "Речник на податоци" -#: db_tracking.php:65 +#: db_tracking.php:61 msgid "Tracked tables" msgstr "" -#: db_tracking.php:70 libraries/export/htmlword.php:85 +#: db_tracking.php:66 libraries/export/htmlword.php:85 #: libraries/export/latex.php:152 libraries/export/odt.php:112 #: libraries/export/sql.php:339 libraries/export/texytext.php:84 #: libraries/export/xml.php:254 libraries/header.inc.php:105 -#: libraries/header_printview.inc.php:57 server_databases.php:168 -#: server_privileges.php:1652 server_privileges.php:1713 -#: server_privileges.php:1971 server_processlist.php:55 -#: server_synchronize.php:1178 server_synchronize.php:1182 -#: tbl_tracking.php:590 test/theme.php:64 +#: libraries/header_printview.inc.php:57 server_databases.php:166 +#: server_privileges.php:1656 server_privileges.php:1717 +#: server_privileges.php:1975 server_processlist.php:55 +#: server_synchronize.php:1177 server_synchronize.php:1181 +#: tbl_tracking.php:585 test/theme.php:64 msgid "Database" msgstr "База на податоци" -#: db_tracking.php:72 +#: db_tracking.php:68 msgid "Last version" msgstr "" -#: db_tracking.php:73 tbl_tracking.php:593 +#: db_tracking.php:69 tbl_tracking.php:588 #, fuzzy msgid "Created" msgstr "Креирај" -#: db_tracking.php:74 tbl_tracking.php:594 +#: db_tracking.php:70 tbl_tracking.php:589 msgid "Updated" msgstr "" -#: db_tracking.php:76 libraries/Index.class.php:439 -#: libraries/db_structure.lib.php:44 server_databases.php:202 -#: server_privileges.php:1534 server_privileges.php:1717 -#: server_privileges.php:2065 tbl_structure.php:186 +#: db_tracking.php:71 libraries/common.lib.php:1361 +#: libraries/server_links.inc.php:48 server_processlist.php:58 +#: tbl_tracking.php:590 test/theme.php:100 +msgid "Status" +msgstr "Статус" + +#: db_tracking.php:72 libraries/Index.class.php:439 +#: libraries/db_structure.lib.php:44 server_databases.php:200 +#: server_privileges.php:1538 server_privileges.php:1721 +#: server_privileges.php:2069 tbl_structure.php:185 msgid "Action" msgstr "Акција" -#: db_tracking.php:87 db_tracking.php:119 +#: db_tracking.php:83 db_tracking.php:115 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:105 tbl_tracking.php:547 tbl_tracking.php:605 -#: tbl_tracking.php:612 +#: db_tracking.php:101 tbl_tracking.php:542 tbl_tracking.php:600 +#: tbl_tracking.php:607 msgid "active" msgstr "" -#: db_tracking.php:107 tbl_tracking.php:549 tbl_tracking.php:607 -#: tbl_tracking.php:609 +#: db_tracking.php:103 tbl_tracking.php:544 tbl_tracking.php:602 +#: tbl_tracking.php:604 msgid "not active" msgstr "" -#: db_tracking.php:120 +#: db_tracking.php:116 #, fuzzy msgid "Versions" msgstr "Персиски" -#: db_tracking.php:121 tbl_tracking.php:378 tbl_tracking.php:623 +#: db_tracking.php:117 tbl_tracking.php:373 tbl_tracking.php:618 msgid "Tracking report" msgstr "" -#: db_tracking.php:122 tbl_tracking.php:250 tbl_tracking.php:623 +#: db_tracking.php:118 tbl_tracking.php:245 tbl_tracking.php:618 #, fuzzy msgid "Structure snapshot" msgstr "Само структура" -#: db_tracking.php:151 +#: db_tracking.php:147 msgid "Untracked tables" msgstr "" -#: db_tracking.php:171 db_tracking.php:173 tbl_structure.php:527 -#: tbl_structure.php:529 +#: db_tracking.php:167 db_tracking.php:169 tbl_structure.php:525 +#: tbl_structure.php:527 #, fuzzy msgid "Track table" msgstr "Проверка на табелата" -#: db_tracking.php:199 +#: db_tracking.php:195 #, fuzzy msgid "Database Log" msgstr "База на податоци" @@ -802,12 +779,12 @@ msgstr "База на податоци" msgid "Selected export type has to be saved in file!" msgstr "" -#: export.php:153 export.php:178 export.php:620 +#: export.php:152 export.php:177 export.php:615 #, php-format msgid "Insufficient space to save the file %s." msgstr "Нема доволно простор за снимање на податотеката %s." -#: export.php:287 +#: export.php:286 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -815,91 +792,91 @@ msgstr "" "Податотека %s постои на серверот, променете го името на податотеката или " "изберете опција за пишување врз неа." -#: export.php:291 export.php:295 +#: export.php:290 export.php:294 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "На веб серверот не му е допуштено да ја сочува податотеката %s." -#: export.php:622 +#: export.php:617 #, php-format msgid "Dump has been saved to file %s." msgstr "Содржината на базата на податоци е сочувана во податотеката %s." -#: import.php:59 +#: 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." msgstr "" -#: import.php:278 import.php:331 libraries/File.class.php:840 -#: libraries/File.class.php:950 +#: import.php:277 import.php:330 libraries/File.class.php:566 +#: libraries/File.class.php:676 msgid "File could not be read" msgstr "Податотеката не е можно да се прочита" -#: import.php:286 import.php:295 import.php:314 import.php:323 -#: libraries/File.class.php:1020 libraries/File.class.php:1028 -#: libraries/File.class.php:1044 libraries/File.class.php:1052 +#: import.php:285 import.php:294 import.php:313 import.php:322 +#: libraries/File.class.php:746 libraries/File.class.php:754 +#: libraries/File.class.php:770 libraries/File.class.php:778 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." msgstr "" -#: import.php:336 +#: import.php:335 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " "[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." msgstr "" -#: import.php:371 libraries/display_import.lib.php:23 +#: import.php:370 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:396 +#: import.php:395 msgid "The bookmark has been deleted." msgstr "Маркерот е избришан." -#: import.php:400 +#: import.php:399 msgid "Showing bookmark" msgstr "" -#: import.php:402 sql.php:625 +#: import.php:401 sql.php:618 #, php-format msgid "Bookmark %s created" msgstr "" -#: import.php:408 import.php:414 +#: import.php:407 import.php:413 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" -#: import.php:423 +#: import.php:422 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: import.php:425 +#: import.php:424 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." msgstr "" -#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:240 +#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:239 #: user_password.php:110 msgid "Back" msgstr "Назад" -#: index.php:188 +#: index.php:183 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin преферира веб прелистувачи кои подржуваат рамки." -#: js/messages.php:25 server_synchronize.php:344 server_synchronize.php:356 -#: server_synchronize.php:372 server_synchronize.php:379 -#: server_synchronize.php:738 server_synchronize.php:766 -#: server_synchronize.php:794 server_synchronize.php:806 +#: js/messages.php:25 server_synchronize.php:343 server_synchronize.php:355 +#: server_synchronize.php:371 server_synchronize.php:378 +#: server_synchronize.php:737 server_synchronize.php:765 +#: server_synchronize.php:793 server_synchronize.php:805 msgid "Click to select" msgstr "" @@ -907,15 +884,15 @@ msgstr "" msgid "Click to unselect" msgstr "" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:88 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:87 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" командата е оневозможена." -#: js/messages.php:30 libraries/mult_submits.inc.php:257 sql.php:187 +#: js/messages.php:30 libraries/mult_submits.inc.php:256 sql.php:186 msgid "Do you really want to " msgstr "Дали навистина сакате да " -#: js/messages.php:31 libraries/mult_submits.inc.php:257 sql.php:171 +#: js/messages.php:31 libraries/mult_submits.inc.php:256 sql.php:170 msgid "You are about to DESTROY a complete database!" msgstr "Со ова ја БРИШЕТЕ комплетната база на податоци!" @@ -944,11 +921,11 @@ msgstr "Името на host-от е празно!" msgid "The user name is empty!" msgstr "Не е внесен назив на корисник!" -#: js/messages.php:44 server_privileges.php:1228 user_password.php:65 +#: js/messages.php:44 server_privileges.php:1229 user_password.php:65 msgid "The password is empty!" msgstr "Лозинка е празна!" -#: js/messages.php:45 server_privileges.php:1226 user_password.php:68 +#: js/messages.php:45 server_privileges.php:1227 user_password.php:68 msgid "The passwords aren't the same!" msgstr "Лозинките не се идентични!" @@ -956,29 +933,29 @@ msgstr "Лозинките не се идентични!" msgid "Cancel" msgstr "" -#: js/messages.php:52 pmd_save_pos.php:53 +#: js/messages.php:52 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "Измените се сочувани" -#: js/messages.php:53 pmd_relation_upd.php:48 +#: js/messages.php:53 pmd_relation_upd.php:47 #, fuzzy msgid "Relation deleted" msgstr "Релационен поглед" -#: js/messages.php:54 pmd_relation_new.php:63 +#: js/messages.php:54 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:55 pmd_relation_new.php:85 +#: js/messages.php:55 pmd_relation_new.php:84 #, fuzzy msgid "Internal relation added" msgstr "Внатрешни релации" -#: js/messages.php:56 pmd_relation_new.php:62 pmd_relation_new.php:87 +#: js/messages.php:56 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:57 pmd_relation_new.php:30 +#: js/messages.php:57 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "" @@ -986,13 +963,13 @@ msgstr "" msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:59 libraries/relation.lib.php:94 -#: libraries/relation.lib.php:106 +#: js/messages.php:59 libraries/relation.lib.php:89 +#: libraries/relation.lib.php:101 msgid "General relation features" msgstr "Општи особини на релациите" -#: js/messages.php:59 libraries/relation.lib.php:88 -#: libraries/relation.lib.php:95 +#: js/messages.php:59 libraries/relation.lib.php:83 +#: libraries/relation.lib.php:90 msgid "Disabled" msgstr "Оневозможено" @@ -1008,7 +985,7 @@ msgstr "" msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:547 +#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" @@ -1039,10 +1016,10 @@ msgid "Prev" msgstr "Претходна" #. l10n: Display text for next month link in calendar -#: js/messages.php:81 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:337 -#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:422 -#: tbl_structure.php:800 +#: js/messages.php:81 libraries/common.lib.php:2358 +#: libraries/common.lib.php:2361 libraries/display_tbl.lib.php:336 +#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 +#: tbl_structure.php:798 msgid "Next" msgstr "Следен" @@ -1116,27 +1093,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1562 +#: js/messages.php:101 libraries/common.lib.php:1566 msgid "Jan" msgstr "јан" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1564 +#: js/messages.php:103 libraries/common.lib.php:1568 msgid "Feb" msgstr "феб" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1566 +#: js/messages.php:105 libraries/common.lib.php:1570 msgid "Mar" msgstr "мар" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1568 +#: js/messages.php:107 libraries/common.lib.php:1572 msgid "Apr" msgstr "апр" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1570 +#: js/messages.php:109 libraries/common.lib.php:1574 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1144,37 +1121,37 @@ msgid "May" msgstr "мај" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1572 +#: js/messages.php:111 libraries/common.lib.php:1576 msgid "Jun" msgstr "јун" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1574 +#: js/messages.php:113 libraries/common.lib.php:1578 msgid "Jul" msgstr "јул" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1576 +#: js/messages.php:115 libraries/common.lib.php:1580 msgid "Aug" msgstr "авг" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1578 +#: js/messages.php:117 libraries/common.lib.php:1582 msgid "Sep" msgstr "сеп" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1580 +#: js/messages.php:119 libraries/common.lib.php:1584 msgid "Oct" msgstr "окт" #. l10n: Short month name -#: js/messages.php:121 libraries/common.lib.php:1582 +#: js/messages.php:121 libraries/common.lib.php:1586 msgid "Nov" msgstr "нов" #. l10n: Short month name -#: js/messages.php:123 libraries/common.lib.php:1584 +#: js/messages.php:123 libraries/common.lib.php:1588 msgid "Dec" msgstr "дек" @@ -1215,37 +1192,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1587 +#: js/messages.php:136 libraries/common.lib.php:1591 msgid "Sun" msgstr "Нед" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1589 +#: js/messages.php:138 libraries/common.lib.php:1593 msgid "Mon" msgstr "Пон" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1591 +#: js/messages.php:140 libraries/common.lib.php:1595 msgid "Tue" msgstr "Вто" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1593 +#: js/messages.php:142 libraries/common.lib.php:1597 msgid "Wed" msgstr "Сре" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1595 +#: js/messages.php:144 libraries/common.lib.php:1599 msgid "Thu" msgstr "Чет" #. l10n: Short week day name -#: js/messages.php:146 libraries/common.lib.php:1597 +#: js/messages.php:146 libraries/common.lib.php:1601 msgid "Fri" msgstr "Пет" #. l10n: Short week day name -#: js/messages.php:148 libraries/common.lib.php:1599 +#: js/messages.php:148 libraries/common.lib.php:1603 msgid "Sat" msgstr "Саб" @@ -1323,38 +1300,37 @@ msgstr "во секунда" msgid "Font size" msgstr "" -#: libraries/File.class.php:336 libraries/File.class.php:424 -#: libraries/File.class.php:561 libraries/File.class.php:700 -msgid "Unknown error in file upload." -msgstr "" - -#: libraries/File.class.php:406 +#: libraries/File.class.php:315 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:409 +#: libraries/File.class.php:318 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:412 +#: libraries/File.class.php:321 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:415 +#: libraries/File.class.php:324 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:418 +#: libraries/File.class.php:327 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:421 +#: libraries/File.class.php:330 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:898 +#: libraries/File.class.php:333 +msgid "Unknown error in file upload." +msgstr "" + +#: libraries/File.class.php:624 #, fuzzy msgid "" "Error moving the uploaded file, see [a@./Documentation." @@ -1363,38 +1339,38 @@ msgstr "" "Бројот на записи може да биде приближен. За подетални информации види FAQ " "3.11" -#: libraries/Index.class.php:427 tbl_relation.php:528 +#: libraries/Index.class.php:427 tbl_relation.php:526 msgid "No index defined!" msgstr "Клучот не е дефиниран!" -#: libraries/Index.class.php:432 server_databases.php:131 tbl_tracking.php:315 +#: libraries/Index.class.php:432 server_databases.php:129 tbl_tracking.php:310 msgid "Indexes" msgstr "Клучеви" #: libraries/Index.class.php:443 libraries/mult_submits.inc.php:102 -#: libraries/tbl_properties.inc.php:518 tbl_structure.php:32 -#: tbl_structure.php:154 tbl_structure.php:158 tbl_structure.php:473 -#: tbl_tracking.php:321 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:31 +#: tbl_structure.php:153 tbl_structure.php:157 tbl_structure.php:471 +#: tbl_tracking.php:316 msgid "Unique" msgstr "Единствен" -#: libraries/Index.class.php:444 tbl_tracking.php:322 +#: libraries/Index.class.php:444 tbl_tracking.php:317 msgid "Packed" msgstr "" -#: libraries/Index.class.php:446 tbl_tracking.php:324 +#: libraries/Index.class.php:446 tbl_tracking.php:319 msgid "Cardinality" msgstr "Кардиналност" -#: libraries/Index.class.php:449 tbl_tracking.php:278 tbl_tracking.php:327 +#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322 #, fuzzy msgid "Comment" msgstr "Коментари" #: libraries/Index.class.php:465 libraries/common.lib.php:609 -#: libraries/common.lib.php:1198 libraries/display_tbl.lib.php:1116 +#: libraries/common.lib.php:1191 libraries/display_tbl.lib.php:1115 #: libraries/import.lib.php:1119 libraries/import.lib.php:1143 -#: pdf_pages.php:284 setup/frames/index.inc.php:124 +#: pdf_pages.php:283 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:349 tbl_row_action.php:68 msgid "Edit" msgstr "Промени" @@ -1416,15 +1392,15 @@ msgid "" msgstr "" #: libraries/List_Database.class.php:430 libraries/server_links.inc.php:40 -#: server_databases.php:87 server_privileges.php:1652 +#: server_databases.php:85 server_privileges.php:1656 #: setup/lib/messages.inc.php:107 test/theme.php:92 msgid "Databases" msgstr "База на податоци" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:259 libraries/import.lib.php:134 pdf_schema.php:31 -#: pdf_schema.php:231 tbl_change.php:1023 tbl_operations.php:212 -#: tbl_relation.php:289 view_operations.php:61 +#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 +#: tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Грешка" @@ -1451,40 +1427,40 @@ msgid_plural "%1$d rows inserted." msgstr[0] "Нема селектирани записи" msgstr[1] "Нема селектирани записи" -#: libraries/StorageEngine.class.php:196 +#: libraries/StorageEngine.class.php:194 msgid "" "There is no detailed status information available for this storage engine." msgstr "Нема детални информации за статусот на овој вид на складиште." -#: libraries/StorageEngine.class.php:352 +#: libraries/StorageEngine.class.php:354 #, php-format msgid "%s is available on this MySQL server." msgstr "%s е достапен на овој MySQL сервер." -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:357 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s е оневозможен на овој MySQL сервер." -#: libraries/StorageEngine.class.php:359 +#: libraries/StorageEngine.class.php:361 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "Овој MySQL сервер не подржува %s вид на складиште." -#: libraries/Table.class.php:1018 +#: libraries/Table.class.php:1017 msgid "Invalid database" msgstr "" -#: libraries/Table.class.php:1032 tbl_get_field.php:25 +#: libraries/Table.class.php:1031 tbl_get_field.php:25 msgid "Invalid table name" msgstr "" -#: libraries/Table.class.php:1047 +#: libraries/Table.class.php:1046 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "" -#: libraries/Table.class.php:1131 +#: libraries/Table.class.php:1129 #, php-format msgid "Table %s has been renamed to %s" msgstr "Табелата %s е преименувана во %s" @@ -1502,22 +1478,22 @@ msgstr "" msgid "take it" msgstr "превземи" -#: libraries/Theme_Manager.class.php:114 +#: libraries/Theme_Manager.class.php:109 #, php-format msgid "Default theme %s not found!" msgstr "" -#: libraries/Theme_Manager.class.php:152 +#: libraries/Theme_Manager.class.php:147 #, php-format msgid "Theme %s not found!" msgstr "" -#: libraries/Theme_Manager.class.php:220 +#: libraries/Theme_Manager.class.php:215 #, php-format msgid "Theme path not found for theme %s!" msgstr "" -#: libraries/Theme_Manager.class.php:296 test/theme.php:160 themes.php:20 +#: libraries/Theme_Manager.class.php:291 test/theme.php:160 themes.php:20 #: themes.php:40 msgid "Theme / Style" msgstr "Тема / стил" @@ -1630,19 +1606,19 @@ msgstr "" msgid "Authenticating..." msgstr "" -#: libraries/blobstreaming.lib.php:689 +#: libraries/blobstreaming.lib.php:340 msgid "View image" msgstr "" -#: libraries/blobstreaming.lib.php:693 +#: libraries/blobstreaming.lib.php:344 msgid "Play audio" msgstr "" -#: libraries/blobstreaming.lib.php:698 +#: libraries/blobstreaming.lib.php:349 msgid "View video" msgstr "" -#: libraries/blobstreaming.lib.php:702 +#: libraries/blobstreaming.lib.php:353 msgid "Download file" msgstr "" @@ -1695,7 +1671,7 @@ msgstr "Сервер" msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:909 +#: libraries/common.inc.php:908 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" @@ -1723,7 +1699,8 @@ msgstr "Пратено" #: libraries/common.lib.php:425 libraries/common.lib.php:427 #: libraries/common.lib.php:429 libraries/common.lib.php:445 #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 -#: libraries/display_export.lib.php:163 libraries/relation.lib.php:84 +#: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 +#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 #: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" @@ -1738,148 +1715,148 @@ msgstr "SQL упит" msgid "MySQL said: " msgstr "MySQL порака: " -#: libraries/common.lib.php:1136 +#: libraries/common.lib.php:1129 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1174 setup/lib/messages.inc.php:350 +#: libraries/common.lib.php:1167 setup/lib/messages.inc.php:350 msgid "Explain SQL" msgstr "Објасни SQL" -#: libraries/common.lib.php:1177 +#: libraries/common.lib.php:1170 msgid "Skip Explain SQL" msgstr "Прескокни ги објаснувањата на SQL-от" -#: libraries/common.lib.php:1211 +#: libraries/common.lib.php:1204 msgid "Without PHP Code" msgstr "без PHP код" -#: libraries/common.lib.php:1214 setup/lib/messages.inc.php:352 +#: libraries/common.lib.php:1207 setup/lib/messages.inc.php:352 msgid "Create PHP Code" msgstr "Направи PHP код" -#: libraries/common.lib.php:1232 server_status.php:451 +#: libraries/common.lib.php:1225 server_status.php:451 #: setup/lib/messages.inc.php:351 msgid "Refresh" msgstr "Освежи" -#: libraries/common.lib.php:1241 +#: libraries/common.lib.php:1234 msgid "Skip Validate SQL" msgstr "Прескокни ја проверката на SQL" -#: libraries/common.lib.php:1244 setup/lib/messages.inc.php:353 +#: libraries/common.lib.php:1237 setup/lib/messages.inc.php:353 msgid "Validate SQL" msgstr "Провери SQL" -#: libraries/common.lib.php:1283 +#: libraries/common.lib.php:1287 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1285 +#: libraries/common.lib.php:1289 #, fuzzy #| msgid "Engines" msgid "Inline" msgstr "Складишта" -#: libraries/common.lib.php:1339 libraries/common.lib.php:1354 +#: libraries/common.lib.php:1343 libraries/common.lib.php:1358 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1358 libraries/tbl_triggers.lib.php:27 +#: libraries/common.lib.php:1362 libraries/tbl_triggers.lib.php:27 #: server_processlist.php:57 msgid "Time" msgstr "Време" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "B" msgstr "бајти" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "KiB" msgstr "KB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "MiB" msgstr "MB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "GiB" msgstr "GB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "TiB" msgstr "TB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "PiB" msgstr "PB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "EiB" msgstr "EB" #. l10n: Thousands separator -#: libraries/common.lib.php:1424 +#: libraries/common.lib.php:1428 msgid "," msgstr "," #. l10n: Decimal separator -#: libraries/common.lib.php:1426 +#: libraries/common.lib.php:1430 msgid "." msgstr "." #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1603 +#: libraries/common.lib.php:1607 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%d. %B %Y. во %H:%M" -#: libraries/common.lib.php:1909 +#: libraries/common.lib.php:1913 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s денови, %s часови, %s минути и %s секунди" -#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 -#: libraries/display_tbl.lib.php:289 server_status.php:718 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 +#: libraries/display_tbl.lib.php:288 server_status.php:718 msgid "Begin" msgstr "Почеток" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 -#: libraries/display_tbl.lib.php:290 server_binlog.php:154 +#: libraries/common.lib.php:2328 libraries/common.lib.php:2331 +#: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "Претходна" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 -#: libraries/display_tbl.lib.php:352 +#: libraries/common.lib.php:2359 libraries/common.lib.php:2362 +#: libraries/display_tbl.lib.php:351 msgid "End" msgstr "Крај" -#: libraries/common.lib.php:2429 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "Премин на базата "%s"." -#: libraries/common.lib.php:2448 +#: libraries/common.lib.php:2453 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2828 libraries/common.lib.php:2835 -#: libraries/db_links.inc.php:67 libraries/export/sql.php:24 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 +#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 -#: libraries/tbl_links.inc.php:59 querywindow.php:89 test/theme.php:96 +#: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2837 libraries/db_links.inc.php:103 -#: libraries/tbl_links.inc.php:94 libraries/tbl_links.inc.php:116 -#: view_operations.php:88 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: view_operations.php:87 msgid "Operations" msgstr "Операции" -#: libraries/core.lib.php:282 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1895,39 +1872,39 @@ msgstr "" msgid "Name" msgstr "Име" -#: libraries/db_links.inc.php:44 +#: libraries/db_links.inc.php:43 #, php-format msgid "Database %s has been dropped." msgstr "Базата на податоци %s не е прифатена" -#: libraries/db_links.inc.php:56 libraries/db_links.inc.php:57 -#: libraries/db_links.inc.php:58 +#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 +#: libraries/db_links.inc.php:57 msgid "Database seems to be empty!" msgstr "" -#: libraries/db_links.inc.php:80 libraries/relation.lib.php:142 -#: libraries/tbl_links.inc.php:68 +#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:85 +#: libraries/db_links.inc.php:84 msgid "Query" msgstr "Упит по пример" -#: libraries/db_links.inc.php:90 libraries/relation.lib.php:138 +#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:97 libraries/server_links.inc.php:87 -#: libraries/tbl_links.inc.php:90 pmd_pdf.php:83 pmd_pdf.php:109 +#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 #, fuzzy msgid "Import" msgstr "Извоз" -#: libraries/db_links.inc.php:110 libraries/server_links.inc.php:65 -#: server_privileges.php:111 server_privileges.php:1714 -#: server_privileges.php:2063 test/theme.php:116 +#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: server_privileges.php:110 server_privileges.php:1718 +#: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" msgstr "Привилегии" @@ -1939,7 +1916,7 @@ msgstr "Рутини" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1847 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1806 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -1947,8 +1924,8 @@ msgstr "" "Бројот на записи може да биде приближен. За подетални информации види FAQ " "3.11" -#: libraries/db_structure.lib.php:60 server_databases.php:141 -#: tbl_printview.php:334 tbl_structure.php:681 +#: libraries/db_structure.lib.php:60 server_databases.php:139 +#: tbl_printview.php:333 tbl_structure.php:679 msgid "Overhead" msgstr "Пречекорување" @@ -1965,7 +1942,7 @@ msgstr "Серверот не одговара" msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "(или приклучокот со локалниот MySQL сервер не е исправно подесен)" -#: libraries/dbi/mysql.dbi.lib.php:358 tbl_structure.php:607 +#: libraries/dbi/mysql.dbi.lib.php:358 tbl_structure.php:605 msgid "Details..." msgstr "" @@ -1975,22 +1952,22 @@ msgid "Change password" msgstr "Промена на лозинка" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:807 +#: libraries/replication_gui.lib.php:347 server_privileges.php:806 msgid "No Password" msgstr "Нема лозинка" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1530 server_synchronize.php:1174 +#: libraries/replication_gui.lib.php:351 server_privileges.php:795 +#: server_privileges.php:799 server_privileges.php:810 +#: server_privileges.php:1534 server_synchronize.php:1173 msgid "Password" msgstr "Лозинка" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:815 server_privileges.php:818 +#: server_privileges.php:814 server_privileges.php:817 msgid "Re-type" msgstr "Повтори внес" @@ -2013,8 +1990,8 @@ msgstr "Креирај нова база на податоци" msgid "Create" msgstr "Креирај" -#: libraries/display_create_database.lib.php:39 server_privileges.php:113 -#: server_privileges.php:1419 server_replication.php:34 +#: libraries/display_create_database.lib.php:39 server_privileges.php:112 +#: server_privileges.php:1423 server_replication.php:33 msgid "No Privileges" msgstr "Нема привилегии" @@ -2035,51 +2012,51 @@ msgstr "Креирај нова табела во базата на подато msgid "Number of columns" msgstr "Број на записи на страница" -#: libraries/display_export.lib.php:41 +#: libraries/display_export.lib.php:35 msgid "Could not load export plugins, please check your installation!" msgstr "" -#: libraries/display_export.lib.php:106 +#: libraries/display_export.lib.php:100 #, fuzzy, php-format #| msgid "Dump %s row(s) starting at record # %s" msgid "Dump %s row(s) starting at row # %s" msgstr "Прикажи %s записи почнувајќи од запис %s." -#: libraries/display_export.lib.php:114 +#: libraries/display_export.lib.php:108 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:124 setup/lib/messages.inc.php:79 +#: libraries/display_export.lib.php:118 setup/lib/messages.inc.php:79 msgid "Save as file" msgstr "Сочувај како податотека" -#: libraries/display_export.lib.php:133 +#: libraries/display_export.lib.php:127 #, php-format msgid "Save on server in %s directory" msgstr "Сочувај на серверот во директориумот %s" -#: libraries/display_export.lib.php:141 setup/lib/messages.inc.php:87 +#: libraries/display_export.lib.php:135 setup/lib/messages.inc.php:87 msgid "Overwrite existing file(s)" msgstr "Препиши ги постоечките податотеки" -#: libraries/display_export.lib.php:147 +#: libraries/display_export.lib.php:141 msgid "File name template" msgstr "Шаблон на име на податотека" -#: libraries/display_export.lib.php:151 +#: libraries/display_export.lib.php:145 #, fuzzy msgid "server name" msgstr "Назив на корисник" -#: libraries/display_export.lib.php:154 +#: libraries/display_export.lib.php:148 msgid "database name" msgstr "" -#: libraries/display_export.lib.php:157 +#: libraries/display_export.lib.php:151 msgid "table name" msgstr "" -#: libraries/display_export.lib.php:161 +#: libraries/display_export.lib.php:155 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2087,39 +2064,39 @@ msgid "" "%3$s. Other text will be kept as is." msgstr "" -#: libraries/display_export.lib.php:202 +#: libraries/display_export.lib.php:196 msgid "remember template" msgstr "запамти го шаблонот" -#: libraries/display_export.lib.php:210 libraries/display_import.lib.php:177 +#: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 #: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 msgid "Character set of the file:" msgstr "Кодна страна на податотеката:" -#: libraries/display_export.lib.php:235 setup/lib/messages.inc.php:81 +#: libraries/display_export.lib.php:229 setup/lib/messages.inc.php:81 msgid "Compression" msgstr "Компресија" -#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:196 -#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:529 -#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:574 -#: server_privileges.php:1867 server_processlist.php:74 +#: libraries/display_export.lib.php:234 libraries/display_import.lib.php:196 +#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:528 +#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:573 +#: server_privileges.php:1871 server_processlist.php:74 msgid "None" msgstr "нема" -#: libraries/display_export.lib.php:247 +#: libraries/display_export.lib.php:241 msgid "\"zipped\"" msgstr "\"zip\"" -#: libraries/display_export.lib.php:253 +#: libraries/display_export.lib.php:247 msgid "\"gzipped\"" msgstr "\"gzip\"" -#: libraries/display_export.lib.php:259 +#: libraries/display_export.lib.php:253 msgid "\"bzipped\"" msgstr "\"bzip\"" -#: libraries/display_export.lib.php:274 libraries/export/sql.php:42 +#: libraries/display_export.lib.php:268 libraries/export/sql.php:42 #: libraries/import/sql.php:31 msgid "SQL compatibility mode" msgstr "" @@ -2154,12 +2131,12 @@ msgid "File uploads are not allowed on this server." msgstr "" #: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 -#: tbl_change.php:1024 +#: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "Директориумот кој го избравте за праќање не е достапен" #: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 -#: tbl_change.php:1027 +#: tbl_change.php:925 msgid "web server upload directory" msgstr "директориум за праќање на веб серверот " @@ -2238,43 +2215,43 @@ msgstr "Димензија на хартијата" msgid "Language" msgstr "" -#: libraries/display_tbl.lib.php:303 +#: libraries/display_tbl.lib.php:302 #, php-format msgid "%d is not valid row number." msgstr "" -#: libraries/display_tbl.lib.php:309 +#: libraries/display_tbl.lib.php:308 #, fuzzy #| msgid "row(s) starting from record #" msgid "row(s) starting from row #" msgstr " записи почнувајќи од записот" -#: libraries/display_tbl.lib.php:315 +#: libraries/display_tbl.lib.php:314 msgid "horizontal" msgstr "хоризонтален" -#: libraries/display_tbl.lib.php:316 +#: libraries/display_tbl.lib.php:315 msgid "horizontal (rotated headers)" msgstr "хоризонтален (ротирани заглавија)" -#: libraries/display_tbl.lib.php:317 +#: libraries/display_tbl.lib.php:316 msgid "vertical" msgstr "вертикален" -#: libraries/display_tbl.lib.php:323 +#: libraries/display_tbl.lib.php:322 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "во %s мод и повторувај заглавие после %s записа" -#: libraries/display_tbl.lib.php:345 +#: libraries/display_tbl.lib.php:344 msgid "This operation could take a long time. Proceed anyway?" msgstr "Оваа операција може да потрае. Да ли да продолжиме?" -#: libraries/display_tbl.lib.php:511 +#: libraries/display_tbl.lib.php:510 msgid "Sort by key" msgstr "Подредување по клуч" -#: libraries/display_tbl.lib.php:554 libraries/export/codegen.php:38 +#: libraries/display_tbl.lib.php:553 libraries/export/codegen.php:38 #: libraries/export/csv.php:29 libraries/export/excel.php:34 #: libraries/export/htmlword.php:28 libraries/export/latex.php:32 #: libraries/export/mediawiki.php:21 libraries/export/ods.php:26 @@ -2284,101 +2261,101 @@ msgstr "Подредување по клуч" #: libraries/export/xlsx.php:26 libraries/export/xml.php:23 #: libraries/export/yaml.php:27 libraries/import.lib.php:1114 #: libraries/import.lib.php:1136 libraries/import/csv.php:31 -#: libraries/import/docsql.php:33 libraries/import/ldi.php:46 +#: libraries/import/docsql.php:32 libraries/import/ldi.php:46 #: libraries/import/ods.php:30 libraries/import/sql.php:19 #: libraries/import/xls.php:25 libraries/import/xlsx.php:25 -#: libraries/import/xml.php:25 tbl_select.php:264 tbl_structure.php:752 +#: libraries/import/xml.php:25 tbl_select.php:263 tbl_structure.php:750 #, fuzzy msgid "Options" msgstr "Операции" -#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:569 +#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:568 msgid "Partial Texts" msgstr "Дел на текстот" -#: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:573 +#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:572 msgid "Full Texts" msgstr "Полн текст" -#: libraries/display_tbl.lib.php:586 +#: libraries/display_tbl.lib.php:585 #, fuzzy msgid "Relational key" msgstr "Релациона шема" -#: libraries/display_tbl.lib.php:587 +#: libraries/display_tbl.lib.php:586 #, fuzzy #| msgid "Relational schema" msgid "Relational display column" msgstr "Релациона шема" -#: libraries/display_tbl.lib.php:594 +#: libraries/display_tbl.lib.php:593 msgid "Show binary contents" msgstr "" -#: libraries/display_tbl.lib.php:596 +#: libraries/display_tbl.lib.php:595 msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:598 +#: libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "" -#: libraries/display_tbl.lib.php:606 pmd_general.php:140 tbl_change.php:312 -#: tbl_change.php:318 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:307 +#: tbl_change.php:313 msgid "Hide" msgstr "" -#: libraries/display_tbl.lib.php:606 libraries/relation.lib.php:122 -#: libraries/tbl_properties.inc.php:143 transformation_overview.php:46 +#: libraries/display_tbl.lib.php:605 libraries/relation.lib.php:117 +#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46 msgid "Browser transformation" msgstr "Транформации на веб прелистувачот" -#: libraries/display_tbl.lib.php:1125 libraries/display_tbl.lib.php:1129 -#: libraries/display_tbl.lib.php:1131 +#: libraries/display_tbl.lib.php:1124 libraries/display_tbl.lib.php:1128 +#: libraries/display_tbl.lib.php:1130 msgid "Execute bookmarked query" msgstr "Изврши запамтен упит" -#: libraries/display_tbl.lib.php:1144 libraries/display_tbl.lib.php:1156 +#: libraries/display_tbl.lib.php:1143 libraries/display_tbl.lib.php:1155 msgid "The row has been deleted" msgstr "Записот е избришан" -#: libraries/display_tbl.lib.php:1183 libraries/display_tbl.lib.php:2055 +#: libraries/display_tbl.lib.php:1182 libraries/display_tbl.lib.php:2014 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "Прекини" -#: libraries/display_tbl.lib.php:1933 +#: libraries/display_tbl.lib.php:1892 msgid "in query" msgstr "во упитот" -#: libraries/display_tbl.lib.php:1951 +#: libraries/display_tbl.lib.php:1910 msgid "Showing rows" msgstr "Приказ на записи од " -#: libraries/display_tbl.lib.php:1961 +#: libraries/display_tbl.lib.php:1920 msgid "total" msgstr "вкупно" -#: libraries/display_tbl.lib.php:1969 sql.php:523 +#: libraries/display_tbl.lib.php:1928 sql.php:522 #, php-format msgid "Query took %01.4f sec" msgstr "време на извршување на упитот %01.4f секунди" -#: libraries/display_tbl.lib.php:2088 libraries/mult_submits.inc.php:112 -#: querywindow.php:115 querywindow.php:119 querywindow.php:122 -#: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:469 +#: libraries/display_tbl.lib.php:2047 libraries/mult_submits.inc.php:112 +#: querywindow.php:114 querywindow.php:118 querywindow.php:121 +#: tbl_structure.php:23 tbl_structure.php:148 tbl_structure.php:467 msgid "Change" msgstr "Промени" -#: libraries/display_tbl.lib.php:2158 +#: libraries/display_tbl.lib.php:2117 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2186 +#: libraries/display_tbl.lib.php:2145 msgid "Print view (with full texts)" msgstr "Преглед за печатење (целосен текст)" -#: libraries/display_tbl.lib.php:2359 +#: libraries/display_tbl.lib.php:2318 msgid "Link not found" msgstr "Врската не е пронајдена" @@ -2436,9 +2413,9 @@ msgstr "InnoDB статус" msgid "Buffer Pool Usage" msgstr "Искористеност на баферот" -#: libraries/engines/innodb.lib.php:168 server_databases.php:136 -#: server_databases.php:304 server_status.php:524 server_status.php:585 -#: server_status.php:606 tbl_printview.php:349 tbl_structure.php:695 +#: libraries/engines/innodb.lib.php:168 server_databases.php:134 +#: server_databases.php:302 server_status.php:524 server_status.php:585 +#: server_status.php:606 tbl_printview.php:348 tbl_structure.php:693 msgid "Total" msgstr "Вкупно" @@ -2576,6 +2553,78 @@ msgstr "" "операцијата REPAIR TABLE или при креирање на индекси со CREATE INDEX или " "ALTER TABLE." +#: libraries/engines/pbms.lib.php:31 +msgid "Garbage Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:32 +msgid "The percentage of garbage in a repository file before it is compacted." +msgstr "" + +#: libraries/engines/pbms.lib.php:36 libraries/replication_gui.lib.php:69 +#: server_synchronize.php:1161 +#, fuzzy +msgid "Port" +msgstr "Подредуваање" + +#: libraries/engines/pbms.lib.php:37 +msgid "" +"The port for the PBMS stream-based communications. Setting this value to 0 " +"will disable HTTP communication with the daemon." +msgstr "" + +#: libraries/engines/pbms.lib.php:41 +msgid "Repository Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:42 +msgid "" +"The maximum size of a BLOB repository file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:46 +msgid "Temp Blob Timeout" +msgstr "" + +#: libraries/engines/pbms.lib.php:47 +msgid "" +"The timeout, in seconds, for temporary BLOBs. Uploaded BLOB data is removed " +"after this time, unless they are referenced by a record in the database." +msgstr "" + +#: libraries/engines/pbms.lib.php:51 +msgid "Temp Log Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:52 +msgid "" +"The maximum size of a temporary BLOB log file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:56 +msgid "Max Keep Alive" +msgstr "" + +#: libraries/engines/pbms.lib.php:57 +msgid "" +"The timeout for inactive connection with the keep-alive flag set. After this " +"time the connection will be closed. The time-out is in milliseconds (1/1000)." +msgstr "" + +#: libraries/engines/pbms.lib.php:61 +msgid "Metadata Headers" +msgstr "" + +#: libraries/engines/pbms.lib.php:62 +msgid "" +"A \":\" delimited list of metadata headers to be used to initialize the " +"pbms_metadata_header table when a database is created." +msgstr "" + #: libraries/engines/pbxt.lib.php:22 msgid "Index cache size" msgstr "" @@ -2700,7 +2749,7 @@ msgid "" msgstr "" #: libraries/export/codegen.php:36 setup/lib/messages.inc.php:85 -#: tbl_printview.php:374 tbl_structure.php:736 +#: tbl_printview.php:373 tbl_structure.php:734 msgid "Format" msgstr "Формат" @@ -2771,9 +2820,9 @@ msgstr "Microsoft Word 2000" #: libraries/export/htmlword.php:23 libraries/export/latex.php:59 #: libraries/export/latex.php:205 libraries/export/odt.php:47 #: libraries/export/sql.php:105 libraries/export/sql.php:865 -#: libraries/export/texytext.php:27 server_databases.php:126 -#: server_privileges.php:576 server_replication.php:315 tbl_printview.php:315 -#: tbl_structure.php:664 +#: libraries/export/texytext.php:27 server_databases.php:124 +#: server_privileges.php:575 server_replication.php:314 tbl_printview.php:314 +#: tbl_structure.php:662 msgid "Data" msgstr "Податоци" @@ -2824,13 +2873,13 @@ msgid "Label key" msgstr "Ознака на клучот" #: libraries/export/latex.php:46 libraries/export/odt.php:34 -#: libraries/export/sql.php:90 tbl_relation.php:398 +#: libraries/export/sql.php:90 tbl_relation.php:396 msgid "Relations" msgstr "Релации" #: libraries/export/latex.php:52 libraries/export/odt.php:40 #: libraries/export/odt.php:317 libraries/export/sql.php:94 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "MIME-типови" @@ -2838,10 +2887,10 @@ msgstr "MIME-типови" #: libraries/export/xml.php:101 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1529 server_privileges.php:2061 -#: server_processlist.php:54 server_synchronize.php:1158 +#: libraries/replication_gui.lib.php:331 server_privileges.php:730 +#: server_privileges.php:733 server_privileges.php:789 +#: server_privileges.php:1533 server_privileges.php:2065 +#: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "Host" @@ -3034,8 +3083,8 @@ msgstr "" msgid "Export contents" msgstr "" -#: libraries/footer.inc.php:182 libraries/footer.inc.php:193 -#: libraries/footer.inc.php:196 +#: libraries/footer.inc.php:180 libraries/footer.inc.php:191 +#: libraries/footer.inc.php:194 msgid "Open new phpMyAdmin window" msgstr "" @@ -3052,7 +3101,7 @@ msgstr "SQL резултат" msgid "Generated by" msgstr "Генерирал" -#: libraries/import.lib.php:151 sql.php:519 tbl_change.php:180 +#: libraries/import.lib.php:151 sql.php:518 tbl_change.php:175 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL врати празен резултат (нула записи)." @@ -3110,7 +3159,7 @@ msgstr "" msgid "Column names in first row" msgstr "" -#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:501 +#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:500 #: view_create.php:147 msgid "Column names" msgstr "Имиња на колони" @@ -3136,12 +3185,12 @@ msgstr "" msgid "Invalid column count in CSV input on line %d." msgstr "" -#: libraries/import/docsql.php:28 +#: libraries/import/docsql.php:27 msgid "DocSQL" msgstr "" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 -#: server_synchronize.php:427 server_synchronize.php:870 +#: libraries/import/docsql.php:30 libraries/tbl_properties.inc.php:616 +#: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "" @@ -3197,26 +3246,26 @@ msgstr "нема" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:512 -#: tbl_structure.php:28 tbl_structure.php:152 tbl_structure.php:156 -#: tbl_structure.php:472 +#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:511 +#: tbl_structure.php:27 tbl_structure.php:151 tbl_structure.php:155 +#: tbl_structure.php:470 msgid "Primary" msgstr "Примарен" #: libraries/mult_submits.inc.php:97 libraries/tbl_properties.inc.php:115 -#: libraries/tbl_properties.inc.php:524 tbl_printview.php:324 -#: tbl_structure.php:30 tbl_structure.php:153 tbl_structure.php:157 -#: tbl_structure.php:474 tbl_structure.php:672 +#: libraries/tbl_properties.inc.php:523 tbl_printview.php:323 +#: tbl_structure.php:29 tbl_structure.php:152 tbl_structure.php:156 +#: tbl_structure.php:472 tbl_structure.php:670 msgid "Index" msgstr "Клуч" -#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:530 -#: tbl_structure.php:34 tbl_structure.php:155 tbl_structure.php:159 -#: tbl_structure.php:477 +#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:529 +#: tbl_structure.php:33 tbl_structure.php:154 tbl_structure.php:158 +#: tbl_structure.php:475 msgid "Fulltext" msgstr "Текст клуч" -#: libraries/mult_submits.inc.php:434 tbl_replace.php:330 +#: libraries/mult_submits.inc.php:433 tbl_replace.php:330 msgid "No change" msgstr "Нема измени" @@ -3224,190 +3273,190 @@ msgstr "Нема измени" msgid "Charset" msgstr "Кодна страна" -#: libraries/mysql_charsets.lib.php:210 libraries/mysql_charsets.lib.php:411 -#: tbl_change.php:515 +#: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 +#: tbl_change.php:510 msgid "Binary" msgstr "Бинарен" -#: libraries/mysql_charsets.lib.php:222 +#: libraries/mysql_charsets.lib.php:214 msgid "Bulgarian" msgstr "Бугарски" -#: libraries/mysql_charsets.lib.php:226 libraries/mysql_charsets.lib.php:351 +#: libraries/mysql_charsets.lib.php:218 libraries/mysql_charsets.lib.php:343 msgid "Simplified Chinese" msgstr "Поедноставен кинески" -#: libraries/mysql_charsets.lib.php:228 libraries/mysql_charsets.lib.php:371 +#: libraries/mysql_charsets.lib.php:220 libraries/mysql_charsets.lib.php:363 msgid "Traditional Chinese" msgstr "Традиционален кинески" -#: libraries/mysql_charsets.lib.php:232 libraries/mysql_charsets.lib.php:418 +#: libraries/mysql_charsets.lib.php:224 libraries/mysql_charsets.lib.php:410 msgid "case-insensitive" msgstr "Не разликува мали и големи букви" -#: libraries/mysql_charsets.lib.php:235 libraries/mysql_charsets.lib.php:420 +#: libraries/mysql_charsets.lib.php:227 libraries/mysql_charsets.lib.php:412 msgid "case-sensitive" msgstr "Разликува мали и големи букви" -#: libraries/mysql_charsets.lib.php:238 +#: libraries/mysql_charsets.lib.php:230 msgid "Croatian" msgstr "Хрватски" -#: libraries/mysql_charsets.lib.php:241 +#: libraries/mysql_charsets.lib.php:233 msgid "Czech" msgstr "Чешки" -#: libraries/mysql_charsets.lib.php:244 +#: libraries/mysql_charsets.lib.php:236 msgid "Danish" msgstr "Дански" -#: libraries/mysql_charsets.lib.php:247 +#: libraries/mysql_charsets.lib.php:239 msgid "English" msgstr "Англиски" -#: libraries/mysql_charsets.lib.php:250 +#: libraries/mysql_charsets.lib.php:242 msgid "Esperanto" msgstr "" -#: libraries/mysql_charsets.lib.php:253 +#: libraries/mysql_charsets.lib.php:245 msgid "Estonian" msgstr "Естонски" -#: libraries/mysql_charsets.lib.php:256 libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:248 libraries/mysql_charsets.lib.php:251 msgid "German" msgstr "Германски" -#: libraries/mysql_charsets.lib.php:256 +#: libraries/mysql_charsets.lib.php:248 msgid "dictionary" msgstr "речник" -#: libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:251 msgid "phone book" msgstr "телефонски именик" -#: libraries/mysql_charsets.lib.php:262 +#: libraries/mysql_charsets.lib.php:254 msgid "Hungarian" msgstr "Унгарски" -#: libraries/mysql_charsets.lib.php:265 +#: libraries/mysql_charsets.lib.php:257 msgid "Icelandic" msgstr "Исландски" -#: libraries/mysql_charsets.lib.php:268 libraries/mysql_charsets.lib.php:358 +#: libraries/mysql_charsets.lib.php:260 libraries/mysql_charsets.lib.php:350 msgid "Japanese" msgstr "Јапонски" -#: libraries/mysql_charsets.lib.php:271 +#: libraries/mysql_charsets.lib.php:263 msgid "Latvian" msgstr "Летонски" -#: libraries/mysql_charsets.lib.php:274 +#: libraries/mysql_charsets.lib.php:266 msgid "Lithuanian" msgstr "Литвански" -#: libraries/mysql_charsets.lib.php:277 libraries/mysql_charsets.lib.php:380 +#: libraries/mysql_charsets.lib.php:269 libraries/mysql_charsets.lib.php:372 msgid "Korean" msgstr "Корејски" -#: libraries/mysql_charsets.lib.php:280 +#: libraries/mysql_charsets.lib.php:272 msgid "Persian" msgstr "Персиски" -#: libraries/mysql_charsets.lib.php:283 +#: libraries/mysql_charsets.lib.php:275 msgid "Polish" msgstr "Полски" -#: libraries/mysql_charsets.lib.php:286 libraries/mysql_charsets.lib.php:334 +#: libraries/mysql_charsets.lib.php:278 libraries/mysql_charsets.lib.php:326 msgid "West European" msgstr "Западноевропски" -#: libraries/mysql_charsets.lib.php:289 +#: libraries/mysql_charsets.lib.php:281 msgid "Romanian" msgstr "Романски" -#: libraries/mysql_charsets.lib.php:292 +#: libraries/mysql_charsets.lib.php:284 msgid "Slovak" msgstr "Словачки" -#: libraries/mysql_charsets.lib.php:295 +#: libraries/mysql_charsets.lib.php:287 msgid "Slovenian" msgstr "Словенечки" -#: libraries/mysql_charsets.lib.php:298 +#: libraries/mysql_charsets.lib.php:290 msgid "Spanish" msgstr "Шпански" -#: libraries/mysql_charsets.lib.php:301 +#: libraries/mysql_charsets.lib.php:293 msgid "Traditional Spanish" msgstr "Традиционален шпански" -#: libraries/mysql_charsets.lib.php:304 libraries/mysql_charsets.lib.php:401 +#: libraries/mysql_charsets.lib.php:296 libraries/mysql_charsets.lib.php:393 msgid "Swedish" msgstr "Шведски" -#: libraries/mysql_charsets.lib.php:307 libraries/mysql_charsets.lib.php:404 +#: libraries/mysql_charsets.lib.php:299 libraries/mysql_charsets.lib.php:396 msgid "Thai" msgstr "Тајски" -#: libraries/mysql_charsets.lib.php:310 libraries/mysql_charsets.lib.php:398 +#: libraries/mysql_charsets.lib.php:302 libraries/mysql_charsets.lib.php:390 msgid "Turkish" msgstr "Турски" -#: libraries/mysql_charsets.lib.php:313 libraries/mysql_charsets.lib.php:395 +#: libraries/mysql_charsets.lib.php:305 libraries/mysql_charsets.lib.php:387 msgid "Ukrainian" msgstr "Украински" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 msgid "Unicode" msgstr "Уникод" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 -#: libraries/mysql_charsets.lib.php:334 libraries/mysql_charsets.lib.php:341 -#: libraries/mysql_charsets.lib.php:363 libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 +#: libraries/mysql_charsets.lib.php:326 libraries/mysql_charsets.lib.php:333 +#: libraries/mysql_charsets.lib.php:355 libraries/mysql_charsets.lib.php:366 msgid "multilingual" msgstr "мултијазичен" -#: libraries/mysql_charsets.lib.php:341 +#: libraries/mysql_charsets.lib.php:333 msgid "Central European" msgstr "Централноевропски" -#: libraries/mysql_charsets.lib.php:346 +#: libraries/mysql_charsets.lib.php:338 msgid "Russian" msgstr "Руски" -#: libraries/mysql_charsets.lib.php:363 +#: libraries/mysql_charsets.lib.php:355 msgid "Baltic" msgstr "Балтички" -#: libraries/mysql_charsets.lib.php:368 +#: libraries/mysql_charsets.lib.php:360 msgid "Armenian" msgstr "Ерменски" -#: libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:366 msgid "Cyrillic" msgstr "Кириличен" -#: libraries/mysql_charsets.lib.php:377 +#: libraries/mysql_charsets.lib.php:369 msgid "Arabic" msgstr "Арапски" -#: libraries/mysql_charsets.lib.php:383 +#: libraries/mysql_charsets.lib.php:375 msgid "Hebrew" msgstr "Хебрејски" -#: libraries/mysql_charsets.lib.php:386 +#: libraries/mysql_charsets.lib.php:378 msgid "Georgian" msgstr "Грузиски" -#: libraries/mysql_charsets.lib.php:389 +#: libraries/mysql_charsets.lib.php:381 msgid "Greek" msgstr "Грчки" -#: libraries/mysql_charsets.lib.php:392 +#: libraries/mysql_charsets.lib.php:384 msgid "Czech-Slovak" msgstr "Чехословачки" -#: libraries/mysql_charsets.lib.php:407 libraries/mysql_charsets.lib.php:414 +#: libraries/mysql_charsets.lib.php:399 libraries/mysql_charsets.lib.php:406 msgid "unknown" msgstr "непознат" @@ -3433,69 +3482,69 @@ msgstr "Прозорец за упити" msgid "This format has no options" msgstr "Не постојат опции за овој формат" -#: libraries/relation.lib.php:82 +#: libraries/relation.lib.php:77 msgid "not OK" msgstr "не е како што треба" -#: libraries/relation.lib.php:86 pmd_general.php:339 +#: libraries/relation.lib.php:81 pmd_general.php:339 msgid "OK" msgstr "ОК" -#: libraries/relation.lib.php:87 +#: libraries/relation.lib.php:82 msgid "Enabled" msgstr "Овозможено" -#: libraries/relation.lib.php:110 +#: libraries/relation.lib.php:105 msgid "Display Features" msgstr "Прикажи својства" -#: libraries/relation.lib.php:116 +#: libraries/relation.lib.php:111 msgid "Creation of PDFs" msgstr "Креирање на PDF" -#: libraries/relation.lib.php:120 +#: libraries/relation.lib.php:115 msgid "Displaying Column Comments" msgstr "Прикажувам коментари на колоните" -#: libraries/relation.lib.php:125 +#: libraries/relation.lib.php:120 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "Ве молиме погледнете во документацијата за тоа како се ажурира табелата " "Column_comments" -#: libraries/relation.lib.php:130 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 msgid "Bookmarked SQL query" msgstr "Запамтен SQL упит" -#: libraries/relation.lib.php:134 querywindow.php:99 querywindow.php:207 +#: libraries/relation.lib.php:129 querywindow.php:98 querywindow.php:205 msgid "SQL history" msgstr "SQL историја" -#: libraries/relation.lib.php:146 +#: libraries/relation.lib.php:141 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:148 +#: libraries/relation.lib.php:143 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" -#: libraries/relation.lib.php:149 +#: libraries/relation.lib.php:144 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:150 +#: libraries/relation.lib.php:145 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:151 +#: libraries/relation.lib.php:146 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1158 +#: libraries/relation.lib.php:1153 msgid "no description" msgstr "нема опис" @@ -3503,7 +3552,7 @@ msgstr "нема опис" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:53 server_replication.php:346 +#: libraries/replication_gui.lib.php:53 server_replication.php:345 msgid "Change or reconfigure master server" msgstr "" @@ -3515,17 +3564,12 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:711 -#: server_privileges.php:714 server_privileges.php:721 -#: server_synchronize.php:1170 +#: libraries/replication_gui.lib.php:261 server_privileges.php:710 +#: server_privileges.php:713 server_privileges.php:720 +#: server_synchronize.php:1169 msgid "User name" msgstr "Назив на корисник" -#: libraries/replication_gui.lib.php:69 server_synchronize.php:1162 -#, fuzzy -msgid "Port" -msgstr "Подредуваање" - #: libraries/replication_gui.lib.php:105 msgid "Master status" msgstr "" @@ -3540,8 +3584,8 @@ msgid "Variable" msgstr "Променлива" #: libraries/replication_gui.lib.php:117 server_status.php:737 -#: tbl_change.php:322 tbl_printview.php:368 tbl_select.php:137 -#: tbl_structure.php:728 +#: tbl_change.php:317 tbl_printview.php:367 tbl_select.php:136 +#: tbl_structure.php:726 msgid "Value" msgstr "Вредност" @@ -3555,38 +3599,38 @@ msgid "" "this list." msgstr "" -#: libraries/replication_gui.lib.php:242 server_replication.php:193 +#: libraries/replication_gui.lib.php:242 server_replication.php:192 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:256 server_privileges.php:716 +#: libraries/replication_gui.lib.php:256 server_privileges.php:715 msgid "Any user" msgstr "Било кој корисник" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1920 server_privileges.php:1950 +#: libraries/replication_gui.lib.php:348 server_privileges.php:716 +#: server_privileges.php:783 server_privileges.php:807 +#: server_privileges.php:1924 server_privileges.php:1954 msgid "Use text field" msgstr "Користи текст поле" -#: libraries/replication_gui.lib.php:304 server_privileges.php:764 +#: libraries/replication_gui.lib.php:304 server_privileges.php:763 msgid "Any host" msgstr "Било кој host" -#: libraries/replication_gui.lib.php:308 server_privileges.php:768 +#: libraries/replication_gui.lib.php:308 server_privileges.php:767 msgid "Local" msgstr "Локален" -#: libraries/replication_gui.lib.php:314 server_privileges.php:773 +#: libraries/replication_gui.lib.php:314 server_privileges.php:772 msgid "This Host" msgstr "Овој host" -#: libraries/replication_gui.lib.php:320 server_privileges.php:779 +#: libraries/replication_gui.lib.php:320 server_privileges.php:778 msgid "Use Host Table" msgstr "Користи ја табелата на host-от" -#: libraries/replication_gui.lib.php:333 server_privileges.php:792 +#: libraries/replication_gui.lib.php:333 server_privileges.php:791 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3613,8 +3657,8 @@ msgstr "" msgid "Servers" msgstr "Сервер" -#: libraries/server_links.inc.php:52 server_engines.php:111 -#: server_engines.php:115 server_status.php:414 test/theme.php:104 +#: libraries/server_links.inc.php:52 server_engines.php:125 +#: server_engines.php:129 server_status.php:414 test/theme.php:104 msgid "Variables" msgstr "Променливи" @@ -3636,12 +3680,12 @@ msgstr "Бинарен дневник" msgid "Processes" msgstr "Листа на процеси" -#: libraries/server_links.inc.php:91 server_synchronize.php:1091 -#: server_synchronize.php:1099 +#: libraries/server_links.inc.php:91 server_synchronize.php:1090 +#: server_synchronize.php:1098 msgid "Synchronize" msgstr "" -#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1109 +#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1108 #, fuzzy msgid "Source database" msgstr "Пребарување низ базата на податоци" @@ -3660,7 +3704,7 @@ msgstr "" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1111 +#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1110 #, fuzzy msgid "Target database" msgstr "Пребарување низ базата на податоци" @@ -3681,11 +3725,11 @@ msgstr "Изврши SQL упит(и) на базата %s" msgid "Columns" msgstr "Имиња на колони" -#: libraries/sql_query_form.lib.php:342 sql.php:664 sql.php:665 sql.php:682 +#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "Запамти SQL упит" -#: libraries/sql_query_form.lib.php:349 sql.php:676 +#: libraries/sql_query_form.lib.php:349 sql.php:669 msgid "Let every user access this bookmark" msgstr "дади дозвола на секој корисник да пристапува на овој упит." @@ -3780,12 +3824,12 @@ msgstr "" "SQL валидаторот не можеше да биде стартуван. Проверете да ли се инсталирани " "неопходните PHP екстензии опишане во %sдокументацијата%s." -#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:139 -#: libraries/tbl_links.inc.php:140 +#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 +#: libraries/tbl_links.inc.php:139 msgid "Table seems to be empty!" msgstr "" -#: libraries/tbl_links.inc.php:148 +#: libraries/tbl_links.inc.php:147 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" @@ -3819,12 +3863,12 @@ msgstr "" "За default вредност, внесете само една вредност, без коси црти или наводници " "во следниов облик: а" -#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1263 -#: pdf_schema.php:1284 tbl_printview.php:142 tbl_structure.php:179 +#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1262 +#: pdf_schema.php:1283 tbl_printview.php:141 tbl_structure.php:178 msgid "Attributes" msgstr "Атрибути" -#: libraries/tbl_properties.inc.php:136 +#: libraries/tbl_properties.inc.php:135 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -3833,11 +3877,11 @@ msgstr "" "За листа на достапни опции на транформациите и нивните MIME-тип " "трансформации, кликнете на %sопис на трансформацијата%s" -#: libraries/tbl_properties.inc.php:144 +#: libraries/tbl_properties.inc.php:143 msgid "Transformation options" msgstr "Опции на трансформацијата" -#: libraries/tbl_properties.inc.php:145 +#: libraries/tbl_properties.inc.php:144 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
                            If you ever need to put a backslash (\"\\\") or a single " @@ -3849,18 +3893,18 @@ msgstr "" "или апостроф (\"'\") во тие вредности, ставете обратна коса црта пред нив " "(пример '\\\\xyz' или 'a\\'b')." -#: libraries/tbl_properties.inc.php:392 +#: libraries/tbl_properties.inc.php:391 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "нема" -#: libraries/tbl_properties.inc.php:393 +#: libraries/tbl_properties.inc.php:392 msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:579 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:578 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
                            Please ask the " @@ -3869,29 +3913,29 @@ msgstr "" "Нема опис за оваа трансформација.
                            Ве молиме прашајте го авторот што ја " "направил %s." -#: libraries/tbl_properties.inc.php:725 server_engines.php:57 -#: tbl_operations.php:354 +#: libraries/tbl_properties.inc.php:724 server_engines.php:56 +#: tbl_operations.php:352 msgid "Storage Engine" msgstr "Вид на складиште" -#: libraries/tbl_properties.inc.php:754 +#: libraries/tbl_properties.inc.php:753 msgid "PARTITION definition" msgstr "" -#: libraries/tbl_properties.inc.php:775 pdf_pages.php:502 +#: libraries/tbl_properties.inc.php:774 pdf_pages.php:501 #: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214 -#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1124 tbl_indexes.php:247 -#: tbl_relation.php:565 +#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1022 tbl_indexes.php:246 +#: tbl_relation.php:563 msgid "Save" msgstr "Сочувај" -#: libraries/tbl_properties.inc.php:779 tbl_structure.php:541 +#: libraries/tbl_properties.inc.php:778 tbl_structure.php:539 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "Додади %s полиња" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:535 +#: libraries/tbl_properties.inc.php:782 tbl_structure.php:533 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." @@ -4091,8 +4135,8 @@ msgstr "" msgid "Custom color" msgstr "" -#: main.php:162 pdf_pages.php:362 setup/lib/FormDisplay.tpl.php:216 -#: tbl_change.php:1173 +#: main.php:162 pdf_pages.php:361 setup/lib/FormDisplay.tpl.php:216 +#: tbl_change.php:1071 msgid "Reset" msgstr "Поништи" @@ -4100,8 +4144,8 @@ msgstr "Поништи" msgid "Protocol version" msgstr "" -#: main.php:188 server_privileges.php:1381 server_privileges.php:1528 -#: server_privileges.php:1642 server_privileges.php:2060 +#: main.php:188 server_privileges.php:1385 server_privileges.php:1532 +#: server_privileges.php:1646 server_privileges.php:2064 #: server_processlist.php:53 msgid "User" msgstr "Корисник" @@ -4186,21 +4230,30 @@ msgid "" "has been configured." msgstr "" -#: main.php:330 +#: main.php:314 +#, php-format +msgid "" +"The additional features for working with linked tables have been " +"deactivated. To find out why click %shere%s." +msgstr "" +"Дополнителните можности за работа со поврзаните табели се исклучени. За да " +"дознаете зошто, кликнете %sовде%s." + +#: main.php:329 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:345 +#: main.php:344 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: main.php:357 +#: main.php:356 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -4211,68 +4264,68 @@ msgstr "" msgid "Reload navigation frame" msgstr "" -#: navigation.php:204 server_databases.php:370 server_synchronize.php:1190 +#: navigation.php:203 server_databases.php:368 server_synchronize.php:1189 msgid "No databases" msgstr "Базата на податоци не постои" -#: navigation.php:298 +#: navigation.php:297 msgid "Filter" msgstr "" -#: navigation.php:299 setup/frames/index.inc.php:218 +#: navigation.php:298 setup/frames/index.inc.php:218 #: setup/lib/messages.inc.php:41 #, fuzzy msgid "Clear" msgstr "Календар" -#: navigation.php:330 navigation.php:331 +#: navigation.php:329 navigation.php:330 #, fuzzy msgctxt "short form" msgid "Create table" msgstr "Направи нова страница" -#: navigation.php:333 navigation.php:495 +#: navigation.php:332 navigation.php:494 msgid "Please select a database" msgstr "Изберете база на податоци" -#: pdf_pages.php:40 pdf_pages.php:46 pdf_pages.php:52 pdf_pages.php:57 +#: pdf_pages.php:39 pdf_pages.php:45 pdf_pages.php:51 pdf_pages.php:56 #, php-format msgid "%s table not found or not set in %s" msgstr "%s табелата не е пронајдена или не е поставена во %s" -#: pdf_pages.php:265 +#: pdf_pages.php:264 msgid "Please choose a page to edit" msgstr "Изберете страница која менувате" -#: pdf_pages.php:303 pmd_pdf.php:113 +#: pdf_pages.php:302 pmd_pdf.php:111 msgid "Create a page" msgstr "Направи нова страница" -#: pdf_pages.php:309 +#: pdf_pages.php:308 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Број на страници:" -#: pdf_pages.php:313 +#: pdf_pages.php:312 #, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "Автоматски распоред" -#: pdf_pages.php:315 +#: pdf_pages.php:314 msgid "Internal relations" msgstr "Внатрешни релации" -#: pdf_pages.php:338 +#: pdf_pages.php:337 msgid "Select Tables" msgstr "Избери табели" -#: pdf_pages.php:361 +#: pdf_pages.php:360 msgid "Toggle scratchboard" msgstr "Вклучи/исклучи работна табела" -#: pdf_pages.php:524 +#: pdf_pages.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -4280,37 +4333,37 @@ msgstr "" "Актуелната страница има референци кон табели кои не постојат. Сакате ли да " "ги избиршете тие референци?" -#: pdf_schema.php:635 +#: pdf_schema.php:634 #, fuzzy, php-format #| msgid "The \"%s\" table doesn't exist!" msgid "The %s table doesn't exist!" msgstr "Табелата \"%s\" не постои!" -#: pdf_schema.php:671 +#: pdf_schema.php:670 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Подесете ги координатите за табелата %s" -#: pdf_schema.php:994 +#: pdf_schema.php:993 #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" msgstr "Шема на базата \"%s\" - Страница %s" -#: pdf_schema.php:1012 +#: pdf_schema.php:1011 msgid "No tables" msgstr "Нема табела" -#: pdf_schema.php:1031 pdf_schema.php:1140 +#: pdf_schema.php:1030 pdf_schema.php:1139 msgid "Relational schema" msgstr "Релациона шема" -#: pdf_schema.php:1115 +#: pdf_schema.php:1114 msgid "Table of contents" msgstr "Содржина" -#: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:145 -#: tbl_structure.php:182 tbl_tracking.php:277 +#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 +#: tbl_structure.php:181 tbl_tracking.php:272 msgid "Extra" msgstr "Дополнително" @@ -4322,7 +4375,7 @@ msgstr "" msgid "Save position" msgstr "" -#: pmd_general.php:70 server_synchronize.php:428 server_synchronize.php:871 +#: pmd_general.php:70 server_synchronize.php:427 server_synchronize.php:870 #, fuzzy msgid "Create table" msgstr "Направи нова страница" @@ -4395,32 +4448,32 @@ msgid "" "appropriate column name." msgstr "" -#: pmd_pdf.php:62 +#: pmd_pdf.php:60 #, fuzzy msgid "Page has been created" msgstr "Табелата %s е избришана" -#: pmd_pdf.php:64 +#: pmd_pdf.php:62 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:84 +#: pmd_pdf.php:82 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:88 +#: pmd_pdf.php:86 msgid "recommended" msgstr "" -#: pmd_pdf.php:93 +#: pmd_pdf.php:91 msgid "to/from page" msgstr "" -#: querywindow.php:94 +#: querywindow.php:93 msgid "Import files" msgstr "Увоз на податотека" -#: querywindow.php:105 +#: querywindow.php:104 msgid "All" msgstr "Се" @@ -4467,65 +4520,65 @@ msgstr "Информации" msgid "Character Sets and Collations" msgstr "Кодни страници и подредување" -#: server_databases.php:51 +#: server_databases.php:49 msgid "No databases selected." msgstr "Не е избрана ни една база на податоци." -#: server_databases.php:62 +#: server_databases.php:60 #, php-format msgid "%s databases have been dropped successfully." msgstr "%s базата на податоци успешно е избришана." -#: server_databases.php:87 +#: server_databases.php:85 msgid "Databases statistics" msgstr "Статистика на базата на податоци" -#: server_databases.php:116 server_status.php:370 +#: server_databases.php:114 server_status.php:370 #: setup/lib/messages.inc.php:114 msgid "Tables" msgstr "Табели" -#: server_databases.php:194 server_replication.php:180 -#: server_replication.php:208 +#: server_databases.php:192 server_replication.php:179 +#: server_replication.php:207 msgid "Master replication" msgstr "" -#: server_databases.php:196 server_replication.php:247 +#: server_databases.php:194 server_replication.php:246 msgid "Slave replication" msgstr "" -#: server_databases.php:229 +#: server_databases.php:227 #, fuzzy msgid "Jump to database" msgstr "Базата на податоци не постои" -#: server_databases.php:266 +#: server_databases.php:264 msgid "Not replicated" msgstr "" -#: server_databases.php:272 +#: server_databases.php:270 #, fuzzy msgid "Replicated" msgstr "Релации" -#: server_databases.php:288 +#: server_databases.php:286 #, php-format msgid "Check privileges for database "%s"." msgstr "Провери привилегии за базата на податоци "%s"." -#: server_databases.php:292 server_databases.php:293 +#: server_databases.php:290 server_databases.php:291 msgid "Check Privileges" msgstr "Провери привилегии" -#: server_databases.php:357 server_databases.php:358 +#: server_databases.php:355 server_databases.php:356 msgid "Enable Statistics" msgstr "Вклучи статистики" -#: server_databases.php:361 server_databases.php:362 +#: server_databases.php:359 server_databases.php:360 msgid "Disable Statistics" msgstr "Исклучи статистики" -#: server_databases.php:365 +#: server_databases.php:363 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -4533,125 +4586,125 @@ msgstr "" "Напомена: вклучувањето на статистиките може да доведе до зголемување на " "сообраќајот помеѓу веб серверот и MySQL серверот." -#: server_engines.php:48 +#: server_engines.php:47 msgid "Storage Engines" msgstr "Видови на складишта" -#: server_export.php:20 +#: server_export.php:18 msgid "View dump (schema) of databases" msgstr "Прикажи содржина (шема) на базите" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:23 server_privileges.php:265 msgid "Includes all privileges except GRANT." msgstr "Ги вклучува сите привилегии освен GRANT." -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:24 server_privileges.php:191 +#: server_privileges.php:514 msgid "Allows altering the structure of existing tables." msgstr "Дозволува промена на структурата на постоечките табели." -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:25 server_privileges.php:207 +#: server_privileges.php:520 msgid "Allows altering and dropping stored routines." msgstr "Дозволува промена и бришење на stored рутини." -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:26 server_privileges.php:183 +#: server_privileges.php:513 msgid "Allows creating new databases and tables." msgstr "Дозволува креирање на нови бази на податоци и табели." -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:27 server_privileges.php:206 +#: server_privileges.php:519 msgid "Allows creating stored routines." msgstr "Дозволува креирање на stored рутини." -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:513 msgid "Allows creating new tables." msgstr "Дозволува креирање на нови табела." -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:29 server_privileges.php:194 +#: server_privileges.php:517 msgid "Allows creating temporary tables." msgstr "Дозволува креирање на привремени табели..." -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:30 server_privileges.php:208 +#: server_privileges.php:553 msgid "Allows creating, dropping and renaming user accounts." msgstr "Дозволува креирање, бришење и преименување на корсиничките имиња." -#: server_privileges.php:32 server_privileges.php:199 -#: server_privileges.php:203 server_privileges.php:526 -#: server_privileges.php:530 +#: server_privileges.php:31 server_privileges.php:198 +#: server_privileges.php:202 server_privileges.php:525 +#: server_privileges.php:529 msgid "Allows creating new views." msgstr "Дозволува креирање на нови погледи." -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:32 server_privileges.php:182 +#: server_privileges.php:505 msgid "Allows deleting data." msgstr "Дозволува бришење на податоци." -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:33 server_privileges.php:184 +#: server_privileges.php:516 msgid "Allows dropping databases and tables." msgstr "Дозволува бришење на бази на податоци и табели." -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:34 server_privileges.php:516 msgid "Allows dropping tables." msgstr "Дозволува бришење на табели." -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:35 server_privileges.php:199 +#: server_privileges.php:533 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:36 server_privileges.php:209 +#: server_privileges.php:521 msgid "Allows executing stored routines." msgstr "Дозволува извршување на stored рутини." -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:37 server_privileges.php:188 +#: server_privileges.php:508 msgid "Allows importing data from and exporting data into files." msgstr "Дозволува увоз на податоци и нивен извоз во податотеки." -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:38 server_privileges.php:539 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Дозволува додавање на корисници и привилегии без повтроно вчитавање на " "табелата на привилегии." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:515 msgid "Allows creating and dropping indexes." msgstr "Дозволува креирање и бришење на клучева." -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:40 server_privileges.php:180 +#: server_privileges.php:441 server_privileges.php:503 msgid "Allows inserting and replacing data." msgstr "Дозволува вметнување и замена на података." -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:41 server_privileges.php:195 +#: server_privileges.php:548 msgid "Allows locking tables for the current thread." msgstr "Дозволува заклучување на табели на тековните процеси." -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:42 server_privileges.php:645 +#: server_privileges.php:647 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Го ограничува бројот на нови конекции кои корисникот може да ги отвори за " "еден час." -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:43 server_privileges.php:633 +#: server_privileges.php:635 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Го ограничува бројот на упити кои корисникот може да ги постави на серверот " "за еден час." -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:44 server_privileges.php:639 +#: server_privileges.php:641 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -4659,63 +4712,63 @@ msgstr "" "Го ограничува бројот на команди кои ги менуваат табелите или базите на " "податоци кои корисникот може да ги изврши за еден час." -#: server_privileges.php:46 server_privileges.php:652 -#: server_privileges.php:654 +#: server_privileges.php:45 server_privileges.php:651 +#: server_privileges.php:653 #, fuzzy msgid "Limits the number of simultaneous connections the user may have." msgstr "" "Го ограничува бројот на нови конекции кои корисникот може да ги отвори за " "еден час." -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:46 server_privileges.php:187 +#: server_privileges.php:543 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:47 server_privileges.php:189 +#: server_privileges.php:447 server_privileges.php:549 msgid "Has no effect in this MySQL version." msgstr "Нема ефект во оваа верзији на MySQL." -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:48 server_privileges.php:185 +#: server_privileges.php:544 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Дозволува повтоно вчитување на подесувањата на серверот и празнење на кешот " "на серверот." -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:197 +#: server_privileges.php:551 msgid "Allows the user to ask where the slaves / masters are." msgstr "Дава права на кориснику да праша каде се главните/помошни сервери." -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:50 server_privileges.php:196 +#: server_privileges.php:552 msgid "Needed for the replication slaves." msgstr "Потребно заради помошните сервери за репликација." -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:51 server_privileges.php:179 +#: server_privileges.php:438 server_privileges.php:502 msgid "Allows reading data." msgstr "Дозволува читање на податоци." -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:52 server_privileges.php:192 +#: server_privileges.php:546 msgid "Gives access to the complete list of databases." msgstr "Дава пристап на комплетната листа на базите на податоци." -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:53 server_privileges.php:203 +#: server_privileges.php:205 server_privileges.php:518 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Дозволува извршување на SHOW CREATE VIEW упити." -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:54 server_privileges.php:186 +#: server_privileges.php:545 msgid "Allows shutting down the server." msgstr "Дозволува гасење на серверот." -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:55 server_privileges.php:193 +#: server_privileges.php:542 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -4725,161 +4778,161 @@ msgstr "" "Неопходно за повеќето административни опции како што е подесување на " "глобални променливи или прекин на процеси наостанатите корисници." -#: server_privileges.php:57 server_privileges.php:201 -#: server_privileges.php:535 +#: server_privileges.php:56 server_privileges.php:200 +#: server_privileges.php:534 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "Дозволува креирање и бришење на клучева." -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:57 server_privileges.php:181 +#: server_privileges.php:444 server_privileges.php:504 msgid "Allows changing data." msgstr "Дозволува измена на податоци." -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:58 server_privileges.php:259 msgid "No privileges." msgstr "Нема привилегии." -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:301 server_privileges.php:302 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "нема" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1710 server_privileges.php:1716 +#: server_privileges.php:430 server_privileges.php:565 +#: server_privileges.php:1714 server_privileges.php:1720 msgid "Table-specific privileges" msgstr "Привилегии поврзани со табелата" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1532 +#: server_privileges.php:431 server_privileges.php:573 +#: server_privileges.php:1536 msgid " Note: MySQL privilege names are expressed in English " msgstr "" " Напомена: MySQL имињата на привилегите мора да бидат со латинични букви " -#: server_privileges.php:563 server_privileges.php:1531 +#: server_privileges.php:562 server_privileges.php:1535 msgid "Global privileges" msgstr "Глобални привилегии" -#: server_privileges.php:565 server_privileges.php:1710 +#: server_privileges.php:564 server_privileges.php:1714 msgid "Database-specific privileges" msgstr "Привилегии во врска со базата на податоци" -#: server_privileges.php:610 +#: server_privileges.php:609 msgid "Administration" msgstr "Администрација" -#: server_privileges.php:630 +#: server_privileges.php:629 msgid "Resource limits" msgstr "Ограничување на ресурси" -#: server_privileges.php:631 +#: server_privileges.php:630 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" "Напомена: Поставувањето на овие опции на 0 (нула) ги отстранува " "ограничувањата." -#: server_privileges.php:708 +#: server_privileges.php:707 msgid "Login Information" msgstr "Податоци за најавувањето" -#: server_privileges.php:802 +#: server_privileges.php:801 msgid "Do not change the password" msgstr "Немој да ја менуваш лозинката" -#: server_privileges.php:835 server_privileges.php:2197 +#: server_privileges.php:834 server_privileges.php:2201 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Корисникот не е пронајден." -#: server_privileges.php:879 +#: server_privileges.php:878 #, php-format msgid "The user %s already exists!" msgstr "Корисник %s веќе постои!" -#: server_privileges.php:962 +#: server_privileges.php:961 msgid "You have added a new user." msgstr "Додадовте нов корисник." -#: server_privileges.php:1183 +#: server_privileges.php:1184 #, php-format msgid "You have updated the privileges for %s." msgstr "Ги ажуриравте привилегиите за %s." -#: server_privileges.php:1207 +#: server_privileges.php:1208 #, php-format msgid "You have revoked the privileges for %s" msgstr "Ги забранивте привилегиите за %s" -#: server_privileges.php:1243 +#: server_privileges.php:1244 #, php-format msgid "The password for %s was changed successfully." msgstr "Лозинката за %s успешно е променета." -#: server_privileges.php:1263 +#: server_privileges.php:1264 #, php-format msgid "Deleting %s" msgstr "Бришам %s" -#: server_privileges.php:1274 +#: server_privileges.php:1275 msgid "No users selected for deleting!" msgstr "" -#: server_privileges.php:1277 +#: server_privileges.php:1278 msgid "Reloading the privileges" msgstr "Повторно ги вчитувам привилегиите" -#: server_privileges.php:1292 +#: server_privileges.php:1296 msgid "The selected users have been deleted successfully." msgstr "Изабраните корисници успешно се избришани." -#: server_privileges.php:1327 +#: server_privileges.php:1331 msgid "The privileges were reloaded successfully." msgstr "Привилегиите се успешно вчитани." -#: server_privileges.php:1355 server_privileges.php:1641 +#: server_privileges.php:1359 server_privileges.php:1645 msgid "Edit Privileges" msgstr "Промена на привилегии" -#: server_privileges.php:1364 +#: server_privileges.php:1368 msgid "Revoke" msgstr "Забрани" -#: server_privileges.php:1396 +#: server_privileges.php:1400 msgid "User overview" msgstr "Преглед на корисници" -#: server_privileges.php:1533 server_privileges.php:1715 -#: server_privileges.php:2064 +#: server_privileges.php:1537 server_privileges.php:1719 +#: server_privileges.php:2068 msgid "Grant" msgstr "Овозможи" -#: server_privileges.php:1552 server_privileges.php:2154 +#: server_privileges.php:1556 server_privileges.php:2158 msgid "Any" msgstr "Било кој" -#: server_privileges.php:1601 server_privileges.php:1625 -#: server_privileges.php:2019 server_privileges.php:2208 +#: server_privileges.php:1605 server_privileges.php:1629 +#: server_privileges.php:2023 server_privileges.php:2212 msgid "Add a new User" msgstr "Додади нов корисник" -#: server_privileges.php:1606 +#: server_privileges.php:1610 msgid "Remove selected users" msgstr "Избриши ги селектираните корисници" -#: server_privileges.php:1609 +#: server_privileges.php:1613 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Одземи ги сите привилегии на активните корисници а потоа избриши ги." -#: server_privileges.php:1610 server_privileges.php:1611 -#: server_privileges.php:1612 +#: server_privileges.php:1614 server_privileges.php:1615 +#: server_privileges.php:1616 msgid "Drop the databases that have the same names as the users." msgstr "" "Избриши ги базите на податоци кои се именувани исто како и корисниците." -#: server_privileges.php:1628 +#: server_privileges.php:1632 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4893,49 +4946,49 @@ msgstr "" "измени. Во тој случај %sповторно вчитајте ги привилегиите%s пред да " "продолжите со работа." -#: server_privileges.php:1676 +#: server_privileges.php:1680 msgid "The selected user was not found in the privilege table." msgstr "Изабраниот корисник не е пронајден во табелата на привилегии." -#: server_privileges.php:1716 +#: server_privileges.php:1720 msgid "Column-specific privileges" msgstr "Привилегии врзани за колоните" -#: server_privileges.php:1917 +#: server_privileges.php:1921 msgid "Add privileges on the following database" msgstr "Додади привилегии на следната база" -#: server_privileges.php:1935 +#: server_privileges.php:1939 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "Пред џокер знаците _ и % треба да стои знакот \\ ако ги користите самостојно" -#: server_privileges.php:1938 +#: server_privileges.php:1942 msgid "Add privileges on the following table" msgstr "Додади привилегии на следната табела" -#: server_privileges.php:1995 +#: server_privileges.php:1999 msgid "Change Login Information / Copy User" msgstr "Промени ги информациите за најавувањето / Копирај го корисникот" -#: server_privileges.php:1998 +#: server_privileges.php:2002 msgid "Create a new user with the same privileges and ..." msgstr "Направи нов корисник со исти привилегии и ..." -#: server_privileges.php:2000 +#: server_privileges.php:2004 msgid "... keep the old one." msgstr "... сочувај го стариот." -#: server_privileges.php:2001 +#: server_privileges.php:2005 msgid " ... delete the old one from the user tables." msgstr " ... избриши ги старите од табелата на корисници." -#: server_privileges.php:2002 +#: server_privileges.php:2006 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr " ... прво одземи ги сите привилегии на корисниците а потоа избриши ги." -#: server_privileges.php:2003 +#: server_privileges.php:2007 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -4943,44 +4996,44 @@ msgstr "" " ... избриши го стариот корисник од табелата на корисници а потоа повторно " "вчитај ги привилегиите." -#: server_privileges.php:2025 +#: server_privileges.php:2029 msgid "Database for user" msgstr "" -#: server_privileges.php:2029 +#: server_privileges.php:2033 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "нема" -#: server_privileges.php:2030 +#: server_privileges.php:2034 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2031 +#: server_privileges.php:2035 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2034 +#: server_privileges.php:2038 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "Провери привилегии за базата на податоци "%s"." -#: server_privileges.php:2057 +#: server_privileges.php:2061 #, php-format msgid "Users having access to "%s"" msgstr "Корисници кои имаат пристап "%s"" -#: server_privileges.php:2165 +#: server_privileges.php:2169 msgid "global" msgstr "глобално" -#: server_privileges.php:2167 +#: server_privileges.php:2171 msgid "database-specific" msgstr "Специфично за базата на податоци" -#: server_privileges.php:2169 +#: server_privileges.php:2173 msgid "wildcard" msgstr "џокер" @@ -5000,53 +5053,53 @@ msgstr "" msgid "ID" msgstr "ID" -#: server_replication.php:50 +#: server_replication.php:49 msgid "Unknown error" msgstr "" -#: server_replication.php:57 +#: server_replication.php:56 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:64 +#: server_replication.php:63 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:70 +#: server_replication.php:69 msgid "Unable to change master" msgstr "" -#: server_replication.php:73 +#: server_replication.php:72 #, php-format msgid "Master server changed succesfully to %s" msgstr "" -#: server_replication.php:181 +#: server_replication.php:180 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:183 server_status.php:391 +#: server_replication.php:182 server_status.php:391 msgid "Show master status" msgstr "" -#: server_replication.php:186 +#: server_replication.php:185 msgid "Show connected slaves" msgstr "" -#: server_replication.php:209 +#: server_replication.php:208 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:216 +#: server_replication.php:215 msgid "Master configuration" msgstr "" -#: server_replication.php:217 +#: server_replication.php:216 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -5055,110 +5108,110 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:220 +#: server_replication.php:219 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:221 +#: server_replication.php:220 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:224 +#: server_replication.php:223 #, fuzzy msgid "Please select databases:" msgstr "Изберете база на податоци" -#: server_replication.php:227 +#: server_replication.php:226 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: server_replication.php:229 +#: server_replication.php:228 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: server_replication.php:292 +#: server_replication.php:291 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:295 +#: server_replication.php:294 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:304 +#: server_replication.php:303 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:307 +#: server_replication.php:306 msgid "See slave status table" msgstr "" -#: server_replication.php:310 +#: server_replication.php:309 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:321 +#: server_replication.php:320 msgid "Control slave:" msgstr "" -#: server_replication.php:324 +#: server_replication.php:323 #, fuzzy msgid "Full start" msgstr "Текст клуч" -#: server_replication.php:324 +#: server_replication.php:323 msgid "Full stop" msgstr "" -#: server_replication.php:325 +#: server_replication.php:324 msgid "Reset slave" msgstr "" -#: server_replication.php:326 +#: server_replication.php:325 #, php-format msgid "SQL Thread %s only" msgstr "" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 #, fuzzy msgid "Start" msgstr "Саб" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 msgid "Stop" msgstr "" -#: server_replication.php:327 +#: server_replication.php:326 #, php-format msgid "IO Thread %s only" msgstr "" -#: server_replication.php:331 +#: server_replication.php:330 msgid "Error management:" msgstr "" -#: server_replication.php:333 +#: server_replication.php:332 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:335 +#: server_replication.php:334 msgid "Skip current error" msgstr "" -#: server_replication.php:336 +#: server_replication.php:335 msgid "Skip next" msgstr "" -#: server_replication.php:339 +#: server_replication.php:338 msgid "errors." msgstr "" -#: server_replication.php:354 +#: server_replication.php:353 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -5868,112 +5921,112 @@ msgstr "Вид на упит" msgid "Replication status" msgstr "" -#: server_synchronize.php:93 +#: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:96 +#: server_synchronize.php:95 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:121 server_synchronize.php:124 tbl_create.php:77 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:264 +#: server_synchronize.php:263 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:271 +#: server_synchronize.php:270 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:399 server_synchronize.php:838 +#: server_synchronize.php:398 server_synchronize.php:837 msgid "not present" msgstr "" -#: server_synchronize.php:423 server_synchronize.php:866 +#: server_synchronize.php:422 server_synchronize.php:865 msgid "Structure Difference" msgstr "" -#: server_synchronize.php:424 server_synchronize.php:867 +#: server_synchronize.php:423 server_synchronize.php:866 msgid "Data Difference" msgstr "" -#: server_synchronize.php:429 server_synchronize.php:872 +#: server_synchronize.php:428 server_synchronize.php:871 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:430 server_synchronize.php:873 +#: server_synchronize.php:429 server_synchronize.php:872 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:431 server_synchronize.php:874 +#: server_synchronize.php:430 server_synchronize.php:873 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:432 server_synchronize.php:875 +#: server_synchronize.php:431 server_synchronize.php:874 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:433 server_synchronize.php:876 +#: server_synchronize.php:432 server_synchronize.php:875 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:434 server_synchronize.php:877 +#: server_synchronize.php:433 server_synchronize.php:876 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:435 server_synchronize.php:878 +#: server_synchronize.php:434 server_synchronize.php:877 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:445 server_synchronize.php:889 +#: server_synchronize.php:444 server_synchronize.php:888 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:448 server_synchronize.php:893 +#: server_synchronize.php:447 server_synchronize.php:892 msgid "Apply Selected Changes" msgstr "" -#: server_synchronize.php:450 server_synchronize.php:895 +#: server_synchronize.php:449 server_synchronize.php:894 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:463 +#: server_synchronize.php:462 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:941 +#: server_synchronize.php:940 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:1002 +#: server_synchronize.php:1001 msgid "The following queries have been executed:" msgstr "" -#: server_synchronize.php:1121 +#: server_synchronize.php:1120 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1122 +#: server_synchronize.php:1121 #, fuzzy #| msgid "Connections" msgid "Current connection" msgstr "Конекции" -#: server_synchronize.php:1151 +#: server_synchronize.php:1150 #, php-format msgid "Configuration: %s" msgstr "" -#: server_synchronize.php:1166 +#: server_synchronize.php:1165 msgid "Socket" msgstr "" -#: server_synchronize.php:1212 +#: server_synchronize.php:1211 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -6530,8 +6583,8 @@ msgstr "" #: setup/lib/messages.inc.php:128 msgid "" "Configure phpMyAdmin database to gain access to additional features, see " -"[a@../Documentation.html#linked-tables]linked-tables infrastructure[/a] in " -"documentation" +"[a@../Documentation.html#linked-tables]phpMyAdmin configuration storage[/a] " +"in documentation" msgstr "" #: setup/lib/messages.inc.php:129 setup/lib/messages.inc.php:290 @@ -7592,53 +7645,53 @@ msgstr "" msgid "ZIP" msgstr "" -#: sql.php:495 tbl_replace.php:385 +#: sql.php:494 tbl_replace.php:384 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: sql.php:512 +#: sql.php:511 msgid "Showing as PHP code" msgstr "" -#: sql.php:515 tbl_replace.php:359 +#: sql.php:514 tbl_replace.php:358 msgid "Showing SQL query" msgstr "" -#: sql.php:517 +#: sql.php:516 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Провери SQL" -#: sql.php:638 +#: sql.php:631 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Проблем при индексирање на табелата `%s`" -#: sql.php:670 +#: sql.php:663 msgid "Label" msgstr "Назив" -#: tbl_addfield.php:188 tbl_alter.php:102 tbl_indexes.php:97 +#: tbl_addfield.php:185 tbl_alter.php:100 tbl_indexes.php:97 #, fuzzy, php-format msgid "Table %1$s has been altered successfully" msgstr "Изабраните корисници успешно се избришани." -#: tbl_change.php:250 tbl_select.php:26 tbl_select.php:27 tbl_select.php:30 -#: tbl_select.php:33 +#: tbl_change.php:245 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_select.php:32 msgid "Browse foreign values" msgstr "Прегледни ги надворешните вредности" -#: tbl_change.php:280 tbl_change.php:318 +#: tbl_change.php:275 tbl_change.php:313 msgid "Function" msgstr "Функција" -#: tbl_change.php:300 tbl_indexes.php:199 tbl_indexes.php:224 +#: tbl_change.php:295 tbl_indexes.php:198 tbl_indexes.php:223 msgid "Ignore" msgstr "Игнорирај" -#: tbl_change.php:725 +#: tbl_change.php:720 #, fuzzy #| msgid " Because of its length,
                            this field might not be editable " msgid " Because of its length,
                            this column might not be editable " @@ -7646,64 +7699,64 @@ msgstr "" "Поради големина на полето
                            можеби нема да може да ја менувате неговата " "содржина" -#: tbl_change.php:884 +#: tbl_change.php:835 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:890 +#: tbl_change.php:841 msgid "Binary - do not edit" msgstr "Бинарен - не менувај" -#: tbl_change.php:983 +#: tbl_change.php:889 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:1128 +#: tbl_change.php:1026 msgid "Insert as new row" msgstr "Внеси како нов запис" -#: tbl_change.php:1129 +#: tbl_change.php:1027 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:1130 +#: tbl_change.php:1028 msgid "Show insert query" msgstr "" -#: tbl_change.php:1145 +#: tbl_change.php:1043 msgid "Go back to previous page" msgstr "Назад на претходната страница" -#: tbl_change.php:1146 +#: tbl_change.php:1044 msgid "Insert another new row" msgstr "Додади уште еден нов запис" -#: tbl_change.php:1150 +#: tbl_change.php:1048 msgid "Go back to this page" msgstr "Врати се на оваа страница" -#: tbl_change.php:1158 +#: tbl_change.php:1056 msgid "Edit next row" msgstr "Ажурирање на следниот запис" -#: tbl_change.php:1169 +#: tbl_change.php:1067 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Користете го TAB тастерот за движење од поле во поле, или CTRL+стрелка за " "слободно движење" -#: tbl_change.php:1207 +#: tbl_change.php:1105 #, php-format msgid "Restart insertion with %s rows" msgstr "" -#: tbl_create.php:57 +#: tbl_create.php:55 #, fuzzy, php-format msgid "Table %s already exists!" msgstr "Корисник %s веќе постои!" -#: tbl_create.php:244 +#: tbl_create.php:241 #, fuzzy, php-format msgid "Table %1$s has been created." msgstr "Табелата %s е избришана" @@ -7724,203 +7777,203 @@ msgstr "Не можам да го променам клучот во PRIMARY (п msgid "No index parts defined!" msgstr "Делови од клучот не се дефинирани!" -#: tbl_indexes.php:159 +#: tbl_indexes.php:158 msgid "Create a new index" msgstr "Креирај нов клуч" -#: tbl_indexes.php:161 +#: tbl_indexes.php:160 msgid "Modify an index" msgstr "Промени го клучот" -#: tbl_indexes.php:167 +#: tbl_indexes.php:166 msgid "Index name:" msgstr "Име на клуч :" -#: tbl_indexes.php:173 +#: tbl_indexes.php:172 msgid "Index type:" msgstr "Тип на клуч :" -#: tbl_indexes.php:183 +#: tbl_indexes.php:182 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "(\"PRIMARY\" може да биде име само на примарниот клуч!)" -#: tbl_indexes.php:250 +#: tbl_indexes.php:249 #, php-format msgid "Add to index  %s column(s)" msgstr "Додади во клучот  %s колона(и)" -#: tbl_indexes.php:255 tbl_structure.php:588 tbl_structure.php:599 +#: tbl_indexes.php:254 tbl_structure.php:586 tbl_structure.php:597 msgid "Column count has to be larger than zero." msgstr "" -#: tbl_move_copy.php:45 +#: tbl_move_copy.php:44 msgid "Can't move table to same one!" msgstr "Не може да ја преместам табелата во самата себе!" -#: tbl_move_copy.php:47 +#: tbl_move_copy.php:46 msgid "Can't copy table to same one!" msgstr "Не можам да ја копирам табелата во самата себе!" -#: tbl_move_copy.php:55 +#: tbl_move_copy.php:54 #, php-format msgid "Table %s has been moved to %s." msgstr "Табелата %s е преместена во %s." -#: tbl_move_copy.php:57 +#: tbl_move_copy.php:56 #, php-format msgid "Table %s has been copied to %s." msgstr "Табелата %s е копирана во %s." -#: tbl_move_copy.php:81 +#: tbl_move_copy.php:80 msgid "The table name is empty!" msgstr "Името на табелата е празно!" -#: tbl_operations.php:248 +#: tbl_operations.php:246 msgid "Alter table order by" msgstr "Промени го редоследот во табелата" -#: tbl_operations.php:257 +#: tbl_operations.php:255 msgid "(singly)" msgstr "(по едно поле)" -#: tbl_operations.php:277 +#: tbl_operations.php:275 msgid "Move table to (database.table):" msgstr "Премести ја табелата во (база.табела):" -#: tbl_operations.php:335 +#: tbl_operations.php:333 msgid "Table options" msgstr "Опции на табелата" -#: tbl_operations.php:339 +#: tbl_operations.php:337 msgid "Rename table to" msgstr "Промени го името на табелата во " -#: tbl_operations.php:510 +#: tbl_operations.php:508 msgid "Copy table to (database.table):" msgstr "Копирај ја табелата во (база.табела):" -#: tbl_operations.php:557 +#: tbl_operations.php:555 msgid "Switch to copied table" msgstr "Премини на копираната табела" -#: tbl_operations.php:569 +#: tbl_operations.php:567 msgid "Table maintenance" msgstr "Можете да извршите:" -#: tbl_operations.php:590 +#: tbl_operations.php:588 msgid "Defragment table" msgstr "Дефрагментирај ја табелата" -#: tbl_operations.php:629 +#: tbl_operations.php:627 #, php-format msgid "Table %s has been flushed" msgstr "Табелата %s е освежена" -#: tbl_operations.php:635 +#: tbl_operations.php:633 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Освежување на табелата (\"FLUSH\")" -#: tbl_operations.php:650 +#: tbl_operations.php:648 #, fuzzy msgid "Partition maintenance" msgstr "Можете да извршите:" -#: tbl_operations.php:658 +#: tbl_operations.php:656 #, php-format msgid "Partition %s" msgstr "" -#: tbl_operations.php:661 +#: tbl_operations.php:659 msgid "Analyze" msgstr "" -#: tbl_operations.php:662 +#: tbl_operations.php:660 #, fuzzy msgid "Check" msgstr "Чешки" -#: tbl_operations.php:663 +#: tbl_operations.php:661 msgid "Optimize" msgstr "" -#: tbl_operations.php:664 +#: tbl_operations.php:662 msgid "Rebuild" msgstr "" -#: tbl_operations.php:665 +#: tbl_operations.php:663 #, fuzzy msgid "Repair" msgstr "Поправка на табелата" -#: tbl_operations.php:677 +#: tbl_operations.php:675 msgid "Remove partitioning" msgstr "" -#: tbl_operations.php:703 +#: tbl_operations.php:701 msgid "Check referential integrity:" msgstr "Провери го референцијалниот интегритет:" -#: tbl_printview.php:73 +#: tbl_printview.php:72 msgid "Show tables" msgstr "Прикажи табели" -#: tbl_printview.php:308 tbl_structure.php:655 +#: tbl_printview.php:307 tbl_structure.php:653 msgid "Space usage" msgstr "Големина" -#: tbl_printview.php:312 tbl_structure.php:659 +#: tbl_printview.php:311 tbl_structure.php:657 msgid "Usage" msgstr "Големина" -#: tbl_printview.php:339 tbl_structure.php:686 +#: tbl_printview.php:338 tbl_structure.php:684 msgid "Effective" msgstr "Ефективни" -#: tbl_printview.php:364 tbl_structure.php:724 +#: tbl_printview.php:363 tbl_structure.php:722 msgid "Row Statistics" msgstr "Статистики за записите" -#: tbl_printview.php:367 tbl_structure.php:727 +#: tbl_printview.php:366 tbl_structure.php:725 msgid "Statements" msgstr "Име" -#: tbl_printview.php:378 tbl_structure.php:739 +#: tbl_printview.php:377 tbl_structure.php:737 msgid "static" msgstr "" -#: tbl_printview.php:380 tbl_structure.php:741 +#: tbl_printview.php:379 tbl_structure.php:739 msgid "dynamic" msgstr "динамички" -#: tbl_printview.php:402 tbl_structure.php:784 +#: tbl_printview.php:401 tbl_structure.php:782 msgid "Row length" msgstr "Должина на запис" -#: tbl_printview.php:412 tbl_structure.php:792 +#: tbl_printview.php:411 tbl_structure.php:790 msgid " Row size " msgstr "Големина на запис" -#: tbl_relation.php:278 +#: tbl_relation.php:276 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" -#: tbl_relation.php:404 +#: tbl_relation.php:402 #, fuzzy #| msgid "Internal relations" msgid "Internal relation" msgstr "Внатрешни релации" -#: tbl_relation.php:406 +#: tbl_relation.php:404 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: tbl_relation.php:412 +#: tbl_relation.php:410 msgid "Foreign key constraint" msgstr "" @@ -7928,233 +7981,233 @@ msgstr "" msgid "No rows selected" msgstr "Нема селектирани записи" -#: tbl_select.php:130 +#: tbl_select.php:129 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Направи \"упит по пример\" (џокер знак: \"%\")" -#: tbl_select.php:136 +#: tbl_select.php:135 msgid "Operator" msgstr "Оператор" -#: tbl_select.php:267 +#: tbl_select.php:266 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "Избери полиња (најмалку едно)" -#: tbl_select.php:285 +#: tbl_select.php:284 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Додади услови за пребарување (делот \"WHERE\" од упитот):" -#: tbl_select.php:292 +#: tbl_select.php:291 msgid "Number of rows per page" msgstr "Број на записи на страница" -#: tbl_select.php:298 +#: tbl_select.php:297 msgid "Display order:" msgstr "Редослед на приказ:" -#: tbl_structure.php:160 +#: tbl_structure.php:159 #, fuzzy msgid "Browse distinct values" msgstr "Прегледни ги надворешните вредности" -#: tbl_structure.php:360 +#: tbl_structure.php:358 #, fuzzy #| msgid "None" msgctxt "None for default" msgid "None" msgstr "нема" -#: tbl_structure.php:373 +#: tbl_structure.php:371 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Column %s has been dropped" msgstr "Табелата %s е избришана" -#: tbl_structure.php:384 +#: tbl_structure.php:382 #, php-format msgid "A primary key has been added on %s" msgstr "Примарниот клуч %s е додаден" -#: tbl_structure.php:399 tbl_structure.php:413 tbl_structure.php:427 +#: tbl_structure.php:397 tbl_structure.php:411 tbl_structure.php:425 #, php-format msgid "An index has been added on %s" msgstr "Клучот е додаден %s" -#: tbl_structure.php:505 tbl_structure.php:507 +#: tbl_structure.php:503 tbl_structure.php:505 msgid "Relation view" msgstr "Релационен поглед" -#: tbl_structure.php:514 tbl_structure.php:516 +#: tbl_structure.php:512 tbl_structure.php:514 msgid "Propose table structure" msgstr "Предложи структура на табелата" -#: tbl_structure.php:539 +#: tbl_structure.php:537 #, fuzzy #| msgid "Add %s field(s)" msgid "Add column" msgstr "Додади %s полиња" -#: tbl_structure.php:553 +#: tbl_structure.php:551 msgid "At End of Table" msgstr "на крајот од табелата" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At Beginning of Table" msgstr "на почетокот од табелата" -#: tbl_structure.php:555 +#: tbl_structure.php:553 #, php-format msgid "After %s" msgstr "после полето %s" -#: tbl_structure.php:593 +#: tbl_structure.php:591 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "Направи клуч на %s колони" -#: tbl_structure.php:755 +#: tbl_structure.php:753 msgid "partitioned" msgstr "" -#: tbl_tracking.php:113 +#: tbl_tracking.php:109 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:186 +#: tbl_tracking.php:182 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "" -#: tbl_tracking.php:194 +#: tbl_tracking.php:190 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "" -#: tbl_tracking.php:202 +#: tbl_tracking.php:198 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "" -#: tbl_tracking.php:212 +#: tbl_tracking.php:208 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:219 +#: tbl_tracking.php:215 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:220 +#: tbl_tracking.php:216 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:229 +#: tbl_tracking.php:225 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:250 tbl_tracking.php:378 +#: tbl_tracking.php:245 tbl_tracking.php:373 msgid "Close" msgstr "" -#: tbl_tracking.php:261 +#: tbl_tracking.php:256 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:380 +#: tbl_tracking.php:375 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:396 tbl_tracking.php:503 +#: tbl_tracking.php:391 tbl_tracking.php:498 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "" -#: tbl_tracking.php:409 tbl_tracking.php:460 +#: tbl_tracking.php:404 tbl_tracking.php:455 #, fuzzy msgid "Date" msgstr "Податоци" -#: tbl_tracking.php:410 tbl_tracking.php:461 +#: tbl_tracking.php:405 tbl_tracking.php:456 #, fuzzy msgid "Username" msgstr "Корисничко име:" -#: tbl_tracking.php:411 +#: tbl_tracking.php:406 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:462 +#: tbl_tracking.php:457 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:506 +#: tbl_tracking.php:501 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:507 +#: tbl_tracking.php:502 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:520 +#: tbl_tracking.php:515 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:560 +#: tbl_tracking.php:555 msgid "Show versions" msgstr "" -#: tbl_tracking.php:592 +#: tbl_tracking.php:587 #, fuzzy msgid "Version" msgstr "Персиски" -#: tbl_tracking.php:639 +#: tbl_tracking.php:634 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "" -#: tbl_tracking.php:641 +#: tbl_tracking.php:636 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:652 +#: tbl_tracking.php:647 #, php-format msgid "Activate tracking for %s.%s" msgstr "" -#: tbl_tracking.php:654 +#: tbl_tracking.php:649 msgid "Activate now" msgstr "" -#: tbl_tracking.php:667 +#: tbl_tracking.php:662 #, php-format msgid "Create version %s of %s.%s" msgstr "" -#: tbl_tracking.php:671 +#: tbl_tracking.php:666 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:679 +#: tbl_tracking.php:674 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:687 +#: tbl_tracking.php:682 #, fuzzy msgid "Create version" msgstr "Верзија на серверот" @@ -8205,11 +8258,36 @@ msgstr "Профилот е променет" msgid "VIEW name" msgstr "" -#: view_operations.php:92 +#: view_operations.php:91 #, fuzzy msgid "Rename view to" msgstr "Промени го името на табелата во " +#, fuzzy +#~| msgid "Enabled" +#~ msgctxt "BLOB repository" +#~ msgid "Enabled" +#~ msgstr "Овозможено" + +#, fuzzy +#~ msgid "Disable" +#~ msgstr "Оневозможено" + +#, fuzzy +#~ msgctxt "BLOB repository" +#~ msgid "Repair" +#~ msgstr "Поправка на табелата" + +#, fuzzy +#~| msgid "Disabled" +#~ msgctxt "BLOB repository" +#~ msgid "Disabled" +#~ msgstr "Оневозможено" + +#, fuzzy +#~ msgid "Enable" +#~ msgstr "Овозможено" + #~ msgid "" #~ "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " #~ "extension. Please check your PHP configuration." diff --git a/po/mn.po b/po/mn.po index b85f6da98..0a3f39598 100644 --- a/po/mn.po +++ b/po/mn.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-21 13:53+0200\n" +"POT-Creation-Date: 2010-07-26 17:18+0200\n" "PO-Revision-Date: 2010-03-12 09:17+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: mongolian \n" @@ -13,19 +13,19 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.5.3\n" -#: browse_foreigners.php:37 browse_foreigners.php:58 -#: libraries/display_tbl.lib.php:416 server_privileges.php:1506 +#: browse_foreigners.php:36 browse_foreigners.php:57 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1510 msgid "Show all" msgstr "Бүгдийг харах" -#: browse_foreigners.php:81 libraries/common.lib.php:2313 -#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:393 -#: libraries/export/pdf.php:146 pdf_schema.php:282 pdf_schema.php:1122 -#: pdf_schema.php:1138 +#: browse_foreigners.php:80 libraries/common.lib.php:2318 +#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:392 +#: libraries/export/pdf.php:146 pdf_schema.php:281 pdf_schema.php:1121 +#: pdf_schema.php:1137 msgid "Page number:" msgstr "Хуудасны дугаар:" -#: browse_foreigners.php:131 +#: browse_foreigners.php:130 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -34,139 +34,151 @@ msgstr "" "Зорилтот хөтчийн цонх шинэчлэгдсэнгүй. Магадгүй та эх цонхыг хаасан эсвэл " "таны хөтөч хамгаалалтын тохиргооны улмаас шинэчлэлтийг хориглогдсон" -#: browse_foreigners.php:149 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2829 -#: libraries/common.lib.php:2836 libraries/db_links.inc.php:74 -#: libraries/tbl_links.inc.php:62 +#: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 +#: db_structure.php:89 db_structure.php:91 db_structure.php:102 +#: db_structure.php:104 libraries/common.lib.php:2834 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Хайх" -#: browse_foreigners.php:152 db_operations.php:384 db_operations.php:428 -#: db_operations.php:498 db_operations.php:608 db_search.php:344 -#: db_structure.php:566 js/messages.php:48 libraries/Config.class.php:1043 -#: libraries/Theme_Manager.class.php:310 +#: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 +#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 +#: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 -#: libraries/common.lib.php:1340 libraries/common.lib.php:2289 +#: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 -#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:275 -#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:531 -#: libraries/display_tbl.lib.php:613 libraries/replication_gui.lib.php:75 +#: libraries/display_export.lib.php:269 libraries/display_import.lib.php:275 +#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 +#: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 #: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:781 -#: main.php:127 navigation.php:231 pdf_pages.php:291 pdf_pages.php:327 -#: pdf_pages.php:529 pmd_pdf.php:115 server_binlog.php:128 -#: server_privileges.php:664 server_privileges.php:1616 -#: server_privileges.php:1963 server_privileges.php:2010 -#: server_privileges.php:2049 server_replication.php:234 -#: server_replication.php:317 server_replication.php:340 -#: server_synchronize.php:1208 tbl_change.php:328 tbl_change.php:1172 -#: tbl_change.php:1209 tbl_indexes.php:253 tbl_operations.php:264 -#: tbl_operations.php:301 tbl_operations.php:498 tbl_operations.php:560 -#: tbl_operations.php:680 tbl_select.php:324 tbl_structure.php:561 -#: tbl_structure.php:596 tbl_tracking.php:394 tbl_tracking.php:511 -#: view_create.php:181 view_operations.php:100 +#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 +#: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 +#: server_privileges.php:663 server_privileges.php:1620 +#: server_privileges.php:1967 server_privileges.php:2014 +#: server_privileges.php:2053 server_replication.php:233 +#: server_replication.php:316 server_replication.php:339 +#: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 +#: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 +#: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 +#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "Яв" -#: browse_foreigners.php:167 browse_foreigners.php:171 -#: libraries/Index.class.php:441 tbl_tracking.php:319 +#: browse_foreigners.php:166 browse_foreigners.php:170 +#: libraries/Index.class.php:441 tbl_tracking.php:314 msgid "Keyname" msgstr "Түлхүүрийн нэр" -#: browse_foreigners.php:168 browse_foreigners.php:170 -#: server_collations.php:54 server_collations.php:66 server_engines.php:58 +#: browse_foreigners.php:167 browse_foreigners.php:169 +#: server_collations.php:54 server_collations.php:66 server_engines.php:57 #: server_status.php:738 msgid "Description" msgstr "Тайлбар" -#: browse_foreigners.php:246 browse_foreigners.php:255 -#: browse_foreigners.php:267 browse_foreigners.php:275 +#: browse_foreigners.php:245 browse_foreigners.php:254 +#: browse_foreigners.php:266 browse_foreigners.php:274 msgid "Use this value" msgstr "Уг утгыг хэрэглэх" -#: db_create.php:45 +#: bs_disp_as_mime_type.php:29 bs_play_media.php:35 +msgid "No blob streaming server configured!" +msgstr "" + +#: bs_disp_as_mime_type.php:35 +msgid "Failed to fetch headers" +msgstr "" + +#: bs_disp_as_mime_type.php:41 +msgid "Failed to open remote URL" +msgstr "" + +#: db_create.php:44 #, php-format msgid "Database %1$s has been created." msgstr "" -#: db_datadict.php:48 db_operations.php:377 +#: db_datadict.php:48 db_operations.php:313 msgid "Database comment: " msgstr "ӨС-ийн тайлбар: " -#: db_datadict.php:164 libraries/tbl_properties.inc.php:723 -#: pdf_schema.php:1235 tbl_operations.php:346 tbl_printview.php:128 +#: db_datadict.php:164 libraries/tbl_properties.inc.php:722 +#: pdf_schema.php:1234 tbl_operations.php:344 tbl_printview.php:127 msgid "Table comments" msgstr "Хүснэгтийн тайлбар" -#: db_datadict.php:173 db_qbe.php:173 libraries/Index.class.php:445 +#: db_datadict.php:173 db_qbe.php:170 libraries/Index.class.php:445 #: libraries/export/htmlword.php:243 libraries/export/latex.php:364 #: libraries/export/odt.php:293 libraries/export/texytext.php:233 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:274 -#: pdf_schema.php:1261 pdf_schema.php:1282 tbl_change.php:306 -#: tbl_indexes.php:188 tbl_printview.php:140 tbl_relation.php:401 -#: tbl_select.php:133 tbl_structure.php:176 tbl_tracking.php:272 -#: tbl_tracking.php:323 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 +#: pdf_schema.php:1260 pdf_schema.php:1281 tbl_change.php:301 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:132 tbl_structure.php:175 tbl_tracking.php:267 +#: tbl_tracking.php:318 #, fuzzy #| msgid "Column names" msgid "Column" msgstr "Баганын нэрс" -#: db_datadict.php:174 db_printview.php:105 libraries/Index.class.php:442 +#: db_datadict.php:174 db_printview.php:104 libraries/Index.class.php:442 #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 #: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:244 #: libraries/export/latex.php:364 libraries/export/odt.php:296 #: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:99 -#: pdf_schema.php:1262 pdf_schema.php:1283 server_privileges.php:2062 -#: tbl_change.php:285 tbl_change.php:312 tbl_printview.php:141 -#: tbl_printview.php:311 tbl_select.php:134 tbl_structure.php:177 -#: tbl_structure.php:658 tbl_tracking.php:273 tbl_tracking.php:320 +#: pdf_schema.php:1261 pdf_schema.php:1282 server_privileges.php:2066 +#: tbl_change.php:280 tbl_change.php:307 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:133 tbl_structure.php:176 +#: tbl_structure.php:656 tbl_tracking.php:268 tbl_tracking.php:315 msgid "Type" msgstr "Төрөл" #: db_datadict.php:176 libraries/Index.class.php:448 #: libraries/export/htmlword.php:245 libraries/export/latex.php:364 #: libraries/export/odt.php:299 libraries/export/texytext.php:235 -#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1264 -#: pdf_schema.php:1285 tbl_change.php:321 tbl_printview.php:143 -#: tbl_structure.php:180 tbl_tracking.php:275 tbl_tracking.php:326 +#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1263 +#: pdf_schema.php:1284 tbl_change.php:316 tbl_printview.php:142 +#: tbl_structure.php:179 tbl_tracking.php:270 tbl_tracking.php:321 msgid "Null" msgstr "Хоосон" -#: db_datadict.php:177 db_structure.php:500 libraries/export/htmlword.php:246 +#: db_datadict.php:177 db_structure.php:486 libraries/export/htmlword.php:246 #: libraries/export/latex.php:364 libraries/export/odt.php:302 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:105 -#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 -#: tbl_structure.php:181 tbl_tracking.php:276 +#: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:143 +#: tbl_structure.php:180 tbl_tracking.php:271 msgid "Default" msgstr "Анхдагч" #: db_datadict.php:181 libraries/export/htmlword.php:248 #: libraries/export/latex.php:366 libraries/export/odt.php:306 -#: libraries/export/texytext.php:238 pdf_schema.php:1267 pdf_schema.php:1288 -#: tbl_printview.php:148 +#: libraries/export/texytext.php:238 pdf_schema.php:1266 pdf_schema.php:1287 +#: tbl_printview.php:147 msgid "Links to" msgstr "Холбоос" -#: db_datadict.php:183 db_printview.php:111 libraries/export/htmlword.php:251 +#: db_datadict.php:183 db_printview.php:110 libraries/export/htmlword.php:251 #: libraries/export/latex.php:49 libraries/export/latex.php:369 #: libraries/export/odt.php:37 libraries/export/odt.php:311 #: libraries/export/sql.php:29 libraries/export/texytext.php:241 -#: libraries/tbl_properties.inc.php:129 pdf_schema.php:1278 -#: pdf_schema.php:1289 tbl_printview.php:150 +#: libraries/tbl_properties.inc.php:128 pdf_schema.php:1277 +#: pdf_schema.php:1288 tbl_printview.php:149 msgid "Comments" msgstr "Тайлбар" #: db_datadict.php:266 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/export/htmlword.php:321 #: libraries/export/latex.php:434 libraries/export/odt.php:367 -#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:262 -#: pdf_schema.php:1343 server_privileges.php:1560 server_privileges.php:1571 -#: server_privileges.php:1881 server_privileges.php:1886 -#: server_privileges.php:2179 sql.php:131 sql.php:193 tbl_printview.php:227 -#: tbl_structure.php:349 tbl_tracking.php:336 tbl_tracking.php:341 +#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:261 +#: pdf_schema.php:1342 server_privileges.php:1564 server_privileges.php:1575 +#: server_privileges.php:1885 server_privileges.php:1890 +#: server_privileges.php:2183 sql.php:130 sql.php:192 tbl_printview.php:226 +#: tbl_structure.php:347 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "Үгүй" @@ -177,17 +189,17 @@ msgstr "Үгүй" #: libraries/mult_submits.inc.php:49 libraries/mult_submits.inc.php:54 #: libraries/mult_submits.inc.php:59 libraries/mult_submits.inc.php:91 #: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:105 -#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:261 -#: libraries/mult_submits.inc.php:272 pdf_schema.php:1343 -#: server_databases.php:63 server_privileges.php:1557 -#: server_privileges.php:1571 server_privileges.php:1881 -#: server_privileges.php:1884 server_privileges.php:2179 sql.php:192 -#: tbl_printview.php:227 tbl_structure.php:39 tbl_structure.php:349 -#: tbl_tracking.php:334 tbl_tracking.php:339 +#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:260 +#: libraries/mult_submits.inc.php:271 pdf_schema.php:1342 +#: server_databases.php:61 server_privileges.php:1561 +#: server_privileges.php:1575 server_privileges.php:1885 +#: server_privileges.php:1888 server_privileges.php:2183 sql.php:191 +#: tbl_printview.php:226 tbl_structure.php:38 tbl_structure.php:347 +#: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" msgstr "Тийм" -#: db_datadict.php:321 db_printview.php:265 tbl_printview.php:496 +#: db_datadict.php:321 db_printview.php:264 tbl_printview.php:495 msgid "Print" msgstr "Хэвлэх" @@ -195,194 +207,154 @@ msgstr "Хэвлэх" msgid "View dump (schema) of database" msgstr "ӨС-ийн схем харах" -#: db_export.php:32 db_printview.php:95 db_qbe.php:101 db_structure.php:50 -#: db_tracking.php:34 export.php:352 navigation.php:326 +#: db_export.php:32 db_printview.php:94 db_qbe.php:98 db_structure.php:49 +#: db_tracking.php:30 export.php:350 navigation.php:325 msgid "No tables found in database." msgstr "ӨС-д хүснэгт олдсонгүй." -#: db_export.php:42 db_search.php:326 server_export.php:26 +#: db_export.php:42 db_search.php:326 server_export.php:24 msgid "Select All" msgstr "Бүгдийг сонгох" -#: db_export.php:44 db_search.php:329 server_export.php:28 +#: db_export.php:44 db_search.php:329 server_export.php:26 msgid "Unselect All" msgstr "Бүх сонгосныг болих" -#: db_operations.php:37 tbl_create.php:49 +#: db_operations.php:33 tbl_create.php:47 msgid "The database name is empty!" msgstr "Өгөгдлийн сангийн нэр хоосон!" -#: db_operations.php:235 +#: db_operations.php:231 #, php-format msgid "Database %s has been renamed to %s" msgstr "ӨС %s-н нэр нь %s-ээр солигджээ" -#: db_operations.php:239 +#: db_operations.php:235 #, php-format msgid "Database %s has been copied to %s" msgstr "ӨС %s нь %s руу хуулагдлаа" -#: db_operations.php:411 +#: db_operations.php:347 msgid "Rename database to" msgstr "Өгөгдлийн санг д.нэрлэх нь" -#: db_operations.php:416 server_processlist.php:56 +#: db_operations.php:352 server_processlist.php:56 msgid "Command" msgstr "Команд" -#: db_operations.php:428 tbl_change.php:1141 +#: db_operations.php:364 tbl_change.php:1039 msgid "and then" msgstr "ба тэгээд" -#: db_operations.php:454 +#: db_operations.php:390 msgid "Copy database to" msgstr "Өгөгдлийн сан хуулах нь" -#: db_operations.php:461 tbl_operations.php:527 tbl_tracking.php:387 +#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Зөвхөн бүтэц" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:389 +#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Бүтэц ба өгөгдөл" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:388 +#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Зөвхөн өгөгдөл" -#: db_operations.php:471 +#: db_operations.php:407 msgid "CREATE DATABASE before copying" msgstr "хуулахын өмнө CREATE DATABASE" -#: db_operations.php:474 libraries/export/sql.php:51 +#: db_operations.php:410 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 -#: libraries/export/sql.php:81 tbl_operations.php:535 +#: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "Нэмэх %s" -#: db_operations.php:478 libraries/export/sql.php:77 tbl_operations.php:298 -#: tbl_operations.php:537 +#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT утга нэмэх" -#: db_operations.php:482 tbl_operations.php:544 +#: db_operations.php:418 tbl_operations.php:542 msgid "Add constraints" msgstr "Тогтмол нэмэх" -#: db_operations.php:495 +#: db_operations.php:431 msgid "Switch to copied database" msgstr "Хуулагдсан ӨС руу шилжих" -#: db_operations.php:536 -msgid "BLOB Repository" -msgstr "" - -#: db_operations.php:539 db_tracking.php:75 libraries/common.lib.php:1357 -#: libraries/server_links.inc.php:48 server_processlist.php:58 -#: tbl_tracking.php:595 test/theme.php:100 -msgid "Status" -msgstr "Статус" - -#: db_operations.php:547 -#, fuzzy -#| msgid "Enabled" -msgctxt "BLOB repository" -msgid "Enabled" -msgstr "Нээлттэй" - -#: db_operations.php:551 -msgid "Disable" -msgstr "" - -#: db_operations.php:561 -msgid "Damaged" -msgstr "" - -#: db_operations.php:565 -#, fuzzy -#| msgid "Repair table" -msgctxt "BLOB repository" -msgid "Repair" -msgstr "Хүснэгт засах" - -#: db_operations.php:573 -#, fuzzy -#| msgid "Disabled" -msgctxt "BLOB repository" -msgid "Disabled" -msgstr "Хаагдсан" - -#: db_operations.php:577 -msgid "Enable" -msgstr "" - -#: db_operations.php:601 libraries/Index.class.php:447 +#: db_operations.php:451 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 -#: server_collations.php:53 server_collations.php:65 server_databases.php:110 -#: tbl_operations.php:362 tbl_select.php:135 tbl_structure.php:178 -#: tbl_structure.php:766 tbl_tracking.php:274 tbl_tracking.php:325 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 +#: server_collations.php:53 server_collations.php:65 server_databases.php:108 +#: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:177 +#: tbl_structure.php:764 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "Жишилт" -#: db_operations.php:614 main.php:315 pdf_schema.php:33 -#, php-format +#: db_operations.php:464 pdf_schema.php:32 +#, fuzzy, php-format +#| msgid "" +#| "The additional features for working with linked tables have been " +#| "deactivated. To find out why click %shere%s." msgid "" -"The additional features for working with linked tables have been " -"deactivated. To find out why click %shere%s." +"The phpMyAdmin configuration storage has been deactivated. To find out why " +"click %shere%s." msgstr "" "Холбогдсон хүснэгтүүдтэй ажиллах нэмэлт онцлогууд идэвхгүй болжээ. %sЭнд%s " "дарж шалгах." -#: db_operations.php:647 +#: db_operations.php:497 msgid "Edit PDF Pages" msgstr "PDF-хуудаснуудыг засах" -#: db_printview.php:103 db_tracking.php:71 db_tracking.php:156 +#: db_printview.php:102 db_tracking.php:67 db_tracking.php:152 #: libraries/db_structure.lib.php:37 libraries/export/xml.php:327 -#: libraries/header.inc.php:125 pdf_pages.php:423 server_privileges.php:1657 -#: server_privileges.php:1713 server_privileges.php:1977 -#: server_synchronize.php:422 server_synchronize.php:865 tbl_tracking.php:591 +#: libraries/header.inc.php:125 pdf_pages.php:422 server_privileges.php:1661 +#: server_privileges.php:1717 server_privileges.php:1981 +#: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "Хүснэгт " -#: db_printview.php:104 libraries/db_structure.lib.php:47 +#: db_printview.php:103 libraries/db_structure.lib.php:47 #: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 -#: navigation.php:629 navigation.php:651 server_databases.php:121 -#: tbl_printview.php:392 tbl_structure.php:364 tbl_structure.php:776 +#: navigation.php:628 navigation.php:650 server_databases.php:119 +#: tbl_printview.php:391 tbl_structure.php:362 tbl_structure.php:774 msgid "Rows" msgstr "Мөрүүд" -#: db_printview.php:108 libraries/db_structure.lib.php:58 tbl_indexes.php:189 +#: db_printview.php:107 libraries/db_structure.lib.php:58 tbl_indexes.php:188 msgid "Size" msgstr "Хэмжээ" -#: db_printview.php:161 db_structure.php:456 libraries/export/sql.php:556 +#: db_printview.php:160 db_structure.php:442 libraries/export/sql.php:556 #: libraries/export/sql.php:896 msgid "in use" msgstr "хэрэглэгдэж байна" -#: db_printview.php:186 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:511 pdf_schema.php:1240 tbl_printview.php:432 -#: tbl_structure.php:808 +#: db_printview.php:185 libraries/db_info.inc.php:86 +#: libraries/export/sql.php:511 pdf_schema.php:1239 tbl_printview.php:431 +#: tbl_structure.php:806 msgid "Creation" msgstr "Үүсгэлт" -#: db_printview.php:195 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:516 pdf_schema.php:1245 tbl_printview.php:442 -#: tbl_structure.php:816 +#: db_printview.php:194 libraries/db_info.inc.php:91 +#: libraries/export/sql.php:516 pdf_schema.php:1244 tbl_printview.php:441 +#: tbl_structure.php:814 msgid "Last update" msgstr "Сүүлийн шинэчлэл" -#: db_printview.php:204 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:521 pdf_schema.php:1250 tbl_printview.php:452 -#: tbl_structure.php:824 +#: db_printview.php:203 libraries/db_info.inc.php:96 +#: libraries/export/sql.php:521 pdf_schema.php:1249 tbl_printview.php:451 +#: tbl_structure.php:822 msgid "Last check" msgstr "Сүүлийн шалгалт" -#: db_printview.php:221 db_structure.php:479 +#: db_printview.php:220 db_structure.php:465 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -390,94 +362,94 @@ msgid_plural "%s tables" msgstr[0] "%s хүснэгт(үүд)" msgstr[1] "%s хүснэгт(үүд)" -#: db_qbe.php:28 import.php:453 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1980 libraries/sql_query_form.lib.php:138 -#: tbl_operations.php:212 tbl_relation.php:291 tbl_row_action.php:130 -#: view_operations.php:61 +#: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 +#: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "Таны SQL-асуулт амжилттай ажиллав" -#: db_qbe.php:41 +#: db_qbe.php:38 msgid "You have to choose at least one column to display" msgstr "Харуулахын тулд ядаж нэг багана сонго" -#: db_qbe.php:199 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:865 +#: db_qbe.php:196 libraries/db_structure.lib.php:95 +#: libraries/display_tbl.lib.php:864 msgid "Sort" msgstr "Эрэмбэлэх" -#: db_qbe.php:208 db_qbe.php:242 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:522 libraries/display_tbl.lib.php:827 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:259 -#: tbl_select.php:311 +#: db_qbe.php:205 db_qbe.php:239 libraries/db_structure.lib.php:102 +#: libraries/display_tbl.lib.php:521 libraries/display_tbl.lib.php:826 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:257 +#: tbl_select.php:310 msgid "Ascending" msgstr "Өсөхөөр" -#: db_qbe.php:209 db_qbe.php:250 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:527 libraries/display_tbl.lib.php:824 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:260 -#: tbl_select.php:312 +#: db_qbe.php:206 db_qbe.php:247 libraries/db_structure.lib.php:110 +#: libraries/display_tbl.lib.php:526 libraries/display_tbl.lib.php:823 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:258 +#: tbl_select.php:311 msgid "Descending" msgstr "Буурахаар" -#: db_qbe.php:263 db_tracking.php:77 libraries/display_tbl.lib.php:307 -#: tbl_change.php:275 tbl_tracking.php:596 +#: db_qbe.php:260 db_tracking.php:73 libraries/display_tbl.lib.php:306 +#: tbl_change.php:270 tbl_tracking.php:591 msgid "Show" msgstr "Харах" -#: db_qbe.php:299 +#: db_qbe.php:296 msgid "Criteria" msgstr "Хэмжүүр" -#: db_qbe.php:352 db_qbe.php:434 db_qbe.php:526 db_qbe.php:557 +#: db_qbe.php:349 db_qbe.php:431 db_qbe.php:523 db_qbe.php:554 msgid "Ins" msgstr "Оруулах" -#: db_qbe.php:356 db_qbe.php:438 db_qbe.php:523 db_qbe.php:554 +#: db_qbe.php:353 db_qbe.php:435 db_qbe.php:520 db_qbe.php:551 msgid "And" msgstr "БА" -#: db_qbe.php:365 db_qbe.php:446 db_qbe.php:528 db_qbe.php:559 +#: db_qbe.php:362 db_qbe.php:443 db_qbe.php:525 db_qbe.php:556 msgid "Del" msgstr "Устгах" -#: db_qbe.php:369 db_qbe.php:450 db_qbe.php:521 db_qbe.php:552 -#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:778 -#: server_privileges.php:297 tbl_change.php:1027 tbl_indexes.php:249 -#: tbl_select.php:285 +#: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 +#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:777 +#: server_privileges.php:296 tbl_change.php:925 tbl_indexes.php:248 +#: tbl_select.php:284 msgid "Or" msgstr "Эсвэл" -#: db_qbe.php:506 +#: db_qbe.php:503 msgid "Modify" msgstr "Өөрчлөх" -#: db_qbe.php:583 +#: db_qbe.php:580 #, fuzzy #| msgid "Add/Delete Criteria Row" msgid "Add/Delete criteria rows" msgstr "Мөр Нэмэх/устгах" -#: db_qbe.php:595 +#: db_qbe.php:592 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Add/Delete columns" msgstr "Багана нэмэх/устгах" -#: db_qbe.php:608 db_qbe.php:633 +#: db_qbe.php:605 db_qbe.php:630 msgid "Update Query" msgstr "Update асуулт" -#: db_qbe.php:616 +#: db_qbe.php:613 msgid "Use Tables" msgstr "Хүснэгт хэрэглэх" -#: db_qbe.php:639 +#: db_qbe.php:636 #, php-format msgid "SQL query on database %s:" msgstr "ӨС %s дахь SQL-асуулт:" -#: db_qbe.php:933 libraries/common.lib.php:1222 +#: db_qbe.php:930 libraries/common.lib.php:1215 msgid "Submit Query" msgstr "Асуултыг илгээх" @@ -517,17 +489,17 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s олдоц(ууд) хүснэгт %s-д" msgstr[1] "%s олдоц(ууд) хүснэгт %s-д" -#: db_search.php:249 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2831 -#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:49 -#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:466 +#: db_search.php:249 db_structure.php:75 db_structure.php:76 +#: db_structure.php:88 db_structure.php:90 db_structure.php:101 +#: db_structure.php:103 libraries/common.lib.php:2836 +#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 +#: tbl_structure.php:35 tbl_structure.php:47 tbl_structure.php:464 msgid "Browse" msgstr "Хөтлөх" -#: db_search.php:254 libraries/display_tbl.lib.php:1164 -#: libraries/display_tbl.lib.php:2055 libraries/sql_query_form.lib.php:453 -#: pdf_pages.php:285 pdf_pages.php:424 pdf_pages.php:460 pdf_pages.php:488 +#: db_search.php:254 libraries/display_tbl.lib.php:1163 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 msgid "Delete" @@ -567,226 +539,232 @@ msgstr "Хүснэгт(үүд) дотор:" msgid "Inside column:" msgstr "Хүснэгт(үүд) дотор:" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2830 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:75 +#: db_structure.php:79 db_structure.php:80 db_structure.php:92 +#: db_structure.php:93 db_structure.php:105 db_structure.php:106 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 +#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Оруулах" -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2827 libraries/common.lib.php:2834 -#: libraries/db_links.inc.php:62 libraries/export/htmlword.php:22 +#: db_structure.php:81 db_structure.php:94 db_structure.php:107 +#: libraries/common.lib.php:2832 libraries/common.lib.php:2839 +#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 -#: libraries/tbl_links.inc.php:55 pmd_general.php:133 -#: server_privileges.php:593 server_replication.php:314 tbl_tracking.php:268 +#: libraries/tbl_links.inc.php:54 pmd_general.php:133 +#: server_privileges.php:592 server_replication.php:313 tbl_tracking.php:263 msgid "Structure" msgstr "Бүтэц" -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:544 db_structure.php:545 db_tracking.php:90 -#: libraries/Index.class.php:482 libraries/common.lib.php:1659 -#: libraries/db_links.inc.php:99 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:126 -#: server_databases.php:351 tbl_structure.php:26 tbl_structure.php:150 -#: tbl_structure.php:151 tbl_structure.php:470 +#: db_structure.php:82 db_structure.php:83 db_structure.php:95 +#: db_structure.php:96 db_structure.php:108 db_structure.php:109 +#: db_structure.php:530 db_structure.php:531 db_tracking.php:86 +#: libraries/Index.class.php:482 libraries/common.lib.php:1663 +#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 +#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 +#: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" msgstr "Устгах" -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:542 db_structure.php:543 libraries/common.lib.php:1658 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:104 +#: db_structure.php:84 db_structure.php:85 db_structure.php:97 +#: db_structure.php:98 db_structure.php:110 db_structure.php:111 +#: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 +#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 msgid "Empty" msgstr "Хоосон" -#: db_structure.php:315 libraries/tbl_links.inc.php:99 +#: db_structure.php:301 libraries/tbl_links.inc.php:98 #, php-format msgid "Table %s has been emptied" msgstr "Хүснэгт %s нь хоослогдлоо" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "View %s has been dropped" msgstr "Харц %s нь устгагдсан" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "Table %s has been dropped" msgstr "Хүснэгт %s нь устгагдлаа" -#: db_structure.php:332 +#: db_structure.php:318 msgid "Tracking is active." msgstr "" -#: db_structure.php:334 +#: db_structure.php:320 msgid "Tracking is not active." msgstr "" -#: db_structure.php:419 libraries/display_tbl.lib.php:1943 +#: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -#: db_structure.php:433 db_structure.php:447 libraries/header.inc.php:125 -#: libraries/tbl_info.inc.php:65 tbl_structure.php:184 test/theme.php:73 +#: db_structure.php:419 db_structure.php:433 libraries/header.inc.php:125 +#: libraries/tbl_info.inc.php:60 tbl_structure.php:183 test/theme.php:73 msgid "View" msgstr "Харц" -#: db_structure.php:484 libraries/db_structure.lib.php:40 -#: libraries/server_links.inc.php:69 server_replication.php:32 -#: server_replication.php:163 server_status.php:368 +#: db_structure.php:470 libraries/db_structure.lib.php:40 +#: libraries/server_links.inc.php:69 server_replication.php:31 +#: server_replication.php:162 server_status.php:368 msgid "Replication" msgstr "Олшруулалт" -#: db_structure.php:488 +#: db_structure.php:474 msgid "Sum" msgstr "Нийт" -#: db_structure.php:495 libraries/StorageEngine.class.php:349 +#: db_structure.php:481 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s нь уг MySQL сервэрийн анхдагч агуулах хөдөлгүүр байна." -#: db_structure.php:523 db_structure.php:540 db_structure.php:541 -#: libraries/display_tbl.lib.php:2080 libraries/display_tbl.lib.php:2085 -#: libraries/mult_submits.inc.php:15 server_databases.php:345 -#: server_databases.php:350 server_privileges.php:1588 tbl_structure.php:454 -#: tbl_structure.php:463 +#: db_structure.php:509 db_structure.php:526 db_structure.php:527 +#: libraries/display_tbl.lib.php:2039 libraries/display_tbl.lib.php:2044 +#: libraries/mult_submits.inc.php:15 server_databases.php:343 +#: server_databases.php:348 server_privileges.php:1592 tbl_structure.php:452 +#: tbl_structure.php:461 msgid "With selected:" msgstr "Сонгогдсонтой:" -#: db_structure.php:526 libraries/display_tbl.lib.php:2075 -#: server_databases.php:347 server_privileges.php:569 -#: server_privileges.php:1591 tbl_structure.php:457 +#: db_structure.php:512 libraries/display_tbl.lib.php:2034 +#: server_databases.php:345 server_privileges.php:568 +#: server_privileges.php:1595 tbl_structure.php:455 msgid "Check All" msgstr "Бүгдийг чагтлах" -#: db_structure.php:530 libraries/display_tbl.lib.php:2076 -#: libraries/replication_gui.lib.php:35 server_databases.php:349 -#: server_privileges.php:572 server_privileges.php:1595 tbl_structure.php:461 +#: db_structure.php:516 libraries/display_tbl.lib.php:2035 +#: libraries/replication_gui.lib.php:35 server_databases.php:347 +#: server_privileges.php:571 server_privileges.php:1599 tbl_structure.php:459 msgid "Uncheck All" msgstr "Бүх чагтыг болих" -#: db_structure.php:535 +#: db_structure.php:521 msgid "Check tables having overhead" msgstr "Дээдхийг шалгах" -#: db_structure.php:546 db_structure.php:547 db_structure.php:598 -#: libraries/display_tbl.lib.php:2179 libraries/mult_submits.inc.php:27 -#: tbl_structure.php:491 tbl_structure.php:493 +#: db_structure.php:532 db_structure.php:533 db_structure.php:584 +#: libraries/display_tbl.lib.php:2138 libraries/mult_submits.inc.php:27 +#: tbl_structure.php:489 tbl_structure.php:491 msgid "Print view" msgstr "Хэвлэхээр харах" -#: db_structure.php:548 db_structure.php:549 libraries/mult_submits.inc.php:41 -#: tbl_operations.php:580 +#: db_structure.php:534 db_structure.php:535 libraries/mult_submits.inc.php:41 +#: tbl_operations.php:578 msgid "Check table" msgstr "Хүснэгт шалгах" -#: db_structure.php:550 db_structure.php:551 libraries/mult_submits.inc.php:46 -#: tbl_operations.php:620 tbl_structure.php:708 tbl_structure.php:710 +#: db_structure.php:536 db_structure.php:537 libraries/mult_submits.inc.php:46 +#: tbl_operations.php:618 tbl_structure.php:706 tbl_structure.php:708 msgid "Optimize table" msgstr "Хүснэгтийг зүгшрүүлэх" -#: db_structure.php:552 db_structure.php:553 libraries/mult_submits.inc.php:51 -#: tbl_operations.php:610 +#: db_structure.php:538 db_structure.php:539 libraries/mult_submits.inc.php:51 +#: tbl_operations.php:608 msgid "Repair table" msgstr "Хүснэгт засах" -#: db_structure.php:554 db_structure.php:555 libraries/mult_submits.inc.php:56 -#: tbl_operations.php:600 +#: db_structure.php:540 db_structure.php:541 libraries/mult_submits.inc.php:56 +#: tbl_operations.php:598 msgid "Analyze table" msgstr "Хүснэгтийг задлах" -#: db_structure.php:556 db_structure.php:557 libraries/db_links.inc.php:70 -#: libraries/display_export.lib.php:82 libraries/display_tbl.lib.php:2093 -#: libraries/display_tbl.lib.php:2224 libraries/mult_submits.inc.php:61 -#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:81 -#: pmd_pdf.php:83 pmd_pdf.php:108 server_privileges.php:1372 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 +#: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 +#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 +#: pmd_pdf.php:81 pmd_pdf.php:106 server_privileges.php:1376 #: setup/frames/menu.inc.php:22 tbl_row_action.php:58 msgid "Export" msgstr "Гаргах" -#: db_structure.php:605 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:591 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "Өгөгдлийн толь" -#: db_tracking.php:65 +#: db_tracking.php:61 msgid "Tracked tables" msgstr "" -#: db_tracking.php:70 libraries/export/htmlword.php:85 +#: db_tracking.php:66 libraries/export/htmlword.php:85 #: libraries/export/latex.php:152 libraries/export/odt.php:112 #: libraries/export/sql.php:339 libraries/export/texytext.php:84 #: libraries/export/xml.php:254 libraries/header.inc.php:105 -#: libraries/header_printview.inc.php:57 server_databases.php:168 -#: server_privileges.php:1652 server_privileges.php:1713 -#: server_privileges.php:1971 server_processlist.php:55 -#: server_synchronize.php:1178 server_synchronize.php:1182 -#: tbl_tracking.php:590 test/theme.php:64 +#: libraries/header_printview.inc.php:57 server_databases.php:166 +#: server_privileges.php:1656 server_privileges.php:1717 +#: server_privileges.php:1975 server_processlist.php:55 +#: server_synchronize.php:1177 server_synchronize.php:1181 +#: tbl_tracking.php:585 test/theme.php:64 msgid "Database" msgstr "ӨС" -#: db_tracking.php:72 +#: db_tracking.php:68 msgid "Last version" msgstr "" -#: db_tracking.php:73 tbl_tracking.php:593 +#: db_tracking.php:69 tbl_tracking.php:588 msgid "Created" msgstr "" -#: db_tracking.php:74 tbl_tracking.php:594 +#: db_tracking.php:70 tbl_tracking.php:589 msgid "Updated" msgstr "" -#: db_tracking.php:76 libraries/Index.class.php:439 -#: libraries/db_structure.lib.php:44 server_databases.php:202 -#: server_privileges.php:1534 server_privileges.php:1717 -#: server_privileges.php:2065 tbl_structure.php:186 +#: db_tracking.php:71 libraries/common.lib.php:1361 +#: libraries/server_links.inc.php:48 server_processlist.php:58 +#: tbl_tracking.php:590 test/theme.php:100 +msgid "Status" +msgstr "Статус" + +#: db_tracking.php:72 libraries/Index.class.php:439 +#: libraries/db_structure.lib.php:44 server_databases.php:200 +#: server_privileges.php:1538 server_privileges.php:1721 +#: server_privileges.php:2069 tbl_structure.php:185 msgid "Action" msgstr "Үйлдэл" -#: db_tracking.php:87 db_tracking.php:119 +#: db_tracking.php:83 db_tracking.php:115 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:105 tbl_tracking.php:547 tbl_tracking.php:605 -#: tbl_tracking.php:612 +#: db_tracking.php:101 tbl_tracking.php:542 tbl_tracking.php:600 +#: tbl_tracking.php:607 msgid "active" msgstr "" -#: db_tracking.php:107 tbl_tracking.php:549 tbl_tracking.php:607 -#: tbl_tracking.php:609 +#: db_tracking.php:103 tbl_tracking.php:544 tbl_tracking.php:602 +#: tbl_tracking.php:604 msgid "not active" msgstr "" -#: db_tracking.php:120 +#: db_tracking.php:116 msgid "Versions" msgstr "" -#: db_tracking.php:121 tbl_tracking.php:378 tbl_tracking.php:623 +#: db_tracking.php:117 tbl_tracking.php:373 tbl_tracking.php:618 msgid "Tracking report" msgstr "" -#: db_tracking.php:122 tbl_tracking.php:250 tbl_tracking.php:623 +#: db_tracking.php:118 tbl_tracking.php:245 tbl_tracking.php:618 msgid "Structure snapshot" msgstr "" -#: db_tracking.php:151 +#: db_tracking.php:147 msgid "Untracked tables" msgstr "" -#: db_tracking.php:171 db_tracking.php:173 tbl_structure.php:527 -#: tbl_structure.php:529 +#: db_tracking.php:167 db_tracking.php:169 tbl_structure.php:525 +#: tbl_structure.php:527 msgid "Track table" msgstr "" -#: db_tracking.php:199 +#: db_tracking.php:195 msgid "Database Log" msgstr "" @@ -794,103 +772,103 @@ msgstr "" msgid "Selected export type has to be saved in file!" msgstr "" -#: export.php:153 export.php:178 export.php:620 +#: export.php:152 export.php:177 export.php:615 #, php-format msgid "Insufficient space to save the file %s." msgstr "Файл %s-г хадгалах зай хүрэлцэхгүй байна." -#: export.php:287 +#: export.php:286 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "" "Файл %s нь сервэр дээр байна, нэрээ соль эсвэл давхарлах сонголтыг шалга." -#: export.php:291 export.php:295 +#: export.php:290 export.php:294 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Вэб-сервэр файл %s-г хадгалахад зөвшөөрөлгүй байна." -#: export.php:622 +#: export.php:617 #, php-format msgid "Dump has been saved to file %s." msgstr "Асгалт %s файлд хадгалагдсан." -#: import.php:59 +#: 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." msgstr "" -#: import.php:278 import.php:331 libraries/File.class.php:840 -#: libraries/File.class.php:950 +#: import.php:277 import.php:330 libraries/File.class.php:566 +#: libraries/File.class.php:676 msgid "File could not be read" msgstr "Файл уншигдахгүй байна" -#: import.php:286 import.php:295 import.php:314 import.php:323 -#: libraries/File.class.php:1020 libraries/File.class.php:1028 -#: libraries/File.class.php:1044 libraries/File.class.php:1052 +#: import.php:285 import.php:294 import.php:313 import.php:322 +#: libraries/File.class.php:746 libraries/File.class.php:754 +#: libraries/File.class.php:770 libraries/File.class.php:778 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." msgstr "" -#: import.php:336 +#: import.php:335 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " "[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." msgstr "" -#: import.php:371 libraries/display_import.lib.php:23 +#: import.php:370 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "Оруулах нэмэлтүүд дуудагдсангүй, суулгацаа шалгана уу!" -#: import.php:396 +#: import.php:395 msgid "The bookmark has been deleted." msgstr "Тэмдэглэгээ устгагдсан." -#: import.php:400 +#: import.php:399 msgid "Showing bookmark" msgstr "Тэмдэглэл харуулах" -#: import.php:402 sql.php:625 +#: import.php:401 sql.php:618 #, php-format msgid "Bookmark %s created" msgstr "Тэмдэглэл %s нь үүсгэгдлээ" -#: import.php:408 import.php:414 +#: import.php:407 import.php:413 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Оруулалт амжилттай дууслаа, %d асуудал ажиллав." -#: import.php:423 +#: import.php:422 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: import.php:425 +#: import.php:424 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." msgstr "" -#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:240 +#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:239 #: user_password.php:110 msgid "Back" msgstr "Өмнөх" -#: index.php:188 +#: index.php:183 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin нь ямар ч хөтөч дээр фрейм гаргах чадвартай." -#: js/messages.php:25 server_synchronize.php:344 server_synchronize.php:356 -#: server_synchronize.php:372 server_synchronize.php:379 -#: server_synchronize.php:738 server_synchronize.php:766 -#: server_synchronize.php:794 server_synchronize.php:806 +#: js/messages.php:25 server_synchronize.php:343 server_synchronize.php:355 +#: server_synchronize.php:371 server_synchronize.php:378 +#: server_synchronize.php:737 server_synchronize.php:765 +#: server_synchronize.php:793 server_synchronize.php:805 msgid "Click to select" msgstr "" @@ -898,15 +876,15 @@ msgstr "" msgid "Click to unselect" msgstr "" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:88 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:87 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"ӨС устгах\" нь хаалттай." -#: js/messages.php:30 libraries/mult_submits.inc.php:257 sql.php:187 +#: js/messages.php:30 libraries/mult_submits.inc.php:256 sql.php:186 msgid "Do you really want to " msgstr "Та үнэхээр " -#: js/messages.php:31 libraries/mult_submits.inc.php:257 sql.php:171 +#: js/messages.php:31 libraries/mult_submits.inc.php:256 sql.php:170 msgid "You are about to DESTROY a complete database!" msgstr "Дүүрэн өгөгдлийн сан УСТГАХ тухай?" @@ -935,11 +913,11 @@ msgstr "Хостын нэр хоосон!" msgid "The user name is empty!" msgstr "Хэрэглэгчийн нэр хоосон!" -#: js/messages.php:44 server_privileges.php:1228 user_password.php:65 +#: js/messages.php:44 server_privileges.php:1229 user_password.php:65 msgid "The password is empty!" msgstr "Нууц үг хоосон байна!" -#: js/messages.php:45 server_privileges.php:1226 user_password.php:68 +#: js/messages.php:45 server_privileges.php:1227 user_password.php:68 msgid "The passwords aren't the same!" msgstr "Нууц їгнїїд ялгаатай байна!" @@ -947,27 +925,27 @@ msgstr "Нууц їгнїїд ялгаатай байна!" msgid "Cancel" msgstr "Болих" -#: js/messages.php:52 pmd_save_pos.php:53 +#: js/messages.php:52 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "Өөрчлөлт хадгалагдав" -#: js/messages.php:53 pmd_relation_upd.php:48 +#: js/messages.php:53 pmd_relation_upd.php:47 msgid "Relation deleted" msgstr "Холбоо устав" -#: js/messages.php:54 pmd_relation_new.php:63 +#: js/messages.php:54 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:55 pmd_relation_new.php:85 +#: js/messages.php:55 pmd_relation_new.php:84 msgid "Internal relation added" msgstr "Дотоод холбоо нэмэгдэв" -#: js/messages.php:56 pmd_relation_new.php:62 pmd_relation_new.php:87 +#: js/messages.php:56 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:57 pmd_relation_new.php:30 +#: js/messages.php:57 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "" @@ -975,13 +953,13 @@ msgstr "" msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:59 libraries/relation.lib.php:94 -#: libraries/relation.lib.php:106 +#: js/messages.php:59 libraries/relation.lib.php:89 +#: libraries/relation.lib.php:101 msgid "General relation features" msgstr "Ерөнхий хамаатай онцлог" -#: js/messages.php:59 libraries/relation.lib.php:88 -#: libraries/relation.lib.php:95 +#: js/messages.php:59 libraries/relation.lib.php:83 +#: libraries/relation.lib.php:90 msgid "Disabled" msgstr "Хаагдсан" @@ -997,7 +975,7 @@ msgstr "Гадаад түлхүүр сонгох" msgid "Please select the primary key or a unique key" msgstr "Үндсэн түлхүүр эсвэл орь ганц түлхүүр сонгон уу" -#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:547 +#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" @@ -1028,10 +1006,10 @@ msgid "Prev" msgstr "Өмнөх" #. l10n: Display text for next month link in calendar -#: js/messages.php:81 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:337 -#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:422 -#: tbl_structure.php:800 +#: js/messages.php:81 libraries/common.lib.php:2358 +#: libraries/common.lib.php:2361 libraries/display_tbl.lib.php:336 +#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 +#: tbl_structure.php:798 msgid "Next" msgstr "Цааш" @@ -1105,27 +1083,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1562 +#: js/messages.php:101 libraries/common.lib.php:1566 msgid "Jan" msgstr "1-р" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1564 +#: js/messages.php:103 libraries/common.lib.php:1568 msgid "Feb" msgstr "2-р" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1566 +#: js/messages.php:105 libraries/common.lib.php:1570 msgid "Mar" msgstr "3-р" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1568 +#: js/messages.php:107 libraries/common.lib.php:1572 msgid "Apr" msgstr "4-р" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1570 +#: js/messages.php:109 libraries/common.lib.php:1574 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1133,37 +1111,37 @@ msgid "May" msgstr "5-р" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1572 +#: js/messages.php:111 libraries/common.lib.php:1576 msgid "Jun" msgstr "6-р" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1574 +#: js/messages.php:113 libraries/common.lib.php:1578 msgid "Jul" msgstr "7-р" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1576 +#: js/messages.php:115 libraries/common.lib.php:1580 msgid "Aug" msgstr "8-р" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1578 +#: js/messages.php:117 libraries/common.lib.php:1582 msgid "Sep" msgstr "9-р" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1580 +#: js/messages.php:119 libraries/common.lib.php:1584 msgid "Oct" msgstr "10р" #. l10n: Short month name -#: js/messages.php:121 libraries/common.lib.php:1582 +#: js/messages.php:121 libraries/common.lib.php:1586 msgid "Nov" msgstr "11р" #. l10n: Short month name -#: js/messages.php:123 libraries/common.lib.php:1584 +#: js/messages.php:123 libraries/common.lib.php:1588 msgid "Dec" msgstr "12р" @@ -1204,37 +1182,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1587 +#: js/messages.php:136 libraries/common.lib.php:1591 msgid "Sun" msgstr "Ня" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1589 +#: js/messages.php:138 libraries/common.lib.php:1593 msgid "Mon" msgstr "Да" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1591 +#: js/messages.php:140 libraries/common.lib.php:1595 msgid "Tue" msgstr "Мя" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1593 +#: js/messages.php:142 libraries/common.lib.php:1597 msgid "Wed" msgstr "Лх" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1595 +#: js/messages.php:144 libraries/common.lib.php:1599 msgid "Thu" msgstr "Пү" #. l10n: Short week day name -#: js/messages.php:146 libraries/common.lib.php:1597 +#: js/messages.php:146 libraries/common.lib.php:1601 msgid "Fri" msgstr "Ба" #. l10n: Short week day name -#: js/messages.php:148 libraries/common.lib.php:1599 +#: js/messages.php:148 libraries/common.lib.php:1603 msgid "Sat" msgstr "Бя" @@ -1312,74 +1290,73 @@ msgstr "секундэд" msgid "Font size" msgstr "Үсгийн хэмжээ" -#: libraries/File.class.php:336 libraries/File.class.php:424 -#: libraries/File.class.php:561 libraries/File.class.php:700 -msgid "Unknown error in file upload." -msgstr "" - -#: libraries/File.class.php:406 +#: libraries/File.class.php:315 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:409 +#: libraries/File.class.php:318 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:412 +#: libraries/File.class.php:321 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:415 +#: libraries/File.class.php:324 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:418 +#: libraries/File.class.php:327 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:421 +#: libraries/File.class.php:330 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:898 +#: libraries/File.class.php:333 +msgid "Unknown error in file upload." +msgstr "" + +#: libraries/File.class.php:624 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "" -#: libraries/Index.class.php:427 tbl_relation.php:528 +#: libraries/Index.class.php:427 tbl_relation.php:526 msgid "No index defined!" msgstr "Индекс тодорхойлогдоогүй!" -#: libraries/Index.class.php:432 server_databases.php:131 tbl_tracking.php:315 +#: libraries/Index.class.php:432 server_databases.php:129 tbl_tracking.php:310 msgid "Indexes" msgstr "Индексүүд" #: libraries/Index.class.php:443 libraries/mult_submits.inc.php:102 -#: libraries/tbl_properties.inc.php:518 tbl_structure.php:32 -#: tbl_structure.php:154 tbl_structure.php:158 tbl_structure.php:473 -#: tbl_tracking.php:321 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:31 +#: tbl_structure.php:153 tbl_structure.php:157 tbl_structure.php:471 +#: tbl_tracking.php:316 msgid "Unique" msgstr "Үл давтагдах" -#: libraries/Index.class.php:444 tbl_tracking.php:322 +#: libraries/Index.class.php:444 tbl_tracking.php:317 msgid "Packed" msgstr "" -#: libraries/Index.class.php:446 tbl_tracking.php:324 +#: libraries/Index.class.php:446 tbl_tracking.php:319 msgid "Cardinality" msgstr "Ерөнхий" -#: libraries/Index.class.php:449 tbl_tracking.php:278 tbl_tracking.php:327 +#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322 msgid "Comment" msgstr "" #: libraries/Index.class.php:465 libraries/common.lib.php:609 -#: libraries/common.lib.php:1198 libraries/display_tbl.lib.php:1116 +#: libraries/common.lib.php:1191 libraries/display_tbl.lib.php:1115 #: libraries/import.lib.php:1119 libraries/import.lib.php:1143 -#: pdf_pages.php:284 setup/frames/index.inc.php:124 +#: pdf_pages.php:283 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:349 tbl_row_action.php:68 msgid "Edit" msgstr "Засах" @@ -1401,15 +1378,15 @@ msgid "" msgstr "" #: libraries/List_Database.class.php:430 libraries/server_links.inc.php:40 -#: server_databases.php:87 server_privileges.php:1652 +#: server_databases.php:85 server_privileges.php:1656 #: setup/lib/messages.inc.php:107 test/theme.php:92 msgid "Databases" msgstr "Өгөгдлийн сангууд" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:259 libraries/import.lib.php:134 pdf_schema.php:31 -#: pdf_schema.php:231 tbl_change.php:1023 tbl_operations.php:212 -#: tbl_relation.php:289 view_operations.php:61 +#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 +#: tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Алдаа" @@ -1436,40 +1413,40 @@ msgid_plural "%1$d rows inserted." msgstr[0] "Сонгогдсон мөргүй" msgstr[1] "Сонгогдсон мөргүй" -#: libraries/StorageEngine.class.php:196 +#: libraries/StorageEngine.class.php:194 msgid "" "There is no detailed status information available for this storage engine." msgstr "Энд уг агуулах хөдөлгүүрийн дэлгэрэнгүй төлвийн мэдээлэл алга." -#: libraries/StorageEngine.class.php:352 +#: libraries/StorageEngine.class.php:354 #, php-format msgid "%s is available on this MySQL server." msgstr "%s нь уг MySQL сервэрт идэвхтэй байна." -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:357 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s нь уг MySQL сервэр дээр хаалттай байна." -#: libraries/StorageEngine.class.php:359 +#: libraries/StorageEngine.class.php:361 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "Энэ MySQL сервэр нь %s агуулах хөдөлгүүрийг дэмжихгүй." -#: libraries/Table.class.php:1018 +#: libraries/Table.class.php:1017 msgid "Invalid database" msgstr "Буруу өгөгдлийн сан" -#: libraries/Table.class.php:1032 tbl_get_field.php:25 +#: libraries/Table.class.php:1031 tbl_get_field.php:25 msgid "Invalid table name" msgstr "Хүснэгтийн буруу нэр" -#: libraries/Table.class.php:1047 +#: libraries/Table.class.php:1046 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "" -#: libraries/Table.class.php:1131 +#: libraries/Table.class.php:1129 #, php-format msgid "Table %s has been renamed to %s" msgstr "Хүснэгт %s-ын нэр %s болж өөрчлөгдлөө" @@ -1487,22 +1464,22 @@ msgstr "Боломжит харагдац байхгүй байна." msgid "take it" msgstr "авах" -#: libraries/Theme_Manager.class.php:114 +#: libraries/Theme_Manager.class.php:109 #, php-format msgid "Default theme %s not found!" msgstr "Анхдагч сэдэв %s байхгүй байна!" -#: libraries/Theme_Manager.class.php:152 +#: libraries/Theme_Manager.class.php:147 #, php-format msgid "Theme %s not found!" msgstr "Сэдэв %s олдсонгүй!" -#: libraries/Theme_Manager.class.php:220 +#: libraries/Theme_Manager.class.php:215 #, php-format msgid "Theme path not found for theme %s!" msgstr "Сэдэв %s сэдвийн зам олдохгүй байна!" -#: libraries/Theme_Manager.class.php:296 test/theme.php:160 themes.php:20 +#: libraries/Theme_Manager.class.php:291 test/theme.php:160 themes.php:20 #: themes.php:40 msgid "Theme / Style" msgstr "Арьс / Загвар" @@ -1613,19 +1590,19 @@ msgstr "" msgid "Authenticating..." msgstr "" -#: libraries/blobstreaming.lib.php:689 +#: libraries/blobstreaming.lib.php:340 msgid "View image" msgstr "" -#: libraries/blobstreaming.lib.php:693 +#: libraries/blobstreaming.lib.php:344 msgid "Play audio" msgstr "" -#: libraries/blobstreaming.lib.php:698 +#: libraries/blobstreaming.lib.php:349 msgid "View video" msgstr "" -#: libraries/blobstreaming.lib.php:702 +#: libraries/blobstreaming.lib.php:353 msgid "Download file" msgstr "" @@ -1678,7 +1655,7 @@ msgstr "Сервэр" msgid "Invalid authentication method set in configuration:" msgstr "Тохиргоонд сонгогдсон буруу зөвшөөрлийн арга:" -#: libraries/common.inc.php:909 +#: libraries/common.inc.php:908 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Та хувилбар %s -г %s -ээр сайжруулах хэрэгтэй эсвэл дараа." @@ -1703,7 +1680,8 @@ msgstr "" #: libraries/common.lib.php:425 libraries/common.lib.php:427 #: libraries/common.lib.php:429 libraries/common.lib.php:445 #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 -#: libraries/display_export.lib.php:163 libraries/relation.lib.php:84 +#: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 +#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 #: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" @@ -1718,148 +1696,148 @@ msgstr "SQL-асуулт" msgid "MySQL said: " msgstr "MySQL хэлэх нь: " -#: libraries/common.lib.php:1136 +#: libraries/common.lib.php:1129 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1174 setup/lib/messages.inc.php:350 +#: libraries/common.lib.php:1167 setup/lib/messages.inc.php:350 msgid "Explain SQL" msgstr "SQL тайлбар" -#: libraries/common.lib.php:1177 +#: libraries/common.lib.php:1170 msgid "Skip Explain SQL" msgstr "SQL тайлбарлахыг орхих" -#: libraries/common.lib.php:1211 +#: libraries/common.lib.php:1204 msgid "Without PHP Code" msgstr "PHP-кодгүй" -#: libraries/common.lib.php:1214 setup/lib/messages.inc.php:352 +#: libraries/common.lib.php:1207 setup/lib/messages.inc.php:352 msgid "Create PHP Code" msgstr "PHP-код үүсгэх" -#: libraries/common.lib.php:1232 server_status.php:451 +#: libraries/common.lib.php:1225 server_status.php:451 #: setup/lib/messages.inc.php:351 msgid "Refresh" msgstr "Да.дуудах" -#: libraries/common.lib.php:1241 +#: libraries/common.lib.php:1234 msgid "Skip Validate SQL" msgstr "SQL шалгалтыг алгасах" -#: libraries/common.lib.php:1244 setup/lib/messages.inc.php:353 +#: libraries/common.lib.php:1237 setup/lib/messages.inc.php:353 msgid "Validate SQL" msgstr "SQL-ийг батлах" -#: libraries/common.lib.php:1283 +#: libraries/common.lib.php:1287 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1285 +#: libraries/common.lib.php:1289 #, fuzzy #| msgid "Engines" msgid "Inline" msgstr "Хөдөлгүүрүүд" -#: libraries/common.lib.php:1339 libraries/common.lib.php:1354 +#: libraries/common.lib.php:1343 libraries/common.lib.php:1358 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1358 libraries/tbl_triggers.lib.php:27 +#: libraries/common.lib.php:1362 libraries/tbl_triggers.lib.php:27 #: server_processlist.php:57 msgid "Time" msgstr "Цаг" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "B" msgstr "Байт" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "KiB" msgstr "кБ" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "MiB" msgstr "МБ" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "GiB" msgstr "ГБ" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "TiB" msgstr "TB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "PiB" msgstr "PB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "EiB" msgstr "EB" #. l10n: Thousands separator -#: libraries/common.lib.php:1424 +#: libraries/common.lib.php:1428 msgid "," msgstr "," #. l10n: Decimal separator -#: libraries/common.lib.php:1426 +#: libraries/common.lib.php:1430 msgid "." msgstr "." #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1603 +#: libraries/common.lib.php:1607 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%Y оны %B сарын %d., %H:%M" -#: libraries/common.lib.php:1909 +#: libraries/common.lib.php:1913 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s өдөр, %s цаг, %s минут, %s секунд" -#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 -#: libraries/display_tbl.lib.php:289 server_status.php:718 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 +#: libraries/display_tbl.lib.php:288 server_status.php:718 msgid "Begin" msgstr "Эхлэл" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 -#: libraries/display_tbl.lib.php:290 server_binlog.php:154 +#: libraries/common.lib.php:2328 libraries/common.lib.php:2331 +#: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "Өмнөх" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 -#: libraries/display_tbl.lib.php:352 +#: libraries/common.lib.php:2359 libraries/common.lib.php:2362 +#: libraries/display_tbl.lib.php:351 msgid "End" msgstr "Төгс" -#: libraries/common.lib.php:2429 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr ""%s" өгөгдлийн сан руу үсрэх." -#: libraries/common.lib.php:2448 +#: libraries/common.lib.php:2453 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2828 libraries/common.lib.php:2835 -#: libraries/db_links.inc.php:67 libraries/export/sql.php:24 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 +#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 -#: libraries/tbl_links.inc.php:59 querywindow.php:89 test/theme.php:96 +#: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2837 libraries/db_links.inc.php:103 -#: libraries/tbl_links.inc.php:94 libraries/tbl_links.inc.php:116 -#: view_operations.php:88 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: view_operations.php:87 msgid "Operations" msgstr "Үйлдлүүд" -#: libraries/core.lib.php:282 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1875,38 +1853,38 @@ msgstr "" msgid "Name" msgstr "Нэр" -#: libraries/db_links.inc.php:44 +#: libraries/db_links.inc.php:43 #, php-format msgid "Database %s has been dropped." msgstr "%s өгөгдлийн сан устгагдсан." -#: libraries/db_links.inc.php:56 libraries/db_links.inc.php:57 -#: libraries/db_links.inc.php:58 +#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 +#: libraries/db_links.inc.php:57 msgid "Database seems to be empty!" msgstr "Өгөгдлийн сан хоосон санагдаж байна!" -#: libraries/db_links.inc.php:80 libraries/relation.lib.php:142 -#: libraries/tbl_links.inc.php:68 +#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:85 +#: libraries/db_links.inc.php:84 msgid "Query" msgstr "Асуулт (Query)" -#: libraries/db_links.inc.php:90 libraries/relation.lib.php:138 +#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 msgid "Designer" msgstr "Дизайнч" -#: libraries/db_links.inc.php:97 libraries/server_links.inc.php:87 -#: libraries/tbl_links.inc.php:90 pmd_pdf.php:83 pmd_pdf.php:109 +#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Оруулах" -#: libraries/db_links.inc.php:110 libraries/server_links.inc.php:65 -#: server_privileges.php:111 server_privileges.php:1714 -#: server_privileges.php:2063 test/theme.php:116 +#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: server_privileges.php:110 server_privileges.php:1718 +#: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" msgstr "Онцгой эрхүүд" @@ -1918,14 +1896,14 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1847 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1806 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "May be approximate. See FAQ 3.11" -#: libraries/db_structure.lib.php:60 server_databases.php:141 -#: tbl_printview.php:334 tbl_structure.php:681 +#: libraries/db_structure.lib.php:60 server_databases.php:139 +#: tbl_printview.php:333 tbl_structure.php:679 msgid "Overhead" msgstr "Толгой дээр" @@ -1942,7 +1920,7 @@ msgstr "Сервэрээс хариу алга" msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "(эсвэл дотоод MySQL сервэрийн socket нь зөв тохируулагдаагүй)" -#: libraries/dbi/mysql.dbi.lib.php:358 tbl_structure.php:607 +#: libraries/dbi/mysql.dbi.lib.php:358 tbl_structure.php:605 msgid "Details..." msgstr "" @@ -1952,22 +1930,22 @@ msgid "Change password" msgstr "Нууц үг солих" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:807 +#: libraries/replication_gui.lib.php:347 server_privileges.php:806 msgid "No Password" msgstr "Нууц үггүй" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1530 server_synchronize.php:1174 +#: libraries/replication_gui.lib.php:351 server_privileges.php:795 +#: server_privileges.php:799 server_privileges.php:810 +#: server_privileges.php:1534 server_synchronize.php:1173 msgid "Password" msgstr "Нууц үг" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:815 server_privileges.php:818 +#: server_privileges.php:814 server_privileges.php:817 msgid "Re-type" msgstr "Дахин бич" @@ -1990,8 +1968,8 @@ msgstr "Шинэ ӨС үүсгэх" msgid "Create" msgstr "Үүсгэх" -#: libraries/display_create_database.lib.php:39 server_privileges.php:113 -#: server_privileges.php:1419 server_replication.php:34 +#: libraries/display_create_database.lib.php:39 server_privileges.php:112 +#: server_privileges.php:1423 server_replication.php:33 msgid "No Privileges" msgstr "Онцгой эрхгүй" @@ -2012,50 +1990,50 @@ msgstr "%s ӨС-д шинэ хүснэгт үүсгэх" msgid "Number of columns" msgstr "Талбаруудын тоо" -#: libraries/display_export.lib.php:41 +#: libraries/display_export.lib.php:35 msgid "Could not load export plugins, please check your installation!" msgstr "" -#: libraries/display_export.lib.php:106 +#: libraries/display_export.lib.php:100 #, fuzzy, php-format #| msgid "Dump %s row(s) starting at record # %s" msgid "Dump %s row(s) starting at row # %s" msgstr "%s мөрүүдийг, %s-аас эхлэн устгах." -#: libraries/display_export.lib.php:114 +#: libraries/display_export.lib.php:108 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:124 setup/lib/messages.inc.php:79 +#: libraries/display_export.lib.php:118 setup/lib/messages.inc.php:79 msgid "Save as file" msgstr "Илгээх" -#: libraries/display_export.lib.php:133 +#: libraries/display_export.lib.php:127 #, php-format msgid "Save on server in %s directory" msgstr "Сервэр дээрх хадгалах хавтас %s" -#: libraries/display_export.lib.php:141 setup/lib/messages.inc.php:87 +#: libraries/display_export.lib.php:135 setup/lib/messages.inc.php:87 msgid "Overwrite existing file(s)" msgstr "Файл(ууд)-г дарж бичих" -#: libraries/display_export.lib.php:147 +#: libraries/display_export.lib.php:141 msgid "File name template" msgstr "Файлын нэрийн загвар" -#: libraries/display_export.lib.php:151 +#: libraries/display_export.lib.php:145 msgid "server name" msgstr "сервэрийн нэр" -#: libraries/display_export.lib.php:154 +#: libraries/display_export.lib.php:148 msgid "database name" msgstr "өгөгдлийн сангийн нэр" -#: libraries/display_export.lib.php:157 +#: libraries/display_export.lib.php:151 msgid "table name" msgstr "хүснэгтийн нэр" -#: libraries/display_export.lib.php:161 +#: libraries/display_export.lib.php:155 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2066,39 +2044,39 @@ msgstr "" "тогтнолын тэмдэгтийг хэрэглэж болно. Нэмэлтээр дараах хувиргалт байх болно: " "%3$s. Бусад бичвэрүүд үүн шиг хадгалагдана." -#: libraries/display_export.lib.php:202 +#: libraries/display_export.lib.php:196 msgid "remember template" msgstr "загварыг санах" -#: libraries/display_export.lib.php:210 libraries/display_import.lib.php:177 +#: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 #: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 msgid "Character set of the file:" msgstr "Файлын кодлол:" -#: libraries/display_export.lib.php:235 setup/lib/messages.inc.php:81 +#: libraries/display_export.lib.php:229 setup/lib/messages.inc.php:81 msgid "Compression" msgstr "Шахалт" -#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:196 -#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:529 -#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:574 -#: server_privileges.php:1867 server_processlist.php:74 +#: libraries/display_export.lib.php:234 libraries/display_import.lib.php:196 +#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:528 +#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:573 +#: server_privileges.php:1871 server_processlist.php:74 msgid "None" msgstr "Байхгүй" -#: libraries/display_export.lib.php:247 +#: libraries/display_export.lib.php:241 msgid "\"zipped\"" msgstr "zip-ээр шахах" -#: libraries/display_export.lib.php:253 +#: libraries/display_export.lib.php:247 msgid "\"gzipped\"" msgstr "gzip-ээр шахах" -#: libraries/display_export.lib.php:259 +#: libraries/display_export.lib.php:253 msgid "\"bzipped\"" msgstr "bzip-ээр шахагдсан" -#: libraries/display_export.lib.php:274 libraries/export/sql.php:42 +#: libraries/display_export.lib.php:268 libraries/export/sql.php:42 #: libraries/import/sql.php:31 msgid "SQL compatibility mode" msgstr "SQL нийцтэй горим" @@ -2133,12 +2111,12 @@ msgid "File uploads are not allowed on this server." msgstr "" #: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 -#: tbl_change.php:1024 +#: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "Таны сонгосон хавтас \"upload\" хийгдэхгүй байна" #: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 -#: tbl_change.php:1027 +#: tbl_change.php:925 msgid "web server upload directory" msgstr "web-сервэр түлхэх хавтас" @@ -2220,43 +2198,43 @@ msgstr "Цаасны хэмжээ" msgid "Language" msgstr "Хэл" -#: libraries/display_tbl.lib.php:303 +#: libraries/display_tbl.lib.php:302 #, php-format msgid "%d is not valid row number." msgstr "%d нь мөрийн буруу дугаар байна." -#: libraries/display_tbl.lib.php:309 +#: libraries/display_tbl.lib.php:308 #, fuzzy #| msgid "row(s) starting from record #" msgid "row(s) starting from row #" msgstr "мөрийн эхлэх буй дугаар" -#: libraries/display_tbl.lib.php:315 +#: libraries/display_tbl.lib.php:314 msgid "horizontal" msgstr "хөндлөн" -#: libraries/display_tbl.lib.php:316 +#: libraries/display_tbl.lib.php:315 msgid "horizontal (rotated headers)" msgstr "хөндлөн (эргүүлэгдсэн толгойнууд)" -#: libraries/display_tbl.lib.php:317 +#: libraries/display_tbl.lib.php:316 msgid "vertical" msgstr "босоо" -#: libraries/display_tbl.lib.php:323 +#: libraries/display_tbl.lib.php:322 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "Төлөв %s-д ба %s нїдний дараа толгойнуудыг давтах" -#: libraries/display_tbl.lib.php:345 +#: libraries/display_tbl.lib.php:344 msgid "This operation could take a long time. Proceed anyway?" msgstr "Энэ үйлдэл удах янзтай. Юутай ч үргэлжлүүлэх үү?" -#: libraries/display_tbl.lib.php:511 +#: libraries/display_tbl.lib.php:510 msgid "Sort by key" msgstr "Түлхүүрээр эрэмбэлэх" -#: libraries/display_tbl.lib.php:554 libraries/export/codegen.php:38 +#: libraries/display_tbl.lib.php:553 libraries/export/codegen.php:38 #: libraries/export/csv.php:29 libraries/export/excel.php:34 #: libraries/export/htmlword.php:28 libraries/export/latex.php:32 #: libraries/export/mediawiki.php:21 libraries/export/ods.php:26 @@ -2266,99 +2244,99 @@ msgstr "Түлхүүрээр эрэмбэлэх" #: libraries/export/xlsx.php:26 libraries/export/xml.php:23 #: libraries/export/yaml.php:27 libraries/import.lib.php:1114 #: libraries/import.lib.php:1136 libraries/import/csv.php:31 -#: libraries/import/docsql.php:33 libraries/import/ldi.php:46 +#: libraries/import/docsql.php:32 libraries/import/ldi.php:46 #: libraries/import/ods.php:30 libraries/import/sql.php:19 #: libraries/import/xls.php:25 libraries/import/xlsx.php:25 -#: libraries/import/xml.php:25 tbl_select.php:264 tbl_structure.php:752 +#: libraries/import/xml.php:25 tbl_select.php:263 tbl_structure.php:750 msgid "Options" msgstr "Сонголтууд" -#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:569 +#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:568 msgid "Partial Texts" msgstr "Бичвэрийн зарим хэсэг" -#: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:573 +#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:572 msgid "Full Texts" msgstr "Бүтэн бичвэр" -#: libraries/display_tbl.lib.php:586 +#: libraries/display_tbl.lib.php:585 msgid "Relational key" msgstr "" -#: libraries/display_tbl.lib.php:587 +#: libraries/display_tbl.lib.php:586 #, fuzzy #| msgid "Relational schema" msgid "Relational display column" msgstr "Хамааралтай схем" -#: libraries/display_tbl.lib.php:594 +#: libraries/display_tbl.lib.php:593 msgid "Show binary contents" msgstr "" -#: libraries/display_tbl.lib.php:596 +#: libraries/display_tbl.lib.php:595 msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:598 +#: libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "" -#: libraries/display_tbl.lib.php:606 pmd_general.php:140 tbl_change.php:312 -#: tbl_change.php:318 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:307 +#: tbl_change.php:313 msgid "Hide" msgstr "Нуух" -#: libraries/display_tbl.lib.php:606 libraries/relation.lib.php:122 -#: libraries/tbl_properties.inc.php:143 transformation_overview.php:46 +#: libraries/display_tbl.lib.php:605 libraries/relation.lib.php:117 +#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46 msgid "Browser transformation" msgstr "Хөтчийн өөрчлөл" -#: libraries/display_tbl.lib.php:1125 libraries/display_tbl.lib.php:1129 -#: libraries/display_tbl.lib.php:1131 +#: libraries/display_tbl.lib.php:1124 libraries/display_tbl.lib.php:1128 +#: libraries/display_tbl.lib.php:1130 msgid "Execute bookmarked query" msgstr "Тэмдэглэгдсэн асуулт ажиллуулах" -#: libraries/display_tbl.lib.php:1144 libraries/display_tbl.lib.php:1156 +#: libraries/display_tbl.lib.php:1143 libraries/display_tbl.lib.php:1155 msgid "The row has been deleted" msgstr "Мөр устгагдсан" -#: libraries/display_tbl.lib.php:1183 libraries/display_tbl.lib.php:2055 +#: libraries/display_tbl.lib.php:1182 libraries/display_tbl.lib.php:2014 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "Алах" -#: libraries/display_tbl.lib.php:1933 +#: libraries/display_tbl.lib.php:1892 msgid "in query" msgstr "асуултад" -#: libraries/display_tbl.lib.php:1951 +#: libraries/display_tbl.lib.php:1910 msgid "Showing rows" msgstr "Мөрүүдийг харуулж байна " -#: libraries/display_tbl.lib.php:1961 +#: libraries/display_tbl.lib.php:1920 msgid "total" msgstr "Нийт" -#: libraries/display_tbl.lib.php:1969 sql.php:523 +#: libraries/display_tbl.lib.php:1928 sql.php:522 #, php-format msgid "Query took %01.4f sec" msgstr "Асуулт нь %01.4f сек авлаа" -#: libraries/display_tbl.lib.php:2088 libraries/mult_submits.inc.php:112 -#: querywindow.php:115 querywindow.php:119 querywindow.php:122 -#: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:469 +#: libraries/display_tbl.lib.php:2047 libraries/mult_submits.inc.php:112 +#: querywindow.php:114 querywindow.php:118 querywindow.php:121 +#: tbl_structure.php:23 tbl_structure.php:148 tbl_structure.php:467 msgid "Change" msgstr "Солих" -#: libraries/display_tbl.lib.php:2158 +#: libraries/display_tbl.lib.php:2117 msgid "Query results operations" msgstr "Асуудлын үр дүнгийн үйлдэл" -#: libraries/display_tbl.lib.php:2186 +#: libraries/display_tbl.lib.php:2145 msgid "Print view (with full texts)" msgstr "Хэвлэхээр харах (бүх бичвэртэй нь)" -#: libraries/display_tbl.lib.php:2359 +#: libraries/display_tbl.lib.php:2318 msgid "Link not found" msgstr "Холбоос олдсонгүй" @@ -2414,9 +2392,9 @@ msgstr "InnoDB байдал" msgid "Buffer Pool Usage" msgstr "Буффер Pool Хэрэглээ" -#: libraries/engines/innodb.lib.php:168 server_databases.php:136 -#: server_databases.php:304 server_status.php:524 server_status.php:585 -#: server_status.php:606 tbl_printview.php:349 tbl_structure.php:695 +#: libraries/engines/innodb.lib.php:168 server_databases.php:134 +#: server_databases.php:302 server_status.php:524 server_status.php:585 +#: server_status.php:606 tbl_printview.php:348 tbl_structure.php:693 msgid "Total" msgstr "Нийт" @@ -2551,6 +2529,77 @@ msgstr "" "REPAIR TABLE -ийн үед MyISAM индексийг эрэмбэлэх эсвэл CREATE INDEX болон " "ALTER TABLE -ээр индекс үүсгэх үед буффер хуваарилагдсан." +#: libraries/engines/pbms.lib.php:31 +msgid "Garbage Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:32 +msgid "The percentage of garbage in a repository file before it is compacted." +msgstr "" + +#: libraries/engines/pbms.lib.php:36 libraries/replication_gui.lib.php:69 +#: server_synchronize.php:1161 +msgid "Port" +msgstr "" + +#: libraries/engines/pbms.lib.php:37 +msgid "" +"The port for the PBMS stream-based communications. Setting this value to 0 " +"will disable HTTP communication with the daemon." +msgstr "" + +#: libraries/engines/pbms.lib.php:41 +msgid "Repository Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:42 +msgid "" +"The maximum size of a BLOB repository file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:46 +msgid "Temp Blob Timeout" +msgstr "" + +#: libraries/engines/pbms.lib.php:47 +msgid "" +"The timeout, in seconds, for temporary BLOBs. Uploaded BLOB data is removed " +"after this time, unless they are referenced by a record in the database." +msgstr "" + +#: libraries/engines/pbms.lib.php:51 +msgid "Temp Log Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:52 +msgid "" +"The maximum size of a temporary BLOB log file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:56 +msgid "Max Keep Alive" +msgstr "" + +#: libraries/engines/pbms.lib.php:57 +msgid "" +"The timeout for inactive connection with the keep-alive flag set. After this " +"time the connection will be closed. The time-out is in milliseconds (1/1000)." +msgstr "" + +#: libraries/engines/pbms.lib.php:61 +msgid "Metadata Headers" +msgstr "" + +#: libraries/engines/pbms.lib.php:62 +msgid "" +"A \":\" delimited list of metadata headers to be used to initialize the " +"pbms_metadata_header table when a database is created." +msgstr "" + #: libraries/engines/pbxt.lib.php:22 msgid "Index cache size" msgstr "" @@ -2674,7 +2723,7 @@ msgid "" msgstr "" #: libraries/export/codegen.php:36 setup/lib/messages.inc.php:85 -#: tbl_printview.php:374 tbl_structure.php:736 +#: tbl_printview.php:373 tbl_structure.php:734 msgid "Format" msgstr "Тогтнол" @@ -2745,9 +2794,9 @@ msgstr "Microsoft Word 2000" #: libraries/export/htmlword.php:23 libraries/export/latex.php:59 #: libraries/export/latex.php:205 libraries/export/odt.php:47 #: libraries/export/sql.php:105 libraries/export/sql.php:865 -#: libraries/export/texytext.php:27 server_databases.php:126 -#: server_privileges.php:576 server_replication.php:315 tbl_printview.php:315 -#: tbl_structure.php:664 +#: libraries/export/texytext.php:27 server_databases.php:124 +#: server_privileges.php:575 server_replication.php:314 tbl_printview.php:314 +#: tbl_structure.php:662 msgid "Data" msgstr "Өгөгдөл" @@ -2798,13 +2847,13 @@ msgid "Label key" msgstr "Label key" #: libraries/export/latex.php:46 libraries/export/odt.php:34 -#: libraries/export/sql.php:90 tbl_relation.php:398 +#: libraries/export/sql.php:90 tbl_relation.php:396 msgid "Relations" msgstr "Хамаарал" #: libraries/export/latex.php:52 libraries/export/odt.php:40 #: libraries/export/odt.php:317 libraries/export/sql.php:94 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "MIME-төрөл" @@ -2812,10 +2861,10 @@ msgstr "MIME-төрөл" #: libraries/export/xml.php:101 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1529 server_privileges.php:2061 -#: server_processlist.php:54 server_synchronize.php:1158 +#: libraries/replication_gui.lib.php:331 server_privileges.php:730 +#: server_privileges.php:733 server_privileges.php:789 +#: server_privileges.php:1533 server_privileges.php:2065 +#: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "Хост" @@ -3004,8 +3053,8 @@ msgstr "" msgid "Export contents" msgstr "" -#: libraries/footer.inc.php:182 libraries/footer.inc.php:193 -#: libraries/footer.inc.php:196 +#: libraries/footer.inc.php:180 libraries/footer.inc.php:191 +#: libraries/footer.inc.php:194 msgid "Open new phpMyAdmin window" msgstr "Шинэ phpMyAdmin цонх нээх" @@ -3021,7 +3070,7 @@ msgstr "SQL-үр дүн" msgid "Generated by" msgstr "Үүсгэгч" -#: libraries/import.lib.php:151 sql.php:519 tbl_change.php:180 +#: libraries/import.lib.php:151 sql.php:518 tbl_change.php:175 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL хоосон үр дүн буцаалаа (тэг мөрүүд г.м.)." @@ -3077,7 +3126,7 @@ msgstr "Давхардсан мөрүүдийг алгасах" msgid "Column names in first row" msgstr "" -#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:501 +#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:500 #: view_create.php:147 msgid "Column names" msgstr "Баганын нэрс" @@ -3104,12 +3153,12 @@ msgstr "CSV оруулалтад %d мөрөнд буруу тогтнол ба msgid "Invalid column count in CSV input on line %d." msgstr "CSV оруулалтад %d мөрөнд буруу талбарын тоо байна." -#: libraries/import/docsql.php:28 +#: libraries/import/docsql.php:27 msgid "DocSQL" msgstr "DocSQL" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 -#: server_synchronize.php:427 server_synchronize.php:870 +#: libraries/import/docsql.php:30 libraries/tbl_properties.inc.php:616 +#: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "Хүснэгтийн нэр" @@ -3165,26 +3214,26 @@ msgstr "Байхгүй" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:512 -#: tbl_structure.php:28 tbl_structure.php:152 tbl_structure.php:156 -#: tbl_structure.php:472 +#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:511 +#: tbl_structure.php:27 tbl_structure.php:151 tbl_structure.php:155 +#: tbl_structure.php:470 msgid "Primary" msgstr "Үндсэн" #: libraries/mult_submits.inc.php:97 libraries/tbl_properties.inc.php:115 -#: libraries/tbl_properties.inc.php:524 tbl_printview.php:324 -#: tbl_structure.php:30 tbl_structure.php:153 tbl_structure.php:157 -#: tbl_structure.php:474 tbl_structure.php:672 +#: libraries/tbl_properties.inc.php:523 tbl_printview.php:323 +#: tbl_structure.php:29 tbl_structure.php:152 tbl_structure.php:156 +#: tbl_structure.php:472 tbl_structure.php:670 msgid "Index" msgstr "Индекс" -#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:530 -#: tbl_structure.php:34 tbl_structure.php:155 tbl_structure.php:159 -#: tbl_structure.php:477 +#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:529 +#: tbl_structure.php:33 tbl_structure.php:154 tbl_structure.php:158 +#: tbl_structure.php:475 msgid "Fulltext" msgstr "Бүтэнбичвэр" -#: libraries/mult_submits.inc.php:434 tbl_replace.php:330 +#: libraries/mult_submits.inc.php:433 tbl_replace.php:330 msgid "No change" msgstr "Солигдохгүй" @@ -3192,190 +3241,190 @@ msgstr "Солигдохгүй" msgid "Charset" msgstr "Кодлол" -#: libraries/mysql_charsets.lib.php:210 libraries/mysql_charsets.lib.php:411 -#: tbl_change.php:515 +#: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 +#: tbl_change.php:510 msgid "Binary" msgstr " Хоёртын " -#: libraries/mysql_charsets.lib.php:222 +#: libraries/mysql_charsets.lib.php:214 msgid "Bulgarian" msgstr "Болгар" -#: libraries/mysql_charsets.lib.php:226 libraries/mysql_charsets.lib.php:351 +#: libraries/mysql_charsets.lib.php:218 libraries/mysql_charsets.lib.php:343 msgid "Simplified Chinese" msgstr "Энгийн хятад" -#: libraries/mysql_charsets.lib.php:228 libraries/mysql_charsets.lib.php:371 +#: libraries/mysql_charsets.lib.php:220 libraries/mysql_charsets.lib.php:363 msgid "Traditional Chinese" msgstr "Уламжлалт хятд" -#: libraries/mysql_charsets.lib.php:232 libraries/mysql_charsets.lib.php:418 +#: libraries/mysql_charsets.lib.php:224 libraries/mysql_charsets.lib.php:410 msgid "case-insensitive" msgstr "Том жижиг хамаагүй" -#: libraries/mysql_charsets.lib.php:235 libraries/mysql_charsets.lib.php:420 +#: libraries/mysql_charsets.lib.php:227 libraries/mysql_charsets.lib.php:412 msgid "case-sensitive" msgstr "Том жижиг хамаатай " -#: libraries/mysql_charsets.lib.php:238 +#: libraries/mysql_charsets.lib.php:230 msgid "Croatian" msgstr "Хорват" -#: libraries/mysql_charsets.lib.php:241 +#: libraries/mysql_charsets.lib.php:233 msgid "Czech" msgstr "Чех" -#: libraries/mysql_charsets.lib.php:244 +#: libraries/mysql_charsets.lib.php:236 msgid "Danish" msgstr "Дани" -#: libraries/mysql_charsets.lib.php:247 +#: libraries/mysql_charsets.lib.php:239 msgid "English" msgstr "Англи" -#: libraries/mysql_charsets.lib.php:250 +#: libraries/mysql_charsets.lib.php:242 msgid "Esperanto" msgstr "Есперанто" -#: libraries/mysql_charsets.lib.php:253 +#: libraries/mysql_charsets.lib.php:245 msgid "Estonian" msgstr "Эстони" -#: libraries/mysql_charsets.lib.php:256 libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:248 libraries/mysql_charsets.lib.php:251 msgid "German" msgstr "Немец" -#: libraries/mysql_charsets.lib.php:256 +#: libraries/mysql_charsets.lib.php:248 msgid "dictionary" msgstr "толь" -#: libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:251 msgid "phone book" msgstr "Утасны лавлах" -#: libraries/mysql_charsets.lib.php:262 +#: libraries/mysql_charsets.lib.php:254 msgid "Hungarian" msgstr "Унгар" -#: libraries/mysql_charsets.lib.php:265 +#: libraries/mysql_charsets.lib.php:257 msgid "Icelandic" msgstr "Исланд" -#: libraries/mysql_charsets.lib.php:268 libraries/mysql_charsets.lib.php:358 +#: libraries/mysql_charsets.lib.php:260 libraries/mysql_charsets.lib.php:350 msgid "Japanese" msgstr "Япон" -#: libraries/mysql_charsets.lib.php:271 +#: libraries/mysql_charsets.lib.php:263 msgid "Latvian" msgstr "Латви" -#: libraries/mysql_charsets.lib.php:274 +#: libraries/mysql_charsets.lib.php:266 msgid "Lithuanian" msgstr "Латви" -#: libraries/mysql_charsets.lib.php:277 libraries/mysql_charsets.lib.php:380 +#: libraries/mysql_charsets.lib.php:269 libraries/mysql_charsets.lib.php:372 msgid "Korean" msgstr "Солонгос" -#: libraries/mysql_charsets.lib.php:280 +#: libraries/mysql_charsets.lib.php:272 msgid "Persian" msgstr "Перс" -#: libraries/mysql_charsets.lib.php:283 +#: libraries/mysql_charsets.lib.php:275 msgid "Polish" msgstr "Польш" -#: libraries/mysql_charsets.lib.php:286 libraries/mysql_charsets.lib.php:334 +#: libraries/mysql_charsets.lib.php:278 libraries/mysql_charsets.lib.php:326 msgid "West European" msgstr "Баруун-Европ" -#: libraries/mysql_charsets.lib.php:289 +#: libraries/mysql_charsets.lib.php:281 msgid "Romanian" msgstr "Румын" -#: libraries/mysql_charsets.lib.php:292 +#: libraries/mysql_charsets.lib.php:284 msgid "Slovak" msgstr "Словак" -#: libraries/mysql_charsets.lib.php:295 +#: libraries/mysql_charsets.lib.php:287 msgid "Slovenian" msgstr "Словени" -#: libraries/mysql_charsets.lib.php:298 +#: libraries/mysql_charsets.lib.php:290 msgid "Spanish" msgstr "Испани" -#: libraries/mysql_charsets.lib.php:301 +#: libraries/mysql_charsets.lib.php:293 msgid "Traditional Spanish" msgstr "Уламжлалт Испани" -#: libraries/mysql_charsets.lib.php:304 libraries/mysql_charsets.lib.php:401 +#: libraries/mysql_charsets.lib.php:296 libraries/mysql_charsets.lib.php:393 msgid "Swedish" msgstr "Швед" -#: libraries/mysql_charsets.lib.php:307 libraries/mysql_charsets.lib.php:404 +#: libraries/mysql_charsets.lib.php:299 libraries/mysql_charsets.lib.php:396 msgid "Thai" msgstr "Таи" -#: libraries/mysql_charsets.lib.php:310 libraries/mysql_charsets.lib.php:398 +#: libraries/mysql_charsets.lib.php:302 libraries/mysql_charsets.lib.php:390 msgid "Turkish" msgstr "Турк" -#: libraries/mysql_charsets.lib.php:313 libraries/mysql_charsets.lib.php:395 +#: libraries/mysql_charsets.lib.php:305 libraries/mysql_charsets.lib.php:387 msgid "Ukrainian" msgstr "Украин" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 msgid "Unicode" msgstr "Юникод" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 -#: libraries/mysql_charsets.lib.php:334 libraries/mysql_charsets.lib.php:341 -#: libraries/mysql_charsets.lib.php:363 libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 +#: libraries/mysql_charsets.lib.php:326 libraries/mysql_charsets.lib.php:333 +#: libraries/mysql_charsets.lib.php:355 libraries/mysql_charsets.lib.php:366 msgid "multilingual" msgstr "олонхэлийн" -#: libraries/mysql_charsets.lib.php:341 +#: libraries/mysql_charsets.lib.php:333 msgid "Central European" msgstr "Төв-Европ" -#: libraries/mysql_charsets.lib.php:346 +#: libraries/mysql_charsets.lib.php:338 msgid "Russian" msgstr "Орос" -#: libraries/mysql_charsets.lib.php:363 +#: libraries/mysql_charsets.lib.php:355 msgid "Baltic" msgstr "Балти" -#: libraries/mysql_charsets.lib.php:368 +#: libraries/mysql_charsets.lib.php:360 msgid "Armenian" msgstr "Армян" -#: libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:366 msgid "Cyrillic" msgstr "Кирилл" -#: libraries/mysql_charsets.lib.php:377 +#: libraries/mysql_charsets.lib.php:369 msgid "Arabic" msgstr "Араб" -#: libraries/mysql_charsets.lib.php:383 +#: libraries/mysql_charsets.lib.php:375 msgid "Hebrew" msgstr "Иврей" -#: libraries/mysql_charsets.lib.php:386 +#: libraries/mysql_charsets.lib.php:378 msgid "Georgian" msgstr "Гүрж" -#: libraries/mysql_charsets.lib.php:389 +#: libraries/mysql_charsets.lib.php:381 msgid "Greek" msgstr "Грек" -#: libraries/mysql_charsets.lib.php:392 +#: libraries/mysql_charsets.lib.php:384 msgid "Czech-Slovak" msgstr "Чехословак" -#: libraries/mysql_charsets.lib.php:407 libraries/mysql_charsets.lib.php:414 +#: libraries/mysql_charsets.lib.php:399 libraries/mysql_charsets.lib.php:406 msgid "unknown" msgstr "үлмэдэх" @@ -3401,68 +3450,68 @@ msgstr "Асуултын цонх" msgid "This format has no options" msgstr "Энэ тогтнол сонголтгүй" -#: libraries/relation.lib.php:82 +#: libraries/relation.lib.php:77 msgid "not OK" msgstr "Бэлэн биш" -#: libraries/relation.lib.php:86 pmd_general.php:339 +#: libraries/relation.lib.php:81 pmd_general.php:339 msgid "OK" msgstr "Бэлэн" -#: libraries/relation.lib.php:87 +#: libraries/relation.lib.php:82 msgid "Enabled" msgstr "Нээлттэй" -#: libraries/relation.lib.php:110 +#: libraries/relation.lib.php:105 msgid "Display Features" msgstr "Онцлог харуулах" -#: libraries/relation.lib.php:116 +#: libraries/relation.lib.php:111 msgid "Creation of PDFs" msgstr "PDF-схемийн үүсгэлт" -#: libraries/relation.lib.php:120 +#: libraries/relation.lib.php:115 msgid "Displaying Column Comments" msgstr "Баганын тайлбарыг харуулж байна" -#: libraries/relation.lib.php:125 +#: libraries/relation.lib.php:120 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "Column_comments Хүснэгтийн хэрхэн шинэчлэх талаар баримтжууллаас харна уу" -#: libraries/relation.lib.php:130 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 msgid "Bookmarked SQL query" msgstr "Тэмдэглэгдсэн SQL-асуулт" -#: libraries/relation.lib.php:134 querywindow.php:99 querywindow.php:207 +#: libraries/relation.lib.php:129 querywindow.php:98 querywindow.php:205 msgid "SQL history" msgstr "SQL түүх" -#: libraries/relation.lib.php:146 +#: libraries/relation.lib.php:141 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:148 +#: libraries/relation.lib.php:143 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" -#: libraries/relation.lib.php:149 +#: libraries/relation.lib.php:144 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:150 +#: libraries/relation.lib.php:145 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:151 +#: libraries/relation.lib.php:146 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1158 +#: libraries/relation.lib.php:1153 msgid "no description" msgstr "тайлбаргүй" @@ -3470,7 +3519,7 @@ msgstr "тайлбаргүй" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:53 server_replication.php:346 +#: libraries/replication_gui.lib.php:53 server_replication.php:345 msgid "Change or reconfigure master server" msgstr "" @@ -3482,16 +3531,12 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:711 -#: server_privileges.php:714 server_privileges.php:721 -#: server_synchronize.php:1170 +#: libraries/replication_gui.lib.php:261 server_privileges.php:710 +#: server_privileges.php:713 server_privileges.php:720 +#: server_synchronize.php:1169 msgid "User name" msgstr "Хэрэглэгчийн нэр" -#: libraries/replication_gui.lib.php:69 server_synchronize.php:1162 -msgid "Port" -msgstr "" - #: libraries/replication_gui.lib.php:105 msgid "Master status" msgstr "" @@ -3506,8 +3551,8 @@ msgid "Variable" msgstr "Хувьсагч" #: libraries/replication_gui.lib.php:117 server_status.php:737 -#: tbl_change.php:322 tbl_printview.php:368 tbl_select.php:137 -#: tbl_structure.php:728 +#: tbl_change.php:317 tbl_printview.php:367 tbl_select.php:136 +#: tbl_structure.php:726 msgid "Value" msgstr "Утга" @@ -3521,38 +3566,38 @@ msgid "" "this list." msgstr "" -#: libraries/replication_gui.lib.php:242 server_replication.php:193 +#: libraries/replication_gui.lib.php:242 server_replication.php:192 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:256 server_privileges.php:716 +#: libraries/replication_gui.lib.php:256 server_privileges.php:715 msgid "Any user" msgstr "Дурын хэрэглэгч" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1920 server_privileges.php:1950 +#: libraries/replication_gui.lib.php:348 server_privileges.php:716 +#: server_privileges.php:783 server_privileges.php:807 +#: server_privileges.php:1924 server_privileges.php:1954 msgid "Use text field" msgstr "Бичвэр талбар хэрэглэх" -#: libraries/replication_gui.lib.php:304 server_privileges.php:764 +#: libraries/replication_gui.lib.php:304 server_privileges.php:763 msgid "Any host" msgstr "Дурын хост" -#: libraries/replication_gui.lib.php:308 server_privileges.php:768 +#: libraries/replication_gui.lib.php:308 server_privileges.php:767 msgid "Local" msgstr "Local" -#: libraries/replication_gui.lib.php:314 server_privileges.php:773 +#: libraries/replication_gui.lib.php:314 server_privileges.php:772 msgid "This Host" msgstr "Энэ хост" -#: libraries/replication_gui.lib.php:320 server_privileges.php:779 +#: libraries/replication_gui.lib.php:320 server_privileges.php:778 msgid "Use Host Table" msgstr "Хост хүснэгт хэрэглэх" -#: libraries/replication_gui.lib.php:333 server_privileges.php:792 +#: libraries/replication_gui.lib.php:333 server_privileges.php:791 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3578,8 +3623,8 @@ msgstr "Үл мэдэгдэх хэл: %1$s." msgid "Servers" msgstr "Сервэрүүд" -#: libraries/server_links.inc.php:52 server_engines.php:111 -#: server_engines.php:115 server_status.php:414 test/theme.php:104 +#: libraries/server_links.inc.php:52 server_engines.php:125 +#: server_engines.php:129 server_status.php:414 test/theme.php:104 msgid "Variables" msgstr "Утгууд" @@ -3600,12 +3645,12 @@ msgstr "Хоёртын log" msgid "Processes" msgstr "Процессууд" -#: libraries/server_links.inc.php:91 server_synchronize.php:1091 -#: server_synchronize.php:1099 +#: libraries/server_links.inc.php:91 server_synchronize.php:1090 +#: server_synchronize.php:1098 msgid "Synchronize" msgstr "" -#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1109 +#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1108 msgid "Source database" msgstr "" @@ -3623,7 +3668,7 @@ msgstr "" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1111 +#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1110 msgid "Target database" msgstr "" @@ -3643,11 +3688,11 @@ msgstr "Өгөгдлийн сан %s дээрх SQL асуултыг ажилл msgid "Columns" msgstr "Баганын нэрс" -#: libraries/sql_query_form.lib.php:342 sql.php:664 sql.php:665 sql.php:682 +#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "Энэ SQL-асуулт-ыг тэмдэглэх" -#: libraries/sql_query_form.lib.php:349 sql.php:676 +#: libraries/sql_query_form.lib.php:349 sql.php:669 msgid "Let every user access this bookmark" msgstr "Энэ тэмдэглэгээг бүх хэрэглэгчид хандахыг зөвшөөрөх" @@ -3742,12 +3787,12 @@ msgstr "" "SQL баталгаажуулагч эхлэгдсэнгүй. Хэрэв PHP өргөтгөл суугдсан бол шалгана " "уу, %sбаримтжуулалд%s тодорхойлогдсон." -#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:139 -#: libraries/tbl_links.inc.php:140 +#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 +#: libraries/tbl_links.inc.php:139 msgid "Table seems to be empty!" msgstr "Хүснэг хоосон үзэгдэж байна!" -#: libraries/tbl_links.inc.php:148 +#: libraries/tbl_links.inc.php:147 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" @@ -3782,12 +3827,12 @@ msgstr "" "Анхдагч утгаар энэ тогтнолыг ашиглан ташуу зураас, хашилтгүй ганц утга " "оруулна уу: a" -#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1263 -#: pdf_schema.php:1284 tbl_printview.php:142 tbl_structure.php:179 +#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1262 +#: pdf_schema.php:1283 tbl_printview.php:141 tbl_structure.php:178 msgid "Attributes" msgstr "Атрибутууд" -#: libraries/tbl_properties.inc.php:136 +#: libraries/tbl_properties.inc.php:135 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -3796,11 +3841,11 @@ msgstr "" "Боломжтой өөрчлөлийн сонголтуудын жагсаалт ба тэдгээр MIME-төрлийн " "өөрчлөлүүдийн тулд, %sөөрчлөлийн тайлбар%s -д дарах" -#: libraries/tbl_properties.inc.php:144 +#: libraries/tbl_properties.inc.php:143 msgid "Transformation options" msgstr "Өөрчлөлийн сонголтууд" -#: libraries/tbl_properties.inc.php:145 +#: libraries/tbl_properties.inc.php:144 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
                            If you ever need to put a backslash (\"\\\") or a single " @@ -3811,18 +3856,18 @@ msgstr "" "та буруу ташуу зургаас эсвэл дан хашилт тавихыг хүсвэл буруу ташуу зураасыг " "өмнө нь тавина уу. (Ж: '\\\\xyz' or 'a\\'b')." -#: libraries/tbl_properties.inc.php:392 +#: libraries/tbl_properties.inc.php:391 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "Байхгүй" -#: libraries/tbl_properties.inc.php:393 +#: libraries/tbl_properties.inc.php:392 msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:579 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:578 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
                            Please ask the " @@ -3830,29 +3875,29 @@ msgid "" msgstr "" "Энэ өөрчлөлтөд Тайлбаргүй нь идэвхтэй.
                            %s-ын зохиогчийг асууна уу." -#: libraries/tbl_properties.inc.php:725 server_engines.php:57 -#: tbl_operations.php:354 +#: libraries/tbl_properties.inc.php:724 server_engines.php:56 +#: tbl_operations.php:352 msgid "Storage Engine" msgstr "Агуулах хөдөлгүүр" -#: libraries/tbl_properties.inc.php:754 +#: libraries/tbl_properties.inc.php:753 msgid "PARTITION definition" msgstr "" -#: libraries/tbl_properties.inc.php:775 pdf_pages.php:502 +#: libraries/tbl_properties.inc.php:774 pdf_pages.php:501 #: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214 -#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1124 tbl_indexes.php:247 -#: tbl_relation.php:565 +#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1022 tbl_indexes.php:246 +#: tbl_relation.php:563 msgid "Save" msgstr "Хадгалах" -#: libraries/tbl_properties.inc.php:779 tbl_structure.php:541 +#: libraries/tbl_properties.inc.php:778 tbl_structure.php:539 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "%s талбар(ууд) нэмэх" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:535 +#: libraries/tbl_properties.inc.php:782 tbl_structure.php:533 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -4036,8 +4081,8 @@ msgstr "" msgid "Custom color" msgstr "" -#: main.php:162 pdf_pages.php:362 setup/lib/FormDisplay.tpl.php:216 -#: tbl_change.php:1173 +#: main.php:162 pdf_pages.php:361 setup/lib/FormDisplay.tpl.php:216 +#: tbl_change.php:1071 msgid "Reset" msgstr "Да.эхлэх" @@ -4045,8 +4090,8 @@ msgstr "Да.эхлэх" msgid "Protocol version" msgstr "Протоколын хувилбар" -#: main.php:188 server_privileges.php:1381 server_privileges.php:1528 -#: server_privileges.php:1642 server_privileges.php:2060 +#: main.php:188 server_privileges.php:1385 server_privileges.php:1532 +#: server_privileges.php:1646 server_privileges.php:2064 #: server_processlist.php:53 msgid "User" msgstr "Хэрэглэгч" @@ -4128,21 +4173,30 @@ msgid "" "has been configured." msgstr "" -#: main.php:330 +#: main.php:314 +#, php-format +msgid "" +"The additional features for working with linked tables have been " +"deactivated. To find out why click %shere%s." +msgstr "" +"Холбогдсон хүснэгтүүдтэй ажиллах нэмэлт онцлогууд идэвхгүй болжээ. %sЭнд%s " +"дарж шалгах." + +#: main.php:329 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:345 +#: main.php:344 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: main.php:357 +#: main.php:356 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -4153,68 +4207,68 @@ msgstr "" msgid "Reload navigation frame" msgstr "" -#: navigation.php:204 server_databases.php:370 server_synchronize.php:1190 +#: navigation.php:203 server_databases.php:368 server_synchronize.php:1189 msgid "No databases" msgstr "ӨС байхгүй" -#: navigation.php:298 +#: navigation.php:297 msgid "Filter" msgstr "" -#: navigation.php:299 setup/frames/index.inc.php:218 +#: navigation.php:298 setup/frames/index.inc.php:218 #: setup/lib/messages.inc.php:41 msgid "Clear" msgstr "" -#: navigation.php:330 navigation.php:331 +#: navigation.php:329 navigation.php:330 #, fuzzy #| msgid "Create table" msgctxt "short form" msgid "Create table" msgstr "Хүснэгт үүсгэх" -#: navigation.php:333 navigation.php:495 +#: navigation.php:332 navigation.php:494 msgid "Please select a database" msgstr "Өгөгдлийн сан сонго" -#: pdf_pages.php:40 pdf_pages.php:46 pdf_pages.php:52 pdf_pages.php:57 +#: pdf_pages.php:39 pdf_pages.php:45 pdf_pages.php:51 pdf_pages.php:56 #, php-format msgid "%s table not found or not set in %s" msgstr "%s хүснэгт олдсонгүй эсвэл %s-д сонгогдоогүй" -#: pdf_pages.php:265 +#: pdf_pages.php:264 msgid "Please choose a page to edit" msgstr "Засах Хуудсаа сонго" -#: pdf_pages.php:303 pmd_pdf.php:113 +#: pdf_pages.php:302 pmd_pdf.php:111 msgid "Create a page" msgstr "Шинэ хуудас үүсгэх" -#: pdf_pages.php:309 +#: pdf_pages.php:308 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Хуудасны дугаар:" -#: pdf_pages.php:313 +#: pdf_pages.php:312 #, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "Автомат байрлал" -#: pdf_pages.php:315 +#: pdf_pages.php:314 msgid "Internal relations" msgstr "Дотоод хамаарал" -#: pdf_pages.php:338 +#: pdf_pages.php:337 msgid "Select Tables" msgstr "Хүснэгтүүд сонго" -#: pdf_pages.php:361 +#: pdf_pages.php:360 msgid "Toggle scratchboard" msgstr "toggle scratchboard" -#: pdf_pages.php:524 +#: pdf_pages.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -4222,37 +4276,37 @@ msgstr "" "Хүснэгтийн лавлахтай хуудас нь удаан оршихгүй, Та эдгээр лавлахуудыг устгах " "уу?" -#: pdf_schema.php:635 +#: pdf_schema.php:634 #, fuzzy, php-format #| msgid "The \"%s\" table doesn't exist!" msgid "The %s table doesn't exist!" msgstr "Хүснэгт \"%s\" байхгүй байна!" -#: pdf_schema.php:671 +#: pdf_schema.php:670 #, php-format msgid "Please configure the coordinates for table %s" msgstr "%s хүснэгтийн координатыг тохируулна уу" -#: pdf_schema.php:994 +#: pdf_schema.php:993 #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" msgstr "\"%s\" өгөгдлийн сангийн схем - Хуудас %s" -#: pdf_schema.php:1012 +#: pdf_schema.php:1011 msgid "No tables" msgstr "Хүснэгт алга" -#: pdf_schema.php:1031 pdf_schema.php:1140 +#: pdf_schema.php:1030 pdf_schema.php:1139 msgid "Relational schema" msgstr "Хамааралтай схем" -#: pdf_schema.php:1115 +#: pdf_schema.php:1114 msgid "Table of contents" msgstr "Агуулгын хүснэгт" -#: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:145 -#: tbl_structure.php:182 tbl_tracking.php:277 +#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 +#: tbl_structure.php:181 tbl_tracking.php:272 msgid "Extra" msgstr "Нэмэлт" @@ -4264,7 +4318,7 @@ msgstr "Харуулах/Нуух зүүн цэс" msgid "Save position" msgstr "Байрлал хадгалах" -#: pmd_general.php:70 server_synchronize.php:428 server_synchronize.php:871 +#: pmd_general.php:70 server_synchronize.php:427 server_synchronize.php:870 msgid "Create table" msgstr "Хүснэгт үүсгэх" @@ -4335,31 +4389,31 @@ msgid "" "appropriate column name." msgstr "" -#: pmd_pdf.php:62 +#: pmd_pdf.php:60 msgid "Page has been created" msgstr "" -#: pmd_pdf.php:64 +#: pmd_pdf.php:62 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:84 +#: pmd_pdf.php:82 msgid "Export/Import to scale" msgstr "Гаргах/Оруулах хэмжээс" -#: pmd_pdf.php:88 +#: pmd_pdf.php:86 msgid "recommended" msgstr "сайшаагдсан" -#: pmd_pdf.php:93 +#: pmd_pdf.php:91 msgid "to/from page" msgstr "хаанаас/хаашаа хуудас" -#: querywindow.php:94 +#: querywindow.php:93 msgid "Import files" msgstr "Файл оруулах" -#: querywindow.php:105 +#: querywindow.php:104 msgid "All" msgstr "Бүх" @@ -4405,188 +4459,188 @@ msgstr "Мэдээлэл" msgid "Character Sets and Collations" msgstr "Кодлол ба жишилт" -#: server_databases.php:51 +#: server_databases.php:49 msgid "No databases selected." msgstr "ӨС сонгогдоогүй." -#: server_databases.php:62 +#: server_databases.php:60 #, php-format msgid "%s databases have been dropped successfully." msgstr "%s ӨС амжилттай устгагдлаа." -#: server_databases.php:87 +#: server_databases.php:85 msgid "Databases statistics" msgstr "Өгөгдлийн сангийн статистик" -#: server_databases.php:116 server_status.php:370 +#: server_databases.php:114 server_status.php:370 #: setup/lib/messages.inc.php:114 msgid "Tables" msgstr "Хүснэгт" -#: server_databases.php:194 server_replication.php:180 -#: server_replication.php:208 +#: server_databases.php:192 server_replication.php:179 +#: server_replication.php:207 msgid "Master replication" msgstr "" -#: server_databases.php:196 server_replication.php:247 +#: server_databases.php:194 server_replication.php:246 msgid "Slave replication" msgstr "" -#: server_databases.php:229 +#: server_databases.php:227 #, fuzzy #| msgid "No databases" msgid "Jump to database" msgstr "ӨС байхгүй" -#: server_databases.php:266 +#: server_databases.php:264 msgid "Not replicated" msgstr "" -#: server_databases.php:272 +#: server_databases.php:270 #, fuzzy #| msgid "Replication" msgid "Replicated" msgstr "Олшруулалт" -#: server_databases.php:288 +#: server_databases.php:286 #, php-format msgid "Check privileges for database "%s"." msgstr ""%s" өгөгдлийн сангийн онцгой эрх шалгах." -#: server_databases.php:292 server_databases.php:293 +#: server_databases.php:290 server_databases.php:291 msgid "Check Privileges" msgstr "Онцгой эрх шалгах" -#: server_databases.php:357 server_databases.php:358 +#: server_databases.php:355 server_databases.php:356 msgid "Enable Statistics" msgstr "Нээлттэй статистик" -#: server_databases.php:361 server_databases.php:362 +#: server_databases.php:359 server_databases.php:360 msgid "Disable Statistics" msgstr "Хаалттай статистик" -#: server_databases.php:365 +#: server_databases.php:363 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." msgstr "" "Тэмдэглэл: Вэб сервэр, MySQL-ийн хоорондох өгөгдөл дамжуулах статистик." -#: server_engines.php:48 +#: server_engines.php:47 msgid "Storage Engines" msgstr "Агуулах хөдөлгүүрүүд" -#: server_export.php:20 +#: server_export.php:18 msgid "View dump (schema) of databases" msgstr "ӨС-ийн схем харах" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:23 server_privileges.php:265 msgid "Includes all privileges except GRANT." msgstr "Includes all privileges except GRANT." -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:24 server_privileges.php:191 +#: server_privileges.php:514 msgid "Allows altering the structure of existing tables." msgstr "Байгаа хүснэгтийн бүтцийг өөрчлөхийг зөвшөөрөх." -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:25 server_privileges.php:207 +#: server_privileges.php:520 msgid "Allows altering and dropping stored routines." msgstr "Хадгалагдсан заншил устгах, өөрчлөхийг зөвшөөрөх." -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:26 server_privileges.php:183 +#: server_privileges.php:513 msgid "Allows creating new databases and tables." msgstr "Шинэ өгөгдлийн сан, хүснэгт үүсгэхийг зөвшөөрөх." -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:27 server_privileges.php:206 +#: server_privileges.php:519 msgid "Allows creating stored routines." msgstr "Хадгалагдсан заншил үүсгэхийг зөвшөөрөх." -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:513 msgid "Allows creating new tables." msgstr "Шинэ хүснэгт үүсгэхийг зөвшөөрөх." -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:29 server_privileges.php:194 +#: server_privileges.php:517 msgid "Allows creating temporary tables." msgstr "Завсрын хүснэгт үүсгэхийг зөвшөөрөх." -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:30 server_privileges.php:208 +#: server_privileges.php:553 msgid "Allows creating, dropping and renaming user accounts." msgstr "Хэрэглэгчийн эрхийг үүсгэх, устгах, да.нэрлэхийг зөвшөөрөх." -#: server_privileges.php:32 server_privileges.php:199 -#: server_privileges.php:203 server_privileges.php:526 -#: server_privileges.php:530 +#: server_privileges.php:31 server_privileges.php:198 +#: server_privileges.php:202 server_privileges.php:525 +#: server_privileges.php:529 msgid "Allows creating new views." msgstr "Шинэ харц үүсгэхийг зөвшөөрөх." -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:32 server_privileges.php:182 +#: server_privileges.php:505 msgid "Allows deleting data." msgstr "Өгөгдөл устгахыг зөвшөөрөх." -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:33 server_privileges.php:184 +#: server_privileges.php:516 msgid "Allows dropping databases and tables." msgstr "ӨС, хүснэгт устгахыг зөвшөөрөх " -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:34 server_privileges.php:516 msgid "Allows dropping tables." msgstr "Хүснэгт устгахыг зөвшөөрөх." -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:35 server_privileges.php:199 +#: server_privileges.php:533 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:36 server_privileges.php:209 +#: server_privileges.php:521 msgid "Allows executing stored routines." msgstr "Хадгалагдсан заншлыг ажиллуулахыг зөвшөөрөх." -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:37 server_privileges.php:188 +#: server_privileges.php:508 msgid "Allows importing data from and exporting data into files." msgstr "Өгөгдөл оруулах, файл руу гаргахыг зөвшөөрөх." -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:38 server_privileges.php:539 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Хэрэглэгч болон онцгой эрхийг онцгой эрхийн хүснэгтийг дуудалгүй нэмэхийг " "зөвшөөрөх." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:515 msgid "Allows creating and dropping indexes." msgstr "Индекс үүсгэх, устгахыг зөвшөөрөх." -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:40 server_privileges.php:180 +#: server_privileges.php:441 server_privileges.php:503 msgid "Allows inserting and replacing data." msgstr "Өгөгдөл нэмэх, солихыг зөвшөөрөх." -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:41 server_privileges.php:195 +#: server_privileges.php:548 msgid "Allows locking tables for the current thread." msgstr "Тухайн процесст хүснэгт түгжихийг зөвшөөрөх." -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:42 server_privileges.php:645 +#: server_privileges.php:647 msgid "Limits the number of new connections the user may open per hour." msgstr "Цаг тутамд шинээр холбогдох хэрэглэгчийн тоог хязгаарлах." -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:43 server_privileges.php:633 +#: server_privileges.php:635 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Цаг тутамд хэрэглэгчийн асуулт (query) илгээхийг хязгаарлах." -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:44 server_privileges.php:639 +#: server_privileges.php:641 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -4594,58 +4648,58 @@ msgstr "" "Цаг тутамд хэрэглэгчийн хүснэгт эсвэл өгөгдлийн сан солих командыг " "хязгаарлах." -#: server_privileges.php:46 server_privileges.php:652 -#: server_privileges.php:654 +#: server_privileges.php:45 server_privileges.php:651 +#: server_privileges.php:653 msgid "Limits the number of simultaneous connections the user may have." msgstr "Хэрэглэгчдэд байх зэрэг холболтын хязгаарлах тоо." -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:46 server_privileges.php:187 +#: server_privileges.php:543 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:47 server_privileges.php:189 +#: server_privileges.php:447 server_privileges.php:549 msgid "Has no effect in this MySQL version." msgstr "MySQL-ын энэ хувилбарт үйлчлэлгүй." -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:48 server_privileges.php:185 +#: server_privileges.php:544 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Сервэрийн тохиргоог дахин дуудахыг зөвшөөрөх." -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:197 +#: server_privileges.php:551 msgid "Allows the user to ask where the slaves / masters are." msgstr "Gives the right to the user to ask where the slaves / masters are." -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:50 server_privileges.php:196 +#: server_privileges.php:552 msgid "Needed for the replication slaves." msgstr "Needed for the replication slaves." -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:51 server_privileges.php:179 +#: server_privileges.php:438 server_privileges.php:502 msgid "Allows reading data." msgstr "Өгөгдөл уншихыг зөвшөөрөх." -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:52 server_privileges.php:192 +#: server_privileges.php:546 msgid "Gives access to the complete list of databases." msgstr "Өгөгдлийн сангийн бүрэн жагсаалт руу хандахыг өгөх." -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:53 server_privileges.php:203 +#: server_privileges.php:205 server_privileges.php:518 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "SHOW CREATE VIEW асуултыг хийхийг зөвшөөрөх." -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:54 server_privileges.php:186 +#: server_privileges.php:545 msgid "Allows shutting down the server." msgstr "Сервэрийг унтраахыг зөвшөөрөх." -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:55 server_privileges.php:193 +#: server_privileges.php:542 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -4654,158 +4708,158 @@ msgstr "" "Хэрэв ХИ холболтын тоо гүйцсэн ч холбогдохыг зөвшөөрөх. Бусад хэрэглэгчийн " "процессыг үгүй хийх эсвэл глобал утгыг өөрчлөх шаардлагатай болно." -#: server_privileges.php:57 server_privileges.php:201 -#: server_privileges.php:535 +#: server_privileges.php:56 server_privileges.php:200 +#: server_privileges.php:534 msgid "Allows creating and dropping triggers" msgstr "" -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:57 server_privileges.php:181 +#: server_privileges.php:444 server_privileges.php:504 msgid "Allows changing data." msgstr "Өгөгдөл солихыг зөвшөөрөх." -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:58 server_privileges.php:259 msgid "No privileges." msgstr "Онцгой эрхгүй." -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:301 server_privileges.php:302 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Байхгүй" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1710 server_privileges.php:1716 +#: server_privileges.php:430 server_privileges.php:565 +#: server_privileges.php:1714 server_privileges.php:1720 msgid "Table-specific privileges" msgstr " Хүснэгтийн тусгай онцгой эрхүүд" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1532 +#: server_privileges.php:431 server_privileges.php:573 +#: server_privileges.php:1536 msgid " Note: MySQL privilege names are expressed in English " msgstr " Тэмдэглэл: MySQL онцгой эрхийн нэр нь англиар илэрхийлэгдсэн " -#: server_privileges.php:563 server_privileges.php:1531 +#: server_privileges.php:562 server_privileges.php:1535 msgid "Global privileges" msgstr "Глобал онцгой эрх" -#: server_privileges.php:565 server_privileges.php:1710 +#: server_privileges.php:564 server_privileges.php:1714 msgid "Database-specific privileges" msgstr " Онцгой эрх, өгөгдлийн сангийн эрх" -#: server_privileges.php:610 +#: server_privileges.php:609 msgid "Administration" msgstr "Зохион байгуулалт" -#: server_privileges.php:630 +#: server_privileges.php:629 msgid "Resource limits" msgstr "Нөөцийн хязгаар" -#: server_privileges.php:631 +#: server_privileges.php:630 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Тэмдэглэл: Тохируулгын сонголтыг 0 (тэг) болговол хязгаарыг хасна." -#: server_privileges.php:708 +#: server_privileges.php:707 msgid "Login Information" msgstr "Нэвтрэх мэдээлэл" -#: server_privileges.php:802 +#: server_privileges.php:801 msgid "Do not change the password" msgstr "Нууц үгийг солихгүй" -#: server_privileges.php:835 server_privileges.php:2197 +#: server_privileges.php:834 server_privileges.php:2201 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Хэрэглэгч олдсонгүй." -#: server_privileges.php:879 +#: server_privileges.php:878 #, php-format msgid "The user %s already exists!" msgstr "Хэрэглэгч %s оршин байна!" -#: server_privileges.php:962 +#: server_privileges.php:961 msgid "You have added a new user." msgstr "Шинэ хэрэглэгч нэмэгдлээ." -#: server_privileges.php:1183 +#: server_privileges.php:1184 #, fuzzy, php-format msgid "You have updated the privileges for %s." msgstr "Онцгой эрх шинэчлэгдлээ" -#: server_privileges.php:1207 +#: server_privileges.php:1208 #, php-format msgid "You have revoked the privileges for %s" msgstr "Онцгой эрх %s -ыг хүчингүй болголоо" -#: server_privileges.php:1243 +#: server_privileges.php:1244 #, php-format msgid "The password for %s was changed successfully." msgstr "%s-ы нууц үг солигдлоо." -#: server_privileges.php:1263 +#: server_privileges.php:1264 #, php-format msgid "Deleting %s" msgstr "%s-г устгаж байна" -#: server_privileges.php:1274 +#: server_privileges.php:1275 msgid "No users selected for deleting!" msgstr "Устгахаар хэрэглэгч сонгогдсонгүй!" -#: server_privileges.php:1277 +#: server_privileges.php:1278 msgid "Reloading the privileges" msgstr "Онцгой эрхийг дахин дуудаж байна" -#: server_privileges.php:1292 +#: server_privileges.php:1296 msgid "The selected users have been deleted successfully." msgstr "Сонгогдсон хэрэглэгч устгагдлаа." -#: server_privileges.php:1327 +#: server_privileges.php:1331 msgid "The privileges were reloaded successfully." msgstr "Онцгой эрхүүд дахин дуудагдлаа." -#: server_privileges.php:1355 server_privileges.php:1641 +#: server_privileges.php:1359 server_privileges.php:1645 msgid "Edit Privileges" msgstr "Онцгой эрхүүдийг засах" -#: server_privileges.php:1364 +#: server_privileges.php:1368 msgid "Revoke" msgstr "Хүчингүй" -#: server_privileges.php:1396 +#: server_privileges.php:1400 msgid "User overview" msgstr "User overview" -#: server_privileges.php:1533 server_privileges.php:1715 -#: server_privileges.php:2064 +#: server_privileges.php:1537 server_privileges.php:1719 +#: server_privileges.php:2068 msgid "Grant" msgstr "Хандив" -#: server_privileges.php:1552 server_privileges.php:2154 +#: server_privileges.php:1556 server_privileges.php:2158 msgid "Any" msgstr "Дурын" -#: server_privileges.php:1601 server_privileges.php:1625 -#: server_privileges.php:2019 server_privileges.php:2208 +#: server_privileges.php:1605 server_privileges.php:1629 +#: server_privileges.php:2023 server_privileges.php:2212 msgid "Add a new User" msgstr "Шинэ хэрэглэгч нэмэх" -#: server_privileges.php:1606 +#: server_privileges.php:1610 msgid "Remove selected users" msgstr "Сонгогдсон хэрэглэгчдийг хасах" -#: server_privileges.php:1609 +#: server_privileges.php:1613 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Устгахын төгсгөлд нь хэрэглэгчдээс идэвхтэй бүх онцгой эрхийг хүчингүй " "болгох." -#: server_privileges.php:1610 server_privileges.php:1611 -#: server_privileges.php:1612 +#: server_privileges.php:1614 server_privileges.php:1615 +#: server_privileges.php:1616 msgid "Drop the databases that have the same names as the users." msgstr "Хэрэглэгчтэй адил нэртэй өгөгдлийн санг устгах." -#: server_privileges.php:1628 +#: server_privileges.php:1632 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4818,48 +4872,48 @@ msgstr "" "агуулга нь сервэрт хэрэглэгдэж буйгаас өөр байна. Энэ тохиолдолд %sдахин " "дуудаж%s үргэлжлүүлнэ үү." -#: server_privileges.php:1676 +#: server_privileges.php:1680 msgid "The selected user was not found in the privilege table." msgstr "Сонгогдсон хэрэглэгч онцгой эрхийн хүснэгтэд алга байна." -#: server_privileges.php:1716 +#: server_privileges.php:1720 msgid "Column-specific privileges" msgstr "Онцгой эрх, баганын эрх" -#: server_privileges.php:1917 +#: server_privileges.php:1921 msgid "Add privileges on the following database" msgstr "Дараах өгөгдлийн санд онцгой эрх нэмэх" -#: server_privileges.php:1935 +#: server_privileges.php:1939 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:1938 +#: server_privileges.php:1942 msgid "Add privileges on the following table" msgstr "Дараах хүснэгтэд онцгой эрх нэмэх" -#: server_privileges.php:1995 +#: server_privileges.php:1999 msgid "Change Login Information / Copy User" msgstr "Нэвтрэх мэдээллийг солих/ Хэрэглэгч хуулах" -#: server_privileges.php:1998 +#: server_privileges.php:2002 msgid "Create a new user with the same privileges and ..." msgstr "Адил онцгой эрхтэй хэрэглэгч үүсгэх ба ..." -#: server_privileges.php:2000 +#: server_privileges.php:2004 msgid "... keep the old one." msgstr "... хуучныг үлдээх." -#: server_privileges.php:2001 +#: server_privileges.php:2005 msgid " ... delete the old one from the user tables." msgstr " ... хэрэглэгчийн хүснэгтүүдээс устгах." -#: server_privileges.php:2002 +#: server_privileges.php:2006 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr " ... хуучнаас бүх онцгой эрхийг хүчингүй болгоод дараа нь устга." -#: server_privileges.php:2003 +#: server_privileges.php:2007 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -4867,44 +4921,44 @@ msgstr "" " ... хэрэглэгчийн хүснэгтүүдээс нэгийг устгаад дараа нь онцгой эрхийг дахин " "дууд." -#: server_privileges.php:2025 +#: server_privileges.php:2029 msgid "Database for user" msgstr "Хэрэглэгчийн өгөгдлийн сан" -#: server_privileges.php:2029 +#: server_privileges.php:2033 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Байхгүй" -#: server_privileges.php:2030 +#: server_privileges.php:2034 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2031 +#: server_privileges.php:2035 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2034 +#: server_privileges.php:2038 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: server_privileges.php:2057 +#: server_privileges.php:2061 #, php-format msgid "Users having access to "%s"" msgstr "Хэрэглэгчдийн хандсан нь "%s"" -#: server_privileges.php:2165 +#: server_privileges.php:2169 msgid "global" msgstr "global" -#: server_privileges.php:2167 +#: server_privileges.php:2171 msgid "database-specific" msgstr "Өгөгдлийн сангийн эрх" -#: server_privileges.php:2169 +#: server_privileges.php:2173 msgid "wildcard" msgstr "загвар" @@ -4924,53 +4978,53 @@ msgstr "" msgid "ID" msgstr "ID" -#: server_replication.php:50 +#: server_replication.php:49 msgid "Unknown error" msgstr "" -#: server_replication.php:57 +#: server_replication.php:56 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:64 +#: server_replication.php:63 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:70 +#: server_replication.php:69 msgid "Unable to change master" msgstr "" -#: server_replication.php:73 +#: server_replication.php:72 #, php-format msgid "Master server changed succesfully to %s" msgstr "" -#: server_replication.php:181 +#: server_replication.php:180 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:183 server_status.php:391 +#: server_replication.php:182 server_status.php:391 msgid "Show master status" msgstr "" -#: server_replication.php:186 +#: server_replication.php:185 msgid "Show connected slaves" msgstr "" -#: server_replication.php:209 +#: server_replication.php:208 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:216 +#: server_replication.php:215 msgid "Master configuration" msgstr "" -#: server_replication.php:217 +#: server_replication.php:216 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -4979,107 +5033,107 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:220 +#: server_replication.php:219 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:221 +#: server_replication.php:220 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:224 +#: server_replication.php:223 msgid "Please select databases:" msgstr "" -#: server_replication.php:227 +#: server_replication.php:226 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: server_replication.php:229 +#: server_replication.php:228 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: server_replication.php:292 +#: server_replication.php:291 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:295 +#: server_replication.php:294 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:304 +#: server_replication.php:303 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:307 +#: server_replication.php:306 msgid "See slave status table" msgstr "" -#: server_replication.php:310 +#: server_replication.php:309 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:321 +#: server_replication.php:320 msgid "Control slave:" msgstr "" -#: server_replication.php:324 +#: server_replication.php:323 msgid "Full start" msgstr "" -#: server_replication.php:324 +#: server_replication.php:323 msgid "Full stop" msgstr "" -#: server_replication.php:325 +#: server_replication.php:324 msgid "Reset slave" msgstr "" -#: server_replication.php:326 +#: server_replication.php:325 #, php-format msgid "SQL Thread %s only" msgstr "" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 msgid "Start" msgstr "" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 msgid "Stop" msgstr "" -#: server_replication.php:327 +#: server_replication.php:326 #, php-format msgid "IO Thread %s only" msgstr "" -#: server_replication.php:331 +#: server_replication.php:330 msgid "Error management:" msgstr "" -#: server_replication.php:333 +#: server_replication.php:332 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:335 +#: server_replication.php:334 msgid "Skip current error" msgstr "" -#: server_replication.php:336 +#: server_replication.php:335 msgid "Skip next" msgstr "" -#: server_replication.php:339 +#: server_replication.php:338 msgid "errors." msgstr "" -#: server_replication.php:354 +#: server_replication.php:353 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -5831,112 +5885,112 @@ msgstr "Асуултын төрөл" msgid "Replication status" msgstr "" -#: server_synchronize.php:93 +#: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:96 +#: server_synchronize.php:95 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:121 server_synchronize.php:124 tbl_create.php:77 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:264 +#: server_synchronize.php:263 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:271 +#: server_synchronize.php:270 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:399 server_synchronize.php:838 +#: server_synchronize.php:398 server_synchronize.php:837 msgid "not present" msgstr "" -#: server_synchronize.php:423 server_synchronize.php:866 +#: server_synchronize.php:422 server_synchronize.php:865 msgid "Structure Difference" msgstr "" -#: server_synchronize.php:424 server_synchronize.php:867 +#: server_synchronize.php:423 server_synchronize.php:866 msgid "Data Difference" msgstr "" -#: server_synchronize.php:429 server_synchronize.php:872 +#: server_synchronize.php:428 server_synchronize.php:871 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:430 server_synchronize.php:873 +#: server_synchronize.php:429 server_synchronize.php:872 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:431 server_synchronize.php:874 +#: server_synchronize.php:430 server_synchronize.php:873 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:432 server_synchronize.php:875 +#: server_synchronize.php:431 server_synchronize.php:874 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:433 server_synchronize.php:876 +#: server_synchronize.php:432 server_synchronize.php:875 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:434 server_synchronize.php:877 +#: server_synchronize.php:433 server_synchronize.php:876 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:435 server_synchronize.php:878 +#: server_synchronize.php:434 server_synchronize.php:877 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:445 server_synchronize.php:889 +#: server_synchronize.php:444 server_synchronize.php:888 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:448 server_synchronize.php:893 +#: server_synchronize.php:447 server_synchronize.php:892 msgid "Apply Selected Changes" msgstr "" -#: server_synchronize.php:450 server_synchronize.php:895 +#: server_synchronize.php:449 server_synchronize.php:894 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:463 +#: server_synchronize.php:462 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:941 +#: server_synchronize.php:940 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:1002 +#: server_synchronize.php:1001 msgid "The following queries have been executed:" msgstr "" -#: server_synchronize.php:1121 +#: server_synchronize.php:1120 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1122 +#: server_synchronize.php:1121 #, fuzzy #| msgid "max. concurrent connections" msgid "Current connection" msgstr "ХИ. давхацсан холболтууд" -#: server_synchronize.php:1151 +#: server_synchronize.php:1150 #, php-format msgid "Configuration: %s" msgstr "" -#: server_synchronize.php:1166 +#: server_synchronize.php:1165 msgid "Socket" msgstr "" -#: server_synchronize.php:1212 +#: server_synchronize.php:1211 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -6481,8 +6535,8 @@ msgstr "" #: setup/lib/messages.inc.php:128 msgid "" "Configure phpMyAdmin database to gain access to additional features, see " -"[a@../Documentation.html#linked-tables]linked-tables infrastructure[/a] in " -"documentation" +"[a@../Documentation.html#linked-tables]phpMyAdmin configuration storage[/a] " +"in documentation" msgstr "" #: setup/lib/messages.inc.php:129 setup/lib/messages.inc.php:290 @@ -7523,116 +7577,116 @@ msgstr "" msgid "ZIP" msgstr "" -#: sql.php:495 tbl_replace.php:385 +#: sql.php:494 tbl_replace.php:384 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: sql.php:512 +#: sql.php:511 msgid "Showing as PHP code" msgstr "PHP кодоор харуулах" -#: sql.php:515 tbl_replace.php:359 +#: sql.php:514 tbl_replace.php:358 msgid "Showing SQL query" msgstr "SQL асуудал харуулах" -#: sql.php:517 +#: sql.php:516 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "SQL-ийг батлах" -#: sql.php:638 +#: sql.php:631 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Хүснэгт `%s`-ийн индекс асуудалтай" -#: sql.php:670 +#: sql.php:663 msgid "Label" msgstr "Хаяг" -#: tbl_addfield.php:188 tbl_alter.php:102 tbl_indexes.php:97 +#: tbl_addfield.php:185 tbl_alter.php:100 tbl_indexes.php:97 #, php-format msgid "Table %1$s has been altered successfully" msgstr "" -#: tbl_change.php:250 tbl_select.php:26 tbl_select.php:27 tbl_select.php:30 -#: tbl_select.php:33 +#: tbl_change.php:245 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_select.php:32 msgid "Browse foreign values" msgstr "Browse foreign values" -#: tbl_change.php:280 tbl_change.php:318 +#: tbl_change.php:275 tbl_change.php:313 msgid "Function" msgstr "Функц" -#: tbl_change.php:300 tbl_indexes.php:199 tbl_indexes.php:224 +#: tbl_change.php:295 tbl_indexes.php:198 tbl_indexes.php:223 msgid "Ignore" msgstr "Үл тоох" -#: tbl_change.php:725 +#: tbl_change.php:720 #, fuzzy #| msgid " Because of its length,
                            this field might not be editable " msgid " Because of its length,
                            this column might not be editable " msgstr " Яагаад гэвэл урт нь их,
                            энэ талбар засагдахгүй " -#: tbl_change.php:884 +#: tbl_change.php:835 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:890 +#: tbl_change.php:841 msgid "Binary - do not edit" msgstr " Хоёртын өгөгдөл - засагдахгүй " -#: tbl_change.php:983 +#: tbl_change.php:889 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:1128 +#: tbl_change.php:1026 msgid "Insert as new row" msgstr "Шинэ мөр оруулаад" -#: tbl_change.php:1129 +#: tbl_change.php:1027 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:1130 +#: tbl_change.php:1028 msgid "Show insert query" msgstr "" -#: tbl_change.php:1145 +#: tbl_change.php:1043 msgid "Go back to previous page" msgstr "Буцах" -#: tbl_change.php:1146 +#: tbl_change.php:1044 msgid "Insert another new row" msgstr "Өөр шинэ мөр оруулах" -#: tbl_change.php:1150 +#: tbl_change.php:1048 msgid "Go back to this page" msgstr "Энэ хуудас руу буцах" -#: tbl_change.php:1158 +#: tbl_change.php:1056 msgid "Edit next row" msgstr "Дараагийн мөрийг засах" -#: tbl_change.php:1169 +#: tbl_change.php:1067 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "TAB товчийг хэрэглэн утгаас утгын хооронд шилжинэ, эсвэл CTRL+сумууд-аар " "зөөгдөнө" -#: tbl_change.php:1207 +#: tbl_change.php:1105 #, php-format msgid "Restart insertion with %s rows" msgstr "" -#: tbl_create.php:57 +#: tbl_create.php:55 #, php-format msgid "Table %s already exists!" msgstr "Хүснэгт %s нь оршин байна!" -#: tbl_create.php:244 +#: tbl_create.php:241 #, php-format msgid "Table %1$s has been created." msgstr "" @@ -7653,201 +7707,201 @@ msgstr "Индексийг PRIMARY болгож чадсангүй!" msgid "No index parts defined!" msgstr "Тодорхойлогдсон индексийн хэсэггүй!" -#: tbl_indexes.php:159 +#: tbl_indexes.php:158 msgid "Create a new index" msgstr "Шинэ индекс үүсгэх" -#: tbl_indexes.php:161 +#: tbl_indexes.php:160 msgid "Modify an index" msgstr "Өөрчлөх индекс" -#: tbl_indexes.php:167 +#: tbl_indexes.php:166 msgid "Index name:" msgstr "Индексийн нэр :" -#: tbl_indexes.php:173 +#: tbl_indexes.php:172 msgid "Index type:" msgstr "Индексийн төрөл :" -#: tbl_indexes.php:183 +#: tbl_indexes.php:182 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" "(\"PRIMARY\" нь үндсэн түлхүүрийн нэр ба зөвхөн байх хэрэгтэй!)" -#: tbl_indexes.php:250 +#: tbl_indexes.php:249 #, php-format msgid "Add to index  %s column(s)" msgstr "Индекст нэмэх %s багана(ууд)" -#: tbl_indexes.php:255 tbl_structure.php:588 tbl_structure.php:599 +#: tbl_indexes.php:254 tbl_structure.php:586 tbl_structure.php:597 msgid "Column count has to be larger than zero." msgstr "Баганы тоо тэгээс их байна." -#: tbl_move_copy.php:45 +#: tbl_move_copy.php:44 msgid "Can't move table to same one!" msgstr "Адил нэр байсан тул хүснэгтийг зөөсөнгүй!" -#: tbl_move_copy.php:47 +#: tbl_move_copy.php:46 msgid "Can't copy table to same one!" msgstr " Адил нэртэй хүснэгт рүү хуулж чадсангүй!" -#: tbl_move_copy.php:55 +#: tbl_move_copy.php:54 #, php-format msgid "Table %s has been moved to %s." msgstr "Хүснэгт %s нь %s руу зөөгдөв." -#: tbl_move_copy.php:57 +#: tbl_move_copy.php:56 #, php-format msgid "Table %s has been copied to %s." msgstr "%s хүснэгт %s руу хуулагдлаа." -#: tbl_move_copy.php:81 +#: tbl_move_copy.php:80 msgid "The table name is empty!" msgstr "Хүснэгтийн нэр хоосон байна!" -#: tbl_operations.php:248 +#: tbl_operations.php:246 msgid "Alter table order by" msgstr "Хүснэгтийг эрэмбэлэлтээр өөрчлөх" -#: tbl_operations.php:257 +#: tbl_operations.php:255 msgid "(singly)" msgstr "(дан)" -#: tbl_operations.php:277 +#: tbl_operations.php:275 msgid "Move table to (database.table):" msgstr "Хүснэгтийг зөөх (өгөгдлийн сан.хүснэгт):" -#: tbl_operations.php:335 +#: tbl_operations.php:333 msgid "Table options" msgstr "Хүснэгтийн сонголтууд" -#: tbl_operations.php:339 +#: tbl_operations.php:337 msgid "Rename table to" msgstr "Хүснэгтийг да.нэрлэх" -#: tbl_operations.php:510 +#: tbl_operations.php:508 msgid "Copy table to (database.table):" msgstr "Хүснэгт хуулах(өгөгдлийн сан.хүснэгт):" -#: tbl_operations.php:557 +#: tbl_operations.php:555 msgid "Switch to copied table" msgstr "Хуулагдсан хүснэгт рүү шилжих" -#: tbl_operations.php:569 +#: tbl_operations.php:567 msgid "Table maintenance" msgstr "Хүснэгтийн ашиглалт" -#: tbl_operations.php:590 +#: tbl_operations.php:588 msgid "Defragment table" msgstr "Хүснэгт янзлах" -#: tbl_operations.php:629 +#: tbl_operations.php:627 #, php-format msgid "Table %s has been flushed" msgstr "Хүснэгт %s нь flushed боллоо" -#: tbl_operations.php:635 +#: tbl_operations.php:633 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Flush the table (\"FLUSH\")" -#: tbl_operations.php:650 +#: tbl_operations.php:648 msgid "Partition maintenance" msgstr "" -#: tbl_operations.php:658 +#: tbl_operations.php:656 #, php-format msgid "Partition %s" msgstr "" -#: tbl_operations.php:661 +#: tbl_operations.php:659 msgid "Analyze" msgstr "" -#: tbl_operations.php:662 +#: tbl_operations.php:660 msgid "Check" msgstr "" -#: tbl_operations.php:663 +#: tbl_operations.php:661 msgid "Optimize" msgstr "" -#: tbl_operations.php:664 +#: tbl_operations.php:662 msgid "Rebuild" msgstr "" -#: tbl_operations.php:665 +#: tbl_operations.php:663 msgid "Repair" msgstr "" -#: tbl_operations.php:677 +#: tbl_operations.php:675 msgid "Remove partitioning" msgstr "" -#: tbl_operations.php:703 +#: tbl_operations.php:701 msgid "Check referential integrity:" msgstr "Үнэн зөв өгөгдлийг шалгах:" -#: tbl_printview.php:73 +#: tbl_printview.php:72 msgid "Show tables" msgstr "Хүснэгтүүдийг харуулах" -#: tbl_printview.php:308 tbl_structure.php:655 +#: tbl_printview.php:307 tbl_structure.php:653 msgid "Space usage" msgstr "Ашиглалтын зай" -#: tbl_printview.php:312 tbl_structure.php:659 +#: tbl_printview.php:311 tbl_structure.php:657 msgid "Usage" msgstr "Ашиглалт" -#: tbl_printview.php:339 tbl_structure.php:686 +#: tbl_printview.php:338 tbl_structure.php:684 msgid "Effective" msgstr "Эффекттэй" -#: tbl_printview.php:364 tbl_structure.php:724 +#: tbl_printview.php:363 tbl_structure.php:722 msgid "Row Statistics" msgstr "Мөрийн статистик" -#: tbl_printview.php:367 tbl_structure.php:727 +#: tbl_printview.php:366 tbl_structure.php:725 msgid "Statements" msgstr "Баримтжуулал" -#: tbl_printview.php:378 tbl_structure.php:739 +#: tbl_printview.php:377 tbl_structure.php:737 msgid "static" msgstr "" -#: tbl_printview.php:380 tbl_structure.php:741 +#: tbl_printview.php:379 tbl_structure.php:739 msgid "dynamic" msgstr "динамик" -#: tbl_printview.php:402 tbl_structure.php:784 +#: tbl_printview.php:401 tbl_structure.php:782 msgid "Row length" msgstr "Мөрийн урт" -#: tbl_printview.php:412 tbl_structure.php:792 +#: tbl_printview.php:411 tbl_structure.php:790 msgid " Row size " msgstr " Мөрийн хэмжээ " -#: tbl_relation.php:278 +#: tbl_relation.php:276 #, fuzzy, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "Гадаад түлхүүр үүсгэхэд алдаа гарлаа %1$s (өгөгдлийн төрлөө шалга)" -#: tbl_relation.php:404 +#: tbl_relation.php:402 #, fuzzy #| msgid "Internal relations" msgid "Internal relation" msgstr "Дотоод хамаарал" -#: tbl_relation.php:406 +#: tbl_relation.php:404 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: tbl_relation.php:412 +#: tbl_relation.php:410 msgid "Foreign key constraint" msgstr "" @@ -7855,229 +7909,229 @@ msgstr "" msgid "No rows selected" msgstr "Сонгогдсон мөргүй" -#: tbl_select.php:130 +#: tbl_select.php:129 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "\"жишээ асуулт\" хийх (тэмдэгт: \"%\")" -#: tbl_select.php:136 +#: tbl_select.php:135 msgid "Operator" msgstr "Оператор" -#: tbl_select.php:267 +#: tbl_select.php:266 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "Талбар сонгох (ядаж нэгийг):" -#: tbl_select.php:285 +#: tbl_select.php:284 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Хайлтын нөхцөл нэмэх(\"where\" хэсгийн бие):" -#: tbl_select.php:292 +#: tbl_select.php:291 msgid "Number of rows per page" msgstr "Хуудас дахь мөрийн тоо" -#: tbl_select.php:298 +#: tbl_select.php:297 msgid "Display order:" msgstr "Харуулах эрэмбэ:" -#: tbl_structure.php:160 +#: tbl_structure.php:159 msgid "Browse distinct values" msgstr "Онцгой утгуудыг харах" -#: tbl_structure.php:360 +#: tbl_structure.php:358 #, fuzzy #| msgid "None" msgctxt "None for default" msgid "None" msgstr "Байхгүй" -#: tbl_structure.php:373 +#: tbl_structure.php:371 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Column %s has been dropped" msgstr "Хүснэгт %s нь устгагдлаа" -#: tbl_structure.php:384 +#: tbl_structure.php:382 #, php-format msgid "A primary key has been added on %s" msgstr "%s-д үндсэн түлхүүр нэмэгдлээ" -#: tbl_structure.php:399 tbl_structure.php:413 tbl_structure.php:427 +#: tbl_structure.php:397 tbl_structure.php:411 tbl_structure.php:425 #, php-format msgid "An index has been added on %s" msgstr "%s-д индекс нэмэгдсэн байна" -#: tbl_structure.php:505 tbl_structure.php:507 +#: tbl_structure.php:503 tbl_structure.php:505 msgid "Relation view" msgstr "Хамаарал харах" -#: tbl_structure.php:514 tbl_structure.php:516 +#: tbl_structure.php:512 tbl_structure.php:514 msgid "Propose table structure" msgstr "Хүснэгтийн бүтцийг таниулах" -#: tbl_structure.php:539 +#: tbl_structure.php:537 #, fuzzy #| msgid "Add %s field(s)" msgid "Add column" msgstr "%s талбар(ууд) нэмэх" -#: tbl_structure.php:553 +#: tbl_structure.php:551 msgid "At End of Table" msgstr "Хүснэгтийн төгсгөлд" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At Beginning of Table" msgstr "Хүснэгтийн эхэнд" -#: tbl_structure.php:555 +#: tbl_structure.php:553 #, php-format msgid "After %s" msgstr "%s-ы дараа" -#: tbl_structure.php:593 +#: tbl_structure.php:591 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr " %s багануудад индекс үүсгэх" -#: tbl_structure.php:755 +#: tbl_structure.php:753 msgid "partitioned" msgstr "" -#: tbl_tracking.php:113 +#: tbl_tracking.php:109 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:186 +#: tbl_tracking.php:182 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "" -#: tbl_tracking.php:194 +#: tbl_tracking.php:190 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "" -#: tbl_tracking.php:202 +#: tbl_tracking.php:198 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "" -#: tbl_tracking.php:212 +#: tbl_tracking.php:208 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:219 +#: tbl_tracking.php:215 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:220 +#: tbl_tracking.php:216 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:229 +#: tbl_tracking.php:225 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:250 tbl_tracking.php:378 +#: tbl_tracking.php:245 tbl_tracking.php:373 msgid "Close" msgstr "" -#: tbl_tracking.php:261 +#: tbl_tracking.php:256 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:380 +#: tbl_tracking.php:375 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:396 tbl_tracking.php:503 +#: tbl_tracking.php:391 tbl_tracking.php:498 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "" -#: tbl_tracking.php:409 tbl_tracking.php:460 +#: tbl_tracking.php:404 tbl_tracking.php:455 msgid "Date" msgstr "" -#: tbl_tracking.php:410 tbl_tracking.php:461 +#: tbl_tracking.php:405 tbl_tracking.php:456 msgid "Username" msgstr "" -#: tbl_tracking.php:411 +#: tbl_tracking.php:406 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:462 +#: tbl_tracking.php:457 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:506 +#: tbl_tracking.php:501 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:507 +#: tbl_tracking.php:502 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:520 +#: tbl_tracking.php:515 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:560 +#: tbl_tracking.php:555 msgid "Show versions" msgstr "" -#: tbl_tracking.php:592 +#: tbl_tracking.php:587 msgid "Version" msgstr "" -#: tbl_tracking.php:639 +#: tbl_tracking.php:634 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "" -#: tbl_tracking.php:641 +#: tbl_tracking.php:636 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:652 +#: tbl_tracking.php:647 #, php-format msgid "Activate tracking for %s.%s" msgstr "" -#: tbl_tracking.php:654 +#: tbl_tracking.php:649 msgid "Activate now" msgstr "" -#: tbl_tracking.php:667 +#: tbl_tracking.php:662 #, php-format msgid "Create version %s of %s.%s" msgstr "" -#: tbl_tracking.php:671 +#: tbl_tracking.php:666 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:679 +#: tbl_tracking.php:674 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:687 +#: tbl_tracking.php:682 msgid "Create version" msgstr "" @@ -8127,10 +8181,28 @@ msgstr "Профиль шинэчлэгдлээ." msgid "VIEW name" msgstr "" -#: view_operations.php:92 +#: view_operations.php:91 msgid "Rename view to" msgstr "" +#, fuzzy +#~| msgid "Enabled" +#~ msgctxt "BLOB repository" +#~ msgid "Enabled" +#~ msgstr "Нээлттэй" + +#, fuzzy +#~| msgid "Repair table" +#~ msgctxt "BLOB repository" +#~ msgid "Repair" +#~ msgstr "Хүснэгт засах" + +#, fuzzy +#~| msgid "Disabled" +#~ msgctxt "BLOB repository" +#~ msgid "Disabled" +#~ msgstr "Хаагдсан" + #~ msgid "" #~ "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " #~ "extension. Please check your PHP configuration." diff --git a/po/ms.po b/po/ms.po index 04b8c31b8..01166f186 100644 --- a/po/ms.po +++ b/po/ms.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-21 13:53+0200\n" +"POT-Creation-Date: 2010-07-26 17:18+0200\n" "PO-Revision-Date: 2010-03-12 09:17+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: malay \n" @@ -13,160 +13,172 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.5.3\n" -#: browse_foreigners.php:37 browse_foreigners.php:58 -#: libraries/display_tbl.lib.php:416 server_privileges.php:1506 +#: browse_foreigners.php:36 browse_foreigners.php:57 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1510 msgid "Show all" msgstr "Papar semua" -#: browse_foreigners.php:81 libraries/common.lib.php:2313 -#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:393 -#: libraries/export/pdf.php:146 pdf_schema.php:282 pdf_schema.php:1122 -#: pdf_schema.php:1138 +#: browse_foreigners.php:80 libraries/common.lib.php:2318 +#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:392 +#: libraries/export/pdf.php:146 pdf_schema.php:281 pdf_schema.php:1121 +#: pdf_schema.php:1137 msgid "Page number:" msgstr "Muka Surat:" -#: browse_foreigners.php:131 +#: browse_foreigners.php:130 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " "cross-window updates." msgstr "" -#: browse_foreigners.php:149 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2829 -#: libraries/common.lib.php:2836 libraries/db_links.inc.php:74 -#: libraries/tbl_links.inc.php:62 +#: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 +#: db_structure.php:89 db_structure.php:91 db_structure.php:102 +#: db_structure.php:104 libraries/common.lib.php:2834 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Cari" -#: browse_foreigners.php:152 db_operations.php:384 db_operations.php:428 -#: db_operations.php:498 db_operations.php:608 db_search.php:344 -#: db_structure.php:566 js/messages.php:48 libraries/Config.class.php:1043 -#: libraries/Theme_Manager.class.php:310 +#: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 +#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 +#: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 -#: libraries/common.lib.php:1340 libraries/common.lib.php:2289 +#: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 -#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:275 -#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:531 -#: libraries/display_tbl.lib.php:613 libraries/replication_gui.lib.php:75 +#: libraries/display_export.lib.php:269 libraries/display_import.lib.php:275 +#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 +#: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 #: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:781 -#: main.php:127 navigation.php:231 pdf_pages.php:291 pdf_pages.php:327 -#: pdf_pages.php:529 pmd_pdf.php:115 server_binlog.php:128 -#: server_privileges.php:664 server_privileges.php:1616 -#: server_privileges.php:1963 server_privileges.php:2010 -#: server_privileges.php:2049 server_replication.php:234 -#: server_replication.php:317 server_replication.php:340 -#: server_synchronize.php:1208 tbl_change.php:328 tbl_change.php:1172 -#: tbl_change.php:1209 tbl_indexes.php:253 tbl_operations.php:264 -#: tbl_operations.php:301 tbl_operations.php:498 tbl_operations.php:560 -#: tbl_operations.php:680 tbl_select.php:324 tbl_structure.php:561 -#: tbl_structure.php:596 tbl_tracking.php:394 tbl_tracking.php:511 -#: view_create.php:181 view_operations.php:100 +#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 +#: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 +#: server_privileges.php:663 server_privileges.php:1620 +#: server_privileges.php:1967 server_privileges.php:2014 +#: server_privileges.php:2053 server_replication.php:233 +#: server_replication.php:316 server_replication.php:339 +#: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 +#: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 +#: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 +#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "Pergi" -#: browse_foreigners.php:167 browse_foreigners.php:171 -#: libraries/Index.class.php:441 tbl_tracking.php:319 +#: browse_foreigners.php:166 browse_foreigners.php:170 +#: libraries/Index.class.php:441 tbl_tracking.php:314 msgid "Keyname" msgstr "Nama Kekunci" -#: browse_foreigners.php:168 browse_foreigners.php:170 -#: server_collations.php:54 server_collations.php:66 server_engines.php:58 +#: browse_foreigners.php:167 browse_foreigners.php:169 +#: server_collations.php:54 server_collations.php:66 server_engines.php:57 #: server_status.php:738 #, fuzzy msgid "Description" msgstr "tiada keterangan" -#: browse_foreigners.php:246 browse_foreigners.php:255 -#: browse_foreigners.php:267 browse_foreigners.php:275 +#: browse_foreigners.php:245 browse_foreigners.php:254 +#: browse_foreigners.php:266 browse_foreigners.php:274 msgid "Use this value" msgstr "" -#: db_create.php:45 +#: bs_disp_as_mime_type.php:29 bs_play_media.php:35 +msgid "No blob streaming server configured!" +msgstr "" + +#: bs_disp_as_mime_type.php:35 +msgid "Failed to fetch headers" +msgstr "" + +#: bs_disp_as_mime_type.php:41 +msgid "Failed to open remote URL" +msgstr "" + +#: db_create.php:44 #, fuzzy, php-format msgid "Database %1$s has been created." msgstr "angkalan data %s telah digugurkan." -#: db_datadict.php:48 db_operations.php:377 +#: db_datadict.php:48 db_operations.php:313 #, fuzzy msgid "Database comment: " msgstr "Komen jadual" -#: db_datadict.php:164 libraries/tbl_properties.inc.php:723 -#: pdf_schema.php:1235 tbl_operations.php:346 tbl_printview.php:128 +#: db_datadict.php:164 libraries/tbl_properties.inc.php:722 +#: pdf_schema.php:1234 tbl_operations.php:344 tbl_printview.php:127 msgid "Table comments" msgstr "Komen jadual" -#: db_datadict.php:173 db_qbe.php:173 libraries/Index.class.php:445 +#: db_datadict.php:173 db_qbe.php:170 libraries/Index.class.php:445 #: libraries/export/htmlword.php:243 libraries/export/latex.php:364 #: libraries/export/odt.php:293 libraries/export/texytext.php:233 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:274 -#: pdf_schema.php:1261 pdf_schema.php:1282 tbl_change.php:306 -#: tbl_indexes.php:188 tbl_printview.php:140 tbl_relation.php:401 -#: tbl_select.php:133 tbl_structure.php:176 tbl_tracking.php:272 -#: tbl_tracking.php:323 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 +#: pdf_schema.php:1260 pdf_schema.php:1281 tbl_change.php:301 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:132 tbl_structure.php:175 tbl_tracking.php:267 +#: tbl_tracking.php:318 #, fuzzy #| msgid "Column names" msgid "Column" msgstr "Nama Kolum" -#: db_datadict.php:174 db_printview.php:105 libraries/Index.class.php:442 +#: db_datadict.php:174 db_printview.php:104 libraries/Index.class.php:442 #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 #: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:244 #: libraries/export/latex.php:364 libraries/export/odt.php:296 #: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:99 -#: pdf_schema.php:1262 pdf_schema.php:1283 server_privileges.php:2062 -#: tbl_change.php:285 tbl_change.php:312 tbl_printview.php:141 -#: tbl_printview.php:311 tbl_select.php:134 tbl_structure.php:177 -#: tbl_structure.php:658 tbl_tracking.php:273 tbl_tracking.php:320 +#: pdf_schema.php:1261 pdf_schema.php:1282 server_privileges.php:2066 +#: tbl_change.php:280 tbl_change.php:307 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:133 tbl_structure.php:176 +#: tbl_structure.php:656 tbl_tracking.php:268 tbl_tracking.php:315 msgid "Type" msgstr "Jenis" #: db_datadict.php:176 libraries/Index.class.php:448 #: libraries/export/htmlword.php:245 libraries/export/latex.php:364 #: libraries/export/odt.php:299 libraries/export/texytext.php:235 -#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1264 -#: pdf_schema.php:1285 tbl_change.php:321 tbl_printview.php:143 -#: tbl_structure.php:180 tbl_tracking.php:275 tbl_tracking.php:326 +#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1263 +#: pdf_schema.php:1284 tbl_change.php:316 tbl_printview.php:142 +#: tbl_structure.php:179 tbl_tracking.php:270 tbl_tracking.php:321 msgid "Null" msgstr "Null" -#: db_datadict.php:177 db_structure.php:500 libraries/export/htmlword.php:246 +#: db_datadict.php:177 db_structure.php:486 libraries/export/htmlword.php:246 #: libraries/export/latex.php:364 libraries/export/odt.php:302 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:105 -#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 -#: tbl_structure.php:181 tbl_tracking.php:276 +#: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:143 +#: tbl_structure.php:180 tbl_tracking.php:271 msgid "Default" msgstr "Asal" #: db_datadict.php:181 libraries/export/htmlword.php:248 #: libraries/export/latex.php:366 libraries/export/odt.php:306 -#: libraries/export/texytext.php:238 pdf_schema.php:1267 pdf_schema.php:1288 -#: tbl_printview.php:148 +#: libraries/export/texytext.php:238 pdf_schema.php:1266 pdf_schema.php:1287 +#: tbl_printview.php:147 msgid "Links to" msgstr "Pautan ke" -#: db_datadict.php:183 db_printview.php:111 libraries/export/htmlword.php:251 +#: db_datadict.php:183 db_printview.php:110 libraries/export/htmlword.php:251 #: libraries/export/latex.php:49 libraries/export/latex.php:369 #: libraries/export/odt.php:37 libraries/export/odt.php:311 #: libraries/export/sql.php:29 libraries/export/texytext.php:241 -#: libraries/tbl_properties.inc.php:129 pdf_schema.php:1278 -#: pdf_schema.php:1289 tbl_printview.php:150 +#: libraries/tbl_properties.inc.php:128 pdf_schema.php:1277 +#: pdf_schema.php:1288 tbl_printview.php:149 msgid "Comments" msgstr "Komen" #: db_datadict.php:266 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/export/htmlword.php:321 #: libraries/export/latex.php:434 libraries/export/odt.php:367 -#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:262 -#: pdf_schema.php:1343 server_privileges.php:1560 server_privileges.php:1571 -#: server_privileges.php:1881 server_privileges.php:1886 -#: server_privileges.php:2179 sql.php:131 sql.php:193 tbl_printview.php:227 -#: tbl_structure.php:349 tbl_tracking.php:336 tbl_tracking.php:341 +#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:261 +#: pdf_schema.php:1342 server_privileges.php:1564 server_privileges.php:1575 +#: server_privileges.php:1885 server_privileges.php:1890 +#: server_privileges.php:2183 sql.php:130 sql.php:192 tbl_printview.php:226 +#: tbl_structure.php:347 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "Tidak" @@ -177,17 +189,17 @@ msgstr "Tidak" #: libraries/mult_submits.inc.php:49 libraries/mult_submits.inc.php:54 #: libraries/mult_submits.inc.php:59 libraries/mult_submits.inc.php:91 #: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:105 -#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:261 -#: libraries/mult_submits.inc.php:272 pdf_schema.php:1343 -#: server_databases.php:63 server_privileges.php:1557 -#: server_privileges.php:1571 server_privileges.php:1881 -#: server_privileges.php:1884 server_privileges.php:2179 sql.php:192 -#: tbl_printview.php:227 tbl_structure.php:39 tbl_structure.php:349 -#: tbl_tracking.php:334 tbl_tracking.php:339 +#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:260 +#: libraries/mult_submits.inc.php:271 pdf_schema.php:1342 +#: server_databases.php:61 server_privileges.php:1561 +#: server_privileges.php:1575 server_privileges.php:1885 +#: server_privileges.php:1888 server_privileges.php:2183 sql.php:191 +#: tbl_printview.php:226 tbl_structure.php:38 tbl_structure.php:347 +#: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" msgstr "Ya" -#: db_datadict.php:321 db_printview.php:265 tbl_printview.php:496 +#: db_datadict.php:321 db_printview.php:264 tbl_printview.php:495 msgid "Print" msgstr "Cetak" @@ -195,199 +207,158 @@ msgstr "Cetak" msgid "View dump (schema) of database" msgstr "Lihat longgokan (skema) pangkalan data" -#: db_export.php:32 db_printview.php:95 db_qbe.php:101 db_structure.php:50 -#: db_tracking.php:34 export.php:352 navigation.php:326 +#: db_export.php:32 db_printview.php:94 db_qbe.php:98 db_structure.php:49 +#: db_tracking.php:30 export.php:350 navigation.php:325 msgid "No tables found in database." msgstr "Tiada jadual dijumpai pada pangkalan data." -#: db_export.php:42 db_search.php:326 server_export.php:26 +#: db_export.php:42 db_search.php:326 server_export.php:24 msgid "Select All" msgstr "Sila pilih pangkalan data" -#: db_export.php:44 db_search.php:329 server_export.php:28 +#: db_export.php:44 db_search.php:329 server_export.php:26 msgid "Unselect All" msgstr "Nyahpilih Semua" -#: db_operations.php:37 tbl_create.php:49 +#: db_operations.php:33 tbl_create.php:47 #, fuzzy msgid "The database name is empty!" msgstr "Nama jadual adalah kosong" -#: db_operations.php:235 +#: db_operations.php:231 #, fuzzy, php-format msgid "Database %s has been renamed to %s" msgstr "Jadual %s telah ditukarnama ke %s" -#: db_operations.php:239 +#: db_operations.php:235 #, fuzzy, php-format msgid "Database %s has been copied to %s" msgstr "Jadual %s telah disalin ke %s." -#: db_operations.php:411 +#: db_operations.php:347 #, fuzzy msgid "Rename database to" msgstr "Tukarnama jadual ke" -#: db_operations.php:416 server_processlist.php:56 +#: db_operations.php:352 server_processlist.php:56 msgid "Command" msgstr "Arahan" -#: db_operations.php:428 tbl_change.php:1141 +#: db_operations.php:364 tbl_change.php:1039 msgid "and then" msgstr "" -#: db_operations.php:454 +#: db_operations.php:390 #, fuzzy msgid "Copy database to" msgstr "Tiada pangkalan data" -#: db_operations.php:461 tbl_operations.php:527 tbl_tracking.php:387 +#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Struktur sahaja" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:389 +#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Struktur dan data" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:388 +#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Data sahaja" -#: db_operations.php:471 +#: db_operations.php:407 msgid "CREATE DATABASE before copying" msgstr "" -#: db_operations.php:474 libraries/export/sql.php:51 +#: db_operations.php:410 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 -#: libraries/export/sql.php:81 tbl_operations.php:535 +#: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "" -#: db_operations.php:478 libraries/export/sql.php:77 tbl_operations.php:298 -#: tbl_operations.php:537 +#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "" -#: db_operations.php:482 tbl_operations.php:544 +#: db_operations.php:418 tbl_operations.php:542 msgid "Add constraints" msgstr "" -#: db_operations.php:495 +#: db_operations.php:431 msgid "Switch to copied database" msgstr "" -#: db_operations.php:536 -msgid "BLOB Repository" -msgstr "" - -#: db_operations.php:539 db_tracking.php:75 libraries/common.lib.php:1357 -#: libraries/server_links.inc.php:48 server_processlist.php:58 -#: tbl_tracking.php:595 test/theme.php:100 -msgid "Status" -msgstr "Status" - -#: db_operations.php:547 -#, fuzzy -#| msgid "Enabled" -msgctxt "BLOB repository" -msgid "Enabled" -msgstr "Membenarkan" - -#: db_operations.php:551 -#, fuzzy -msgid "Disable" -msgstr "Tidak Membenarkan" - -#: db_operations.php:561 -msgid "Damaged" -msgstr "" - -#: db_operations.php:565 -#, fuzzy -msgctxt "BLOB repository" -msgid "Repair" -msgstr "Baiki jadual" - -#: db_operations.php:573 -#, fuzzy -#| msgid "Disabled" -msgctxt "BLOB repository" -msgid "Disabled" -msgstr "Tidak Membenarkan" - -#: db_operations.php:577 -#, fuzzy -msgid "Enable" -msgstr "Membenarkan" - -#: db_operations.php:601 libraries/Index.class.php:447 +#: db_operations.php:451 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 -#: server_collations.php:53 server_collations.php:65 server_databases.php:110 -#: tbl_operations.php:362 tbl_select.php:135 tbl_structure.php:178 -#: tbl_structure.php:766 tbl_tracking.php:274 tbl_tracking.php:325 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 +#: server_collations.php:53 server_collations.php:65 server_databases.php:108 +#: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:177 +#: tbl_structure.php:764 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "" -#: db_operations.php:614 main.php:315 pdf_schema.php:33 -#, php-format +#: db_operations.php:464 pdf_schema.php:32 +#, fuzzy, php-format +#| msgid "" +#| "The additional features for working with linked tables have been " +#| "deactivated. To find out why click %shere%s." msgid "" -"The additional features for working with linked tables have been " -"deactivated. To find out why click %shere%s." +"The phpMyAdmin configuration storage has been deactivated. To find out why " +"click %shere%s." msgstr "" "Ciri-ciri tambahan ini adalah untuk bekerja dengan pautan jadual yang telah " "tidak diaktifkan. Untuk mengetahuinya klik %shere%s." -#: db_operations.php:647 +#: db_operations.php:497 msgid "Edit PDF Pages" msgstr "Ubah Halaman PDF" -#: db_printview.php:103 db_tracking.php:71 db_tracking.php:156 +#: db_printview.php:102 db_tracking.php:67 db_tracking.php:152 #: libraries/db_structure.lib.php:37 libraries/export/xml.php:327 -#: libraries/header.inc.php:125 pdf_pages.php:423 server_privileges.php:1657 -#: server_privileges.php:1713 server_privileges.php:1977 -#: server_synchronize.php:422 server_synchronize.php:865 tbl_tracking.php:591 +#: libraries/header.inc.php:125 pdf_pages.php:422 server_privileges.php:1661 +#: server_privileges.php:1717 server_privileges.php:1981 +#: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "Jadual" -#: db_printview.php:104 libraries/db_structure.lib.php:47 +#: db_printview.php:103 libraries/db_structure.lib.php:47 #: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 -#: navigation.php:629 navigation.php:651 server_databases.php:121 -#: tbl_printview.php:392 tbl_structure.php:364 tbl_structure.php:776 +#: navigation.php:628 navigation.php:650 server_databases.php:119 +#: tbl_printview.php:391 tbl_structure.php:362 tbl_structure.php:774 msgid "Rows" msgstr "Baris" -#: db_printview.php:108 libraries/db_structure.lib.php:58 tbl_indexes.php:189 +#: db_printview.php:107 libraries/db_structure.lib.php:58 tbl_indexes.php:188 msgid "Size" msgstr "Saiz" -#: db_printview.php:161 db_structure.php:456 libraries/export/sql.php:556 +#: db_printview.php:160 db_structure.php:442 libraries/export/sql.php:556 #: libraries/export/sql.php:896 msgid "in use" msgstr "sedang digunakan" -#: db_printview.php:186 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:511 pdf_schema.php:1240 tbl_printview.php:432 -#: tbl_structure.php:808 +#: db_printview.php:185 libraries/db_info.inc.php:86 +#: libraries/export/sql.php:511 pdf_schema.php:1239 tbl_printview.php:431 +#: tbl_structure.php:806 #, fuzzy msgid "Creation" msgstr "Cipta" -#: db_printview.php:195 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:516 pdf_schema.php:1245 tbl_printview.php:442 -#: tbl_structure.php:816 +#: db_printview.php:194 libraries/db_info.inc.php:91 +#: libraries/export/sql.php:516 pdf_schema.php:1244 tbl_printview.php:441 +#: tbl_structure.php:814 msgid "Last update" msgstr "" -#: db_printview.php:204 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:521 pdf_schema.php:1250 tbl_printview.php:452 -#: tbl_structure.php:824 +#: db_printview.php:203 libraries/db_info.inc.php:96 +#: libraries/export/sql.php:521 pdf_schema.php:1249 tbl_printview.php:451 +#: tbl_structure.php:822 msgid "Last check" msgstr "" -#: db_printview.php:221 db_structure.php:479 +#: db_printview.php:220 db_structure.php:465 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -395,94 +366,94 @@ msgid_plural "%s tables" msgstr[0] "%s jadual" msgstr[1] "%s jadual" -#: db_qbe.php:28 import.php:453 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1980 libraries/sql_query_form.lib.php:138 -#: tbl_operations.php:212 tbl_relation.php:291 tbl_row_action.php:130 -#: view_operations.php:61 +#: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 +#: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "Kueri-SQL anda telah dilaksanakan dengan jaya" -#: db_qbe.php:41 +#: db_qbe.php:38 msgid "You have to choose at least one column to display" msgstr "Anda mesti pilih sekurang-kurangnya satu Kolum untuk dipapar" -#: db_qbe.php:199 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:865 +#: db_qbe.php:196 libraries/db_structure.lib.php:95 +#: libraries/display_tbl.lib.php:864 msgid "Sort" msgstr "Isih" -#: db_qbe.php:208 db_qbe.php:242 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:522 libraries/display_tbl.lib.php:827 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:259 -#: tbl_select.php:311 +#: db_qbe.php:205 db_qbe.php:239 libraries/db_structure.lib.php:102 +#: libraries/display_tbl.lib.php:521 libraries/display_tbl.lib.php:826 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:257 +#: tbl_select.php:310 msgid "Ascending" msgstr "Menaik" -#: db_qbe.php:209 db_qbe.php:250 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:527 libraries/display_tbl.lib.php:824 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:260 -#: tbl_select.php:312 +#: db_qbe.php:206 db_qbe.php:247 libraries/db_structure.lib.php:110 +#: libraries/display_tbl.lib.php:526 libraries/display_tbl.lib.php:823 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:258 +#: tbl_select.php:311 msgid "Descending" msgstr "Menurun" -#: db_qbe.php:263 db_tracking.php:77 libraries/display_tbl.lib.php:307 -#: tbl_change.php:275 tbl_tracking.php:596 +#: db_qbe.php:260 db_tracking.php:73 libraries/display_tbl.lib.php:306 +#: tbl_change.php:270 tbl_tracking.php:591 msgid "Show" msgstr "Papar" -#: db_qbe.php:299 +#: db_qbe.php:296 msgid "Criteria" msgstr "Kriteria" -#: db_qbe.php:352 db_qbe.php:434 db_qbe.php:526 db_qbe.php:557 +#: db_qbe.php:349 db_qbe.php:431 db_qbe.php:523 db_qbe.php:554 msgid "Ins" msgstr "Ins" -#: db_qbe.php:356 db_qbe.php:438 db_qbe.php:523 db_qbe.php:554 +#: db_qbe.php:353 db_qbe.php:435 db_qbe.php:520 db_qbe.php:551 msgid "And" msgstr "Dan" -#: db_qbe.php:365 db_qbe.php:446 db_qbe.php:528 db_qbe.php:559 +#: db_qbe.php:362 db_qbe.php:443 db_qbe.php:525 db_qbe.php:556 msgid "Del" msgstr "Del" -#: db_qbe.php:369 db_qbe.php:450 db_qbe.php:521 db_qbe.php:552 -#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:778 -#: server_privileges.php:297 tbl_change.php:1027 tbl_indexes.php:249 -#: tbl_select.php:285 +#: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 +#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:777 +#: server_privileges.php:296 tbl_change.php:925 tbl_indexes.php:248 +#: tbl_select.php:284 msgid "Or" msgstr "Atau" -#: db_qbe.php:506 +#: db_qbe.php:503 msgid "Modify" msgstr "Ubahsuai" -#: db_qbe.php:583 +#: db_qbe.php:580 #, fuzzy #| msgid "Add/Delete Criteria Row" msgid "Add/Delete criteria rows" msgstr "Tambah/Padam Baris Kriteria" -#: db_qbe.php:595 +#: db_qbe.php:592 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Add/Delete columns" msgstr "Tambah/Padam Kolum Medan" -#: db_qbe.php:608 db_qbe.php:633 +#: db_qbe.php:605 db_qbe.php:630 msgid "Update Query" msgstr "Kemaskini Kueri" -#: db_qbe.php:616 +#: db_qbe.php:613 msgid "Use Tables" msgstr "Guna Jadual" -#: db_qbe.php:639 +#: db_qbe.php:636 #, php-format msgid "SQL query on database %s:" msgstr "SQL- kueri pada pangkalan data %s:" -#: db_qbe.php:933 libraries/common.lib.php:1222 +#: db_qbe.php:930 libraries/common.lib.php:1215 msgid "Submit Query" msgstr "Hantar Kueri" @@ -522,17 +493,17 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s padanan di dalam jadual %s" msgstr[1] "%s padanan di dalam jadual %s" -#: db_search.php:249 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2831 -#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:49 -#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:466 +#: db_search.php:249 db_structure.php:75 db_structure.php:76 +#: db_structure.php:88 db_structure.php:90 db_structure.php:101 +#: db_structure.php:103 libraries/common.lib.php:2836 +#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 +#: tbl_structure.php:35 tbl_structure.php:47 tbl_structure.php:464 msgid "Browse" msgstr "Lungsur" -#: db_search.php:254 libraries/display_tbl.lib.php:1164 -#: libraries/display_tbl.lib.php:2055 libraries/sql_query_form.lib.php:453 -#: pdf_pages.php:285 pdf_pages.php:424 pdf_pages.php:460 pdf_pages.php:488 +#: db_search.php:254 libraries/display_tbl.lib.php:1163 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 msgid "Delete" @@ -572,230 +543,236 @@ msgstr "Di dalam jadual:" msgid "Inside column:" msgstr "Di dalam jadual:" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2830 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:75 +#: db_structure.php:79 db_structure.php:80 db_structure.php:92 +#: db_structure.php:93 db_structure.php:105 db_structure.php:106 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 +#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Selit" -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2827 libraries/common.lib.php:2834 -#: libraries/db_links.inc.php:62 libraries/export/htmlword.php:22 +#: db_structure.php:81 db_structure.php:94 db_structure.php:107 +#: libraries/common.lib.php:2832 libraries/common.lib.php:2839 +#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 -#: libraries/tbl_links.inc.php:55 pmd_general.php:133 -#: server_privileges.php:593 server_replication.php:314 tbl_tracking.php:268 +#: libraries/tbl_links.inc.php:54 pmd_general.php:133 +#: server_privileges.php:592 server_replication.php:313 tbl_tracking.php:263 msgid "Structure" msgstr "Struktur" -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:544 db_structure.php:545 db_tracking.php:90 -#: libraries/Index.class.php:482 libraries/common.lib.php:1659 -#: libraries/db_links.inc.php:99 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:126 -#: server_databases.php:351 tbl_structure.php:26 tbl_structure.php:150 -#: tbl_structure.php:151 tbl_structure.php:470 +#: db_structure.php:82 db_structure.php:83 db_structure.php:95 +#: db_structure.php:96 db_structure.php:108 db_structure.php:109 +#: db_structure.php:530 db_structure.php:531 db_tracking.php:86 +#: libraries/Index.class.php:482 libraries/common.lib.php:1663 +#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 +#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 +#: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" msgstr "Gugur" -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:542 db_structure.php:543 libraries/common.lib.php:1658 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:104 +#: db_structure.php:84 db_structure.php:85 db_structure.php:97 +#: db_structure.php:98 db_structure.php:110 db_structure.php:111 +#: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 +#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 msgid "Empty" msgstr "Kosong" -#: db_structure.php:315 libraries/tbl_links.inc.php:99 +#: db_structure.php:301 libraries/tbl_links.inc.php:98 #, php-format msgid "Table %s has been emptied" msgstr "Jadual %s telah dikosongkan" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, fuzzy, php-format msgid "View %s has been dropped" msgstr "Medan %s telah digugurkan" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "Table %s has been dropped" msgstr "Jadual %s telah digugurkan" -#: db_structure.php:332 +#: db_structure.php:318 msgid "Tracking is active." msgstr "" -#: db_structure.php:334 +#: db_structure.php:320 msgid "Tracking is not active." msgstr "" -#: db_structure.php:419 libraries/display_tbl.lib.php:1943 +#: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -#: db_structure.php:433 db_structure.php:447 libraries/header.inc.php:125 -#: libraries/tbl_info.inc.php:65 tbl_structure.php:184 test/theme.php:73 +#: db_structure.php:419 db_structure.php:433 libraries/header.inc.php:125 +#: libraries/tbl_info.inc.php:60 tbl_structure.php:183 test/theme.php:73 msgid "View" msgstr "" -#: db_structure.php:484 libraries/db_structure.lib.php:40 -#: libraries/server_links.inc.php:69 server_replication.php:32 -#: server_replication.php:163 server_status.php:368 +#: db_structure.php:470 libraries/db_structure.lib.php:40 +#: libraries/server_links.inc.php:69 server_replication.php:31 +#: server_replication.php:162 server_status.php:368 msgid "Replication" msgstr "" -#: db_structure.php:488 +#: db_structure.php:474 msgid "Sum" msgstr "Jumlah" -#: db_structure.php:495 libraries/StorageEngine.class.php:349 +#: db_structure.php:481 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: db_structure.php:523 db_structure.php:540 db_structure.php:541 -#: libraries/display_tbl.lib.php:2080 libraries/display_tbl.lib.php:2085 -#: libraries/mult_submits.inc.php:15 server_databases.php:345 -#: server_databases.php:350 server_privileges.php:1588 tbl_structure.php:454 -#: tbl_structure.php:463 +#: db_structure.php:509 db_structure.php:526 db_structure.php:527 +#: libraries/display_tbl.lib.php:2039 libraries/display_tbl.lib.php:2044 +#: libraries/mult_submits.inc.php:15 server_databases.php:343 +#: server_databases.php:348 server_privileges.php:1592 tbl_structure.php:452 +#: tbl_structure.php:461 msgid "With selected:" msgstr "Dengan pilihan:" -#: db_structure.php:526 libraries/display_tbl.lib.php:2075 -#: server_databases.php:347 server_privileges.php:569 -#: server_privileges.php:1591 tbl_structure.php:457 +#: db_structure.php:512 libraries/display_tbl.lib.php:2034 +#: server_databases.php:345 server_privileges.php:568 +#: server_privileges.php:1595 tbl_structure.php:455 msgid "Check All" msgstr "Tanda Semua" -#: db_structure.php:530 libraries/display_tbl.lib.php:2076 -#: libraries/replication_gui.lib.php:35 server_databases.php:349 -#: server_privileges.php:572 server_privileges.php:1595 tbl_structure.php:461 +#: db_structure.php:516 libraries/display_tbl.lib.php:2035 +#: libraries/replication_gui.lib.php:35 server_databases.php:347 +#: server_privileges.php:571 server_privileges.php:1599 tbl_structure.php:459 msgid "Uncheck All" msgstr "Nyahtanda Semua" -#: db_structure.php:535 +#: db_structure.php:521 msgid "Check tables having overhead" msgstr "" -#: db_structure.php:546 db_structure.php:547 db_structure.php:598 -#: libraries/display_tbl.lib.php:2179 libraries/mult_submits.inc.php:27 -#: tbl_structure.php:491 tbl_structure.php:493 +#: db_structure.php:532 db_structure.php:533 db_structure.php:584 +#: libraries/display_tbl.lib.php:2138 libraries/mult_submits.inc.php:27 +#: tbl_structure.php:489 tbl_structure.php:491 msgid "Print view" msgstr "Paparan Cetak" -#: db_structure.php:548 db_structure.php:549 libraries/mult_submits.inc.php:41 -#: tbl_operations.php:580 +#: db_structure.php:534 db_structure.php:535 libraries/mult_submits.inc.php:41 +#: tbl_operations.php:578 msgid "Check table" msgstr "Periksa Jadual" -#: db_structure.php:550 db_structure.php:551 libraries/mult_submits.inc.php:46 -#: tbl_operations.php:620 tbl_structure.php:708 tbl_structure.php:710 +#: db_structure.php:536 db_structure.php:537 libraries/mult_submits.inc.php:46 +#: tbl_operations.php:618 tbl_structure.php:706 tbl_structure.php:708 msgid "Optimize table" msgstr "Optimakan jadual" -#: db_structure.php:552 db_structure.php:553 libraries/mult_submits.inc.php:51 -#: tbl_operations.php:610 +#: db_structure.php:538 db_structure.php:539 libraries/mult_submits.inc.php:51 +#: tbl_operations.php:608 msgid "Repair table" msgstr "Baiki jadual" -#: db_structure.php:554 db_structure.php:555 libraries/mult_submits.inc.php:56 -#: tbl_operations.php:600 +#: db_structure.php:540 db_structure.php:541 libraries/mult_submits.inc.php:56 +#: tbl_operations.php:598 msgid "Analyze table" msgstr "Analyze table" -#: db_structure.php:556 db_structure.php:557 libraries/db_links.inc.php:70 -#: libraries/display_export.lib.php:82 libraries/display_tbl.lib.php:2093 -#: libraries/display_tbl.lib.php:2224 libraries/mult_submits.inc.php:61 -#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:81 -#: pmd_pdf.php:83 pmd_pdf.php:108 server_privileges.php:1372 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 +#: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 +#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 +#: pmd_pdf.php:81 pmd_pdf.php:106 server_privileges.php:1376 #: setup/frames/menu.inc.php:22 tbl_row_action.php:58 msgid "Export" msgstr "Eksport" -#: db_structure.php:605 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:591 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "Kamus Data" -#: db_tracking.php:65 +#: db_tracking.php:61 msgid "Tracked tables" msgstr "" -#: db_tracking.php:70 libraries/export/htmlword.php:85 +#: db_tracking.php:66 libraries/export/htmlword.php:85 #: libraries/export/latex.php:152 libraries/export/odt.php:112 #: libraries/export/sql.php:339 libraries/export/texytext.php:84 #: libraries/export/xml.php:254 libraries/header.inc.php:105 -#: libraries/header_printview.inc.php:57 server_databases.php:168 -#: server_privileges.php:1652 server_privileges.php:1713 -#: server_privileges.php:1971 server_processlist.php:55 -#: server_synchronize.php:1178 server_synchronize.php:1182 -#: tbl_tracking.php:590 test/theme.php:64 +#: libraries/header_printview.inc.php:57 server_databases.php:166 +#: server_privileges.php:1656 server_privileges.php:1717 +#: server_privileges.php:1975 server_processlist.php:55 +#: server_synchronize.php:1177 server_synchronize.php:1181 +#: tbl_tracking.php:585 test/theme.php:64 msgid "Database" msgstr "Pangkalan Data" -#: db_tracking.php:72 +#: db_tracking.php:68 msgid "Last version" msgstr "" -#: db_tracking.php:73 tbl_tracking.php:593 +#: db_tracking.php:69 tbl_tracking.php:588 #, fuzzy msgid "Created" msgstr "Cipta" -#: db_tracking.php:74 tbl_tracking.php:594 +#: db_tracking.php:70 tbl_tracking.php:589 msgid "Updated" msgstr "" -#: db_tracking.php:76 libraries/Index.class.php:439 -#: libraries/db_structure.lib.php:44 server_databases.php:202 -#: server_privileges.php:1534 server_privileges.php:1717 -#: server_privileges.php:2065 tbl_structure.php:186 +#: db_tracking.php:71 libraries/common.lib.php:1361 +#: libraries/server_links.inc.php:48 server_processlist.php:58 +#: tbl_tracking.php:590 test/theme.php:100 +msgid "Status" +msgstr "Status" + +#: db_tracking.php:72 libraries/Index.class.php:439 +#: libraries/db_structure.lib.php:44 server_databases.php:200 +#: server_privileges.php:1538 server_privileges.php:1721 +#: server_privileges.php:2069 tbl_structure.php:185 msgid "Action" msgstr "Aksi" -#: db_tracking.php:87 db_tracking.php:119 +#: db_tracking.php:83 db_tracking.php:115 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:105 tbl_tracking.php:547 tbl_tracking.php:605 -#: tbl_tracking.php:612 +#: db_tracking.php:101 tbl_tracking.php:542 tbl_tracking.php:600 +#: tbl_tracking.php:607 msgid "active" msgstr "" -#: db_tracking.php:107 tbl_tracking.php:549 tbl_tracking.php:607 -#: tbl_tracking.php:609 +#: db_tracking.php:103 tbl_tracking.php:544 tbl_tracking.php:602 +#: tbl_tracking.php:604 msgid "not active" msgstr "" -#: db_tracking.php:120 +#: db_tracking.php:116 #, fuzzy msgid "Versions" msgstr "Operasi" -#: db_tracking.php:121 tbl_tracking.php:378 tbl_tracking.php:623 +#: db_tracking.php:117 tbl_tracking.php:373 tbl_tracking.php:618 msgid "Tracking report" msgstr "" -#: db_tracking.php:122 tbl_tracking.php:250 tbl_tracking.php:623 +#: db_tracking.php:118 tbl_tracking.php:245 tbl_tracking.php:618 #, fuzzy msgid "Structure snapshot" msgstr "Struktur sahaja" -#: db_tracking.php:151 +#: db_tracking.php:147 msgid "Untracked tables" msgstr "" -#: db_tracking.php:171 db_tracking.php:173 tbl_structure.php:527 -#: tbl_structure.php:529 +#: db_tracking.php:167 db_tracking.php:169 tbl_structure.php:525 +#: tbl_structure.php:527 #, fuzzy msgid "Track table" msgstr "Periksa Jadual" -#: db_tracking.php:199 +#: db_tracking.php:195 #, fuzzy msgid "Database Log" msgstr "Pangkalan Data" @@ -804,104 +781,104 @@ msgstr "Pangkalan Data" msgid "Selected export type has to be saved in file!" msgstr "" -#: export.php:153 export.php:178 export.php:620 +#: export.php:152 export.php:177 export.php:615 #, php-format msgid "Insufficient space to save the file %s." msgstr "" -#: export.php:287 +#: export.php:286 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "" -#: export.php:291 export.php:295 +#: export.php:290 export.php:294 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "" -#: export.php:622 +#: export.php:617 #, php-format msgid "Dump has been saved to file %s." msgstr "" -#: import.php:59 +#: 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." msgstr "" -#: import.php:278 import.php:331 libraries/File.class.php:840 -#: libraries/File.class.php:950 +#: import.php:277 import.php:330 libraries/File.class.php:566 +#: libraries/File.class.php:676 msgid "File could not be read" msgstr "" -#: import.php:286 import.php:295 import.php:314 import.php:323 -#: libraries/File.class.php:1020 libraries/File.class.php:1028 -#: libraries/File.class.php:1044 libraries/File.class.php:1052 +#: import.php:285 import.php:294 import.php:313 import.php:322 +#: libraries/File.class.php:746 libraries/File.class.php:754 +#: libraries/File.class.php:770 libraries/File.class.php:778 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." msgstr "" -#: import.php:336 +#: import.php:335 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " "[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." msgstr "" -#: import.php:371 libraries/display_import.lib.php:23 +#: import.php:370 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:396 +#: import.php:395 msgid "The bookmark has been deleted." msgstr "TandaBuku telah dipadam." -#: import.php:400 +#: import.php:399 msgid "Showing bookmark" msgstr "" -#: import.php:402 sql.php:625 +#: import.php:401 sql.php:618 #, php-format msgid "Bookmark %s created" msgstr "" -#: import.php:408 import.php:414 +#: import.php:407 import.php:413 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" -#: import.php:423 +#: import.php:422 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: import.php:425 +#: import.php:424 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." msgstr "" -#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:240 +#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:239 #: user_password.php:110 msgid "Back" msgstr "Undur" -#: index.php:188 +#: index.php:183 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" "phpMyAdmin lebih mesra dengan pelayar web menyokong-kerangka seperti " "mozilla." -#: js/messages.php:25 server_synchronize.php:344 server_synchronize.php:356 -#: server_synchronize.php:372 server_synchronize.php:379 -#: server_synchronize.php:738 server_synchronize.php:766 -#: server_synchronize.php:794 server_synchronize.php:806 +#: js/messages.php:25 server_synchronize.php:343 server_synchronize.php:355 +#: server_synchronize.php:371 server_synchronize.php:378 +#: server_synchronize.php:737 server_synchronize.php:765 +#: server_synchronize.php:793 server_synchronize.php:805 msgid "Click to select" msgstr "" @@ -909,15 +886,15 @@ msgstr "" msgid "Click to unselect" msgstr "" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:88 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:87 msgid "\"DROP DATABASE\" statements are disabled." msgstr "keterangan \"DROP DATABASE\" di tidak aktifkan ." -#: js/messages.php:30 libraries/mult_submits.inc.php:257 sql.php:187 +#: js/messages.php:30 libraries/mult_submits.inc.php:256 sql.php:186 msgid "Do you really want to " msgstr "Adakah anda ingin " -#: js/messages.php:31 libraries/mult_submits.inc.php:257 sql.php:171 +#: js/messages.php:31 libraries/mult_submits.inc.php:256 sql.php:170 msgid "You are about to DESTROY a complete database!" msgstr "" @@ -946,11 +923,11 @@ msgstr "Nama hos adalah kosong!" msgid "The user name is empty!" msgstr "Kata Pengenalan kosong!" -#: js/messages.php:44 server_privileges.php:1228 user_password.php:65 +#: js/messages.php:44 server_privileges.php:1229 user_password.php:65 msgid "The password is empty!" msgstr "Katalaluan adalah kosong!" -#: js/messages.php:45 server_privileges.php:1226 user_password.php:68 +#: js/messages.php:45 server_privileges.php:1227 user_password.php:68 msgid "The passwords aren't the same!" msgstr "Katalaluan tidak sama!" @@ -958,29 +935,29 @@ msgstr "Katalaluan tidak sama!" msgid "Cancel" msgstr "" -#: js/messages.php:52 pmd_save_pos.php:53 +#: js/messages.php:52 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "Pengubahsuaian telah disimpan" -#: js/messages.php:53 pmd_relation_upd.php:48 +#: js/messages.php:53 pmd_relation_upd.php:47 #, fuzzy msgid "Relation deleted" msgstr "Paparan Hubungan" -#: js/messages.php:54 pmd_relation_new.php:63 +#: js/messages.php:54 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:55 pmd_relation_new.php:85 +#: js/messages.php:55 pmd_relation_new.php:84 #, fuzzy msgid "Internal relation added" msgstr "Ciri-ciri hubungan am" -#: js/messages.php:56 pmd_relation_new.php:62 pmd_relation_new.php:87 +#: js/messages.php:56 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:57 pmd_relation_new.php:30 +#: js/messages.php:57 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "" @@ -988,13 +965,13 @@ msgstr "" msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:59 libraries/relation.lib.php:94 -#: libraries/relation.lib.php:106 +#: js/messages.php:59 libraries/relation.lib.php:89 +#: libraries/relation.lib.php:101 msgid "General relation features" msgstr "Ciri-ciri hubungan am" -#: js/messages.php:59 libraries/relation.lib.php:88 -#: libraries/relation.lib.php:95 +#: js/messages.php:59 libraries/relation.lib.php:83 +#: libraries/relation.lib.php:90 msgid "Disabled" msgstr "Tidak Membenarkan" @@ -1010,7 +987,7 @@ msgstr "" msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:547 +#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" @@ -1042,10 +1019,10 @@ msgid "Prev" msgstr "Terdahulu" #. l10n: Display text for next month link in calendar -#: js/messages.php:81 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:337 -#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:422 -#: tbl_structure.php:800 +#: js/messages.php:81 libraries/common.lib.php:2358 +#: libraries/common.lib.php:2361 libraries/display_tbl.lib.php:336 +#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 +#: tbl_structure.php:798 msgid "Next" msgstr "Berikut" @@ -1119,27 +1096,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1562 +#: js/messages.php:101 libraries/common.lib.php:1566 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1564 +#: js/messages.php:103 libraries/common.lib.php:1568 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1566 +#: js/messages.php:105 libraries/common.lib.php:1570 msgid "Mar" msgstr "Mac" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1568 +#: js/messages.php:107 libraries/common.lib.php:1572 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1570 +#: js/messages.php:109 libraries/common.lib.php:1574 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1147,37 +1124,37 @@ msgid "May" msgstr "Mei" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1572 +#: js/messages.php:111 libraries/common.lib.php:1576 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1574 +#: js/messages.php:113 libraries/common.lib.php:1578 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1576 +#: js/messages.php:115 libraries/common.lib.php:1580 msgid "Aug" msgstr "Ogos" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1578 +#: js/messages.php:117 libraries/common.lib.php:1582 msgid "Sep" msgstr "Sept" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1580 +#: js/messages.php:119 libraries/common.lib.php:1584 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:121 libraries/common.lib.php:1582 +#: js/messages.php:121 libraries/common.lib.php:1586 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:123 libraries/common.lib.php:1584 +#: js/messages.php:123 libraries/common.lib.php:1588 msgid "Dec" msgstr "Dis" @@ -1218,37 +1195,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1587 +#: js/messages.php:136 libraries/common.lib.php:1591 msgid "Sun" msgstr "Aha" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1589 +#: js/messages.php:138 libraries/common.lib.php:1593 msgid "Mon" msgstr "Isn" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1591 +#: js/messages.php:140 libraries/common.lib.php:1595 msgid "Tue" msgstr "Sel" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1593 +#: js/messages.php:142 libraries/common.lib.php:1597 msgid "Wed" msgstr "Rab" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1595 +#: js/messages.php:144 libraries/common.lib.php:1599 msgid "Thu" msgstr "Kha" #. l10n: Short week day name -#: js/messages.php:146 libraries/common.lib.php:1597 +#: js/messages.php:146 libraries/common.lib.php:1601 msgid "Fri" msgstr "Jum" #. l10n: Short week day name -#: js/messages.php:148 libraries/common.lib.php:1599 +#: js/messages.php:148 libraries/common.lib.php:1603 msgid "Sat" msgstr "Sab" @@ -1326,75 +1303,74 @@ msgstr "Rekod" msgid "Font size" msgstr "" -#: libraries/File.class.php:336 libraries/File.class.php:424 -#: libraries/File.class.php:561 libraries/File.class.php:700 -msgid "Unknown error in file upload." -msgstr "" - -#: libraries/File.class.php:406 +#: libraries/File.class.php:315 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:409 +#: libraries/File.class.php:318 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:412 +#: libraries/File.class.php:321 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:415 +#: libraries/File.class.php:324 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:418 +#: libraries/File.class.php:327 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:421 +#: libraries/File.class.php:330 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:898 +#: libraries/File.class.php:333 +msgid "Unknown error in file upload." +msgstr "" + +#: libraries/File.class.php:624 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "" -#: libraries/Index.class.php:427 tbl_relation.php:528 +#: libraries/Index.class.php:427 tbl_relation.php:526 msgid "No index defined!" msgstr "Tiada indeks ditafrifkan!" -#: libraries/Index.class.php:432 server_databases.php:131 tbl_tracking.php:315 +#: libraries/Index.class.php:432 server_databases.php:129 tbl_tracking.php:310 msgid "Indexes" msgstr "Indeks" #: libraries/Index.class.php:443 libraries/mult_submits.inc.php:102 -#: libraries/tbl_properties.inc.php:518 tbl_structure.php:32 -#: tbl_structure.php:154 tbl_structure.php:158 tbl_structure.php:473 -#: tbl_tracking.php:321 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:31 +#: tbl_structure.php:153 tbl_structure.php:157 tbl_structure.php:471 +#: tbl_tracking.php:316 msgid "Unique" msgstr "Unik" -#: libraries/Index.class.php:444 tbl_tracking.php:322 +#: libraries/Index.class.php:444 tbl_tracking.php:317 msgid "Packed" msgstr "" -#: libraries/Index.class.php:446 tbl_tracking.php:324 +#: libraries/Index.class.php:446 tbl_tracking.php:319 msgid "Cardinality" msgstr "Kardinaliti" -#: libraries/Index.class.php:449 tbl_tracking.php:278 tbl_tracking.php:327 +#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322 #, fuzzy msgid "Comment" msgstr "Komen" #: libraries/Index.class.php:465 libraries/common.lib.php:609 -#: libraries/common.lib.php:1198 libraries/display_tbl.lib.php:1116 +#: libraries/common.lib.php:1191 libraries/display_tbl.lib.php:1115 #: libraries/import.lib.php:1119 libraries/import.lib.php:1143 -#: pdf_pages.php:284 setup/frames/index.inc.php:124 +#: pdf_pages.php:283 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:349 tbl_row_action.php:68 msgid "Edit" msgstr "Ubah" @@ -1416,15 +1392,15 @@ msgid "" msgstr "" #: libraries/List_Database.class.php:430 libraries/server_links.inc.php:40 -#: server_databases.php:87 server_privileges.php:1652 +#: server_databases.php:85 server_privileges.php:1656 #: setup/lib/messages.inc.php:107 test/theme.php:92 msgid "Databases" msgstr "pangkalan data" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:259 libraries/import.lib.php:134 pdf_schema.php:31 -#: pdf_schema.php:231 tbl_change.php:1023 tbl_operations.php:212 -#: tbl_relation.php:289 view_operations.php:61 +#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 +#: tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Ralat" @@ -1449,40 +1425,40 @@ msgid_plural "%1$d rows inserted." msgstr[0] "" msgstr[1] "" -#: libraries/StorageEngine.class.php:196 +#: libraries/StorageEngine.class.php:194 msgid "" "There is no detailed status information available for this storage engine." msgstr "" -#: libraries/StorageEngine.class.php:352 +#: libraries/StorageEngine.class.php:354 #, php-format msgid "%s is available on this MySQL server." msgstr "" -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:357 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "" -#: libraries/StorageEngine.class.php:359 +#: libraries/StorageEngine.class.php:361 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "" -#: libraries/Table.class.php:1018 +#: libraries/Table.class.php:1017 msgid "Invalid database" msgstr "" -#: libraries/Table.class.php:1032 tbl_get_field.php:25 +#: libraries/Table.class.php:1031 tbl_get_field.php:25 msgid "Invalid table name" msgstr "" -#: libraries/Table.class.php:1047 +#: libraries/Table.class.php:1046 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "" -#: libraries/Table.class.php:1131 +#: libraries/Table.class.php:1129 #, php-format msgid "Table %s has been renamed to %s" msgstr "Jadual %s telah ditukarnama ke %s" @@ -1500,22 +1476,22 @@ msgstr "" msgid "take it" msgstr "" -#: libraries/Theme_Manager.class.php:114 +#: libraries/Theme_Manager.class.php:109 #, php-format msgid "Default theme %s not found!" msgstr "" -#: libraries/Theme_Manager.class.php:152 +#: libraries/Theme_Manager.class.php:147 #, php-format msgid "Theme %s not found!" msgstr "" -#: libraries/Theme_Manager.class.php:220 +#: libraries/Theme_Manager.class.php:215 #, php-format msgid "Theme path not found for theme %s!" msgstr "" -#: libraries/Theme_Manager.class.php:296 test/theme.php:160 themes.php:20 +#: libraries/Theme_Manager.class.php:291 test/theme.php:160 themes.php:20 #: themes.php:40 msgid "Theme / Style" msgstr "" @@ -1623,19 +1599,19 @@ msgstr "" msgid "Authenticating..." msgstr "" -#: libraries/blobstreaming.lib.php:689 +#: libraries/blobstreaming.lib.php:340 msgid "View image" msgstr "" -#: libraries/blobstreaming.lib.php:693 +#: libraries/blobstreaming.lib.php:344 msgid "Play audio" msgstr "" -#: libraries/blobstreaming.lib.php:698 +#: libraries/blobstreaming.lib.php:349 msgid "View video" msgstr "" -#: libraries/blobstreaming.lib.php:702 +#: libraries/blobstreaming.lib.php:353 msgid "Download file" msgstr "" @@ -1686,7 +1662,7 @@ msgstr "Pelayan" msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:909 +#: libraries/common.inc.php:908 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" @@ -1713,7 +1689,8 @@ msgstr "Hantar" #: libraries/common.lib.php:425 libraries/common.lib.php:427 #: libraries/common.lib.php:429 libraries/common.lib.php:445 #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 -#: libraries/display_export.lib.php:163 libraries/relation.lib.php:84 +#: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 +#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 #: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" @@ -1728,146 +1705,146 @@ msgstr "kueri-SQL" msgid "MySQL said: " msgstr "MySQL berkata: " -#: libraries/common.lib.php:1136 +#: libraries/common.lib.php:1129 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1174 setup/lib/messages.inc.php:350 +#: libraries/common.lib.php:1167 setup/lib/messages.inc.php:350 msgid "Explain SQL" msgstr "Terangkan Kod SQL" -#: libraries/common.lib.php:1177 +#: libraries/common.lib.php:1170 msgid "Skip Explain SQL" msgstr "Skip Explain SQL" -#: libraries/common.lib.php:1211 +#: libraries/common.lib.php:1204 msgid "Without PHP Code" msgstr "Tanpa Kod PHP" -#: libraries/common.lib.php:1214 setup/lib/messages.inc.php:352 +#: libraries/common.lib.php:1207 setup/lib/messages.inc.php:352 msgid "Create PHP Code" msgstr "Cipta Kod PHP" -#: libraries/common.lib.php:1232 server_status.php:451 +#: libraries/common.lib.php:1225 server_status.php:451 #: setup/lib/messages.inc.php:351 msgid "Refresh" msgstr "" -#: libraries/common.lib.php:1241 +#: libraries/common.lib.php:1234 msgid "Skip Validate SQL" msgstr "Melangkau Pengesahan SQL" -#: libraries/common.lib.php:1244 setup/lib/messages.inc.php:353 +#: libraries/common.lib.php:1237 setup/lib/messages.inc.php:353 msgid "Validate SQL" msgstr "Mengesahkan SQL" -#: libraries/common.lib.php:1283 +#: libraries/common.lib.php:1287 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1285 +#: libraries/common.lib.php:1289 msgid "Inline" msgstr "" -#: libraries/common.lib.php:1339 libraries/common.lib.php:1354 +#: libraries/common.lib.php:1343 libraries/common.lib.php:1358 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1358 libraries/tbl_triggers.lib.php:27 +#: libraries/common.lib.php:1362 libraries/tbl_triggers.lib.php:27 #: server_processlist.php:57 msgid "Time" msgstr "Masa" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "B" msgstr "Bytes" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "KiB" msgstr "KB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "MiB" msgstr "MB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "GiB" msgstr "GB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "TiB" msgstr "TB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "PiB" msgstr "PB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "EiB" msgstr "EB" #. l10n: Thousands separator -#: libraries/common.lib.php:1424 +#: libraries/common.lib.php:1428 msgid "," msgstr "," #. l10n: Decimal separator -#: libraries/common.lib.php:1426 +#: libraries/common.lib.php:1430 msgid "." msgstr "." #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1603 +#: libraries/common.lib.php:1607 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y at %I:%M %p" -#: libraries/common.lib.php:1909 +#: libraries/common.lib.php:1913 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s hari, %s jam, %s minit dan %s saat" -#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 -#: libraries/display_tbl.lib.php:289 server_status.php:718 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 +#: libraries/display_tbl.lib.php:288 server_status.php:718 msgid "Begin" msgstr "Mula" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 -#: libraries/display_tbl.lib.php:290 server_binlog.php:154 +#: libraries/common.lib.php:2328 libraries/common.lib.php:2331 +#: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "Terdahulu" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 -#: libraries/display_tbl.lib.php:352 +#: libraries/common.lib.php:2359 libraries/common.lib.php:2362 +#: libraries/display_tbl.lib.php:351 msgid "End" msgstr "Tamat" -#: libraries/common.lib.php:2429 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "" -#: libraries/common.lib.php:2448 +#: libraries/common.lib.php:2453 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2828 libraries/common.lib.php:2835 -#: libraries/db_links.inc.php:67 libraries/export/sql.php:24 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 +#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 -#: libraries/tbl_links.inc.php:59 querywindow.php:89 test/theme.php:96 +#: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2837 libraries/db_links.inc.php:103 -#: libraries/tbl_links.inc.php:94 libraries/tbl_links.inc.php:116 -#: view_operations.php:88 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: view_operations.php:87 msgid "Operations" msgstr "Operasi" -#: libraries/core.lib.php:282 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1883,39 +1860,39 @@ msgstr "" msgid "Name" msgstr "Nama" -#: libraries/db_links.inc.php:44 +#: libraries/db_links.inc.php:43 #, php-format msgid "Database %s has been dropped." msgstr "angkalan data %s telah digugurkan." -#: libraries/db_links.inc.php:56 libraries/db_links.inc.php:57 -#: libraries/db_links.inc.php:58 +#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 +#: libraries/db_links.inc.php:57 msgid "Database seems to be empty!" msgstr "" -#: libraries/db_links.inc.php:80 libraries/relation.lib.php:142 -#: libraries/tbl_links.inc.php:68 +#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:85 +#: libraries/db_links.inc.php:84 msgid "Query" msgstr "Kueri" -#: libraries/db_links.inc.php:90 libraries/relation.lib.php:138 +#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:97 libraries/server_links.inc.php:87 -#: libraries/tbl_links.inc.php:90 pmd_pdf.php:83 pmd_pdf.php:109 +#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 #, fuzzy msgid "Import" msgstr "Eksport" -#: libraries/db_links.inc.php:110 libraries/server_links.inc.php:65 -#: server_privileges.php:111 server_privileges.php:1714 -#: server_privileges.php:2063 test/theme.php:116 +#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: server_privileges.php:110 server_privileges.php:1718 +#: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" msgstr "Privilej" @@ -1927,14 +1904,14 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1847 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1806 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "" -#: libraries/db_structure.lib.php:60 server_databases.php:141 -#: tbl_printview.php:334 tbl_structure.php:681 +#: libraries/db_structure.lib.php:60 server_databases.php:139 +#: tbl_printview.php:333 tbl_structure.php:679 msgid "Overhead" msgstr "Melebihi" @@ -1951,7 +1928,7 @@ msgstr "" msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "" -#: libraries/dbi/mysql.dbi.lib.php:358 tbl_structure.php:607 +#: libraries/dbi/mysql.dbi.lib.php:358 tbl_structure.php:605 msgid "Details..." msgstr "" @@ -1961,22 +1938,22 @@ msgid "Change password" msgstr "Ubah Katalaluan" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:807 +#: libraries/replication_gui.lib.php:347 server_privileges.php:806 msgid "No Password" msgstr "Tiada Katalaluan" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1530 server_synchronize.php:1174 +#: libraries/replication_gui.lib.php:351 server_privileges.php:795 +#: server_privileges.php:799 server_privileges.php:810 +#: server_privileges.php:1534 server_synchronize.php:1173 msgid "Password" msgstr "Katalaluan" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:815 server_privileges.php:818 +#: server_privileges.php:814 server_privileges.php:817 msgid "Re-type" msgstr "Ulang-taip" @@ -1997,8 +1974,8 @@ msgstr "Cipta pangkalan data baru" msgid "Create" msgstr "Cipta" -#: libraries/display_create_database.lib.php:39 server_privileges.php:113 -#: server_privileges.php:1419 server_replication.php:34 +#: libraries/display_create_database.lib.php:39 server_privileges.php:112 +#: server_privileges.php:1423 server_replication.php:33 msgid "No Privileges" msgstr "Tiada Privilej" @@ -2019,51 +1996,51 @@ msgstr "Cipta jadual baru pada pangkalan data %s" msgid "Number of columns" msgstr "Bilangan baris per halaman" -#: libraries/display_export.lib.php:41 +#: libraries/display_export.lib.php:35 msgid "Could not load export plugins, please check your installation!" msgstr "" -#: libraries/display_export.lib.php:106 +#: libraries/display_export.lib.php:100 #, fuzzy, php-format #| msgid "Dump %s row(s) starting at record # %s" msgid "Dump %s row(s) starting at row # %s" msgstr "Longgok %s baris bermula pada rekod # %s." -#: libraries/display_export.lib.php:114 +#: libraries/display_export.lib.php:108 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:124 setup/lib/messages.inc.php:79 +#: libraries/display_export.lib.php:118 setup/lib/messages.inc.php:79 msgid "Save as file" msgstr "Simpan sebagai fail" -#: libraries/display_export.lib.php:133 +#: libraries/display_export.lib.php:127 #, fuzzy, php-format msgid "Save on server in %s directory" msgstr "direktori muatnaik pelayan-web" -#: libraries/display_export.lib.php:141 setup/lib/messages.inc.php:87 +#: libraries/display_export.lib.php:135 setup/lib/messages.inc.php:87 msgid "Overwrite existing file(s)" msgstr "" -#: libraries/display_export.lib.php:147 +#: libraries/display_export.lib.php:141 msgid "File name template" msgstr "" -#: libraries/display_export.lib.php:151 +#: libraries/display_export.lib.php:145 #, fuzzy msgid "server name" msgstr "Kata Pengenalan" -#: libraries/display_export.lib.php:154 +#: libraries/display_export.lib.php:148 msgid "database name" msgstr "" -#: libraries/display_export.lib.php:157 +#: libraries/display_export.lib.php:151 msgid "table name" msgstr "" -#: libraries/display_export.lib.php:161 +#: libraries/display_export.lib.php:155 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2071,39 +2048,39 @@ msgid "" "%3$s. Other text will be kept as is." msgstr "" -#: libraries/display_export.lib.php:202 +#: libraries/display_export.lib.php:196 msgid "remember template" msgstr "" -#: libraries/display_export.lib.php:210 libraries/display_import.lib.php:177 +#: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 #: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 msgid "Character set of the file:" msgstr "Fail bagi set Aksara:" -#: libraries/display_export.lib.php:235 setup/lib/messages.inc.php:81 +#: libraries/display_export.lib.php:229 setup/lib/messages.inc.php:81 msgid "Compression" msgstr "Mampatan" -#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:196 -#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:529 -#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:574 -#: server_privileges.php:1867 server_processlist.php:74 +#: libraries/display_export.lib.php:234 libraries/display_import.lib.php:196 +#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:528 +#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:573 +#: server_privileges.php:1871 server_processlist.php:74 msgid "None" msgstr "Tiada" -#: libraries/display_export.lib.php:247 +#: libraries/display_export.lib.php:241 msgid "\"zipped\"" msgstr "\"zipped\"" -#: libraries/display_export.lib.php:253 +#: libraries/display_export.lib.php:247 msgid "\"gzipped\"" msgstr "\"digzip\"" -#: libraries/display_export.lib.php:259 +#: libraries/display_export.lib.php:253 msgid "\"bzipped\"" msgstr "bzipped" -#: libraries/display_export.lib.php:274 libraries/export/sql.php:42 +#: libraries/display_export.lib.php:268 libraries/export/sql.php:42 #: libraries/import/sql.php:31 msgid "SQL compatibility mode" msgstr "" @@ -2138,12 +2115,12 @@ msgid "File uploads are not allowed on this server." msgstr "" #: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 -#: tbl_change.php:1024 +#: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "Direktori muatnaik yang telah ditetapkan tidak dapat dicapai" #: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 -#: tbl_change.php:1027 +#: tbl_change.php:925 msgid "web server upload directory" msgstr "direktori muatnaik pelayan-web" @@ -2222,43 +2199,43 @@ msgstr "" msgid "Language" msgstr "" -#: libraries/display_tbl.lib.php:303 +#: libraries/display_tbl.lib.php:302 #, php-format msgid "%d is not valid row number." msgstr "" -#: libraries/display_tbl.lib.php:309 +#: libraries/display_tbl.lib.php:308 #, fuzzy #| msgid "row(s) starting from record #" msgid "row(s) starting from row #" msgstr "baris bermula dari rekod #" -#: libraries/display_tbl.lib.php:315 +#: libraries/display_tbl.lib.php:314 msgid "horizontal" msgstr "mengufuk" -#: libraries/display_tbl.lib.php:316 +#: libraries/display_tbl.lib.php:315 msgid "horizontal (rotated headers)" msgstr "" -#: libraries/display_tbl.lib.php:317 +#: libraries/display_tbl.lib.php:316 msgid "vertical" msgstr "menegak" -#: libraries/display_tbl.lib.php:323 +#: libraries/display_tbl.lib.php:322 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "pada mod %s dan ulang pengepala selepas %s sel" -#: libraries/display_tbl.lib.php:345 +#: libraries/display_tbl.lib.php:344 msgid "This operation could take a long time. Proceed anyway?" msgstr "" -#: libraries/display_tbl.lib.php:511 +#: libraries/display_tbl.lib.php:510 msgid "Sort by key" msgstr "" -#: libraries/display_tbl.lib.php:554 libraries/export/codegen.php:38 +#: libraries/display_tbl.lib.php:553 libraries/export/codegen.php:38 #: libraries/export/csv.php:29 libraries/export/excel.php:34 #: libraries/export/htmlword.php:28 libraries/export/latex.php:32 #: libraries/export/mediawiki.php:21 libraries/export/ods.php:26 @@ -2268,101 +2245,101 @@ msgstr "" #: libraries/export/xlsx.php:26 libraries/export/xml.php:23 #: libraries/export/yaml.php:27 libraries/import.lib.php:1114 #: libraries/import.lib.php:1136 libraries/import/csv.php:31 -#: libraries/import/docsql.php:33 libraries/import/ldi.php:46 +#: libraries/import/docsql.php:32 libraries/import/ldi.php:46 #: libraries/import/ods.php:30 libraries/import/sql.php:19 #: libraries/import/xls.php:25 libraries/import/xlsx.php:25 -#: libraries/import/xml.php:25 tbl_select.php:264 tbl_structure.php:752 +#: libraries/import/xml.php:25 tbl_select.php:263 tbl_structure.php:750 #, fuzzy msgid "Options" msgstr "Operasi" -#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:569 +#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:568 msgid "Partial Texts" msgstr "Sebahagian Teks" -#: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:573 +#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:572 msgid "Full Texts" msgstr "Teks Penuh" -#: libraries/display_tbl.lib.php:586 +#: libraries/display_tbl.lib.php:585 #, fuzzy msgid "Relational key" msgstr "Skema Hubungan" -#: libraries/display_tbl.lib.php:587 +#: libraries/display_tbl.lib.php:586 #, fuzzy #| msgid "Relational schema" msgid "Relational display column" msgstr "Skema Hubungan" -#: libraries/display_tbl.lib.php:594 +#: libraries/display_tbl.lib.php:593 msgid "Show binary contents" msgstr "" -#: libraries/display_tbl.lib.php:596 +#: libraries/display_tbl.lib.php:595 msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:598 +#: libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "" -#: libraries/display_tbl.lib.php:606 pmd_general.php:140 tbl_change.php:312 -#: tbl_change.php:318 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:307 +#: tbl_change.php:313 msgid "Hide" msgstr "" -#: libraries/display_tbl.lib.php:606 libraries/relation.lib.php:122 -#: libraries/tbl_properties.inc.php:143 transformation_overview.php:46 +#: libraries/display_tbl.lib.php:605 libraries/relation.lib.php:117 +#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46 msgid "Browser transformation" msgstr "" -#: libraries/display_tbl.lib.php:1125 libraries/display_tbl.lib.php:1129 -#: libraries/display_tbl.lib.php:1131 +#: libraries/display_tbl.lib.php:1124 libraries/display_tbl.lib.php:1128 +#: libraries/display_tbl.lib.php:1130 msgid "Execute bookmarked query" msgstr "" -#: libraries/display_tbl.lib.php:1144 libraries/display_tbl.lib.php:1156 +#: libraries/display_tbl.lib.php:1143 libraries/display_tbl.lib.php:1155 msgid "The row has been deleted" msgstr "Baris telah dipadam" -#: libraries/display_tbl.lib.php:1183 libraries/display_tbl.lib.php:2055 +#: libraries/display_tbl.lib.php:1182 libraries/display_tbl.lib.php:2014 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "Bunuh" -#: libraries/display_tbl.lib.php:1933 +#: libraries/display_tbl.lib.php:1892 msgid "in query" msgstr "pada kueri" -#: libraries/display_tbl.lib.php:1951 +#: libraries/display_tbl.lib.php:1910 msgid "Showing rows" msgstr "Papar baris" -#: libraries/display_tbl.lib.php:1961 +#: libraries/display_tbl.lib.php:1920 msgid "total" msgstr "jumlah" -#: libraries/display_tbl.lib.php:1969 sql.php:523 +#: libraries/display_tbl.lib.php:1928 sql.php:522 #, php-format msgid "Query took %01.4f sec" msgstr "" -#: libraries/display_tbl.lib.php:2088 libraries/mult_submits.inc.php:112 -#: querywindow.php:115 querywindow.php:119 querywindow.php:122 -#: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:469 +#: libraries/display_tbl.lib.php:2047 libraries/mult_submits.inc.php:112 +#: querywindow.php:114 querywindow.php:118 querywindow.php:121 +#: tbl_structure.php:23 tbl_structure.php:148 tbl_structure.php:467 msgid "Change" msgstr "Ubah" -#: libraries/display_tbl.lib.php:2158 +#: libraries/display_tbl.lib.php:2117 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2186 +#: libraries/display_tbl.lib.php:2145 msgid "Print view (with full texts)" msgstr "" -#: libraries/display_tbl.lib.php:2359 +#: libraries/display_tbl.lib.php:2318 msgid "Link not found" msgstr "Pautan tidak dijumpai" @@ -2416,9 +2393,9 @@ msgstr "" msgid "Buffer Pool Usage" msgstr "" -#: libraries/engines/innodb.lib.php:168 server_databases.php:136 -#: server_databases.php:304 server_status.php:524 server_status.php:585 -#: server_status.php:606 tbl_printview.php:349 tbl_structure.php:695 +#: libraries/engines/innodb.lib.php:168 server_databases.php:134 +#: server_databases.php:302 server_status.php:524 server_status.php:585 +#: server_status.php:606 tbl_printview.php:348 tbl_structure.php:693 msgid "Total" msgstr "Jumlah" @@ -2541,6 +2518,78 @@ msgid "" "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." msgstr "" +#: libraries/engines/pbms.lib.php:31 +msgid "Garbage Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:32 +msgid "The percentage of garbage in a repository file before it is compacted." +msgstr "" + +#: libraries/engines/pbms.lib.php:36 libraries/replication_gui.lib.php:69 +#: server_synchronize.php:1161 +#, fuzzy +msgid "Port" +msgstr "Isih" + +#: libraries/engines/pbms.lib.php:37 +msgid "" +"The port for the PBMS stream-based communications. Setting this value to 0 " +"will disable HTTP communication with the daemon." +msgstr "" + +#: libraries/engines/pbms.lib.php:41 +msgid "Repository Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:42 +msgid "" +"The maximum size of a BLOB repository file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:46 +msgid "Temp Blob Timeout" +msgstr "" + +#: libraries/engines/pbms.lib.php:47 +msgid "" +"The timeout, in seconds, for temporary BLOBs. Uploaded BLOB data is removed " +"after this time, unless they are referenced by a record in the database." +msgstr "" + +#: libraries/engines/pbms.lib.php:51 +msgid "Temp Log Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:52 +msgid "" +"The maximum size of a temporary BLOB log file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:56 +msgid "Max Keep Alive" +msgstr "" + +#: libraries/engines/pbms.lib.php:57 +msgid "" +"The timeout for inactive connection with the keep-alive flag set. After this " +"time the connection will be closed. The time-out is in milliseconds (1/1000)." +msgstr "" + +#: libraries/engines/pbms.lib.php:61 +msgid "Metadata Headers" +msgstr "" + +#: libraries/engines/pbms.lib.php:62 +msgid "" +"A \":\" delimited list of metadata headers to be used to initialize the " +"pbms_metadata_header table when a database is created." +msgstr "" + #: libraries/engines/pbxt.lib.php:22 msgid "Index cache size" msgstr "" @@ -2664,7 +2713,7 @@ msgid "" msgstr "" #: libraries/export/codegen.php:36 setup/lib/messages.inc.php:85 -#: tbl_printview.php:374 tbl_structure.php:736 +#: tbl_printview.php:373 tbl_structure.php:734 msgid "Format" msgstr "Format" @@ -2735,9 +2784,9 @@ msgstr "" #: libraries/export/htmlword.php:23 libraries/export/latex.php:59 #: libraries/export/latex.php:205 libraries/export/odt.php:47 #: libraries/export/sql.php:105 libraries/export/sql.php:865 -#: libraries/export/texytext.php:27 server_databases.php:126 -#: server_privileges.php:576 server_replication.php:315 tbl_printview.php:315 -#: tbl_structure.php:664 +#: libraries/export/texytext.php:27 server_databases.php:124 +#: server_privileges.php:575 server_replication.php:314 tbl_printview.php:314 +#: tbl_structure.php:662 msgid "Data" msgstr "Data" @@ -2786,14 +2835,14 @@ msgid "Label key" msgstr "" #: libraries/export/latex.php:46 libraries/export/odt.php:34 -#: libraries/export/sql.php:90 tbl_relation.php:398 +#: libraries/export/sql.php:90 tbl_relation.php:396 #, fuzzy msgid "Relations" msgstr "Operasi" #: libraries/export/latex.php:52 libraries/export/odt.php:40 #: libraries/export/odt.php:317 libraries/export/sql.php:94 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "" @@ -2801,10 +2850,10 @@ msgstr "" #: libraries/export/xml.php:101 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1529 server_privileges.php:2061 -#: server_processlist.php:54 server_synchronize.php:1158 +#: libraries/replication_gui.lib.php:331 server_privileges.php:730 +#: server_privileges.php:733 server_privileges.php:789 +#: server_privileges.php:1533 server_privileges.php:2065 +#: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "Hos" @@ -2997,8 +3046,8 @@ msgstr "" msgid "Export contents" msgstr "" -#: libraries/footer.inc.php:182 libraries/footer.inc.php:193 -#: libraries/footer.inc.php:196 +#: libraries/footer.inc.php:180 libraries/footer.inc.php:191 +#: libraries/footer.inc.php:194 msgid "Open new phpMyAdmin window" msgstr "" @@ -3015,7 +3064,7 @@ msgstr "Hasil SQL" msgid "Generated by" msgstr "Dijana oleh" -#: libraries/import.lib.php:151 sql.php:519 tbl_change.php:180 +#: libraries/import.lib.php:151 sql.php:518 tbl_change.php:175 #: 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)" @@ -3073,7 +3122,7 @@ msgstr "" msgid "Column names in first row" msgstr "" -#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:501 +#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:500 #: view_create.php:147 msgid "Column names" msgstr "Nama Kolum" @@ -3099,12 +3148,12 @@ msgstr "" msgid "Invalid column count in CSV input on line %d." msgstr "" -#: libraries/import/docsql.php:28 +#: libraries/import/docsql.php:27 msgid "DocSQL" msgstr "" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 -#: server_synchronize.php:427 server_synchronize.php:870 +#: libraries/import/docsql.php:30 libraries/tbl_properties.inc.php:616 +#: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "" @@ -3160,26 +3209,26 @@ msgstr "Tiada" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:512 -#: tbl_structure.php:28 tbl_structure.php:152 tbl_structure.php:156 -#: tbl_structure.php:472 +#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:511 +#: tbl_structure.php:27 tbl_structure.php:151 tbl_structure.php:155 +#: tbl_structure.php:470 msgid "Primary" msgstr "Utama" #: libraries/mult_submits.inc.php:97 libraries/tbl_properties.inc.php:115 -#: libraries/tbl_properties.inc.php:524 tbl_printview.php:324 -#: tbl_structure.php:30 tbl_structure.php:153 tbl_structure.php:157 -#: tbl_structure.php:474 tbl_structure.php:672 +#: libraries/tbl_properties.inc.php:523 tbl_printview.php:323 +#: tbl_structure.php:29 tbl_structure.php:152 tbl_structure.php:156 +#: tbl_structure.php:472 tbl_structure.php:670 msgid "Index" msgstr "Indeks" -#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:530 -#: tbl_structure.php:34 tbl_structure.php:155 tbl_structure.php:159 -#: tbl_structure.php:477 +#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:529 +#: tbl_structure.php:33 tbl_structure.php:154 tbl_structure.php:158 +#: tbl_structure.php:475 msgid "Fulltext" msgstr "Tekspenuh" -#: libraries/mult_submits.inc.php:434 tbl_replace.php:330 +#: libraries/mult_submits.inc.php:433 tbl_replace.php:330 msgid "No change" msgstr "Tiada perubahan" @@ -3187,191 +3236,191 @@ msgstr "Tiada perubahan" msgid "Charset" msgstr "" -#: libraries/mysql_charsets.lib.php:210 libraries/mysql_charsets.lib.php:411 -#: tbl_change.php:515 +#: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 +#: tbl_change.php:510 msgid "Binary" msgstr "Binari" -#: libraries/mysql_charsets.lib.php:222 +#: libraries/mysql_charsets.lib.php:214 msgid "Bulgarian" msgstr "" -#: libraries/mysql_charsets.lib.php:226 libraries/mysql_charsets.lib.php:351 +#: libraries/mysql_charsets.lib.php:218 libraries/mysql_charsets.lib.php:343 msgid "Simplified Chinese" msgstr "" -#: libraries/mysql_charsets.lib.php:228 libraries/mysql_charsets.lib.php:371 +#: libraries/mysql_charsets.lib.php:220 libraries/mysql_charsets.lib.php:363 msgid "Traditional Chinese" msgstr "" -#: libraries/mysql_charsets.lib.php:232 libraries/mysql_charsets.lib.php:418 +#: libraries/mysql_charsets.lib.php:224 libraries/mysql_charsets.lib.php:410 msgid "case-insensitive" msgstr "" -#: libraries/mysql_charsets.lib.php:235 libraries/mysql_charsets.lib.php:420 +#: libraries/mysql_charsets.lib.php:227 libraries/mysql_charsets.lib.php:412 msgid "case-sensitive" msgstr "" -#: libraries/mysql_charsets.lib.php:238 +#: libraries/mysql_charsets.lib.php:230 msgid "Croatian" msgstr "" -#: libraries/mysql_charsets.lib.php:241 +#: libraries/mysql_charsets.lib.php:233 msgid "Czech" msgstr "" -#: libraries/mysql_charsets.lib.php:244 +#: libraries/mysql_charsets.lib.php:236 msgid "Danish" msgstr "" -#: libraries/mysql_charsets.lib.php:247 +#: libraries/mysql_charsets.lib.php:239 msgid "English" msgstr "" -#: libraries/mysql_charsets.lib.php:250 +#: libraries/mysql_charsets.lib.php:242 msgid "Esperanto" msgstr "" -#: libraries/mysql_charsets.lib.php:253 +#: libraries/mysql_charsets.lib.php:245 msgid "Estonian" msgstr "" -#: libraries/mysql_charsets.lib.php:256 libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:248 libraries/mysql_charsets.lib.php:251 msgid "German" msgstr "" -#: libraries/mysql_charsets.lib.php:256 +#: libraries/mysql_charsets.lib.php:248 #, fuzzy msgid "dictionary" msgstr "Kamus Data" -#: libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:251 msgid "phone book" msgstr "" -#: libraries/mysql_charsets.lib.php:262 +#: libraries/mysql_charsets.lib.php:254 msgid "Hungarian" msgstr "" -#: libraries/mysql_charsets.lib.php:265 +#: libraries/mysql_charsets.lib.php:257 msgid "Icelandic" msgstr "" -#: libraries/mysql_charsets.lib.php:268 libraries/mysql_charsets.lib.php:358 +#: libraries/mysql_charsets.lib.php:260 libraries/mysql_charsets.lib.php:350 msgid "Japanese" msgstr "" -#: libraries/mysql_charsets.lib.php:271 +#: libraries/mysql_charsets.lib.php:263 msgid "Latvian" msgstr "" -#: libraries/mysql_charsets.lib.php:274 +#: libraries/mysql_charsets.lib.php:266 msgid "Lithuanian" msgstr "" -#: libraries/mysql_charsets.lib.php:277 libraries/mysql_charsets.lib.php:380 +#: libraries/mysql_charsets.lib.php:269 libraries/mysql_charsets.lib.php:372 msgid "Korean" msgstr "" -#: libraries/mysql_charsets.lib.php:280 +#: libraries/mysql_charsets.lib.php:272 msgid "Persian" msgstr "" -#: libraries/mysql_charsets.lib.php:283 +#: libraries/mysql_charsets.lib.php:275 msgid "Polish" msgstr "" -#: libraries/mysql_charsets.lib.php:286 libraries/mysql_charsets.lib.php:334 +#: libraries/mysql_charsets.lib.php:278 libraries/mysql_charsets.lib.php:326 msgid "West European" msgstr "" -#: libraries/mysql_charsets.lib.php:289 +#: libraries/mysql_charsets.lib.php:281 msgid "Romanian" msgstr "" -#: libraries/mysql_charsets.lib.php:292 +#: libraries/mysql_charsets.lib.php:284 msgid "Slovak" msgstr "" -#: libraries/mysql_charsets.lib.php:295 +#: libraries/mysql_charsets.lib.php:287 msgid "Slovenian" msgstr "" -#: libraries/mysql_charsets.lib.php:298 +#: libraries/mysql_charsets.lib.php:290 msgid "Spanish" msgstr "" -#: libraries/mysql_charsets.lib.php:301 +#: libraries/mysql_charsets.lib.php:293 msgid "Traditional Spanish" msgstr "" -#: libraries/mysql_charsets.lib.php:304 libraries/mysql_charsets.lib.php:401 +#: libraries/mysql_charsets.lib.php:296 libraries/mysql_charsets.lib.php:393 msgid "Swedish" msgstr "" -#: libraries/mysql_charsets.lib.php:307 libraries/mysql_charsets.lib.php:404 +#: libraries/mysql_charsets.lib.php:299 libraries/mysql_charsets.lib.php:396 msgid "Thai" msgstr "" -#: libraries/mysql_charsets.lib.php:310 libraries/mysql_charsets.lib.php:398 +#: libraries/mysql_charsets.lib.php:302 libraries/mysql_charsets.lib.php:390 msgid "Turkish" msgstr "" -#: libraries/mysql_charsets.lib.php:313 libraries/mysql_charsets.lib.php:395 +#: libraries/mysql_charsets.lib.php:305 libraries/mysql_charsets.lib.php:387 msgid "Ukrainian" msgstr "" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 msgid "Unicode" msgstr "" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 -#: libraries/mysql_charsets.lib.php:334 libraries/mysql_charsets.lib.php:341 -#: libraries/mysql_charsets.lib.php:363 libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 +#: libraries/mysql_charsets.lib.php:326 libraries/mysql_charsets.lib.php:333 +#: libraries/mysql_charsets.lib.php:355 libraries/mysql_charsets.lib.php:366 msgid "multilingual" msgstr "" -#: libraries/mysql_charsets.lib.php:341 +#: libraries/mysql_charsets.lib.php:333 msgid "Central European" msgstr "" -#: libraries/mysql_charsets.lib.php:346 +#: libraries/mysql_charsets.lib.php:338 msgid "Russian" msgstr "" -#: libraries/mysql_charsets.lib.php:363 +#: libraries/mysql_charsets.lib.php:355 msgid "Baltic" msgstr "" -#: libraries/mysql_charsets.lib.php:368 +#: libraries/mysql_charsets.lib.php:360 msgid "Armenian" msgstr "" -#: libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:366 msgid "Cyrillic" msgstr "" -#: libraries/mysql_charsets.lib.php:377 +#: libraries/mysql_charsets.lib.php:369 msgid "Arabic" msgstr "" -#: libraries/mysql_charsets.lib.php:383 +#: libraries/mysql_charsets.lib.php:375 msgid "Hebrew" msgstr "" -#: libraries/mysql_charsets.lib.php:386 +#: libraries/mysql_charsets.lib.php:378 msgid "Georgian" msgstr "" -#: libraries/mysql_charsets.lib.php:389 +#: libraries/mysql_charsets.lib.php:381 msgid "Greek" msgstr "" -#: libraries/mysql_charsets.lib.php:392 +#: libraries/mysql_charsets.lib.php:384 msgid "Czech-Slovak" msgstr "" -#: libraries/mysql_charsets.lib.php:407 libraries/mysql_charsets.lib.php:414 +#: libraries/mysql_charsets.lib.php:399 libraries/mysql_charsets.lib.php:406 msgid "unknown" msgstr "" @@ -3397,67 +3446,67 @@ msgstr "" msgid "This format has no options" msgstr "" -#: libraries/relation.lib.php:82 +#: libraries/relation.lib.php:77 msgid "not OK" msgstr "tidak OK" -#: libraries/relation.lib.php:86 pmd_general.php:339 +#: libraries/relation.lib.php:81 pmd_general.php:339 msgid "OK" msgstr "OK" -#: libraries/relation.lib.php:87 +#: libraries/relation.lib.php:82 msgid "Enabled" msgstr "Membenarkan" -#: libraries/relation.lib.php:110 +#: libraries/relation.lib.php:105 msgid "Display Features" msgstr "Paparkan Ciri-ciri" -#: libraries/relation.lib.php:116 +#: libraries/relation.lib.php:111 msgid "Creation of PDFs" msgstr "Ciptaan bagi PDF" -#: libraries/relation.lib.php:120 +#: libraries/relation.lib.php:115 msgid "Displaying Column Comments" msgstr "Memaparkan Komen Kolum" -#: libraries/relation.lib.php:125 +#: libraries/relation.lib.php:120 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" -#: libraries/relation.lib.php:130 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 msgid "Bookmarked SQL query" msgstr "Tandabuku kueri-SQL" -#: libraries/relation.lib.php:134 querywindow.php:99 querywindow.php:207 +#: libraries/relation.lib.php:129 querywindow.php:98 querywindow.php:205 msgid "SQL history" msgstr "" -#: libraries/relation.lib.php:146 +#: libraries/relation.lib.php:141 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:148 +#: libraries/relation.lib.php:143 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" -#: libraries/relation.lib.php:149 +#: libraries/relation.lib.php:144 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:150 +#: libraries/relation.lib.php:145 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:151 +#: libraries/relation.lib.php:146 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1158 +#: libraries/relation.lib.php:1153 msgid "no description" msgstr "tiada keterangan" @@ -3465,7 +3514,7 @@ msgstr "tiada keterangan" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:53 server_replication.php:346 +#: libraries/replication_gui.lib.php:53 server_replication.php:345 msgid "Change or reconfigure master server" msgstr "" @@ -3477,17 +3526,12 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:711 -#: server_privileges.php:714 server_privileges.php:721 -#: server_synchronize.php:1170 +#: libraries/replication_gui.lib.php:261 server_privileges.php:710 +#: server_privileges.php:713 server_privileges.php:720 +#: server_synchronize.php:1169 msgid "User name" msgstr "Kata Pengenalan" -#: libraries/replication_gui.lib.php:69 server_synchronize.php:1162 -#, fuzzy -msgid "Port" -msgstr "Isih" - #: libraries/replication_gui.lib.php:105 msgid "Master status" msgstr "" @@ -3502,8 +3546,8 @@ msgid "Variable" msgstr "Pembolehubah" #: libraries/replication_gui.lib.php:117 server_status.php:737 -#: tbl_change.php:322 tbl_printview.php:368 tbl_select.php:137 -#: tbl_structure.php:728 +#: tbl_change.php:317 tbl_printview.php:367 tbl_select.php:136 +#: tbl_structure.php:726 msgid "Value" msgstr "Nilai" @@ -3518,38 +3562,38 @@ msgid "" "this list." msgstr "" -#: libraries/replication_gui.lib.php:242 server_replication.php:193 +#: libraries/replication_gui.lib.php:242 server_replication.php:192 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:256 server_privileges.php:716 +#: libraries/replication_gui.lib.php:256 server_privileges.php:715 msgid "Any user" msgstr "Sebarang pengguna" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1920 server_privileges.php:1950 +#: libraries/replication_gui.lib.php:348 server_privileges.php:716 +#: server_privileges.php:783 server_privileges.php:807 +#: server_privileges.php:1924 server_privileges.php:1954 msgid "Use text field" msgstr "" -#: libraries/replication_gui.lib.php:304 server_privileges.php:764 +#: libraries/replication_gui.lib.php:304 server_privileges.php:763 msgid "Any host" msgstr "Sebarang hos" -#: libraries/replication_gui.lib.php:308 server_privileges.php:768 +#: libraries/replication_gui.lib.php:308 server_privileges.php:767 msgid "Local" msgstr "Local" -#: libraries/replication_gui.lib.php:314 server_privileges.php:773 +#: libraries/replication_gui.lib.php:314 server_privileges.php:772 msgid "This Host" msgstr "" -#: libraries/replication_gui.lib.php:320 server_privileges.php:779 +#: libraries/replication_gui.lib.php:320 server_privileges.php:778 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:333 server_privileges.php:792 +#: libraries/replication_gui.lib.php:333 server_privileges.php:791 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3576,8 +3620,8 @@ msgstr "" msgid "Servers" msgstr "Pelayan" -#: libraries/server_links.inc.php:52 server_engines.php:111 -#: server_engines.php:115 server_status.php:414 test/theme.php:104 +#: libraries/server_links.inc.php:52 server_engines.php:125 +#: server_engines.php:129 server_status.php:414 test/theme.php:104 msgid "Variables" msgstr "Pemboleh-pembolehubah" @@ -3599,12 +3643,12 @@ msgstr "Binari" msgid "Processes" msgstr "Proses-proses" -#: libraries/server_links.inc.php:91 server_synchronize.php:1091 -#: server_synchronize.php:1099 +#: libraries/server_links.inc.php:91 server_synchronize.php:1090 +#: server_synchronize.php:1098 msgid "Synchronize" msgstr "" -#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1109 +#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1108 #, fuzzy msgid "Source database" msgstr "Cari di pangkalan data" @@ -3623,7 +3667,7 @@ msgstr "" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1111 +#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1110 #, fuzzy msgid "Target database" msgstr "Cari di pangkalan data" @@ -3644,11 +3688,11 @@ msgstr "Laksana kueri SQL pada pangkalan data %s" msgid "Columns" msgstr "Nama Kolum" -#: libraries/sql_query_form.lib.php:342 sql.php:664 sql.php:665 sql.php:682 +#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "andabuku kueri-SQL ini" -#: libraries/sql_query_form.lib.php:349 sql.php:676 +#: libraries/sql_query_form.lib.php:349 sql.php:669 msgid "Let every user access this bookmark" msgstr "" @@ -3744,12 +3788,12 @@ msgstr "" "Pengesahan SQL tidak dapat disahkan. Sila semak sama ada anda telah memasang " "sambungan php seperti yang tercatit di %sdocumentation%s." -#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:139 -#: libraries/tbl_links.inc.php:140 +#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 +#: libraries/tbl_links.inc.php:139 msgid "Table seems to be empty!" msgstr "" -#: libraries/tbl_links.inc.php:148 +#: libraries/tbl_links.inc.php:147 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" @@ -3782,23 +3826,23 @@ msgid "" "escaping or quotes, using this format: a" msgstr "" -#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1263 -#: pdf_schema.php:1284 tbl_printview.php:142 tbl_structure.php:179 +#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1262 +#: pdf_schema.php:1283 tbl_printview.php:141 tbl_structure.php:178 msgid "Attributes" msgstr "Atribut" -#: libraries/tbl_properties.inc.php:136 +#: libraries/tbl_properties.inc.php:135 #, php-format msgid "" "For a list of available transformation options and their MIME type " "transformations, click on %stransformation descriptions%s" msgstr "" -#: libraries/tbl_properties.inc.php:144 +#: libraries/tbl_properties.inc.php:143 msgid "Transformation options" msgstr "" -#: libraries/tbl_properties.inc.php:145 +#: libraries/tbl_properties.inc.php:144 #, fuzzy msgid "" "Please enter the values for transformation options using this format: 'a', " @@ -3811,46 +3855,46 @@ msgstr "" "backslash (\"\\\") atau single quote (\"'\") didalam nilai tersebut, " "backslashes kan ia (cth '\\\\xyz' or 'a\\'b')." -#: libraries/tbl_properties.inc.php:392 +#: libraries/tbl_properties.inc.php:391 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "Tiada" -#: libraries/tbl_properties.inc.php:393 +#: libraries/tbl_properties.inc.php:392 msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:579 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:578 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
                            Please ask the " "author what %s does." msgstr "" -#: libraries/tbl_properties.inc.php:725 server_engines.php:57 -#: tbl_operations.php:354 +#: libraries/tbl_properties.inc.php:724 server_engines.php:56 +#: tbl_operations.php:352 msgid "Storage Engine" msgstr "" -#: libraries/tbl_properties.inc.php:754 +#: libraries/tbl_properties.inc.php:753 msgid "PARTITION definition" msgstr "" -#: libraries/tbl_properties.inc.php:775 pdf_pages.php:502 +#: libraries/tbl_properties.inc.php:774 pdf_pages.php:501 #: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214 -#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1124 tbl_indexes.php:247 -#: tbl_relation.php:565 +#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1022 tbl_indexes.php:246 +#: tbl_relation.php:563 msgid "Save" msgstr "Simpan" -#: libraries/tbl_properties.inc.php:779 tbl_structure.php:541 +#: libraries/tbl_properties.inc.php:778 tbl_structure.php:539 #, fuzzy, php-format msgid "Add %s column(s)" msgstr "Tambah medan baru" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:535 +#: libraries/tbl_properties.inc.php:782 tbl_structure.php:533 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." @@ -3977,8 +4021,8 @@ msgstr "" msgid "Custom color" msgstr "" -#: main.php:162 pdf_pages.php:362 setup/lib/FormDisplay.tpl.php:216 -#: tbl_change.php:1173 +#: main.php:162 pdf_pages.php:361 setup/lib/FormDisplay.tpl.php:216 +#: tbl_change.php:1071 msgid "Reset" msgstr "Ulangtetap" @@ -3986,8 +4030,8 @@ msgstr "Ulangtetap" msgid "Protocol version" msgstr "" -#: main.php:188 server_privileges.php:1381 server_privileges.php:1528 -#: server_privileges.php:1642 server_privileges.php:2060 +#: main.php:188 server_privileges.php:1385 server_privileges.php:1532 +#: server_privileges.php:1646 server_privileges.php:2064 #: server_processlist.php:53 msgid "User" msgstr "Pengguna" @@ -4066,21 +4110,30 @@ msgid "" "has been configured." msgstr "" -#: main.php:330 +#: main.php:314 +#, php-format +msgid "" +"The additional features for working with linked tables have been " +"deactivated. To find out why click %shere%s." +msgstr "" +"Ciri-ciri tambahan ini adalah untuk bekerja dengan pautan jadual yang telah " +"tidak diaktifkan. Untuk mengetahuinya klik %shere%s." + +#: main.php:329 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:345 +#: main.php:344 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: main.php:357 +#: main.php:356 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -4091,102 +4144,102 @@ msgstr "" msgid "Reload navigation frame" msgstr "" -#: navigation.php:204 server_databases.php:370 server_synchronize.php:1190 +#: navigation.php:203 server_databases.php:368 server_synchronize.php:1189 msgid "No databases" msgstr "Tiada pangkalan data" -#: navigation.php:298 +#: navigation.php:297 msgid "Filter" msgstr "" -#: navigation.php:299 setup/frames/index.inc.php:218 +#: navigation.php:298 setup/frames/index.inc.php:218 #: setup/lib/messages.inc.php:41 msgid "Clear" msgstr "" -#: navigation.php:330 navigation.php:331 +#: navigation.php:329 navigation.php:330 #, fuzzy msgctxt "short form" msgid "Create table" msgstr "Cipta Halaman baru" -#: navigation.php:333 navigation.php:495 +#: navigation.php:332 navigation.php:494 msgid "Please select a database" msgstr "Sila pilih pangkalan data" -#: pdf_pages.php:40 pdf_pages.php:46 pdf_pages.php:52 pdf_pages.php:57 +#: pdf_pages.php:39 pdf_pages.php:45 pdf_pages.php:51 pdf_pages.php:56 #, php-format msgid "%s table not found or not set in %s" msgstr "Jadual %s tidak dijumpai atau ditetapkan pada %s" -#: pdf_pages.php:265 +#: pdf_pages.php:264 msgid "Please choose a page to edit" msgstr "Sila Pilih Laman untuk diubah" -#: pdf_pages.php:303 pmd_pdf.php:113 +#: pdf_pages.php:302 pmd_pdf.php:111 msgid "Create a page" msgstr "Cipta Halaman baru" -#: pdf_pages.php:309 +#: pdf_pages.php:308 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Muka Surat:" -#: pdf_pages.php:313 +#: pdf_pages.php:312 #, fuzzy msgid "Automatic layout based on" msgstr "Versi Pelayan" -#: pdf_pages.php:315 +#: pdf_pages.php:314 msgid "Internal relations" msgstr "" -#: pdf_pages.php:338 +#: pdf_pages.php:337 msgid "Select Tables" msgstr "Pilih Jadual" -#: pdf_pages.php:361 +#: pdf_pages.php:360 msgid "Toggle scratchboard" msgstr "" -#: pdf_pages.php:524 +#: pdf_pages.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" msgstr "" -#: pdf_schema.php:635 +#: pdf_schema.php:634 #, fuzzy, php-format #| msgid "The \"%s\" table doesn't exist!" msgid "The %s table doesn't exist!" msgstr "Jadual \"%s\" tidak wujud!" -#: pdf_schema.php:671 +#: pdf_schema.php:670 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Sila konfigurasikan kordinat bagi jadual %s" -#: pdf_schema.php:994 +#: pdf_schema.php:993 #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" msgstr "Skema bagi pangkalan data \"%s\" database - Laman %s" -#: pdf_schema.php:1012 +#: pdf_schema.php:1011 msgid "No tables" msgstr "Tiada Jadual" -#: pdf_schema.php:1031 pdf_schema.php:1140 +#: pdf_schema.php:1030 pdf_schema.php:1139 msgid "Relational schema" msgstr "Skema Hubungan" -#: pdf_schema.php:1115 +#: pdf_schema.php:1114 msgid "Table of contents" msgstr "Kandungan" -#: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:145 -#: tbl_structure.php:182 tbl_tracking.php:277 +#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 +#: tbl_structure.php:181 tbl_tracking.php:272 msgid "Extra" msgstr "Ekstra" @@ -4198,7 +4251,7 @@ msgstr "" msgid "Save position" msgstr "" -#: pmd_general.php:70 server_synchronize.php:428 server_synchronize.php:871 +#: pmd_general.php:70 server_synchronize.php:427 server_synchronize.php:870 #, fuzzy msgid "Create table" msgstr "Cipta Halaman baru" @@ -4271,32 +4324,32 @@ msgid "" "appropriate column name." msgstr "" -#: pmd_pdf.php:62 +#: pmd_pdf.php:60 #, fuzzy msgid "Page has been created" msgstr "Jadual %s telah digugurkan" -#: pmd_pdf.php:64 +#: pmd_pdf.php:62 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:84 +#: pmd_pdf.php:82 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:88 +#: pmd_pdf.php:86 msgid "recommended" msgstr "" -#: pmd_pdf.php:93 +#: pmd_pdf.php:91 msgid "to/from page" msgstr "" -#: querywindow.php:94 +#: querywindow.php:93 msgid "Import files" msgstr "" -#: querywindow.php:105 +#: querywindow.php:104 msgid "All" msgstr "Semua" @@ -4344,186 +4397,186 @@ msgstr "" msgid "Character Sets and Collations" msgstr "" -#: server_databases.php:51 +#: server_databases.php:49 msgid "No databases selected." msgstr "" -#: server_databases.php:62 +#: server_databases.php:60 #, php-format msgid "%s databases have been dropped successfully." msgstr "" -#: server_databases.php:87 +#: server_databases.php:85 msgid "Databases statistics" msgstr "Statistik pangkalan data" -#: server_databases.php:116 server_status.php:370 +#: server_databases.php:114 server_status.php:370 #: setup/lib/messages.inc.php:114 msgid "Tables" msgstr "Jadual-jadual" -#: server_databases.php:194 server_replication.php:180 -#: server_replication.php:208 +#: server_databases.php:192 server_replication.php:179 +#: server_replication.php:207 msgid "Master replication" msgstr "" -#: server_databases.php:196 server_replication.php:247 +#: server_databases.php:194 server_replication.php:246 msgid "Slave replication" msgstr "" -#: server_databases.php:229 +#: server_databases.php:227 #, fuzzy msgid "Jump to database" msgstr "Tiada pangkalan data" -#: server_databases.php:266 +#: server_databases.php:264 msgid "Not replicated" msgstr "" -#: server_databases.php:272 +#: server_databases.php:270 msgid "Replicated" msgstr "" -#: server_databases.php:288 +#: server_databases.php:286 #, php-format msgid "Check privileges for database "%s"." msgstr "" -#: server_databases.php:292 server_databases.php:293 +#: server_databases.php:290 server_databases.php:291 #, fuzzy msgid "Check Privileges" msgstr "Tiada Privilej" -#: server_databases.php:357 server_databases.php:358 +#: server_databases.php:355 server_databases.php:356 #, fuzzy msgid "Enable Statistics" msgstr "Statistik pangkalan data" -#: server_databases.php:361 server_databases.php:362 +#: server_databases.php:359 server_databases.php:360 #, fuzzy msgid "Disable Statistics" msgstr "Statistik pangkalan data" -#: server_databases.php:365 +#: server_databases.php:363 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." msgstr "" -#: server_engines.php:48 +#: server_engines.php:47 msgid "Storage Engines" msgstr "" -#: server_export.php:20 +#: server_export.php:18 #, fuzzy msgid "View dump (schema) of databases" msgstr "Lihat longgokan (skema) pangkalan data" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:23 server_privileges.php:265 msgid "Includes all privileges except GRANT." msgstr "" -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:24 server_privileges.php:191 +#: server_privileges.php:514 msgid "Allows altering the structure of existing tables." msgstr "" -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:25 server_privileges.php:207 +#: server_privileges.php:520 msgid "Allows altering and dropping stored routines." msgstr "" -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:26 server_privileges.php:183 +#: server_privileges.php:513 msgid "Allows creating new databases and tables." msgstr "" -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:27 server_privileges.php:206 +#: server_privileges.php:519 msgid "Allows creating stored routines." msgstr "" -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:513 msgid "Allows creating new tables." msgstr "" -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:29 server_privileges.php:194 +#: server_privileges.php:517 msgid "Allows creating temporary tables." msgstr "" -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:30 server_privileges.php:208 +#: server_privileges.php:553 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: server_privileges.php:32 server_privileges.php:199 -#: server_privileges.php:203 server_privileges.php:526 -#: server_privileges.php:530 +#: server_privileges.php:31 server_privileges.php:198 +#: server_privileges.php:202 server_privileges.php:525 +#: server_privileges.php:529 msgid "Allows creating new views." msgstr "" -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:32 server_privileges.php:182 +#: server_privileges.php:505 msgid "Allows deleting data." msgstr "" -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:33 server_privileges.php:184 +#: server_privileges.php:516 msgid "Allows dropping databases and tables." msgstr "" -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:34 server_privileges.php:516 msgid "Allows dropping tables." msgstr "" -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:35 server_privileges.php:199 +#: server_privileges.php:533 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:36 server_privileges.php:209 +#: server_privileges.php:521 msgid "Allows executing stored routines." msgstr "" -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:37 server_privileges.php:188 +#: server_privileges.php:508 msgid "Allows importing data from and exporting data into files." msgstr "" -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:38 server_privileges.php:539 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:515 msgid "Allows creating and dropping indexes." msgstr "" -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:40 server_privileges.php:180 +#: server_privileges.php:441 server_privileges.php:503 msgid "Allows inserting and replacing data." msgstr "" -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:41 server_privileges.php:195 +#: server_privileges.php:548 msgid "Allows locking tables for the current thread." msgstr "" -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:42 server_privileges.php:645 +#: server_privileges.php:647 msgid "Limits the number of new connections the user may open per hour." msgstr "Limits the number of new connections the user may open per hour." -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:43 server_privileges.php:633 +#: server_privileges.php:635 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Limits the number of queries the user may send to the server per hour." -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:44 server_privileges.php:639 +#: server_privileges.php:641 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -4531,219 +4584,219 @@ msgstr "" "Limits the number of commands that change any table or database the user may " "execute per hour." -#: server_privileges.php:46 server_privileges.php:652 -#: server_privileges.php:654 +#: server_privileges.php:45 server_privileges.php:651 +#: server_privileges.php:653 #, fuzzy msgid "Limits the number of simultaneous connections the user may have." msgstr "Limits the number of new connections the user may open per hour." -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:46 server_privileges.php:187 +#: server_privileges.php:543 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:47 server_privileges.php:189 +#: server_privileges.php:447 server_privileges.php:549 msgid "Has no effect in this MySQL version." msgstr "" -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:48 server_privileges.php:185 +#: server_privileges.php:544 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:197 +#: server_privileges.php:551 msgid "Allows the user to ask where the slaves / masters are." msgstr "" -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:50 server_privileges.php:196 +#: server_privileges.php:552 msgid "Needed for the replication slaves." msgstr "" -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:51 server_privileges.php:179 +#: server_privileges.php:438 server_privileges.php:502 msgid "Allows reading data." msgstr "" -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:52 server_privileges.php:192 +#: server_privileges.php:546 msgid "Gives access to the complete list of databases." msgstr "" -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:53 server_privileges.php:203 +#: server_privileges.php:205 server_privileges.php:518 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:54 server_privileges.php:186 +#: server_privileges.php:545 msgid "Allows shutting down the server." msgstr "" -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:55 server_privileges.php:193 +#: server_privileges.php:542 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " "killing threads of other users." msgstr "" -#: server_privileges.php:57 server_privileges.php:201 -#: server_privileges.php:535 +#: server_privileges.php:56 server_privileges.php:200 +#: server_privileges.php:534 msgid "Allows creating and dropping triggers" msgstr "" -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:57 server_privileges.php:181 +#: server_privileges.php:444 server_privileges.php:504 msgid "Allows changing data." msgstr "" -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:58 server_privileges.php:259 #, fuzzy msgid "No privileges." msgstr "Tiada Privilej" -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:301 server_privileges.php:302 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Tiada" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1710 server_privileges.php:1716 +#: server_privileges.php:430 server_privileges.php:565 +#: server_privileges.php:1714 server_privileges.php:1720 msgid "Table-specific privileges" msgstr "" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1532 +#: server_privileges.php:431 server_privileges.php:573 +#: server_privileges.php:1536 msgid " Note: MySQL privilege names are expressed in English " msgstr " Nota: Nama privilej MySQL adalah dinyatakan dalam B.Inggeris " -#: server_privileges.php:563 server_privileges.php:1531 +#: server_privileges.php:562 server_privileges.php:1535 #, fuzzy msgid "Global privileges" msgstr "Tiada Privilej" -#: server_privileges.php:565 server_privileges.php:1710 +#: server_privileges.php:564 server_privileges.php:1714 msgid "Database-specific privileges" msgstr "" -#: server_privileges.php:610 +#: server_privileges.php:609 msgid "Administration" msgstr "" -#: server_privileges.php:630 +#: server_privileges.php:629 msgid "Resource limits" msgstr "" -#: server_privileges.php:631 +#: server_privileges.php:630 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" -#: server_privileges.php:708 +#: server_privileges.php:707 #, fuzzy msgid "Login Information" msgstr "Informasi MasaJana" -#: server_privileges.php:802 +#: server_privileges.php:801 msgid "Do not change the password" msgstr "Jangan tukar katalaluan" -#: server_privileges.php:835 server_privileges.php:2197 +#: server_privileges.php:834 server_privileges.php:2201 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Tiada pengguna dijumpai." -#: server_privileges.php:879 +#: server_privileges.php:878 #, php-format msgid "The user %s already exists!" msgstr "" -#: server_privileges.php:962 +#: server_privileges.php:961 msgid "You have added a new user." msgstr "Anda telah menambah pengguna baru." -#: server_privileges.php:1183 +#: server_privileges.php:1184 #, php-format msgid "You have updated the privileges for %s." msgstr "Anda telah mengemaskini privilej bagi %s." -#: server_privileges.php:1207 +#: server_privileges.php:1208 #, php-format msgid "You have revoked the privileges for %s" msgstr "Anda telah menarikbalik privilej Keistimewaan untuk %s" -#: server_privileges.php:1243 +#: server_privileges.php:1244 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: server_privileges.php:1263 +#: server_privileges.php:1264 #, php-format msgid "Deleting %s" msgstr "" -#: server_privileges.php:1274 +#: server_privileges.php:1275 msgid "No users selected for deleting!" msgstr "" -#: server_privileges.php:1277 +#: server_privileges.php:1278 msgid "Reloading the privileges" msgstr "" -#: server_privileges.php:1292 +#: server_privileges.php:1296 msgid "The selected users have been deleted successfully." msgstr "" -#: server_privileges.php:1327 +#: server_privileges.php:1331 msgid "The privileges were reloaded successfully." msgstr "" -#: server_privileges.php:1355 server_privileges.php:1641 +#: server_privileges.php:1359 server_privileges.php:1645 msgid "Edit Privileges" msgstr "Ubah Privilej" -#: server_privileges.php:1364 +#: server_privileges.php:1368 msgid "Revoke" msgstr "TarikBalik" -#: server_privileges.php:1396 +#: server_privileges.php:1400 msgid "User overview" msgstr "" -#: server_privileges.php:1533 server_privileges.php:1715 -#: server_privileges.php:2064 +#: server_privileges.php:1537 server_privileges.php:1719 +#: server_privileges.php:2068 #, fuzzy msgid "Grant" msgstr "Cetak" -#: server_privileges.php:1552 server_privileges.php:2154 +#: server_privileges.php:1556 server_privileges.php:2158 msgid "Any" msgstr "Sebarang" -#: server_privileges.php:1601 server_privileges.php:1625 -#: server_privileges.php:2019 server_privileges.php:2208 +#: server_privileges.php:1605 server_privileges.php:1629 +#: server_privileges.php:2023 server_privileges.php:2212 msgid "Add a new User" msgstr "Tambah Pengguna Baru" -#: server_privileges.php:1606 +#: server_privileges.php:1610 msgid "Remove selected users" msgstr "" -#: server_privileges.php:1609 +#: server_privileges.php:1613 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: server_privileges.php:1610 server_privileges.php:1611 -#: server_privileges.php:1612 +#: server_privileges.php:1614 server_privileges.php:1615 +#: server_privileges.php:1616 msgid "Drop the databases that have the same names as the users." msgstr "" -#: server_privileges.php:1628 +#: server_privileges.php:1632 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4752,91 +4805,91 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: server_privileges.php:1676 +#: server_privileges.php:1680 msgid "The selected user was not found in the privilege table." msgstr "" -#: server_privileges.php:1716 +#: server_privileges.php:1720 msgid "Column-specific privileges" msgstr "" -#: server_privileges.php:1917 +#: server_privileges.php:1921 msgid "Add privileges on the following database" msgstr "" -#: server_privileges.php:1935 +#: server_privileges.php:1939 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:1938 +#: server_privileges.php:1942 msgid "Add privileges on the following table" msgstr "" -#: server_privileges.php:1995 +#: server_privileges.php:1999 msgid "Change Login Information / Copy User" msgstr "" -#: server_privileges.php:1998 +#: server_privileges.php:2002 msgid "Create a new user with the same privileges and ..." msgstr "" -#: server_privileges.php:2000 +#: server_privileges.php:2004 msgid "... keep the old one." msgstr "" -#: server_privileges.php:2001 +#: server_privileges.php:2005 msgid " ... delete the old one from the user tables." msgstr "" -#: server_privileges.php:2002 +#: server_privileges.php:2006 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: server_privileges.php:2003 +#: server_privileges.php:2007 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: server_privileges.php:2025 +#: server_privileges.php:2029 msgid "Database for user" msgstr "" -#: server_privileges.php:2029 +#: server_privileges.php:2033 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Tiada" -#: server_privileges.php:2030 +#: server_privileges.php:2034 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2031 +#: server_privileges.php:2035 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2034 +#: server_privileges.php:2038 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: server_privileges.php:2057 +#: server_privileges.php:2061 #, php-format msgid "Users having access to "%s"" msgstr "" -#: server_privileges.php:2165 +#: server_privileges.php:2169 msgid "global" msgstr "" -#: server_privileges.php:2167 +#: server_privileges.php:2171 msgid "database-specific" msgstr "" -#: server_privileges.php:2169 +#: server_privileges.php:2173 msgid "wildcard" msgstr "" @@ -4856,53 +4909,53 @@ msgstr "" msgid "ID" msgstr "ID" -#: server_replication.php:50 +#: server_replication.php:49 msgid "Unknown error" msgstr "" -#: server_replication.php:57 +#: server_replication.php:56 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:64 +#: server_replication.php:63 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:70 +#: server_replication.php:69 msgid "Unable to change master" msgstr "" -#: server_replication.php:73 +#: server_replication.php:72 #, php-format msgid "Master server changed succesfully to %s" msgstr "" -#: server_replication.php:181 +#: server_replication.php:180 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:183 server_status.php:391 +#: server_replication.php:182 server_status.php:391 msgid "Show master status" msgstr "" -#: server_replication.php:186 +#: server_replication.php:185 msgid "Show connected slaves" msgstr "" -#: server_replication.php:209 +#: server_replication.php:208 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:216 +#: server_replication.php:215 msgid "Master configuration" msgstr "" -#: server_replication.php:217 +#: server_replication.php:216 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -4911,110 +4964,110 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:220 +#: server_replication.php:219 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:221 +#: server_replication.php:220 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:224 +#: server_replication.php:223 #, fuzzy msgid "Please select databases:" msgstr "Sila pilih pangkalan data" -#: server_replication.php:227 +#: server_replication.php:226 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: server_replication.php:229 +#: server_replication.php:228 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: server_replication.php:292 +#: server_replication.php:291 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:295 +#: server_replication.php:294 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:304 +#: server_replication.php:303 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:307 +#: server_replication.php:306 msgid "See slave status table" msgstr "" -#: server_replication.php:310 +#: server_replication.php:309 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:321 +#: server_replication.php:320 msgid "Control slave:" msgstr "" -#: server_replication.php:324 +#: server_replication.php:323 #, fuzzy msgid "Full start" msgstr "Tekspenuh" -#: server_replication.php:324 +#: server_replication.php:323 msgid "Full stop" msgstr "" -#: server_replication.php:325 +#: server_replication.php:324 msgid "Reset slave" msgstr "" -#: server_replication.php:326 +#: server_replication.php:325 #, php-format msgid "SQL Thread %s only" msgstr "" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 #, fuzzy msgid "Start" msgstr "Sab" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 msgid "Stop" msgstr "" -#: server_replication.php:327 +#: server_replication.php:326 #, php-format msgid "IO Thread %s only" msgstr "" -#: server_replication.php:331 +#: server_replication.php:330 msgid "Error management:" msgstr "" -#: server_replication.php:333 +#: server_replication.php:332 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:335 +#: server_replication.php:334 msgid "Skip current error" msgstr "" -#: server_replication.php:336 +#: server_replication.php:335 msgid "Skip next" msgstr "" -#: server_replication.php:339 +#: server_replication.php:338 msgid "errors." msgstr "" -#: server_replication.php:354 +#: server_replication.php:353 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -5724,112 +5777,112 @@ msgstr "Jenis Kueri" msgid "Replication status" msgstr "" -#: server_synchronize.php:93 +#: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:96 +#: server_synchronize.php:95 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:121 server_synchronize.php:124 tbl_create.php:77 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:264 +#: server_synchronize.php:263 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:271 +#: server_synchronize.php:270 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:399 server_synchronize.php:838 +#: server_synchronize.php:398 server_synchronize.php:837 msgid "not present" msgstr "" -#: server_synchronize.php:423 server_synchronize.php:866 +#: server_synchronize.php:422 server_synchronize.php:865 msgid "Structure Difference" msgstr "" -#: server_synchronize.php:424 server_synchronize.php:867 +#: server_synchronize.php:423 server_synchronize.php:866 msgid "Data Difference" msgstr "" -#: server_synchronize.php:429 server_synchronize.php:872 +#: server_synchronize.php:428 server_synchronize.php:871 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:430 server_synchronize.php:873 +#: server_synchronize.php:429 server_synchronize.php:872 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:431 server_synchronize.php:874 +#: server_synchronize.php:430 server_synchronize.php:873 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:432 server_synchronize.php:875 +#: server_synchronize.php:431 server_synchronize.php:874 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:433 server_synchronize.php:876 +#: server_synchronize.php:432 server_synchronize.php:875 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:434 server_synchronize.php:877 +#: server_synchronize.php:433 server_synchronize.php:876 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:435 server_synchronize.php:878 +#: server_synchronize.php:434 server_synchronize.php:877 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:445 server_synchronize.php:889 +#: server_synchronize.php:444 server_synchronize.php:888 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:448 server_synchronize.php:893 +#: server_synchronize.php:447 server_synchronize.php:892 msgid "Apply Selected Changes" msgstr "" -#: server_synchronize.php:450 server_synchronize.php:895 +#: server_synchronize.php:449 server_synchronize.php:894 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:463 +#: server_synchronize.php:462 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:941 +#: server_synchronize.php:940 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:1002 +#: server_synchronize.php:1001 msgid "The following queries have been executed:" msgstr "" -#: server_synchronize.php:1121 +#: server_synchronize.php:1120 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1122 +#: server_synchronize.php:1121 #, fuzzy #| msgid "Connections" msgid "Current connection" msgstr "Hubungan" -#: server_synchronize.php:1151 +#: server_synchronize.php:1150 #, php-format msgid "Configuration: %s" msgstr "" -#: server_synchronize.php:1166 +#: server_synchronize.php:1165 msgid "Socket" msgstr "" -#: server_synchronize.php:1212 +#: server_synchronize.php:1211 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -6380,8 +6433,8 @@ msgstr "" #: setup/lib/messages.inc.php:128 msgid "" "Configure phpMyAdmin database to gain access to additional features, see " -"[a@../Documentation.html#linked-tables]linked-tables infrastructure[/a] in " -"documentation" +"[a@../Documentation.html#linked-tables]phpMyAdmin configuration storage[/a] " +"in documentation" msgstr "" #: setup/lib/messages.inc.php:129 setup/lib/messages.inc.php:290 @@ -7436,115 +7489,115 @@ msgstr "" msgid "ZIP" msgstr "" -#: sql.php:495 tbl_replace.php:385 +#: sql.php:494 tbl_replace.php:384 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: sql.php:512 +#: sql.php:511 msgid "Showing as PHP code" msgstr "" -#: sql.php:515 tbl_replace.php:359 +#: sql.php:514 tbl_replace.php:358 msgid "Showing SQL query" msgstr "" -#: sql.php:517 +#: sql.php:516 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Mengesahkan SQL" -#: sql.php:638 +#: sql.php:631 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:670 +#: sql.php:663 msgid "Label" msgstr "Label" -#: tbl_addfield.php:188 tbl_alter.php:102 tbl_indexes.php:97 +#: tbl_addfield.php:185 tbl_alter.php:100 tbl_indexes.php:97 #, php-format msgid "Table %1$s has been altered successfully" msgstr "" -#: tbl_change.php:250 tbl_select.php:26 tbl_select.php:27 tbl_select.php:30 -#: tbl_select.php:33 +#: tbl_change.php:245 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_select.php:32 msgid "Browse foreign values" msgstr "" -#: tbl_change.php:280 tbl_change.php:318 +#: tbl_change.php:275 tbl_change.php:313 msgid "Function" msgstr "Fungsi" -#: tbl_change.php:300 tbl_indexes.php:199 tbl_indexes.php:224 +#: tbl_change.php:295 tbl_indexes.php:198 tbl_indexes.php:223 msgid "Ignore" msgstr "Abai" -#: tbl_change.php:725 +#: tbl_change.php:720 #, fuzzy #| msgid " Because of its length,
                            this field might not be editable " msgid " Because of its length,
                            this column might not be editable " msgstr " Kerana kepanjangannya,
                            medan ini tidak boleh diedit " -#: tbl_change.php:884 +#: tbl_change.php:835 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:890 +#: tbl_change.php:841 msgid "Binary - do not edit" msgstr "Binari - jgn diubah" -#: tbl_change.php:983 +#: tbl_change.php:889 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:1128 +#: tbl_change.php:1026 msgid "Insert as new row" msgstr "Selitkan baris baru" -#: tbl_change.php:1129 +#: tbl_change.php:1027 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:1130 +#: tbl_change.php:1028 msgid "Show insert query" msgstr "" -#: tbl_change.php:1145 +#: tbl_change.php:1043 msgid "Go back to previous page" msgstr "Kembali ke muka sebelumnya" -#: tbl_change.php:1146 +#: tbl_change.php:1044 msgid "Insert another new row" msgstr "Tambah baris yang baru" -#: tbl_change.php:1150 +#: tbl_change.php:1048 #, fuzzy msgid "Go back to this page" msgstr "Kembali ke muka sebelumnya" -#: tbl_change.php:1158 +#: tbl_change.php:1056 msgid "Edit next row" msgstr "" -#: tbl_change.php:1169 +#: tbl_change.php:1067 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: tbl_change.php:1207 +#: tbl_change.php:1105 #, php-format msgid "Restart insertion with %s rows" msgstr "" -#: tbl_create.php:57 +#: tbl_create.php:55 #, php-format msgid "Table %s already exists!" msgstr "" -#: tbl_create.php:244 +#: tbl_create.php:241 #, fuzzy, php-format msgid "Table %1$s has been created." msgstr "Jadual %s telah digugurkan" @@ -7565,201 +7618,201 @@ msgstr "Tidak boleh menukar indekx ke PRIMARY!" msgid "No index parts defined!" msgstr "Tiada bahagian indeks ditakrifkan!" -#: tbl_indexes.php:159 +#: tbl_indexes.php:158 msgid "Create a new index" msgstr "Cipta indeks baru" -#: tbl_indexes.php:161 +#: tbl_indexes.php:160 msgid "Modify an index" msgstr "Ubahsuai indeks" -#: tbl_indexes.php:167 +#: tbl_indexes.php:166 msgid "Index name:" msgstr "Nama indeks :" -#: tbl_indexes.php:173 +#: tbl_indexes.php:172 msgid "Index type:" msgstr "Jenis indeks :" -#: tbl_indexes.php:183 +#: tbl_indexes.php:182 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "(\"PRIMARY\" mesti nama dan semesti dari kekunci utama!)" -#: tbl_indexes.php:250 +#: tbl_indexes.php:249 #, php-format msgid "Add to index  %s column(s)" msgstr "Tambah ke indeks  %s kolum" -#: tbl_indexes.php:255 tbl_structure.php:588 tbl_structure.php:599 +#: tbl_indexes.php:254 tbl_structure.php:586 tbl_structure.php:597 msgid "Column count has to be larger than zero." msgstr "" -#: tbl_move_copy.php:45 +#: tbl_move_copy.php:44 msgid "Can't move table to same one!" msgstr "" -#: tbl_move_copy.php:47 +#: tbl_move_copy.php:46 msgid "Can't copy table to same one!" msgstr "" -#: tbl_move_copy.php:55 +#: tbl_move_copy.php:54 #, php-format msgid "Table %s has been moved to %s." msgstr "Jadual %s telah dipindahkan ke %s." -#: tbl_move_copy.php:57 +#: tbl_move_copy.php:56 #, php-format msgid "Table %s has been copied to %s." msgstr "Jadual %s telah disalin ke %s." -#: tbl_move_copy.php:81 +#: tbl_move_copy.php:80 msgid "The table name is empty!" msgstr "Nama jadual adalah kosong" -#: tbl_operations.php:248 +#: tbl_operations.php:246 msgid "Alter table order by" msgstr "Alter table order by" -#: tbl_operations.php:257 +#: tbl_operations.php:255 msgid "(singly)" msgstr "(persatu)" -#: tbl_operations.php:277 +#: tbl_operations.php:275 msgid "Move table to (database.table):" msgstr "Pindahkan jadual ke (pangkalandata.jadual):" -#: tbl_operations.php:335 +#: tbl_operations.php:333 msgid "Table options" msgstr "" -#: tbl_operations.php:339 +#: tbl_operations.php:337 msgid "Rename table to" msgstr "Tukarnama jadual ke" -#: tbl_operations.php:510 +#: tbl_operations.php:508 msgid "Copy table to (database.table):" msgstr "Salin jadual ke (pangkalandata.jadual):" -#: tbl_operations.php:557 +#: tbl_operations.php:555 msgid "Switch to copied table" msgstr "" -#: tbl_operations.php:569 +#: tbl_operations.php:567 msgid "Table maintenance" msgstr "Penyenggaraan Jadual" -#: tbl_operations.php:590 +#: tbl_operations.php:588 msgid "Defragment table" msgstr "" -#: tbl_operations.php:629 +#: tbl_operations.php:627 #, php-format msgid "Table %s has been flushed" msgstr "Jadual %s telah dibuangkan" -#: tbl_operations.php:635 +#: tbl_operations.php:633 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Buang jadual (\"FLUSH\")" -#: tbl_operations.php:650 +#: tbl_operations.php:648 #, fuzzy msgid "Partition maintenance" msgstr "Penyenggaraan Jadual" -#: tbl_operations.php:658 +#: tbl_operations.php:656 #, php-format msgid "Partition %s" msgstr "" -#: tbl_operations.php:661 +#: tbl_operations.php:659 msgid "Analyze" msgstr "" -#: tbl_operations.php:662 +#: tbl_operations.php:660 msgid "Check" msgstr "" -#: tbl_operations.php:663 +#: tbl_operations.php:661 msgid "Optimize" msgstr "" -#: tbl_operations.php:664 +#: tbl_operations.php:662 msgid "Rebuild" msgstr "" -#: tbl_operations.php:665 +#: tbl_operations.php:663 #, fuzzy msgid "Repair" msgstr "Baiki jadual" -#: tbl_operations.php:677 +#: tbl_operations.php:675 msgid "Remove partitioning" msgstr "" -#: tbl_operations.php:703 +#: tbl_operations.php:701 msgid "Check referential integrity:" msgstr "Semak integriti rujukan:" -#: tbl_printview.php:73 +#: tbl_printview.php:72 msgid "Show tables" msgstr "Papar jadual" -#: tbl_printview.php:308 tbl_structure.php:655 +#: tbl_printview.php:307 tbl_structure.php:653 msgid "Space usage" msgstr "Penggunaan ruang" -#: tbl_printview.php:312 tbl_structure.php:659 +#: tbl_printview.php:311 tbl_structure.php:657 msgid "Usage" msgstr "Penggunaan" -#: tbl_printview.php:339 tbl_structure.php:686 +#: tbl_printview.php:338 tbl_structure.php:684 msgid "Effective" msgstr "Berkesan" -#: tbl_printview.php:364 tbl_structure.php:724 +#: tbl_printview.php:363 tbl_structure.php:722 msgid "Row Statistics" msgstr "Statistik Baris" -#: tbl_printview.php:367 tbl_structure.php:727 +#: tbl_printview.php:366 tbl_structure.php:725 msgid "Statements" msgstr "Penyataan" -#: tbl_printview.php:378 tbl_structure.php:739 +#: tbl_printview.php:377 tbl_structure.php:737 msgid "static" msgstr "" -#: tbl_printview.php:380 tbl_structure.php:741 +#: tbl_printview.php:379 tbl_structure.php:739 msgid "dynamic" msgstr "dinamik" -#: tbl_printview.php:402 tbl_structure.php:784 +#: tbl_printview.php:401 tbl_structure.php:782 msgid "Row length" msgstr "Panjang baris" -#: tbl_printview.php:412 tbl_structure.php:792 +#: tbl_printview.php:411 tbl_structure.php:790 msgid " Row size " msgstr " Saiz baris " -#: tbl_relation.php:278 +#: tbl_relation.php:276 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" -#: tbl_relation.php:404 +#: tbl_relation.php:402 #, fuzzy msgid "Internal relation" msgstr "Ciri-ciri hubungan am" -#: tbl_relation.php:406 +#: tbl_relation.php:404 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: tbl_relation.php:412 +#: tbl_relation.php:410 msgid "Foreign key constraint" msgstr "" @@ -7767,232 +7820,232 @@ msgstr "" msgid "No rows selected" msgstr "" -#: tbl_select.php:130 +#: tbl_select.php:129 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Lakukan \"kueri melalui contoh\" (wilidcard: \"%\")" -#: tbl_select.php:136 +#: tbl_select.php:135 #, fuzzy msgid "Operator" msgstr "Operasi" -#: tbl_select.php:267 +#: tbl_select.php:266 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "Pilih medan (sekurang-kurangnya satu):" -#: tbl_select.php:285 +#: tbl_select.php:284 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Tambah kriteria carian (badan bagi klausa \"where\"):" -#: tbl_select.php:292 +#: tbl_select.php:291 msgid "Number of rows per page" msgstr "Bilangan baris per halaman" -#: tbl_select.php:298 +#: tbl_select.php:297 msgid "Display order:" msgstr "Turutan paparan:" -#: tbl_structure.php:160 +#: tbl_structure.php:159 msgid "Browse distinct values" msgstr "" -#: tbl_structure.php:360 +#: tbl_structure.php:358 #, fuzzy #| msgid "None" msgctxt "None for default" msgid "None" msgstr "Tiada" -#: tbl_structure.php:373 +#: tbl_structure.php:371 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Column %s has been dropped" msgstr "Jadual %s telah digugurkan" -#: tbl_structure.php:384 +#: tbl_structure.php:382 #, php-format msgid "A primary key has been added on %s" msgstr "Kekunci utama telah ditambah pada %s" -#: tbl_structure.php:399 tbl_structure.php:413 tbl_structure.php:427 +#: tbl_structure.php:397 tbl_structure.php:411 tbl_structure.php:425 #, php-format msgid "An index has been added on %s" msgstr "Indeks telah ditambah pada %s" -#: tbl_structure.php:505 tbl_structure.php:507 +#: tbl_structure.php:503 tbl_structure.php:505 msgid "Relation view" msgstr "Paparan Hubungan" -#: tbl_structure.php:514 tbl_structure.php:516 +#: tbl_structure.php:512 tbl_structure.php:514 msgid "Propose table structure" msgstr "Cadangkan struktur jadual" -#: tbl_structure.php:539 +#: tbl_structure.php:537 #, fuzzy msgid "Add column" msgstr "Tambah medan baru" -#: tbl_structure.php:553 +#: tbl_structure.php:551 msgid "At End of Table" msgstr "Pada Akhir Jadual" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At Beginning of Table" msgstr "Pada Awalan Jadual" -#: tbl_structure.php:555 +#: tbl_structure.php:553 #, php-format msgid "After %s" msgstr "Selepas %s" -#: tbl_structure.php:593 +#: tbl_structure.php:591 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "Cipta indeks pada  %s " -#: tbl_structure.php:755 +#: tbl_structure.php:753 msgid "partitioned" msgstr "" -#: tbl_tracking.php:113 +#: tbl_tracking.php:109 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:186 +#: tbl_tracking.php:182 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "" -#: tbl_tracking.php:194 +#: tbl_tracking.php:190 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "" -#: tbl_tracking.php:202 +#: tbl_tracking.php:198 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "" -#: tbl_tracking.php:212 +#: tbl_tracking.php:208 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:219 +#: tbl_tracking.php:215 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:220 +#: tbl_tracking.php:216 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:229 +#: tbl_tracking.php:225 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:250 tbl_tracking.php:378 +#: tbl_tracking.php:245 tbl_tracking.php:373 msgid "Close" msgstr "" -#: tbl_tracking.php:261 +#: tbl_tracking.php:256 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:380 +#: tbl_tracking.php:375 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:396 tbl_tracking.php:503 +#: tbl_tracking.php:391 tbl_tracking.php:498 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "" -#: tbl_tracking.php:409 tbl_tracking.php:460 +#: tbl_tracking.php:404 tbl_tracking.php:455 #, fuzzy msgid "Date" msgstr "Data" -#: tbl_tracking.php:410 tbl_tracking.php:461 +#: tbl_tracking.php:405 tbl_tracking.php:456 #, fuzzy msgid "Username" msgstr "Namapengguna:" -#: tbl_tracking.php:411 +#: tbl_tracking.php:406 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:462 +#: tbl_tracking.php:457 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:506 +#: tbl_tracking.php:501 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:507 +#: tbl_tracking.php:502 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:520 +#: tbl_tracking.php:515 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:560 +#: tbl_tracking.php:555 msgid "Show versions" msgstr "" -#: tbl_tracking.php:592 +#: tbl_tracking.php:587 #, fuzzy msgid "Version" msgstr "Versi PHP" -#: tbl_tracking.php:639 +#: tbl_tracking.php:634 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "" -#: tbl_tracking.php:641 +#: tbl_tracking.php:636 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:652 +#: tbl_tracking.php:647 #, php-format msgid "Activate tracking for %s.%s" msgstr "" -#: tbl_tracking.php:654 +#: tbl_tracking.php:649 msgid "Activate now" msgstr "" -#: tbl_tracking.php:667 +#: tbl_tracking.php:662 #, php-format msgid "Create version %s of %s.%s" msgstr "" -#: tbl_tracking.php:671 +#: tbl_tracking.php:666 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:679 +#: tbl_tracking.php:674 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:687 +#: tbl_tracking.php:682 #, fuzzy msgid "Create version" msgstr "Versi Pelayan" @@ -8039,11 +8092,36 @@ msgstr "Profil telah dikemaskini." msgid "VIEW name" msgstr "" -#: view_operations.php:92 +#: view_operations.php:91 #, fuzzy msgid "Rename view to" msgstr "Tukarnama jadual ke" +#, fuzzy +#~| msgid "Enabled" +#~ msgctxt "BLOB repository" +#~ msgid "Enabled" +#~ msgstr "Membenarkan" + +#, fuzzy +#~ msgid "Disable" +#~ msgstr "Tidak Membenarkan" + +#, fuzzy +#~ msgctxt "BLOB repository" +#~ msgid "Repair" +#~ msgstr "Baiki jadual" + +#, fuzzy +#~| msgid "Disabled" +#~ msgctxt "BLOB repository" +#~ msgid "Disabled" +#~ msgstr "Tidak Membenarkan" + +#, fuzzy +#~ msgid "Enable" +#~ msgstr "Membenarkan" + #~ msgid "" #~ "Couldn't load the iconv or recode extension needed for charset " #~ "conversion. Either configure PHP to enable these extensions or disable " diff --git a/po/nb.po b/po/nb.po index ed94794b8..dcce807cc 100644 --- a/po/nb.po +++ b/po/nb.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-21 13:53+0200\n" +"POT-Creation-Date: 2010-07-26 17:18+0200\n" "PO-Revision-Date: 2010-07-22 08:43+0200\n" "Last-Translator: \n" "Language-Team: norwegian \n" @@ -14,19 +14,19 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.1\n" -#: browse_foreigners.php:37 browse_foreigners.php:58 -#: libraries/display_tbl.lib.php:416 server_privileges.php:1506 +#: browse_foreigners.php:36 browse_foreigners.php:57 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1510 msgid "Show all" msgstr "Vis alle" -#: browse_foreigners.php:81 libraries/common.lib.php:2313 -#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:393 -#: libraries/export/pdf.php:146 pdf_schema.php:282 pdf_schema.php:1122 -#: pdf_schema.php:1138 +#: browse_foreigners.php:80 libraries/common.lib.php:2318 +#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:392 +#: libraries/export/pdf.php:146 pdf_schema.php:281 pdf_schema.php:1121 +#: pdf_schema.php:1137 msgid "Page number:" msgstr "Sidenummer:" -#: browse_foreigners.php:131 +#: browse_foreigners.php:130 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -35,137 +35,151 @@ msgstr "" "Målvinduet kunne ikke oppdateres. Muligens du har lukket modervinduet eller " "din nettleser blokkerer vindu-til-vindu oppdateringer av sikkerhetsårsaker." -#: browse_foreigners.php:149 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2829 -#: libraries/common.lib.php:2836 libraries/db_links.inc.php:74 -#: libraries/tbl_links.inc.php:62 +#: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 +#: db_structure.php:89 db_structure.php:91 db_structure.php:102 +#: db_structure.php:104 libraries/common.lib.php:2834 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Søk" -#: browse_foreigners.php:152 db_operations.php:384 db_operations.php:428 -#: db_operations.php:498 db_operations.php:608 db_search.php:344 -#: db_structure.php:566 js/messages.php:48 libraries/Config.class.php:1043 -#: libraries/Theme_Manager.class.php:310 +#: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 +#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 +#: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 -#: libraries/common.lib.php:1340 libraries/common.lib.php:2289 +#: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 -#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:275 -#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:531 -#: libraries/display_tbl.lib.php:613 libraries/replication_gui.lib.php:75 +#: libraries/display_export.lib.php:269 libraries/display_import.lib.php:275 +#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 +#: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 #: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:781 -#: main.php:127 navigation.php:231 pdf_pages.php:291 pdf_pages.php:327 -#: pdf_pages.php:529 pmd_pdf.php:115 server_binlog.php:128 -#: server_privileges.php:664 server_privileges.php:1616 -#: server_privileges.php:1963 server_privileges.php:2010 -#: server_privileges.php:2049 server_replication.php:234 -#: server_replication.php:317 server_replication.php:340 -#: server_synchronize.php:1208 tbl_change.php:328 tbl_change.php:1172 -#: tbl_change.php:1209 tbl_indexes.php:253 tbl_operations.php:264 -#: tbl_operations.php:301 tbl_operations.php:498 tbl_operations.php:560 -#: tbl_operations.php:680 tbl_select.php:324 tbl_structure.php:561 -#: tbl_structure.php:596 tbl_tracking.php:394 tbl_tracking.php:511 -#: view_create.php:181 view_operations.php:100 +#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 +#: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 +#: server_privileges.php:663 server_privileges.php:1620 +#: server_privileges.php:1967 server_privileges.php:2014 +#: server_privileges.php:2053 server_replication.php:233 +#: server_replication.php:316 server_replication.php:339 +#: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 +#: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 +#: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 +#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "Utfør" -#: browse_foreigners.php:167 browse_foreigners.php:171 -#: libraries/Index.class.php:441 tbl_tracking.php:319 +#: browse_foreigners.php:166 browse_foreigners.php:170 +#: libraries/Index.class.php:441 tbl_tracking.php:314 msgid "Keyname" msgstr "Nøkkel" -#: browse_foreigners.php:168 browse_foreigners.php:170 -#: server_collations.php:54 server_collations.php:66 server_engines.php:58 +#: browse_foreigners.php:167 browse_foreigners.php:169 +#: server_collations.php:54 server_collations.php:66 server_engines.php:57 #: server_status.php:738 msgid "Description" msgstr "Beskrivelse" -#: browse_foreigners.php:246 browse_foreigners.php:255 -#: browse_foreigners.php:267 browse_foreigners.php:275 +#: browse_foreigners.php:245 browse_foreigners.php:254 +#: browse_foreigners.php:266 browse_foreigners.php:274 msgid "Use this value" msgstr "Bruk denne verdien" -#: db_create.php:45 +#: bs_disp_as_mime_type.php:29 bs_play_media.php:35 +msgid "No blob streaming server configured!" +msgstr "" + +#: bs_disp_as_mime_type.php:35 +#, fuzzy +#| msgid "Failed to write file to disk." +msgid "Failed to fetch headers" +msgstr "Klarte ikke å skrive fila til harddisken." + +#: bs_disp_as_mime_type.php:41 +msgid "Failed to open remote URL" +msgstr "" + +#: db_create.php:44 #, php-format msgid "Database %1$s has been created." msgstr "Databasen %1$s har blitt opprettet." -#: db_datadict.php:48 db_operations.php:377 +#: db_datadict.php:48 db_operations.php:313 msgid "Database comment: " msgstr "Database kommentar: " -#: db_datadict.php:164 libraries/tbl_properties.inc.php:723 -#: pdf_schema.php:1235 tbl_operations.php:346 tbl_printview.php:128 +#: db_datadict.php:164 libraries/tbl_properties.inc.php:722 +#: pdf_schema.php:1234 tbl_operations.php:344 tbl_printview.php:127 msgid "Table comments" msgstr "Tabellkommentarer" -#: db_datadict.php:173 db_qbe.php:173 libraries/Index.class.php:445 +#: db_datadict.php:173 db_qbe.php:170 libraries/Index.class.php:445 #: libraries/export/htmlword.php:243 libraries/export/latex.php:364 #: libraries/export/odt.php:293 libraries/export/texytext.php:233 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:274 -#: pdf_schema.php:1261 pdf_schema.php:1282 tbl_change.php:306 -#: tbl_indexes.php:188 tbl_printview.php:140 tbl_relation.php:401 -#: tbl_select.php:133 tbl_structure.php:176 tbl_tracking.php:272 -#: tbl_tracking.php:323 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 +#: pdf_schema.php:1260 pdf_schema.php:1281 tbl_change.php:301 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:132 tbl_structure.php:175 tbl_tracking.php:267 +#: tbl_tracking.php:318 msgid "Column" msgstr "Kolonne" -#: db_datadict.php:174 db_printview.php:105 libraries/Index.class.php:442 +#: db_datadict.php:174 db_printview.php:104 libraries/Index.class.php:442 #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 #: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:244 #: libraries/export/latex.php:364 libraries/export/odt.php:296 #: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:99 -#: pdf_schema.php:1262 pdf_schema.php:1283 server_privileges.php:2062 -#: tbl_change.php:285 tbl_change.php:312 tbl_printview.php:141 -#: tbl_printview.php:311 tbl_select.php:134 tbl_structure.php:177 -#: tbl_structure.php:658 tbl_tracking.php:273 tbl_tracking.php:320 +#: pdf_schema.php:1261 pdf_schema.php:1282 server_privileges.php:2066 +#: tbl_change.php:280 tbl_change.php:307 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:133 tbl_structure.php:176 +#: tbl_structure.php:656 tbl_tracking.php:268 tbl_tracking.php:315 msgid "Type" msgstr "Type" #: db_datadict.php:176 libraries/Index.class.php:448 #: libraries/export/htmlword.php:245 libraries/export/latex.php:364 #: libraries/export/odt.php:299 libraries/export/texytext.php:235 -#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1264 -#: pdf_schema.php:1285 tbl_change.php:321 tbl_printview.php:143 -#: tbl_structure.php:180 tbl_tracking.php:275 tbl_tracking.php:326 +#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1263 +#: pdf_schema.php:1284 tbl_change.php:316 tbl_printview.php:142 +#: tbl_structure.php:179 tbl_tracking.php:270 tbl_tracking.php:321 msgid "Null" msgstr "Null" -#: db_datadict.php:177 db_structure.php:500 libraries/export/htmlword.php:246 +#: db_datadict.php:177 db_structure.php:486 libraries/export/htmlword.php:246 #: libraries/export/latex.php:364 libraries/export/odt.php:302 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:105 -#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 -#: tbl_structure.php:181 tbl_tracking.php:276 +#: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:143 +#: tbl_structure.php:180 tbl_tracking.php:271 msgid "Default" msgstr "Standard" #: db_datadict.php:181 libraries/export/htmlword.php:248 #: libraries/export/latex.php:366 libraries/export/odt.php:306 -#: libraries/export/texytext.php:238 pdf_schema.php:1267 pdf_schema.php:1288 -#: tbl_printview.php:148 +#: libraries/export/texytext.php:238 pdf_schema.php:1266 pdf_schema.php:1287 +#: tbl_printview.php:147 msgid "Links to" msgstr "Linker til" -#: db_datadict.php:183 db_printview.php:111 libraries/export/htmlword.php:251 +#: db_datadict.php:183 db_printview.php:110 libraries/export/htmlword.php:251 #: libraries/export/latex.php:49 libraries/export/latex.php:369 #: libraries/export/odt.php:37 libraries/export/odt.php:311 #: libraries/export/sql.php:29 libraries/export/texytext.php:241 -#: libraries/tbl_properties.inc.php:129 pdf_schema.php:1278 -#: pdf_schema.php:1289 tbl_printview.php:150 +#: libraries/tbl_properties.inc.php:128 pdf_schema.php:1277 +#: pdf_schema.php:1288 tbl_printview.php:149 msgid "Comments" msgstr "Kommentarer" #: db_datadict.php:266 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/export/htmlword.php:321 #: libraries/export/latex.php:434 libraries/export/odt.php:367 -#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:262 -#: pdf_schema.php:1343 server_privileges.php:1560 server_privileges.php:1571 -#: server_privileges.php:1881 server_privileges.php:1886 -#: server_privileges.php:2179 sql.php:131 sql.php:193 tbl_printview.php:227 -#: tbl_structure.php:349 tbl_tracking.php:336 tbl_tracking.php:341 +#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:261 +#: pdf_schema.php:1342 server_privileges.php:1564 server_privileges.php:1575 +#: server_privileges.php:1885 server_privileges.php:1890 +#: server_privileges.php:2183 sql.php:130 sql.php:192 tbl_printview.php:226 +#: tbl_structure.php:347 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "Nei" @@ -176,17 +190,17 @@ msgstr "Nei" #: libraries/mult_submits.inc.php:49 libraries/mult_submits.inc.php:54 #: libraries/mult_submits.inc.php:59 libraries/mult_submits.inc.php:91 #: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:105 -#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:261 -#: libraries/mult_submits.inc.php:272 pdf_schema.php:1343 -#: server_databases.php:63 server_privileges.php:1557 -#: server_privileges.php:1571 server_privileges.php:1881 -#: server_privileges.php:1884 server_privileges.php:2179 sql.php:192 -#: tbl_printview.php:227 tbl_structure.php:39 tbl_structure.php:349 -#: tbl_tracking.php:334 tbl_tracking.php:339 +#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:260 +#: libraries/mult_submits.inc.php:271 pdf_schema.php:1342 +#: server_databases.php:61 server_privileges.php:1561 +#: server_privileges.php:1575 server_privileges.php:1885 +#: server_privileges.php:1888 server_privileges.php:2183 sql.php:191 +#: tbl_printview.php:226 tbl_structure.php:38 tbl_structure.php:347 +#: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" msgstr "Ja" -#: db_datadict.php:321 db_printview.php:265 tbl_printview.php:496 +#: db_datadict.php:321 db_printview.php:264 tbl_printview.php:495 msgid "Print" msgstr "Skriv ut" @@ -194,278 +208,244 @@ msgstr "Skriv ut" msgid "View dump (schema) of database" msgstr "Vis dump (skjema) av database" -#: db_export.php:32 db_printview.php:95 db_qbe.php:101 db_structure.php:50 -#: db_tracking.php:34 export.php:352 navigation.php:326 +#: db_export.php:32 db_printview.php:94 db_qbe.php:98 db_structure.php:49 +#: db_tracking.php:30 export.php:350 navigation.php:325 msgid "No tables found in database." msgstr "Ingen tabeller i databasen." -#: db_export.php:42 db_search.php:326 server_export.php:26 +#: db_export.php:42 db_search.php:326 server_export.php:24 msgid "Select All" msgstr "Velg alle" -#: db_export.php:44 db_search.php:329 server_export.php:28 +#: db_export.php:44 db_search.php:329 server_export.php:26 msgid "Unselect All" msgstr "Fjern alle valgte" -#: db_operations.php:37 tbl_create.php:49 +#: db_operations.php:33 tbl_create.php:47 msgid "The database name is empty!" msgstr "Databasen er uten navn!" -#: db_operations.php:235 +#: db_operations.php:231 #, php-format msgid "Database %s has been renamed to %s" msgstr "Databasen %s har endret navn til %s" -#: db_operations.php:239 +#: db_operations.php:235 #, php-format msgid "Database %s has been copied to %s" msgstr "Databasen %s har blitt kopiert til %s" -#: db_operations.php:411 +#: db_operations.php:347 msgid "Rename database to" msgstr "Endre databasens navn til" -#: db_operations.php:416 server_processlist.php:56 +#: db_operations.php:352 server_processlist.php:56 msgid "Command" msgstr "Kommando" -#: db_operations.php:428 tbl_change.php:1141 +#: db_operations.php:364 tbl_change.php:1039 msgid "and then" msgstr "og så" -#: db_operations.php:454 +#: db_operations.php:390 msgid "Copy database to" msgstr "Kopier databasen til" -#: db_operations.php:461 tbl_operations.php:527 tbl_tracking.php:387 +#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Kun struktur" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:389 +#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Struktur og data" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:388 +#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Bare data" -#: db_operations.php:471 +#: db_operations.php:407 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE før kopiering" -#: db_operations.php:474 libraries/export/sql.php:51 +#: db_operations.php:410 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 -#: libraries/export/sql.php:81 tbl_operations.php:535 +#: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "Legg til %s" -#: db_operations.php:478 libraries/export/sql.php:77 tbl_operations.php:298 -#: tbl_operations.php:537 +#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Legg til AUTO_INCREMENT verdi" -#: db_operations.php:482 tbl_operations.php:544 +#: db_operations.php:418 tbl_operations.php:542 msgid "Add constraints" msgstr "Legg til begrensninger" -#: db_operations.php:495 +#: db_operations.php:431 msgid "Switch to copied database" msgstr "Bytt til kopiert database" -#: db_operations.php:536 -msgid "BLOB Repository" -msgstr "BLOB lager" - -#: db_operations.php:539 db_tracking.php:75 libraries/common.lib.php:1357 -#: libraries/server_links.inc.php:48 server_processlist.php:58 -#: tbl_tracking.php:595 test/theme.php:100 -msgid "Status" -msgstr "Status" - -#: db_operations.php:547 -msgctxt "BLOB repository" -msgid "Enabled" -msgstr "Påslått" - -#: db_operations.php:551 -msgid "Disable" -msgstr "Avslå" - -#: db_operations.php:561 -msgid "Damaged" -msgstr "Skadet" - -#: db_operations.php:565 -msgctxt "BLOB repository" -msgid "Repair" -msgstr "Reparer" - -#: db_operations.php:573 -msgctxt "BLOB repository" -msgid "Disabled" -msgstr "Avslått" - -#: db_operations.php:577 -msgid "Enable" -msgstr "Slå på" - -#: db_operations.php:601 libraries/Index.class.php:447 +#: db_operations.php:451 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 -#: server_collations.php:53 server_collations.php:65 server_databases.php:110 -#: tbl_operations.php:362 tbl_select.php:135 tbl_structure.php:178 -#: tbl_structure.php:766 tbl_tracking.php:274 tbl_tracking.php:325 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 +#: server_collations.php:53 server_collations.php:65 server_databases.php:108 +#: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:177 +#: tbl_structure.php:764 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "Sammenligning" -#: db_operations.php:614 main.php:315 pdf_schema.php:33 -#, php-format +#: db_operations.php:464 pdf_schema.php:32 +#, fuzzy, php-format +#| msgid "" +#| "The additional features for working with linked tables have been " +#| "deactivated. To find out why click %shere%s." msgid "" -"The additional features for working with linked tables have been " -"deactivated. To find out why click %shere%s." +"The phpMyAdmin configuration storage has been deactivated. To find out why " +"click %shere%s." msgstr "" "Tilleggsfunksjonene for å kunne jobbe med koblede tabeller er deaktivert. " "For å finne ut hvorfor, klikk %sher%s." -#: db_operations.php:647 +#: db_operations.php:497 msgid "Edit PDF Pages" msgstr "Rediger PDF-sider" -#: db_printview.php:103 db_tracking.php:71 db_tracking.php:156 +#: db_printview.php:102 db_tracking.php:67 db_tracking.php:152 #: libraries/db_structure.lib.php:37 libraries/export/xml.php:327 -#: libraries/header.inc.php:125 pdf_pages.php:423 server_privileges.php:1657 -#: server_privileges.php:1713 server_privileges.php:1977 -#: server_synchronize.php:422 server_synchronize.php:865 tbl_tracking.php:591 +#: libraries/header.inc.php:125 pdf_pages.php:422 server_privileges.php:1661 +#: server_privileges.php:1717 server_privileges.php:1981 +#: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "Tabell" -#: db_printview.php:104 libraries/db_structure.lib.php:47 +#: db_printview.php:103 libraries/db_structure.lib.php:47 #: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 -#: navigation.php:629 navigation.php:651 server_databases.php:121 -#: tbl_printview.php:392 tbl_structure.php:364 tbl_structure.php:776 +#: navigation.php:628 navigation.php:650 server_databases.php:119 +#: tbl_printview.php:391 tbl_structure.php:362 tbl_structure.php:774 msgid "Rows" msgstr "Rader" -#: db_printview.php:108 libraries/db_structure.lib.php:58 tbl_indexes.php:189 +#: db_printview.php:107 libraries/db_structure.lib.php:58 tbl_indexes.php:188 msgid "Size" msgstr "Størrelse" -#: db_printview.php:161 db_structure.php:456 libraries/export/sql.php:556 +#: db_printview.php:160 db_structure.php:442 libraries/export/sql.php:556 #: libraries/export/sql.php:896 msgid "in use" msgstr "i bruk" -#: db_printview.php:186 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:511 pdf_schema.php:1240 tbl_printview.php:432 -#: tbl_structure.php:808 +#: db_printview.php:185 libraries/db_info.inc.php:86 +#: libraries/export/sql.php:511 pdf_schema.php:1239 tbl_printview.php:431 +#: tbl_structure.php:806 msgid "Creation" msgstr "Opprettet" -#: db_printview.php:195 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:516 pdf_schema.php:1245 tbl_printview.php:442 -#: tbl_structure.php:816 +#: db_printview.php:194 libraries/db_info.inc.php:91 +#: libraries/export/sql.php:516 pdf_schema.php:1244 tbl_printview.php:441 +#: tbl_structure.php:814 msgid "Last update" msgstr "Sist oppdatert" -#: db_printview.php:204 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:521 pdf_schema.php:1250 tbl_printview.php:452 -#: tbl_structure.php:824 +#: db_printview.php:203 libraries/db_info.inc.php:96 +#: libraries/export/sql.php:521 pdf_schema.php:1249 tbl_printview.php:451 +#: tbl_structure.php:822 msgid "Last check" msgstr "Sist kontrollert" -#: db_printview.php:221 db_structure.php:479 +#: db_printview.php:220 db_structure.php:465 #, php-format msgid "%s table" msgid_plural "%s tables" msgstr[0] "%s tabell" msgstr[1] "%s tabeller" -#: db_qbe.php:28 import.php:453 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1980 libraries/sql_query_form.lib.php:138 -#: tbl_operations.php:212 tbl_relation.php:291 tbl_row_action.php:130 -#: view_operations.php:61 +#: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 +#: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "Kommandoen/spørringen er utført" -#: db_qbe.php:41 +#: db_qbe.php:38 msgid "You have to choose at least one column to display" msgstr "Du må velge minst en kolonne for visning" -#: db_qbe.php:199 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:865 +#: db_qbe.php:196 libraries/db_structure.lib.php:95 +#: libraries/display_tbl.lib.php:864 msgid "Sort" msgstr "Sorter" -#: db_qbe.php:208 db_qbe.php:242 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:522 libraries/display_tbl.lib.php:827 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:259 -#: tbl_select.php:311 +#: db_qbe.php:205 db_qbe.php:239 libraries/db_structure.lib.php:102 +#: libraries/display_tbl.lib.php:521 libraries/display_tbl.lib.php:826 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:257 +#: tbl_select.php:310 msgid "Ascending" msgstr "Stigende" -#: db_qbe.php:209 db_qbe.php:250 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:527 libraries/display_tbl.lib.php:824 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:260 -#: tbl_select.php:312 +#: db_qbe.php:206 db_qbe.php:247 libraries/db_structure.lib.php:110 +#: libraries/display_tbl.lib.php:526 libraries/display_tbl.lib.php:823 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:258 +#: tbl_select.php:311 msgid "Descending" msgstr "Synkende" -#: db_qbe.php:263 db_tracking.php:77 libraries/display_tbl.lib.php:307 -#: tbl_change.php:275 tbl_tracking.php:596 +#: db_qbe.php:260 db_tracking.php:73 libraries/display_tbl.lib.php:306 +#: tbl_change.php:270 tbl_tracking.php:591 msgid "Show" msgstr "Vis" -#: db_qbe.php:299 +#: db_qbe.php:296 msgid "Criteria" msgstr "Kriterier" -#: db_qbe.php:352 db_qbe.php:434 db_qbe.php:526 db_qbe.php:557 +#: db_qbe.php:349 db_qbe.php:431 db_qbe.php:523 db_qbe.php:554 msgid "Ins" msgstr "Sett inn" -#: db_qbe.php:356 db_qbe.php:438 db_qbe.php:523 db_qbe.php:554 +#: db_qbe.php:353 db_qbe.php:435 db_qbe.php:520 db_qbe.php:551 msgid "And" msgstr "og" -#: db_qbe.php:365 db_qbe.php:446 db_qbe.php:528 db_qbe.php:559 +#: db_qbe.php:362 db_qbe.php:443 db_qbe.php:525 db_qbe.php:556 msgid "Del" msgstr "Slett" -#: db_qbe.php:369 db_qbe.php:450 db_qbe.php:521 db_qbe.php:552 -#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:778 -#: server_privileges.php:297 tbl_change.php:1027 tbl_indexes.php:249 -#: tbl_select.php:285 +#: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 +#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:777 +#: server_privileges.php:296 tbl_change.php:925 tbl_indexes.php:248 +#: tbl_select.php:284 msgid "Or" msgstr "Eller" -#: db_qbe.php:506 +#: db_qbe.php:503 msgid "Modify" msgstr "Endre" -#: db_qbe.php:583 +#: db_qbe.php:580 msgid "Add/Delete criteria rows" msgstr "Legg til/Slett kriterierad" -#: db_qbe.php:595 +#: db_qbe.php:592 msgid "Add/Delete columns" msgstr "Legg til/Slett kolonner" -#: db_qbe.php:608 db_qbe.php:633 +#: db_qbe.php:605 db_qbe.php:630 msgid "Update Query" msgstr "Oppdater spørring" -#: db_qbe.php:616 +#: db_qbe.php:613 msgid "Use Tables" msgstr "Bruk tabeller" -#: db_qbe.php:639 +#: db_qbe.php:636 #, php-format msgid "SQL query on database %s:" msgstr "SQL-spørring i database %s:" -#: db_qbe.php:933 libraries/common.lib.php:1222 +#: db_qbe.php:930 libraries/common.lib.php:1215 msgid "Submit Query" msgstr "Kjør spørring" @@ -499,23 +479,22 @@ msgstr "Søkeresultat for \"%s\" %s:" #: db_search.php:242 #, php-format -#| msgid "%s match(es) inside table %s" msgid "%s match inside table %s" msgid_plural "%s matches inside table %s" msgstr[0] "%s treff i tabell %s" msgstr[1] "%s treff i tabell %s" -#: db_search.php:249 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2831 -#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:49 -#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:466 +#: db_search.php:249 db_structure.php:75 db_structure.php:76 +#: db_structure.php:88 db_structure.php:90 db_structure.php:101 +#: db_structure.php:103 libraries/common.lib.php:2836 +#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 +#: tbl_structure.php:35 tbl_structure.php:47 tbl_structure.php:464 msgid "Browse" msgstr "Se på" -#: db_search.php:254 libraries/display_tbl.lib.php:1164 -#: libraries/display_tbl.lib.php:2055 libraries/sql_query_form.lib.php:453 -#: pdf_pages.php:285 pdf_pages.php:424 pdf_pages.php:460 pdf_pages.php:488 +#: db_search.php:254 libraries/display_tbl.lib.php:1163 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 msgid "Delete" @@ -523,7 +502,6 @@ msgstr "Slett" #: db_search.php:267 #, php-format -#| msgid "Total: %s match(es)" msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "Totalt: %s treff" @@ -553,226 +531,232 @@ msgstr "I tabell(ene):" msgid "Inside column:" msgstr "I kolonne:" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2830 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:75 +#: db_structure.php:79 db_structure.php:80 db_structure.php:92 +#: db_structure.php:93 db_structure.php:105 db_structure.php:106 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 +#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Sett inn" -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2827 libraries/common.lib.php:2834 -#: libraries/db_links.inc.php:62 libraries/export/htmlword.php:22 +#: db_structure.php:81 db_structure.php:94 db_structure.php:107 +#: libraries/common.lib.php:2832 libraries/common.lib.php:2839 +#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 -#: libraries/tbl_links.inc.php:55 pmd_general.php:133 -#: server_privileges.php:593 server_replication.php:314 tbl_tracking.php:268 +#: libraries/tbl_links.inc.php:54 pmd_general.php:133 +#: server_privileges.php:592 server_replication.php:313 tbl_tracking.php:263 msgid "Structure" msgstr "Struktur" -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:544 db_structure.php:545 db_tracking.php:90 -#: libraries/Index.class.php:482 libraries/common.lib.php:1659 -#: libraries/db_links.inc.php:99 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:126 -#: server_databases.php:351 tbl_structure.php:26 tbl_structure.php:150 -#: tbl_structure.php:151 tbl_structure.php:470 +#: db_structure.php:82 db_structure.php:83 db_structure.php:95 +#: db_structure.php:96 db_structure.php:108 db_structure.php:109 +#: db_structure.php:530 db_structure.php:531 db_tracking.php:86 +#: libraries/Index.class.php:482 libraries/common.lib.php:1663 +#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 +#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 +#: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" msgstr "Slett" -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:542 db_structure.php:543 libraries/common.lib.php:1658 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:104 +#: db_structure.php:84 db_structure.php:85 db_structure.php:97 +#: db_structure.php:98 db_structure.php:110 db_structure.php:111 +#: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 +#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 msgid "Empty" msgstr "Tøm" -#: db_structure.php:315 libraries/tbl_links.inc.php:99 +#: db_structure.php:301 libraries/tbl_links.inc.php:98 #, php-format msgid "Table %s has been emptied" msgstr "Tabellen %s har blitt tømt" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "View %s has been dropped" msgstr "Visningen %s har blitt slettet" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "Table %s has been dropped" msgstr "Tabellen %s har blitt slettet" -#: db_structure.php:332 +#: db_structure.php:318 msgid "Tracking is active." msgstr "Overvåkning er aktiv." -#: db_structure.php:334 +#: db_structure.php:320 msgid "Tracking is not active." msgstr "Overvåkning er ikke aktiv." -#: db_structure.php:419 libraries/display_tbl.lib.php:1943 +#: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "Denne visningen har minst dette antall rader. Sjekk %sdocumentation%s." -#: db_structure.php:433 db_structure.php:447 libraries/header.inc.php:125 -#: libraries/tbl_info.inc.php:65 tbl_structure.php:184 test/theme.php:73 +#: db_structure.php:419 db_structure.php:433 libraries/header.inc.php:125 +#: libraries/tbl_info.inc.php:60 tbl_structure.php:183 test/theme.php:73 msgid "View" msgstr "Vis" -#: db_structure.php:484 libraries/db_structure.lib.php:40 -#: libraries/server_links.inc.php:69 server_replication.php:32 -#: server_replication.php:163 server_status.php:368 +#: db_structure.php:470 libraries/db_structure.lib.php:40 +#: libraries/server_links.inc.php:69 server_replication.php:31 +#: server_replication.php:162 server_status.php:368 msgid "Replication" msgstr "Replikering" -#: db_structure.php:488 +#: db_structure.php:474 msgid "Sum" msgstr "Sum" -#: db_structure.php:495 libraries/StorageEngine.class.php:349 +#: db_structure.php:481 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s er standard lagringsmotor for denne MySQL tjeneren." -#: db_structure.php:523 db_structure.php:540 db_structure.php:541 -#: libraries/display_tbl.lib.php:2080 libraries/display_tbl.lib.php:2085 -#: libraries/mult_submits.inc.php:15 server_databases.php:345 -#: server_databases.php:350 server_privileges.php:1588 tbl_structure.php:454 -#: tbl_structure.php:463 +#: db_structure.php:509 db_structure.php:526 db_structure.php:527 +#: libraries/display_tbl.lib.php:2039 libraries/display_tbl.lib.php:2044 +#: libraries/mult_submits.inc.php:15 server_databases.php:343 +#: server_databases.php:348 server_privileges.php:1592 tbl_structure.php:452 +#: tbl_structure.php:461 msgid "With selected:" msgstr "Med avkrysset:" -#: db_structure.php:526 libraries/display_tbl.lib.php:2075 -#: server_databases.php:347 server_privileges.php:569 -#: server_privileges.php:1591 tbl_structure.php:457 +#: db_structure.php:512 libraries/display_tbl.lib.php:2034 +#: server_databases.php:345 server_privileges.php:568 +#: server_privileges.php:1595 tbl_structure.php:455 msgid "Check All" msgstr "Merk alle" -#: db_structure.php:530 libraries/display_tbl.lib.php:2076 -#: libraries/replication_gui.lib.php:35 server_databases.php:349 -#: server_privileges.php:572 server_privileges.php:1595 tbl_structure.php:461 +#: db_structure.php:516 libraries/display_tbl.lib.php:2035 +#: libraries/replication_gui.lib.php:35 server_databases.php:347 +#: server_privileges.php:571 server_privileges.php:1599 tbl_structure.php:459 msgid "Uncheck All" msgstr "Fjern merking" -#: db_structure.php:535 +#: db_structure.php:521 msgid "Check tables having overhead" msgstr "Merk overheng" -#: db_structure.php:546 db_structure.php:547 db_structure.php:598 -#: libraries/display_tbl.lib.php:2179 libraries/mult_submits.inc.php:27 -#: tbl_structure.php:491 tbl_structure.php:493 +#: db_structure.php:532 db_structure.php:533 db_structure.php:584 +#: libraries/display_tbl.lib.php:2138 libraries/mult_submits.inc.php:27 +#: tbl_structure.php:489 tbl_structure.php:491 msgid "Print view" msgstr "Utskriftsvennlig forhåndsvisning" -#: db_structure.php:548 db_structure.php:549 libraries/mult_submits.inc.php:41 -#: tbl_operations.php:580 +#: db_structure.php:534 db_structure.php:535 libraries/mult_submits.inc.php:41 +#: tbl_operations.php:578 msgid "Check table" msgstr "Kontroller tabell" -#: db_structure.php:550 db_structure.php:551 libraries/mult_submits.inc.php:46 -#: tbl_operations.php:620 tbl_structure.php:708 tbl_structure.php:710 +#: db_structure.php:536 db_structure.php:537 libraries/mult_submits.inc.php:46 +#: tbl_operations.php:618 tbl_structure.php:706 tbl_structure.php:708 msgid "Optimize table" msgstr "Optimiser tabell" -#: db_structure.php:552 db_structure.php:553 libraries/mult_submits.inc.php:51 -#: tbl_operations.php:610 +#: db_structure.php:538 db_structure.php:539 libraries/mult_submits.inc.php:51 +#: tbl_operations.php:608 msgid "Repair table" msgstr "Reparer tabell" -#: db_structure.php:554 db_structure.php:555 libraries/mult_submits.inc.php:56 -#: tbl_operations.php:600 +#: db_structure.php:540 db_structure.php:541 libraries/mult_submits.inc.php:56 +#: tbl_operations.php:598 msgid "Analyze table" msgstr "Analyser tabell" -#: db_structure.php:556 db_structure.php:557 libraries/db_links.inc.php:70 -#: libraries/display_export.lib.php:82 libraries/display_tbl.lib.php:2093 -#: libraries/display_tbl.lib.php:2224 libraries/mult_submits.inc.php:61 -#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:81 -#: pmd_pdf.php:83 pmd_pdf.php:108 server_privileges.php:1372 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 +#: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 +#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 +#: pmd_pdf.php:81 pmd_pdf.php:106 server_privileges.php:1376 #: setup/frames/menu.inc.php:22 tbl_row_action.php:58 msgid "Export" msgstr "Eksporter" -#: db_structure.php:605 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:591 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "Dataordbok" -#: db_tracking.php:65 +#: db_tracking.php:61 msgid "Tracked tables" msgstr "Overvåkede tabeller" -#: db_tracking.php:70 libraries/export/htmlword.php:85 +#: db_tracking.php:66 libraries/export/htmlword.php:85 #: libraries/export/latex.php:152 libraries/export/odt.php:112 #: libraries/export/sql.php:339 libraries/export/texytext.php:84 #: libraries/export/xml.php:254 libraries/header.inc.php:105 -#: libraries/header_printview.inc.php:57 server_databases.php:168 -#: server_privileges.php:1652 server_privileges.php:1713 -#: server_privileges.php:1971 server_processlist.php:55 -#: server_synchronize.php:1178 server_synchronize.php:1182 -#: tbl_tracking.php:590 test/theme.php:64 +#: libraries/header_printview.inc.php:57 server_databases.php:166 +#: server_privileges.php:1656 server_privileges.php:1717 +#: server_privileges.php:1975 server_processlist.php:55 +#: server_synchronize.php:1177 server_synchronize.php:1181 +#: tbl_tracking.php:585 test/theme.php:64 msgid "Database" msgstr "Database" -#: db_tracking.php:72 +#: db_tracking.php:68 msgid "Last version" msgstr "Siste versjon" -#: db_tracking.php:73 tbl_tracking.php:593 +#: db_tracking.php:69 tbl_tracking.php:588 msgid "Created" msgstr "Opprettet" -#: db_tracking.php:74 tbl_tracking.php:594 +#: db_tracking.php:70 tbl_tracking.php:589 msgid "Updated" msgstr "Oppdatert" -#: db_tracking.php:76 libraries/Index.class.php:439 -#: libraries/db_structure.lib.php:44 server_databases.php:202 -#: server_privileges.php:1534 server_privileges.php:1717 -#: server_privileges.php:2065 tbl_structure.php:186 +#: db_tracking.php:71 libraries/common.lib.php:1361 +#: libraries/server_links.inc.php:48 server_processlist.php:58 +#: tbl_tracking.php:590 test/theme.php:100 +msgid "Status" +msgstr "Status" + +#: db_tracking.php:72 libraries/Index.class.php:439 +#: libraries/db_structure.lib.php:44 server_databases.php:200 +#: server_privileges.php:1538 server_privileges.php:1721 +#: server_privileges.php:2069 tbl_structure.php:185 msgid "Action" msgstr "Handling" -#: db_tracking.php:87 db_tracking.php:119 +#: db_tracking.php:83 db_tracking.php:115 msgid "Delete tracking data for this table" msgstr "Slett overvåkningsdata for denne tabellen" -#: db_tracking.php:105 tbl_tracking.php:547 tbl_tracking.php:605 -#: tbl_tracking.php:612 +#: db_tracking.php:101 tbl_tracking.php:542 tbl_tracking.php:600 +#: tbl_tracking.php:607 msgid "active" msgstr "aktiv" -#: db_tracking.php:107 tbl_tracking.php:549 tbl_tracking.php:607 -#: tbl_tracking.php:609 +#: db_tracking.php:103 tbl_tracking.php:544 tbl_tracking.php:602 +#: tbl_tracking.php:604 msgid "not active" msgstr "ikke aktiv" -#: db_tracking.php:120 +#: db_tracking.php:116 msgid "Versions" msgstr "Versjoner" -#: db_tracking.php:121 tbl_tracking.php:378 tbl_tracking.php:623 +#: db_tracking.php:117 tbl_tracking.php:373 tbl_tracking.php:618 msgid "Tracking report" msgstr "Overvåkningsrapport" -#: db_tracking.php:122 tbl_tracking.php:250 tbl_tracking.php:623 +#: db_tracking.php:118 tbl_tracking.php:245 tbl_tracking.php:618 msgid "Structure snapshot" msgstr "Strukturøyeblikksbilde" -#: db_tracking.php:151 +#: db_tracking.php:147 msgid "Untracked tables" msgstr "Ikke overvåkede tabeller" -#: db_tracking.php:171 db_tracking.php:173 tbl_structure.php:527 -#: tbl_structure.php:529 +#: db_tracking.php:167 db_tracking.php:169 tbl_structure.php:525 +#: tbl_structure.php:527 msgid "Track table" msgstr "Overvåk tabell" -#: db_tracking.php:199 +#: db_tracking.php:195 msgid "Database Log" msgstr "Databaselogg" @@ -780,12 +764,12 @@ msgstr "Databaselogg" msgid "Selected export type has to be saved in file!" msgstr "Valgte eksporteringstype krever lagring til ei fil!" -#: export.php:153 export.php:178 export.php:620 +#: export.php:152 export.php:177 export.php:615 #, php-format msgid "Insufficient space to save the file %s." msgstr "Ikke nok plass til å lagre fila %s." -#: export.php:287 +#: export.php:286 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -793,17 +777,17 @@ msgstr "" "Fila %s eksisterer alt på serveren, endre navnet eller merk av for " "overskriving av fil." -#: export.php:291 export.php:295 +#: export.php:290 export.php:294 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Webserveren har ikke tillatelse til å lagre fila %s." -#: export.php:622 +#: export.php:617 #, php-format msgid "Dump has been saved to file %s." msgstr "Dump har blitt lagret til fila %s." -#: import.php:59 +#: import.php:58 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -812,14 +796,14 @@ msgstr "" "Du forsøkte sansynligvis å laste opp en for stor fil. Sjekk %sdokumentasjonen" "%s for måter å omgå denne begrensningen." -#: import.php:278 import.php:331 libraries/File.class.php:840 -#: libraries/File.class.php:950 +#: import.php:277 import.php:330 libraries/File.class.php:566 +#: libraries/File.class.php:676 msgid "File could not be read" msgstr "Fila kunne ikke leses" -#: import.php:286 import.php:295 import.php:314 import.php:323 -#: libraries/File.class.php:1020 libraries/File.class.php:1028 -#: libraries/File.class.php:1044 libraries/File.class.php:1052 +#: import.php:285 import.php:294 import.php:313 import.php:322 +#: libraries/File.class.php:746 libraries/File.class.php:754 +#: libraries/File.class.php:770 libraries/File.class.php:778 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -828,7 +812,7 @@ msgstr "" "Du forsøkte å laste en komprimert fil som det ikke er støtte for (%s). Enten " "så er ikke støtte implementert eller den er slått av i din konfigurasjon." -#: import.php:336 +#: import.php:335 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -838,30 +822,30 @@ msgstr "" "filstørrelsen oversteg maksimum størrelse tillatt i din PHP konfigurasjon. " "Se FAQ 1.16" -#: import.php:371 libraries/display_import.lib.php:23 +#: import.php:370 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "" "Kan ikke starte importeringsprogramtilleggene, kontroller din installasjon!" -#: import.php:396 +#: import.php:395 msgid "The bookmark has been deleted." msgstr "Bokmerket har blitt slettet." -#: import.php:400 +#: import.php:399 msgid "Showing bookmark" msgstr "Vis bokmerke" -#: import.php:402 sql.php:625 +#: import.php:401 sql.php:618 #, php-format msgid "Bookmark %s created" msgstr "Bokmerke %s opprettet" -#: import.php:408 import.php:414 +#: import.php:407 import.php:413 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Importen er fullført, %d spørringer utført." -#: import.php:423 +#: import.php:422 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -869,7 +853,7 @@ msgstr "" "Skripttidsabrudd passert, hvis du ønsker å fortsette importen kan du " "gjennopplaste fila og importeringen vil fortsette." -#: import.php:425 +#: import.php:424 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -878,19 +862,19 @@ msgstr "" "at phpMyAdmin ikke vil være istand til å fullføre importeringen uten at du " "øker php tidsgrensen." -#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:240 +#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:239 #: user_password.php:110 msgid "Back" msgstr "Tilbake" -#: index.php:188 +#: index.php:183 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin er mer brukervennlig med en rammekapabel nettleser." -#: js/messages.php:25 server_synchronize.php:344 server_synchronize.php:356 -#: server_synchronize.php:372 server_synchronize.php:379 -#: server_synchronize.php:738 server_synchronize.php:766 -#: server_synchronize.php:794 server_synchronize.php:806 +#: js/messages.php:25 server_synchronize.php:343 server_synchronize.php:355 +#: server_synchronize.php:371 server_synchronize.php:378 +#: server_synchronize.php:737 server_synchronize.php:765 +#: server_synchronize.php:793 server_synchronize.php:805 msgid "Click to select" msgstr "Klikk for å velge" @@ -898,15 +882,15 @@ msgstr "Klikk for å velge" msgid "Click to unselect" msgstr "Klikk for å fjerne valg" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:88 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:87 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\"-uttrykk er avslått." -#: js/messages.php:30 libraries/mult_submits.inc.php:257 sql.php:187 +#: js/messages.php:30 libraries/mult_submits.inc.php:256 sql.php:186 msgid "Do you really want to " msgstr "Vil du virkelig " -#: js/messages.php:31 libraries/mult_submits.inc.php:257 sql.php:171 +#: js/messages.php:31 libraries/mult_submits.inc.php:256 sql.php:170 msgid "You are about to DESTROY a complete database!" msgstr "Du er i ferd med å SLETTE en komplett database!" @@ -936,11 +920,11 @@ msgstr "Vertsnavnet er tomt!" msgid "The user name is empty!" msgstr "Brukernavnet er tomt!" -#: js/messages.php:44 server_privileges.php:1228 user_password.php:65 +#: js/messages.php:44 server_privileges.php:1229 user_password.php:65 msgid "The password is empty!" msgstr "Passordet er blankt!" -#: js/messages.php:45 server_privileges.php:1226 user_password.php:68 +#: js/messages.php:45 server_privileges.php:1227 user_password.php:68 msgid "The passwords aren't the same!" msgstr "Passordene er ikke like!" @@ -948,27 +932,27 @@ msgstr "Passordene er ikke like!" msgid "Cancel" msgstr "Avbryt" -#: js/messages.php:52 pmd_save_pos.php:53 +#: js/messages.php:52 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "Endringene er lagret" -#: js/messages.php:53 pmd_relation_upd.php:48 +#: js/messages.php:53 pmd_relation_upd.php:47 msgid "Relation deleted" msgstr "Relasjon slettet" -#: js/messages.php:54 pmd_relation_new.php:63 +#: js/messages.php:54 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "FOREIGN KEY relasjon lagt til" -#: js/messages.php:55 pmd_relation_new.php:85 +#: js/messages.php:55 pmd_relation_new.php:84 msgid "Internal relation added" msgstr "Intern relasjon lagt til" -#: js/messages.php:56 pmd_relation_new.php:62 pmd_relation_new.php:87 +#: js/messages.php:56 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "Feil: Relasjon ikke opprettet." -#: js/messages.php:57 pmd_relation_new.php:30 +#: js/messages.php:57 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "Feil: relasjoner eksisterer allerede." @@ -976,13 +960,13 @@ msgstr "Feil: relasjoner eksisterer allerede." msgid "Error saving coordinates for Designer." msgstr "Feil oppstod under lagring av Designerkoordinater." -#: js/messages.php:59 libraries/relation.lib.php:94 -#: libraries/relation.lib.php:106 +#: js/messages.php:59 libraries/relation.lib.php:89 +#: libraries/relation.lib.php:101 msgid "General relation features" msgstr "Generelle relasjonsegenskaper" -#: js/messages.php:59 libraries/relation.lib.php:88 -#: libraries/relation.lib.php:95 +#: js/messages.php:59 libraries/relation.lib.php:83 +#: libraries/relation.lib.php:90 msgid "Disabled" msgstr "Avslått" @@ -998,12 +982,11 @@ msgstr "Velg fremmednøkkel" msgid "Please select the primary key or a unique key" msgstr "Velg primærnøkkelen eller en unik nøkkel" -#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:547 +#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:545 msgid "Choose column to display" msgstr "Velg kolonne for visning" #: js/messages.php:66 -#| msgid "Generate Password" msgid "Generate password" msgstr "Generer passord" @@ -1022,10 +1005,10 @@ msgid "Prev" msgstr "Forrige" #. l10n: Display text for next month link in calendar -#: js/messages.php:81 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:337 -#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:422 -#: tbl_structure.php:800 +#: js/messages.php:81 libraries/common.lib.php:2358 +#: libraries/common.lib.php:2361 libraries/display_tbl.lib.php:336 +#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 +#: tbl_structure.php:798 msgid "Next" msgstr "Neste" @@ -1083,63 +1066,63 @@ msgid "December" msgstr "Desember" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1562 +#: js/messages.php:101 libraries/common.lib.php:1566 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1564 +#: js/messages.php:103 libraries/common.lib.php:1568 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1566 +#: js/messages.php:105 libraries/common.lib.php:1570 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1568 +#: js/messages.php:107 libraries/common.lib.php:1572 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1570 +#: js/messages.php:109 libraries/common.lib.php:1574 msgctxt "Short month name" msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1572 +#: js/messages.php:111 libraries/common.lib.php:1576 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1574 +#: js/messages.php:113 libraries/common.lib.php:1578 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1576 +#: js/messages.php:115 libraries/common.lib.php:1580 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1578 +#: js/messages.php:117 libraries/common.lib.php:1582 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1580 +#: js/messages.php:119 libraries/common.lib.php:1584 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:121 libraries/common.lib.php:1582 +#: js/messages.php:121 libraries/common.lib.php:1586 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:123 libraries/common.lib.php:1584 +#: js/messages.php:123 libraries/common.lib.php:1588 msgid "Dec" msgstr "Des" @@ -1172,37 +1155,37 @@ msgid "Saturday" msgstr "Lørdag" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1587 +#: js/messages.php:136 libraries/common.lib.php:1591 msgid "Sun" msgstr "Søn" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1589 +#: js/messages.php:138 libraries/common.lib.php:1593 msgid "Mon" msgstr "Man" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1591 +#: js/messages.php:140 libraries/common.lib.php:1595 msgid "Tue" msgstr "Tir" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1593 +#: js/messages.php:142 libraries/common.lib.php:1597 msgid "Wed" msgstr "Ons" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1595 +#: js/messages.php:144 libraries/common.lib.php:1599 msgid "Thu" msgstr "Tor" #. l10n: Short week day name -#: js/messages.php:146 libraries/common.lib.php:1597 +#: js/messages.php:146 libraries/common.lib.php:1601 msgid "Fri" msgstr "Fre" #. l10n: Short week day name -#: js/messages.php:148 libraries/common.lib.php:1599 +#: js/messages.php:148 libraries/common.lib.php:1603 msgid "Sat" msgstr "Lør" @@ -1262,18 +1245,13 @@ msgstr "Sekund" msgid "Font size" msgstr "Fontstørrelse" -#: libraries/File.class.php:336 libraries/File.class.php:424 -#: libraries/File.class.php:561 libraries/File.class.php:700 -msgid "Unknown error in file upload." -msgstr "Ukjent feil oppstod under filopplastingen." - -#: libraries/File.class.php:406 +#: libraries/File.class.php:315 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:409 +#: libraries/File.class.php:318 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -1281,60 +1259,64 @@ msgstr "" "Opplastingsfila er større enn MAX_FILE_SIZE direktivet som ble spesifisert i " "HTML-skjemaet." -#: libraries/File.class.php:412 +#: libraries/File.class.php:321 msgid "The uploaded file was only partially uploaded." msgstr "Opplastingsfila ble bare delvis opplastet." -#: libraries/File.class.php:415 +#: libraries/File.class.php:324 msgid "Missing a temporary folder." msgstr "Mangler en midlertidig mappe." -#: libraries/File.class.php:418 +#: libraries/File.class.php:327 msgid "Failed to write file to disk." msgstr "Klarte ikke å skrive fila til harddisken." -#: libraries/File.class.php:421 +#: libraries/File.class.php:330 msgid "File upload stopped by extension." msgstr "Filopplasting stoppet av utvidelse." -#: libraries/File.class.php:898 +#: libraries/File.class.php:333 +msgid "Unknown error in file upload." +msgstr "Ukjent feil oppstod under filopplastingen." + +#: libraries/File.class.php:624 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:427 tbl_relation.php:528 +#: libraries/Index.class.php:427 tbl_relation.php:526 msgid "No index defined!" msgstr "Ingen indeks definert!" -#: libraries/Index.class.php:432 server_databases.php:131 tbl_tracking.php:315 +#: libraries/Index.class.php:432 server_databases.php:129 tbl_tracking.php:310 msgid "Indexes" msgstr "Indekser" #: libraries/Index.class.php:443 libraries/mult_submits.inc.php:102 -#: libraries/tbl_properties.inc.php:518 tbl_structure.php:32 -#: tbl_structure.php:154 tbl_structure.php:158 tbl_structure.php:473 -#: tbl_tracking.php:321 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:31 +#: tbl_structure.php:153 tbl_structure.php:157 tbl_structure.php:471 +#: tbl_tracking.php:316 msgid "Unique" msgstr "Unik" -#: libraries/Index.class.php:444 tbl_tracking.php:322 +#: libraries/Index.class.php:444 tbl_tracking.php:317 msgid "Packed" msgstr "Pakket" -#: libraries/Index.class.php:446 tbl_tracking.php:324 +#: libraries/Index.class.php:446 tbl_tracking.php:319 msgid "Cardinality" msgstr "Kardinalitet" -#: libraries/Index.class.php:449 tbl_tracking.php:278 tbl_tracking.php:327 +#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322 msgid "Comment" msgstr "Kommentar" #: libraries/Index.class.php:465 libraries/common.lib.php:609 -#: libraries/common.lib.php:1198 libraries/display_tbl.lib.php:1116 +#: libraries/common.lib.php:1191 libraries/display_tbl.lib.php:1115 #: libraries/import.lib.php:1119 libraries/import.lib.php:1143 -#: pdf_pages.php:284 setup/frames/index.inc.php:124 +#: pdf_pages.php:283 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:349 tbl_row_action.php:68 msgid "Edit" msgstr "Rediger" @@ -1358,15 +1340,15 @@ msgstr "" "fjernes." #: libraries/List_Database.class.php:430 libraries/server_links.inc.php:40 -#: server_databases.php:87 server_privileges.php:1652 +#: server_databases.php:85 server_privileges.php:1656 #: setup/lib/messages.inc.php:107 test/theme.php:92 msgid "Databases" msgstr "Databaser" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:259 libraries/import.lib.php:134 pdf_schema.php:31 -#: pdf_schema.php:231 tbl_change.php:1023 tbl_operations.php:212 -#: tbl_relation.php:289 view_operations.php:61 +#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 +#: tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Feil" @@ -1391,41 +1373,41 @@ msgid_plural "%1$d rows inserted." msgstr[0] "%1$d rader innsatt." msgstr[1] "%1$d rader innsatt." -#: libraries/StorageEngine.class.php:196 +#: libraries/StorageEngine.class.php:194 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:352 +#: libraries/StorageEngine.class.php:354 #, php-format msgid "%s is available on this MySQL server." msgstr "%s er tilgjengelig på denne MySQL theneren." -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:357 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s har blitt dekativert for denne MySQL tjeneren." -#: libraries/StorageEngine.class.php:359 +#: libraries/StorageEngine.class.php:361 #, 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:1018 +#: libraries/Table.class.php:1017 msgid "Invalid database" msgstr "Ugylding database" -#: libraries/Table.class.php:1032 tbl_get_field.php:25 +#: libraries/Table.class.php:1031 tbl_get_field.php:25 msgid "Invalid table name" msgstr "Ugylding tabellnavn" -#: libraries/Table.class.php:1047 +#: libraries/Table.class.php:1046 #, 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:1131 +#: libraries/Table.class.php:1129 #, php-format msgid "Table %s has been renamed to %s" msgstr "Tabellen %s har fått nytt navn %s" @@ -1443,22 +1425,22 @@ msgstr "Ingen forhandsvisning tilgjengelig." msgid "take it" msgstr "velg" -#: libraries/Theme_Manager.class.php:114 +#: 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:152 +#: libraries/Theme_Manager.class.php:147 #, php-format msgid "Theme %s not found!" msgstr "Stilen %s ble ikke funnet!" -#: libraries/Theme_Manager.class.php:220 +#: 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:296 test/theme.php:160 themes.php:20 +#: libraries/Theme_Manager.class.php:291 test/theme.php:160 themes.php:20 #: themes.php:40 msgid "Theme / Style" msgstr "Tema / Stil" @@ -1572,19 +1554,19 @@ msgstr "Ingen gyldig autentiseringsnøkkel plugget" msgid "Authenticating..." msgstr "Autentiserer..." -#: libraries/blobstreaming.lib.php:689 +#: libraries/blobstreaming.lib.php:340 msgid "View image" msgstr "Vis bilde" -#: libraries/blobstreaming.lib.php:693 +#: libraries/blobstreaming.lib.php:344 msgid "Play audio" msgstr "Spill lyd" -#: libraries/blobstreaming.lib.php:698 +#: libraries/blobstreaming.lib.php:349 msgid "View video" msgstr "Vis video" -#: libraries/blobstreaming.lib.php:702 +#: libraries/blobstreaming.lib.php:353 msgid "Download file" msgstr "Last ned fil" @@ -1636,7 +1618,7 @@ msgstr "Tjener" msgid "Invalid authentication method set in configuration:" msgstr "Ugyldig autentiseringsmetode satt opp i konfigureringen:" -#: libraries/common.inc.php:909 +#: libraries/common.inc.php:908 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Du burde oppgradere til %s %s eller nyere." @@ -1661,7 +1643,8 @@ msgstr "en" #: libraries/common.lib.php:425 libraries/common.lib.php:427 #: libraries/common.lib.php:429 libraries/common.lib.php:445 #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 -#: libraries/display_export.lib.php:163 libraries/relation.lib.php:84 +#: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 +#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 #: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" @@ -1676,147 +1659,146 @@ msgstr "SQL-spørring" msgid "MySQL said: " msgstr "MySQL sa: " -#: libraries/common.lib.php:1136 -#| msgid "Could not connect to MySQL server" +#: libraries/common.lib.php:1129 msgid "Failed to connect to SQL validator!" msgstr "Kunne ikke koble til SQL validerer!" -#: libraries/common.lib.php:1174 setup/lib/messages.inc.php:350 +#: libraries/common.lib.php:1167 setup/lib/messages.inc.php:350 msgid "Explain SQL" msgstr "Forklar SQL" -#: libraries/common.lib.php:1177 +#: libraries/common.lib.php:1170 msgid "Skip Explain SQL" msgstr "Ikke forklar SQL" -#: libraries/common.lib.php:1211 +#: libraries/common.lib.php:1204 msgid "Without PHP Code" msgstr "uten PHP kode" -#: libraries/common.lib.php:1214 setup/lib/messages.inc.php:352 +#: libraries/common.lib.php:1207 setup/lib/messages.inc.php:352 msgid "Create PHP Code" msgstr "Lag PHP kode" -#: libraries/common.lib.php:1232 server_status.php:451 +#: libraries/common.lib.php:1225 server_status.php:451 #: setup/lib/messages.inc.php:351 msgid "Refresh" msgstr "Oppdater" -#: libraries/common.lib.php:1241 +#: libraries/common.lib.php:1234 msgid "Skip Validate SQL" msgstr "Ikke teste SQL" -#: libraries/common.lib.php:1244 setup/lib/messages.inc.php:353 +#: libraries/common.lib.php:1237 setup/lib/messages.inc.php:353 msgid "Validate SQL" msgstr "Test SQL" -#: libraries/common.lib.php:1283 +#: libraries/common.lib.php:1287 msgid "Inline edit of this query" msgstr "Inline redigering av denne spørringa" -#: libraries/common.lib.php:1285 +#: libraries/common.lib.php:1289 msgid "Inline" msgstr "Inline" -#: libraries/common.lib.php:1339 libraries/common.lib.php:1354 +#: libraries/common.lib.php:1343 libraries/common.lib.php:1358 msgid "Profiling" msgstr "Profilering" -#: libraries/common.lib.php:1358 libraries/tbl_triggers.lib.php:27 +#: libraries/common.lib.php:1362 libraries/tbl_triggers.lib.php:27 #: server_processlist.php:57 msgid "Time" msgstr "Tid" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "B" msgstr "B" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "KiB" msgstr "KiB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "MiB" msgstr "MiB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "GiB" msgstr "GiB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "TiB" msgstr "TiB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "PiB" msgstr "PiB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "EiB" msgstr "EiB" #. l10n: Thousands separator -#: libraries/common.lib.php:1424 +#: libraries/common.lib.php:1428 msgid "," msgstr "." #. l10n: Decimal separator -#: libraries/common.lib.php:1426 +#: libraries/common.lib.php:1430 msgid "." msgstr "," #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1603 +#: libraries/common.lib.php:1607 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%d. %B, %Y %H:%M %p" -#: libraries/common.lib.php:1909 +#: libraries/common.lib.php:1913 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dager, %s timer, %s minutter og %s sekunder" -#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 -#: libraries/display_tbl.lib.php:289 server_status.php:718 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 +#: libraries/display_tbl.lib.php:288 server_status.php:718 msgid "Begin" msgstr "Start" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 -#: libraries/display_tbl.lib.php:290 server_binlog.php:154 +#: libraries/common.lib.php:2328 libraries/common.lib.php:2331 +#: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "Forrige" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 -#: libraries/display_tbl.lib.php:352 +#: libraries/common.lib.php:2359 libraries/common.lib.php:2362 +#: libraries/display_tbl.lib.php:351 msgid "End" msgstr "Slutt" -#: libraries/common.lib.php:2429 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "Hopp til databasen "%s"." -#: libraries/common.lib.php:2448 +#: libraries/common.lib.php:2453 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Funksjonaliteten %s er påvirket av en kjent feil, se %s" -#: libraries/common.lib.php:2828 libraries/common.lib.php:2835 -#: libraries/db_links.inc.php:67 libraries/export/sql.php:24 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 +#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 -#: libraries/tbl_links.inc.php:59 querywindow.php:89 test/theme.php:96 +#: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2837 libraries/db_links.inc.php:103 -#: libraries/tbl_links.inc.php:94 libraries/tbl_links.inc.php:116 -#: view_operations.php:88 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: view_operations.php:87 msgid "Operations" msgstr "Operasjoner" -#: libraries/core.lib.php:282 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "%s tillegget mangler. Kontroller din PHP konfigurasjon." @@ -1832,38 +1814,38 @@ msgstr "Hendelser" msgid "Name" msgstr "Navn" -#: libraries/db_links.inc.php:44 +#: libraries/db_links.inc.php:43 #, php-format msgid "Database %s has been dropped." msgstr "Databasen %s har blitt slettet" -#: libraries/db_links.inc.php:56 libraries/db_links.inc.php:57 -#: libraries/db_links.inc.php:58 +#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 +#: libraries/db_links.inc.php:57 msgid "Database seems to be empty!" msgstr "Databasen ser ut til å være tom!" -#: libraries/db_links.inc.php:80 libraries/relation.lib.php:142 -#: libraries/tbl_links.inc.php:68 +#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "Overvåkning" -#: libraries/db_links.inc.php:85 +#: libraries/db_links.inc.php:84 msgid "Query" msgstr "Spørring ved eksempel (Query by Example)" -#: libraries/db_links.inc.php:90 libraries/relation.lib.php:138 +#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 msgid "Designer" msgstr "Designer" -#: libraries/db_links.inc.php:97 libraries/server_links.inc.php:87 -#: libraries/tbl_links.inc.php:90 pmd_pdf.php:83 pmd_pdf.php:109 +#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importer" -#: libraries/db_links.inc.php:110 libraries/server_links.inc.php:65 -#: server_privileges.php:111 server_privileges.php:1714 -#: server_privileges.php:2063 test/theme.php:116 +#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: server_privileges.php:110 server_privileges.php:1718 +#: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" msgstr "Privilegier" @@ -1875,14 +1857,14 @@ msgstr "Rutiner" msgid "Return type" msgstr "Returtype" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1847 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1806 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "Kan være unøyaktig. Se FAQ 3.11" -#: libraries/db_structure.lib.php:60 server_databases.php:141 -#: tbl_printview.php:334 tbl_structure.php:681 +#: libraries/db_structure.lib.php:60 server_databases.php:139 +#: tbl_printview.php:333 tbl_structure.php:679 msgid "Overhead" msgstr "Overheng" @@ -1900,7 +1882,7 @@ msgstr "Tjeneren svarer ikke" 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:358 tbl_structure.php:607 +#: libraries/dbi/mysql.dbi.lib.php:358 tbl_structure.php:605 msgid "Details..." msgstr "Detaljer..." @@ -1910,22 +1892,22 @@ msgid "Change password" msgstr "Endre passord" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:807 +#: libraries/replication_gui.lib.php:347 server_privileges.php:806 msgid "No Password" msgstr "Intet passord" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1530 server_synchronize.php:1174 +#: libraries/replication_gui.lib.php:351 server_privileges.php:795 +#: server_privileges.php:799 server_privileges.php:810 +#: server_privileges.php:1534 server_synchronize.php:1173 msgid "Password" msgstr "Passord" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:815 server_privileges.php:818 +#: server_privileges.php:814 server_privileges.php:817 msgid "Re-type" msgstr "Gjenta" @@ -1946,8 +1928,8 @@ msgstr "Opprett ny database" msgid "Create" msgstr "Opprett" -#: libraries/display_create_database.lib.php:39 server_privileges.php:113 -#: server_privileges.php:1419 server_replication.php:34 +#: libraries/display_create_database.lib.php:39 server_privileges.php:112 +#: server_privileges.php:1423 server_replication.php:33 msgid "No Privileges" msgstr "Ingen privilegier" @@ -1964,49 +1946,49 @@ msgstr "Opprett ny tabell i database %s" msgid "Number of columns" msgstr "Antall kolonner" -#: libraries/display_export.lib.php:41 +#: libraries/display_export.lib.php:35 msgid "Could not load export plugins, please check your installation!" msgstr "Kunne ikke laste eksporttillegg, kontroller din innstallasjon!" -#: libraries/display_export.lib.php:106 +#: libraries/display_export.lib.php:100 #, php-format msgid "Dump %s row(s) starting at row # %s" msgstr "Dumpe %s rader fra rad %s." -#: libraries/display_export.lib.php:114 +#: libraries/display_export.lib.php:108 msgid "Dump all rows" msgstr "Dump alle rader" -#: libraries/display_export.lib.php:124 setup/lib/messages.inc.php:79 +#: libraries/display_export.lib.php:118 setup/lib/messages.inc.php:79 msgid "Save as file" msgstr "Lagre som fil" -#: libraries/display_export.lib.php:133 +#: libraries/display_export.lib.php:127 #, php-format msgid "Save on server in %s directory" msgstr "Lagre på server i %s katalogen" -#: libraries/display_export.lib.php:141 setup/lib/messages.inc.php:87 +#: libraries/display_export.lib.php:135 setup/lib/messages.inc.php:87 msgid "Overwrite existing file(s)" msgstr "Skriv over eksisterende filer" -#: libraries/display_export.lib.php:147 +#: libraries/display_export.lib.php:141 msgid "File name template" msgstr "Filnavnsmal" -#: libraries/display_export.lib.php:151 +#: libraries/display_export.lib.php:145 msgid "server name" msgstr "tjenernavn" -#: libraries/display_export.lib.php:154 +#: libraries/display_export.lib.php:148 msgid "database name" msgstr "databasenavn" -#: libraries/display_export.lib.php:157 +#: libraries/display_export.lib.php:151 msgid "table name" msgstr "tabellnavn" -#: libraries/display_export.lib.php:161 +#: libraries/display_export.lib.php:155 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2017,39 +1999,39 @@ msgstr "" "tidformateringsstrenger. I tillegg vil følgende transformasjoner skje: %3$s. " "All annen tekst beholdes som den er." -#: libraries/display_export.lib.php:202 +#: libraries/display_export.lib.php:196 msgid "remember template" msgstr "husk malen" -#: libraries/display_export.lib.php:210 libraries/display_import.lib.php:177 +#: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 #: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 msgid "Character set of the file:" msgstr "Filens tegnsett:" -#: libraries/display_export.lib.php:235 setup/lib/messages.inc.php:81 +#: libraries/display_export.lib.php:229 setup/lib/messages.inc.php:81 msgid "Compression" msgstr "Kompresjon" -#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:196 -#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:529 -#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:574 -#: server_privileges.php:1867 server_processlist.php:74 +#: libraries/display_export.lib.php:234 libraries/display_import.lib.php:196 +#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:528 +#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:573 +#: server_privileges.php:1871 server_processlist.php:74 msgid "None" msgstr "Ingen" -#: libraries/display_export.lib.php:247 +#: libraries/display_export.lib.php:241 msgid "\"zipped\"" msgstr "Komprimert (zip)" -#: libraries/display_export.lib.php:253 +#: libraries/display_export.lib.php:247 msgid "\"gzipped\"" msgstr "Komprimert (gz)" -#: libraries/display_export.lib.php:259 +#: libraries/display_export.lib.php:253 msgid "\"bzipped\"" msgstr "Komprimert (bz2)" -#: libraries/display_export.lib.php:274 libraries/export/sql.php:42 +#: libraries/display_export.lib.php:268 libraries/export/sql.php:42 #: libraries/import/sql.php:31 msgid "SQL compatibility mode" msgstr "SQL kompatibilitetsmodus" @@ -2088,12 +2070,12 @@ msgid "File uploads are not allowed on this server." msgstr "Filopplastinger er ikke tillatt på denne tjeneren." #: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 -#: tbl_change.php:1024 +#: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "Katalogen du anga for opplasting kan ikke nåes" #: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 -#: tbl_change.php:1027 +#: tbl_change.php:925 msgid "web server upload directory" msgstr "webtjener opplastingskatalog" @@ -2177,41 +2159,41 @@ msgstr "Papirstørrelse" msgid "Language" msgstr "Språk" -#: libraries/display_tbl.lib.php:303 +#: libraries/display_tbl.lib.php:302 #, php-format msgid "%d is not valid row number." msgstr "%d er ikke et gyldig radnummer." -#: libraries/display_tbl.lib.php:309 +#: libraries/display_tbl.lib.php:308 msgid "row(s) starting from row #" msgstr "rader fra rad" -#: libraries/display_tbl.lib.php:315 +#: libraries/display_tbl.lib.php:314 msgid "horizontal" msgstr "vannrett" -#: libraries/display_tbl.lib.php:316 +#: libraries/display_tbl.lib.php:315 msgid "horizontal (rotated headers)" msgstr "horisontal (roterte overskrifter)" -#: libraries/display_tbl.lib.php:317 +#: libraries/display_tbl.lib.php:316 msgid "vertical" msgstr "loddrett" -#: libraries/display_tbl.lib.php:323 +#: libraries/display_tbl.lib.php:322 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "i %s modus og gjenta headers etter %s celler" -#: libraries/display_tbl.lib.php:345 +#: libraries/display_tbl.lib.php:344 msgid "This operation could take a long time. Proceed anyway?" msgstr "Denne operasjonen kan ta lang tid. Ønsker du å fortsette?" -#: libraries/display_tbl.lib.php:511 +#: libraries/display_tbl.lib.php:510 msgid "Sort by key" msgstr "Sorter etter nøkkel" -#: libraries/display_tbl.lib.php:554 libraries/export/codegen.php:38 +#: libraries/display_tbl.lib.php:553 libraries/export/codegen.php:38 #: libraries/export/csv.php:29 libraries/export/excel.php:34 #: libraries/export/htmlword.php:28 libraries/export/latex.php:32 #: libraries/export/mediawiki.php:21 libraries/export/ods.php:26 @@ -2221,97 +2203,97 @@ msgstr "Sorter etter nøkkel" #: libraries/export/xlsx.php:26 libraries/export/xml.php:23 #: libraries/export/yaml.php:27 libraries/import.lib.php:1114 #: libraries/import.lib.php:1136 libraries/import/csv.php:31 -#: libraries/import/docsql.php:33 libraries/import/ldi.php:46 +#: libraries/import/docsql.php:32 libraries/import/ldi.php:46 #: libraries/import/ods.php:30 libraries/import/sql.php:19 #: libraries/import/xls.php:25 libraries/import/xlsx.php:25 -#: libraries/import/xml.php:25 tbl_select.php:264 tbl_structure.php:752 +#: libraries/import/xml.php:25 tbl_select.php:263 tbl_structure.php:750 msgid "Options" msgstr "Innstillinger" -#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:569 +#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:568 msgid "Partial Texts" msgstr "Delvis tekst" -#: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:573 +#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:572 msgid "Full Texts" msgstr "Hele strenger" -#: libraries/display_tbl.lib.php:586 +#: libraries/display_tbl.lib.php:585 msgid "Relational key" msgstr "Relasjonsnøkkel" -#: libraries/display_tbl.lib.php:587 +#: libraries/display_tbl.lib.php:586 msgid "Relational display column" msgstr "Relasjonsvisningskolonne" -#: libraries/display_tbl.lib.php:594 +#: libraries/display_tbl.lib.php:593 msgid "Show binary contents" msgstr "Vis binært innhold" -#: libraries/display_tbl.lib.php:596 +#: libraries/display_tbl.lib.php:595 msgid "Show BLOB contents" msgstr "Vis BLOB innhold" -#: libraries/display_tbl.lib.php:598 +#: libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "Vis binært innhold som HEX" -#: libraries/display_tbl.lib.php:606 pmd_general.php:140 tbl_change.php:312 -#: tbl_change.php:318 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:307 +#: tbl_change.php:313 msgid "Hide" msgstr "Skjul" -#: libraries/display_tbl.lib.php:606 libraries/relation.lib.php:122 -#: libraries/tbl_properties.inc.php:143 transformation_overview.php:46 +#: libraries/display_tbl.lib.php:605 libraries/relation.lib.php:117 +#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46 msgid "Browser transformation" msgstr "Nettvisertransformasjon" -#: libraries/display_tbl.lib.php:1125 libraries/display_tbl.lib.php:1129 -#: libraries/display_tbl.lib.php:1131 +#: libraries/display_tbl.lib.php:1124 libraries/display_tbl.lib.php:1128 +#: libraries/display_tbl.lib.php:1130 msgid "Execute bookmarked query" msgstr "Utfør lagret spørring" -#: libraries/display_tbl.lib.php:1144 libraries/display_tbl.lib.php:1156 +#: libraries/display_tbl.lib.php:1143 libraries/display_tbl.lib.php:1155 msgid "The row has been deleted" msgstr "Raden er slettet" -#: libraries/display_tbl.lib.php:1183 libraries/display_tbl.lib.php:2055 +#: libraries/display_tbl.lib.php:1182 libraries/display_tbl.lib.php:2014 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "Avslutt" -#: libraries/display_tbl.lib.php:1933 +#: libraries/display_tbl.lib.php:1892 msgid "in query" msgstr "i spørring" -#: libraries/display_tbl.lib.php:1951 +#: libraries/display_tbl.lib.php:1910 msgid "Showing rows" msgstr "Viser rader " -#: libraries/display_tbl.lib.php:1961 +#: libraries/display_tbl.lib.php:1920 msgid "total" msgstr "totalt" -#: libraries/display_tbl.lib.php:1969 sql.php:523 +#: libraries/display_tbl.lib.php:1928 sql.php:522 #, php-format msgid "Query took %01.4f sec" msgstr "Spørring tok %01.4f sek" -#: libraries/display_tbl.lib.php:2088 libraries/mult_submits.inc.php:112 -#: querywindow.php:115 querywindow.php:119 querywindow.php:122 -#: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:469 +#: libraries/display_tbl.lib.php:2047 libraries/mult_submits.inc.php:112 +#: querywindow.php:114 querywindow.php:118 querywindow.php:121 +#: tbl_structure.php:23 tbl_structure.php:148 tbl_structure.php:467 msgid "Change" msgstr "Endre" -#: libraries/display_tbl.lib.php:2158 +#: libraries/display_tbl.lib.php:2117 msgid "Query results operations" msgstr "Spørringsresultatshandlinger" -#: libraries/display_tbl.lib.php:2186 +#: libraries/display_tbl.lib.php:2145 msgid "Print view (with full texts)" msgstr "Forhåndsvisning (med all tekst)" -#: libraries/display_tbl.lib.php:2359 +#: libraries/display_tbl.lib.php:2318 msgid "Link not found" msgstr "Link ikke funnet" @@ -2367,9 +2349,9 @@ msgstr "InnoDB status" msgid "Buffer Pool Usage" msgstr "Mellomlagerbruk" -#: libraries/engines/innodb.lib.php:168 server_databases.php:136 -#: server_databases.php:304 server_status.php:524 server_status.php:585 -#: server_status.php:606 tbl_printview.php:349 tbl_structure.php:695 +#: libraries/engines/innodb.lib.php:168 server_databases.php:134 +#: server_databases.php:302 server_status.php:524 server_status.php:585 +#: server_status.php:606 tbl_printview.php:348 tbl_structure.php:693 msgid "Total" msgstr "Totalt" @@ -2505,6 +2487,87 @@ msgstr "" "Bufferet som brukes ved sortering av MyISAM indekser under en REPAIR TABLE " "eller når indekser blir opprettet med CREATE INDEX eller ALTER TABLE." +#: libraries/engines/pbms.lib.php:31 +#, fuzzy +#| msgid "Garbage threshold" +msgid "Garbage Threshold" +msgstr "Søppelterskel" + +#: libraries/engines/pbms.lib.php:32 +#, fuzzy +#| msgid "" +#| "The percentage of garbage in a data log file before it is compacted. This " +#| "is a value between 1 and 99. The default is 50." +msgid "The percentage of garbage in a repository file before it is compacted." +msgstr "" +"Prosentandelen søppel på en dataloggfil før den komprimeres. Dette er en " +"verdi mellom 1 og 99. Standard er 50." + +#: libraries/engines/pbms.lib.php:36 libraries/replication_gui.lib.php:69 +#: server_synchronize.php:1161 +msgid "Port" +msgstr "Port" + +#: libraries/engines/pbms.lib.php:37 +msgid "" +"The port for the PBMS stream-based communications. Setting this value to 0 " +"will disable HTTP communication with the daemon." +msgstr "" + +#: libraries/engines/pbms.lib.php:41 +msgid "Repository Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:42 +msgid "" +"The maximum size of a BLOB repository file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:46 +msgid "Temp Blob Timeout" +msgstr "" + +#: libraries/engines/pbms.lib.php:47 +msgid "" +"The timeout, in seconds, for temporary BLOBs. Uploaded BLOB data is removed " +"after this time, unless they are referenced by a record in the database." +msgstr "" + +#: libraries/engines/pbms.lib.php:51 +#, fuzzy +#| msgid "Log file threshold" +msgid "Temp Log Threshold" +msgstr "Loggfilterskel" + +#: libraries/engines/pbms.lib.php:52 +msgid "" +"The maximum size of a temporary BLOB log file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:56 +msgid "Max Keep Alive" +msgstr "" + +#: libraries/engines/pbms.lib.php:57 +msgid "" +"The timeout for inactive connection with the keep-alive flag set. After this " +"time the connection will be closed. The time-out is in milliseconds (1/1000)." +msgstr "" + +#: libraries/engines/pbms.lib.php:61 +msgid "Metadata Headers" +msgstr "" + +#: libraries/engines/pbms.lib.php:62 +msgid "" +"A \":\" delimited list of metadata headers to be used to initialize the " +"pbms_metadata_header table when a database is created." +msgstr "" + #: libraries/engines/pbxt.lib.php:22 msgid "Index cache size" msgstr "Indeksmellomlagerstørrelse" @@ -2654,7 +2717,7 @@ msgstr "" "neste høyeste nummeret." #: libraries/export/codegen.php:36 setup/lib/messages.inc.php:85 -#: tbl_printview.php:374 tbl_structure.php:736 +#: tbl_printview.php:373 tbl_structure.php:734 msgid "Format" msgstr "Format" @@ -2717,9 +2780,9 @@ msgstr "Microsoft Word 2000" #: libraries/export/htmlword.php:23 libraries/export/latex.php:59 #: libraries/export/latex.php:205 libraries/export/odt.php:47 #: libraries/export/sql.php:105 libraries/export/sql.php:865 -#: libraries/export/texytext.php:27 server_databases.php:126 -#: server_privileges.php:576 server_replication.php:315 tbl_printview.php:315 -#: tbl_structure.php:664 +#: libraries/export/texytext.php:27 server_databases.php:124 +#: server_privileges.php:575 server_replication.php:314 tbl_printview.php:314 +#: tbl_structure.php:662 msgid "Data" msgstr "Data" @@ -2734,7 +2797,6 @@ msgid "Table structure for table" msgstr "Tabellstruktur for tabell" #: libraries/export/latex.php:13 -#| msgid "Content of table __TABLE__" msgid "Content of table @TABLE@" msgstr "Innhold i tabell @TABLE@" @@ -2743,7 +2805,6 @@ msgid "(continued)" msgstr "(fortsettet)" #: libraries/export/latex.php:15 -#| msgid "Structure of table __TABLE__" msgid "Structure of table @TABLE@" msgstr "Struktur i tabell @TABLE@" @@ -2768,13 +2829,13 @@ msgid "Label key" msgstr "Merkelappnøkkel" #: libraries/export/latex.php:46 libraries/export/odt.php:34 -#: libraries/export/sql.php:90 tbl_relation.php:398 +#: libraries/export/sql.php:90 tbl_relation.php:396 msgid "Relations" msgstr "Relasjoner" #: libraries/export/latex.php:52 libraries/export/odt.php:40 #: libraries/export/odt.php:317 libraries/export/sql.php:94 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "MIME-type" @@ -2782,10 +2843,10 @@ msgstr "MIME-type" #: libraries/export/xml.php:101 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1529 server_privileges.php:2061 -#: server_processlist.php:54 server_synchronize.php:1158 +#: libraries/replication_gui.lib.php:331 server_privileges.php:730 +#: server_privileges.php:733 server_privileges.php:789 +#: server_privileges.php:1533 server_privileges.php:2065 +#: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "Vert" @@ -2972,8 +3033,8 @@ msgstr "Eksporter visninger" msgid "Export contents" msgstr "Eksporter innhold" -#: libraries/footer.inc.php:182 libraries/footer.inc.php:193 -#: libraries/footer.inc.php:196 +#: libraries/footer.inc.php:180 libraries/footer.inc.php:191 +#: libraries/footer.inc.php:194 msgid "Open new phpMyAdmin window" msgstr "Åpne nytt phpMyAdmin vindu" @@ -2989,7 +3050,7 @@ msgstr "SQL-resultat" msgid "Generated by" msgstr "Generert av" -#: libraries/import.lib.php:151 sql.php:519 tbl_change.php:180 +#: libraries/import.lib.php:151 sql.php:518 tbl_change.php:175 #: 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)." @@ -3048,7 +3109,7 @@ msgstr "Ignorer dupliserte rader" msgid "Column names in first row" msgstr "Kolonnenavn i første rad" -#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:501 +#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:500 #: view_create.php:147 msgid "Column names" msgstr "Kolonnenavn" @@ -3074,12 +3135,12 @@ msgstr "Ugyldig format i CSV importen i linje %d." msgid "Invalid column count in CSV input on line %d." msgstr "Ugyldig antall kolonner i CSV importen i linje %d." -#: libraries/import/docsql.php:28 +#: libraries/import/docsql.php:27 msgid "DocSQL" msgstr "DocSQL" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 -#: server_synchronize.php:427 server_synchronize.php:870 +#: libraries/import/docsql.php:30 libraries/tbl_properties.inc.php:616 +#: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "Tabellnavn" @@ -3135,26 +3196,26 @@ msgstr "Ingen" msgid "Convert to Kana" msgstr "Konverter til Kana" -#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:512 -#: tbl_structure.php:28 tbl_structure.php:152 tbl_structure.php:156 -#: tbl_structure.php:472 +#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:511 +#: tbl_structure.php:27 tbl_structure.php:151 tbl_structure.php:155 +#: tbl_structure.php:470 msgid "Primary" msgstr "Primær" #: libraries/mult_submits.inc.php:97 libraries/tbl_properties.inc.php:115 -#: libraries/tbl_properties.inc.php:524 tbl_printview.php:324 -#: tbl_structure.php:30 tbl_structure.php:153 tbl_structure.php:157 -#: tbl_structure.php:474 tbl_structure.php:672 +#: libraries/tbl_properties.inc.php:523 tbl_printview.php:323 +#: tbl_structure.php:29 tbl_structure.php:152 tbl_structure.php:156 +#: tbl_structure.php:472 tbl_structure.php:670 msgid "Index" msgstr "Indeks" -#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:530 -#: tbl_structure.php:34 tbl_structure.php:155 tbl_structure.php:159 -#: tbl_structure.php:477 +#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:529 +#: tbl_structure.php:33 tbl_structure.php:154 tbl_structure.php:158 +#: tbl_structure.php:475 msgid "Fulltext" msgstr "Fulltekst" -#: libraries/mult_submits.inc.php:434 tbl_replace.php:330 +#: libraries/mult_submits.inc.php:433 tbl_replace.php:330 msgid "No change" msgstr "Ingen endring" @@ -3162,190 +3223,190 @@ msgstr "Ingen endring" msgid "Charset" msgstr "Tegnsett" -#: libraries/mysql_charsets.lib.php:210 libraries/mysql_charsets.lib.php:411 -#: tbl_change.php:515 +#: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 +#: tbl_change.php:510 msgid "Binary" msgstr " Binær " -#: libraries/mysql_charsets.lib.php:222 +#: libraries/mysql_charsets.lib.php:214 msgid "Bulgarian" msgstr "bulgarsk" -#: libraries/mysql_charsets.lib.php:226 libraries/mysql_charsets.lib.php:351 +#: libraries/mysql_charsets.lib.php:218 libraries/mysql_charsets.lib.php:343 msgid "Simplified Chinese" msgstr "forenklet kinesisk" -#: libraries/mysql_charsets.lib.php:228 libraries/mysql_charsets.lib.php:371 +#: libraries/mysql_charsets.lib.php:220 libraries/mysql_charsets.lib.php:363 msgid "Traditional Chinese" msgstr "Tradisjonell kinesisk" -#: libraries/mysql_charsets.lib.php:232 libraries/mysql_charsets.lib.php:418 +#: libraries/mysql_charsets.lib.php:224 libraries/mysql_charsets.lib.php:410 msgid "case-insensitive" msgstr "uavhengig av bokstavstørrelse" -#: libraries/mysql_charsets.lib.php:235 libraries/mysql_charsets.lib.php:420 +#: libraries/mysql_charsets.lib.php:227 libraries/mysql_charsets.lib.php:412 msgid "case-sensitive" msgstr "avhengig av bokstavstørrelse" -#: libraries/mysql_charsets.lib.php:238 +#: libraries/mysql_charsets.lib.php:230 msgid "Croatian" msgstr "kroatisk" -#: libraries/mysql_charsets.lib.php:241 +#: libraries/mysql_charsets.lib.php:233 msgid "Czech" msgstr "tjekkisk" -#: libraries/mysql_charsets.lib.php:244 +#: libraries/mysql_charsets.lib.php:236 msgid "Danish" msgstr "dansk" -#: libraries/mysql_charsets.lib.php:247 +#: libraries/mysql_charsets.lib.php:239 msgid "English" msgstr "engelsk" -#: libraries/mysql_charsets.lib.php:250 +#: libraries/mysql_charsets.lib.php:242 msgid "Esperanto" msgstr "Esperanto" -#: libraries/mysql_charsets.lib.php:253 +#: libraries/mysql_charsets.lib.php:245 msgid "Estonian" msgstr "estisk" -#: libraries/mysql_charsets.lib.php:256 libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:248 libraries/mysql_charsets.lib.php:251 msgid "German" msgstr "tysk" -#: libraries/mysql_charsets.lib.php:256 +#: libraries/mysql_charsets.lib.php:248 msgid "dictionary" msgstr "ordbok" -#: libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:251 msgid "phone book" msgstr "telefonkatalog" -#: libraries/mysql_charsets.lib.php:262 +#: libraries/mysql_charsets.lib.php:254 msgid "Hungarian" msgstr "ungarsk" -#: libraries/mysql_charsets.lib.php:265 +#: libraries/mysql_charsets.lib.php:257 msgid "Icelandic" msgstr "Islandsk" -#: libraries/mysql_charsets.lib.php:268 libraries/mysql_charsets.lib.php:358 +#: libraries/mysql_charsets.lib.php:260 libraries/mysql_charsets.lib.php:350 msgid "Japanese" msgstr "japansk" -#: libraries/mysql_charsets.lib.php:271 +#: libraries/mysql_charsets.lib.php:263 msgid "Latvian" msgstr "Latvisk" -#: libraries/mysql_charsets.lib.php:274 +#: libraries/mysql_charsets.lib.php:266 msgid "Lithuanian" msgstr "lithauisk" -#: libraries/mysql_charsets.lib.php:277 libraries/mysql_charsets.lib.php:380 +#: libraries/mysql_charsets.lib.php:269 libraries/mysql_charsets.lib.php:372 msgid "Korean" msgstr "koreansk" -#: libraries/mysql_charsets.lib.php:280 +#: libraries/mysql_charsets.lib.php:272 msgid "Persian" msgstr "Persisk" -#: libraries/mysql_charsets.lib.php:283 +#: libraries/mysql_charsets.lib.php:275 msgid "Polish" msgstr "Polsk" -#: libraries/mysql_charsets.lib.php:286 libraries/mysql_charsets.lib.php:334 +#: libraries/mysql_charsets.lib.php:278 libraries/mysql_charsets.lib.php:326 msgid "West European" msgstr "vesteuropeisk" -#: libraries/mysql_charsets.lib.php:289 +#: libraries/mysql_charsets.lib.php:281 msgid "Romanian" msgstr "Rumensk" -#: libraries/mysql_charsets.lib.php:292 +#: libraries/mysql_charsets.lib.php:284 msgid "Slovak" msgstr "Slovakisk" -#: libraries/mysql_charsets.lib.php:295 +#: libraries/mysql_charsets.lib.php:287 msgid "Slovenian" msgstr "Slovensk" -#: libraries/mysql_charsets.lib.php:298 +#: libraries/mysql_charsets.lib.php:290 msgid "Spanish" msgstr "Spansk" -#: libraries/mysql_charsets.lib.php:301 +#: libraries/mysql_charsets.lib.php:293 msgid "Traditional Spanish" msgstr "Tradisjonell spansk" -#: libraries/mysql_charsets.lib.php:304 libraries/mysql_charsets.lib.php:401 +#: libraries/mysql_charsets.lib.php:296 libraries/mysql_charsets.lib.php:393 msgid "Swedish" msgstr "svensk" -#: libraries/mysql_charsets.lib.php:307 libraries/mysql_charsets.lib.php:404 +#: libraries/mysql_charsets.lib.php:299 libraries/mysql_charsets.lib.php:396 msgid "Thai" msgstr "thai" -#: libraries/mysql_charsets.lib.php:310 libraries/mysql_charsets.lib.php:398 +#: libraries/mysql_charsets.lib.php:302 libraries/mysql_charsets.lib.php:390 msgid "Turkish" msgstr "tyrkisk" -#: libraries/mysql_charsets.lib.php:313 libraries/mysql_charsets.lib.php:395 +#: libraries/mysql_charsets.lib.php:305 libraries/mysql_charsets.lib.php:387 msgid "Ukrainian" msgstr "ukrainsk" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 msgid "Unicode" msgstr "Unicode" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 -#: libraries/mysql_charsets.lib.php:334 libraries/mysql_charsets.lib.php:341 -#: libraries/mysql_charsets.lib.php:363 libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 +#: libraries/mysql_charsets.lib.php:326 libraries/mysql_charsets.lib.php:333 +#: libraries/mysql_charsets.lib.php:355 libraries/mysql_charsets.lib.php:366 msgid "multilingual" msgstr "flerspråkelig" -#: libraries/mysql_charsets.lib.php:341 +#: libraries/mysql_charsets.lib.php:333 msgid "Central European" msgstr "sentraleuropeisk" -#: libraries/mysql_charsets.lib.php:346 +#: libraries/mysql_charsets.lib.php:338 msgid "Russian" msgstr "russisk" -#: libraries/mysql_charsets.lib.php:363 +#: libraries/mysql_charsets.lib.php:355 msgid "Baltic" msgstr "baltisk" -#: libraries/mysql_charsets.lib.php:368 +#: libraries/mysql_charsets.lib.php:360 msgid "Armenian" msgstr "armensk" -#: libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:366 msgid "Cyrillic" msgstr "kyrillisk" -#: libraries/mysql_charsets.lib.php:377 +#: libraries/mysql_charsets.lib.php:369 msgid "Arabic" msgstr "arabisk" -#: libraries/mysql_charsets.lib.php:383 +#: libraries/mysql_charsets.lib.php:375 msgid "Hebrew" msgstr "hebraisk" -#: libraries/mysql_charsets.lib.php:386 +#: libraries/mysql_charsets.lib.php:378 msgid "Georgian" msgstr "Georgisk" -#: libraries/mysql_charsets.lib.php:389 +#: libraries/mysql_charsets.lib.php:381 msgid "Greek" msgstr "gresk" -#: libraries/mysql_charsets.lib.php:392 +#: libraries/mysql_charsets.lib.php:384 msgid "Czech-Slovak" msgstr "Tjekkoslovakisk" -#: libraries/mysql_charsets.lib.php:407 libraries/mysql_charsets.lib.php:414 +#: libraries/mysql_charsets.lib.php:399 libraries/mysql_charsets.lib.php:406 msgid "unknown" msgstr "ukjent" @@ -3371,57 +3432,57 @@ msgstr "Spørringsvindu" msgid "This format has no options" msgstr "Dette formatet har ingen valg" -#: libraries/relation.lib.php:82 +#: libraries/relation.lib.php:77 msgid "not OK" msgstr "ikke OK" -#: libraries/relation.lib.php:86 pmd_general.php:339 +#: libraries/relation.lib.php:81 pmd_general.php:339 msgid "OK" msgstr "OK" -#: libraries/relation.lib.php:87 +#: libraries/relation.lib.php:82 msgid "Enabled" msgstr "Påslått" -#: libraries/relation.lib.php:110 +#: libraries/relation.lib.php:105 msgid "Display Features" msgstr "Vis egenskaper" -#: libraries/relation.lib.php:116 +#: libraries/relation.lib.php:111 msgid "Creation of PDFs" msgstr "Lag PDF-dokumenter" -#: libraries/relation.lib.php:120 +#: libraries/relation.lib.php:115 msgid "Displaying Column Comments" msgstr "Vis kolonnekommentarer" -#: libraries/relation.lib.php:125 +#: libraries/relation.lib.php:120 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "Les i dokumentasjonen hvordan du oppdaterer din Column_comments tabell" -#: libraries/relation.lib.php:130 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 msgid "Bookmarked SQL query" msgstr "Lagret SQL-spørring" -#: libraries/relation.lib.php:134 querywindow.php:99 querywindow.php:207 +#: libraries/relation.lib.php:129 querywindow.php:98 querywindow.php:205 msgid "SQL history" msgstr "SQL-historie" -#: libraries/relation.lib.php:146 +#: libraries/relation.lib.php:141 msgid "Quick steps to setup advanced features:" msgstr "Raske steg for å sette opp avansert funksjonalitet:" -#: libraries/relation.lib.php:148 +#: libraries/relation.lib.php:143 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "Opprett nødvendige tabeller med script/create_tables.sql." -#: libraries/relation.lib.php:149 +#: libraries/relation.lib.php:144 msgid "Create a pma user and give access to these tables." msgstr "Opprett en pma bruker og gi tilgang til disse tabellene." -#: libraries/relation.lib.php:150 +#: libraries/relation.lib.php:145 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." @@ -3429,12 +3490,12 @@ msgstr "" "Slå på avansert funksjonalitet i konfigurasjonsfila (config.inc.php), f.eks. med eksempel fra config.sample.inc.php." -#: libraries/relation.lib.php:151 +#: libraries/relation.lib.php:146 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" "Re-logginn til phpMyAdmin for å laste den oppdaterte konfigurasjonsfila." -#: libraries/relation.lib.php:1158 +#: libraries/relation.lib.php:1153 msgid "no description" msgstr "ingen beskrivelse" @@ -3442,7 +3503,7 @@ msgstr "ingen beskrivelse" msgid "Slave configuration" msgstr "Slavekonfigurasjon" -#: libraries/replication_gui.lib.php:53 server_replication.php:346 +#: libraries/replication_gui.lib.php:53 server_replication.php:345 msgid "Change or reconfigure master server" msgstr "Endre eller rekonfigurer mastertjener" @@ -3456,16 +3517,12 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:711 -#: server_privileges.php:714 server_privileges.php:721 -#: server_synchronize.php:1170 +#: libraries/replication_gui.lib.php:261 server_privileges.php:710 +#: server_privileges.php:713 server_privileges.php:720 +#: server_synchronize.php:1169 msgid "User name" msgstr "Brukernavn" -#: libraries/replication_gui.lib.php:69 server_synchronize.php:1162 -msgid "Port" -msgstr "Port" - #: libraries/replication_gui.lib.php:105 msgid "Master status" msgstr "Masterstatus" @@ -3480,8 +3537,8 @@ msgid "Variable" msgstr "Variabler" #: libraries/replication_gui.lib.php:117 server_status.php:737 -#: tbl_change.php:322 tbl_printview.php:368 tbl_select.php:137 -#: tbl_structure.php:728 +#: tbl_change.php:317 tbl_printview.php:367 tbl_select.php:136 +#: tbl_structure.php:726 msgid "Value" msgstr "Verdi" @@ -3497,38 +3554,38 @@ msgstr "" "Kun slaver startet med --report-host=host_name opsjonen er synlig i denne " "lista." -#: libraries/replication_gui.lib.php:242 server_replication.php:193 +#: libraries/replication_gui.lib.php:242 server_replication.php:192 msgid "Add slave replication user" msgstr "Legg til slavereplikasjonsbruker" -#: libraries/replication_gui.lib.php:256 server_privileges.php:716 +#: libraries/replication_gui.lib.php:256 server_privileges.php:715 msgid "Any user" msgstr "Alle brukere" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1920 server_privileges.php:1950 +#: libraries/replication_gui.lib.php:348 server_privileges.php:716 +#: server_privileges.php:783 server_privileges.php:807 +#: server_privileges.php:1924 server_privileges.php:1954 msgid "Use text field" msgstr "Bruk tekstfelt" -#: libraries/replication_gui.lib.php:304 server_privileges.php:764 +#: libraries/replication_gui.lib.php:304 server_privileges.php:763 msgid "Any host" msgstr "Alle verter" -#: libraries/replication_gui.lib.php:308 server_privileges.php:768 +#: libraries/replication_gui.lib.php:308 server_privileges.php:767 msgid "Local" msgstr "Lokal" -#: libraries/replication_gui.lib.php:314 server_privileges.php:773 +#: libraries/replication_gui.lib.php:314 server_privileges.php:772 msgid "This Host" msgstr "Denne vert" -#: libraries/replication_gui.lib.php:320 server_privileges.php:779 +#: libraries/replication_gui.lib.php:320 server_privileges.php:778 msgid "Use Host Table" msgstr "Vis vert tabell" -#: libraries/replication_gui.lib.php:333 server_privileges.php:792 +#: libraries/replication_gui.lib.php:333 server_privileges.php:791 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3556,8 +3613,8 @@ msgstr "Ukjent språk: %1$s." msgid "Servers" msgstr "Tjenere" -#: libraries/server_links.inc.php:52 server_engines.php:111 -#: server_engines.php:115 server_status.php:414 test/theme.php:104 +#: libraries/server_links.inc.php:52 server_engines.php:125 +#: server_engines.php:129 server_status.php:414 test/theme.php:104 msgid "Variables" msgstr "Variabler" @@ -3578,12 +3635,12 @@ msgstr "Binærlogg" msgid "Processes" msgstr "Prosesser" -#: libraries/server_links.inc.php:91 server_synchronize.php:1091 -#: server_synchronize.php:1099 +#: libraries/server_links.inc.php:91 server_synchronize.php:1090 +#: server_synchronize.php:1098 msgid "Synchronize" msgstr "Synkroniser" -#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1109 +#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1108 msgid "Source database" msgstr "Kildedatabase" @@ -3601,7 +3658,7 @@ msgstr "Fjerntjener" msgid "Difference" msgstr "Differanse" -#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1111 +#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1110 msgid "Target database" msgstr "Måldatabase" @@ -3619,11 +3676,11 @@ msgstr "Kjør SQL spørring/spørringer mot databasen %s" msgid "Columns" msgstr "Kolonner" -#: libraries/sql_query_form.lib.php:342 sql.php:664 sql.php:665 sql.php:682 +#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "Lagre denne SQL-spørringen" -#: libraries/sql_query_form.lib.php:349 sql.php:676 +#: libraries/sql_query_form.lib.php:349 sql.php:669 msgid "Let every user access this bookmark" msgstr "La alle brukere ha adgang til dette bokmerket" @@ -3720,12 +3777,12 @@ msgstr "" "SQL-kontrolleren kunne ikke startes. Vennligst sjekk at du har installert de " "nødvendige php-tilleggene som beskrevet i %sdokumentasjonen%s." -#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:139 -#: libraries/tbl_links.inc.php:140 +#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 +#: libraries/tbl_links.inc.php:139 msgid "Table seems to be empty!" msgstr "Tabellen ser ut til å være tom!" -#: libraries/tbl_links.inc.php:148 +#: libraries/tbl_links.inc.php:147 #, php-format msgid "Tracking of %s.%s is activated." msgstr "Overvåkning av %s.%s er aktivert." @@ -3754,12 +3811,12 @@ msgstr "" "Sett inn en enkelt verdi for standard verdier uten skråstrek, anførselstegn " "eller annen "escaping" med dette formatet: a" -#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1263 -#: pdf_schema.php:1284 tbl_printview.php:142 tbl_structure.php:179 +#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1262 +#: pdf_schema.php:1283 tbl_printview.php:141 tbl_structure.php:178 msgid "Attributes" msgstr "Attributter" -#: libraries/tbl_properties.inc.php:136 +#: libraries/tbl_properties.inc.php:135 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -3768,11 +3825,11 @@ msgstr "" "For en liste over tilgjengelige transformasjonsvalg, klikk på " "%stransformasjonsbeskrivelser%s" -#: libraries/tbl_properties.inc.php:144 +#: libraries/tbl_properties.inc.php:143 msgid "Transformation options" msgstr "Transformasjonsvalg" -#: libraries/tbl_properties.inc.php:145 +#: libraries/tbl_properties.inc.php:144 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
                            If you ever need to put a backslash (\"\\\") or a single " @@ -3784,16 +3841,16 @@ msgstr "" "(\"'\") blant disse verdiene så sett en skråstrek foran (eks. '\\\\xyz' " "eller 'a\\'b')." -#: libraries/tbl_properties.inc.php:392 +#: libraries/tbl_properties.inc.php:391 msgctxt "for default" msgid "None" msgstr "Ingen" -#: libraries/tbl_properties.inc.php:393 +#: libraries/tbl_properties.inc.php:392 msgid "As defined:" msgstr "Som definert:" -#: libraries/tbl_properties.inc.php:579 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:578 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
                            Please ask the " @@ -3802,28 +3859,28 @@ msgstr "" "Ingen beskrivelse er tilgjengelig for denne transformasjonen.
                            Spør " "forfatteren hva %s gjør." -#: libraries/tbl_properties.inc.php:725 server_engines.php:57 -#: tbl_operations.php:354 +#: libraries/tbl_properties.inc.php:724 server_engines.php:56 +#: tbl_operations.php:352 msgid "Storage Engine" msgstr "Lagringsmotor" -#: libraries/tbl_properties.inc.php:754 +#: libraries/tbl_properties.inc.php:753 msgid "PARTITION definition" msgstr "Partisjonsdefinisjon" -#: libraries/tbl_properties.inc.php:775 pdf_pages.php:502 +#: libraries/tbl_properties.inc.php:774 pdf_pages.php:501 #: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214 -#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1124 tbl_indexes.php:247 -#: tbl_relation.php:565 +#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1022 tbl_indexes.php:246 +#: tbl_relation.php:563 msgid "Save" msgstr "Lagre" -#: libraries/tbl_properties.inc.php:779 tbl_structure.php:541 +#: libraries/tbl_properties.inc.php:778 tbl_structure.php:539 #, php-format msgid "Add %s column(s)" msgstr "Legg til %s kolonne(r)" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:535 +#: libraries/tbl_properties.inc.php:782 tbl_structure.php:533 msgid "You have to add at least one column." msgstr "Du må sette inn minst en kolonne." @@ -3986,8 +4043,8 @@ msgstr "Grensesnitt" msgid "Custom color" msgstr "Egendefinert farge" -#: main.php:162 pdf_pages.php:362 setup/lib/FormDisplay.tpl.php:216 -#: tbl_change.php:1173 +#: main.php:162 pdf_pages.php:361 setup/lib/FormDisplay.tpl.php:216 +#: tbl_change.php:1071 msgid "Reset" msgstr "Tilbakestill" @@ -3995,8 +4052,8 @@ msgstr "Tilbakestill" msgid "Protocol version" msgstr "Protokollversjon" -#: main.php:188 server_privileges.php:1381 server_privileges.php:1528 -#: server_privileges.php:1642 server_privileges.php:2060 +#: main.php:188 server_privileges.php:1385 server_privileges.php:1532 +#: server_privileges.php:1646 server_privileges.php:2064 #: server_processlist.php:53 msgid "User" msgstr "Bruker" @@ -4087,7 +4144,16 @@ msgstr "" "fortsatt i din phpMyAdmin mappe. Du bør fjerne den så fort phpMyAdming har " "blitt konfigurert." -#: main.php:330 +#: main.php:314 +#, php-format +msgid "" +"The additional features for working with linked tables have been " +"deactivated. To find out why click %shere%s." +msgstr "" +"Tilleggsfunksjonene for å kunne jobbe med koblede tabeller er deaktivert. " +"For å finne ut hvorfor, klikk %sher%s." + +#: main.php:329 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " @@ -4097,7 +4163,7 @@ msgstr "" "phpMyAdmin funksjonalitet vil mangle. F.eks. navigasjonsrammen vil ikke " "oppdatere seg automatisk." -#: main.php:345 +#: main.php:344 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -4106,7 +4172,7 @@ msgstr "" "Din PHP MySQL bibliotekfilversjon %s er forskjellig fra din MySQL " "tjenerversjon %s. Dette kan forårsake uforutsett oppførsel." -#: main.php:357 +#: main.php:356 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -4119,62 +4185,62 @@ msgstr "" msgid "Reload navigation frame" msgstr "Endre navigasjonsrammen" -#: navigation.php:204 server_databases.php:370 server_synchronize.php:1190 +#: navigation.php:203 server_databases.php:368 server_synchronize.php:1189 msgid "No databases" msgstr "Ingen databaser" -#: navigation.php:298 +#: navigation.php:297 msgid "Filter" msgstr "Filter" -#: navigation.php:299 setup/frames/index.inc.php:218 +#: navigation.php:298 setup/frames/index.inc.php:218 #: setup/lib/messages.inc.php:41 msgid "Clear" msgstr "Fjern" -#: navigation.php:330 navigation.php:331 +#: navigation.php:329 navigation.php:330 msgctxt "short form" msgid "Create table" msgstr "Opprett tabell" -#: navigation.php:333 navigation.php:495 +#: navigation.php:332 navigation.php:494 msgid "Please select a database" msgstr "Vennligst velg en database" -#: pdf_pages.php:40 pdf_pages.php:46 pdf_pages.php:52 pdf_pages.php:57 +#: pdf_pages.php:39 pdf_pages.php:45 pdf_pages.php:51 pdf_pages.php:56 #, php-format msgid "%s table not found or not set in %s" msgstr "%s tabellen ble ikke funnet eller ikke konfigurert i %s" -#: pdf_pages.php:265 +#: pdf_pages.php:264 msgid "Please choose a page to edit" msgstr "Vennligst velg en side for redigering" -#: pdf_pages.php:303 pmd_pdf.php:113 +#: pdf_pages.php:302 pmd_pdf.php:111 msgid "Create a page" msgstr "Lag en ny side" -#: pdf_pages.php:309 +#: pdf_pages.php:308 msgid "Page name" msgstr "Sidenummer" -#: pdf_pages.php:313 +#: pdf_pages.php:312 msgid "Automatic layout based on" msgstr "Automatisk disposisjon" -#: pdf_pages.php:315 +#: pdf_pages.php:314 msgid "Internal relations" msgstr "Interne relasjoner" -#: pdf_pages.php:338 +#: pdf_pages.php:337 msgid "Select Tables" msgstr "Velg tabeller" -#: pdf_pages.php:361 +#: pdf_pages.php:360 msgid "Toggle scratchboard" msgstr "slå av/på kladdevindu" -#: pdf_pages.php:524 +#: pdf_pages.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -4182,35 +4248,35 @@ msgstr "" "Den nåværende siden har referanser til tabeller som ikke lenger eksisterer. " "Vil du slette disse referansene?" -#: pdf_schema.php:635 +#: pdf_schema.php:634 #, php-format msgid "The %s table doesn't exist!" msgstr "Tabellen %s eksisterer ikke!" -#: pdf_schema.php:671 +#: pdf_schema.php:670 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Vennligst konfigurer koordinatene for tabell %s" -#: pdf_schema.php:994 +#: pdf_schema.php:993 #, php-format msgid "Schema of the %s database - Page %s" msgstr "Skjema for %s databasen - Side %s" -#: pdf_schema.php:1012 +#: pdf_schema.php:1011 msgid "No tables" msgstr "Ingen tabeller" -#: pdf_schema.php:1031 pdf_schema.php:1140 +#: pdf_schema.php:1030 pdf_schema.php:1139 msgid "Relational schema" msgstr "Relasjonsskjema" -#: pdf_schema.php:1115 +#: pdf_schema.php:1114 msgid "Table of contents" msgstr "Innholdsfortegnelse" -#: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:145 -#: tbl_structure.php:182 tbl_tracking.php:277 +#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 +#: tbl_structure.php:181 tbl_tracking.php:272 msgid "Extra" msgstr "Ekstra" @@ -4222,7 +4288,7 @@ msgstr "Skjul/Vis venstre meny" msgid "Save position" msgstr "Lagre posisjon" -#: pmd_general.php:70 server_synchronize.php:428 server_synchronize.php:871 +#: pmd_general.php:70 server_synchronize.php:427 server_synchronize.php:870 msgid "Create table" msgstr "Opprett tabell" @@ -4296,31 +4362,31 @@ msgstr "" "visningskolonne, klikk på \"Velg kolonne for visning\" ikonet, klikk så på " "det aktuelle kolonnenavnet." -#: pmd_pdf.php:62 +#: pmd_pdf.php:60 msgid "Page has been created" msgstr "Siden har blitt opprettet" -#: pmd_pdf.php:64 +#: pmd_pdf.php:62 msgid "Page creation failed" msgstr "Sideopprettelsen feilet" -#: pmd_pdf.php:84 +#: pmd_pdf.php:82 msgid "Export/Import to scale" msgstr "Eksporter/Importer til skala" -#: pmd_pdf.php:88 +#: pmd_pdf.php:86 msgid "recommended" msgstr "anbefalt" -#: pmd_pdf.php:93 +#: pmd_pdf.php:91 msgid "to/from page" msgstr "til/fra side" -#: querywindow.php:94 +#: querywindow.php:93 msgid "Import files" msgstr "Importer filer" -#: querywindow.php:105 +#: querywindow.php:104 msgid "All" msgstr "Alle" @@ -4366,63 +4432,63 @@ msgstr "Informasjon" msgid "Character Sets and Collations" msgstr "Tegnsett og sammenligninger" -#: server_databases.php:51 +#: server_databases.php:49 msgid "No databases selected." msgstr "Ingen databaser er valgt." -#: server_databases.php:62 +#: server_databases.php:60 #, php-format msgid "%s databases have been dropped successfully." msgstr "%s databasene har blitt slettet." -#: server_databases.php:87 +#: server_databases.php:85 msgid "Databases statistics" msgstr "Statistikk for databaser" -#: server_databases.php:116 server_status.php:370 +#: server_databases.php:114 server_status.php:370 #: setup/lib/messages.inc.php:114 msgid "Tables" msgstr "Tabeller" -#: server_databases.php:194 server_replication.php:180 -#: server_replication.php:208 +#: server_databases.php:192 server_replication.php:179 +#: server_replication.php:207 msgid "Master replication" msgstr "Masterreplikasjon" -#: server_databases.php:196 server_replication.php:247 +#: server_databases.php:194 server_replication.php:246 msgid "Slave replication" msgstr "Slavereplikasjon" -#: server_databases.php:229 +#: server_databases.php:227 msgid "Jump to database" msgstr "Gå til database" -#: server_databases.php:266 +#: server_databases.php:264 msgid "Not replicated" msgstr "Ikke replikert" -#: server_databases.php:272 +#: server_databases.php:270 msgid "Replicated" msgstr "Replikert" -#: server_databases.php:288 +#: server_databases.php:286 #, php-format msgid "Check privileges for database "%s"." msgstr "Kontroller privilegier for databasen "%s"." -#: server_databases.php:292 server_databases.php:293 +#: server_databases.php:290 server_databases.php:291 msgid "Check Privileges" msgstr "Kontroller privilegier" -#: server_databases.php:357 server_databases.php:358 +#: server_databases.php:355 server_databases.php:356 msgid "Enable Statistics" msgstr "Slå på statistikk" -#: server_databases.php:361 server_databases.php:362 +#: server_databases.php:359 server_databases.php:360 msgid "Disable Statistics" msgstr "Slå av statistikk" -#: server_databases.php:365 +#: server_databases.php:363 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -4430,121 +4496,121 @@ msgstr "" "OBS: Når du slår på databasestatistikk så kan det medføre stor traffik " "mellom webtjeneren og MySQL-tjeneren." -#: server_engines.php:48 +#: server_engines.php:47 msgid "Storage Engines" msgstr "Lagringsmotorer" -#: server_export.php:20 +#: server_export.php:18 msgid "View dump (schema) of databases" msgstr "Vis dumpet skjema av databaser" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:23 server_privileges.php:265 msgid "Includes all privileges except GRANT." msgstr "Inkluder alle privilegier unntatt GRANT." -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:24 server_privileges.php:191 +#: server_privileges.php:514 msgid "Allows altering the structure of existing tables." msgstr "Tillater endring av struktur på eksisterende tabeller." -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:25 server_privileges.php:207 +#: server_privileges.php:520 msgid "Allows altering and dropping stored routines." msgstr "Tillater endring og sletting av lagrede rutiner." -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:26 server_privileges.php:183 +#: server_privileges.php:513 msgid "Allows creating new databases and tables." msgstr "Tillater oppretting av nye databaser og tabeller." -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:27 server_privileges.php:206 +#: server_privileges.php:519 msgid "Allows creating stored routines." msgstr "Tillater oppreting av lagrede rutiner." -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:513 msgid "Allows creating new tables." msgstr "Tillater oppretting av nye tabeller." -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:29 server_privileges.php:194 +#: server_privileges.php:517 msgid "Allows creating temporary tables." msgstr "Tillater oppretting av midlertidige tabeller." -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:30 server_privileges.php:208 +#: server_privileges.php:553 msgid "Allows creating, dropping and renaming user accounts." msgstr "Tillater oppretting, sletting og navneendring av brukerkontoer." -#: server_privileges.php:32 server_privileges.php:199 -#: server_privileges.php:203 server_privileges.php:526 -#: server_privileges.php:530 +#: server_privileges.php:31 server_privileges.php:198 +#: server_privileges.php:202 server_privileges.php:525 +#: server_privileges.php:529 msgid "Allows creating new views." msgstr "Tillater oppretting av nye visninger." -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:32 server_privileges.php:182 +#: server_privileges.php:505 msgid "Allows deleting data." msgstr "Tillater sletting av data." -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:33 server_privileges.php:184 +#: server_privileges.php:516 msgid "Allows dropping databases and tables." msgstr "Tillater sletting av databaser og tabeller." -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:34 server_privileges.php:516 msgid "Allows dropping tables." msgstr "Tillater sletting av tabeller." -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:35 server_privileges.php:199 +#: server_privileges.php:533 msgid "Allows to set up events for the event scheduler" msgstr "Tillater å sette opp hendelser for hendelseskalenderen" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:36 server_privileges.php:209 +#: server_privileges.php:521 msgid "Allows executing stored routines." msgstr "Tillater utføring av lagrede rutiner." -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:37 server_privileges.php:188 +#: server_privileges.php:508 msgid "Allows importing data from and exporting data into files." msgstr "Tillater import og eksport av data til og fra filer." -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:38 server_privileges.php:539 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Tillater å legge til brukere og privilegier uten å oppfriske " "privilegietabellene." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:515 msgid "Allows creating and dropping indexes." msgstr "Tillater oppretting og sletting av indekser." -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:40 server_privileges.php:180 +#: server_privileges.php:441 server_privileges.php:503 msgid "Allows inserting and replacing data." msgstr "Tillater å legge til og erstatte data." -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:41 server_privileges.php:195 +#: server_privileges.php:548 msgid "Allows locking tables for the current thread." msgstr "Tillater låsing av tabeller for den kjørende tråden." -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:42 server_privileges.php:645 +#: server_privileges.php:647 msgid "Limits the number of new connections the user may open per hour." msgstr "Begrenser antall nye tilkoblinger brukeren kan åpne per time." -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:43 server_privileges.php:633 +#: server_privileges.php:635 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Begrenser antall spørringer brukeren kan sende til tjeneren per time." -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:44 server_privileges.php:639 +#: server_privileges.php:641 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -4552,61 +4618,61 @@ msgstr "" "Begrenser antall kommandoer som kan endre tabeller eller databaser brukeren " "kan utføre per time." -#: server_privileges.php:46 server_privileges.php:652 -#: server_privileges.php:654 +#: server_privileges.php:45 server_privileges.php:651 +#: server_privileges.php:653 msgid "Limits the number of simultaneous connections the user may have." msgstr "Begrens antall samtidige tilkoblinger brukeren kan ha." -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:46 server_privileges.php:187 +#: server_privileges.php:543 msgid "Allows viewing processes of all users" msgstr "Tillater visning av prosessene til alle brukere" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:47 server_privileges.php:189 +#: server_privileges.php:447 server_privileges.php:549 msgid "Has no effect in this MySQL version." msgstr "har ingen effekt i denne versjonen av MySQL." -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:48 server_privileges.php:185 +#: server_privileges.php:544 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Tillater oppfrisking av tjenerinnstillinger og oppfrisking av mellomlager." -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:197 +#: server_privileges.php:551 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Gir tillatelse til brukeren til å spørre hvor replikasjonsslaver eller -" "tjenere er." -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:50 server_privileges.php:196 +#: server_privileges.php:552 msgid "Needed for the replication slaves." msgstr "Trenges av replikasjonsslavene." -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:51 server_privileges.php:179 +#: server_privileges.php:438 server_privileges.php:502 msgid "Allows reading data." msgstr "Tillater lesing av data." -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:52 server_privileges.php:192 +#: server_privileges.php:546 msgid "Gives access to the complete list of databases." msgstr "Gir adgang til komplett liste over databaser." -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:53 server_privileges.php:203 +#: server_privileges.php:205 server_privileges.php:518 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Tillater utføring av SHOW CREATE VIEW spørringer." -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:54 server_privileges.php:186 +#: server_privileges.php:545 msgid "Allows shutting down the server." msgstr "Tillater avslutting av tjener." -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:55 server_privileges.php:193 +#: server_privileges.php:542 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -4616,152 +4682,152 @@ msgstr "" "fleste administrative operasjoner som å sette globale variabler eller " "avslutting av andre brukeres tråder." -#: server_privileges.php:57 server_privileges.php:201 -#: server_privileges.php:535 +#: server_privileges.php:56 server_privileges.php:200 +#: server_privileges.php:534 msgid "Allows creating and dropping triggers" msgstr "Tillater opprettelse og sletting av triggere" -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:57 server_privileges.php:181 +#: server_privileges.php:444 server_privileges.php:504 msgid "Allows changing data." msgstr "Tillater endring av data." -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:58 server_privileges.php:259 msgid "No privileges." msgstr "Ingen privilegier." -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:301 server_privileges.php:302 msgctxt "None privileges" msgid "None" msgstr "Ingen" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1710 server_privileges.php:1716 +#: server_privileges.php:430 server_privileges.php:565 +#: server_privileges.php:1714 server_privileges.php:1720 msgid "Table-specific privileges" msgstr "Tabell-spesifikke privilegier" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1532 +#: server_privileges.php:431 server_privileges.php:573 +#: server_privileges.php:1536 msgid " Note: MySQL privilege names are expressed in English " msgstr "OBS: MySQL privilegiumnavn er på engelsk" -#: server_privileges.php:563 server_privileges.php:1531 +#: server_privileges.php:562 server_privileges.php:1535 msgid "Global privileges" msgstr "Globale privilegier" -#: server_privileges.php:565 server_privileges.php:1710 +#: server_privileges.php:564 server_privileges.php:1714 msgid "Database-specific privileges" msgstr "Databasespesifikke privilegier" -#: server_privileges.php:610 +#: server_privileges.php:609 msgid "Administration" msgstr "Administrasjon" -#: server_privileges.php:630 +#: server_privileges.php:629 msgid "Resource limits" msgstr "Ressursbegrensninger" -#: server_privileges.php:631 +#: server_privileges.php:630 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Merk: Ved å sette disse til 0 (null) fjernes begrensningen." -#: server_privileges.php:708 +#: server_privileges.php:707 msgid "Login Information" msgstr "Innlogingsinformasjon" -#: server_privileges.php:802 +#: server_privileges.php:801 msgid "Do not change the password" msgstr "Ikke endre passordet" -#: server_privileges.php:835 server_privileges.php:2197 +#: server_privileges.php:834 server_privileges.php:2201 msgid "No user found." msgstr "Ingen bruker(e) funnet." -#: server_privileges.php:879 +#: server_privileges.php:878 #, php-format msgid "The user %s already exists!" msgstr "Brukeren %s finnes fra før!" -#: server_privileges.php:962 +#: server_privileges.php:961 msgid "You have added a new user." msgstr "Du har lagt til en ny bruker." -#: server_privileges.php:1183 +#: server_privileges.php:1184 #, php-format msgid "You have updated the privileges for %s." msgstr "Du har oppdatert privilegiene til %s." -#: server_privileges.php:1207 +#: server_privileges.php:1208 #, php-format msgid "You have revoked the privileges for %s" msgstr "Du har fjernet privilegiene til %s" -#: server_privileges.php:1243 +#: server_privileges.php:1244 #, php-format msgid "The password for %s was changed successfully." msgstr "Passordet til %s er endret." -#: server_privileges.php:1263 +#: server_privileges.php:1264 #, php-format msgid "Deleting %s" msgstr "Sletter %s" -#: server_privileges.php:1274 +#: server_privileges.php:1275 msgid "No users selected for deleting!" msgstr "Ingen brukere merket for sletting!" -#: server_privileges.php:1277 +#: server_privileges.php:1278 msgid "Reloading the privileges" msgstr "Oppfrisker privilegiene" -#: server_privileges.php:1292 +#: server_privileges.php:1296 msgid "The selected users have been deleted successfully." msgstr "De valgte brukerne har blitt slettet." -#: server_privileges.php:1327 +#: server_privileges.php:1331 msgid "The privileges were reloaded successfully." msgstr "Oppfriskingen av privilegiene lyktes." -#: server_privileges.php:1355 server_privileges.php:1641 +#: server_privileges.php:1359 server_privileges.php:1645 msgid "Edit Privileges" msgstr "Rediger privilegier" -#: server_privileges.php:1364 +#: server_privileges.php:1368 msgid "Revoke" msgstr "Tilbakekall" -#: server_privileges.php:1396 +#: server_privileges.php:1400 msgid "User overview" msgstr "Brukeroversikt" -#: server_privileges.php:1533 server_privileges.php:1715 -#: server_privileges.php:2064 +#: server_privileges.php:1537 server_privileges.php:1719 +#: server_privileges.php:2068 msgid "Grant" msgstr "Rettighet" -#: server_privileges.php:1552 server_privileges.php:2154 +#: server_privileges.php:1556 server_privileges.php:2158 msgid "Any" msgstr "Alle" -#: server_privileges.php:1601 server_privileges.php:1625 -#: server_privileges.php:2019 server_privileges.php:2208 +#: server_privileges.php:1605 server_privileges.php:1629 +#: server_privileges.php:2023 server_privileges.php:2212 msgid "Add a new User" msgstr "Legg til en ny bruker" -#: server_privileges.php:1606 +#: server_privileges.php:1610 msgid "Remove selected users" msgstr "Fjern valgte brukere" -#: server_privileges.php:1609 +#: server_privileges.php:1613 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Tilbakekall alle aktive privilegier fra brukerne og slett dem etterpå." -#: server_privileges.php:1610 server_privileges.php:1611 -#: server_privileges.php:1612 +#: server_privileges.php:1614 server_privileges.php:1615 +#: server_privileges.php:1616 msgid "Drop the databases that have the same names as the users." msgstr "Slett databasene som har det samme navnet som brukerne." -#: server_privileges.php:1628 +#: server_privileges.php:1632 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4774,91 +4840,91 @@ msgstr "" "privilegiene tjeneren bruker hvis det er utført manuelle endringer på den. I " "så fall bør du %soppfriske privilegiene%s før du fortsetter." -#: server_privileges.php:1676 +#: server_privileges.php:1680 msgid "The selected user was not found in the privilege table." msgstr "Den valgte brukeren ble ikke funnet i privilegietabellen." -#: server_privileges.php:1716 +#: server_privileges.php:1720 msgid "Column-specific privileges" msgstr "Kolonne-spesifikke privilegier" -#: server_privileges.php:1917 +#: server_privileges.php:1921 msgid "Add privileges on the following database" msgstr "Legg til privilegier til følgende database" -#: server_privileges.php:1935 +#: server_privileges.php:1939 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "Jokertegnene _ og % må beskyttes med en \\ for å bruke dem direkte" -#: server_privileges.php:1938 +#: server_privileges.php:1942 msgid "Add privileges on the following table" msgstr "Legg til privilegier til følgende tabell" -#: server_privileges.php:1995 +#: server_privileges.php:1999 msgid "Change Login Information / Copy User" msgstr "Endre innloggingsinformasjon / kopiere bruker" -#: server_privileges.php:1998 +#: server_privileges.php:2002 msgid "Create a new user with the same privileges and ..." msgstr "Opprett ny bruker med de samme privilegier og ..." -#: server_privileges.php:2000 +#: server_privileges.php:2004 msgid "... keep the old one." msgstr "... behold den gamle." -#: server_privileges.php:2001 +#: server_privileges.php:2005 msgid " ... delete the old one from the user tables." msgstr " ... slett den gamle fra brukertabellene." -#: server_privileges.php:2002 +#: server_privileges.php:2006 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "" " ... tilbakekall alle aktive privilegier fra den gamle og slett den etterpå." -#: server_privileges.php:2003 +#: server_privileges.php:2007 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" " ... slett den gamle fra brukertabellene og deretter oppfrisk privilegiene." -#: server_privileges.php:2025 +#: server_privileges.php:2029 msgid "Database for user" msgstr "Brukerdatabase" -#: server_privileges.php:2029 +#: server_privileges.php:2033 msgctxt "Create none database for user" msgid "None" msgstr "Ingen" -#: server_privileges.php:2030 +#: server_privileges.php:2034 msgid "Create database with same name and grant all privileges" msgstr "Opprett database med samme navn og gi alle rettigheter" -#: server_privileges.php:2031 +#: server_privileges.php:2035 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Gi alle rettigheter på jokertegnavn (username\\_%)" -#: server_privileges.php:2034 +#: server_privileges.php:2038 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Gi alle privilegier for databasen "%s"" -#: server_privileges.php:2057 +#: server_privileges.php:2061 #, php-format msgid "Users having access to "%s"" msgstr "Brukere som har adgang til "%s"" -#: server_privileges.php:2165 +#: server_privileges.php:2169 msgid "global" msgstr "global" -#: server_privileges.php:2167 +#: server_privileges.php:2171 msgid "database-specific" msgstr "databasespesifikk" -#: server_privileges.php:2169 +#: server_privileges.php:2173 msgid "wildcard" msgstr "jokertegn" @@ -4878,43 +4944,43 @@ msgstr "" msgid "ID" msgstr "ID" -#: server_replication.php:50 +#: server_replication.php:49 msgid "Unknown error" msgstr "Ukjent feil" -#: server_replication.php:57 +#: server_replication.php:56 #, php-format msgid "Unable to connect to master %s." msgstr "Kan ikke koble til master %s." -#: server_replication.php:64 +#: server_replication.php:63 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" "Kan ikke lese masterloggposisjon. Muligens privilegieproblem på master." -#: server_replication.php:70 +#: server_replication.php:69 msgid "Unable to change master" msgstr "Kan ikke endre master" -#: server_replication.php:73 +#: server_replication.php:72 #, php-format msgid "Master server changed succesfully to %s" msgstr "Mastertjener endret til %s" -#: server_replication.php:181 +#: server_replication.php:180 msgid "This server is configured as master in a replication process." msgstr "Denne tjeneren er konfigurert som master i en replikasjonsprosess." -#: server_replication.php:183 server_status.php:391 +#: server_replication.php:182 server_status.php:391 msgid "Show master status" msgstr "Vis masterstatus" -#: server_replication.php:186 +#: server_replication.php:185 msgid "Show connected slaves" msgstr "Vis tilkoblede slaver" -#: server_replication.php:209 +#: server_replication.php:208 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -4923,11 +4989,11 @@ msgstr "" "Denne tjeneren er ikke konfigurert som master i en replikasjonsprosess. " "Ønsker du å konfigurere den?" -#: server_replication.php:216 +#: server_replication.php:215 msgid "Master configuration" msgstr "Masterkonfigurering" -#: server_replication.php:217 +#: server_replication.php:216 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -4941,19 +5007,19 @@ msgstr "" "databasene) eller du kan velge å ignorere alle databaser som standard og " "tillate bare enkelte databaser å bli replikert. Vennligst velg modus:" -#: server_replication.php:220 +#: server_replication.php:219 msgid "Replicate all databases; Ignore:" msgstr "Repliker alle databaser; Ignorer:" -#: server_replication.php:221 +#: server_replication.php:220 msgid "Ignore all databases; Replicate:" msgstr "Ignorer alle databaser; repliker:" -#: server_replication.php:224 +#: server_replication.php:223 msgid "Please select databases:" msgstr "Vennligst velg databaser:" -#: server_replication.php:227 +#: server_replication.php:226 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -4961,7 +5027,7 @@ msgstr "" "Legg til følgende linjer på slutten av din my.cnf og restart MySQL tjeneren " "etterpå.." -#: server_replication.php:229 +#: server_replication.php:228 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " @@ -4971,82 +5037,82 @@ msgstr "" "vil du se en melding som informerer deg at denne tjeneren er " "konfigurert som master" -#: server_replication.php:292 +#: server_replication.php:291 msgid "Slave SQL Thread not running!" msgstr "Slave SQL Thread kjører ikke!" -#: server_replication.php:295 +#: server_replication.php:294 msgid "Slave IO Thread not running!" msgstr "Slave IO Thread kjører ikke!" -#: server_replication.php:304 +#: server_replication.php:303 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "Tjener er konfigurert som slave i en replikasjonsprosess. Ønsker du å:" -#: server_replication.php:307 +#: server_replication.php:306 msgid "See slave status table" msgstr "Se slavestatustabell" -#: server_replication.php:310 +#: server_replication.php:309 msgid "Synchronize databases with master" msgstr "Synkroniser databaser med master" -#: server_replication.php:321 +#: server_replication.php:320 msgid "Control slave:" msgstr "Kontrollslave:" -#: server_replication.php:324 +#: server_replication.php:323 msgid "Full start" msgstr "Full start" -#: server_replication.php:324 +#: server_replication.php:323 msgid "Full stop" msgstr "Full stopp" -#: server_replication.php:325 +#: server_replication.php:324 msgid "Reset slave" msgstr "Resett slave" -#: server_replication.php:326 +#: server_replication.php:325 #, php-format msgid "SQL Thread %s only" msgstr "Kun SQL tråd %s" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 msgid "Start" msgstr "Start" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 msgid "Stop" msgstr "Stopp" -#: server_replication.php:327 +#: server_replication.php:326 #, php-format msgid "IO Thread %s only" msgstr "Kun IO tråd %s" -#: server_replication.php:331 +#: server_replication.php:330 msgid "Error management:" msgstr "Feilbehandling:" -#: server_replication.php:333 +#: server_replication.php:332 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "Å hoppe over feil kan føre til usynkroniserte master og slave!" -#: server_replication.php:335 +#: server_replication.php:334 msgid "Skip current error" msgstr "Hopp over nåværende feil" -#: server_replication.php:336 +#: server_replication.php:335 msgid "Skip next" msgstr "Hopp over neste" -#: server_replication.php:339 +#: server_replication.php:338 msgid "errors." msgstr "feil." -#: server_replication.php:354 +#: server_replication.php:353 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -5874,110 +5940,110 @@ msgstr "Spørringstype" msgid "Replication status" msgstr "Replikasjonsstatus" -#: server_synchronize.php:93 +#: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "Kunne ikke koble til kilden" -#: server_synchronize.php:96 +#: server_synchronize.php:95 msgid "Could not connect to the target" msgstr "Kunne ikke koble til målet" -#: server_synchronize.php:121 server_synchronize.php:124 tbl_create.php:77 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "'%s' database eksisterer ikke." -#: server_synchronize.php:264 +#: server_synchronize.php:263 msgid "Structure Synchronization" msgstr "Struktursynkronisering" -#: server_synchronize.php:271 +#: server_synchronize.php:270 msgid "Data Synchronization" msgstr "Datasynkronisering" -#: server_synchronize.php:399 server_synchronize.php:838 +#: server_synchronize.php:398 server_synchronize.php:837 msgid "not present" msgstr "ikke tilstede" -#: server_synchronize.php:423 server_synchronize.php:866 +#: server_synchronize.php:422 server_synchronize.php:865 msgid "Structure Difference" msgstr "Strukturdifferanse" -#: server_synchronize.php:424 server_synchronize.php:867 +#: server_synchronize.php:423 server_synchronize.php:866 msgid "Data Difference" msgstr "Datadifferanse" -#: server_synchronize.php:429 server_synchronize.php:872 +#: server_synchronize.php:428 server_synchronize.php:871 msgid "Add column(s)" msgstr "Legg til kolonne(r)" -#: server_synchronize.php:430 server_synchronize.php:873 +#: server_synchronize.php:429 server_synchronize.php:872 msgid "Remove column(s)" msgstr "Fjern kolonne(r)" -#: server_synchronize.php:431 server_synchronize.php:874 +#: server_synchronize.php:430 server_synchronize.php:873 msgid "Alter column(s)" msgstr "Endre kolonne(r)" -#: server_synchronize.php:432 server_synchronize.php:875 +#: server_synchronize.php:431 server_synchronize.php:874 msgid "Remove index(s)" msgstr "Fjern indeks(er)" -#: server_synchronize.php:433 server_synchronize.php:876 +#: server_synchronize.php:432 server_synchronize.php:875 msgid "Apply index(s)" msgstr "Utfør indeks(er)" -#: server_synchronize.php:434 server_synchronize.php:877 +#: server_synchronize.php:433 server_synchronize.php:876 msgid "Update row(s)" msgstr "Oppdater rad(er)" -#: server_synchronize.php:435 server_synchronize.php:878 +#: server_synchronize.php:434 server_synchronize.php:877 msgid "Insert row(s)" msgstr "Sett inn rad(er)" -#: server_synchronize.php:445 server_synchronize.php:889 +#: server_synchronize.php:444 server_synchronize.php:888 msgid "Would you like to delete all the previous rows from target tables?" msgstr "Ønsker du å slette alle tidligere rader fra måltabeller?" -#: server_synchronize.php:448 server_synchronize.php:893 +#: server_synchronize.php:447 server_synchronize.php:892 msgid "Apply Selected Changes" msgstr "Utfør valgte endringer" -#: server_synchronize.php:450 server_synchronize.php:895 +#: server_synchronize.php:449 server_synchronize.php:894 msgid "Synchronize Databases" msgstr "Synkroniser databaser" -#: server_synchronize.php:463 +#: server_synchronize.php:462 msgid "Selected target tables have been synchronized with source tables." msgstr "Valgte måltabeller har blitt synkronisert med kildetabeller." -#: server_synchronize.php:941 +#: server_synchronize.php:940 msgid "Target database has been synchronized with source database" msgstr "Måldatabase har blitt synkronisert med kildedatabase" -#: server_synchronize.php:1002 +#: server_synchronize.php:1001 msgid "The following queries have been executed:" msgstr "Følgende spørringer har blitt utført:" -#: server_synchronize.php:1121 +#: server_synchronize.php:1120 msgid "Enter manually" msgstr "Skriv inn manuelt" -#: server_synchronize.php:1122 +#: server_synchronize.php:1121 msgid "Current connection" msgstr "Nåværende tilkobling" -#: server_synchronize.php:1151 +#: server_synchronize.php:1150 #, php-format msgid "Configuration: %s" msgstr "Konfigurasjon: %s" -#: server_synchronize.php:1166 +#: server_synchronize.php:1165 msgid "Socket" msgstr "Socket" -#: server_synchronize.php:1212 +#: server_synchronize.php:1211 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -6566,10 +6632,15 @@ msgid "Signon login options" msgstr "Signon innloggingsinnstillinger" #: setup/lib/messages.inc.php:128 +#, fuzzy +#| msgid "" +#| "Configure phpMyAdmin database to gain access to additional features, see " +#| "[a@../Documentation.html#linked-tables]linked-tables infrastructure[/a] " +#| "in documentation" msgid "" "Configure phpMyAdmin database to gain access to additional features, see " -"[a@../Documentation.html#linked-tables]linked-tables infrastructure[/a] in " -"documentation" +"[a@../Documentation.html#linked-tables]phpMyAdmin configuration storage[/a] " +"in documentation" msgstr "" "Konfigurer phpMyAdmin databasen for å få tilgang til ekstra egenskaper, se " "[a@../Documentation.html#linked-tables]lenkede-tabeller infrastruktur[/a] i " @@ -7738,115 +7809,114 @@ msgstr "" msgid "ZIP" msgstr "ZIP" -#: sql.php:495 tbl_replace.php:385 +#: sql.php:494 tbl_replace.php:384 #, php-format msgid "Inserted row id: %1$d" msgstr "Insatt rad id: %1$d" -#: sql.php:512 +#: sql.php:511 msgid "Showing as PHP code" msgstr "Viser som PHP kode" -#: sql.php:515 tbl_replace.php:359 +#: sql.php:514 tbl_replace.php:358 msgid "Showing SQL query" msgstr "Viser SQL spørring" -#: sql.php:517 -#| msgid "Validate SQL" +#: sql.php:516 msgid "Validated SQL" msgstr "Validert SQL" -#: sql.php:638 +#: sql.php:631 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemer med indeksene i tabellen `%s`" -#: sql.php:670 +#: sql.php:663 msgid "Label" msgstr "Navn" -#: tbl_addfield.php:188 tbl_alter.php:102 tbl_indexes.php:97 +#: tbl_addfield.php:185 tbl_alter.php:100 tbl_indexes.php:97 #, php-format msgid "Table %1$s has been altered successfully" msgstr "Tabellen %1$s har blitt endrett" -#: tbl_change.php:250 tbl_select.php:26 tbl_select.php:27 tbl_select.php:30 -#: tbl_select.php:33 +#: tbl_change.php:245 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_select.php:32 msgid "Browse foreign values" msgstr "Se de eksterne verdiene" -#: tbl_change.php:280 tbl_change.php:318 +#: tbl_change.php:275 tbl_change.php:313 msgid "Function" msgstr "Funksjon" -#: tbl_change.php:300 tbl_indexes.php:199 tbl_indexes.php:224 +#: tbl_change.php:295 tbl_indexes.php:198 tbl_indexes.php:223 msgid "Ignore" msgstr "Ignorer" -#: tbl_change.php:725 +#: tbl_change.php:720 msgid " Because of its length,
                            this column might not be editable " msgstr "" " På grunn av sin lengde,
                            så vil muligens denne kolonnen ikke være " "redigerbar" -#: tbl_change.php:884 +#: tbl_change.php:835 msgid "Remove BLOB Repository Reference" msgstr "Fjern BLOB lager referanse" -#: tbl_change.php:890 +#: tbl_change.php:841 msgid "Binary - do not edit" msgstr " Binær - må ikke redigeres " -#: tbl_change.php:983 +#: tbl_change.php:889 msgid "Upload to BLOB repository" msgstr "Last opp til BLOB lager" -#: tbl_change.php:1128 +#: tbl_change.php:1026 msgid "Insert as new row" msgstr "Sett inn som ny rad" -#: tbl_change.php:1129 +#: tbl_change.php:1027 msgid "Insert as new row and ignore errors" msgstr "Sett inn som ny rad og ignorer feil" -#: tbl_change.php:1130 +#: tbl_change.php:1028 msgid "Show insert query" msgstr "Viser SQL spørring" -#: tbl_change.php:1145 +#: tbl_change.php:1043 msgid "Go back to previous page" msgstr "Returner" -#: tbl_change.php:1146 +#: tbl_change.php:1044 msgid "Insert another new row" msgstr "Sett inn en ny post" -#: tbl_change.php:1150 +#: tbl_change.php:1048 msgid "Go back to this page" msgstr "Tilbake til denne siden" -#: tbl_change.php:1158 +#: tbl_change.php:1056 msgid "Edit next row" msgstr "Rediger neste rad" -#: tbl_change.php:1169 +#: tbl_change.php:1067 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Bruk TAB tasten for å flytte fra verdi til verdi, eller CTRL+piltastene for " "å bevege deg hvor som helst" -#: tbl_change.php:1207 +#: tbl_change.php:1105 #, php-format msgid "Restart insertion with %s rows" msgstr "Restarte innsettinga med %s rader" -#: tbl_create.php:57 +#: tbl_create.php:55 #, php-format msgid "Table %s already exists!" msgstr "Tabel %s eksisterer allerede!" -#: tbl_create.php:244 +#: tbl_create.php:241 #, php-format msgid "Table %1$s has been created." msgstr "Tabellen %1$s har blitt opprettet." @@ -7867,193 +7937,193 @@ msgstr "Kan ikke endre indeks til PRIMARY!" msgid "No index parts defined!" msgstr "Ingen indeksdeler definert!" -#: tbl_indexes.php:159 +#: tbl_indexes.php:158 msgid "Create a new index" msgstr "Lag en ny indeks" -#: tbl_indexes.php:161 +#: tbl_indexes.php:160 msgid "Modify an index" msgstr "Endre en indeks" -#: tbl_indexes.php:167 +#: tbl_indexes.php:166 msgid "Index name:" msgstr "Indeksnavn :" -#: tbl_indexes.php:173 +#: tbl_indexes.php:172 msgid "Index type:" msgstr "Indekstype :" -#: tbl_indexes.php:183 +#: tbl_indexes.php:182 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" "(\"PRIMARY\" være navnet til og bare til en primærnøkkel!)" -#: tbl_indexes.php:250 +#: tbl_indexes.php:249 #, php-format msgid "Add to index  %s column(s)" msgstr "Legg til indeks %s kolonne(r)" -#: tbl_indexes.php:255 tbl_structure.php:588 tbl_structure.php:599 +#: tbl_indexes.php:254 tbl_structure.php:586 tbl_structure.php:597 msgid "Column count has to be larger than zero." msgstr "Antall kolonner må være større enn null." -#: tbl_move_copy.php:45 +#: tbl_move_copy.php:44 msgid "Can't move table to same one!" msgstr "Kan ikke flytte tabellen til samme navn!" -#: tbl_move_copy.php:47 +#: tbl_move_copy.php:46 msgid "Can't copy table to same one!" msgstr "Kan ikke kopiere tabellen til samme navn!" -#: tbl_move_copy.php:55 +#: tbl_move_copy.php:54 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabellen %s har blitt flyttet til %s." -#: tbl_move_copy.php:57 +#: tbl_move_copy.php:56 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabellen %s er kopiert til %s." -#: tbl_move_copy.php:81 +#: tbl_move_copy.php:80 msgid "The table name is empty!" msgstr "Tabellnavnet er tomt!" -#: tbl_operations.php:248 +#: tbl_operations.php:246 msgid "Alter table order by" msgstr "Endre tabellrekkefølge ved" -#: tbl_operations.php:257 +#: tbl_operations.php:255 msgid "(singly)" msgstr "(enkeltvis)" -#: tbl_operations.php:277 +#: tbl_operations.php:275 msgid "Move table to (database.table):" msgstr "Flytt tabell til (database.tabell):" -#: tbl_operations.php:335 +#: tbl_operations.php:333 msgid "Table options" msgstr "Tabellinnstillinger" -#: tbl_operations.php:339 +#: tbl_operations.php:337 msgid "Rename table to" msgstr "Endre tabellens navn" -#: tbl_operations.php:510 +#: tbl_operations.php:508 msgid "Copy table to (database.table):" msgstr "Kopier tabell til (database.tabell):" -#: tbl_operations.php:557 +#: tbl_operations.php:555 msgid "Switch to copied table" msgstr "Bytt til kopiert tabell" -#: tbl_operations.php:569 +#: tbl_operations.php:567 msgid "Table maintenance" msgstr "Tabellvedlikehold" -#: tbl_operations.php:590 +#: tbl_operations.php:588 msgid "Defragment table" msgstr "Defragmenter tabell" -#: tbl_operations.php:629 +#: tbl_operations.php:627 #, php-format msgid "Table %s has been flushed" msgstr "Tabelen %s har blitt oppfrisket" -#: tbl_operations.php:635 +#: tbl_operations.php:633 msgid "Flush the table (FLUSH)" msgstr "Oppfrisk tabellen (\"FLUSH\")" -#: tbl_operations.php:650 +#: tbl_operations.php:648 msgid "Partition maintenance" msgstr "Partisjonsvedlikehold" -#: tbl_operations.php:658 +#: tbl_operations.php:656 #, php-format msgid "Partition %s" msgstr "Partisjon %s" -#: tbl_operations.php:661 +#: tbl_operations.php:659 msgid "Analyze" msgstr "Analyser" -#: tbl_operations.php:662 +#: tbl_operations.php:660 msgid "Check" msgstr "Kontroller" -#: tbl_operations.php:663 +#: tbl_operations.php:661 msgid "Optimize" msgstr "Optimaliser" -#: tbl_operations.php:664 +#: tbl_operations.php:662 msgid "Rebuild" msgstr "Gjenoppbygg" -#: tbl_operations.php:665 +#: tbl_operations.php:663 msgid "Repair" msgstr "Reparer" -#: tbl_operations.php:677 +#: tbl_operations.php:675 msgid "Remove partitioning" msgstr "Fjern partisjonering" -#: tbl_operations.php:703 +#: tbl_operations.php:701 msgid "Check referential integrity:" msgstr "Sjekk referanseintegritet:" -#: tbl_printview.php:73 +#: tbl_printview.php:72 msgid "Show tables" msgstr "Vis tabeller" -#: tbl_printview.php:308 tbl_structure.php:655 +#: tbl_printview.php:307 tbl_structure.php:653 msgid "Space usage" msgstr "Plassbruk" -#: tbl_printview.php:312 tbl_structure.php:659 +#: tbl_printview.php:311 tbl_structure.php:657 msgid "Usage" msgstr "Bruk" -#: tbl_printview.php:339 tbl_structure.php:686 +#: tbl_printview.php:338 tbl_structure.php:684 msgid "Effective" msgstr "Effektiv" -#: tbl_printview.php:364 tbl_structure.php:724 +#: tbl_printview.php:363 tbl_structure.php:722 msgid "Row Statistics" msgstr "Radstatistikk" -#: tbl_printview.php:367 tbl_structure.php:727 +#: tbl_printview.php:366 tbl_structure.php:725 msgid "Statements" msgstr "Oversikt" -#: tbl_printview.php:378 tbl_structure.php:739 +#: tbl_printview.php:377 tbl_structure.php:737 msgid "static" msgstr "statisk" -#: tbl_printview.php:380 tbl_structure.php:741 +#: tbl_printview.php:379 tbl_structure.php:739 msgid "dynamic" msgstr "dynamisk" -#: tbl_printview.php:402 tbl_structure.php:784 +#: tbl_printview.php:401 tbl_structure.php:782 msgid "Row length" msgstr "Radlengde" -#: tbl_printview.php:412 tbl_structure.php:792 +#: tbl_printview.php:411 tbl_structure.php:790 msgid " Row size " msgstr " Radstørrelse " -#: tbl_relation.php:278 +#: tbl_relation.php:276 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" "Feil oppstod under forsøk på opprettelse av fremmednøkkel på %1$s " "(kontroller datatyper)" -#: tbl_relation.php:404 +#: tbl_relation.php:402 msgid "Internal relation" msgstr "Interne relasjoner" -#: tbl_relation.php:406 +#: tbl_relation.php:404 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -8061,7 +8131,7 @@ msgstr "" "En intern relasjon er ikke nødvendig når en tilsvarende FOREIGN KEY relasjon " "eksisterer." -#: tbl_relation.php:412 +#: tbl_relation.php:410 msgid "Foreign key constraint" msgstr "Fremmednøkkelbegrensning" @@ -8069,113 +8139,113 @@ msgstr "Fremmednøkkelbegrensning" msgid "No rows selected" msgstr "Ingen rader valgt" -#: tbl_select.php:130 +#: tbl_select.php:129 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Utfør en \"spørring ved eksempel\" (jokertegn: \"%\")" -#: tbl_select.php:136 +#: tbl_select.php:135 msgid "Operator" msgstr "Operator" -#: tbl_select.php:267 +#: tbl_select.php:266 msgid "Select columns (at least one):" msgstr "Velg kolonner (minst ett):" -#: tbl_select.php:285 +#: tbl_select.php:284 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Legg til søkekriterier (innhold i \"where\"-setningen):" -#: tbl_select.php:292 +#: tbl_select.php:291 msgid "Number of rows per page" msgstr "Antall poster per side" -#: tbl_select.php:298 +#: tbl_select.php:297 msgid "Display order:" msgstr "Visningsrekkefølge:" -#: tbl_structure.php:160 +#: tbl_structure.php:159 msgid "Browse distinct values" msgstr "Se gjennom distinkte verdier" -#: tbl_structure.php:360 +#: tbl_structure.php:358 msgctxt "None for default" msgid "None" msgstr "Ingen" -#: tbl_structure.php:373 +#: tbl_structure.php:371 #, php-format msgid "Column %s has been dropped" msgstr "Kolonne %s har blitt slettet" -#: tbl_structure.php:384 +#: tbl_structure.php:382 #, php-format msgid "A primary key has been added on %s" msgstr "En primærnøkkel har blitt lagt til %s" -#: tbl_structure.php:399 tbl_structure.php:413 tbl_structure.php:427 +#: tbl_structure.php:397 tbl_structure.php:411 tbl_structure.php:425 #, php-format msgid "An index has been added on %s" msgstr "En indeks har blitt lagt til %s" -#: tbl_structure.php:505 tbl_structure.php:507 +#: tbl_structure.php:503 tbl_structure.php:505 msgid "Relation view" msgstr "Relasjonsvisning" -#: tbl_structure.php:514 tbl_structure.php:516 +#: tbl_structure.php:512 tbl_structure.php:514 msgid "Propose table structure" msgstr "Foreslå tabellstruktur" -#: tbl_structure.php:539 +#: tbl_structure.php:537 msgid "Add column" msgstr "Legg til kolonne(r)" -#: tbl_structure.php:553 +#: tbl_structure.php:551 msgid "At End of Table" msgstr "Ved slutten av tabellen" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At Beginning of Table" msgstr "Ved begynnelsen av tabellen" -#: tbl_structure.php:555 +#: tbl_structure.php:553 #, php-format msgid "After %s" msgstr "Etter %s" -#: tbl_structure.php:593 +#: tbl_structure.php:591 #, php-format msgid "Create an index on  %s columns" msgstr "Lag en indeks på %s kolonner" -#: tbl_structure.php:755 +#: tbl_structure.php:753 msgid "partitioned" msgstr "partisjonert" -#: tbl_tracking.php:113 +#: tbl_tracking.php:109 #, php-format msgid "Tracking report for table `%s`" msgstr "Overvåkningsrapport for tabell `%s`" -#: tbl_tracking.php:186 +#: tbl_tracking.php:182 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "Versjon %s er opprettet, overvåking av %s.%s er aktivert." -#: tbl_tracking.php:194 +#: tbl_tracking.php:190 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "Overvåking av %s.%s , versjon %s er deaktivert." -#: tbl_tracking.php:202 +#: tbl_tracking.php:198 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "Overvåking av %s.%s , versjon %s er aktivert." -#: tbl_tracking.php:212 +#: tbl_tracking.php:208 msgid "SQL statements executed." msgstr "SQL spørringer utført." -#: tbl_tracking.php:219 +#: tbl_tracking.php:215 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -8183,109 +8253,109 @@ msgstr "" "Du kan utføre dumpen ved å opprette og bruke en midlertidig database. " "Kontroller at du har privilegiene til å gjøre så." -#: tbl_tracking.php:220 +#: tbl_tracking.php:216 msgid "Comment out these two lines if you do not need them." msgstr "Kommenter ut disse to linjene hvis du ikke trenger dem." -#: tbl_tracking.php:229 +#: tbl_tracking.php:225 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "SQL spørringer eksportert. Venligst kopier dumpen eller utfør den." -#: tbl_tracking.php:250 tbl_tracking.php:378 +#: tbl_tracking.php:245 tbl_tracking.php:373 msgid "Close" msgstr "Lukk" -#: tbl_tracking.php:261 +#: tbl_tracking.php:256 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Versjon %s øyeblikksbilde (SQL kode)" -#: tbl_tracking.php:380 +#: tbl_tracking.php:375 msgid "Tracking statements" msgstr "Overvåkingsspørringer" -#: tbl_tracking.php:396 tbl_tracking.php:503 +#: tbl_tracking.php:391 tbl_tracking.php:498 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "Vis %s med datoer fra %s til %s fra bruker %s %s" -#: tbl_tracking.php:409 tbl_tracking.php:460 +#: tbl_tracking.php:404 tbl_tracking.php:455 msgid "Date" msgstr "Dato" -#: tbl_tracking.php:410 tbl_tracking.php:461 +#: tbl_tracking.php:405 tbl_tracking.php:456 msgid "Username" msgstr "Brukernavn" -#: tbl_tracking.php:411 +#: tbl_tracking.php:406 msgid "Data definition statement" msgstr "Datadefinisjonsuttrykk" -#: tbl_tracking.php:462 +#: tbl_tracking.php:457 msgid "Data manipulation statement" msgstr "Datamanipulasjonsuttrykk" -#: tbl_tracking.php:506 +#: tbl_tracking.php:501 msgid "SQL dump (file download)" msgstr "SQL dump (filnedlasting)" -#: tbl_tracking.php:507 +#: tbl_tracking.php:502 msgid "SQL dump" msgstr "SQL dump" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "This option will replace your table and contained data." msgstr "Dette valget vil erstatte din tabell og dataene den inneholder." -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "SQL execution" msgstr "SQL utførelse" -#: tbl_tracking.php:520 +#: tbl_tracking.php:515 #, php-format msgid "Export as %s" msgstr "Eksporter som %s" -#: tbl_tracking.php:560 +#: tbl_tracking.php:555 msgid "Show versions" msgstr "Vis versjoner" -#: tbl_tracking.php:592 +#: tbl_tracking.php:587 msgid "Version" msgstr "Versjon" -#: tbl_tracking.php:639 +#: tbl_tracking.php:634 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "Deaktiver overvåkning av %s.%s" -#: tbl_tracking.php:641 +#: tbl_tracking.php:636 msgid "Deactivate now" msgstr "Deaktiver nå" -#: tbl_tracking.php:652 +#: tbl_tracking.php:647 #, php-format msgid "Activate tracking for %s.%s" msgstr "Aktiver overvåkning av %s.%s" -#: tbl_tracking.php:654 +#: tbl_tracking.php:649 msgid "Activate now" msgstr "Aktiver nå" -#: tbl_tracking.php:667 +#: tbl_tracking.php:662 #, php-format msgid "Create version %s of %s.%s" msgstr "Opprett versjon %s av %s.%s" -#: tbl_tracking.php:671 +#: tbl_tracking.php:666 msgid "Track these data definition statements:" msgstr "Spor disse datadefinisjonsspørringene:" -#: tbl_tracking.php:679 +#: tbl_tracking.php:674 msgid "Track these data manipulation statements:" msgstr "Spor disse datamanipulasjonsspørringene:" -#: tbl_tracking.php:687 +#: tbl_tracking.php:682 msgid "Create version" msgstr "Opprett versjon" @@ -8333,10 +8403,34 @@ msgstr "Profilen har blitt oppdatert." msgid "VIEW name" msgstr "VIEW navn" -#: view_operations.php:92 +#: view_operations.php:91 msgid "Rename view to" msgstr "Endre tabellens navn" +#~ msgid "BLOB Repository" +#~ msgstr "BLOB lager" + +#~ msgctxt "BLOB repository" +#~ msgid "Enabled" +#~ msgstr "Påslått" + +#~ msgid "Disable" +#~ msgstr "Avslå" + +#~ msgid "Damaged" +#~ msgstr "Skadet" + +#~ msgctxt "BLOB repository" +#~ msgid "Repair" +#~ msgstr "Reparer" + +#~ msgctxt "BLOB repository" +#~ msgid "Disabled" +#~ msgstr "Avslått" + +#~ msgid "Enable" +#~ msgstr "Slå på" + #~ msgid "" #~ "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " #~ "extension. Please check your PHP configuration." diff --git a/po/nl.po b/po/nl.po index fc8c75a33..0c9d84411 100644 --- a/po/nl.po +++ b/po/nl.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-21 13:53+0200\n" +"POT-Creation-Date: 2010-07-26 17:18+0200\n" "PO-Revision-Date: 2010-05-31 01:06+0200\n" "Last-Translator: Bjorn \n" "Language-Team: dutch \n" @@ -14,19 +14,19 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.1\n" -#: browse_foreigners.php:37 browse_foreigners.php:58 -#: libraries/display_tbl.lib.php:416 server_privileges.php:1506 +#: browse_foreigners.php:36 browse_foreigners.php:57 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1510 msgid "Show all" msgstr "Toon alles" -#: browse_foreigners.php:81 libraries/common.lib.php:2313 -#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:393 -#: libraries/export/pdf.php:146 pdf_schema.php:282 pdf_schema.php:1122 -#: pdf_schema.php:1138 +#: browse_foreigners.php:80 libraries/common.lib.php:2318 +#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:392 +#: libraries/export/pdf.php:146 pdf_schema.php:281 pdf_schema.php:1121 +#: pdf_schema.php:1137 msgid "Page number:" msgstr "Paginanummer:" -#: browse_foreigners.php:131 +#: browse_foreigners.php:130 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -35,139 +35,153 @@ msgstr "" "Het doelvenster kon niet worden bijgewerkt. Misschien heeft u het venster " "afgesloten of uw browser blokkeert bijwerkingen van uw venster" -#: browse_foreigners.php:149 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2829 -#: libraries/common.lib.php:2836 libraries/db_links.inc.php:74 -#: libraries/tbl_links.inc.php:62 +#: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 +#: db_structure.php:89 db_structure.php:91 db_structure.php:102 +#: db_structure.php:104 libraries/common.lib.php:2834 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Zoeken" -#: browse_foreigners.php:152 db_operations.php:384 db_operations.php:428 -#: db_operations.php:498 db_operations.php:608 db_search.php:344 -#: db_structure.php:566 js/messages.php:48 libraries/Config.class.php:1043 -#: libraries/Theme_Manager.class.php:310 +#: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 +#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 +#: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 -#: libraries/common.lib.php:1340 libraries/common.lib.php:2289 +#: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 -#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:275 -#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:531 -#: libraries/display_tbl.lib.php:613 libraries/replication_gui.lib.php:75 +#: libraries/display_export.lib.php:269 libraries/display_import.lib.php:275 +#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 +#: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 #: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:781 -#: main.php:127 navigation.php:231 pdf_pages.php:291 pdf_pages.php:327 -#: pdf_pages.php:529 pmd_pdf.php:115 server_binlog.php:128 -#: server_privileges.php:664 server_privileges.php:1616 -#: server_privileges.php:1963 server_privileges.php:2010 -#: server_privileges.php:2049 server_replication.php:234 -#: server_replication.php:317 server_replication.php:340 -#: server_synchronize.php:1208 tbl_change.php:328 tbl_change.php:1172 -#: tbl_change.php:1209 tbl_indexes.php:253 tbl_operations.php:264 -#: tbl_operations.php:301 tbl_operations.php:498 tbl_operations.php:560 -#: tbl_operations.php:680 tbl_select.php:324 tbl_structure.php:561 -#: tbl_structure.php:596 tbl_tracking.php:394 tbl_tracking.php:511 -#: view_create.php:181 view_operations.php:100 +#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 +#: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 +#: server_privileges.php:663 server_privileges.php:1620 +#: server_privileges.php:1967 server_privileges.php:2014 +#: server_privileges.php:2053 server_replication.php:233 +#: server_replication.php:316 server_replication.php:339 +#: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 +#: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 +#: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 +#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "Start" -#: browse_foreigners.php:167 browse_foreigners.php:171 -#: libraries/Index.class.php:441 tbl_tracking.php:319 +#: browse_foreigners.php:166 browse_foreigners.php:170 +#: libraries/Index.class.php:441 tbl_tracking.php:314 msgid "Keyname" msgstr "Sleutelnaam" -#: browse_foreigners.php:168 browse_foreigners.php:170 -#: server_collations.php:54 server_collations.php:66 server_engines.php:58 +#: browse_foreigners.php:167 browse_foreigners.php:169 +#: server_collations.php:54 server_collations.php:66 server_engines.php:57 #: server_status.php:738 msgid "Description" msgstr "Beschrijving" -#: browse_foreigners.php:246 browse_foreigners.php:255 -#: browse_foreigners.php:267 browse_foreigners.php:275 +#: browse_foreigners.php:245 browse_foreigners.php:254 +#: browse_foreigners.php:266 browse_foreigners.php:274 msgid "Use this value" msgstr "Gebruik deze waarde" -#: db_create.php:45 +#: bs_disp_as_mime_type.php:29 bs_play_media.php:35 +msgid "No blob streaming server configured!" +msgstr "" + +#: bs_disp_as_mime_type.php:35 +#, fuzzy +#| msgid "Failed to write file to disk." +msgid "Failed to fetch headers" +msgstr "Opslaan van het bestand op de hardeschijf is mislukt." + +#: bs_disp_as_mime_type.php:41 +msgid "Failed to open remote URL" +msgstr "" + +#: db_create.php:44 #, php-format msgid "Database %1$s has been created." msgstr "Database %1$s is aangemaakt." -#: db_datadict.php:48 db_operations.php:377 +#: db_datadict.php:48 db_operations.php:313 msgid "Database comment: " msgstr "Database commentaar: " -#: db_datadict.php:164 libraries/tbl_properties.inc.php:723 -#: pdf_schema.php:1235 tbl_operations.php:346 tbl_printview.php:128 +#: db_datadict.php:164 libraries/tbl_properties.inc.php:722 +#: pdf_schema.php:1234 tbl_operations.php:344 tbl_printview.php:127 msgid "Table comments" msgstr "Tabelopmerkingen" -#: db_datadict.php:173 db_qbe.php:173 libraries/Index.class.php:445 +#: db_datadict.php:173 db_qbe.php:170 libraries/Index.class.php:445 #: libraries/export/htmlword.php:243 libraries/export/latex.php:364 #: libraries/export/odt.php:293 libraries/export/texytext.php:233 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:274 -#: pdf_schema.php:1261 pdf_schema.php:1282 tbl_change.php:306 -#: tbl_indexes.php:188 tbl_printview.php:140 tbl_relation.php:401 -#: tbl_select.php:133 tbl_structure.php:176 tbl_tracking.php:272 -#: tbl_tracking.php:323 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 +#: pdf_schema.php:1260 pdf_schema.php:1281 tbl_change.php:301 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:132 tbl_structure.php:175 tbl_tracking.php:267 +#: tbl_tracking.php:318 #, fuzzy #| msgid "Column names" msgid "Column" msgstr "Kolom namen" -#: db_datadict.php:174 db_printview.php:105 libraries/Index.class.php:442 +#: db_datadict.php:174 db_printview.php:104 libraries/Index.class.php:442 #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 #: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:244 #: libraries/export/latex.php:364 libraries/export/odt.php:296 #: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:99 -#: pdf_schema.php:1262 pdf_schema.php:1283 server_privileges.php:2062 -#: tbl_change.php:285 tbl_change.php:312 tbl_printview.php:141 -#: tbl_printview.php:311 tbl_select.php:134 tbl_structure.php:177 -#: tbl_structure.php:658 tbl_tracking.php:273 tbl_tracking.php:320 +#: pdf_schema.php:1261 pdf_schema.php:1282 server_privileges.php:2066 +#: tbl_change.php:280 tbl_change.php:307 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:133 tbl_structure.php:176 +#: tbl_structure.php:656 tbl_tracking.php:268 tbl_tracking.php:315 msgid "Type" msgstr "Type" #: db_datadict.php:176 libraries/Index.class.php:448 #: libraries/export/htmlword.php:245 libraries/export/latex.php:364 #: libraries/export/odt.php:299 libraries/export/texytext.php:235 -#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1264 -#: pdf_schema.php:1285 tbl_change.php:321 tbl_printview.php:143 -#: tbl_structure.php:180 tbl_tracking.php:275 tbl_tracking.php:326 +#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1263 +#: pdf_schema.php:1284 tbl_change.php:316 tbl_printview.php:142 +#: tbl_structure.php:179 tbl_tracking.php:270 tbl_tracking.php:321 msgid "Null" msgstr "Null" -#: db_datadict.php:177 db_structure.php:500 libraries/export/htmlword.php:246 +#: db_datadict.php:177 db_structure.php:486 libraries/export/htmlword.php:246 #: libraries/export/latex.php:364 libraries/export/odt.php:302 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:105 -#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 -#: tbl_structure.php:181 tbl_tracking.php:276 +#: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:143 +#: tbl_structure.php:180 tbl_tracking.php:271 msgid "Default" msgstr "Standaardwaarde" #: db_datadict.php:181 libraries/export/htmlword.php:248 #: libraries/export/latex.php:366 libraries/export/odt.php:306 -#: libraries/export/texytext.php:238 pdf_schema.php:1267 pdf_schema.php:1288 -#: tbl_printview.php:148 +#: libraries/export/texytext.php:238 pdf_schema.php:1266 pdf_schema.php:1287 +#: tbl_printview.php:147 msgid "Links to" msgstr "Gelinkt naar" -#: db_datadict.php:183 db_printview.php:111 libraries/export/htmlword.php:251 +#: db_datadict.php:183 db_printview.php:110 libraries/export/htmlword.php:251 #: libraries/export/latex.php:49 libraries/export/latex.php:369 #: libraries/export/odt.php:37 libraries/export/odt.php:311 #: libraries/export/sql.php:29 libraries/export/texytext.php:241 -#: libraries/tbl_properties.inc.php:129 pdf_schema.php:1278 -#: pdf_schema.php:1289 tbl_printview.php:150 +#: libraries/tbl_properties.inc.php:128 pdf_schema.php:1277 +#: pdf_schema.php:1288 tbl_printview.php:149 msgid "Comments" msgstr "Commentaar" #: db_datadict.php:266 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/export/htmlword.php:321 #: libraries/export/latex.php:434 libraries/export/odt.php:367 -#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:262 -#: pdf_schema.php:1343 server_privileges.php:1560 server_privileges.php:1571 -#: server_privileges.php:1881 server_privileges.php:1886 -#: server_privileges.php:2179 sql.php:131 sql.php:193 tbl_printview.php:227 -#: tbl_structure.php:349 tbl_tracking.php:336 tbl_tracking.php:341 +#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:261 +#: pdf_schema.php:1342 server_privileges.php:1564 server_privileges.php:1575 +#: server_privileges.php:1885 server_privileges.php:1890 +#: server_privileges.php:2183 sql.php:130 sql.php:192 tbl_printview.php:226 +#: tbl_structure.php:347 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "Nee" @@ -178,17 +192,17 @@ msgstr "Nee" #: libraries/mult_submits.inc.php:49 libraries/mult_submits.inc.php:54 #: libraries/mult_submits.inc.php:59 libraries/mult_submits.inc.php:91 #: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:105 -#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:261 -#: libraries/mult_submits.inc.php:272 pdf_schema.php:1343 -#: server_databases.php:63 server_privileges.php:1557 -#: server_privileges.php:1571 server_privileges.php:1881 -#: server_privileges.php:1884 server_privileges.php:2179 sql.php:192 -#: tbl_printview.php:227 tbl_structure.php:39 tbl_structure.php:349 -#: tbl_tracking.php:334 tbl_tracking.php:339 +#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:260 +#: libraries/mult_submits.inc.php:271 pdf_schema.php:1342 +#: server_databases.php:61 server_privileges.php:1561 +#: server_privileges.php:1575 server_privileges.php:1885 +#: server_privileges.php:1888 server_privileges.php:2183 sql.php:191 +#: tbl_printview.php:226 tbl_structure.php:38 tbl_structure.php:347 +#: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" msgstr "Ja" -#: db_datadict.php:321 db_printview.php:265 tbl_printview.php:496 +#: db_datadict.php:321 db_printview.php:264 tbl_printview.php:495 msgid "Print" msgstr "Afdrukken" @@ -196,192 +210,154 @@ msgstr "Afdrukken" msgid "View dump (schema) of database" msgstr "Bekijk een dump (schema) van database" -#: db_export.php:32 db_printview.php:95 db_qbe.php:101 db_structure.php:50 -#: db_tracking.php:34 export.php:352 navigation.php:326 +#: db_export.php:32 db_printview.php:94 db_qbe.php:98 db_structure.php:49 +#: db_tracking.php:30 export.php:350 navigation.php:325 msgid "No tables found in database." msgstr "Geen tabellen gevonden in de database." -#: db_export.php:42 db_search.php:326 server_export.php:26 +#: db_export.php:42 db_search.php:326 server_export.php:24 msgid "Select All" msgstr "Selecteer alles" -#: db_export.php:44 db_search.php:329 server_export.php:28 +#: db_export.php:44 db_search.php:329 server_export.php:26 msgid "Unselect All" msgstr "Deselecteer alles" -#: db_operations.php:37 tbl_create.php:49 +#: db_operations.php:33 tbl_create.php:47 msgid "The database name is empty!" msgstr "De database naam is leeg!" -#: db_operations.php:235 +#: db_operations.php:231 #, php-format msgid "Database %s has been renamed to %s" msgstr "Database %s is hernoemd naar %s" -#: db_operations.php:239 +#: db_operations.php:235 #, php-format msgid "Database %s has been copied to %s" msgstr "Database %s is gekopieerd naar %s" -#: db_operations.php:411 +#: db_operations.php:347 msgid "Rename database to" msgstr "Hernoem database naar" -#: db_operations.php:416 server_processlist.php:56 +#: db_operations.php:352 server_processlist.php:56 msgid "Command" msgstr "Commando" -#: db_operations.php:428 tbl_change.php:1141 +#: db_operations.php:364 tbl_change.php:1039 msgid "and then" msgstr "en dan" -#: db_operations.php:454 +#: db_operations.php:390 msgid "Copy database to" msgstr "Kopieer database naar" -#: db_operations.php:461 tbl_operations.php:527 tbl_tracking.php:387 +#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Alleen structuur" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:389 +#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Structuur en gegevens" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:388 +#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Alleen data" -#: db_operations.php:471 +#: db_operations.php:407 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE voor het kopiëren" -#: db_operations.php:474 libraries/export/sql.php:51 +#: db_operations.php:410 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 -#: libraries/export/sql.php:81 tbl_operations.php:535 +#: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "Voeg %s toe" -#: db_operations.php:478 libraries/export/sql.php:77 tbl_operations.php:298 -#: tbl_operations.php:537 +#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Voeg AUTO_INCREMENT waarde toe" -#: db_operations.php:482 tbl_operations.php:544 +#: db_operations.php:418 tbl_operations.php:542 msgid "Add constraints" msgstr "Voeg beperkingen toe" -#: db_operations.php:495 +#: db_operations.php:431 msgid "Switch to copied database" msgstr "Schakel naar de gekopieerde database" -#: db_operations.php:536 -msgid "BLOB Repository" -msgstr "BLOB Bewaarplaats" - -#: db_operations.php:539 db_tracking.php:75 libraries/common.lib.php:1357 -#: libraries/server_links.inc.php:48 server_processlist.php:58 -#: tbl_tracking.php:595 test/theme.php:100 -msgid "Status" -msgstr "Status" - -#: db_operations.php:547 -#, fuzzy -#| msgid "Enabled" -msgctxt "BLOB repository" -msgid "Enabled" -msgstr "Ingeschakeld" - -#: db_operations.php:551 -msgid "Disable" -msgstr "Uitschakelen" - -#: db_operations.php:561 -msgid "Damaged" -msgstr "Beschadigd" - -#: db_operations.php:565 -msgctxt "BLOB repository" -msgid "Repair" -msgstr "Herstel" - -#: db_operations.php:573 -#, fuzzy -#| msgid "Disabled" -msgctxt "BLOB repository" -msgid "Disabled" -msgstr "Uitgeschakeld" - -#: db_operations.php:577 -msgid "Enable" -msgstr "Inschakelen" - -#: db_operations.php:601 libraries/Index.class.php:447 +#: db_operations.php:451 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 -#: server_collations.php:53 server_collations.php:65 server_databases.php:110 -#: tbl_operations.php:362 tbl_select.php:135 tbl_structure.php:178 -#: tbl_structure.php:766 tbl_tracking.php:274 tbl_tracking.php:325 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 +#: server_collations.php:53 server_collations.php:65 server_databases.php:108 +#: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:177 +#: tbl_structure.php:764 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "Collatie" -#: db_operations.php:614 main.php:315 pdf_schema.php:33 -#, php-format +#: db_operations.php:464 pdf_schema.php:32 +#, fuzzy, php-format +#| msgid "" +#| "The additional features for working with linked tables have been " +#| "deactivated. To find out why click %shere%s." msgid "" -"The additional features for working with linked tables have been " -"deactivated. To find out why click %shere%s." +"The phpMyAdmin configuration storage has been deactivated. To find out why " +"click %shere%s." msgstr "" "Extra opties om met tabellen te werken, die gelinkt zijn, zijn " "uitgeschakeld. Om te weten te komen waarom klik %shier%s." -#: db_operations.php:647 +#: db_operations.php:497 msgid "Edit PDF Pages" msgstr "PDF Pagina's aanpassen" -#: db_printview.php:103 db_tracking.php:71 db_tracking.php:156 +#: db_printview.php:102 db_tracking.php:67 db_tracking.php:152 #: libraries/db_structure.lib.php:37 libraries/export/xml.php:327 -#: libraries/header.inc.php:125 pdf_pages.php:423 server_privileges.php:1657 -#: server_privileges.php:1713 server_privileges.php:1977 -#: server_synchronize.php:422 server_synchronize.php:865 tbl_tracking.php:591 +#: libraries/header.inc.php:125 pdf_pages.php:422 server_privileges.php:1661 +#: server_privileges.php:1717 server_privileges.php:1981 +#: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "Tabel" -#: db_printview.php:104 libraries/db_structure.lib.php:47 +#: db_printview.php:103 libraries/db_structure.lib.php:47 #: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 -#: navigation.php:629 navigation.php:651 server_databases.php:121 -#: tbl_printview.php:392 tbl_structure.php:364 tbl_structure.php:776 +#: navigation.php:628 navigation.php:650 server_databases.php:119 +#: tbl_printview.php:391 tbl_structure.php:362 tbl_structure.php:774 msgid "Rows" msgstr "Rijen" -#: db_printview.php:108 libraries/db_structure.lib.php:58 tbl_indexes.php:189 +#: db_printview.php:107 libraries/db_structure.lib.php:58 tbl_indexes.php:188 msgid "Size" msgstr "Grootte" -#: db_printview.php:161 db_structure.php:456 libraries/export/sql.php:556 +#: db_printview.php:160 db_structure.php:442 libraries/export/sql.php:556 #: libraries/export/sql.php:896 msgid "in use" msgstr "in gebruik" -#: db_printview.php:186 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:511 pdf_schema.php:1240 tbl_printview.php:432 -#: tbl_structure.php:808 +#: db_printview.php:185 libraries/db_info.inc.php:86 +#: libraries/export/sql.php:511 pdf_schema.php:1239 tbl_printview.php:431 +#: tbl_structure.php:806 msgid "Creation" msgstr "Gecreëerd" -#: db_printview.php:195 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:516 pdf_schema.php:1245 tbl_printview.php:442 -#: tbl_structure.php:816 +#: db_printview.php:194 libraries/db_info.inc.php:91 +#: libraries/export/sql.php:516 pdf_schema.php:1244 tbl_printview.php:441 +#: tbl_structure.php:814 msgid "Last update" msgstr "Laatst bijgewerkt" -#: db_printview.php:204 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:521 pdf_schema.php:1250 tbl_printview.php:452 -#: tbl_structure.php:824 +#: db_printview.php:203 libraries/db_info.inc.php:96 +#: libraries/export/sql.php:521 pdf_schema.php:1249 tbl_printview.php:451 +#: tbl_structure.php:822 msgid "Last check" msgstr "Laatst gecontroleerd" -#: db_printview.php:221 db_structure.php:479 +#: db_printview.php:220 db_structure.php:465 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -389,94 +365,94 @@ msgid_plural "%s tables" msgstr[0] "%s tabel(len)" msgstr[1] "%s tabel(len)" -#: db_qbe.php:28 import.php:453 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1980 libraries/sql_query_form.lib.php:138 -#: tbl_operations.php:212 tbl_relation.php:291 tbl_row_action.php:130 -#: view_operations.php:61 +#: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 +#: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "Uw SQL-query is succesvol uitgevoerd." -#: db_qbe.php:41 +#: db_qbe.php:38 msgid "You have to choose at least one column to display" msgstr "Er moet ten minste 1 weer te geven kolom worden gekozen" -#: db_qbe.php:199 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:865 +#: db_qbe.php:196 libraries/db_structure.lib.php:95 +#: libraries/display_tbl.lib.php:864 msgid "Sort" msgstr "Sorteren" -#: db_qbe.php:208 db_qbe.php:242 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:522 libraries/display_tbl.lib.php:827 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:259 -#: tbl_select.php:311 +#: db_qbe.php:205 db_qbe.php:239 libraries/db_structure.lib.php:102 +#: libraries/display_tbl.lib.php:521 libraries/display_tbl.lib.php:826 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:257 +#: tbl_select.php:310 msgid "Ascending" msgstr "Oplopend" -#: db_qbe.php:209 db_qbe.php:250 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:527 libraries/display_tbl.lib.php:824 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:260 -#: tbl_select.php:312 +#: db_qbe.php:206 db_qbe.php:247 libraries/db_structure.lib.php:110 +#: libraries/display_tbl.lib.php:526 libraries/display_tbl.lib.php:823 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:258 +#: tbl_select.php:311 msgid "Descending" msgstr "Aflopend" -#: db_qbe.php:263 db_tracking.php:77 libraries/display_tbl.lib.php:307 -#: tbl_change.php:275 tbl_tracking.php:596 +#: db_qbe.php:260 db_tracking.php:73 libraries/display_tbl.lib.php:306 +#: tbl_change.php:270 tbl_tracking.php:591 msgid "Show" msgstr "Toon" -#: db_qbe.php:299 +#: db_qbe.php:296 msgid "Criteria" msgstr "Criteria" -#: db_qbe.php:352 db_qbe.php:434 db_qbe.php:526 db_qbe.php:557 +#: db_qbe.php:349 db_qbe.php:431 db_qbe.php:523 db_qbe.php:554 msgid "Ins" msgstr "Toevoegen" -#: db_qbe.php:356 db_qbe.php:438 db_qbe.php:523 db_qbe.php:554 +#: db_qbe.php:353 db_qbe.php:435 db_qbe.php:520 db_qbe.php:551 msgid "And" msgstr "En" -#: db_qbe.php:365 db_qbe.php:446 db_qbe.php:528 db_qbe.php:559 +#: db_qbe.php:362 db_qbe.php:443 db_qbe.php:525 db_qbe.php:556 msgid "Del" msgstr "Verwijder" -#: db_qbe.php:369 db_qbe.php:450 db_qbe.php:521 db_qbe.php:552 -#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:778 -#: server_privileges.php:297 tbl_change.php:1027 tbl_indexes.php:249 -#: tbl_select.php:285 +#: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 +#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:777 +#: server_privileges.php:296 tbl_change.php:925 tbl_indexes.php:248 +#: tbl_select.php:284 msgid "Or" msgstr "Of" -#: db_qbe.php:506 +#: db_qbe.php:503 msgid "Modify" msgstr "Aanpassen" -#: db_qbe.php:583 +#: db_qbe.php:580 #, fuzzy #| msgid "Add/Delete Criteria Row" msgid "Add/Delete criteria rows" msgstr "Toevoegen/Verwijderen Criteria Rij" -#: db_qbe.php:595 +#: db_qbe.php:592 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Add/Delete columns" msgstr "Toevoegen/Verwijderen Veld Kolommen" -#: db_qbe.php:608 db_qbe.php:633 +#: db_qbe.php:605 db_qbe.php:630 msgid "Update Query" msgstr "Wijzig Query" -#: db_qbe.php:616 +#: db_qbe.php:613 msgid "Use Tables" msgstr "Gebruik tabellen" -#: db_qbe.php:639 +#: db_qbe.php:636 #, php-format msgid "SQL query on database %s:" msgstr "SQL-query op database %s:" -#: db_qbe.php:933 libraries/common.lib.php:1222 +#: db_qbe.php:930 libraries/common.lib.php:1215 msgid "Submit Query" msgstr "Query uitvoeren" @@ -516,17 +492,17 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s overeenkomst(en) in de tabel %s" msgstr[1] "%s overeenkomst(en) in de tabel %s" -#: db_search.php:249 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2831 -#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:49 -#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:466 +#: db_search.php:249 db_structure.php:75 db_structure.php:76 +#: db_structure.php:88 db_structure.php:90 db_structure.php:101 +#: db_structure.php:103 libraries/common.lib.php:2836 +#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 +#: tbl_structure.php:35 tbl_structure.php:47 tbl_structure.php:464 msgid "Browse" msgstr "Verkennen" -#: db_search.php:254 libraries/display_tbl.lib.php:1164 -#: libraries/display_tbl.lib.php:2055 libraries/sql_query_form.lib.php:453 -#: pdf_pages.php:285 pdf_pages.php:424 pdf_pages.php:460 pdf_pages.php:488 +#: db_search.php:254 libraries/display_tbl.lib.php:1163 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 msgid "Delete" @@ -566,66 +542,66 @@ msgstr "In de tabel(len):" msgid "Inside column:" msgstr "In het veld:" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2830 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:75 +#: db_structure.php:79 db_structure.php:80 db_structure.php:92 +#: db_structure.php:93 db_structure.php:105 db_structure.php:106 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 +#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Invoegen" -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2827 libraries/common.lib.php:2834 -#: libraries/db_links.inc.php:62 libraries/export/htmlword.php:22 +#: db_structure.php:81 db_structure.php:94 db_structure.php:107 +#: libraries/common.lib.php:2832 libraries/common.lib.php:2839 +#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 -#: libraries/tbl_links.inc.php:55 pmd_general.php:133 -#: server_privileges.php:593 server_replication.php:314 tbl_tracking.php:268 +#: libraries/tbl_links.inc.php:54 pmd_general.php:133 +#: server_privileges.php:592 server_replication.php:313 tbl_tracking.php:263 msgid "Structure" msgstr "Structuur" -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:544 db_structure.php:545 db_tracking.php:90 -#: libraries/Index.class.php:482 libraries/common.lib.php:1659 -#: libraries/db_links.inc.php:99 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:126 -#: server_databases.php:351 tbl_structure.php:26 tbl_structure.php:150 -#: tbl_structure.php:151 tbl_structure.php:470 +#: db_structure.php:82 db_structure.php:83 db_structure.php:95 +#: db_structure.php:96 db_structure.php:108 db_structure.php:109 +#: db_structure.php:530 db_structure.php:531 db_tracking.php:86 +#: libraries/Index.class.php:482 libraries/common.lib.php:1663 +#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 +#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 +#: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" msgstr "Verwijderen" -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:542 db_structure.php:543 libraries/common.lib.php:1658 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:104 +#: db_structure.php:84 db_structure.php:85 db_structure.php:97 +#: db_structure.php:98 db_structure.php:110 db_structure.php:111 +#: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 +#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 msgid "Empty" msgstr "Legen" -#: db_structure.php:315 libraries/tbl_links.inc.php:99 +#: db_structure.php:301 libraries/tbl_links.inc.php:98 #, php-format msgid "Table %s has been emptied" msgstr "Tabel %s is leeg gemaakt" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "View %s has been dropped" msgstr "View %s is verwijderd" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "Table %s has been dropped" msgstr "Tabel %s is vervallen" -#: db_structure.php:332 +#: db_structure.php:318 msgid "Tracking is active." msgstr "Tracking is ingeschakeld." -#: db_structure.php:334 +#: db_structure.php:320 msgid "Tracking is not active." msgstr "Tracking is niet actief." -#: db_structure.php:419 libraries/display_tbl.lib.php:1943 +#: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -633,160 +609,166 @@ msgid "" msgstr "" "Deze view heeft minimaal deze hoeveelheid aan rijen. Zie de %sdocumentatie%s." -#: db_structure.php:433 db_structure.php:447 libraries/header.inc.php:125 -#: libraries/tbl_info.inc.php:65 tbl_structure.php:184 test/theme.php:73 +#: db_structure.php:419 db_structure.php:433 libraries/header.inc.php:125 +#: libraries/tbl_info.inc.php:60 tbl_structure.php:183 test/theme.php:73 msgid "View" msgstr "View" -#: db_structure.php:484 libraries/db_structure.lib.php:40 -#: libraries/server_links.inc.php:69 server_replication.php:32 -#: server_replication.php:163 server_status.php:368 +#: db_structure.php:470 libraries/db_structure.lib.php:40 +#: libraries/server_links.inc.php:69 server_replication.php:31 +#: server_replication.php:162 server_status.php:368 msgid "Replication" msgstr "Replicatie" -#: db_structure.php:488 +#: db_structure.php:474 msgid "Sum" msgstr "Som" -#: db_structure.php:495 libraries/StorageEngine.class.php:349 +#: db_structure.php:481 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s is de standaard storage engine op deze MySQL-server." -#: db_structure.php:523 db_structure.php:540 db_structure.php:541 -#: libraries/display_tbl.lib.php:2080 libraries/display_tbl.lib.php:2085 -#: libraries/mult_submits.inc.php:15 server_databases.php:345 -#: server_databases.php:350 server_privileges.php:1588 tbl_structure.php:454 -#: tbl_structure.php:463 +#: db_structure.php:509 db_structure.php:526 db_structure.php:527 +#: libraries/display_tbl.lib.php:2039 libraries/display_tbl.lib.php:2044 +#: libraries/mult_submits.inc.php:15 server_databases.php:343 +#: server_databases.php:348 server_privileges.php:1592 tbl_structure.php:452 +#: tbl_structure.php:461 msgid "With selected:" msgstr "Met geselecteerd:" -#: db_structure.php:526 libraries/display_tbl.lib.php:2075 -#: server_databases.php:347 server_privileges.php:569 -#: server_privileges.php:1591 tbl_structure.php:457 +#: db_structure.php:512 libraries/display_tbl.lib.php:2034 +#: server_databases.php:345 server_privileges.php:568 +#: server_privileges.php:1595 tbl_structure.php:455 msgid "Check All" msgstr "Selecteer alles" -#: db_structure.php:530 libraries/display_tbl.lib.php:2076 -#: libraries/replication_gui.lib.php:35 server_databases.php:349 -#: server_privileges.php:572 server_privileges.php:1595 tbl_structure.php:461 +#: db_structure.php:516 libraries/display_tbl.lib.php:2035 +#: libraries/replication_gui.lib.php:35 server_databases.php:347 +#: server_privileges.php:571 server_privileges.php:1599 tbl_structure.php:459 msgid "Uncheck All" msgstr "Deselecteer alles" -#: db_structure.php:535 +#: db_structure.php:521 msgid "Check tables having overhead" msgstr "Selecteer tabellen met overhead" -#: db_structure.php:546 db_structure.php:547 db_structure.php:598 -#: libraries/display_tbl.lib.php:2179 libraries/mult_submits.inc.php:27 -#: tbl_structure.php:491 tbl_structure.php:493 +#: db_structure.php:532 db_structure.php:533 db_structure.php:584 +#: libraries/display_tbl.lib.php:2138 libraries/mult_submits.inc.php:27 +#: tbl_structure.php:489 tbl_structure.php:491 msgid "Print view" msgstr "Afdrukken" -#: db_structure.php:548 db_structure.php:549 libraries/mult_submits.inc.php:41 -#: tbl_operations.php:580 +#: db_structure.php:534 db_structure.php:535 libraries/mult_submits.inc.php:41 +#: tbl_operations.php:578 msgid "Check table" msgstr "Controleer tabel" -#: db_structure.php:550 db_structure.php:551 libraries/mult_submits.inc.php:46 -#: tbl_operations.php:620 tbl_structure.php:708 tbl_structure.php:710 +#: db_structure.php:536 db_structure.php:537 libraries/mult_submits.inc.php:46 +#: tbl_operations.php:618 tbl_structure.php:706 tbl_structure.php:708 msgid "Optimize table" msgstr "Optimaliseer tabel" -#: db_structure.php:552 db_structure.php:553 libraries/mult_submits.inc.php:51 -#: tbl_operations.php:610 +#: db_structure.php:538 db_structure.php:539 libraries/mult_submits.inc.php:51 +#: tbl_operations.php:608 msgid "Repair table" msgstr "Repareer tabel" -#: db_structure.php:554 db_structure.php:555 libraries/mult_submits.inc.php:56 -#: tbl_operations.php:600 +#: db_structure.php:540 db_structure.php:541 libraries/mult_submits.inc.php:56 +#: tbl_operations.php:598 msgid "Analyze table" msgstr "Analyseer tabel" -#: db_structure.php:556 db_structure.php:557 libraries/db_links.inc.php:70 -#: libraries/display_export.lib.php:82 libraries/display_tbl.lib.php:2093 -#: libraries/display_tbl.lib.php:2224 libraries/mult_submits.inc.php:61 -#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:81 -#: pmd_pdf.php:83 pmd_pdf.php:108 server_privileges.php:1372 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 +#: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 +#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 +#: pmd_pdf.php:81 pmd_pdf.php:106 server_privileges.php:1376 #: setup/frames/menu.inc.php:22 tbl_row_action.php:58 msgid "Export" msgstr "Exporteer" -#: db_structure.php:605 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:591 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "Data Woordenboek" -#: db_tracking.php:65 +#: db_tracking.php:61 msgid "Tracked tables" msgstr "Tabellen met tracker" -#: db_tracking.php:70 libraries/export/htmlword.php:85 +#: db_tracking.php:66 libraries/export/htmlword.php:85 #: libraries/export/latex.php:152 libraries/export/odt.php:112 #: libraries/export/sql.php:339 libraries/export/texytext.php:84 #: libraries/export/xml.php:254 libraries/header.inc.php:105 -#: libraries/header_printview.inc.php:57 server_databases.php:168 -#: server_privileges.php:1652 server_privileges.php:1713 -#: server_privileges.php:1971 server_processlist.php:55 -#: server_synchronize.php:1178 server_synchronize.php:1182 -#: tbl_tracking.php:590 test/theme.php:64 +#: libraries/header_printview.inc.php:57 server_databases.php:166 +#: server_privileges.php:1656 server_privileges.php:1717 +#: server_privileges.php:1975 server_processlist.php:55 +#: server_synchronize.php:1177 server_synchronize.php:1181 +#: tbl_tracking.php:585 test/theme.php:64 msgid "Database" msgstr "Database" -#: db_tracking.php:72 +#: db_tracking.php:68 msgid "Last version" msgstr "Laatste versie" -#: db_tracking.php:73 tbl_tracking.php:593 +#: db_tracking.php:69 tbl_tracking.php:588 msgid "Created" msgstr "Aangemaakt" -#: db_tracking.php:74 tbl_tracking.php:594 +#: db_tracking.php:70 tbl_tracking.php:589 msgid "Updated" msgstr "Bijgewerkt" -#: db_tracking.php:76 libraries/Index.class.php:439 -#: libraries/db_structure.lib.php:44 server_databases.php:202 -#: server_privileges.php:1534 server_privileges.php:1717 -#: server_privileges.php:2065 tbl_structure.php:186 +#: db_tracking.php:71 libraries/common.lib.php:1361 +#: libraries/server_links.inc.php:48 server_processlist.php:58 +#: tbl_tracking.php:590 test/theme.php:100 +msgid "Status" +msgstr "Status" + +#: db_tracking.php:72 libraries/Index.class.php:439 +#: libraries/db_structure.lib.php:44 server_databases.php:200 +#: server_privileges.php:1538 server_privileges.php:1721 +#: server_privileges.php:2069 tbl_structure.php:185 msgid "Action" msgstr "Actie" -#: db_tracking.php:87 db_tracking.php:119 +#: db_tracking.php:83 db_tracking.php:115 msgid "Delete tracking data for this table" msgstr "Verwijder tracking data voor deze tabel" -#: db_tracking.php:105 tbl_tracking.php:547 tbl_tracking.php:605 -#: tbl_tracking.php:612 +#: db_tracking.php:101 tbl_tracking.php:542 tbl_tracking.php:600 +#: tbl_tracking.php:607 msgid "active" msgstr "ingeschakeld" -#: db_tracking.php:107 tbl_tracking.php:549 tbl_tracking.php:607 -#: tbl_tracking.php:609 +#: db_tracking.php:103 tbl_tracking.php:544 tbl_tracking.php:602 +#: tbl_tracking.php:604 msgid "not active" msgstr "niet actief" -#: db_tracking.php:120 +#: db_tracking.php:116 msgid "Versions" msgstr "Versies" -#: db_tracking.php:121 tbl_tracking.php:378 tbl_tracking.php:623 +#: db_tracking.php:117 tbl_tracking.php:373 tbl_tracking.php:618 msgid "Tracking report" msgstr "Tracking-rapport" -#: db_tracking.php:122 tbl_tracking.php:250 tbl_tracking.php:623 +#: db_tracking.php:118 tbl_tracking.php:245 tbl_tracking.php:618 msgid "Structure snapshot" msgstr "Structuur-snapshot" -#: db_tracking.php:151 +#: db_tracking.php:147 msgid "Untracked tables" msgstr "Tabellen zonder tracker" -#: db_tracking.php:171 db_tracking.php:173 tbl_structure.php:527 -#: tbl_structure.php:529 +#: db_tracking.php:167 db_tracking.php:169 tbl_structure.php:525 +#: tbl_structure.php:527 msgid "Track table" msgstr "Tabel tracken" -#: db_tracking.php:199 +#: db_tracking.php:195 msgid "Database Log" msgstr "Database-log" @@ -795,12 +777,12 @@ msgid "Selected export type has to be saved in file!" msgstr "" "Het geselecteerde export type dient als een bestand te worden opgeslagen!" -#: export.php:153 export.php:178 export.php:620 +#: export.php:152 export.php:177 export.php:615 #, php-format msgid "Insufficient space to save the file %s." msgstr "Onvoldoende ruimte om het bestand %s op te slaan." -#: export.php:287 +#: export.php:286 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -808,17 +790,17 @@ msgstr "" "Bestand %s bestaat al op de server, verander de bestandsnaam of activeer de " "overschrijven optie." -#: export.php:291 export.php:295 +#: export.php:290 export.php:294 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "De web server heeft geen rechten om het bestand %s op te slaan." -#: export.php:622 +#: export.php:617 #, php-format msgid "Dump has been saved to file %s." msgstr "Dump is bewaard als %s." -#: import.php:59 +#: import.php:58 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -827,14 +809,14 @@ msgstr "" "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:840 -#: libraries/File.class.php:950 +#: import.php:277 import.php:330 libraries/File.class.php:566 +#: libraries/File.class.php:676 msgid "File could not be read" msgstr "Bestand kon niet worden gelezen" -#: import.php:286 import.php:295 import.php:314 import.php:323 -#: libraries/File.class.php:1020 libraries/File.class.php:1028 -#: libraries/File.class.php:1044 libraries/File.class.php:1052 +#: import.php:285 import.php:294 import.php:313 import.php:322 +#: libraries/File.class.php:746 libraries/File.class.php:754 +#: libraries/File.class.php:770 libraries/File.class.php:778 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -844,7 +826,7 @@ msgstr "" "uploaden. De ondersteuning is niet geïmplementeerd of uitgeschakeld in de " "configuratie." -#: import.php:336 +#: import.php:335 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -855,31 +837,31 @@ msgstr "" "maximale bestandsgrootte zoals opgegeven in de PHP-configuratie. Zie [a@./" "Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." -#: import.php:371 libraries/display_import.lib.php:23 +#: import.php:370 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "" "De plugins voor het importeren konden niet worden geladen, controleer uw " "installatie!" -#: import.php:396 +#: import.php:395 msgid "The bookmark has been deleted." msgstr "De boekenlegger (Bookmark) is verwijderd." -#: import.php:400 +#: import.php:399 msgid "Showing bookmark" msgstr "Toon bookmark" -#: import.php:402 sql.php:625 +#: import.php:401 sql.php:618 #, php-format msgid "Bookmark %s created" msgstr "Bookmark %s aangemaakt" -#: import.php:408 import.php:414 +#: import.php:407 import.php:413 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Import is geslaagd, %d queries uitgevoerd." -#: import.php:423 +#: import.php:422 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -887,7 +869,7 @@ msgstr "" "De maximale uitvoertijd is verstreken, indien u de import wil afmaken kunt u " "het bestand opnieuw invoeren." -#: import.php:425 +#: import.php:424 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -896,21 +878,21 @@ msgstr "" "dit dat phpMyAdmin dit niet af kan maken tenzij de tijdsrestricties van PHP " "worden versoepeld." -#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:240 +#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:239 #: user_password.php:110 msgid "Back" msgstr "Terug" -#: index.php:188 +#: index.php:183 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" "phpMyAdmin werkt gebruiksvriendelijker met een browser die frames aan " "kan." -#: js/messages.php:25 server_synchronize.php:344 server_synchronize.php:356 -#: server_synchronize.php:372 server_synchronize.php:379 -#: server_synchronize.php:738 server_synchronize.php:766 -#: server_synchronize.php:794 server_synchronize.php:806 +#: js/messages.php:25 server_synchronize.php:343 server_synchronize.php:355 +#: server_synchronize.php:371 server_synchronize.php:378 +#: server_synchronize.php:737 server_synchronize.php:765 +#: server_synchronize.php:793 server_synchronize.php:805 msgid "Click to select" msgstr "Klik om te selecteren" @@ -918,15 +900,15 @@ msgstr "Klik om te selecteren" msgid "Click to unselect" msgstr "Klik om te de-selecteren" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:88 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:87 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\"-opdrachten zijn niet mogelijk." -#: js/messages.php:30 libraries/mult_submits.inc.php:257 sql.php:187 +#: js/messages.php:30 libraries/mult_submits.inc.php:256 sql.php:186 msgid "Do you really want to " msgstr "Weet u zeker dat u dit wilt " -#: js/messages.php:31 libraries/mult_submits.inc.php:257 sql.php:171 +#: js/messages.php:31 libraries/mult_submits.inc.php:256 sql.php:170 msgid "You are about to DESTROY a complete database!" msgstr "U staat op het punt een complete database te VERWIJDEREN!" @@ -957,11 +939,11 @@ msgstr "De machinenaam is leeg!" msgid "The user name is empty!" msgstr "De gebruikersnaam is leeg!" -#: js/messages.php:44 server_privileges.php:1228 user_password.php:65 +#: js/messages.php:44 server_privileges.php:1229 user_password.php:65 msgid "The password is empty!" msgstr "Het wachtwoord is leeg!" -#: js/messages.php:45 server_privileges.php:1226 user_password.php:68 +#: js/messages.php:45 server_privileges.php:1227 user_password.php:68 msgid "The passwords aren't the same!" msgstr "De wachtwoorden zijn niet gelijk!" @@ -969,27 +951,27 @@ msgstr "De wachtwoorden zijn niet gelijk!" msgid "Cancel" msgstr "Annuleren" -#: js/messages.php:52 pmd_save_pos.php:53 +#: js/messages.php:52 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "Wijzigingen opgeslagen." -#: js/messages.php:53 pmd_relation_upd.php:48 +#: js/messages.php:53 pmd_relation_upd.php:47 msgid "Relation deleted" msgstr "Relatie verwijderd" -#: js/messages.php:54 pmd_relation_new.php:63 +#: js/messages.php:54 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "Vreemde sleutel(FOREIGN KEY) relatie toegevoegd" -#: js/messages.php:55 pmd_relation_new.php:85 +#: js/messages.php:55 pmd_relation_new.php:84 msgid "Internal relation added" msgstr "Interne relatie toegevoegd" -#: js/messages.php:56 pmd_relation_new.php:62 pmd_relation_new.php:87 +#: js/messages.php:56 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "Fout: Relatie niet toegevoegd." -#: js/messages.php:57 pmd_relation_new.php:30 +#: js/messages.php:57 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "Fout: relatie bestaat reeds." @@ -997,13 +979,13 @@ msgstr "Fout: relatie bestaat reeds." msgid "Error saving coordinates for Designer." msgstr "Fout bij het opslaan van coördinaten voor de Designer." -#: js/messages.php:59 libraries/relation.lib.php:94 -#: libraries/relation.lib.php:106 +#: js/messages.php:59 libraries/relation.lib.php:89 +#: libraries/relation.lib.php:101 msgid "General relation features" msgstr "Basis relatie opties" -#: js/messages.php:59 libraries/relation.lib.php:88 -#: libraries/relation.lib.php:95 +#: js/messages.php:59 libraries/relation.lib.php:83 +#: libraries/relation.lib.php:90 msgid "Disabled" msgstr "Uitgeschakeld" @@ -1019,7 +1001,7 @@ msgstr "Selecteer vreemde sleutel" msgid "Please select the primary key or a unique key" msgstr "Selecteer de primaire sleutel of een unieke sleutel" -#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:547 +#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" @@ -1048,10 +1030,10 @@ msgid "Prev" msgstr "Vorige" #. l10n: Display text for next month link in calendar -#: js/messages.php:81 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:337 -#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:422 -#: tbl_structure.php:800 +#: js/messages.php:81 libraries/common.lib.php:2358 +#: libraries/common.lib.php:2361 libraries/display_tbl.lib.php:336 +#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 +#: tbl_structure.php:798 msgid "Next" msgstr "Volgende" @@ -1109,27 +1091,27 @@ msgid "December" msgstr "December" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1562 +#: js/messages.php:101 libraries/common.lib.php:1566 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1564 +#: js/messages.php:103 libraries/common.lib.php:1568 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1566 +#: js/messages.php:105 libraries/common.lib.php:1570 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1568 +#: js/messages.php:107 libraries/common.lib.php:1572 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1570 +#: js/messages.php:109 libraries/common.lib.php:1574 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1137,37 +1119,37 @@ msgid "May" msgstr "Mei" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1572 +#: js/messages.php:111 libraries/common.lib.php:1576 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1574 +#: js/messages.php:113 libraries/common.lib.php:1578 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1576 +#: js/messages.php:115 libraries/common.lib.php:1580 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1578 +#: js/messages.php:117 libraries/common.lib.php:1582 msgid "Sep" msgstr "Sept" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1580 +#: js/messages.php:119 libraries/common.lib.php:1584 msgid "Oct" msgstr "Oct" #. l10n: Short month name -#: js/messages.php:121 libraries/common.lib.php:1582 +#: js/messages.php:121 libraries/common.lib.php:1586 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:123 libraries/common.lib.php:1584 +#: js/messages.php:123 libraries/common.lib.php:1588 msgid "Dec" msgstr "Dec" @@ -1200,37 +1182,37 @@ msgid "Saturday" msgstr "Zaterdag" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1587 +#: js/messages.php:136 libraries/common.lib.php:1591 msgid "Sun" msgstr "Zo" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1589 +#: js/messages.php:138 libraries/common.lib.php:1593 msgid "Mon" msgstr "Ma" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1591 +#: js/messages.php:140 libraries/common.lib.php:1595 msgid "Tue" msgstr "Di" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1593 +#: js/messages.php:142 libraries/common.lib.php:1597 msgid "Wed" msgstr "Wo" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1595 +#: js/messages.php:144 libraries/common.lib.php:1599 msgid "Thu" msgstr "Do" #. l10n: Short week day name -#: js/messages.php:146 libraries/common.lib.php:1597 +#: js/messages.php:146 libraries/common.lib.php:1601 msgid "Fri" msgstr "Vr" #. l10n: Short week day name -#: js/messages.php:148 libraries/common.lib.php:1599 +#: js/messages.php:148 libraries/common.lib.php:1603 msgid "Sat" msgstr "Za" @@ -1300,18 +1282,13 @@ msgstr "Seconde" msgid "Font size" msgstr "Font formaat" -#: libraries/File.class.php:336 libraries/File.class.php:424 -#: libraries/File.class.php:561 libraries/File.class.php:700 -msgid "Unknown error in file upload." -msgstr "Onbekende fout bij het uploaden." - -#: libraries/File.class.php:406 +#: libraries/File.class.php:315 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "Het geuploade bestand overschrijd de 'upload_max_filesize' optie uit uw php." "ini." -#: libraries/File.class.php:409 +#: libraries/File.class.php:318 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -1319,23 +1296,27 @@ msgstr "" "Het geuploade bestand overschrijd de MAX_FILE_SIZE-optie die was opgegeven " "in het HTML formulier." -#: libraries/File.class.php:412 +#: libraries/File.class.php:321 msgid "The uploaded file was only partially uploaded." msgstr "Het geuploade bestand was slechts gedeeltelijk ontvangen." -#: libraries/File.class.php:415 +#: libraries/File.class.php:324 msgid "Missing a temporary folder." msgstr "De map voor tijdelijkebestanden ontbreekt." -#: libraries/File.class.php:418 +#: libraries/File.class.php:327 msgid "Failed to write file to disk." msgstr "Opslaan van het bestand op de hardeschijf is mislukt." -#: libraries/File.class.php:421 +#: libraries/File.class.php:330 msgid "File upload stopped by extension." msgstr "Upload afgebroken vanwege de extensie." -#: libraries/File.class.php:898 +#: libraries/File.class.php:333 +msgid "Unknown error in file upload." +msgstr "Onbekende fout bij het uploaden." + +#: libraries/File.class.php:624 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -1343,37 +1324,37 @@ msgstr "" "Fout bij het verplaatsen van het geuploade bestand, zie [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" -#: libraries/Index.class.php:427 tbl_relation.php:528 +#: libraries/Index.class.php:427 tbl_relation.php:526 msgid "No index defined!" msgstr "Geen index gedefinieerd!" -#: libraries/Index.class.php:432 server_databases.php:131 tbl_tracking.php:315 +#: libraries/Index.class.php:432 server_databases.php:129 tbl_tracking.php:310 msgid "Indexes" msgstr "Indexen" #: libraries/Index.class.php:443 libraries/mult_submits.inc.php:102 -#: libraries/tbl_properties.inc.php:518 tbl_structure.php:32 -#: tbl_structure.php:154 tbl_structure.php:158 tbl_structure.php:473 -#: tbl_tracking.php:321 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:31 +#: tbl_structure.php:153 tbl_structure.php:157 tbl_structure.php:471 +#: tbl_tracking.php:316 msgid "Unique" msgstr "Unieke waarde" -#: libraries/Index.class.php:444 tbl_tracking.php:322 +#: libraries/Index.class.php:444 tbl_tracking.php:317 msgid "Packed" msgstr "Gecomprimeerd" -#: libraries/Index.class.php:446 tbl_tracking.php:324 +#: libraries/Index.class.php:446 tbl_tracking.php:319 msgid "Cardinality" msgstr "Kardinaliteit" -#: libraries/Index.class.php:449 tbl_tracking.php:278 tbl_tracking.php:327 +#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322 msgid "Comment" msgstr "Opmerking" #: libraries/Index.class.php:465 libraries/common.lib.php:609 -#: libraries/common.lib.php:1198 libraries/display_tbl.lib.php:1116 +#: libraries/common.lib.php:1191 libraries/display_tbl.lib.php:1115 #: libraries/import.lib.php:1119 libraries/import.lib.php:1143 -#: pdf_pages.php:284 setup/frames/index.inc.php:124 +#: pdf_pages.php:283 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:349 tbl_row_action.php:68 msgid "Edit" msgstr "Wijzig" @@ -1397,15 +1378,15 @@ msgstr "" "verwijderd." #: libraries/List_Database.class.php:430 libraries/server_links.inc.php:40 -#: server_databases.php:87 server_privileges.php:1652 +#: server_databases.php:85 server_privileges.php:1656 #: setup/lib/messages.inc.php:107 test/theme.php:92 msgid "Databases" msgstr "Databases" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:259 libraries/import.lib.php:134 pdf_schema.php:31 -#: pdf_schema.php:231 tbl_change.php:1023 tbl_operations.php:212 -#: tbl_relation.php:289 view_operations.php:61 +#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 +#: tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Fout" @@ -1433,42 +1414,42 @@ msgid_plural "%1$d rows inserted." msgstr[0] "%1$d rij(en) toegevoegd." msgstr[1] "%1$d rij(en) toegevoegd." -#: libraries/StorageEngine.class.php:196 +#: libraries/StorageEngine.class.php:194 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:352 +#: libraries/StorageEngine.class.php:354 #, php-format msgid "%s is available on this MySQL server." msgstr "%s is beschikbaar op deze MySQL-server." -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:357 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s is uitgeschakeld op deze MySQL-server." -#: libraries/StorageEngine.class.php:359 +#: libraries/StorageEngine.class.php:361 #, 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:1018 +#: libraries/Table.class.php:1017 msgid "Invalid database" msgstr "Ongeldige database" -#: libraries/Table.class.php:1032 tbl_get_field.php:25 +#: libraries/Table.class.php:1031 tbl_get_field.php:25 msgid "Invalid table name" msgstr "Ongeldige tabel naam" -#: libraries/Table.class.php:1047 +#: libraries/Table.class.php:1046 #, 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:1131 +#: libraries/Table.class.php:1129 #, php-format msgid "Table %s has been renamed to %s" msgstr "Tabel %s is hernoemd naar %s" @@ -1486,22 +1467,22 @@ msgstr "Geen preview beschikbaar." msgid "take it" msgstr "neem het" -#: libraries/Theme_Manager.class.php:114 +#: 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:152 +#: libraries/Theme_Manager.class.php:147 #, php-format msgid "Theme %s not found!" msgstr "Thema %s niet gevonden!" -#: libraries/Theme_Manager.class.php:220 +#: 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:296 test/theme.php:160 themes.php:20 +#: libraries/Theme_Manager.class.php:291 test/theme.php:160 themes.php:20 #: themes.php:40 msgid "Theme / Style" msgstr "Thema / Stijl" @@ -1618,19 +1599,19 @@ msgstr "Geen geldige authenticatie sleutel aanwezig" msgid "Authenticating..." msgstr "Authenticeren..." -#: libraries/blobstreaming.lib.php:689 +#: libraries/blobstreaming.lib.php:340 msgid "View image" msgstr "Bekijk afbeelding" -#: libraries/blobstreaming.lib.php:693 +#: libraries/blobstreaming.lib.php:344 msgid "Play audio" msgstr "Afspelen" -#: libraries/blobstreaming.lib.php:698 +#: libraries/blobstreaming.lib.php:349 msgid "View video" msgstr "Bekijk video" -#: libraries/blobstreaming.lib.php:702 +#: libraries/blobstreaming.lib.php:353 msgid "Download file" msgstr "Download bestand" @@ -1685,7 +1666,7 @@ msgstr "Server" msgid "Invalid authentication method set in configuration:" msgstr "Ongeldige authenticatiemethode opgegeven in configuratie:" -#: libraries/common.inc.php:909 +#: libraries/common.inc.php:908 #, php-format msgid "You should upgrade to %s %s or later." msgstr "U moet opwaarderen (upgraden) naar %s %s of hoger." @@ -1710,7 +1691,8 @@ msgstr "en" #: libraries/common.lib.php:425 libraries/common.lib.php:427 #: libraries/common.lib.php:429 libraries/common.lib.php:445 #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 -#: libraries/display_export.lib.php:163 libraries/relation.lib.php:84 +#: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 +#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 #: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" @@ -1725,149 +1707,149 @@ msgstr "SQL-query" msgid "MySQL said: " msgstr "MySQL retourneerde: " -#: libraries/common.lib.php:1136 +#: libraries/common.lib.php:1129 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "Failed to connect to SQL validator!" msgstr "Er kan geen verbinding worden gemaakt met de server" -#: libraries/common.lib.php:1174 setup/lib/messages.inc.php:350 +#: libraries/common.lib.php:1167 setup/lib/messages.inc.php:350 msgid "Explain SQL" msgstr "Verklaar SQL" -#: libraries/common.lib.php:1177 +#: libraries/common.lib.php:1170 msgid "Skip Explain SQL" msgstr "Uitleg SQL overslaan" -#: libraries/common.lib.php:1211 +#: libraries/common.lib.php:1204 msgid "Without PHP Code" msgstr "zonder PHP-Code" -#: libraries/common.lib.php:1214 setup/lib/messages.inc.php:352 +#: libraries/common.lib.php:1207 setup/lib/messages.inc.php:352 msgid "Create PHP Code" msgstr "Genereer PHP-Code" -#: libraries/common.lib.php:1232 server_status.php:451 +#: libraries/common.lib.php:1225 server_status.php:451 #: setup/lib/messages.inc.php:351 msgid "Refresh" msgstr "Vernieuw" -#: libraries/common.lib.php:1241 +#: libraries/common.lib.php:1234 msgid "Skip Validate SQL" msgstr "SQL-validatie overslaan" -#: libraries/common.lib.php:1244 setup/lib/messages.inc.php:353 +#: libraries/common.lib.php:1237 setup/lib/messages.inc.php:353 msgid "Validate SQL" msgstr "Valideer SQL" -#: libraries/common.lib.php:1283 +#: libraries/common.lib.php:1287 msgid "Inline edit of this query" msgstr "Rechtstreekse bewerking van deze query" # "Inline" vertaalt naar "rechtstreeks in het document", als het ware binnen iets anders. -#: libraries/common.lib.php:1285 +#: libraries/common.lib.php:1289 msgid "Inline" msgstr "Rechtstreeks" -#: libraries/common.lib.php:1339 libraries/common.lib.php:1354 +#: libraries/common.lib.php:1343 libraries/common.lib.php:1358 msgid "Profiling" msgstr "Profiling" -#: libraries/common.lib.php:1358 libraries/tbl_triggers.lib.php:27 +#: libraries/common.lib.php:1362 libraries/tbl_triggers.lib.php:27 #: server_processlist.php:57 msgid "Time" msgstr "Tijd" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "B" msgstr "Bytes" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "KiB" msgstr "KB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "MiB" msgstr "MB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "GiB" msgstr "GB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "TiB" msgstr "TB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "PiB" msgstr "PB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "EiB" msgstr "EB" #. l10n: Thousands separator -#: libraries/common.lib.php:1424 +#: libraries/common.lib.php:1428 msgid "," msgstr "." #. l10n: Decimal separator -#: libraries/common.lib.php:1426 +#: libraries/common.lib.php:1430 msgid "." msgstr "," #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1603 +#: libraries/common.lib.php:1607 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y om %H:%M" -#: libraries/common.lib.php:1909 +#: libraries/common.lib.php:1913 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dagen, %s uren, %s minuten en %s seconden" -#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 -#: libraries/display_tbl.lib.php:289 server_status.php:718 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 +#: libraries/display_tbl.lib.php:288 server_status.php:718 msgid "Begin" msgstr "Begin" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 -#: libraries/display_tbl.lib.php:290 server_binlog.php:154 +#: libraries/common.lib.php:2328 libraries/common.lib.php:2331 +#: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "Vorige" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 -#: libraries/display_tbl.lib.php:352 +#: libraries/common.lib.php:2359 libraries/common.lib.php:2362 +#: libraries/display_tbl.lib.php:351 msgid "End" msgstr "Einde" -#: libraries/common.lib.php:2429 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "Ga naar database "%s"." -#: libraries/common.lib.php:2448 +#: libraries/common.lib.php:2453 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "De %s functionaliteit heeft last van een bekend probleem, zie %s" -#: libraries/common.lib.php:2828 libraries/common.lib.php:2835 -#: libraries/db_links.inc.php:67 libraries/export/sql.php:24 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 +#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 -#: libraries/tbl_links.inc.php:59 querywindow.php:89 test/theme.php:96 +#: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2837 libraries/db_links.inc.php:103 -#: libraries/tbl_links.inc.php:94 libraries/tbl_links.inc.php:116 -#: view_operations.php:88 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: view_operations.php:87 msgid "Operations" msgstr "Handelingen" -#: libraries/core.lib.php:282 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1883,38 +1865,38 @@ msgstr "Gebeurtenissen" msgid "Name" msgstr "Naam" -#: libraries/db_links.inc.php:44 +#: libraries/db_links.inc.php:43 #, php-format msgid "Database %s has been dropped." msgstr "Database %s is vervallen." -#: libraries/db_links.inc.php:56 libraries/db_links.inc.php:57 -#: libraries/db_links.inc.php:58 +#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 +#: libraries/db_links.inc.php:57 msgid "Database seems to be empty!" msgstr "Database lijkt leeg!" -#: libraries/db_links.inc.php:80 libraries/relation.lib.php:142 -#: libraries/tbl_links.inc.php:68 +#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "Tracking" -#: libraries/db_links.inc.php:85 +#: libraries/db_links.inc.php:84 msgid "Query" msgstr "Query opbouwen" -#: libraries/db_links.inc.php:90 libraries/relation.lib.php:138 +#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 msgid "Designer" msgstr "Designer" -#: libraries/db_links.inc.php:97 libraries/server_links.inc.php:87 -#: libraries/tbl_links.inc.php:90 pmd_pdf.php:83 pmd_pdf.php:109 +#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importeer" -#: libraries/db_links.inc.php:110 libraries/server_links.inc.php:65 -#: server_privileges.php:111 server_privileges.php:1714 -#: server_privileges.php:2063 test/theme.php:116 +#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: server_privileges.php:110 server_privileges.php:1718 +#: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" msgstr "Rechten" @@ -1926,7 +1908,7 @@ msgstr "Routines" msgid "Return type" msgstr "Retour type" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1847 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1806 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -1934,8 +1916,8 @@ msgstr "" "Bij benadering. Zie [a@./Documentation.html#faq3_11@Documentation]FAQ 3.11[/" "a]" -#: libraries/db_structure.lib.php:60 server_databases.php:141 -#: tbl_printview.php:334 tbl_structure.php:681 +#: libraries/db_structure.lib.php:60 server_databases.php:139 +#: tbl_printview.php:333 tbl_structure.php:679 msgid "Overhead" msgstr "Overhead" @@ -1954,7 +1936,7 @@ msgstr "De server reageert niet" 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:358 tbl_structure.php:607 +#: libraries/dbi/mysql.dbi.lib.php:358 tbl_structure.php:605 msgid "Details..." msgstr "Details..." @@ -1964,22 +1946,22 @@ msgid "Change password" msgstr "Wijzig wachtwoord" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:807 +#: libraries/replication_gui.lib.php:347 server_privileges.php:806 msgid "No Password" msgstr "Geen wachtwoord" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1530 server_synchronize.php:1174 +#: libraries/replication_gui.lib.php:351 server_privileges.php:795 +#: server_privileges.php:799 server_privileges.php:810 +#: server_privileges.php:1534 server_synchronize.php:1173 msgid "Password" msgstr "Wachtwoord" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:815 server_privileges.php:818 +#: server_privileges.php:814 server_privileges.php:817 msgid "Re-type" msgstr "Type opnieuw" @@ -2001,8 +1983,8 @@ msgstr "Nieuwe database aanmaken" msgid "Create" msgstr "Aanmaken" -#: libraries/display_create_database.lib.php:39 server_privileges.php:113 -#: server_privileges.php:1419 server_replication.php:34 +#: libraries/display_create_database.lib.php:39 server_privileges.php:112 +#: server_privileges.php:1423 server_replication.php:33 msgid "No Privileges" msgstr "Geen rechten" @@ -2023,52 +2005,52 @@ msgstr "Nieuwe tabel aanmaken in database %s" msgid "Number of columns" msgstr "Aantal velden" -#: libraries/display_export.lib.php:41 +#: libraries/display_export.lib.php:35 msgid "Could not load export plugins, please check your installation!" msgstr "" "De plugins voor het exporteren konden niet worden geladen, controleer uw " "installatie!" -#: libraries/display_export.lib.php:106 +#: libraries/display_export.lib.php:100 #, fuzzy, php-format #| msgid "Dump %s row(s) starting at record # %s" msgid "Dump %s row(s) starting at row # %s" msgstr "%s rijen aan het dumpen, start bij rij %s." -#: libraries/display_export.lib.php:114 +#: libraries/display_export.lib.php:108 msgid "Dump all rows" msgstr "Dump alle rijen" -#: libraries/display_export.lib.php:124 setup/lib/messages.inc.php:79 +#: libraries/display_export.lib.php:118 setup/lib/messages.inc.php:79 msgid "Save as file" msgstr "Opslaan als bestand" -#: libraries/display_export.lib.php:133 +#: libraries/display_export.lib.php:127 #, php-format msgid "Save on server in %s directory" msgstr "Bewaar op de server in %s directory" -#: libraries/display_export.lib.php:141 setup/lib/messages.inc.php:87 +#: libraries/display_export.lib.php:135 setup/lib/messages.inc.php:87 msgid "Overwrite existing file(s)" msgstr "Overschrijf bestaand(e) bestand(en)" -#: libraries/display_export.lib.php:147 +#: libraries/display_export.lib.php:141 msgid "File name template" msgstr "Bestandsnaam template" -#: libraries/display_export.lib.php:151 +#: libraries/display_export.lib.php:145 msgid "server name" msgstr "servernaam" -#: libraries/display_export.lib.php:154 +#: libraries/display_export.lib.php:148 msgid "database name" msgstr "databasenaam" -#: libraries/display_export.lib.php:157 +#: libraries/display_export.lib.php:151 msgid "table name" msgstr "tabelnaam" -#: libraries/display_export.lib.php:161 +#: libraries/display_export.lib.php:155 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2079,39 +2061,39 @@ msgstr "" "gebruik van opmaakcodes is dan ook toegestaan. Daarnaast worden de volgende " "vertalingen toegepast: %3$s. Overige tekst zal gelijk blijven." -#: libraries/display_export.lib.php:202 +#: libraries/display_export.lib.php:196 msgid "remember template" msgstr "Onthoud template" -#: libraries/display_export.lib.php:210 libraries/display_import.lib.php:177 +#: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 #: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 msgid "Character set of the file:" msgstr "Karakter set van het bestand:" -#: libraries/display_export.lib.php:235 setup/lib/messages.inc.php:81 +#: libraries/display_export.lib.php:229 setup/lib/messages.inc.php:81 msgid "Compression" msgstr "Compressie" -#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:196 -#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:529 -#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:574 -#: server_privileges.php:1867 server_processlist.php:74 +#: libraries/display_export.lib.php:234 libraries/display_import.lib.php:196 +#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:528 +#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:573 +#: server_privileges.php:1871 server_processlist.php:74 msgid "None" msgstr "Geen" -#: libraries/display_export.lib.php:247 +#: libraries/display_export.lib.php:241 msgid "\"zipped\"" msgstr "\"Gezipt\"" -#: libraries/display_export.lib.php:253 +#: libraries/display_export.lib.php:247 msgid "\"gzipped\"" msgstr "\"ge-gzipt\"" -#: libraries/display_export.lib.php:259 +#: libraries/display_export.lib.php:253 msgid "\"bzipped\"" msgstr "\"ge-bzipt\"" -#: libraries/display_export.lib.php:274 libraries/export/sql.php:42 +#: libraries/display_export.lib.php:268 libraries/export/sql.php:42 #: libraries/import/sql.php:31 msgid "SQL compatibility mode" msgstr "SQL-compatibiliteits mode" @@ -2151,13 +2133,13 @@ msgid "File uploads are not allowed on this server." msgstr "Het uploaden van bestanden is niet toegestaan op deze server." #: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 -#: tbl_change.php:1024 +#: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "" "De directory die u heeft ingesteld om te uploaden kan niet worden bereikt." #: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 -#: tbl_change.php:1027 +#: tbl_change.php:925 msgid "web server upload directory" msgstr "web-server upload directory" @@ -2243,43 +2225,43 @@ msgstr "Papierformaat" msgid "Language" msgstr "Taal" -#: libraries/display_tbl.lib.php:303 +#: libraries/display_tbl.lib.php:302 #, php-format msgid "%d is not valid row number." msgstr "%d is geen geldig rij-nummer." -#: libraries/display_tbl.lib.php:309 +#: libraries/display_tbl.lib.php:308 #, fuzzy #| msgid "row(s) starting from record #" msgid "row(s) starting from row #" msgstr "rijen beginnend bij" -#: libraries/display_tbl.lib.php:315 +#: libraries/display_tbl.lib.php:314 msgid "horizontal" msgstr "horizontaal" -#: libraries/display_tbl.lib.php:316 +#: libraries/display_tbl.lib.php:315 msgid "horizontal (rotated headers)" msgstr "horizontaal (omgedraaide headers)" -#: libraries/display_tbl.lib.php:317 +#: libraries/display_tbl.lib.php:316 msgid "vertical" msgstr "verticaal" -#: libraries/display_tbl.lib.php:323 +#: libraries/display_tbl.lib.php:322 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "in %s modus en herhaal kopregels na %s cellen" -#: libraries/display_tbl.lib.php:345 +#: libraries/display_tbl.lib.php:344 msgid "This operation could take a long time. Proceed anyway?" msgstr "Deze bewerking kan lang duren. Weet u het zeker?" -#: libraries/display_tbl.lib.php:511 +#: libraries/display_tbl.lib.php:510 msgid "Sort by key" msgstr "Sorteren op sleutel" -#: libraries/display_tbl.lib.php:554 libraries/export/codegen.php:38 +#: libraries/display_tbl.lib.php:553 libraries/export/codegen.php:38 #: libraries/export/csv.php:29 libraries/export/excel.php:34 #: libraries/export/htmlword.php:28 libraries/export/latex.php:32 #: libraries/export/mediawiki.php:21 libraries/export/ods.php:26 @@ -2289,99 +2271,99 @@ msgstr "Sorteren op sleutel" #: libraries/export/xlsx.php:26 libraries/export/xml.php:23 #: libraries/export/yaml.php:27 libraries/import.lib.php:1114 #: libraries/import.lib.php:1136 libraries/import/csv.php:31 -#: libraries/import/docsql.php:33 libraries/import/ldi.php:46 +#: libraries/import/docsql.php:32 libraries/import/ldi.php:46 #: libraries/import/ods.php:30 libraries/import/sql.php:19 #: libraries/import/xls.php:25 libraries/import/xlsx.php:25 -#: libraries/import/xml.php:25 tbl_select.php:264 tbl_structure.php:752 +#: libraries/import/xml.php:25 tbl_select.php:263 tbl_structure.php:750 msgid "Options" msgstr "Opties" -#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:569 +#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:568 msgid "Partial Texts" msgstr "Gedeeltelijke teksten" -#: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:573 +#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:572 msgid "Full Texts" msgstr "Volledige teksten" -#: libraries/display_tbl.lib.php:586 +#: libraries/display_tbl.lib.php:585 msgid "Relational key" msgstr "Relationele sleutel" -#: libraries/display_tbl.lib.php:587 +#: libraries/display_tbl.lib.php:586 #, fuzzy #| msgid "Relational display field" msgid "Relational display column" msgstr "Relationele weergave veld" -#: libraries/display_tbl.lib.php:594 +#: libraries/display_tbl.lib.php:593 msgid "Show binary contents" msgstr "Toon binaire inhoud" -#: libraries/display_tbl.lib.php:596 +#: libraries/display_tbl.lib.php:595 msgid "Show BLOB contents" msgstr "Toon BLOB inhoud" -#: libraries/display_tbl.lib.php:598 +#: libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "Toon binaire-inhoud als HEX" -#: libraries/display_tbl.lib.php:606 pmd_general.php:140 tbl_change.php:312 -#: tbl_change.php:318 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:307 +#: tbl_change.php:313 msgid "Hide" msgstr "Verberg" -#: libraries/display_tbl.lib.php:606 libraries/relation.lib.php:122 -#: libraries/tbl_properties.inc.php:143 transformation_overview.php:46 +#: libraries/display_tbl.lib.php:605 libraries/relation.lib.php:117 +#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46 msgid "Browser transformation" msgstr "Browser transformaties" -#: libraries/display_tbl.lib.php:1125 libraries/display_tbl.lib.php:1129 -#: libraries/display_tbl.lib.php:1131 +#: libraries/display_tbl.lib.php:1124 libraries/display_tbl.lib.php:1128 +#: libraries/display_tbl.lib.php:1130 msgid "Execute bookmarked query" msgstr "Voor de gebookmarkte query uit" -#: libraries/display_tbl.lib.php:1144 libraries/display_tbl.lib.php:1156 +#: libraries/display_tbl.lib.php:1143 libraries/display_tbl.lib.php:1155 msgid "The row has been deleted" msgstr "De rij is verwijderd" -#: libraries/display_tbl.lib.php:1183 libraries/display_tbl.lib.php:2055 +#: libraries/display_tbl.lib.php:1182 libraries/display_tbl.lib.php:2014 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "stop proces" -#: libraries/display_tbl.lib.php:1933 +#: libraries/display_tbl.lib.php:1892 msgid "in query" msgstr "in query" -#: libraries/display_tbl.lib.php:1951 +#: libraries/display_tbl.lib.php:1910 msgid "Showing rows" msgstr "Toon Records" -#: libraries/display_tbl.lib.php:1961 +#: libraries/display_tbl.lib.php:1920 msgid "total" msgstr "totaal" -#: libraries/display_tbl.lib.php:1969 sql.php:523 +#: libraries/display_tbl.lib.php:1928 sql.php:522 #, php-format msgid "Query took %01.4f sec" msgstr "Query duurde %01.4f sec" -#: libraries/display_tbl.lib.php:2088 libraries/mult_submits.inc.php:112 -#: querywindow.php:115 querywindow.php:119 querywindow.php:122 -#: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:469 +#: libraries/display_tbl.lib.php:2047 libraries/mult_submits.inc.php:112 +#: querywindow.php:114 querywindow.php:118 querywindow.php:121 +#: tbl_structure.php:23 tbl_structure.php:148 tbl_structure.php:467 msgid "Change" msgstr "Veranderen" -#: libraries/display_tbl.lib.php:2158 +#: libraries/display_tbl.lib.php:2117 msgid "Query results operations" msgstr "Query resultaat bewerkingen" -#: libraries/display_tbl.lib.php:2186 +#: libraries/display_tbl.lib.php:2145 msgid "Print view (with full texts)" msgstr "Afdrukken (met volledige teksten)" -#: libraries/display_tbl.lib.php:2359 +#: libraries/display_tbl.lib.php:2318 msgid "Link not found" msgstr "Link niet gevonden" @@ -2439,9 +2421,9 @@ msgstr "InnoDB Status" msgid "Buffer Pool Usage" msgstr "Buffer Pool Gebruik" -#: libraries/engines/innodb.lib.php:168 server_databases.php:136 -#: server_databases.php:304 server_status.php:524 server_status.php:585 -#: server_status.php:606 tbl_printview.php:349 tbl_structure.php:695 +#: libraries/engines/innodb.lib.php:168 server_databases.php:134 +#: server_databases.php:302 server_status.php:524 server_status.php:585 +#: server_status.php:606 tbl_printview.php:348 tbl_structure.php:693 msgid "Total" msgstr "Totaal" @@ -2581,6 +2563,87 @@ msgstr "" "van 'REPAIR TABLE' of bij het aanmaken van indexen met 'CREATE INDEX' of " "'ALTER TABLE'" +#: libraries/engines/pbms.lib.php:31 +#, fuzzy +#| msgid "Garbage threshold" +msgid "Garbage Threshold" +msgstr "Garbage drempelwaaarde" + +#: libraries/engines/pbms.lib.php:32 +#, fuzzy +#| msgid "" +#| "The percentage of garbage in a data log file before it is compacted. This " +#| "is a value between 1 and 99. The default is 50." +msgid "The percentage of garbage in a repository file before it is compacted." +msgstr "" +"Het percentage van garbage in een data logbestand voor dat deze wordt " +"geschoond. Dit is een waarde tussen 1 en 99. De standaard is 50." + +#: libraries/engines/pbms.lib.php:36 libraries/replication_gui.lib.php:69 +#: server_synchronize.php:1161 +msgid "Port" +msgstr "Poort" + +#: libraries/engines/pbms.lib.php:37 +msgid "" +"The port for the PBMS stream-based communications. Setting this value to 0 " +"will disable HTTP communication with the daemon." +msgstr "" + +#: libraries/engines/pbms.lib.php:41 +msgid "Repository Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:42 +msgid "" +"The maximum size of a BLOB repository file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:46 +msgid "Temp Blob Timeout" +msgstr "" + +#: libraries/engines/pbms.lib.php:47 +msgid "" +"The timeout, in seconds, for temporary BLOBs. Uploaded BLOB data is removed " +"after this time, unless they are referenced by a record in the database." +msgstr "" + +#: libraries/engines/pbms.lib.php:51 +#, fuzzy +#| msgid "Log file threshold" +msgid "Temp Log Threshold" +msgstr "Log file drempelwaarde" + +#: libraries/engines/pbms.lib.php:52 +msgid "" +"The maximum size of a temporary BLOB log file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:56 +msgid "Max Keep Alive" +msgstr "" + +#: libraries/engines/pbms.lib.php:57 +msgid "" +"The timeout for inactive connection with the keep-alive flag set. After this " +"time the connection will be closed. The time-out is in milliseconds (1/1000)." +msgstr "" + +#: libraries/engines/pbms.lib.php:61 +msgid "Metadata Headers" +msgstr "" + +#: libraries/engines/pbms.lib.php:62 +msgid "" +"A \":\" delimited list of metadata headers to be used to initialize the " +"pbms_metadata_header table when a database is created." +msgstr "" + #: libraries/engines/pbxt.lib.php:22 msgid "Index cache size" msgstr "Index cache grootte" @@ -2731,7 +2794,7 @@ msgstr "" "hernoemd met een opgehoogd volgnummer" #: libraries/export/codegen.php:36 setup/lib/messages.inc.php:85 -#: tbl_printview.php:374 tbl_structure.php:736 +#: tbl_printview.php:373 tbl_structure.php:734 msgid "Format" msgstr "Opmaak" @@ -2804,9 +2867,9 @@ msgstr "Microsoft Word 2000" #: libraries/export/htmlword.php:23 libraries/export/latex.php:59 #: libraries/export/latex.php:205 libraries/export/odt.php:47 #: libraries/export/sql.php:105 libraries/export/sql.php:865 -#: libraries/export/texytext.php:27 server_databases.php:126 -#: server_privileges.php:576 server_replication.php:315 tbl_printview.php:315 -#: tbl_structure.php:664 +#: libraries/export/texytext.php:27 server_databases.php:124 +#: server_privileges.php:575 server_replication.php:314 tbl_printview.php:314 +#: tbl_structure.php:662 msgid "Data" msgstr "Data" @@ -2857,13 +2920,13 @@ msgid "Label key" msgstr "Labelsleutel" #: libraries/export/latex.php:46 libraries/export/odt.php:34 -#: libraries/export/sql.php:90 tbl_relation.php:398 +#: libraries/export/sql.php:90 tbl_relation.php:396 msgid "Relations" msgstr "Relaties" #: libraries/export/latex.php:52 libraries/export/odt.php:40 #: libraries/export/odt.php:317 libraries/export/sql.php:94 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "MIME-type" @@ -2871,10 +2934,10 @@ msgstr "MIME-type" #: libraries/export/xml.php:101 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1529 server_privileges.php:2061 -#: server_processlist.php:54 server_synchronize.php:1158 +#: libraries/replication_gui.lib.php:331 server_privileges.php:730 +#: server_privileges.php:733 server_privileges.php:789 +#: server_privileges.php:1533 server_privileges.php:2065 +#: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "Machine" @@ -3064,8 +3127,8 @@ msgstr "Exporteer views" msgid "Export contents" msgstr "Exporteer inhoud" -#: libraries/footer.inc.php:182 libraries/footer.inc.php:193 -#: libraries/footer.inc.php:196 +#: libraries/footer.inc.php:180 libraries/footer.inc.php:191 +#: libraries/footer.inc.php:194 msgid "Open new phpMyAdmin window" msgstr "Open nieuw phpMyAdmin scherm" @@ -3081,7 +3144,7 @@ msgstr "SQL-resultaat" msgid "Generated by" msgstr "Gegenereerd door" -#: libraries/import.lib.php:151 sql.php:519 tbl_change.php:180 +#: libraries/import.lib.php:151 sql.php:518 tbl_change.php:175 #: 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)." @@ -3137,7 +3200,7 @@ msgstr "Negeer dubbele rijen" msgid "Column names in first row" msgstr "Kolomnamen in eerste rij" -#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:501 +#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:500 #: view_create.php:147 msgid "Column names" msgstr "Kolom namen" @@ -3164,12 +3227,12 @@ msgstr "Ongeldig formaat van CSV invoer op regel %d." msgid "Invalid column count in CSV input on line %d." msgstr "Verkeerd aantal velden in CSV invoer op regel %d." -#: libraries/import/docsql.php:28 +#: libraries/import/docsql.php:27 msgid "DocSQL" msgstr "DocSQL" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 -#: server_synchronize.php:427 server_synchronize.php:870 +#: libraries/import/docsql.php:30 libraries/tbl_properties.inc.php:616 +#: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "Tabelnaam" @@ -3229,26 +3292,26 @@ msgstr "Geen" msgid "Convert to Kana" msgstr "Zet om naar Kana" -#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:512 -#: tbl_structure.php:28 tbl_structure.php:152 tbl_structure.php:156 -#: tbl_structure.php:472 +#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:511 +#: tbl_structure.php:27 tbl_structure.php:151 tbl_structure.php:155 +#: tbl_structure.php:470 msgid "Primary" msgstr "Primaire sleutel" #: libraries/mult_submits.inc.php:97 libraries/tbl_properties.inc.php:115 -#: libraries/tbl_properties.inc.php:524 tbl_printview.php:324 -#: tbl_structure.php:30 tbl_structure.php:153 tbl_structure.php:157 -#: tbl_structure.php:474 tbl_structure.php:672 +#: libraries/tbl_properties.inc.php:523 tbl_printview.php:323 +#: tbl_structure.php:29 tbl_structure.php:152 tbl_structure.php:156 +#: tbl_structure.php:472 tbl_structure.php:670 msgid "Index" msgstr "Index" -#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:530 -#: tbl_structure.php:34 tbl_structure.php:155 tbl_structure.php:159 -#: tbl_structure.php:477 +#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:529 +#: tbl_structure.php:33 tbl_structure.php:154 tbl_structure.php:158 +#: tbl_structure.php:475 msgid "Fulltext" msgstr "Volledige tekst" -#: libraries/mult_submits.inc.php:434 tbl_replace.php:330 +#: libraries/mult_submits.inc.php:433 tbl_replace.php:330 msgid "No change" msgstr "Geen verandering" @@ -3256,190 +3319,190 @@ msgstr "Geen verandering" msgid "Charset" msgstr "Karakterset" -#: libraries/mysql_charsets.lib.php:210 libraries/mysql_charsets.lib.php:411 -#: tbl_change.php:515 +#: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 +#: tbl_change.php:510 msgid "Binary" msgstr " Binair " -#: libraries/mysql_charsets.lib.php:222 +#: libraries/mysql_charsets.lib.php:214 msgid "Bulgarian" msgstr "Bulgaars" -#: libraries/mysql_charsets.lib.php:226 libraries/mysql_charsets.lib.php:351 +#: libraries/mysql_charsets.lib.php:218 libraries/mysql_charsets.lib.php:343 msgid "Simplified Chinese" msgstr "Vereenvoudigd Chinese" -#: libraries/mysql_charsets.lib.php:228 libraries/mysql_charsets.lib.php:371 +#: libraries/mysql_charsets.lib.php:220 libraries/mysql_charsets.lib.php:363 msgid "Traditional Chinese" msgstr "Traditioneel Chinees" -#: libraries/mysql_charsets.lib.php:232 libraries/mysql_charsets.lib.php:418 +#: libraries/mysql_charsets.lib.php:224 libraries/mysql_charsets.lib.php:410 msgid "case-insensitive" msgstr "hoofdletter ongevoelig" -#: libraries/mysql_charsets.lib.php:235 libraries/mysql_charsets.lib.php:420 +#: libraries/mysql_charsets.lib.php:227 libraries/mysql_charsets.lib.php:412 msgid "case-sensitive" msgstr "hoofdletter gevoelig" -#: libraries/mysql_charsets.lib.php:238 +#: libraries/mysql_charsets.lib.php:230 msgid "Croatian" msgstr "Kroatisch" -#: libraries/mysql_charsets.lib.php:241 +#: libraries/mysql_charsets.lib.php:233 msgid "Czech" msgstr "Tsjechisch" -#: libraries/mysql_charsets.lib.php:244 +#: libraries/mysql_charsets.lib.php:236 msgid "Danish" msgstr "Deens" -#: libraries/mysql_charsets.lib.php:247 +#: libraries/mysql_charsets.lib.php:239 msgid "English" msgstr "Engels" -#: libraries/mysql_charsets.lib.php:250 +#: libraries/mysql_charsets.lib.php:242 msgid "Esperanto" msgstr "Esperanto" -#: libraries/mysql_charsets.lib.php:253 +#: libraries/mysql_charsets.lib.php:245 msgid "Estonian" msgstr "Estlands" -#: libraries/mysql_charsets.lib.php:256 libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:248 libraries/mysql_charsets.lib.php:251 msgid "German" msgstr "Duits" -#: libraries/mysql_charsets.lib.php:256 +#: libraries/mysql_charsets.lib.php:248 msgid "dictionary" msgstr "Woordenboek" -#: libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:251 msgid "phone book" msgstr "Telefoonboek" -#: libraries/mysql_charsets.lib.php:262 +#: libraries/mysql_charsets.lib.php:254 msgid "Hungarian" msgstr "Hongaars" -#: libraries/mysql_charsets.lib.php:265 +#: libraries/mysql_charsets.lib.php:257 msgid "Icelandic" msgstr "IJslands" -#: libraries/mysql_charsets.lib.php:268 libraries/mysql_charsets.lib.php:358 +#: libraries/mysql_charsets.lib.php:260 libraries/mysql_charsets.lib.php:350 msgid "Japanese" msgstr "Japans" -#: libraries/mysql_charsets.lib.php:271 +#: libraries/mysql_charsets.lib.php:263 msgid "Latvian" msgstr "Lets" -#: libraries/mysql_charsets.lib.php:274 +#: libraries/mysql_charsets.lib.php:266 msgid "Lithuanian" msgstr "Litouws" -#: libraries/mysql_charsets.lib.php:277 libraries/mysql_charsets.lib.php:380 +#: libraries/mysql_charsets.lib.php:269 libraries/mysql_charsets.lib.php:372 msgid "Korean" msgstr "Koreaans" -#: libraries/mysql_charsets.lib.php:280 +#: libraries/mysql_charsets.lib.php:272 msgid "Persian" msgstr "Perzisch" -#: libraries/mysql_charsets.lib.php:283 +#: libraries/mysql_charsets.lib.php:275 msgid "Polish" msgstr "Pools" -#: libraries/mysql_charsets.lib.php:286 libraries/mysql_charsets.lib.php:334 +#: libraries/mysql_charsets.lib.php:278 libraries/mysql_charsets.lib.php:326 msgid "West European" msgstr "West Europees" -#: libraries/mysql_charsets.lib.php:289 +#: libraries/mysql_charsets.lib.php:281 msgid "Romanian" msgstr "Roemeens" -#: libraries/mysql_charsets.lib.php:292 +#: libraries/mysql_charsets.lib.php:284 msgid "Slovak" msgstr "Slowaaks" -#: libraries/mysql_charsets.lib.php:295 +#: libraries/mysql_charsets.lib.php:287 msgid "Slovenian" msgstr "Sloveens" -#: libraries/mysql_charsets.lib.php:298 +#: libraries/mysql_charsets.lib.php:290 msgid "Spanish" msgstr "Spaans" -#: libraries/mysql_charsets.lib.php:301 +#: libraries/mysql_charsets.lib.php:293 msgid "Traditional Spanish" msgstr "Traditioneel Spaans" -#: libraries/mysql_charsets.lib.php:304 libraries/mysql_charsets.lib.php:401 +#: libraries/mysql_charsets.lib.php:296 libraries/mysql_charsets.lib.php:393 msgid "Swedish" msgstr "Zweeds" -#: libraries/mysql_charsets.lib.php:307 libraries/mysql_charsets.lib.php:404 +#: libraries/mysql_charsets.lib.php:299 libraries/mysql_charsets.lib.php:396 msgid "Thai" msgstr "Thais" -#: libraries/mysql_charsets.lib.php:310 libraries/mysql_charsets.lib.php:398 +#: libraries/mysql_charsets.lib.php:302 libraries/mysql_charsets.lib.php:390 msgid "Turkish" msgstr "Turks" -#: libraries/mysql_charsets.lib.php:313 libraries/mysql_charsets.lib.php:395 +#: libraries/mysql_charsets.lib.php:305 libraries/mysql_charsets.lib.php:387 msgid "Ukrainian" msgstr "Oekraïens" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 msgid "Unicode" msgstr "Unicode" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 -#: libraries/mysql_charsets.lib.php:334 libraries/mysql_charsets.lib.php:341 -#: libraries/mysql_charsets.lib.php:363 libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 +#: libraries/mysql_charsets.lib.php:326 libraries/mysql_charsets.lib.php:333 +#: libraries/mysql_charsets.lib.php:355 libraries/mysql_charsets.lib.php:366 msgid "multilingual" msgstr "meertalig" -#: libraries/mysql_charsets.lib.php:341 +#: libraries/mysql_charsets.lib.php:333 msgid "Central European" msgstr "Centraal Europees" -#: libraries/mysql_charsets.lib.php:346 +#: libraries/mysql_charsets.lib.php:338 msgid "Russian" msgstr "Russisch" -#: libraries/mysql_charsets.lib.php:363 +#: libraries/mysql_charsets.lib.php:355 msgid "Baltic" msgstr "Baltisch" -#: libraries/mysql_charsets.lib.php:368 +#: libraries/mysql_charsets.lib.php:360 msgid "Armenian" msgstr "Armeens" -#: libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:366 msgid "Cyrillic" msgstr "Cyrillisch" -#: libraries/mysql_charsets.lib.php:377 +#: libraries/mysql_charsets.lib.php:369 msgid "Arabic" msgstr "Arabisch" -#: libraries/mysql_charsets.lib.php:383 +#: libraries/mysql_charsets.lib.php:375 msgid "Hebrew" msgstr "Hebreeuws" -#: libraries/mysql_charsets.lib.php:386 +#: libraries/mysql_charsets.lib.php:378 msgid "Georgian" msgstr "Georgisch" -#: libraries/mysql_charsets.lib.php:389 +#: libraries/mysql_charsets.lib.php:381 msgid "Greek" msgstr "Grieks" -#: libraries/mysql_charsets.lib.php:392 +#: libraries/mysql_charsets.lib.php:384 msgid "Czech-Slovak" msgstr "Tsjechische-Slowaak" -#: libraries/mysql_charsets.lib.php:407 libraries/mysql_charsets.lib.php:414 +#: libraries/mysql_charsets.lib.php:399 libraries/mysql_charsets.lib.php:406 msgid "unknown" msgstr "onbekend" @@ -3465,60 +3528,60 @@ msgstr "Query-venster" msgid "This format has no options" msgstr "Dit format heeft geen opties" -#: libraries/relation.lib.php:82 +#: libraries/relation.lib.php:77 msgid "not OK" msgstr "Niet Goed" -#: libraries/relation.lib.php:86 pmd_general.php:339 +#: libraries/relation.lib.php:81 pmd_general.php:339 msgid "OK" msgstr "Correct" -#: libraries/relation.lib.php:87 +#: libraries/relation.lib.php:82 msgid "Enabled" msgstr "Ingeschakeld" -#: libraries/relation.lib.php:110 +#: libraries/relation.lib.php:105 msgid "Display Features" msgstr "Toon Opties" -#: libraries/relation.lib.php:116 +#: libraries/relation.lib.php:111 msgid "Creation of PDFs" msgstr "Aanmaken van PDF bestanden" -#: libraries/relation.lib.php:120 +#: libraries/relation.lib.php:115 msgid "Displaying Column Comments" msgstr "Toon kolom commentaar" -#: libraries/relation.lib.php:125 +#: libraries/relation.lib.php:120 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "Raadpleeg de Documentatie over hoe u uw Column_comments tabel bijwerkt." -#: libraries/relation.lib.php:130 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 msgid "Bookmarked SQL query" msgstr "Opgeslagen SQL-query" -#: libraries/relation.lib.php:134 querywindow.php:99 querywindow.php:207 +#: libraries/relation.lib.php:129 querywindow.php:98 querywindow.php:205 msgid "SQL history" msgstr "SQL-geschiedenis" -#: libraries/relation.lib.php:146 +#: libraries/relation.lib.php:141 msgid "Quick steps to setup advanced features:" msgstr "Snelle stappen om geavanceerde functies in te stellen:" -#: libraries/relation.lib.php:148 +#: libraries/relation.lib.php:143 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" "Maak de benodigde tabellen aan met script/create_tables.sql." # hem/haar/het past beter maar het geslacht van de gebruiker is onvoorspelbaar. -#: libraries/relation.lib.php:149 +#: libraries/relation.lib.php:144 msgid "Create a pma user and give access to these tables." msgstr "Maak een pma gebruiker aan en verleen die toegang tot deze tabellen." -#: libraries/relation.lib.php:150 +#: libraries/relation.lib.php:145 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." @@ -3527,12 +3590,12 @@ msgstr "" "(config.inc.php) in, bijvoorbeeld door gebruik te maken van " "config.sample.inc.php." -#: libraries/relation.lib.php:151 +#: libraries/relation.lib.php:146 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" "Log opnieuw in op phpMyAdmin om het bijgewerkte configuratiebestand te laden." -#: libraries/relation.lib.php:1158 +#: libraries/relation.lib.php:1153 msgid "no description" msgstr "Geen beschrijving aanwezig" @@ -3540,7 +3603,7 @@ msgstr "Geen beschrijving aanwezig" msgid "Slave configuration" msgstr "Slave instellingen" -#: libraries/replication_gui.lib.php:53 server_replication.php:346 +#: libraries/replication_gui.lib.php:53 server_replication.php:345 msgid "Change or reconfigure master server" msgstr "Wijzig master server" @@ -3555,16 +3618,12 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:711 -#: server_privileges.php:714 server_privileges.php:721 -#: server_synchronize.php:1170 +#: libraries/replication_gui.lib.php:261 server_privileges.php:710 +#: server_privileges.php:713 server_privileges.php:720 +#: server_synchronize.php:1169 msgid "User name" msgstr "Gebruikersnaam" -#: libraries/replication_gui.lib.php:69 server_synchronize.php:1162 -msgid "Port" -msgstr "Poort" - #: libraries/replication_gui.lib.php:105 msgid "Master status" msgstr "Master status" @@ -3579,8 +3638,8 @@ msgid "Variable" msgstr "Variabelen" #: libraries/replication_gui.lib.php:117 server_status.php:737 -#: tbl_change.php:322 tbl_printview.php:368 tbl_select.php:137 -#: tbl_structure.php:728 +#: tbl_change.php:317 tbl_printview.php:367 tbl_select.php:136 +#: tbl_structure.php:726 msgid "Value" msgstr "Waarde" @@ -3596,38 +3655,38 @@ msgstr "" "Enkel slaves gestart met de optie --report-host=host_name zijn zichtbaar in " "deze lijst." -#: libraries/replication_gui.lib.php:242 server_replication.php:193 +#: libraries/replication_gui.lib.php:242 server_replication.php:192 msgid "Add slave replication user" msgstr "Voeg slave replicatie gebruiker toe" -#: libraries/replication_gui.lib.php:256 server_privileges.php:716 +#: libraries/replication_gui.lib.php:256 server_privileges.php:715 msgid "Any user" msgstr "Een willekeurige gebruiker" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1920 server_privileges.php:1950 +#: libraries/replication_gui.lib.php:348 server_privileges.php:716 +#: server_privileges.php:783 server_privileges.php:807 +#: server_privileges.php:1924 server_privileges.php:1954 msgid "Use text field" msgstr "Gebruik tekstveld" -#: libraries/replication_gui.lib.php:304 server_privileges.php:764 +#: libraries/replication_gui.lib.php:304 server_privileges.php:763 msgid "Any host" msgstr "Een willekeurige machine" -#: libraries/replication_gui.lib.php:308 server_privileges.php:768 +#: libraries/replication_gui.lib.php:308 server_privileges.php:767 msgid "Local" msgstr "lokaal" -#: libraries/replication_gui.lib.php:314 server_privileges.php:773 +#: libraries/replication_gui.lib.php:314 server_privileges.php:772 msgid "This Host" msgstr "Deze machine" -#: libraries/replication_gui.lib.php:320 server_privileges.php:779 +#: libraries/replication_gui.lib.php:320 server_privileges.php:778 msgid "Use Host Table" msgstr "Gebruik Host Tabel" -#: libraries/replication_gui.lib.php:333 server_privileges.php:792 +#: libraries/replication_gui.lib.php:333 server_privileges.php:791 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3655,8 +3714,8 @@ msgstr "Onbekende taal: %1$s." msgid "Servers" msgstr "Servers" -#: libraries/server_links.inc.php:52 server_engines.php:111 -#: server_engines.php:115 server_status.php:414 test/theme.php:104 +#: libraries/server_links.inc.php:52 server_engines.php:125 +#: server_engines.php:129 server_status.php:414 test/theme.php:104 msgid "Variables" msgstr "Variabelen" @@ -3677,12 +3736,12 @@ msgstr "Binaire log" msgid "Processes" msgstr "Processen" -#: libraries/server_links.inc.php:91 server_synchronize.php:1091 -#: server_synchronize.php:1099 +#: libraries/server_links.inc.php:91 server_synchronize.php:1090 +#: server_synchronize.php:1098 msgid "Synchronize" msgstr "Synchronizatie" -#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1109 +#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1108 msgid "Source database" msgstr "Bron database" @@ -3700,7 +3759,7 @@ msgstr "Andere server" msgid "Difference" msgstr "Verschil" -#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1111 +#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1110 msgid "Target database" msgstr "Doel database" @@ -3720,11 +3779,11 @@ msgstr "Draai SQL query/queries op database %s" msgid "Columns" msgstr "Kolom namen" -#: libraries/sql_query_form.lib.php:342 sql.php:664 sql.php:665 sql.php:682 +#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "Sla deze SQL-query op" -#: libraries/sql_query_form.lib.php:349 sql.php:676 +#: libraries/sql_query_form.lib.php:349 sql.php:669 msgid "Let every user access this bookmark" msgstr "Geef elke gebruiker toegang tot deze bookmark" @@ -3820,12 +3879,12 @@ 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/tbl_links.inc.php:106 libraries/tbl_links.inc.php:139 -#: libraries/tbl_links.inc.php:140 +#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 +#: libraries/tbl_links.inc.php:139 msgid "Table seems to be empty!" msgstr "Tabel lijkt leeg!" -#: libraries/tbl_links.inc.php:148 +#: libraries/tbl_links.inc.php:147 #, php-format msgid "Tracking of %s.%s is activated." msgstr "Tracking is ingeschakeld voor %s.%s." @@ -3860,12 +3919,12 @@ msgstr "" "Voer voor standaard waarden aub een enkele waarde in, zonder backslash of " "aanhalingstekens, gebruik makend van dit formaat: a" -#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1263 -#: pdf_schema.php:1284 tbl_printview.php:142 tbl_structure.php:179 +#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1262 +#: pdf_schema.php:1283 tbl_printview.php:141 tbl_structure.php:178 msgid "Attributes" msgstr "Attributen" -#: libraries/tbl_properties.inc.php:136 +#: libraries/tbl_properties.inc.php:135 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -3874,11 +3933,11 @@ msgstr "" "Voor een lijst met beschikbare transformatie opties en MIME-type " "transformaties, klik op %sTransformatie opties%s" -#: libraries/tbl_properties.inc.php:144 +#: libraries/tbl_properties.inc.php:143 msgid "Transformation options" msgstr "Transformatieopties" -#: libraries/tbl_properties.inc.php:145 +#: libraries/tbl_properties.inc.php:144 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
                            If you ever need to put a backslash (\"\\\") or a single " @@ -3891,16 +3950,16 @@ msgstr "" "(bijvoorbeeld '\\\\xyz' of 'a\\'b')." # "Geen" of indien telbaar: "Geen enkele". -#: libraries/tbl_properties.inc.php:392 +#: libraries/tbl_properties.inc.php:391 msgctxt "for default" msgid "None" msgstr "Geen" -#: libraries/tbl_properties.inc.php:393 +#: libraries/tbl_properties.inc.php:392 msgid "As defined:" msgstr "Als aangegeven:" -#: libraries/tbl_properties.inc.php:579 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:578 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
                            Please ask the " @@ -3909,29 +3968,29 @@ msgstr "" "Geen beschrijving beschikbaar voor deze transformatie.
                            Raadpleeg de " "maker over wat %s doet." -#: libraries/tbl_properties.inc.php:725 server_engines.php:57 -#: tbl_operations.php:354 +#: libraries/tbl_properties.inc.php:724 server_engines.php:56 +#: tbl_operations.php:352 msgid "Storage Engine" msgstr "Opslag Engine" -#: libraries/tbl_properties.inc.php:754 +#: libraries/tbl_properties.inc.php:753 msgid "PARTITION definition" msgstr "PARTITION definitie" -#: libraries/tbl_properties.inc.php:775 pdf_pages.php:502 +#: libraries/tbl_properties.inc.php:774 pdf_pages.php:501 #: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214 -#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1124 tbl_indexes.php:247 -#: tbl_relation.php:565 +#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1022 tbl_indexes.php:246 +#: tbl_relation.php:563 msgid "Save" msgstr "Opslaan" -#: libraries/tbl_properties.inc.php:779 tbl_structure.php:541 +#: libraries/tbl_properties.inc.php:778 tbl_structure.php:539 #, fuzzy, php-format #| msgid "Add column(s)" msgid "Add %s column(s)" msgstr "Kolom(men) toevoegen" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:535 +#: libraries/tbl_properties.inc.php:782 tbl_structure.php:533 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -4141,8 +4200,8 @@ msgstr "Interface" msgid "Custom color" msgstr "Aangepaste kleur" -#: main.php:162 pdf_pages.php:362 setup/lib/FormDisplay.tpl.php:216 -#: tbl_change.php:1173 +#: main.php:162 pdf_pages.php:361 setup/lib/FormDisplay.tpl.php:216 +#: tbl_change.php:1071 msgid "Reset" msgstr "Herstel" @@ -4150,8 +4209,8 @@ msgstr "Herstel" msgid "Protocol version" msgstr "Protocolversie" -#: main.php:188 server_privileges.php:1381 server_privileges.php:1528 -#: server_privileges.php:1642 server_privileges.php:2060 +#: main.php:188 server_privileges.php:1385 server_privileges.php:1532 +#: server_privileges.php:1646 server_privileges.php:2064 #: server_processlist.php:53 msgid "User" msgstr "Gebruiker" @@ -4244,7 +4303,16 @@ msgstr "" "nog in de phpMyAdmin directory. Het kan beter worden verwijderd zodra " "phpMyAdmin is geconfigureerd." -#: main.php:330 +#: main.php:314 +#, php-format +msgid "" +"The additional features for working with linked tables have been " +"deactivated. To find out why click %shere%s." +msgstr "" +"Extra opties om met tabellen te werken, die gelinkt zijn, zijn " +"uitgeschakeld. Om te weten te komen waarom klik %shier%s." + +#: main.php:329 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " @@ -4255,7 +4323,7 @@ msgstr "" "beschikbaar zijn. Zo zal bijvoorbeeld het navigatievenster zich niet " "automatisch vernieuwen." -#: main.php:345 +#: main.php:344 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -4264,7 +4332,7 @@ msgstr "" "Uw PHP MySQL bibliotheek versie %s verschilt van uw MySQL-server versie %s. " "Dit kan onvoorspelbaar gedrag veroorzaken." -#: main.php:357 +#: main.php:356 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -4277,66 +4345,66 @@ msgstr "" msgid "Reload navigation frame" msgstr "Herlaad het navigatievenster." -#: navigation.php:204 server_databases.php:370 server_synchronize.php:1190 +#: navigation.php:203 server_databases.php:368 server_synchronize.php:1189 msgid "No databases" msgstr "Geen databases" -#: navigation.php:298 +#: navigation.php:297 msgid "Filter" msgstr "Filter" -#: navigation.php:299 setup/frames/index.inc.php:218 +#: navigation.php:298 setup/frames/index.inc.php:218 #: setup/lib/messages.inc.php:41 msgid "Clear" msgstr "Clear" -#: navigation.php:330 navigation.php:331 +#: navigation.php:329 navigation.php:330 msgctxt "short form" msgid "Create table" msgstr "Maak tabel" -#: navigation.php:333 navigation.php:495 +#: navigation.php:332 navigation.php:494 msgid "Please select a database" msgstr "Selecteer A.U.B. een database" -#: pdf_pages.php:40 pdf_pages.php:46 pdf_pages.php:52 pdf_pages.php:57 +#: pdf_pages.php:39 pdf_pages.php:45 pdf_pages.php:51 pdf_pages.php:56 #, php-format msgid "%s table not found or not set in %s" msgstr "%s tabel niet gevonden of niet ingesteld in %s" -#: pdf_pages.php:265 +#: pdf_pages.php:264 msgid "Please choose a page to edit" msgstr "Kies een pagina om aan te passen" -#: pdf_pages.php:303 pmd_pdf.php:113 +#: pdf_pages.php:302 pmd_pdf.php:111 msgid "Create a page" msgstr "Creëer een nieuwe pagina" -#: pdf_pages.php:309 +#: pdf_pages.php:308 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Paginanummer:" -#: pdf_pages.php:313 +#: pdf_pages.php:312 #, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "Automatische lay-out" -#: pdf_pages.php:315 +#: pdf_pages.php:314 msgid "Internal relations" msgstr "Interne relaties" -#: pdf_pages.php:338 +#: pdf_pages.php:337 msgid "Select Tables" msgstr "Selecteer tabellen" -#: pdf_pages.php:361 +#: pdf_pages.php:360 msgid "Toggle scratchboard" msgstr "Aan/uit voorbeeldkader" -#: pdf_pages.php:524 +#: pdf_pages.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -4344,36 +4412,36 @@ msgstr "" "De huidige pagina heeft referenties met tabellen die niet langer bestaan. " "Wilt u deze referenties verwijderen?" -#: pdf_schema.php:635 +#: pdf_schema.php:634 #, php-format msgid "The %s table doesn't exist!" msgstr "De tabel \"%s\" bestaat niet!" -#: pdf_schema.php:671 +#: pdf_schema.php:670 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Configureer de coördinaten voor de tabel %s" -#: pdf_schema.php:994 +#: pdf_schema.php:993 #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" msgstr "Schema van de \"%s\" database - Pagina %s" -#: pdf_schema.php:1012 +#: pdf_schema.php:1011 msgid "No tables" msgstr "Geen Tabellen" -#: pdf_schema.php:1031 pdf_schema.php:1140 +#: pdf_schema.php:1030 pdf_schema.php:1139 msgid "Relational schema" msgstr "Relationeel schema" -#: pdf_schema.php:1115 +#: pdf_schema.php:1114 msgid "Table of contents" msgstr "Inhoudsopgave" -#: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:145 -#: tbl_structure.php:182 tbl_tracking.php:277 +#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 +#: tbl_structure.php:181 tbl_tracking.php:272 msgid "Extra" msgstr "Extra" @@ -4385,7 +4453,7 @@ msgstr "Toon/Verberg linker menu" msgid "Save position" msgstr "Posities opslaan" -#: pmd_general.php:70 server_synchronize.php:428 server_synchronize.php:871 +#: pmd_general.php:70 server_synchronize.php:427 server_synchronize.php:870 msgid "Create table" msgstr "Maak tabel" @@ -4466,32 +4534,32 @@ msgstr "" # Verleden tijd: "is aangemaakt" => "werd aangemaakt", ookal bestaat het nog steeds. # Wat doet "%1$s" hier? -#: pmd_pdf.php:62 +#: pmd_pdf.php:60 #, fuzzy msgid "Page has been created" msgstr "De pagina werd aangemaakt." -#: pmd_pdf.php:64 +#: pmd_pdf.php:62 msgid "Page creation failed" msgstr "Het aanmaken van de pagina is mislukt" -#: pmd_pdf.php:84 +#: pmd_pdf.php:82 msgid "Export/Import to scale" msgstr "Exporteer/Importeer naar schaal" -#: pmd_pdf.php:88 +#: pmd_pdf.php:86 msgid "recommended" msgstr "aangeraden" -#: pmd_pdf.php:93 +#: pmd_pdf.php:91 msgid "to/from page" msgstr "Van/tot pagina" -#: querywindow.php:94 +#: querywindow.php:93 msgid "Import files" msgstr "Bestanden importeren" -#: querywindow.php:105 +#: querywindow.php:104 msgid "All" msgstr "Alle" @@ -4537,67 +4605,67 @@ msgstr "Informatie" msgid "Character Sets and Collations" msgstr "Karakter Sets en Collaties" -#: server_databases.php:51 +#: server_databases.php:49 msgid "No databases selected." msgstr "Er zijn geen databases geselecteerd." -#: server_databases.php:62 +#: server_databases.php:60 #, php-format msgid "%s databases have been dropped successfully." msgstr "%s databases zijn succesvol verwijderd." -#: server_databases.php:87 +#: server_databases.php:85 msgid "Databases statistics" msgstr "Database statistieken" -#: server_databases.php:116 server_status.php:370 +#: server_databases.php:114 server_status.php:370 #: setup/lib/messages.inc.php:114 msgid "Tables" msgstr "Tabellen" -#: server_databases.php:194 server_replication.php:180 -#: server_replication.php:208 +#: server_databases.php:192 server_replication.php:179 +#: server_replication.php:207 msgid "Master replication" msgstr "Master replicatie" -#: server_databases.php:196 server_replication.php:247 +#: server_databases.php:194 server_replication.php:246 msgid "Slave replication" msgstr "Slave replicatie" -#: server_databases.php:229 +#: server_databases.php:227 msgid "Jump to database" msgstr "Ga naar database" -#: server_databases.php:266 +#: server_databases.php:264 #, fuzzy #| msgid "Master replication" msgid "Not replicated" msgstr "Master replicatie" -#: server_databases.php:272 +#: server_databases.php:270 #, fuzzy #| msgid "Replication" msgid "Replicated" msgstr "Replicatie" -#: server_databases.php:288 +#: server_databases.php:286 #, php-format msgid "Check privileges for database "%s"." msgstr "Controleer privileges voor database "%s"." -#: server_databases.php:292 server_databases.php:293 +#: server_databases.php:290 server_databases.php:291 msgid "Check Privileges" msgstr "Controleer privileges" -#: server_databases.php:357 server_databases.php:358 +#: server_databases.php:355 server_databases.php:356 msgid "Enable Statistics" msgstr "Statistieken aanzetten" -#: server_databases.php:361 server_databases.php:362 +#: server_databases.php:359 server_databases.php:360 msgid "Disable Statistics" msgstr "Statistieken uitzetten" -#: server_databases.php:365 +#: server_databases.php:363 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -4605,125 +4673,125 @@ msgstr "" "Attentie: Het aanzeten van statistieken kan zorgen voor veel dataverkeer " "tussen de webserver en de MySQL-server." -#: server_engines.php:48 +#: server_engines.php:47 msgid "Storage Engines" msgstr "Opslag Engines" -#: server_export.php:20 +#: server_export.php:18 msgid "View dump (schema) of databases" msgstr "Bekijk dump (schema) van de databases" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:23 server_privileges.php:265 msgid "Includes all privileges except GRANT." msgstr "Bevat alle privileges behalve GRANT." -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:24 server_privileges.php:191 +#: server_privileges.php:514 msgid "Allows altering the structure of existing tables." msgstr "Maakt het mogelijk de structuur van bestaande tabellen aan te passen." -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:25 server_privileges.php:207 +#: server_privileges.php:520 msgid "Allows altering and dropping stored routines." msgstr "Maakt het mogelijk om stored routines te bewerken en te verwijderen." -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:26 server_privileges.php:183 +#: server_privileges.php:513 msgid "Allows creating new databases and tables." msgstr "Maakt het mogelijk om nieuwe databases en tabellen te maken." -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:27 server_privileges.php:206 +#: server_privileges.php:519 msgid "Allows creating stored routines." msgstr "Maakt het mogelijk om stored routines aan te maken." -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:513 msgid "Allows creating new tables." msgstr "Maakt het mogelijk nieuwe tabellen te maken." -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:29 server_privileges.php:194 +#: server_privileges.php:517 msgid "Allows creating temporary tables." msgstr "Maakt het mogelijk om tijdelijke tabellen te maken." -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:30 server_privileges.php:208 +#: server_privileges.php:553 msgid "Allows creating, dropping and renaming user accounts." msgstr "" "Maakt het mogelijk om gebruikersaccounts te maken, hernoemen en verwijderen." -#: server_privileges.php:32 server_privileges.php:199 -#: server_privileges.php:203 server_privileges.php:526 -#: server_privileges.php:530 +#: server_privileges.php:31 server_privileges.php:198 +#: server_privileges.php:202 server_privileges.php:525 +#: server_privileges.php:529 msgid "Allows creating new views." msgstr "Maakt het mogelijk om nieuwe views te maken." -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:32 server_privileges.php:182 +#: server_privileges.php:505 msgid "Allows deleting data." msgstr "Maakt het mogelijk om data te verwijderen." -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:33 server_privileges.php:184 +#: server_privileges.php:516 msgid "Allows dropping databases and tables." msgstr "Maakt het mogelijk om databases en tabellen te verwijderen." -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:34 server_privileges.php:516 msgid "Allows dropping tables." msgstr "Maakt het mogelijk tabellen te verwijderen." -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:35 server_privileges.php:199 +#: server_privileges.php:533 msgid "Allows to set up events for the event scheduler" msgstr "Maakt het mogelijk om gebeurtenissen in de planner te zetten" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:36 server_privileges.php:209 +#: server_privileges.php:521 msgid "Allows executing stored routines." msgstr "Maakt het mogelijk om stored routines uit te voeren." -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:37 server_privileges.php:188 +#: server_privileges.php:508 msgid "Allows importing data from and exporting data into files." msgstr "" "Maakt het mogelijk om data te importeren en te exporteren van en naar " "bestanden." -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:38 server_privileges.php:539 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Maakt het mogelijk dat gebruikers en privileges toe te voegen zonder de " "privilegestabel opnieuw op te vragen." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:515 msgid "Allows creating and dropping indexes." msgstr "Maakt het mogelijk om indexen te creëren en te verwijderen." -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:40 server_privileges.php:180 +#: server_privileges.php:441 server_privileges.php:503 msgid "Allows inserting and replacing data." msgstr "Maakt het mogelijk om data in te voegen en te vervangen." -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:41 server_privileges.php:195 +#: server_privileges.php:548 msgid "Allows locking tables for the current thread." msgstr "Maakt het mogelijk tabellen op slot te zetten voor de huidige thread." -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:42 server_privileges.php:645 +#: server_privileges.php:647 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Limiteert het aantal nieuwe connecties die een gebruiker per uur mag openen." -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:43 server_privileges.php:633 +#: server_privileges.php:635 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Limiteert het aantal queries dat een gebruiker mag versturen per uur." -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:44 server_privileges.php:639 +#: server_privileges.php:641 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -4731,64 +4799,64 @@ msgstr "" "Limiteert het aantal commando's, welke een database of tabel veranderen, die " "een gebruiker per uur mag uitvoeren." -#: server_privileges.php:46 server_privileges.php:652 -#: server_privileges.php:654 +#: server_privileges.php:45 server_privileges.php:651 +#: server_privileges.php:653 msgid "Limits the number of simultaneous connections the user may have." msgstr "" "Limiteert het aantal gelijktijdige verbindingen dat de gebruiker open kan " "hebben." -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:46 server_privileges.php:187 +#: server_privileges.php:543 msgid "Allows viewing processes of all users" msgstr "Maakt het mogelijk om processen van alle gebruikers te zien" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:47 server_privileges.php:189 +#: server_privileges.php:447 server_privileges.php:549 msgid "Has no effect in this MySQL version." msgstr "Heeft geen effect in deze MySQL versie." -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:48 server_privileges.php:185 +#: server_privileges.php:544 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Maakt het mogelijk om de serverinstellingen opnieuw op te vragen en de cache " "van de server leeg te maken." -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:197 +#: server_privileges.php:551 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Geeft het recht aan de gebruiker om te vragen waar de 'slaves' / 'masters' " "zijn." -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:50 server_privileges.php:196 +#: server_privileges.php:552 msgid "Needed for the replication slaves." msgstr "Nodig om 'slaves' te repliceren." -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:51 server_privileges.php:179 +#: server_privileges.php:438 server_privileges.php:502 msgid "Allows reading data." msgstr "Maakt het lezen van data mogelijk." -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:52 server_privileges.php:192 +#: server_privileges.php:546 msgid "Gives access to the complete list of databases." msgstr "Geeft toegang tot de complete lijst van databases." -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:53 server_privileges.php:203 +#: server_privileges.php:205 server_privileges.php:518 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Maakt het mogelijk om SHOW CREATE VIEW queries uit te voeren." -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:54 server_privileges.php:186 +#: server_privileges.php:545 msgid "Allows shutting down the server." msgstr "Maakt het mogelijk om de server te stoppen." -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:55 server_privileges.php:193 +#: server_privileges.php:542 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -4799,156 +4867,156 @@ msgstr "" "opties zoals het instellen van globale variabelen of het stoppen van threads " "van andere gebruikers." -#: server_privileges.php:57 server_privileges.php:201 -#: server_privileges.php:535 +#: server_privileges.php:56 server_privileges.php:200 +#: server_privileges.php:534 msgid "Allows creating and dropping triggers" msgstr "Maakt het mogelijk om triggers maken en te verwijderen" -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:57 server_privileges.php:181 +#: server_privileges.php:444 server_privileges.php:504 msgid "Allows changing data." msgstr "Maakt het mogelijk data aan te passen." -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:58 server_privileges.php:259 msgid "No privileges." msgstr "Geen privileges." -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:301 server_privileges.php:302 msgctxt "None privileges" msgid "None" msgstr "Geen" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1710 server_privileges.php:1716 +#: server_privileges.php:430 server_privileges.php:565 +#: server_privileges.php:1714 server_privileges.php:1720 msgid "Table-specific privileges" msgstr "Tabel-specifieke privileges" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1532 +#: server_privileges.php:431 server_privileges.php:573 +#: server_privileges.php:1536 msgid " Note: MySQL privilege names are expressed in English " msgstr "" " Aantekening: de namen van de MySQL rechten zijn uitgedrukt in het Engels " -#: server_privileges.php:563 server_privileges.php:1531 +#: server_privileges.php:562 server_privileges.php:1535 msgid "Global privileges" msgstr "Globale privileges" -#: server_privileges.php:565 server_privileges.php:1710 +#: server_privileges.php:564 server_privileges.php:1714 msgid "Database-specific privileges" msgstr "Database-specifieke privileges" -#: server_privileges.php:610 +#: server_privileges.php:609 msgid "Administration" msgstr "Administratie" -#: server_privileges.php:630 +#: server_privileges.php:629 msgid "Resource limits" msgstr "Resource-beperkingen" -#: server_privileges.php:631 +#: server_privileges.php:630 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" "Opmerking: Het instellen van deze waarden op 0 (nul) verwijdert de limiet." -#: server_privileges.php:708 +#: server_privileges.php:707 msgid "Login Information" msgstr "Inloginformatie" -#: server_privileges.php:802 +#: server_privileges.php:801 msgid "Do not change the password" msgstr "Wijzig het wachtwoord niet" # Enkelvoud. -#: server_privileges.php:835 server_privileges.php:2197 +#: server_privileges.php:834 server_privileges.php:2201 msgid "No user found." msgstr "Geen gebruiker gevonden." -#: server_privileges.php:879 +#: server_privileges.php:878 #, php-format msgid "The user %s already exists!" msgstr "De gebruiker %s bestaat al!" -#: server_privileges.php:962 +#: server_privileges.php:961 msgid "You have added a new user." msgstr "U heeft een nieuwe gebruiker toegevoegd." -#: server_privileges.php:1183 +#: server_privileges.php:1184 #, php-format msgid "You have updated the privileges for %s." msgstr "U heeft de rechten aangepast voor %s." -#: server_privileges.php:1207 +#: server_privileges.php:1208 #, php-format msgid "You have revoked the privileges for %s" msgstr "U heeft de rechten ingetrokken voor %s" -#: server_privileges.php:1243 +#: server_privileges.php:1244 #, php-format msgid "The password for %s was changed successfully." msgstr "Het wachtwoord voor %s is succesvol veranderd." -#: server_privileges.php:1263 +#: server_privileges.php:1264 #, php-format msgid "Deleting %s" msgstr "Verwijderen van %s" -#: server_privileges.php:1274 +#: server_privileges.php:1275 msgid "No users selected for deleting!" msgstr "Geen gebruikers geselecteerd om te verwijderen!" -#: server_privileges.php:1277 +#: server_privileges.php:1278 msgid "Reloading the privileges" msgstr "Bezig de privileges te verversen" -#: server_privileges.php:1292 +#: server_privileges.php:1296 msgid "The selected users have been deleted successfully." msgstr "De geselecteerde gebruikers zijn met succes verwijderd." -#: server_privileges.php:1327 +#: server_privileges.php:1331 msgid "The privileges were reloaded successfully." msgstr "De privileges zijn succesvol vernieuwd" -#: server_privileges.php:1355 server_privileges.php:1641 +#: server_privileges.php:1359 server_privileges.php:1645 msgid "Edit Privileges" msgstr "Wijzig rechten" -#: server_privileges.php:1364 +#: server_privileges.php:1368 msgid "Revoke" msgstr "Ongedaan maken" -#: server_privileges.php:1396 +#: server_privileges.php:1400 msgid "User overview" msgstr "Gebruikers Overzicht" -#: server_privileges.php:1533 server_privileges.php:1715 -#: server_privileges.php:2064 +#: server_privileges.php:1537 server_privileges.php:1719 +#: server_privileges.php:2068 msgid "Grant" msgstr "Toekennen" -#: server_privileges.php:1552 server_privileges.php:2154 +#: server_privileges.php:1556 server_privileges.php:2158 msgid "Any" msgstr "Elke" -#: server_privileges.php:1601 server_privileges.php:1625 -#: server_privileges.php:2019 server_privileges.php:2208 +#: server_privileges.php:1605 server_privileges.php:1629 +#: server_privileges.php:2023 server_privileges.php:2212 msgid "Add a new User" msgstr "Voeg een nieuwe gebruiker toe" -#: server_privileges.php:1606 +#: server_privileges.php:1610 msgid "Remove selected users" msgstr "Verwijder de geselecteerde gebruikers" -#: server_privileges.php:1609 +#: server_privileges.php:1613 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Trek alle actieve privileges in van alle gebruikers en verwijder deze daarna." -#: server_privileges.php:1610 server_privileges.php:1611 -#: server_privileges.php:1612 +#: server_privileges.php:1614 server_privileges.php:1615 +#: server_privileges.php:1616 msgid "Drop the databases that have the same names as the users." msgstr "Verwijder de databases die dezelfde naam hebben als de gebruikers." -#: server_privileges.php:1628 +#: server_privileges.php:1632 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4962,52 +5030,52 @@ msgstr "" "geval zijn dan moet men %sde privilege tabel vernieuwen%s voordat men verder " "gaat." -#: server_privileges.php:1676 +#: server_privileges.php:1680 msgid "The selected user was not found in the privilege table." msgstr "" "De geselecteerde gebruiker werd niet aangetroffen in de privileges tabel" -#: server_privileges.php:1716 +#: server_privileges.php:1720 msgid "Column-specific privileges" msgstr "Kolom-specifieke privileges" -#: server_privileges.php:1917 +#: server_privileges.php:1921 msgid "Add privileges on the following database" msgstr "Voeg privileges toe aan de volgende database" -#: server_privileges.php:1935 +#: server_privileges.php:1939 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "Wildcards _ en % moeten worden ge-escaped met een \\ om ze letterlijk te " "gebruiken" -#: server_privileges.php:1938 +#: server_privileges.php:1942 msgid "Add privileges on the following table" msgstr "Voeg privileges toe aan de volgende tabel" -#: server_privileges.php:1995 +#: server_privileges.php:1999 msgid "Change Login Information / Copy User" msgstr "Wijzig de Inlog Informatie / Kopieer gebruiker" -#: server_privileges.php:1998 +#: server_privileges.php:2002 msgid "Create a new user with the same privileges and ..." msgstr "Maak een nieuwe gebruiker aan met dezelfde privileges en ..." -#: server_privileges.php:2000 +#: server_privileges.php:2004 msgid "... keep the old one." msgstr "... behoud de oude." -#: server_privileges.php:2001 +#: server_privileges.php:2005 msgid " ... delete the old one from the user tables." msgstr " ... verwijder de oude van de user tabellen." -#: server_privileges.php:2002 +#: server_privileges.php:2006 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "" " ... herstel alle actieve privileges van de oude en verwijder deze daarna." -#: server_privileges.php:2003 +#: server_privileges.php:2007 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -5015,44 +5083,44 @@ msgstr "" " ... verwijder de oude van de gebruikerstabellen en vernieuw de privileges " "achteraf." -#: server_privileges.php:2025 +#: server_privileges.php:2029 msgid "Database for user" msgstr "Database voor gebruiker" -#: server_privileges.php:2029 +#: server_privileges.php:2033 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Geen" -#: server_privileges.php:2030 +#: server_privileges.php:2034 msgid "Create database with same name and grant all privileges" msgstr "Maak een database met dezelfde naam en geef alle rechten hierop" -#: server_privileges.php:2031 +#: server_privileges.php:2035 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Geef alle rechten op de wildcard naam (gebruikersnaam\\_%)" -#: server_privileges.php:2034 +#: server_privileges.php:2038 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Geef alle rechten op de database "%s"" -#: server_privileges.php:2057 +#: server_privileges.php:2061 #, php-format msgid "Users having access to "%s"" msgstr "Gebruikers die toegang hebben tot "%s"" -#: server_privileges.php:2165 +#: server_privileges.php:2169 msgid "global" msgstr "globaal" -#: server_privileges.php:2167 +#: server_privileges.php:2171 msgid "database-specific" msgstr "database-specifiek" -#: server_privileges.php:2169 +#: server_privileges.php:2173 msgid "wildcard" msgstr "jokerteken" @@ -5073,44 +5141,44 @@ msgstr "" msgid "ID" msgstr "ID" -#: server_replication.php:50 +#: server_replication.php:49 msgid "Unknown error" msgstr "Onbekende fout" -#: server_replication.php:57 +#: server_replication.php:56 #, php-format msgid "Unable to connect to master %s." msgstr "Het verbinden met de master %s is mislukt." -#: server_replication.php:64 +#: server_replication.php:63 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" "Het lezen van de master-positie is mislukt. Mogelijk gaat het om een rechten " "probleem op de master." -#: server_replication.php:70 +#: server_replication.php:69 msgid "Unable to change master" msgstr "Wijzigen master mislukt" -#: server_replication.php:73 +#: server_replication.php:72 #, php-format msgid "Master server changed succesfully to %s" msgstr "Master server gewijzigd in %s" -#: server_replication.php:181 +#: server_replication.php:180 msgid "This server is configured as master in a replication process." msgstr "Deze server is ingesteld als master in een replicatie proces." -#: server_replication.php:183 server_status.php:391 +#: server_replication.php:182 server_status.php:391 msgid "Show master status" msgstr "Toon master status" -#: server_replication.php:186 +#: server_replication.php:185 msgid "Show connected slaves" msgstr "Toon verbonden slaves" -#: server_replication.php:209 +#: server_replication.php:208 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -5119,11 +5187,11 @@ msgstr "" "Deze server is niet ingesteld als master in een replicatie proces. Wilt u " "dit nu instellen?" -#: server_replication.php:216 +#: server_replication.php:215 msgid "Master configuration" msgstr "Master instellingen" -#: server_replication.php:217 +#: server_replication.php:216 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -5136,26 +5204,26 @@ msgstr "" "de meerderheid van uw databases wil repliceren) of u kiest ervoor om alleen " "enkele geselecteerde databases te repliceren." -#: server_replication.php:220 +#: server_replication.php:219 msgid "Replicate all databases; Ignore:" msgstr "Repliceer alle databases; Negeer:" -#: server_replication.php:221 +#: server_replication.php:220 msgid "Ignore all databases; Replicate:" msgstr "Negeer alle databases; Repliceer enkel:" -#: server_replication.php:224 +#: server_replication.php:223 msgid "Please select databases:" msgstr "Selecteer uit de onderstaande databases:" -#: server_replication.php:227 +#: server_replication.php:226 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" "Voeg nu de onderstaande regels aan uw my.cnf toe en herstart uw MySQL-server." -#: server_replication.php:229 +#: server_replication.php:228 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " @@ -5165,86 +5233,86 @@ msgstr "" "server heeft herstart klikt u op Start. Hierna zou u de melding moeten " "krijgen dat de server is ingesteld als master." -#: server_replication.php:292 +#: server_replication.php:291 msgid "Slave SQL Thread not running!" msgstr "Slave SQL Thread niet actief!" -#: server_replication.php:295 +#: server_replication.php:294 msgid "Slave IO Thread not running!" msgstr "Slave IO Thread niet actief!" -#: server_replication.php:304 +#: server_replication.php:303 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "Server is ingesteld als slave in een replicatie proces." -#: server_replication.php:307 +#: server_replication.php:306 msgid "See slave status table" msgstr "Slave status tabel" -#: server_replication.php:310 +#: server_replication.php:309 msgid "Synchronize databases with master" msgstr "Synchronizeer databases met master" -#: server_replication.php:321 +#: server_replication.php:320 msgid "Control slave:" msgstr "Beheer slave:" -#: server_replication.php:324 +#: server_replication.php:323 msgid "Full start" msgstr "Start volledig" -#: server_replication.php:324 +#: server_replication.php:323 msgid "Full stop" msgstr "Stop volledig" -#: server_replication.php:325 +#: server_replication.php:324 msgid "Reset slave" msgstr "" -#: server_replication.php:326 +#: server_replication.php:325 #, php-format msgid "SQL Thread %s only" msgstr "%s de SQL Thread" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 msgid "Start" msgstr "Start" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 msgid "Stop" msgstr "Stop" -#: server_replication.php:327 +#: server_replication.php:326 #, php-format msgid "IO Thread %s only" msgstr "%s de IO Thread" -#: server_replication.php:331 +#: server_replication.php:330 msgid "Error management:" msgstr "Fouten beheer:" # "errors" => "fouten" # master and slave _what_? -#: server_replication.php:333 +#: server_replication.php:332 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" "Het overslaan van fouten kan leiden tot verschillen tussen de meester en " "slaaf!" -#: server_replication.php:335 +#: server_replication.php:334 msgid "Skip current error" msgstr "Sla de huidige error over" -#: server_replication.php:336 +#: server_replication.php:335 msgid "Skip next" msgstr "Sla de volgende" -#: server_replication.php:339 +#: server_replication.php:338 msgid "errors." msgstr "errors over." -#: server_replication.php:354 +#: server_replication.php:353 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -6090,110 +6158,110 @@ msgstr "Query-type" msgid "Replication status" msgstr "Replicatie status" -#: server_synchronize.php:93 +#: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "Verbinding naar de brondatabase is mislukt" -#: server_synchronize.php:96 +#: server_synchronize.php:95 msgid "Could not connect to the target" msgstr "Verbinding naar de bestemmingsdatabase is mislukt" -#: server_synchronize.php:121 server_synchronize.php:124 tbl_create.php:77 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "Database '%s' bestaat niet." -#: server_synchronize.php:264 +#: server_synchronize.php:263 msgid "Structure Synchronization" msgstr "Structuur synchronizatie" -#: server_synchronize.php:271 +#: server_synchronize.php:270 msgid "Data Synchronization" msgstr "Gegevens synchronizatie" -#: server_synchronize.php:399 server_synchronize.php:838 +#: server_synchronize.php:398 server_synchronize.php:837 msgid "not present" msgstr "niet aanwezig" -#: server_synchronize.php:423 server_synchronize.php:866 +#: server_synchronize.php:422 server_synchronize.php:865 msgid "Structure Difference" msgstr "Structuur verschillen" -#: server_synchronize.php:424 server_synchronize.php:867 +#: server_synchronize.php:423 server_synchronize.php:866 msgid "Data Difference" msgstr "Gegevens verschillen" -#: server_synchronize.php:429 server_synchronize.php:872 +#: server_synchronize.php:428 server_synchronize.php:871 msgid "Add column(s)" msgstr "Kolom(men) toevoegen" -#: server_synchronize.php:430 server_synchronize.php:873 +#: server_synchronize.php:429 server_synchronize.php:872 msgid "Remove column(s)" msgstr "Kolom(men) verwijderen" -#: server_synchronize.php:431 server_synchronize.php:874 +#: server_synchronize.php:430 server_synchronize.php:873 msgid "Alter column(s)" msgstr "Kolom(men) wijzigen" -#: server_synchronize.php:432 server_synchronize.php:875 +#: server_synchronize.php:431 server_synchronize.php:874 msgid "Remove index(s)" msgstr "Index(en) verwijderen" -#: server_synchronize.php:433 server_synchronize.php:876 +#: server_synchronize.php:432 server_synchronize.php:875 msgid "Apply index(s)" msgstr "Index(en) toepassen" -#: server_synchronize.php:434 server_synchronize.php:877 +#: server_synchronize.php:433 server_synchronize.php:876 msgid "Update row(s)" msgstr "Rij(en) bijwerken" -#: server_synchronize.php:435 server_synchronize.php:878 +#: server_synchronize.php:434 server_synchronize.php:877 msgid "Insert row(s)" msgstr "Rij(en) toevoegen" -#: server_synchronize.php:445 server_synchronize.php:889 +#: server_synchronize.php:444 server_synchronize.php:888 msgid "Would you like to delete all the previous rows from target tables?" msgstr "Verwijder alle huidige rij(en) uit de bestemmings tabellen" -#: server_synchronize.php:448 server_synchronize.php:893 +#: server_synchronize.php:447 server_synchronize.php:892 msgid "Apply Selected Changes" msgstr "Geselecteerde wijzigingen toepassen" -#: server_synchronize.php:450 server_synchronize.php:895 +#: server_synchronize.php:449 server_synchronize.php:894 msgid "Synchronize Databases" msgstr "Synchronizeer databases" -#: server_synchronize.php:463 +#: server_synchronize.php:462 msgid "Selected target tables have been synchronized with source tables." msgstr "De geselecteerde tabellen zijn gesynchroniseerd met de bron tabellen." -#: server_synchronize.php:941 +#: server_synchronize.php:940 msgid "Target database has been synchronized with source database" msgstr "De bestemmings database is gesynchronizeerd met de bron database" -#: server_synchronize.php:1002 +#: server_synchronize.php:1001 msgid "The following queries have been executed:" msgstr "De volgende queries zijn uitgevoerd:" -#: server_synchronize.php:1121 +#: server_synchronize.php:1120 msgid "Enter manually" msgstr "Geef handmatig op" -#: server_synchronize.php:1122 +#: server_synchronize.php:1121 msgid "Current connection" msgstr "Huidige verbinding" -#: server_synchronize.php:1151 +#: server_synchronize.php:1150 #, php-format msgid "Configuration: %s" msgstr "Configuratie: %s" -#: server_synchronize.php:1166 +#: server_synchronize.php:1165 msgid "Socket" msgstr "Socket" -#: server_synchronize.php:1212 +#: server_synchronize.php:1211 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -6800,10 +6868,15 @@ msgid "Signon login options" msgstr "Signon inlog opties" #: setup/lib/messages.inc.php:128 +#, fuzzy +#| msgid "" +#| "Configure phpMyAdmin database to gain access to additional features, see " +#| "[a@../Documentation.html#linked-tables]linked-tables infrastructure[/a] " +#| "in documentation" msgid "" "Configure phpMyAdmin database to gain access to additional features, see " -"[a@../Documentation.html#linked-tables]linked-tables infrastructure[/a] in " -"documentation" +"[a@../Documentation.html#linked-tables]phpMyAdmin configuration storage[/a] " +"in documentation" msgstr "" "Configureer de phpMyAdmin database om toegang te krijgen tot extra " "functionaliteit, zie [a@../Documentation.html#linked-tables]linked-tables " @@ -8026,117 +8099,117 @@ msgstr "" msgid "ZIP" msgstr "ZIP" -#: sql.php:495 tbl_replace.php:385 +#: sql.php:494 tbl_replace.php:384 #, php-format msgid "Inserted row id: %1$d" msgstr "Toegevoegd rij nummer: %1$d" -#: sql.php:512 +#: sql.php:511 msgid "Showing as PHP code" msgstr "Getoond als PHP-code" -#: sql.php:515 tbl_replace.php:359 +#: sql.php:514 tbl_replace.php:358 msgid "Showing SQL query" msgstr "Toont SQL-query" -#: sql.php:517 +#: sql.php:516 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Valideer SQL" -#: sql.php:638 +#: sql.php:631 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemen met de index(en) van de tabel `%s`" -#: sql.php:670 +#: sql.php:663 msgid "Label" msgstr "Label" -#: tbl_addfield.php:188 tbl_alter.php:102 tbl_indexes.php:97 +#: tbl_addfield.php:185 tbl_alter.php:100 tbl_indexes.php:97 #, php-format msgid "Table %1$s has been altered successfully" msgstr "Tabel %1$s is bijgewerkt" -#: tbl_change.php:250 tbl_select.php:26 tbl_select.php:27 tbl_select.php:30 -#: tbl_select.php:33 +#: tbl_change.php:245 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_select.php:32 msgid "Browse foreign values" msgstr "Bekijk vreemde waardes" -#: tbl_change.php:280 tbl_change.php:318 +#: tbl_change.php:275 tbl_change.php:313 msgid "Function" msgstr "Functie" -#: tbl_change.php:300 tbl_indexes.php:199 tbl_indexes.php:224 +#: tbl_change.php:295 tbl_indexes.php:198 tbl_indexes.php:223 msgid "Ignore" msgstr "Negeer" -#: tbl_change.php:725 +#: tbl_change.php:720 #, fuzzy #| msgid " Because of its length,
                            this field might not be editable " msgid " Because of its length,
                            this column might not be editable " msgstr " Vanwege z'n lengte,
                            is dit veld misschien niet te wijzigen " -#: tbl_change.php:884 +#: tbl_change.php:835 msgid "Remove BLOB Repository Reference" msgstr "Verwijder BLOB Bewaarplaats Referentie" -#: tbl_change.php:890 +#: tbl_change.php:841 msgid "Binary - do not edit" msgstr " Binair - niet aanpassen " -#: tbl_change.php:983 +#: tbl_change.php:889 msgid "Upload to BLOB repository" msgstr "Upload naar BLOB bewaarplaats" -#: tbl_change.php:1128 +#: tbl_change.php:1026 msgid "Insert as new row" msgstr "Voeg toe als nieuwe rij" -#: tbl_change.php:1129 +#: tbl_change.php:1027 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:1130 +#: tbl_change.php:1028 #, fuzzy msgid "Show insert query" msgstr "Toont SQL-query" -#: tbl_change.php:1145 +#: tbl_change.php:1043 msgid "Go back to previous page" msgstr "Terug" -#: tbl_change.php:1146 +#: tbl_change.php:1044 msgid "Insert another new row" msgstr "Voeg een nieuw record toe" -#: tbl_change.php:1150 +#: tbl_change.php:1048 msgid "Go back to this page" msgstr "Ga terug naar deze pagina" -#: tbl_change.php:1158 +#: tbl_change.php:1056 msgid "Edit next row" msgstr "Bewerk volgende rij" -#: tbl_change.php:1169 +#: tbl_change.php:1067 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Gebruik de TAB-knop om van waarde naar waarde te navigeren of CTRL+pijltjes " "om vrijuit te navigeren" -#: tbl_change.php:1207 +#: tbl_change.php:1105 #, php-format msgid "Restart insertion with %s rows" msgstr "Herstart het invoegen met %s rijen" -#: tbl_create.php:57 +#: tbl_create.php:55 #, php-format msgid "Table %s already exists!" msgstr "Tabel %s bestaat reeds!" -#: tbl_create.php:244 +#: tbl_create.php:241 #, php-format msgid "Table %1$s has been created." msgstr "Tabel %1$s is aangemaakt." @@ -8157,197 +8230,197 @@ msgstr "Kan index niet naar PRIMARY hernoemen" msgid "No index parts defined!" msgstr "Geen index-delen gedefinieerd!" -#: tbl_indexes.php:159 +#: tbl_indexes.php:158 msgid "Create a new index" msgstr "Creëer een nieuwe index" -#: tbl_indexes.php:161 +#: tbl_indexes.php:160 msgid "Modify an index" msgstr "Wijzig een index" -#: tbl_indexes.php:167 +#: tbl_indexes.php:166 msgid "Index name:" msgstr "Index naam :" -#: tbl_indexes.php:173 +#: tbl_indexes.php:172 msgid "Index type:" msgstr "Index type :" -#: tbl_indexes.php:183 +#: tbl_indexes.php:182 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" "(\"PRIMARY\" moet de naam van en alleen van een primaire " "sleutel zijn!)" -#: tbl_indexes.php:250 +#: tbl_indexes.php:249 #, php-format msgid "Add to index  %s column(s)" msgstr "Voeg  %s  kolom(men) toe aan index" -#: tbl_indexes.php:255 tbl_structure.php:588 tbl_structure.php:599 +#: tbl_indexes.php:254 tbl_structure.php:586 tbl_structure.php:597 msgid "Column count has to be larger than zero." msgstr "Het aantal kolommen moet groter dan nul zijn." -#: tbl_move_copy.php:45 +#: tbl_move_copy.php:44 msgid "Can't move table to same one!" msgstr "Kan de tabel niet naar dezelfde verplaatsen!" -#: tbl_move_copy.php:47 +#: tbl_move_copy.php:46 msgid "Can't copy table to same one!" msgstr "Kan de tabel niet naar dezelfde kopiëren!" -#: tbl_move_copy.php:55 +#: tbl_move_copy.php:54 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabel %s is verplaatst naar %s." -#: tbl_move_copy.php:57 +#: tbl_move_copy.php:56 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabel %s is gekopieerd naar %s." -#: tbl_move_copy.php:81 +#: tbl_move_copy.php:80 msgid "The table name is empty!" msgstr "De tabelnaam is leeg!" -#: tbl_operations.php:248 +#: tbl_operations.php:246 msgid "Alter table order by" msgstr "Wijzig het \"Sorteren op/Order by\" van de tabel" -#: tbl_operations.php:257 +#: tbl_operations.php:255 msgid "(singly)" msgstr "(apart)" -#: tbl_operations.php:277 +#: tbl_operations.php:275 msgid "Move table to (database.table):" msgstr "Verplaats tabel naar (database.tabel):" -#: tbl_operations.php:335 +#: tbl_operations.php:333 msgid "Table options" msgstr "Tabelopties" -#: tbl_operations.php:339 +#: tbl_operations.php:337 msgid "Rename table to" msgstr "Tabel hernoemen naar" -#: tbl_operations.php:510 +#: tbl_operations.php:508 msgid "Copy table to (database.table):" msgstr "Kopieer tabel naar (database.tabel):" -#: tbl_operations.php:557 +#: tbl_operations.php:555 msgid "Switch to copied table" msgstr "Wissel naar de gekopieerde tabel" -#: tbl_operations.php:569 +#: tbl_operations.php:567 msgid "Table maintenance" msgstr "Tabelonderhoud" -#: tbl_operations.php:590 +#: tbl_operations.php:588 msgid "Defragment table" msgstr "Defragmenteer tabel" -#: tbl_operations.php:629 +#: tbl_operations.php:627 #, php-format msgid "Table %s has been flushed" msgstr "Tabel %s is geschoond" -#: tbl_operations.php:635 +#: tbl_operations.php:633 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Schoon de tabel (\"FLUSH\")" -#: tbl_operations.php:650 +#: tbl_operations.php:648 msgid "Partition maintenance" msgstr "Partitie onderhoud" -#: tbl_operations.php:658 +#: tbl_operations.php:656 #, php-format msgid "Partition %s" msgstr "Partitie %s" -#: tbl_operations.php:661 +#: tbl_operations.php:659 msgid "Analyze" msgstr "Analyseer" -#: tbl_operations.php:662 +#: tbl_operations.php:660 msgid "Check" msgstr "Controleer" -#: tbl_operations.php:663 +#: tbl_operations.php:661 msgid "Optimize" msgstr "Optimaliseer" -#: tbl_operations.php:664 +#: tbl_operations.php:662 msgid "Rebuild" msgstr "Regenereer" -#: tbl_operations.php:665 +#: tbl_operations.php:663 msgid "Repair" msgstr "Repareer" -#: tbl_operations.php:677 +#: tbl_operations.php:675 msgid "Remove partitioning" msgstr "Verwijder partitionering" -#: tbl_operations.php:703 +#: tbl_operations.php:701 msgid "Check referential integrity:" msgstr "Controleer referentiële integriteit" -#: tbl_printview.php:73 +#: tbl_printview.php:72 msgid "Show tables" msgstr "Toon tabellen" -#: tbl_printview.php:308 tbl_structure.php:655 +#: tbl_printview.php:307 tbl_structure.php:653 msgid "Space usage" msgstr "Ruimtegebruik" -#: tbl_printview.php:312 tbl_structure.php:659 +#: tbl_printview.php:311 tbl_structure.php:657 msgid "Usage" msgstr "Gebruik" -#: tbl_printview.php:339 tbl_structure.php:686 +#: tbl_printview.php:338 tbl_structure.php:684 msgid "Effective" msgstr "Effectief" -#: tbl_printview.php:364 tbl_structure.php:724 +#: tbl_printview.php:363 tbl_structure.php:722 msgid "Row Statistics" msgstr "Rij-statistiek" -#: tbl_printview.php:367 tbl_structure.php:727 +#: tbl_printview.php:366 tbl_structure.php:725 msgid "Statements" msgstr "Opdrachten" -#: tbl_printview.php:378 tbl_structure.php:739 +#: tbl_printview.php:377 tbl_structure.php:737 msgid "static" msgstr "statisch" -#: tbl_printview.php:380 tbl_structure.php:741 +#: tbl_printview.php:379 tbl_structure.php:739 msgid "dynamic" msgstr "dynamisch" -#: tbl_printview.php:402 tbl_structure.php:784 +#: tbl_printview.php:401 tbl_structure.php:782 msgid "Row length" msgstr "Lengte van de rij" -#: tbl_printview.php:412 tbl_structure.php:792 +#: tbl_printview.php:411 tbl_structure.php:790 msgid " Row size " msgstr " Grootte van de rij" -#: tbl_relation.php:278 +#: tbl_relation.php:276 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" "Fout bij het maken van vreemdesleutel naar %1$s (controleer data typen)" -#: tbl_relation.php:404 +#: tbl_relation.php:402 #, fuzzy #| msgid "Internal relations" msgid "Internal relation" msgstr "Interne relaties" -#: tbl_relation.php:406 +#: tbl_relation.php:404 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -8355,7 +8428,7 @@ msgstr "" "Een interne relatie is niet noodzakelijk wanneer er reeds een vreemde sleutel" "(FOREIGN KEY) relatie bestaat." -#: tbl_relation.php:412 +#: tbl_relation.php:410 #, fuzzy #| msgid "Foreign key limit" msgid "Foreign key constraint" @@ -8365,121 +8438,121 @@ msgstr "Vreemdesleutel limiet" msgid "No rows selected" msgstr "Geen rijen geselecteerd" -#: tbl_select.php:130 +#: tbl_select.php:129 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Voer een query op basis van een vergelijking uit (wildcard: \"%\")" -#: tbl_select.php:136 +#: tbl_select.php:135 msgid "Operator" msgstr "Operator" -#: tbl_select.php:267 +#: tbl_select.php:266 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "Selecteer velden (tenminste 1):" -#: tbl_select.php:285 +#: tbl_select.php:284 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Zoek condities toevoegen (het \"where\" gedeelte van de query):" -#: tbl_select.php:292 +#: tbl_select.php:291 msgid "Number of rows per page" msgstr "records per pagina" -#: tbl_select.php:298 +#: tbl_select.php:297 msgid "Display order:" msgstr "Weergave volgorde:" -#: tbl_structure.php:160 +#: tbl_structure.php:159 msgid "Browse distinct values" msgstr "Bekijk unieke waarden" -#: tbl_structure.php:360 +#: tbl_structure.php:358 #, fuzzy #| msgid "None" msgctxt "None for default" msgid "None" msgstr "Geen" -#: tbl_structure.php:373 +#: tbl_structure.php:371 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Column %s has been dropped" msgstr "Tabel %s is vervallen" -#: tbl_structure.php:384 +#: tbl_structure.php:382 #, php-format msgid "A primary key has been added on %s" msgstr "Een primaire sleutel is toegevoegd aan %s" -#: tbl_structure.php:399 tbl_structure.php:413 tbl_structure.php:427 +#: tbl_structure.php:397 tbl_structure.php:411 tbl_structure.php:425 #, php-format msgid "An index has been added on %s" msgstr "Een index is toegevoegd aan %s" -#: tbl_structure.php:505 tbl_structure.php:507 +#: tbl_structure.php:503 tbl_structure.php:505 msgid "Relation view" msgstr "Relatieoverzicht" -#: tbl_structure.php:514 tbl_structure.php:516 +#: tbl_structure.php:512 tbl_structure.php:514 msgid "Propose table structure" msgstr "Tabelstructuur voorstellen" -#: tbl_structure.php:539 +#: tbl_structure.php:537 #, fuzzy #| msgid "Add column(s)" msgid "Add column" msgstr "Kolom(men) toevoegen" -#: tbl_structure.php:553 +#: tbl_structure.php:551 msgid "At End of Table" msgstr "Aan het eind van de tabel" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At Beginning of Table" msgstr "Aan het begin van de tabel" -#: tbl_structure.php:555 +#: tbl_structure.php:553 #, php-format msgid "After %s" msgstr "Na %s" -#: tbl_structure.php:593 +#: tbl_structure.php:591 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "Creëer een index op kolommen %s " -#: tbl_structure.php:755 +#: tbl_structure.php:753 msgid "partitioned" msgstr "gepartitioneerd" -#: tbl_tracking.php:113 +#: tbl_tracking.php:109 #, php-format msgid "Tracking report for table `%s`" msgstr "Tracking rapport voor tabel `%s`" -#: tbl_tracking.php:186 +#: tbl_tracking.php:182 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "Versie %s aangemaakt, tracking voor %s.%s ingeschakeld." -#: tbl_tracking.php:194 +#: tbl_tracking.php:190 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "Tracking voor %s.%s , versie %s is uitgeschakeld." -#: tbl_tracking.php:202 +#: tbl_tracking.php:198 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "Tracking voor %s.%s , versie %s ingeschakeld." -#: tbl_tracking.php:212 +#: tbl_tracking.php:208 msgid "SQL statements executed." msgstr "SQL-statements uitgevoerd." -#: tbl_tracking.php:219 +#: tbl_tracking.php:215 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -8487,111 +8560,111 @@ msgstr "" "U kunt de dump gebruiken door deze in een een tijdelijke database te " "importeren. Let er wel op dat u hier rechten voor nodig heeft." -#: tbl_tracking.php:220 +#: tbl_tracking.php:216 msgid "Comment out these two lines if you do not need them." msgstr "" "De onderstaande 2 regels kunt u in commentaar zetten indien ze niet nodig " "zijn." -#: tbl_tracking.php:229 +#: tbl_tracking.php:225 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "SQL-statements geëxporteerd. Kopiëer de dump of voer de dump uit." -#: tbl_tracking.php:250 tbl_tracking.php:378 +#: tbl_tracking.php:245 tbl_tracking.php:373 msgid "Close" msgstr "Sluiten" -#: tbl_tracking.php:261 +#: tbl_tracking.php:256 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Versie %s snapshot (SQL-code)" -#: tbl_tracking.php:380 +#: tbl_tracking.php:375 msgid "Tracking statements" msgstr "Tracking-statements" -#: tbl_tracking.php:396 tbl_tracking.php:503 +#: tbl_tracking.php:391 tbl_tracking.php:498 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "Laat %s zien met datums van %s tot %s door gebruiker %s %s" -#: tbl_tracking.php:409 tbl_tracking.php:460 +#: tbl_tracking.php:404 tbl_tracking.php:455 msgid "Date" msgstr "Datum" -#: tbl_tracking.php:410 tbl_tracking.php:461 +#: tbl_tracking.php:405 tbl_tracking.php:456 msgid "Username" msgstr "Gebruikersnaam" -#: tbl_tracking.php:411 +#: tbl_tracking.php:406 msgid "Data definition statement" msgstr "Definitie-statement" -#: tbl_tracking.php:462 +#: tbl_tracking.php:457 msgid "Data manipulation statement" msgstr "Manipulatie-statement" -#: tbl_tracking.php:506 +#: tbl_tracking.php:501 msgid "SQL dump (file download)" msgstr "SQL-dump (naar bestand)" -#: tbl_tracking.php:507 +#: tbl_tracking.php:502 msgid "SQL dump" msgstr "SQL-dump" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "This option will replace your table and contained data." msgstr "Deze optie vervangt de tabel en alle data van die tabel." -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "SQL execution" msgstr "SQL-uitvoering" -#: tbl_tracking.php:520 +#: tbl_tracking.php:515 #, php-format msgid "Export as %s" msgstr "Exporteren als %s" -#: tbl_tracking.php:560 +#: tbl_tracking.php:555 msgid "Show versions" msgstr "Versies weergeven" -#: tbl_tracking.php:592 +#: tbl_tracking.php:587 msgid "Version" msgstr "Versie" -#: tbl_tracking.php:639 +#: tbl_tracking.php:634 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "Tracking uitschakelen voor %s.%s" -#: tbl_tracking.php:641 +#: tbl_tracking.php:636 msgid "Deactivate now" msgstr "Nu uitschakelen" -#: tbl_tracking.php:652 +#: tbl_tracking.php:647 #, php-format msgid "Activate tracking for %s.%s" msgstr "Tracking inschakelen voor %s.%s" -#: tbl_tracking.php:654 +#: tbl_tracking.php:649 msgid "Activate now" msgstr "Nu inschakelen" -#: tbl_tracking.php:667 +#: tbl_tracking.php:662 #, php-format msgid "Create version %s of %s.%s" msgstr "Versie %s van %s.%s aanmaken" -#: tbl_tracking.php:671 +#: tbl_tracking.php:666 msgid "Track these data definition statements:" msgstr "Deze definitie-statements tracken:" -#: tbl_tracking.php:679 +#: tbl_tracking.php:674 msgid "Track these data manipulation statements:" msgstr "Deze manipulatie-statements tracken:" -#: tbl_tracking.php:687 +#: tbl_tracking.php:682 msgid "Create version" msgstr "Versie aanmaken" @@ -8642,11 +8715,39 @@ msgstr "Het profiel is aangepast." msgid "VIEW name" msgstr "VIEW-naam" -#: view_operations.php:92 +#: view_operations.php:91 #, fuzzy msgid "Rename view to" msgstr "Tabel hernoemen naar" +#~ msgid "BLOB Repository" +#~ msgstr "BLOB Bewaarplaats" + +#, fuzzy +#~| msgid "Enabled" +#~ msgctxt "BLOB repository" +#~ msgid "Enabled" +#~ msgstr "Ingeschakeld" + +#~ msgid "Disable" +#~ msgstr "Uitschakelen" + +#~ msgid "Damaged" +#~ msgstr "Beschadigd" + +#~ msgctxt "BLOB repository" +#~ msgid "Repair" +#~ msgstr "Herstel" + +#, fuzzy +#~| msgid "Disabled" +#~ msgctxt "BLOB repository" +#~ msgid "Disabled" +#~ msgstr "Uitgeschakeld" + +#~ msgid "Enable" +#~ msgstr "Inschakelen" + #~ msgid "" #~ "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " #~ "extension. Please check your PHP configuration." diff --git a/po/phpmyadmin.pot b/po/phpmyadmin.pot index 27831e27b..8bc815564 100644 --- a/po/phpmyadmin.pot +++ b/po/phpmyadmin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-21 13:53+0200\n" +"POT-Creation-Date: 2010-07-26 17:18+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -18,156 +18,168 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" -#: browse_foreigners.php:37 browse_foreigners.php:58 -#: libraries/display_tbl.lib.php:416 server_privileges.php:1506 +#: browse_foreigners.php:36 browse_foreigners.php:57 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1510 msgid "Show all" msgstr "" -#: browse_foreigners.php:81 libraries/common.lib.php:2313 -#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:393 -#: libraries/export/pdf.php:146 pdf_schema.php:282 pdf_schema.php:1122 -#: pdf_schema.php:1138 +#: browse_foreigners.php:80 libraries/common.lib.php:2318 +#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:392 +#: libraries/export/pdf.php:146 pdf_schema.php:281 pdf_schema.php:1121 +#: pdf_schema.php:1137 msgid "Page number:" msgstr "" -#: browse_foreigners.php:131 +#: browse_foreigners.php:130 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " "cross-window updates." msgstr "" -#: browse_foreigners.php:149 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2829 -#: libraries/common.lib.php:2836 libraries/db_links.inc.php:74 -#: libraries/tbl_links.inc.php:62 +#: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 +#: db_structure.php:89 db_structure.php:91 db_structure.php:102 +#: db_structure.php:104 libraries/common.lib.php:2834 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "" -#: browse_foreigners.php:152 db_operations.php:384 db_operations.php:428 -#: db_operations.php:498 db_operations.php:608 db_search.php:344 -#: db_structure.php:566 js/messages.php:48 libraries/Config.class.php:1043 -#: libraries/Theme_Manager.class.php:310 +#: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 +#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 +#: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 -#: libraries/common.lib.php:1340 libraries/common.lib.php:2289 +#: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 -#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:275 -#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:531 -#: libraries/display_tbl.lib.php:613 libraries/replication_gui.lib.php:75 +#: libraries/display_export.lib.php:269 libraries/display_import.lib.php:275 +#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 +#: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 #: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:781 -#: main.php:127 navigation.php:231 pdf_pages.php:291 pdf_pages.php:327 -#: pdf_pages.php:529 pmd_pdf.php:115 server_binlog.php:128 -#: server_privileges.php:664 server_privileges.php:1616 -#: server_privileges.php:1963 server_privileges.php:2010 -#: server_privileges.php:2049 server_replication.php:234 -#: server_replication.php:317 server_replication.php:340 -#: server_synchronize.php:1208 tbl_change.php:328 tbl_change.php:1172 -#: tbl_change.php:1209 tbl_indexes.php:253 tbl_operations.php:264 -#: tbl_operations.php:301 tbl_operations.php:498 tbl_operations.php:560 -#: tbl_operations.php:680 tbl_select.php:324 tbl_structure.php:561 -#: tbl_structure.php:596 tbl_tracking.php:394 tbl_tracking.php:511 -#: view_create.php:181 view_operations.php:100 +#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 +#: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 +#: server_privileges.php:663 server_privileges.php:1620 +#: server_privileges.php:1967 server_privileges.php:2014 +#: server_privileges.php:2053 server_replication.php:233 +#: server_replication.php:316 server_replication.php:339 +#: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 +#: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 +#: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 +#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "" -#: browse_foreigners.php:167 browse_foreigners.php:171 -#: libraries/Index.class.php:441 tbl_tracking.php:319 +#: browse_foreigners.php:166 browse_foreigners.php:170 +#: libraries/Index.class.php:441 tbl_tracking.php:314 msgid "Keyname" msgstr "" -#: browse_foreigners.php:168 browse_foreigners.php:170 -#: server_collations.php:54 server_collations.php:66 server_engines.php:58 +#: browse_foreigners.php:167 browse_foreigners.php:169 +#: server_collations.php:54 server_collations.php:66 server_engines.php:57 #: server_status.php:738 msgid "Description" msgstr "" -#: browse_foreigners.php:246 browse_foreigners.php:255 -#: browse_foreigners.php:267 browse_foreigners.php:275 +#: browse_foreigners.php:245 browse_foreigners.php:254 +#: browse_foreigners.php:266 browse_foreigners.php:274 msgid "Use this value" msgstr "" -#: db_create.php:45 +#: bs_disp_as_mime_type.php:29 bs_play_media.php:35 +msgid "No blob streaming server configured!" +msgstr "" + +#: bs_disp_as_mime_type.php:35 +msgid "Failed to fetch headers" +msgstr "" + +#: bs_disp_as_mime_type.php:41 +msgid "Failed to open remote URL" +msgstr "" + +#: db_create.php:44 #, possible-php-format msgid "Database %1$s has been created." msgstr "" -#: db_datadict.php:48 db_operations.php:377 +#: db_datadict.php:48 db_operations.php:313 msgid "Database comment: " msgstr "" -#: db_datadict.php:164 libraries/tbl_properties.inc.php:723 -#: pdf_schema.php:1235 tbl_operations.php:346 tbl_printview.php:128 +#: db_datadict.php:164 libraries/tbl_properties.inc.php:722 +#: pdf_schema.php:1234 tbl_operations.php:344 tbl_printview.php:127 msgid "Table comments" msgstr "" -#: db_datadict.php:173 db_qbe.php:173 libraries/Index.class.php:445 +#: db_datadict.php:173 db_qbe.php:170 libraries/Index.class.php:445 #: libraries/export/htmlword.php:243 libraries/export/latex.php:364 #: libraries/export/odt.php:293 libraries/export/texytext.php:233 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:274 -#: pdf_schema.php:1261 pdf_schema.php:1282 tbl_change.php:306 -#: tbl_indexes.php:188 tbl_printview.php:140 tbl_relation.php:401 -#: tbl_select.php:133 tbl_structure.php:176 tbl_tracking.php:272 -#: tbl_tracking.php:323 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 +#: pdf_schema.php:1260 pdf_schema.php:1281 tbl_change.php:301 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:132 tbl_structure.php:175 tbl_tracking.php:267 +#: tbl_tracking.php:318 msgid "Column" msgstr "" -#: db_datadict.php:174 db_printview.php:105 libraries/Index.class.php:442 +#: db_datadict.php:174 db_printview.php:104 libraries/Index.class.php:442 #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 #: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:244 #: libraries/export/latex.php:364 libraries/export/odt.php:296 #: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:99 -#: pdf_schema.php:1262 pdf_schema.php:1283 server_privileges.php:2062 -#: tbl_change.php:285 tbl_change.php:312 tbl_printview.php:141 -#: tbl_printview.php:311 tbl_select.php:134 tbl_structure.php:177 -#: tbl_structure.php:658 tbl_tracking.php:273 tbl_tracking.php:320 +#: pdf_schema.php:1261 pdf_schema.php:1282 server_privileges.php:2066 +#: tbl_change.php:280 tbl_change.php:307 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:133 tbl_structure.php:176 +#: tbl_structure.php:656 tbl_tracking.php:268 tbl_tracking.php:315 msgid "Type" msgstr "" #: db_datadict.php:176 libraries/Index.class.php:448 #: libraries/export/htmlword.php:245 libraries/export/latex.php:364 #: libraries/export/odt.php:299 libraries/export/texytext.php:235 -#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1264 -#: pdf_schema.php:1285 tbl_change.php:321 tbl_printview.php:143 -#: tbl_structure.php:180 tbl_tracking.php:275 tbl_tracking.php:326 +#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1263 +#: pdf_schema.php:1284 tbl_change.php:316 tbl_printview.php:142 +#: tbl_structure.php:179 tbl_tracking.php:270 tbl_tracking.php:321 msgid "Null" msgstr "" -#: db_datadict.php:177 db_structure.php:500 libraries/export/htmlword.php:246 +#: db_datadict.php:177 db_structure.php:486 libraries/export/htmlword.php:246 #: libraries/export/latex.php:364 libraries/export/odt.php:302 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:105 -#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 -#: tbl_structure.php:181 tbl_tracking.php:276 +#: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:143 +#: tbl_structure.php:180 tbl_tracking.php:271 msgid "Default" msgstr "" #: db_datadict.php:181 libraries/export/htmlword.php:248 #: libraries/export/latex.php:366 libraries/export/odt.php:306 -#: libraries/export/texytext.php:238 pdf_schema.php:1267 pdf_schema.php:1288 -#: tbl_printview.php:148 +#: libraries/export/texytext.php:238 pdf_schema.php:1266 pdf_schema.php:1287 +#: tbl_printview.php:147 msgid "Links to" msgstr "" -#: db_datadict.php:183 db_printview.php:111 libraries/export/htmlword.php:251 +#: db_datadict.php:183 db_printview.php:110 libraries/export/htmlword.php:251 #: libraries/export/latex.php:49 libraries/export/latex.php:369 #: libraries/export/odt.php:37 libraries/export/odt.php:311 #: libraries/export/sql.php:29 libraries/export/texytext.php:241 -#: libraries/tbl_properties.inc.php:129 pdf_schema.php:1278 -#: pdf_schema.php:1289 tbl_printview.php:150 +#: libraries/tbl_properties.inc.php:128 pdf_schema.php:1277 +#: pdf_schema.php:1288 tbl_printview.php:149 msgid "Comments" msgstr "" #: db_datadict.php:266 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/export/htmlword.php:321 #: libraries/export/latex.php:434 libraries/export/odt.php:367 -#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:262 -#: pdf_schema.php:1343 server_privileges.php:1560 server_privileges.php:1571 -#: server_privileges.php:1881 server_privileges.php:1886 -#: server_privileges.php:2179 sql.php:131 sql.php:193 tbl_printview.php:227 -#: tbl_structure.php:349 tbl_tracking.php:336 tbl_tracking.php:341 +#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:261 +#: pdf_schema.php:1342 server_privileges.php:1564 server_privileges.php:1575 +#: server_privileges.php:1885 server_privileges.php:1890 +#: server_privileges.php:2183 sql.php:130 sql.php:192 tbl_printview.php:226 +#: tbl_structure.php:347 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "" @@ -178,17 +190,17 @@ msgstr "" #: libraries/mult_submits.inc.php:49 libraries/mult_submits.inc.php:54 #: libraries/mult_submits.inc.php:59 libraries/mult_submits.inc.php:91 #: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:105 -#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:261 -#: libraries/mult_submits.inc.php:272 pdf_schema.php:1343 -#: server_databases.php:63 server_privileges.php:1557 -#: server_privileges.php:1571 server_privileges.php:1881 -#: server_privileges.php:1884 server_privileges.php:2179 sql.php:192 -#: tbl_printview.php:227 tbl_structure.php:39 tbl_structure.php:349 -#: tbl_tracking.php:334 tbl_tracking.php:339 +#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:260 +#: libraries/mult_submits.inc.php:271 pdf_schema.php:1342 +#: server_databases.php:61 server_privileges.php:1561 +#: server_privileges.php:1575 server_privileges.php:1885 +#: server_privileges.php:1888 server_privileges.php:2183 sql.php:191 +#: tbl_printview.php:226 tbl_structure.php:38 tbl_structure.php:347 +#: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" msgstr "" -#: db_datadict.php:321 db_printview.php:265 tbl_printview.php:496 +#: db_datadict.php:321 db_printview.php:264 tbl_printview.php:495 msgid "Print" msgstr "" @@ -196,276 +208,239 @@ msgstr "" msgid "View dump (schema) of database" msgstr "" -#: db_export.php:32 db_printview.php:95 db_qbe.php:101 db_structure.php:50 -#: db_tracking.php:34 export.php:352 navigation.php:326 +#: db_export.php:32 db_printview.php:94 db_qbe.php:98 db_structure.php:49 +#: db_tracking.php:30 export.php:350 navigation.php:325 msgid "No tables found in database." msgstr "" -#: db_export.php:42 db_search.php:326 server_export.php:26 +#: db_export.php:42 db_search.php:326 server_export.php:24 msgid "Select All" msgstr "" -#: db_export.php:44 db_search.php:329 server_export.php:28 +#: db_export.php:44 db_search.php:329 server_export.php:26 msgid "Unselect All" msgstr "" -#: db_operations.php:37 tbl_create.php:49 +#: db_operations.php:33 tbl_create.php:47 msgid "The database name is empty!" msgstr "" -#: db_operations.php:235 +#: db_operations.php:231 #, possible-php-format msgid "Database %s has been renamed to %s" msgstr "" -#: db_operations.php:239 +#: db_operations.php:235 #, possible-php-format msgid "Database %s has been copied to %s" msgstr "" -#: db_operations.php:411 +#: db_operations.php:347 msgid "Rename database to" msgstr "" -#: db_operations.php:416 server_processlist.php:56 +#: db_operations.php:352 server_processlist.php:56 msgid "Command" msgstr "" -#: db_operations.php:428 tbl_change.php:1141 +#: db_operations.php:364 tbl_change.php:1039 msgid "and then" msgstr "" -#: db_operations.php:454 +#: db_operations.php:390 msgid "Copy database to" msgstr "" -#: db_operations.php:461 tbl_operations.php:527 tbl_tracking.php:387 +#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:389 +#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:388 +#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "" -#: db_operations.php:471 +#: db_operations.php:407 msgid "CREATE DATABASE before copying" msgstr "" -#: db_operations.php:474 libraries/export/sql.php:51 +#: db_operations.php:410 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 -#: libraries/export/sql.php:81 tbl_operations.php:535 +#: libraries/export/sql.php:81 tbl_operations.php:533 #, possible-php-format msgid "Add %s" msgstr "" -#: db_operations.php:478 libraries/export/sql.php:77 tbl_operations.php:298 -#: tbl_operations.php:537 +#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "" -#: db_operations.php:482 tbl_operations.php:544 +#: db_operations.php:418 tbl_operations.php:542 msgid "Add constraints" msgstr "" -#: db_operations.php:495 +#: db_operations.php:431 msgid "Switch to copied database" msgstr "" -#: db_operations.php:536 -msgid "BLOB Repository" -msgstr "" - -#: db_operations.php:539 db_tracking.php:75 libraries/common.lib.php:1357 -#: libraries/server_links.inc.php:48 server_processlist.php:58 -#: tbl_tracking.php:595 test/theme.php:100 -msgid "Status" -msgstr "" - -#: db_operations.php:547 -msgctxt "BLOB repository" -msgid "Enabled" -msgstr "" - -#: db_operations.php:551 -msgid "Disable" -msgstr "" - -#: db_operations.php:561 -msgid "Damaged" -msgstr "" - -#: db_operations.php:565 -msgctxt "BLOB repository" -msgid "Repair" -msgstr "" - -#: db_operations.php:573 -msgctxt "BLOB repository" -msgid "Disabled" -msgstr "" - -#: db_operations.php:577 -msgid "Enable" -msgstr "" - -#: db_operations.php:601 libraries/Index.class.php:447 +#: db_operations.php:451 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 -#: server_collations.php:53 server_collations.php:65 server_databases.php:110 -#: tbl_operations.php:362 tbl_select.php:135 tbl_structure.php:178 -#: tbl_structure.php:766 tbl_tracking.php:274 tbl_tracking.php:325 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 +#: server_collations.php:53 server_collations.php:65 server_databases.php:108 +#: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:177 +#: tbl_structure.php:764 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "" -#: db_operations.php:614 main.php:315 pdf_schema.php:33 +#: db_operations.php:464 pdf_schema.php:32 #, possible-php-format msgid "" -"The additional features for working with linked tables have been " -"deactivated. To find out why click %shere%s." +"The phpMyAdmin configuration storage has been deactivated. To find out why " +"click %shere%s." msgstr "" -#: db_operations.php:647 +#: db_operations.php:497 msgid "Edit PDF Pages" msgstr "" -#: db_printview.php:103 db_tracking.php:71 db_tracking.php:156 +#: db_printview.php:102 db_tracking.php:67 db_tracking.php:152 #: libraries/db_structure.lib.php:37 libraries/export/xml.php:327 -#: libraries/header.inc.php:125 pdf_pages.php:423 server_privileges.php:1657 -#: server_privileges.php:1713 server_privileges.php:1977 -#: server_synchronize.php:422 server_synchronize.php:865 tbl_tracking.php:591 +#: libraries/header.inc.php:125 pdf_pages.php:422 server_privileges.php:1661 +#: server_privileges.php:1717 server_privileges.php:1981 +#: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "" -#: db_printview.php:104 libraries/db_structure.lib.php:47 +#: db_printview.php:103 libraries/db_structure.lib.php:47 #: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 -#: navigation.php:629 navigation.php:651 server_databases.php:121 -#: tbl_printview.php:392 tbl_structure.php:364 tbl_structure.php:776 +#: navigation.php:628 navigation.php:650 server_databases.php:119 +#: tbl_printview.php:391 tbl_structure.php:362 tbl_structure.php:774 msgid "Rows" msgstr "" -#: db_printview.php:108 libraries/db_structure.lib.php:58 tbl_indexes.php:189 +#: db_printview.php:107 libraries/db_structure.lib.php:58 tbl_indexes.php:188 msgid "Size" msgstr "" -#: db_printview.php:161 db_structure.php:456 libraries/export/sql.php:556 +#: db_printview.php:160 db_structure.php:442 libraries/export/sql.php:556 #: libraries/export/sql.php:896 msgid "in use" msgstr "" -#: db_printview.php:186 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:511 pdf_schema.php:1240 tbl_printview.php:432 -#: tbl_structure.php:808 +#: db_printview.php:185 libraries/db_info.inc.php:86 +#: libraries/export/sql.php:511 pdf_schema.php:1239 tbl_printview.php:431 +#: tbl_structure.php:806 msgid "Creation" msgstr "" -#: db_printview.php:195 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:516 pdf_schema.php:1245 tbl_printview.php:442 -#: tbl_structure.php:816 +#: db_printview.php:194 libraries/db_info.inc.php:91 +#: libraries/export/sql.php:516 pdf_schema.php:1244 tbl_printview.php:441 +#: tbl_structure.php:814 msgid "Last update" msgstr "" -#: db_printview.php:204 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:521 pdf_schema.php:1250 tbl_printview.php:452 -#: tbl_structure.php:824 +#: db_printview.php:203 libraries/db_info.inc.php:96 +#: libraries/export/sql.php:521 pdf_schema.php:1249 tbl_printview.php:451 +#: tbl_structure.php:822 msgid "Last check" msgstr "" -#: db_printview.php:221 db_structure.php:479 +#: db_printview.php:220 db_structure.php:465 #, possible-php-format msgid "%s table" msgid_plural "%s tables" msgstr[0] "" msgstr[1] "" -#: db_qbe.php:28 import.php:453 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1980 libraries/sql_query_form.lib.php:138 -#: tbl_operations.php:212 tbl_relation.php:291 tbl_row_action.php:130 -#: view_operations.php:61 +#: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 +#: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "" -#: db_qbe.php:41 +#: db_qbe.php:38 msgid "You have to choose at least one column to display" msgstr "" -#: db_qbe.php:199 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:865 +#: db_qbe.php:196 libraries/db_structure.lib.php:95 +#: libraries/display_tbl.lib.php:864 msgid "Sort" msgstr "" -#: db_qbe.php:208 db_qbe.php:242 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:522 libraries/display_tbl.lib.php:827 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:259 -#: tbl_select.php:311 +#: db_qbe.php:205 db_qbe.php:239 libraries/db_structure.lib.php:102 +#: libraries/display_tbl.lib.php:521 libraries/display_tbl.lib.php:826 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:257 +#: tbl_select.php:310 msgid "Ascending" msgstr "" -#: db_qbe.php:209 db_qbe.php:250 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:527 libraries/display_tbl.lib.php:824 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:260 -#: tbl_select.php:312 +#: db_qbe.php:206 db_qbe.php:247 libraries/db_structure.lib.php:110 +#: libraries/display_tbl.lib.php:526 libraries/display_tbl.lib.php:823 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:258 +#: tbl_select.php:311 msgid "Descending" msgstr "" -#: db_qbe.php:263 db_tracking.php:77 libraries/display_tbl.lib.php:307 -#: tbl_change.php:275 tbl_tracking.php:596 +#: db_qbe.php:260 db_tracking.php:73 libraries/display_tbl.lib.php:306 +#: tbl_change.php:270 tbl_tracking.php:591 msgid "Show" msgstr "" -#: db_qbe.php:299 +#: db_qbe.php:296 msgid "Criteria" msgstr "" -#: db_qbe.php:352 db_qbe.php:434 db_qbe.php:526 db_qbe.php:557 +#: db_qbe.php:349 db_qbe.php:431 db_qbe.php:523 db_qbe.php:554 msgid "Ins" msgstr "" -#: db_qbe.php:356 db_qbe.php:438 db_qbe.php:523 db_qbe.php:554 +#: db_qbe.php:353 db_qbe.php:435 db_qbe.php:520 db_qbe.php:551 msgid "And" msgstr "" -#: db_qbe.php:365 db_qbe.php:446 db_qbe.php:528 db_qbe.php:559 +#: db_qbe.php:362 db_qbe.php:443 db_qbe.php:525 db_qbe.php:556 msgid "Del" msgstr "" -#: db_qbe.php:369 db_qbe.php:450 db_qbe.php:521 db_qbe.php:552 -#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:778 -#: server_privileges.php:297 tbl_change.php:1027 tbl_indexes.php:249 -#: tbl_select.php:285 +#: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 +#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:777 +#: server_privileges.php:296 tbl_change.php:925 tbl_indexes.php:248 +#: tbl_select.php:284 msgid "Or" msgstr "" -#: db_qbe.php:506 +#: db_qbe.php:503 msgid "Modify" msgstr "" -#: db_qbe.php:583 +#: db_qbe.php:580 msgid "Add/Delete criteria rows" msgstr "" -#: db_qbe.php:595 +#: db_qbe.php:592 msgid "Add/Delete columns" msgstr "" -#: db_qbe.php:608 db_qbe.php:633 +#: db_qbe.php:605 db_qbe.php:630 msgid "Update Query" msgstr "" -#: db_qbe.php:616 +#: db_qbe.php:613 msgid "Use Tables" msgstr "" -#: db_qbe.php:639 +#: db_qbe.php:636 #, possible-php-format msgid "SQL query on database %s:" msgstr "" -#: db_qbe.php:933 libraries/common.lib.php:1222 +#: db_qbe.php:930 libraries/common.lib.php:1215 msgid "Submit Query" msgstr "" @@ -504,17 +479,17 @@ msgid_plural "%s matches inside table %s" msgstr[0] "" msgstr[1] "" -#: db_search.php:249 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2831 -#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:49 -#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:466 +#: db_search.php:249 db_structure.php:75 db_structure.php:76 +#: db_structure.php:88 db_structure.php:90 db_structure.php:101 +#: db_structure.php:103 libraries/common.lib.php:2836 +#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 +#: tbl_structure.php:35 tbl_structure.php:47 tbl_structure.php:464 msgid "Browse" msgstr "" -#: db_search.php:254 libraries/display_tbl.lib.php:1164 -#: libraries/display_tbl.lib.php:2055 libraries/sql_query_form.lib.php:453 -#: pdf_pages.php:285 pdf_pages.php:424 pdf_pages.php:460 pdf_pages.php:488 +#: db_search.php:254 libraries/display_tbl.lib.php:1163 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 msgid "Delete" @@ -551,226 +526,232 @@ msgstr "" msgid "Inside column:" msgstr "" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2830 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:75 +#: db_structure.php:79 db_structure.php:80 db_structure.php:92 +#: db_structure.php:93 db_structure.php:105 db_structure.php:106 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 +#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "" -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2827 libraries/common.lib.php:2834 -#: libraries/db_links.inc.php:62 libraries/export/htmlword.php:22 +#: db_structure.php:81 db_structure.php:94 db_structure.php:107 +#: libraries/common.lib.php:2832 libraries/common.lib.php:2839 +#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 -#: libraries/tbl_links.inc.php:55 pmd_general.php:133 -#: server_privileges.php:593 server_replication.php:314 tbl_tracking.php:268 +#: libraries/tbl_links.inc.php:54 pmd_general.php:133 +#: server_privileges.php:592 server_replication.php:313 tbl_tracking.php:263 msgid "Structure" msgstr "" -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:544 db_structure.php:545 db_tracking.php:90 -#: libraries/Index.class.php:482 libraries/common.lib.php:1659 -#: libraries/db_links.inc.php:99 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:126 -#: server_databases.php:351 tbl_structure.php:26 tbl_structure.php:150 -#: tbl_structure.php:151 tbl_structure.php:470 +#: db_structure.php:82 db_structure.php:83 db_structure.php:95 +#: db_structure.php:96 db_structure.php:108 db_structure.php:109 +#: db_structure.php:530 db_structure.php:531 db_tracking.php:86 +#: libraries/Index.class.php:482 libraries/common.lib.php:1663 +#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 +#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 +#: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" msgstr "" -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:542 db_structure.php:543 libraries/common.lib.php:1658 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:104 +#: db_structure.php:84 db_structure.php:85 db_structure.php:97 +#: db_structure.php:98 db_structure.php:110 db_structure.php:111 +#: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 +#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 msgid "Empty" msgstr "" -#: db_structure.php:315 libraries/tbl_links.inc.php:99 +#: db_structure.php:301 libraries/tbl_links.inc.php:98 #, possible-php-format msgid "Table %s has been emptied" msgstr "" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, possible-php-format msgid "View %s has been dropped" msgstr "" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, possible-php-format msgid "Table %s has been dropped" msgstr "" -#: db_structure.php:332 +#: db_structure.php:318 msgid "Tracking is active." msgstr "" -#: db_structure.php:334 +#: db_structure.php:320 msgid "Tracking is not active." msgstr "" -#: db_structure.php:419 libraries/display_tbl.lib.php:1943 +#: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, possible-php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -#: db_structure.php:433 db_structure.php:447 libraries/header.inc.php:125 -#: libraries/tbl_info.inc.php:65 tbl_structure.php:184 test/theme.php:73 +#: db_structure.php:419 db_structure.php:433 libraries/header.inc.php:125 +#: libraries/tbl_info.inc.php:60 tbl_structure.php:183 test/theme.php:73 msgid "View" msgstr "" -#: db_structure.php:484 libraries/db_structure.lib.php:40 -#: libraries/server_links.inc.php:69 server_replication.php:32 -#: server_replication.php:163 server_status.php:368 +#: db_structure.php:470 libraries/db_structure.lib.php:40 +#: libraries/server_links.inc.php:69 server_replication.php:31 +#: server_replication.php:162 server_status.php:368 msgid "Replication" msgstr "" -#: db_structure.php:488 +#: db_structure.php:474 msgid "Sum" msgstr "" -#: db_structure.php:495 libraries/StorageEngine.class.php:349 +#: db_structure.php:481 libraries/StorageEngine.class.php:351 #, possible-php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: db_structure.php:523 db_structure.php:540 db_structure.php:541 -#: libraries/display_tbl.lib.php:2080 libraries/display_tbl.lib.php:2085 -#: libraries/mult_submits.inc.php:15 server_databases.php:345 -#: server_databases.php:350 server_privileges.php:1588 tbl_structure.php:454 -#: tbl_structure.php:463 +#: db_structure.php:509 db_structure.php:526 db_structure.php:527 +#: libraries/display_tbl.lib.php:2039 libraries/display_tbl.lib.php:2044 +#: libraries/mult_submits.inc.php:15 server_databases.php:343 +#: server_databases.php:348 server_privileges.php:1592 tbl_structure.php:452 +#: tbl_structure.php:461 msgid "With selected:" msgstr "" -#: db_structure.php:526 libraries/display_tbl.lib.php:2075 -#: server_databases.php:347 server_privileges.php:569 -#: server_privileges.php:1591 tbl_structure.php:457 +#: db_structure.php:512 libraries/display_tbl.lib.php:2034 +#: server_databases.php:345 server_privileges.php:568 +#: server_privileges.php:1595 tbl_structure.php:455 msgid "Check All" msgstr "" -#: db_structure.php:530 libraries/display_tbl.lib.php:2076 -#: libraries/replication_gui.lib.php:35 server_databases.php:349 -#: server_privileges.php:572 server_privileges.php:1595 tbl_structure.php:461 +#: db_structure.php:516 libraries/display_tbl.lib.php:2035 +#: libraries/replication_gui.lib.php:35 server_databases.php:347 +#: server_privileges.php:571 server_privileges.php:1599 tbl_structure.php:459 msgid "Uncheck All" msgstr "" -#: db_structure.php:535 +#: db_structure.php:521 msgid "Check tables having overhead" msgstr "" -#: db_structure.php:546 db_structure.php:547 db_structure.php:598 -#: libraries/display_tbl.lib.php:2179 libraries/mult_submits.inc.php:27 -#: tbl_structure.php:491 tbl_structure.php:493 +#: db_structure.php:532 db_structure.php:533 db_structure.php:584 +#: libraries/display_tbl.lib.php:2138 libraries/mult_submits.inc.php:27 +#: tbl_structure.php:489 tbl_structure.php:491 msgid "Print view" msgstr "" -#: db_structure.php:548 db_structure.php:549 libraries/mult_submits.inc.php:41 -#: tbl_operations.php:580 +#: db_structure.php:534 db_structure.php:535 libraries/mult_submits.inc.php:41 +#: tbl_operations.php:578 msgid "Check table" msgstr "" -#: db_structure.php:550 db_structure.php:551 libraries/mult_submits.inc.php:46 -#: tbl_operations.php:620 tbl_structure.php:708 tbl_structure.php:710 +#: db_structure.php:536 db_structure.php:537 libraries/mult_submits.inc.php:46 +#: tbl_operations.php:618 tbl_structure.php:706 tbl_structure.php:708 msgid "Optimize table" msgstr "" -#: db_structure.php:552 db_structure.php:553 libraries/mult_submits.inc.php:51 -#: tbl_operations.php:610 +#: db_structure.php:538 db_structure.php:539 libraries/mult_submits.inc.php:51 +#: tbl_operations.php:608 msgid "Repair table" msgstr "" -#: db_structure.php:554 db_structure.php:555 libraries/mult_submits.inc.php:56 -#: tbl_operations.php:600 +#: db_structure.php:540 db_structure.php:541 libraries/mult_submits.inc.php:56 +#: tbl_operations.php:598 msgid "Analyze table" msgstr "" -#: db_structure.php:556 db_structure.php:557 libraries/db_links.inc.php:70 -#: libraries/display_export.lib.php:82 libraries/display_tbl.lib.php:2093 -#: libraries/display_tbl.lib.php:2224 libraries/mult_submits.inc.php:61 -#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:81 -#: pmd_pdf.php:83 pmd_pdf.php:108 server_privileges.php:1372 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 +#: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 +#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 +#: pmd_pdf.php:81 pmd_pdf.php:106 server_privileges.php:1376 #: setup/frames/menu.inc.php:22 tbl_row_action.php:58 msgid "Export" msgstr "" -#: db_structure.php:605 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:591 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "" -#: db_tracking.php:65 +#: db_tracking.php:61 msgid "Tracked tables" msgstr "" -#: db_tracking.php:70 libraries/export/htmlword.php:85 +#: db_tracking.php:66 libraries/export/htmlword.php:85 #: libraries/export/latex.php:152 libraries/export/odt.php:112 #: libraries/export/sql.php:339 libraries/export/texytext.php:84 #: libraries/export/xml.php:254 libraries/header.inc.php:105 -#: libraries/header_printview.inc.php:57 server_databases.php:168 -#: server_privileges.php:1652 server_privileges.php:1713 -#: server_privileges.php:1971 server_processlist.php:55 -#: server_synchronize.php:1178 server_synchronize.php:1182 -#: tbl_tracking.php:590 test/theme.php:64 +#: libraries/header_printview.inc.php:57 server_databases.php:166 +#: server_privileges.php:1656 server_privileges.php:1717 +#: server_privileges.php:1975 server_processlist.php:55 +#: server_synchronize.php:1177 server_synchronize.php:1181 +#: tbl_tracking.php:585 test/theme.php:64 msgid "Database" msgstr "" -#: db_tracking.php:72 +#: db_tracking.php:68 msgid "Last version" msgstr "" -#: db_tracking.php:73 tbl_tracking.php:593 +#: db_tracking.php:69 tbl_tracking.php:588 msgid "Created" msgstr "" -#: db_tracking.php:74 tbl_tracking.php:594 +#: db_tracking.php:70 tbl_tracking.php:589 msgid "Updated" msgstr "" -#: db_tracking.php:76 libraries/Index.class.php:439 -#: libraries/db_structure.lib.php:44 server_databases.php:202 -#: server_privileges.php:1534 server_privileges.php:1717 -#: server_privileges.php:2065 tbl_structure.php:186 +#: db_tracking.php:71 libraries/common.lib.php:1361 +#: libraries/server_links.inc.php:48 server_processlist.php:58 +#: tbl_tracking.php:590 test/theme.php:100 +msgid "Status" +msgstr "" + +#: db_tracking.php:72 libraries/Index.class.php:439 +#: libraries/db_structure.lib.php:44 server_databases.php:200 +#: server_privileges.php:1538 server_privileges.php:1721 +#: server_privileges.php:2069 tbl_structure.php:185 msgid "Action" msgstr "" -#: db_tracking.php:87 db_tracking.php:119 +#: db_tracking.php:83 db_tracking.php:115 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:105 tbl_tracking.php:547 tbl_tracking.php:605 -#: tbl_tracking.php:612 +#: db_tracking.php:101 tbl_tracking.php:542 tbl_tracking.php:600 +#: tbl_tracking.php:607 msgid "active" msgstr "" -#: db_tracking.php:107 tbl_tracking.php:549 tbl_tracking.php:607 -#: tbl_tracking.php:609 +#: db_tracking.php:103 tbl_tracking.php:544 tbl_tracking.php:602 +#: tbl_tracking.php:604 msgid "not active" msgstr "" -#: db_tracking.php:120 +#: db_tracking.php:116 msgid "Versions" msgstr "" -#: db_tracking.php:121 tbl_tracking.php:378 tbl_tracking.php:623 +#: db_tracking.php:117 tbl_tracking.php:373 tbl_tracking.php:618 msgid "Tracking report" msgstr "" -#: db_tracking.php:122 tbl_tracking.php:250 tbl_tracking.php:623 +#: db_tracking.php:118 tbl_tracking.php:245 tbl_tracking.php:618 msgid "Structure snapshot" msgstr "" -#: db_tracking.php:151 +#: db_tracking.php:147 msgid "Untracked tables" msgstr "" -#: db_tracking.php:171 db_tracking.php:173 tbl_structure.php:527 -#: tbl_structure.php:529 +#: db_tracking.php:167 db_tracking.php:169 tbl_structure.php:525 +#: tbl_structure.php:527 msgid "Track table" msgstr "" -#: db_tracking.php:199 +#: db_tracking.php:195 msgid "Database Log" msgstr "" @@ -778,102 +759,102 @@ msgstr "" msgid "Selected export type has to be saved in file!" msgstr "" -#: export.php:153 export.php:178 export.php:620 +#: export.php:152 export.php:177 export.php:615 #, possible-php-format msgid "Insufficient space to save the file %s." msgstr "" -#: export.php:287 +#: export.php:286 #, possible-php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "" -#: export.php:291 export.php:295 +#: export.php:290 export.php:294 #, possible-php-format msgid "The web server does not have permission to save the file %s." msgstr "" -#: export.php:622 +#: export.php:617 #, possible-php-format msgid "Dump has been saved to file %s." msgstr "" -#: import.php:59 +#: 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." msgstr "" -#: import.php:278 import.php:331 libraries/File.class.php:840 -#: libraries/File.class.php:950 +#: import.php:277 import.php:330 libraries/File.class.php:566 +#: libraries/File.class.php:676 msgid "File could not be read" msgstr "" -#: import.php:286 import.php:295 import.php:314 import.php:323 -#: libraries/File.class.php:1020 libraries/File.class.php:1028 -#: libraries/File.class.php:1044 libraries/File.class.php:1052 +#: import.php:285 import.php:294 import.php:313 import.php:322 +#: libraries/File.class.php:746 libraries/File.class.php:754 +#: libraries/File.class.php:770 libraries/File.class.php:778 #, possible-php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." msgstr "" -#: import.php:336 +#: import.php:335 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " "[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." msgstr "" -#: import.php:371 libraries/display_import.lib.php:23 +#: import.php:370 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:396 +#: import.php:395 msgid "The bookmark has been deleted." msgstr "" -#: import.php:400 +#: import.php:399 msgid "Showing bookmark" msgstr "" -#: import.php:402 sql.php:625 +#: import.php:401 sql.php:618 #, possible-php-format msgid "Bookmark %s created" msgstr "" -#: import.php:408 import.php:414 +#: import.php:407 import.php:413 #, possible-php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" -#: import.php:423 +#: import.php:422 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: import.php:425 +#: import.php:424 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." msgstr "" -#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:240 +#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:239 #: user_password.php:110 msgid "Back" msgstr "" -#: index.php:188 +#: index.php:183 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" -#: js/messages.php:25 server_synchronize.php:344 server_synchronize.php:356 -#: server_synchronize.php:372 server_synchronize.php:379 -#: server_synchronize.php:738 server_synchronize.php:766 -#: server_synchronize.php:794 server_synchronize.php:806 +#: js/messages.php:25 server_synchronize.php:343 server_synchronize.php:355 +#: server_synchronize.php:371 server_synchronize.php:378 +#: server_synchronize.php:737 server_synchronize.php:765 +#: server_synchronize.php:793 server_synchronize.php:805 msgid "Click to select" msgstr "" @@ -881,15 +862,15 @@ msgstr "" msgid "Click to unselect" msgstr "" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:88 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:87 msgid "\"DROP DATABASE\" statements are disabled." msgstr "" -#: js/messages.php:30 libraries/mult_submits.inc.php:257 sql.php:187 +#: js/messages.php:30 libraries/mult_submits.inc.php:256 sql.php:186 msgid "Do you really want to " msgstr "" -#: js/messages.php:31 libraries/mult_submits.inc.php:257 sql.php:171 +#: js/messages.php:31 libraries/mult_submits.inc.php:256 sql.php:170 msgid "You are about to DESTROY a complete database!" msgstr "" @@ -918,11 +899,11 @@ msgstr "" msgid "The user name is empty!" msgstr "" -#: js/messages.php:44 server_privileges.php:1228 user_password.php:65 +#: js/messages.php:44 server_privileges.php:1229 user_password.php:65 msgid "The password is empty!" msgstr "" -#: js/messages.php:45 server_privileges.php:1226 user_password.php:68 +#: js/messages.php:45 server_privileges.php:1227 user_password.php:68 msgid "The passwords aren't the same!" msgstr "" @@ -930,27 +911,27 @@ msgstr "" msgid "Cancel" msgstr "" -#: js/messages.php:52 pmd_save_pos.php:53 +#: js/messages.php:52 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "" -#: js/messages.php:53 pmd_relation_upd.php:48 +#: js/messages.php:53 pmd_relation_upd.php:47 msgid "Relation deleted" msgstr "" -#: js/messages.php:54 pmd_relation_new.php:63 +#: js/messages.php:54 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:55 pmd_relation_new.php:85 +#: js/messages.php:55 pmd_relation_new.php:84 msgid "Internal relation added" msgstr "" -#: js/messages.php:56 pmd_relation_new.php:62 pmd_relation_new.php:87 +#: js/messages.php:56 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:57 pmd_relation_new.php:30 +#: js/messages.php:57 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "" @@ -958,13 +939,13 @@ msgstr "" msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:59 libraries/relation.lib.php:94 -#: libraries/relation.lib.php:106 +#: js/messages.php:59 libraries/relation.lib.php:89 +#: libraries/relation.lib.php:101 msgid "General relation features" msgstr "" -#: js/messages.php:59 libraries/relation.lib.php:88 -#: libraries/relation.lib.php:95 +#: js/messages.php:59 libraries/relation.lib.php:83 +#: libraries/relation.lib.php:90 msgid "Disabled" msgstr "" @@ -980,7 +961,7 @@ msgstr "" msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:547 +#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:545 msgid "Choose column to display" msgstr "" @@ -1003,10 +984,10 @@ msgid "Prev" msgstr "" #. l10n: Display text for next month link in calendar -#: js/messages.php:81 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:337 -#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:422 -#: tbl_structure.php:800 +#: js/messages.php:81 libraries/common.lib.php:2358 +#: libraries/common.lib.php:2361 libraries/display_tbl.lib.php:336 +#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 +#: tbl_structure.php:798 msgid "Next" msgstr "" @@ -1064,63 +1045,63 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1562 +#: js/messages.php:101 libraries/common.lib.php:1566 msgid "Jan" msgstr "" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1564 +#: js/messages.php:103 libraries/common.lib.php:1568 msgid "Feb" msgstr "" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1566 +#: js/messages.php:105 libraries/common.lib.php:1570 msgid "Mar" msgstr "" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1568 +#: js/messages.php:107 libraries/common.lib.php:1572 msgid "Apr" msgstr "" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1570 +#: js/messages.php:109 libraries/common.lib.php:1574 msgctxt "Short month name" msgid "May" msgstr "" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1572 +#: js/messages.php:111 libraries/common.lib.php:1576 msgid "Jun" msgstr "" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1574 +#: js/messages.php:113 libraries/common.lib.php:1578 msgid "Jul" msgstr "" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1576 +#: js/messages.php:115 libraries/common.lib.php:1580 msgid "Aug" msgstr "" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1578 +#: js/messages.php:117 libraries/common.lib.php:1582 msgid "Sep" msgstr "" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1580 +#: js/messages.php:119 libraries/common.lib.php:1584 msgid "Oct" msgstr "" #. l10n: Short month name -#: js/messages.php:121 libraries/common.lib.php:1582 +#: js/messages.php:121 libraries/common.lib.php:1586 msgid "Nov" msgstr "" #. l10n: Short month name -#: js/messages.php:123 libraries/common.lib.php:1584 +#: js/messages.php:123 libraries/common.lib.php:1588 msgid "Dec" msgstr "" @@ -1153,37 +1134,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1587 +#: js/messages.php:136 libraries/common.lib.php:1591 msgid "Sun" msgstr "" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1589 +#: js/messages.php:138 libraries/common.lib.php:1593 msgid "Mon" msgstr "" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1591 +#: js/messages.php:140 libraries/common.lib.php:1595 msgid "Tue" msgstr "" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1593 +#: js/messages.php:142 libraries/common.lib.php:1597 msgid "Wed" msgstr "" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1595 +#: js/messages.php:144 libraries/common.lib.php:1599 msgid "Thu" msgstr "" #. l10n: Short week day name -#: js/messages.php:146 libraries/common.lib.php:1597 +#: js/messages.php:146 libraries/common.lib.php:1601 msgid "Fri" msgstr "" #. l10n: Short week day name -#: js/messages.php:148 libraries/common.lib.php:1599 +#: js/messages.php:148 libraries/common.lib.php:1603 msgid "Sat" msgstr "" @@ -1243,74 +1224,73 @@ msgstr "" msgid "Font size" msgstr "" -#: libraries/File.class.php:336 libraries/File.class.php:424 -#: libraries/File.class.php:561 libraries/File.class.php:700 -msgid "Unknown error in file upload." -msgstr "" - -#: libraries/File.class.php:406 +#: libraries/File.class.php:315 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:409 +#: libraries/File.class.php:318 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:412 +#: libraries/File.class.php:321 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:415 +#: libraries/File.class.php:324 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:418 +#: libraries/File.class.php:327 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:421 +#: libraries/File.class.php:330 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:898 +#: libraries/File.class.php:333 +msgid "Unknown error in file upload." +msgstr "" + +#: libraries/File.class.php:624 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "" -#: libraries/Index.class.php:427 tbl_relation.php:528 +#: libraries/Index.class.php:427 tbl_relation.php:526 msgid "No index defined!" msgstr "" -#: libraries/Index.class.php:432 server_databases.php:131 tbl_tracking.php:315 +#: libraries/Index.class.php:432 server_databases.php:129 tbl_tracking.php:310 msgid "Indexes" msgstr "" #: libraries/Index.class.php:443 libraries/mult_submits.inc.php:102 -#: libraries/tbl_properties.inc.php:518 tbl_structure.php:32 -#: tbl_structure.php:154 tbl_structure.php:158 tbl_structure.php:473 -#: tbl_tracking.php:321 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:31 +#: tbl_structure.php:153 tbl_structure.php:157 tbl_structure.php:471 +#: tbl_tracking.php:316 msgid "Unique" msgstr "" -#: libraries/Index.class.php:444 tbl_tracking.php:322 +#: libraries/Index.class.php:444 tbl_tracking.php:317 msgid "Packed" msgstr "" -#: libraries/Index.class.php:446 tbl_tracking.php:324 +#: libraries/Index.class.php:446 tbl_tracking.php:319 msgid "Cardinality" msgstr "" -#: libraries/Index.class.php:449 tbl_tracking.php:278 tbl_tracking.php:327 +#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322 msgid "Comment" msgstr "" #: libraries/Index.class.php:465 libraries/common.lib.php:609 -#: libraries/common.lib.php:1198 libraries/display_tbl.lib.php:1116 +#: libraries/common.lib.php:1191 libraries/display_tbl.lib.php:1115 #: libraries/import.lib.php:1119 libraries/import.lib.php:1143 -#: pdf_pages.php:284 setup/frames/index.inc.php:124 +#: pdf_pages.php:283 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:349 tbl_row_action.php:68 msgid "Edit" msgstr "" @@ -1332,15 +1312,15 @@ msgid "" msgstr "" #: libraries/List_Database.class.php:430 libraries/server_links.inc.php:40 -#: server_databases.php:87 server_privileges.php:1652 +#: server_databases.php:85 server_privileges.php:1656 #: setup/lib/messages.inc.php:107 test/theme.php:92 msgid "Databases" msgstr "" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:259 libraries/import.lib.php:134 pdf_schema.php:31 -#: pdf_schema.php:231 tbl_change.php:1023 tbl_operations.php:212 -#: tbl_relation.php:289 view_operations.php:61 +#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 +#: tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "" @@ -1365,40 +1345,40 @@ msgid_plural "%1$d rows inserted." msgstr[0] "" msgstr[1] "" -#: libraries/StorageEngine.class.php:196 +#: libraries/StorageEngine.class.php:194 msgid "" "There is no detailed status information available for this storage engine." msgstr "" -#: libraries/StorageEngine.class.php:352 +#: libraries/StorageEngine.class.php:354 #, possible-php-format msgid "%s is available on this MySQL server." msgstr "" -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:357 #, possible-php-format msgid "%s has been disabled for this MySQL server." msgstr "" -#: libraries/StorageEngine.class.php:359 +#: libraries/StorageEngine.class.php:361 #, possible-php-format msgid "This MySQL server does not support the %s storage engine." msgstr "" -#: libraries/Table.class.php:1018 +#: libraries/Table.class.php:1017 msgid "Invalid database" msgstr "" -#: libraries/Table.class.php:1032 tbl_get_field.php:25 +#: libraries/Table.class.php:1031 tbl_get_field.php:25 msgid "Invalid table name" msgstr "" -#: libraries/Table.class.php:1047 +#: libraries/Table.class.php:1046 #, possible-php-format msgid "Error renaming table %1$s to %2$s" msgstr "" -#: libraries/Table.class.php:1131 +#: libraries/Table.class.php:1129 #, possible-php-format msgid "Table %s has been renamed to %s" msgstr "" @@ -1416,22 +1396,22 @@ msgstr "" msgid "take it" msgstr "" -#: libraries/Theme_Manager.class.php:114 +#: libraries/Theme_Manager.class.php:109 #, possible-php-format msgid "Default theme %s not found!" msgstr "" -#: libraries/Theme_Manager.class.php:152 +#: libraries/Theme_Manager.class.php:147 #, possible-php-format msgid "Theme %s not found!" msgstr "" -#: libraries/Theme_Manager.class.php:220 +#: libraries/Theme_Manager.class.php:215 #, possible-php-format msgid "Theme path not found for theme %s!" msgstr "" -#: libraries/Theme_Manager.class.php:296 test/theme.php:160 themes.php:20 +#: libraries/Theme_Manager.class.php:291 test/theme.php:160 themes.php:20 #: themes.php:40 msgid "Theme / Style" msgstr "" @@ -1538,19 +1518,19 @@ msgstr "" msgid "Authenticating..." msgstr "" -#: libraries/blobstreaming.lib.php:689 +#: libraries/blobstreaming.lib.php:340 msgid "View image" msgstr "" -#: libraries/blobstreaming.lib.php:693 +#: libraries/blobstreaming.lib.php:344 msgid "Play audio" msgstr "" -#: libraries/blobstreaming.lib.php:698 +#: libraries/blobstreaming.lib.php:349 msgid "View video" msgstr "" -#: libraries/blobstreaming.lib.php:702 +#: libraries/blobstreaming.lib.php:353 msgid "Download file" msgstr "" @@ -1595,7 +1575,7 @@ msgstr "" msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:909 +#: libraries/common.inc.php:908 #, possible-php-format msgid "You should upgrade to %s %s or later." msgstr "" @@ -1620,7 +1600,8 @@ msgstr "" #: libraries/common.lib.php:425 libraries/common.lib.php:427 #: libraries/common.lib.php:429 libraries/common.lib.php:445 #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 -#: libraries/display_export.lib.php:163 libraries/relation.lib.php:84 +#: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 +#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 #: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" @@ -1635,146 +1616,146 @@ msgstr "" msgid "MySQL said: " msgstr "" -#: libraries/common.lib.php:1136 +#: libraries/common.lib.php:1129 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1174 setup/lib/messages.inc.php:350 +#: libraries/common.lib.php:1167 setup/lib/messages.inc.php:350 msgid "Explain SQL" msgstr "" -#: libraries/common.lib.php:1177 +#: libraries/common.lib.php:1170 msgid "Skip Explain SQL" msgstr "" -#: libraries/common.lib.php:1211 +#: libraries/common.lib.php:1204 msgid "Without PHP Code" msgstr "" -#: libraries/common.lib.php:1214 setup/lib/messages.inc.php:352 +#: libraries/common.lib.php:1207 setup/lib/messages.inc.php:352 msgid "Create PHP Code" msgstr "" -#: libraries/common.lib.php:1232 server_status.php:451 +#: libraries/common.lib.php:1225 server_status.php:451 #: setup/lib/messages.inc.php:351 msgid "Refresh" msgstr "" -#: libraries/common.lib.php:1241 +#: libraries/common.lib.php:1234 msgid "Skip Validate SQL" msgstr "" -#: libraries/common.lib.php:1244 setup/lib/messages.inc.php:353 +#: libraries/common.lib.php:1237 setup/lib/messages.inc.php:353 msgid "Validate SQL" msgstr "" -#: libraries/common.lib.php:1283 +#: libraries/common.lib.php:1287 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1285 +#: libraries/common.lib.php:1289 msgid "Inline" msgstr "" -#: libraries/common.lib.php:1339 libraries/common.lib.php:1354 +#: libraries/common.lib.php:1343 libraries/common.lib.php:1358 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1358 libraries/tbl_triggers.lib.php:27 +#: libraries/common.lib.php:1362 libraries/tbl_triggers.lib.php:27 #: server_processlist.php:57 msgid "Time" msgstr "" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "B" msgstr "" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "KiB" msgstr "" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "MiB" msgstr "" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "GiB" msgstr "" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "TiB" msgstr "" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "PiB" msgstr "" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "EiB" msgstr "" #. l10n: Thousands separator -#: libraries/common.lib.php:1424 +#: libraries/common.lib.php:1428 msgid "," msgstr "" #. l10n: Decimal separator -#: libraries/common.lib.php:1426 +#: libraries/common.lib.php:1430 msgid "." msgstr "" #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1603 +#: libraries/common.lib.php:1607 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "" -#: libraries/common.lib.php:1909 +#: libraries/common.lib.php:1913 #, possible-php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "" -#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 -#: libraries/display_tbl.lib.php:289 server_status.php:718 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 +#: libraries/display_tbl.lib.php:288 server_status.php:718 msgid "Begin" msgstr "" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 -#: libraries/display_tbl.lib.php:290 server_binlog.php:154 +#: libraries/common.lib.php:2328 libraries/common.lib.php:2331 +#: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 -#: libraries/display_tbl.lib.php:352 +#: libraries/common.lib.php:2359 libraries/common.lib.php:2362 +#: libraries/display_tbl.lib.php:351 msgid "End" msgstr "" -#: libraries/common.lib.php:2429 +#: libraries/common.lib.php:2434 #, possible-php-format msgid "Jump to database "%s"." msgstr "" -#: libraries/common.lib.php:2448 +#: libraries/common.lib.php:2453 #, possible-php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2828 libraries/common.lib.php:2835 -#: libraries/db_links.inc.php:67 libraries/export/sql.php:24 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 +#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 -#: libraries/tbl_links.inc.php:59 querywindow.php:89 test/theme.php:96 +#: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "" -#: libraries/common.lib.php:2837 libraries/db_links.inc.php:103 -#: libraries/tbl_links.inc.php:94 libraries/tbl_links.inc.php:116 -#: view_operations.php:88 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: view_operations.php:87 msgid "Operations" msgstr "" -#: libraries/core.lib.php:282 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 #, possible-php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1790,38 +1771,38 @@ msgstr "" msgid "Name" msgstr "" -#: libraries/db_links.inc.php:44 +#: libraries/db_links.inc.php:43 #, possible-php-format msgid "Database %s has been dropped." msgstr "" -#: libraries/db_links.inc.php:56 libraries/db_links.inc.php:57 -#: libraries/db_links.inc.php:58 +#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 +#: libraries/db_links.inc.php:57 msgid "Database seems to be empty!" msgstr "" -#: libraries/db_links.inc.php:80 libraries/relation.lib.php:142 -#: libraries/tbl_links.inc.php:68 +#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:85 +#: libraries/db_links.inc.php:84 msgid "Query" msgstr "" -#: libraries/db_links.inc.php:90 libraries/relation.lib.php:138 +#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:97 libraries/server_links.inc.php:87 -#: libraries/tbl_links.inc.php:90 pmd_pdf.php:83 pmd_pdf.php:109 +#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "" -#: libraries/db_links.inc.php:110 libraries/server_links.inc.php:65 -#: server_privileges.php:111 server_privileges.php:1714 -#: server_privileges.php:2063 test/theme.php:116 +#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: server_privileges.php:110 server_privileges.php:1718 +#: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" msgstr "" @@ -1833,14 +1814,14 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1847 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1806 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "" -#: libraries/db_structure.lib.php:60 server_databases.php:141 -#: tbl_printview.php:334 tbl_structure.php:681 +#: libraries/db_structure.lib.php:60 server_databases.php:139 +#: tbl_printview.php:333 tbl_structure.php:679 msgid "Overhead" msgstr "" @@ -1857,7 +1838,7 @@ msgstr "" msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "" -#: libraries/dbi/mysql.dbi.lib.php:358 tbl_structure.php:607 +#: libraries/dbi/mysql.dbi.lib.php:358 tbl_structure.php:605 msgid "Details..." msgstr "" @@ -1867,22 +1848,22 @@ msgid "Change password" msgstr "" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:807 +#: libraries/replication_gui.lib.php:347 server_privileges.php:806 msgid "No Password" msgstr "" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1530 server_synchronize.php:1174 +#: libraries/replication_gui.lib.php:351 server_privileges.php:795 +#: server_privileges.php:799 server_privileges.php:810 +#: server_privileges.php:1534 server_synchronize.php:1173 msgid "Password" msgstr "" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:815 server_privileges.php:818 +#: server_privileges.php:814 server_privileges.php:817 msgid "Re-type" msgstr "" @@ -1903,8 +1884,8 @@ msgstr "" msgid "Create" msgstr "" -#: libraries/display_create_database.lib.php:39 server_privileges.php:113 -#: server_privileges.php:1419 server_replication.php:34 +#: libraries/display_create_database.lib.php:39 server_privileges.php:112 +#: server_privileges.php:1423 server_replication.php:33 msgid "No Privileges" msgstr "" @@ -1921,49 +1902,49 @@ msgstr "" msgid "Number of columns" msgstr "" -#: libraries/display_export.lib.php:41 +#: libraries/display_export.lib.php:35 msgid "Could not load export plugins, please check your installation!" msgstr "" -#: libraries/display_export.lib.php:106 +#: libraries/display_export.lib.php:100 #, possible-php-format msgid "Dump %s row(s) starting at row # %s" msgstr "" -#: libraries/display_export.lib.php:114 +#: libraries/display_export.lib.php:108 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:124 setup/lib/messages.inc.php:79 +#: libraries/display_export.lib.php:118 setup/lib/messages.inc.php:79 msgid "Save as file" msgstr "" -#: libraries/display_export.lib.php:133 +#: libraries/display_export.lib.php:127 #, possible-php-format msgid "Save on server in %s directory" msgstr "" -#: libraries/display_export.lib.php:141 setup/lib/messages.inc.php:87 +#: libraries/display_export.lib.php:135 setup/lib/messages.inc.php:87 msgid "Overwrite existing file(s)" msgstr "" -#: libraries/display_export.lib.php:147 +#: libraries/display_export.lib.php:141 msgid "File name template" msgstr "" -#: libraries/display_export.lib.php:151 +#: libraries/display_export.lib.php:145 msgid "server name" msgstr "" -#: libraries/display_export.lib.php:154 +#: libraries/display_export.lib.php:148 msgid "database name" msgstr "" -#: libraries/display_export.lib.php:157 +#: libraries/display_export.lib.php:151 msgid "table name" msgstr "" -#: libraries/display_export.lib.php:161 +#: libraries/display_export.lib.php:155 #, possible-php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -1971,39 +1952,39 @@ msgid "" "%3$s. Other text will be kept as is." msgstr "" -#: libraries/display_export.lib.php:202 +#: libraries/display_export.lib.php:196 msgid "remember template" msgstr "" -#: libraries/display_export.lib.php:210 libraries/display_import.lib.php:177 +#: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 #: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 msgid "Character set of the file:" msgstr "" -#: libraries/display_export.lib.php:235 setup/lib/messages.inc.php:81 +#: libraries/display_export.lib.php:229 setup/lib/messages.inc.php:81 msgid "Compression" msgstr "" -#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:196 -#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:529 -#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:574 -#: server_privileges.php:1867 server_processlist.php:74 +#: libraries/display_export.lib.php:234 libraries/display_import.lib.php:196 +#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:528 +#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:573 +#: server_privileges.php:1871 server_processlist.php:74 msgid "None" msgstr "" -#: libraries/display_export.lib.php:247 +#: libraries/display_export.lib.php:241 msgid "\"zipped\"" msgstr "" -#: libraries/display_export.lib.php:253 +#: libraries/display_export.lib.php:247 msgid "\"gzipped\"" msgstr "" -#: libraries/display_export.lib.php:259 +#: libraries/display_export.lib.php:253 msgid "\"bzipped\"" msgstr "" -#: libraries/display_export.lib.php:274 libraries/export/sql.php:42 +#: libraries/display_export.lib.php:268 libraries/export/sql.php:42 #: libraries/import/sql.php:31 msgid "SQL compatibility mode" msgstr "" @@ -2038,12 +2019,12 @@ msgid "File uploads are not allowed on this server." msgstr "" #: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 -#: tbl_change.php:1024 +#: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "" #: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 -#: tbl_change.php:1027 +#: tbl_change.php:925 msgid "web server upload directory" msgstr "" @@ -2122,41 +2103,41 @@ msgstr "" msgid "Language" msgstr "" -#: libraries/display_tbl.lib.php:303 +#: libraries/display_tbl.lib.php:302 #, possible-php-format msgid "%d is not valid row number." msgstr "" -#: libraries/display_tbl.lib.php:309 +#: libraries/display_tbl.lib.php:308 msgid "row(s) starting from row #" msgstr "" -#: libraries/display_tbl.lib.php:315 +#: libraries/display_tbl.lib.php:314 msgid "horizontal" msgstr "" -#: libraries/display_tbl.lib.php:316 +#: libraries/display_tbl.lib.php:315 msgid "horizontal (rotated headers)" msgstr "" -#: libraries/display_tbl.lib.php:317 +#: libraries/display_tbl.lib.php:316 msgid "vertical" msgstr "" -#: libraries/display_tbl.lib.php:323 +#: libraries/display_tbl.lib.php:322 #, possible-php-format msgid "in %s mode and repeat headers after %s cells" msgstr "" -#: libraries/display_tbl.lib.php:345 +#: libraries/display_tbl.lib.php:344 msgid "This operation could take a long time. Proceed anyway?" msgstr "" -#: libraries/display_tbl.lib.php:511 +#: libraries/display_tbl.lib.php:510 msgid "Sort by key" msgstr "" -#: libraries/display_tbl.lib.php:554 libraries/export/codegen.php:38 +#: libraries/display_tbl.lib.php:553 libraries/export/codegen.php:38 #: libraries/export/csv.php:29 libraries/export/excel.php:34 #: libraries/export/htmlword.php:28 libraries/export/latex.php:32 #: libraries/export/mediawiki.php:21 libraries/export/ods.php:26 @@ -2166,97 +2147,97 @@ msgstr "" #: libraries/export/xlsx.php:26 libraries/export/xml.php:23 #: libraries/export/yaml.php:27 libraries/import.lib.php:1114 #: libraries/import.lib.php:1136 libraries/import/csv.php:31 -#: libraries/import/docsql.php:33 libraries/import/ldi.php:46 +#: libraries/import/docsql.php:32 libraries/import/ldi.php:46 #: libraries/import/ods.php:30 libraries/import/sql.php:19 #: libraries/import/xls.php:25 libraries/import/xlsx.php:25 -#: libraries/import/xml.php:25 tbl_select.php:264 tbl_structure.php:752 +#: libraries/import/xml.php:25 tbl_select.php:263 tbl_structure.php:750 msgid "Options" msgstr "" -#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:569 +#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:568 msgid "Partial Texts" msgstr "" -#: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:573 +#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:572 msgid "Full Texts" msgstr "" -#: libraries/display_tbl.lib.php:586 +#: libraries/display_tbl.lib.php:585 msgid "Relational key" msgstr "" -#: libraries/display_tbl.lib.php:587 +#: libraries/display_tbl.lib.php:586 msgid "Relational display column" msgstr "" -#: libraries/display_tbl.lib.php:594 +#: libraries/display_tbl.lib.php:593 msgid "Show binary contents" msgstr "" -#: libraries/display_tbl.lib.php:596 +#: libraries/display_tbl.lib.php:595 msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:598 +#: libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "" -#: libraries/display_tbl.lib.php:606 pmd_general.php:140 tbl_change.php:312 -#: tbl_change.php:318 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:307 +#: tbl_change.php:313 msgid "Hide" msgstr "" -#: libraries/display_tbl.lib.php:606 libraries/relation.lib.php:122 -#: libraries/tbl_properties.inc.php:143 transformation_overview.php:46 +#: libraries/display_tbl.lib.php:605 libraries/relation.lib.php:117 +#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46 msgid "Browser transformation" msgstr "" -#: libraries/display_tbl.lib.php:1125 libraries/display_tbl.lib.php:1129 -#: libraries/display_tbl.lib.php:1131 +#: libraries/display_tbl.lib.php:1124 libraries/display_tbl.lib.php:1128 +#: libraries/display_tbl.lib.php:1130 msgid "Execute bookmarked query" msgstr "" -#: libraries/display_tbl.lib.php:1144 libraries/display_tbl.lib.php:1156 +#: libraries/display_tbl.lib.php:1143 libraries/display_tbl.lib.php:1155 msgid "The row has been deleted" msgstr "" -#: libraries/display_tbl.lib.php:1183 libraries/display_tbl.lib.php:2055 +#: libraries/display_tbl.lib.php:1182 libraries/display_tbl.lib.php:2014 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "" -#: libraries/display_tbl.lib.php:1933 +#: libraries/display_tbl.lib.php:1892 msgid "in query" msgstr "" -#: libraries/display_tbl.lib.php:1951 +#: libraries/display_tbl.lib.php:1910 msgid "Showing rows" msgstr "" -#: libraries/display_tbl.lib.php:1961 +#: libraries/display_tbl.lib.php:1920 msgid "total" msgstr "" -#: libraries/display_tbl.lib.php:1969 sql.php:523 +#: libraries/display_tbl.lib.php:1928 sql.php:522 #, possible-php-format msgid "Query took %01.4f sec" msgstr "" -#: libraries/display_tbl.lib.php:2088 libraries/mult_submits.inc.php:112 -#: querywindow.php:115 querywindow.php:119 querywindow.php:122 -#: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:469 +#: libraries/display_tbl.lib.php:2047 libraries/mult_submits.inc.php:112 +#: querywindow.php:114 querywindow.php:118 querywindow.php:121 +#: tbl_structure.php:23 tbl_structure.php:148 tbl_structure.php:467 msgid "Change" msgstr "" -#: libraries/display_tbl.lib.php:2158 +#: libraries/display_tbl.lib.php:2117 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2186 +#: libraries/display_tbl.lib.php:2145 msgid "Print view (with full texts)" msgstr "" -#: libraries/display_tbl.lib.php:2359 +#: libraries/display_tbl.lib.php:2318 msgid "Link not found" msgstr "" @@ -2308,9 +2289,9 @@ msgstr "" msgid "Buffer Pool Usage" msgstr "" -#: libraries/engines/innodb.lib.php:168 server_databases.php:136 -#: server_databases.php:304 server_status.php:524 server_status.php:585 -#: server_status.php:606 tbl_printview.php:349 tbl_structure.php:695 +#: libraries/engines/innodb.lib.php:168 server_databases.php:134 +#: server_databases.php:302 server_status.php:524 server_status.php:585 +#: server_status.php:606 tbl_printview.php:348 tbl_structure.php:693 msgid "Total" msgstr "" @@ -2432,6 +2413,77 @@ msgid "" "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." msgstr "" +#: libraries/engines/pbms.lib.php:31 +msgid "Garbage Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:32 +msgid "The percentage of garbage in a repository file before it is compacted." +msgstr "" + +#: libraries/engines/pbms.lib.php:36 libraries/replication_gui.lib.php:69 +#: server_synchronize.php:1161 +msgid "Port" +msgstr "" + +#: libraries/engines/pbms.lib.php:37 +msgid "" +"The port for the PBMS stream-based communications. Setting this value to 0 " +"will disable HTTP communication with the daemon." +msgstr "" + +#: libraries/engines/pbms.lib.php:41 +msgid "Repository Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:42 +msgid "" +"The maximum size of a BLOB repository file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:46 +msgid "Temp Blob Timeout" +msgstr "" + +#: libraries/engines/pbms.lib.php:47 +msgid "" +"The timeout, in seconds, for temporary BLOBs. Uploaded BLOB data is removed " +"after this time, unless they are referenced by a record in the database." +msgstr "" + +#: libraries/engines/pbms.lib.php:51 +msgid "Temp Log Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:52 +msgid "" +"The maximum size of a temporary BLOB log file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:56 +msgid "Max Keep Alive" +msgstr "" + +#: libraries/engines/pbms.lib.php:57 +msgid "" +"The timeout for inactive connection with the keep-alive flag set. After this " +"time the connection will be closed. The time-out is in milliseconds (1/1000)." +msgstr "" + +#: libraries/engines/pbms.lib.php:61 +msgid "Metadata Headers" +msgstr "" + +#: libraries/engines/pbms.lib.php:62 +msgid "" +"A \":\" delimited list of metadata headers to be used to initialize the " +"pbms_metadata_header table when a database is created." +msgstr "" + #: libraries/engines/pbxt.lib.php:22 msgid "Index cache size" msgstr "" @@ -2555,7 +2607,7 @@ msgid "" msgstr "" #: libraries/export/codegen.php:36 setup/lib/messages.inc.php:85 -#: tbl_printview.php:374 tbl_structure.php:736 +#: tbl_printview.php:373 tbl_structure.php:734 msgid "Format" msgstr "" @@ -2618,9 +2670,9 @@ msgstr "" #: libraries/export/htmlword.php:23 libraries/export/latex.php:59 #: libraries/export/latex.php:205 libraries/export/odt.php:47 #: libraries/export/sql.php:105 libraries/export/sql.php:865 -#: libraries/export/texytext.php:27 server_databases.php:126 -#: server_privileges.php:576 server_replication.php:315 tbl_printview.php:315 -#: tbl_structure.php:664 +#: libraries/export/texytext.php:27 server_databases.php:124 +#: server_privileges.php:575 server_replication.php:314 tbl_printview.php:314 +#: tbl_structure.php:662 msgid "Data" msgstr "" @@ -2667,13 +2719,13 @@ msgid "Label key" msgstr "" #: libraries/export/latex.php:46 libraries/export/odt.php:34 -#: libraries/export/sql.php:90 tbl_relation.php:398 +#: libraries/export/sql.php:90 tbl_relation.php:396 msgid "Relations" msgstr "" #: libraries/export/latex.php:52 libraries/export/odt.php:40 #: libraries/export/odt.php:317 libraries/export/sql.php:94 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "" @@ -2681,10 +2733,10 @@ msgstr "" #: libraries/export/xml.php:101 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1529 server_privileges.php:2061 -#: server_processlist.php:54 server_synchronize.php:1158 +#: libraries/replication_gui.lib.php:331 server_privileges.php:730 +#: server_privileges.php:733 server_privileges.php:789 +#: server_privileges.php:1533 server_privileges.php:2065 +#: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "" @@ -2871,8 +2923,8 @@ msgstr "" msgid "Export contents" msgstr "" -#: libraries/footer.inc.php:182 libraries/footer.inc.php:193 -#: libraries/footer.inc.php:196 +#: libraries/footer.inc.php:180 libraries/footer.inc.php:191 +#: libraries/footer.inc.php:194 msgid "Open new phpMyAdmin window" msgstr "" @@ -2888,7 +2940,7 @@ msgstr "" msgid "Generated by" msgstr "" -#: libraries/import.lib.php:151 sql.php:519 tbl_change.php:180 +#: libraries/import.lib.php:151 sql.php:518 tbl_change.php:175 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" @@ -2944,7 +2996,7 @@ msgstr "" msgid "Column names in first row" msgstr "" -#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:501 +#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:500 #: view_create.php:147 msgid "Column names" msgstr "" @@ -2970,12 +3022,12 @@ msgstr "" msgid "Invalid column count in CSV input on line %d." msgstr "" -#: libraries/import/docsql.php:28 +#: libraries/import/docsql.php:27 msgid "DocSQL" msgstr "" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 -#: server_synchronize.php:427 server_synchronize.php:870 +#: libraries/import/docsql.php:30 libraries/tbl_properties.inc.php:616 +#: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "" @@ -3029,26 +3081,26 @@ msgstr "" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:512 -#: tbl_structure.php:28 tbl_structure.php:152 tbl_structure.php:156 -#: tbl_structure.php:472 +#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:511 +#: tbl_structure.php:27 tbl_structure.php:151 tbl_structure.php:155 +#: tbl_structure.php:470 msgid "Primary" msgstr "" #: libraries/mult_submits.inc.php:97 libraries/tbl_properties.inc.php:115 -#: libraries/tbl_properties.inc.php:524 tbl_printview.php:324 -#: tbl_structure.php:30 tbl_structure.php:153 tbl_structure.php:157 -#: tbl_structure.php:474 tbl_structure.php:672 +#: libraries/tbl_properties.inc.php:523 tbl_printview.php:323 +#: tbl_structure.php:29 tbl_structure.php:152 tbl_structure.php:156 +#: tbl_structure.php:472 tbl_structure.php:670 msgid "Index" msgstr "" -#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:530 -#: tbl_structure.php:34 tbl_structure.php:155 tbl_structure.php:159 -#: tbl_structure.php:477 +#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:529 +#: tbl_structure.php:33 tbl_structure.php:154 tbl_structure.php:158 +#: tbl_structure.php:475 msgid "Fulltext" msgstr "" -#: libraries/mult_submits.inc.php:434 tbl_replace.php:330 +#: libraries/mult_submits.inc.php:433 tbl_replace.php:330 msgid "No change" msgstr "" @@ -3056,190 +3108,190 @@ msgstr "" msgid "Charset" msgstr "" -#: libraries/mysql_charsets.lib.php:210 libraries/mysql_charsets.lib.php:411 -#: tbl_change.php:515 +#: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 +#: tbl_change.php:510 msgid "Binary" msgstr "" -#: libraries/mysql_charsets.lib.php:222 +#: libraries/mysql_charsets.lib.php:214 msgid "Bulgarian" msgstr "" -#: libraries/mysql_charsets.lib.php:226 libraries/mysql_charsets.lib.php:351 +#: libraries/mysql_charsets.lib.php:218 libraries/mysql_charsets.lib.php:343 msgid "Simplified Chinese" msgstr "" -#: libraries/mysql_charsets.lib.php:228 libraries/mysql_charsets.lib.php:371 +#: libraries/mysql_charsets.lib.php:220 libraries/mysql_charsets.lib.php:363 msgid "Traditional Chinese" msgstr "" -#: libraries/mysql_charsets.lib.php:232 libraries/mysql_charsets.lib.php:418 +#: libraries/mysql_charsets.lib.php:224 libraries/mysql_charsets.lib.php:410 msgid "case-insensitive" msgstr "" -#: libraries/mysql_charsets.lib.php:235 libraries/mysql_charsets.lib.php:420 +#: libraries/mysql_charsets.lib.php:227 libraries/mysql_charsets.lib.php:412 msgid "case-sensitive" msgstr "" -#: libraries/mysql_charsets.lib.php:238 +#: libraries/mysql_charsets.lib.php:230 msgid "Croatian" msgstr "" -#: libraries/mysql_charsets.lib.php:241 +#: libraries/mysql_charsets.lib.php:233 msgid "Czech" msgstr "" -#: libraries/mysql_charsets.lib.php:244 +#: libraries/mysql_charsets.lib.php:236 msgid "Danish" msgstr "" -#: libraries/mysql_charsets.lib.php:247 +#: libraries/mysql_charsets.lib.php:239 msgid "English" msgstr "" -#: libraries/mysql_charsets.lib.php:250 +#: libraries/mysql_charsets.lib.php:242 msgid "Esperanto" msgstr "" -#: libraries/mysql_charsets.lib.php:253 +#: libraries/mysql_charsets.lib.php:245 msgid "Estonian" msgstr "" -#: libraries/mysql_charsets.lib.php:256 libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:248 libraries/mysql_charsets.lib.php:251 msgid "German" msgstr "" -#: libraries/mysql_charsets.lib.php:256 +#: libraries/mysql_charsets.lib.php:248 msgid "dictionary" msgstr "" -#: libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:251 msgid "phone book" msgstr "" -#: libraries/mysql_charsets.lib.php:262 +#: libraries/mysql_charsets.lib.php:254 msgid "Hungarian" msgstr "" -#: libraries/mysql_charsets.lib.php:265 +#: libraries/mysql_charsets.lib.php:257 msgid "Icelandic" msgstr "" -#: libraries/mysql_charsets.lib.php:268 libraries/mysql_charsets.lib.php:358 +#: libraries/mysql_charsets.lib.php:260 libraries/mysql_charsets.lib.php:350 msgid "Japanese" msgstr "" -#: libraries/mysql_charsets.lib.php:271 +#: libraries/mysql_charsets.lib.php:263 msgid "Latvian" msgstr "" -#: libraries/mysql_charsets.lib.php:274 +#: libraries/mysql_charsets.lib.php:266 msgid "Lithuanian" msgstr "" -#: libraries/mysql_charsets.lib.php:277 libraries/mysql_charsets.lib.php:380 +#: libraries/mysql_charsets.lib.php:269 libraries/mysql_charsets.lib.php:372 msgid "Korean" msgstr "" -#: libraries/mysql_charsets.lib.php:280 +#: libraries/mysql_charsets.lib.php:272 msgid "Persian" msgstr "" -#: libraries/mysql_charsets.lib.php:283 +#: libraries/mysql_charsets.lib.php:275 msgid "Polish" msgstr "" -#: libraries/mysql_charsets.lib.php:286 libraries/mysql_charsets.lib.php:334 +#: libraries/mysql_charsets.lib.php:278 libraries/mysql_charsets.lib.php:326 msgid "West European" msgstr "" -#: libraries/mysql_charsets.lib.php:289 +#: libraries/mysql_charsets.lib.php:281 msgid "Romanian" msgstr "" -#: libraries/mysql_charsets.lib.php:292 +#: libraries/mysql_charsets.lib.php:284 msgid "Slovak" msgstr "" -#: libraries/mysql_charsets.lib.php:295 +#: libraries/mysql_charsets.lib.php:287 msgid "Slovenian" msgstr "" -#: libraries/mysql_charsets.lib.php:298 +#: libraries/mysql_charsets.lib.php:290 msgid "Spanish" msgstr "" -#: libraries/mysql_charsets.lib.php:301 +#: libraries/mysql_charsets.lib.php:293 msgid "Traditional Spanish" msgstr "" -#: libraries/mysql_charsets.lib.php:304 libraries/mysql_charsets.lib.php:401 +#: libraries/mysql_charsets.lib.php:296 libraries/mysql_charsets.lib.php:393 msgid "Swedish" msgstr "" -#: libraries/mysql_charsets.lib.php:307 libraries/mysql_charsets.lib.php:404 +#: libraries/mysql_charsets.lib.php:299 libraries/mysql_charsets.lib.php:396 msgid "Thai" msgstr "" -#: libraries/mysql_charsets.lib.php:310 libraries/mysql_charsets.lib.php:398 +#: libraries/mysql_charsets.lib.php:302 libraries/mysql_charsets.lib.php:390 msgid "Turkish" msgstr "" -#: libraries/mysql_charsets.lib.php:313 libraries/mysql_charsets.lib.php:395 +#: libraries/mysql_charsets.lib.php:305 libraries/mysql_charsets.lib.php:387 msgid "Ukrainian" msgstr "" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 msgid "Unicode" msgstr "" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 -#: libraries/mysql_charsets.lib.php:334 libraries/mysql_charsets.lib.php:341 -#: libraries/mysql_charsets.lib.php:363 libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 +#: libraries/mysql_charsets.lib.php:326 libraries/mysql_charsets.lib.php:333 +#: libraries/mysql_charsets.lib.php:355 libraries/mysql_charsets.lib.php:366 msgid "multilingual" msgstr "" -#: libraries/mysql_charsets.lib.php:341 +#: libraries/mysql_charsets.lib.php:333 msgid "Central European" msgstr "" -#: libraries/mysql_charsets.lib.php:346 +#: libraries/mysql_charsets.lib.php:338 msgid "Russian" msgstr "" -#: libraries/mysql_charsets.lib.php:363 +#: libraries/mysql_charsets.lib.php:355 msgid "Baltic" msgstr "" -#: libraries/mysql_charsets.lib.php:368 +#: libraries/mysql_charsets.lib.php:360 msgid "Armenian" msgstr "" -#: libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:366 msgid "Cyrillic" msgstr "" -#: libraries/mysql_charsets.lib.php:377 +#: libraries/mysql_charsets.lib.php:369 msgid "Arabic" msgstr "" -#: libraries/mysql_charsets.lib.php:383 +#: libraries/mysql_charsets.lib.php:375 msgid "Hebrew" msgstr "" -#: libraries/mysql_charsets.lib.php:386 +#: libraries/mysql_charsets.lib.php:378 msgid "Georgian" msgstr "" -#: libraries/mysql_charsets.lib.php:389 +#: libraries/mysql_charsets.lib.php:381 msgid "Greek" msgstr "" -#: libraries/mysql_charsets.lib.php:392 +#: libraries/mysql_charsets.lib.php:384 msgid "Czech-Slovak" msgstr "" -#: libraries/mysql_charsets.lib.php:407 libraries/mysql_charsets.lib.php:414 +#: libraries/mysql_charsets.lib.php:399 libraries/mysql_charsets.lib.php:406 msgid "unknown" msgstr "" @@ -3265,67 +3317,67 @@ msgstr "" msgid "This format has no options" msgstr "" -#: libraries/relation.lib.php:82 +#: libraries/relation.lib.php:77 msgid "not OK" msgstr "" -#: libraries/relation.lib.php:86 pmd_general.php:339 +#: libraries/relation.lib.php:81 pmd_general.php:339 msgid "OK" msgstr "" -#: libraries/relation.lib.php:87 +#: libraries/relation.lib.php:82 msgid "Enabled" msgstr "" -#: libraries/relation.lib.php:110 +#: libraries/relation.lib.php:105 msgid "Display Features" msgstr "" -#: libraries/relation.lib.php:116 +#: libraries/relation.lib.php:111 msgid "Creation of PDFs" msgstr "" -#: libraries/relation.lib.php:120 +#: libraries/relation.lib.php:115 msgid "Displaying Column Comments" msgstr "" -#: libraries/relation.lib.php:125 +#: libraries/relation.lib.php:120 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" -#: libraries/relation.lib.php:130 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 msgid "Bookmarked SQL query" msgstr "" -#: libraries/relation.lib.php:134 querywindow.php:99 querywindow.php:207 +#: libraries/relation.lib.php:129 querywindow.php:98 querywindow.php:205 msgid "SQL history" msgstr "" -#: libraries/relation.lib.php:146 +#: libraries/relation.lib.php:141 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:148 +#: libraries/relation.lib.php:143 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" -#: libraries/relation.lib.php:149 +#: libraries/relation.lib.php:144 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:150 +#: libraries/relation.lib.php:145 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:151 +#: libraries/relation.lib.php:146 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1158 +#: libraries/relation.lib.php:1153 msgid "no description" msgstr "" @@ -3333,7 +3385,7 @@ msgstr "" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:53 server_replication.php:346 +#: libraries/replication_gui.lib.php:53 server_replication.php:345 msgid "Change or reconfigure master server" msgstr "" @@ -3345,16 +3397,12 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:711 -#: server_privileges.php:714 server_privileges.php:721 -#: server_synchronize.php:1170 +#: libraries/replication_gui.lib.php:261 server_privileges.php:710 +#: server_privileges.php:713 server_privileges.php:720 +#: server_synchronize.php:1169 msgid "User name" msgstr "" -#: libraries/replication_gui.lib.php:69 server_synchronize.php:1162 -msgid "Port" -msgstr "" - #: libraries/replication_gui.lib.php:105 msgid "Master status" msgstr "" @@ -3369,8 +3417,8 @@ msgid "Variable" msgstr "" #: libraries/replication_gui.lib.php:117 server_status.php:737 -#: tbl_change.php:322 tbl_printview.php:368 tbl_select.php:137 -#: tbl_structure.php:728 +#: tbl_change.php:317 tbl_printview.php:367 tbl_select.php:136 +#: tbl_structure.php:726 msgid "Value" msgstr "" @@ -3384,38 +3432,38 @@ msgid "" "this list." msgstr "" -#: libraries/replication_gui.lib.php:242 server_replication.php:193 +#: libraries/replication_gui.lib.php:242 server_replication.php:192 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:256 server_privileges.php:716 +#: libraries/replication_gui.lib.php:256 server_privileges.php:715 msgid "Any user" msgstr "" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1920 server_privileges.php:1950 +#: libraries/replication_gui.lib.php:348 server_privileges.php:716 +#: server_privileges.php:783 server_privileges.php:807 +#: server_privileges.php:1924 server_privileges.php:1954 msgid "Use text field" msgstr "" -#: libraries/replication_gui.lib.php:304 server_privileges.php:764 +#: libraries/replication_gui.lib.php:304 server_privileges.php:763 msgid "Any host" msgstr "" -#: libraries/replication_gui.lib.php:308 server_privileges.php:768 +#: libraries/replication_gui.lib.php:308 server_privileges.php:767 msgid "Local" msgstr "" -#: libraries/replication_gui.lib.php:314 server_privileges.php:773 +#: libraries/replication_gui.lib.php:314 server_privileges.php:772 msgid "This Host" msgstr "" -#: libraries/replication_gui.lib.php:320 server_privileges.php:779 +#: libraries/replication_gui.lib.php:320 server_privileges.php:778 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:333 server_privileges.php:792 +#: libraries/replication_gui.lib.php:333 server_privileges.php:791 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3441,8 +3489,8 @@ msgstr "" msgid "Servers" msgstr "" -#: libraries/server_links.inc.php:52 server_engines.php:111 -#: server_engines.php:115 server_status.php:414 test/theme.php:104 +#: libraries/server_links.inc.php:52 server_engines.php:125 +#: server_engines.php:129 server_status.php:414 test/theme.php:104 msgid "Variables" msgstr "" @@ -3463,12 +3511,12 @@ msgstr "" msgid "Processes" msgstr "" -#: libraries/server_links.inc.php:91 server_synchronize.php:1091 -#: server_synchronize.php:1099 +#: libraries/server_links.inc.php:91 server_synchronize.php:1090 +#: server_synchronize.php:1098 msgid "Synchronize" msgstr "" -#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1109 +#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1108 msgid "Source database" msgstr "" @@ -3486,7 +3534,7 @@ msgstr "" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1111 +#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1110 msgid "Target database" msgstr "" @@ -3504,11 +3552,11 @@ msgstr "" msgid "Columns" msgstr "" -#: libraries/sql_query_form.lib.php:342 sql.php:664 sql.php:665 sql.php:682 +#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql_query_form.lib.php:349 sql.php:676 +#: libraries/sql_query_form.lib.php:349 sql.php:669 msgid "Let every user access this bookmark" msgstr "" @@ -3590,12 +3638,12 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" -#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:139 -#: libraries/tbl_links.inc.php:140 +#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 +#: libraries/tbl_links.inc.php:139 msgid "Table seems to be empty!" msgstr "" -#: libraries/tbl_links.inc.php:148 +#: libraries/tbl_links.inc.php:147 #, possible-php-format msgid "Tracking of %s.%s is activated." msgstr "" @@ -3618,23 +3666,23 @@ msgid "" "escaping or quotes, using this format: a" msgstr "" -#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1263 -#: pdf_schema.php:1284 tbl_printview.php:142 tbl_structure.php:179 +#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1262 +#: pdf_schema.php:1283 tbl_printview.php:141 tbl_structure.php:178 msgid "Attributes" msgstr "" -#: libraries/tbl_properties.inc.php:136 +#: libraries/tbl_properties.inc.php:135 #, possible-php-format msgid "" "For a list of available transformation options and their MIME type " "transformations, click on %stransformation descriptions%s" msgstr "" -#: libraries/tbl_properties.inc.php:144 +#: libraries/tbl_properties.inc.php:143 msgid "Transformation options" msgstr "" -#: libraries/tbl_properties.inc.php:145 +#: libraries/tbl_properties.inc.php:144 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
                            If you ever need to put a backslash (\"\\\") or a single " @@ -3642,44 +3690,44 @@ msgid "" "'\\\\xyz' or 'a\\'b')." msgstr "" -#: libraries/tbl_properties.inc.php:392 +#: libraries/tbl_properties.inc.php:391 msgctxt "for default" msgid "None" msgstr "" -#: libraries/tbl_properties.inc.php:393 +#: libraries/tbl_properties.inc.php:392 msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:579 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:578 transformation_overview.php:57 #, possible-php-format msgid "" "No description is available for this transformation.
                            Please ask the " "author what %s does." msgstr "" -#: libraries/tbl_properties.inc.php:725 server_engines.php:57 -#: tbl_operations.php:354 +#: libraries/tbl_properties.inc.php:724 server_engines.php:56 +#: tbl_operations.php:352 msgid "Storage Engine" msgstr "" -#: libraries/tbl_properties.inc.php:754 +#: libraries/tbl_properties.inc.php:753 msgid "PARTITION definition" msgstr "" -#: libraries/tbl_properties.inc.php:775 pdf_pages.php:502 +#: libraries/tbl_properties.inc.php:774 pdf_pages.php:501 #: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214 -#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1124 tbl_indexes.php:247 -#: tbl_relation.php:565 +#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1022 tbl_indexes.php:246 +#: tbl_relation.php:563 msgid "Save" msgstr "" -#: libraries/tbl_properties.inc.php:779 tbl_structure.php:541 +#: libraries/tbl_properties.inc.php:778 tbl_structure.php:539 #, possible-php-format msgid "Add %s column(s)" msgstr "" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:535 +#: libraries/tbl_properties.inc.php:782 tbl_structure.php:533 msgid "You have to add at least one column." msgstr "" @@ -3802,8 +3850,8 @@ msgstr "" msgid "Custom color" msgstr "" -#: main.php:162 pdf_pages.php:362 setup/lib/FormDisplay.tpl.php:216 -#: tbl_change.php:1173 +#: main.php:162 pdf_pages.php:361 setup/lib/FormDisplay.tpl.php:216 +#: tbl_change.php:1071 msgid "Reset" msgstr "" @@ -3811,8 +3859,8 @@ msgstr "" msgid "Protocol version" msgstr "" -#: main.php:188 server_privileges.php:1381 server_privileges.php:1528 -#: server_privileges.php:1642 server_privileges.php:2060 +#: main.php:188 server_privileges.php:1385 server_privileges.php:1532 +#: server_privileges.php:1646 server_privileges.php:2064 #: server_processlist.php:53 msgid "User" msgstr "" @@ -3886,21 +3934,28 @@ msgid "" "has been configured." msgstr "" -#: main.php:330 +#: main.php:314 +#, possible-php-format +msgid "" +"The additional features for working with linked tables have been " +"deactivated. To find out why click %shere%s." +msgstr "" + +#: main.php:329 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:345 +#: main.php:344 #, possible-php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: main.php:357 +#: main.php:356 #, possible-php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -3911,96 +3966,96 @@ msgstr "" msgid "Reload navigation frame" msgstr "" -#: navigation.php:204 server_databases.php:370 server_synchronize.php:1190 +#: navigation.php:203 server_databases.php:368 server_synchronize.php:1189 msgid "No databases" msgstr "" -#: navigation.php:298 +#: navigation.php:297 msgid "Filter" msgstr "" -#: navigation.php:299 setup/frames/index.inc.php:218 +#: navigation.php:298 setup/frames/index.inc.php:218 #: setup/lib/messages.inc.php:41 msgid "Clear" msgstr "" -#: navigation.php:330 navigation.php:331 +#: navigation.php:329 navigation.php:330 msgctxt "short form" msgid "Create table" msgstr "" -#: navigation.php:333 navigation.php:495 +#: navigation.php:332 navigation.php:494 msgid "Please select a database" msgstr "" -#: pdf_pages.php:40 pdf_pages.php:46 pdf_pages.php:52 pdf_pages.php:57 +#: pdf_pages.php:39 pdf_pages.php:45 pdf_pages.php:51 pdf_pages.php:56 #, possible-php-format msgid "%s table not found or not set in %s" msgstr "" -#: pdf_pages.php:265 +#: pdf_pages.php:264 msgid "Please choose a page to edit" msgstr "" -#: pdf_pages.php:303 pmd_pdf.php:113 +#: pdf_pages.php:302 pmd_pdf.php:111 msgid "Create a page" msgstr "" -#: pdf_pages.php:309 +#: pdf_pages.php:308 msgid "Page name" msgstr "" -#: pdf_pages.php:313 +#: pdf_pages.php:312 msgid "Automatic layout based on" msgstr "" -#: pdf_pages.php:315 +#: pdf_pages.php:314 msgid "Internal relations" msgstr "" -#: pdf_pages.php:338 +#: pdf_pages.php:337 msgid "Select Tables" msgstr "" -#: pdf_pages.php:361 +#: pdf_pages.php:360 msgid "Toggle scratchboard" msgstr "" -#: pdf_pages.php:524 +#: pdf_pages.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" msgstr "" -#: pdf_schema.php:635 +#: pdf_schema.php:634 #, possible-php-format msgid "The %s table doesn't exist!" msgstr "" -#: pdf_schema.php:671 +#: pdf_schema.php:670 #, possible-php-format msgid "Please configure the coordinates for table %s" msgstr "" -#: pdf_schema.php:994 +#: pdf_schema.php:993 #, possible-php-format msgid "Schema of the %s database - Page %s" msgstr "" -#: pdf_schema.php:1012 +#: pdf_schema.php:1011 msgid "No tables" msgstr "" -#: pdf_schema.php:1031 pdf_schema.php:1140 +#: pdf_schema.php:1030 pdf_schema.php:1139 msgid "Relational schema" msgstr "" -#: pdf_schema.php:1115 +#: pdf_schema.php:1114 msgid "Table of contents" msgstr "" -#: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:145 -#: tbl_structure.php:182 tbl_tracking.php:277 +#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 +#: tbl_structure.php:181 tbl_tracking.php:272 msgid "Extra" msgstr "" @@ -4012,7 +4067,7 @@ msgstr "" msgid "Save position" msgstr "" -#: pmd_general.php:70 server_synchronize.php:428 server_synchronize.php:871 +#: pmd_general.php:70 server_synchronize.php:427 server_synchronize.php:870 msgid "Create table" msgstr "" @@ -4083,31 +4138,31 @@ msgid "" "appropriate column name." msgstr "" -#: pmd_pdf.php:62 +#: pmd_pdf.php:60 msgid "Page has been created" msgstr "" -#: pmd_pdf.php:64 +#: pmd_pdf.php:62 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:84 +#: pmd_pdf.php:82 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:88 +#: pmd_pdf.php:86 msgid "recommended" msgstr "" -#: pmd_pdf.php:93 +#: pmd_pdf.php:91 msgid "to/from page" msgstr "" -#: querywindow.php:94 +#: querywindow.php:93 msgid "Import files" msgstr "" -#: querywindow.php:105 +#: querywindow.php:104 msgid "All" msgstr "" @@ -4153,390 +4208,390 @@ msgstr "" msgid "Character Sets and Collations" msgstr "" -#: server_databases.php:51 +#: server_databases.php:49 msgid "No databases selected." msgstr "" -#: server_databases.php:62 +#: server_databases.php:60 #, possible-php-format msgid "%s databases have been dropped successfully." msgstr "" -#: server_databases.php:87 +#: server_databases.php:85 msgid "Databases statistics" msgstr "" -#: server_databases.php:116 server_status.php:370 +#: server_databases.php:114 server_status.php:370 #: setup/lib/messages.inc.php:114 msgid "Tables" msgstr "" -#: server_databases.php:194 server_replication.php:180 -#: server_replication.php:208 +#: server_databases.php:192 server_replication.php:179 +#: server_replication.php:207 msgid "Master replication" msgstr "" -#: server_databases.php:196 server_replication.php:247 +#: server_databases.php:194 server_replication.php:246 msgid "Slave replication" msgstr "" -#: server_databases.php:229 +#: server_databases.php:227 msgid "Jump to database" msgstr "" -#: server_databases.php:266 +#: server_databases.php:264 msgid "Not replicated" msgstr "" -#: server_databases.php:272 +#: server_databases.php:270 msgid "Replicated" msgstr "" -#: server_databases.php:288 +#: server_databases.php:286 #, possible-php-format msgid "Check privileges for database "%s"." msgstr "" -#: server_databases.php:292 server_databases.php:293 +#: server_databases.php:290 server_databases.php:291 msgid "Check Privileges" msgstr "" -#: server_databases.php:357 server_databases.php:358 +#: server_databases.php:355 server_databases.php:356 msgid "Enable Statistics" msgstr "" -#: server_databases.php:361 server_databases.php:362 +#: server_databases.php:359 server_databases.php:360 msgid "Disable Statistics" msgstr "" -#: server_databases.php:365 +#: server_databases.php:363 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." msgstr "" -#: server_engines.php:48 +#: server_engines.php:47 msgid "Storage Engines" msgstr "" -#: server_export.php:20 +#: server_export.php:18 msgid "View dump (schema) of databases" msgstr "" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:23 server_privileges.php:265 msgid "Includes all privileges except GRANT." msgstr "" -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:24 server_privileges.php:191 +#: server_privileges.php:514 msgid "Allows altering the structure of existing tables." msgstr "" -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:25 server_privileges.php:207 +#: server_privileges.php:520 msgid "Allows altering and dropping stored routines." msgstr "" -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:26 server_privileges.php:183 +#: server_privileges.php:513 msgid "Allows creating new databases and tables." msgstr "" -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:27 server_privileges.php:206 +#: server_privileges.php:519 msgid "Allows creating stored routines." msgstr "" -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:513 msgid "Allows creating new tables." msgstr "" -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:29 server_privileges.php:194 +#: server_privileges.php:517 msgid "Allows creating temporary tables." msgstr "" -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:30 server_privileges.php:208 +#: server_privileges.php:553 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: server_privileges.php:32 server_privileges.php:199 -#: server_privileges.php:203 server_privileges.php:526 -#: server_privileges.php:530 +#: server_privileges.php:31 server_privileges.php:198 +#: server_privileges.php:202 server_privileges.php:525 +#: server_privileges.php:529 msgid "Allows creating new views." msgstr "" -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:32 server_privileges.php:182 +#: server_privileges.php:505 msgid "Allows deleting data." msgstr "" -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:33 server_privileges.php:184 +#: server_privileges.php:516 msgid "Allows dropping databases and tables." msgstr "" -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:34 server_privileges.php:516 msgid "Allows dropping tables." msgstr "" -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:35 server_privileges.php:199 +#: server_privileges.php:533 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:36 server_privileges.php:209 +#: server_privileges.php:521 msgid "Allows executing stored routines." msgstr "" -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:37 server_privileges.php:188 +#: server_privileges.php:508 msgid "Allows importing data from and exporting data into files." msgstr "" -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:38 server_privileges.php:539 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:515 msgid "Allows creating and dropping indexes." msgstr "" -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:40 server_privileges.php:180 +#: server_privileges.php:441 server_privileges.php:503 msgid "Allows inserting and replacing data." msgstr "" -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:41 server_privileges.php:195 +#: server_privileges.php:548 msgid "Allows locking tables for the current thread." msgstr "" -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:42 server_privileges.php:645 +#: server_privileges.php:647 msgid "Limits the number of new connections the user may open per hour." msgstr "" -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:43 server_privileges.php:633 +#: server_privileges.php:635 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:44 server_privileges.php:639 +#: server_privileges.php:641 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" -#: server_privileges.php:46 server_privileges.php:652 -#: server_privileges.php:654 +#: server_privileges.php:45 server_privileges.php:651 +#: server_privileges.php:653 msgid "Limits the number of simultaneous connections the user may have." msgstr "" -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:46 server_privileges.php:187 +#: server_privileges.php:543 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:47 server_privileges.php:189 +#: server_privileges.php:447 server_privileges.php:549 msgid "Has no effect in this MySQL version." msgstr "" -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:48 server_privileges.php:185 +#: server_privileges.php:544 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:197 +#: server_privileges.php:551 msgid "Allows the user to ask where the slaves / masters are." msgstr "" -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:50 server_privileges.php:196 +#: server_privileges.php:552 msgid "Needed for the replication slaves." msgstr "" -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:51 server_privileges.php:179 +#: server_privileges.php:438 server_privileges.php:502 msgid "Allows reading data." msgstr "" -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:52 server_privileges.php:192 +#: server_privileges.php:546 msgid "Gives access to the complete list of databases." msgstr "" -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:53 server_privileges.php:203 +#: server_privileges.php:205 server_privileges.php:518 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:54 server_privileges.php:186 +#: server_privileges.php:545 msgid "Allows shutting down the server." msgstr "" -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:55 server_privileges.php:193 +#: server_privileges.php:542 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " "killing threads of other users." msgstr "" -#: server_privileges.php:57 server_privileges.php:201 -#: server_privileges.php:535 +#: server_privileges.php:56 server_privileges.php:200 +#: server_privileges.php:534 msgid "Allows creating and dropping triggers" msgstr "" -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:57 server_privileges.php:181 +#: server_privileges.php:444 server_privileges.php:504 msgid "Allows changing data." msgstr "" -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:58 server_privileges.php:259 msgid "No privileges." msgstr "" -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:301 server_privileges.php:302 msgctxt "None privileges" msgid "None" msgstr "" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1710 server_privileges.php:1716 +#: server_privileges.php:430 server_privileges.php:565 +#: server_privileges.php:1714 server_privileges.php:1720 msgid "Table-specific privileges" msgstr "" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1532 +#: server_privileges.php:431 server_privileges.php:573 +#: server_privileges.php:1536 msgid " Note: MySQL privilege names are expressed in English " msgstr "" -#: server_privileges.php:563 server_privileges.php:1531 +#: server_privileges.php:562 server_privileges.php:1535 msgid "Global privileges" msgstr "" -#: server_privileges.php:565 server_privileges.php:1710 +#: server_privileges.php:564 server_privileges.php:1714 msgid "Database-specific privileges" msgstr "" -#: server_privileges.php:610 +#: server_privileges.php:609 msgid "Administration" msgstr "" -#: server_privileges.php:630 +#: server_privileges.php:629 msgid "Resource limits" msgstr "" -#: server_privileges.php:631 +#: server_privileges.php:630 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" -#: server_privileges.php:708 +#: server_privileges.php:707 msgid "Login Information" msgstr "" -#: server_privileges.php:802 +#: server_privileges.php:801 msgid "Do not change the password" msgstr "" -#: server_privileges.php:835 server_privileges.php:2197 +#: server_privileges.php:834 server_privileges.php:2201 msgid "No user found." msgstr "" -#: server_privileges.php:879 +#: server_privileges.php:878 #, possible-php-format msgid "The user %s already exists!" msgstr "" -#: server_privileges.php:962 +#: server_privileges.php:961 msgid "You have added a new user." msgstr "" -#: server_privileges.php:1183 +#: server_privileges.php:1184 #, possible-php-format msgid "You have updated the privileges for %s." msgstr "" -#: server_privileges.php:1207 +#: server_privileges.php:1208 #, possible-php-format msgid "You have revoked the privileges for %s" msgstr "" -#: server_privileges.php:1243 +#: server_privileges.php:1244 #, possible-php-format msgid "The password for %s was changed successfully." msgstr "" -#: server_privileges.php:1263 +#: server_privileges.php:1264 #, possible-php-format msgid "Deleting %s" msgstr "" -#: server_privileges.php:1274 +#: server_privileges.php:1275 msgid "No users selected for deleting!" msgstr "" -#: server_privileges.php:1277 +#: server_privileges.php:1278 msgid "Reloading the privileges" msgstr "" -#: server_privileges.php:1292 +#: server_privileges.php:1296 msgid "The selected users have been deleted successfully." msgstr "" -#: server_privileges.php:1327 +#: server_privileges.php:1331 msgid "The privileges were reloaded successfully." msgstr "" -#: server_privileges.php:1355 server_privileges.php:1641 +#: server_privileges.php:1359 server_privileges.php:1645 msgid "Edit Privileges" msgstr "" -#: server_privileges.php:1364 +#: server_privileges.php:1368 msgid "Revoke" msgstr "" -#: server_privileges.php:1396 +#: server_privileges.php:1400 msgid "User overview" msgstr "" -#: server_privileges.php:1533 server_privileges.php:1715 -#: server_privileges.php:2064 +#: server_privileges.php:1537 server_privileges.php:1719 +#: server_privileges.php:2068 msgid "Grant" msgstr "" -#: server_privileges.php:1552 server_privileges.php:2154 +#: server_privileges.php:1556 server_privileges.php:2158 msgid "Any" msgstr "" -#: server_privileges.php:1601 server_privileges.php:1625 -#: server_privileges.php:2019 server_privileges.php:2208 +#: server_privileges.php:1605 server_privileges.php:1629 +#: server_privileges.php:2023 server_privileges.php:2212 msgid "Add a new User" msgstr "" -#: server_privileges.php:1606 +#: server_privileges.php:1610 msgid "Remove selected users" msgstr "" -#: server_privileges.php:1609 +#: server_privileges.php:1613 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: server_privileges.php:1610 server_privileges.php:1611 -#: server_privileges.php:1612 +#: server_privileges.php:1614 server_privileges.php:1615 +#: server_privileges.php:1616 msgid "Drop the databases that have the same names as the users." msgstr "" -#: server_privileges.php:1628 +#: server_privileges.php:1632 #, possible-php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4545,89 +4600,89 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: server_privileges.php:1676 +#: server_privileges.php:1680 msgid "The selected user was not found in the privilege table." msgstr "" -#: server_privileges.php:1716 +#: server_privileges.php:1720 msgid "Column-specific privileges" msgstr "" -#: server_privileges.php:1917 +#: server_privileges.php:1921 msgid "Add privileges on the following database" msgstr "" -#: server_privileges.php:1935 +#: server_privileges.php:1939 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:1938 +#: server_privileges.php:1942 msgid "Add privileges on the following table" msgstr "" -#: server_privileges.php:1995 +#: server_privileges.php:1999 msgid "Change Login Information / Copy User" msgstr "" -#: server_privileges.php:1998 +#: server_privileges.php:2002 msgid "Create a new user with the same privileges and ..." msgstr "" -#: server_privileges.php:2000 +#: server_privileges.php:2004 msgid "... keep the old one." msgstr "" -#: server_privileges.php:2001 +#: server_privileges.php:2005 msgid " ... delete the old one from the user tables." msgstr "" -#: server_privileges.php:2002 +#: server_privileges.php:2006 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: server_privileges.php:2003 +#: server_privileges.php:2007 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: server_privileges.php:2025 +#: server_privileges.php:2029 msgid "Database for user" msgstr "" -#: server_privileges.php:2029 +#: server_privileges.php:2033 msgctxt "Create none database for user" msgid "None" msgstr "" -#: server_privileges.php:2030 +#: server_privileges.php:2034 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2031 +#: server_privileges.php:2035 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2034 +#: server_privileges.php:2038 #, possible-php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: server_privileges.php:2057 +#: server_privileges.php:2061 #, possible-php-format msgid "Users having access to "%s"" msgstr "" -#: server_privileges.php:2165 +#: server_privileges.php:2169 msgid "global" msgstr "" -#: server_privileges.php:2167 +#: server_privileges.php:2171 msgid "database-specific" msgstr "" -#: server_privileges.php:2169 +#: server_privileges.php:2173 msgid "wildcard" msgstr "" @@ -4646,53 +4701,53 @@ msgstr "" msgid "ID" msgstr "" -#: server_replication.php:50 +#: server_replication.php:49 msgid "Unknown error" msgstr "" -#: server_replication.php:57 +#: server_replication.php:56 #, possible-php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:64 +#: server_replication.php:63 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:70 +#: server_replication.php:69 msgid "Unable to change master" msgstr "" -#: server_replication.php:73 +#: server_replication.php:72 #, possible-php-format msgid "Master server changed succesfully to %s" msgstr "" -#: server_replication.php:181 +#: server_replication.php:180 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:183 server_status.php:391 +#: server_replication.php:182 server_status.php:391 msgid "Show master status" msgstr "" -#: server_replication.php:186 +#: server_replication.php:185 msgid "Show connected slaves" msgstr "" -#: server_replication.php:209 +#: server_replication.php:208 #, possible-php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:216 +#: server_replication.php:215 msgid "Master configuration" msgstr "" -#: server_replication.php:217 +#: server_replication.php:216 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -4701,107 +4756,107 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:220 +#: server_replication.php:219 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:221 +#: server_replication.php:220 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:224 +#: server_replication.php:223 msgid "Please select databases:" msgstr "" -#: server_replication.php:227 +#: server_replication.php:226 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: server_replication.php:229 +#: server_replication.php:228 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: server_replication.php:292 +#: server_replication.php:291 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:295 +#: server_replication.php:294 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:304 +#: server_replication.php:303 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:307 +#: server_replication.php:306 msgid "See slave status table" msgstr "" -#: server_replication.php:310 +#: server_replication.php:309 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:321 +#: server_replication.php:320 msgid "Control slave:" msgstr "" -#: server_replication.php:324 +#: server_replication.php:323 msgid "Full start" msgstr "" -#: server_replication.php:324 +#: server_replication.php:323 msgid "Full stop" msgstr "" -#: server_replication.php:325 +#: server_replication.php:324 msgid "Reset slave" msgstr "" -#: server_replication.php:326 +#: server_replication.php:325 #, possible-php-format msgid "SQL Thread %s only" msgstr "" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 msgid "Start" msgstr "" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 msgid "Stop" msgstr "" -#: server_replication.php:327 +#: server_replication.php:326 #, possible-php-format msgid "IO Thread %s only" msgstr "" -#: server_replication.php:331 +#: server_replication.php:330 msgid "Error management:" msgstr "" -#: server_replication.php:333 +#: server_replication.php:332 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:335 +#: server_replication.php:334 msgid "Skip current error" msgstr "" -#: server_replication.php:336 +#: server_replication.php:335 msgid "Skip next" msgstr "" -#: server_replication.php:339 +#: server_replication.php:338 msgid "errors." msgstr "" -#: server_replication.php:354 +#: server_replication.php:353 #, possible-php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -5501,110 +5556,110 @@ msgstr "" msgid "Replication status" msgstr "" -#: server_synchronize.php:93 +#: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:96 +#: server_synchronize.php:95 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:121 server_synchronize.php:124 tbl_create.php:77 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 #: tbl_get_field.php:19 #, possible-php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:264 +#: server_synchronize.php:263 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:271 +#: server_synchronize.php:270 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:399 server_synchronize.php:838 +#: server_synchronize.php:398 server_synchronize.php:837 msgid "not present" msgstr "" -#: server_synchronize.php:423 server_synchronize.php:866 +#: server_synchronize.php:422 server_synchronize.php:865 msgid "Structure Difference" msgstr "" -#: server_synchronize.php:424 server_synchronize.php:867 +#: server_synchronize.php:423 server_synchronize.php:866 msgid "Data Difference" msgstr "" -#: server_synchronize.php:429 server_synchronize.php:872 +#: server_synchronize.php:428 server_synchronize.php:871 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:430 server_synchronize.php:873 +#: server_synchronize.php:429 server_synchronize.php:872 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:431 server_synchronize.php:874 +#: server_synchronize.php:430 server_synchronize.php:873 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:432 server_synchronize.php:875 +#: server_synchronize.php:431 server_synchronize.php:874 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:433 server_synchronize.php:876 +#: server_synchronize.php:432 server_synchronize.php:875 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:434 server_synchronize.php:877 +#: server_synchronize.php:433 server_synchronize.php:876 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:435 server_synchronize.php:878 +#: server_synchronize.php:434 server_synchronize.php:877 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:445 server_synchronize.php:889 +#: server_synchronize.php:444 server_synchronize.php:888 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:448 server_synchronize.php:893 +#: server_synchronize.php:447 server_synchronize.php:892 msgid "Apply Selected Changes" msgstr "" -#: server_synchronize.php:450 server_synchronize.php:895 +#: server_synchronize.php:449 server_synchronize.php:894 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:463 +#: server_synchronize.php:462 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:941 +#: server_synchronize.php:940 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:1002 +#: server_synchronize.php:1001 msgid "The following queries have been executed:" msgstr "" -#: server_synchronize.php:1121 +#: server_synchronize.php:1120 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1122 +#: server_synchronize.php:1121 msgid "Current connection" msgstr "" -#: server_synchronize.php:1151 +#: server_synchronize.php:1150 #, possible-php-format msgid "Configuration: %s" msgstr "" -#: server_synchronize.php:1166 +#: server_synchronize.php:1165 msgid "Socket" msgstr "" -#: server_synchronize.php:1212 +#: server_synchronize.php:1211 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -6149,8 +6204,8 @@ msgstr "" #: setup/lib/messages.inc.php:128 msgid "" "Configure phpMyAdmin database to gain access to additional features, see " -"[a@../Documentation.html#linked-tables]linked-tables infrastructure[/a] in " -"documentation" +"[a@../Documentation.html#linked-tables]phpMyAdmin configuration storage[/a] " +"in documentation" msgstr "" #: setup/lib/messages.inc.php:129 setup/lib/messages.inc.php:290 @@ -7185,110 +7240,110 @@ msgstr "" msgid "ZIP" msgstr "" -#: sql.php:495 tbl_replace.php:385 +#: sql.php:494 tbl_replace.php:384 #, possible-php-format msgid "Inserted row id: %1$d" msgstr "" -#: sql.php:512 +#: sql.php:511 msgid "Showing as PHP code" msgstr "" -#: sql.php:515 tbl_replace.php:359 +#: sql.php:514 tbl_replace.php:358 msgid "Showing SQL query" msgstr "" -#: sql.php:517 +#: sql.php:516 msgid "Validated SQL" msgstr "" -#: sql.php:638 +#: sql.php:631 #, possible-php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:670 +#: sql.php:663 msgid "Label" msgstr "" -#: tbl_addfield.php:188 tbl_alter.php:102 tbl_indexes.php:97 +#: tbl_addfield.php:185 tbl_alter.php:100 tbl_indexes.php:97 #, possible-php-format msgid "Table %1$s has been altered successfully" msgstr "" -#: tbl_change.php:250 tbl_select.php:26 tbl_select.php:27 tbl_select.php:30 -#: tbl_select.php:33 +#: tbl_change.php:245 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_select.php:32 msgid "Browse foreign values" msgstr "" -#: tbl_change.php:280 tbl_change.php:318 +#: tbl_change.php:275 tbl_change.php:313 msgid "Function" msgstr "" -#: tbl_change.php:300 tbl_indexes.php:199 tbl_indexes.php:224 +#: tbl_change.php:295 tbl_indexes.php:198 tbl_indexes.php:223 msgid "Ignore" msgstr "" -#: tbl_change.php:725 +#: tbl_change.php:720 msgid " Because of its length,
                            this column might not be editable " msgstr "" -#: tbl_change.php:884 +#: tbl_change.php:835 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:890 +#: tbl_change.php:841 msgid "Binary - do not edit" msgstr "" -#: tbl_change.php:983 +#: tbl_change.php:889 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:1128 +#: tbl_change.php:1026 msgid "Insert as new row" msgstr "" -#: tbl_change.php:1129 +#: tbl_change.php:1027 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:1130 +#: tbl_change.php:1028 msgid "Show insert query" msgstr "" -#: tbl_change.php:1145 +#: tbl_change.php:1043 msgid "Go back to previous page" msgstr "" -#: tbl_change.php:1146 +#: tbl_change.php:1044 msgid "Insert another new row" msgstr "" -#: tbl_change.php:1150 +#: tbl_change.php:1048 msgid "Go back to this page" msgstr "" -#: tbl_change.php:1158 +#: tbl_change.php:1056 msgid "Edit next row" msgstr "" -#: tbl_change.php:1169 +#: tbl_change.php:1067 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: tbl_change.php:1207 +#: tbl_change.php:1105 #, possible-php-format msgid "Restart insertion with %s rows" msgstr "" -#: tbl_create.php:57 +#: tbl_create.php:55 #, possible-php-format msgid "Table %s already exists!" msgstr "" -#: tbl_create.php:244 +#: tbl_create.php:241 #, possible-php-format msgid "Table %1$s has been created." msgstr "" @@ -7309,196 +7364,196 @@ msgstr "" msgid "No index parts defined!" msgstr "" -#: tbl_indexes.php:159 +#: tbl_indexes.php:158 msgid "Create a new index" msgstr "" -#: tbl_indexes.php:161 +#: tbl_indexes.php:160 msgid "Modify an index" msgstr "" -#: tbl_indexes.php:167 +#: tbl_indexes.php:166 msgid "Index name:" msgstr "" -#: tbl_indexes.php:173 +#: tbl_indexes.php:172 msgid "Index type:" msgstr "" -#: tbl_indexes.php:183 +#: tbl_indexes.php:182 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" -#: tbl_indexes.php:250 +#: tbl_indexes.php:249 #, possible-php-format msgid "Add to index  %s column(s)" msgstr "" -#: tbl_indexes.php:255 tbl_structure.php:588 tbl_structure.php:599 +#: tbl_indexes.php:254 tbl_structure.php:586 tbl_structure.php:597 msgid "Column count has to be larger than zero." msgstr "" -#: tbl_move_copy.php:45 +#: tbl_move_copy.php:44 msgid "Can't move table to same one!" msgstr "" -#: tbl_move_copy.php:47 +#: tbl_move_copy.php:46 msgid "Can't copy table to same one!" msgstr "" -#: tbl_move_copy.php:55 +#: tbl_move_copy.php:54 #, possible-php-format msgid "Table %s has been moved to %s." msgstr "" -#: tbl_move_copy.php:57 +#: tbl_move_copy.php:56 #, possible-php-format msgid "Table %s has been copied to %s." msgstr "" -#: tbl_move_copy.php:81 +#: tbl_move_copy.php:80 msgid "The table name is empty!" msgstr "" -#: tbl_operations.php:248 +#: tbl_operations.php:246 msgid "Alter table order by" msgstr "" -#: tbl_operations.php:257 +#: tbl_operations.php:255 msgid "(singly)" msgstr "" -#: tbl_operations.php:277 +#: tbl_operations.php:275 msgid "Move table to (database.table):" msgstr "" -#: tbl_operations.php:335 +#: tbl_operations.php:333 msgid "Table options" msgstr "" -#: tbl_operations.php:339 +#: tbl_operations.php:337 msgid "Rename table to" msgstr "" -#: tbl_operations.php:510 +#: tbl_operations.php:508 msgid "Copy table to (database.table):" msgstr "" -#: tbl_operations.php:557 +#: tbl_operations.php:555 msgid "Switch to copied table" msgstr "" -#: tbl_operations.php:569 +#: tbl_operations.php:567 msgid "Table maintenance" msgstr "" -#: tbl_operations.php:590 +#: tbl_operations.php:588 msgid "Defragment table" msgstr "" -#: tbl_operations.php:629 +#: tbl_operations.php:627 #, possible-php-format msgid "Table %s has been flushed" msgstr "" -#: tbl_operations.php:635 +#: tbl_operations.php:633 msgid "Flush the table (FLUSH)" msgstr "" -#: tbl_operations.php:650 +#: tbl_operations.php:648 msgid "Partition maintenance" msgstr "" -#: tbl_operations.php:658 +#: tbl_operations.php:656 #, possible-php-format msgid "Partition %s" msgstr "" -#: tbl_operations.php:661 +#: tbl_operations.php:659 msgid "Analyze" msgstr "" -#: tbl_operations.php:662 +#: tbl_operations.php:660 msgid "Check" msgstr "" -#: tbl_operations.php:663 +#: tbl_operations.php:661 msgid "Optimize" msgstr "" -#: tbl_operations.php:664 +#: tbl_operations.php:662 msgid "Rebuild" msgstr "" -#: tbl_operations.php:665 +#: tbl_operations.php:663 msgid "Repair" msgstr "" -#: tbl_operations.php:677 +#: tbl_operations.php:675 msgid "Remove partitioning" msgstr "" -#: tbl_operations.php:703 +#: tbl_operations.php:701 msgid "Check referential integrity:" msgstr "" -#: tbl_printview.php:73 +#: tbl_printview.php:72 msgid "Show tables" msgstr "" -#: tbl_printview.php:308 tbl_structure.php:655 +#: tbl_printview.php:307 tbl_structure.php:653 msgid "Space usage" msgstr "" -#: tbl_printview.php:312 tbl_structure.php:659 +#: tbl_printview.php:311 tbl_structure.php:657 msgid "Usage" msgstr "" -#: tbl_printview.php:339 tbl_structure.php:686 +#: tbl_printview.php:338 tbl_structure.php:684 msgid "Effective" msgstr "" -#: tbl_printview.php:364 tbl_structure.php:724 +#: tbl_printview.php:363 tbl_structure.php:722 msgid "Row Statistics" msgstr "" -#: tbl_printview.php:367 tbl_structure.php:727 +#: tbl_printview.php:366 tbl_structure.php:725 msgid "Statements" msgstr "" -#: tbl_printview.php:378 tbl_structure.php:739 +#: tbl_printview.php:377 tbl_structure.php:737 msgid "static" msgstr "" -#: tbl_printview.php:380 tbl_structure.php:741 +#: tbl_printview.php:379 tbl_structure.php:739 msgid "dynamic" msgstr "" -#: tbl_printview.php:402 tbl_structure.php:784 +#: tbl_printview.php:401 tbl_structure.php:782 msgid "Row length" msgstr "" -#: tbl_printview.php:412 tbl_structure.php:792 +#: tbl_printview.php:411 tbl_structure.php:790 msgid " Row size " msgstr "" -#: tbl_relation.php:278 +#: tbl_relation.php:276 #, possible-php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" -#: tbl_relation.php:404 +#: tbl_relation.php:402 msgid "Internal relation" msgstr "" -#: tbl_relation.php:406 +#: tbl_relation.php:404 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: tbl_relation.php:412 +#: tbl_relation.php:410 msgid "Foreign key constraint" msgstr "" @@ -7506,221 +7561,221 @@ msgstr "" msgid "No rows selected" msgstr "" -#: tbl_select.php:130 +#: tbl_select.php:129 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "" -#: tbl_select.php:136 +#: tbl_select.php:135 msgid "Operator" msgstr "" -#: tbl_select.php:267 +#: tbl_select.php:266 msgid "Select columns (at least one):" msgstr "" -#: tbl_select.php:285 +#: tbl_select.php:284 msgid "Add search conditions (body of the \"where\" clause):" msgstr "" -#: tbl_select.php:292 +#: tbl_select.php:291 msgid "Number of rows per page" msgstr "" -#: tbl_select.php:298 +#: tbl_select.php:297 msgid "Display order:" msgstr "" -#: tbl_structure.php:160 +#: tbl_structure.php:159 msgid "Browse distinct values" msgstr "" -#: tbl_structure.php:360 +#: tbl_structure.php:358 msgctxt "None for default" msgid "None" msgstr "" -#: tbl_structure.php:373 +#: tbl_structure.php:371 #, possible-php-format msgid "Column %s has been dropped" msgstr "" -#: tbl_structure.php:384 +#: tbl_structure.php:382 #, possible-php-format msgid "A primary key has been added on %s" msgstr "" -#: tbl_structure.php:399 tbl_structure.php:413 tbl_structure.php:427 +#: tbl_structure.php:397 tbl_structure.php:411 tbl_structure.php:425 #, possible-php-format msgid "An index has been added on %s" msgstr "" -#: tbl_structure.php:505 tbl_structure.php:507 +#: tbl_structure.php:503 tbl_structure.php:505 msgid "Relation view" msgstr "" -#: tbl_structure.php:514 tbl_structure.php:516 +#: tbl_structure.php:512 tbl_structure.php:514 msgid "Propose table structure" msgstr "" -#: tbl_structure.php:539 +#: tbl_structure.php:537 msgid "Add column" msgstr "" -#: tbl_structure.php:553 +#: tbl_structure.php:551 msgid "At End of Table" msgstr "" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At Beginning of Table" msgstr "" -#: tbl_structure.php:555 +#: tbl_structure.php:553 #, possible-php-format msgid "After %s" msgstr "" -#: tbl_structure.php:593 +#: tbl_structure.php:591 #, possible-php-format msgid "Create an index on  %s columns" msgstr "" -#: tbl_structure.php:755 +#: tbl_structure.php:753 msgid "partitioned" msgstr "" -#: tbl_tracking.php:113 +#: tbl_tracking.php:109 #, possible-php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:186 +#: tbl_tracking.php:182 #, possible-php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "" -#: tbl_tracking.php:194 +#: tbl_tracking.php:190 #, possible-php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "" -#: tbl_tracking.php:202 +#: tbl_tracking.php:198 #, possible-php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "" -#: tbl_tracking.php:212 +#: tbl_tracking.php:208 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:219 +#: tbl_tracking.php:215 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:220 +#: tbl_tracking.php:216 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:229 +#: tbl_tracking.php:225 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:250 tbl_tracking.php:378 +#: tbl_tracking.php:245 tbl_tracking.php:373 msgid "Close" msgstr "" -#: tbl_tracking.php:261 +#: tbl_tracking.php:256 #, possible-php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:380 +#: tbl_tracking.php:375 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:396 tbl_tracking.php:503 +#: tbl_tracking.php:391 tbl_tracking.php:498 #, possible-php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "" -#: tbl_tracking.php:409 tbl_tracking.php:460 +#: tbl_tracking.php:404 tbl_tracking.php:455 msgid "Date" msgstr "" -#: tbl_tracking.php:410 tbl_tracking.php:461 +#: tbl_tracking.php:405 tbl_tracking.php:456 msgid "Username" msgstr "" -#: tbl_tracking.php:411 +#: tbl_tracking.php:406 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:462 +#: tbl_tracking.php:457 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:506 +#: tbl_tracking.php:501 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:507 +#: tbl_tracking.php:502 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:520 +#: tbl_tracking.php:515 #, possible-php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:560 +#: tbl_tracking.php:555 msgid "Show versions" msgstr "" -#: tbl_tracking.php:592 +#: tbl_tracking.php:587 msgid "Version" msgstr "" -#: tbl_tracking.php:639 +#: tbl_tracking.php:634 #, possible-php-format msgid "Deactivate tracking for %s.%s" msgstr "" -#: tbl_tracking.php:641 +#: tbl_tracking.php:636 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:652 +#: tbl_tracking.php:647 #, possible-php-format msgid "Activate tracking for %s.%s" msgstr "" -#: tbl_tracking.php:654 +#: tbl_tracking.php:649 msgid "Activate now" msgstr "" -#: tbl_tracking.php:667 +#: tbl_tracking.php:662 #, possible-php-format msgid "Create version %s of %s.%s" msgstr "" -#: tbl_tracking.php:671 +#: tbl_tracking.php:666 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:679 +#: tbl_tracking.php:674 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:687 +#: tbl_tracking.php:682 msgid "Create version" msgstr "" @@ -7765,6 +7820,6 @@ msgstr "" msgid "VIEW name" msgstr "" -#: view_operations.php:92 +#: view_operations.php:91 msgid "Rename view to" msgstr "" diff --git a/po/pl.po b/po/pl.po index 6afb5a86c..ae9e25901 100644 --- a/po/pl.po +++ b/po/pl.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-21 13:53+0200\n" +"POT-Creation-Date: 2010-07-26 17:18+0200\n" "PO-Revision-Date: 2010-07-22 02:29+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: polish \n" @@ -15,19 +15,19 @@ msgstr "" "|| n%100>=20) ? 1 : 2);\n" "X-Generator: Pootle 2.0.1\n" -#: browse_foreigners.php:37 browse_foreigners.php:58 -#: libraries/display_tbl.lib.php:416 server_privileges.php:1506 +#: browse_foreigners.php:36 browse_foreigners.php:57 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1510 msgid "Show all" msgstr "Pokaż wszystko" -#: browse_foreigners.php:81 libraries/common.lib.php:2313 -#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:393 -#: libraries/export/pdf.php:146 pdf_schema.php:282 pdf_schema.php:1122 -#: pdf_schema.php:1138 +#: browse_foreigners.php:80 libraries/common.lib.php:2318 +#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:392 +#: libraries/export/pdf.php:146 pdf_schema.php:281 pdf_schema.php:1121 +#: pdf_schema.php:1137 msgid "Page number:" msgstr "Numer strony:" -#: browse_foreigners.php:131 +#: browse_foreigners.php:130 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -37,139 +37,153 @@ msgstr "" "rodzic zostało zamknięte lub przeglądarka, uwzględniając ustawienia " "bezpieczeństwa, blokuje aktualizacje pomiędzy oknami" -#: browse_foreigners.php:149 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2829 -#: libraries/common.lib.php:2836 libraries/db_links.inc.php:74 -#: libraries/tbl_links.inc.php:62 +#: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 +#: db_structure.php:89 db_structure.php:91 db_structure.php:102 +#: db_structure.php:104 libraries/common.lib.php:2834 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Szukaj" -#: browse_foreigners.php:152 db_operations.php:384 db_operations.php:428 -#: db_operations.php:498 db_operations.php:608 db_search.php:344 -#: db_structure.php:566 js/messages.php:48 libraries/Config.class.php:1043 -#: libraries/Theme_Manager.class.php:310 +#: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 +#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 +#: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 -#: libraries/common.lib.php:1340 libraries/common.lib.php:2289 +#: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 -#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:275 -#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:531 -#: libraries/display_tbl.lib.php:613 libraries/replication_gui.lib.php:75 +#: libraries/display_export.lib.php:269 libraries/display_import.lib.php:275 +#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 +#: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 #: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:781 -#: main.php:127 navigation.php:231 pdf_pages.php:291 pdf_pages.php:327 -#: pdf_pages.php:529 pmd_pdf.php:115 server_binlog.php:128 -#: server_privileges.php:664 server_privileges.php:1616 -#: server_privileges.php:1963 server_privileges.php:2010 -#: server_privileges.php:2049 server_replication.php:234 -#: server_replication.php:317 server_replication.php:340 -#: server_synchronize.php:1208 tbl_change.php:328 tbl_change.php:1172 -#: tbl_change.php:1209 tbl_indexes.php:253 tbl_operations.php:264 -#: tbl_operations.php:301 tbl_operations.php:498 tbl_operations.php:560 -#: tbl_operations.php:680 tbl_select.php:324 tbl_structure.php:561 -#: tbl_structure.php:596 tbl_tracking.php:394 tbl_tracking.php:511 -#: view_create.php:181 view_operations.php:100 +#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 +#: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 +#: server_privileges.php:663 server_privileges.php:1620 +#: server_privileges.php:1967 server_privileges.php:2014 +#: server_privileges.php:2053 server_replication.php:233 +#: server_replication.php:316 server_replication.php:339 +#: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 +#: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 +#: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 +#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "Wykonaj" -#: browse_foreigners.php:167 browse_foreigners.php:171 -#: libraries/Index.class.php:441 tbl_tracking.php:319 +#: browse_foreigners.php:166 browse_foreigners.php:170 +#: libraries/Index.class.php:441 tbl_tracking.php:314 msgid "Keyname" msgstr "Nazwa klucza" -#: browse_foreigners.php:168 browse_foreigners.php:170 -#: server_collations.php:54 server_collations.php:66 server_engines.php:58 +#: browse_foreigners.php:167 browse_foreigners.php:169 +#: server_collations.php:54 server_collations.php:66 server_engines.php:57 #: server_status.php:738 msgid "Description" msgstr "Opis" -#: browse_foreigners.php:246 browse_foreigners.php:255 -#: browse_foreigners.php:267 browse_foreigners.php:275 +#: browse_foreigners.php:245 browse_foreigners.php:254 +#: browse_foreigners.php:266 browse_foreigners.php:274 msgid "Use this value" msgstr "Użyj tej wartości" -#: db_create.php:45 +#: bs_disp_as_mime_type.php:29 bs_play_media.php:35 +msgid "No blob streaming server configured!" +msgstr "" + +#: bs_disp_as_mime_type.php:35 +#, fuzzy +#| msgid "Failed to write file to disk." +msgid "Failed to fetch headers" +msgstr "Nie udało się zapisać pliku na dysk." + +#: bs_disp_as_mime_type.php:41 +msgid "Failed to open remote URL" +msgstr "" + +#: db_create.php:44 #, php-format msgid "Database %1$s has been created." msgstr "Baza danych %1$s została utworzona." -#: db_datadict.php:48 db_operations.php:377 +#: db_datadict.php:48 db_operations.php:313 msgid "Database comment: " msgstr "Komentarz bazy danych: " -#: db_datadict.php:164 libraries/tbl_properties.inc.php:723 -#: pdf_schema.php:1235 tbl_operations.php:346 tbl_printview.php:128 +#: db_datadict.php:164 libraries/tbl_properties.inc.php:722 +#: pdf_schema.php:1234 tbl_operations.php:344 tbl_printview.php:127 msgid "Table comments" msgstr "Komentarze tabeli" -#: db_datadict.php:173 db_qbe.php:173 libraries/Index.class.php:445 +#: db_datadict.php:173 db_qbe.php:170 libraries/Index.class.php:445 #: libraries/export/htmlword.php:243 libraries/export/latex.php:364 #: libraries/export/odt.php:293 libraries/export/texytext.php:233 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:274 -#: pdf_schema.php:1261 pdf_schema.php:1282 tbl_change.php:306 -#: tbl_indexes.php:188 tbl_printview.php:140 tbl_relation.php:401 -#: tbl_select.php:133 tbl_structure.php:176 tbl_tracking.php:272 -#: tbl_tracking.php:323 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 +#: pdf_schema.php:1260 pdf_schema.php:1281 tbl_change.php:301 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:132 tbl_structure.php:175 tbl_tracking.php:267 +#: tbl_tracking.php:318 #, fuzzy #| msgid "Column names" msgid "Column" msgstr "Nazwy kolumn" -#: db_datadict.php:174 db_printview.php:105 libraries/Index.class.php:442 +#: db_datadict.php:174 db_printview.php:104 libraries/Index.class.php:442 #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 #: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:244 #: libraries/export/latex.php:364 libraries/export/odt.php:296 #: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:99 -#: pdf_schema.php:1262 pdf_schema.php:1283 server_privileges.php:2062 -#: tbl_change.php:285 tbl_change.php:312 tbl_printview.php:141 -#: tbl_printview.php:311 tbl_select.php:134 tbl_structure.php:177 -#: tbl_structure.php:658 tbl_tracking.php:273 tbl_tracking.php:320 +#: pdf_schema.php:1261 pdf_schema.php:1282 server_privileges.php:2066 +#: tbl_change.php:280 tbl_change.php:307 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:133 tbl_structure.php:176 +#: tbl_structure.php:656 tbl_tracking.php:268 tbl_tracking.php:315 msgid "Type" msgstr "Typ" #: db_datadict.php:176 libraries/Index.class.php:448 #: libraries/export/htmlword.php:245 libraries/export/latex.php:364 #: libraries/export/odt.php:299 libraries/export/texytext.php:235 -#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1264 -#: pdf_schema.php:1285 tbl_change.php:321 tbl_printview.php:143 -#: tbl_structure.php:180 tbl_tracking.php:275 tbl_tracking.php:326 +#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1263 +#: pdf_schema.php:1284 tbl_change.php:316 tbl_printview.php:142 +#: tbl_structure.php:179 tbl_tracking.php:270 tbl_tracking.php:321 msgid "Null" msgstr "Null" -#: db_datadict.php:177 db_structure.php:500 libraries/export/htmlword.php:246 +#: db_datadict.php:177 db_structure.php:486 libraries/export/htmlword.php:246 #: libraries/export/latex.php:364 libraries/export/odt.php:302 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:105 -#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 -#: tbl_structure.php:181 tbl_tracking.php:276 +#: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:143 +#: tbl_structure.php:180 tbl_tracking.php:271 msgid "Default" msgstr "Domyślnie" #: db_datadict.php:181 libraries/export/htmlword.php:248 #: libraries/export/latex.php:366 libraries/export/odt.php:306 -#: libraries/export/texytext.php:238 pdf_schema.php:1267 pdf_schema.php:1288 -#: tbl_printview.php:148 +#: libraries/export/texytext.php:238 pdf_schema.php:1266 pdf_schema.php:1287 +#: tbl_printview.php:147 msgid "Links to" msgstr "Łącze" -#: db_datadict.php:183 db_printview.php:111 libraries/export/htmlword.php:251 +#: db_datadict.php:183 db_printview.php:110 libraries/export/htmlword.php:251 #: libraries/export/latex.php:49 libraries/export/latex.php:369 #: libraries/export/odt.php:37 libraries/export/odt.php:311 #: libraries/export/sql.php:29 libraries/export/texytext.php:241 -#: libraries/tbl_properties.inc.php:129 pdf_schema.php:1278 -#: pdf_schema.php:1289 tbl_printview.php:150 +#: libraries/tbl_properties.inc.php:128 pdf_schema.php:1277 +#: pdf_schema.php:1288 tbl_printview.php:149 msgid "Comments" msgstr "Komentarze" #: db_datadict.php:266 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/export/htmlword.php:321 #: libraries/export/latex.php:434 libraries/export/odt.php:367 -#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:262 -#: pdf_schema.php:1343 server_privileges.php:1560 server_privileges.php:1571 -#: server_privileges.php:1881 server_privileges.php:1886 -#: server_privileges.php:2179 sql.php:131 sql.php:193 tbl_printview.php:227 -#: tbl_structure.php:349 tbl_tracking.php:336 tbl_tracking.php:341 +#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:261 +#: pdf_schema.php:1342 server_privileges.php:1564 server_privileges.php:1575 +#: server_privileges.php:1885 server_privileges.php:1890 +#: server_privileges.php:2183 sql.php:130 sql.php:192 tbl_printview.php:226 +#: tbl_structure.php:347 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "Nie" @@ -180,17 +194,17 @@ msgstr "Nie" #: libraries/mult_submits.inc.php:49 libraries/mult_submits.inc.php:54 #: libraries/mult_submits.inc.php:59 libraries/mult_submits.inc.php:91 #: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:105 -#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:261 -#: libraries/mult_submits.inc.php:272 pdf_schema.php:1343 -#: server_databases.php:63 server_privileges.php:1557 -#: server_privileges.php:1571 server_privileges.php:1881 -#: server_privileges.php:1884 server_privileges.php:2179 sql.php:192 -#: tbl_printview.php:227 tbl_structure.php:39 tbl_structure.php:349 -#: tbl_tracking.php:334 tbl_tracking.php:339 +#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:260 +#: libraries/mult_submits.inc.php:271 pdf_schema.php:1342 +#: server_databases.php:61 server_privileges.php:1561 +#: server_privileges.php:1575 server_privileges.php:1885 +#: server_privileges.php:1888 server_privileges.php:2183 sql.php:191 +#: tbl_printview.php:226 tbl_structure.php:38 tbl_structure.php:347 +#: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" msgstr "Tak" -#: db_datadict.php:321 db_printview.php:265 tbl_printview.php:496 +#: db_datadict.php:321 db_printview.php:264 tbl_printview.php:495 msgid "Print" msgstr "Drukuj" @@ -198,194 +212,154 @@ msgstr "Drukuj" msgid "View dump (schema) of database" msgstr "Zrzut bazy danych" -#: db_export.php:32 db_printview.php:95 db_qbe.php:101 db_structure.php:50 -#: db_tracking.php:34 export.php:352 navigation.php:326 +#: db_export.php:32 db_printview.php:94 db_qbe.php:98 db_structure.php:49 +#: db_tracking.php:30 export.php:350 navigation.php:325 msgid "No tables found in database." msgstr "Nie znaleziono tabeli w bazie danych." -#: db_export.php:42 db_search.php:326 server_export.php:26 +#: db_export.php:42 db_search.php:326 server_export.php:24 msgid "Select All" msgstr "Zaznacz wszystkie" -#: db_export.php:44 db_search.php:329 server_export.php:28 +#: db_export.php:44 db_search.php:329 server_export.php:26 msgid "Unselect All" msgstr "Odznacz wszystkie" -#: db_operations.php:37 tbl_create.php:49 +#: db_operations.php:33 tbl_create.php:47 msgid "The database name is empty!" msgstr "Nazwa bazy danych jest pusta!" -#: db_operations.php:235 +#: db_operations.php:231 #, php-format msgid "Database %s has been renamed to %s" msgstr "Baza danych %s ma nazwę zmienioną na %s" -#: db_operations.php:239 +#: db_operations.php:235 #, php-format msgid "Database %s has been copied to %s" msgstr "Baza danych %s została skopiowana do %s" -#: db_operations.php:411 +#: db_operations.php:347 msgid "Rename database to" msgstr "Zmień nazwę bazy danych na" -#: db_operations.php:416 server_processlist.php:56 +#: db_operations.php:352 server_processlist.php:56 msgid "Command" msgstr "Polecenie" -#: db_operations.php:428 tbl_change.php:1141 +#: db_operations.php:364 tbl_change.php:1039 msgid "and then" msgstr "a następnie" -#: db_operations.php:454 +#: db_operations.php:390 msgid "Copy database to" msgstr "Kopiuj bazę danych do" -#: db_operations.php:461 tbl_operations.php:527 tbl_tracking.php:387 +#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Tylko struktura" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:389 +#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Struktura i dane" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:388 +#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Tylko dane" -#: db_operations.php:471 +#: db_operations.php:407 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE przed skopiowaniem" -#: db_operations.php:474 libraries/export/sql.php:51 +#: db_operations.php:410 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 -#: libraries/export/sql.php:81 tbl_operations.php:535 +#: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "Dodaj %s" -#: db_operations.php:478 libraries/export/sql.php:77 tbl_operations.php:298 -#: tbl_operations.php:537 +#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Dodaj wartości AUTO_INCREMENT" -#: db_operations.php:482 tbl_operations.php:544 +#: db_operations.php:418 tbl_operations.php:542 msgid "Add constraints" msgstr "Dodaj ograniczenia" -#: db_operations.php:495 +#: db_operations.php:431 msgid "Switch to copied database" msgstr "Przełącz do skopiowanej bazy danych" -#: db_operations.php:536 -msgid "BLOB Repository" -msgstr "Repozytorium BLOBów" - -#: db_operations.php:539 db_tracking.php:75 libraries/common.lib.php:1357 -#: libraries/server_links.inc.php:48 server_processlist.php:58 -#: tbl_tracking.php:595 test/theme.php:100 -msgid "Status" -msgstr "Status" - -#: db_operations.php:547 -#, fuzzy -#| msgid "Enabled" -msgctxt "BLOB repository" -msgid "Enabled" -msgstr "włączone" - -#: db_operations.php:551 -msgid "Disable" -msgstr "Wyłącz" - -#: db_operations.php:561 -msgid "Damaged" -msgstr "Uszkodzone" - -#: db_operations.php:565 -#, fuzzy -#| msgid "Repair" -msgctxt "BLOB repository" -msgid "Repair" -msgstr "Napraw" - -#: db_operations.php:573 -#, fuzzy -#| msgid "Disabled" -msgctxt "BLOB repository" -msgid "Disabled" -msgstr "wyłączone" - -#: db_operations.php:577 -msgid "Enable" -msgstr "Włącz" - -#: db_operations.php:601 libraries/Index.class.php:447 +#: db_operations.php:451 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 -#: server_collations.php:53 server_collations.php:65 server_databases.php:110 -#: tbl_operations.php:362 tbl_select.php:135 tbl_structure.php:178 -#: tbl_structure.php:766 tbl_tracking.php:274 tbl_tracking.php:325 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 +#: server_collations.php:53 server_collations.php:65 server_databases.php:108 +#: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:177 +#: tbl_structure.php:764 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "Metoda porównywania napisów" -#: db_operations.php:614 main.php:315 pdf_schema.php:33 -#, php-format +#: db_operations.php:464 pdf_schema.php:32 +#, fuzzy, php-format +#| msgid "" +#| "The additional features for working with linked tables have been " +#| "deactivated. To find out why click %shere%s." msgid "" -"The additional features for working with linked tables have been " -"deactivated. To find out why click %shere%s." +"The phpMyAdmin configuration storage has been deactivated. To find out why " +"click %shere%s." msgstr "" "Dodatkowe możliwości pracy z połączonymi tabelami zostały wyłączone. Aby " "dowiedzieć się, dlaczego - kliknij %stutaj%s." -#: db_operations.php:647 +#: db_operations.php:497 msgid "Edit PDF Pages" msgstr "Edytuj strony PDF" -#: db_printview.php:103 db_tracking.php:71 db_tracking.php:156 +#: db_printview.php:102 db_tracking.php:67 db_tracking.php:152 #: libraries/db_structure.lib.php:37 libraries/export/xml.php:327 -#: libraries/header.inc.php:125 pdf_pages.php:423 server_privileges.php:1657 -#: server_privileges.php:1713 server_privileges.php:1977 -#: server_synchronize.php:422 server_synchronize.php:865 tbl_tracking.php:591 +#: libraries/header.inc.php:125 pdf_pages.php:422 server_privileges.php:1661 +#: server_privileges.php:1717 server_privileges.php:1981 +#: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "Tabela" -#: db_printview.php:104 libraries/db_structure.lib.php:47 +#: db_printview.php:103 libraries/db_structure.lib.php:47 #: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 -#: navigation.php:629 navigation.php:651 server_databases.php:121 -#: tbl_printview.php:392 tbl_structure.php:364 tbl_structure.php:776 +#: navigation.php:628 navigation.php:650 server_databases.php:119 +#: tbl_printview.php:391 tbl_structure.php:362 tbl_structure.php:774 msgid "Rows" msgstr "Rekordów" -#: db_printview.php:108 libraries/db_structure.lib.php:58 tbl_indexes.php:189 +#: db_printview.php:107 libraries/db_structure.lib.php:58 tbl_indexes.php:188 msgid "Size" msgstr "Rozmiar" -#: db_printview.php:161 db_structure.php:456 libraries/export/sql.php:556 +#: db_printview.php:160 db_structure.php:442 libraries/export/sql.php:556 #: libraries/export/sql.php:896 msgid "in use" msgstr "w użyciu" -#: db_printview.php:186 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:511 pdf_schema.php:1240 tbl_printview.php:432 -#: tbl_structure.php:808 +#: db_printview.php:185 libraries/db_info.inc.php:86 +#: libraries/export/sql.php:511 pdf_schema.php:1239 tbl_printview.php:431 +#: tbl_structure.php:806 msgid "Creation" msgstr "Utworzenie" -#: db_printview.php:195 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:516 pdf_schema.php:1245 tbl_printview.php:442 -#: tbl_structure.php:816 +#: db_printview.php:194 libraries/db_info.inc.php:91 +#: libraries/export/sql.php:516 pdf_schema.php:1244 tbl_printview.php:441 +#: tbl_structure.php:814 msgid "Last update" msgstr "Ostatnia aktualizacja" -#: db_printview.php:204 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:521 pdf_schema.php:1250 tbl_printview.php:452 -#: tbl_structure.php:824 +#: db_printview.php:203 libraries/db_info.inc.php:96 +#: libraries/export/sql.php:521 pdf_schema.php:1249 tbl_printview.php:451 +#: tbl_structure.php:822 msgid "Last check" msgstr "Ostatnie sprawdzenie" -#: db_printview.php:221 db_structure.php:479 +#: db_printview.php:220 db_structure.php:465 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -393,94 +367,94 @@ msgid_plural "%s tables" msgstr[0] "%s tabel(a)" msgstr[1] "%s tabel(a)" -#: db_qbe.php:28 import.php:453 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1980 libraries/sql_query_form.lib.php:138 -#: tbl_operations.php:212 tbl_relation.php:291 tbl_row_action.php:130 -#: view_operations.php:61 +#: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 +#: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "Zapytanie SQL zostało wykonane pomyślnie" -#: db_qbe.php:41 +#: db_qbe.php:38 msgid "You have to choose at least one column to display" msgstr "Należy wybrać przynajmniej jedną kolumnę do wyświetlenia" -#: db_qbe.php:199 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:865 +#: db_qbe.php:196 libraries/db_structure.lib.php:95 +#: libraries/display_tbl.lib.php:864 msgid "Sort" msgstr "Sortuj" -#: db_qbe.php:208 db_qbe.php:242 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:522 libraries/display_tbl.lib.php:827 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:259 -#: tbl_select.php:311 +#: db_qbe.php:205 db_qbe.php:239 libraries/db_structure.lib.php:102 +#: libraries/display_tbl.lib.php:521 libraries/display_tbl.lib.php:826 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:257 +#: tbl_select.php:310 msgid "Ascending" msgstr "Rosnąco" -#: db_qbe.php:209 db_qbe.php:250 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:527 libraries/display_tbl.lib.php:824 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:260 -#: tbl_select.php:312 +#: db_qbe.php:206 db_qbe.php:247 libraries/db_structure.lib.php:110 +#: libraries/display_tbl.lib.php:526 libraries/display_tbl.lib.php:823 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:258 +#: tbl_select.php:311 msgid "Descending" msgstr "Malejąco" -#: db_qbe.php:263 db_tracking.php:77 libraries/display_tbl.lib.php:307 -#: tbl_change.php:275 tbl_tracking.php:596 +#: db_qbe.php:260 db_tracking.php:73 libraries/display_tbl.lib.php:306 +#: tbl_change.php:270 tbl_tracking.php:591 msgid "Show" msgstr "Pokaż" -#: db_qbe.php:299 +#: db_qbe.php:296 msgid "Criteria" msgstr "Kryteria" -#: db_qbe.php:352 db_qbe.php:434 db_qbe.php:526 db_qbe.php:557 +#: db_qbe.php:349 db_qbe.php:431 db_qbe.php:523 db_qbe.php:554 msgid "Ins" msgstr "Dodaj" -#: db_qbe.php:356 db_qbe.php:438 db_qbe.php:523 db_qbe.php:554 +#: db_qbe.php:353 db_qbe.php:435 db_qbe.php:520 db_qbe.php:551 msgid "And" msgstr "oraz" -#: db_qbe.php:365 db_qbe.php:446 db_qbe.php:528 db_qbe.php:559 +#: db_qbe.php:362 db_qbe.php:443 db_qbe.php:525 db_qbe.php:556 msgid "Del" msgstr "Usuń" -#: db_qbe.php:369 db_qbe.php:450 db_qbe.php:521 db_qbe.php:552 -#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:778 -#: server_privileges.php:297 tbl_change.php:1027 tbl_indexes.php:249 -#: tbl_select.php:285 +#: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 +#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:777 +#: server_privileges.php:296 tbl_change.php:925 tbl_indexes.php:248 +#: tbl_select.php:284 msgid "Or" msgstr "lub" -#: db_qbe.php:506 +#: db_qbe.php:503 msgid "Modify" msgstr "Modyfikacja" -#: db_qbe.php:583 +#: db_qbe.php:580 #, fuzzy #| msgid "Add/Delete Criteria Row" msgid "Add/Delete criteria rows" msgstr "Dodaj/usuń wiersz kryteriów" -#: db_qbe.php:595 +#: db_qbe.php:592 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Add/Delete columns" msgstr "Dodaj/usuń pola" -#: db_qbe.php:608 db_qbe.php:633 +#: db_qbe.php:605 db_qbe.php:630 msgid "Update Query" msgstr "Zmień zapytanie" -#: db_qbe.php:616 +#: db_qbe.php:613 msgid "Use Tables" msgstr "Użyj tabel" -#: db_qbe.php:639 +#: db_qbe.php:636 #, php-format msgid "SQL query on database %s:" msgstr "Zapytanie SQL dla bazy danych %s:" -#: db_qbe.php:933 libraries/common.lib.php:1222 +#: db_qbe.php:930 libraries/common.lib.php:1215 msgid "Submit Query" msgstr "Wykonaj zapytania" @@ -520,17 +494,17 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s trafień wewnątrz tabeli %s" msgstr[1] "%s trafień wewnątrz tabeli %s" -#: db_search.php:249 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2831 -#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:49 -#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:466 +#: db_search.php:249 db_structure.php:75 db_structure.php:76 +#: db_structure.php:88 db_structure.php:90 db_structure.php:101 +#: db_structure.php:103 libraries/common.lib.php:2836 +#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 +#: tbl_structure.php:35 tbl_structure.php:47 tbl_structure.php:464 msgid "Browse" msgstr "Przeglądaj" -#: db_search.php:254 libraries/display_tbl.lib.php:1164 -#: libraries/display_tbl.lib.php:2055 libraries/sql_query_form.lib.php:453 -#: pdf_pages.php:285 pdf_pages.php:424 pdf_pages.php:460 pdf_pages.php:488 +#: db_search.php:254 libraries/display_tbl.lib.php:1163 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 msgid "Delete" @@ -570,66 +544,66 @@ msgstr "Wewnątrz tabel(i):" msgid "Inside column:" msgstr "Wewnątrz pola:" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2830 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:75 +#: db_structure.php:79 db_structure.php:80 db_structure.php:92 +#: db_structure.php:93 db_structure.php:105 db_structure.php:106 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 +#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Dodaj" -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2827 libraries/common.lib.php:2834 -#: libraries/db_links.inc.php:62 libraries/export/htmlword.php:22 +#: db_structure.php:81 db_structure.php:94 db_structure.php:107 +#: libraries/common.lib.php:2832 libraries/common.lib.php:2839 +#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 -#: libraries/tbl_links.inc.php:55 pmd_general.php:133 -#: server_privileges.php:593 server_replication.php:314 tbl_tracking.php:268 +#: libraries/tbl_links.inc.php:54 pmd_general.php:133 +#: server_privileges.php:592 server_replication.php:313 tbl_tracking.php:263 msgid "Structure" msgstr "Struktura" -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:544 db_structure.php:545 db_tracking.php:90 -#: libraries/Index.class.php:482 libraries/common.lib.php:1659 -#: libraries/db_links.inc.php:99 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:126 -#: server_databases.php:351 tbl_structure.php:26 tbl_structure.php:150 -#: tbl_structure.php:151 tbl_structure.php:470 +#: db_structure.php:82 db_structure.php:83 db_structure.php:95 +#: db_structure.php:96 db_structure.php:108 db_structure.php:109 +#: db_structure.php:530 db_structure.php:531 db_tracking.php:86 +#: libraries/Index.class.php:482 libraries/common.lib.php:1663 +#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 +#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 +#: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" msgstr "Usuń" -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:542 db_structure.php:543 libraries/common.lib.php:1658 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:104 +#: db_structure.php:84 db_structure.php:85 db_structure.php:97 +#: db_structure.php:98 db_structure.php:110 db_structure.php:111 +#: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 +#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 msgid "Empty" msgstr "Wyczyść" -#: db_structure.php:315 libraries/tbl_links.inc.php:99 +#: db_structure.php:301 libraries/tbl_links.inc.php:98 #, php-format msgid "Table %s has been emptied" msgstr "Tabela %s została opróżniona" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "View %s has been dropped" msgstr "Perspektywa %s została usunięta" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "Table %s has been dropped" msgstr "Tabela %s została usunięta" -#: db_structure.php:332 +#: db_structure.php:318 msgid "Tracking is active." msgstr "" -#: db_structure.php:334 +#: db_structure.php:320 msgid "Tracking is not active." msgstr "" -#: db_structure.php:419 libraries/display_tbl.lib.php:1943 +#: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -638,167 +612,173 @@ msgstr "" "Ta perspektywa ma przynajmniej tyle wierszy. Więcej informacji w " "%sdocumentation%s." -#: db_structure.php:433 db_structure.php:447 libraries/header.inc.php:125 -#: libraries/tbl_info.inc.php:65 tbl_structure.php:184 test/theme.php:73 +#: db_structure.php:419 db_structure.php:433 libraries/header.inc.php:125 +#: libraries/tbl_info.inc.php:60 tbl_structure.php:183 test/theme.php:73 msgid "View" msgstr "Perspektywa" -#: db_structure.php:484 libraries/db_structure.lib.php:40 -#: libraries/server_links.inc.php:69 server_replication.php:32 -#: server_replication.php:163 server_status.php:368 +#: db_structure.php:470 libraries/db_structure.lib.php:40 +#: libraries/server_links.inc.php:69 server_replication.php:31 +#: server_replication.php:162 server_status.php:368 msgid "Replication" msgstr "Replikacja" -#: db_structure.php:488 +#: db_structure.php:474 msgid "Sum" msgstr "Suma" -#: db_structure.php:495 libraries/StorageEngine.class.php:349 +#: db_structure.php:481 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s to domyślny mechanizm składowania tego serwera MySQL." -#: db_structure.php:523 db_structure.php:540 db_structure.php:541 -#: libraries/display_tbl.lib.php:2080 libraries/display_tbl.lib.php:2085 -#: libraries/mult_submits.inc.php:15 server_databases.php:345 -#: server_databases.php:350 server_privileges.php:1588 tbl_structure.php:454 -#: tbl_structure.php:463 +#: db_structure.php:509 db_structure.php:526 db_structure.php:527 +#: libraries/display_tbl.lib.php:2039 libraries/display_tbl.lib.php:2044 +#: libraries/mult_submits.inc.php:15 server_databases.php:343 +#: server_databases.php:348 server_privileges.php:1592 tbl_structure.php:452 +#: tbl_structure.php:461 msgid "With selected:" msgstr "Zaznaczone:" -#: db_structure.php:526 libraries/display_tbl.lib.php:2075 -#: server_databases.php:347 server_privileges.php:569 -#: server_privileges.php:1591 tbl_structure.php:457 +#: db_structure.php:512 libraries/display_tbl.lib.php:2034 +#: server_databases.php:345 server_privileges.php:568 +#: server_privileges.php:1595 tbl_structure.php:455 msgid "Check All" msgstr "Zaznacz wszystkie" -#: db_structure.php:530 libraries/display_tbl.lib.php:2076 -#: libraries/replication_gui.lib.php:35 server_databases.php:349 -#: server_privileges.php:572 server_privileges.php:1595 tbl_structure.php:461 +#: db_structure.php:516 libraries/display_tbl.lib.php:2035 +#: libraries/replication_gui.lib.php:35 server_databases.php:347 +#: server_privileges.php:571 server_privileges.php:1599 tbl_structure.php:459 msgid "Uncheck All" msgstr "Odznacz wszystkie" -#: db_structure.php:535 +#: db_structure.php:521 msgid "Check tables having overhead" msgstr "Zaznacz nieoptymalne" -#: db_structure.php:546 db_structure.php:547 db_structure.php:598 -#: libraries/display_tbl.lib.php:2179 libraries/mult_submits.inc.php:27 -#: tbl_structure.php:491 tbl_structure.php:493 +#: db_structure.php:532 db_structure.php:533 db_structure.php:584 +#: libraries/display_tbl.lib.php:2138 libraries/mult_submits.inc.php:27 +#: tbl_structure.php:489 tbl_structure.php:491 msgid "Print view" msgstr "Widok do druku" -#: db_structure.php:548 db_structure.php:549 libraries/mult_submits.inc.php:41 -#: tbl_operations.php:580 +#: db_structure.php:534 db_structure.php:535 libraries/mult_submits.inc.php:41 +#: tbl_operations.php:578 msgid "Check table" msgstr "Sprawdź tabelę" -#: db_structure.php:550 db_structure.php:551 libraries/mult_submits.inc.php:46 -#: tbl_operations.php:620 tbl_structure.php:708 tbl_structure.php:710 +#: db_structure.php:536 db_structure.php:537 libraries/mult_submits.inc.php:46 +#: tbl_operations.php:618 tbl_structure.php:706 tbl_structure.php:708 msgid "Optimize table" msgstr "Optymalizuj tabelę" -#: db_structure.php:552 db_structure.php:553 libraries/mult_submits.inc.php:51 -#: tbl_operations.php:610 +#: db_structure.php:538 db_structure.php:539 libraries/mult_submits.inc.php:51 +#: tbl_operations.php:608 msgid "Repair table" msgstr "Napraw tabelę" -#: db_structure.php:554 db_structure.php:555 libraries/mult_submits.inc.php:56 -#: tbl_operations.php:600 +#: db_structure.php:540 db_structure.php:541 libraries/mult_submits.inc.php:56 +#: tbl_operations.php:598 msgid "Analyze table" msgstr "Analizuj tabelę" -#: db_structure.php:556 db_structure.php:557 libraries/db_links.inc.php:70 -#: libraries/display_export.lib.php:82 libraries/display_tbl.lib.php:2093 -#: libraries/display_tbl.lib.php:2224 libraries/mult_submits.inc.php:61 -#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:81 -#: pmd_pdf.php:83 pmd_pdf.php:108 server_privileges.php:1372 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 +#: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 +#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 +#: pmd_pdf.php:81 pmd_pdf.php:106 server_privileges.php:1376 #: setup/frames/menu.inc.php:22 tbl_row_action.php:58 msgid "Export" msgstr "Eksport" -#: db_structure.php:605 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:591 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "Słownik danych" -#: db_tracking.php:65 +#: db_tracking.php:61 #, fuzzy msgid "Tracked tables" msgstr "Pomiń zablokowane tabele" -#: db_tracking.php:70 libraries/export/htmlword.php:85 +#: db_tracking.php:66 libraries/export/htmlword.php:85 #: libraries/export/latex.php:152 libraries/export/odt.php:112 #: libraries/export/sql.php:339 libraries/export/texytext.php:84 #: libraries/export/xml.php:254 libraries/header.inc.php:105 -#: libraries/header_printview.inc.php:57 server_databases.php:168 -#: server_privileges.php:1652 server_privileges.php:1713 -#: server_privileges.php:1971 server_processlist.php:55 -#: server_synchronize.php:1178 server_synchronize.php:1182 -#: tbl_tracking.php:590 test/theme.php:64 +#: libraries/header_printview.inc.php:57 server_databases.php:166 +#: server_privileges.php:1656 server_privileges.php:1717 +#: server_privileges.php:1975 server_processlist.php:55 +#: server_synchronize.php:1177 server_synchronize.php:1181 +#: tbl_tracking.php:585 test/theme.php:64 msgid "Database" msgstr "Baza danych" -#: db_tracking.php:72 +#: db_tracking.php:68 #, fuzzy msgid "Last version" msgstr "Utwórz związek" -#: db_tracking.php:73 tbl_tracking.php:593 +#: db_tracking.php:69 tbl_tracking.php:588 #, fuzzy msgid "Created" msgstr "Utwórz" -#: db_tracking.php:74 tbl_tracking.php:594 +#: db_tracking.php:70 tbl_tracking.php:589 msgid "Updated" msgstr "" -#: db_tracking.php:76 libraries/Index.class.php:439 -#: libraries/db_structure.lib.php:44 server_databases.php:202 -#: server_privileges.php:1534 server_privileges.php:1717 -#: server_privileges.php:2065 tbl_structure.php:186 +#: db_tracking.php:71 libraries/common.lib.php:1361 +#: libraries/server_links.inc.php:48 server_processlist.php:58 +#: tbl_tracking.php:590 test/theme.php:100 +msgid "Status" +msgstr "Status" + +#: db_tracking.php:72 libraries/Index.class.php:439 +#: libraries/db_structure.lib.php:44 server_databases.php:200 +#: server_privileges.php:1538 server_privileges.php:1721 +#: server_privileges.php:2069 tbl_structure.php:185 msgid "Action" msgstr "Działanie" -#: db_tracking.php:87 db_tracking.php:119 +#: db_tracking.php:83 db_tracking.php:115 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:105 tbl_tracking.php:547 tbl_tracking.php:605 -#: tbl_tracking.php:612 +#: db_tracking.php:101 tbl_tracking.php:542 tbl_tracking.php:600 +#: tbl_tracking.php:607 msgid "active" msgstr "" -#: db_tracking.php:107 tbl_tracking.php:549 tbl_tracking.php:607 -#: tbl_tracking.php:609 +#: db_tracking.php:103 tbl_tracking.php:544 tbl_tracking.php:602 +#: tbl_tracking.php:604 msgid "not active" msgstr "" -#: db_tracking.php:120 +#: db_tracking.php:116 #, fuzzy msgid "Versions" msgstr "Perski" -#: db_tracking.php:121 tbl_tracking.php:378 tbl_tracking.php:623 +#: db_tracking.php:117 tbl_tracking.php:373 tbl_tracking.php:618 msgid "Tracking report" msgstr "" -#: db_tracking.php:122 tbl_tracking.php:250 tbl_tracking.php:623 +#: db_tracking.php:118 tbl_tracking.php:245 tbl_tracking.php:618 #, fuzzy msgid "Structure snapshot" msgstr "Tylko struktura" -#: db_tracking.php:151 +#: db_tracking.php:147 #, fuzzy msgid "Untracked tables" msgstr "Pomiń zablokowane tabele" -#: db_tracking.php:171 db_tracking.php:173 tbl_structure.php:527 -#: tbl_structure.php:529 +#: db_tracking.php:167 db_tracking.php:169 tbl_structure.php:525 +#: tbl_structure.php:527 #, fuzzy msgid "Track table" msgstr "Sprawdź tabelę" -#: db_tracking.php:199 +#: db_tracking.php:195 #, fuzzy msgid "Database Log" msgstr "Baza danych" @@ -807,12 +787,12 @@ msgstr "Baza danych" msgid "Selected export type has to be saved in file!" msgstr "Wybrany typ eksportu musi być zapisany do pliku" -#: export.php:153 export.php:178 export.php:620 +#: export.php:152 export.php:177 export.php:615 #, php-format msgid "Insufficient space to save the file %s." msgstr "Brak miejsca na zapis pliku %s." -#: export.php:287 +#: export.php:286 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -820,17 +800,17 @@ msgstr "" "Plik %s już istnieje na serwerze, zmień nazwę pliku lub zaznacz opcję " "nadpisywania plików." -#: export.php:291 export.php:295 +#: export.php:290 export.php:294 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Serwer WWW nie ma praw do zapisu pliku %s." -#: export.php:622 +#: export.php:617 #, php-format msgid "Dump has been saved to file %s." msgstr "Zrzut został zapisany do pliku %s." -#: import.php:59 +#: import.php:58 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -839,14 +819,14 @@ msgstr "" "Prawdopodobnie próbowano wrzucić duży plik. Aby poznać sposoby obejścia tego " "limitu, proszę zapoznać się z %sdokumenacją%s." -#: import.php:278 import.php:331 libraries/File.class.php:840 -#: libraries/File.class.php:950 +#: import.php:277 import.php:330 libraries/File.class.php:566 +#: libraries/File.class.php:676 msgid "File could not be read" msgstr "Nie można odczytać pliku" -#: import.php:286 import.php:295 import.php:314 import.php:323 -#: libraries/File.class.php:1020 libraries/File.class.php:1028 -#: libraries/File.class.php:1044 libraries/File.class.php:1052 +#: import.php:285 import.php:294 import.php:313 import.php:322 +#: libraries/File.class.php:746 libraries/File.class.php:754 +#: libraries/File.class.php:770 libraries/File.class.php:778 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -855,7 +835,7 @@ msgstr "" "Próbowano wczytać plik z nieobsługiwanym typem kompresji (%s). Albo jego " "obsługa nie została zaimplementowana albo została konfiguracyjnie wyłączona." -#: import.php:336 +#: import.php:335 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -865,29 +845,29 @@ msgstr "" "pliku, albo plik był zbyt duży (maksymalny dopuszczalny rozmiar pliku " "określa się w konfiguracji PHP). Zobacz FAQ 1.16." -#: import.php:371 libraries/display_import.lib.php:23 +#: import.php:370 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "Nie udało się załadować modułów importu, proszę sprawdzić instalację!" -#: import.php:396 +#: import.php:395 msgid "The bookmark has been deleted." msgstr "Zapamiętane zapytanie SQL zostało usunięte." -#: import.php:400 +#: import.php:399 msgid "Showing bookmark" msgstr "Pokaz zapamiętanego zapytania" -#: import.php:402 sql.php:625 +#: import.php:401 sql.php:618 #, php-format msgid "Bookmark %s created" msgstr "Zapytanie %s zostało zapamiętane" -#: import.php:408 import.php:414 +#: import.php:407 import.php:413 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Import zakończony sukcesem, wykonano %d zapytań." -#: import.php:423 +#: import.php:422 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -895,7 +875,7 @@ msgstr "" "Limit czasu wykonania skryptu minął; aby ukończyć import, proszę przedłożyć " "ten sam plik a import zostanie wznowiony." -#: import.php:425 +#: import.php:424 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -904,21 +884,21 @@ msgstr "" "dane, co zwykle oznacza, że phpMyAdmin nie będzie w stanie ukończyć tego " "importu bez zwiększenia limitów czasowych PHP." -#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:240 +#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:239 #: user_password.php:110 msgid "Back" msgstr "Powrót" -#: index.php:188 +#: index.php:183 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" "phpMyAdmin jest bardziej przyjazny w przeglądarkach obsługujących ramki" -#: js/messages.php:25 server_synchronize.php:344 server_synchronize.php:356 -#: server_synchronize.php:372 server_synchronize.php:379 -#: server_synchronize.php:738 server_synchronize.php:766 -#: server_synchronize.php:794 server_synchronize.php:806 +#: js/messages.php:25 server_synchronize.php:343 server_synchronize.php:355 +#: server_synchronize.php:371 server_synchronize.php:378 +#: server_synchronize.php:737 server_synchronize.php:765 +#: server_synchronize.php:793 server_synchronize.php:805 msgid "Click to select" msgstr "" @@ -926,15 +906,15 @@ msgstr "" msgid "Click to unselect" msgstr "" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:88 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:87 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Polecenie \"DROP DATABASE\" jest zablokowane." -#: js/messages.php:30 libraries/mult_submits.inc.php:257 sql.php:187 +#: js/messages.php:30 libraries/mult_submits.inc.php:256 sql.php:186 msgid "Do you really want to " msgstr "Czy na pewno wykonać " -#: js/messages.php:31 libraries/mult_submits.inc.php:257 sql.php:171 +#: js/messages.php:31 libraries/mult_submits.inc.php:256 sql.php:170 msgid "You are about to DESTROY a complete database!" msgstr "Masz zamiar ZNISZCZYĆ całą bazę danych!" @@ -963,11 +943,11 @@ msgstr "Brak nazwy hosta!" msgid "The user name is empty!" msgstr "Brak nazwy użytkownika!" -#: js/messages.php:44 server_privileges.php:1228 user_password.php:65 +#: js/messages.php:44 server_privileges.php:1229 user_password.php:65 msgid "The password is empty!" msgstr "Puste hasło!" -#: js/messages.php:45 server_privileges.php:1226 user_password.php:68 +#: js/messages.php:45 server_privileges.php:1227 user_password.php:68 msgid "The passwords aren't the same!" msgstr "Hasła nie są identyczne!" @@ -975,27 +955,27 @@ msgstr "Hasła nie są identyczne!" msgid "Cancel" msgstr "Anuluj" -#: js/messages.php:52 pmd_save_pos.php:53 +#: js/messages.php:52 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "Modyfikacje zostały zapamiętane" -#: js/messages.php:53 pmd_relation_upd.php:48 +#: js/messages.php:53 pmd_relation_upd.php:47 msgid "Relation deleted" msgstr "Usunięto powiązanie" -#: js/messages.php:54 pmd_relation_new.php:63 +#: js/messages.php:54 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "Relacja FOREIGN KEY została dodana." -#: js/messages.php:55 pmd_relation_new.php:85 +#: js/messages.php:55 pmd_relation_new.php:84 msgid "Internal relation added" msgstr "Dodano wewnętrzne powiązanie" -#: js/messages.php:56 pmd_relation_new.php:62 pmd_relation_new.php:87 +#: js/messages.php:56 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "Błąd: nie dodano związku." -#: js/messages.php:57 pmd_relation_new.php:30 +#: js/messages.php:57 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "Błąd: związek już istnieje." @@ -1003,13 +983,13 @@ msgstr "Błąd: związek już istnieje." msgid "Error saving coordinates for Designer." msgstr "Błąd podczas zapisywania współrzędnych dla Projektanta." -#: js/messages.php:59 libraries/relation.lib.php:94 -#: libraries/relation.lib.php:106 +#: js/messages.php:59 libraries/relation.lib.php:89 +#: libraries/relation.lib.php:101 msgid "General relation features" msgstr "Ogólne funkcje relacyjne" -#: js/messages.php:59 libraries/relation.lib.php:88 -#: libraries/relation.lib.php:95 +#: js/messages.php:59 libraries/relation.lib.php:83 +#: libraries/relation.lib.php:90 msgid "Disabled" msgstr "wyłączone" @@ -1025,7 +1005,7 @@ msgstr "Wybierz klucz zewnętrzny" msgid "Please select the primary key or a unique key" msgstr "Należy wybrać klucz główny lub klucz jednoznaczny" -#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:547 +#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" @@ -1056,10 +1036,10 @@ msgid "Prev" msgstr "Poprzednie" #. l10n: Display text for next month link in calendar -#: js/messages.php:81 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:337 -#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:422 -#: tbl_structure.php:800 +#: js/messages.php:81 libraries/common.lib.php:2358 +#: libraries/common.lib.php:2361 libraries/display_tbl.lib.php:336 +#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 +#: tbl_structure.php:798 msgid "Next" msgstr "Następne" @@ -1133,27 +1113,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1562 +#: js/messages.php:101 libraries/common.lib.php:1566 msgid "Jan" msgstr "Sty" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1564 +#: js/messages.php:103 libraries/common.lib.php:1568 msgid "Feb" msgstr "Lut" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1566 +#: js/messages.php:105 libraries/common.lib.php:1570 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1568 +#: js/messages.php:107 libraries/common.lib.php:1572 msgid "Apr" msgstr "Kwi" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1570 +#: js/messages.php:109 libraries/common.lib.php:1574 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1161,37 +1141,37 @@ msgid "May" msgstr "Maj" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1572 +#: js/messages.php:111 libraries/common.lib.php:1576 msgid "Jun" msgstr "Cze" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1574 +#: js/messages.php:113 libraries/common.lib.php:1578 msgid "Jul" msgstr "Lip" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1576 +#: js/messages.php:115 libraries/common.lib.php:1580 msgid "Aug" msgstr "Sie" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1578 +#: js/messages.php:117 libraries/common.lib.php:1582 msgid "Sep" msgstr "Wrz" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1580 +#: js/messages.php:119 libraries/common.lib.php:1584 msgid "Oct" msgstr "Paź" #. l10n: Short month name -#: js/messages.php:121 libraries/common.lib.php:1582 +#: js/messages.php:121 libraries/common.lib.php:1586 msgid "Nov" msgstr "Lis" #. l10n: Short month name -#: js/messages.php:123 libraries/common.lib.php:1584 +#: js/messages.php:123 libraries/common.lib.php:1588 msgid "Dec" msgstr "Gru" @@ -1232,37 +1212,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1587 +#: js/messages.php:136 libraries/common.lib.php:1591 msgid "Sun" msgstr "Nie" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1589 +#: js/messages.php:138 libraries/common.lib.php:1593 msgid "Mon" msgstr "Pon" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1591 +#: js/messages.php:140 libraries/common.lib.php:1595 msgid "Tue" msgstr "Wto" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1593 +#: js/messages.php:142 libraries/common.lib.php:1597 msgid "Wed" msgstr "Śro" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1595 +#: js/messages.php:144 libraries/common.lib.php:1599 msgid "Thu" msgstr "Czw" #. l10n: Short week day name -#: js/messages.php:146 libraries/common.lib.php:1597 +#: js/messages.php:146 libraries/common.lib.php:1601 msgid "Fri" msgstr "Pią" #. l10n: Short week day name -#: js/messages.php:148 libraries/common.lib.php:1599 +#: js/messages.php:148 libraries/common.lib.php:1603 msgid "Sat" msgstr "Sob" @@ -1342,18 +1322,13 @@ msgstr "na sekundę" msgid "Font size" msgstr "Rozmiar pisma" -#: libraries/File.class.php:336 libraries/File.class.php:424 -#: libraries/File.class.php:561 libraries/File.class.php:700 -msgid "Unknown error in file upload." -msgstr "Nieznany błąd wrzucania plików." - -#: libraries/File.class.php:406 +#: libraries/File.class.php:315 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:409 +#: libraries/File.class.php:318 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -1361,59 +1336,63 @@ msgstr "" "Rozmiar wrzucanego pliku jest więcszy niż wartość dyrektywy MAX_FILE_SIZE " "określonej w formularzu HTML." -#: libraries/File.class.php:412 +#: libraries/File.class.php:321 msgid "The uploaded file was only partially uploaded." msgstr "Plik został wrzucony jedynie częściowo." -#: libraries/File.class.php:415 +#: libraries/File.class.php:324 msgid "Missing a temporary folder." msgstr "Nie znaleziono katalogu tymczasowego." -#: libraries/File.class.php:418 +#: libraries/File.class.php:327 msgid "Failed to write file to disk." msgstr "Nie udało się zapisać pliku na dysk." -#: libraries/File.class.php:421 +#: libraries/File.class.php:330 msgid "File upload stopped by extension." msgstr "Wrzucanie pliku zostało zatrzymane przez rozszerzenie." -#: libraries/File.class.php:898 +#: libraries/File.class.php:333 +msgid "Unknown error in file upload." +msgstr "Nieznany błąd wrzucania plików." + +#: libraries/File.class.php:624 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "Błąd podczas przesuwania wrzuconego pliku, zobacz FAQ 1.11" -#: libraries/Index.class.php:427 tbl_relation.php:528 +#: libraries/Index.class.php:427 tbl_relation.php:526 msgid "No index defined!" msgstr "Brak zdefiniowanego indeksu!" -#: libraries/Index.class.php:432 server_databases.php:131 tbl_tracking.php:315 +#: libraries/Index.class.php:432 server_databases.php:129 tbl_tracking.php:310 msgid "Indexes" msgstr "Indeksy" #: libraries/Index.class.php:443 libraries/mult_submits.inc.php:102 -#: libraries/tbl_properties.inc.php:518 tbl_structure.php:32 -#: tbl_structure.php:154 tbl_structure.php:158 tbl_structure.php:473 -#: tbl_tracking.php:321 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:31 +#: tbl_structure.php:153 tbl_structure.php:157 tbl_structure.php:471 +#: tbl_tracking.php:316 msgid "Unique" msgstr "Jednoznaczny" -#: libraries/Index.class.php:444 tbl_tracking.php:322 +#: libraries/Index.class.php:444 tbl_tracking.php:317 msgid "Packed" msgstr "Spakowany" -#: libraries/Index.class.php:446 tbl_tracking.php:324 +#: libraries/Index.class.php:446 tbl_tracking.php:319 msgid "Cardinality" msgstr "Moc" -#: libraries/Index.class.php:449 tbl_tracking.php:278 tbl_tracking.php:327 +#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322 msgid "Comment" msgstr "Komentarz" #: libraries/Index.class.php:465 libraries/common.lib.php:609 -#: libraries/common.lib.php:1198 libraries/display_tbl.lib.php:1116 +#: libraries/common.lib.php:1191 libraries/display_tbl.lib.php:1115 #: libraries/import.lib.php:1119 libraries/import.lib.php:1143 -#: pdf_pages.php:284 setup/frames/index.inc.php:124 +#: pdf_pages.php:283 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:349 tbl_row_action.php:68 msgid "Edit" msgstr "Edytuj" @@ -1437,15 +1416,15 @@ msgstr "" "usunięty." #: libraries/List_Database.class.php:430 libraries/server_links.inc.php:40 -#: server_databases.php:87 server_privileges.php:1652 +#: server_databases.php:85 server_privileges.php:1656 #: setup/lib/messages.inc.php:107 test/theme.php:92 msgid "Databases" msgstr "Bazy danych" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:259 libraries/import.lib.php:134 pdf_schema.php:31 -#: pdf_schema.php:231 tbl_change.php:1023 tbl_operations.php:212 -#: tbl_relation.php:289 view_operations.php:61 +#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 +#: tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Błąd" @@ -1473,40 +1452,40 @@ msgid_plural "%1$d rows inserted." msgstr[0] "Wstawionych rekordów: %1$d." msgstr[1] "Wstawionych rekordów: %1$d." -#: libraries/StorageEngine.class.php:196 +#: libraries/StorageEngine.class.php:194 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:352 +#: libraries/StorageEngine.class.php:354 #, php-format msgid "%s is available on this MySQL server." msgstr "%s jest dostępny na tym serwerze MySQL." -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:357 #, 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:359 +#: libraries/StorageEngine.class.php:361 #, 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:1018 +#: libraries/Table.class.php:1017 msgid "Invalid database" msgstr "Niewłaściwa baza danych" -#: libraries/Table.class.php:1032 tbl_get_field.php:25 +#: libraries/Table.class.php:1031 tbl_get_field.php:25 msgid "Invalid table name" msgstr "Niewłaściwa nazwa tabeli" -#: libraries/Table.class.php:1047 +#: libraries/Table.class.php:1046 #, 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:1131 +#: libraries/Table.class.php:1129 #, php-format msgid "Table %s has been renamed to %s" msgstr "Tabela %s ma nazwę zmienioną na %s" @@ -1525,22 +1504,22 @@ msgstr "Podgląd niedostępny." msgid "take it" msgstr "użyj" -#: libraries/Theme_Manager.class.php:114 +#: 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:152 +#: libraries/Theme_Manager.class.php:147 #, php-format msgid "Theme %s not found!" msgstr "Nie znaleziono motywu graficznego %s!" -#: libraries/Theme_Manager.class.php:220 +#: 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:296 test/theme.php:160 themes.php:20 +#: libraries/Theme_Manager.class.php:291 test/theme.php:160 themes.php:20 #: themes.php:40 msgid "Theme / Style" msgstr "Motyw graficzny / styl" @@ -1654,19 +1633,19 @@ msgstr "Prawidłowy klucz uwierzytelniający nie jest podłączony" msgid "Authenticating..." msgstr "Trwa uwierzytelnianie…" -#: libraries/blobstreaming.lib.php:689 +#: libraries/blobstreaming.lib.php:340 msgid "View image" msgstr "Zobacz obraz" -#: libraries/blobstreaming.lib.php:693 +#: libraries/blobstreaming.lib.php:344 msgid "Play audio" msgstr "Odegraj dźwięk" -#: libraries/blobstreaming.lib.php:698 +#: libraries/blobstreaming.lib.php:349 msgid "View video" msgstr "Obejrzyj film" -#: libraries/blobstreaming.lib.php:702 +#: libraries/blobstreaming.lib.php:353 msgid "Download file" msgstr "Ściągnij plik" @@ -1722,7 +1701,7 @@ msgstr "Serwer" msgid "Invalid authentication method set in configuration:" msgstr "W konfiguracji ustawiono błędną metodę uwierzytelniania:" -#: libraries/common.inc.php:909 +#: libraries/common.inc.php:908 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Poleca się aktualizację do %s w wersji %s lub późniejszej." @@ -1749,7 +1728,8 @@ msgstr "Wysłane" #: libraries/common.lib.php:425 libraries/common.lib.php:427 #: libraries/common.lib.php:429 libraries/common.lib.php:445 #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 -#: libraries/display_export.lib.php:163 libraries/relation.lib.php:84 +#: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 +#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 #: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" @@ -1764,150 +1744,150 @@ msgstr "Zapytanie SQL" msgid "MySQL said: " msgstr "MySQL zwrócił komunikat: " -#: libraries/common.lib.php:1136 +#: libraries/common.lib.php:1129 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "Failed to connect to SQL validator!" msgstr "Nie można połączyć się z serwerem MySQL" -#: libraries/common.lib.php:1174 setup/lib/messages.inc.php:350 +#: libraries/common.lib.php:1167 setup/lib/messages.inc.php:350 msgid "Explain SQL" msgstr "Wyjaśnij SQL" -#: libraries/common.lib.php:1177 +#: libraries/common.lib.php:1170 msgid "Skip Explain SQL" msgstr "Pomiń wyjaśnienie SQL" -#: libraries/common.lib.php:1211 +#: libraries/common.lib.php:1204 msgid "Without PHP Code" msgstr "bez kodu PHP" -#: libraries/common.lib.php:1214 setup/lib/messages.inc.php:352 +#: libraries/common.lib.php:1207 setup/lib/messages.inc.php:352 msgid "Create PHP Code" msgstr "Utwórz kod PHP" -#: libraries/common.lib.php:1232 server_status.php:451 +#: libraries/common.lib.php:1225 server_status.php:451 #: setup/lib/messages.inc.php:351 msgid "Refresh" msgstr "Odśwież" -#: libraries/common.lib.php:1241 +#: libraries/common.lib.php:1234 msgid "Skip Validate SQL" msgstr "Pomiń sprawdzanie poprawności SQL" -#: libraries/common.lib.php:1244 setup/lib/messages.inc.php:353 +#: libraries/common.lib.php:1237 setup/lib/messages.inc.php:353 msgid "Validate SQL" msgstr "Sprawdź poprawność SQL" -#: libraries/common.lib.php:1283 +#: libraries/common.lib.php:1287 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1285 +#: libraries/common.lib.php:1289 #, fuzzy #| msgid "Engines" msgid "Inline" msgstr "Mechanizmy" -#: libraries/common.lib.php:1339 libraries/common.lib.php:1354 +#: libraries/common.lib.php:1343 libraries/common.lib.php:1358 msgid "Profiling" msgstr "Profilowanie" -#: libraries/common.lib.php:1358 libraries/tbl_triggers.lib.php:27 +#: libraries/common.lib.php:1362 libraries/tbl_triggers.lib.php:27 #: server_processlist.php:57 msgid "Time" msgstr "Czas" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "B" msgstr "bajtów" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "KiB" msgstr "KB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "MiB" msgstr "MB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "GiB" msgstr "GB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "TiB" msgstr "TB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "PiB" msgstr "PB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "EiB" msgstr "EB" #. l10n: Thousands separator -#: libraries/common.lib.php:1424 +#: libraries/common.lib.php:1428 msgid "," msgstr " " #. l10n: Decimal separator -#: libraries/common.lib.php:1426 +#: libraries/common.lib.php:1430 msgid "." msgstr "," #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1603 +#: libraries/common.lib.php:1607 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y, %H:%M" -#: libraries/common.lib.php:1909 +#: libraries/common.lib.php:1913 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dni, %s godzin, %s minut i %s sekund" -#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 -#: libraries/display_tbl.lib.php:289 server_status.php:718 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 +#: libraries/display_tbl.lib.php:288 server_status.php:718 msgid "Begin" msgstr "Początek" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 -#: libraries/display_tbl.lib.php:290 server_binlog.php:154 +#: libraries/common.lib.php:2328 libraries/common.lib.php:2331 +#: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "Poprzednie" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 -#: libraries/display_tbl.lib.php:352 +#: libraries/common.lib.php:2359 libraries/common.lib.php:2362 +#: libraries/display_tbl.lib.php:351 msgid "End" msgstr "Koniec" -#: libraries/common.lib.php:2429 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "Skok do bazy danych "%s"." -#: libraries/common.lib.php:2448 +#: libraries/common.lib.php:2453 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Funkcja %s jest dotknięta przez znany błąd, zobacz %s" -#: libraries/common.lib.php:2828 libraries/common.lib.php:2835 -#: libraries/db_links.inc.php:67 libraries/export/sql.php:24 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 +#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 -#: libraries/tbl_links.inc.php:59 querywindow.php:89 test/theme.php:96 +#: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2837 libraries/db_links.inc.php:103 -#: libraries/tbl_links.inc.php:94 libraries/tbl_links.inc.php:116 -#: view_operations.php:88 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: view_operations.php:87 msgid "Operations" msgstr "Operacje" -#: libraries/core.lib.php:282 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1923,38 +1903,38 @@ msgstr "Zdarzenia" msgid "Name" msgstr "Nazwa" -#: libraries/db_links.inc.php:44 +#: libraries/db_links.inc.php:43 #, php-format msgid "Database %s has been dropped." msgstr "Baza danych %s została usunięta." -#: libraries/db_links.inc.php:56 libraries/db_links.inc.php:57 -#: libraries/db_links.inc.php:58 +#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 +#: libraries/db_links.inc.php:57 msgid "Database seems to be empty!" msgstr "Baza danych wydaje się pusta!" -#: libraries/db_links.inc.php:80 libraries/relation.lib.php:142 -#: libraries/tbl_links.inc.php:68 +#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:85 +#: libraries/db_links.inc.php:84 msgid "Query" msgstr "Zapytanie przez przykład" -#: libraries/db_links.inc.php:90 libraries/relation.lib.php:138 +#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 msgid "Designer" msgstr "Projektant" -#: libraries/db_links.inc.php:97 libraries/server_links.inc.php:87 -#: libraries/tbl_links.inc.php:90 pmd_pdf.php:83 pmd_pdf.php:109 +#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Import" -#: libraries/db_links.inc.php:110 libraries/server_links.inc.php:65 -#: server_privileges.php:111 server_privileges.php:1714 -#: server_privileges.php:2063 test/theme.php:116 +#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: server_privileges.php:110 server_privileges.php:1718 +#: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" msgstr "Uprawnienia" @@ -1966,14 +1946,14 @@ msgstr "Procedury i funkcje" msgid "Return type" msgstr "Zwracany typ" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1847 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1806 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "Być może w przybliżeniu. Zobacz FAQ 3.11" -#: libraries/db_structure.lib.php:60 server_databases.php:141 -#: tbl_printview.php:334 tbl_structure.php:681 +#: libraries/db_structure.lib.php:60 server_databases.php:139 +#: tbl_printview.php:333 tbl_structure.php:679 msgid "Overhead" msgstr "Nadmiar" @@ -1993,7 +1973,7 @@ 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:358 tbl_structure.php:607 +#: libraries/dbi/mysql.dbi.lib.php:358 tbl_structure.php:605 msgid "Details..." msgstr "Szczegóły…" @@ -2003,22 +1983,22 @@ msgid "Change password" msgstr "Zmień hasło" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:807 +#: libraries/replication_gui.lib.php:347 server_privileges.php:806 msgid "No Password" msgstr "Brak hasła" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1530 server_synchronize.php:1174 +#: libraries/replication_gui.lib.php:351 server_privileges.php:795 +#: server_privileges.php:799 server_privileges.php:810 +#: server_privileges.php:1534 server_synchronize.php:1173 msgid "Password" msgstr "Hasło" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:815 server_privileges.php:818 +#: server_privileges.php:814 server_privileges.php:817 msgid "Re-type" msgstr "Ponownie" @@ -2041,8 +2021,8 @@ msgstr "Utwórz nową bazę danych" msgid "Create" msgstr "Utwórz" -#: libraries/display_create_database.lib.php:39 server_privileges.php:113 -#: server_privileges.php:1419 server_replication.php:34 +#: libraries/display_create_database.lib.php:39 server_privileges.php:112 +#: server_privileges.php:1423 server_replication.php:33 msgid "No Privileges" msgstr "Brak uprawnień" @@ -2063,50 +2043,50 @@ msgstr "Utwórz nową tabelę w bazie danych %s" msgid "Number of columns" msgstr "Liczba pól" -#: libraries/display_export.lib.php:41 +#: libraries/display_export.lib.php:35 msgid "Could not load export plugins, please check your installation!" msgstr "Nie udało się załadować modułów eksportu, proszę sprawdzić instalację!" -#: libraries/display_export.lib.php:106 +#: libraries/display_export.lib.php:100 #, fuzzy, php-format #| msgid "Dump %s row(s) starting at record # %s" msgid "Dump %s row(s) starting at row # %s" msgstr "Zrzuć %s rekordów zaczynając od rekordu %s." -#: libraries/display_export.lib.php:114 +#: libraries/display_export.lib.php:108 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:124 setup/lib/messages.inc.php:79 +#: libraries/display_export.lib.php:118 setup/lib/messages.inc.php:79 msgid "Save as file" msgstr "Zapisz jako plik" -#: libraries/display_export.lib.php:133 +#: libraries/display_export.lib.php:127 #, php-format msgid "Save on server in %s directory" msgstr "Zapisz na serwerze w katalogu %s" -#: libraries/display_export.lib.php:141 setup/lib/messages.inc.php:87 +#: libraries/display_export.lib.php:135 setup/lib/messages.inc.php:87 msgid "Overwrite existing file(s)" msgstr "Nadpisuj istniejące pliki" -#: libraries/display_export.lib.php:147 +#: libraries/display_export.lib.php:141 msgid "File name template" msgstr "Szablon nazwy" -#: libraries/display_export.lib.php:151 +#: libraries/display_export.lib.php:145 msgid "server name" msgstr "nazwa serwera" -#: libraries/display_export.lib.php:154 +#: libraries/display_export.lib.php:148 msgid "database name" msgstr "nazwa bazy danych" -#: libraries/display_export.lib.php:157 +#: libraries/display_export.lib.php:151 msgid "table name" msgstr "nazwa tabeli" -#: libraries/display_export.lib.php:161 +#: libraries/display_export.lib.php:155 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2117,39 +2097,39 @@ msgstr "" "jej napisów formatujących. Dodatkowo zostaną zastosowane następujące " "przekształcenia: %3$s. Pozostały tekst będzie niezmieniony." -#: libraries/display_export.lib.php:202 +#: libraries/display_export.lib.php:196 msgid "remember template" msgstr "pamiętaj szablon" -#: libraries/display_export.lib.php:210 libraries/display_import.lib.php:177 +#: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 #: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 msgid "Character set of the file:" msgstr "Kodowanie pliku:" -#: libraries/display_export.lib.php:235 setup/lib/messages.inc.php:81 +#: libraries/display_export.lib.php:229 setup/lib/messages.inc.php:81 msgid "Compression" msgstr "Typ kompresji" -#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:196 -#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:529 -#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:574 -#: server_privileges.php:1867 server_processlist.php:74 +#: libraries/display_export.lib.php:234 libraries/display_import.lib.php:196 +#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:528 +#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:573 +#: server_privileges.php:1871 server_processlist.php:74 msgid "None" msgstr "Brak" -#: libraries/display_export.lib.php:247 +#: libraries/display_export.lib.php:241 msgid "\"zipped\"" msgstr "\".zip\"" -#: libraries/display_export.lib.php:253 +#: libraries/display_export.lib.php:247 msgid "\"gzipped\"" msgstr "\".gz\"" -#: libraries/display_export.lib.php:259 +#: libraries/display_export.lib.php:253 msgid "\"bzipped\"" msgstr "\".bz2\"" -#: libraries/display_export.lib.php:274 libraries/export/sql.php:42 +#: libraries/display_export.lib.php:268 libraries/export/sql.php:42 #: libraries/import/sql.php:31 msgid "SQL compatibility mode" msgstr "Tryb zgodności SQL" @@ -2184,12 +2164,12 @@ msgid "File uploads are not allowed on this server." msgstr "Serwer nie pozwala na upload plików." #: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 -#: tbl_change.php:1024 +#: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "Katalog ustalony dla uploadu jest nieosiągalny" #: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 -#: tbl_change.php:1027 +#: tbl_change.php:925 msgid "web server upload directory" msgstr "katalog serwera WWW dla uploadu" @@ -2277,43 +2257,43 @@ msgstr "Rozmiar papieru" msgid "Language" msgstr "Język" -#: libraries/display_tbl.lib.php:303 +#: libraries/display_tbl.lib.php:302 #, php-format msgid "%d is not valid row number." msgstr "%d nie jest prawidłowym numerem rekordu." -#: libraries/display_tbl.lib.php:309 +#: libraries/display_tbl.lib.php:308 #, fuzzy #| msgid "row(s) starting from record #" msgid "row(s) starting from row #" msgstr "rekordów począwszy od" -#: libraries/display_tbl.lib.php:315 +#: libraries/display_tbl.lib.php:314 msgid "horizontal" msgstr "poziomo" -#: libraries/display_tbl.lib.php:316 +#: libraries/display_tbl.lib.php:315 msgid "horizontal (rotated headers)" msgstr "poziomo (obrócone nagłówki)" -#: libraries/display_tbl.lib.php:317 +#: libraries/display_tbl.lib.php:316 msgid "vertical" msgstr "pionowo" -#: libraries/display_tbl.lib.php:323 +#: libraries/display_tbl.lib.php:322 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "w trybie %s powtórz nagłówki po %s komórkach" -#: libraries/display_tbl.lib.php:345 +#: libraries/display_tbl.lib.php:344 msgid "This operation could take a long time. Proceed anyway?" msgstr "Ta operacja może długo potrwać. Czy mimo to kontynuować?" -#: libraries/display_tbl.lib.php:511 +#: libraries/display_tbl.lib.php:510 msgid "Sort by key" msgstr "Sortuj wg klucza" -#: libraries/display_tbl.lib.php:554 libraries/export/codegen.php:38 +#: libraries/display_tbl.lib.php:553 libraries/export/codegen.php:38 #: libraries/export/csv.php:29 libraries/export/excel.php:34 #: libraries/export/htmlword.php:28 libraries/export/latex.php:32 #: libraries/export/mediawiki.php:21 libraries/export/ods.php:26 @@ -2323,100 +2303,100 @@ msgstr "Sortuj wg klucza" #: libraries/export/xlsx.php:26 libraries/export/xml.php:23 #: libraries/export/yaml.php:27 libraries/import.lib.php:1114 #: libraries/import.lib.php:1136 libraries/import/csv.php:31 -#: libraries/import/docsql.php:33 libraries/import/ldi.php:46 +#: libraries/import/docsql.php:32 libraries/import/ldi.php:46 #: libraries/import/ods.php:30 libraries/import/sql.php:19 #: libraries/import/xls.php:25 libraries/import/xlsx.php:25 -#: libraries/import/xml.php:25 tbl_select.php:264 tbl_structure.php:752 +#: libraries/import/xml.php:25 tbl_select.php:263 tbl_structure.php:750 msgid "Options" msgstr "Opcje" -#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:569 +#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:568 msgid "Partial Texts" msgstr "Skrócony tekst" -#: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:573 +#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:572 msgid "Full Texts" msgstr "Pełny tekst" -#: libraries/display_tbl.lib.php:586 +#: libraries/display_tbl.lib.php:585 #, fuzzy msgid "Relational key" msgstr "Schemat relacyjny" -#: libraries/display_tbl.lib.php:587 +#: libraries/display_tbl.lib.php:586 #, fuzzy #| msgid "Relational schema" msgid "Relational display column" msgstr "Schemat relacyjny" -#: libraries/display_tbl.lib.php:594 +#: libraries/display_tbl.lib.php:593 msgid "Show binary contents" msgstr "" -#: libraries/display_tbl.lib.php:596 +#: libraries/display_tbl.lib.php:595 msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:598 +#: libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "" -#: libraries/display_tbl.lib.php:606 pmd_general.php:140 tbl_change.php:312 -#: tbl_change.php:318 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:307 +#: tbl_change.php:313 msgid "Hide" msgstr "Ukryj" -#: libraries/display_tbl.lib.php:606 libraries/relation.lib.php:122 -#: libraries/tbl_properties.inc.php:143 transformation_overview.php:46 +#: libraries/display_tbl.lib.php:605 libraries/relation.lib.php:117 +#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46 msgid "Browser transformation" msgstr "Sposób prezentacji danych" -#: libraries/display_tbl.lib.php:1125 libraries/display_tbl.lib.php:1129 -#: libraries/display_tbl.lib.php:1131 +#: libraries/display_tbl.lib.php:1124 libraries/display_tbl.lib.php:1128 +#: libraries/display_tbl.lib.php:1130 msgid "Execute bookmarked query" msgstr "Wykonaj zapamiętanego zapytania" -#: libraries/display_tbl.lib.php:1144 libraries/display_tbl.lib.php:1156 +#: libraries/display_tbl.lib.php:1143 libraries/display_tbl.lib.php:1155 msgid "The row has been deleted" msgstr "Rekord został skasowany" -#: libraries/display_tbl.lib.php:1183 libraries/display_tbl.lib.php:2055 +#: libraries/display_tbl.lib.php:1182 libraries/display_tbl.lib.php:2014 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "Unicestwij" -#: libraries/display_tbl.lib.php:1933 +#: libraries/display_tbl.lib.php:1892 msgid "in query" msgstr "w zapytaniu" -#: libraries/display_tbl.lib.php:1951 +#: libraries/display_tbl.lib.php:1910 msgid "Showing rows" msgstr "Pokaż rekordy " -#: libraries/display_tbl.lib.php:1961 +#: libraries/display_tbl.lib.php:1920 msgid "total" msgstr "wszystkich" -#: libraries/display_tbl.lib.php:1969 sql.php:523 +#: libraries/display_tbl.lib.php:1928 sql.php:522 #, php-format msgid "Query took %01.4f sec" msgstr "Wykonanie zapytania trwało %01.4f sekund(y)" -#: libraries/display_tbl.lib.php:2088 libraries/mult_submits.inc.php:112 -#: querywindow.php:115 querywindow.php:119 querywindow.php:122 -#: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:469 +#: libraries/display_tbl.lib.php:2047 libraries/mult_submits.inc.php:112 +#: querywindow.php:114 querywindow.php:118 querywindow.php:121 +#: tbl_structure.php:23 tbl_structure.php:148 tbl_structure.php:467 msgid "Change" msgstr "Zmień" -#: libraries/display_tbl.lib.php:2158 +#: libraries/display_tbl.lib.php:2117 msgid "Query results operations" msgstr "Operacja na wynikach zapytania" -#: libraries/display_tbl.lib.php:2186 +#: libraries/display_tbl.lib.php:2145 msgid "Print view (with full texts)" msgstr "Widok do druku (z pełnymi tekstami)" -#: libraries/display_tbl.lib.php:2359 +#: libraries/display_tbl.lib.php:2318 msgid "Link not found" msgstr "Łącze nie znalezione" @@ -2471,9 +2451,9 @@ msgstr "Status InnoDB" msgid "Buffer Pool Usage" msgstr "Użycie rezerw buforowych" -#: libraries/engines/innodb.lib.php:168 server_databases.php:136 -#: server_databases.php:304 server_status.php:524 server_status.php:585 -#: server_status.php:606 tbl_printview.php:349 tbl_structure.php:695 +#: libraries/engines/innodb.lib.php:168 server_databases.php:134 +#: server_databases.php:302 server_status.php:524 server_status.php:585 +#: server_status.php:606 tbl_printview.php:348 tbl_structure.php:693 msgid "Total" msgstr "Sumarycznie" @@ -2611,6 +2591,88 @@ msgstr "" "operacji REPAIR TABLE albo gdy indeksy są tworzone przez polecenia CREATE " "INDEX lub ALTER TABLE." +#: libraries/engines/pbms.lib.php:31 +#, fuzzy +#| msgid "Garbage threshold" +msgid "Garbage Threshold" +msgstr "Próg śmieci" + +#: libraries/engines/pbms.lib.php:32 +#, fuzzy +#| msgid "" +#| "The percentage of garbage in a data log file before it is compacted. This " +#| "is a value between 1 and 99. The default is 50." +msgid "The percentage of garbage in a repository file before it is compacted." +msgstr "" +"Procent śmieci w dzienniku danych, nim zostanie skompaktowany. Liczba jest " +"między 1 i 99. Domyślną wartością jest 50." + +#: libraries/engines/pbms.lib.php:36 libraries/replication_gui.lib.php:69 +#: server_synchronize.php:1161 +#, fuzzy +msgid "Port" +msgstr "Sortuj" + +#: libraries/engines/pbms.lib.php:37 +msgid "" +"The port for the PBMS stream-based communications. Setting this value to 0 " +"will disable HTTP communication with the daemon." +msgstr "" + +#: libraries/engines/pbms.lib.php:41 +msgid "Repository Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:42 +msgid "" +"The maximum size of a BLOB repository file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:46 +msgid "Temp Blob Timeout" +msgstr "" + +#: libraries/engines/pbms.lib.php:47 +msgid "" +"The timeout, in seconds, for temporary BLOBs. Uploaded BLOB data is removed " +"after this time, unless they are referenced by a record in the database." +msgstr "" + +#: libraries/engines/pbms.lib.php:51 +#, fuzzy +#| msgid "Log file threshold" +msgid "Temp Log Threshold" +msgstr "Próg pliku dziennika" + +#: libraries/engines/pbms.lib.php:52 +msgid "" +"The maximum size of a temporary BLOB log file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:56 +msgid "Max Keep Alive" +msgstr "" + +#: libraries/engines/pbms.lib.php:57 +msgid "" +"The timeout for inactive connection with the keep-alive flag set. After this " +"time the connection will be closed. The time-out is in milliseconds (1/1000)." +msgstr "" + +#: libraries/engines/pbms.lib.php:61 +msgid "Metadata Headers" +msgstr "" + +#: libraries/engines/pbms.lib.php:62 +msgid "" +"A \":\" delimited list of metadata headers to be used to initialize the " +"pbms_metadata_header table when a database is created." +msgstr "" + #: libraries/engines/pbxt.lib.php:22 msgid "Index cache size" msgstr "Rozmiar pamięci podręcznej indeksów" @@ -2751,7 +2813,7 @@ msgstr "" "i dostają kolejny najwyższy numer." #: libraries/export/codegen.php:36 setup/lib/messages.inc.php:85 -#: tbl_printview.php:374 tbl_structure.php:736 +#: tbl_printview.php:373 tbl_structure.php:734 msgid "Format" msgstr "Format" @@ -2822,9 +2884,9 @@ msgstr "Microsoft Word 2000" #: libraries/export/htmlword.php:23 libraries/export/latex.php:59 #: libraries/export/latex.php:205 libraries/export/odt.php:47 #: libraries/export/sql.php:105 libraries/export/sql.php:865 -#: libraries/export/texytext.php:27 server_databases.php:126 -#: server_privileges.php:576 server_replication.php:315 tbl_printview.php:315 -#: tbl_structure.php:664 +#: libraries/export/texytext.php:27 server_databases.php:124 +#: server_privileges.php:575 server_replication.php:314 tbl_printview.php:314 +#: tbl_structure.php:662 msgid "Data" msgstr "Dane" @@ -2839,7 +2901,6 @@ msgid "Table structure for table" msgstr "Struktura tabeli dla " #: libraries/export/latex.php:13 -#| msgid "Content of table __TABLE__" msgid "Content of table @TABLE@" msgstr "Zawartość tabeli @TABLE@" @@ -2848,7 +2909,6 @@ msgid "(continued)" msgstr "(kontynuacja)" #: libraries/export/latex.php:15 -#| msgid "Structure of table __TABLE__" msgid "Structure of table @TABLE@" msgstr "Struktura tabeli @TABLE@" @@ -2873,13 +2933,13 @@ msgid "Label key" msgstr "Etykieta klucza" #: libraries/export/latex.php:46 libraries/export/odt.php:34 -#: libraries/export/sql.php:90 tbl_relation.php:398 +#: libraries/export/sql.php:90 tbl_relation.php:396 msgid "Relations" msgstr "Relacje" #: libraries/export/latex.php:52 libraries/export/odt.php:40 #: libraries/export/odt.php:317 libraries/export/sql.php:94 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "Typ MIME" @@ -2887,10 +2947,10 @@ msgstr "Typ MIME" #: libraries/export/xml.php:101 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1529 server_privileges.php:2061 -#: server_processlist.php:54 server_synchronize.php:1158 +#: libraries/replication_gui.lib.php:331 server_privileges.php:730 +#: server_privileges.php:733 server_privileges.php:789 +#: server_privileges.php:1533 server_privileges.php:2065 +#: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "Host" @@ -3086,8 +3146,8 @@ msgstr "Domyślne opcje eksportu" msgid "Export contents" msgstr "Domyślne opcje eksportu" -#: libraries/footer.inc.php:182 libraries/footer.inc.php:193 -#: libraries/footer.inc.php:196 +#: libraries/footer.inc.php:180 libraries/footer.inc.php:191 +#: libraries/footer.inc.php:194 msgid "Open new phpMyAdmin window" msgstr "Otwórz nowe okno phpMyAdmina" @@ -3104,7 +3164,7 @@ msgstr "Rezultat SQL" msgid "Generated by" msgstr "Wygenerowany przez" -#: libraries/import.lib.php:151 sql.php:519 tbl_change.php:180 +#: libraries/import.lib.php:151 sql.php:518 tbl_change.php:175 #: 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)." @@ -3163,7 +3223,7 @@ msgstr "Ignoruj zdublowane rekordy" msgid "Column names in first row" msgstr "" -#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:501 +#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:500 #: view_create.php:147 msgid "Column names" msgstr "Nazwy kolumn" @@ -3190,12 +3250,12 @@ msgstr "Niewłaściwy format w linii %d danych wejściowych CSV." msgid "Invalid column count in CSV input on line %d." msgstr "Niewłaściwa liczba pól w linii %d danych wejściowych CSV." -#: libraries/import/docsql.php:28 +#: libraries/import/docsql.php:27 msgid "DocSQL" msgstr "DocSQL" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 -#: server_synchronize.php:427 server_synchronize.php:870 +#: libraries/import/docsql.php:30 libraries/tbl_properties.inc.php:616 +#: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "Nazwa tabeli" @@ -3253,26 +3313,26 @@ msgstr "Brak" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:512 -#: tbl_structure.php:28 tbl_structure.php:152 tbl_structure.php:156 -#: tbl_structure.php:472 +#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:511 +#: tbl_structure.php:27 tbl_structure.php:151 tbl_structure.php:155 +#: tbl_structure.php:470 msgid "Primary" msgstr "Podstawowy" #: libraries/mult_submits.inc.php:97 libraries/tbl_properties.inc.php:115 -#: libraries/tbl_properties.inc.php:524 tbl_printview.php:324 -#: tbl_structure.php:30 tbl_structure.php:153 tbl_structure.php:157 -#: tbl_structure.php:474 tbl_structure.php:672 +#: libraries/tbl_properties.inc.php:523 tbl_printview.php:323 +#: tbl_structure.php:29 tbl_structure.php:152 tbl_structure.php:156 +#: tbl_structure.php:472 tbl_structure.php:670 msgid "Index" msgstr "Indeks" -#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:530 -#: tbl_structure.php:34 tbl_structure.php:155 tbl_structure.php:159 -#: tbl_structure.php:477 +#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:529 +#: tbl_structure.php:33 tbl_structure.php:154 tbl_structure.php:158 +#: tbl_structure.php:475 msgid "Fulltext" msgstr "Pełny tekst" -#: libraries/mult_submits.inc.php:434 tbl_replace.php:330 +#: libraries/mult_submits.inc.php:433 tbl_replace.php:330 msgid "No change" msgstr "Bez zmian" @@ -3280,190 +3340,190 @@ msgstr "Bez zmian" msgid "Charset" msgstr "Kodowanie napisów" -#: libraries/mysql_charsets.lib.php:210 libraries/mysql_charsets.lib.php:411 -#: tbl_change.php:515 +#: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 +#: tbl_change.php:510 msgid "Binary" msgstr " Binarne " -#: libraries/mysql_charsets.lib.php:222 +#: libraries/mysql_charsets.lib.php:214 msgid "Bulgarian" msgstr "Bułgarski" -#: libraries/mysql_charsets.lib.php:226 libraries/mysql_charsets.lib.php:351 +#: libraries/mysql_charsets.lib.php:218 libraries/mysql_charsets.lib.php:343 msgid "Simplified Chinese" msgstr "Chiński uproszczony" -#: libraries/mysql_charsets.lib.php:228 libraries/mysql_charsets.lib.php:371 +#: libraries/mysql_charsets.lib.php:220 libraries/mysql_charsets.lib.php:363 msgid "Traditional Chinese" msgstr "Chiński tradycyjny" -#: libraries/mysql_charsets.lib.php:232 libraries/mysql_charsets.lib.php:418 +#: libraries/mysql_charsets.lib.php:224 libraries/mysql_charsets.lib.php:410 msgid "case-insensitive" msgstr "bez rozróżniania wielkości liter" -#: libraries/mysql_charsets.lib.php:235 libraries/mysql_charsets.lib.php:420 +#: libraries/mysql_charsets.lib.php:227 libraries/mysql_charsets.lib.php:412 msgid "case-sensitive" msgstr "z rozróżnianiem wielkości liter" -#: libraries/mysql_charsets.lib.php:238 +#: libraries/mysql_charsets.lib.php:230 msgid "Croatian" msgstr "Chorwacki" -#: libraries/mysql_charsets.lib.php:241 +#: libraries/mysql_charsets.lib.php:233 msgid "Czech" msgstr "Czeski" -#: libraries/mysql_charsets.lib.php:244 +#: libraries/mysql_charsets.lib.php:236 msgid "Danish" msgstr "Duński" -#: libraries/mysql_charsets.lib.php:247 +#: libraries/mysql_charsets.lib.php:239 msgid "English" msgstr "Angielski" -#: libraries/mysql_charsets.lib.php:250 +#: libraries/mysql_charsets.lib.php:242 msgid "Esperanto" msgstr "Esperanto" -#: libraries/mysql_charsets.lib.php:253 +#: libraries/mysql_charsets.lib.php:245 msgid "Estonian" msgstr "Estoński" -#: libraries/mysql_charsets.lib.php:256 libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:248 libraries/mysql_charsets.lib.php:251 msgid "German" msgstr "Niemiecki" -#: libraries/mysql_charsets.lib.php:256 +#: libraries/mysql_charsets.lib.php:248 msgid "dictionary" msgstr "słownik" -#: libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:251 msgid "phone book" msgstr "książka telefoniczna" -#: libraries/mysql_charsets.lib.php:262 +#: libraries/mysql_charsets.lib.php:254 msgid "Hungarian" msgstr "Węgierski" -#: libraries/mysql_charsets.lib.php:265 +#: libraries/mysql_charsets.lib.php:257 msgid "Icelandic" msgstr "Islandzki" -#: libraries/mysql_charsets.lib.php:268 libraries/mysql_charsets.lib.php:358 +#: libraries/mysql_charsets.lib.php:260 libraries/mysql_charsets.lib.php:350 msgid "Japanese" msgstr "Japoński" -#: libraries/mysql_charsets.lib.php:271 +#: libraries/mysql_charsets.lib.php:263 msgid "Latvian" msgstr "Łotewski" -#: libraries/mysql_charsets.lib.php:274 +#: libraries/mysql_charsets.lib.php:266 msgid "Lithuanian" msgstr "Litewski" -#: libraries/mysql_charsets.lib.php:277 libraries/mysql_charsets.lib.php:380 +#: libraries/mysql_charsets.lib.php:269 libraries/mysql_charsets.lib.php:372 msgid "Korean" msgstr "Koreański" -#: libraries/mysql_charsets.lib.php:280 +#: libraries/mysql_charsets.lib.php:272 msgid "Persian" msgstr "Perski" -#: libraries/mysql_charsets.lib.php:283 +#: libraries/mysql_charsets.lib.php:275 msgid "Polish" msgstr "Polski" -#: libraries/mysql_charsets.lib.php:286 libraries/mysql_charsets.lib.php:334 +#: libraries/mysql_charsets.lib.php:278 libraries/mysql_charsets.lib.php:326 msgid "West European" msgstr "Zachodnioeuropejski" -#: libraries/mysql_charsets.lib.php:289 +#: libraries/mysql_charsets.lib.php:281 msgid "Romanian" msgstr "Rumuński" -#: libraries/mysql_charsets.lib.php:292 +#: libraries/mysql_charsets.lib.php:284 msgid "Slovak" msgstr "Słowacki" -#: libraries/mysql_charsets.lib.php:295 +#: libraries/mysql_charsets.lib.php:287 msgid "Slovenian" msgstr "Słoweński" -#: libraries/mysql_charsets.lib.php:298 +#: libraries/mysql_charsets.lib.php:290 msgid "Spanish" msgstr "Hiszpański" -#: libraries/mysql_charsets.lib.php:301 +#: libraries/mysql_charsets.lib.php:293 msgid "Traditional Spanish" msgstr "Tradycyjny hiszpański" -#: libraries/mysql_charsets.lib.php:304 libraries/mysql_charsets.lib.php:401 +#: libraries/mysql_charsets.lib.php:296 libraries/mysql_charsets.lib.php:393 msgid "Swedish" msgstr "Szwedzki" -#: libraries/mysql_charsets.lib.php:307 libraries/mysql_charsets.lib.php:404 +#: libraries/mysql_charsets.lib.php:299 libraries/mysql_charsets.lib.php:396 msgid "Thai" msgstr "Tajski" -#: libraries/mysql_charsets.lib.php:310 libraries/mysql_charsets.lib.php:398 +#: libraries/mysql_charsets.lib.php:302 libraries/mysql_charsets.lib.php:390 msgid "Turkish" msgstr "Turecki" -#: libraries/mysql_charsets.lib.php:313 libraries/mysql_charsets.lib.php:395 +#: libraries/mysql_charsets.lib.php:305 libraries/mysql_charsets.lib.php:387 msgid "Ukrainian" msgstr "Ukraiński" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 msgid "Unicode" msgstr "Unicode" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 -#: libraries/mysql_charsets.lib.php:334 libraries/mysql_charsets.lib.php:341 -#: libraries/mysql_charsets.lib.php:363 libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 +#: libraries/mysql_charsets.lib.php:326 libraries/mysql_charsets.lib.php:333 +#: libraries/mysql_charsets.lib.php:355 libraries/mysql_charsets.lib.php:366 msgid "multilingual" msgstr "wiele języków" -#: libraries/mysql_charsets.lib.php:341 +#: libraries/mysql_charsets.lib.php:333 msgid "Central European" msgstr "Środkowoeuropejski" -#: libraries/mysql_charsets.lib.php:346 +#: libraries/mysql_charsets.lib.php:338 msgid "Russian" msgstr "Rosyjski" -#: libraries/mysql_charsets.lib.php:363 +#: libraries/mysql_charsets.lib.php:355 msgid "Baltic" msgstr "Bałtycki" -#: libraries/mysql_charsets.lib.php:368 +#: libraries/mysql_charsets.lib.php:360 msgid "Armenian" msgstr "Ormiański" -#: libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:366 msgid "Cyrillic" msgstr "Cyrylica" -#: libraries/mysql_charsets.lib.php:377 +#: libraries/mysql_charsets.lib.php:369 msgid "Arabic" msgstr "Arabski" -#: libraries/mysql_charsets.lib.php:383 +#: libraries/mysql_charsets.lib.php:375 msgid "Hebrew" msgstr "Hebrajski" -#: libraries/mysql_charsets.lib.php:386 +#: libraries/mysql_charsets.lib.php:378 msgid "Georgian" msgstr "Gruziński" -#: libraries/mysql_charsets.lib.php:389 +#: libraries/mysql_charsets.lib.php:381 msgid "Greek" msgstr "Grecki" -#: libraries/mysql_charsets.lib.php:392 +#: libraries/mysql_charsets.lib.php:384 msgid "Czech-Slovak" msgstr "Czesko-słowacki" -#: libraries/mysql_charsets.lib.php:407 libraries/mysql_charsets.lib.php:414 +#: libraries/mysql_charsets.lib.php:399 libraries/mysql_charsets.lib.php:406 msgid "unknown" msgstr "nieznany" @@ -3489,69 +3549,69 @@ msgstr "Okienko zapytania" msgid "This format has no options" msgstr "Ten format nie ma żadnych opcji" -#: libraries/relation.lib.php:82 +#: libraries/relation.lib.php:77 msgid "not OK" msgstr "błąd" -#: libraries/relation.lib.php:86 pmd_general.php:339 +#: libraries/relation.lib.php:81 pmd_general.php:339 msgid "OK" msgstr "OK" -#: libraries/relation.lib.php:87 +#: libraries/relation.lib.php:82 msgid "Enabled" msgstr "włączone" -#: libraries/relation.lib.php:110 +#: libraries/relation.lib.php:105 msgid "Display Features" msgstr "Funkcje wyświetlania" -#: libraries/relation.lib.php:116 +#: libraries/relation.lib.php:111 msgid "Creation of PDFs" msgstr "Tworzenie PDF-ów" -#: libraries/relation.lib.php:120 +#: libraries/relation.lib.php:115 msgid "Displaying Column Comments" msgstr "Wyświetl komentarze dla kolumn" -#: libraries/relation.lib.php:125 +#: libraries/relation.lib.php:120 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "Informacje o tym, jak zaktualizować tabelę Column_comments znajdują się w " "dokumentacji" -#: libraries/relation.lib.php:130 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 msgid "Bookmarked SQL query" msgstr "Zapamiętane zapytanie SQL" -#: libraries/relation.lib.php:134 querywindow.php:99 querywindow.php:207 +#: libraries/relation.lib.php:129 querywindow.php:98 querywindow.php:205 msgid "SQL history" msgstr "Historia SQL" -#: libraries/relation.lib.php:146 +#: libraries/relation.lib.php:141 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:148 +#: libraries/relation.lib.php:143 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" -#: libraries/relation.lib.php:149 +#: libraries/relation.lib.php:144 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:150 +#: libraries/relation.lib.php:145 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:151 +#: libraries/relation.lib.php:146 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1158 +#: libraries/relation.lib.php:1153 msgid "no description" msgstr "brak opisu" @@ -3560,7 +3620,7 @@ msgstr "brak opisu" msgid "Slave configuration" msgstr "Konfiguracja serwera" -#: libraries/replication_gui.lib.php:53 server_replication.php:346 +#: libraries/replication_gui.lib.php:53 server_replication.php:345 msgid "Change or reconfigure master server" msgstr "" @@ -3572,17 +3632,12 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:711 -#: server_privileges.php:714 server_privileges.php:721 -#: server_synchronize.php:1170 +#: libraries/replication_gui.lib.php:261 server_privileges.php:710 +#: server_privileges.php:713 server_privileges.php:720 +#: server_synchronize.php:1169 msgid "User name" msgstr "Nazwa użytkownika" -#: libraries/replication_gui.lib.php:69 server_synchronize.php:1162 -#, fuzzy -msgid "Port" -msgstr "Sortuj" - #: libraries/replication_gui.lib.php:105 #, fuzzy msgid "Master status" @@ -3599,8 +3654,8 @@ msgid "Variable" msgstr "Zmienna" #: libraries/replication_gui.lib.php:117 server_status.php:737 -#: tbl_change.php:322 tbl_printview.php:368 tbl_select.php:137 -#: tbl_structure.php:728 +#: tbl_change.php:317 tbl_printview.php:367 tbl_select.php:136 +#: tbl_structure.php:726 msgid "Value" msgstr "Wartość" @@ -3614,38 +3669,38 @@ msgid "" "this list." msgstr "" -#: libraries/replication_gui.lib.php:242 server_replication.php:193 +#: libraries/replication_gui.lib.php:242 server_replication.php:192 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:256 server_privileges.php:716 +#: libraries/replication_gui.lib.php:256 server_privileges.php:715 msgid "Any user" msgstr "Dowolny użytkownik" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1920 server_privileges.php:1950 +#: libraries/replication_gui.lib.php:348 server_privileges.php:716 +#: server_privileges.php:783 server_privileges.php:807 +#: server_privileges.php:1924 server_privileges.php:1954 msgid "Use text field" msgstr "Użyj pola tekstowego" -#: libraries/replication_gui.lib.php:304 server_privileges.php:764 +#: libraries/replication_gui.lib.php:304 server_privileges.php:763 msgid "Any host" msgstr "Dowolny host" -#: libraries/replication_gui.lib.php:308 server_privileges.php:768 +#: libraries/replication_gui.lib.php:308 server_privileges.php:767 msgid "Local" msgstr "Host lokalny" -#: libraries/replication_gui.lib.php:314 server_privileges.php:773 +#: libraries/replication_gui.lib.php:314 server_privileges.php:772 msgid "This Host" msgstr "Ten host" -#: libraries/replication_gui.lib.php:320 server_privileges.php:779 +#: libraries/replication_gui.lib.php:320 server_privileges.php:778 msgid "Use Host Table" msgstr "Użyj tabeli hostów" -#: libraries/replication_gui.lib.php:333 server_privileges.php:792 +#: libraries/replication_gui.lib.php:333 server_privileges.php:791 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3671,8 +3726,8 @@ msgstr "Nieznany język: %1$s." msgid "Servers" msgstr "Serwery" -#: libraries/server_links.inc.php:52 server_engines.php:111 -#: server_engines.php:115 server_status.php:414 test/theme.php:104 +#: libraries/server_links.inc.php:52 server_engines.php:125 +#: server_engines.php:129 server_status.php:414 test/theme.php:104 msgid "Variables" msgstr "Zmienne" @@ -3693,12 +3748,12 @@ msgstr "Dziennik binarny" msgid "Processes" msgstr "Procesy" -#: libraries/server_links.inc.php:91 server_synchronize.php:1091 -#: server_synchronize.php:1099 +#: libraries/server_links.inc.php:91 server_synchronize.php:1090 +#: server_synchronize.php:1098 msgid "Synchronize" msgstr "" -#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1109 +#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1108 #, fuzzy msgid "Source database" msgstr "Szukaj w bazie danych" @@ -3718,7 +3773,7 @@ msgstr "Nowy serwer" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1111 +#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1110 #, fuzzy msgid "Target database" msgstr "Szukaj w bazie danych" @@ -3739,11 +3794,11 @@ msgstr "Wykonanie zapytania/zapytań SQL do bazy danych %s" msgid "Columns" msgstr "Nazwy kolumn" -#: libraries/sql_query_form.lib.php:342 sql.php:664 sql.php:665 sql.php:682 +#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "Pamiętaj zapytanie SQL" -#: libraries/sql_query_form.lib.php:349 sql.php:676 +#: libraries/sql_query_form.lib.php:349 sql.php:669 msgid "Let every user access this bookmark" msgstr "Pozwól na dostęp wszystkim użytkownikom" @@ -3841,12 +3896,12 @@ msgstr "" "zainstalowane są niezbędne rozszerzenia PHP, tak jak zostało to opisane w " "%sdokumentacji%s." -#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:139 -#: libraries/tbl_links.inc.php:140 +#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 +#: libraries/tbl_links.inc.php:139 msgid "Table seems to be empty!" msgstr "Tabela wydaje się pusta!" -#: libraries/tbl_links.inc.php:148 +#: libraries/tbl_links.inc.php:147 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" @@ -3882,12 +3937,12 @@ msgstr "" "cytowania odwrotnym ukośnikiem czy ujmowania w cudzysłowy, używając takiego " "formatu: a" -#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1263 -#: pdf_schema.php:1284 tbl_printview.php:142 tbl_structure.php:179 +#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1262 +#: pdf_schema.php:1283 tbl_printview.php:141 tbl_structure.php:178 msgid "Attributes" msgstr "Atrybuty" -#: libraries/tbl_properties.inc.php:136 +#: libraries/tbl_properties.inc.php:135 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -3896,11 +3951,11 @@ msgstr "" "Aby uzyskać listę dostępnych opcji transformacji i ich typów MIME, kliknij " "%sopisy transformacji%s" -#: libraries/tbl_properties.inc.php:144 +#: libraries/tbl_properties.inc.php:143 msgid "Transformation options" msgstr "Opcje transformacji" -#: libraries/tbl_properties.inc.php:145 +#: libraries/tbl_properties.inc.php:144 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
                            If you ever need to put a backslash (\"\\\") or a single " @@ -3912,47 +3967,47 @@ msgstr "" "apostrof (\"'\"), należy je poprzedzić odwrotnym ukośnikiem (np.: '\\\\xyz' " "lub 'a\\'b')." -#: libraries/tbl_properties.inc.php:392 +#: libraries/tbl_properties.inc.php:391 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "Brak" -#: libraries/tbl_properties.inc.php:393 +#: libraries/tbl_properties.inc.php:392 msgid "As defined:" msgstr "Zdefiniowana następująco:" -#: libraries/tbl_properties.inc.php:579 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:578 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
                            Please ask the " "author what %s does." msgstr "Transformacja ta nie ma opisu.
                            Proszę zapytać autora, co robi %s." -#: libraries/tbl_properties.inc.php:725 server_engines.php:57 -#: tbl_operations.php:354 +#: libraries/tbl_properties.inc.php:724 server_engines.php:56 +#: tbl_operations.php:352 msgid "Storage Engine" msgstr "Mechanizm składowania" -#: libraries/tbl_properties.inc.php:754 +#: libraries/tbl_properties.inc.php:753 msgid "PARTITION definition" msgstr "Definicja partycji" -#: libraries/tbl_properties.inc.php:775 pdf_pages.php:502 +#: libraries/tbl_properties.inc.php:774 pdf_pages.php:501 #: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214 -#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1124 tbl_indexes.php:247 -#: tbl_relation.php:565 +#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1022 tbl_indexes.php:246 +#: tbl_relation.php:563 msgid "Save" msgstr "Zachowaj" -#: libraries/tbl_properties.inc.php:779 tbl_structure.php:541 +#: libraries/tbl_properties.inc.php:778 tbl_structure.php:539 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "Dodaj %s pól" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:535 +#: libraries/tbl_properties.inc.php:782 tbl_structure.php:533 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -4156,8 +4211,8 @@ msgstr "Interfejs" msgid "Custom color" msgstr "Własny kolor" -#: main.php:162 pdf_pages.php:362 setup/lib/FormDisplay.tpl.php:216 -#: tbl_change.php:1173 +#: main.php:162 pdf_pages.php:361 setup/lib/FormDisplay.tpl.php:216 +#: tbl_change.php:1071 msgid "Reset" msgstr "Resetuj" @@ -4165,8 +4220,8 @@ msgstr "Resetuj" msgid "Protocol version" msgstr "Wersja protokołu" -#: main.php:188 server_privileges.php:1381 server_privileges.php:1528 -#: server_privileges.php:1642 server_privileges.php:2060 +#: main.php:188 server_privileges.php:1385 server_privileges.php:1532 +#: server_privileges.php:1646 server_privileges.php:2064 #: server_processlist.php:53 msgid "User" msgstr "Użytkownik" @@ -4251,14 +4306,23 @@ msgid "" "has been configured." msgstr "" -#: main.php:330 +#: main.php:314 +#, php-format +msgid "" +"The additional features for working with linked tables have been " +"deactivated. To find out why click %shere%s." +msgstr "" +"Dodatkowe możliwości pracy z połączonymi tabelami zostały wyłączone. Aby " +"dowiedzieć się, dlaczego - kliknij %stutaj%s." + +#: main.php:329 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:345 +#: main.php:344 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -4267,7 +4331,7 @@ msgstr "" "Wersja %s biblioteki MySQL dla PHP różni się od wersji %s serwera MySQL. " "Może to powodować nieprzewidywalne zachowanie." -#: main.php:357 +#: main.php:356 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -4281,69 +4345,69 @@ msgstr "" msgid "Reload navigation frame" msgstr "Indywidualizacja ramki nawigacyjnej" -#: navigation.php:204 server_databases.php:370 server_synchronize.php:1190 +#: navigation.php:203 server_databases.php:368 server_synchronize.php:1189 msgid "No databases" msgstr "Brak baz danych" -#: navigation.php:298 +#: navigation.php:297 #, fuzzy msgid "Filter" msgstr "Pliki" -#: navigation.php:299 setup/frames/index.inc.php:218 +#: navigation.php:298 setup/frames/index.inc.php:218 #: setup/lib/messages.inc.php:41 msgid "Clear" msgstr "Wyczyść" -#: navigation.php:330 navigation.php:331 +#: navigation.php:329 navigation.php:330 #, fuzzy #| msgid "Create table" msgctxt "short form" msgid "Create table" msgstr "Utwórz tabelę" -#: navigation.php:333 navigation.php:495 +#: navigation.php:332 navigation.php:494 msgid "Please select a database" msgstr "Proszę wybrać bazę danych" -#: pdf_pages.php:40 pdf_pages.php:46 pdf_pages.php:52 pdf_pages.php:57 +#: pdf_pages.php:39 pdf_pages.php:45 pdf_pages.php:51 pdf_pages.php:56 #, php-format msgid "%s table not found or not set in %s" msgstr "Tabela %s nie została znaleziona lub nie jest ustawiona w %s" -#: pdf_pages.php:265 +#: pdf_pages.php:264 msgid "Please choose a page to edit" msgstr "Proszę wybrać stronę do edycji" -#: pdf_pages.php:303 pmd_pdf.php:113 +#: pdf_pages.php:302 pmd_pdf.php:111 msgid "Create a page" msgstr "Utwórz nową stronę" -#: pdf_pages.php:309 +#: pdf_pages.php:308 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Numer strony:" -#: pdf_pages.php:313 +#: pdf_pages.php:312 #, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "Układ automatyczny" -#: pdf_pages.php:315 +#: pdf_pages.php:314 msgid "Internal relations" msgstr "Wewnętrzne relacje" -#: pdf_pages.php:338 +#: pdf_pages.php:337 msgid "Select Tables" msgstr "Wybierz tabele" -#: pdf_pages.php:361 +#: pdf_pages.php:360 msgid "Toggle scratchboard" msgstr "włącz / wyłącz scratchboard" -#: pdf_pages.php:524 +#: pdf_pages.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -4351,37 +4415,37 @@ msgstr "" "Aktualna strona ma powiązania z tabelą, która już nie istnieje. Czy chcesz " "usunąć te powiązania?" -#: pdf_schema.php:635 +#: pdf_schema.php:634 #, fuzzy, php-format #| msgid "The \"%s\" table doesn't exist!" msgid "The %s table doesn't exist!" msgstr "Tabela \"%s\" nie istnieje!" -#: pdf_schema.php:671 +#: pdf_schema.php:670 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Proszę skonfigurować współrzędne dla tabeli %s" -#: pdf_schema.php:994 +#: pdf_schema.php:993 #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" msgstr "Schemat bazy danych \"%s\" - strona %s" -#: pdf_schema.php:1012 +#: pdf_schema.php:1011 msgid "No tables" msgstr "Brak tabel" -#: pdf_schema.php:1031 pdf_schema.php:1140 +#: pdf_schema.php:1030 pdf_schema.php:1139 msgid "Relational schema" msgstr "Schemat relacyjny" -#: pdf_schema.php:1115 +#: pdf_schema.php:1114 msgid "Table of contents" msgstr "Spis treści" -#: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:145 -#: tbl_structure.php:182 tbl_tracking.php:277 +#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 +#: tbl_structure.php:181 tbl_tracking.php:272 msgid "Extra" msgstr "Dodatkowo" @@ -4393,7 +4457,7 @@ msgstr "Pokaż/ukryj lewe menu" msgid "Save position" msgstr "Zapamiętaj pozycję" -#: pmd_general.php:70 server_synchronize.php:428 server_synchronize.php:871 +#: pmd_general.php:70 server_synchronize.php:427 server_synchronize.php:870 msgid "Create table" msgstr "Utwórz tabelę" @@ -4464,32 +4528,32 @@ msgid "" "appropriate column name." msgstr "" -#: pmd_pdf.php:62 +#: pmd_pdf.php:60 #, fuzzy msgid "Page has been created" msgstr "Tabela %1$s została utworzona." -#: pmd_pdf.php:64 +#: pmd_pdf.php:62 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:84 +#: pmd_pdf.php:82 msgid "Export/Import to scale" msgstr "Eksport/import w skali" -#: pmd_pdf.php:88 +#: pmd_pdf.php:86 msgid "recommended" msgstr "zalecana" -#: pmd_pdf.php:93 +#: pmd_pdf.php:91 msgid "to/from page" msgstr "od/do strony" -#: querywindow.php:94 +#: querywindow.php:93 msgid "Import files" msgstr "Import plików" -#: querywindow.php:105 +#: querywindow.php:104 msgid "All" msgstr "Wszystko" @@ -4535,69 +4599,69 @@ msgstr "Informacje" msgid "Character Sets and Collations" msgstr "Kodowania napisów i metody porównywania napisów" -#: server_databases.php:51 +#: server_databases.php:49 msgid "No databases selected." msgstr "Żadna baza danych nie został wybrana." -#: server_databases.php:62 +#: server_databases.php:60 #, php-format msgid "%s databases have been dropped successfully." msgstr "%s baz danych zostało pomyślnie usuniętych." -#: server_databases.php:87 +#: server_databases.php:85 msgid "Databases statistics" msgstr "Statystyki baz danych" -#: server_databases.php:116 server_status.php:370 +#: server_databases.php:114 server_status.php:370 #: setup/lib/messages.inc.php:114 msgid "Tables" msgstr "Tabele" -#: server_databases.php:194 server_replication.php:180 -#: server_replication.php:208 +#: server_databases.php:192 server_replication.php:179 +#: server_replication.php:207 #, fuzzy msgid "Master replication" msgstr "Konfiguracja serwera" -#: server_databases.php:196 server_replication.php:247 +#: server_databases.php:194 server_replication.php:246 #, fuzzy msgid "Slave replication" msgstr "Konfiguracja serwera" -#: server_databases.php:229 +#: server_databases.php:227 #, fuzzy msgid "Jump to database" msgstr "Brak baz danych" -#: server_databases.php:266 +#: server_databases.php:264 #, fuzzy msgid "Not replicated" msgstr "Konfiguracja serwera" -#: server_databases.php:272 +#: server_databases.php:270 #, fuzzy #| msgid "Replication" msgid "Replicated" msgstr "Replikacja" -#: server_databases.php:288 +#: server_databases.php:286 #, php-format msgid "Check privileges for database "%s"." msgstr "Sprawdź uprawnienia bazy danych "%s"." -#: server_databases.php:292 server_databases.php:293 +#: server_databases.php:290 server_databases.php:291 msgid "Check Privileges" msgstr "Sprawdź uprawnienia" -#: server_databases.php:357 server_databases.php:358 +#: server_databases.php:355 server_databases.php:356 msgid "Enable Statistics" msgstr "Włącz statystyki" -#: server_databases.php:361 server_databases.php:362 +#: server_databases.php:359 server_databases.php:360 msgid "Disable Statistics" msgstr "Wyłącz statystyki" -#: server_databases.php:365 +#: server_databases.php:363 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -4605,123 +4669,123 @@ msgstr "" "Uwaga: Włączenie statystyk baz danych może spowodować duży ruch pomiędzy " "serwerem WWW a serwerem MySQL." -#: server_engines.php:48 +#: server_engines.php:47 msgid "Storage Engines" msgstr "Mechanizmy składowania" -#: server_export.php:20 +#: server_export.php:18 msgid "View dump (schema) of databases" msgstr "Zrzut baz danych" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:23 server_privileges.php:265 msgid "Includes all privileges except GRANT." msgstr "Wszystkie uprawnienia, oprócz GRANT." -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:24 server_privileges.php:191 +#: server_privileges.php:514 msgid "Allows altering the structure of existing tables." msgstr "Pozwól zmieniać strukturę istniejących tabel." -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:25 server_privileges.php:207 +#: server_privileges.php:520 msgid "Allows altering and dropping stored routines." msgstr "Pozwól modyfikować i usuwać procedury składowane." -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:26 server_privileges.php:183 +#: server_privileges.php:513 msgid "Allows creating new databases and tables." msgstr "Pozwól tworzyć nowe bazy danych i tabele." -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:27 server_privileges.php:206 +#: server_privileges.php:519 msgid "Allows creating stored routines." msgstr "Pozwól tworzyć procedury składowane." -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:513 msgid "Allows creating new tables." msgstr "Pozwól tworzyć nowe tabele." -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:29 server_privileges.php:194 +#: server_privileges.php:517 msgid "Allows creating temporary tables." msgstr "Pozwala tworzyć tabele tymczasowe." -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:30 server_privileges.php:208 +#: server_privileges.php:553 msgid "Allows creating, dropping and renaming user accounts." msgstr "Pozwól tworzyć, usuwać i zmieniać nazwy kont użytkowników." -#: server_privileges.php:32 server_privileges.php:199 -#: server_privileges.php:203 server_privileges.php:526 -#: server_privileges.php:530 +#: server_privileges.php:31 server_privileges.php:198 +#: server_privileges.php:202 server_privileges.php:525 +#: server_privileges.php:529 msgid "Allows creating new views." msgstr "Pozwól tworzyć perspektywy." -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:32 server_privileges.php:182 +#: server_privileges.php:505 msgid "Allows deleting data." msgstr "Pozwól usuwać dane." -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:33 server_privileges.php:184 +#: server_privileges.php:516 msgid "Allows dropping databases and tables." msgstr "Pozwól usuwać bazy danych i tabele." -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:34 server_privileges.php:516 msgid "Allows dropping tables." msgstr "Pozwól usuwać tabele." -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:35 server_privileges.php:199 +#: server_privileges.php:533 msgid "Allows to set up events for the event scheduler" msgstr "Pozwól ustawiać zdarzenia w harmonogramie zdarzeń" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:36 server_privileges.php:209 +#: server_privileges.php:521 msgid "Allows executing stored routines." msgstr "Pozwól wykonywać procedury składowane." -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:37 server_privileges.php:188 +#: server_privileges.php:508 msgid "Allows importing data from and exporting data into files." msgstr "Pozwól importować i eksportować dane z/do plików." -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:38 server_privileges.php:539 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Pozwól dodawać użytkowników i nadawać uprawnienia bez przeładowywania tabeli " "uprawnień." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:515 msgid "Allows creating and dropping indexes." msgstr "Pozwól tworzyć i usuwać indeksy." -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:40 server_privileges.php:180 +#: server_privileges.php:441 server_privileges.php:503 msgid "Allows inserting and replacing data." msgstr "Pozwól dodawać i zamieniać dane." -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:41 server_privileges.php:195 +#: server_privileges.php:548 msgid "Allows locking tables for the current thread." msgstr "Pozwól blokować tabele dla aktualnego wątku." -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:42 server_privileges.php:645 +#: server_privileges.php:647 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Ogranicz liczbę nowych połączeń, które może otworzyć użytkownik w ciągu " "godziny." -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:43 server_privileges.php:633 +#: server_privileges.php:635 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Ogranicz liczbę zapytań, które może wysłać użytkownik w ciągu godziny." -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:44 server_privileges.php:639 +#: server_privileges.php:641 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -4729,60 +4793,60 @@ msgstr "" "Ogranicz liczbę poleceń zmieniających jakąkolwiek tabelę lub bazę danych, " "które może wykonać użytkownik w ciągu godziny." -#: server_privileges.php:46 server_privileges.php:652 -#: server_privileges.php:654 +#: server_privileges.php:45 server_privileges.php:651 +#: server_privileges.php:653 msgid "Limits the number of simultaneous connections the user may have." msgstr "Ogranicz liczbę jednoczesnych połączeń, które może użytkownik." -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:46 server_privileges.php:187 +#: server_privileges.php:543 msgid "Allows viewing processes of all users" msgstr "Pozwól oglądać procesy wszystkich użytkowyników" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:47 server_privileges.php:189 +#: server_privileges.php:447 server_privileges.php:549 msgid "Has no effect in this MySQL version." msgstr "Nie ma żadnych skutków w tej wersji MySQL." -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:48 server_privileges.php:185 +#: server_privileges.php:544 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Pozwól przeładowywać ustawienia serwera i opróżniać pamięć podręczną serwera." -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:197 +#: server_privileges.php:551 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Nadaj użytkownikowi prawo, by zapytać gdzie są serwery podrzędne / nadrzędne." -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:50 server_privileges.php:196 +#: server_privileges.php:552 msgid "Needed for the replication slaves." msgstr "Potrzebne dla replikacji serwera podrzędnego." -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:51 server_privileges.php:179 +#: server_privileges.php:438 server_privileges.php:502 msgid "Allows reading data." msgstr "Pozwól czytać dane." -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:52 server_privileges.php:192 +#: server_privileges.php:546 msgid "Gives access to the complete list of databases." msgstr "Daj dostęp do pełnej listy baz danych." -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:53 server_privileges.php:203 +#: server_privileges.php:205 server_privileges.php:518 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Pozwól wykonywać zapytania SHOW CREATE VIEW." -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:54 server_privileges.php:186 +#: server_privileges.php:545 msgid "Allows shutting down the server." msgstr "Pozwól wyłączyć serwer." -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:55 server_privileges.php:193 +#: server_privileges.php:542 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -4792,157 +4856,157 @@ msgstr "" "połączeń; Wymagane dla większość operacji administracyjnych, takich jak " "ustawianie zmiennych globalnych czy unicestwianie wątków innych użytkowników." -#: server_privileges.php:57 server_privileges.php:201 -#: server_privileges.php:535 +#: server_privileges.php:56 server_privileges.php:200 +#: server_privileges.php:534 msgid "Allows creating and dropping triggers" msgstr "Pozwól tworzyć i usuwać wyzwalacze." -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:57 server_privileges.php:181 +#: server_privileges.php:444 server_privileges.php:504 msgid "Allows changing data." msgstr "Pozwól zmieniać dane." -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:58 server_privileges.php:259 msgid "No privileges." msgstr "Brak uprawnień." -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:301 server_privileges.php:302 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Brak" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1710 server_privileges.php:1716 +#: server_privileges.php:430 server_privileges.php:565 +#: server_privileges.php:1714 server_privileges.php:1720 msgid "Table-specific privileges" msgstr "Uprawnienia specyficzne dla tabel" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1532 +#: server_privileges.php:431 server_privileges.php:573 +#: server_privileges.php:1536 msgid " Note: MySQL privilege names are expressed in English " msgstr " Uwaga: Uprawnienia MySQL są oznaczone w języku angielskim " -#: server_privileges.php:563 server_privileges.php:1531 +#: server_privileges.php:562 server_privileges.php:1535 msgid "Global privileges" msgstr "Globalne uprawnienia" -#: server_privileges.php:565 server_privileges.php:1710 +#: server_privileges.php:564 server_privileges.php:1714 msgid "Database-specific privileges" msgstr "Uprawnienia specyficzne dla baz danych" -#: server_privileges.php:610 +#: server_privileges.php:609 msgid "Administration" msgstr "Administracja" -#: server_privileges.php:630 +#: server_privileges.php:629 msgid "Resource limits" msgstr "Ograniczenia zasobów" -#: server_privileges.php:631 +#: server_privileges.php:630 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Uwaga: Ustawienie tych opcji na 0 (zero) usuwa ograniczenie." -#: server_privileges.php:708 +#: server_privileges.php:707 msgid "Login Information" msgstr "Dane użytkownika" -#: server_privileges.php:802 +#: server_privileges.php:801 msgid "Do not change the password" msgstr "Nie zmieniaj hasła" -#: server_privileges.php:835 server_privileges.php:2197 +#: server_privileges.php:834 server_privileges.php:2201 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Nie znaleziono użytkownika(ów)." -#: server_privileges.php:879 +#: server_privileges.php:878 #, php-format msgid "The user %s already exists!" msgstr "Użytkownik %s już istnieje!" -#: server_privileges.php:962 +#: server_privileges.php:961 msgid "You have added a new user." msgstr "Nowy użytkownik został dodany." -#: server_privileges.php:1183 +#: server_privileges.php:1184 #, php-format msgid "You have updated the privileges for %s." msgstr "Uaktualniłeś uprawnienia dla %s." -#: server_privileges.php:1207 +#: server_privileges.php:1208 #, php-format msgid "You have revoked the privileges for %s" msgstr "Uprawnienia dla %s zostały cofnięte" -#: server_privileges.php:1243 +#: server_privileges.php:1244 #, php-format msgid "The password for %s was changed successfully." msgstr "Hasło dla %s zostało pomyślnie zmienione." -#: server_privileges.php:1263 +#: server_privileges.php:1264 #, php-format msgid "Deleting %s" msgstr "Usuwanie %s" -#: server_privileges.php:1274 +#: server_privileges.php:1275 msgid "No users selected for deleting!" msgstr "Żaden użytkownik ze został zaznaczony do usunięcia!" -#: server_privileges.php:1277 +#: server_privileges.php:1278 msgid "Reloading the privileges" msgstr "Przeładuj uprawnienia" -#: server_privileges.php:1292 +#: server_privileges.php:1296 msgid "The selected users have been deleted successfully." msgstr "Wybrani użytkownicy zostali pomyślnie usunięci." -#: server_privileges.php:1327 +#: server_privileges.php:1331 msgid "The privileges were reloaded successfully." msgstr "Uprawnienia zostały pomyślnie przeładowane." -#: server_privileges.php:1355 server_privileges.php:1641 +#: server_privileges.php:1359 server_privileges.php:1645 msgid "Edit Privileges" msgstr "Edytuj uprawnienia" -#: server_privileges.php:1364 +#: server_privileges.php:1368 msgid "Revoke" msgstr "Cofnij" -#: server_privileges.php:1396 +#: server_privileges.php:1400 msgid "User overview" msgstr "Opis użytkownika" -#: server_privileges.php:1533 server_privileges.php:1715 -#: server_privileges.php:2064 +#: server_privileges.php:1537 server_privileges.php:1719 +#: server_privileges.php:2068 msgid "Grant" msgstr "Nadawanie" -#: server_privileges.php:1552 server_privileges.php:2154 +#: server_privileges.php:1556 server_privileges.php:2158 msgid "Any" msgstr "Dowolny" -#: server_privileges.php:1601 server_privileges.php:1625 -#: server_privileges.php:2019 server_privileges.php:2208 +#: server_privileges.php:1605 server_privileges.php:1629 +#: server_privileges.php:2023 server_privileges.php:2212 msgid "Add a new User" msgstr "Dodaj nowego użytkownika" -#: server_privileges.php:1606 +#: server_privileges.php:1610 msgid "Remove selected users" msgstr "Usuń zaznaczonych użytkowników" -#: server_privileges.php:1609 +#: server_privileges.php:1613 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Cofnij wszystkie aktywne uprawnienia użytkownikom, a następnie usuń ich." -#: server_privileges.php:1610 server_privileges.php:1611 -#: server_privileges.php:1612 +#: server_privileges.php:1614 server_privileges.php:1615 +#: server_privileges.php:1616 msgid "Drop the databases that have the same names as the users." msgstr "Usuń bazy danych o takich samych nazwach jak użytkownicy." -#: server_privileges.php:1628 +#: server_privileges.php:1632 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4955,96 +5019,96 @@ msgstr "" "może się różnić od uprawnień jakich faktycznie używa serwer. W takim " "przypadku powinieneś przed dalszą pracą %sprzeładować uprawnienia%s." -#: server_privileges.php:1676 +#: server_privileges.php:1680 msgid "The selected user was not found in the privilege table." msgstr "Wybrany użytkownik nie został znaleziony w tabeli uprawnień." -#: server_privileges.php:1716 +#: server_privileges.php:1720 msgid "Column-specific privileges" msgstr "Uprawnienia specyficzne dla kolumn" -#: server_privileges.php:1917 +#: server_privileges.php:1921 msgid "Add privileges on the following database" msgstr "Dodaj uprawnienia dla następującej bazy danych" -#: server_privileges.php:1935 +#: server_privileges.php:1939 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "Aby użyć symboli wieloznacznych _ i % w znaczeniu dosłownym, należy je " "poprzedzić znakiem \\ " -#: server_privileges.php:1938 +#: server_privileges.php:1942 msgid "Add privileges on the following table" msgstr "Dodaj uprawnienia dla następującej tabeli" -#: server_privileges.php:1995 +#: server_privileges.php:1999 msgid "Change Login Information / Copy User" msgstr "Zmień dane użytkownika / Skopiuj użytkownika" -#: server_privileges.php:1998 +#: server_privileges.php:2002 msgid "Create a new user with the same privileges and ..." msgstr "Utwórz nowego użytkownika z takimi samymi uprawnieniami i …" -#: server_privileges.php:2000 +#: server_privileges.php:2004 msgid "... keep the old one." msgstr "… pozostaw starego." -#: server_privileges.php:2001 +#: server_privileges.php:2005 msgid " ... delete the old one from the user tables." msgstr " … usuń starego z tabel użytkowników." -#: server_privileges.php:2002 +#: server_privileges.php:2006 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr " … odbierz wszystkie aktywne uprawnienia staremu, a następnie go usuń." -#: server_privileges.php:2003 +#: server_privileges.php:2007 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" " … usuń starego z tabel użytkowników, a następnie przeładuj uprawnienia." -#: server_privileges.php:2025 +#: server_privileges.php:2029 msgid "Database for user" msgstr "Baza danych dla użytkownika" -#: server_privileges.php:2029 +#: server_privileges.php:2033 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Brak" -#: server_privileges.php:2030 +#: server_privileges.php:2034 msgid "Create database with same name and grant all privileges" msgstr "Utwórz bazę danych z taką samą nazwą i przyznaj wszystkie uprawnienia" -#: server_privileges.php:2031 +#: server_privileges.php:2035 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" "Przyznaj wszystkie uprawienia do baz danych o nazwach pasujących do maski " "(nazwaużytkownika_%)" -#: server_privileges.php:2034 +#: server_privileges.php:2038 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "Sprawdź uprawnienia bazy danych "%s"." -#: server_privileges.php:2057 +#: server_privileges.php:2061 #, php-format msgid "Users having access to "%s"" msgstr "Użytkownicy mający dostęp do "%s"" -#: server_privileges.php:2165 +#: server_privileges.php:2169 msgid "global" msgstr "globalnie" -#: server_privileges.php:2167 +#: server_privileges.php:2171 msgid "database-specific" msgstr "specyficzne dla bazy danych" -#: server_privileges.php:2169 +#: server_privileges.php:2173 msgid "wildcard" msgstr "znak wieloznaczny" @@ -5065,55 +5129,55 @@ msgstr "" msgid "ID" msgstr "ID" -#: server_replication.php:50 +#: server_replication.php:49 msgid "Unknown error" msgstr "" -#: server_replication.php:57 +#: server_replication.php:56 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:64 +#: server_replication.php:63 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:70 +#: server_replication.php:69 msgid "Unable to change master" msgstr "" -#: server_replication.php:73 +#: server_replication.php:72 #, php-format msgid "Master server changed succesfully to %s" msgstr "" -#: server_replication.php:181 +#: server_replication.php:180 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:183 server_status.php:391 +#: server_replication.php:182 server_status.php:391 #, fuzzy msgid "Show master status" msgstr "Status serwera podrzędnego" -#: server_replication.php:186 +#: server_replication.php:185 msgid "Show connected slaves" msgstr "" -#: server_replication.php:209 +#: server_replication.php:208 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:216 +#: server_replication.php:215 #, fuzzy msgid "Master configuration" msgstr "Konfiguracja serwera" -#: server_replication.php:217 +#: server_replication.php:216 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -5122,111 +5186,111 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:220 +#: server_replication.php:219 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:221 +#: server_replication.php:220 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:224 +#: server_replication.php:223 #, fuzzy msgid "Please select databases:" msgstr "Proszę wybrać bazę danych" -#: server_replication.php:227 +#: server_replication.php:226 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: server_replication.php:229 +#: server_replication.php:228 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: server_replication.php:292 +#: server_replication.php:291 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:295 +#: server_replication.php:294 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:304 +#: server_replication.php:303 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:307 +#: server_replication.php:306 msgid "See slave status table" msgstr "" -#: server_replication.php:310 +#: server_replication.php:309 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:321 +#: server_replication.php:320 msgid "Control slave:" msgstr "" -#: server_replication.php:324 +#: server_replication.php:323 #, fuzzy msgid "Full start" msgstr "Pełny tekst" -#: server_replication.php:324 +#: server_replication.php:323 #, fuzzy msgid "Full stop" msgstr "Pełny tekst" -#: server_replication.php:325 +#: server_replication.php:324 msgid "Reset slave" msgstr "" -#: server_replication.php:326 +#: server_replication.php:325 #, php-format msgid "SQL Thread %s only" msgstr "" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 #, fuzzy msgid "Start" msgstr "Strona startowa" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 msgid "Stop" msgstr "" -#: server_replication.php:327 +#: server_replication.php:326 #, php-format msgid "IO Thread %s only" msgstr "" -#: server_replication.php:331 +#: server_replication.php:330 msgid "Error management:" msgstr "" -#: server_replication.php:333 +#: server_replication.php:332 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:335 +#: server_replication.php:334 msgid "Skip current error" msgstr "" -#: server_replication.php:336 +#: server_replication.php:335 msgid "Skip next" msgstr "" -#: server_replication.php:339 +#: server_replication.php:338 msgid "errors." msgstr "" -#: server_replication.php:354 +#: server_replication.php:353 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -6051,116 +6115,116 @@ msgstr "Rodzaj zapytania" msgid "Replication status" msgstr "Replikacja" -#: server_synchronize.php:93 +#: server_synchronize.php:92 #, fuzzy msgid "Could not connect to the source" msgstr "Nie można połączyć się z serwerem MySQL" -#: server_synchronize.php:96 +#: server_synchronize.php:95 #, fuzzy msgid "Could not connect to the target" msgstr "Nie można połączyć się z serwerem MySQL" -#: server_synchronize.php:121 server_synchronize.php:124 tbl_create.php:77 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:264 +#: server_synchronize.php:263 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:271 +#: server_synchronize.php:270 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:399 server_synchronize.php:838 +#: server_synchronize.php:398 server_synchronize.php:837 msgid "not present" msgstr "" -#: server_synchronize.php:423 server_synchronize.php:866 +#: server_synchronize.php:422 server_synchronize.php:865 #, fuzzy msgid "Structure Difference" msgstr "Tylko struktura" -#: server_synchronize.php:424 server_synchronize.php:867 +#: server_synchronize.php:423 server_synchronize.php:866 msgid "Data Difference" msgstr "" -#: server_synchronize.php:429 server_synchronize.php:872 +#: server_synchronize.php:428 server_synchronize.php:871 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:430 server_synchronize.php:873 +#: server_synchronize.php:429 server_synchronize.php:872 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:431 server_synchronize.php:874 +#: server_synchronize.php:430 server_synchronize.php:873 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:432 server_synchronize.php:875 +#: server_synchronize.php:431 server_synchronize.php:874 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:433 server_synchronize.php:876 +#: server_synchronize.php:432 server_synchronize.php:875 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:434 server_synchronize.php:877 +#: server_synchronize.php:433 server_synchronize.php:876 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:435 server_synchronize.php:878 +#: server_synchronize.php:434 server_synchronize.php:877 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:445 server_synchronize.php:889 +#: server_synchronize.php:444 server_synchronize.php:888 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:448 server_synchronize.php:893 +#: server_synchronize.php:447 server_synchronize.php:892 msgid "Apply Selected Changes" msgstr "" -#: server_synchronize.php:450 server_synchronize.php:895 +#: server_synchronize.php:449 server_synchronize.php:894 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:463 +#: server_synchronize.php:462 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:941 +#: server_synchronize.php:940 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:1002 +#: server_synchronize.php:1001 msgid "The following queries have been executed:" msgstr "" -#: server_synchronize.php:1121 +#: server_synchronize.php:1120 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1122 +#: server_synchronize.php:1121 #, fuzzy #| msgid "Insecure connection" msgid "Current connection" msgstr "Niezabezpieczone połączenie" -#: server_synchronize.php:1151 +#: server_synchronize.php:1150 #, fuzzy, php-format #| msgid "Configuration" msgid "Configuration: %s" msgstr "Konfiguracja" -#: server_synchronize.php:1166 +#: server_synchronize.php:1165 msgid "Socket" msgstr "" -#: server_synchronize.php:1212 +#: server_synchronize.php:1211 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -6754,8 +6818,8 @@ msgstr "" #: setup/lib/messages.inc.php:128 msgid "" "Configure phpMyAdmin database to gain access to additional features, see " -"[a@../Documentation.html#linked-tables]linked-tables infrastructure[/a] in " -"documentation" +"[a@../Documentation.html#linked-tables]phpMyAdmin configuration storage[/a] " +"in documentation" msgstr "" #: setup/lib/messages.inc.php:129 setup/lib/messages.inc.php:290 @@ -7885,117 +7949,117 @@ msgstr "" msgid "ZIP" msgstr "ZIP" -#: sql.php:495 tbl_replace.php:385 +#: sql.php:494 tbl_replace.php:384 #, php-format msgid "Inserted row id: %1$d" msgstr "Identyfikator wstawionego rekordu: %1$d" -#: sql.php:512 +#: sql.php:511 msgid "Showing as PHP code" msgstr "Wyświetlany jest kod PHP." -#: sql.php:515 tbl_replace.php:359 +#: sql.php:514 tbl_replace.php:358 msgid "Showing SQL query" msgstr "Wyświetlane jest zapytanie SQL." -#: sql.php:517 +#: sql.php:516 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Sprawdź poprawność SQL" -#: sql.php:638 +#: sql.php:631 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemy z indeksami tabeli `%s`" -#: sql.php:670 +#: sql.php:663 msgid "Label" msgstr "Nazwa" -#: tbl_addfield.php:188 tbl_alter.php:102 tbl_indexes.php:97 +#: tbl_addfield.php:185 tbl_alter.php:100 tbl_indexes.php:97 #, php-format msgid "Table %1$s has been altered successfully" msgstr "Tabela %1$s została pomyślnie zmodyfikowana" -#: tbl_change.php:250 tbl_select.php:26 tbl_select.php:27 tbl_select.php:30 -#: tbl_select.php:33 +#: tbl_change.php:245 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_select.php:32 msgid "Browse foreign values" msgstr "Przeglądaj zewnętrzne wartości" -#: tbl_change.php:280 tbl_change.php:318 +#: tbl_change.php:275 tbl_change.php:313 msgid "Function" msgstr "Funkcja" -#: tbl_change.php:300 tbl_indexes.php:199 tbl_indexes.php:224 +#: tbl_change.php:295 tbl_indexes.php:198 tbl_indexes.php:223 msgid "Ignore" msgstr "Ignoruj" -#: tbl_change.php:725 +#: tbl_change.php:720 #, fuzzy #| msgid " Because of its length,
                            this field might not be editable " msgid " Because of its length,
                            this column might not be editable " msgstr " To pole może nie dać się edytować
                            z powodu swojej długości " -#: tbl_change.php:884 +#: tbl_change.php:835 msgid "Remove BLOB Repository Reference" msgstr "Usuń odołanie do repozytorium BLOBów" -#: tbl_change.php:890 +#: tbl_change.php:841 msgid "Binary - do not edit" msgstr " Binarne - nie do edycji " -#: tbl_change.php:983 +#: tbl_change.php:889 msgid "Upload to BLOB repository" msgstr "Wrzuć do repozytorium BLOBów" -#: tbl_change.php:1128 +#: tbl_change.php:1026 msgid "Insert as new row" msgstr "Dodaj jako nowy rekord" -#: tbl_change.php:1129 +#: tbl_change.php:1027 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:1130 +#: tbl_change.php:1028 #, fuzzy msgid "Show insert query" msgstr "Wyświetlane jest zapytanie SQL." -#: tbl_change.php:1145 +#: tbl_change.php:1043 msgid "Go back to previous page" msgstr "Wróć" -#: tbl_change.php:1146 +#: tbl_change.php:1044 msgid "Insert another new row" msgstr "Dodaj nowy rekord" -#: tbl_change.php:1150 +#: tbl_change.php:1048 msgid "Go back to this page" msgstr "Powrót do tej strony" -#: tbl_change.php:1158 +#: tbl_change.php:1056 msgid "Edit next row" msgstr "Edytuj następny rekord" -#: tbl_change.php:1169 +#: tbl_change.php:1067 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Klawisz TAB przemieszcza pomiędzy wartościami, CTRL+strzałka przenosi w " "dowolne miejsce" -#: tbl_change.php:1207 +#: tbl_change.php:1105 #, php-format msgid "Restart insertion with %s rows" msgstr "Odśwież wstawianie z %s rekordami" -#: tbl_create.php:57 +#: tbl_create.php:55 #, php-format msgid "Table %s already exists!" msgstr "Tabela %s już istnieje!" -#: tbl_create.php:244 +#: tbl_create.php:241 #, php-format msgid "Table %1$s has been created." msgstr "Tabela %1$s została utworzona." @@ -8016,204 +8080,204 @@ msgstr "Nie można zmienić nazwy indeksu na PRIMARY!" msgid "No index parts defined!" msgstr "Brak zdefiniowanych części indeksu!" -#: tbl_indexes.php:159 +#: tbl_indexes.php:158 msgid "Create a new index" msgstr "Utwórz nowy indeksu" -#: tbl_indexes.php:161 +#: tbl_indexes.php:160 msgid "Modify an index" msgstr "Modyfikacja indeksu" -#: tbl_indexes.php:167 +#: tbl_indexes.php:166 msgid "Index name:" msgstr "Nazwa indeksu :" -#: tbl_indexes.php:173 +#: tbl_indexes.php:172 msgid "Index type:" msgstr "Rodzaj indeksu :" -#: tbl_indexes.php:183 +#: tbl_indexes.php:182 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" "(\"PRIMARY\" musi być nazwą jedynie klucza podstawowego!)" -#: tbl_indexes.php:250 +#: tbl_indexes.php:249 #, php-format msgid "Add to index  %s column(s)" msgstr "Dodaj  %s kolumn do indeksu " -#: tbl_indexes.php:255 tbl_structure.php:588 tbl_structure.php:599 +#: tbl_indexes.php:254 tbl_structure.php:586 tbl_structure.php:597 msgid "Column count has to be larger than zero." msgstr "Liczba kolumn musi być większa niż zero." -#: tbl_move_copy.php:45 +#: tbl_move_copy.php:44 msgid "Can't move table to same one!" msgstr "Nie można przenieść tabeli do niej samej!" -#: tbl_move_copy.php:47 +#: tbl_move_copy.php:46 msgid "Can't copy table to same one!" msgstr "Nie można skopiować tabeli do niej samej!" -#: tbl_move_copy.php:55 +#: tbl_move_copy.php:54 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabela %s została przeniesiona do %s." -#: tbl_move_copy.php:57 +#: tbl_move_copy.php:56 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabela %s została skopiowana do %s." -#: tbl_move_copy.php:81 +#: tbl_move_copy.php:80 msgid "The table name is empty!" msgstr "Brak nazwy tabeli!" -#: tbl_operations.php:248 +#: tbl_operations.php:246 msgid "Alter table order by" msgstr "Sortowanie tabeli wg" -#: tbl_operations.php:257 +#: tbl_operations.php:255 msgid "(singly)" msgstr "(pojedynczo)" -#: tbl_operations.php:277 +#: tbl_operations.php:275 msgid "Move table to (database.table):" msgstr "Przenieś tabelę do (bazadanych.tabela):" -#: tbl_operations.php:335 +#: tbl_operations.php:333 msgid "Table options" msgstr "Opcje tabeli" -#: tbl_operations.php:339 +#: tbl_operations.php:337 msgid "Rename table to" msgstr "Zmień nazwę tabeli na" -#: tbl_operations.php:510 +#: tbl_operations.php:508 msgid "Copy table to (database.table):" msgstr "Skopiuj tabelę do (bazadanych.tabela):" -#: tbl_operations.php:557 +#: tbl_operations.php:555 msgid "Switch to copied table" msgstr "Przełącz na skopiowaną tabelę" -#: tbl_operations.php:569 +#: tbl_operations.php:567 msgid "Table maintenance" msgstr "Zarządzanie tabelą" -#: tbl_operations.php:590 +#: tbl_operations.php:588 msgid "Defragment table" msgstr "Defragmentuj tabelę" -#: tbl_operations.php:629 +#: tbl_operations.php:627 #, php-format msgid "Table %s has been flushed" msgstr "Tabela %s została przeładowana" -#: tbl_operations.php:635 +#: tbl_operations.php:633 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Przeładuj tabelę (\"FLUSH\")" -#: tbl_operations.php:650 +#: tbl_operations.php:648 msgid "Partition maintenance" msgstr "Zarządzanie partycjami" -#: tbl_operations.php:658 +#: tbl_operations.php:656 #, php-format msgid "Partition %s" msgstr "Partycja %s" -#: tbl_operations.php:661 +#: tbl_operations.php:659 msgid "Analyze" msgstr "Analizuj" -#: tbl_operations.php:662 +#: tbl_operations.php:660 msgid "Check" msgstr "Sprawdź" -#: tbl_operations.php:663 +#: tbl_operations.php:661 msgid "Optimize" msgstr "Optymalizuj" -#: tbl_operations.php:664 +#: tbl_operations.php:662 msgid "Rebuild" msgstr "Przebuduj" -#: tbl_operations.php:665 +#: tbl_operations.php:663 msgid "Repair" msgstr "Napraw" -#: tbl_operations.php:677 +#: tbl_operations.php:675 msgid "Remove partitioning" msgstr "Usuń partycjonowanie" -#: tbl_operations.php:703 +#: tbl_operations.php:701 msgid "Check referential integrity:" msgstr "Sprawdź spójność powiązań:" -#: tbl_printview.php:73 +#: tbl_printview.php:72 msgid "Show tables" msgstr "Pokaż tabele" -#: tbl_printview.php:308 tbl_structure.php:655 +#: tbl_printview.php:307 tbl_structure.php:653 msgid "Space usage" msgstr "Wykorzystanie przestrzeni" -#: tbl_printview.php:312 tbl_structure.php:659 +#: tbl_printview.php:311 tbl_structure.php:657 msgid "Usage" msgstr "Wykorzystanie" -#: tbl_printview.php:339 tbl_structure.php:686 +#: tbl_printview.php:338 tbl_structure.php:684 msgid "Effective" msgstr "Efektywne" -#: tbl_printview.php:364 tbl_structure.php:724 +#: tbl_printview.php:363 tbl_structure.php:722 msgid "Row Statistics" msgstr "Statystyka rekordów" -#: tbl_printview.php:367 tbl_structure.php:727 +#: tbl_printview.php:366 tbl_structure.php:725 msgid "Statements" msgstr "Cecha" -#: tbl_printview.php:378 tbl_structure.php:739 +#: tbl_printview.php:377 tbl_structure.php:737 msgid "static" msgstr "" -#: tbl_printview.php:380 tbl_structure.php:741 +#: tbl_printview.php:379 tbl_structure.php:739 msgid "dynamic" msgstr "zmienny" -#: tbl_printview.php:402 tbl_structure.php:784 +#: tbl_printview.php:401 tbl_structure.php:782 msgid "Row length" msgstr "Długość rekordu" -#: tbl_printview.php:412 tbl_structure.php:792 +#: tbl_printview.php:411 tbl_structure.php:790 msgid " Row size " msgstr " Rozmiar rekordu " -#: tbl_relation.php:278 +#: tbl_relation.php:276 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" "Błąd podczas tworzenia klucza zewnętrznego na %1$s (należy sprawdzić typy " "danych)" -#: tbl_relation.php:404 +#: tbl_relation.php:402 #, fuzzy #| msgid "Internal relations" msgid "Internal relation" msgstr "Wewnętrzne relacje" -#: tbl_relation.php:406 +#: tbl_relation.php:404 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" "Wewnętrzna relacja jest zbędna gdy istnieje odpowiednia relacja FOREIGN KEY." -#: tbl_relation.php:412 +#: tbl_relation.php:410 msgid "Foreign key constraint" msgstr "" @@ -8221,232 +8285,232 @@ msgstr "" msgid "No rows selected" msgstr "Żaden rekord nie został zaznaczony" -#: tbl_select.php:130 +#: tbl_select.php:129 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Wykonaj \"zapytanie przez przykład\" (znak globalny: \"%\")" -#: tbl_select.php:136 +#: tbl_select.php:135 msgid "Operator" msgstr "Operator" -#: tbl_select.php:267 +#: tbl_select.php:266 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "Wybór pól (co najmniej jedno):" -#: tbl_select.php:285 +#: tbl_select.php:284 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Dodaj warunki przeszukiwania (warunek dla \"where\"):" -#: tbl_select.php:292 +#: tbl_select.php:291 msgid "Number of rows per page" msgstr "rekordów na stronie" -#: tbl_select.php:298 +#: tbl_select.php:297 msgid "Display order:" msgstr "Kolejność wyświetlania:" -#: tbl_structure.php:160 +#: tbl_structure.php:159 msgid "Browse distinct values" msgstr "Przeglądaj różne wartości" -#: tbl_structure.php:360 +#: tbl_structure.php:358 #, fuzzy #| msgid "None" msgctxt "None for default" msgid "None" msgstr "Brak" -#: tbl_structure.php:373 +#: tbl_structure.php:371 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Column %s has been dropped" msgstr "Tabela %s została usunięta" -#: tbl_structure.php:384 +#: tbl_structure.php:382 #, php-format msgid "A primary key has been added on %s" msgstr "Do %s dodany został klucz podstawowy" -#: tbl_structure.php:399 tbl_structure.php:413 tbl_structure.php:427 +#: tbl_structure.php:397 tbl_structure.php:411 tbl_structure.php:425 #, php-format msgid "An index has been added on %s" msgstr "Do %s dodany został indeks" -#: tbl_structure.php:505 tbl_structure.php:507 +#: tbl_structure.php:503 tbl_structure.php:505 msgid "Relation view" msgstr "Widok relacyjny" -#: tbl_structure.php:514 tbl_structure.php:516 +#: tbl_structure.php:512 tbl_structure.php:514 msgid "Propose table structure" msgstr "Analiza zawartości" -#: tbl_structure.php:539 +#: tbl_structure.php:537 #, fuzzy #| msgid "Add %s field(s)" msgid "Add column" msgstr "Dodaj %s pól" -#: tbl_structure.php:553 +#: tbl_structure.php:551 msgid "At End of Table" msgstr "Na końcu tabeli" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At Beginning of Table" msgstr "Na początku tabeli" -#: tbl_structure.php:555 +#: tbl_structure.php:553 #, php-format msgid "After %s" msgstr "Po %s" -#: tbl_structure.php:593 +#: tbl_structure.php:591 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "Utwórz indeks dla %s kolumn" -#: tbl_structure.php:755 +#: tbl_structure.php:753 msgid "partitioned" msgstr "partycjonowanie" -#: tbl_tracking.php:113 +#: tbl_tracking.php:109 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:186 +#: tbl_tracking.php:182 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "" -#: tbl_tracking.php:194 +#: tbl_tracking.php:190 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "" -#: tbl_tracking.php:202 +#: tbl_tracking.php:198 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "" -#: tbl_tracking.php:212 +#: tbl_tracking.php:208 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:219 +#: tbl_tracking.php:215 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:220 +#: tbl_tracking.php:216 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:229 +#: tbl_tracking.php:225 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:250 tbl_tracking.php:378 +#: tbl_tracking.php:245 tbl_tracking.php:373 msgid "Close" msgstr "" -#: tbl_tracking.php:261 +#: tbl_tracking.php:256 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:380 +#: tbl_tracking.php:375 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:396 tbl_tracking.php:503 +#: tbl_tracking.php:391 tbl_tracking.php:498 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "" -#: tbl_tracking.php:409 tbl_tracking.php:460 +#: tbl_tracking.php:404 tbl_tracking.php:455 #, fuzzy msgid "Date" msgstr "Dane" -#: tbl_tracking.php:410 tbl_tracking.php:461 +#: tbl_tracking.php:405 tbl_tracking.php:456 #, fuzzy msgid "Username" msgstr "Użytkownik:" -#: tbl_tracking.php:411 +#: tbl_tracking.php:406 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:462 +#: tbl_tracking.php:457 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:506 +#: tbl_tracking.php:501 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:507 +#: tbl_tracking.php:502 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:520 +#: tbl_tracking.php:515 #, fuzzy, php-format msgid "Export as %s" msgstr "Domyślne opcje eksportu" -#: tbl_tracking.php:560 +#: tbl_tracking.php:555 msgid "Show versions" msgstr "" -#: tbl_tracking.php:592 +#: tbl_tracking.php:587 #, fuzzy msgid "Version" msgstr "Perski" -#: tbl_tracking.php:639 +#: tbl_tracking.php:634 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "" -#: tbl_tracking.php:641 +#: tbl_tracking.php:636 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:652 +#: tbl_tracking.php:647 #, php-format msgid "Activate tracking for %s.%s" msgstr "" -#: tbl_tracking.php:654 +#: tbl_tracking.php:649 msgid "Activate now" msgstr "" -#: tbl_tracking.php:667 +#: tbl_tracking.php:662 #, php-format msgid "Create version %s of %s.%s" msgstr "" -#: tbl_tracking.php:671 +#: tbl_tracking.php:666 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:679 +#: tbl_tracking.php:674 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:687 +#: tbl_tracking.php:682 #, fuzzy msgid "Create version" msgstr "Utwórz związek" @@ -8497,11 +8561,41 @@ msgstr "Profil został uaktualniony." msgid "VIEW name" msgstr "Nazwa perspektywy" -#: view_operations.php:92 +#: view_operations.php:91 #, fuzzy msgid "Rename view to" msgstr "Zmień nazwę tabeli na" +#~ msgid "BLOB Repository" +#~ msgstr "Repozytorium BLOBów" + +#, fuzzy +#~| msgid "Enabled" +#~ msgctxt "BLOB repository" +#~ msgid "Enabled" +#~ msgstr "włączone" + +#~ msgid "Disable" +#~ msgstr "Wyłącz" + +#~ msgid "Damaged" +#~ msgstr "Uszkodzone" + +#, fuzzy +#~| msgid "Repair" +#~ msgctxt "BLOB repository" +#~ msgid "Repair" +#~ msgstr "Napraw" + +#, fuzzy +#~| msgid "Disabled" +#~ msgctxt "BLOB repository" +#~ msgid "Disabled" +#~ msgstr "wyłączone" + +#~ msgid "Enable" +#~ msgstr "Włącz" + #~ msgid "" #~ "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " #~ "extension. Please check your PHP configuration." diff --git a/po/pt.po b/po/pt.po index 4aa5eac21..d7a1c9d64 100644 --- a/po/pt.po +++ b/po/pt.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-21 13:53+0200\n" +"POT-Creation-Date: 2010-07-26 17:18+0200\n" "PO-Revision-Date: 2010-07-22 02:23+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: portuguese \n" @@ -14,158 +14,170 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.1\n" -#: browse_foreigners.php:37 browse_foreigners.php:58 -#: libraries/display_tbl.lib.php:416 server_privileges.php:1506 +#: browse_foreigners.php:36 browse_foreigners.php:57 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1510 msgid "Show all" msgstr "Mostrar tudo" -#: browse_foreigners.php:81 libraries/common.lib.php:2313 -#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:393 -#: libraries/export/pdf.php:146 pdf_schema.php:282 pdf_schema.php:1122 -#: pdf_schema.php:1138 +#: browse_foreigners.php:80 libraries/common.lib.php:2318 +#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:392 +#: libraries/export/pdf.php:146 pdf_schema.php:281 pdf_schema.php:1121 +#: pdf_schema.php:1137 msgid "Page number:" msgstr "Página número:" -#: browse_foreigners.php:131 +#: browse_foreigners.php:130 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " "cross-window updates." msgstr "" -#: browse_foreigners.php:149 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2829 -#: libraries/common.lib.php:2836 libraries/db_links.inc.php:74 -#: libraries/tbl_links.inc.php:62 +#: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 +#: db_structure.php:89 db_structure.php:91 db_structure.php:102 +#: db_structure.php:104 libraries/common.lib.php:2834 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Pesquisar" -#: browse_foreigners.php:152 db_operations.php:384 db_operations.php:428 -#: db_operations.php:498 db_operations.php:608 db_search.php:344 -#: db_structure.php:566 js/messages.php:48 libraries/Config.class.php:1043 -#: libraries/Theme_Manager.class.php:310 +#: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 +#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 +#: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 -#: libraries/common.lib.php:1340 libraries/common.lib.php:2289 +#: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 -#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:275 -#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:531 -#: libraries/display_tbl.lib.php:613 libraries/replication_gui.lib.php:75 +#: libraries/display_export.lib.php:269 libraries/display_import.lib.php:275 +#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 +#: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 #: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:781 -#: main.php:127 navigation.php:231 pdf_pages.php:291 pdf_pages.php:327 -#: pdf_pages.php:529 pmd_pdf.php:115 server_binlog.php:128 -#: server_privileges.php:664 server_privileges.php:1616 -#: server_privileges.php:1963 server_privileges.php:2010 -#: server_privileges.php:2049 server_replication.php:234 -#: server_replication.php:317 server_replication.php:340 -#: server_synchronize.php:1208 tbl_change.php:328 tbl_change.php:1172 -#: tbl_change.php:1209 tbl_indexes.php:253 tbl_operations.php:264 -#: tbl_operations.php:301 tbl_operations.php:498 tbl_operations.php:560 -#: tbl_operations.php:680 tbl_select.php:324 tbl_structure.php:561 -#: tbl_structure.php:596 tbl_tracking.php:394 tbl_tracking.php:511 -#: view_create.php:181 view_operations.php:100 +#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 +#: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 +#: server_privileges.php:663 server_privileges.php:1620 +#: server_privileges.php:1967 server_privileges.php:2014 +#: server_privileges.php:2053 server_replication.php:233 +#: server_replication.php:316 server_replication.php:339 +#: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 +#: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 +#: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 +#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "Executa" -#: browse_foreigners.php:167 browse_foreigners.php:171 -#: libraries/Index.class.php:441 tbl_tracking.php:319 +#: browse_foreigners.php:166 browse_foreigners.php:170 +#: libraries/Index.class.php:441 tbl_tracking.php:314 msgid "Keyname" msgstr "Nome do Índice" -#: browse_foreigners.php:168 browse_foreigners.php:170 -#: server_collations.php:54 server_collations.php:66 server_engines.php:58 +#: browse_foreigners.php:167 browse_foreigners.php:169 +#: server_collations.php:54 server_collations.php:66 server_engines.php:57 #: server_status.php:738 msgid "Description" msgstr "Descrição" -#: browse_foreigners.php:246 browse_foreigners.php:255 -#: browse_foreigners.php:267 browse_foreigners.php:275 +#: browse_foreigners.php:245 browse_foreigners.php:254 +#: browse_foreigners.php:266 browse_foreigners.php:274 msgid "Use this value" msgstr "Usar este valor" -#: db_create.php:45 +#: bs_disp_as_mime_type.php:29 bs_play_media.php:35 +msgid "No blob streaming server configured!" +msgstr "" + +#: bs_disp_as_mime_type.php:35 +msgid "Failed to fetch headers" +msgstr "" + +#: bs_disp_as_mime_type.php:41 +msgid "Failed to open remote URL" +msgstr "" + +#: db_create.php:44 #, fuzzy, php-format msgid "Database %1$s has been created." msgstr "A base de dados %s foi eliminada." -#: db_datadict.php:48 db_operations.php:377 +#: db_datadict.php:48 db_operations.php:313 msgid "Database comment: " msgstr "Comentário da Base de Dados: " -#: db_datadict.php:164 libraries/tbl_properties.inc.php:723 -#: pdf_schema.php:1235 tbl_operations.php:346 tbl_printview.php:128 +#: db_datadict.php:164 libraries/tbl_properties.inc.php:722 +#: pdf_schema.php:1234 tbl_operations.php:344 tbl_printview.php:127 msgid "Table comments" msgstr "Comentários da tabela" -#: db_datadict.php:173 db_qbe.php:173 libraries/Index.class.php:445 +#: db_datadict.php:173 db_qbe.php:170 libraries/Index.class.php:445 #: libraries/export/htmlword.php:243 libraries/export/latex.php:364 #: libraries/export/odt.php:293 libraries/export/texytext.php:233 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:274 -#: pdf_schema.php:1261 pdf_schema.php:1282 tbl_change.php:306 -#: tbl_indexes.php:188 tbl_printview.php:140 tbl_relation.php:401 -#: tbl_select.php:133 tbl_structure.php:176 tbl_tracking.php:272 -#: tbl_tracking.php:323 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 +#: pdf_schema.php:1260 pdf_schema.php:1281 tbl_change.php:301 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:132 tbl_structure.php:175 tbl_tracking.php:267 +#: tbl_tracking.php:318 #, fuzzy #| msgid "Column names" msgid "Column" msgstr "Nome dos Campos" -#: db_datadict.php:174 db_printview.php:105 libraries/Index.class.php:442 +#: db_datadict.php:174 db_printview.php:104 libraries/Index.class.php:442 #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 #: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:244 #: libraries/export/latex.php:364 libraries/export/odt.php:296 #: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:99 -#: pdf_schema.php:1262 pdf_schema.php:1283 server_privileges.php:2062 -#: tbl_change.php:285 tbl_change.php:312 tbl_printview.php:141 -#: tbl_printview.php:311 tbl_select.php:134 tbl_structure.php:177 -#: tbl_structure.php:658 tbl_tracking.php:273 tbl_tracking.php:320 +#: pdf_schema.php:1261 pdf_schema.php:1282 server_privileges.php:2066 +#: tbl_change.php:280 tbl_change.php:307 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:133 tbl_structure.php:176 +#: tbl_structure.php:656 tbl_tracking.php:268 tbl_tracking.php:315 msgid "Type" msgstr "Tipo" #: db_datadict.php:176 libraries/Index.class.php:448 #: libraries/export/htmlword.php:245 libraries/export/latex.php:364 #: libraries/export/odt.php:299 libraries/export/texytext.php:235 -#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1264 -#: pdf_schema.php:1285 tbl_change.php:321 tbl_printview.php:143 -#: tbl_structure.php:180 tbl_tracking.php:275 tbl_tracking.php:326 +#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1263 +#: pdf_schema.php:1284 tbl_change.php:316 tbl_printview.php:142 +#: tbl_structure.php:179 tbl_tracking.php:270 tbl_tracking.php:321 msgid "Null" msgstr "Nulo" -#: db_datadict.php:177 db_structure.php:500 libraries/export/htmlword.php:246 +#: db_datadict.php:177 db_structure.php:486 libraries/export/htmlword.php:246 #: libraries/export/latex.php:364 libraries/export/odt.php:302 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:105 -#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 -#: tbl_structure.php:181 tbl_tracking.php:276 +#: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:143 +#: tbl_structure.php:180 tbl_tracking.php:271 msgid "Default" msgstr "Defeito" #: db_datadict.php:181 libraries/export/htmlword.php:248 #: libraries/export/latex.php:366 libraries/export/odt.php:306 -#: libraries/export/texytext.php:238 pdf_schema.php:1267 pdf_schema.php:1288 -#: tbl_printview.php:148 +#: libraries/export/texytext.php:238 pdf_schema.php:1266 pdf_schema.php:1287 +#: tbl_printview.php:147 msgid "Links to" msgstr "Links para" -#: db_datadict.php:183 db_printview.php:111 libraries/export/htmlword.php:251 +#: db_datadict.php:183 db_printview.php:110 libraries/export/htmlword.php:251 #: libraries/export/latex.php:49 libraries/export/latex.php:369 #: libraries/export/odt.php:37 libraries/export/odt.php:311 #: libraries/export/sql.php:29 libraries/export/texytext.php:241 -#: libraries/tbl_properties.inc.php:129 pdf_schema.php:1278 -#: pdf_schema.php:1289 tbl_printview.php:150 +#: libraries/tbl_properties.inc.php:128 pdf_schema.php:1277 +#: pdf_schema.php:1288 tbl_printview.php:149 msgid "Comments" msgstr "Comentários" #: db_datadict.php:266 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/export/htmlword.php:321 #: libraries/export/latex.php:434 libraries/export/odt.php:367 -#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:262 -#: pdf_schema.php:1343 server_privileges.php:1560 server_privileges.php:1571 -#: server_privileges.php:1881 server_privileges.php:1886 -#: server_privileges.php:2179 sql.php:131 sql.php:193 tbl_printview.php:227 -#: tbl_structure.php:349 tbl_tracking.php:336 tbl_tracking.php:341 +#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:261 +#: pdf_schema.php:1342 server_privileges.php:1564 server_privileges.php:1575 +#: server_privileges.php:1885 server_privileges.php:1890 +#: server_privileges.php:2183 sql.php:130 sql.php:192 tbl_printview.php:226 +#: tbl_structure.php:347 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "Não" @@ -176,17 +188,17 @@ msgstr "Não" #: libraries/mult_submits.inc.php:49 libraries/mult_submits.inc.php:54 #: libraries/mult_submits.inc.php:59 libraries/mult_submits.inc.php:91 #: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:105 -#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:261 -#: libraries/mult_submits.inc.php:272 pdf_schema.php:1343 -#: server_databases.php:63 server_privileges.php:1557 -#: server_privileges.php:1571 server_privileges.php:1881 -#: server_privileges.php:1884 server_privileges.php:2179 sql.php:192 -#: tbl_printview.php:227 tbl_structure.php:39 tbl_structure.php:349 -#: tbl_tracking.php:334 tbl_tracking.php:339 +#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:260 +#: libraries/mult_submits.inc.php:271 pdf_schema.php:1342 +#: server_databases.php:61 server_privileges.php:1561 +#: server_privileges.php:1575 server_privileges.php:1885 +#: server_privileges.php:1888 server_privileges.php:2183 sql.php:191 +#: tbl_printview.php:226 tbl_structure.php:38 tbl_structure.php:347 +#: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" msgstr "Sim" -#: db_datadict.php:321 db_printview.php:265 tbl_printview.php:496 +#: db_datadict.php:321 db_printview.php:264 tbl_printview.php:495 msgid "Print" msgstr "Imprimir" @@ -194,200 +206,159 @@ msgstr "Imprimir" msgid "View dump (schema) of database" msgstr "Ver o esquema da base de dados" -#: db_export.php:32 db_printview.php:95 db_qbe.php:101 db_structure.php:50 -#: db_tracking.php:34 export.php:352 navigation.php:326 +#: db_export.php:32 db_printview.php:94 db_qbe.php:98 db_structure.php:49 +#: db_tracking.php:30 export.php:350 navigation.php:325 msgid "No tables found in database." msgstr "Nenhuma tabela encontrada na base de dados" -#: db_export.php:42 db_search.php:326 server_export.php:26 +#: db_export.php:42 db_search.php:326 server_export.php:24 msgid "Select All" msgstr "Selecciona Todas" -#: db_export.php:44 db_search.php:329 server_export.php:28 +#: db_export.php:44 db_search.php:329 server_export.php:26 msgid "Unselect All" msgstr "Limpa Todas as Selecções" -#: db_operations.php:37 tbl_create.php:49 +#: db_operations.php:33 tbl_create.php:47 #, fuzzy msgid "The database name is empty!" msgstr "O nome da tabela está vazio!" -#: db_operations.php:235 +#: db_operations.php:231 #, fuzzy, php-format msgid "Database %s has been renamed to %s" msgstr "Tabela %s renomeada para %s" -#: db_operations.php:239 +#: db_operations.php:235 #, fuzzy, php-format msgid "Database %s has been copied to %s" msgstr "Tabela %s copiada para %s." -#: db_operations.php:411 +#: db_operations.php:347 #, fuzzy msgid "Rename database to" msgstr "Renomeia a tabela para " -#: db_operations.php:416 server_processlist.php:56 +#: db_operations.php:352 server_processlist.php:56 msgid "Command" msgstr "Comando" -#: db_operations.php:428 tbl_change.php:1141 +#: db_operations.php:364 tbl_change.php:1039 msgid "and then" msgstr "" -#: db_operations.php:454 +#: db_operations.php:390 #, fuzzy msgid "Copy database to" msgstr "Sem bases de dados" -#: db_operations.php:461 tbl_operations.php:527 tbl_tracking.php:387 +#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Somente estrutura" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:389 +#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Estrutura e dados" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:388 +#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Apenas dados" -#: db_operations.php:471 +#: db_operations.php:407 msgid "CREATE DATABASE before copying" msgstr "" -#: db_operations.php:474 libraries/export/sql.php:51 +#: db_operations.php:410 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 -#: libraries/export/sql.php:81 tbl_operations.php:535 +#: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "" -#: db_operations.php:478 libraries/export/sql.php:77 tbl_operations.php:298 -#: tbl_operations.php:537 +#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Adicionar valor AUTO_INCREMENT" -#: db_operations.php:482 tbl_operations.php:544 +#: db_operations.php:418 tbl_operations.php:542 msgid "Add constraints" msgstr "Adicionar limitadores" -#: db_operations.php:495 +#: db_operations.php:431 #, fuzzy msgid "Switch to copied database" msgstr "Mudar para a tabela copiada" -#: db_operations.php:536 -msgid "BLOB Repository" -msgstr "" - -#: db_operations.php:539 db_tracking.php:75 libraries/common.lib.php:1357 -#: libraries/server_links.inc.php:48 server_processlist.php:58 -#: tbl_tracking.php:595 test/theme.php:100 -msgid "Status" -msgstr "Estado" - -#: db_operations.php:547 -#, fuzzy -#| msgid "Enabled" -msgctxt "BLOB repository" -msgid "Enabled" -msgstr "Activado" - -#: db_operations.php:551 -#, fuzzy -msgid "Disable" -msgstr "Desactidado" - -#: db_operations.php:561 -msgid "Damaged" -msgstr "" - -#: db_operations.php:565 -#, fuzzy -msgctxt "BLOB repository" -msgid "Repair" -msgstr "Reparar tabela" - -#: db_operations.php:573 -#, fuzzy -#| msgid "Disabled" -msgctxt "BLOB repository" -msgid "Disabled" -msgstr "Desactidado" - -#: db_operations.php:577 -#, fuzzy -msgid "Enable" -msgstr "Activado" - -#: db_operations.php:601 libraries/Index.class.php:447 +#: db_operations.php:451 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 -#: server_collations.php:53 server_collations.php:65 server_databases.php:110 -#: tbl_operations.php:362 tbl_select.php:135 tbl_structure.php:178 -#: tbl_structure.php:766 tbl_tracking.php:274 tbl_tracking.php:325 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 +#: server_collations.php:53 server_collations.php:65 server_databases.php:108 +#: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:177 +#: tbl_structure.php:764 tbl_tracking.php:269 tbl_tracking.php:320 #, fuzzy msgid "Collation" msgstr "Criação" -#: db_operations.php:614 main.php:315 pdf_schema.php:33 -#, php-format +#: db_operations.php:464 pdf_schema.php:32 +#, fuzzy, php-format +#| msgid "" +#| "The additional features for working with linked tables have been " +#| "deactivated. To find out why click %shere%s." msgid "" -"The additional features for working with linked tables have been " -"deactivated. To find out why click %shere%s." +"The phpMyAdmin configuration storage has been deactivated. To find out why " +"click %shere%s." msgstr "" "As Características adicionais para trabalhar com ligações entre Tabelas " "foram desactivadas. Para saber porquê carregue %saqui%s." -#: db_operations.php:647 +#: db_operations.php:497 msgid "Edit PDF Pages" msgstr "Editar páginas PDF" -#: db_printview.php:103 db_tracking.php:71 db_tracking.php:156 +#: db_printview.php:102 db_tracking.php:67 db_tracking.php:152 #: libraries/db_structure.lib.php:37 libraries/export/xml.php:327 -#: libraries/header.inc.php:125 pdf_pages.php:423 server_privileges.php:1657 -#: server_privileges.php:1713 server_privileges.php:1977 -#: server_synchronize.php:422 server_synchronize.php:865 tbl_tracking.php:591 +#: libraries/header.inc.php:125 pdf_pages.php:422 server_privileges.php:1661 +#: server_privileges.php:1717 server_privileges.php:1981 +#: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "Tabela" -#: db_printview.php:104 libraries/db_structure.lib.php:47 +#: db_printview.php:103 libraries/db_structure.lib.php:47 #: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 -#: navigation.php:629 navigation.php:651 server_databases.php:121 -#: tbl_printview.php:392 tbl_structure.php:364 tbl_structure.php:776 +#: navigation.php:628 navigation.php:650 server_databases.php:119 +#: tbl_printview.php:391 tbl_structure.php:362 tbl_structure.php:774 msgid "Rows" msgstr "Registos" -#: db_printview.php:108 libraries/db_structure.lib.php:58 tbl_indexes.php:189 +#: db_printview.php:107 libraries/db_structure.lib.php:58 tbl_indexes.php:188 msgid "Size" msgstr "Tamanho" -#: db_printview.php:161 db_structure.php:456 libraries/export/sql.php:556 +#: db_printview.php:160 db_structure.php:442 libraries/export/sql.php:556 #: libraries/export/sql.php:896 msgid "in use" msgstr "em uso" -#: db_printview.php:186 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:511 pdf_schema.php:1240 tbl_printview.php:432 -#: tbl_structure.php:808 +#: db_printview.php:185 libraries/db_info.inc.php:86 +#: libraries/export/sql.php:511 pdf_schema.php:1239 tbl_printview.php:431 +#: tbl_structure.php:806 msgid "Creation" msgstr "Criação" -#: db_printview.php:195 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:516 pdf_schema.php:1245 tbl_printview.php:442 -#: tbl_structure.php:816 +#: db_printview.php:194 libraries/db_info.inc.php:91 +#: libraries/export/sql.php:516 pdf_schema.php:1244 tbl_printview.php:441 +#: tbl_structure.php:814 msgid "Last update" msgstr "Actualização" -#: db_printview.php:204 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:521 pdf_schema.php:1250 tbl_printview.php:452 -#: tbl_structure.php:824 +#: db_printview.php:203 libraries/db_info.inc.php:96 +#: libraries/export/sql.php:521 pdf_schema.php:1249 tbl_printview.php:451 +#: tbl_structure.php:822 msgid "Last check" msgstr "Verificação" -#: db_printview.php:221 db_structure.php:479 +#: db_printview.php:220 db_structure.php:465 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -395,94 +366,94 @@ msgid_plural "%s tables" msgstr[0] "%s tabela(s)" msgstr[1] "%s tabela(s)" -#: db_qbe.php:28 import.php:453 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1980 libraries/sql_query_form.lib.php:138 -#: tbl_operations.php:212 tbl_relation.php:291 tbl_row_action.php:130 -#: view_operations.php:61 +#: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 +#: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "O seu comando SQL foi executado com sucesso" -#: db_qbe.php:41 +#: db_qbe.php:38 msgid "You have to choose at least one column to display" msgstr "Tem que escolher pelo menos uma coluna para mostrar" -#: db_qbe.php:199 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:865 +#: db_qbe.php:196 libraries/db_structure.lib.php:95 +#: libraries/display_tbl.lib.php:864 msgid "Sort" msgstr "Ordenação" -#: db_qbe.php:208 db_qbe.php:242 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:522 libraries/display_tbl.lib.php:827 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:259 -#: tbl_select.php:311 +#: db_qbe.php:205 db_qbe.php:239 libraries/db_structure.lib.php:102 +#: libraries/display_tbl.lib.php:521 libraries/display_tbl.lib.php:826 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:257 +#: tbl_select.php:310 msgid "Ascending" msgstr "Ascendente" -#: db_qbe.php:209 db_qbe.php:250 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:527 libraries/display_tbl.lib.php:824 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:260 -#: tbl_select.php:312 +#: db_qbe.php:206 db_qbe.php:247 libraries/db_structure.lib.php:110 +#: libraries/display_tbl.lib.php:526 libraries/display_tbl.lib.php:823 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:258 +#: tbl_select.php:311 msgid "Descending" msgstr "Descendente" -#: db_qbe.php:263 db_tracking.php:77 libraries/display_tbl.lib.php:307 -#: tbl_change.php:275 tbl_tracking.php:596 +#: db_qbe.php:260 db_tracking.php:73 libraries/display_tbl.lib.php:306 +#: tbl_change.php:270 tbl_tracking.php:591 msgid "Show" msgstr "Mostra" -#: db_qbe.php:299 +#: db_qbe.php:296 msgid "Criteria" msgstr "Critérios" -#: db_qbe.php:352 db_qbe.php:434 db_qbe.php:526 db_qbe.php:557 +#: db_qbe.php:349 db_qbe.php:431 db_qbe.php:523 db_qbe.php:554 msgid "Ins" msgstr "Ins." -#: db_qbe.php:356 db_qbe.php:438 db_qbe.php:523 db_qbe.php:554 +#: db_qbe.php:353 db_qbe.php:435 db_qbe.php:520 db_qbe.php:551 msgid "And" msgstr "E" -#: db_qbe.php:365 db_qbe.php:446 db_qbe.php:528 db_qbe.php:559 +#: db_qbe.php:362 db_qbe.php:443 db_qbe.php:525 db_qbe.php:556 msgid "Del" msgstr "Elim." -#: db_qbe.php:369 db_qbe.php:450 db_qbe.php:521 db_qbe.php:552 -#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:778 -#: server_privileges.php:297 tbl_change.php:1027 tbl_indexes.php:249 -#: tbl_select.php:285 +#: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 +#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:777 +#: server_privileges.php:296 tbl_change.php:925 tbl_indexes.php:248 +#: tbl_select.php:284 msgid "Or" msgstr "Ou" -#: db_qbe.php:506 +#: db_qbe.php:503 msgid "Modify" msgstr "Modifica" -#: db_qbe.php:583 +#: db_qbe.php:580 #, fuzzy #| msgid "Add/Delete Criteria Row" msgid "Add/Delete criteria rows" msgstr "Adicionar/Remover Critérios" -#: db_qbe.php:595 +#: db_qbe.php:592 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Add/Delete columns" msgstr "Adicionar/Remover Campos" -#: db_qbe.php:608 db_qbe.php:633 +#: db_qbe.php:605 db_qbe.php:630 msgid "Update Query" msgstr "Actualiza Comando SQL" -#: db_qbe.php:616 +#: db_qbe.php:613 msgid "Use Tables" msgstr "Usar Tabelas" -#: db_qbe.php:639 +#: db_qbe.php:636 #, php-format msgid "SQL query on database %s:" msgstr "Comando SQL na base de dados %s:" -#: db_qbe.php:933 libraries/common.lib.php:1222 +#: db_qbe.php:930 libraries/common.lib.php:1215 msgid "Submit Query" msgstr "Executa Comando SQL" @@ -522,17 +493,17 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s resultado(s) na tabela %s" msgstr[1] "%s resultado(s) na tabela %s" -#: db_search.php:249 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2831 -#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:49 -#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:466 +#: db_search.php:249 db_structure.php:75 db_structure.php:76 +#: db_structure.php:88 db_structure.php:90 db_structure.php:101 +#: db_structure.php:103 libraries/common.lib.php:2836 +#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 +#: tbl_structure.php:35 tbl_structure.php:47 tbl_structure.php:464 msgid "Browse" msgstr "Visualiza" -#: db_search.php:254 libraries/display_tbl.lib.php:1164 -#: libraries/display_tbl.lib.php:2055 libraries/sql_query_form.lib.php:453 -#: pdf_pages.php:285 pdf_pages.php:424 pdf_pages.php:460 pdf_pages.php:488 +#: db_search.php:254 libraries/display_tbl.lib.php:1163 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 msgid "Delete" @@ -572,234 +543,240 @@ msgstr "Dentro de Tabela(s):" msgid "Inside column:" msgstr "Dentro de Tabela(s):" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2830 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:75 +#: db_structure.php:79 db_structure.php:80 db_structure.php:92 +#: db_structure.php:93 db_structure.php:105 db_structure.php:106 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 +#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Insere" -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2827 libraries/common.lib.php:2834 -#: libraries/db_links.inc.php:62 libraries/export/htmlword.php:22 +#: db_structure.php:81 db_structure.php:94 db_structure.php:107 +#: libraries/common.lib.php:2832 libraries/common.lib.php:2839 +#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 -#: libraries/tbl_links.inc.php:55 pmd_general.php:133 -#: server_privileges.php:593 server_replication.php:314 tbl_tracking.php:268 +#: libraries/tbl_links.inc.php:54 pmd_general.php:133 +#: server_privileges.php:592 server_replication.php:313 tbl_tracking.php:263 msgid "Structure" msgstr "Estrutura" -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:544 db_structure.php:545 db_tracking.php:90 -#: libraries/Index.class.php:482 libraries/common.lib.php:1659 -#: libraries/db_links.inc.php:99 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:126 -#: server_databases.php:351 tbl_structure.php:26 tbl_structure.php:150 -#: tbl_structure.php:151 tbl_structure.php:470 +#: db_structure.php:82 db_structure.php:83 db_structure.php:95 +#: db_structure.php:96 db_structure.php:108 db_structure.php:109 +#: db_structure.php:530 db_structure.php:531 db_tracking.php:86 +#: libraries/Index.class.php:482 libraries/common.lib.php:1663 +#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 +#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 +#: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" msgstr "Elimina" -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:542 db_structure.php:543 libraries/common.lib.php:1658 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:104 +#: db_structure.php:84 db_structure.php:85 db_structure.php:97 +#: db_structure.php:98 db_structure.php:110 db_structure.php:111 +#: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 +#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 msgid "Empty" msgstr "Limpa" -#: db_structure.php:315 libraries/tbl_links.inc.php:99 +#: db_structure.php:301 libraries/tbl_links.inc.php:98 #, php-format msgid "Table %s has been emptied" msgstr "A tabela %s foi limpa" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, fuzzy, php-format msgid "View %s has been dropped" msgstr "O campo %s foi eliminado" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "Table %s has been dropped" msgstr "A tabela %s foi eliminada" -#: db_structure.php:332 +#: db_structure.php:318 msgid "Tracking is active." msgstr "" -#: db_structure.php:334 +#: db_structure.php:320 msgid "Tracking is not active." msgstr "" -#: db_structure.php:419 libraries/display_tbl.lib.php:1943 +#: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -#: db_structure.php:433 db_structure.php:447 libraries/header.inc.php:125 -#: libraries/tbl_info.inc.php:65 tbl_structure.php:184 test/theme.php:73 +#: db_structure.php:419 db_structure.php:433 libraries/header.inc.php:125 +#: libraries/tbl_info.inc.php:60 tbl_structure.php:183 test/theme.php:73 msgid "View" msgstr "" -#: db_structure.php:484 libraries/db_structure.lib.php:40 -#: libraries/server_links.inc.php:69 server_replication.php:32 -#: server_replication.php:163 server_status.php:368 +#: db_structure.php:470 libraries/db_structure.lib.php:40 +#: libraries/server_links.inc.php:69 server_replication.php:31 +#: server_replication.php:162 server_status.php:368 #, fuzzy msgid "Replication" msgstr "Relações" -#: db_structure.php:488 +#: db_structure.php:474 msgid "Sum" msgstr "Soma" -#: db_structure.php:495 libraries/StorageEngine.class.php:349 +#: db_structure.php:481 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: db_structure.php:523 db_structure.php:540 db_structure.php:541 -#: libraries/display_tbl.lib.php:2080 libraries/display_tbl.lib.php:2085 -#: libraries/mult_submits.inc.php:15 server_databases.php:345 -#: server_databases.php:350 server_privileges.php:1588 tbl_structure.php:454 -#: tbl_structure.php:463 +#: db_structure.php:509 db_structure.php:526 db_structure.php:527 +#: libraries/display_tbl.lib.php:2039 libraries/display_tbl.lib.php:2044 +#: libraries/mult_submits.inc.php:15 server_databases.php:343 +#: server_databases.php:348 server_privileges.php:1592 tbl_structure.php:452 +#: tbl_structure.php:461 msgid "With selected:" msgstr "Com os seleccionados:" -#: db_structure.php:526 libraries/display_tbl.lib.php:2075 -#: server_databases.php:347 server_privileges.php:569 -#: server_privileges.php:1591 tbl_structure.php:457 +#: db_structure.php:512 libraries/display_tbl.lib.php:2034 +#: server_databases.php:345 server_privileges.php:568 +#: server_privileges.php:1595 tbl_structure.php:455 msgid "Check All" msgstr "Todos" -#: db_structure.php:530 libraries/display_tbl.lib.php:2076 -#: libraries/replication_gui.lib.php:35 server_databases.php:349 -#: server_privileges.php:572 server_privileges.php:1595 tbl_structure.php:461 +#: db_structure.php:516 libraries/display_tbl.lib.php:2035 +#: libraries/replication_gui.lib.php:35 server_databases.php:347 +#: server_privileges.php:571 server_privileges.php:1599 tbl_structure.php:459 msgid "Uncheck All" msgstr "Nenhum" -#: db_structure.php:535 +#: db_structure.php:521 msgid "Check tables having overhead" msgstr "" -#: db_structure.php:546 db_structure.php:547 db_structure.php:598 -#: libraries/display_tbl.lib.php:2179 libraries/mult_submits.inc.php:27 -#: tbl_structure.php:491 tbl_structure.php:493 +#: db_structure.php:532 db_structure.php:533 db_structure.php:584 +#: libraries/display_tbl.lib.php:2138 libraries/mult_submits.inc.php:27 +#: tbl_structure.php:489 tbl_structure.php:491 msgid "Print view" msgstr "Vista de impressão" -#: db_structure.php:548 db_structure.php:549 libraries/mult_submits.inc.php:41 -#: tbl_operations.php:580 +#: db_structure.php:534 db_structure.php:535 libraries/mult_submits.inc.php:41 +#: tbl_operations.php:578 msgid "Check table" msgstr "Verificar tabela" -#: db_structure.php:550 db_structure.php:551 libraries/mult_submits.inc.php:46 -#: tbl_operations.php:620 tbl_structure.php:708 tbl_structure.php:710 +#: db_structure.php:536 db_structure.php:537 libraries/mult_submits.inc.php:46 +#: tbl_operations.php:618 tbl_structure.php:706 tbl_structure.php:708 msgid "Optimize table" msgstr "Optimizar tabela" -#: db_structure.php:552 db_structure.php:553 libraries/mult_submits.inc.php:51 -#: tbl_operations.php:610 +#: db_structure.php:538 db_structure.php:539 libraries/mult_submits.inc.php:51 +#: tbl_operations.php:608 msgid "Repair table" msgstr "Reparar tabela" -#: db_structure.php:554 db_structure.php:555 libraries/mult_submits.inc.php:56 -#: tbl_operations.php:600 +#: db_structure.php:540 db_structure.php:541 libraries/mult_submits.inc.php:56 +#: tbl_operations.php:598 msgid "Analyze table" msgstr "Analizar tabela" -#: db_structure.php:556 db_structure.php:557 libraries/db_links.inc.php:70 -#: libraries/display_export.lib.php:82 libraries/display_tbl.lib.php:2093 -#: libraries/display_tbl.lib.php:2224 libraries/mult_submits.inc.php:61 -#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:81 -#: pmd_pdf.php:83 pmd_pdf.php:108 server_privileges.php:1372 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 +#: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 +#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 +#: pmd_pdf.php:81 pmd_pdf.php:106 server_privileges.php:1376 #: setup/frames/menu.inc.php:22 tbl_row_action.php:58 msgid "Export" msgstr "Exportar" -#: db_structure.php:605 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:591 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "Dicionario de dados" -#: db_tracking.php:65 +#: db_tracking.php:61 #, fuzzy msgid "Tracked tables" msgstr "Verificar tabela" -#: db_tracking.php:70 libraries/export/htmlword.php:85 +#: db_tracking.php:66 libraries/export/htmlword.php:85 #: libraries/export/latex.php:152 libraries/export/odt.php:112 #: libraries/export/sql.php:339 libraries/export/texytext.php:84 #: libraries/export/xml.php:254 libraries/header.inc.php:105 -#: libraries/header_printview.inc.php:57 server_databases.php:168 -#: server_privileges.php:1652 server_privileges.php:1713 -#: server_privileges.php:1971 server_processlist.php:55 -#: server_synchronize.php:1178 server_synchronize.php:1182 -#: tbl_tracking.php:590 test/theme.php:64 +#: libraries/header_printview.inc.php:57 server_databases.php:166 +#: server_privileges.php:1656 server_privileges.php:1717 +#: server_privileges.php:1975 server_processlist.php:55 +#: server_synchronize.php:1177 server_synchronize.php:1181 +#: tbl_tracking.php:585 test/theme.php:64 msgid "Database" msgstr "Base de Dados" -#: db_tracking.php:72 +#: db_tracking.php:68 #, fuzzy msgid "Last version" msgstr "Versão do servidor" -#: db_tracking.php:73 tbl_tracking.php:593 +#: db_tracking.php:69 tbl_tracking.php:588 #, fuzzy msgid "Created" msgstr "Criar" -#: db_tracking.php:74 tbl_tracking.php:594 +#: db_tracking.php:70 tbl_tracking.php:589 msgid "Updated" msgstr "" -#: db_tracking.php:76 libraries/Index.class.php:439 -#: libraries/db_structure.lib.php:44 server_databases.php:202 -#: server_privileges.php:1534 server_privileges.php:1717 -#: server_privileges.php:2065 tbl_structure.php:186 +#: db_tracking.php:71 libraries/common.lib.php:1361 +#: libraries/server_links.inc.php:48 server_processlist.php:58 +#: tbl_tracking.php:590 test/theme.php:100 +msgid "Status" +msgstr "Estado" + +#: db_tracking.php:72 libraries/Index.class.php:439 +#: libraries/db_structure.lib.php:44 server_databases.php:200 +#: server_privileges.php:1538 server_privileges.php:1721 +#: server_privileges.php:2069 tbl_structure.php:185 msgid "Action" msgstr "Acções" -#: db_tracking.php:87 db_tracking.php:119 +#: db_tracking.php:83 db_tracking.php:115 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:105 tbl_tracking.php:547 tbl_tracking.php:605 -#: tbl_tracking.php:612 +#: db_tracking.php:101 tbl_tracking.php:542 tbl_tracking.php:600 +#: tbl_tracking.php:607 msgid "active" msgstr "" -#: db_tracking.php:107 tbl_tracking.php:549 tbl_tracking.php:607 -#: tbl_tracking.php:609 +#: db_tracking.php:103 tbl_tracking.php:544 tbl_tracking.php:602 +#: tbl_tracking.php:604 msgid "not active" msgstr "" -#: db_tracking.php:120 +#: db_tracking.php:116 #, fuzzy msgid "Versions" msgstr "Operações" -#: db_tracking.php:121 tbl_tracking.php:378 tbl_tracking.php:623 +#: db_tracking.php:117 tbl_tracking.php:373 tbl_tracking.php:618 msgid "Tracking report" msgstr "" -#: db_tracking.php:122 tbl_tracking.php:250 tbl_tracking.php:623 +#: db_tracking.php:118 tbl_tracking.php:245 tbl_tracking.php:618 #, fuzzy msgid "Structure snapshot" msgstr "Somente estrutura" -#: db_tracking.php:151 +#: db_tracking.php:147 #, fuzzy msgid "Untracked tables" msgstr "Verificar tabela" -#: db_tracking.php:171 db_tracking.php:173 tbl_structure.php:527 -#: tbl_structure.php:529 +#: db_tracking.php:167 db_tracking.php:169 tbl_structure.php:525 +#: tbl_structure.php:527 #, fuzzy msgid "Track table" msgstr "Verificar tabela" -#: db_tracking.php:199 +#: db_tracking.php:195 #, fuzzy msgid "Database Log" msgstr "Base de Dados" @@ -808,12 +785,12 @@ msgstr "Base de Dados" msgid "Selected export type has to be saved in file!" msgstr "" -#: export.php:153 export.php:178 export.php:620 +#: export.php:152 export.php:177 export.php:615 #, php-format msgid "Insufficient space to save the file %s." msgstr "Não existe espaço suficiente para gravar o ficheiro %s." -#: export.php:287 +#: export.php:286 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -821,93 +798,93 @@ msgstr "" "O ficheiro %s já existe no servidor, mude o nome do ficheiro ou verifique a " "opção de substituição (re-escrita)." -#: export.php:291 export.php:295 +#: export.php:290 export.php:294 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "O servidor web não tem permissões para gravar o ficheiro %s." -#: export.php:622 +#: export.php:617 #, php-format msgid "Dump has been saved to file %s." msgstr "O Dump foi gravado para o ficheiro %s." -#: import.php:59 +#: 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." msgstr "" -#: import.php:278 import.php:331 libraries/File.class.php:840 -#: libraries/File.class.php:950 +#: import.php:277 import.php:330 libraries/File.class.php:566 +#: libraries/File.class.php:676 msgid "File could not be read" msgstr "Não foi possível ler o ficheiro" -#: import.php:286 import.php:295 import.php:314 import.php:323 -#: libraries/File.class.php:1020 libraries/File.class.php:1028 -#: libraries/File.class.php:1044 libraries/File.class.php:1052 +#: import.php:285 import.php:294 import.php:313 import.php:322 +#: libraries/File.class.php:746 libraries/File.class.php:754 +#: libraries/File.class.php:770 libraries/File.class.php:778 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." msgstr "" -#: import.php:336 +#: import.php:335 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " "[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." msgstr "" -#: import.php:371 libraries/display_import.lib.php:23 +#: import.php:370 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:396 +#: import.php:395 msgid "The bookmark has been deleted." msgstr "Marcador apagado com sucesso." -#: import.php:400 +#: import.php:399 msgid "Showing bookmark" msgstr "" -#: import.php:402 sql.php:625 +#: import.php:401 sql.php:618 #, php-format msgid "Bookmark %s created" msgstr "" -#: import.php:408 import.php:414 +#: import.php:407 import.php:413 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" -#: import.php:423 +#: import.php:422 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: import.php:425 +#: import.php:424 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." msgstr "" -#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:240 +#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:239 #: user_password.php:110 msgid "Back" msgstr "Voltar" -#: index.php:188 +#: index.php:183 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" "O phpMyAdmin torna-se mais agradável se usado num browser que suporte " "frames." -#: js/messages.php:25 server_synchronize.php:344 server_synchronize.php:356 -#: server_synchronize.php:372 server_synchronize.php:379 -#: server_synchronize.php:738 server_synchronize.php:766 -#: server_synchronize.php:794 server_synchronize.php:806 +#: js/messages.php:25 server_synchronize.php:343 server_synchronize.php:355 +#: server_synchronize.php:371 server_synchronize.php:378 +#: server_synchronize.php:737 server_synchronize.php:765 +#: server_synchronize.php:793 server_synchronize.php:805 msgid "Click to select" msgstr "" @@ -915,15 +892,15 @@ msgstr "" msgid "Click to unselect" msgstr "" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:88 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:87 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Os comandos \"DROP DATABASE\" estão inibidos." -#: js/messages.php:30 libraries/mult_submits.inc.php:257 sql.php:187 +#: js/messages.php:30 libraries/mult_submits.inc.php:256 sql.php:186 msgid "Do you really want to " msgstr "Confirma : " -#: js/messages.php:31 libraries/mult_submits.inc.php:257 sql.php:171 +#: js/messages.php:31 libraries/mult_submits.inc.php:256 sql.php:170 msgid "You are about to DESTROY a complete database!" msgstr "" @@ -952,11 +929,11 @@ msgstr "O nome da máquina está vazio!" msgid "The user name is empty!" msgstr "O nome do utilizador está vazio!" -#: js/messages.php:44 server_privileges.php:1228 user_password.php:65 +#: js/messages.php:44 server_privileges.php:1229 user_password.php:65 msgid "The password is empty!" msgstr "Indique a palavras-passe!" -#: js/messages.php:45 server_privileges.php:1226 user_password.php:68 +#: js/messages.php:45 server_privileges.php:1227 user_password.php:68 msgid "The passwords aren't the same!" msgstr "" "As palavras-passe são diferentes!\\nLembre-se de confirmar a palavra-passe!" @@ -965,29 +942,29 @@ msgstr "" msgid "Cancel" msgstr "" -#: js/messages.php:52 pmd_save_pos.php:53 +#: js/messages.php:52 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "Modificações foram guardadas" -#: js/messages.php:53 pmd_relation_upd.php:48 +#: js/messages.php:53 pmd_relation_upd.php:47 #, fuzzy msgid "Relation deleted" msgstr "Vista de Relação" -#: js/messages.php:54 pmd_relation_new.php:63 +#: js/messages.php:54 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:55 pmd_relation_new.php:85 +#: js/messages.php:55 pmd_relation_new.php:84 #, fuzzy msgid "Internal relation added" msgstr "Relações internas" -#: js/messages.php:56 pmd_relation_new.php:62 pmd_relation_new.php:87 +#: js/messages.php:56 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:57 pmd_relation_new.php:30 +#: js/messages.php:57 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "" @@ -995,13 +972,13 @@ msgstr "" msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:59 libraries/relation.lib.php:94 -#: libraries/relation.lib.php:106 +#: js/messages.php:59 libraries/relation.lib.php:89 +#: libraries/relation.lib.php:101 msgid "General relation features" msgstr "Características gerais de Relação" -#: js/messages.php:59 libraries/relation.lib.php:88 -#: libraries/relation.lib.php:95 +#: js/messages.php:59 libraries/relation.lib.php:83 +#: libraries/relation.lib.php:90 msgid "Disabled" msgstr "Desactidado" @@ -1017,7 +994,7 @@ msgstr "" msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:547 +#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" @@ -1048,10 +1025,10 @@ msgid "Prev" msgstr "Anterior" #. l10n: Display text for next month link in calendar -#: js/messages.php:81 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:337 -#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:422 -#: tbl_structure.php:800 +#: js/messages.php:81 libraries/common.lib.php:2358 +#: libraries/common.lib.php:2361 libraries/display_tbl.lib.php:336 +#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 +#: tbl_structure.php:798 msgid "Next" msgstr "Próximo" @@ -1125,27 +1102,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1562 +#: js/messages.php:101 libraries/common.lib.php:1566 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1564 +#: js/messages.php:103 libraries/common.lib.php:1568 msgid "Feb" msgstr "Fev" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1566 +#: js/messages.php:105 libraries/common.lib.php:1570 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1568 +#: js/messages.php:107 libraries/common.lib.php:1572 msgid "Apr" msgstr "Abr" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1570 +#: js/messages.php:109 libraries/common.lib.php:1574 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1153,37 +1130,37 @@ msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1572 +#: js/messages.php:111 libraries/common.lib.php:1576 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1574 +#: js/messages.php:113 libraries/common.lib.php:1578 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1576 +#: js/messages.php:115 libraries/common.lib.php:1580 msgid "Aug" msgstr "Ago" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1578 +#: js/messages.php:117 libraries/common.lib.php:1582 msgid "Sep" msgstr "Set" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1580 +#: js/messages.php:119 libraries/common.lib.php:1584 msgid "Oct" msgstr "Out" #. l10n: Short month name -#: js/messages.php:121 libraries/common.lib.php:1582 +#: js/messages.php:121 libraries/common.lib.php:1586 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:123 libraries/common.lib.php:1584 +#: js/messages.php:123 libraries/common.lib.php:1588 msgid "Dec" msgstr "Dez" @@ -1224,37 +1201,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1587 +#: js/messages.php:136 libraries/common.lib.php:1591 msgid "Sun" msgstr "Dom" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1589 +#: js/messages.php:138 libraries/common.lib.php:1593 msgid "Mon" msgstr "Seg" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1591 +#: js/messages.php:140 libraries/common.lib.php:1595 msgid "Tue" msgstr "Ter" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1593 +#: js/messages.php:142 libraries/common.lib.php:1597 msgid "Wed" msgstr "Qua" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1595 +#: js/messages.php:144 libraries/common.lib.php:1599 msgid "Thu" msgstr "Qui" #. l10n: Short week day name -#: js/messages.php:146 libraries/common.lib.php:1597 +#: js/messages.php:146 libraries/common.lib.php:1601 msgid "Fri" msgstr "Sex" #. l10n: Short week day name -#: js/messages.php:148 libraries/common.lib.php:1599 +#: js/messages.php:148 libraries/common.lib.php:1603 msgid "Sat" msgstr "Sab" @@ -1332,75 +1309,74 @@ msgstr "por segundo" msgid "Font size" msgstr "" -#: libraries/File.class.php:336 libraries/File.class.php:424 -#: libraries/File.class.php:561 libraries/File.class.php:700 -msgid "Unknown error in file upload." -msgstr "" - -#: libraries/File.class.php:406 +#: libraries/File.class.php:315 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:409 +#: libraries/File.class.php:318 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:412 +#: libraries/File.class.php:321 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:415 +#: libraries/File.class.php:324 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:418 +#: libraries/File.class.php:327 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:421 +#: libraries/File.class.php:330 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:898 +#: libraries/File.class.php:333 +msgid "Unknown error in file upload." +msgstr "" + +#: libraries/File.class.php:624 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "" -#: libraries/Index.class.php:427 tbl_relation.php:528 +#: libraries/Index.class.php:427 tbl_relation.php:526 msgid "No index defined!" msgstr "Nenhum indíce definido!" -#: libraries/Index.class.php:432 server_databases.php:131 tbl_tracking.php:315 +#: libraries/Index.class.php:432 server_databases.php:129 tbl_tracking.php:310 msgid "Indexes" msgstr "Índices" #: libraries/Index.class.php:443 libraries/mult_submits.inc.php:102 -#: libraries/tbl_properties.inc.php:518 tbl_structure.php:32 -#: tbl_structure.php:154 tbl_structure.php:158 tbl_structure.php:473 -#: tbl_tracking.php:321 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:31 +#: tbl_structure.php:153 tbl_structure.php:157 tbl_structure.php:471 +#: tbl_tracking.php:316 msgid "Unique" msgstr "Único" -#: libraries/Index.class.php:444 tbl_tracking.php:322 +#: libraries/Index.class.php:444 tbl_tracking.php:317 msgid "Packed" msgstr "" -#: libraries/Index.class.php:446 tbl_tracking.php:324 +#: libraries/Index.class.php:446 tbl_tracking.php:319 msgid "Cardinality" msgstr "Quantidade" -#: libraries/Index.class.php:449 tbl_tracking.php:278 tbl_tracking.php:327 +#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322 #, fuzzy msgid "Comment" msgstr "Comentários" #: libraries/Index.class.php:465 libraries/common.lib.php:609 -#: libraries/common.lib.php:1198 libraries/display_tbl.lib.php:1116 +#: libraries/common.lib.php:1191 libraries/display_tbl.lib.php:1115 #: libraries/import.lib.php:1119 libraries/import.lib.php:1143 -#: pdf_pages.php:284 setup/frames/index.inc.php:124 +#: pdf_pages.php:283 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:349 tbl_row_action.php:68 msgid "Edit" msgstr "Edita" @@ -1422,15 +1398,15 @@ msgid "" msgstr "" #: libraries/List_Database.class.php:430 libraries/server_links.inc.php:40 -#: server_databases.php:87 server_privileges.php:1652 +#: server_databases.php:85 server_privileges.php:1656 #: setup/lib/messages.inc.php:107 test/theme.php:92 msgid "Databases" msgstr "Base de Dados" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:259 libraries/import.lib.php:134 pdf_schema.php:31 -#: pdf_schema.php:231 tbl_change.php:1023 tbl_operations.php:212 -#: tbl_relation.php:289 view_operations.php:61 +#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 +#: tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Erro" @@ -1455,40 +1431,40 @@ msgid_plural "%1$d rows inserted." msgstr[0] "" msgstr[1] "" -#: libraries/StorageEngine.class.php:196 +#: libraries/StorageEngine.class.php:194 msgid "" "There is no detailed status information available for this storage engine." msgstr "" -#: libraries/StorageEngine.class.php:352 +#: libraries/StorageEngine.class.php:354 #, php-format msgid "%s is available on this MySQL server." msgstr "" -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:357 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "" -#: libraries/StorageEngine.class.php:359 +#: libraries/StorageEngine.class.php:361 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "" -#: libraries/Table.class.php:1018 +#: libraries/Table.class.php:1017 msgid "Invalid database" msgstr "" -#: libraries/Table.class.php:1032 tbl_get_field.php:25 +#: libraries/Table.class.php:1031 tbl_get_field.php:25 msgid "Invalid table name" msgstr "" -#: libraries/Table.class.php:1047 +#: libraries/Table.class.php:1046 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "" -#: libraries/Table.class.php:1131 +#: libraries/Table.class.php:1129 #, php-format msgid "Table %s has been renamed to %s" msgstr "Tabela %s renomeada para %s" @@ -1506,22 +1482,22 @@ msgstr "" msgid "take it" msgstr "" -#: libraries/Theme_Manager.class.php:114 +#: libraries/Theme_Manager.class.php:109 #, php-format msgid "Default theme %s not found!" msgstr "" -#: libraries/Theme_Manager.class.php:152 +#: libraries/Theme_Manager.class.php:147 #, php-format msgid "Theme %s not found!" msgstr "" -#: libraries/Theme_Manager.class.php:220 +#: libraries/Theme_Manager.class.php:215 #, php-format msgid "Theme path not found for theme %s!" msgstr "" -#: libraries/Theme_Manager.class.php:296 test/theme.php:160 themes.php:20 +#: libraries/Theme_Manager.class.php:291 test/theme.php:160 themes.php:20 #: themes.php:40 msgid "Theme / Style" msgstr "" @@ -1632,19 +1608,19 @@ msgstr "" msgid "Authenticating..." msgstr "" -#: libraries/blobstreaming.lib.php:689 +#: libraries/blobstreaming.lib.php:340 msgid "View image" msgstr "" -#: libraries/blobstreaming.lib.php:693 +#: libraries/blobstreaming.lib.php:344 msgid "Play audio" msgstr "" -#: libraries/blobstreaming.lib.php:698 +#: libraries/blobstreaming.lib.php:349 msgid "View video" msgstr "" -#: libraries/blobstreaming.lib.php:702 +#: libraries/blobstreaming.lib.php:353 msgid "Download file" msgstr "" @@ -1697,7 +1673,7 @@ msgstr "Servidor" msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:909 +#: libraries/common.inc.php:908 #, php-format msgid "You should upgrade to %s %s or later." msgstr "deve actualizar para %s %s ou mais recente." @@ -1724,7 +1700,8 @@ msgstr "pt" #: libraries/common.lib.php:425 libraries/common.lib.php:427 #: libraries/common.lib.php:429 libraries/common.lib.php:445 #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 -#: libraries/display_export.lib.php:163 libraries/relation.lib.php:84 +#: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 +#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 #: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" @@ -1739,146 +1716,146 @@ msgstr "Comando SQL" msgid "MySQL said: " msgstr "Mensagens do MySQL : " -#: libraries/common.lib.php:1136 +#: libraries/common.lib.php:1129 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1174 setup/lib/messages.inc.php:350 +#: libraries/common.lib.php:1167 setup/lib/messages.inc.php:350 msgid "Explain SQL" msgstr "Explicar SQL" -#: libraries/common.lib.php:1177 +#: libraries/common.lib.php:1170 msgid "Skip Explain SQL" msgstr "Saltar Explicar SQL" -#: libraries/common.lib.php:1211 +#: libraries/common.lib.php:1204 msgid "Without PHP Code" msgstr "sem código PHP" -#: libraries/common.lib.php:1214 setup/lib/messages.inc.php:352 +#: libraries/common.lib.php:1207 setup/lib/messages.inc.php:352 msgid "Create PHP Code" msgstr "Criar código PHP" -#: libraries/common.lib.php:1232 server_status.php:451 +#: libraries/common.lib.php:1225 server_status.php:451 #: setup/lib/messages.inc.php:351 msgid "Refresh" msgstr "" -#: libraries/common.lib.php:1241 +#: libraries/common.lib.php:1234 msgid "Skip Validate SQL" msgstr "Saltar a validação SQL" -#: libraries/common.lib.php:1244 setup/lib/messages.inc.php:353 +#: libraries/common.lib.php:1237 setup/lib/messages.inc.php:353 msgid "Validate SQL" msgstr "Validar SQL" -#: libraries/common.lib.php:1283 +#: libraries/common.lib.php:1287 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1285 +#: libraries/common.lib.php:1289 msgid "Inline" msgstr "" -#: libraries/common.lib.php:1339 libraries/common.lib.php:1354 +#: libraries/common.lib.php:1343 libraries/common.lib.php:1358 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1358 libraries/tbl_triggers.lib.php:27 +#: libraries/common.lib.php:1362 libraries/tbl_triggers.lib.php:27 #: server_processlist.php:57 msgid "Time" msgstr "Tempo" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "B" msgstr "Bytes" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "KiB" msgstr "KB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "MiB" msgstr "MB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "GiB" msgstr "GB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "TiB" msgstr "TB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "PiB" msgstr "PB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "EiB" msgstr "EB" #. l10n: Thousands separator -#: libraries/common.lib.php:1424 +#: libraries/common.lib.php:1428 msgid "," msgstr "," #. l10n: Decimal separator -#: libraries/common.lib.php:1426 +#: libraries/common.lib.php:1430 msgid "." msgstr "." #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1603 +#: libraries/common.lib.php:1607 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%d-%B-%Y às %H:%M" -#: libraries/common.lib.php:1909 +#: libraries/common.lib.php:1913 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dias, %s horas, %s minutos e %s segundos" -#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 -#: libraries/display_tbl.lib.php:289 server_status.php:718 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 +#: libraries/display_tbl.lib.php:288 server_status.php:718 msgid "Begin" msgstr "Inicio" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 -#: libraries/display_tbl.lib.php:290 server_binlog.php:154 +#: libraries/common.lib.php:2328 libraries/common.lib.php:2331 +#: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "Anterior" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 -#: libraries/display_tbl.lib.php:352 +#: libraries/common.lib.php:2359 libraries/common.lib.php:2362 +#: libraries/display_tbl.lib.php:351 msgid "End" msgstr "Fim" -#: libraries/common.lib.php:2429 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "Saltar para a Base de Dados "%s"." -#: libraries/common.lib.php:2448 +#: libraries/common.lib.php:2453 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2828 libraries/common.lib.php:2835 -#: libraries/db_links.inc.php:67 libraries/export/sql.php:24 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 +#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 -#: libraries/tbl_links.inc.php:59 querywindow.php:89 test/theme.php:96 +#: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2837 libraries/db_links.inc.php:103 -#: libraries/tbl_links.inc.php:94 libraries/tbl_links.inc.php:116 -#: view_operations.php:88 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: view_operations.php:87 msgid "Operations" msgstr "Operações" -#: libraries/core.lib.php:282 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1895,39 +1872,39 @@ msgstr "Enviado" msgid "Name" msgstr "Nome" -#: libraries/db_links.inc.php:44 +#: libraries/db_links.inc.php:43 #, php-format msgid "Database %s has been dropped." msgstr "A base de dados %s foi eliminada." -#: libraries/db_links.inc.php:56 libraries/db_links.inc.php:57 -#: libraries/db_links.inc.php:58 +#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 +#: libraries/db_links.inc.php:57 msgid "Database seems to be empty!" msgstr "" -#: libraries/db_links.inc.php:80 libraries/relation.lib.php:142 -#: libraries/tbl_links.inc.php:68 +#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:85 +#: libraries/db_links.inc.php:84 msgid "Query" msgstr "Pesquisa por formulário" -#: libraries/db_links.inc.php:90 libraries/relation.lib.php:138 +#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:97 libraries/server_links.inc.php:87 -#: libraries/tbl_links.inc.php:90 pmd_pdf.php:83 pmd_pdf.php:109 +#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 #, fuzzy msgid "Import" msgstr "Exportar" -#: libraries/db_links.inc.php:110 libraries/server_links.inc.php:65 -#: server_privileges.php:111 server_privileges.php:1714 -#: server_privileges.php:2063 test/theme.php:116 +#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: server_privileges.php:110 server_privileges.php:1718 +#: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" msgstr "Privilégios" @@ -1939,14 +1916,14 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1847 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1806 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "" -#: libraries/db_structure.lib.php:60 server_databases.php:141 -#: tbl_printview.php:334 tbl_structure.php:681 +#: libraries/db_structure.lib.php:60 server_databases.php:139 +#: tbl_printview.php:333 tbl_structure.php:679 msgid "Overhead" msgstr "Suspenso" @@ -1963,7 +1940,7 @@ msgstr "" msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "" -#: libraries/dbi/mysql.dbi.lib.php:358 tbl_structure.php:607 +#: libraries/dbi/mysql.dbi.lib.php:358 tbl_structure.php:605 msgid "Details..." msgstr "" @@ -1973,22 +1950,22 @@ msgid "Change password" msgstr "Alterar a palavra-passe" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:807 +#: libraries/replication_gui.lib.php:347 server_privileges.php:806 msgid "No Password" msgstr "Sem palavra-passe" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1530 server_synchronize.php:1174 +#: libraries/replication_gui.lib.php:351 server_privileges.php:795 +#: server_privileges.php:799 server_privileges.php:810 +#: server_privileges.php:1534 server_synchronize.php:1173 msgid "Password" msgstr "Palavra-passe" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:815 server_privileges.php:818 +#: server_privileges.php:814 server_privileges.php:817 msgid "Re-type" msgstr "Confirma" @@ -2009,8 +1986,8 @@ msgstr "Criar nova base de dados" msgid "Create" msgstr "Criar" -#: libraries/display_create_database.lib.php:39 server_privileges.php:113 -#: server_privileges.php:1419 server_replication.php:34 +#: libraries/display_create_database.lib.php:39 server_privileges.php:112 +#: server_privileges.php:1423 server_replication.php:33 msgid "No Privileges" msgstr "Sem Privilégios" @@ -2031,52 +2008,52 @@ msgstr "Criar nova tabela na base de dados %s" msgid "Number of columns" msgstr "Número de registos por página" -#: libraries/display_export.lib.php:41 +#: libraries/display_export.lib.php:35 msgid "Could not load export plugins, please check your installation!" msgstr "" -#: libraries/display_export.lib.php:106 +#: libraries/display_export.lib.php:100 #, fuzzy, php-format #| msgid "Dump %s row(s) starting at record # %s" msgid "Dump %s row(s) starting at row # %s" msgstr "Exporta %s registos começando em %s." -#: libraries/display_export.lib.php:114 +#: libraries/display_export.lib.php:108 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:124 setup/lib/messages.inc.php:79 +#: libraries/display_export.lib.php:118 setup/lib/messages.inc.php:79 msgid "Save as file" msgstr "envia" -#: libraries/display_export.lib.php:133 +#: libraries/display_export.lib.php:127 #, php-format msgid "Save on server in %s directory" msgstr "Gravar no servidor na directoria %s" -#: libraries/display_export.lib.php:141 setup/lib/messages.inc.php:87 +#: libraries/display_export.lib.php:135 setup/lib/messages.inc.php:87 msgid "Overwrite existing file(s)" msgstr "Substituir o(s) ficheiro(s) existente(s)" -#: libraries/display_export.lib.php:147 +#: libraries/display_export.lib.php:141 msgid "File name template" msgstr "Nome do ficheiro modelo" -#: libraries/display_export.lib.php:151 +#: libraries/display_export.lib.php:145 #, fuzzy msgid "server name" msgstr "Nome do Utilizador" -#: libraries/display_export.lib.php:154 +#: libraries/display_export.lib.php:148 #, fuzzy msgid "database name" msgstr "Base de Dados" -#: libraries/display_export.lib.php:157 +#: libraries/display_export.lib.php:151 msgid "table name" msgstr "" -#: libraries/display_export.lib.php:161 +#: libraries/display_export.lib.php:155 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2084,39 +2061,39 @@ msgid "" "%3$s. Other text will be kept as is." msgstr "" -#: libraries/display_export.lib.php:202 +#: libraries/display_export.lib.php:196 msgid "remember template" msgstr "Lembrar-se do modelo" -#: libraries/display_export.lib.php:210 libraries/display_import.lib.php:177 +#: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 #: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 msgid "Character set of the file:" msgstr "Configurar o Mapa de Caracteres do ficheiro:" -#: libraries/display_export.lib.php:235 setup/lib/messages.inc.php:81 +#: libraries/display_export.lib.php:229 setup/lib/messages.inc.php:81 msgid "Compression" msgstr "Compressão" -#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:196 -#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:529 -#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:574 -#: server_privileges.php:1867 server_processlist.php:74 +#: libraries/display_export.lib.php:234 libraries/display_import.lib.php:196 +#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:528 +#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:573 +#: server_privileges.php:1871 server_processlist.php:74 msgid "None" msgstr "Nenhum" -#: libraries/display_export.lib.php:247 +#: libraries/display_export.lib.php:241 msgid "\"zipped\"" msgstr "\"Compressão zip\"" -#: libraries/display_export.lib.php:253 +#: libraries/display_export.lib.php:247 msgid "\"gzipped\"" msgstr "\"Compressão gzip\"" -#: libraries/display_export.lib.php:259 +#: libraries/display_export.lib.php:253 msgid "\"bzipped\"" msgstr "\"Compressão bzip\"" -#: libraries/display_export.lib.php:274 libraries/export/sql.php:42 +#: libraries/display_export.lib.php:268 libraries/export/sql.php:42 #: libraries/import/sql.php:31 msgid "SQL compatibility mode" msgstr "" @@ -2151,12 +2128,12 @@ msgid "File uploads are not allowed on this server." msgstr "" #: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 -#: tbl_change.php:1024 +#: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "Não é possivel alcançar a directoria que configurou para fazer upload" #: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 -#: tbl_change.php:1027 +#: tbl_change.php:925 msgid "web server upload directory" msgstr "Directoria no servidor web para fazer upload" @@ -2235,43 +2212,43 @@ msgstr "Tamanho do papel" msgid "Language" msgstr "" -#: libraries/display_tbl.lib.php:303 +#: libraries/display_tbl.lib.php:302 #, php-format msgid "%d is not valid row number." msgstr "" -#: libraries/display_tbl.lib.php:309 +#: libraries/display_tbl.lib.php:308 #, fuzzy #| msgid "row(s) starting from record #" msgid "row(s) starting from row #" msgstr "registos começando em" -#: libraries/display_tbl.lib.php:315 +#: libraries/display_tbl.lib.php:314 msgid "horizontal" msgstr "horizontal" -#: libraries/display_tbl.lib.php:316 +#: libraries/display_tbl.lib.php:315 msgid "horizontal (rotated headers)" msgstr "horizontal (cabeçalhos rodados)" -#: libraries/display_tbl.lib.php:317 +#: libraries/display_tbl.lib.php:316 msgid "vertical" msgstr "vertical" -#: libraries/display_tbl.lib.php:323 +#: libraries/display_tbl.lib.php:322 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "em modo %s com cabeçalhos repetidos a cada %s células" -#: libraries/display_tbl.lib.php:345 +#: libraries/display_tbl.lib.php:344 msgid "This operation could take a long time. Proceed anyway?" msgstr "" -#: libraries/display_tbl.lib.php:511 +#: libraries/display_tbl.lib.php:510 msgid "Sort by key" msgstr "Ordenar por chave" -#: libraries/display_tbl.lib.php:554 libraries/export/codegen.php:38 +#: libraries/display_tbl.lib.php:553 libraries/export/codegen.php:38 #: libraries/export/csv.php:29 libraries/export/excel.php:34 #: libraries/export/htmlword.php:28 libraries/export/latex.php:32 #: libraries/export/mediawiki.php:21 libraries/export/ods.php:26 @@ -2281,101 +2258,101 @@ msgstr "Ordenar por chave" #: libraries/export/xlsx.php:26 libraries/export/xml.php:23 #: libraries/export/yaml.php:27 libraries/import.lib.php:1114 #: libraries/import.lib.php:1136 libraries/import/csv.php:31 -#: libraries/import/docsql.php:33 libraries/import/ldi.php:46 +#: libraries/import/docsql.php:32 libraries/import/ldi.php:46 #: libraries/import/ods.php:30 libraries/import/sql.php:19 #: libraries/import/xls.php:25 libraries/import/xlsx.php:25 -#: libraries/import/xml.php:25 tbl_select.php:264 tbl_structure.php:752 +#: libraries/import/xml.php:25 tbl_select.php:263 tbl_structure.php:750 #, fuzzy msgid "Options" msgstr "Operações" -#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:569 +#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:568 msgid "Partial Texts" msgstr "Texto parcial" -#: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:573 +#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:572 msgid "Full Texts" msgstr "Texto inteiro" -#: libraries/display_tbl.lib.php:586 +#: libraries/display_tbl.lib.php:585 #, fuzzy msgid "Relational key" msgstr "Esquema relacional" -#: libraries/display_tbl.lib.php:587 +#: libraries/display_tbl.lib.php:586 #, fuzzy #| msgid "Relational schema" msgid "Relational display column" msgstr "Esquema relacional" -#: libraries/display_tbl.lib.php:594 +#: libraries/display_tbl.lib.php:593 msgid "Show binary contents" msgstr "" -#: libraries/display_tbl.lib.php:596 +#: libraries/display_tbl.lib.php:595 msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:598 +#: libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "" -#: libraries/display_tbl.lib.php:606 pmd_general.php:140 tbl_change.php:312 -#: tbl_change.php:318 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:307 +#: tbl_change.php:313 msgid "Hide" msgstr "" -#: libraries/display_tbl.lib.php:606 libraries/relation.lib.php:122 -#: libraries/tbl_properties.inc.php:143 transformation_overview.php:46 +#: libraries/display_tbl.lib.php:605 libraries/relation.lib.php:117 +#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46 msgid "Browser transformation" msgstr "Transformação do navegador" -#: libraries/display_tbl.lib.php:1125 libraries/display_tbl.lib.php:1129 -#: libraries/display_tbl.lib.php:1131 +#: libraries/display_tbl.lib.php:1124 libraries/display_tbl.lib.php:1128 +#: libraries/display_tbl.lib.php:1130 msgid "Execute bookmarked query" msgstr "Executar um query marcado(do marcador)" -#: libraries/display_tbl.lib.php:1144 libraries/display_tbl.lib.php:1156 +#: libraries/display_tbl.lib.php:1143 libraries/display_tbl.lib.php:1155 msgid "The row has been deleted" msgstr "Registo eliminado" -#: libraries/display_tbl.lib.php:1183 libraries/display_tbl.lib.php:2055 +#: libraries/display_tbl.lib.php:1182 libraries/display_tbl.lib.php:2014 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "Termina" -#: libraries/display_tbl.lib.php:1933 +#: libraries/display_tbl.lib.php:1892 msgid "in query" msgstr "na pesquisa" -#: libraries/display_tbl.lib.php:1951 +#: libraries/display_tbl.lib.php:1910 msgid "Showing rows" msgstr "Mostrando registos " -#: libraries/display_tbl.lib.php:1961 +#: libraries/display_tbl.lib.php:1920 msgid "total" msgstr "total" -#: libraries/display_tbl.lib.php:1969 sql.php:523 +#: libraries/display_tbl.lib.php:1928 sql.php:522 #, php-format msgid "Query took %01.4f sec" msgstr "O Query demorou %01.4f sec" -#: libraries/display_tbl.lib.php:2088 libraries/mult_submits.inc.php:112 -#: querywindow.php:115 querywindow.php:119 querywindow.php:122 -#: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:469 +#: libraries/display_tbl.lib.php:2047 libraries/mult_submits.inc.php:112 +#: querywindow.php:114 querywindow.php:118 querywindow.php:121 +#: tbl_structure.php:23 tbl_structure.php:148 tbl_structure.php:467 msgid "Change" msgstr "Muda" -#: libraries/display_tbl.lib.php:2158 +#: libraries/display_tbl.lib.php:2117 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2186 +#: libraries/display_tbl.lib.php:2145 msgid "Print view (with full texts)" msgstr "Vista de impressão (com texto inteiro)" -#: libraries/display_tbl.lib.php:2359 +#: libraries/display_tbl.lib.php:2318 msgid "Link not found" msgstr "Link não encontrado" @@ -2429,9 +2406,9 @@ msgstr "Estado da InnoDB" msgid "Buffer Pool Usage" msgstr "" -#: libraries/engines/innodb.lib.php:168 server_databases.php:136 -#: server_databases.php:304 server_status.php:524 server_status.php:585 -#: server_status.php:606 tbl_printview.php:349 tbl_structure.php:695 +#: libraries/engines/innodb.lib.php:168 server_databases.php:134 +#: server_databases.php:302 server_status.php:524 server_status.php:585 +#: server_status.php:606 tbl_printview.php:348 tbl_structure.php:693 msgid "Total" msgstr "Total" @@ -2554,6 +2531,78 @@ msgid "" "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." msgstr "" +#: libraries/engines/pbms.lib.php:31 +msgid "Garbage Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:32 +msgid "The percentage of garbage in a repository file before it is compacted." +msgstr "" + +#: libraries/engines/pbms.lib.php:36 libraries/replication_gui.lib.php:69 +#: server_synchronize.php:1161 +#, fuzzy +msgid "Port" +msgstr "Ordenação" + +#: libraries/engines/pbms.lib.php:37 +msgid "" +"The port for the PBMS stream-based communications. Setting this value to 0 " +"will disable HTTP communication with the daemon." +msgstr "" + +#: libraries/engines/pbms.lib.php:41 +msgid "Repository Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:42 +msgid "" +"The maximum size of a BLOB repository file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:46 +msgid "Temp Blob Timeout" +msgstr "" + +#: libraries/engines/pbms.lib.php:47 +msgid "" +"The timeout, in seconds, for temporary BLOBs. Uploaded BLOB data is removed " +"after this time, unless they are referenced by a record in the database." +msgstr "" + +#: libraries/engines/pbms.lib.php:51 +msgid "Temp Log Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:52 +msgid "" +"The maximum size of a temporary BLOB log file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:56 +msgid "Max Keep Alive" +msgstr "" + +#: libraries/engines/pbms.lib.php:57 +msgid "" +"The timeout for inactive connection with the keep-alive flag set. After this " +"time the connection will be closed. The time-out is in milliseconds (1/1000)." +msgstr "" + +#: libraries/engines/pbms.lib.php:61 +msgid "Metadata Headers" +msgstr "" + +#: libraries/engines/pbms.lib.php:62 +msgid "" +"A \":\" delimited list of metadata headers to be used to initialize the " +"pbms_metadata_header table when a database is created." +msgstr "" + #: libraries/engines/pbxt.lib.php:22 msgid "Index cache size" msgstr "" @@ -2677,7 +2726,7 @@ msgid "" msgstr "" #: libraries/export/codegen.php:36 setup/lib/messages.inc.php:85 -#: tbl_printview.php:374 tbl_structure.php:736 +#: tbl_printview.php:373 tbl_structure.php:734 msgid "Format" msgstr "Formato" @@ -2748,9 +2797,9 @@ msgstr "" #: libraries/export/htmlword.php:23 libraries/export/latex.php:59 #: libraries/export/latex.php:205 libraries/export/odt.php:47 #: libraries/export/sql.php:105 libraries/export/sql.php:865 -#: libraries/export/texytext.php:27 server_databases.php:126 -#: server_privileges.php:576 server_replication.php:315 tbl_printview.php:315 -#: tbl_structure.php:664 +#: libraries/export/texytext.php:27 server_databases.php:124 +#: server_privileges.php:575 server_replication.php:314 tbl_printview.php:314 +#: tbl_structure.php:662 msgid "Data" msgstr "Dados" @@ -2765,7 +2814,6 @@ msgid "Table structure for table" msgstr "Estrutura da tabela" #: libraries/export/latex.php:13 -#| msgid "Content of table __TABLE__" msgid "Content of table @TABLE@" msgstr "Conteúdo da tabela @TABLE@" @@ -2774,7 +2822,6 @@ msgid "(continued)" msgstr "(continuação)" #: libraries/export/latex.php:15 -#| msgid "Structure of table __TABLE__" msgid "Structure of table @TABLE@" msgstr "estructura da tabela @TABLE@" @@ -2799,13 +2846,13 @@ msgid "Label key" msgstr "" #: libraries/export/latex.php:46 libraries/export/odt.php:34 -#: libraries/export/sql.php:90 tbl_relation.php:398 +#: libraries/export/sql.php:90 tbl_relation.php:396 msgid "Relations" msgstr "Relações" #: libraries/export/latex.php:52 libraries/export/odt.php:40 #: libraries/export/odt.php:317 libraries/export/sql.php:94 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "MIME-type" @@ -2813,10 +2860,10 @@ msgstr "MIME-type" #: libraries/export/xml.php:101 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1529 server_privileges.php:2061 -#: server_processlist.php:54 server_synchronize.php:1158 +#: libraries/replication_gui.lib.php:331 server_privileges.php:730 +#: server_privileges.php:733 server_privileges.php:789 +#: server_privileges.php:1533 server_privileges.php:2065 +#: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "Máquina" @@ -3016,8 +3063,8 @@ msgstr "Tipo de Exportação" msgid "Export contents" msgstr "Tipo de Exportação" -#: libraries/footer.inc.php:182 libraries/footer.inc.php:193 -#: libraries/footer.inc.php:196 +#: libraries/footer.inc.php:180 libraries/footer.inc.php:191 +#: libraries/footer.inc.php:194 msgid "Open new phpMyAdmin window" msgstr "" @@ -3034,7 +3081,7 @@ msgstr "Resultado SQL" msgid "Generated by" msgstr "Gerado por" -#: libraries/import.lib.php:151 sql.php:519 tbl_change.php:180 +#: libraries/import.lib.php:151 sql.php:518 tbl_change.php:175 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL não retornou nenhum registo." @@ -3093,7 +3140,7 @@ msgstr "" msgid "Column names in first row" msgstr "" -#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:501 +#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:500 #: view_create.php:147 msgid "Column names" msgstr "Nome dos Campos" @@ -3119,12 +3166,12 @@ msgstr "" msgid "Invalid column count in CSV input on line %d." msgstr "" -#: libraries/import/docsql.php:28 +#: libraries/import/docsql.php:27 msgid "DocSQL" msgstr "" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 -#: server_synchronize.php:427 server_synchronize.php:870 +#: libraries/import/docsql.php:30 libraries/tbl_properties.inc.php:616 +#: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "" @@ -3180,26 +3227,26 @@ msgstr "Nenhum" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:512 -#: tbl_structure.php:28 tbl_structure.php:152 tbl_structure.php:156 -#: tbl_structure.php:472 +#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:511 +#: tbl_structure.php:27 tbl_structure.php:151 tbl_structure.php:155 +#: tbl_structure.php:470 msgid "Primary" msgstr "Primária" #: libraries/mult_submits.inc.php:97 libraries/tbl_properties.inc.php:115 -#: libraries/tbl_properties.inc.php:524 tbl_printview.php:324 -#: tbl_structure.php:30 tbl_structure.php:153 tbl_structure.php:157 -#: tbl_structure.php:474 tbl_structure.php:672 +#: libraries/tbl_properties.inc.php:523 tbl_printview.php:323 +#: tbl_structure.php:29 tbl_structure.php:152 tbl_structure.php:156 +#: tbl_structure.php:472 tbl_structure.php:670 msgid "Index" msgstr "Índice" -#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:530 -#: tbl_structure.php:34 tbl_structure.php:155 tbl_structure.php:159 -#: tbl_structure.php:477 +#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:529 +#: tbl_structure.php:33 tbl_structure.php:154 tbl_structure.php:158 +#: tbl_structure.php:475 msgid "Fulltext" msgstr "Texto Completo" -#: libraries/mult_submits.inc.php:434 tbl_replace.php:330 +#: libraries/mult_submits.inc.php:433 tbl_replace.php:330 msgid "No change" msgstr "Sem alterações" @@ -3207,194 +3254,194 @@ msgstr "Sem alterações" msgid "Charset" msgstr "Mapa de Caractere" -#: libraries/mysql_charsets.lib.php:210 libraries/mysql_charsets.lib.php:411 -#: tbl_change.php:515 +#: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 +#: tbl_change.php:510 msgid "Binary" msgstr " Binário " -#: libraries/mysql_charsets.lib.php:222 +#: libraries/mysql_charsets.lib.php:214 msgid "Bulgarian" msgstr "Búlgaro" -#: libraries/mysql_charsets.lib.php:226 libraries/mysql_charsets.lib.php:351 +#: libraries/mysql_charsets.lib.php:218 libraries/mysql_charsets.lib.php:343 msgid "Simplified Chinese" msgstr "Chinês Simplificado" -#: libraries/mysql_charsets.lib.php:228 libraries/mysql_charsets.lib.php:371 +#: libraries/mysql_charsets.lib.php:220 libraries/mysql_charsets.lib.php:363 msgid "Traditional Chinese" msgstr "Chinês Tradicional" -#: libraries/mysql_charsets.lib.php:232 libraries/mysql_charsets.lib.php:418 +#: libraries/mysql_charsets.lib.php:224 libraries/mysql_charsets.lib.php:410 msgid "case-insensitive" msgstr "Sensível a maiúsculas/minúculas" -#: libraries/mysql_charsets.lib.php:235 libraries/mysql_charsets.lib.php:420 +#: libraries/mysql_charsets.lib.php:227 libraries/mysql_charsets.lib.php:412 msgid "case-sensitive" msgstr "Não-sensível a a maiúsculas/minúculas" -#: libraries/mysql_charsets.lib.php:238 +#: libraries/mysql_charsets.lib.php:230 msgid "Croatian" msgstr "Croata" -#: libraries/mysql_charsets.lib.php:241 +#: libraries/mysql_charsets.lib.php:233 msgid "Czech" msgstr "Checo" -#: libraries/mysql_charsets.lib.php:244 +#: libraries/mysql_charsets.lib.php:236 msgid "Danish" msgstr "Dinamarquês" -#: libraries/mysql_charsets.lib.php:247 +#: libraries/mysql_charsets.lib.php:239 msgid "English" msgstr "Inglês" -#: libraries/mysql_charsets.lib.php:250 +#: libraries/mysql_charsets.lib.php:242 msgid "Esperanto" msgstr "" -#: libraries/mysql_charsets.lib.php:253 +#: libraries/mysql_charsets.lib.php:245 msgid "Estonian" msgstr "Estoniano" -#: libraries/mysql_charsets.lib.php:256 libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:248 libraries/mysql_charsets.lib.php:251 msgid "German" msgstr "Alemão" -#: libraries/mysql_charsets.lib.php:256 +#: libraries/mysql_charsets.lib.php:248 msgid "dictionary" msgstr "dicionário" -#: libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:251 msgid "phone book" msgstr "lista telefónica" -#: libraries/mysql_charsets.lib.php:262 +#: libraries/mysql_charsets.lib.php:254 msgid "Hungarian" msgstr "Húngaro" -#: libraries/mysql_charsets.lib.php:265 +#: libraries/mysql_charsets.lib.php:257 msgid "Icelandic" msgstr "" -#: libraries/mysql_charsets.lib.php:268 libraries/mysql_charsets.lib.php:358 +#: libraries/mysql_charsets.lib.php:260 libraries/mysql_charsets.lib.php:350 msgid "Japanese" msgstr "Japonês" -#: libraries/mysql_charsets.lib.php:271 +#: libraries/mysql_charsets.lib.php:263 msgid "Latvian" msgstr "" -#: libraries/mysql_charsets.lib.php:274 +#: libraries/mysql_charsets.lib.php:266 msgid "Lithuanian" msgstr "Lituano" -#: libraries/mysql_charsets.lib.php:277 libraries/mysql_charsets.lib.php:380 +#: libraries/mysql_charsets.lib.php:269 libraries/mysql_charsets.lib.php:372 msgid "Korean" msgstr "Coreano" -#: libraries/mysql_charsets.lib.php:280 +#: libraries/mysql_charsets.lib.php:272 #, fuzzy msgid "Persian" msgstr "Georgiano" -#: libraries/mysql_charsets.lib.php:283 +#: libraries/mysql_charsets.lib.php:275 msgid "Polish" msgstr "" -#: libraries/mysql_charsets.lib.php:286 libraries/mysql_charsets.lib.php:334 +#: libraries/mysql_charsets.lib.php:278 libraries/mysql_charsets.lib.php:326 msgid "West European" msgstr "Europeu de Oeste" -#: libraries/mysql_charsets.lib.php:289 +#: libraries/mysql_charsets.lib.php:281 #, fuzzy msgid "Romanian" msgstr "Arménio" -#: libraries/mysql_charsets.lib.php:292 +#: libraries/mysql_charsets.lib.php:284 msgid "Slovak" msgstr "" -#: libraries/mysql_charsets.lib.php:295 +#: libraries/mysql_charsets.lib.php:287 msgid "Slovenian" msgstr "" -#: libraries/mysql_charsets.lib.php:298 +#: libraries/mysql_charsets.lib.php:290 #, fuzzy msgid "Spanish" msgstr "Dinamarquês" -#: libraries/mysql_charsets.lib.php:301 +#: libraries/mysql_charsets.lib.php:293 #, fuzzy msgid "Traditional Spanish" msgstr "Chinês Tradicional" -#: libraries/mysql_charsets.lib.php:304 libraries/mysql_charsets.lib.php:401 +#: libraries/mysql_charsets.lib.php:296 libraries/mysql_charsets.lib.php:393 msgid "Swedish" msgstr "Sueco" -#: libraries/mysql_charsets.lib.php:307 libraries/mysql_charsets.lib.php:404 +#: libraries/mysql_charsets.lib.php:299 libraries/mysql_charsets.lib.php:396 msgid "Thai" msgstr "Tailandês" -#: libraries/mysql_charsets.lib.php:310 libraries/mysql_charsets.lib.php:398 +#: libraries/mysql_charsets.lib.php:302 libraries/mysql_charsets.lib.php:390 msgid "Turkish" msgstr "Turco" -#: libraries/mysql_charsets.lib.php:313 libraries/mysql_charsets.lib.php:395 +#: libraries/mysql_charsets.lib.php:305 libraries/mysql_charsets.lib.php:387 msgid "Ukrainian" msgstr "Ucraniano" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 msgid "Unicode" msgstr "Unicode" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 -#: libraries/mysql_charsets.lib.php:334 libraries/mysql_charsets.lib.php:341 -#: libraries/mysql_charsets.lib.php:363 libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 +#: libraries/mysql_charsets.lib.php:326 libraries/mysql_charsets.lib.php:333 +#: libraries/mysql_charsets.lib.php:355 libraries/mysql_charsets.lib.php:366 msgid "multilingual" msgstr "multilingua" -#: libraries/mysql_charsets.lib.php:341 +#: libraries/mysql_charsets.lib.php:333 msgid "Central European" msgstr "Europeu Central" -#: libraries/mysql_charsets.lib.php:346 +#: libraries/mysql_charsets.lib.php:338 msgid "Russian" msgstr "Russo" -#: libraries/mysql_charsets.lib.php:363 +#: libraries/mysql_charsets.lib.php:355 msgid "Baltic" msgstr "Báltico" -#: libraries/mysql_charsets.lib.php:368 +#: libraries/mysql_charsets.lib.php:360 msgid "Armenian" msgstr "Arménio" -#: libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:366 msgid "Cyrillic" msgstr "" -#: libraries/mysql_charsets.lib.php:377 +#: libraries/mysql_charsets.lib.php:369 msgid "Arabic" msgstr "Árabe" -#: libraries/mysql_charsets.lib.php:383 +#: libraries/mysql_charsets.lib.php:375 msgid "Hebrew" msgstr "Hebráico" -#: libraries/mysql_charsets.lib.php:386 +#: libraries/mysql_charsets.lib.php:378 msgid "Georgian" msgstr "Georgiano" -#: libraries/mysql_charsets.lib.php:389 +#: libraries/mysql_charsets.lib.php:381 msgid "Greek" msgstr "Grego" -#: libraries/mysql_charsets.lib.php:392 +#: libraries/mysql_charsets.lib.php:384 msgid "Czech-Slovak" msgstr "Checo-Eslovaco" -#: libraries/mysql_charsets.lib.php:407 libraries/mysql_charsets.lib.php:414 +#: libraries/mysql_charsets.lib.php:399 libraries/mysql_charsets.lib.php:406 msgid "unknown" msgstr "desconhecido" @@ -3420,68 +3467,68 @@ msgstr "Janela de Query" msgid "This format has no options" msgstr "Este formato não tem opções" -#: libraries/relation.lib.php:82 +#: libraries/relation.lib.php:77 msgid "not OK" msgstr "não está OK" -#: libraries/relation.lib.php:86 pmd_general.php:339 +#: libraries/relation.lib.php:81 pmd_general.php:339 msgid "OK" msgstr "OK" -#: libraries/relation.lib.php:87 +#: libraries/relation.lib.php:82 msgid "Enabled" msgstr "Activado" -#: libraries/relation.lib.php:110 +#: libraries/relation.lib.php:105 msgid "Display Features" msgstr "Mostrar Características" -#: libraries/relation.lib.php:116 +#: libraries/relation.lib.php:111 msgid "Creation of PDFs" msgstr "Criação de PDFs" -#: libraries/relation.lib.php:120 +#: libraries/relation.lib.php:115 msgid "Displaying Column Comments" msgstr "Mostrando comentários das Colunas" -#: libraries/relation.lib.php:125 +#: libraries/relation.lib.php:120 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "Consulte a Documentação sobre como actualizar a Tabela Column_comments Table" -#: libraries/relation.lib.php:130 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 msgid "Bookmarked SQL query" msgstr "Comandos SQL marcados" -#: libraries/relation.lib.php:134 querywindow.php:99 querywindow.php:207 +#: libraries/relation.lib.php:129 querywindow.php:98 querywindow.php:205 msgid "SQL history" msgstr "Histórico SQL" -#: libraries/relation.lib.php:146 +#: libraries/relation.lib.php:141 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:148 +#: libraries/relation.lib.php:143 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" -#: libraries/relation.lib.php:149 +#: libraries/relation.lib.php:144 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:150 +#: libraries/relation.lib.php:145 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:151 +#: libraries/relation.lib.php:146 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1158 +#: libraries/relation.lib.php:1153 msgid "no description" msgstr "sem Descrição" @@ -3489,7 +3536,7 @@ msgstr "sem Descrição" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:53 server_replication.php:346 +#: libraries/replication_gui.lib.php:53 server_replication.php:345 msgid "Change or reconfigure master server" msgstr "" @@ -3501,17 +3548,12 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:711 -#: server_privileges.php:714 server_privileges.php:721 -#: server_synchronize.php:1170 +#: libraries/replication_gui.lib.php:261 server_privileges.php:710 +#: server_privileges.php:713 server_privileges.php:720 +#: server_synchronize.php:1169 msgid "User name" msgstr "Nome do Utilizador" -#: libraries/replication_gui.lib.php:69 server_synchronize.php:1162 -#, fuzzy -msgid "Port" -msgstr "Ordenação" - #: libraries/replication_gui.lib.php:105 msgid "Master status" msgstr "" @@ -3526,8 +3568,8 @@ msgid "Variable" msgstr "Variável" #: libraries/replication_gui.lib.php:117 server_status.php:737 -#: tbl_change.php:322 tbl_printview.php:368 tbl_select.php:137 -#: tbl_structure.php:728 +#: tbl_change.php:317 tbl_printview.php:367 tbl_select.php:136 +#: tbl_structure.php:726 msgid "Value" msgstr "Valor" @@ -3542,38 +3584,38 @@ msgid "" "this list." msgstr "" -#: libraries/replication_gui.lib.php:242 server_replication.php:193 +#: libraries/replication_gui.lib.php:242 server_replication.php:192 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:256 server_privileges.php:716 +#: libraries/replication_gui.lib.php:256 server_privileges.php:715 msgid "Any user" msgstr "Qualquer utilizador" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1920 server_privileges.php:1950 +#: libraries/replication_gui.lib.php:348 server_privileges.php:716 +#: server_privileges.php:783 server_privileges.php:807 +#: server_privileges.php:1924 server_privileges.php:1954 msgid "Use text field" msgstr "Usar campo de texto" -#: libraries/replication_gui.lib.php:304 server_privileges.php:764 +#: libraries/replication_gui.lib.php:304 server_privileges.php:763 msgid "Any host" msgstr "Qualquer máquina" -#: libraries/replication_gui.lib.php:308 server_privileges.php:768 +#: libraries/replication_gui.lib.php:308 server_privileges.php:767 msgid "Local" msgstr "Local" -#: libraries/replication_gui.lib.php:314 server_privileges.php:773 +#: libraries/replication_gui.lib.php:314 server_privileges.php:772 msgid "This Host" msgstr "Este Anfitrião" -#: libraries/replication_gui.lib.php:320 server_privileges.php:779 +#: libraries/replication_gui.lib.php:320 server_privileges.php:778 msgid "Use Host Table" msgstr "Usar a tabela do anfitrião" -#: libraries/replication_gui.lib.php:333 server_privileges.php:792 +#: libraries/replication_gui.lib.php:333 server_privileges.php:791 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3600,8 +3642,8 @@ msgstr "" msgid "Servers" msgstr "Servidor" -#: libraries/server_links.inc.php:52 server_engines.php:111 -#: server_engines.php:115 server_status.php:414 test/theme.php:104 +#: libraries/server_links.inc.php:52 server_engines.php:125 +#: server_engines.php:129 server_status.php:414 test/theme.php:104 msgid "Variables" msgstr "Variáveis" @@ -3623,12 +3665,12 @@ msgstr " Binário " msgid "Processes" msgstr "Processos" -#: libraries/server_links.inc.php:91 server_synchronize.php:1091 -#: server_synchronize.php:1099 +#: libraries/server_links.inc.php:91 server_synchronize.php:1090 +#: server_synchronize.php:1098 msgid "Synchronize" msgstr "" -#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1109 +#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1108 #, fuzzy msgid "Source database" msgstr "Pesquisar na Base de Dados" @@ -3647,7 +3689,7 @@ msgstr "" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1111 +#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1110 #, fuzzy msgid "Target database" msgstr "Pesquisar na Base de Dados" @@ -3668,11 +3710,11 @@ msgstr "Executa comando(s) SQL na base de dados %s" msgid "Columns" msgstr "Nome dos Campos" -#: libraries/sql_query_form.lib.php:342 sql.php:664 sql.php:665 sql.php:682 +#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "Marcar este comando SQL" -#: libraries/sql_query_form.lib.php:349 sql.php:676 +#: libraries/sql_query_form.lib.php:349 sql.php:669 msgid "Let every user access this bookmark" msgstr "Deixar todos os utilizadores acederem a este marcador" @@ -3767,12 +3809,12 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" -#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:139 -#: libraries/tbl_links.inc.php:140 +#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 +#: libraries/tbl_links.inc.php:139 msgid "Table seems to be empty!" msgstr "" -#: libraries/tbl_links.inc.php:148 +#: libraries/tbl_links.inc.php:147 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" @@ -3805,12 +3847,12 @@ msgid "" "escaping or quotes, using this format: a" msgstr "" -#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1263 -#: pdf_schema.php:1284 tbl_printview.php:142 tbl_structure.php:179 +#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1262 +#: pdf_schema.php:1283 tbl_printview.php:141 tbl_structure.php:178 msgid "Attributes" msgstr "Atributos" -#: libraries/tbl_properties.inc.php:136 +#: libraries/tbl_properties.inc.php:135 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -3819,11 +3861,11 @@ msgstr "" "Para uma lista de opções de transformação disponíveis e suas transformações " "MIME-type , clique em %stransformation descriptions%s" -#: libraries/tbl_properties.inc.php:144 +#: libraries/tbl_properties.inc.php:143 msgid "Transformation options" msgstr "Opções de tranformação" -#: libraries/tbl_properties.inc.php:145 +#: libraries/tbl_properties.inc.php:144 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
                            If you ever need to put a backslash (\"\\\") or a single " @@ -3835,18 +3877,18 @@ msgstr "" "\") ou uma pelica (\"'\") no meio desses valores, faça-o backslashes (por " "exemplo '\\\\xyz' ou 'a\\'b')." -#: libraries/tbl_properties.inc.php:392 +#: libraries/tbl_properties.inc.php:391 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "Nenhum" -#: libraries/tbl_properties.inc.php:393 +#: libraries/tbl_properties.inc.php:392 msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:579 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:578 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
                            Please ask the " @@ -3855,28 +3897,28 @@ msgstr "" "Não há descrição disponível para esta transformação.
                            Pergunte ao autor, " "o que %s faz." -#: libraries/tbl_properties.inc.php:725 server_engines.php:57 -#: tbl_operations.php:354 +#: libraries/tbl_properties.inc.php:724 server_engines.php:56 +#: tbl_operations.php:352 msgid "Storage Engine" msgstr "" -#: libraries/tbl_properties.inc.php:754 +#: libraries/tbl_properties.inc.php:753 msgid "PARTITION definition" msgstr "" -#: libraries/tbl_properties.inc.php:775 pdf_pages.php:502 +#: libraries/tbl_properties.inc.php:774 pdf_pages.php:501 #: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214 -#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1124 tbl_indexes.php:247 -#: tbl_relation.php:565 +#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1022 tbl_indexes.php:246 +#: tbl_relation.php:563 msgid "Save" msgstr "Guarda" -#: libraries/tbl_properties.inc.php:779 tbl_structure.php:541 +#: libraries/tbl_properties.inc.php:778 tbl_structure.php:539 #, fuzzy, php-format msgid "Add %s column(s)" msgstr "Adiciona novo campo" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:535 +#: libraries/tbl_properties.inc.php:782 tbl_structure.php:533 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." @@ -4009,8 +4051,8 @@ msgstr "" msgid "Custom color" msgstr "" -#: main.php:162 pdf_pages.php:362 setup/lib/FormDisplay.tpl.php:216 -#: tbl_change.php:1173 +#: main.php:162 pdf_pages.php:361 setup/lib/FormDisplay.tpl.php:216 +#: tbl_change.php:1071 msgid "Reset" msgstr "Limpa" @@ -4018,8 +4060,8 @@ msgstr "Limpa" msgid "Protocol version" msgstr "" -#: main.php:188 server_privileges.php:1381 server_privileges.php:1528 -#: server_privileges.php:1642 server_privileges.php:2060 +#: main.php:188 server_privileges.php:1385 server_privileges.php:1532 +#: server_privileges.php:1646 server_privileges.php:2064 #: server_processlist.php:53 msgid "User" msgstr "Utilizador" @@ -4100,21 +4142,30 @@ msgid "" "has been configured." msgstr "" -#: main.php:330 +#: main.php:314 +#, php-format +msgid "" +"The additional features for working with linked tables have been " +"deactivated. To find out why click %shere%s." +msgstr "" +"As Características adicionais para trabalhar com ligações entre Tabelas " +"foram desactivadas. Para saber porquê carregue %saqui%s." + +#: main.php:329 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:345 +#: main.php:344 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: main.php:357 +#: main.php:356 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -4125,104 +4176,104 @@ msgstr "" msgid "Reload navigation frame" msgstr "" -#: navigation.php:204 server_databases.php:370 server_synchronize.php:1190 +#: navigation.php:203 server_databases.php:368 server_synchronize.php:1189 msgid "No databases" msgstr "Sem bases de dados" -#: navigation.php:298 +#: navigation.php:297 #, fuzzy msgid "Filter" msgstr "Qtd Campos" -#: navigation.php:299 setup/frames/index.inc.php:218 +#: navigation.php:298 setup/frames/index.inc.php:218 #: setup/lib/messages.inc.php:41 msgid "Clear" msgstr "" -#: navigation.php:330 navigation.php:331 +#: navigation.php:329 navigation.php:330 #, fuzzy msgctxt "short form" msgid "Create table" msgstr "Criar uma Página nova" -#: navigation.php:333 navigation.php:495 +#: navigation.php:332 navigation.php:494 msgid "Please select a database" msgstr "Por favor seleccione uma base de dados" -#: pdf_pages.php:40 pdf_pages.php:46 pdf_pages.php:52 pdf_pages.php:57 +#: pdf_pages.php:39 pdf_pages.php:45 pdf_pages.php:51 pdf_pages.php:56 #, php-format msgid "%s table not found or not set in %s" msgstr "A Tabela %s não foi encontrada ou não foi definida em %s" -#: pdf_pages.php:265 +#: pdf_pages.php:264 msgid "Please choose a page to edit" msgstr "Escolha uma Página para editar" -#: pdf_pages.php:303 pmd_pdf.php:113 +#: pdf_pages.php:302 pmd_pdf.php:111 msgid "Create a page" msgstr "Criar uma Página nova" -#: pdf_pages.php:309 +#: pdf_pages.php:308 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Página número:" -#: pdf_pages.php:313 +#: pdf_pages.php:312 #, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "Layout automático" -#: pdf_pages.php:315 +#: pdf_pages.php:314 msgid "Internal relations" msgstr "Relações internas" -#: pdf_pages.php:338 +#: pdf_pages.php:337 msgid "Select Tables" msgstr "Seleccionar Tabelas" -#: pdf_pages.php:361 +#: pdf_pages.php:360 msgid "Toggle scratchboard" msgstr "" -#: pdf_pages.php:524 +#: pdf_pages.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" msgstr "" -#: pdf_schema.php:635 +#: pdf_schema.php:634 #, fuzzy, php-format #| msgid "The \"%s\" table doesn't exist!" msgid "The %s table doesn't exist!" msgstr "A tabela \"%s\" não existe!" -#: pdf_schema.php:671 +#: pdf_schema.php:670 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Configure as cordenadas para a tabela %s" -#: pdf_schema.php:994 +#: pdf_schema.php:993 #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" msgstr "Esquema da base de dados \"%s\" - Página %s" -#: pdf_schema.php:1012 +#: pdf_schema.php:1011 msgid "No tables" msgstr "Sem tablelas" -#: pdf_schema.php:1031 pdf_schema.php:1140 +#: pdf_schema.php:1030 pdf_schema.php:1139 msgid "Relational schema" msgstr "Esquema relacional" -#: pdf_schema.php:1115 +#: pdf_schema.php:1114 msgid "Table of contents" msgstr "Índice" -#: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:145 -#: tbl_structure.php:182 tbl_tracking.php:277 +#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 +#: tbl_structure.php:181 tbl_tracking.php:272 msgid "Extra" msgstr "Extra" @@ -4234,7 +4285,7 @@ msgstr "" msgid "Save position" msgstr "" -#: pmd_general.php:70 server_synchronize.php:428 server_synchronize.php:871 +#: pmd_general.php:70 server_synchronize.php:427 server_synchronize.php:870 #, fuzzy msgid "Create table" msgstr "Criar uma Página nova" @@ -4308,32 +4359,32 @@ msgid "" "appropriate column name." msgstr "" -#: pmd_pdf.php:62 +#: pmd_pdf.php:60 #, fuzzy msgid "Page has been created" msgstr "A tabela %s foi eliminada" -#: pmd_pdf.php:64 +#: pmd_pdf.php:62 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:84 +#: pmd_pdf.php:82 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:88 +#: pmd_pdf.php:86 msgid "recommended" msgstr "" -#: pmd_pdf.php:93 +#: pmd_pdf.php:91 msgid "to/from page" msgstr "" -#: querywindow.php:94 +#: querywindow.php:93 msgid "Import files" msgstr "Importar" -#: querywindow.php:105 +#: querywindow.php:104 msgid "All" msgstr "Todas" @@ -4382,65 +4433,65 @@ msgstr "Informação de Login " msgid "Character Sets and Collations" msgstr "" -#: server_databases.php:51 +#: server_databases.php:49 msgid "No databases selected." msgstr "Nenhuma base de dados selecionada." -#: server_databases.php:62 +#: server_databases.php:60 #, php-format msgid "%s databases have been dropped successfully." msgstr "As Bases de Dados %s foram apagadas com sucesso." -#: server_databases.php:87 +#: server_databases.php:85 msgid "Databases statistics" msgstr "Estatísticas das bases de dados" -#: server_databases.php:116 server_status.php:370 +#: server_databases.php:114 server_status.php:370 #: setup/lib/messages.inc.php:114 msgid "Tables" msgstr "Tabelas" -#: server_databases.php:194 server_replication.php:180 -#: server_replication.php:208 +#: server_databases.php:192 server_replication.php:179 +#: server_replication.php:207 msgid "Master replication" msgstr "" -#: server_databases.php:196 server_replication.php:247 +#: server_databases.php:194 server_replication.php:246 msgid "Slave replication" msgstr "" -#: server_databases.php:229 +#: server_databases.php:227 #, fuzzy msgid "Jump to database" msgstr "Sem bases de dados" -#: server_databases.php:266 +#: server_databases.php:264 msgid "Not replicated" msgstr "" -#: server_databases.php:272 +#: server_databases.php:270 #, fuzzy msgid "Replicated" msgstr "Relações" -#: server_databases.php:288 +#: server_databases.php:286 #, php-format msgid "Check privileges for database "%s"." msgstr "Verificar Privilégios para a Base de Dados "%s"." -#: server_databases.php:292 server_databases.php:293 +#: server_databases.php:290 server_databases.php:291 msgid "Check Privileges" msgstr "Verificar Privilégios" -#: server_databases.php:357 server_databases.php:358 +#: server_databases.php:355 server_databases.php:356 msgid "Enable Statistics" msgstr "Activar Estatísticas" -#: server_databases.php:361 server_databases.php:362 +#: server_databases.php:359 server_databases.php:360 msgid "Disable Statistics" msgstr "Desactivar Estatísticas" -#: server_databases.php:365 +#: server_databases.php:363 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -4448,126 +4499,126 @@ msgstr "" "Nota: Activar as estatísticas aqui pode causar um grande volume de tráfego " "entre o servidor web e o de MySQL." -#: server_engines.php:48 +#: server_engines.php:47 msgid "Storage Engines" msgstr "" -#: server_export.php:20 +#: server_export.php:18 #, fuzzy msgid "View dump (schema) of databases" msgstr "Ver o esquema da base de dados" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:23 server_privileges.php:265 msgid "Includes all privileges except GRANT." msgstr "inclui todos os privilégios excepto Conceção - GRANT." -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:24 server_privileges.php:191 +#: server_privileges.php:514 msgid "Allows altering the structure of existing tables." msgstr "Permite alterar a estrutura de tabelas existentes." -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:25 server_privileges.php:207 +#: server_privileges.php:520 #, fuzzy msgid "Allows altering and dropping stored routines." msgstr "Permite criar e apagar indexes." -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:26 server_privileges.php:183 +#: server_privileges.php:513 msgid "Allows creating new databases and tables." msgstr "Permite criar novas Bases de Dados e tabelas." -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:27 server_privileges.php:206 +#: server_privileges.php:519 #, fuzzy msgid "Allows creating stored routines." msgstr "Permite criar novas tabelas." -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:513 msgid "Allows creating new tables." msgstr "Permite criar novas tabelas." -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:29 server_privileges.php:194 +#: server_privileges.php:517 msgid "Allows creating temporary tables." msgstr "Permite criar tabelas temporárias." -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:30 server_privileges.php:208 +#: server_privileges.php:553 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: server_privileges.php:32 server_privileges.php:199 -#: server_privileges.php:203 server_privileges.php:526 -#: server_privileges.php:530 +#: server_privileges.php:31 server_privileges.php:198 +#: server_privileges.php:202 server_privileges.php:525 +#: server_privileges.php:529 #, fuzzy msgid "Allows creating new views." msgstr "Permite criar novas tabelas." -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:32 server_privileges.php:182 +#: server_privileges.php:505 msgid "Allows deleting data." msgstr "Permite apagar dados." -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:33 server_privileges.php:184 +#: server_privileges.php:516 msgid "Allows dropping databases and tables." msgstr "Permite apagar Bases de Dados e tabelas." -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:34 server_privileges.php:516 msgid "Allows dropping tables." msgstr "Permite apagar Bases de Dados." -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:35 server_privileges.php:199 +#: server_privileges.php:533 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:36 server_privileges.php:209 +#: server_privileges.php:521 #, fuzzy msgid "Allows executing stored routines." msgstr "Permite criar novas tabelas." -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:37 server_privileges.php:188 +#: server_privileges.php:508 msgid "Allows importing data from and exporting data into files." msgstr "Permite importar dados de... e exportar dados para ficheiros." -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:38 server_privileges.php:539 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Permite adicionar utilizadores e privilégios sem recarregar a tabela de " "privilégios." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:515 msgid "Allows creating and dropping indexes." msgstr "Permite criar e apagar indexes." -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:40 server_privileges.php:180 +#: server_privileges.php:441 server_privileges.php:503 msgid "Allows inserting and replacing data." msgstr "Permite inserir e substituir dados." -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:41 server_privileges.php:195 +#: server_privileges.php:548 msgid "Allows locking tables for the current thread." msgstr "" -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:42 server_privileges.php:645 +#: server_privileges.php:647 msgid "Limits the number of new connections the user may open per hour." msgstr "Limits the number of new connections the user may open per hour." -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:43 server_privileges.php:633 +#: server_privileges.php:635 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Limits the number of queries the user may send to the server per hour." -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:44 server_privileges.php:639 +#: server_privileges.php:641 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -4575,217 +4626,217 @@ msgstr "" "Limits the number of commands that change any table or database the user may " "execute per hour." -#: server_privileges.php:46 server_privileges.php:652 -#: server_privileges.php:654 +#: server_privileges.php:45 server_privileges.php:651 +#: server_privileges.php:653 #, fuzzy msgid "Limits the number of simultaneous connections the user may have." msgstr "Limits the number of new connections the user may open per hour." -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:46 server_privileges.php:187 +#: server_privileges.php:543 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:47 server_privileges.php:189 +#: server_privileges.php:447 server_privileges.php:549 msgid "Has no effect in this MySQL version." msgstr "Não tem efeito nesta versão do MySQL." -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:48 server_privileges.php:185 +#: server_privileges.php:544 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:197 +#: server_privileges.php:551 msgid "Allows the user to ask where the slaves / masters are." msgstr "" -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:50 server_privileges.php:196 +#: server_privileges.php:552 msgid "Needed for the replication slaves." msgstr "" -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:51 server_privileges.php:179 +#: server_privileges.php:438 server_privileges.php:502 msgid "Allows reading data." msgstr "Permite ler dados." -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:52 server_privileges.php:192 +#: server_privileges.php:546 msgid "Gives access to the complete list of databases." msgstr "Dá acesso à lista de bases de dados completa." -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:53 server_privileges.php:203 +#: server_privileges.php:205 server_privileges.php:518 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:54 server_privileges.php:186 +#: server_privileges.php:545 msgid "Allows shutting down the server." msgstr "Permite desligar o servidor." -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:55 server_privileges.php:193 +#: server_privileges.php:542 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " "killing threads of other users." msgstr "" -#: server_privileges.php:57 server_privileges.php:201 -#: server_privileges.php:535 +#: server_privileges.php:56 server_privileges.php:200 +#: server_privileges.php:534 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "Permite criar e apagar indexes." -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:57 server_privileges.php:181 +#: server_privileges.php:444 server_privileges.php:504 msgid "Allows changing data." msgstr "Permite alterar dados." -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:58 server_privileges.php:259 msgid "No privileges." msgstr "Sem privilégios." -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:301 server_privileges.php:302 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Nenhum" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1710 server_privileges.php:1716 +#: server_privileges.php:430 server_privileges.php:565 +#: server_privileges.php:1714 server_privileges.php:1720 msgid "Table-specific privileges" msgstr "Privilégios específicos da tabela" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1532 +#: server_privileges.php:431 server_privileges.php:573 +#: server_privileges.php:1536 msgid " Note: MySQL privilege names are expressed in English " msgstr " Nota: os nomes dos privilégios do MySQL são em Inglês " -#: server_privileges.php:563 server_privileges.php:1531 +#: server_privileges.php:562 server_privileges.php:1535 msgid "Global privileges" msgstr "Privilégios Globais" -#: server_privileges.php:565 server_privileges.php:1710 +#: server_privileges.php:564 server_privileges.php:1714 msgid "Database-specific privileges" msgstr "Privilégios específicos da Base de Dados" -#: server_privileges.php:610 +#: server_privileges.php:609 msgid "Administration" msgstr "Administração" -#: server_privileges.php:630 +#: server_privileges.php:629 msgid "Resource limits" msgstr "Limites do recurso" -#: server_privileges.php:631 +#: server_privileges.php:630 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Nota: Configurar estas opções para 0 (zero) remove o limite." -#: server_privileges.php:708 +#: server_privileges.php:707 msgid "Login Information" msgstr "Informação de Login " -#: server_privileges.php:802 +#: server_privileges.php:801 msgid "Do not change the password" msgstr "Mantendo a palavra-passe " -#: server_privileges.php:835 server_privileges.php:2197 +#: server_privileges.php:834 server_privileges.php:2201 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Nenhum utilizador encontrado." -#: server_privileges.php:879 +#: server_privileges.php:878 #, php-format msgid "The user %s already exists!" msgstr "O utilizador %s já existe!" -#: server_privileges.php:962 +#: server_privileges.php:961 msgid "You have added a new user." msgstr "Acrescentou um novo utilizador." -#: server_privileges.php:1183 +#: server_privileges.php:1184 #, php-format msgid "You have updated the privileges for %s." msgstr "Actualizou os privilégios de %s." -#: server_privileges.php:1207 +#: server_privileges.php:1208 #, php-format msgid "You have revoked the privileges for %s" msgstr "Anulou os privilégios para %s" -#: server_privileges.php:1243 +#: server_privileges.php:1244 #, php-format msgid "The password for %s was changed successfully." msgstr "A palavra-passe para %s foi alterada com sucesso." -#: server_privileges.php:1263 +#: server_privileges.php:1264 #, php-format msgid "Deleting %s" msgstr "A apagar %s" -#: server_privileges.php:1274 +#: server_privileges.php:1275 msgid "No users selected for deleting!" msgstr "" -#: server_privileges.php:1277 +#: server_privileges.php:1278 msgid "Reloading the privileges" msgstr "A recarregar privilégios" -#: server_privileges.php:1292 +#: server_privileges.php:1296 msgid "The selected users have been deleted successfully." msgstr "Os utilizadores selecionado foram apagados com sucesso." -#: server_privileges.php:1327 +#: server_privileges.php:1331 msgid "The privileges were reloaded successfully." msgstr "O privilégios foram recarregados com sucesso." -#: server_privileges.php:1355 server_privileges.php:1641 +#: server_privileges.php:1359 server_privileges.php:1645 msgid "Edit Privileges" msgstr "Alterar Privilegios" -#: server_privileges.php:1364 +#: server_privileges.php:1368 msgid "Revoke" msgstr "Anula" -#: server_privileges.php:1396 +#: server_privileges.php:1400 msgid "User overview" msgstr "" -#: server_privileges.php:1533 server_privileges.php:1715 -#: server_privileges.php:2064 +#: server_privileges.php:1537 server_privileges.php:1719 +#: server_privileges.php:2068 msgid "Grant" msgstr "Conceder/Grant" -#: server_privileges.php:1552 server_privileges.php:2154 +#: server_privileges.php:1556 server_privileges.php:2158 msgid "Any" msgstr "Todos" -#: server_privileges.php:1601 server_privileges.php:1625 -#: server_privileges.php:2019 server_privileges.php:2208 +#: server_privileges.php:1605 server_privileges.php:1629 +#: server_privileges.php:2023 server_privileges.php:2212 msgid "Add a new User" msgstr "Acrescenta um utilizador" -#: server_privileges.php:1606 +#: server_privileges.php:1610 msgid "Remove selected users" msgstr "Remover utilizadores seleccionados" -#: server_privileges.php:1609 +#: server_privileges.php:1613 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Revogar todos os privilégios dos utilizadores e apagá-los a seguir." -#: server_privileges.php:1610 server_privileges.php:1611 -#: server_privileges.php:1612 +#: server_privileges.php:1614 server_privileges.php:1615 +#: server_privileges.php:1616 msgid "Drop the databases that have the same names as the users." msgstr "" "Apagar as Bases de Dados que tenham os mesmos nomes que os utilizadores." -#: server_privileges.php:1628 +#: server_privileges.php:1632 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4798,49 +4849,49 @@ msgstr "" "privilégios que o servidor usa se alterações manuais nele forem feitas. " "Neste caso, deve %sreload the privileges%s antes de continuar." -#: server_privileges.php:1676 +#: server_privileges.php:1680 msgid "The selected user was not found in the privilege table." msgstr "O utilizador selecionado não se encontra na tabela de privilégios." -#: server_privileges.php:1716 +#: server_privileges.php:1720 msgid "Column-specific privileges" msgstr "Privilégios específicos da Coluna" -#: server_privileges.php:1917 +#: server_privileges.php:1921 msgid "Add privileges on the following database" msgstr "Adicionar privilégios na base de dados seguinte" -#: server_privileges.php:1935 +#: server_privileges.php:1939 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:1938 +#: server_privileges.php:1942 msgid "Add privileges on the following table" msgstr "Todos privilégios na tabela seguinte" -#: server_privileges.php:1995 +#: server_privileges.php:1999 msgid "Change Login Information / Copy User" msgstr "Mudar a informação de login / Copiar Utilizador" -#: server_privileges.php:1998 +#: server_privileges.php:2002 msgid "Create a new user with the same privileges and ..." msgstr "Criar um novo utilizador com os mesmo privilégios e ..." -#: server_privileges.php:2000 +#: server_privileges.php:2004 msgid "... keep the old one." msgstr "... manter o antigo." -#: server_privileges.php:2001 +#: server_privileges.php:2005 msgid " ... delete the old one from the user tables." msgstr " ... apagar o antigo das tabelas do utilizador." -#: server_privileges.php:2002 +#: server_privileges.php:2006 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "" " ... revogar todos os privilégios activos do antigo e a seguir apagá-lo." -#: server_privileges.php:2003 +#: server_privileges.php:2007 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -4848,44 +4899,44 @@ msgstr "" " ... apagar o antigo das tabelas do utilizador e depois recarregue os " "privilégios." -#: server_privileges.php:2025 +#: server_privileges.php:2029 msgid "Database for user" msgstr "" -#: server_privileges.php:2029 +#: server_privileges.php:2033 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Nenhum" -#: server_privileges.php:2030 +#: server_privileges.php:2034 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2031 +#: server_privileges.php:2035 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2034 +#: server_privileges.php:2038 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "Verificar Privilégios para a Base de Dados "%s"." -#: server_privileges.php:2057 +#: server_privileges.php:2061 #, php-format msgid "Users having access to "%s"" msgstr "Utilizadores que tem acesso a "%s"" -#: server_privileges.php:2165 +#: server_privileges.php:2169 msgid "global" msgstr "global" -#: server_privileges.php:2167 +#: server_privileges.php:2171 msgid "database-specific" msgstr "Especifico da Base de Dados" -#: server_privileges.php:2169 +#: server_privileges.php:2173 msgid "wildcard" msgstr "" @@ -4904,53 +4955,53 @@ msgstr "" msgid "ID" msgstr "ID" -#: server_replication.php:50 +#: server_replication.php:49 msgid "Unknown error" msgstr "" -#: server_replication.php:57 +#: server_replication.php:56 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:64 +#: server_replication.php:63 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:70 +#: server_replication.php:69 msgid "Unable to change master" msgstr "" -#: server_replication.php:73 +#: server_replication.php:72 #, php-format msgid "Master server changed succesfully to %s" msgstr "" -#: server_replication.php:181 +#: server_replication.php:180 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:183 server_status.php:391 +#: server_replication.php:182 server_status.php:391 msgid "Show master status" msgstr "" -#: server_replication.php:186 +#: server_replication.php:185 msgid "Show connected slaves" msgstr "" -#: server_replication.php:209 +#: server_replication.php:208 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:216 +#: server_replication.php:215 msgid "Master configuration" msgstr "" -#: server_replication.php:217 +#: server_replication.php:216 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -4959,111 +5010,111 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:220 +#: server_replication.php:219 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:221 +#: server_replication.php:220 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:224 +#: server_replication.php:223 #, fuzzy msgid "Please select databases:" msgstr "Por favor seleccione uma base de dados" -#: server_replication.php:227 +#: server_replication.php:226 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: server_replication.php:229 +#: server_replication.php:228 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: server_replication.php:292 +#: server_replication.php:291 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:295 +#: server_replication.php:294 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:304 +#: server_replication.php:303 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:307 +#: server_replication.php:306 msgid "See slave status table" msgstr "" -#: server_replication.php:310 +#: server_replication.php:309 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:321 +#: server_replication.php:320 msgid "Control slave:" msgstr "" -#: server_replication.php:324 +#: server_replication.php:323 #, fuzzy msgid "Full start" msgstr "Texto Completo" -#: server_replication.php:324 +#: server_replication.php:323 #, fuzzy msgid "Full stop" msgstr "Texto Completo" -#: server_replication.php:325 +#: server_replication.php:324 msgid "Reset slave" msgstr "" -#: server_replication.php:326 +#: server_replication.php:325 #, php-format msgid "SQL Thread %s only" msgstr "" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 #, fuzzy msgid "Start" msgstr "Sab" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 msgid "Stop" msgstr "" -#: server_replication.php:327 +#: server_replication.php:326 #, php-format msgid "IO Thread %s only" msgstr "" -#: server_replication.php:331 +#: server_replication.php:330 msgid "Error management:" msgstr "" -#: server_replication.php:333 +#: server_replication.php:332 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:335 +#: server_replication.php:334 msgid "Skip current error" msgstr "" -#: server_replication.php:336 +#: server_replication.php:335 msgid "Skip next" msgstr "" -#: server_replication.php:339 +#: server_replication.php:338 msgid "errors." msgstr "" -#: server_replication.php:354 +#: server_replication.php:353 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -5775,113 +5826,113 @@ msgstr "Tipo de Query" msgid "Replication status" msgstr "Relações" -#: server_synchronize.php:93 +#: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:96 +#: server_synchronize.php:95 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:121 server_synchronize.php:124 tbl_create.php:77 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:264 +#: server_synchronize.php:263 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:271 +#: server_synchronize.php:270 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:399 server_synchronize.php:838 +#: server_synchronize.php:398 server_synchronize.php:837 msgid "not present" msgstr "" -#: server_synchronize.php:423 server_synchronize.php:866 +#: server_synchronize.php:422 server_synchronize.php:865 #, fuzzy msgid "Structure Difference" msgstr "Somente estrutura" -#: server_synchronize.php:424 server_synchronize.php:867 +#: server_synchronize.php:423 server_synchronize.php:866 msgid "Data Difference" msgstr "" -#: server_synchronize.php:429 server_synchronize.php:872 +#: server_synchronize.php:428 server_synchronize.php:871 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:430 server_synchronize.php:873 +#: server_synchronize.php:429 server_synchronize.php:872 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:431 server_synchronize.php:874 +#: server_synchronize.php:430 server_synchronize.php:873 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:432 server_synchronize.php:875 +#: server_synchronize.php:431 server_synchronize.php:874 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:433 server_synchronize.php:876 +#: server_synchronize.php:432 server_synchronize.php:875 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:434 server_synchronize.php:877 +#: server_synchronize.php:433 server_synchronize.php:876 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:435 server_synchronize.php:878 +#: server_synchronize.php:434 server_synchronize.php:877 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:445 server_synchronize.php:889 +#: server_synchronize.php:444 server_synchronize.php:888 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:448 server_synchronize.php:893 +#: server_synchronize.php:447 server_synchronize.php:892 msgid "Apply Selected Changes" msgstr "" -#: server_synchronize.php:450 server_synchronize.php:895 +#: server_synchronize.php:449 server_synchronize.php:894 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:463 +#: server_synchronize.php:462 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:941 +#: server_synchronize.php:940 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:1002 +#: server_synchronize.php:1001 msgid "The following queries have been executed:" msgstr "" -#: server_synchronize.php:1121 +#: server_synchronize.php:1120 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1122 +#: server_synchronize.php:1121 #, fuzzy #| msgid "Connections" msgid "Current connection" msgstr "Ligações" -#: server_synchronize.php:1151 +#: server_synchronize.php:1150 #, php-format msgid "Configuration: %s" msgstr "" -#: server_synchronize.php:1166 +#: server_synchronize.php:1165 msgid "Socket" msgstr "" -#: server_synchronize.php:1212 +#: server_synchronize.php:1211 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -6444,8 +6495,8 @@ msgstr "" #: setup/lib/messages.inc.php:128 msgid "" "Configure phpMyAdmin database to gain access to additional features, see " -"[a@../Documentation.html#linked-tables]linked-tables infrastructure[/a] in " -"documentation" +"[a@../Documentation.html#linked-tables]phpMyAdmin configuration storage[/a] " +"in documentation" msgstr "" #: setup/lib/messages.inc.php:129 setup/lib/messages.inc.php:290 @@ -7508,116 +7559,116 @@ msgstr "" msgid "ZIP" msgstr "" -#: sql.php:495 tbl_replace.php:385 +#: sql.php:494 tbl_replace.php:384 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: sql.php:512 +#: sql.php:511 msgid "Showing as PHP code" msgstr "" -#: sql.php:515 tbl_replace.php:359 +#: sql.php:514 tbl_replace.php:358 #, fuzzy msgid "Showing SQL query" msgstr "Mostrar queries completos" -#: sql.php:517 +#: sql.php:516 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Validar SQL" -#: sql.php:638 +#: sql.php:631 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:670 +#: sql.php:663 msgid "Label" msgstr "Etiqueta" -#: tbl_addfield.php:188 tbl_alter.php:102 tbl_indexes.php:97 +#: tbl_addfield.php:185 tbl_alter.php:100 tbl_indexes.php:97 #, fuzzy, php-format msgid "Table %1$s has been altered successfully" msgstr "Os utilizadores selecionado foram apagados com sucesso." -#: tbl_change.php:250 tbl_select.php:26 tbl_select.php:27 tbl_select.php:30 -#: tbl_select.php:33 +#: tbl_change.php:245 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_select.php:32 msgid "Browse foreign values" msgstr "" -#: tbl_change.php:280 tbl_change.php:318 +#: tbl_change.php:275 tbl_change.php:313 msgid "Function" msgstr "Funções" -#: tbl_change.php:300 tbl_indexes.php:199 tbl_indexes.php:224 +#: tbl_change.php:295 tbl_indexes.php:198 tbl_indexes.php:223 msgid "Ignore" msgstr "Ignora" -#: tbl_change.php:725 +#: tbl_change.php:720 #, fuzzy #| msgid " Because of its length,
                            this field might not be editable " msgid " Because of its length,
                            this column might not be editable " msgstr " Devido ao seu tamanho,
                            este campo pode não ser editável " -#: tbl_change.php:884 +#: tbl_change.php:835 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:890 +#: tbl_change.php:841 msgid "Binary - do not edit" msgstr " Binário - não editar " -#: tbl_change.php:983 +#: tbl_change.php:889 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:1128 +#: tbl_change.php:1026 msgid "Insert as new row" msgstr "Insere como novo registo" -#: tbl_change.php:1129 +#: tbl_change.php:1027 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:1130 +#: tbl_change.php:1028 msgid "Show insert query" msgstr "" -#: tbl_change.php:1145 +#: tbl_change.php:1043 msgid "Go back to previous page" msgstr "Voltar atrás" -#: tbl_change.php:1146 +#: tbl_change.php:1044 msgid "Insert another new row" msgstr "Inserir novo registo" -#: tbl_change.php:1150 +#: tbl_change.php:1048 #, fuzzy msgid "Go back to this page" msgstr "Voltar atrás" -#: tbl_change.php:1158 +#: tbl_change.php:1056 msgid "Edit next row" msgstr "" -#: tbl_change.php:1169 +#: tbl_change.php:1067 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: tbl_change.php:1207 +#: tbl_change.php:1105 #, php-format msgid "Restart insertion with %s rows" msgstr "" -#: tbl_create.php:57 +#: tbl_create.php:55 #, fuzzy, php-format msgid "Table %s already exists!" msgstr "O utilizador %s já existe!" -#: tbl_create.php:244 +#: tbl_create.php:241 #, fuzzy, php-format msgid "Table %1$s has been created." msgstr "A tabela %s foi eliminada" @@ -7638,205 +7689,205 @@ msgstr "Impossível renomear índice para PRIMARY!" msgid "No index parts defined!" msgstr "Nenhuma parte do índice definida!" -#: tbl_indexes.php:159 +#: tbl_indexes.php:158 msgid "Create a new index" msgstr "Criar um novo índice" -#: tbl_indexes.php:161 +#: tbl_indexes.php:160 msgid "Modify an index" msgstr "Modificar um índice" -#: tbl_indexes.php:167 +#: tbl_indexes.php:166 msgid "Index name:" msgstr "Nome do Índice :" -#: tbl_indexes.php:173 +#: tbl_indexes.php:172 msgid "Index type:" msgstr "Tipo de Índice :" -#: tbl_indexes.php:183 +#: tbl_indexes.php:182 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" "(\"PRIMARY\" tem de ser o nome de e apenas de uma chave " "primária!)" -#: tbl_indexes.php:250 +#: tbl_indexes.php:249 #, php-format msgid "Add to index  %s column(s)" msgstr "Adicionar ao índice  %s coluna(s)" -#: tbl_indexes.php:255 tbl_structure.php:588 tbl_structure.php:599 +#: tbl_indexes.php:254 tbl_structure.php:586 tbl_structure.php:597 msgid "Column count has to be larger than zero." msgstr "" -#: tbl_move_copy.php:45 +#: tbl_move_copy.php:44 msgid "Can't move table to same one!" msgstr "Não é posivel mover a tabela para o mesmo!" -#: tbl_move_copy.php:47 +#: tbl_move_copy.php:46 msgid "Can't copy table to same one!" msgstr "Não é possivel copiar a tabela para o mesmo!" -#: tbl_move_copy.php:55 +#: tbl_move_copy.php:54 #, php-format msgid "Table %s has been moved to %s." msgstr "A tabela %s foi movida para %s." -#: tbl_move_copy.php:57 +#: tbl_move_copy.php:56 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabela %s copiada para %s." -#: tbl_move_copy.php:81 +#: tbl_move_copy.php:80 msgid "The table name is empty!" msgstr "O nome da tabela está vazio!" -#: tbl_operations.php:248 +#: tbl_operations.php:246 msgid "Alter table order by" msgstr "Alterar a ordem da tabela por" -#: tbl_operations.php:257 +#: tbl_operations.php:255 msgid "(singly)" msgstr "(A refazer após inserir/eliminar)" -#: tbl_operations.php:277 +#: tbl_operations.php:275 msgid "Move table to (database.table):" msgstr "Move tabela para (base de dados.tabela):" -#: tbl_operations.php:335 +#: tbl_operations.php:333 msgid "Table options" msgstr "Opções da tabela" -#: tbl_operations.php:339 +#: tbl_operations.php:337 msgid "Rename table to" msgstr "Renomeia a tabela para " -#: tbl_operations.php:510 +#: tbl_operations.php:508 msgid "Copy table to (database.table):" msgstr "Copia tabela para (base-de-dados.tabela):" -#: tbl_operations.php:557 +#: tbl_operations.php:555 msgid "Switch to copied table" msgstr "Mudar para a tabela copiada" -#: tbl_operations.php:569 +#: tbl_operations.php:567 msgid "Table maintenance" msgstr "Manutenção da tabela" -#: tbl_operations.php:590 +#: tbl_operations.php:588 msgid "Defragment table" msgstr "" -#: tbl_operations.php:629 +#: tbl_operations.php:627 #, php-format msgid "Table %s has been flushed" msgstr "A tabela %s foi fechada" -#: tbl_operations.php:635 +#: tbl_operations.php:633 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Fecha a tabela (\"FLUSH\")" -#: tbl_operations.php:650 +#: tbl_operations.php:648 #, fuzzy msgid "Partition maintenance" msgstr "Manutenção da tabela" -#: tbl_operations.php:658 +#: tbl_operations.php:656 #, php-format msgid "Partition %s" msgstr "" -#: tbl_operations.php:661 +#: tbl_operations.php:659 msgid "Analyze" msgstr "" -#: tbl_operations.php:662 +#: tbl_operations.php:660 #, fuzzy msgid "Check" msgstr "Checo" -#: tbl_operations.php:663 +#: tbl_operations.php:661 msgid "Optimize" msgstr "" -#: tbl_operations.php:664 +#: tbl_operations.php:662 msgid "Rebuild" msgstr "" -#: tbl_operations.php:665 +#: tbl_operations.php:663 #, fuzzy msgid "Repair" msgstr "Reparar tabela" -#: tbl_operations.php:677 +#: tbl_operations.php:675 msgid "Remove partitioning" msgstr "" -#: tbl_operations.php:703 +#: tbl_operations.php:701 msgid "Check referential integrity:" msgstr "Verificar Integridade referencial:" -#: tbl_printview.php:73 +#: tbl_printview.php:72 msgid "Show tables" msgstr "Mostra tabelas" -#: tbl_printview.php:308 tbl_structure.php:655 +#: tbl_printview.php:307 tbl_structure.php:653 msgid "Space usage" msgstr "Espaço ocupado" -#: tbl_printview.php:312 tbl_structure.php:659 +#: tbl_printview.php:311 tbl_structure.php:657 msgid "Usage" msgstr "Utilização" -#: tbl_printview.php:339 tbl_structure.php:686 +#: tbl_printview.php:338 tbl_structure.php:684 msgid "Effective" msgstr "Em uso" -#: tbl_printview.php:364 tbl_structure.php:724 +#: tbl_printview.php:363 tbl_structure.php:722 msgid "Row Statistics" msgstr "Estatísticas dos registos" -#: tbl_printview.php:367 tbl_structure.php:727 +#: tbl_printview.php:366 tbl_structure.php:725 msgid "Statements" msgstr "Itens" -#: tbl_printview.php:378 tbl_structure.php:739 +#: tbl_printview.php:377 tbl_structure.php:737 msgid "static" msgstr "" -#: tbl_printview.php:380 tbl_structure.php:741 +#: tbl_printview.php:379 tbl_structure.php:739 msgid "dynamic" msgstr "dinâmico" -#: tbl_printview.php:402 tbl_structure.php:784 +#: tbl_printview.php:401 tbl_structure.php:782 msgid "Row length" msgstr "Comprim. dos reg." -#: tbl_printview.php:412 tbl_structure.php:792 +#: tbl_printview.php:411 tbl_structure.php:790 msgid " Row size " msgstr " Tamanho dos reg." -#: tbl_relation.php:278 +#: tbl_relation.php:276 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" -#: tbl_relation.php:404 +#: tbl_relation.php:402 #, fuzzy #| msgid "Internal relations" msgid "Internal relation" msgstr "Relações internas" -#: tbl_relation.php:406 +#: tbl_relation.php:404 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: tbl_relation.php:412 +#: tbl_relation.php:410 msgid "Foreign key constraint" msgstr "" @@ -7844,232 +7895,232 @@ msgstr "" msgid "No rows selected" msgstr "" -#: tbl_select.php:130 +#: tbl_select.php:129 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Faça uma \"pesquisa por formulário\" (caractere universal: \"%\")" -#: tbl_select.php:136 +#: tbl_select.php:135 #, fuzzy msgid "Operator" msgstr "Operações" -#: tbl_select.php:267 +#: tbl_select.php:266 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "Seleccione os campos (no mínimo 1)" -#: tbl_select.php:285 +#: tbl_select.php:284 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Condição de Pesquisa (Complemento da cláusula \"where\"):" -#: tbl_select.php:292 +#: tbl_select.php:291 msgid "Number of rows per page" msgstr "Número de registos por página" -#: tbl_select.php:298 +#: tbl_select.php:297 msgid "Display order:" msgstr "Ordem de visualização:" -#: tbl_structure.php:160 +#: tbl_structure.php:159 msgid "Browse distinct values" msgstr "" -#: tbl_structure.php:360 +#: tbl_structure.php:358 #, fuzzy #| msgid "None" msgctxt "None for default" msgid "None" msgstr "Nenhum" -#: tbl_structure.php:373 +#: tbl_structure.php:371 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Column %s has been dropped" msgstr "A tabela %s foi eliminada" -#: tbl_structure.php:384 +#: tbl_structure.php:382 #, php-format msgid "A primary key has been added on %s" msgstr "Uma chave primária foi adicionada a %s" -#: tbl_structure.php:399 tbl_structure.php:413 tbl_structure.php:427 +#: tbl_structure.php:397 tbl_structure.php:411 tbl_structure.php:425 #, php-format msgid "An index has been added on %s" msgstr "Um índice foi adicionado a %s" -#: tbl_structure.php:505 tbl_structure.php:507 +#: tbl_structure.php:503 tbl_structure.php:505 msgid "Relation view" msgstr "Vista de Relação" -#: tbl_structure.php:514 tbl_structure.php:516 +#: tbl_structure.php:512 tbl_structure.php:514 msgid "Propose table structure" msgstr "Propor uma estrutura de tabela" -#: tbl_structure.php:539 +#: tbl_structure.php:537 #, fuzzy msgid "Add column" msgstr "Adiciona novo campo" -#: tbl_structure.php:553 +#: tbl_structure.php:551 msgid "At End of Table" msgstr "No Fim da Tabela" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At Beginning of Table" msgstr "No Início da Tabela" -#: tbl_structure.php:555 +#: tbl_structure.php:553 #, php-format msgid "After %s" msgstr "Depois %s" -#: tbl_structure.php:593 +#: tbl_structure.php:591 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "Criar um índice com %s coluna(s)" -#: tbl_structure.php:755 +#: tbl_structure.php:753 msgid "partitioned" msgstr "" -#: tbl_tracking.php:113 +#: tbl_tracking.php:109 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:186 +#: tbl_tracking.php:182 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "" -#: tbl_tracking.php:194 +#: tbl_tracking.php:190 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "" -#: tbl_tracking.php:202 +#: tbl_tracking.php:198 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "" -#: tbl_tracking.php:212 +#: tbl_tracking.php:208 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:219 +#: tbl_tracking.php:215 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:220 +#: tbl_tracking.php:216 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:229 +#: tbl_tracking.php:225 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:250 tbl_tracking.php:378 +#: tbl_tracking.php:245 tbl_tracking.php:373 msgid "Close" msgstr "" -#: tbl_tracking.php:261 +#: tbl_tracking.php:256 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:380 +#: tbl_tracking.php:375 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:396 tbl_tracking.php:503 +#: tbl_tracking.php:391 tbl_tracking.php:498 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "" -#: tbl_tracking.php:409 tbl_tracking.php:460 +#: tbl_tracking.php:404 tbl_tracking.php:455 #, fuzzy msgid "Date" msgstr "Dados" -#: tbl_tracking.php:410 tbl_tracking.php:461 +#: tbl_tracking.php:405 tbl_tracking.php:456 #, fuzzy msgid "Username" msgstr "Utilizador :" -#: tbl_tracking.php:411 +#: tbl_tracking.php:406 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:462 +#: tbl_tracking.php:457 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:506 +#: tbl_tracking.php:501 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:507 +#: tbl_tracking.php:502 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:520 +#: tbl_tracking.php:515 #, fuzzy, php-format msgid "Export as %s" msgstr "Tipo de Exportação" -#: tbl_tracking.php:560 +#: tbl_tracking.php:555 msgid "Show versions" msgstr "" -#: tbl_tracking.php:592 +#: tbl_tracking.php:587 #, fuzzy msgid "Version" msgstr "versão do PHP" -#: tbl_tracking.php:639 +#: tbl_tracking.php:634 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "" -#: tbl_tracking.php:641 +#: tbl_tracking.php:636 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:652 +#: tbl_tracking.php:647 #, php-format msgid "Activate tracking for %s.%s" msgstr "" -#: tbl_tracking.php:654 +#: tbl_tracking.php:649 msgid "Activate now" msgstr "" -#: tbl_tracking.php:667 +#: tbl_tracking.php:662 #, php-format msgid "Create version %s of %s.%s" msgstr "" -#: tbl_tracking.php:671 +#: tbl_tracking.php:666 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:679 +#: tbl_tracking.php:674 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:687 +#: tbl_tracking.php:682 #, fuzzy msgid "Create version" msgstr "Versão do servidor" @@ -8118,11 +8169,36 @@ msgstr "O prefil foi actualizado." msgid "VIEW name" msgstr "" -#: view_operations.php:92 +#: view_operations.php:91 #, fuzzy msgid "Rename view to" msgstr "Renomeia a tabela para " +#, fuzzy +#~| msgid "Enabled" +#~ msgctxt "BLOB repository" +#~ msgid "Enabled" +#~ msgstr "Activado" + +#, fuzzy +#~ msgid "Disable" +#~ msgstr "Desactidado" + +#, fuzzy +#~ msgctxt "BLOB repository" +#~ msgid "Repair" +#~ msgstr "Reparar tabela" + +#, fuzzy +#~| msgid "Disabled" +#~ msgctxt "BLOB repository" +#~ msgid "Disabled" +#~ msgstr "Desactidado" + +#, fuzzy +#~ msgid "Enable" +#~ msgstr "Activado" + #~ msgid "" #~ "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " #~ "extension. Please check your PHP configuration." diff --git a/po/pt_BR.po b/po/pt_BR.po index 2fc7caf06..b319ad1aa 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-21 13:53+0200\n" +"POT-Creation-Date: 2010-07-26 17:18+0200\n" "PO-Revision-Date: 2010-07-13 23:58+0200\n" "Last-Translator: William Bachion \n" "Language-Team: brazilian_portuguese \n" @@ -14,19 +14,19 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: Pootle 2.0.1\n" -#: browse_foreigners.php:37 browse_foreigners.php:58 -#: libraries/display_tbl.lib.php:416 server_privileges.php:1506 +#: browse_foreigners.php:36 browse_foreigners.php:57 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1510 msgid "Show all" msgstr "Mostrar todos" -#: browse_foreigners.php:81 libraries/common.lib.php:2313 -#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:393 -#: libraries/export/pdf.php:146 pdf_schema.php:282 pdf_schema.php:1122 -#: pdf_schema.php:1138 +#: browse_foreigners.php:80 libraries/common.lib.php:2318 +#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:392 +#: libraries/export/pdf.php:146 pdf_schema.php:281 pdf_schema.php:1121 +#: pdf_schema.php:1137 msgid "Page number:" msgstr "Numero da página:" -#: browse_foreigners.php:131 +#: browse_foreigners.php:130 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -36,139 +36,153 @@ msgstr "" "fechado a janela alvo ou o seu navegador tenha bloqueado a comunicação entre " "janelas nas configurações de segurança." -#: browse_foreigners.php:149 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2829 -#: libraries/common.lib.php:2836 libraries/db_links.inc.php:74 -#: libraries/tbl_links.inc.php:62 +#: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 +#: db_structure.php:89 db_structure.php:91 db_structure.php:102 +#: db_structure.php:104 libraries/common.lib.php:2834 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Procurar" -#: browse_foreigners.php:152 db_operations.php:384 db_operations.php:428 -#: db_operations.php:498 db_operations.php:608 db_search.php:344 -#: db_structure.php:566 js/messages.php:48 libraries/Config.class.php:1043 -#: libraries/Theme_Manager.class.php:310 +#: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 +#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 +#: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 -#: libraries/common.lib.php:1340 libraries/common.lib.php:2289 +#: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 -#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:275 -#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:531 -#: libraries/display_tbl.lib.php:613 libraries/replication_gui.lib.php:75 +#: libraries/display_export.lib.php:269 libraries/display_import.lib.php:275 +#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 +#: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 #: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:781 -#: main.php:127 navigation.php:231 pdf_pages.php:291 pdf_pages.php:327 -#: pdf_pages.php:529 pmd_pdf.php:115 server_binlog.php:128 -#: server_privileges.php:664 server_privileges.php:1616 -#: server_privileges.php:1963 server_privileges.php:2010 -#: server_privileges.php:2049 server_replication.php:234 -#: server_replication.php:317 server_replication.php:340 -#: server_synchronize.php:1208 tbl_change.php:328 tbl_change.php:1172 -#: tbl_change.php:1209 tbl_indexes.php:253 tbl_operations.php:264 -#: tbl_operations.php:301 tbl_operations.php:498 tbl_operations.php:560 -#: tbl_operations.php:680 tbl_select.php:324 tbl_structure.php:561 -#: tbl_structure.php:596 tbl_tracking.php:394 tbl_tracking.php:511 -#: view_create.php:181 view_operations.php:100 +#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 +#: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 +#: server_privileges.php:663 server_privileges.php:1620 +#: server_privileges.php:1967 server_privileges.php:2014 +#: server_privileges.php:2053 server_replication.php:233 +#: server_replication.php:316 server_replication.php:339 +#: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 +#: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 +#: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 +#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "Executar" -#: browse_foreigners.php:167 browse_foreigners.php:171 -#: libraries/Index.class.php:441 tbl_tracking.php:319 +#: browse_foreigners.php:166 browse_foreigners.php:170 +#: libraries/Index.class.php:441 tbl_tracking.php:314 msgid "Keyname" msgstr "Nome chave" -#: browse_foreigners.php:168 browse_foreigners.php:170 -#: server_collations.php:54 server_collations.php:66 server_engines.php:58 +#: browse_foreigners.php:167 browse_foreigners.php:169 +#: server_collations.php:54 server_collations.php:66 server_engines.php:57 #: server_status.php:738 msgid "Description" msgstr "Descrição" -#: browse_foreigners.php:246 browse_foreigners.php:255 -#: browse_foreigners.php:267 browse_foreigners.php:275 +#: browse_foreigners.php:245 browse_foreigners.php:254 +#: browse_foreigners.php:266 browse_foreigners.php:274 msgid "Use this value" msgstr "Usar este valor" -#: db_create.php:45 +#: bs_disp_as_mime_type.php:29 bs_play_media.php:35 +msgid "No blob streaming server configured!" +msgstr "" + +#: bs_disp_as_mime_type.php:35 +#, fuzzy +#| msgid "Failed to write file to disk." +msgid "Failed to fetch headers" +msgstr "Falhou ao salvar arquivo no disco." + +#: bs_disp_as_mime_type.php:41 +msgid "Failed to open remote URL" +msgstr "" + +#: db_create.php:44 #, php-format msgid "Database %1$s has been created." msgstr "Banco de dados %1$s foi criado." -#: db_datadict.php:48 db_operations.php:377 +#: db_datadict.php:48 db_operations.php:313 msgid "Database comment: " msgstr "Comentário do Banco de Dados: " -#: db_datadict.php:164 libraries/tbl_properties.inc.php:723 -#: pdf_schema.php:1235 tbl_operations.php:346 tbl_printview.php:128 +#: db_datadict.php:164 libraries/tbl_properties.inc.php:722 +#: pdf_schema.php:1234 tbl_operations.php:344 tbl_printview.php:127 msgid "Table comments" msgstr "Comentários da tabela" -#: db_datadict.php:173 db_qbe.php:173 libraries/Index.class.php:445 +#: db_datadict.php:173 db_qbe.php:170 libraries/Index.class.php:445 #: libraries/export/htmlword.php:243 libraries/export/latex.php:364 #: libraries/export/odt.php:293 libraries/export/texytext.php:233 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:274 -#: pdf_schema.php:1261 pdf_schema.php:1282 tbl_change.php:306 -#: tbl_indexes.php:188 tbl_printview.php:140 tbl_relation.php:401 -#: tbl_select.php:133 tbl_structure.php:176 tbl_tracking.php:272 -#: tbl_tracking.php:323 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 +#: pdf_schema.php:1260 pdf_schema.php:1281 tbl_change.php:301 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:132 tbl_structure.php:175 tbl_tracking.php:267 +#: tbl_tracking.php:318 #, fuzzy #| msgid "Column names" msgid "Column" msgstr "Nome das colunas" -#: db_datadict.php:174 db_printview.php:105 libraries/Index.class.php:442 +#: db_datadict.php:174 db_printview.php:104 libraries/Index.class.php:442 #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 #: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:244 #: libraries/export/latex.php:364 libraries/export/odt.php:296 #: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:99 -#: pdf_schema.php:1262 pdf_schema.php:1283 server_privileges.php:2062 -#: tbl_change.php:285 tbl_change.php:312 tbl_printview.php:141 -#: tbl_printview.php:311 tbl_select.php:134 tbl_structure.php:177 -#: tbl_structure.php:658 tbl_tracking.php:273 tbl_tracking.php:320 +#: pdf_schema.php:1261 pdf_schema.php:1282 server_privileges.php:2066 +#: tbl_change.php:280 tbl_change.php:307 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:133 tbl_structure.php:176 +#: tbl_structure.php:656 tbl_tracking.php:268 tbl_tracking.php:315 msgid "Type" msgstr "Tipo" #: db_datadict.php:176 libraries/Index.class.php:448 #: libraries/export/htmlword.php:245 libraries/export/latex.php:364 #: libraries/export/odt.php:299 libraries/export/texytext.php:235 -#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1264 -#: pdf_schema.php:1285 tbl_change.php:321 tbl_printview.php:143 -#: tbl_structure.php:180 tbl_tracking.php:275 tbl_tracking.php:326 +#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1263 +#: pdf_schema.php:1284 tbl_change.php:316 tbl_printview.php:142 +#: tbl_structure.php:179 tbl_tracking.php:270 tbl_tracking.php:321 msgid "Null" msgstr "Nulo" -#: db_datadict.php:177 db_structure.php:500 libraries/export/htmlword.php:246 +#: db_datadict.php:177 db_structure.php:486 libraries/export/htmlword.php:246 #: libraries/export/latex.php:364 libraries/export/odt.php:302 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:105 -#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 -#: tbl_structure.php:181 tbl_tracking.php:276 +#: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:143 +#: tbl_structure.php:180 tbl_tracking.php:271 msgid "Default" msgstr "Padrão" #: db_datadict.php:181 libraries/export/htmlword.php:248 #: libraries/export/latex.php:366 libraries/export/odt.php:306 -#: libraries/export/texytext.php:238 pdf_schema.php:1267 pdf_schema.php:1288 -#: tbl_printview.php:148 +#: libraries/export/texytext.php:238 pdf_schema.php:1266 pdf_schema.php:1287 +#: tbl_printview.php:147 msgid "Links to" msgstr "Links para" -#: db_datadict.php:183 db_printview.php:111 libraries/export/htmlword.php:251 +#: db_datadict.php:183 db_printview.php:110 libraries/export/htmlword.php:251 #: libraries/export/latex.php:49 libraries/export/latex.php:369 #: libraries/export/odt.php:37 libraries/export/odt.php:311 #: libraries/export/sql.php:29 libraries/export/texytext.php:241 -#: libraries/tbl_properties.inc.php:129 pdf_schema.php:1278 -#: pdf_schema.php:1289 tbl_printview.php:150 +#: libraries/tbl_properties.inc.php:128 pdf_schema.php:1277 +#: pdf_schema.php:1288 tbl_printview.php:149 msgid "Comments" msgstr "Comentários" #: db_datadict.php:266 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/export/htmlword.php:321 #: libraries/export/latex.php:434 libraries/export/odt.php:367 -#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:262 -#: pdf_schema.php:1343 server_privileges.php:1560 server_privileges.php:1571 -#: server_privileges.php:1881 server_privileges.php:1886 -#: server_privileges.php:2179 sql.php:131 sql.php:193 tbl_printview.php:227 -#: tbl_structure.php:349 tbl_tracking.php:336 tbl_tracking.php:341 +#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:261 +#: pdf_schema.php:1342 server_privileges.php:1564 server_privileges.php:1575 +#: server_privileges.php:1885 server_privileges.php:1890 +#: server_privileges.php:2183 sql.php:130 sql.php:192 tbl_printview.php:226 +#: tbl_structure.php:347 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "Não" @@ -179,17 +193,17 @@ msgstr "Não" #: libraries/mult_submits.inc.php:49 libraries/mult_submits.inc.php:54 #: libraries/mult_submits.inc.php:59 libraries/mult_submits.inc.php:91 #: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:105 -#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:261 -#: libraries/mult_submits.inc.php:272 pdf_schema.php:1343 -#: server_databases.php:63 server_privileges.php:1557 -#: server_privileges.php:1571 server_privileges.php:1881 -#: server_privileges.php:1884 server_privileges.php:2179 sql.php:192 -#: tbl_printview.php:227 tbl_structure.php:39 tbl_structure.php:349 -#: tbl_tracking.php:334 tbl_tracking.php:339 +#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:260 +#: libraries/mult_submits.inc.php:271 pdf_schema.php:1342 +#: server_databases.php:61 server_privileges.php:1561 +#: server_privileges.php:1575 server_privileges.php:1885 +#: server_privileges.php:1888 server_privileges.php:2183 sql.php:191 +#: tbl_printview.php:226 tbl_structure.php:38 tbl_structure.php:347 +#: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" msgstr "Sim" -#: db_datadict.php:321 db_printview.php:265 tbl_printview.php:496 +#: db_datadict.php:321 db_printview.php:264 tbl_printview.php:495 msgid "Print" msgstr "Imprimir" @@ -197,194 +211,154 @@ msgstr "Imprimir" msgid "View dump (schema) of database" msgstr "Ver o esquema do Banco de Dados" -#: db_export.php:32 db_printview.php:95 db_qbe.php:101 db_structure.php:50 -#: db_tracking.php:34 export.php:352 navigation.php:326 +#: db_export.php:32 db_printview.php:94 db_qbe.php:98 db_structure.php:49 +#: db_tracking.php:30 export.php:350 navigation.php:325 msgid "No tables found in database." msgstr "Nenhuma tabela encontrada no Banco de Dados" -#: db_export.php:42 db_search.php:326 server_export.php:26 +#: db_export.php:42 db_search.php:326 server_export.php:24 msgid "Select All" msgstr "Selecionar Todos" -#: db_export.php:44 db_search.php:329 server_export.php:28 +#: db_export.php:44 db_search.php:329 server_export.php:26 msgid "Unselect All" msgstr "Desmarcar Todos" -#: db_operations.php:37 tbl_create.php:49 +#: db_operations.php:33 tbl_create.php:47 msgid "The database name is empty!" msgstr "O nome do Banco de Dados está em branco!" -#: db_operations.php:235 +#: db_operations.php:231 #, php-format msgid "Database %s has been renamed to %s" msgstr "O Banco de Dados %s foi renomeado para %s" -#: db_operations.php:239 +#: db_operations.php:235 #, php-format msgid "Database %s has been copied to %s" msgstr "Banco de Dados %s copiado para %s" -#: db_operations.php:411 +#: db_operations.php:347 msgid "Rename database to" msgstr "Renomear Banco de Dados para" -#: db_operations.php:416 server_processlist.php:56 +#: db_operations.php:352 server_processlist.php:56 msgid "Command" msgstr "Comando" -#: db_operations.php:428 tbl_change.php:1141 +#: db_operations.php:364 tbl_change.php:1039 msgid "and then" msgstr "e então" -#: db_operations.php:454 +#: db_operations.php:390 msgid "Copy database to" msgstr "Copiar Banco de Dados para" -#: db_operations.php:461 tbl_operations.php:527 tbl_tracking.php:387 +#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Somente estrutura" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:389 +#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Estrutura e dados" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:388 +#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Dados apenas" -#: db_operations.php:471 +#: db_operations.php:407 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE antes de copiar" -#: db_operations.php:474 libraries/export/sql.php:51 +#: db_operations.php:410 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 -#: libraries/export/sql.php:81 tbl_operations.php:535 +#: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "Adicionar %s" -#: db_operations.php:478 libraries/export/sql.php:77 tbl_operations.php:298 -#: tbl_operations.php:537 +#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Adicionar valor AUTO_INCREMENT" -#: db_operations.php:482 tbl_operations.php:544 +#: db_operations.php:418 tbl_operations.php:542 msgid "Add constraints" msgstr "Adicionar restrições" -#: db_operations.php:495 +#: db_operations.php:431 msgid "Switch to copied database" msgstr "Mudar para o Banco de Dados copiado" -#: db_operations.php:536 -msgid "BLOB Repository" -msgstr "" - -#: db_operations.php:539 db_tracking.php:75 libraries/common.lib.php:1357 -#: libraries/server_links.inc.php:48 server_processlist.php:58 -#: tbl_tracking.php:595 test/theme.php:100 -msgid "Status" -msgstr "Status" - -#: db_operations.php:547 -#, fuzzy -#| msgid "Enabled" -msgctxt "BLOB repository" -msgid "Enabled" -msgstr "Habilitado" - -#: db_operations.php:551 -msgid "Disable" -msgstr "Desabilitar" - -#: db_operations.php:561 -msgid "Damaged" -msgstr "" - -#: db_operations.php:565 -#, fuzzy -#| msgid "Repair" -msgctxt "BLOB repository" -msgid "Repair" -msgstr "Reparar" - -#: db_operations.php:573 -#, fuzzy -#| msgid "Disabled" -msgctxt "BLOB repository" -msgid "Disabled" -msgstr "Desabilitado" - -#: db_operations.php:577 -msgid "Enable" -msgstr "Habilitar" - -#: db_operations.php:601 libraries/Index.class.php:447 +#: db_operations.php:451 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 -#: server_collations.php:53 server_collations.php:65 server_databases.php:110 -#: tbl_operations.php:362 tbl_select.php:135 tbl_structure.php:178 -#: tbl_structure.php:766 tbl_tracking.php:274 tbl_tracking.php:325 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 +#: server_collations.php:53 server_collations.php:65 server_databases.php:108 +#: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:177 +#: tbl_structure.php:764 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "Collation" -#: db_operations.php:614 main.php:315 pdf_schema.php:33 -#, php-format +#: db_operations.php:464 pdf_schema.php:32 +#, fuzzy, php-format +#| msgid "" +#| "The additional features for working with linked tables have been " +#| "deactivated. To find out why click %shere%s." msgid "" -"The additional features for working with linked tables have been " -"deactivated. To find out why click %shere%s." +"The phpMyAdmin configuration storage has been deactivated. To find out why " +"click %shere%s." msgstr "" "Os recursos adicionais para trabalhar com tabelas linkadas foram " "desativadas. Para descobrir o motivo clique %saqui%s." -#: db_operations.php:647 +#: db_operations.php:497 msgid "Edit PDF Pages" msgstr "Editar Páginas PDF" -#: db_printview.php:103 db_tracking.php:71 db_tracking.php:156 +#: db_printview.php:102 db_tracking.php:67 db_tracking.php:152 #: libraries/db_structure.lib.php:37 libraries/export/xml.php:327 -#: libraries/header.inc.php:125 pdf_pages.php:423 server_privileges.php:1657 -#: server_privileges.php:1713 server_privileges.php:1977 -#: server_synchronize.php:422 server_synchronize.php:865 tbl_tracking.php:591 +#: libraries/header.inc.php:125 pdf_pages.php:422 server_privileges.php:1661 +#: server_privileges.php:1717 server_privileges.php:1981 +#: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "Tabela" -#: db_printview.php:104 libraries/db_structure.lib.php:47 +#: db_printview.php:103 libraries/db_structure.lib.php:47 #: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 -#: navigation.php:629 navigation.php:651 server_databases.php:121 -#: tbl_printview.php:392 tbl_structure.php:364 tbl_structure.php:776 +#: navigation.php:628 navigation.php:650 server_databases.php:119 +#: tbl_printview.php:391 tbl_structure.php:362 tbl_structure.php:774 msgid "Rows" msgstr "Registros" -#: db_printview.php:108 libraries/db_structure.lib.php:58 tbl_indexes.php:189 +#: db_printview.php:107 libraries/db_structure.lib.php:58 tbl_indexes.php:188 msgid "Size" msgstr "Tamanho" -#: db_printview.php:161 db_structure.php:456 libraries/export/sql.php:556 +#: db_printview.php:160 db_structure.php:442 libraries/export/sql.php:556 #: libraries/export/sql.php:896 msgid "in use" msgstr "em uso" -#: db_printview.php:186 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:511 pdf_schema.php:1240 tbl_printview.php:432 -#: tbl_structure.php:808 +#: db_printview.php:185 libraries/db_info.inc.php:86 +#: libraries/export/sql.php:511 pdf_schema.php:1239 tbl_printview.php:431 +#: tbl_structure.php:806 msgid "Creation" msgstr "Criação" -#: db_printview.php:195 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:516 pdf_schema.php:1245 tbl_printview.php:442 -#: tbl_structure.php:816 +#: db_printview.php:194 libraries/db_info.inc.php:91 +#: libraries/export/sql.php:516 pdf_schema.php:1244 tbl_printview.php:441 +#: tbl_structure.php:814 msgid "Last update" msgstr "Última atualização" -#: db_printview.php:204 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:521 pdf_schema.php:1250 tbl_printview.php:452 -#: tbl_structure.php:824 +#: db_printview.php:203 libraries/db_info.inc.php:96 +#: libraries/export/sql.php:521 pdf_schema.php:1249 tbl_printview.php:451 +#: tbl_structure.php:822 msgid "Last check" msgstr "Última verificação" -#: db_printview.php:221 db_structure.php:479 +#: db_printview.php:220 db_structure.php:465 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -392,94 +366,94 @@ msgid_plural "%s tables" msgstr[0] "%s tabela(s)" msgstr[1] "%s tabela(s)" -#: db_qbe.php:28 import.php:453 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1980 libraries/sql_query_form.lib.php:138 -#: tbl_operations.php:212 tbl_relation.php:291 tbl_row_action.php:130 -#: view_operations.php:61 +#: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 +#: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "Seu comando SQL foi executado com sucesso" -#: db_qbe.php:41 +#: db_qbe.php:38 msgid "You have to choose at least one column to display" msgstr "Deve escolher pelo menos uma coluna para exibir" -#: db_qbe.php:199 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:865 +#: db_qbe.php:196 libraries/db_structure.lib.php:95 +#: libraries/display_tbl.lib.php:864 msgid "Sort" msgstr "Ordenar" -#: db_qbe.php:208 db_qbe.php:242 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:522 libraries/display_tbl.lib.php:827 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:259 -#: tbl_select.php:311 +#: db_qbe.php:205 db_qbe.php:239 libraries/db_structure.lib.php:102 +#: libraries/display_tbl.lib.php:521 libraries/display_tbl.lib.php:826 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:257 +#: tbl_select.php:310 msgid "Ascending" msgstr "Ascendente" -#: db_qbe.php:209 db_qbe.php:250 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:527 libraries/display_tbl.lib.php:824 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:260 -#: tbl_select.php:312 +#: db_qbe.php:206 db_qbe.php:247 libraries/db_structure.lib.php:110 +#: libraries/display_tbl.lib.php:526 libraries/display_tbl.lib.php:823 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:258 +#: tbl_select.php:311 msgid "Descending" msgstr "Descendente" -#: db_qbe.php:263 db_tracking.php:77 libraries/display_tbl.lib.php:307 -#: tbl_change.php:275 tbl_tracking.php:596 +#: db_qbe.php:260 db_tracking.php:73 libraries/display_tbl.lib.php:306 +#: tbl_change.php:270 tbl_tracking.php:591 msgid "Show" msgstr "Mostrar" -#: db_qbe.php:299 +#: db_qbe.php:296 msgid "Criteria" msgstr "Critério" -#: db_qbe.php:352 db_qbe.php:434 db_qbe.php:526 db_qbe.php:557 +#: db_qbe.php:349 db_qbe.php:431 db_qbe.php:523 db_qbe.php:554 msgid "Ins" msgstr "Ins" -#: db_qbe.php:356 db_qbe.php:438 db_qbe.php:523 db_qbe.php:554 +#: db_qbe.php:353 db_qbe.php:435 db_qbe.php:520 db_qbe.php:551 msgid "And" msgstr "E" -#: db_qbe.php:365 db_qbe.php:446 db_qbe.php:528 db_qbe.php:559 +#: db_qbe.php:362 db_qbe.php:443 db_qbe.php:525 db_qbe.php:556 msgid "Del" msgstr "Del" -#: db_qbe.php:369 db_qbe.php:450 db_qbe.php:521 db_qbe.php:552 -#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:778 -#: server_privileges.php:297 tbl_change.php:1027 tbl_indexes.php:249 -#: tbl_select.php:285 +#: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 +#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:777 +#: server_privileges.php:296 tbl_change.php:925 tbl_indexes.php:248 +#: tbl_select.php:284 msgid "Or" msgstr "Ou" -#: db_qbe.php:506 +#: db_qbe.php:503 msgid "Modify" msgstr "Modificar" -#: db_qbe.php:583 +#: db_qbe.php:580 #, fuzzy #| msgid "Add/Delete Criteria Row" msgid "Add/Delete criteria rows" msgstr "Adicionar/Remover critérios de busca" -#: db_qbe.php:595 +#: db_qbe.php:592 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Add/Delete columns" msgstr "Adicionar/Remover colunas" -#: db_qbe.php:608 db_qbe.php:633 +#: db_qbe.php:605 db_qbe.php:630 msgid "Update Query" msgstr "Atualizar a consulta SQL" -#: db_qbe.php:616 +#: db_qbe.php:613 msgid "Use Tables" msgstr "Usar tabelas" -#: db_qbe.php:639 +#: db_qbe.php:636 #, php-format msgid "SQL query on database %s:" msgstr "Consulta no Banco de Dados %s:" -#: db_qbe.php:933 libraries/common.lib.php:1222 +#: db_qbe.php:930 libraries/common.lib.php:1215 msgid "Submit Query" msgstr "Enviar consulta SQL" @@ -519,17 +493,17 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s resultado(s) dentro da tabela %s" msgstr[1] "%s resultado(s) dentro da tabela %s" -#: db_search.php:249 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2831 -#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:49 -#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:466 +#: db_search.php:249 db_structure.php:75 db_structure.php:76 +#: db_structure.php:88 db_structure.php:90 db_structure.php:101 +#: db_structure.php:103 libraries/common.lib.php:2836 +#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 +#: tbl_structure.php:35 tbl_structure.php:47 tbl_structure.php:464 msgid "Browse" msgstr "Visualizar" -#: db_search.php:254 libraries/display_tbl.lib.php:1164 -#: libraries/display_tbl.lib.php:2055 libraries/sql_query_form.lib.php:453 -#: pdf_pages.php:285 pdf_pages.php:424 pdf_pages.php:460 pdf_pages.php:488 +#: db_search.php:254 libraries/display_tbl.lib.php:1163 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 msgid "Delete" @@ -569,233 +543,239 @@ msgstr "Dentro da(s) tabela(s):" msgid "Inside column:" msgstr "Dentro do campo:" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2830 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:75 +#: db_structure.php:79 db_structure.php:80 db_structure.php:92 +#: db_structure.php:93 db_structure.php:105 db_structure.php:106 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 +#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Inserir" -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2827 libraries/common.lib.php:2834 -#: libraries/db_links.inc.php:62 libraries/export/htmlword.php:22 +#: db_structure.php:81 db_structure.php:94 db_structure.php:107 +#: libraries/common.lib.php:2832 libraries/common.lib.php:2839 +#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 -#: libraries/tbl_links.inc.php:55 pmd_general.php:133 -#: server_privileges.php:593 server_replication.php:314 tbl_tracking.php:268 +#: libraries/tbl_links.inc.php:54 pmd_general.php:133 +#: server_privileges.php:592 server_replication.php:313 tbl_tracking.php:263 msgid "Structure" msgstr "Estrutura" -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:544 db_structure.php:545 db_tracking.php:90 -#: libraries/Index.class.php:482 libraries/common.lib.php:1659 -#: libraries/db_links.inc.php:99 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:126 -#: server_databases.php:351 tbl_structure.php:26 tbl_structure.php:150 -#: tbl_structure.php:151 tbl_structure.php:470 +#: db_structure.php:82 db_structure.php:83 db_structure.php:95 +#: db_structure.php:96 db_structure.php:108 db_structure.php:109 +#: db_structure.php:530 db_structure.php:531 db_tracking.php:86 +#: libraries/Index.class.php:482 libraries/common.lib.php:1663 +#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 +#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 +#: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" msgstr "Eliminar" -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:542 db_structure.php:543 libraries/common.lib.php:1658 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:104 +#: db_structure.php:84 db_structure.php:85 db_structure.php:97 +#: db_structure.php:98 db_structure.php:110 db_structure.php:111 +#: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 +#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 msgid "Empty" msgstr "Limpar" -#: db_structure.php:315 libraries/tbl_links.inc.php:99 +#: db_structure.php:301 libraries/tbl_links.inc.php:98 #, php-format msgid "Table %s has been emptied" msgstr "Tabela %s foi esvaziada" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "View %s has been dropped" msgstr "Visão %s foi apagada" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "Table %s has been dropped" msgstr "Tabela %s foi eliminada" -#: db_structure.php:332 +#: db_structure.php:318 msgid "Tracking is active." msgstr "" -#: db_structure.php:334 +#: db_structure.php:320 msgid "Tracking is not active." msgstr "" -#: db_structure.php:419 libraries/display_tbl.lib.php:1943 +#: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -#: db_structure.php:433 db_structure.php:447 libraries/header.inc.php:125 -#: libraries/tbl_info.inc.php:65 tbl_structure.php:184 test/theme.php:73 +#: db_structure.php:419 db_structure.php:433 libraries/header.inc.php:125 +#: libraries/tbl_info.inc.php:60 tbl_structure.php:183 test/theme.php:73 msgid "View" msgstr "Visão" -#: db_structure.php:484 libraries/db_structure.lib.php:40 -#: libraries/server_links.inc.php:69 server_replication.php:32 -#: server_replication.php:163 server_status.php:368 +#: db_structure.php:470 libraries/db_structure.lib.php:40 +#: libraries/server_links.inc.php:69 server_replication.php:31 +#: server_replication.php:162 server_status.php:368 msgid "Replication" msgstr "Replicação" -#: db_structure.php:488 +#: db_structure.php:474 msgid "Sum" msgstr "Soma" -#: db_structure.php:495 libraries/StorageEngine.class.php:349 +#: db_structure.php:481 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s é o stored engine padrão neste servidor MySQL." -#: db_structure.php:523 db_structure.php:540 db_structure.php:541 -#: libraries/display_tbl.lib.php:2080 libraries/display_tbl.lib.php:2085 -#: libraries/mult_submits.inc.php:15 server_databases.php:345 -#: server_databases.php:350 server_privileges.php:1588 tbl_structure.php:454 -#: tbl_structure.php:463 +#: db_structure.php:509 db_structure.php:526 db_structure.php:527 +#: libraries/display_tbl.lib.php:2039 libraries/display_tbl.lib.php:2044 +#: libraries/mult_submits.inc.php:15 server_databases.php:343 +#: server_databases.php:348 server_privileges.php:1592 tbl_structure.php:452 +#: tbl_structure.php:461 msgid "With selected:" msgstr "Com marcados:" -#: db_structure.php:526 libraries/display_tbl.lib.php:2075 -#: server_databases.php:347 server_privileges.php:569 -#: server_privileges.php:1591 tbl_structure.php:457 +#: db_structure.php:512 libraries/display_tbl.lib.php:2034 +#: server_databases.php:345 server_privileges.php:568 +#: server_privileges.php:1595 tbl_structure.php:455 msgid "Check All" msgstr "Marcar todos" -#: db_structure.php:530 libraries/display_tbl.lib.php:2076 -#: libraries/replication_gui.lib.php:35 server_databases.php:349 -#: server_privileges.php:572 server_privileges.php:1595 tbl_structure.php:461 +#: db_structure.php:516 libraries/display_tbl.lib.php:2035 +#: libraries/replication_gui.lib.php:35 server_databases.php:347 +#: server_privileges.php:571 server_privileges.php:1599 tbl_structure.php:459 msgid "Uncheck All" msgstr "Desmarcar todos" -#: db_structure.php:535 +#: db_structure.php:521 msgid "Check tables having overhead" msgstr "Verificar sobre-carga" -#: db_structure.php:546 db_structure.php:547 db_structure.php:598 -#: libraries/display_tbl.lib.php:2179 libraries/mult_submits.inc.php:27 -#: tbl_structure.php:491 tbl_structure.php:493 +#: db_structure.php:532 db_structure.php:533 db_structure.php:584 +#: libraries/display_tbl.lib.php:2138 libraries/mult_submits.inc.php:27 +#: tbl_structure.php:489 tbl_structure.php:491 msgid "Print view" msgstr "Visualização para impressão" -#: db_structure.php:548 db_structure.php:549 libraries/mult_submits.inc.php:41 -#: tbl_operations.php:580 +#: db_structure.php:534 db_structure.php:535 libraries/mult_submits.inc.php:41 +#: tbl_operations.php:578 msgid "Check table" msgstr "Verificar tabela" -#: db_structure.php:550 db_structure.php:551 libraries/mult_submits.inc.php:46 -#: tbl_operations.php:620 tbl_structure.php:708 tbl_structure.php:710 +#: db_structure.php:536 db_structure.php:537 libraries/mult_submits.inc.php:46 +#: tbl_operations.php:618 tbl_structure.php:706 tbl_structure.php:708 msgid "Optimize table" msgstr "Otimizar tabela" -#: db_structure.php:552 db_structure.php:553 libraries/mult_submits.inc.php:51 -#: tbl_operations.php:610 +#: db_structure.php:538 db_structure.php:539 libraries/mult_submits.inc.php:51 +#: tbl_operations.php:608 msgid "Repair table" msgstr "Reparar tabela" -#: db_structure.php:554 db_structure.php:555 libraries/mult_submits.inc.php:56 -#: tbl_operations.php:600 +#: db_structure.php:540 db_structure.php:541 libraries/mult_submits.inc.php:56 +#: tbl_operations.php:598 msgid "Analyze table" msgstr "Analizar tabela" -#: db_structure.php:556 db_structure.php:557 libraries/db_links.inc.php:70 -#: libraries/display_export.lib.php:82 libraries/display_tbl.lib.php:2093 -#: libraries/display_tbl.lib.php:2224 libraries/mult_submits.inc.php:61 -#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:81 -#: pmd_pdf.php:83 pmd_pdf.php:108 server_privileges.php:1372 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 +#: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 +#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 +#: pmd_pdf.php:81 pmd_pdf.php:106 server_privileges.php:1376 #: setup/frames/menu.inc.php:22 tbl_row_action.php:58 msgid "Export" msgstr "Exportar" -#: db_structure.php:605 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:591 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "Dicionário de dados" -#: db_tracking.php:65 +#: db_tracking.php:61 #, fuzzy msgid "Tracked tables" msgstr "Verificar tabela" -#: db_tracking.php:70 libraries/export/htmlword.php:85 +#: db_tracking.php:66 libraries/export/htmlword.php:85 #: libraries/export/latex.php:152 libraries/export/odt.php:112 #: libraries/export/sql.php:339 libraries/export/texytext.php:84 #: libraries/export/xml.php:254 libraries/header.inc.php:105 -#: libraries/header_printview.inc.php:57 server_databases.php:168 -#: server_privileges.php:1652 server_privileges.php:1713 -#: server_privileges.php:1971 server_processlist.php:55 -#: server_synchronize.php:1178 server_synchronize.php:1182 -#: tbl_tracking.php:590 test/theme.php:64 +#: libraries/header_printview.inc.php:57 server_databases.php:166 +#: server_privileges.php:1656 server_privileges.php:1717 +#: server_privileges.php:1975 server_processlist.php:55 +#: server_synchronize.php:1177 server_synchronize.php:1181 +#: tbl_tracking.php:585 test/theme.php:64 msgid "Database" msgstr "Banco de Dados" -#: db_tracking.php:72 +#: db_tracking.php:68 #, fuzzy msgid "Last version" msgstr "Criar relacionamento" -#: db_tracking.php:73 tbl_tracking.php:593 +#: db_tracking.php:69 tbl_tracking.php:588 #, fuzzy msgid "Created" msgstr "Criar" -#: db_tracking.php:74 tbl_tracking.php:594 +#: db_tracking.php:70 tbl_tracking.php:589 msgid "Updated" msgstr "" -#: db_tracking.php:76 libraries/Index.class.php:439 -#: libraries/db_structure.lib.php:44 server_databases.php:202 -#: server_privileges.php:1534 server_privileges.php:1717 -#: server_privileges.php:2065 tbl_structure.php:186 +#: db_tracking.php:71 libraries/common.lib.php:1361 +#: libraries/server_links.inc.php:48 server_processlist.php:58 +#: tbl_tracking.php:590 test/theme.php:100 +msgid "Status" +msgstr "Status" + +#: db_tracking.php:72 libraries/Index.class.php:439 +#: libraries/db_structure.lib.php:44 server_databases.php:200 +#: server_privileges.php:1538 server_privileges.php:1721 +#: server_privileges.php:2069 tbl_structure.php:185 msgid "Action" msgstr "Ação" -#: db_tracking.php:87 db_tracking.php:119 +#: db_tracking.php:83 db_tracking.php:115 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:105 tbl_tracking.php:547 tbl_tracking.php:605 -#: tbl_tracking.php:612 +#: db_tracking.php:101 tbl_tracking.php:542 tbl_tracking.php:600 +#: tbl_tracking.php:607 msgid "active" msgstr "" -#: db_tracking.php:107 tbl_tracking.php:549 tbl_tracking.php:607 -#: tbl_tracking.php:609 +#: db_tracking.php:103 tbl_tracking.php:544 tbl_tracking.php:602 +#: tbl_tracking.php:604 msgid "not active" msgstr "" -#: db_tracking.php:120 +#: db_tracking.php:116 #, fuzzy msgid "Versions" msgstr "Pérsa" -#: db_tracking.php:121 tbl_tracking.php:378 tbl_tracking.php:623 +#: db_tracking.php:117 tbl_tracking.php:373 tbl_tracking.php:618 msgid "Tracking report" msgstr "" -#: db_tracking.php:122 tbl_tracking.php:250 tbl_tracking.php:623 +#: db_tracking.php:118 tbl_tracking.php:245 tbl_tracking.php:618 #, fuzzy msgid "Structure snapshot" msgstr "Somente estrutura" -#: db_tracking.php:151 +#: db_tracking.php:147 #, fuzzy msgid "Untracked tables" msgstr "Verificar tabela" -#: db_tracking.php:171 db_tracking.php:173 tbl_structure.php:527 -#: tbl_structure.php:529 +#: db_tracking.php:167 db_tracking.php:169 tbl_structure.php:525 +#: tbl_structure.php:527 #, fuzzy msgid "Track table" msgstr "Verificar tabela" -#: db_tracking.php:199 +#: db_tracking.php:195 #, fuzzy msgid "Database Log" msgstr "Banco de Dados" @@ -804,12 +784,12 @@ msgstr "Banco de Dados" msgid "Selected export type has to be saved in file!" msgstr "Tipo de exportação selecionada tem que ser salva no arquivo!" -#: export.php:153 export.php:178 export.php:620 +#: export.php:152 export.php:177 export.php:615 #, php-format msgid "Insufficient space to save the file %s." msgstr "Espaço insuficiente para salvar o arquivo %s." -#: export.php:287 +#: export.php:286 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -817,17 +797,17 @@ msgstr "" "O arquivo %s já existe no servidor, mude o nome do arquivo ou verifique sua " "opção de sobrescrever." -#: export.php:291 export.php:295 +#: export.php:290 export.php:294 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "O servidor web não tem permissão para salvar o arquivo %s." -#: export.php:622 +#: export.php:617 #, php-format msgid "Dump has been saved to file %s." msgstr "Dump foi salvo no arquivo %s." -#: import.php:59 +#: import.php:58 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -836,14 +816,14 @@ msgstr "" "Você provavelmente tentou carregar um arquivo muito grande. Veja referências " "na %sdocumentation%s para burlar esses limites." -#: import.php:278 import.php:331 libraries/File.class.php:840 -#: libraries/File.class.php:950 +#: import.php:277 import.php:330 libraries/File.class.php:566 +#: libraries/File.class.php:676 msgid "File could not be read" msgstr "O arquivo não pode ser lido" -#: import.php:286 import.php:295 import.php:314 import.php:323 -#: libraries/File.class.php:1020 libraries/File.class.php:1028 -#: libraries/File.class.php:1044 libraries/File.class.php:1052 +#: import.php:285 import.php:294 import.php:313 import.php:322 +#: libraries/File.class.php:746 libraries/File.class.php:754 +#: libraries/File.class.php:770 libraries/File.class.php:778 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -853,7 +833,7 @@ msgstr "" "suporte para isso não ter sido implementado ou pode ter sido desabilitado " "por sua configuração PHP." -#: import.php:336 +#: import.php:335 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -863,29 +843,29 @@ msgstr "" "submetido, ou o tamanho do arquivo excedeu o tamanho máximo permitido pelas " "suas configurações do PHP. Veja FAQ 1.16." -#: import.php:371 libraries/display_import.lib.php:23 +#: import.php:370 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "Não foi possível importar plugins, verifique sua instalação!" -#: import.php:396 +#: import.php:395 msgid "The bookmark has been deleted." msgstr "O marcador foi removido." -#: import.php:400 +#: import.php:399 msgid "Showing bookmark" msgstr "Exibindo marcadores" -#: import.php:402 sql.php:625 +#: import.php:401 sql.php:618 #, php-format msgid "Bookmark %s created" msgstr "Marcador %s criado" -#: import.php:408 import.php:414 +#: import.php:407 import.php:413 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Importação finalizada com sucesso, %d consultas executadas." -#: import.php:423 +#: import.php:422 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -893,7 +873,7 @@ msgstr "" "Script passou do tempo limite, se você deseja terminar a importação, reenvie " "o mesmo arquivo que a importação será resumida." -#: import.php:425 +#: import.php:424 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -902,20 +882,20 @@ msgstr "" "que o phpMyAdmin não é capaz de finalizar essa importação à menos que você " "aumente o tempo limite do PHP." -#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:240 +#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:239 #: user_password.php:110 msgid "Back" msgstr "Voltar" -#: index.php:188 +#: index.php:183 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" "phpMyAdmin é mais amigável com um navegador capaz de exibir frames." -#: js/messages.php:25 server_synchronize.php:344 server_synchronize.php:356 -#: server_synchronize.php:372 server_synchronize.php:379 -#: server_synchronize.php:738 server_synchronize.php:766 -#: server_synchronize.php:794 server_synchronize.php:806 +#: js/messages.php:25 server_synchronize.php:343 server_synchronize.php:355 +#: server_synchronize.php:371 server_synchronize.php:378 +#: server_synchronize.php:737 server_synchronize.php:765 +#: server_synchronize.php:793 server_synchronize.php:805 msgid "Click to select" msgstr "" @@ -923,15 +903,15 @@ msgstr "" msgid "Click to unselect" msgstr "" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:88 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:87 msgid "\"DROP DATABASE\" statements are disabled." msgstr "O comando \"DROP DATABASE\" está desabilitado." -#: js/messages.php:30 libraries/mult_submits.inc.php:257 sql.php:187 +#: js/messages.php:30 libraries/mult_submits.inc.php:256 sql.php:186 msgid "Do you really want to " msgstr "Confirmar" -#: js/messages.php:31 libraries/mult_submits.inc.php:257 sql.php:171 +#: js/messages.php:31 libraries/mult_submits.inc.php:256 sql.php:170 msgid "You are about to DESTROY a complete database!" msgstr "Você está prestes à DESTRUIR completamente o Banco de Dados!" @@ -960,11 +940,11 @@ msgstr "O nome do servidor está vazio!" msgid "The user name is empty!" msgstr "O nome do usuário está em branco!" -#: js/messages.php:44 server_privileges.php:1228 user_password.php:65 +#: js/messages.php:44 server_privileges.php:1229 user_password.php:65 msgid "The password is empty!" msgstr "A senhas está em branco!" -#: js/messages.php:45 server_privileges.php:1226 user_password.php:68 +#: js/messages.php:45 server_privileges.php:1227 user_password.php:68 msgid "The passwords aren't the same!" msgstr "As senhas não são iguais!" @@ -972,27 +952,27 @@ msgstr "As senhas não são iguais!" msgid "Cancel" msgstr "Cancelar" -#: js/messages.php:52 pmd_save_pos.php:53 +#: js/messages.php:52 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "Modificações foram salvas" -#: js/messages.php:53 pmd_relation_upd.php:48 +#: js/messages.php:53 pmd_relation_upd.php:47 msgid "Relation deleted" msgstr "Relacionamento apagado" -#: js/messages.php:54 pmd_relation_new.php:63 +#: js/messages.php:54 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:55 pmd_relation_new.php:85 +#: js/messages.php:55 pmd_relation_new.php:84 msgid "Internal relation added" msgstr "Adicionado relacionamento Interno" -#: js/messages.php:56 pmd_relation_new.php:62 pmd_relation_new.php:87 +#: js/messages.php:56 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "Erro: relacionamento não adicionado." -#: js/messages.php:57 pmd_relation_new.php:30 +#: js/messages.php:57 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "Erro: relacionamento já existe." @@ -1000,13 +980,13 @@ msgstr "Erro: relacionamento já existe." msgid "Error saving coordinates for Designer." msgstr "Erro ao salvar coordenada para o Designer." -#: js/messages.php:59 libraries/relation.lib.php:94 -#: libraries/relation.lib.php:106 +#: js/messages.php:59 libraries/relation.lib.php:89 +#: libraries/relation.lib.php:101 msgid "General relation features" msgstr "Recursos de relações gerais" -#: js/messages.php:59 libraries/relation.lib.php:88 -#: libraries/relation.lib.php:95 +#: js/messages.php:59 libraries/relation.lib.php:83 +#: libraries/relation.lib.php:90 msgid "Disabled" msgstr "Desabilitado" @@ -1022,7 +1002,7 @@ msgstr "Selecionar Chave Estrangeira" msgid "Please select the primary key or a unique key" msgstr "Por favor, selecione uma chave primária ou uma chave única" -#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:547 +#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" @@ -1052,10 +1032,10 @@ msgid "Prev" msgstr "Anterior" #. l10n: Display text for next month link in calendar -#: js/messages.php:81 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:337 -#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:422 -#: tbl_structure.php:800 +#: js/messages.php:81 libraries/common.lib.php:2358 +#: libraries/common.lib.php:2361 libraries/display_tbl.lib.php:336 +#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 +#: tbl_structure.php:798 msgid "Next" msgstr "Próximo" @@ -1129,27 +1109,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1562 +#: js/messages.php:101 libraries/common.lib.php:1566 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1564 +#: js/messages.php:103 libraries/common.lib.php:1568 msgid "Feb" msgstr "Fev" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1566 +#: js/messages.php:105 libraries/common.lib.php:1570 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1568 +#: js/messages.php:107 libraries/common.lib.php:1572 msgid "Apr" msgstr "Abr" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1570 +#: js/messages.php:109 libraries/common.lib.php:1574 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1157,37 +1137,37 @@ msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1572 +#: js/messages.php:111 libraries/common.lib.php:1576 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1574 +#: js/messages.php:113 libraries/common.lib.php:1578 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1576 +#: js/messages.php:115 libraries/common.lib.php:1580 msgid "Aug" msgstr "Ago" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1578 +#: js/messages.php:117 libraries/common.lib.php:1582 msgid "Sep" msgstr "Set" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1580 +#: js/messages.php:119 libraries/common.lib.php:1584 msgid "Oct" msgstr "Out" #. l10n: Short month name -#: js/messages.php:121 libraries/common.lib.php:1582 +#: js/messages.php:121 libraries/common.lib.php:1586 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:123 libraries/common.lib.php:1584 +#: js/messages.php:123 libraries/common.lib.php:1588 msgid "Dec" msgstr "Dez" @@ -1228,37 +1208,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1587 +#: js/messages.php:136 libraries/common.lib.php:1591 msgid "Sun" msgstr "Dom" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1589 +#: js/messages.php:138 libraries/common.lib.php:1593 msgid "Mon" msgstr "Seg" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1591 +#: js/messages.php:140 libraries/common.lib.php:1595 msgid "Tue" msgstr "Ter" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1593 +#: js/messages.php:142 libraries/common.lib.php:1597 msgid "Wed" msgstr "Qua" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1595 +#: js/messages.php:144 libraries/common.lib.php:1599 msgid "Thu" msgstr "Qui" #. l10n: Short week day name -#: js/messages.php:146 libraries/common.lib.php:1597 +#: js/messages.php:146 libraries/common.lib.php:1601 msgid "Fri" msgstr "Sex" #. l10n: Short week day name -#: js/messages.php:148 libraries/common.lib.php:1599 +#: js/messages.php:148 libraries/common.lib.php:1603 msgid "Sat" msgstr "Sab" @@ -1336,18 +1316,13 @@ msgstr "por segundo" msgid "Font size" msgstr "Tamanho da fonte" -#: libraries/File.class.php:336 libraries/File.class.php:424 -#: libraries/File.class.php:561 libraries/File.class.php:700 -msgid "Unknown error in file upload." -msgstr "Erro desconhecido no carregamento do arquivo." - -#: libraries/File.class.php:406 +#: libraries/File.class.php:315 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:409 +#: libraries/File.class.php:318 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -1355,59 +1330,63 @@ msgstr "" "O arquivo carregado excede o tamanho definido na diretriz MAX_FILE_SIZE do " "formulário HTM." -#: libraries/File.class.php:412 +#: libraries/File.class.php:321 msgid "The uploaded file was only partially uploaded." msgstr "Carregamento do arquivo foi apenas parcial." -#: libraries/File.class.php:415 +#: libraries/File.class.php:324 msgid "Missing a temporary folder." msgstr "Pasta temporária não encontrada." -#: libraries/File.class.php:418 +#: libraries/File.class.php:327 msgid "Failed to write file to disk." msgstr "Falhou ao salvar arquivo no disco." -#: libraries/File.class.php:421 +#: libraries/File.class.php:330 msgid "File upload stopped by extension." msgstr "Carregamento do arquivo parado pela extenção." -#: libraries/File.class.php:898 +#: libraries/File.class.php:333 +msgid "Unknown error in file upload." +msgstr "Erro desconhecido no carregamento do arquivo." + +#: libraries/File.class.php:624 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:427 tbl_relation.php:528 +#: libraries/Index.class.php:427 tbl_relation.php:526 msgid "No index defined!" msgstr "Nenhum índice definido!" -#: libraries/Index.class.php:432 server_databases.php:131 tbl_tracking.php:315 +#: libraries/Index.class.php:432 server_databases.php:129 tbl_tracking.php:310 msgid "Indexes" msgstr "Índices" #: libraries/Index.class.php:443 libraries/mult_submits.inc.php:102 -#: libraries/tbl_properties.inc.php:518 tbl_structure.php:32 -#: tbl_structure.php:154 tbl_structure.php:158 tbl_structure.php:473 -#: tbl_tracking.php:321 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:31 +#: tbl_structure.php:153 tbl_structure.php:157 tbl_structure.php:471 +#: tbl_tracking.php:316 msgid "Unique" msgstr "Único" -#: libraries/Index.class.php:444 tbl_tracking.php:322 +#: libraries/Index.class.php:444 tbl_tracking.php:317 msgid "Packed" msgstr "Pacote" -#: libraries/Index.class.php:446 tbl_tracking.php:324 +#: libraries/Index.class.php:446 tbl_tracking.php:319 msgid "Cardinality" msgstr "Cardinalidade" -#: libraries/Index.class.php:449 tbl_tracking.php:278 tbl_tracking.php:327 +#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322 msgid "Comment" msgstr "Cometário" #: libraries/Index.class.php:465 libraries/common.lib.php:609 -#: libraries/common.lib.php:1198 libraries/display_tbl.lib.php:1116 +#: libraries/common.lib.php:1191 libraries/display_tbl.lib.php:1115 #: libraries/import.lib.php:1119 libraries/import.lib.php:1143 -#: pdf_pages.php:284 setup/frames/index.inc.php:124 +#: pdf_pages.php:283 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:349 tbl_row_action.php:68 msgid "Edit" msgstr "Editar" @@ -1431,15 +1410,15 @@ msgstr "" "removida." #: libraries/List_Database.class.php:430 libraries/server_links.inc.php:40 -#: server_databases.php:87 server_privileges.php:1652 +#: server_databases.php:85 server_privileges.php:1656 #: setup/lib/messages.inc.php:107 test/theme.php:92 msgid "Databases" msgstr "Banco de Dados" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:259 libraries/import.lib.php:134 pdf_schema.php:31 -#: pdf_schema.php:231 tbl_change.php:1023 tbl_operations.php:212 -#: tbl_relation.php:289 view_operations.php:61 +#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 +#: tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Erro" @@ -1467,42 +1446,42 @@ msgid_plural "%1$d rows inserted." msgstr[0] "%1$d linha(s) inseridas." msgstr[1] "%1$d linha(s) inseridas." -#: libraries/StorageEngine.class.php:196 +#: libraries/StorageEngine.class.php:194 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:352 +#: libraries/StorageEngine.class.php:354 #, php-format msgid "%s is available on this MySQL server." msgstr "%s está disponível neste servidor MySQL." -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:357 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s está desabilitado neste servidor MySQL." -#: libraries/StorageEngine.class.php:359 +#: libraries/StorageEngine.class.php:361 #, 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:1018 +#: libraries/Table.class.php:1017 msgid "Invalid database" msgstr "Banco de Dados inválido" -#: libraries/Table.class.php:1032 tbl_get_field.php:25 +#: libraries/Table.class.php:1031 tbl_get_field.php:25 msgid "Invalid table name" msgstr "Nome de tabela inválida" -#: libraries/Table.class.php:1047 +#: libraries/Table.class.php:1046 #, 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:1131 +#: libraries/Table.class.php:1129 #, php-format msgid "Table %s has been renamed to %s" msgstr "Tabela %s renomeada para %s" @@ -1520,22 +1499,22 @@ msgstr "Nenhuma pré-visualização disponível." msgid "take it" msgstr "tome" -#: libraries/Theme_Manager.class.php:114 +#: 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:152 +#: libraries/Theme_Manager.class.php:147 #, php-format msgid "Theme %s not found!" msgstr "Tema %s não encontrado!" -#: libraries/Theme_Manager.class.php:220 +#: 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:296 test/theme.php:160 themes.php:20 +#: libraries/Theme_Manager.class.php:291 test/theme.php:160 themes.php:20 #: themes.php:40 msgid "Theme / Style" msgstr "Tema / Estilo" @@ -1648,19 +1627,19 @@ msgstr "" msgid "Authenticating..." msgstr "Autenticando..." -#: libraries/blobstreaming.lib.php:689 +#: libraries/blobstreaming.lib.php:340 msgid "View image" msgstr "" -#: libraries/blobstreaming.lib.php:693 +#: libraries/blobstreaming.lib.php:344 msgid "Play audio" msgstr "" -#: libraries/blobstreaming.lib.php:698 +#: libraries/blobstreaming.lib.php:349 msgid "View video" msgstr "" -#: libraries/blobstreaming.lib.php:702 +#: libraries/blobstreaming.lib.php:353 msgid "Download file" msgstr "" @@ -1714,7 +1693,7 @@ msgstr "Servidor" msgid "Invalid authentication method set in configuration:" msgstr "Método de autenticação inválido informado nas configurações:" -#: libraries/common.inc.php:909 +#: libraries/common.inc.php:908 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Você deveria atualizar para %s %s ou posterior." @@ -1739,7 +1718,8 @@ msgstr "en" #: libraries/common.lib.php:425 libraries/common.lib.php:427 #: libraries/common.lib.php:429 libraries/common.lib.php:445 #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 -#: libraries/display_export.lib.php:163 libraries/relation.lib.php:84 +#: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 +#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 #: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" @@ -1754,148 +1734,148 @@ msgstr "consulta SQL" msgid "MySQL said: " msgstr "Mensagens do MySQL : " -#: libraries/common.lib.php:1136 +#: libraries/common.lib.php:1129 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1174 setup/lib/messages.inc.php:350 +#: libraries/common.lib.php:1167 setup/lib/messages.inc.php:350 msgid "Explain SQL" msgstr "Explicar SQL" -#: libraries/common.lib.php:1177 +#: libraries/common.lib.php:1170 msgid "Skip Explain SQL" msgstr "Pular Explicação SQL" -#: libraries/common.lib.php:1211 +#: libraries/common.lib.php:1204 msgid "Without PHP Code" msgstr "sem código PHP" -#: libraries/common.lib.php:1214 setup/lib/messages.inc.php:352 +#: libraries/common.lib.php:1207 setup/lib/messages.inc.php:352 msgid "Create PHP Code" msgstr "Criar código PHP" -#: libraries/common.lib.php:1232 server_status.php:451 +#: libraries/common.lib.php:1225 server_status.php:451 #: setup/lib/messages.inc.php:351 msgid "Refresh" msgstr "Atualizar" -#: libraries/common.lib.php:1241 +#: libraries/common.lib.php:1234 msgid "Skip Validate SQL" msgstr "Pular validação SQL" -#: libraries/common.lib.php:1244 setup/lib/messages.inc.php:353 +#: libraries/common.lib.php:1237 setup/lib/messages.inc.php:353 msgid "Validate SQL" msgstr "Validar SQL" -#: libraries/common.lib.php:1283 +#: libraries/common.lib.php:1287 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1285 +#: libraries/common.lib.php:1289 #, fuzzy #| msgid "Engines" msgid "Inline" msgstr "Engines" -#: libraries/common.lib.php:1339 libraries/common.lib.php:1354 +#: libraries/common.lib.php:1343 libraries/common.lib.php:1358 msgid "Profiling" msgstr "Perfil" -#: libraries/common.lib.php:1358 libraries/tbl_triggers.lib.php:27 +#: libraries/common.lib.php:1362 libraries/tbl_triggers.lib.php:27 #: server_processlist.php:57 msgid "Time" msgstr "Tempo" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "B" msgstr "Bytes" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "KiB" msgstr "KB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "MiB" msgstr "MB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "GiB" msgstr "GB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "TiB" msgstr "TB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "PiB" msgstr "PB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "EiB" msgstr "EB" #. l10n: Thousands separator -#: libraries/common.lib.php:1424 +#: libraries/common.lib.php:1428 msgid "," msgstr "," #. l10n: Decimal separator -#: libraries/common.lib.php:1426 +#: libraries/common.lib.php:1430 msgid "." msgstr "." #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1603 +#: libraries/common.lib.php:1607 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%d/%m/%Y às %Hh%Mmin" -#: libraries/common.lib.php:1909 +#: libraries/common.lib.php:1913 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dias, %s horas, %s minutos e %s segundos" -#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 -#: libraries/display_tbl.lib.php:289 server_status.php:718 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 +#: libraries/display_tbl.lib.php:288 server_status.php:718 msgid "Begin" msgstr "Início" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 -#: libraries/display_tbl.lib.php:290 server_binlog.php:154 +#: libraries/common.lib.php:2328 libraries/common.lib.php:2331 +#: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "Anterior" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 -#: libraries/display_tbl.lib.php:352 +#: libraries/common.lib.php:2359 libraries/common.lib.php:2362 +#: libraries/display_tbl.lib.php:351 msgid "End" msgstr "Fim" -#: libraries/common.lib.php:2429 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "Ir para o Banco de Dados "%s"." -#: libraries/common.lib.php:2448 +#: libraries/common.lib.php:2453 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "A funcionalidade %s é afetada por um bug conhecido, veja %s" -#: libraries/common.lib.php:2828 libraries/common.lib.php:2835 -#: libraries/db_links.inc.php:67 libraries/export/sql.php:24 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 +#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 -#: libraries/tbl_links.inc.php:59 querywindow.php:89 test/theme.php:96 +#: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2837 libraries/db_links.inc.php:103 -#: libraries/tbl_links.inc.php:94 libraries/tbl_links.inc.php:116 -#: view_operations.php:88 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: view_operations.php:87 msgid "Operations" msgstr "Operações" -#: libraries/core.lib.php:282 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1911,38 +1891,38 @@ msgstr "Eventos" msgid "Name" msgstr "Nome" -#: libraries/db_links.inc.php:44 +#: libraries/db_links.inc.php:43 #, php-format msgid "Database %s has been dropped." msgstr "Banco de Dados %s foi eliminado." -#: libraries/db_links.inc.php:56 libraries/db_links.inc.php:57 -#: libraries/db_links.inc.php:58 +#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 +#: libraries/db_links.inc.php:57 msgid "Database seems to be empty!" msgstr "Banco de Dados parece estar vazio!" -#: libraries/db_links.inc.php:80 libraries/relation.lib.php:142 -#: libraries/tbl_links.inc.php:68 +#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:85 +#: libraries/db_links.inc.php:84 msgid "Query" msgstr "Procurar por exemplo" -#: libraries/db_links.inc.php:90 libraries/relation.lib.php:138 +#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 msgid "Designer" msgstr "Designer" -#: libraries/db_links.inc.php:97 libraries/server_links.inc.php:87 -#: libraries/tbl_links.inc.php:90 pmd_pdf.php:83 pmd_pdf.php:109 +#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importar" -#: libraries/db_links.inc.php:110 libraries/server_links.inc.php:65 -#: server_privileges.php:111 server_privileges.php:1714 -#: server_privileges.php:2063 test/theme.php:116 +#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: server_privileges.php:110 server_privileges.php:1718 +#: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" msgstr "Privilégios" @@ -1954,14 +1934,14 @@ msgstr "Rotinas" msgid "Return type" msgstr "Tipo de returno" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1847 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1806 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "Pode ser aproximado. Veja o FAQ 3.11" -#: libraries/db_structure.lib.php:60 server_databases.php:141 -#: tbl_printview.php:334 tbl_structure.php:681 +#: libraries/db_structure.lib.php:60 server_databases.php:139 +#: tbl_printview.php:333 tbl_structure.php:679 msgid "Overhead" msgstr "Sobrecarga" @@ -1980,7 +1960,7 @@ 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:358 tbl_structure.php:607 +#: libraries/dbi/mysql.dbi.lib.php:358 tbl_structure.php:605 msgid "Details..." msgstr "Detalhes..." @@ -1990,22 +1970,22 @@ msgid "Change password" msgstr "Alterar a senha" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:807 +#: libraries/replication_gui.lib.php:347 server_privileges.php:806 msgid "No Password" msgstr "Sem senha" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1530 server_synchronize.php:1174 +#: libraries/replication_gui.lib.php:351 server_privileges.php:795 +#: server_privileges.php:799 server_privileges.php:810 +#: server_privileges.php:1534 server_synchronize.php:1173 msgid "Password" msgstr "Senha" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:815 server_privileges.php:818 +#: server_privileges.php:814 server_privileges.php:817 msgid "Re-type" msgstr "Re-digite" @@ -2028,8 +2008,8 @@ msgstr "Criar novo Banco de Dados" msgid "Create" msgstr "Criar" -#: libraries/display_create_database.lib.php:39 server_privileges.php:113 -#: server_privileges.php:1419 server_replication.php:34 +#: libraries/display_create_database.lib.php:39 server_privileges.php:112 +#: server_privileges.php:1423 server_replication.php:33 msgid "No Privileges" msgstr "Sem privilégios" @@ -2050,50 +2030,50 @@ msgstr "Criar nova tabela no Banco de Dados %s" msgid "Number of columns" msgstr "Número de arquivos" -#: libraries/display_export.lib.php:41 +#: libraries/display_export.lib.php:35 msgid "Could not load export plugins, please check your installation!" msgstr "Não pode carregar exportação dos plugins, verifique sua instalação!" -#: libraries/display_export.lib.php:106 +#: libraries/display_export.lib.php:100 #, fuzzy, php-format #| msgid "Dump %s row(s) starting at record # %s" msgid "Dump %s row(s) starting at row # %s" msgstr "Dumpar %s registros, começando pelo registro %s." -#: libraries/display_export.lib.php:114 +#: libraries/display_export.lib.php:108 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:124 setup/lib/messages.inc.php:79 +#: libraries/display_export.lib.php:118 setup/lib/messages.inc.php:79 msgid "Save as file" msgstr "Enviado" -#: libraries/display_export.lib.php:133 +#: libraries/display_export.lib.php:127 #, php-format msgid "Save on server in %s directory" msgstr "Salvar no servidor no diretório %s" -#: libraries/display_export.lib.php:141 setup/lib/messages.inc.php:87 +#: libraries/display_export.lib.php:135 setup/lib/messages.inc.php:87 msgid "Overwrite existing file(s)" msgstr "Sobrescrever arquivo(s) existente(s)" -#: libraries/display_export.lib.php:147 +#: libraries/display_export.lib.php:141 msgid "File name template" msgstr "Nome do arquivo do modelo" -#: libraries/display_export.lib.php:151 +#: libraries/display_export.lib.php:145 msgid "server name" msgstr "nome do servidor" -#: libraries/display_export.lib.php:154 +#: libraries/display_export.lib.php:148 msgid "database name" msgstr "nome do Banco de Dados" -#: libraries/display_export.lib.php:157 +#: libraries/display_export.lib.php:151 msgid "table name" msgstr "nome da tabela" -#: libraries/display_export.lib.php:161 +#: libraries/display_export.lib.php:155 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2104,39 +2084,39 @@ msgstr "" "strings de formatação de tempo. Adicionalmente a seguinte transformação " "ocorrerá: %3$s. Outros textos serão mantidos como são." -#: libraries/display_export.lib.php:202 +#: libraries/display_export.lib.php:196 msgid "remember template" msgstr "lembrar modelo" -#: libraries/display_export.lib.php:210 libraries/display_import.lib.php:177 +#: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 #: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 msgid "Character set of the file:" msgstr "Conjunto de caracteres do arquivo" -#: libraries/display_export.lib.php:235 setup/lib/messages.inc.php:81 +#: libraries/display_export.lib.php:229 setup/lib/messages.inc.php:81 msgid "Compression" msgstr "Compressão" -#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:196 -#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:529 -#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:574 -#: server_privileges.php:1867 server_processlist.php:74 +#: libraries/display_export.lib.php:234 libraries/display_import.lib.php:196 +#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:528 +#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:573 +#: server_privileges.php:1871 server_processlist.php:74 msgid "None" msgstr "Nenhum" -#: libraries/display_export.lib.php:247 +#: libraries/display_export.lib.php:241 msgid "\"zipped\"" msgstr "\"compactado com zip\"" -#: libraries/display_export.lib.php:253 +#: libraries/display_export.lib.php:247 msgid "\"gzipped\"" msgstr "\"compactado com gzip\"" -#: libraries/display_export.lib.php:259 +#: libraries/display_export.lib.php:253 msgid "\"bzipped\"" msgstr "\"compactado com bzip\"" -#: libraries/display_export.lib.php:274 libraries/export/sql.php:42 +#: libraries/display_export.lib.php:268 libraries/export/sql.php:42 #: libraries/import/sql.php:31 msgid "SQL compatibility mode" msgstr "Modo de compatibilidade SQL" @@ -2171,13 +2151,13 @@ msgid "File uploads are not allowed on this server." msgstr "Não é permitido subir arquivos neste servidor." #: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 -#: tbl_change.php:1024 +#: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "" "O diretório que você especificou para subir arquivos não foi encontrado." #: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 -#: tbl_change.php:1027 +#: tbl_change.php:925 msgid "web server upload directory" msgstr "Servidor web subiu o diretório" @@ -2263,43 +2243,43 @@ msgstr "Tamanho do papel" msgid "Language" msgstr "Linguagem" -#: libraries/display_tbl.lib.php:303 +#: libraries/display_tbl.lib.php:302 #, php-format msgid "%d is not valid row number." msgstr "%d não é um número de linha válido." -#: libraries/display_tbl.lib.php:309 +#: libraries/display_tbl.lib.php:308 #, fuzzy #| msgid "row(s) starting from record #" msgid "row(s) starting from row #" msgstr "registro(s) começando de" -#: libraries/display_tbl.lib.php:315 +#: libraries/display_tbl.lib.php:314 msgid "horizontal" msgstr "horizontal" -#: libraries/display_tbl.lib.php:316 +#: libraries/display_tbl.lib.php:315 msgid "horizontal (rotated headers)" msgstr "horizontal (cabeçalhos rotacionados)" -#: libraries/display_tbl.lib.php:317 +#: libraries/display_tbl.lib.php:316 msgid "vertical" msgstr "vertical" -#: libraries/display_tbl.lib.php:323 +#: libraries/display_tbl.lib.php:322 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "no modo %s e repetindo cabeçalhos após %s células" -#: libraries/display_tbl.lib.php:345 +#: libraries/display_tbl.lib.php:344 msgid "This operation could take a long time. Proceed anyway?" msgstr "Esta operação pode ser demorada. Deseja prosseguir?" -#: libraries/display_tbl.lib.php:511 +#: libraries/display_tbl.lib.php:510 msgid "Sort by key" msgstr "Ordenar pela chave" -#: libraries/display_tbl.lib.php:554 libraries/export/codegen.php:38 +#: libraries/display_tbl.lib.php:553 libraries/export/codegen.php:38 #: libraries/export/csv.php:29 libraries/export/excel.php:34 #: libraries/export/htmlword.php:28 libraries/export/latex.php:32 #: libraries/export/mediawiki.php:21 libraries/export/ods.php:26 @@ -2309,99 +2289,99 @@ msgstr "Ordenar pela chave" #: libraries/export/xlsx.php:26 libraries/export/xml.php:23 #: libraries/export/yaml.php:27 libraries/import.lib.php:1114 #: libraries/import.lib.php:1136 libraries/import/csv.php:31 -#: libraries/import/docsql.php:33 libraries/import/ldi.php:46 +#: libraries/import/docsql.php:32 libraries/import/ldi.php:46 #: libraries/import/ods.php:30 libraries/import/sql.php:19 #: libraries/import/xls.php:25 libraries/import/xlsx.php:25 -#: libraries/import/xml.php:25 tbl_select.php:264 tbl_structure.php:752 +#: libraries/import/xml.php:25 tbl_select.php:263 tbl_structure.php:750 msgid "Options" msgstr "Opções" -#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:569 +#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:568 msgid "Partial Texts" msgstr "Textos parciais" -#: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:573 +#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:572 msgid "Full Texts" msgstr "Textos completos" -#: libraries/display_tbl.lib.php:586 +#: libraries/display_tbl.lib.php:585 msgid "Relational key" msgstr "Chave de relação" -#: libraries/display_tbl.lib.php:587 +#: libraries/display_tbl.lib.php:586 #, fuzzy #| msgid "Relational schema" msgid "Relational display column" msgstr "Esquema relacional" -#: libraries/display_tbl.lib.php:594 +#: libraries/display_tbl.lib.php:593 msgid "Show binary contents" msgstr "" -#: libraries/display_tbl.lib.php:596 +#: libraries/display_tbl.lib.php:595 msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:598 +#: libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "" -#: libraries/display_tbl.lib.php:606 pmd_general.php:140 tbl_change.php:312 -#: tbl_change.php:318 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:307 +#: tbl_change.php:313 msgid "Hide" msgstr "Ocultar" -#: libraries/display_tbl.lib.php:606 libraries/relation.lib.php:122 -#: libraries/tbl_properties.inc.php:143 transformation_overview.php:46 +#: libraries/display_tbl.lib.php:605 libraries/relation.lib.php:117 +#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46 msgid "Browser transformation" msgstr "Transformações do navegador" -#: libraries/display_tbl.lib.php:1125 libraries/display_tbl.lib.php:1129 -#: libraries/display_tbl.lib.php:1131 +#: libraries/display_tbl.lib.php:1124 libraries/display_tbl.lib.php:1128 +#: libraries/display_tbl.lib.php:1130 msgid "Execute bookmarked query" msgstr "Executar consulta marcada" -#: libraries/display_tbl.lib.php:1144 libraries/display_tbl.lib.php:1156 +#: libraries/display_tbl.lib.php:1143 libraries/display_tbl.lib.php:1155 msgid "The row has been deleted" msgstr "Registro eliminado" -#: libraries/display_tbl.lib.php:1183 libraries/display_tbl.lib.php:2055 +#: libraries/display_tbl.lib.php:1182 libraries/display_tbl.lib.php:2014 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "Matar" -#: libraries/display_tbl.lib.php:1933 +#: libraries/display_tbl.lib.php:1892 msgid "in query" msgstr "na consulta" -#: libraries/display_tbl.lib.php:1951 +#: libraries/display_tbl.lib.php:1910 msgid "Showing rows" msgstr "Mostrando registros " -#: libraries/display_tbl.lib.php:1961 +#: libraries/display_tbl.lib.php:1920 msgid "total" msgstr "total" -#: libraries/display_tbl.lib.php:1969 sql.php:523 +#: libraries/display_tbl.lib.php:1928 sql.php:522 #, php-format msgid "Query took %01.4f sec" msgstr "Consulta levou %01.4f segundos" -#: libraries/display_tbl.lib.php:2088 libraries/mult_submits.inc.php:112 -#: querywindow.php:115 querywindow.php:119 querywindow.php:122 -#: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:469 +#: libraries/display_tbl.lib.php:2047 libraries/mult_submits.inc.php:112 +#: querywindow.php:114 querywindow.php:118 querywindow.php:121 +#: tbl_structure.php:23 tbl_structure.php:148 tbl_structure.php:467 msgid "Change" msgstr "Alterar" -#: libraries/display_tbl.lib.php:2158 +#: libraries/display_tbl.lib.php:2117 msgid "Query results operations" msgstr "Operações resultantes das consultas" -#: libraries/display_tbl.lib.php:2186 +#: libraries/display_tbl.lib.php:2145 msgid "Print view (with full texts)" msgstr "Ver impressão (com textos completos)" -#: libraries/display_tbl.lib.php:2359 +#: libraries/display_tbl.lib.php:2318 msgid "Link not found" msgstr "Link não encontrado" @@ -2459,9 +2439,9 @@ msgstr "Status do InnoDB" msgid "Buffer Pool Usage" msgstr "Uso do Buffer Pool" -#: libraries/engines/innodb.lib.php:168 server_databases.php:136 -#: server_databases.php:304 server_status.php:524 server_status.php:585 -#: server_status.php:606 tbl_printview.php:349 tbl_structure.php:695 +#: libraries/engines/innodb.lib.php:168 server_databases.php:134 +#: server_databases.php:302 server_status.php:524 server_status.php:585 +#: server_status.php:606 tbl_printview.php:348 tbl_structure.php:693 msgid "Total" msgstr "Total" @@ -2598,6 +2578,77 @@ msgstr "" "O buffer que é alocado quando são ordenados índices MyISAM durante um REPAIR " "TABLE ou quando são criados índices com CREATE INDEX ou ALTER TABLE." +#: libraries/engines/pbms.lib.php:31 +msgid "Garbage Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:32 +msgid "The percentage of garbage in a repository file before it is compacted." +msgstr "" + +#: libraries/engines/pbms.lib.php:36 libraries/replication_gui.lib.php:69 +#: server_synchronize.php:1161 +msgid "Port" +msgstr "Porta" + +#: libraries/engines/pbms.lib.php:37 +msgid "" +"The port for the PBMS stream-based communications. Setting this value to 0 " +"will disable HTTP communication with the daemon." +msgstr "" + +#: libraries/engines/pbms.lib.php:41 +msgid "Repository Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:42 +msgid "" +"The maximum size of a BLOB repository file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:46 +msgid "Temp Blob Timeout" +msgstr "" + +#: libraries/engines/pbms.lib.php:47 +msgid "" +"The timeout, in seconds, for temporary BLOBs. Uploaded BLOB data is removed " +"after this time, unless they are referenced by a record in the database." +msgstr "" + +#: libraries/engines/pbms.lib.php:51 +msgid "Temp Log Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:52 +msgid "" +"The maximum size of a temporary BLOB log file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:56 +msgid "Max Keep Alive" +msgstr "" + +#: libraries/engines/pbms.lib.php:57 +msgid "" +"The timeout for inactive connection with the keep-alive flag set. After this " +"time the connection will be closed. The time-out is in milliseconds (1/1000)." +msgstr "" + +#: libraries/engines/pbms.lib.php:61 +msgid "Metadata Headers" +msgstr "" + +#: libraries/engines/pbms.lib.php:62 +msgid "" +"A \":\" delimited list of metadata headers to be used to initialize the " +"pbms_metadata_header table when a database is created." +msgstr "" + #: libraries/engines/pbxt.lib.php:22 msgid "Index cache size" msgstr "" @@ -2723,7 +2774,7 @@ msgid "" msgstr "" #: libraries/export/codegen.php:36 setup/lib/messages.inc.php:85 -#: tbl_printview.php:374 tbl_structure.php:736 +#: tbl_printview.php:373 tbl_structure.php:734 msgid "Format" msgstr "Formato" @@ -2794,9 +2845,9 @@ msgstr "Microsoft Word 2000" #: libraries/export/htmlword.php:23 libraries/export/latex.php:59 #: libraries/export/latex.php:205 libraries/export/odt.php:47 #: libraries/export/sql.php:105 libraries/export/sql.php:865 -#: libraries/export/texytext.php:27 server_databases.php:126 -#: server_privileges.php:576 server_replication.php:315 tbl_printview.php:315 -#: tbl_structure.php:664 +#: libraries/export/texytext.php:27 server_databases.php:124 +#: server_privileges.php:575 server_replication.php:314 tbl_printview.php:314 +#: tbl_structure.php:662 msgid "Data" msgstr "Dados" @@ -2847,13 +2898,13 @@ msgid "Label key" msgstr "Rótulo da chave" #: libraries/export/latex.php:46 libraries/export/odt.php:34 -#: libraries/export/sql.php:90 tbl_relation.php:398 +#: libraries/export/sql.php:90 tbl_relation.php:396 msgid "Relations" msgstr "Relações" #: libraries/export/latex.php:52 libraries/export/odt.php:40 #: libraries/export/odt.php:317 libraries/export/sql.php:94 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "MIME-type" @@ -2861,10 +2912,10 @@ msgstr "MIME-type" #: libraries/export/xml.php:101 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1529 server_privileges.php:2061 -#: server_processlist.php:54 server_synchronize.php:1158 +#: libraries/replication_gui.lib.php:331 server_privileges.php:730 +#: server_privileges.php:733 server_privileges.php:789 +#: server_privileges.php:1533 server_privileges.php:2065 +#: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "Servidor" @@ -3057,8 +3108,8 @@ msgstr "Tipo de exportação" msgid "Export contents" msgstr "Tipo de exportação" -#: libraries/footer.inc.php:182 libraries/footer.inc.php:193 -#: libraries/footer.inc.php:196 +#: libraries/footer.inc.php:180 libraries/footer.inc.php:191 +#: libraries/footer.inc.php:194 msgid "Open new phpMyAdmin window" msgstr "Abrir nova janela do phpMyAdmin" @@ -3074,7 +3125,7 @@ msgstr "Resultado SQL" msgid "Generated by" msgstr "Gerado por" -#: libraries/import.lib.php:151 sql.php:519 tbl_change.php:180 +#: libraries/import.lib.php:151 sql.php:518 tbl_change.php:175 #: 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)." @@ -3133,7 +3184,7 @@ msgstr "Ignorar linhas duplicadas" msgid "Column names in first row" msgstr "" -#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:501 +#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:500 #: view_create.php:147 msgid "Column names" msgstr "Nome das colunas" @@ -3160,12 +3211,12 @@ msgstr "Formato inválido na linha %d da entrada CSV." msgid "Invalid column count in CSV input on line %d." msgstr "Contador de campo inválido na linha %d da entrada CSV." -#: libraries/import/docsql.php:28 +#: libraries/import/docsql.php:27 msgid "DocSQL" msgstr "DocSQL" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 -#: server_synchronize.php:427 server_synchronize.php:870 +#: libraries/import/docsql.php:30 libraries/tbl_properties.inc.php:616 +#: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "Nome da Tabela" @@ -3222,26 +3273,26 @@ msgstr "Nenhum" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:512 -#: tbl_structure.php:28 tbl_structure.php:152 tbl_structure.php:156 -#: tbl_structure.php:472 +#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:511 +#: tbl_structure.php:27 tbl_structure.php:151 tbl_structure.php:155 +#: tbl_structure.php:470 msgid "Primary" msgstr "Primária" #: libraries/mult_submits.inc.php:97 libraries/tbl_properties.inc.php:115 -#: libraries/tbl_properties.inc.php:524 tbl_printview.php:324 -#: tbl_structure.php:30 tbl_structure.php:153 tbl_structure.php:157 -#: tbl_structure.php:474 tbl_structure.php:672 +#: libraries/tbl_properties.inc.php:523 tbl_printview.php:323 +#: tbl_structure.php:29 tbl_structure.php:152 tbl_structure.php:156 +#: tbl_structure.php:472 tbl_structure.php:670 msgid "Index" msgstr "Índice" -#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:530 -#: tbl_structure.php:34 tbl_structure.php:155 tbl_structure.php:159 -#: tbl_structure.php:477 +#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:529 +#: tbl_structure.php:33 tbl_structure.php:154 tbl_structure.php:158 +#: tbl_structure.php:475 msgid "Fulltext" msgstr "Texto completo" -#: libraries/mult_submits.inc.php:434 tbl_replace.php:330 +#: libraries/mult_submits.inc.php:433 tbl_replace.php:330 msgid "No change" msgstr "Sem Mudança" @@ -3249,190 +3300,190 @@ msgstr "Sem Mudança" msgid "Charset" msgstr "Conjunto de caracteres" -#: libraries/mysql_charsets.lib.php:210 libraries/mysql_charsets.lib.php:411 -#: tbl_change.php:515 +#: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 +#: tbl_change.php:510 msgid "Binary" msgstr " Binário " -#: libraries/mysql_charsets.lib.php:222 +#: libraries/mysql_charsets.lib.php:214 msgid "Bulgarian" msgstr "Bulgaro" -#: libraries/mysql_charsets.lib.php:226 libraries/mysql_charsets.lib.php:351 +#: libraries/mysql_charsets.lib.php:218 libraries/mysql_charsets.lib.php:343 msgid "Simplified Chinese" msgstr "Chinês Simplificado" -#: libraries/mysql_charsets.lib.php:228 libraries/mysql_charsets.lib.php:371 +#: libraries/mysql_charsets.lib.php:220 libraries/mysql_charsets.lib.php:363 msgid "Traditional Chinese" msgstr "Chinês Tradicional" -#: libraries/mysql_charsets.lib.php:232 libraries/mysql_charsets.lib.php:418 +#: libraries/mysql_charsets.lib.php:224 libraries/mysql_charsets.lib.php:410 msgid "case-insensitive" msgstr "Não diferencia maiúsculas/minúsculas" -#: libraries/mysql_charsets.lib.php:235 libraries/mysql_charsets.lib.php:420 +#: libraries/mysql_charsets.lib.php:227 libraries/mysql_charsets.lib.php:412 msgid "case-sensitive" msgstr "Diferencia maiúsculas/minúsculas" -#: libraries/mysql_charsets.lib.php:238 +#: libraries/mysql_charsets.lib.php:230 msgid "Croatian" msgstr "Croata" -#: libraries/mysql_charsets.lib.php:241 +#: libraries/mysql_charsets.lib.php:233 msgid "Czech" msgstr "Tcheco" -#: libraries/mysql_charsets.lib.php:244 +#: libraries/mysql_charsets.lib.php:236 msgid "Danish" msgstr "Dinamarquês" -#: libraries/mysql_charsets.lib.php:247 +#: libraries/mysql_charsets.lib.php:239 msgid "English" msgstr "Inglês" -#: libraries/mysql_charsets.lib.php:250 +#: libraries/mysql_charsets.lib.php:242 msgid "Esperanto" msgstr "Esperanto" -#: libraries/mysql_charsets.lib.php:253 +#: libraries/mysql_charsets.lib.php:245 msgid "Estonian" msgstr "Estoniano" -#: libraries/mysql_charsets.lib.php:256 libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:248 libraries/mysql_charsets.lib.php:251 msgid "German" msgstr "Alemão" -#: libraries/mysql_charsets.lib.php:256 +#: libraries/mysql_charsets.lib.php:248 msgid "dictionary" msgstr "dicionário" -#: libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:251 msgid "phone book" msgstr "Agenda de telefones" -#: libraries/mysql_charsets.lib.php:262 +#: libraries/mysql_charsets.lib.php:254 msgid "Hungarian" msgstr "Húngaro" -#: libraries/mysql_charsets.lib.php:265 +#: libraries/mysql_charsets.lib.php:257 msgid "Icelandic" msgstr "Islandês" -#: libraries/mysql_charsets.lib.php:268 libraries/mysql_charsets.lib.php:358 +#: libraries/mysql_charsets.lib.php:260 libraries/mysql_charsets.lib.php:350 msgid "Japanese" msgstr "Japonês" -#: libraries/mysql_charsets.lib.php:271 +#: libraries/mysql_charsets.lib.php:263 msgid "Latvian" msgstr "Letonês" -#: libraries/mysql_charsets.lib.php:274 +#: libraries/mysql_charsets.lib.php:266 msgid "Lithuanian" msgstr "Lituânio" -#: libraries/mysql_charsets.lib.php:277 libraries/mysql_charsets.lib.php:380 +#: libraries/mysql_charsets.lib.php:269 libraries/mysql_charsets.lib.php:372 msgid "Korean" msgstr "Coreano" -#: libraries/mysql_charsets.lib.php:280 +#: libraries/mysql_charsets.lib.php:272 msgid "Persian" msgstr "Pérsa" -#: libraries/mysql_charsets.lib.php:283 +#: libraries/mysql_charsets.lib.php:275 msgid "Polish" msgstr "Polonês" -#: libraries/mysql_charsets.lib.php:286 libraries/mysql_charsets.lib.php:334 +#: libraries/mysql_charsets.lib.php:278 libraries/mysql_charsets.lib.php:326 msgid "West European" msgstr "Oeste Europeu" -#: libraries/mysql_charsets.lib.php:289 +#: libraries/mysql_charsets.lib.php:281 msgid "Romanian" msgstr "Romêno" -#: libraries/mysql_charsets.lib.php:292 +#: libraries/mysql_charsets.lib.php:284 msgid "Slovak" msgstr "Eslováquio" -#: libraries/mysql_charsets.lib.php:295 +#: libraries/mysql_charsets.lib.php:287 msgid "Slovenian" msgstr "Eslovênio" -#: libraries/mysql_charsets.lib.php:298 +#: libraries/mysql_charsets.lib.php:290 msgid "Spanish" msgstr "Espanhol" -#: libraries/mysql_charsets.lib.php:301 +#: libraries/mysql_charsets.lib.php:293 msgid "Traditional Spanish" msgstr "Espanhol Traditional" -#: libraries/mysql_charsets.lib.php:304 libraries/mysql_charsets.lib.php:401 +#: libraries/mysql_charsets.lib.php:296 libraries/mysql_charsets.lib.php:393 msgid "Swedish" msgstr "Suéco" -#: libraries/mysql_charsets.lib.php:307 libraries/mysql_charsets.lib.php:404 +#: libraries/mysql_charsets.lib.php:299 libraries/mysql_charsets.lib.php:396 msgid "Thai" msgstr "Thailandês" -#: libraries/mysql_charsets.lib.php:310 libraries/mysql_charsets.lib.php:398 +#: libraries/mysql_charsets.lib.php:302 libraries/mysql_charsets.lib.php:390 msgid "Turkish" msgstr "Turco" -#: libraries/mysql_charsets.lib.php:313 libraries/mysql_charsets.lib.php:395 +#: libraries/mysql_charsets.lib.php:305 libraries/mysql_charsets.lib.php:387 msgid "Ukrainian" msgstr "Ucraniano" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 msgid "Unicode" msgstr "Unicode" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 -#: libraries/mysql_charsets.lib.php:334 libraries/mysql_charsets.lib.php:341 -#: libraries/mysql_charsets.lib.php:363 libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 +#: libraries/mysql_charsets.lib.php:326 libraries/mysql_charsets.lib.php:333 +#: libraries/mysql_charsets.lib.php:355 libraries/mysql_charsets.lib.php:366 msgid "multilingual" msgstr "multi-linguagem" -#: libraries/mysql_charsets.lib.php:341 +#: libraries/mysql_charsets.lib.php:333 msgid "Central European" msgstr "Europeu Central" -#: libraries/mysql_charsets.lib.php:346 +#: libraries/mysql_charsets.lib.php:338 msgid "Russian" msgstr "Russo" -#: libraries/mysql_charsets.lib.php:363 +#: libraries/mysql_charsets.lib.php:355 msgid "Baltic" msgstr "Báltico" -#: libraries/mysql_charsets.lib.php:368 +#: libraries/mysql_charsets.lib.php:360 msgid "Armenian" msgstr "Armêno" -#: libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:366 msgid "Cyrillic" msgstr "Cirílico" -#: libraries/mysql_charsets.lib.php:377 +#: libraries/mysql_charsets.lib.php:369 msgid "Arabic" msgstr "Árabe" -#: libraries/mysql_charsets.lib.php:383 +#: libraries/mysql_charsets.lib.php:375 msgid "Hebrew" msgstr "Hebreu" -#: libraries/mysql_charsets.lib.php:386 +#: libraries/mysql_charsets.lib.php:378 msgid "Georgian" msgstr "Georgiano" -#: libraries/mysql_charsets.lib.php:389 +#: libraries/mysql_charsets.lib.php:381 msgid "Greek" msgstr "Grego" -#: libraries/mysql_charsets.lib.php:392 +#: libraries/mysql_charsets.lib.php:384 msgid "Czech-Slovak" msgstr "Tcheco-Eslováquio" -#: libraries/mysql_charsets.lib.php:407 libraries/mysql_charsets.lib.php:414 +#: libraries/mysql_charsets.lib.php:399 libraries/mysql_charsets.lib.php:406 msgid "unknown" msgstr "desconhecido" @@ -3458,68 +3509,68 @@ msgstr "Janela de consulta" msgid "This format has no options" msgstr "Esse formato não tem opções" -#: libraries/relation.lib.php:82 +#: libraries/relation.lib.php:77 msgid "not OK" msgstr "não está OK" -#: libraries/relation.lib.php:86 pmd_general.php:339 +#: libraries/relation.lib.php:81 pmd_general.php:339 msgid "OK" msgstr "OK" -#: libraries/relation.lib.php:87 +#: libraries/relation.lib.php:82 msgid "Enabled" msgstr "Habilitado" -#: libraries/relation.lib.php:110 +#: libraries/relation.lib.php:105 msgid "Display Features" msgstr "Exibir recursos" -#: libraries/relation.lib.php:116 +#: libraries/relation.lib.php:111 msgid "Creation of PDFs" msgstr "Criação de PDFs" -#: libraries/relation.lib.php:120 +#: libraries/relation.lib.php:115 msgid "Displaying Column Comments" msgstr "Exibindo comentários da coluna" -#: libraries/relation.lib.php:125 +#: libraries/relation.lib.php:120 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "Consulte a documentação sobre como atualizar sua tabela Column_comments" -#: libraries/relation.lib.php:130 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 msgid "Bookmarked SQL query" msgstr "Consulta SQL gravada" -#: libraries/relation.lib.php:134 querywindow.php:99 querywindow.php:207 +#: libraries/relation.lib.php:129 querywindow.php:98 querywindow.php:205 msgid "SQL history" msgstr "Histórico de consultas" -#: libraries/relation.lib.php:146 +#: libraries/relation.lib.php:141 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:148 +#: libraries/relation.lib.php:143 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" -#: libraries/relation.lib.php:149 +#: libraries/relation.lib.php:144 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:150 +#: libraries/relation.lib.php:145 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:151 +#: libraries/relation.lib.php:146 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1158 +#: libraries/relation.lib.php:1153 msgid "no description" msgstr "sem Descrição" @@ -3527,7 +3578,7 @@ msgstr "sem Descrição" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:53 server_replication.php:346 +#: libraries/replication_gui.lib.php:53 server_replication.php:345 msgid "Change or reconfigure master server" msgstr "" @@ -3539,16 +3590,12 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:711 -#: server_privileges.php:714 server_privileges.php:721 -#: server_synchronize.php:1170 +#: libraries/replication_gui.lib.php:261 server_privileges.php:710 +#: server_privileges.php:713 server_privileges.php:720 +#: server_synchronize.php:1169 msgid "User name" msgstr "Nome do usuário" -#: libraries/replication_gui.lib.php:69 server_synchronize.php:1162 -msgid "Port" -msgstr "Porta" - #: libraries/replication_gui.lib.php:105 #, fuzzy msgid "Master status" @@ -3565,8 +3612,8 @@ msgid "Variable" msgstr "Variáveis" #: libraries/replication_gui.lib.php:117 server_status.php:737 -#: tbl_change.php:322 tbl_printview.php:368 tbl_select.php:137 -#: tbl_structure.php:728 +#: tbl_change.php:317 tbl_printview.php:367 tbl_select.php:136 +#: tbl_structure.php:726 msgid "Value" msgstr "Valor" @@ -3580,38 +3627,38 @@ msgid "" "this list." msgstr "" -#: libraries/replication_gui.lib.php:242 server_replication.php:193 +#: libraries/replication_gui.lib.php:242 server_replication.php:192 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:256 server_privileges.php:716 +#: libraries/replication_gui.lib.php:256 server_privileges.php:715 msgid "Any user" msgstr "Qualquer usuário" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1920 server_privileges.php:1950 +#: libraries/replication_gui.lib.php:348 server_privileges.php:716 +#: server_privileges.php:783 server_privileges.php:807 +#: server_privileges.php:1924 server_privileges.php:1954 msgid "Use text field" msgstr "Usar campo texto" -#: libraries/replication_gui.lib.php:304 server_privileges.php:764 +#: libraries/replication_gui.lib.php:304 server_privileges.php:763 msgid "Any host" msgstr "Qualquer servidor" -#: libraries/replication_gui.lib.php:308 server_privileges.php:768 +#: libraries/replication_gui.lib.php:308 server_privileges.php:767 msgid "Local" msgstr "Local" -#: libraries/replication_gui.lib.php:314 server_privileges.php:773 +#: libraries/replication_gui.lib.php:314 server_privileges.php:772 msgid "This Host" msgstr "Esse Servidor" -#: libraries/replication_gui.lib.php:320 server_privileges.php:779 +#: libraries/replication_gui.lib.php:320 server_privileges.php:778 msgid "Use Host Table" msgstr "Usar Tabela do Servidor" -#: libraries/replication_gui.lib.php:333 server_privileges.php:792 +#: libraries/replication_gui.lib.php:333 server_privileges.php:791 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3637,8 +3684,8 @@ msgstr "Linguagem desconhecida: %1$s." msgid "Servers" msgstr "Servidores" -#: libraries/server_links.inc.php:52 server_engines.php:111 -#: server_engines.php:115 server_status.php:414 test/theme.php:104 +#: libraries/server_links.inc.php:52 server_engines.php:125 +#: server_engines.php:129 server_status.php:414 test/theme.php:104 msgid "Variables" msgstr "Variáveis" @@ -3659,12 +3706,12 @@ msgstr "Log binário" msgid "Processes" msgstr "Processos" -#: libraries/server_links.inc.php:91 server_synchronize.php:1091 -#: server_synchronize.php:1099 +#: libraries/server_links.inc.php:91 server_synchronize.php:1090 +#: server_synchronize.php:1098 msgid "Synchronize" msgstr "" -#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1109 +#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1108 #, fuzzy msgid "Source database" msgstr "Procurar no Banco de Dados" @@ -3683,7 +3730,7 @@ msgstr "" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1111 +#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1110 #, fuzzy msgid "Target database" msgstr "Procurar no Banco de Dados" @@ -3704,11 +3751,11 @@ msgstr "Fazer consulta SQL no Banco de Dados %s" msgid "Columns" msgstr "Nome das colunas" -#: libraries/sql_query_form.lib.php:342 sql.php:664 sql.php:665 sql.php:682 +#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "Gravar essa consulta SQL" -#: libraries/sql_query_form.lib.php:349 sql.php:676 +#: libraries/sql_query_form.lib.php:349 sql.php:669 msgid "Let every user access this bookmark" msgstr "Deixar qualquer usuário acessar esse marcador" @@ -3804,12 +3851,12 @@ 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/tbl_links.inc.php:106 libraries/tbl_links.inc.php:139 -#: libraries/tbl_links.inc.php:140 +#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 +#: libraries/tbl_links.inc.php:139 msgid "Table seems to be empty!" msgstr "Tabela para estar vazia!" -#: libraries/tbl_links.inc.php:148 +#: libraries/tbl_links.inc.php:147 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" @@ -3844,12 +3891,12 @@ msgstr "" "Para valores padrão, digite um valor simples, sem barras de escape ou aspas, " "use este formato: a" -#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1263 -#: pdf_schema.php:1284 tbl_printview.php:142 tbl_structure.php:179 +#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1262 +#: pdf_schema.php:1283 tbl_printview.php:141 tbl_structure.php:178 msgid "Attributes" msgstr "Atributos" -#: libraries/tbl_properties.inc.php:136 +#: libraries/tbl_properties.inc.php:135 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -3858,11 +3905,11 @@ msgstr "" "Para uma lista de opções de transformação disponíveis e suas transformações " "MIME-type, clique em %sdescrição de transformações%s" -#: libraries/tbl_properties.inc.php:144 +#: libraries/tbl_properties.inc.php:143 msgid "Transformation options" msgstr "Opções de transformação" -#: libraries/tbl_properties.inc.php:145 +#: libraries/tbl_properties.inc.php:144 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
                            If you ever need to put a backslash (\"\\\") or a single " @@ -3874,18 +3921,18 @@ msgstr "" "ou aspas (\"'\") no meio desses valores, faça-o usando outra contra-barra " "(por exemplo '\\\\xyz' ou 'a\\'b')." -#: libraries/tbl_properties.inc.php:392 +#: libraries/tbl_properties.inc.php:391 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "Nenhum" -#: libraries/tbl_properties.inc.php:393 +#: libraries/tbl_properties.inc.php:392 msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:579 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:578 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
                            Please ask the " @@ -3894,29 +3941,29 @@ msgstr "" "Sem descrição disponível para essa transformação.
                            Pergunte ao autor o " "que %s faz." -#: libraries/tbl_properties.inc.php:725 server_engines.php:57 -#: tbl_operations.php:354 +#: libraries/tbl_properties.inc.php:724 server_engines.php:56 +#: tbl_operations.php:352 msgid "Storage Engine" msgstr "Storage Engine" -#: libraries/tbl_properties.inc.php:754 +#: libraries/tbl_properties.inc.php:753 msgid "PARTITION definition" msgstr "Definição da PARTIÇÃO" -#: libraries/tbl_properties.inc.php:775 pdf_pages.php:502 +#: libraries/tbl_properties.inc.php:774 pdf_pages.php:501 #: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214 -#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1124 tbl_indexes.php:247 -#: tbl_relation.php:565 +#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1022 tbl_indexes.php:246 +#: tbl_relation.php:563 msgid "Save" msgstr "Salvar" -#: libraries/tbl_properties.inc.php:779 tbl_structure.php:541 +#: libraries/tbl_properties.inc.php:778 tbl_structure.php:539 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "Adicionar %s campo(s)" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:535 +#: libraries/tbl_properties.inc.php:782 tbl_structure.php:533 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -4120,8 +4167,8 @@ msgstr "Interface" msgid "Custom color" msgstr "" -#: main.php:162 pdf_pages.php:362 setup/lib/FormDisplay.tpl.php:216 -#: tbl_change.php:1173 +#: main.php:162 pdf_pages.php:361 setup/lib/FormDisplay.tpl.php:216 +#: tbl_change.php:1071 msgid "Reset" msgstr "Restaurar" @@ -4129,8 +4176,8 @@ msgstr "Restaurar" msgid "Protocol version" msgstr "Versão do Protocolo" -#: main.php:188 server_privileges.php:1381 server_privileges.php:1528 -#: server_privileges.php:1642 server_privileges.php:2060 +#: main.php:188 server_privileges.php:1385 server_privileges.php:1532 +#: server_privileges.php:1646 server_privileges.php:2064 #: server_processlist.php:53 msgid "User" msgstr "Usuário" @@ -4216,14 +4263,23 @@ msgid "" "has been configured." msgstr "" -#: main.php:330 +#: main.php:314 +#, php-format +msgid "" +"The additional features for working with linked tables have been " +"deactivated. To find out why click %shere%s." +msgstr "" +"Os recursos adicionais para trabalhar com tabelas linkadas foram " +"desativadas. Para descobrir o motivo clique %saqui%s." + +#: main.php:329 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:345 +#: main.php:344 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -4232,7 +4288,7 @@ msgstr "" "Sua versão %s da biblioteca MySQL do PHP difere da versão %s do seu servidor " "MySQL. Isso pode causar um comportamento estranho." -#: main.php:357 +#: main.php:356 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -4245,68 +4301,68 @@ msgstr "" msgid "Reload navigation frame" msgstr "" -#: navigation.php:204 server_databases.php:370 server_synchronize.php:1190 +#: navigation.php:203 server_databases.php:368 server_synchronize.php:1189 msgid "No databases" msgstr "Sem bases" -#: navigation.php:298 +#: navigation.php:297 msgid "Filter" msgstr "Filtro" -#: navigation.php:299 setup/frames/index.inc.php:218 +#: navigation.php:298 setup/frames/index.inc.php:218 #: setup/lib/messages.inc.php:41 msgid "Clear" msgstr "Limpar" -#: navigation.php:330 navigation.php:331 +#: navigation.php:329 navigation.php:330 #, fuzzy #| msgid "Create table" msgctxt "short form" msgid "Create table" msgstr "Criar tabela" -#: navigation.php:333 navigation.php:495 +#: navigation.php:332 navigation.php:494 msgid "Please select a database" msgstr "Selecionar um Banco de Dados" -#: pdf_pages.php:40 pdf_pages.php:46 pdf_pages.php:52 pdf_pages.php:57 +#: pdf_pages.php:39 pdf_pages.php:45 pdf_pages.php:51 pdf_pages.php:56 #, php-format msgid "%s table not found or not set in %s" msgstr "%s tabela não encontrada ou não configurada em %s" -#: pdf_pages.php:265 +#: pdf_pages.php:264 msgid "Please choose a page to edit" msgstr "Escolha a página para editar" -#: pdf_pages.php:303 pmd_pdf.php:113 +#: pdf_pages.php:302 pmd_pdf.php:111 msgid "Create a page" msgstr "Criar uma nova página" -#: pdf_pages.php:309 +#: pdf_pages.php:308 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Numero da página:" -#: pdf_pages.php:313 +#: pdf_pages.php:312 #, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "Leiaute automático" -#: pdf_pages.php:315 +#: pdf_pages.php:314 msgid "Internal relations" msgstr "Relações internas" -#: pdf_pages.php:338 +#: pdf_pages.php:337 msgid "Select Tables" msgstr "Tabelas selecionadas" -#: pdf_pages.php:361 +#: pdf_pages.php:360 msgid "Toggle scratchboard" msgstr "mudar o estado do Scratchboard" -#: pdf_pages.php:524 +#: pdf_pages.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -4314,37 +4370,37 @@ msgstr "" "A Página atual contêm referências para uma tabela que não existe. Gostaria " "de eliminar estas referências?" -#: pdf_schema.php:635 +#: pdf_schema.php:634 #, fuzzy, php-format #| msgid "The \"%s\" table doesn't exist!" msgid "The %s table doesn't exist!" msgstr "A tabela \"%s\" não existe!" -#: pdf_schema.php:671 +#: pdf_schema.php:670 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Configure as coordenadas para a tabela %s" -#: pdf_schema.php:994 +#: pdf_schema.php:993 #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" msgstr "Esquema do Banco de Dados \"%s\" - Página %s" -#: pdf_schema.php:1012 +#: pdf_schema.php:1011 msgid "No tables" msgstr "Sem tabelas" -#: pdf_schema.php:1031 pdf_schema.php:1140 +#: pdf_schema.php:1030 pdf_schema.php:1139 msgid "Relational schema" msgstr "Esquema relacional" -#: pdf_schema.php:1115 +#: pdf_schema.php:1114 msgid "Table of contents" msgstr "Tabela de conteúdos" -#: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:145 -#: tbl_structure.php:182 tbl_tracking.php:277 +#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 +#: tbl_structure.php:181 tbl_tracking.php:272 msgid "Extra" msgstr "Extra" @@ -4356,7 +4412,7 @@ msgstr "Exibir/Ocultar menu da esquerda" msgid "Save position" msgstr "Salvar posição" -#: pmd_general.php:70 server_synchronize.php:428 server_synchronize.php:871 +#: pmd_general.php:70 server_synchronize.php:427 server_synchronize.php:870 msgid "Create table" msgstr "Criar tabela" @@ -4435,31 +4491,31 @@ msgstr "" "campo de exibição, clique no ícone \"Escolher campo para exibição\", então " "clique no nome do campo apropriado." -#: pmd_pdf.php:62 +#: pmd_pdf.php:60 msgid "Page has been created" msgstr "A página foi criada" -#: pmd_pdf.php:64 +#: pmd_pdf.php:62 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:84 +#: pmd_pdf.php:82 msgid "Export/Import to scale" msgstr "Exportar/Importar para escala" -#: pmd_pdf.php:88 +#: pmd_pdf.php:86 msgid "recommended" msgstr "recomendado" -#: pmd_pdf.php:93 +#: pmd_pdf.php:91 msgid "to/from page" msgstr "página de/para" -#: querywindow.php:94 +#: querywindow.php:93 msgid "Import files" msgstr "Importar arquivos" -#: querywindow.php:105 +#: querywindow.php:104 msgid "All" msgstr "Todos" @@ -4505,66 +4561,66 @@ msgstr "Informação" msgid "Character Sets and Collations" msgstr "Conjuntos de caracteres e Collations" -#: server_databases.php:51 +#: server_databases.php:49 msgid "No databases selected." msgstr "Nenhum Banco de Dados selecionado." -#: server_databases.php:62 +#: server_databases.php:60 #, php-format msgid "%s databases have been dropped successfully." msgstr "Banco de Dados %s foi eliminado com sucesso!" -#: server_databases.php:87 +#: server_databases.php:85 msgid "Databases statistics" msgstr "Estatísticas do Banco de Dados" -#: server_databases.php:116 server_status.php:370 +#: server_databases.php:114 server_status.php:370 #: setup/lib/messages.inc.php:114 msgid "Tables" msgstr "Tabelas" -#: server_databases.php:194 server_replication.php:180 -#: server_replication.php:208 +#: server_databases.php:192 server_replication.php:179 +#: server_replication.php:207 msgid "Master replication" msgstr "" -#: server_databases.php:196 server_replication.php:247 +#: server_databases.php:194 server_replication.php:246 msgid "Slave replication" msgstr "" -#: server_databases.php:229 +#: server_databases.php:227 #, fuzzy msgid "Jump to database" msgstr "Sem bases" -#: server_databases.php:266 +#: server_databases.php:264 msgid "Not replicated" msgstr "" -#: server_databases.php:272 +#: server_databases.php:270 #, fuzzy #| msgid "Replication" msgid "Replicated" msgstr "Replicação" -#: server_databases.php:288 +#: server_databases.php:286 #, php-format msgid "Check privileges for database "%s"." msgstr "Verificar privilégios para a Banco de Dados "%s"." -#: server_databases.php:292 server_databases.php:293 +#: server_databases.php:290 server_databases.php:291 msgid "Check Privileges" msgstr "Verificar privilégios" -#: server_databases.php:357 server_databases.php:358 +#: server_databases.php:355 server_databases.php:356 msgid "Enable Statistics" msgstr "Habilitar estatísticas" -#: server_databases.php:361 server_databases.php:362 +#: server_databases.php:359 server_databases.php:360 msgid "Disable Statistics" msgstr "Disabilitar estatísticas" -#: server_databases.php:365 +#: server_databases.php:363 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -4572,122 +4628,122 @@ msgstr "" "Nota: Ativar as estatísticas pode causar um grande volume de tráfego de " "dados entre o servidor web e o servidor MySQL." -#: server_engines.php:48 +#: server_engines.php:47 msgid "Storage Engines" msgstr "Storage Engines" -#: server_export.php:20 +#: server_export.php:18 msgid "View dump (schema) of databases" msgstr "Ver dump (esquema) dos Bancos de Dados" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:23 server_privileges.php:265 msgid "Includes all privileges except GRANT." msgstr "Incluir todos os privilégios, exceto GRANT." -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:24 server_privileges.php:191 +#: server_privileges.php:514 msgid "Allows altering the structure of existing tables." msgstr "Permitir alterar a estrutura das tabelas existentes." -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:25 server_privileges.php:207 +#: server_privileges.php:520 msgid "Allows altering and dropping stored routines." msgstr "Permitir alterar e apagar stored routines." -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:26 server_privileges.php:183 +#: server_privileges.php:513 msgid "Allows creating new databases and tables." msgstr "Permitir criar novas tabelas e Banco de Dados." -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:27 server_privileges.php:206 +#: server_privileges.php:519 msgid "Allows creating stored routines." msgstr "Permitir criar stored routines." -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:513 msgid "Allows creating new tables." msgstr "Permitir criar novas tabelas." -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:29 server_privileges.php:194 +#: server_privileges.php:517 msgid "Allows creating temporary tables." msgstr "Permitir criar tabelas temporárias." -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:30 server_privileges.php:208 +#: server_privileges.php:553 msgid "Allows creating, dropping and renaming user accounts." msgstr "Permitir criar, apagar e renomear contas dos usuários." -#: server_privileges.php:32 server_privileges.php:199 -#: server_privileges.php:203 server_privileges.php:526 -#: server_privileges.php:530 +#: server_privileges.php:31 server_privileges.php:198 +#: server_privileges.php:202 server_privileges.php:525 +#: server_privileges.php:529 msgid "Allows creating new views." msgstr "Permitir criar novas visões." -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:32 server_privileges.php:182 +#: server_privileges.php:505 msgid "Allows deleting data." msgstr "Permitir apagar dados." -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:33 server_privileges.php:184 +#: server_privileges.php:516 msgid "Allows dropping databases and tables." msgstr "Permitir eliminar Banco de Dados e tabelas." -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:34 server_privileges.php:516 msgid "Allows dropping tables." msgstr "Permitir eliminar tabelas." -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:35 server_privileges.php:199 +#: server_privileges.php:533 msgid "Allows to set up events for the event scheduler" msgstr "Permitir iniciar eventos no cronograma de eventos" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:36 server_privileges.php:209 +#: server_privileges.php:521 msgid "Allows executing stored routines." msgstr "Permitir executar stored routines." -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:37 server_privileges.php:188 +#: server_privileges.php:508 msgid "Allows importing data from and exporting data into files." msgstr "Permitir importar dados e exportar dados em arquivos." -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:38 server_privileges.php:539 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Permitir adicionar usuários e privilégios sem recarregar a tabela de " "privilégios." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:515 msgid "Allows creating and dropping indexes." msgstr "Permitir criar e eliminar índices." -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:40 server_privileges.php:180 +#: server_privileges.php:441 server_privileges.php:503 msgid "Allows inserting and replacing data." msgstr "Permitir inserir e substituir dados." -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:41 server_privileges.php:195 +#: server_privileges.php:548 msgid "Allows locking tables for the current thread." msgstr "Permitir bloquear tabelas para a processo atual." -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:42 server_privileges.php:645 +#: server_privileges.php:647 msgid "Limits the number of new connections the user may open per hour." msgstr "Limitar o numero de novas conexões que o usuário pode abrir por hora." -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:43 server_privileges.php:633 +#: server_privileges.php:635 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Limitar o número de consultas que podem ser enviadas ao servidor por hora." -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:44 server_privileges.php:639 +#: server_privileges.php:641 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -4695,60 +4751,60 @@ msgstr "" "Limitar o número de comandos que alteram Bancos de Dados ou tabelas que o " "usuário pode executar por hora." -#: server_privileges.php:46 server_privileges.php:652 -#: server_privileges.php:654 +#: server_privileges.php:45 server_privileges.php:651 +#: server_privileges.php:653 msgid "Limits the number of simultaneous connections the user may have." msgstr "Limitar o número de conexões simultâneas que o usuário pode ter." -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:46 server_privileges.php:187 +#: server_privileges.php:543 msgid "Allows viewing processes of all users" msgstr "Permitir visualizar processos de todos os usuários" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:47 server_privileges.php:189 +#: server_privileges.php:447 server_privileges.php:549 msgid "Has no effect in this MySQL version." msgstr "Sem efeitos nesta versão do MySQL." -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:48 server_privileges.php:185 +#: server_privileges.php:544 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Permitir recarregar configurações do servidor e descarregar o cache do " "servidor." -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:197 +#: server_privileges.php:551 msgid "Allows the user to ask where the slaves / masters are." msgstr "Permitir que o usuário pergunte onde estão os escravos / mestres." -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:50 server_privileges.php:196 +#: server_privileges.php:552 msgid "Needed for the replication slaves." msgstr "Precisar dos escravos de replicação." -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:51 server_privileges.php:179 +#: server_privileges.php:438 server_privileges.php:502 msgid "Allows reading data." msgstr "Permitir leitura dos dados." -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:52 server_privileges.php:192 +#: server_privileges.php:546 msgid "Gives access to the complete list of databases." msgstr "Permitir acesso completo à lista de Bancos de Dados." -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:53 server_privileges.php:203 +#: server_privileges.php:205 server_privileges.php:518 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Permitir executar consultas SHOW CREATE VIEW." -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:54 server_privileges.php:186 +#: server_privileges.php:545 msgid "Allows shutting down the server." msgstr "Permitir desligar o servidor." -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:55 server_privileges.php:193 +#: server_privileges.php:542 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -4758,156 +4814,156 @@ msgstr "" "para muitas operações administrativas, como setar variáveis globais e matar " "processos de outros usuários." -#: server_privileges.php:57 server_privileges.php:201 -#: server_privileges.php:535 +#: server_privileges.php:56 server_privileges.php:200 +#: server_privileges.php:534 msgid "Allows creating and dropping triggers" msgstr "Permitir criar e e largar em cadeia" -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:57 server_privileges.php:181 +#: server_privileges.php:444 server_privileges.php:504 msgid "Allows changing data." msgstr "Permitir modificar dados." -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:58 server_privileges.php:259 msgid "No privileges." msgstr "Sem privilégios." -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:301 server_privileges.php:302 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Nenhum" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1710 server_privileges.php:1716 +#: server_privileges.php:430 server_privileges.php:565 +#: server_privileges.php:1714 server_privileges.php:1720 msgid "Table-specific privileges" msgstr "Privilégios específicos da tabela" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1532 +#: server_privileges.php:431 server_privileges.php:573 +#: server_privileges.php:1536 msgid " Note: MySQL privilege names are expressed in English " msgstr " Nota: nomes de privilégios do MySQL são expressos em inglês " -#: server_privileges.php:563 server_privileges.php:1531 +#: server_privileges.php:562 server_privileges.php:1535 msgid "Global privileges" msgstr "Privilégios globais" -#: server_privileges.php:565 server_privileges.php:1710 +#: server_privileges.php:564 server_privileges.php:1714 msgid "Database-specific privileges" msgstr "Privilégios específicos do Banco de Dados" -#: server_privileges.php:610 +#: server_privileges.php:609 msgid "Administration" msgstr "Administração" -#: server_privileges.php:630 +#: server_privileges.php:629 msgid "Resource limits" msgstr "Limite dos recursos" -#: server_privileges.php:631 +#: server_privileges.php:630 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Nota: Ajustar essa opção para 0 (zero) remove os limites." -#: server_privileges.php:708 +#: server_privileges.php:707 msgid "Login Information" msgstr "Informação de login" -#: server_privileges.php:802 +#: server_privileges.php:801 msgid "Do not change the password" msgstr "Não mudar a senha" -#: server_privileges.php:835 server_privileges.php:2197 +#: server_privileges.php:834 server_privileges.php:2201 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Nenhum usuário(s) encontrado." -#: server_privileges.php:879 +#: server_privileges.php:878 #, php-format msgid "The user %s already exists!" msgstr "O usuário %s já existe!" -#: server_privileges.php:962 +#: server_privileges.php:961 msgid "You have added a new user." msgstr "Adicionado usuário" -#: server_privileges.php:1183 +#: server_privileges.php:1184 #, php-format msgid "You have updated the privileges for %s." msgstr "Você mudou os priviléios para %s." -#: server_privileges.php:1207 +#: server_privileges.php:1208 #, php-format msgid "You have revoked the privileges for %s" msgstr "Você revogou os privilégios para %s" -#: server_privileges.php:1243 +#: server_privileges.php:1244 #, php-format msgid "The password for %s was changed successfully." msgstr "A senha para %s foi modificada com sucesso." -#: server_privileges.php:1263 +#: server_privileges.php:1264 #, php-format msgid "Deleting %s" msgstr "Eliminando %s" -#: server_privileges.php:1274 +#: server_privileges.php:1275 msgid "No users selected for deleting!" msgstr "Nenhum usuário selecionado para exclusão!" -#: server_privileges.php:1277 +#: server_privileges.php:1278 msgid "Reloading the privileges" msgstr "Recarregando os privilégios" -#: server_privileges.php:1292 +#: server_privileges.php:1296 msgid "The selected users have been deleted successfully." msgstr "Os usuários selecionados foram apagados com sucesso." -#: server_privileges.php:1327 +#: server_privileges.php:1331 msgid "The privileges were reloaded successfully." msgstr "Os privilégios foram recarregados com sucesso." -#: server_privileges.php:1355 server_privileges.php:1641 +#: server_privileges.php:1359 server_privileges.php:1645 msgid "Edit Privileges" msgstr "Editar Privilégios" -#: server_privileges.php:1364 +#: server_privileges.php:1368 msgid "Revoke" msgstr "Revogar" -#: server_privileges.php:1396 +#: server_privileges.php:1400 msgid "User overview" msgstr "Avaliação dos usuários" -#: server_privileges.php:1533 server_privileges.php:1715 -#: server_privileges.php:2064 +#: server_privileges.php:1537 server_privileges.php:1719 +#: server_privileges.php:2068 msgid "Grant" msgstr "Conceder/Grant" -#: server_privileges.php:1552 server_privileges.php:2154 +#: server_privileges.php:1556 server_privileges.php:2158 msgid "Any" msgstr "Qualquer" -#: server_privileges.php:1601 server_privileges.php:1625 -#: server_privileges.php:2019 server_privileges.php:2208 +#: server_privileges.php:1605 server_privileges.php:1629 +#: server_privileges.php:2023 server_privileges.php:2212 msgid "Add a new User" msgstr "Adicionar novo usuário" -#: server_privileges.php:1606 +#: server_privileges.php:1610 msgid "Remove selected users" msgstr "Remover os usuários selecionados" -#: server_privileges.php:1609 +#: server_privileges.php:1613 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Revogar todos os privilégios ativos dos usuarios e depois apagar eles." -#: server_privileges.php:1610 server_privileges.php:1611 -#: server_privileges.php:1612 +#: server_privileges.php:1614 server_privileges.php:1615 +#: server_privileges.php:1616 msgid "Drop the databases that have the same names as the users." msgstr "Eliminar o Banco de Dados que possui o mesmo nome dos usuários." -#: server_privileges.php:1628 +#: server_privileges.php:1632 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4920,50 +4976,50 @@ msgstr "" "privilégios que o servidor usa se alterações manuais forem feitas nele. " "Neste caso, você deve usar %sRELOAD PRIVILEGES%s antes de continuar.." -#: server_privileges.php:1676 +#: server_privileges.php:1680 msgid "The selected user was not found in the privilege table." msgstr "O usuário selecionado não foi encontrado na tabela de privilégios." -#: server_privileges.php:1716 +#: server_privileges.php:1720 msgid "Column-specific privileges" msgstr "Privilégios específicos da coluna" -#: server_privileges.php:1917 +#: server_privileges.php:1921 msgid "Add privileges on the following database" msgstr "Adicionar privilégios nas seguintes Banco de Dados" -#: server_privileges.php:1935 +#: server_privileges.php:1939 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "Coringas _ e % precisam ser precedidos com uma \\ para serem usados " "literalmente" -#: server_privileges.php:1938 +#: server_privileges.php:1942 msgid "Add privileges on the following table" msgstr "Adicionar privilégios nas seguintes tabelas" -#: server_privileges.php:1995 +#: server_privileges.php:1999 msgid "Change Login Information / Copy User" msgstr "Mudar informações de login / Copiar usuário" -#: server_privileges.php:1998 +#: server_privileges.php:2002 msgid "Create a new user with the same privileges and ..." msgstr "Criar um novo usuário com os mesmos privilégios e ..." -#: server_privileges.php:2000 +#: server_privileges.php:2004 msgid "... keep the old one." msgstr "... manter o antigo." -#: server_privileges.php:2001 +#: server_privileges.php:2005 msgid " ... delete the old one from the user tables." msgstr " ... apagar o antigo da tabela de usuários." -#: server_privileges.php:2002 +#: server_privileges.php:2006 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr " ... revogar todos privilégios do usuário antigo e depois apagar ele." -#: server_privileges.php:2003 +#: server_privileges.php:2007 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -4971,44 +5027,44 @@ msgstr "" " ... apagar o antigo da tabela de usuários e depois recarregar os " "privilégios." -#: server_privileges.php:2025 +#: server_privileges.php:2029 msgid "Database for user" msgstr "Banco de Dados para usuário" -#: server_privileges.php:2029 +#: server_privileges.php:2033 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Nenhum" -#: server_privileges.php:2030 +#: server_privileges.php:2034 msgid "Create database with same name and grant all privileges" msgstr "Criar Banco de Dados com o mesmo nome e conceder todos os privilégios" -#: server_privileges.php:2031 +#: server_privileges.php:2035 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Conceder todos os privilégios no nome coringa (nome_do_usuário_%)" -#: server_privileges.php:2034 +#: server_privileges.php:2038 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Conceder todos os privilégios no banco de dados "%s"" -#: server_privileges.php:2057 +#: server_privileges.php:2061 #, php-format msgid "Users having access to "%s"" msgstr "Usuários que têm acesso à "%s"" -#: server_privileges.php:2165 +#: server_privileges.php:2169 msgid "global" msgstr "global" -#: server_privileges.php:2167 +#: server_privileges.php:2171 msgid "database-specific" msgstr "Específico do Banco de Dados" -#: server_privileges.php:2169 +#: server_privileges.php:2173 msgid "wildcard" msgstr "coringa" @@ -5029,54 +5085,54 @@ msgstr "" msgid "ID" msgstr "ID" -#: server_replication.php:50 +#: server_replication.php:49 msgid "Unknown error" msgstr "" -#: server_replication.php:57 +#: server_replication.php:56 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:64 +#: server_replication.php:63 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:70 +#: server_replication.php:69 msgid "Unable to change master" msgstr "" -#: server_replication.php:73 +#: server_replication.php:72 #, php-format msgid "Master server changed succesfully to %s" msgstr "" -#: server_replication.php:181 +#: server_replication.php:180 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:183 server_status.php:391 +#: server_replication.php:182 server_status.php:391 #, fuzzy msgid "Show master status" msgstr "Exibir status dos escravos" -#: server_replication.php:186 +#: server_replication.php:185 msgid "Show connected slaves" msgstr "" -#: server_replication.php:209 +#: server_replication.php:208 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:216 +#: server_replication.php:215 msgid "Master configuration" msgstr "" -#: server_replication.php:217 +#: server_replication.php:216 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -5085,111 +5141,111 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:220 +#: server_replication.php:219 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:221 +#: server_replication.php:220 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:224 +#: server_replication.php:223 #, fuzzy msgid "Please select databases:" msgstr "Selecionar um Banco de Dados" -#: server_replication.php:227 +#: server_replication.php:226 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: server_replication.php:229 +#: server_replication.php:228 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: server_replication.php:292 +#: server_replication.php:291 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:295 +#: server_replication.php:294 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:304 +#: server_replication.php:303 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:307 +#: server_replication.php:306 msgid "See slave status table" msgstr "" -#: server_replication.php:310 +#: server_replication.php:309 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:321 +#: server_replication.php:320 msgid "Control slave:" msgstr "" -#: server_replication.php:324 +#: server_replication.php:323 #, fuzzy msgid "Full start" msgstr "Texto completo" -#: server_replication.php:324 +#: server_replication.php:323 #, fuzzy msgid "Full stop" msgstr "Texto completo" -#: server_replication.php:325 +#: server_replication.php:324 msgid "Reset slave" msgstr "" -#: server_replication.php:326 +#: server_replication.php:325 #, php-format msgid "SQL Thread %s only" msgstr "" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 #, fuzzy msgid "Start" msgstr "Sab" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 msgid "Stop" msgstr "" -#: server_replication.php:327 +#: server_replication.php:326 #, php-format msgid "IO Thread %s only" msgstr "" -#: server_replication.php:331 +#: server_replication.php:330 msgid "Error management:" msgstr "" -#: server_replication.php:333 +#: server_replication.php:332 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:335 +#: server_replication.php:334 msgid "Skip current error" msgstr "" -#: server_replication.php:336 +#: server_replication.php:335 msgid "Skip next" msgstr "" -#: server_replication.php:339 +#: server_replication.php:338 msgid "errors." msgstr "" -#: server_replication.php:354 +#: server_replication.php:353 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -6019,115 +6075,115 @@ msgstr "Tipo de consulta" msgid "Replication status" msgstr "Replicação" -#: server_synchronize.php:93 +#: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:96 +#: server_synchronize.php:95 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:121 server_synchronize.php:124 tbl_create.php:77 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:264 +#: server_synchronize.php:263 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:271 +#: server_synchronize.php:270 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:399 server_synchronize.php:838 +#: server_synchronize.php:398 server_synchronize.php:837 msgid "not present" msgstr "" -#: server_synchronize.php:423 server_synchronize.php:866 +#: server_synchronize.php:422 server_synchronize.php:865 #, fuzzy msgid "Structure Difference" msgstr "Estrutura para visualizar" -#: server_synchronize.php:424 server_synchronize.php:867 +#: server_synchronize.php:423 server_synchronize.php:866 #, fuzzy msgid "Data Difference" msgstr "Estrutura para visualizar" -#: server_synchronize.php:429 server_synchronize.php:872 +#: server_synchronize.php:428 server_synchronize.php:871 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:430 server_synchronize.php:873 +#: server_synchronize.php:429 server_synchronize.php:872 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:431 server_synchronize.php:874 +#: server_synchronize.php:430 server_synchronize.php:873 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:432 server_synchronize.php:875 +#: server_synchronize.php:431 server_synchronize.php:874 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:433 server_synchronize.php:876 +#: server_synchronize.php:432 server_synchronize.php:875 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:434 server_synchronize.php:877 +#: server_synchronize.php:433 server_synchronize.php:876 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:435 server_synchronize.php:878 +#: server_synchronize.php:434 server_synchronize.php:877 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:445 server_synchronize.php:889 +#: server_synchronize.php:444 server_synchronize.php:888 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:448 server_synchronize.php:893 +#: server_synchronize.php:447 server_synchronize.php:892 msgid "Apply Selected Changes" msgstr "" -#: server_synchronize.php:450 server_synchronize.php:895 +#: server_synchronize.php:449 server_synchronize.php:894 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:463 +#: server_synchronize.php:462 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:941 +#: server_synchronize.php:940 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:1002 +#: server_synchronize.php:1001 msgid "The following queries have been executed:" msgstr "" -#: server_synchronize.php:1121 +#: server_synchronize.php:1120 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1122 +#: server_synchronize.php:1121 #, fuzzy #| msgid "max. concurrent connections" msgid "Current connection" msgstr "máx. de conexões concorrentes" -#: server_synchronize.php:1151 +#: server_synchronize.php:1150 #, fuzzy, php-format #| msgid "Configuration" msgid "Configuration: %s" msgstr "Configuração" -#: server_synchronize.php:1166 +#: server_synchronize.php:1165 msgid "Socket" msgstr "" -#: server_synchronize.php:1212 +#: server_synchronize.php:1211 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -6692,8 +6748,8 @@ msgstr "" #: setup/lib/messages.inc.php:128 msgid "" "Configure phpMyAdmin database to gain access to additional features, see " -"[a@../Documentation.html#linked-tables]linked-tables infrastructure[/a] in " -"documentation" +"[a@../Documentation.html#linked-tables]phpMyAdmin configuration storage[/a] " +"in documentation" msgstr "" #: setup/lib/messages.inc.php:129 setup/lib/messages.inc.php:290 @@ -7770,117 +7826,117 @@ msgstr "" msgid "ZIP" msgstr "" -#: sql.php:495 tbl_replace.php:385 +#: sql.php:494 tbl_replace.php:384 #, php-format msgid "Inserted row id: %1$d" msgstr "Id da linha inserida: %1$d" -#: sql.php:512 +#: sql.php:511 msgid "Showing as PHP code" msgstr "Exibindo como código PHP" -#: sql.php:515 tbl_replace.php:359 +#: sql.php:514 tbl_replace.php:358 msgid "Showing SQL query" msgstr "Exibindo consulta SQL" -#: sql.php:517 +#: sql.php:516 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Validar SQL" -#: sql.php:638 +#: sql.php:631 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemas com o índice da tabela `%s`" -#: sql.php:670 +#: sql.php:663 msgid "Label" msgstr "Nome" -#: tbl_addfield.php:188 tbl_alter.php:102 tbl_indexes.php:97 +#: tbl_addfield.php:185 tbl_alter.php:100 tbl_indexes.php:97 #, php-format msgid "Table %1$s has been altered successfully" msgstr "A tabela %1$s foi alterada com sucesso" -#: tbl_change.php:250 tbl_select.php:26 tbl_select.php:27 tbl_select.php:30 -#: tbl_select.php:33 +#: tbl_change.php:245 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_select.php:32 msgid "Browse foreign values" msgstr "Visualizar valores estrangeiros" -#: tbl_change.php:280 tbl_change.php:318 +#: tbl_change.php:275 tbl_change.php:313 msgid "Function" msgstr "Funções" -#: tbl_change.php:300 tbl_indexes.php:199 tbl_indexes.php:224 +#: tbl_change.php:295 tbl_indexes.php:198 tbl_indexes.php:223 msgid "Ignore" msgstr "Ignorar" -#: tbl_change.php:725 +#: tbl_change.php:720 #, fuzzy #| msgid " Because of its length,
                            this field might not be editable " msgid " Because of its length,
                            this column might not be editable " msgstr " Por causa da sua largura,
                            esse campo pode não ser editável " -#: tbl_change.php:884 +#: tbl_change.php:835 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:890 +#: tbl_change.php:841 msgid "Binary - do not edit" msgstr " Binário - não edite " -#: tbl_change.php:983 +#: tbl_change.php:889 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:1128 +#: tbl_change.php:1026 msgid "Insert as new row" msgstr "Inserir como um novo registro" -#: tbl_change.php:1129 +#: tbl_change.php:1027 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:1130 +#: tbl_change.php:1028 #, fuzzy msgid "Show insert query" msgstr "Exibindo consulta SQL" -#: tbl_change.php:1145 +#: tbl_change.php:1043 msgid "Go back to previous page" msgstr "Retornar" -#: tbl_change.php:1146 +#: tbl_change.php:1044 msgid "Insert another new row" msgstr "Inserir novo registro" -#: tbl_change.php:1150 +#: tbl_change.php:1048 msgid "Go back to this page" msgstr "Voltar para esta página" -#: tbl_change.php:1158 +#: tbl_change.php:1056 msgid "Edit next row" msgstr "Editar próximo registro" -#: tbl_change.php:1169 +#: tbl_change.php:1067 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Usar a tecla TAB para se mover de valor em valor, ou CTRL+setas para mover " "em qualquer direção" -#: tbl_change.php:1207 +#: tbl_change.php:1105 #, php-format msgid "Restart insertion with %s rows" msgstr "Reiniciar inserção com %s registros" -#: tbl_create.php:57 +#: tbl_create.php:55 #, php-format msgid "Table %s already exists!" msgstr "Tabela %s já existe!" -#: tbl_create.php:244 +#: tbl_create.php:241 #, php-format msgid "Table %1$s has been created." msgstr "A tabela %1$s foi criada." @@ -7901,202 +7957,202 @@ msgstr "Não foi possível renomear o índice para \"PRIMARY\"!" msgid "No index parts defined!" msgstr "Nenhuma parte de índice definida!" -#: tbl_indexes.php:159 +#: tbl_indexes.php:158 msgid "Create a new index" msgstr "Criar um novo índice" -#: tbl_indexes.php:161 +#: tbl_indexes.php:160 msgid "Modify an index" msgstr "Modificar um índice" -#: tbl_indexes.php:167 +#: tbl_indexes.php:166 msgid "Index name:" msgstr "Nome do índice:" -#: tbl_indexes.php:173 +#: tbl_indexes.php:172 msgid "Index type:" msgstr "Tipo de índice:" -#: tbl_indexes.php:183 +#: tbl_indexes.php:182 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" "(\"PRIMARY\" precisa ser o nome de e apenas da chave " "primária!)" -#: tbl_indexes.php:250 +#: tbl_indexes.php:249 #, php-format msgid "Add to index  %s column(s)" msgstr "Adicionar ao índice  %s coluna(s)" -#: tbl_indexes.php:255 tbl_structure.php:588 tbl_structure.php:599 +#: tbl_indexes.php:254 tbl_structure.php:586 tbl_structure.php:597 msgid "Column count has to be larger than zero." msgstr "Contador da coluna deve ser maior que zero." -#: tbl_move_copy.php:45 +#: tbl_move_copy.php:44 msgid "Can't move table to same one!" msgstr "Não pode mover a tabela para ela mesma!" -#: tbl_move_copy.php:47 +#: tbl_move_copy.php:46 msgid "Can't copy table to same one!" msgstr "Não pode copiar a tabela para ela mesma!" -#: tbl_move_copy.php:55 +#: tbl_move_copy.php:54 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabela %s foi movida para %s." -#: tbl_move_copy.php:57 +#: tbl_move_copy.php:56 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabela %s copiada para %s." -#: tbl_move_copy.php:81 +#: tbl_move_copy.php:80 msgid "The table name is empty!" msgstr "O Nome da Tabela está vazio!" -#: tbl_operations.php:248 +#: tbl_operations.php:246 msgid "Alter table order by" msgstr "Alterar tabela ordenada por" -#: tbl_operations.php:257 +#: tbl_operations.php:255 msgid "(singly)" msgstr "(singularmente)" -#: tbl_operations.php:277 +#: tbl_operations.php:275 msgid "Move table to (database.table):" msgstr "Mover tabela para (Banco de Dados.tabela):" -#: tbl_operations.php:335 +#: tbl_operations.php:333 msgid "Table options" msgstr "Opções da tabela" -#: tbl_operations.php:339 +#: tbl_operations.php:337 msgid "Rename table to" msgstr "Renomear a tabela para " -#: tbl_operations.php:510 +#: tbl_operations.php:508 msgid "Copy table to (database.table):" msgstr "Copiar tabela para (Banco de Dados.tabela):" -#: tbl_operations.php:557 +#: tbl_operations.php:555 msgid "Switch to copied table" msgstr "Mudar para a tabela copiada" -#: tbl_operations.php:569 +#: tbl_operations.php:567 msgid "Table maintenance" msgstr "Tabela de Manutenção" -#: tbl_operations.php:590 +#: tbl_operations.php:588 msgid "Defragment table" msgstr "Desfragmentar tabela" -#: tbl_operations.php:629 +#: tbl_operations.php:627 #, php-format msgid "Table %s has been flushed" msgstr "Tabela %s foi limpa" -#: tbl_operations.php:635 +#: tbl_operations.php:633 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Limpar a tabela (\"LIMPAR\")" -#: tbl_operations.php:650 +#: tbl_operations.php:648 msgid "Partition maintenance" msgstr "Manutenção da partição" -#: tbl_operations.php:658 +#: tbl_operations.php:656 #, php-format msgid "Partition %s" msgstr "Partição %s" -#: tbl_operations.php:661 +#: tbl_operations.php:659 msgid "Analyze" msgstr "Analizar" -#: tbl_operations.php:662 +#: tbl_operations.php:660 msgid "Check" msgstr "Checar" -#: tbl_operations.php:663 +#: tbl_operations.php:661 msgid "Optimize" msgstr "Otimizar" -#: tbl_operations.php:664 +#: tbl_operations.php:662 msgid "Rebuild" msgstr "Reconstruir" -#: tbl_operations.php:665 +#: tbl_operations.php:663 msgid "Repair" msgstr "Reparar" -#: tbl_operations.php:677 +#: tbl_operations.php:675 msgid "Remove partitioning" msgstr "Remover partição" -#: tbl_operations.php:703 +#: tbl_operations.php:701 msgid "Check referential integrity:" msgstr "Verificar integridade referencial:" -#: tbl_printview.php:73 +#: tbl_printview.php:72 msgid "Show tables" msgstr "Mostrar tabelas" -#: tbl_printview.php:308 tbl_structure.php:655 +#: tbl_printview.php:307 tbl_structure.php:653 msgid "Space usage" msgstr "Uso do espaço" -#: tbl_printview.php:312 tbl_structure.php:659 +#: tbl_printview.php:311 tbl_structure.php:657 msgid "Usage" msgstr "Uso" -#: tbl_printview.php:339 tbl_structure.php:686 +#: tbl_printview.php:338 tbl_structure.php:684 msgid "Effective" msgstr "Efetivo" -#: tbl_printview.php:364 tbl_structure.php:724 +#: tbl_printview.php:363 tbl_structure.php:722 msgid "Row Statistics" msgstr "Estatísticas do registros" -#: tbl_printview.php:367 tbl_structure.php:727 +#: tbl_printview.php:366 tbl_structure.php:725 msgid "Statements" msgstr "Comandos" -#: tbl_printview.php:378 tbl_structure.php:739 +#: tbl_printview.php:377 tbl_structure.php:737 msgid "static" msgstr "" -#: tbl_printview.php:380 tbl_structure.php:741 +#: tbl_printview.php:379 tbl_structure.php:739 msgid "dynamic" msgstr "dinâmico" -#: tbl_printview.php:402 tbl_structure.php:784 +#: tbl_printview.php:401 tbl_structure.php:782 msgid "Row length" msgstr "Tamanho do registro" -#: tbl_printview.php:412 tbl_structure.php:792 +#: tbl_printview.php:411 tbl_structure.php:790 msgid " Row size " msgstr " Tamanho do registro " -#: tbl_relation.php:278 +#: tbl_relation.php:276 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "Erro ao criar chave externa no %1$s (check data types)" -#: tbl_relation.php:404 +#: tbl_relation.php:402 #, fuzzy #| msgid "Internal relations" msgid "Internal relation" msgstr "Relações internas" -#: tbl_relation.php:406 +#: tbl_relation.php:404 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: tbl_relation.php:412 +#: tbl_relation.php:410 msgid "Foreign key constraint" msgstr "" @@ -8104,232 +8160,232 @@ msgstr "" msgid "No rows selected" msgstr "Nenhum registro selecionado" -#: tbl_select.php:130 +#: tbl_select.php:129 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Faça uma \"consulta por exemplo\" (coringa: \"%\")" -#: tbl_select.php:136 +#: tbl_select.php:135 msgid "Operator" msgstr "Operador" -#: tbl_select.php:267 +#: tbl_select.php:266 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "Selecionar os campos (no mínimo 1)" -#: tbl_select.php:285 +#: tbl_select.php:284 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Condição de Pesquisa (complemento da cláusula \"onde\"):" -#: tbl_select.php:292 +#: tbl_select.php:291 msgid "Number of rows per page" msgstr "registros por página" -#: tbl_select.php:298 +#: tbl_select.php:297 msgid "Display order:" msgstr "Ordenado por:" -#: tbl_structure.php:160 +#: tbl_structure.php:159 msgid "Browse distinct values" msgstr "Navegador distingue valores" -#: tbl_structure.php:360 +#: tbl_structure.php:358 #, fuzzy #| msgid "None" msgctxt "None for default" msgid "None" msgstr "Nenhum" -#: tbl_structure.php:373 +#: tbl_structure.php:371 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Column %s has been dropped" msgstr "Tabela %s foi eliminada" -#: tbl_structure.php:384 +#: tbl_structure.php:382 #, php-format msgid "A primary key has been added on %s" msgstr "Uma chave primária foi adicionada a %s" -#: tbl_structure.php:399 tbl_structure.php:413 tbl_structure.php:427 +#: tbl_structure.php:397 tbl_structure.php:411 tbl_structure.php:425 #, php-format msgid "An index has been added on %s" msgstr "Um índice foi adicionado a %s" -#: tbl_structure.php:505 tbl_structure.php:507 +#: tbl_structure.php:503 tbl_structure.php:505 msgid "Relation view" msgstr "Ver relações" -#: tbl_structure.php:514 tbl_structure.php:516 +#: tbl_structure.php:512 tbl_structure.php:514 msgid "Propose table structure" msgstr "Propor estrutura da tabela" -#: tbl_structure.php:539 +#: tbl_structure.php:537 #, fuzzy #| msgid "Add %s field(s)" msgid "Add column" msgstr "Adicionar %s campo(s)" -#: tbl_structure.php:553 +#: tbl_structure.php:551 msgid "At End of Table" msgstr "No final da tabela" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At Beginning of Table" msgstr "No início da tabela" -#: tbl_structure.php:555 +#: tbl_structure.php:553 #, php-format msgid "After %s" msgstr "Depois %s" -#: tbl_structure.php:593 +#: tbl_structure.php:591 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "Criar um índice em %s colunas" -#: tbl_structure.php:755 +#: tbl_structure.php:753 msgid "partitioned" msgstr "Particionado" -#: tbl_tracking.php:113 +#: tbl_tracking.php:109 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:186 +#: tbl_tracking.php:182 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "" -#: tbl_tracking.php:194 +#: tbl_tracking.php:190 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "" -#: tbl_tracking.php:202 +#: tbl_tracking.php:198 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "" -#: tbl_tracking.php:212 +#: tbl_tracking.php:208 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:219 +#: tbl_tracking.php:215 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:220 +#: tbl_tracking.php:216 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:229 +#: tbl_tracking.php:225 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:250 tbl_tracking.php:378 +#: tbl_tracking.php:245 tbl_tracking.php:373 msgid "Close" msgstr "Fechar" -#: tbl_tracking.php:261 +#: tbl_tracking.php:256 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:380 +#: tbl_tracking.php:375 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:396 tbl_tracking.php:503 +#: tbl_tracking.php:391 tbl_tracking.php:498 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "" -#: tbl_tracking.php:409 tbl_tracking.php:460 +#: tbl_tracking.php:404 tbl_tracking.php:455 #, fuzzy msgid "Date" msgstr "Dados" -#: tbl_tracking.php:410 tbl_tracking.php:461 +#: tbl_tracking.php:405 tbl_tracking.php:456 #, fuzzy msgid "Username" msgstr "Usuário:" -#: tbl_tracking.php:411 +#: tbl_tracking.php:406 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:462 +#: tbl_tracking.php:457 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:506 +#: tbl_tracking.php:501 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:507 +#: tbl_tracking.php:502 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "This option will replace your table and contained data." msgstr "Esta opção irá substituir sua tabela e os dados nela contidos." -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:520 +#: tbl_tracking.php:515 #, fuzzy, php-format msgid "Export as %s" msgstr "Tipo de exportação" -#: tbl_tracking.php:560 +#: tbl_tracking.php:555 msgid "Show versions" msgstr "Exibir versões" -#: tbl_tracking.php:592 +#: tbl_tracking.php:587 #, fuzzy msgid "Version" msgstr "Pérsa" -#: tbl_tracking.php:639 +#: tbl_tracking.php:634 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "" -#: tbl_tracking.php:641 +#: tbl_tracking.php:636 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:652 +#: tbl_tracking.php:647 #, php-format msgid "Activate tracking for %s.%s" msgstr "" -#: tbl_tracking.php:654 +#: tbl_tracking.php:649 msgid "Activate now" msgstr "Ativar agora" -#: tbl_tracking.php:667 +#: tbl_tracking.php:662 #, php-format msgid "Create version %s of %s.%s" msgstr "Criar versão %s de %s.%s" -#: tbl_tracking.php:671 +#: tbl_tracking.php:666 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:679 +#: tbl_tracking.php:674 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:687 +#: tbl_tracking.php:682 #, fuzzy msgid "Create version" msgstr "Criar relacionamento" @@ -8379,11 +8435,35 @@ msgstr "A configuração foi atualizada." msgid "VIEW name" msgstr "Nome da VISÃO" -#: view_operations.php:92 +#: view_operations.php:91 #, fuzzy msgid "Rename view to" msgstr "Renomear a tabela para " +#, fuzzy +#~| msgid "Enabled" +#~ msgctxt "BLOB repository" +#~ msgid "Enabled" +#~ msgstr "Habilitado" + +#~ msgid "Disable" +#~ msgstr "Desabilitar" + +#, fuzzy +#~| msgid "Repair" +#~ msgctxt "BLOB repository" +#~ msgid "Repair" +#~ msgstr "Reparar" + +#, fuzzy +#~| msgid "Disabled" +#~ msgctxt "BLOB repository" +#~ msgid "Disabled" +#~ msgstr "Desabilitado" + +#~ msgid "Enable" +#~ msgstr "Habilitar" + #~ msgid "" #~ "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " #~ "extension. Please check your PHP configuration." diff --git a/po/ro.po b/po/ro.po index 28650a8be..a275df29b 100644 --- a/po/ro.po +++ b/po/ro.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-21 13:53+0200\n" +"POT-Creation-Date: 2010-07-26 17:18+0200\n" "PO-Revision-Date: 2010-07-22 02:28+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: romanian \n" @@ -15,19 +15,19 @@ msgstr "" "20)) ? 1 : 2);;\n" "X-Generator: Pootle 2.0.1\n" -#: browse_foreigners.php:37 browse_foreigners.php:58 -#: libraries/display_tbl.lib.php:416 server_privileges.php:1506 +#: browse_foreigners.php:36 browse_foreigners.php:57 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1510 msgid "Show all" msgstr "Arată toate" -#: browse_foreigners.php:81 libraries/common.lib.php:2313 -#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:393 -#: libraries/export/pdf.php:146 pdf_schema.php:282 pdf_schema.php:1122 -#: pdf_schema.php:1138 +#: browse_foreigners.php:80 libraries/common.lib.php:2318 +#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:392 +#: libraries/export/pdf.php:146 pdf_schema.php:281 pdf_schema.php:1121 +#: pdf_schema.php:1137 msgid "Page number:" msgstr "Numărul paginii:" -#: browse_foreigners.php:131 +#: browse_foreigners.php:130 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -37,139 +37,153 @@ msgstr "" "închisă, sau fereastra-părinte blochează ferestrele din cauza securității " "sistemului." -#: browse_foreigners.php:149 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2829 -#: libraries/common.lib.php:2836 libraries/db_links.inc.php:74 -#: libraries/tbl_links.inc.php:62 +#: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 +#: db_structure.php:89 db_structure.php:91 db_structure.php:102 +#: db_structure.php:104 libraries/common.lib.php:2834 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Caută" -#: browse_foreigners.php:152 db_operations.php:384 db_operations.php:428 -#: db_operations.php:498 db_operations.php:608 db_search.php:344 -#: db_structure.php:566 js/messages.php:48 libraries/Config.class.php:1043 -#: libraries/Theme_Manager.class.php:310 +#: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 +#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 +#: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 -#: libraries/common.lib.php:1340 libraries/common.lib.php:2289 +#: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 -#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:275 -#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:531 -#: libraries/display_tbl.lib.php:613 libraries/replication_gui.lib.php:75 +#: libraries/display_export.lib.php:269 libraries/display_import.lib.php:275 +#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 +#: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 #: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:781 -#: main.php:127 navigation.php:231 pdf_pages.php:291 pdf_pages.php:327 -#: pdf_pages.php:529 pmd_pdf.php:115 server_binlog.php:128 -#: server_privileges.php:664 server_privileges.php:1616 -#: server_privileges.php:1963 server_privileges.php:2010 -#: server_privileges.php:2049 server_replication.php:234 -#: server_replication.php:317 server_replication.php:340 -#: server_synchronize.php:1208 tbl_change.php:328 tbl_change.php:1172 -#: tbl_change.php:1209 tbl_indexes.php:253 tbl_operations.php:264 -#: tbl_operations.php:301 tbl_operations.php:498 tbl_operations.php:560 -#: tbl_operations.php:680 tbl_select.php:324 tbl_structure.php:561 -#: tbl_structure.php:596 tbl_tracking.php:394 tbl_tracking.php:511 -#: view_create.php:181 view_operations.php:100 +#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 +#: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 +#: server_privileges.php:663 server_privileges.php:1620 +#: server_privileges.php:1967 server_privileges.php:2014 +#: server_privileges.php:2053 server_replication.php:233 +#: server_replication.php:316 server_replication.php:339 +#: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 +#: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 +#: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 +#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "Execută" -#: browse_foreigners.php:167 browse_foreigners.php:171 -#: libraries/Index.class.php:441 tbl_tracking.php:319 +#: browse_foreigners.php:166 browse_foreigners.php:170 +#: libraries/Index.class.php:441 tbl_tracking.php:314 msgid "Keyname" msgstr "Nume cheie" -#: browse_foreigners.php:168 browse_foreigners.php:170 -#: server_collations.php:54 server_collations.php:66 server_engines.php:58 +#: browse_foreigners.php:167 browse_foreigners.php:169 +#: server_collations.php:54 server_collations.php:66 server_engines.php:57 #: server_status.php:738 msgid "Description" msgstr "Descriere" -#: browse_foreigners.php:246 browse_foreigners.php:255 -#: browse_foreigners.php:267 browse_foreigners.php:275 +#: browse_foreigners.php:245 browse_foreigners.php:254 +#: browse_foreigners.php:266 browse_foreigners.php:274 msgid "Use this value" msgstr "Folosește această valoare" -#: db_create.php:45 +#: bs_disp_as_mime_type.php:29 bs_play_media.php:35 +msgid "No blob streaming server configured!" +msgstr "" + +#: bs_disp_as_mime_type.php:35 +#, fuzzy +#| msgid "Failed to write file to disk." +msgid "Failed to fetch headers" +msgstr "Eșec la scrierea fișierului pe disc." + +#: bs_disp_as_mime_type.php:41 +msgid "Failed to open remote URL" +msgstr "" + +#: db_create.php:44 #, php-format msgid "Database %1$s has been created." msgstr "Baza de date %1$s a fost creată." -#: db_datadict.php:48 db_operations.php:377 +#: db_datadict.php:48 db_operations.php:313 msgid "Database comment: " msgstr "Comentarii referitoare la baza de date: " -#: db_datadict.php:164 libraries/tbl_properties.inc.php:723 -#: pdf_schema.php:1235 tbl_operations.php:346 tbl_printview.php:128 +#: db_datadict.php:164 libraries/tbl_properties.inc.php:722 +#: pdf_schema.php:1234 tbl_operations.php:344 tbl_printview.php:127 msgid "Table comments" msgstr "Comentarii tabel" -#: db_datadict.php:173 db_qbe.php:173 libraries/Index.class.php:445 +#: db_datadict.php:173 db_qbe.php:170 libraries/Index.class.php:445 #: libraries/export/htmlword.php:243 libraries/export/latex.php:364 #: libraries/export/odt.php:293 libraries/export/texytext.php:233 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:274 -#: pdf_schema.php:1261 pdf_schema.php:1282 tbl_change.php:306 -#: tbl_indexes.php:188 tbl_printview.php:140 tbl_relation.php:401 -#: tbl_select.php:133 tbl_structure.php:176 tbl_tracking.php:272 -#: tbl_tracking.php:323 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 +#: pdf_schema.php:1260 pdf_schema.php:1281 tbl_change.php:301 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:132 tbl_structure.php:175 tbl_tracking.php:267 +#: tbl_tracking.php:318 #, fuzzy #| msgid "Column names" msgid "Column" msgstr "Denumirile coloanelor" -#: db_datadict.php:174 db_printview.php:105 libraries/Index.class.php:442 +#: db_datadict.php:174 db_printview.php:104 libraries/Index.class.php:442 #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 #: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:244 #: libraries/export/latex.php:364 libraries/export/odt.php:296 #: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:99 -#: pdf_schema.php:1262 pdf_schema.php:1283 server_privileges.php:2062 -#: tbl_change.php:285 tbl_change.php:312 tbl_printview.php:141 -#: tbl_printview.php:311 tbl_select.php:134 tbl_structure.php:177 -#: tbl_structure.php:658 tbl_tracking.php:273 tbl_tracking.php:320 +#: pdf_schema.php:1261 pdf_schema.php:1282 server_privileges.php:2066 +#: tbl_change.php:280 tbl_change.php:307 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:133 tbl_structure.php:176 +#: tbl_structure.php:656 tbl_tracking.php:268 tbl_tracking.php:315 msgid "Type" msgstr "Tip" #: db_datadict.php:176 libraries/Index.class.php:448 #: libraries/export/htmlword.php:245 libraries/export/latex.php:364 #: libraries/export/odt.php:299 libraries/export/texytext.php:235 -#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1264 -#: pdf_schema.php:1285 tbl_change.php:321 tbl_printview.php:143 -#: tbl_structure.php:180 tbl_tracking.php:275 tbl_tracking.php:326 +#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1263 +#: pdf_schema.php:1284 tbl_change.php:316 tbl_printview.php:142 +#: tbl_structure.php:179 tbl_tracking.php:270 tbl_tracking.php:321 msgid "Null" msgstr "Nul" -#: db_datadict.php:177 db_structure.php:500 libraries/export/htmlword.php:246 +#: db_datadict.php:177 db_structure.php:486 libraries/export/htmlword.php:246 #: libraries/export/latex.php:364 libraries/export/odt.php:302 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:105 -#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 -#: tbl_structure.php:181 tbl_tracking.php:276 +#: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:143 +#: tbl_structure.php:180 tbl_tracking.php:271 msgid "Default" msgstr "Setare de bază" #: db_datadict.php:181 libraries/export/htmlword.php:248 #: libraries/export/latex.php:366 libraries/export/odt.php:306 -#: libraries/export/texytext.php:238 pdf_schema.php:1267 pdf_schema.php:1288 -#: tbl_printview.php:148 +#: libraries/export/texytext.php:238 pdf_schema.php:1266 pdf_schema.php:1287 +#: tbl_printview.php:147 msgid "Links to" msgstr "Trimitere la" -#: db_datadict.php:183 db_printview.php:111 libraries/export/htmlword.php:251 +#: db_datadict.php:183 db_printview.php:110 libraries/export/htmlword.php:251 #: libraries/export/latex.php:49 libraries/export/latex.php:369 #: libraries/export/odt.php:37 libraries/export/odt.php:311 #: libraries/export/sql.php:29 libraries/export/texytext.php:241 -#: libraries/tbl_properties.inc.php:129 pdf_schema.php:1278 -#: pdf_schema.php:1289 tbl_printview.php:150 +#: libraries/tbl_properties.inc.php:128 pdf_schema.php:1277 +#: pdf_schema.php:1288 tbl_printview.php:149 msgid "Comments" msgstr "Comentarii" #: db_datadict.php:266 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/export/htmlword.php:321 #: libraries/export/latex.php:434 libraries/export/odt.php:367 -#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:262 -#: pdf_schema.php:1343 server_privileges.php:1560 server_privileges.php:1571 -#: server_privileges.php:1881 server_privileges.php:1886 -#: server_privileges.php:2179 sql.php:131 sql.php:193 tbl_printview.php:227 -#: tbl_structure.php:349 tbl_tracking.php:336 tbl_tracking.php:341 +#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:261 +#: pdf_schema.php:1342 server_privileges.php:1564 server_privileges.php:1575 +#: server_privileges.php:1885 server_privileges.php:1890 +#: server_privileges.php:2183 sql.php:130 sql.php:192 tbl_printview.php:226 +#: tbl_structure.php:347 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "Nu" @@ -180,17 +194,17 @@ msgstr "Nu" #: libraries/mult_submits.inc.php:49 libraries/mult_submits.inc.php:54 #: libraries/mult_submits.inc.php:59 libraries/mult_submits.inc.php:91 #: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:105 -#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:261 -#: libraries/mult_submits.inc.php:272 pdf_schema.php:1343 -#: server_databases.php:63 server_privileges.php:1557 -#: server_privileges.php:1571 server_privileges.php:1881 -#: server_privileges.php:1884 server_privileges.php:2179 sql.php:192 -#: tbl_printview.php:227 tbl_structure.php:39 tbl_structure.php:349 -#: tbl_tracking.php:334 tbl_tracking.php:339 +#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:260 +#: libraries/mult_submits.inc.php:271 pdf_schema.php:1342 +#: server_databases.php:61 server_privileges.php:1561 +#: server_privileges.php:1575 server_privileges.php:1885 +#: server_privileges.php:1888 server_privileges.php:2183 sql.php:191 +#: tbl_printview.php:226 tbl_structure.php:38 tbl_structure.php:347 +#: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" msgstr "Da" -#: db_datadict.php:321 db_printview.php:265 tbl_printview.php:496 +#: db_datadict.php:321 db_printview.php:264 tbl_printview.php:495 msgid "Print" msgstr "Listare" @@ -198,190 +212,154 @@ msgstr "Listare" msgid "View dump (schema) of database" msgstr "Vizualizarea schemei bazei de date" -#: db_export.php:32 db_printview.php:95 db_qbe.php:101 db_structure.php:50 -#: db_tracking.php:34 export.php:352 navigation.php:326 +#: db_export.php:32 db_printview.php:94 db_qbe.php:98 db_structure.php:49 +#: db_tracking.php:30 export.php:350 navigation.php:325 msgid "No tables found in database." msgstr "Nu s-a găsit nici un tabel în baza de date." -#: db_export.php:42 db_search.php:326 server_export.php:26 +#: db_export.php:42 db_search.php:326 server_export.php:24 msgid "Select All" msgstr "Selectează tot" -#: db_export.php:44 db_search.php:329 server_export.php:28 +#: db_export.php:44 db_search.php:329 server_export.php:26 msgid "Unselect All" msgstr "Deselectează tot" -#: db_operations.php:37 tbl_create.php:49 +#: db_operations.php:33 tbl_create.php:47 msgid "The database name is empty!" msgstr "Cîmpul de denumire al bazei de date este gol!" -#: db_operations.php:235 +#: db_operations.php:231 #, php-format msgid "Database %s has been renamed to %s" msgstr "Baza de date %s a fost redenumită în %s" -#: db_operations.php:239 +#: db_operations.php:235 #, php-format msgid "Database %s has been copied to %s" msgstr "Baza de date %s a fost copiata la %s" -#: db_operations.php:411 +#: db_operations.php:347 msgid "Rename database to" msgstr "Redenumire bază de date în" -#: db_operations.php:416 server_processlist.php:56 +#: db_operations.php:352 server_processlist.php:56 msgid "Command" msgstr "Comanda" -#: db_operations.php:428 tbl_change.php:1141 +#: db_operations.php:364 tbl_change.php:1039 msgid "and then" msgstr "și apoi" -#: db_operations.php:454 +#: db_operations.php:390 msgid "Copy database to" msgstr "Copiază baza de date" -#: db_operations.php:461 tbl_operations.php:527 tbl_tracking.php:387 +#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Numai structura" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:389 +#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Structura și date" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:388 +#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Numai date" -#: db_operations.php:471 +#: db_operations.php:407 msgid "CREATE DATABASE before copying" msgstr "CREEAZĂ BAZA DE DATE înainte de copiere" -#: db_operations.php:474 libraries/export/sql.php:51 +#: db_operations.php:410 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 -#: libraries/export/sql.php:81 tbl_operations.php:535 +#: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "Adăugare %s" -#: db_operations.php:478 libraries/export/sql.php:77 tbl_operations.php:298 -#: tbl_operations.php:537 +#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Adaugă valoare pentru AUTO_INCREMENT" -#: db_operations.php:482 tbl_operations.php:544 +#: db_operations.php:418 tbl_operations.php:542 msgid "Add constraints" msgstr "Adaugă constrângeri" -#: db_operations.php:495 +#: db_operations.php:431 msgid "Switch to copied database" msgstr "Schimbă la tabela copiată" -#: db_operations.php:536 -msgid "BLOB Repository" -msgstr "BLOB Repository" - -#: db_operations.php:539 db_tracking.php:75 libraries/common.lib.php:1357 -#: libraries/server_links.inc.php:48 server_processlist.php:58 -#: tbl_tracking.php:595 test/theme.php:100 -msgid "Status" -msgstr "Stare" - -#: db_operations.php:547 -#, fuzzy -#| msgid "Enabled" -msgctxt "BLOB repository" -msgid "Enabled" -msgstr "Activat" - -#: db_operations.php:551 -msgid "Disable" -msgstr "Dezactivează" - -#: db_operations.php:561 -msgid "Damaged" -msgstr "Deteriorat" - -#: db_operations.php:565 -msgctxt "BLOB repository" -msgid "Repair" -msgstr "Repară" - -#: db_operations.php:573 -msgctxt "BLOB repository" -msgid "Disabled" -msgstr "Dezactivat" - -#: db_operations.php:577 -msgid "Enable" -msgstr "Activează" - -#: db_operations.php:601 libraries/Index.class.php:447 +#: db_operations.php:451 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 -#: server_collations.php:53 server_collations.php:65 server_databases.php:110 -#: tbl_operations.php:362 tbl_select.php:135 tbl_structure.php:178 -#: tbl_structure.php:766 tbl_tracking.php:274 tbl_tracking.php:325 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 +#: server_collations.php:53 server_collations.php:65 server_databases.php:108 +#: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:177 +#: tbl_structure.php:764 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "Interclasare" -#: db_operations.php:614 main.php:315 pdf_schema.php:33 -#, php-format +#: db_operations.php:464 pdf_schema.php:32 +#, fuzzy, php-format +#| msgid "" +#| "The additional features for working with linked tables have been " +#| "deactivated. To find out why click %shere%s." msgid "" -"The additional features for working with linked tables have been " -"deactivated. To find out why click %shere%s." +"The phpMyAdmin configuration storage has been deactivated. To find out why " +"click %shere%s." msgstr "" "Opțiunile adiționale pentru folosirea tabelelor intercalate au fost " "dezactivate. Pentru a afla de ce ... %shere%s." -#: db_operations.php:647 +#: db_operations.php:497 msgid "Edit PDF Pages" msgstr "Editează paginile PDF" -#: db_printview.php:103 db_tracking.php:71 db_tracking.php:156 +#: db_printview.php:102 db_tracking.php:67 db_tracking.php:152 #: libraries/db_structure.lib.php:37 libraries/export/xml.php:327 -#: libraries/header.inc.php:125 pdf_pages.php:423 server_privileges.php:1657 -#: server_privileges.php:1713 server_privileges.php:1977 -#: server_synchronize.php:422 server_synchronize.php:865 tbl_tracking.php:591 +#: libraries/header.inc.php:125 pdf_pages.php:422 server_privileges.php:1661 +#: server_privileges.php:1717 server_privileges.php:1981 +#: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "Tabel" -#: db_printview.php:104 libraries/db_structure.lib.php:47 +#: db_printview.php:103 libraries/db_structure.lib.php:47 #: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 -#: navigation.php:629 navigation.php:651 server_databases.php:121 -#: tbl_printview.php:392 tbl_structure.php:364 tbl_structure.php:776 +#: navigation.php:628 navigation.php:650 server_databases.php:119 +#: tbl_printview.php:391 tbl_structure.php:362 tbl_structure.php:774 msgid "Rows" msgstr "Linie" -#: db_printview.php:108 libraries/db_structure.lib.php:58 tbl_indexes.php:189 +#: db_printview.php:107 libraries/db_structure.lib.php:58 tbl_indexes.php:188 msgid "Size" msgstr "Mărime" -#: db_printview.php:161 db_structure.php:456 libraries/export/sql.php:556 +#: db_printview.php:160 db_structure.php:442 libraries/export/sql.php:556 #: libraries/export/sql.php:896 msgid "in use" msgstr "în folosință" -#: db_printview.php:186 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:511 pdf_schema.php:1240 tbl_printview.php:432 -#: tbl_structure.php:808 +#: db_printview.php:185 libraries/db_info.inc.php:86 +#: libraries/export/sql.php:511 pdf_schema.php:1239 tbl_printview.php:431 +#: tbl_structure.php:806 msgid "Creation" msgstr "Creare" -#: db_printview.php:195 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:516 pdf_schema.php:1245 tbl_printview.php:442 -#: tbl_structure.php:816 +#: db_printview.php:194 libraries/db_info.inc.php:91 +#: libraries/export/sql.php:516 pdf_schema.php:1244 tbl_printview.php:441 +#: tbl_structure.php:814 msgid "Last update" msgstr "Ultima actualizare" -#: db_printview.php:204 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:521 pdf_schema.php:1250 tbl_printview.php:452 -#: tbl_structure.php:824 +#: db_printview.php:203 libraries/db_info.inc.php:96 +#: libraries/export/sql.php:521 pdf_schema.php:1249 tbl_printview.php:451 +#: tbl_structure.php:822 msgid "Last check" msgstr "Ultima verficare" -#: db_printview.php:221 db_structure.php:479 +#: db_printview.php:220 db_structure.php:465 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -390,94 +368,94 @@ msgstr[0] "%s tabele" msgstr[1] "%s tabele" msgstr[2] "%s tabele" -#: db_qbe.php:28 import.php:453 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1980 libraries/sql_query_form.lib.php:138 -#: tbl_operations.php:212 tbl_relation.php:291 tbl_row_action.php:130 -#: view_operations.php:61 +#: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 +#: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "Comanda dumneavoastră SQL a fost executată cu succes" -#: db_qbe.php:41 +#: db_qbe.php:38 msgid "You have to choose at least one column to display" msgstr "Trebuie să alegeți cel puțin o coloană pentru a putea afișa" -#: db_qbe.php:199 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:865 +#: db_qbe.php:196 libraries/db_structure.lib.php:95 +#: libraries/display_tbl.lib.php:864 msgid "Sort" msgstr "Sortare" -#: db_qbe.php:208 db_qbe.php:242 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:522 libraries/display_tbl.lib.php:827 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:259 -#: tbl_select.php:311 +#: db_qbe.php:205 db_qbe.php:239 libraries/db_structure.lib.php:102 +#: libraries/display_tbl.lib.php:521 libraries/display_tbl.lib.php:826 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:257 +#: tbl_select.php:310 msgid "Ascending" msgstr "Crescătoare" -#: db_qbe.php:209 db_qbe.php:250 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:527 libraries/display_tbl.lib.php:824 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:260 -#: tbl_select.php:312 +#: db_qbe.php:206 db_qbe.php:247 libraries/db_structure.lib.php:110 +#: libraries/display_tbl.lib.php:526 libraries/display_tbl.lib.php:823 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:258 +#: tbl_select.php:311 msgid "Descending" msgstr "Descrescător" -#: db_qbe.php:263 db_tracking.php:77 libraries/display_tbl.lib.php:307 -#: tbl_change.php:275 tbl_tracking.php:596 +#: db_qbe.php:260 db_tracking.php:73 libraries/display_tbl.lib.php:306 +#: tbl_change.php:270 tbl_tracking.php:591 msgid "Show" msgstr "Afișează" -#: db_qbe.php:299 +#: db_qbe.php:296 msgid "Criteria" msgstr "Criteriu" -#: db_qbe.php:352 db_qbe.php:434 db_qbe.php:526 db_qbe.php:557 +#: db_qbe.php:349 db_qbe.php:431 db_qbe.php:523 db_qbe.php:554 msgid "Ins" msgstr "Ins" -#: db_qbe.php:356 db_qbe.php:438 db_qbe.php:523 db_qbe.php:554 +#: db_qbe.php:353 db_qbe.php:435 db_qbe.php:520 db_qbe.php:551 msgid "And" msgstr "Și" -#: db_qbe.php:365 db_qbe.php:446 db_qbe.php:528 db_qbe.php:559 +#: db_qbe.php:362 db_qbe.php:443 db_qbe.php:525 db_qbe.php:556 msgid "Del" msgstr "Del" -#: db_qbe.php:369 db_qbe.php:450 db_qbe.php:521 db_qbe.php:552 -#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:778 -#: server_privileges.php:297 tbl_change.php:1027 tbl_indexes.php:249 -#: tbl_select.php:285 +#: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 +#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:777 +#: server_privileges.php:296 tbl_change.php:925 tbl_indexes.php:248 +#: tbl_select.php:284 msgid "Or" msgstr "Sau" -#: db_qbe.php:506 +#: db_qbe.php:503 msgid "Modify" msgstr "Modificare" -#: db_qbe.php:583 +#: db_qbe.php:580 #, fuzzy #| msgid "Add/Delete Criteria Row" msgid "Add/Delete criteria rows" msgstr "Adaugă/șterge criteriu" -#: db_qbe.php:595 +#: db_qbe.php:592 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Add/Delete columns" msgstr "Adaugă/șterge coloane" -#: db_qbe.php:608 db_qbe.php:633 +#: db_qbe.php:605 db_qbe.php:630 msgid "Update Query" msgstr "Reînnoire comandă" -#: db_qbe.php:616 +#: db_qbe.php:613 msgid "Use Tables" msgstr "Utilizare tabele" -#: db_qbe.php:639 +#: db_qbe.php:636 #, php-format msgid "SQL query on database %s:" msgstr "Comandă SQL pe baza de date %s:" -#: db_qbe.php:933 libraries/common.lib.php:1222 +#: db_qbe.php:930 libraries/common.lib.php:1215 msgid "Submit Query" msgstr "Trimite comanda" @@ -518,17 +496,17 @@ msgstr[0] "%s rezultat(e) în interiorul tabelului %s" msgstr[1] "%s rezultat(e) în interiorul tabelului %s" msgstr[2] "%s rezultat(e) în interiorul tabelului %s" -#: db_search.php:249 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2831 -#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:49 -#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:466 +#: db_search.php:249 db_structure.php:75 db_structure.php:76 +#: db_structure.php:88 db_structure.php:90 db_structure.php:101 +#: db_structure.php:103 libraries/common.lib.php:2836 +#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 +#: tbl_structure.php:35 tbl_structure.php:47 tbl_structure.php:464 msgid "Browse" msgstr "Navigare" -#: db_search.php:254 libraries/display_tbl.lib.php:1164 -#: libraries/display_tbl.lib.php:2055 libraries/sql_query_form.lib.php:453 -#: pdf_pages.php:285 pdf_pages.php:424 pdf_pages.php:460 pdf_pages.php:488 +#: db_search.php:254 libraries/display_tbl.lib.php:1163 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 msgid "Delete" @@ -569,66 +547,66 @@ msgstr "În interiorul tabelei(lor):" msgid "Inside column:" msgstr "În cîmpul:" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2830 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:75 +#: db_structure.php:79 db_structure.php:80 db_structure.php:92 +#: db_structure.php:93 db_structure.php:105 db_structure.php:106 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 +#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Inserare" -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2827 libraries/common.lib.php:2834 -#: libraries/db_links.inc.php:62 libraries/export/htmlword.php:22 +#: db_structure.php:81 db_structure.php:94 db_structure.php:107 +#: libraries/common.lib.php:2832 libraries/common.lib.php:2839 +#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 -#: libraries/tbl_links.inc.php:55 pmd_general.php:133 -#: server_privileges.php:593 server_replication.php:314 tbl_tracking.php:268 +#: libraries/tbl_links.inc.php:54 pmd_general.php:133 +#: server_privileges.php:592 server_replication.php:313 tbl_tracking.php:263 msgid "Structure" msgstr "Structură" -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:544 db_structure.php:545 db_tracking.php:90 -#: libraries/Index.class.php:482 libraries/common.lib.php:1659 -#: libraries/db_links.inc.php:99 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:126 -#: server_databases.php:351 tbl_structure.php:26 tbl_structure.php:150 -#: tbl_structure.php:151 tbl_structure.php:470 +#: db_structure.php:82 db_structure.php:83 db_structure.php:95 +#: db_structure.php:96 db_structure.php:108 db_structure.php:109 +#: db_structure.php:530 db_structure.php:531 db_tracking.php:86 +#: libraries/Index.class.php:482 libraries/common.lib.php:1663 +#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 +#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 +#: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" msgstr "Aruncă" -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:542 db_structure.php:543 libraries/common.lib.php:1658 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:104 +#: db_structure.php:84 db_structure.php:85 db_structure.php:97 +#: db_structure.php:98 db_structure.php:110 db_structure.php:111 +#: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 +#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 msgid "Empty" msgstr "Golește" -#: db_structure.php:315 libraries/tbl_links.inc.php:99 +#: db_structure.php:301 libraries/tbl_links.inc.php:98 #, php-format msgid "Table %s has been emptied" msgstr "Tabelul %s a fost golit" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "View %s has been dropped" msgstr "Vizualizarea %s a fost eliminată" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "Table %s has been dropped" msgstr "Tabelul %s a fost aruncat" -#: db_structure.php:332 +#: db_structure.php:318 msgid "Tracking is active." msgstr "Monitorizarea este activată" -#: db_structure.php:334 +#: db_structure.php:320 msgid "Tracking is not active." msgstr "Monitorizarea nu este activată" -#: db_structure.php:419 libraries/display_tbl.lib.php:1943 +#: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -636,167 +614,173 @@ msgid "" msgstr "" "Această vedere are minim acest număr de rânduri. Vedeți %sdocumentation%s." -#: db_structure.php:433 db_structure.php:447 libraries/header.inc.php:125 -#: libraries/tbl_info.inc.php:65 tbl_structure.php:184 test/theme.php:73 +#: db_structure.php:419 db_structure.php:433 libraries/header.inc.php:125 +#: libraries/tbl_info.inc.php:60 tbl_structure.php:183 test/theme.php:73 msgid "View" msgstr "Vizualizare" -#: db_structure.php:484 libraries/db_structure.lib.php:40 -#: libraries/server_links.inc.php:69 server_replication.php:32 -#: server_replication.php:163 server_status.php:368 +#: db_structure.php:470 libraries/db_structure.lib.php:40 +#: libraries/server_links.inc.php:69 server_replication.php:31 +#: server_replication.php:162 server_status.php:368 msgid "Replication" msgstr "Replicare" -#: db_structure.php:488 +#: db_structure.php:474 msgid "Sum" msgstr "Sumă" -#: db_structure.php:495 libraries/StorageEngine.class.php:349 +#: db_structure.php:481 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s este motorul de stocare stabilit implicit pe acest server MySQL." -#: db_structure.php:523 db_structure.php:540 db_structure.php:541 -#: libraries/display_tbl.lib.php:2080 libraries/display_tbl.lib.php:2085 -#: libraries/mult_submits.inc.php:15 server_databases.php:345 -#: server_databases.php:350 server_privileges.php:1588 tbl_structure.php:454 -#: tbl_structure.php:463 +#: db_structure.php:509 db_structure.php:526 db_structure.php:527 +#: libraries/display_tbl.lib.php:2039 libraries/display_tbl.lib.php:2044 +#: libraries/mult_submits.inc.php:15 server_databases.php:343 +#: server_databases.php:348 server_privileges.php:1592 tbl_structure.php:452 +#: tbl_structure.php:461 msgid "With selected:" msgstr "Cele bifate:" -#: db_structure.php:526 libraries/display_tbl.lib.php:2075 -#: server_databases.php:347 server_privileges.php:569 -#: server_privileges.php:1591 tbl_structure.php:457 +#: db_structure.php:512 libraries/display_tbl.lib.php:2034 +#: server_databases.php:345 server_privileges.php:568 +#: server_privileges.php:1595 tbl_structure.php:455 msgid "Check All" msgstr "Marchează toate" -#: db_structure.php:530 libraries/display_tbl.lib.php:2076 -#: libraries/replication_gui.lib.php:35 server_databases.php:349 -#: server_privileges.php:572 server_privileges.php:1595 tbl_structure.php:461 +#: db_structure.php:516 libraries/display_tbl.lib.php:2035 +#: libraries/replication_gui.lib.php:35 server_databases.php:347 +#: server_privileges.php:571 server_privileges.php:1599 tbl_structure.php:459 msgid "Uncheck All" msgstr "Demarchează toate" -#: db_structure.php:535 +#: db_structure.php:521 msgid "Check tables having overhead" msgstr "Verificare depășit" -#: db_structure.php:546 db_structure.php:547 db_structure.php:598 -#: libraries/display_tbl.lib.php:2179 libraries/mult_submits.inc.php:27 -#: tbl_structure.php:491 tbl_structure.php:493 +#: db_structure.php:532 db_structure.php:533 db_structure.php:584 +#: libraries/display_tbl.lib.php:2138 libraries/mult_submits.inc.php:27 +#: tbl_structure.php:489 tbl_structure.php:491 msgid "Print view" msgstr "Vizualizare imprimare" -#: db_structure.php:548 db_structure.php:549 libraries/mult_submits.inc.php:41 -#: tbl_operations.php:580 +#: db_structure.php:534 db_structure.php:535 libraries/mult_submits.inc.php:41 +#: tbl_operations.php:578 msgid "Check table" msgstr "Verificare tabel" -#: db_structure.php:550 db_structure.php:551 libraries/mult_submits.inc.php:46 -#: tbl_operations.php:620 tbl_structure.php:708 tbl_structure.php:710 +#: db_structure.php:536 db_structure.php:537 libraries/mult_submits.inc.php:46 +#: tbl_operations.php:618 tbl_structure.php:706 tbl_structure.php:708 msgid "Optimize table" msgstr "Optimizare tabel" -#: db_structure.php:552 db_structure.php:553 libraries/mult_submits.inc.php:51 -#: tbl_operations.php:610 +#: db_structure.php:538 db_structure.php:539 libraries/mult_submits.inc.php:51 +#: tbl_operations.php:608 msgid "Repair table" msgstr "Reparare tabel" -#: db_structure.php:554 db_structure.php:555 libraries/mult_submits.inc.php:56 -#: tbl_operations.php:600 +#: db_structure.php:540 db_structure.php:541 libraries/mult_submits.inc.php:56 +#: tbl_operations.php:598 msgid "Analyze table" msgstr "Analizare tabel" -#: db_structure.php:556 db_structure.php:557 libraries/db_links.inc.php:70 -#: libraries/display_export.lib.php:82 libraries/display_tbl.lib.php:2093 -#: libraries/display_tbl.lib.php:2224 libraries/mult_submits.inc.php:61 -#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:81 -#: pmd_pdf.php:83 pmd_pdf.php:108 server_privileges.php:1372 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 +#: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 +#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 +#: pmd_pdf.php:81 pmd_pdf.php:106 server_privileges.php:1376 #: setup/frames/menu.inc.php:22 tbl_row_action.php:58 msgid "Export" msgstr "Exportă" -#: db_structure.php:605 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:591 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "Dicționar de date" -#: db_tracking.php:65 +#: db_tracking.php:61 #, fuzzy msgid "Tracked tables" msgstr "Tabelele urmărite" -#: db_tracking.php:70 libraries/export/htmlword.php:85 +#: db_tracking.php:66 libraries/export/htmlword.php:85 #: libraries/export/latex.php:152 libraries/export/odt.php:112 #: libraries/export/sql.php:339 libraries/export/texytext.php:84 #: libraries/export/xml.php:254 libraries/header.inc.php:105 -#: libraries/header_printview.inc.php:57 server_databases.php:168 -#: server_privileges.php:1652 server_privileges.php:1713 -#: server_privileges.php:1971 server_processlist.php:55 -#: server_synchronize.php:1178 server_synchronize.php:1182 -#: tbl_tracking.php:590 test/theme.php:64 +#: libraries/header_printview.inc.php:57 server_databases.php:166 +#: server_privileges.php:1656 server_privileges.php:1717 +#: server_privileges.php:1975 server_processlist.php:55 +#: server_synchronize.php:1177 server_synchronize.php:1181 +#: tbl_tracking.php:585 test/theme.php:64 msgid "Database" msgstr "Baza de date" -#: db_tracking.php:72 +#: db_tracking.php:68 msgid "Last version" msgstr "Ultima versiune" -#: db_tracking.php:73 tbl_tracking.php:593 +#: db_tracking.php:69 tbl_tracking.php:588 msgid "Created" msgstr "Creat(ă)" -#: db_tracking.php:74 tbl_tracking.php:594 +#: db_tracking.php:70 tbl_tracking.php:589 msgid "Updated" msgstr "Actualizat(ă)" -#: db_tracking.php:76 libraries/Index.class.php:439 -#: libraries/db_structure.lib.php:44 server_databases.php:202 -#: server_privileges.php:1534 server_privileges.php:1717 -#: server_privileges.php:2065 tbl_structure.php:186 +#: db_tracking.php:71 libraries/common.lib.php:1361 +#: libraries/server_links.inc.php:48 server_processlist.php:58 +#: tbl_tracking.php:590 test/theme.php:100 +msgid "Status" +msgstr "Stare" + +#: db_tracking.php:72 libraries/Index.class.php:439 +#: libraries/db_structure.lib.php:44 server_databases.php:200 +#: server_privileges.php:1538 server_privileges.php:1721 +#: server_privileges.php:2069 tbl_structure.php:185 msgid "Action" msgstr "Acțiune" -#: db_tracking.php:87 db_tracking.php:119 +#: db_tracking.php:83 db_tracking.php:115 #, fuzzy msgid "Delete tracking data for this table" msgstr "Șterge datele urmărite din acest tabel" -#: db_tracking.php:105 tbl_tracking.php:547 tbl_tracking.php:605 -#: tbl_tracking.php:612 +#: db_tracking.php:101 tbl_tracking.php:542 tbl_tracking.php:600 +#: tbl_tracking.php:607 #, fuzzy msgid "active" msgstr "activ(ă)" -#: db_tracking.php:107 tbl_tracking.php:549 tbl_tracking.php:607 -#: tbl_tracking.php:609 +#: db_tracking.php:103 tbl_tracking.php:544 tbl_tracking.php:602 +#: tbl_tracking.php:604 #, fuzzy msgid "not active" msgstr "inactiv(ă)" -#: db_tracking.php:120 +#: db_tracking.php:116 msgid "Versions" msgstr "Versiuni" -#: db_tracking.php:121 tbl_tracking.php:378 tbl_tracking.php:623 +#: db_tracking.php:117 tbl_tracking.php:373 tbl_tracking.php:618 #, fuzzy msgid "Tracking report" msgstr "Raport de monitorizare" -#: db_tracking.php:122 tbl_tracking.php:250 tbl_tracking.php:623 +#: db_tracking.php:118 tbl_tracking.php:245 tbl_tracking.php:618 msgid "Structure snapshot" msgstr "Instantaneu al structurii" -#: db_tracking.php:151 +#: db_tracking.php:147 #, fuzzy msgid "Untracked tables" msgstr "Tabele fără monitorizare" -#: db_tracking.php:171 db_tracking.php:173 tbl_structure.php:527 -#: tbl_structure.php:529 +#: db_tracking.php:167 db_tracking.php:169 tbl_structure.php:525 +#: tbl_structure.php:527 #, fuzzy msgid "Track table" msgstr "Tabele monitorizate" -#: db_tracking.php:199 +#: db_tracking.php:195 #, fuzzy msgid "Database Log" msgstr "Jurnalul (log) bazei de date" @@ -805,12 +789,12 @@ msgstr "Jurnalul (log) bazei de date" msgid "Selected export type has to be saved in file!" msgstr "Tipul selectat pentru export trebuie salvat într-un fișier!" -#: export.php:153 export.php:178 export.php:620 +#: export.php:152 export.php:177 export.php:615 #, php-format msgid "Insufficient space to save the file %s." msgstr "Spațiu insuficient pentru salvarea fișierului %s." -#: export.php:287 +#: export.php:286 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -818,17 +802,17 @@ msgstr "" "Fișierul %s există deja pe server. Schimbați denumirea fișierului sau bifați " "opțiunea de suprascriere." -#: export.php:291 export.php:295 +#: export.php:290 export.php:294 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Serverul web nu are drepturile necesare pentru a salva fișierul %s." -#: export.php:622 +#: export.php:617 #, php-format msgid "Dump has been saved to file %s." msgstr "Copia a fost salvată în fișierul %s." -#: import.php:59 +#: import.php:58 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -837,14 +821,14 @@ 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." -#: import.php:278 import.php:331 libraries/File.class.php:840 -#: libraries/File.class.php:950 +#: import.php:277 import.php:330 libraries/File.class.php:566 +#: libraries/File.class.php:676 msgid "File could not be read" msgstr "Fișierul nu poate fi citit" -#: import.php:286 import.php:295 import.php:314 import.php:323 -#: libraries/File.class.php:1020 libraries/File.class.php:1028 -#: libraries/File.class.php:1044 libraries/File.class.php:1052 +#: import.php:285 import.php:294 import.php:313 import.php:322 +#: libraries/File.class.php:746 libraries/File.class.php:754 +#: libraries/File.class.php:770 libraries/File.class.php:778 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -854,7 +838,7 @@ msgstr "" "suportul pentru aceasta nu este implementat, fie este dezactivat de " "configurația dumneavoastră." -#: import.php:336 +#: import.php:335 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -864,31 +848,31 @@ msgstr "" "a fost trimit, ori mărimea fișierului a depășit mărimea maximă permisă de " "configurația PHP-ului dumneavoastră. Vedeți FAQ 1.16." -#: import.php:371 libraries/display_import.lib.php:23 +#: import.php:370 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "" "Nu au putut fi încărcate modulele adiționale de import, vă rog verificați " "instalarea!" -#: import.php:396 +#: import.php:395 msgid "The bookmark has been deleted." msgstr "Eticheta a fost ștearsă." -#: import.php:400 +#: import.php:399 msgid "Showing bookmark" msgstr "Afișînd semn de carte" -#: import.php:402 sql.php:625 +#: import.php:401 sql.php:618 #, php-format msgid "Bookmark %s created" msgstr "Semnul de carte %s a fost creat" -#: import.php:408 import.php:414 +#: import.php:407 import.php:413 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Importul s-a terminat cu succes, %d interogări executate." -#: import.php:423 +#: import.php:422 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -896,7 +880,7 @@ msgstr "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." -#: import.php:425 +#: import.php:424 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -904,21 +888,21 @@ msgstr "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." -#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:240 +#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:239 #: user_password.php:110 msgid "Back" msgstr "Înapoi" -#: index.php:188 +#: index.php:183 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" "phpMyAdmin are o interfață mai prietenoasă cu un navigator ce lucreaza cu " "cadre." -#: js/messages.php:25 server_synchronize.php:344 server_synchronize.php:356 -#: server_synchronize.php:372 server_synchronize.php:379 -#: server_synchronize.php:738 server_synchronize.php:766 -#: server_synchronize.php:794 server_synchronize.php:806 +#: js/messages.php:25 server_synchronize.php:343 server_synchronize.php:355 +#: server_synchronize.php:371 server_synchronize.php:378 +#: server_synchronize.php:737 server_synchronize.php:765 +#: server_synchronize.php:793 server_synchronize.php:805 msgid "Click to select" msgstr "" @@ -926,15 +910,15 @@ msgstr "" msgid "Click to unselect" msgstr "" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:88 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:87 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Comenzile \"DROP DATABASE\" sînt dezactivate." -#: js/messages.php:30 libraries/mult_submits.inc.php:257 sql.php:187 +#: js/messages.php:30 libraries/mult_submits.inc.php:256 sql.php:186 msgid "Do you really want to " msgstr "Sigur doriți să " -#: js/messages.php:31 libraries/mult_submits.inc.php:257 sql.php:171 +#: js/messages.php:31 libraries/mult_submits.inc.php:256 sql.php:170 msgid "You are about to DESTROY a complete database!" msgstr "Sînteți pe cale să DISTRUGEȚI o întreagă bază de date!" @@ -963,11 +947,11 @@ msgstr "Numele gazdei este gol!" msgid "The user name is empty!" msgstr "Numele de utilizator este gol!" -#: js/messages.php:44 server_privileges.php:1228 user_password.php:65 +#: js/messages.php:44 server_privileges.php:1229 user_password.php:65 msgid "The password is empty!" msgstr "Parola este goală!" -#: js/messages.php:45 server_privileges.php:1226 user_password.php:68 +#: js/messages.php:45 server_privileges.php:1227 user_password.php:68 msgid "The passwords aren't the same!" msgstr "Parolele nu corespund!" @@ -975,27 +959,27 @@ msgstr "Parolele nu corespund!" msgid "Cancel" msgstr "Renunță" -#: js/messages.php:52 pmd_save_pos.php:53 +#: js/messages.php:52 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "Modificările au fost salvate" -#: js/messages.php:53 pmd_relation_upd.php:48 +#: js/messages.php:53 pmd_relation_upd.php:47 msgid "Relation deleted" msgstr "Relație ștearsă" -#: js/messages.php:54 pmd_relation_new.php:63 +#: js/messages.php:54 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "FOREIGN KEY relation added" -#: js/messages.php:55 pmd_relation_new.php:85 +#: js/messages.php:55 pmd_relation_new.php:84 msgid "Internal relation added" msgstr "Relație internă adăugată" -#: js/messages.php:56 pmd_relation_new.php:62 pmd_relation_new.php:87 +#: js/messages.php:56 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "Eroare: Relația nu a fost adăugată." -#: js/messages.php:57 pmd_relation_new.php:30 +#: js/messages.php:57 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "Eroare: relația deja există." @@ -1003,13 +987,13 @@ msgstr "Eroare: relația deja există." msgid "Error saving coordinates for Designer." msgstr "Eroare la salvarea coordonatelor pentru Designer." -#: js/messages.php:59 libraries/relation.lib.php:94 -#: libraries/relation.lib.php:106 +#: js/messages.php:59 libraries/relation.lib.php:89 +#: libraries/relation.lib.php:101 msgid "General relation features" msgstr "Facilități generale" -#: js/messages.php:59 libraries/relation.lib.php:88 -#: libraries/relation.lib.php:95 +#: js/messages.php:59 libraries/relation.lib.php:83 +#: libraries/relation.lib.php:90 msgid "Disabled" msgstr "Dezactivat" @@ -1025,7 +1009,7 @@ msgstr "Alegeți cheia străină" msgid "Please select the primary key or a unique key" msgstr "Vă rugăm să alegeți cheia primară sau o cheie unică" -#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:547 +#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" @@ -1055,10 +1039,10 @@ msgid "Prev" msgstr "Anterior" #. l10n: Display text for next month link in calendar -#: js/messages.php:81 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:337 -#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:422 -#: tbl_structure.php:800 +#: js/messages.php:81 libraries/common.lib.php:2358 +#: libraries/common.lib.php:2361 libraries/display_tbl.lib.php:336 +#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 +#: tbl_structure.php:798 msgid "Next" msgstr "Următorul" @@ -1132,27 +1116,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1562 +#: js/messages.php:101 libraries/common.lib.php:1566 msgid "Jan" msgstr "Ian" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1564 +#: js/messages.php:103 libraries/common.lib.php:1568 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1566 +#: js/messages.php:105 libraries/common.lib.php:1570 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1568 +#: js/messages.php:107 libraries/common.lib.php:1572 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1570 +#: js/messages.php:109 libraries/common.lib.php:1574 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1160,37 +1144,37 @@ msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1572 +#: js/messages.php:111 libraries/common.lib.php:1576 msgid "Jun" msgstr "Iun" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1574 +#: js/messages.php:113 libraries/common.lib.php:1578 msgid "Jul" msgstr "Iul" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1576 +#: js/messages.php:115 libraries/common.lib.php:1580 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1578 +#: js/messages.php:117 libraries/common.lib.php:1582 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1580 +#: js/messages.php:119 libraries/common.lib.php:1584 msgid "Oct" msgstr "Oct" #. l10n: Short month name -#: js/messages.php:121 libraries/common.lib.php:1582 +#: js/messages.php:121 libraries/common.lib.php:1586 msgid "Nov" msgstr "Noi" #. l10n: Short month name -#: js/messages.php:123 libraries/common.lib.php:1584 +#: js/messages.php:123 libraries/common.lib.php:1588 msgid "Dec" msgstr "Dec" @@ -1231,37 +1215,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1587 +#: js/messages.php:136 libraries/common.lib.php:1591 msgid "Sun" msgstr "Dum" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1589 +#: js/messages.php:138 libraries/common.lib.php:1593 msgid "Mon" msgstr "Lun" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1591 +#: js/messages.php:140 libraries/common.lib.php:1595 msgid "Tue" msgstr "Mar" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1593 +#: js/messages.php:142 libraries/common.lib.php:1597 msgid "Wed" msgstr "Mie" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1595 +#: js/messages.php:144 libraries/common.lib.php:1599 msgid "Thu" msgstr "Joi" #. l10n: Short week day name -#: js/messages.php:146 libraries/common.lib.php:1597 +#: js/messages.php:146 libraries/common.lib.php:1601 msgid "Fri" msgstr "Vin" #. l10n: Short week day name -#: js/messages.php:148 libraries/common.lib.php:1599 +#: js/messages.php:148 libraries/common.lib.php:1603 msgid "Sat" msgstr "Sâm" @@ -1341,16 +1325,11 @@ msgstr "pe secundă" msgid "Font size" msgstr "Dimensiune font" -#: libraries/File.class.php:336 libraries/File.class.php:424 -#: libraries/File.class.php:561 libraries/File.class.php:700 -msgid "Unknown error in file upload." -msgstr "Eroare necunoscută la încărcarea fișierului." - -#: libraries/File.class.php:406 +#: libraries/File.class.php:315 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:409 +#: libraries/File.class.php:318 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -1358,59 +1337,63 @@ msgstr "" "Fișierul încărcat depășește directiva MAX_FILE_SIZE specificată în " "formularul HTML." -#: libraries/File.class.php:412 +#: libraries/File.class.php:321 msgid "The uploaded file was only partially uploaded." msgstr "Fișierul a fost încărcat numai parțial." -#: libraries/File.class.php:415 +#: libraries/File.class.php:324 msgid "Missing a temporary folder." msgstr "Lipsește un dosar temporar." -#: libraries/File.class.php:418 +#: libraries/File.class.php:327 msgid "Failed to write file to disk." msgstr "Eșec la scrierea fișierului pe disc." -#: libraries/File.class.php:421 +#: libraries/File.class.php:330 msgid "File upload stopped by extension." msgstr "Încărcarea fișierului a fost împiedicată de extensie." -#: libraries/File.class.php:898 +#: libraries/File.class.php:333 +msgid "Unknown error in file upload." +msgstr "Eroare necunoscută la încărcarea fișierului." + +#: libraries/File.class.php:624 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:427 tbl_relation.php:528 +#: libraries/Index.class.php:427 tbl_relation.php:526 msgid "No index defined!" msgstr "Index nu este definit!" -#: libraries/Index.class.php:432 server_databases.php:131 tbl_tracking.php:315 +#: libraries/Index.class.php:432 server_databases.php:129 tbl_tracking.php:310 msgid "Indexes" msgstr "Indexuri" #: libraries/Index.class.php:443 libraries/mult_submits.inc.php:102 -#: libraries/tbl_properties.inc.php:518 tbl_structure.php:32 -#: tbl_structure.php:154 tbl_structure.php:158 tbl_structure.php:473 -#: tbl_tracking.php:321 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:31 +#: tbl_structure.php:153 tbl_structure.php:157 tbl_structure.php:471 +#: tbl_tracking.php:316 msgid "Unique" msgstr "Unic" -#: libraries/Index.class.php:444 tbl_tracking.php:322 +#: libraries/Index.class.php:444 tbl_tracking.php:317 msgid "Packed" msgstr "Împachetat" -#: libraries/Index.class.php:446 tbl_tracking.php:324 +#: libraries/Index.class.php:446 tbl_tracking.php:319 msgid "Cardinality" msgstr "Cardinalitate" -#: libraries/Index.class.php:449 tbl_tracking.php:278 tbl_tracking.php:327 +#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322 msgid "Comment" msgstr "Comentariu" #: libraries/Index.class.php:465 libraries/common.lib.php:609 -#: libraries/common.lib.php:1198 libraries/display_tbl.lib.php:1116 +#: libraries/common.lib.php:1191 libraries/display_tbl.lib.php:1115 #: libraries/import.lib.php:1119 libraries/import.lib.php:1143 -#: pdf_pages.php:284 setup/frames/index.inc.php:124 +#: pdf_pages.php:283 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:349 tbl_row_action.php:68 msgid "Edit" msgstr "Editare" @@ -1432,15 +1415,15 @@ msgid "" 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/server_links.inc.php:40 -#: server_databases.php:87 server_privileges.php:1652 +#: server_databases.php:85 server_privileges.php:1656 #: setup/lib/messages.inc.php:107 test/theme.php:92 msgid "Databases" msgstr "Baze de date" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:259 libraries/import.lib.php:134 pdf_schema.php:31 -#: pdf_schema.php:231 tbl_change.php:1023 tbl_operations.php:212 -#: tbl_relation.php:289 view_operations.php:61 +#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 +#: tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Eroare" @@ -1471,42 +1454,42 @@ 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/StorageEngine.class.php:196 +#: libraries/StorageEngine.class.php:194 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:352 +#: libraries/StorageEngine.class.php:354 #, php-format msgid "%s is available on this MySQL server." msgstr "%s este disponibil pentru acest server MySQL." -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:357 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s a fost dezactivat pentru acest server MySQL." -#: libraries/StorageEngine.class.php:359 +#: libraries/StorageEngine.class.php:361 #, 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:1018 +#: libraries/Table.class.php:1017 msgid "Invalid database" msgstr "Bază de date nevalidă" -#: libraries/Table.class.php:1032 tbl_get_field.php:25 +#: libraries/Table.class.php:1031 tbl_get_field.php:25 msgid "Invalid table name" msgstr "Denumire de tabel nevalidă" -#: libraries/Table.class.php:1047 +#: libraries/Table.class.php:1046 #, 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:1131 +#: libraries/Table.class.php:1129 #, php-format msgid "Table %s has been renamed to %s" msgstr "Tabelului %s i s-a dat un numele de %s" @@ -1524,22 +1507,22 @@ msgstr "Nici o previzualizare disponibilă." msgid "take it" msgstr "alege" -#: libraries/Theme_Manager.class.php:114 +#: 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:152 +#: 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:220 +#: 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:296 test/theme.php:160 themes.php:20 +#: libraries/Theme_Manager.class.php:291 test/theme.php:160 themes.php:20 #: themes.php:40 msgid "Theme / Style" msgstr "Șablon/stil" @@ -1655,19 +1638,19 @@ msgstr "No valid authentication key plugged" msgid "Authenticating..." msgstr "Authenticating..." -#: libraries/blobstreaming.lib.php:689 +#: libraries/blobstreaming.lib.php:340 msgid "View image" msgstr "Vizualizează imaginea" -#: libraries/blobstreaming.lib.php:693 +#: libraries/blobstreaming.lib.php:344 msgid "Play audio" msgstr "Redă audio" -#: libraries/blobstreaming.lib.php:698 +#: libraries/blobstreaming.lib.php:349 msgid "View video" msgstr "Vizualizează video" -#: libraries/blobstreaming.lib.php:702 +#: libraries/blobstreaming.lib.php:353 msgid "Download file" msgstr "Descarcă fișierul" @@ -1724,7 +1707,7 @@ msgstr "Server" msgid "Invalid authentication method set in configuration:" msgstr "Metodă de autentificare nevalidă stabilită în configurație:" -#: libraries/common.inc.php:909 +#: libraries/common.inc.php:908 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Ar trebui sa reactualizati serverul %s %s la o versiune mai noua." @@ -1750,7 +1733,8 @@ msgstr "en" #: libraries/common.lib.php:425 libraries/common.lib.php:427 #: libraries/common.lib.php:429 libraries/common.lib.php:445 #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 -#: libraries/display_export.lib.php:163 libraries/relation.lib.php:84 +#: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 +#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 #: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" @@ -1765,149 +1749,149 @@ msgstr "Comanda SQL" msgid "MySQL said: " msgstr "MySQL zice: " -#: libraries/common.lib.php:1136 +#: libraries/common.lib.php:1129 #, fuzzy msgid "Failed to connect to SQL validator!" msgstr "Comprimă conexiunea la serverul MySQL" -#: libraries/common.lib.php:1174 setup/lib/messages.inc.php:350 +#: libraries/common.lib.php:1167 setup/lib/messages.inc.php:350 msgid "Explain SQL" msgstr "Explică SQL" -#: libraries/common.lib.php:1177 +#: libraries/common.lib.php:1170 msgid "Skip Explain SQL" msgstr "Sari peste explicarea SQL" -#: libraries/common.lib.php:1211 +#: libraries/common.lib.php:1204 msgid "Without PHP Code" msgstr "fără cod PHP" -#: libraries/common.lib.php:1214 setup/lib/messages.inc.php:352 +#: libraries/common.lib.php:1207 setup/lib/messages.inc.php:352 msgid "Create PHP Code" msgstr "Creează cod PHP" -#: libraries/common.lib.php:1232 server_status.php:451 +#: libraries/common.lib.php:1225 server_status.php:451 #: setup/lib/messages.inc.php:351 msgid "Refresh" msgstr "Reîncarcă" -#: libraries/common.lib.php:1241 +#: libraries/common.lib.php:1234 msgid "Skip Validate SQL" msgstr "Sari peste validarea SQL" -#: libraries/common.lib.php:1244 setup/lib/messages.inc.php:353 +#: libraries/common.lib.php:1237 setup/lib/messages.inc.php:353 msgid "Validate SQL" msgstr "Validează SQL" -#: libraries/common.lib.php:1283 +#: libraries/common.lib.php:1287 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1285 +#: libraries/common.lib.php:1289 #, fuzzy #| msgid "Engines" msgid "Inline" msgstr "Motoare" -#: libraries/common.lib.php:1339 libraries/common.lib.php:1354 +#: libraries/common.lib.php:1343 libraries/common.lib.php:1358 msgid "Profiling" msgstr "Creare profil" -#: libraries/common.lib.php:1358 libraries/tbl_triggers.lib.php:27 +#: libraries/common.lib.php:1362 libraries/tbl_triggers.lib.php:27 #: server_processlist.php:57 msgid "Time" msgstr "Timp" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "B" msgstr "octeți" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "KiB" msgstr "KiO" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "MiB" msgstr "MiO" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "GiB" msgstr "GiO" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "TiB" msgstr "TiO" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "PiB" msgstr "PiO" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "EiB" msgstr "EiO" #. l10n: Thousands separator -#: libraries/common.lib.php:1424 +#: libraries/common.lib.php:1428 msgid "," msgstr "," #. l10n: Decimal separator -#: libraries/common.lib.php:1426 +#: libraries/common.lib.php:1430 msgid "." msgstr "." #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1603 +#: libraries/common.lib.php:1607 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y la %H:%M" -#: libraries/common.lib.php:1909 +#: libraries/common.lib.php:1913 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s zile, %s ore, %s minute și %s secunde" -#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 -#: libraries/display_tbl.lib.php:289 server_status.php:718 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 +#: libraries/display_tbl.lib.php:288 server_status.php:718 msgid "Begin" msgstr "Începe" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 -#: libraries/display_tbl.lib.php:290 server_binlog.php:154 +#: libraries/common.lib.php:2328 libraries/common.lib.php:2331 +#: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "Anterior" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 -#: libraries/display_tbl.lib.php:352 +#: libraries/common.lib.php:2359 libraries/common.lib.php:2362 +#: libraries/display_tbl.lib.php:351 msgid "End" msgstr "Sfîrșit" -#: libraries/common.lib.php:2429 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "Sari la baza de date "%s"." -#: libraries/common.lib.php:2448 +#: libraries/common.lib.php:2453 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Funcționalitatea %s este afectată de o eroare cunoscută, vedeți %s" -#: libraries/common.lib.php:2828 libraries/common.lib.php:2835 -#: libraries/db_links.inc.php:67 libraries/export/sql.php:24 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 +#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 -#: libraries/tbl_links.inc.php:59 querywindow.php:89 test/theme.php:96 +#: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2837 libraries/db_links.inc.php:103 -#: libraries/tbl_links.inc.php:94 libraries/tbl_links.inc.php:116 -#: view_operations.php:88 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: view_operations.php:87 msgid "Operations" msgstr "Operații" -#: libraries/core.lib.php:282 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1923,38 +1907,38 @@ msgstr "Evenimente" msgid "Name" msgstr "Nume" -#: libraries/db_links.inc.php:44 +#: libraries/db_links.inc.php:43 #, php-format msgid "Database %s has been dropped." msgstr "Baza de date %s a fost aruncată." -#: libraries/db_links.inc.php:56 libraries/db_links.inc.php:57 -#: libraries/db_links.inc.php:58 +#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 +#: libraries/db_links.inc.php:57 msgid "Database seems to be empty!" msgstr "Baza de date pare a fi goală!" -#: libraries/db_links.inc.php:80 libraries/relation.lib.php:142 -#: libraries/tbl_links.inc.php:68 +#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:85 +#: libraries/db_links.inc.php:84 msgid "Query" msgstr "Interogare prin exemplu" -#: libraries/db_links.inc.php:90 libraries/relation.lib.php:138 +#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 msgid "Designer" msgstr "Designer" -#: libraries/db_links.inc.php:97 libraries/server_links.inc.php:87 -#: libraries/tbl_links.inc.php:90 pmd_pdf.php:83 pmd_pdf.php:109 +#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importă" -#: libraries/db_links.inc.php:110 libraries/server_links.inc.php:65 -#: server_privileges.php:111 server_privileges.php:1714 -#: server_privileges.php:2063 test/theme.php:116 +#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: server_privileges.php:110 server_privileges.php:1718 +#: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" msgstr "Drepturi de acces" @@ -1966,14 +1950,14 @@ msgstr "Rutine" msgid "Return type" msgstr "Tipul întors" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1847 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1806 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "Poate fi aproximativ. Vezi FAQ 3.11" -#: libraries/db_structure.lib.php:60 server_databases.php:141 -#: tbl_printview.php:334 tbl_structure.php:681 +#: libraries/db_structure.lib.php:60 server_databases.php:139 +#: tbl_printview.php:333 tbl_structure.php:679 msgid "Overhead" msgstr "Asupra" @@ -1990,7 +1974,7 @@ msgstr "Serverul nu răspunde" 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:358 tbl_structure.php:607 +#: libraries/dbi/mysql.dbi.lib.php:358 tbl_structure.php:605 msgid "Details..." msgstr "Detalii..." @@ -2000,22 +1984,22 @@ msgid "Change password" msgstr "Schimbare parolă" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:807 +#: libraries/replication_gui.lib.php:347 server_privileges.php:806 msgid "No Password" msgstr "Nu există parolă" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1530 server_synchronize.php:1174 +#: libraries/replication_gui.lib.php:351 server_privileges.php:795 +#: server_privileges.php:799 server_privileges.php:810 +#: server_privileges.php:1534 server_synchronize.php:1173 msgid "Password" msgstr "Parola" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:815 server_privileges.php:818 +#: server_privileges.php:814 server_privileges.php:817 msgid "Re-type" msgstr "Re-tastează" @@ -2038,8 +2022,8 @@ msgstr "Creează bază de date nouă" msgid "Create" msgstr "Creează" -#: libraries/display_create_database.lib.php:39 server_privileges.php:113 -#: server_privileges.php:1419 server_replication.php:34 +#: libraries/display_create_database.lib.php:39 server_privileges.php:112 +#: server_privileges.php:1423 server_replication.php:33 msgid "No Privileges" msgstr "Nu există drepturi de acces" @@ -2060,52 +2044,52 @@ msgstr "Creează tabel nou în baza de date %s" msgid "Number of columns" msgstr "Număr de cîmpuri" -#: libraries/display_export.lib.php:41 +#: libraries/display_export.lib.php:35 msgid "Could not load export plugins, please check your installation!" msgstr "" "Nu au putut fi încărcate modulele de export adiționale, vă rog verificați " "instalarea!" -#: libraries/display_export.lib.php:106 +#: libraries/display_export.lib.php:100 #, fuzzy, php-format #| msgid "Dump %s row(s) starting at record # %s" msgid "Dump %s row(s) starting at row # %s" msgstr "Aruncă %s rînduri, începînd de la rîndul %s." -#: libraries/display_export.lib.php:114 +#: libraries/display_export.lib.php:108 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:124 setup/lib/messages.inc.php:79 +#: libraries/display_export.lib.php:118 setup/lib/messages.inc.php:79 msgid "Save as file" msgstr "Trimite" -#: libraries/display_export.lib.php:133 +#: libraries/display_export.lib.php:127 #, php-format msgid "Save on server in %s directory" msgstr "Salveaza pe server în directorul %s" -#: libraries/display_export.lib.php:141 setup/lib/messages.inc.php:87 +#: libraries/display_export.lib.php:135 setup/lib/messages.inc.php:87 msgid "Overwrite existing file(s)" msgstr "Suprascrie fișier(e) existent(e)" -#: libraries/display_export.lib.php:147 +#: libraries/display_export.lib.php:141 msgid "File name template" msgstr "Șablon nume fișier" -#: libraries/display_export.lib.php:151 +#: libraries/display_export.lib.php:145 msgid "server name" msgstr "nume server" -#: libraries/display_export.lib.php:154 +#: libraries/display_export.lib.php:148 msgid "database name" msgstr "nume bază de date" -#: libraries/display_export.lib.php:157 +#: libraries/display_export.lib.php:151 msgid "table name" msgstr "nume tabel" -#: libraries/display_export.lib.php:161 +#: libraries/display_export.lib.php:155 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2116,39 +2100,39 @@ msgstr "" "formatting strings. Additionally the following transformations will happen: " "%3$s. Other text will be kept as is." -#: libraries/display_export.lib.php:202 +#: libraries/display_export.lib.php:196 msgid "remember template" msgstr "ține minte șablonul" -#: libraries/display_export.lib.php:210 libraries/display_import.lib.php:177 +#: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 #: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 msgid "Character set of the file:" msgstr "Setul de caractere al fișierului:" -#: libraries/display_export.lib.php:235 setup/lib/messages.inc.php:81 +#: libraries/display_export.lib.php:229 setup/lib/messages.inc.php:81 msgid "Compression" msgstr "Compresie" -#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:196 -#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:529 -#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:574 -#: server_privileges.php:1867 server_processlist.php:74 +#: libraries/display_export.lib.php:234 libraries/display_import.lib.php:196 +#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:528 +#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:573 +#: server_privileges.php:1871 server_processlist.php:74 msgid "None" msgstr "Nici unul(a)" -#: libraries/display_export.lib.php:247 +#: libraries/display_export.lib.php:241 msgid "\"zipped\"" msgstr "„arhivat”" -#: libraries/display_export.lib.php:253 +#: libraries/display_export.lib.php:247 msgid "\"gzipped\"" msgstr "cu „gzip”" -#: libraries/display_export.lib.php:259 +#: libraries/display_export.lib.php:253 msgid "\"bzipped\"" msgstr "cu „bzip2”" -#: libraries/display_export.lib.php:274 libraries/export/sql.php:42 +#: libraries/display_export.lib.php:268 libraries/export/sql.php:42 #: libraries/import/sql.php:31 msgid "SQL compatibility mode" msgstr "Regim de compatibilitate SQL" @@ -2183,12 +2167,12 @@ msgid "File uploads are not allowed on this server." msgstr "Încărcările de fișiere nu sînt permise pe acest server." #: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 -#: tbl_change.php:1024 +#: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "Directorul stabilit pentru încărcare nu poate fi găsit" #: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 -#: tbl_change.php:1027 +#: tbl_change.php:925 msgid "web server upload directory" msgstr "director de încărcare al serverului Web" @@ -2273,43 +2257,43 @@ msgstr "Mărime hîrtie" msgid "Language" msgstr "Limbă" -#: libraries/display_tbl.lib.php:303 +#: libraries/display_tbl.lib.php:302 #, php-format msgid "%d is not valid row number." msgstr "%d nu este un număr valid de rînduri." -#: libraries/display_tbl.lib.php:309 +#: libraries/display_tbl.lib.php:308 #, fuzzy #| msgid "row(s) starting from record #" msgid "row(s) starting from row #" msgstr "linii începînd cu" -#: libraries/display_tbl.lib.php:315 +#: libraries/display_tbl.lib.php:314 msgid "horizontal" msgstr "orizontal" -#: libraries/display_tbl.lib.php:316 +#: libraries/display_tbl.lib.php:315 msgid "horizontal (rotated headers)" msgstr "orizontal (colontitlu rotativ)" -#: libraries/display_tbl.lib.php:317 +#: libraries/display_tbl.lib.php:316 msgid "vertical" msgstr "vertical" -#: libraries/display_tbl.lib.php:323 +#: libraries/display_tbl.lib.php:322 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "în mod %s și repetare colontitlu după %s celule" -#: libraries/display_tbl.lib.php:345 +#: libraries/display_tbl.lib.php:344 msgid "This operation could take a long time. Proceed anyway?" msgstr "Această operație poate dura. Doriți totuși să fie executată?" -#: libraries/display_tbl.lib.php:511 +#: libraries/display_tbl.lib.php:510 msgid "Sort by key" msgstr "Sortare după cheie" -#: libraries/display_tbl.lib.php:554 libraries/export/codegen.php:38 +#: libraries/display_tbl.lib.php:553 libraries/export/codegen.php:38 #: libraries/export/csv.php:29 libraries/export/excel.php:34 #: libraries/export/htmlword.php:28 libraries/export/latex.php:32 #: libraries/export/mediawiki.php:21 libraries/export/ods.php:26 @@ -2319,99 +2303,99 @@ msgstr "Sortare după cheie" #: libraries/export/xlsx.php:26 libraries/export/xml.php:23 #: libraries/export/yaml.php:27 libraries/import.lib.php:1114 #: libraries/import.lib.php:1136 libraries/import/csv.php:31 -#: libraries/import/docsql.php:33 libraries/import/ldi.php:46 +#: libraries/import/docsql.php:32 libraries/import/ldi.php:46 #: libraries/import/ods.php:30 libraries/import/sql.php:19 #: libraries/import/xls.php:25 libraries/import/xlsx.php:25 -#: libraries/import/xml.php:25 tbl_select.php:264 tbl_structure.php:752 +#: libraries/import/xml.php:25 tbl_select.php:263 tbl_structure.php:750 msgid "Options" msgstr "Opțiuni" -#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:569 +#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:568 msgid "Partial Texts" msgstr "Texte parțiale" -#: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:573 +#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:572 msgid "Full Texts" msgstr "Texte întregi" -#: libraries/display_tbl.lib.php:586 +#: libraries/display_tbl.lib.php:585 msgid "Relational key" msgstr "Cheie relațională" -#: libraries/display_tbl.lib.php:587 +#: libraries/display_tbl.lib.php:586 #, fuzzy #| msgid "Relational display field" msgid "Relational display column" msgstr "Relational display field" -#: libraries/display_tbl.lib.php:594 +#: libraries/display_tbl.lib.php:593 msgid "Show binary contents" msgstr "" -#: libraries/display_tbl.lib.php:596 +#: libraries/display_tbl.lib.php:595 msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:598 +#: libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "" -#: libraries/display_tbl.lib.php:606 pmd_general.php:140 tbl_change.php:312 -#: tbl_change.php:318 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:307 +#: tbl_change.php:313 msgid "Hide" msgstr "Ascunde" -#: libraries/display_tbl.lib.php:606 libraries/relation.lib.php:122 -#: libraries/tbl_properties.inc.php:143 transformation_overview.php:46 +#: libraries/display_tbl.lib.php:605 libraries/relation.lib.php:117 +#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46 msgid "Browser transformation" msgstr "Transformare navigator" -#: libraries/display_tbl.lib.php:1125 libraries/display_tbl.lib.php:1129 -#: libraries/display_tbl.lib.php:1131 +#: libraries/display_tbl.lib.php:1124 libraries/display_tbl.lib.php:1128 +#: libraries/display_tbl.lib.php:1130 msgid "Execute bookmarked query" msgstr "Executare comandă marcată" -#: libraries/display_tbl.lib.php:1144 libraries/display_tbl.lib.php:1156 +#: libraries/display_tbl.lib.php:1143 libraries/display_tbl.lib.php:1155 msgid "The row has been deleted" msgstr "Linia a fost ștearsă" -#: libraries/display_tbl.lib.php:1183 libraries/display_tbl.lib.php:2055 +#: libraries/display_tbl.lib.php:1182 libraries/display_tbl.lib.php:2014 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "Oprește" -#: libraries/display_tbl.lib.php:1933 +#: libraries/display_tbl.lib.php:1892 msgid "in query" msgstr "în interogarea" -#: libraries/display_tbl.lib.php:1951 +#: libraries/display_tbl.lib.php:1910 msgid "Showing rows" msgstr "Afișează înregistrări" -#: libraries/display_tbl.lib.php:1961 +#: libraries/display_tbl.lib.php:1920 msgid "total" msgstr "total" -#: libraries/display_tbl.lib.php:1969 sql.php:523 +#: libraries/display_tbl.lib.php:1928 sql.php:522 #, php-format msgid "Query took %01.4f sec" msgstr "comanda a durat %01.4f sec" -#: libraries/display_tbl.lib.php:2088 libraries/mult_submits.inc.php:112 -#: querywindow.php:115 querywindow.php:119 querywindow.php:122 -#: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:469 +#: libraries/display_tbl.lib.php:2047 libraries/mult_submits.inc.php:112 +#: querywindow.php:114 querywindow.php:118 querywindow.php:121 +#: tbl_structure.php:23 tbl_structure.php:148 tbl_structure.php:467 msgid "Change" msgstr "Schimbare" -#: libraries/display_tbl.lib.php:2158 +#: libraries/display_tbl.lib.php:2117 msgid "Query results operations" msgstr "Operațiuni asupra rezultatelor interogării" -#: libraries/display_tbl.lib.php:2186 +#: libraries/display_tbl.lib.php:2145 msgid "Print view (with full texts)" msgstr "Vizualizare listare (împreună cu text)" -#: libraries/display_tbl.lib.php:2359 +#: libraries/display_tbl.lib.php:2318 msgid "Link not found" msgstr "Legatură nevalidă" @@ -2467,9 +2451,9 @@ msgstr "Stare InnoDB" msgid "Buffer Pool Usage" msgstr "Buffer Pool Usage" -#: libraries/engines/innodb.lib.php:168 server_databases.php:136 -#: server_databases.php:304 server_status.php:524 server_status.php:585 -#: server_status.php:606 tbl_printview.php:349 tbl_structure.php:695 +#: libraries/engines/innodb.lib.php:168 server_databases.php:134 +#: server_databases.php:302 server_status.php:524 server_status.php:585 +#: server_status.php:606 tbl_printview.php:348 tbl_structure.php:693 msgid "Total" msgstr "Total" @@ -2607,6 +2591,88 @@ msgstr "" "Tamponul alocat la sortarea indexurilor MyISAM în timpul unei operațiuni " "REPAIR TABLE sau la crearea indexurilor cu CREATE INDEX sau ALTER TABLE." +#: libraries/engines/pbms.lib.php:31 +#, fuzzy +#| msgid "Garbage threshold" +msgid "Garbage Threshold" +msgstr "Prag gunoi" + +#: libraries/engines/pbms.lib.php:32 +#, fuzzy +#| msgid "" +#| "The percentage of garbage in a data log file before it is compacted. This " +#| "is a value between 1 and 99. The default is 50." +msgid "The percentage of garbage in a repository file before it is compacted." +msgstr "" +"The percentage of garbage in a data log file before it is compacted. This is " +"a value between 1 and 99. The default is 50." + +#: libraries/engines/pbms.lib.php:36 libraries/replication_gui.lib.php:69 +#: server_synchronize.php:1161 +#, fuzzy +msgid "Port" +msgstr "Sortare" + +#: libraries/engines/pbms.lib.php:37 +msgid "" +"The port for the PBMS stream-based communications. Setting this value to 0 " +"will disable HTTP communication with the daemon." +msgstr "" + +#: libraries/engines/pbms.lib.php:41 +msgid "Repository Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:42 +msgid "" +"The maximum size of a BLOB repository file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:46 +msgid "Temp Blob Timeout" +msgstr "" + +#: libraries/engines/pbms.lib.php:47 +msgid "" +"The timeout, in seconds, for temporary BLOBs. Uploaded BLOB data is removed " +"after this time, unless they are referenced by a record in the database." +msgstr "" + +#: libraries/engines/pbms.lib.php:51 +#, fuzzy +#| msgid "Log file threshold" +msgid "Temp Log Threshold" +msgstr "Prag fișiere-jurnal" + +#: libraries/engines/pbms.lib.php:52 +msgid "" +"The maximum size of a temporary BLOB log file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:56 +msgid "Max Keep Alive" +msgstr "" + +#: libraries/engines/pbms.lib.php:57 +msgid "" +"The timeout for inactive connection with the keep-alive flag set. After this " +"time the connection will be closed. The time-out is in milliseconds (1/1000)." +msgstr "" + +#: libraries/engines/pbms.lib.php:61 +msgid "Metadata Headers" +msgstr "" + +#: libraries/engines/pbms.lib.php:62 +msgid "" +"A \":\" delimited list of metadata headers to be used to initialize the " +"pbms_metadata_header table when a database is created." +msgstr "" + #: libraries/engines/pbxt.lib.php:22 msgid "Index cache size" msgstr "Dimensiune cache index" @@ -2756,7 +2822,7 @@ msgstr "" "number." #: libraries/export/codegen.php:36 setup/lib/messages.inc.php:85 -#: tbl_printview.php:374 tbl_structure.php:736 +#: tbl_printview.php:373 tbl_structure.php:734 msgid "Format" msgstr "Format" @@ -2827,9 +2893,9 @@ msgstr "Microsoft Word 2000" #: libraries/export/htmlword.php:23 libraries/export/latex.php:59 #: libraries/export/latex.php:205 libraries/export/odt.php:47 #: libraries/export/sql.php:105 libraries/export/sql.php:865 -#: libraries/export/texytext.php:27 server_databases.php:126 -#: server_privileges.php:576 server_replication.php:315 tbl_printview.php:315 -#: tbl_structure.php:664 +#: libraries/export/texytext.php:27 server_databases.php:124 +#: server_privileges.php:575 server_replication.php:314 tbl_printview.php:314 +#: tbl_structure.php:662 msgid "Data" msgstr "Date" @@ -2844,7 +2910,6 @@ msgid "Table structure for table" msgstr "Structura de tabel pentru tabelul" #: libraries/export/latex.php:13 -#| msgid "Content of table __TABLE__" msgid "Content of table @TABLE@" msgstr "Conținutul tabelului @TABLE@" @@ -2853,7 +2918,6 @@ msgid "(continued)" msgstr "(continuare)" #: libraries/export/latex.php:15 -#| msgid "Structure of table __TABLE__" msgid "Structure of table @TABLE@" msgstr "Structura tabelului @TABLE@" @@ -2878,13 +2942,13 @@ msgid "Label key" msgstr "Tasta label" #: libraries/export/latex.php:46 libraries/export/odt.php:34 -#: libraries/export/sql.php:90 tbl_relation.php:398 +#: libraries/export/sql.php:90 tbl_relation.php:396 msgid "Relations" msgstr "Legături" #: libraries/export/latex.php:52 libraries/export/odt.php:40 #: libraries/export/odt.php:317 libraries/export/sql.php:94 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "Tip MIME" @@ -2892,10 +2956,10 @@ msgstr "Tip MIME" #: libraries/export/xml.php:101 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1529 server_privileges.php:2061 -#: server_processlist.php:54 server_synchronize.php:1158 +#: libraries/replication_gui.lib.php:331 server_privileges.php:730 +#: server_privileges.php:733 server_privileges.php:789 +#: server_privileges.php:1533 server_privileges.php:2065 +#: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "Gazda" @@ -3088,8 +3152,8 @@ msgstr "Modul de export" msgid "Export contents" msgstr "Modul de export" -#: libraries/footer.inc.php:182 libraries/footer.inc.php:193 -#: libraries/footer.inc.php:196 +#: libraries/footer.inc.php:180 libraries/footer.inc.php:191 +#: libraries/footer.inc.php:194 msgid "Open new phpMyAdmin window" msgstr "Deschide fereastră phpMyAdmin nouă" @@ -3106,7 +3170,7 @@ msgstr "Rezultat SQL" msgid "Generated by" msgstr "Generat de" -#: libraries/import.lib.php:151 sql.php:519 tbl_change.php:180 +#: libraries/import.lib.php:151 sql.php:518 tbl_change.php:175 #: 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)." @@ -3165,7 +3229,7 @@ msgstr "Ignoră rînduri duplicate" msgid "Column names in first row" msgstr "" -#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:501 +#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:500 #: view_create.php:147 msgid "Column names" msgstr "Denumirile coloanelor" @@ -3192,12 +3256,12 @@ msgstr "Invalid format of CSV input on line %d." msgid "Invalid column count in CSV input on line %d." msgstr "Invalid field count in CSV input on line %d." -#: libraries/import/docsql.php:28 +#: libraries/import/docsql.php:27 msgid "DocSQL" msgstr "DocSQL" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 -#: server_synchronize.php:427 server_synchronize.php:870 +#: libraries/import/docsql.php:30 libraries/tbl_properties.inc.php:616 +#: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "Denumire tabel" @@ -3254,26 +3318,26 @@ msgstr "Nici unul(a)" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:512 -#: tbl_structure.php:28 tbl_structure.php:152 tbl_structure.php:156 -#: tbl_structure.php:472 +#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:511 +#: tbl_structure.php:27 tbl_structure.php:151 tbl_structure.php:155 +#: tbl_structure.php:470 msgid "Primary" msgstr "Primar" #: libraries/mult_submits.inc.php:97 libraries/tbl_properties.inc.php:115 -#: libraries/tbl_properties.inc.php:524 tbl_printview.php:324 -#: tbl_structure.php:30 tbl_structure.php:153 tbl_structure.php:157 -#: tbl_structure.php:474 tbl_structure.php:672 +#: libraries/tbl_properties.inc.php:523 tbl_printview.php:323 +#: tbl_structure.php:29 tbl_structure.php:152 tbl_structure.php:156 +#: tbl_structure.php:472 tbl_structure.php:670 msgid "Index" msgstr "Index" -#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:530 -#: tbl_structure.php:34 tbl_structure.php:155 tbl_structure.php:159 -#: tbl_structure.php:477 +#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:529 +#: tbl_structure.php:33 tbl_structure.php:154 tbl_structure.php:158 +#: tbl_structure.php:475 msgid "Fulltext" msgstr "Tot textul" -#: libraries/mult_submits.inc.php:434 tbl_replace.php:330 +#: libraries/mult_submits.inc.php:433 tbl_replace.php:330 msgid "No change" msgstr "Nici o schimbare" @@ -3281,190 +3345,190 @@ msgstr "Nici o schimbare" msgid "Charset" msgstr "Set de caractere" -#: libraries/mysql_charsets.lib.php:210 libraries/mysql_charsets.lib.php:411 -#: tbl_change.php:515 +#: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 +#: tbl_change.php:510 msgid "Binary" msgstr "Binar" -#: libraries/mysql_charsets.lib.php:222 +#: libraries/mysql_charsets.lib.php:214 msgid "Bulgarian" msgstr "Bulgar" -#: libraries/mysql_charsets.lib.php:226 libraries/mysql_charsets.lib.php:351 +#: libraries/mysql_charsets.lib.php:218 libraries/mysql_charsets.lib.php:343 msgid "Simplified Chinese" msgstr "Chineză simplificată" -#: libraries/mysql_charsets.lib.php:228 libraries/mysql_charsets.lib.php:371 +#: libraries/mysql_charsets.lib.php:220 libraries/mysql_charsets.lib.php:363 msgid "Traditional Chinese" msgstr "Chineza Traditionala" -#: libraries/mysql_charsets.lib.php:232 libraries/mysql_charsets.lib.php:418 +#: libraries/mysql_charsets.lib.php:224 libraries/mysql_charsets.lib.php:410 msgid "case-insensitive" msgstr "insensibil la registru" -#: libraries/mysql_charsets.lib.php:235 libraries/mysql_charsets.lib.php:420 +#: libraries/mysql_charsets.lib.php:227 libraries/mysql_charsets.lib.php:412 msgid "case-sensitive" msgstr "sensibil la registru" -#: libraries/mysql_charsets.lib.php:238 +#: libraries/mysql_charsets.lib.php:230 msgid "Croatian" msgstr "Croat" -#: libraries/mysql_charsets.lib.php:241 +#: libraries/mysql_charsets.lib.php:233 msgid "Czech" msgstr "Ceh" -#: libraries/mysql_charsets.lib.php:244 +#: libraries/mysql_charsets.lib.php:236 msgid "Danish" msgstr "Danez" -#: libraries/mysql_charsets.lib.php:247 +#: libraries/mysql_charsets.lib.php:239 msgid "English" msgstr "Englez" -#: libraries/mysql_charsets.lib.php:250 +#: libraries/mysql_charsets.lib.php:242 msgid "Esperanto" msgstr "Esperanto" -#: libraries/mysql_charsets.lib.php:253 +#: libraries/mysql_charsets.lib.php:245 msgid "Estonian" msgstr "Estoniană" -#: libraries/mysql_charsets.lib.php:256 libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:248 libraries/mysql_charsets.lib.php:251 msgid "German" msgstr "Germană" -#: libraries/mysql_charsets.lib.php:256 +#: libraries/mysql_charsets.lib.php:248 msgid "dictionary" msgstr "dicționar" -#: libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:251 msgid "phone book" msgstr "carte de telefoane" -#: libraries/mysql_charsets.lib.php:262 +#: libraries/mysql_charsets.lib.php:254 msgid "Hungarian" msgstr "Maghiar" -#: libraries/mysql_charsets.lib.php:265 +#: libraries/mysql_charsets.lib.php:257 msgid "Icelandic" msgstr "Islandez" -#: libraries/mysql_charsets.lib.php:268 libraries/mysql_charsets.lib.php:358 +#: libraries/mysql_charsets.lib.php:260 libraries/mysql_charsets.lib.php:350 msgid "Japanese" msgstr "Japonez" -#: libraries/mysql_charsets.lib.php:271 +#: libraries/mysql_charsets.lib.php:263 msgid "Latvian" msgstr "Leton" -#: libraries/mysql_charsets.lib.php:274 +#: libraries/mysql_charsets.lib.php:266 msgid "Lithuanian" msgstr "Lituanian" -#: libraries/mysql_charsets.lib.php:277 libraries/mysql_charsets.lib.php:380 +#: libraries/mysql_charsets.lib.php:269 libraries/mysql_charsets.lib.php:372 msgid "Korean" msgstr "Coreean" -#: libraries/mysql_charsets.lib.php:280 +#: libraries/mysql_charsets.lib.php:272 msgid "Persian" msgstr "Persană" -#: libraries/mysql_charsets.lib.php:283 +#: libraries/mysql_charsets.lib.php:275 msgid "Polish" msgstr "Polononez" -#: libraries/mysql_charsets.lib.php:286 libraries/mysql_charsets.lib.php:334 +#: libraries/mysql_charsets.lib.php:278 libraries/mysql_charsets.lib.php:326 msgid "West European" msgstr "European de vest" -#: libraries/mysql_charsets.lib.php:289 +#: libraries/mysql_charsets.lib.php:281 msgid "Romanian" msgstr "Român" -#: libraries/mysql_charsets.lib.php:292 +#: libraries/mysql_charsets.lib.php:284 msgid "Slovak" msgstr "Slovacă" -#: libraries/mysql_charsets.lib.php:295 +#: libraries/mysql_charsets.lib.php:287 msgid "Slovenian" msgstr "Slovenă" -#: libraries/mysql_charsets.lib.php:298 +#: libraries/mysql_charsets.lib.php:290 msgid "Spanish" msgstr "Spaniolă" -#: libraries/mysql_charsets.lib.php:301 +#: libraries/mysql_charsets.lib.php:293 msgid "Traditional Spanish" msgstr "Spaniola traditionala" -#: libraries/mysql_charsets.lib.php:304 libraries/mysql_charsets.lib.php:401 +#: libraries/mysql_charsets.lib.php:296 libraries/mysql_charsets.lib.php:393 msgid "Swedish" msgstr "Suedez" -#: libraries/mysql_charsets.lib.php:307 libraries/mysql_charsets.lib.php:404 +#: libraries/mysql_charsets.lib.php:299 libraries/mysql_charsets.lib.php:396 msgid "Thai" msgstr "Tailandez" -#: libraries/mysql_charsets.lib.php:310 libraries/mysql_charsets.lib.php:398 +#: libraries/mysql_charsets.lib.php:302 libraries/mysql_charsets.lib.php:390 msgid "Turkish" msgstr "Turc" -#: libraries/mysql_charsets.lib.php:313 libraries/mysql_charsets.lib.php:395 +#: libraries/mysql_charsets.lib.php:305 libraries/mysql_charsets.lib.php:387 msgid "Ukrainian" msgstr "Ucrainean" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 msgid "Unicode" msgstr "Unicod" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 -#: libraries/mysql_charsets.lib.php:334 libraries/mysql_charsets.lib.php:341 -#: libraries/mysql_charsets.lib.php:363 libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 +#: libraries/mysql_charsets.lib.php:326 libraries/mysql_charsets.lib.php:333 +#: libraries/mysql_charsets.lib.php:355 libraries/mysql_charsets.lib.php:366 msgid "multilingual" msgstr "Poliglot" -#: libraries/mysql_charsets.lib.php:341 +#: libraries/mysql_charsets.lib.php:333 msgid "Central European" msgstr "European de est" -#: libraries/mysql_charsets.lib.php:346 +#: libraries/mysql_charsets.lib.php:338 msgid "Russian" msgstr "Rus" -#: libraries/mysql_charsets.lib.php:363 +#: libraries/mysql_charsets.lib.php:355 msgid "Baltic" msgstr "Baltic" -#: libraries/mysql_charsets.lib.php:368 +#: libraries/mysql_charsets.lib.php:360 msgid "Armenian" msgstr "Armean" -#: libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:366 msgid "Cyrillic" msgstr "Chirilic" -#: libraries/mysql_charsets.lib.php:377 +#: libraries/mysql_charsets.lib.php:369 msgid "Arabic" msgstr "Arab" -#: libraries/mysql_charsets.lib.php:383 +#: libraries/mysql_charsets.lib.php:375 msgid "Hebrew" msgstr "Ebraică" -#: libraries/mysql_charsets.lib.php:386 +#: libraries/mysql_charsets.lib.php:378 msgid "Georgian" msgstr "Georgiană" -#: libraries/mysql_charsets.lib.php:389 +#: libraries/mysql_charsets.lib.php:381 msgid "Greek" msgstr "Grec" -#: libraries/mysql_charsets.lib.php:392 +#: libraries/mysql_charsets.lib.php:384 msgid "Czech-Slovak" msgstr "Cehoslovac" -#: libraries/mysql_charsets.lib.php:407 libraries/mysql_charsets.lib.php:414 +#: libraries/mysql_charsets.lib.php:399 libraries/mysql_charsets.lib.php:406 msgid "unknown" msgstr "necunoscut" @@ -3490,68 +3554,68 @@ msgstr "Fereastra de comandă" msgid "This format has no options" msgstr "Acest format nu are opțiuni" -#: libraries/relation.lib.php:82 +#: libraries/relation.lib.php:77 msgid "not OK" msgstr "Nu este bine" -#: libraries/relation.lib.php:86 pmd_general.php:339 +#: libraries/relation.lib.php:81 pmd_general.php:339 msgid "OK" msgstr "E bine" -#: libraries/relation.lib.php:87 +#: libraries/relation.lib.php:82 msgid "Enabled" msgstr "Activat" -#: libraries/relation.lib.php:110 +#: libraries/relation.lib.php:105 msgid "Display Features" msgstr "Arată facilitățile" -#: libraries/relation.lib.php:116 +#: libraries/relation.lib.php:111 msgid "Creation of PDFs" msgstr "Creare PDF" -#: libraries/relation.lib.php:120 +#: libraries/relation.lib.php:115 msgid "Displaying Column Comments" msgstr "Arată comentariile coloanei" -#: libraries/relation.lib.php:125 +#: libraries/relation.lib.php:120 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "Parcurgeti documentatia pentru modul de updatare a Column_comments Table" -#: libraries/relation.lib.php:130 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 msgid "Bookmarked SQL query" msgstr "Comandă SQL salvată" -#: libraries/relation.lib.php:134 querywindow.php:99 querywindow.php:207 +#: libraries/relation.lib.php:129 querywindow.php:98 querywindow.php:205 msgid "SQL history" msgstr "Istoric SQL" -#: libraries/relation.lib.php:146 +#: libraries/relation.lib.php:141 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:148 +#: libraries/relation.lib.php:143 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" -#: libraries/relation.lib.php:149 +#: libraries/relation.lib.php:144 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:150 +#: libraries/relation.lib.php:145 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:151 +#: libraries/relation.lib.php:146 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1158 +#: libraries/relation.lib.php:1153 msgid "no description" msgstr "Nu există descriere" @@ -3559,7 +3623,7 @@ msgstr "Nu există descriere" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:53 server_replication.php:346 +#: libraries/replication_gui.lib.php:53 server_replication.php:345 msgid "Change or reconfigure master server" msgstr "" @@ -3571,17 +3635,12 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:711 -#: server_privileges.php:714 server_privileges.php:721 -#: server_synchronize.php:1170 +#: libraries/replication_gui.lib.php:261 server_privileges.php:710 +#: server_privileges.php:713 server_privileges.php:720 +#: server_synchronize.php:1169 msgid "User name" msgstr "Nume utilizator" -#: libraries/replication_gui.lib.php:69 server_synchronize.php:1162 -#, fuzzy -msgid "Port" -msgstr "Sortare" - #: libraries/replication_gui.lib.php:105 #, fuzzy msgid "Master status" @@ -3598,8 +3657,8 @@ msgid "Variable" msgstr "Variabil" #: libraries/replication_gui.lib.php:117 server_status.php:737 -#: tbl_change.php:322 tbl_printview.php:368 tbl_select.php:137 -#: tbl_structure.php:728 +#: tbl_change.php:317 tbl_printview.php:367 tbl_select.php:136 +#: tbl_structure.php:726 msgid "Value" msgstr "Valoare" @@ -3613,38 +3672,38 @@ msgid "" "this list." msgstr "" -#: libraries/replication_gui.lib.php:242 server_replication.php:193 +#: libraries/replication_gui.lib.php:242 server_replication.php:192 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:256 server_privileges.php:716 +#: libraries/replication_gui.lib.php:256 server_privileges.php:715 msgid "Any user" msgstr "Oricare utilizator" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1920 server_privileges.php:1950 +#: libraries/replication_gui.lib.php:348 server_privileges.php:716 +#: server_privileges.php:783 server_privileges.php:807 +#: server_privileges.php:1924 server_privileges.php:1954 msgid "Use text field" msgstr "Utilizare cîmp text" -#: libraries/replication_gui.lib.php:304 server_privileges.php:764 +#: libraries/replication_gui.lib.php:304 server_privileges.php:763 msgid "Any host" msgstr "Oricare gazdă" -#: libraries/replication_gui.lib.php:308 server_privileges.php:768 +#: libraries/replication_gui.lib.php:308 server_privileges.php:767 msgid "Local" msgstr "Local" -#: libraries/replication_gui.lib.php:314 server_privileges.php:773 +#: libraries/replication_gui.lib.php:314 server_privileges.php:772 msgid "This Host" msgstr "Această gazdă" -#: libraries/replication_gui.lib.php:320 server_privileges.php:779 +#: libraries/replication_gui.lib.php:320 server_privileges.php:778 msgid "Use Host Table" msgstr "Utilizare tabel gazde" -#: libraries/replication_gui.lib.php:333 server_privileges.php:792 +#: libraries/replication_gui.lib.php:333 server_privileges.php:791 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3670,8 +3729,8 @@ msgstr "Limbă necunoscută: %1$s." msgid "Servers" msgstr "Servere" -#: libraries/server_links.inc.php:52 server_engines.php:111 -#: server_engines.php:115 server_status.php:414 test/theme.php:104 +#: libraries/server_links.inc.php:52 server_engines.php:125 +#: server_engines.php:129 server_status.php:414 test/theme.php:104 msgid "Variables" msgstr "Variabile" @@ -3692,12 +3751,12 @@ msgstr "Jurnal binar" msgid "Processes" msgstr "Procese" -#: libraries/server_links.inc.php:91 server_synchronize.php:1091 -#: server_synchronize.php:1099 +#: libraries/server_links.inc.php:91 server_synchronize.php:1090 +#: server_synchronize.php:1098 msgid "Synchronize" msgstr "" -#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1109 +#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1108 #, fuzzy msgid "Source database" msgstr "Caută în baza de date" @@ -3717,7 +3776,7 @@ msgstr "Server Web" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1111 +#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1110 #, fuzzy msgid "Target database" msgstr "Caută în baza de date" @@ -3738,11 +3797,11 @@ msgstr "Execută interogare SQL asupra bazei de date %s" msgid "Columns" msgstr "Denumirile coloanelor" -#: libraries/sql_query_form.lib.php:342 sql.php:664 sql.php:665 sql.php:682 +#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "Pune semn de carte la această comandă SQL" -#: libraries/sql_query_form.lib.php:349 sql.php:676 +#: libraries/sql_query_form.lib.php:349 sql.php:669 msgid "Let every user access this bookmark" msgstr "Permite tuturor utilizatorilor să acceseze acest semn de carte" @@ -3836,12 +3895,12 @@ 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/tbl_links.inc.php:106 libraries/tbl_links.inc.php:139 -#: libraries/tbl_links.inc.php:140 +#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 +#: libraries/tbl_links.inc.php:139 msgid "Table seems to be empty!" msgstr "Tabelul pare a fi gol!" -#: libraries/tbl_links.inc.php:148 +#: libraries/tbl_links.inc.php:147 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" @@ -3876,12 +3935,12 @@ msgstr "" "Pentru valorile implicite, vă rugăm să introduceți o singură valoare, fără " "backslash, escape sau ghilimele, folosind formatul: a" -#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1263 -#: pdf_schema.php:1284 tbl_printview.php:142 tbl_structure.php:179 +#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1262 +#: pdf_schema.php:1283 tbl_printview.php:141 tbl_structure.php:178 msgid "Attributes" msgstr "Proprietăți" -#: libraries/tbl_properties.inc.php:136 +#: libraries/tbl_properties.inc.php:135 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -3890,11 +3949,11 @@ msgstr "" "Pentru lista opțiunilor de transformare disponibile și transformările MIME-" "type, apăsați pe %stransformation descriptions%s" -#: libraries/tbl_properties.inc.php:144 +#: libraries/tbl_properties.inc.php:143 msgid "Transformation options" msgstr "Opțiuni de transformare" -#: libraries/tbl_properties.inc.php:145 +#: libraries/tbl_properties.inc.php:144 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
                            If you ever need to put a backslash (\"\\\") or a single " @@ -3906,18 +3965,18 @@ msgstr "" "sau apostrof (\"'\") in aceste valori, introduceți backslash-uri (ex. '\\" "\\xyz' sau 'a\\'b')." -#: libraries/tbl_properties.inc.php:392 +#: libraries/tbl_properties.inc.php:391 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "Nici unul(a)" -#: libraries/tbl_properties.inc.php:393 +#: libraries/tbl_properties.inc.php:392 msgid "As defined:" msgstr "Conform definiției:" -#: libraries/tbl_properties.inc.php:579 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:578 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
                            Please ask the " @@ -3926,29 +3985,29 @@ msgstr "" "Nu este disponibilă nici o descriere pentru această transformare.
                            Întrebați autorul de funcțiile îndeplinite de %s." -#: libraries/tbl_properties.inc.php:725 server_engines.php:57 -#: tbl_operations.php:354 +#: libraries/tbl_properties.inc.php:724 server_engines.php:56 +#: tbl_operations.php:352 msgid "Storage Engine" msgstr "Motor de stocare" -#: libraries/tbl_properties.inc.php:754 +#: libraries/tbl_properties.inc.php:753 msgid "PARTITION definition" msgstr "Definiție PARTIȚIE" -#: libraries/tbl_properties.inc.php:775 pdf_pages.php:502 +#: libraries/tbl_properties.inc.php:774 pdf_pages.php:501 #: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214 -#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1124 tbl_indexes.php:247 -#: tbl_relation.php:565 +#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1022 tbl_indexes.php:246 +#: tbl_relation.php:563 msgid "Save" msgstr "Salveaza" -#: libraries/tbl_properties.inc.php:779 tbl_structure.php:541 +#: libraries/tbl_properties.inc.php:778 tbl_structure.php:539 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "Adaugă %s cîmp(uri)" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:535 +#: libraries/tbl_properties.inc.php:782 tbl_structure.php:533 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -4153,8 +4212,8 @@ msgstr "Interfață" msgid "Custom color" msgstr "Culoare personalizată" -#: main.php:162 pdf_pages.php:362 setup/lib/FormDisplay.tpl.php:216 -#: tbl_change.php:1173 +#: main.php:162 pdf_pages.php:361 setup/lib/FormDisplay.tpl.php:216 +#: tbl_change.php:1071 msgid "Reset" msgstr "Resetare" @@ -4162,8 +4221,8 @@ msgstr "Resetare" msgid "Protocol version" msgstr "Versiune protocol" -#: main.php:188 server_privileges.php:1381 server_privileges.php:1528 -#: server_privileges.php:1642 server_privileges.php:2060 +#: main.php:188 server_privileges.php:1385 server_privileges.php:1532 +#: server_privileges.php:1646 server_privileges.php:2064 #: server_processlist.php:53 msgid "User" msgstr "Utilizator" @@ -4247,14 +4306,23 @@ msgid "" "has been configured." msgstr "" -#: main.php:330 +#: main.php:314 +#, php-format +msgid "" +"The additional features for working with linked tables have been " +"deactivated. To find out why click %shere%s." +msgstr "" +"Opțiunile adiționale pentru folosirea tabelelor intercalate au fost " +"dezactivate. Pentru a afla de ce ... %shere%s." + +#: main.php:329 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:345 +#: main.php:344 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -4264,7 +4332,7 @@ msgstr "" "%s a serverului dumneavoastră MySQL. Această diferență poate cauza " "comportamente imprevizibile." -#: main.php:357 +#: main.php:356 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -4278,70 +4346,70 @@ msgstr "" msgid "Reload navigation frame" msgstr "Personalizează cadrul principal" -#: navigation.php:204 server_databases.php:370 server_synchronize.php:1190 +#: navigation.php:203 server_databases.php:368 server_synchronize.php:1189 msgid "No databases" msgstr "Nu sînt baze de date" -#: navigation.php:298 +#: navigation.php:297 #, fuzzy msgid "Filter" msgstr "Fișiere" -#: navigation.php:299 setup/frames/index.inc.php:218 +#: navigation.php:298 setup/frames/index.inc.php:218 #: setup/lib/messages.inc.php:41 #, fuzzy msgid "Clear" msgstr "Calendar" -#: navigation.php:330 navigation.php:331 +#: navigation.php:329 navigation.php:330 #, fuzzy #| msgid "Create table" msgctxt "short form" msgid "Create table" msgstr "Creare tabel" -#: navigation.php:333 navigation.php:495 +#: navigation.php:332 navigation.php:494 msgid "Please select a database" msgstr "Selectați baza de date" -#: pdf_pages.php:40 pdf_pages.php:46 pdf_pages.php:52 pdf_pages.php:57 +#: pdf_pages.php:39 pdf_pages.php:45 pdf_pages.php:51 pdf_pages.php:56 #, php-format msgid "%s table not found or not set in %s" msgstr "%s tabelul nu a fost găsit sau nu este stabilit în %s" -#: pdf_pages.php:265 +#: pdf_pages.php:264 msgid "Please choose a page to edit" msgstr "Selectează o pagină pentru a fi editată" -#: pdf_pages.php:303 pmd_pdf.php:113 +#: pdf_pages.php:302 pmd_pdf.php:111 msgid "Create a page" msgstr "Creează o nouă pagină" -#: pdf_pages.php:309 +#: pdf_pages.php:308 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Numărul paginii:" -#: pdf_pages.php:313 +#: pdf_pages.php:312 #, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "Așezare automată" -#: pdf_pages.php:315 +#: pdf_pages.php:314 msgid "Internal relations" msgstr "Relații interne" -#: pdf_pages.php:338 +#: pdf_pages.php:337 msgid "Select Tables" msgstr "Selectează tabele" -#: pdf_pages.php:361 +#: pdf_pages.php:360 msgid "Toggle scratchboard" msgstr "dezactivare scratchboard" -#: pdf_pages.php:524 +#: pdf_pages.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -4349,37 +4417,37 @@ msgstr "" "Pagina curentă se leagă de tabele care nu mai există. Doriți ștergerea " "acestor legături?" -#: pdf_schema.php:635 +#: pdf_schema.php:634 #, fuzzy, php-format #| msgid "The \"%s\" table doesn't exist!" msgid "The %s table doesn't exist!" msgstr "Tabelul „%s” nu există!" -#: pdf_schema.php:671 +#: pdf_schema.php:670 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Configureaza coordonatelepentru tabelul %s" -#: pdf_schema.php:994 +#: pdf_schema.php:993 #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" msgstr "Schema bazei de date \"%s\" - Pagina %s" -#: pdf_schema.php:1012 +#: pdf_schema.php:1011 msgid "No tables" msgstr "Nu există tabele" -#: pdf_schema.php:1031 pdf_schema.php:1140 +#: pdf_schema.php:1030 pdf_schema.php:1139 msgid "Relational schema" msgstr "Schema relațională" -#: pdf_schema.php:1115 +#: pdf_schema.php:1114 msgid "Table of contents" msgstr "Sumar" -#: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:145 -#: tbl_structure.php:182 tbl_tracking.php:277 +#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 +#: tbl_structure.php:181 tbl_tracking.php:272 msgid "Extra" msgstr "Extra" @@ -4391,7 +4459,7 @@ msgstr "Arată/ascunde meniul stîng" msgid "Save position" msgstr "Salvează poziție" -#: pmd_general.php:70 server_synchronize.php:428 server_synchronize.php:871 +#: pmd_general.php:70 server_synchronize.php:427 server_synchronize.php:870 msgid "Create table" msgstr "Creare tabel" @@ -4470,32 +4538,32 @@ msgstr "" "field, click the \"Choose field to display\" icon, then click on the " "appropriate field name." -#: pmd_pdf.php:62 +#: pmd_pdf.php:60 #, fuzzy msgid "Page has been created" msgstr "Tabelul %1$s a fost creat." -#: pmd_pdf.php:64 +#: pmd_pdf.php:62 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:84 +#: pmd_pdf.php:82 msgid "Export/Import to scale" msgstr "Exportă/Importă la scală" -#: pmd_pdf.php:88 +#: pmd_pdf.php:86 msgid "recommended" msgstr "recomandat" -#: pmd_pdf.php:93 +#: pmd_pdf.php:91 msgid "to/from page" msgstr "în/din pagină" -#: querywindow.php:94 +#: querywindow.php:93 msgid "Import files" msgstr "Import fișiere" -#: querywindow.php:105 +#: querywindow.php:104 msgid "All" msgstr "Toate" @@ -4541,66 +4609,66 @@ msgstr "Informație" msgid "Character Sets and Collations" msgstr "Set de caractere și gestiunea acestora" -#: server_databases.php:51 +#: server_databases.php:49 msgid "No databases selected." msgstr "Nu este selectată nici o bază de date." -#: server_databases.php:62 +#: server_databases.php:60 #, php-format msgid "%s databases have been dropped successfully." msgstr "%s baza(ele) de data(e) au fost aruncate." -#: server_databases.php:87 +#: server_databases.php:85 msgid "Databases statistics" msgstr "Statisticile bazelor de date" -#: server_databases.php:116 server_status.php:370 +#: server_databases.php:114 server_status.php:370 #: setup/lib/messages.inc.php:114 msgid "Tables" msgstr "Tabele" -#: server_databases.php:194 server_replication.php:180 -#: server_replication.php:208 +#: server_databases.php:192 server_replication.php:179 +#: server_replication.php:207 msgid "Master replication" msgstr "" -#: server_databases.php:196 server_replication.php:247 +#: server_databases.php:194 server_replication.php:246 msgid "Slave replication" msgstr "" -#: server_databases.php:229 +#: server_databases.php:227 #, fuzzy msgid "Jump to database" msgstr "Nu sînt baze de date" -#: server_databases.php:266 +#: server_databases.php:264 msgid "Not replicated" msgstr "" -#: server_databases.php:272 +#: server_databases.php:270 #, fuzzy #| msgid "Replication" msgid "Replicated" msgstr "Replicare" -#: server_databases.php:288 +#: server_databases.php:286 #, php-format msgid "Check privileges for database "%s"." msgstr "Verifică privilegiile pentru baza de date "%s"." -#: server_databases.php:292 server_databases.php:293 +#: server_databases.php:290 server_databases.php:291 msgid "Check Privileges" msgstr "Verifică privilegiile" -#: server_databases.php:357 server_databases.php:358 +#: server_databases.php:355 server_databases.php:356 msgid "Enable Statistics" msgstr "Activează statisticile" -#: server_databases.php:361 server_databases.php:362 +#: server_databases.php:359 server_databases.php:360 msgid "Disable Statistics" msgstr "Dezactivează statisticile" -#: server_databases.php:365 +#: server_databases.php:363 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -4608,126 +4676,126 @@ msgstr "" "Notă: Activarea statisticilor pentru baza de date poate cauza creșterea " "traficului între MySQL și serverul Web." -#: server_engines.php:48 +#: server_engines.php:47 msgid "Storage Engines" msgstr "Motoare de stocare" -#: server_export.php:20 +#: server_export.php:18 msgid "View dump (schema) of databases" msgstr "Vizualizarea schemei bazei de date" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:23 server_privileges.php:265 msgid "Includes all privileges except GRANT." msgstr "Include toate privilegiile, excluzand GRANT." -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:24 server_privileges.php:191 +#: server_privileges.php:514 msgid "Allows altering the structure of existing tables." msgstr "Permite alterarea structurii la tabelele deja existente." -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:25 server_privileges.php:207 +#: server_privileges.php:520 msgid "Allows altering and dropping stored routines." msgstr "Permite alterarea și aruncarea rutinelor stocate." -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:26 server_privileges.php:183 +#: server_privileges.php:513 msgid "Allows creating new databases and tables." msgstr "Permite crearea de noi baze de date și tabele." -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:27 server_privileges.php:206 +#: server_privileges.php:519 msgid "Allows creating stored routines." msgstr "Permite crearea rutinelor stocate." -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:513 msgid "Allows creating new tables." msgstr "Permite crearea de noi tabele." -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:29 server_privileges.php:194 +#: server_privileges.php:517 msgid "Allows creating temporary tables." msgstr "Permite crearea de tabele temporare." -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:30 server_privileges.php:208 +#: server_privileges.php:553 msgid "Allows creating, dropping and renaming user accounts." msgstr "Permite crearea, aruncarea și redenumirea conturilor de utilizator." -#: server_privileges.php:32 server_privileges.php:199 -#: server_privileges.php:203 server_privileges.php:526 -#: server_privileges.php:530 +#: server_privileges.php:31 server_privileges.php:198 +#: server_privileges.php:202 server_privileges.php:525 +#: server_privileges.php:529 msgid "Allows creating new views." msgstr "Permite crearea noilor viziuni." -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:32 server_privileges.php:182 +#: server_privileges.php:505 msgid "Allows deleting data." msgstr "Permite stergere de date." -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:33 server_privileges.php:184 +#: server_privileges.php:516 msgid "Allows dropping databases and tables." msgstr "Permite stergerea unei baze de date sau a unor tabele." -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:34 server_privileges.php:516 msgid "Allows dropping tables." msgstr "Permite aruncarea a unei baze de date." -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:35 server_privileges.php:199 +#: server_privileges.php:533 msgid "Allows to set up events for the event scheduler" msgstr "Permite configurarea evenimentelor pentru planificatorul de evenimente" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:36 server_privileges.php:209 +#: server_privileges.php:521 msgid "Allows executing stored routines." msgstr "Permite executarea rutinelor stocate." -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:37 server_privileges.php:188 +#: server_privileges.php:508 msgid "Allows importing data from and exporting data into files." msgstr "" "Permite importarea datelor in fisiere și exportarea acestora din fisiere." -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:38 server_privileges.php:539 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Permite adaugarea utilizatorilor și drepturilor fara reincarcarea tabelelor " "de drepturi." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:515 msgid "Allows creating and dropping indexes." msgstr "Permite crearea și stergerea indexurilor." -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:40 server_privileges.php:180 +#: server_privileges.php:441 server_privileges.php:503 msgid "Allows inserting and replacing data." msgstr "Permite inserarea și înlocuirea datelor." -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:41 server_privileges.php:195 +#: server_privileges.php:548 msgid "Allows locking tables for the current thread." msgstr "Permite blocarea tabelelor din firul curent de execuție." -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:42 server_privileges.php:645 +#: server_privileges.php:647 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Limitează numărul de noi conexiuni care pot fi deschise de utilizator într-o " "oră." -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:43 server_privileges.php:633 +#: server_privileges.php:635 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Limiteaza numarul de comenzi care pot fi trimise de utilizator către server " "într-o oră." -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:44 server_privileges.php:639 +#: server_privileges.php:641 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -4735,61 +4803,61 @@ msgstr "" "Limitează numărul de comenzi pentru schimbarea vreunui tabel sau vreunei " "baze de date executabile de utilizator într-o oră." -#: server_privileges.php:46 server_privileges.php:652 -#: server_privileges.php:654 +#: server_privileges.php:45 server_privileges.php:651 +#: server_privileges.php:653 msgid "Limits the number of simultaneous connections the user may have." msgstr "" "Limitează numărul conexiunilor simultane pe care le poate avea utilizatorul." -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:46 server_privileges.php:187 +#: server_privileges.php:543 msgid "Allows viewing processes of all users" msgstr "Permite vizualizarea proceselor tuturor utilizatorilor" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:47 server_privileges.php:189 +#: server_privileges.php:447 server_privileges.php:549 msgid "Has no effect in this MySQL version." msgstr "Nu are efect în această versiune MySQL." -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:48 server_privileges.php:185 +#: server_privileges.php:544 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Permite reîncărcarea setărilor de server și golirea memoriei cache a " "serverului." -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:197 +#: server_privileges.php:551 msgid "Allows the user to ask where the slaves / masters are." msgstr "Permite utilizatorului de a interoga locația slave/master." -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:50 server_privileges.php:196 +#: server_privileges.php:552 msgid "Needed for the replication slaves." msgstr "Necesară pentru „slave replication”." -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:51 server_privileges.php:179 +#: server_privileges.php:438 server_privileges.php:502 msgid "Allows reading data." msgstr "Permite citirea datelor." -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:52 server_privileges.php:192 +#: server_privileges.php:546 msgid "Gives access to the complete list of databases." msgstr "Permite accesul la lista completă a bazelor de date." -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:53 server_privileges.php:203 +#: server_privileges.php:205 server_privileges.php:518 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Permite executarea interogărilor SHOW CREATE VIEW." -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:54 server_privileges.php:186 +#: server_privileges.php:545 msgid "Allows shutting down the server." msgstr "Permite oprirea serverului." -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:55 server_privileges.php:193 +#: server_privileges.php:542 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -4799,160 +4867,160 @@ msgstr "" "pentru majoritatea operațiunilor administrative, cum ar fi setarea " "variabilelor globale sau oprirea firelor de execuție a altor utilizatori." -#: server_privileges.php:57 server_privileges.php:201 -#: server_privileges.php:535 +#: server_privileges.php:56 server_privileges.php:200 +#: server_privileges.php:534 msgid "Allows creating and dropping triggers" msgstr "Permite crearea și eliminarea declanșatorilor" -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:57 server_privileges.php:181 +#: server_privileges.php:444 server_privileges.php:504 msgid "Allows changing data." msgstr "Permite schimbarea datelor." -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:58 server_privileges.php:259 msgid "No privileges." msgstr "Fără drepturi." -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:301 server_privileges.php:302 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Nici unul(a)" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1710 server_privileges.php:1716 +#: server_privileges.php:430 server_privileges.php:565 +#: server_privileges.php:1714 server_privileges.php:1720 msgid "Table-specific privileges" msgstr "Drepturi specifice de tabele" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1532 +#: server_privileges.php:431 server_privileges.php:573 +#: server_privileges.php:1536 msgid " Note: MySQL privilege names are expressed in English " msgstr " Important: numele drepturilor de acces MySQL apar în engleză" -#: server_privileges.php:563 server_privileges.php:1531 +#: server_privileges.php:562 server_privileges.php:1535 msgid "Global privileges" msgstr "Privilegii globale" -#: server_privileges.php:565 server_privileges.php:1710 +#: server_privileges.php:564 server_privileges.php:1714 msgid "Database-specific privileges" msgstr "Drepturi specifice bazei de date" -#: server_privileges.php:610 +#: server_privileges.php:609 msgid "Administration" msgstr "Administrare" -#: server_privileges.php:630 +#: server_privileges.php:629 msgid "Resource limits" msgstr "Limitare de resurse" -#: server_privileges.php:631 +#: server_privileges.php:630 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" "Observație: Prin stabilirea acestor opțiuni la 0 (zero) se elimină " "restricția." -#: server_privileges.php:708 +#: server_privileges.php:707 msgid "Login Information" msgstr "Informații de autentificare" -#: server_privileges.php:802 +#: server_privileges.php:801 msgid "Do not change the password" msgstr "Nu schimbați parola" -#: server_privileges.php:835 server_privileges.php:2197 +#: server_privileges.php:834 server_privileges.php:2201 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Nu s-a găsit nici un utilizator." -#: server_privileges.php:879 +#: server_privileges.php:878 #, php-format msgid "The user %s already exists!" msgstr "Utilizatorul %s există deja!" -#: server_privileges.php:962 +#: server_privileges.php:961 msgid "You have added a new user." msgstr "Ați adăugat un nou utilizator." -#: server_privileges.php:1183 +#: server_privileges.php:1184 #, php-format msgid "You have updated the privileges for %s." msgstr "Ați actualizat privilegiile pentru %s." -#: server_privileges.php:1207 +#: server_privileges.php:1208 #, php-format msgid "You have revoked the privileges for %s" msgstr "Drepturile tale au fost revocate pentru %s" -#: server_privileges.php:1243 +#: server_privileges.php:1244 #, php-format msgid "The password for %s was changed successfully." msgstr "Parola pentru %s a fost schimbată cu succes." -#: server_privileges.php:1263 +#: server_privileges.php:1264 #, php-format msgid "Deleting %s" msgstr "Șterge %s" -#: server_privileges.php:1274 +#: server_privileges.php:1275 msgid "No users selected for deleting!" msgstr "Nici un utilizator ales pentru ștergere!" -#: server_privileges.php:1277 +#: server_privileges.php:1278 msgid "Reloading the privileges" msgstr "Reîncărcarea drepturilor" -#: server_privileges.php:1292 +#: server_privileges.php:1296 msgid "The selected users have been deleted successfully." msgstr "Utilizatorii selectați au fost eliminați." -#: server_privileges.php:1327 +#: server_privileges.php:1331 msgid "The privileges were reloaded successfully." msgstr "Drepturile au fost reîncarcate cu succes." -#: server_privileges.php:1355 server_privileges.php:1641 +#: server_privileges.php:1359 server_privileges.php:1645 msgid "Edit Privileges" msgstr "Editează drepturile de acces" -#: server_privileges.php:1364 +#: server_privileges.php:1368 msgid "Revoke" msgstr "Revocare" -#: server_privileges.php:1396 +#: server_privileges.php:1400 msgid "User overview" msgstr "Descriere utilizator" -#: server_privileges.php:1533 server_privileges.php:1715 -#: server_privileges.php:2064 +#: server_privileges.php:1537 server_privileges.php:1719 +#: server_privileges.php:2068 msgid "Grant" msgstr "Permite" -#: server_privileges.php:1552 server_privileges.php:2154 +#: server_privileges.php:1556 server_privileges.php:2158 msgid "Any" msgstr "Oricare" -#: server_privileges.php:1601 server_privileges.php:1625 -#: server_privileges.php:2019 server_privileges.php:2208 +#: server_privileges.php:1605 server_privileges.php:1629 +#: server_privileges.php:2023 server_privileges.php:2212 msgid "Add a new User" msgstr "Adaugă un utilizator nou" -#: server_privileges.php:1606 +#: server_privileges.php:1610 msgid "Remove selected users" msgstr "Eliminarea utilizatorilor selectați" -#: server_privileges.php:1609 +#: server_privileges.php:1613 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Revocarea tuturor drepturilor active ale utilizatorilor și stergerea " "acestora." -#: server_privileges.php:1610 server_privileges.php:1611 -#: server_privileges.php:1612 +#: server_privileges.php:1614 server_privileges.php:1615 +#: server_privileges.php:1616 msgid "Drop the databases that have the same names as the users." msgstr "Aruncă baza de date care are același nume ca utilizatorul." -#: server_privileges.php:1628 +#: server_privileges.php:1632 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4965,94 +5033,94 @@ msgstr "" "În acest caz, reîncărcați de aici înainte de a continua %sreîncărcarea " "drepturilor%s." -#: server_privileges.php:1676 +#: server_privileges.php:1680 msgid "The selected user was not found in the privilege table." msgstr "Utilizatorul selectat nu a fost găsit în tabelul de drepturi." -#: server_privileges.php:1716 +#: server_privileges.php:1720 msgid "Column-specific privileges" msgstr "Drepturi specifice coloanei" -#: server_privileges.php:1917 +#: server_privileges.php:1921 msgid "Add privileges on the following database" msgstr "Adaugă drepturi la baza de date următoare" -#: server_privileges.php:1935 +#: server_privileges.php:1939 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "Metacaracterele _ și % trebuiesc însoțite de \\ pentru a le aplica" -#: server_privileges.php:1938 +#: server_privileges.php:1942 msgid "Add privileges on the following table" msgstr "Adaugă drepturi la următorul tabel" -#: server_privileges.php:1995 +#: server_privileges.php:1999 msgid "Change Login Information / Copy User" msgstr "Schimbă informațiile de autentificare/Copiază utilizator" -#: server_privileges.php:1998 +#: server_privileges.php:2002 msgid "Create a new user with the same privileges and ..." msgstr "Creează un utilizator nou cu aceleași privilegii și..." -#: server_privileges.php:2000 +#: server_privileges.php:2004 msgid "... keep the old one." msgstr "... menține cel vechi." -#: server_privileges.php:2001 +#: server_privileges.php:2005 msgid " ... delete the old one from the user tables." msgstr " ... șterge cel vechi din tabelul de utilizatori." -#: server_privileges.php:2002 +#: server_privileges.php:2006 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "" " ...revocă toate privilegiile active de la utilizatorul vechi și șterge-l " "după aceea." -#: server_privileges.php:2003 +#: server_privileges.php:2007 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" " ... șterge cel vechi din tabelul de utilizatori și reîncarcă privilegiile." -#: server_privileges.php:2025 +#: server_privileges.php:2029 msgid "Database for user" msgstr "Bază de date pentru utilizatorul" -#: server_privileges.php:2029 +#: server_privileges.php:2033 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Nici unul(a)" -#: server_privileges.php:2030 +#: server_privileges.php:2034 msgid "Create database with same name and grant all privileges" msgstr "Creează o bază de date cu același nume și acordă toate privilegiile" -#: server_privileges.php:2031 +#: server_privileges.php:2035 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Grant all privileges on wildcard name (username\\_%)" -#: server_privileges.php:2034 +#: server_privileges.php:2038 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "Verifică privilegiile pentru baza de date "%s"." -#: server_privileges.php:2057 +#: server_privileges.php:2061 #, php-format msgid "Users having access to "%s"" msgstr "Utilizatorul are acces la "%s"" -#: server_privileges.php:2165 +#: server_privileges.php:2169 msgid "global" msgstr "global" -#: server_privileges.php:2167 +#: server_privileges.php:2171 msgid "database-specific" msgstr "specific bazei de date" -#: server_privileges.php:2169 +#: server_privileges.php:2173 msgid "wildcard" msgstr "Metacaracter" @@ -5073,54 +5141,54 @@ msgstr "" msgid "ID" msgstr "ID" -#: server_replication.php:50 +#: server_replication.php:49 msgid "Unknown error" msgstr "" -#: server_replication.php:57 +#: server_replication.php:56 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:64 +#: server_replication.php:63 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:70 +#: server_replication.php:69 msgid "Unable to change master" msgstr "" -#: server_replication.php:73 +#: server_replication.php:72 #, php-format msgid "Master server changed succesfully to %s" msgstr "" -#: server_replication.php:181 +#: server_replication.php:180 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:183 server_status.php:391 +#: server_replication.php:182 server_status.php:391 #, fuzzy msgid "Show master status" msgstr "Afișează stare sclav" -#: server_replication.php:186 +#: server_replication.php:185 msgid "Show connected slaves" msgstr "" -#: server_replication.php:209 +#: server_replication.php:208 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:216 +#: server_replication.php:215 msgid "Master configuration" msgstr "" -#: server_replication.php:217 +#: server_replication.php:216 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -5129,111 +5197,111 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:220 +#: server_replication.php:219 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:221 +#: server_replication.php:220 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:224 +#: server_replication.php:223 #, fuzzy msgid "Please select databases:" msgstr "Selectați baza de date" -#: server_replication.php:227 +#: server_replication.php:226 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: server_replication.php:229 +#: server_replication.php:228 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: server_replication.php:292 +#: server_replication.php:291 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:295 +#: server_replication.php:294 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:304 +#: server_replication.php:303 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:307 +#: server_replication.php:306 msgid "See slave status table" msgstr "" -#: server_replication.php:310 +#: server_replication.php:309 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:321 +#: server_replication.php:320 msgid "Control slave:" msgstr "" -#: server_replication.php:324 +#: server_replication.php:323 #, fuzzy msgid "Full start" msgstr "Tot textul" -#: server_replication.php:324 +#: server_replication.php:323 #, fuzzy msgid "Full stop" msgstr "Tot textul" -#: server_replication.php:325 +#: server_replication.php:324 msgid "Reset slave" msgstr "" -#: server_replication.php:326 +#: server_replication.php:325 #, php-format msgid "SQL Thread %s only" msgstr "" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 #, fuzzy msgid "Start" msgstr "Dum" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 msgid "Stop" msgstr "" -#: server_replication.php:327 +#: server_replication.php:326 #, php-format msgid "IO Thread %s only" msgstr "" -#: server_replication.php:331 +#: server_replication.php:330 msgid "Error management:" msgstr "" -#: server_replication.php:333 +#: server_replication.php:332 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:335 +#: server_replication.php:334 msgid "Skip current error" msgstr "" -#: server_replication.php:336 +#: server_replication.php:335 msgid "Skip next" msgstr "" -#: server_replication.php:339 +#: server_replication.php:338 msgid "errors." msgstr "" -#: server_replication.php:354 +#: server_replication.php:353 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -6049,115 +6117,115 @@ msgstr "Tip interogare" msgid "Replication status" msgstr "Replicare" -#: server_synchronize.php:93 +#: server_synchronize.php:92 #, fuzzy msgid "Could not connect to the source" msgstr "Comprimă conexiunea la serverul MySQL" -#: server_synchronize.php:96 +#: server_synchronize.php:95 #, fuzzy msgid "Could not connect to the target" msgstr "Comprimă conexiunea la serverul MySQL" -#: server_synchronize.php:121 server_synchronize.php:124 tbl_create.php:77 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:264 +#: server_synchronize.php:263 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:271 +#: server_synchronize.php:270 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:399 server_synchronize.php:838 +#: server_synchronize.php:398 server_synchronize.php:837 msgid "not present" msgstr "" -#: server_synchronize.php:423 server_synchronize.php:866 +#: server_synchronize.php:422 server_synchronize.php:865 #, fuzzy msgid "Structure Difference" msgstr "Structură pentru vizualizare" -#: server_synchronize.php:424 server_synchronize.php:867 +#: server_synchronize.php:423 server_synchronize.php:866 #, fuzzy msgid "Data Difference" msgstr "Structură pentru vizualizare" -#: server_synchronize.php:429 server_synchronize.php:872 +#: server_synchronize.php:428 server_synchronize.php:871 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:430 server_synchronize.php:873 +#: server_synchronize.php:429 server_synchronize.php:872 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:431 server_synchronize.php:874 +#: server_synchronize.php:430 server_synchronize.php:873 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:432 server_synchronize.php:875 +#: server_synchronize.php:431 server_synchronize.php:874 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:433 server_synchronize.php:876 +#: server_synchronize.php:432 server_synchronize.php:875 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:434 server_synchronize.php:877 +#: server_synchronize.php:433 server_synchronize.php:876 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:435 server_synchronize.php:878 +#: server_synchronize.php:434 server_synchronize.php:877 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:445 server_synchronize.php:889 +#: server_synchronize.php:444 server_synchronize.php:888 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:448 server_synchronize.php:893 +#: server_synchronize.php:447 server_synchronize.php:892 msgid "Apply Selected Changes" msgstr "Faceți modificările selectate" -#: server_synchronize.php:450 server_synchronize.php:895 +#: server_synchronize.php:449 server_synchronize.php:894 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:463 +#: server_synchronize.php:462 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:941 +#: server_synchronize.php:940 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:1002 +#: server_synchronize.php:1001 msgid "The following queries have been executed:" msgstr "" -#: server_synchronize.php:1121 +#: server_synchronize.php:1120 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1122 +#: server_synchronize.php:1121 #, fuzzy msgid "Current connection" msgstr "Comprimă conexiunea" -#: server_synchronize.php:1151 +#: server_synchronize.php:1150 #, php-format msgid "Configuration: %s" msgstr "" -#: server_synchronize.php:1166 +#: server_synchronize.php:1165 msgid "Socket" msgstr "" -#: server_synchronize.php:1212 +#: server_synchronize.php:1211 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -6721,8 +6789,8 @@ msgstr "" #: setup/lib/messages.inc.php:128 msgid "" "Configure phpMyAdmin database to gain access to additional features, see " -"[a@../Documentation.html#linked-tables]linked-tables infrastructure[/a] in " -"documentation" +"[a@../Documentation.html#linked-tables]phpMyAdmin configuration storage[/a] " +"in documentation" msgstr "" #: setup/lib/messages.inc.php:129 setup/lib/messages.inc.php:290 @@ -7797,118 +7865,118 @@ msgstr "" msgid "ZIP" msgstr "ZIP" -#: sql.php:495 tbl_replace.php:385 +#: sql.php:494 tbl_replace.php:384 #, php-format msgid "Inserted row id: %1$d" msgstr "ID rînd inserat: %1$d" -#: sql.php:512 +#: sql.php:511 msgid "Showing as PHP code" msgstr "Afișare ca și cod PHP" -#: sql.php:515 tbl_replace.php:359 +#: sql.php:514 tbl_replace.php:358 msgid "Showing SQL query" msgstr "Afișare interogare SQL" -#: sql.php:517 +#: sql.php:516 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Validează SQL" -#: sql.php:638 +#: sql.php:631 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Probleme cu indexul tabelului `%s`" -#: sql.php:670 +#: sql.php:663 msgid "Label" msgstr "Etichetă" -#: tbl_addfield.php:188 tbl_alter.php:102 tbl_indexes.php:97 +#: tbl_addfield.php:185 tbl_alter.php:100 tbl_indexes.php:97 #, php-format msgid "Table %1$s has been altered successfully" msgstr "Tabelul %1$s a fost alterat cu succes" -#: tbl_change.php:250 tbl_select.php:26 tbl_select.php:27 tbl_select.php:30 -#: tbl_select.php:33 +#: tbl_change.php:245 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_select.php:32 msgid "Browse foreign values" msgstr "Caută printre valori necunoscute" -#: tbl_change.php:280 tbl_change.php:318 +#: tbl_change.php:275 tbl_change.php:313 msgid "Function" msgstr "Funcție" -#: tbl_change.php:300 tbl_indexes.php:199 tbl_indexes.php:224 +#: tbl_change.php:295 tbl_indexes.php:198 tbl_indexes.php:223 msgid "Ignore" msgstr "Ignoră" -#: tbl_change.php:725 +#: tbl_change.php:720 #, fuzzy #| msgid " Because of its length,
                            this field might not be editable " msgid " Because of its length,
                            this column might not be editable " msgstr "" "Datorită lungimii sale,
                            acest cîmp s-ar putea să nu fie editabil" -#: tbl_change.php:884 +#: tbl_change.php:835 msgid "Remove BLOB Repository Reference" msgstr "Remove BLOB Repository Reference" -#: tbl_change.php:890 +#: tbl_change.php:841 msgid "Binary - do not edit" msgstr "Binar - a nu se edita" -#: tbl_change.php:983 +#: tbl_change.php:889 msgid "Upload to BLOB repository" msgstr "Upload to BLOB repository" -#: tbl_change.php:1128 +#: tbl_change.php:1026 msgid "Insert as new row" msgstr "Inserează ca o nouă linie" -#: tbl_change.php:1129 +#: tbl_change.php:1027 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:1130 +#: tbl_change.php:1028 #, fuzzy msgid "Show insert query" msgstr "Afișare interogare SQL" -#: tbl_change.php:1145 +#: tbl_change.php:1043 msgid "Go back to previous page" msgstr "Revenire" -#: tbl_change.php:1146 +#: tbl_change.php:1044 msgid "Insert another new row" msgstr "Adaugă o nouă înregistrare" -#: tbl_change.php:1150 +#: tbl_change.php:1048 msgid "Go back to this page" msgstr "Înapoi la această pagină" -#: tbl_change.php:1158 +#: tbl_change.php:1056 msgid "Edit next row" msgstr "Editează rîndul următor" -#: tbl_change.php:1169 +#: tbl_change.php:1067 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Folosiți tasta TAB pentru a trece de la o valoare la alta sau CTRL+săgeți " "pentru a merge în oricare direcție" -#: tbl_change.php:1207 +#: tbl_change.php:1105 #, php-format msgid "Restart insertion with %s rows" msgstr "Repornește inserția cu %s rînduri" -#: tbl_create.php:57 +#: tbl_create.php:55 #, php-format msgid "Table %s already exists!" msgstr "Tabelul %s există deja!" -#: tbl_create.php:244 +#: tbl_create.php:241 #, php-format msgid "Table %1$s has been created." msgstr "Tabelul %1$s a fost creat." @@ -7929,195 +7997,195 @@ msgstr "Nu puteți redenumi index-ul la un nume PRIMARY!" msgid "No index parts defined!" msgstr "Nu sînt definite părți din index!" -#: tbl_indexes.php:159 +#: tbl_indexes.php:158 msgid "Create a new index" msgstr "Creează un nou index" -#: tbl_indexes.php:161 +#: tbl_indexes.php:160 msgid "Modify an index" msgstr "Modifică un index" -#: tbl_indexes.php:167 +#: tbl_indexes.php:166 msgid "Index name:" msgstr "Nume index :" -#: tbl_indexes.php:173 +#: tbl_indexes.php:172 msgid "Index type:" msgstr "Tip index :" -#: tbl_indexes.php:183 +#: tbl_indexes.php:182 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" "(Numele „PRIMARY” trebuie să fie numai la cheia primară!)" -#: tbl_indexes.php:250 +#: tbl_indexes.php:249 #, php-format msgid "Add to index  %s column(s)" msgstr "Adaugă la coloana(ele) index  %s " -#: tbl_indexes.php:255 tbl_structure.php:588 tbl_structure.php:599 +#: tbl_indexes.php:254 tbl_structure.php:586 tbl_structure.php:597 msgid "Column count has to be larger than zero." msgstr "Numărul coloanelor trebuie să fie mai mare de zero." -#: tbl_move_copy.php:45 +#: tbl_move_copy.php:44 msgid "Can't move table to same one!" msgstr "Nu se poate copia tabelul peste cel existent pentru că este același!" -#: tbl_move_copy.php:47 +#: tbl_move_copy.php:46 msgid "Can't copy table to same one!" msgstr "Nu se poate copia tabelul pe cel existent pentru ca este acelasi" -#: tbl_move_copy.php:55 +#: tbl_move_copy.php:54 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabelul %s a fost mutat la %s." -#: tbl_move_copy.php:57 +#: tbl_move_copy.php:56 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabelul %s a fost copiat la %s." -#: tbl_move_copy.php:81 +#: tbl_move_copy.php:80 msgid "The table name is empty!" msgstr "Numele de tabel este gol!" -#: tbl_operations.php:248 +#: tbl_operations.php:246 msgid "Alter table order by" msgstr "Alterare „ordonare tabel după”" -#: tbl_operations.php:257 +#: tbl_operations.php:255 msgid "(singly)" msgstr "(singly)" -#: tbl_operations.php:277 +#: tbl_operations.php:275 msgid "Move table to (database.table):" msgstr "Mută tabelul la (bază_de_date.tabel):" -#: tbl_operations.php:335 +#: tbl_operations.php:333 msgid "Table options" msgstr "Opțiuni tabel" -#: tbl_operations.php:339 +#: tbl_operations.php:337 msgid "Rename table to" msgstr "Redenumire tabel la" -#: tbl_operations.php:510 +#: tbl_operations.php:508 msgid "Copy table to (database.table):" msgstr "Copiază tabelul la (bază_de_date.tabel):" -#: tbl_operations.php:557 +#: tbl_operations.php:555 msgid "Switch to copied table" msgstr "Schimbă la tabela copiată" -#: tbl_operations.php:569 +#: tbl_operations.php:567 msgid "Table maintenance" msgstr "Administrare tabel" -#: tbl_operations.php:590 +#: tbl_operations.php:588 msgid "Defragment table" msgstr "Defragmentare tabel" -#: tbl_operations.php:629 +#: tbl_operations.php:627 #, php-format msgid "Table %s has been flushed" msgstr "Tabelul %s a fost curățat" -#: tbl_operations.php:635 +#: tbl_operations.php:633 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Curățarea tabelului (\"FLUSH\")" -#: tbl_operations.php:650 +#: tbl_operations.php:648 msgid "Partition maintenance" msgstr "Întreținerea partiției" -#: tbl_operations.php:658 +#: tbl_operations.php:656 #, php-format msgid "Partition %s" msgstr "Partiția %s" -#: tbl_operations.php:661 +#: tbl_operations.php:659 msgid "Analyze" msgstr "Analizează" -#: tbl_operations.php:662 +#: tbl_operations.php:660 msgid "Check" msgstr "Verifică" -#: tbl_operations.php:663 +#: tbl_operations.php:661 msgid "Optimize" msgstr "Optimizează" -#: tbl_operations.php:664 +#: tbl_operations.php:662 msgid "Rebuild" msgstr "Reconstruiește" -#: tbl_operations.php:665 +#: tbl_operations.php:663 msgid "Repair" msgstr "Repară" -#: tbl_operations.php:677 +#: tbl_operations.php:675 msgid "Remove partitioning" msgstr "Elimină partiționarea" -#: tbl_operations.php:703 +#: tbl_operations.php:701 msgid "Check referential integrity:" msgstr "Verificarea integrității referinței:" -#: tbl_printview.php:73 +#: tbl_printview.php:72 msgid "Show tables" msgstr "Arată tabelele" -#: tbl_printview.php:308 tbl_structure.php:655 +#: tbl_printview.php:307 tbl_structure.php:653 msgid "Space usage" msgstr "Utilizare spațiu" -#: tbl_printview.php:312 tbl_structure.php:659 +#: tbl_printview.php:311 tbl_structure.php:657 msgid "Usage" msgstr "Utilizare" -#: tbl_printview.php:339 tbl_structure.php:686 +#: tbl_printview.php:338 tbl_structure.php:684 msgid "Effective" msgstr "Efectiv" -#: tbl_printview.php:364 tbl_structure.php:724 +#: tbl_printview.php:363 tbl_structure.php:722 msgid "Row Statistics" msgstr "Statisticile rîndului" -#: tbl_printview.php:367 tbl_structure.php:727 +#: tbl_printview.php:366 tbl_structure.php:725 msgid "Statements" msgstr "Comenzi" -#: tbl_printview.php:378 tbl_structure.php:739 +#: tbl_printview.php:377 tbl_structure.php:737 msgid "static" msgstr "" -#: tbl_printview.php:380 tbl_structure.php:741 +#: tbl_printview.php:379 tbl_structure.php:739 msgid "dynamic" msgstr "dinamic" -#: tbl_printview.php:402 tbl_structure.php:784 +#: tbl_printview.php:401 tbl_structure.php:782 msgid "Row length" msgstr "Lungime linie" -#: tbl_printview.php:412 tbl_structure.php:792 +#: tbl_printview.php:411 tbl_structure.php:790 msgid " Row size " msgstr " Mărime linie " -#: tbl_relation.php:278 +#: tbl_relation.php:276 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "Error creating foreign key on %1$s (check data types)" -#: tbl_relation.php:404 +#: tbl_relation.php:402 #, fuzzy #| msgid "Internal relations" msgid "Internal relation" msgstr "Relații interne" -#: tbl_relation.php:406 +#: tbl_relation.php:404 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -8125,7 +8193,7 @@ msgstr "" "Nu este necesară o relație internă atunci cînd există o cheie externă " "corespondentă." -#: tbl_relation.php:412 +#: tbl_relation.php:410 #, fuzzy msgid "Foreign key constraint" msgstr "Constrângeri ale cheii străine" @@ -8134,232 +8202,232 @@ msgstr "Constrângeri ale cheii străine" msgid "No rows selected" msgstr "Nu e nici un rînd selectat" -#: tbl_select.php:130 +#: tbl_select.php:129 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Execută o interogare prin exemplu (metacaracter: \"%\")" -#: tbl_select.php:136 +#: tbl_select.php:135 msgid "Operator" msgstr "Operand" -#: tbl_select.php:267 +#: tbl_select.php:266 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "Selectează cîmpurile (cel puțin unul):" -#: tbl_select.php:285 +#: tbl_select.php:284 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Adaugă condiție de căutare (parte a comenzii \"where\"):" -#: tbl_select.php:292 +#: tbl_select.php:291 msgid "Number of rows per page" msgstr "Numărul de înregistrări pe pagină" -#: tbl_select.php:298 +#: tbl_select.php:297 msgid "Display order:" msgstr "Ordine de afișare:" -#: tbl_structure.php:160 +#: tbl_structure.php:159 msgid "Browse distinct values" msgstr "Răsfoiește valori distincte" -#: tbl_structure.php:360 +#: tbl_structure.php:358 #, fuzzy #| msgid "None" msgctxt "None for default" msgid "None" msgstr "Nici unul/una" -#: tbl_structure.php:373 +#: tbl_structure.php:371 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Column %s has been dropped" msgstr "Tabelul %s a fost aruncat" -#: tbl_structure.php:384 +#: tbl_structure.php:382 #, php-format msgid "A primary key has been added on %s" msgstr "A fost adăugată o cheie primară la %s" -#: tbl_structure.php:399 tbl_structure.php:413 tbl_structure.php:427 +#: tbl_structure.php:397 tbl_structure.php:411 tbl_structure.php:425 #, php-format msgid "An index has been added on %s" msgstr "A fost adăugat un index la %s" -#: tbl_structure.php:505 tbl_structure.php:507 +#: tbl_structure.php:503 tbl_structure.php:505 msgid "Relation view" msgstr "Vizualizare relațională" -#: tbl_structure.php:514 tbl_structure.php:516 +#: tbl_structure.php:512 tbl_structure.php:514 msgid "Propose table structure" msgstr "Propune structura de tabele" -#: tbl_structure.php:539 +#: tbl_structure.php:537 #, fuzzy #| msgid "Add %s field(s)" msgid "Add column" msgstr "Adaugă %s cîmp(uri)" -#: tbl_structure.php:553 +#: tbl_structure.php:551 msgid "At End of Table" msgstr "La sfîrșitul tabelului" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At Beginning of Table" msgstr "La începutul tabelului" -#: tbl_structure.php:555 +#: tbl_structure.php:553 #, php-format msgid "After %s" msgstr "După %s" -#: tbl_structure.php:593 +#: tbl_structure.php:591 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "Creează un index pe %s coloană" -#: tbl_structure.php:755 +#: tbl_structure.php:753 msgid "partitioned" msgstr "partiționat" -#: tbl_tracking.php:113 +#: tbl_tracking.php:109 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:186 +#: tbl_tracking.php:182 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "" -#: tbl_tracking.php:194 +#: tbl_tracking.php:190 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "" -#: tbl_tracking.php:202 +#: tbl_tracking.php:198 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "" -#: tbl_tracking.php:212 +#: tbl_tracking.php:208 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:219 +#: tbl_tracking.php:215 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:220 +#: tbl_tracking.php:216 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:229 +#: tbl_tracking.php:225 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:250 tbl_tracking.php:378 +#: tbl_tracking.php:245 tbl_tracking.php:373 msgid "Close" msgstr "" -#: tbl_tracking.php:261 +#: tbl_tracking.php:256 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:380 +#: tbl_tracking.php:375 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:396 tbl_tracking.php:503 +#: tbl_tracking.php:391 tbl_tracking.php:498 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "" -#: tbl_tracking.php:409 tbl_tracking.php:460 +#: tbl_tracking.php:404 tbl_tracking.php:455 #, fuzzy msgid "Date" msgstr "Date" -#: tbl_tracking.php:410 tbl_tracking.php:461 +#: tbl_tracking.php:405 tbl_tracking.php:456 #, fuzzy msgid "Username" msgstr "Nume utilizator:" -#: tbl_tracking.php:411 +#: tbl_tracking.php:406 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:462 +#: tbl_tracking.php:457 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:506 +#: tbl_tracking.php:501 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:507 +#: tbl_tracking.php:502 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:520 +#: tbl_tracking.php:515 #, fuzzy, php-format msgid "Export as %s" msgstr "Modul de export" -#: tbl_tracking.php:560 +#: tbl_tracking.php:555 msgid "Show versions" msgstr "" -#: tbl_tracking.php:592 +#: tbl_tracking.php:587 #, fuzzy msgid "Version" msgstr "Persană" -#: tbl_tracking.php:639 +#: tbl_tracking.php:634 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "" -#: tbl_tracking.php:641 +#: tbl_tracking.php:636 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:652 +#: tbl_tracking.php:647 #, php-format msgid "Activate tracking for %s.%s" msgstr "" -#: tbl_tracking.php:654 +#: tbl_tracking.php:649 msgid "Activate now" msgstr "" -#: tbl_tracking.php:667 +#: tbl_tracking.php:662 #, php-format msgid "Create version %s of %s.%s" msgstr "" -#: tbl_tracking.php:671 +#: tbl_tracking.php:666 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:679 +#: tbl_tracking.php:674 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:687 +#: tbl_tracking.php:682 #, fuzzy msgid "Create version" msgstr "Creare relație" @@ -8408,11 +8476,37 @@ msgstr "Profilul a fost actualizat." msgid "VIEW name" msgstr "Denumire VIZIUNE" -#: view_operations.php:92 +#: view_operations.php:91 #, fuzzy msgid "Rename view to" msgstr "Redenumire tabel la" +#~ msgid "BLOB Repository" +#~ msgstr "BLOB Repository" + +#, fuzzy +#~| msgid "Enabled" +#~ msgctxt "BLOB repository" +#~ msgid "Enabled" +#~ msgstr "Activat" + +#~ msgid "Disable" +#~ msgstr "Dezactivează" + +#~ msgid "Damaged" +#~ msgstr "Deteriorat" + +#~ msgctxt "BLOB repository" +#~ msgid "Repair" +#~ msgstr "Repară" + +#~ msgctxt "BLOB repository" +#~ msgid "Disabled" +#~ msgstr "Dezactivat" + +#~ msgid "Enable" +#~ msgstr "Activează" + #~ msgid "" #~ "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " #~ "extension. Please check your PHP configuration." diff --git a/po/ru.po b/po/ru.po index 8faacd407..7bdfafb8b 100644 --- a/po/ru.po +++ b/po/ru.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-21 13:53+0200\n" +"POT-Creation-Date: 2010-07-26 17:18+0200\n" "PO-Revision-Date: 2010-07-22 02:27+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: russian \n" @@ -11,23 +11,23 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" -"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"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:37 browse_foreigners.php:58 -#: libraries/display_tbl.lib.php:416 server_privileges.php:1506 +#: browse_foreigners.php:36 browse_foreigners.php:57 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1510 msgid "Show all" msgstr "Показать все" -#: browse_foreigners.php:81 libraries/common.lib.php:2313 -#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:393 -#: libraries/export/pdf.php:146 pdf_schema.php:282 pdf_schema.php:1122 -#: pdf_schema.php:1138 +#: browse_foreigners.php:80 libraries/common.lib.php:2318 +#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:392 +#: libraries/export/pdf.php:146 pdf_schema.php:281 pdf_schema.php:1121 +#: pdf_schema.php:1137 msgid "Page number:" msgstr "Номер страницы:" -#: browse_foreigners.php:131 +#: browse_foreigners.php:130 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -37,139 +37,153 @@ msgstr "" "родительское окно или ваш браузер блокирует межоконные обновления из-за " "настроек безопасности" -#: browse_foreigners.php:149 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2829 -#: libraries/common.lib.php:2836 libraries/db_links.inc.php:74 -#: libraries/tbl_links.inc.php:62 +#: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 +#: db_structure.php:89 db_structure.php:91 db_structure.php:102 +#: db_structure.php:104 libraries/common.lib.php:2834 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Поиск" -#: browse_foreigners.php:152 db_operations.php:384 db_operations.php:428 -#: db_operations.php:498 db_operations.php:608 db_search.php:344 -#: db_structure.php:566 js/messages.php:48 libraries/Config.class.php:1043 -#: libraries/Theme_Manager.class.php:310 +#: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 +#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 +#: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 -#: libraries/common.lib.php:1340 libraries/common.lib.php:2289 +#: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 -#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:275 -#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:531 -#: libraries/display_tbl.lib.php:613 libraries/replication_gui.lib.php:75 +#: libraries/display_export.lib.php:269 libraries/display_import.lib.php:275 +#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 +#: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 #: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:781 -#: main.php:127 navigation.php:231 pdf_pages.php:291 pdf_pages.php:327 -#: pdf_pages.php:529 pmd_pdf.php:115 server_binlog.php:128 -#: server_privileges.php:664 server_privileges.php:1616 -#: server_privileges.php:1963 server_privileges.php:2010 -#: server_privileges.php:2049 server_replication.php:234 -#: server_replication.php:317 server_replication.php:340 -#: server_synchronize.php:1208 tbl_change.php:328 tbl_change.php:1172 -#: tbl_change.php:1209 tbl_indexes.php:253 tbl_operations.php:264 -#: tbl_operations.php:301 tbl_operations.php:498 tbl_operations.php:560 -#: tbl_operations.php:680 tbl_select.php:324 tbl_structure.php:561 -#: tbl_structure.php:596 tbl_tracking.php:394 tbl_tracking.php:511 -#: view_create.php:181 view_operations.php:100 +#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 +#: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 +#: server_privileges.php:663 server_privileges.php:1620 +#: server_privileges.php:1967 server_privileges.php:2014 +#: server_privileges.php:2053 server_replication.php:233 +#: server_replication.php:316 server_replication.php:339 +#: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 +#: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 +#: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 +#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "OK" -#: browse_foreigners.php:167 browse_foreigners.php:171 -#: libraries/Index.class.php:441 tbl_tracking.php:319 +#: browse_foreigners.php:166 browse_foreigners.php:170 +#: libraries/Index.class.php:441 tbl_tracking.php:314 msgid "Keyname" msgstr "Имя индекса" -#: browse_foreigners.php:168 browse_foreigners.php:170 -#: server_collations.php:54 server_collations.php:66 server_engines.php:58 +#: browse_foreigners.php:167 browse_foreigners.php:169 +#: server_collations.php:54 server_collations.php:66 server_engines.php:57 #: server_status.php:738 msgid "Description" msgstr "Описание" -#: browse_foreigners.php:246 browse_foreigners.php:255 -#: browse_foreigners.php:267 browse_foreigners.php:275 +#: browse_foreigners.php:245 browse_foreigners.php:254 +#: browse_foreigners.php:266 browse_foreigners.php:274 msgid "Use this value" msgstr "Использовать это значение" -#: db_create.php:45 +#: bs_disp_as_mime_type.php:29 bs_play_media.php:35 +msgid "No blob streaming server configured!" +msgstr "" + +#: bs_disp_as_mime_type.php:35 +#, fuzzy +#| msgid "Failed to write file to disk." +msgid "Failed to fetch headers" +msgstr "Ошибка при попытке записи файла на диск." + +#: bs_disp_as_mime_type.php:41 +msgid "Failed to open remote URL" +msgstr "" + +#: db_create.php:44 #, php-format msgid "Database %1$s has been created." msgstr "База данных %1$s была создана." -#: db_datadict.php:48 db_operations.php:377 +#: db_datadict.php:48 db_operations.php:313 msgid "Database comment: " msgstr "Комментарий к базе данных:" -#: db_datadict.php:164 libraries/tbl_properties.inc.php:723 -#: pdf_schema.php:1235 tbl_operations.php:346 tbl_printview.php:128 +#: db_datadict.php:164 libraries/tbl_properties.inc.php:722 +#: pdf_schema.php:1234 tbl_operations.php:344 tbl_printview.php:127 msgid "Table comments" msgstr "Комментарий к таблице" -#: db_datadict.php:173 db_qbe.php:173 libraries/Index.class.php:445 +#: db_datadict.php:173 db_qbe.php:170 libraries/Index.class.php:445 #: libraries/export/htmlword.php:243 libraries/export/latex.php:364 #: libraries/export/odt.php:293 libraries/export/texytext.php:233 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:274 -#: pdf_schema.php:1261 pdf_schema.php:1282 tbl_change.php:306 -#: tbl_indexes.php:188 tbl_printview.php:140 tbl_relation.php:401 -#: tbl_select.php:133 tbl_structure.php:176 tbl_tracking.php:272 -#: tbl_tracking.php:323 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 +#: pdf_schema.php:1260 pdf_schema.php:1281 tbl_change.php:301 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:132 tbl_structure.php:175 tbl_tracking.php:267 +#: tbl_tracking.php:318 #, fuzzy #| msgid "Column names" msgid "Column" msgstr "Названия столбцов" -#: db_datadict.php:174 db_printview.php:105 libraries/Index.class.php:442 +#: db_datadict.php:174 db_printview.php:104 libraries/Index.class.php:442 #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 #: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:244 #: libraries/export/latex.php:364 libraries/export/odt.php:296 #: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:99 -#: pdf_schema.php:1262 pdf_schema.php:1283 server_privileges.php:2062 -#: tbl_change.php:285 tbl_change.php:312 tbl_printview.php:141 -#: tbl_printview.php:311 tbl_select.php:134 tbl_structure.php:177 -#: tbl_structure.php:658 tbl_tracking.php:273 tbl_tracking.php:320 +#: pdf_schema.php:1261 pdf_schema.php:1282 server_privileges.php:2066 +#: tbl_change.php:280 tbl_change.php:307 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:133 tbl_structure.php:176 +#: tbl_structure.php:656 tbl_tracking.php:268 tbl_tracking.php:315 msgid "Type" msgstr "Тип" #: db_datadict.php:176 libraries/Index.class.php:448 #: libraries/export/htmlword.php:245 libraries/export/latex.php:364 #: libraries/export/odt.php:299 libraries/export/texytext.php:235 -#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1264 -#: pdf_schema.php:1285 tbl_change.php:321 tbl_printview.php:143 -#: tbl_structure.php:180 tbl_tracking.php:275 tbl_tracking.php:326 +#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1263 +#: pdf_schema.php:1284 tbl_change.php:316 tbl_printview.php:142 +#: tbl_structure.php:179 tbl_tracking.php:270 tbl_tracking.php:321 msgid "Null" msgstr "Null" -#: db_datadict.php:177 db_structure.php:500 libraries/export/htmlword.php:246 +#: db_datadict.php:177 db_structure.php:486 libraries/export/htmlword.php:246 #: libraries/export/latex.php:364 libraries/export/odt.php:302 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:105 -#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 -#: tbl_structure.php:181 tbl_tracking.php:276 +#: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:143 +#: tbl_structure.php:180 tbl_tracking.php:271 msgid "Default" msgstr "По умолчанию" #: db_datadict.php:181 libraries/export/htmlword.php:248 #: libraries/export/latex.php:366 libraries/export/odt.php:306 -#: libraries/export/texytext.php:238 pdf_schema.php:1267 pdf_schema.php:1288 -#: tbl_printview.php:148 +#: libraries/export/texytext.php:238 pdf_schema.php:1266 pdf_schema.php:1287 +#: tbl_printview.php:147 msgid "Links to" msgstr "Связи" -#: db_datadict.php:183 db_printview.php:111 libraries/export/htmlword.php:251 +#: db_datadict.php:183 db_printview.php:110 libraries/export/htmlword.php:251 #: libraries/export/latex.php:49 libraries/export/latex.php:369 #: libraries/export/odt.php:37 libraries/export/odt.php:311 #: libraries/export/sql.php:29 libraries/export/texytext.php:241 -#: libraries/tbl_properties.inc.php:129 pdf_schema.php:1278 -#: pdf_schema.php:1289 tbl_printview.php:150 +#: libraries/tbl_properties.inc.php:128 pdf_schema.php:1277 +#: pdf_schema.php:1288 tbl_printview.php:149 msgid "Comments" msgstr "Комментарии" #: db_datadict.php:266 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/export/htmlword.php:321 #: libraries/export/latex.php:434 libraries/export/odt.php:367 -#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:262 -#: pdf_schema.php:1343 server_privileges.php:1560 server_privileges.php:1571 -#: server_privileges.php:1881 server_privileges.php:1886 -#: server_privileges.php:2179 sql.php:131 sql.php:193 tbl_printview.php:227 -#: tbl_structure.php:349 tbl_tracking.php:336 tbl_tracking.php:341 +#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:261 +#: pdf_schema.php:1342 server_privileges.php:1564 server_privileges.php:1575 +#: server_privileges.php:1885 server_privileges.php:1890 +#: server_privileges.php:2183 sql.php:130 sql.php:192 tbl_printview.php:226 +#: tbl_structure.php:347 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "Нет" @@ -180,17 +194,17 @@ msgstr "Нет" #: libraries/mult_submits.inc.php:49 libraries/mult_submits.inc.php:54 #: libraries/mult_submits.inc.php:59 libraries/mult_submits.inc.php:91 #: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:105 -#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:261 -#: libraries/mult_submits.inc.php:272 pdf_schema.php:1343 -#: server_databases.php:63 server_privileges.php:1557 -#: server_privileges.php:1571 server_privileges.php:1881 -#: server_privileges.php:1884 server_privileges.php:2179 sql.php:192 -#: tbl_printview.php:227 tbl_structure.php:39 tbl_structure.php:349 -#: tbl_tracking.php:334 tbl_tracking.php:339 +#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:260 +#: libraries/mult_submits.inc.php:271 pdf_schema.php:1342 +#: server_databases.php:61 server_privileges.php:1561 +#: server_privileges.php:1575 server_privileges.php:1885 +#: server_privileges.php:1888 server_privileges.php:2183 sql.php:191 +#: tbl_printview.php:226 tbl_structure.php:38 tbl_structure.php:347 +#: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" msgstr "Да" -#: db_datadict.php:321 db_printview.php:265 tbl_printview.php:496 +#: db_datadict.php:321 db_printview.php:264 tbl_printview.php:495 msgid "Print" msgstr "Печать" @@ -198,194 +212,154 @@ msgstr "Печать" msgid "View dump (schema) of database" msgstr "Отобразить дамп (схему) базы данных" -#: db_export.php:32 db_printview.php:95 db_qbe.php:101 db_structure.php:50 -#: db_tracking.php:34 export.php:352 navigation.php:326 +#: db_export.php:32 db_printview.php:94 db_qbe.php:98 db_structure.php:49 +#: db_tracking.php:30 export.php:350 navigation.php:325 msgid "No tables found in database." msgstr "Таблиц в базе данных не обнаружено." -#: db_export.php:42 db_search.php:326 server_export.php:26 +#: db_export.php:42 db_search.php:326 server_export.php:24 msgid "Select All" msgstr "Выделить все" -#: db_export.php:44 db_search.php:329 server_export.php:28 +#: db_export.php:44 db_search.php:329 server_export.php:26 msgid "Unselect All" msgstr "Снять выделение" -#: db_operations.php:37 tbl_create.php:49 +#: db_operations.php:33 tbl_create.php:47 msgid "The database name is empty!" msgstr "Не указано имя базы данных!" -#: db_operations.php:235 +#: db_operations.php:231 #, php-format msgid "Database %s has been renamed to %s" msgstr "База данных `%s` переименована в `%s`." -#: db_operations.php:239 +#: db_operations.php:235 #, php-format msgid "Database %s has been copied to %s" msgstr "База данных %s была скопирована в %s" -#: db_operations.php:411 +#: db_operations.php:347 msgid "Rename database to" msgstr "Переименовать базу данных в" -#: db_operations.php:416 server_processlist.php:56 +#: db_operations.php:352 server_processlist.php:56 msgid "Command" msgstr "Команда" -#: db_operations.php:428 tbl_change.php:1141 +#: db_operations.php:364 tbl_change.php:1039 msgid "and then" msgstr "и затем" -#: db_operations.php:454 +#: db_operations.php:390 msgid "Copy database to" msgstr "Скопировать базу данных в" -#: db_operations.php:461 tbl_operations.php:527 tbl_tracking.php:387 +#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Только структура" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:389 +#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Структура и данные" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:388 +#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Только данные" -#: db_operations.php:471 +#: db_operations.php:407 msgid "CREATE DATABASE before copying" msgstr "Перед копированием создать базу данных (CREATE DATABASE)" -#: db_operations.php:474 libraries/export/sql.php:51 +#: db_operations.php:410 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 -#: libraries/export/sql.php:81 tbl_operations.php:535 +#: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "Добавить %s" -#: db_operations.php:478 libraries/export/sql.php:77 tbl_operations.php:298 -#: tbl_operations.php:537 +#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Добавить AUTO_INCREMENT" -#: db_operations.php:482 tbl_operations.php:544 +#: db_operations.php:418 tbl_operations.php:542 msgid "Add constraints" msgstr "Добавить ограничения" -#: db_operations.php:495 +#: db_operations.php:431 msgid "Switch to copied database" msgstr "Переключиться на скопированную базу данных" -#: db_operations.php:536 -msgid "BLOB Repository" -msgstr "Хранилище данных типа BLOB" - -#: db_operations.php:539 db_tracking.php:75 libraries/common.lib.php:1357 -#: libraries/server_links.inc.php:48 server_processlist.php:58 -#: tbl_tracking.php:595 test/theme.php:100 -msgid "Status" -msgstr "Состояние" - -#: db_operations.php:547 -#, fuzzy -#| msgid "Enabled" -msgctxt "BLOB repository" -msgid "Enabled" -msgstr "Доступно" - -#: db_operations.php:551 -msgid "Disable" -msgstr "Отключить" - -#: db_operations.php:561 -msgid "Damaged" -msgstr "Повреждено" - -#: db_operations.php:565 -#, fuzzy -#| msgid "Repair" -msgctxt "BLOB repository" -msgid "Repair" -msgstr "Исправление" - -#: db_operations.php:573 -#, fuzzy -#| msgid "Disabled" -msgctxt "BLOB repository" -msgid "Disabled" -msgstr "Недоступно" - -#: db_operations.php:577 -msgid "Enable" -msgstr "Включить" - -#: db_operations.php:601 libraries/Index.class.php:447 +#: db_operations.php:451 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 -#: server_collations.php:53 server_collations.php:65 server_databases.php:110 -#: tbl_operations.php:362 tbl_select.php:135 tbl_structure.php:178 -#: tbl_structure.php:766 tbl_tracking.php:274 tbl_tracking.php:325 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 +#: server_collations.php:53 server_collations.php:65 server_databases.php:108 +#: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:177 +#: tbl_structure.php:764 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "Сравнение" -#: db_operations.php:614 main.php:315 pdf_schema.php:33 -#, php-format +#: db_operations.php:464 pdf_schema.php:32 +#, fuzzy, php-format +#| msgid "" +#| "The additional features for working with linked tables have been " +#| "deactivated. To find out why click %shere%s." msgid "" -"The additional features for working with linked tables have been " -"deactivated. To find out why click %shere%s." +"The phpMyAdmin configuration storage has been deactivated. To find out why " +"click %shere%s." msgstr "" "Дополнительные возможности для работы со связанными таблицами недоступны. " "Для определения причины нажмите %sздесь%s." -#: db_operations.php:647 +#: db_operations.php:497 msgid "Edit PDF Pages" msgstr "Редактирование PDF-страниц" -#: db_printview.php:103 db_tracking.php:71 db_tracking.php:156 +#: db_printview.php:102 db_tracking.php:67 db_tracking.php:152 #: libraries/db_structure.lib.php:37 libraries/export/xml.php:327 -#: libraries/header.inc.php:125 pdf_pages.php:423 server_privileges.php:1657 -#: server_privileges.php:1713 server_privileges.php:1977 -#: server_synchronize.php:422 server_synchronize.php:865 tbl_tracking.php:591 +#: libraries/header.inc.php:125 pdf_pages.php:422 server_privileges.php:1661 +#: server_privileges.php:1717 server_privileges.php:1981 +#: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "Таблица " -#: db_printview.php:104 libraries/db_structure.lib.php:47 +#: db_printview.php:103 libraries/db_structure.lib.php:47 #: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 -#: navigation.php:629 navigation.php:651 server_databases.php:121 -#: tbl_printview.php:392 tbl_structure.php:364 tbl_structure.php:776 +#: navigation.php:628 navigation.php:650 server_databases.php:119 +#: tbl_printview.php:391 tbl_structure.php:362 tbl_structure.php:774 msgid "Rows" msgstr "Строки" -#: db_printview.php:108 libraries/db_structure.lib.php:58 tbl_indexes.php:189 +#: db_printview.php:107 libraries/db_structure.lib.php:58 tbl_indexes.php:188 msgid "Size" msgstr "Размер" -#: db_printview.php:161 db_structure.php:456 libraries/export/sql.php:556 +#: db_printview.php:160 db_structure.php:442 libraries/export/sql.php:556 #: libraries/export/sql.php:896 msgid "in use" msgstr "используется" -#: db_printview.php:186 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:511 pdf_schema.php:1240 tbl_printview.php:432 -#: tbl_structure.php:808 +#: db_printview.php:185 libraries/db_info.inc.php:86 +#: libraries/export/sql.php:511 pdf_schema.php:1239 tbl_printview.php:431 +#: tbl_structure.php:806 msgid "Creation" msgstr "Создание" -#: db_printview.php:195 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:516 pdf_schema.php:1245 tbl_printview.php:442 -#: tbl_structure.php:816 +#: db_printview.php:194 libraries/db_info.inc.php:91 +#: libraries/export/sql.php:516 pdf_schema.php:1244 tbl_printview.php:441 +#: tbl_structure.php:814 msgid "Last update" msgstr "Последнее обновление" -#: db_printview.php:204 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:521 pdf_schema.php:1250 tbl_printview.php:452 -#: tbl_structure.php:824 +#: db_printview.php:203 libraries/db_info.inc.php:96 +#: libraries/export/sql.php:521 pdf_schema.php:1249 tbl_printview.php:451 +#: tbl_structure.php:822 msgid "Last check" msgstr "Последняя проверка" -#: db_printview.php:221 db_structure.php:479 +#: db_printview.php:220 db_structure.php:465 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -394,95 +368,95 @@ msgstr[0] "Таблиц: %s" msgstr[1] "Таблиц: %s" msgstr[2] "Таблиц: %s" -#: db_qbe.php:28 import.php:453 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1980 libraries/sql_query_form.lib.php:138 -#: tbl_operations.php:212 tbl_relation.php:291 tbl_row_action.php:130 -#: view_operations.php:61 +#: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 +#: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "SQL-запрос был успешно выполнен" -#: db_qbe.php:41 +#: db_qbe.php:38 msgid "You have to choose at least one column to display" msgstr "" "Для выполнения запроса, должен быть выбран отображаемый столбец/столбцы." -#: db_qbe.php:199 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:865 +#: db_qbe.php:196 libraries/db_structure.lib.php:95 +#: libraries/display_tbl.lib.php:864 msgid "Sort" msgstr "Отсортировать" -#: db_qbe.php:208 db_qbe.php:242 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:522 libraries/display_tbl.lib.php:827 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:259 -#: tbl_select.php:311 +#: db_qbe.php:205 db_qbe.php:239 libraries/db_structure.lib.php:102 +#: libraries/display_tbl.lib.php:521 libraries/display_tbl.lib.php:826 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:257 +#: tbl_select.php:310 msgid "Ascending" msgstr "По возрастанию" -#: db_qbe.php:209 db_qbe.php:250 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:527 libraries/display_tbl.lib.php:824 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:260 -#: tbl_select.php:312 +#: db_qbe.php:206 db_qbe.php:247 libraries/db_structure.lib.php:110 +#: libraries/display_tbl.lib.php:526 libraries/display_tbl.lib.php:823 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:258 +#: tbl_select.php:311 msgid "Descending" msgstr "По убыванию" -#: db_qbe.php:263 db_tracking.php:77 libraries/display_tbl.lib.php:307 -#: tbl_change.php:275 tbl_tracking.php:596 +#: db_qbe.php:260 db_tracking.php:73 libraries/display_tbl.lib.php:306 +#: tbl_change.php:270 tbl_tracking.php:591 msgid "Show" msgstr "Показать" -#: db_qbe.php:299 +#: db_qbe.php:296 msgid "Criteria" msgstr "Критерий" -#: db_qbe.php:352 db_qbe.php:434 db_qbe.php:526 db_qbe.php:557 +#: db_qbe.php:349 db_qbe.php:431 db_qbe.php:523 db_qbe.php:554 msgid "Ins" msgstr "Вставить" -#: db_qbe.php:356 db_qbe.php:438 db_qbe.php:523 db_qbe.php:554 +#: db_qbe.php:353 db_qbe.php:435 db_qbe.php:520 db_qbe.php:551 msgid "And" msgstr "И" -#: db_qbe.php:365 db_qbe.php:446 db_qbe.php:528 db_qbe.php:559 +#: db_qbe.php:362 db_qbe.php:443 db_qbe.php:525 db_qbe.php:556 msgid "Del" msgstr "Удалить" -#: db_qbe.php:369 db_qbe.php:450 db_qbe.php:521 db_qbe.php:552 -#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:778 -#: server_privileges.php:297 tbl_change.php:1027 tbl_indexes.php:249 -#: tbl_select.php:285 +#: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 +#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:777 +#: server_privileges.php:296 tbl_change.php:925 tbl_indexes.php:248 +#: tbl_select.php:284 msgid "Or" msgstr "Или" -#: db_qbe.php:506 +#: db_qbe.php:503 msgid "Modify" msgstr "Изменить" -#: db_qbe.php:583 +#: db_qbe.php:580 #, fuzzy #| msgid "Add/Delete Criteria Row" msgid "Add/Delete criteria rows" msgstr "Добавить/удалить ряд критерия" -#: db_qbe.php:595 +#: db_qbe.php:592 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Add/Delete columns" msgstr "Добавить/удалить столбец критерия" -#: db_qbe.php:608 db_qbe.php:633 +#: db_qbe.php:605 db_qbe.php:630 msgid "Update Query" msgstr "Дополнить запрос" -#: db_qbe.php:616 +#: db_qbe.php:613 msgid "Use Tables" msgstr "Использовать таблицы" -#: db_qbe.php:639 +#: db_qbe.php:636 #, php-format msgid "SQL query on database %s:" msgstr "SQL-запрос к базе данных %s:" -#: db_qbe.php:933 libraries/common.lib.php:1222 +#: db_qbe.php:930 libraries/common.lib.php:1215 msgid "Submit Query" msgstr "Выполнить запрос" @@ -523,17 +497,17 @@ msgstr[0] "%s вхождения(ий) в таблице %s" msgstr[1] "%s вхождения(ий) в таблице %s" msgstr[2] "%s вхождения(ий) в таблице %s" -#: db_search.php:249 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2831 -#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:49 -#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:466 +#: db_search.php:249 db_structure.php:75 db_structure.php:76 +#: db_structure.php:88 db_structure.php:90 db_structure.php:101 +#: db_structure.php:103 libraries/common.lib.php:2836 +#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 +#: tbl_structure.php:35 tbl_structure.php:47 tbl_structure.php:464 msgid "Browse" msgstr "Обзор" -#: db_search.php:254 libraries/display_tbl.lib.php:1164 -#: libraries/display_tbl.lib.php:2055 libraries/sql_query_form.lib.php:453 -#: pdf_pages.php:285 pdf_pages.php:424 pdf_pages.php:460 pdf_pages.php:488 +#: db_search.php:254 libraries/display_tbl.lib.php:1163 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 msgid "Delete" @@ -574,66 +548,66 @@ msgstr "В таблице/таблицах:" msgid "Inside column:" msgstr "Внутри поля:" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2830 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:75 +#: db_structure.php:79 db_structure.php:80 db_structure.php:92 +#: db_structure.php:93 db_structure.php:105 db_structure.php:106 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 +#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Вставить" -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2827 libraries/common.lib.php:2834 -#: libraries/db_links.inc.php:62 libraries/export/htmlword.php:22 +#: db_structure.php:81 db_structure.php:94 db_structure.php:107 +#: libraries/common.lib.php:2832 libraries/common.lib.php:2839 +#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 -#: libraries/tbl_links.inc.php:55 pmd_general.php:133 -#: server_privileges.php:593 server_replication.php:314 tbl_tracking.php:268 +#: libraries/tbl_links.inc.php:54 pmd_general.php:133 +#: server_privileges.php:592 server_replication.php:313 tbl_tracking.php:263 msgid "Structure" msgstr "Структура" -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:544 db_structure.php:545 db_tracking.php:90 -#: libraries/Index.class.php:482 libraries/common.lib.php:1659 -#: libraries/db_links.inc.php:99 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:126 -#: server_databases.php:351 tbl_structure.php:26 tbl_structure.php:150 -#: tbl_structure.php:151 tbl_structure.php:470 +#: db_structure.php:82 db_structure.php:83 db_structure.php:95 +#: db_structure.php:96 db_structure.php:108 db_structure.php:109 +#: db_structure.php:530 db_structure.php:531 db_tracking.php:86 +#: libraries/Index.class.php:482 libraries/common.lib.php:1663 +#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 +#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 +#: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" msgstr "Удалить" -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:542 db_structure.php:543 libraries/common.lib.php:1658 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:104 +#: db_structure.php:84 db_structure.php:85 db_structure.php:97 +#: db_structure.php:98 db_structure.php:110 db_structure.php:111 +#: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 +#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 msgid "Empty" msgstr "Очистить" -#: db_structure.php:315 libraries/tbl_links.inc.php:99 +#: db_structure.php:301 libraries/tbl_links.inc.php:98 #, php-format msgid "Table %s has been emptied" msgstr "Таблица %s была очищена" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "View %s has been dropped" msgstr "Представление %s было удалено" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "Table %s has been dropped" msgstr "Таблица %s была удалена" -#: db_structure.php:332 +#: db_structure.php:318 msgid "Tracking is active." msgstr "Слежение включено." -#: db_structure.php:334 +#: db_structure.php:320 msgid "Tracking is not active." msgstr "Слежение выключено." -#: db_structure.php:419 libraries/display_tbl.lib.php:1943 +#: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -642,160 +616,166 @@ msgstr "" "Данное представление имеет, по меньшей мере, указанное количество строк. " "Пожалуйста, обратитесь к %sдокументации%s." -#: db_structure.php:433 db_structure.php:447 libraries/header.inc.php:125 -#: libraries/tbl_info.inc.php:65 tbl_structure.php:184 test/theme.php:73 +#: db_structure.php:419 db_structure.php:433 libraries/header.inc.php:125 +#: libraries/tbl_info.inc.php:60 tbl_structure.php:183 test/theme.php:73 msgid "View" msgstr "Представление" -#: db_structure.php:484 libraries/db_structure.lib.php:40 -#: libraries/server_links.inc.php:69 server_replication.php:32 -#: server_replication.php:163 server_status.php:368 +#: db_structure.php:470 libraries/db_structure.lib.php:40 +#: libraries/server_links.inc.php:69 server_replication.php:31 +#: server_replication.php:162 server_status.php:368 msgid "Replication" msgstr "Репликация" -#: db_structure.php:488 +#: db_structure.php:474 msgid "Sum" msgstr "Всего" -#: db_structure.php:495 libraries/StorageEngine.class.php:349 +#: db_structure.php:481 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s - тип таблиц данного MySQL сервера устанавливаемый по умолчанию." -#: db_structure.php:523 db_structure.php:540 db_structure.php:541 -#: libraries/display_tbl.lib.php:2080 libraries/display_tbl.lib.php:2085 -#: libraries/mult_submits.inc.php:15 server_databases.php:345 -#: server_databases.php:350 server_privileges.php:1588 tbl_structure.php:454 -#: tbl_structure.php:463 +#: db_structure.php:509 db_structure.php:526 db_structure.php:527 +#: libraries/display_tbl.lib.php:2039 libraries/display_tbl.lib.php:2044 +#: libraries/mult_submits.inc.php:15 server_databases.php:343 +#: server_databases.php:348 server_privileges.php:1592 tbl_structure.php:452 +#: tbl_structure.php:461 msgid "With selected:" msgstr "С отмеченными:" -#: db_structure.php:526 libraries/display_tbl.lib.php:2075 -#: server_databases.php:347 server_privileges.php:569 -#: server_privileges.php:1591 tbl_structure.php:457 +#: db_structure.php:512 libraries/display_tbl.lib.php:2034 +#: server_databases.php:345 server_privileges.php:568 +#: server_privileges.php:1595 tbl_structure.php:455 msgid "Check All" msgstr "Отметить все" -#: db_structure.php:530 libraries/display_tbl.lib.php:2076 -#: libraries/replication_gui.lib.php:35 server_databases.php:349 -#: server_privileges.php:572 server_privileges.php:1595 tbl_structure.php:461 +#: db_structure.php:516 libraries/display_tbl.lib.php:2035 +#: libraries/replication_gui.lib.php:35 server_databases.php:347 +#: server_privileges.php:571 server_privileges.php:1599 tbl_structure.php:459 msgid "Uncheck All" msgstr "Снять выделение" -#: db_structure.php:535 +#: db_structure.php:521 msgid "Check tables having overhead" msgstr "Отметить требующие оптимизации" -#: db_structure.php:546 db_structure.php:547 db_structure.php:598 -#: libraries/display_tbl.lib.php:2179 libraries/mult_submits.inc.php:27 -#: tbl_structure.php:491 tbl_structure.php:493 +#: db_structure.php:532 db_structure.php:533 db_structure.php:584 +#: libraries/display_tbl.lib.php:2138 libraries/mult_submits.inc.php:27 +#: tbl_structure.php:489 tbl_structure.php:491 msgid "Print view" msgstr "Версия для печати" -#: db_structure.php:548 db_structure.php:549 libraries/mult_submits.inc.php:41 -#: tbl_operations.php:580 +#: db_structure.php:534 db_structure.php:535 libraries/mult_submits.inc.php:41 +#: tbl_operations.php:578 msgid "Check table" msgstr "Проверить таблицу" -#: db_structure.php:550 db_structure.php:551 libraries/mult_submits.inc.php:46 -#: tbl_operations.php:620 tbl_structure.php:708 tbl_structure.php:710 +#: db_structure.php:536 db_structure.php:537 libraries/mult_submits.inc.php:46 +#: tbl_operations.php:618 tbl_structure.php:706 tbl_structure.php:708 msgid "Optimize table" msgstr "Оптимизировать таблицу" -#: db_structure.php:552 db_structure.php:553 libraries/mult_submits.inc.php:51 -#: tbl_operations.php:610 +#: db_structure.php:538 db_structure.php:539 libraries/mult_submits.inc.php:51 +#: tbl_operations.php:608 msgid "Repair table" msgstr "Восстановить таблицу" -#: db_structure.php:554 db_structure.php:555 libraries/mult_submits.inc.php:56 -#: tbl_operations.php:600 +#: db_structure.php:540 db_structure.php:541 libraries/mult_submits.inc.php:56 +#: tbl_operations.php:598 msgid "Analyze table" msgstr "Анализ таблицы" -#: db_structure.php:556 db_structure.php:557 libraries/db_links.inc.php:70 -#: libraries/display_export.lib.php:82 libraries/display_tbl.lib.php:2093 -#: libraries/display_tbl.lib.php:2224 libraries/mult_submits.inc.php:61 -#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:81 -#: pmd_pdf.php:83 pmd_pdf.php:108 server_privileges.php:1372 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 +#: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 +#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 +#: pmd_pdf.php:81 pmd_pdf.php:106 server_privileges.php:1376 #: setup/frames/menu.inc.php:22 tbl_row_action.php:58 msgid "Export" msgstr "Экспорт" -#: db_structure.php:605 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:591 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "Словарь данных" -#: db_tracking.php:65 +#: db_tracking.php:61 msgid "Tracked tables" msgstr "Отслеживаемые таблицы" -#: db_tracking.php:70 libraries/export/htmlword.php:85 +#: db_tracking.php:66 libraries/export/htmlword.php:85 #: libraries/export/latex.php:152 libraries/export/odt.php:112 #: libraries/export/sql.php:339 libraries/export/texytext.php:84 #: libraries/export/xml.php:254 libraries/header.inc.php:105 -#: libraries/header_printview.inc.php:57 server_databases.php:168 -#: server_privileges.php:1652 server_privileges.php:1713 -#: server_privileges.php:1971 server_processlist.php:55 -#: server_synchronize.php:1178 server_synchronize.php:1182 -#: tbl_tracking.php:590 test/theme.php:64 +#: libraries/header_printview.inc.php:57 server_databases.php:166 +#: server_privileges.php:1656 server_privileges.php:1717 +#: server_privileges.php:1975 server_processlist.php:55 +#: server_synchronize.php:1177 server_synchronize.php:1181 +#: tbl_tracking.php:585 test/theme.php:64 msgid "Database" msgstr "База данных" -#: db_tracking.php:72 +#: db_tracking.php:68 msgid "Last version" msgstr "Последняя версия" -#: db_tracking.php:73 tbl_tracking.php:593 +#: db_tracking.php:69 tbl_tracking.php:588 msgid "Created" msgstr "Создан" -#: db_tracking.php:74 tbl_tracking.php:594 +#: db_tracking.php:70 tbl_tracking.php:589 msgid "Updated" msgstr "Обновлён" -#: db_tracking.php:76 libraries/Index.class.php:439 -#: libraries/db_structure.lib.php:44 server_databases.php:202 -#: server_privileges.php:1534 server_privileges.php:1717 -#: server_privileges.php:2065 tbl_structure.php:186 +#: db_tracking.php:71 libraries/common.lib.php:1361 +#: libraries/server_links.inc.php:48 server_processlist.php:58 +#: tbl_tracking.php:590 test/theme.php:100 +msgid "Status" +msgstr "Состояние" + +#: db_tracking.php:72 libraries/Index.class.php:439 +#: libraries/db_structure.lib.php:44 server_databases.php:200 +#: server_privileges.php:1538 server_privileges.php:1721 +#: server_privileges.php:2069 tbl_structure.php:185 msgid "Action" msgstr "Действие" -#: db_tracking.php:87 db_tracking.php:119 +#: db_tracking.php:83 db_tracking.php:115 msgid "Delete tracking data for this table" msgstr "Удалить данные слежения за таблицей" -#: db_tracking.php:105 tbl_tracking.php:547 tbl_tracking.php:605 -#: tbl_tracking.php:612 +#: db_tracking.php:101 tbl_tracking.php:542 tbl_tracking.php:600 +#: tbl_tracking.php:607 msgid "active" msgstr "включено" -#: db_tracking.php:107 tbl_tracking.php:549 tbl_tracking.php:607 -#: tbl_tracking.php:609 +#: db_tracking.php:103 tbl_tracking.php:544 tbl_tracking.php:602 +#: tbl_tracking.php:604 msgid "not active" msgstr "выключено" -#: db_tracking.php:120 +#: db_tracking.php:116 msgid "Versions" msgstr "Версии" -#: db_tracking.php:121 tbl_tracking.php:378 tbl_tracking.php:623 +#: db_tracking.php:117 tbl_tracking.php:373 tbl_tracking.php:618 msgid "Tracking report" msgstr "Отчёт слежения" -#: db_tracking.php:122 tbl_tracking.php:250 tbl_tracking.php:623 +#: db_tracking.php:118 tbl_tracking.php:245 tbl_tracking.php:618 msgid "Structure snapshot" msgstr "Обзор структуры" -#: db_tracking.php:151 +#: db_tracking.php:147 msgid "Untracked tables" msgstr "Неотслеживаемые таблицы" -#: db_tracking.php:171 db_tracking.php:173 tbl_structure.php:527 -#: tbl_structure.php:529 +#: db_tracking.php:167 db_tracking.php:169 tbl_structure.php:525 +#: tbl_structure.php:527 msgid "Track table" msgstr "Отслеживать таблицу" -#: db_tracking.php:199 +#: db_tracking.php:195 msgid "Database Log" msgstr "Журнал базы данных" @@ -803,12 +783,12 @@ msgstr "Журнал базы данных" msgid "Selected export type has to be saved in file!" msgstr "Выбранный тип экспорта возможен только в файл!" -#: export.php:153 export.php:178 export.php:620 +#: export.php:152 export.php:177 export.php:615 #, php-format msgid "Insufficient space to save the file %s." msgstr "Для сохранения файла %s недостаточно дискового пространства." -#: export.php:287 +#: export.php:286 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -816,17 +796,17 @@ msgstr "" "Файл %s уже существует на сервере, измените имя или включите параметр " "перезаписи." -#: export.php:291 export.php:295 +#: export.php:290 export.php:294 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Не достаточно прав для сохранения файла %s на веб-сервере." -#: export.php:622 +#: export.php:617 #, php-format msgid "Dump has been saved to file %s." msgstr "Дамп был сохранен в файл %s." -#: import.php:59 +#: import.php:58 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -835,14 +815,14 @@ msgstr "" "Вероятно, размер загружаемого файла слишком велик. Способы обхода данного " "ограничения описаны в %sдокументации%s." -#: import.php:278 import.php:331 libraries/File.class.php:840 -#: libraries/File.class.php:950 +#: import.php:277 import.php:330 libraries/File.class.php:566 +#: libraries/File.class.php:676 msgid "File could not be read" msgstr "Ошибка при чтении файла" -#: import.php:286 import.php:295 import.php:314 import.php:323 -#: libraries/File.class.php:1020 libraries/File.class.php:1028 -#: libraries/File.class.php:1044 libraries/File.class.php:1052 +#: import.php:285 import.php:294 import.php:313 import.php:322 +#: libraries/File.class.php:746 libraries/File.class.php:754 +#: libraries/File.class.php:770 libraries/File.class.php:778 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -852,7 +832,7 @@ msgstr "" "может быть импортирован. Поддержка данного метода еще не реализована, либо " "отключена при конфигурировании." -#: import.php:336 +#: import.php:335 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -862,31 +842,31 @@ msgstr "" "импортируемого файла превышает максимально допустимый, заданный в настройках " "PHP. См. FAQ 1.16" -#: import.php:371 libraries/display_import.lib.php:23 +#: import.php:370 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "" "Модули импорта - отсутствуют! Проверьте содержимое каталога libraries/import " "установленной копии phpMyAdmin." -#: import.php:396 +#: import.php:395 msgid "The bookmark has been deleted." msgstr "Закладка удалена." -#: import.php:400 +#: import.php:399 msgid "Showing bookmark" msgstr "Отображение закладки" -#: import.php:402 sql.php:625 +#: import.php:401 sql.php:618 #, php-format msgid "Bookmark %s created" msgstr "Закладка "%s" создана" -#: import.php:408 import.php:414 +#: import.php:407 import.php:413 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Импорт успешно завершен, запросов выполнено: %d." -#: import.php:423 +#: import.php:422 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -895,7 +875,7 @@ msgstr "" "его выбрав тот же файл, и процесс продолжится с того места на котором " "остановился." -#: import.php:425 +#: import.php:424 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -904,19 +884,19 @@ msgstr "" "означает, что phpMyAdmin не сможет завершить процесс импорта до тех пор, " "пока не будет увеличено ограничение времени выполнения php-сценариев." -#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:240 +#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:239 #: user_password.php:110 msgid "Back" msgstr "Назад" -#: index.php:188 +#: index.php:183 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "Для работы phpMyAdmin нужен браузер с поддержкой фреймов." -#: js/messages.php:25 server_synchronize.php:344 server_synchronize.php:356 -#: server_synchronize.php:372 server_synchronize.php:379 -#: server_synchronize.php:738 server_synchronize.php:766 -#: server_synchronize.php:794 server_synchronize.php:806 +#: js/messages.php:25 server_synchronize.php:343 server_synchronize.php:355 +#: server_synchronize.php:371 server_synchronize.php:378 +#: server_synchronize.php:737 server_synchronize.php:765 +#: server_synchronize.php:793 server_synchronize.php:805 msgid "Click to select" msgstr "Выделение" @@ -924,15 +904,15 @@ msgstr "Выделение" msgid "Click to unselect" msgstr "Снятие выделения" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:88 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:87 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Команда \"DROP DATABASE\" (удалить базу данных) - отключена." -#: js/messages.php:30 libraries/mult_submits.inc.php:257 sql.php:187 +#: js/messages.php:30 libraries/mult_submits.inc.php:256 sql.php:186 msgid "Do you really want to " msgstr "Вы действительно хотите выполнить запрос" -#: js/messages.php:31 libraries/mult_submits.inc.php:257 sql.php:171 +#: js/messages.php:31 libraries/mult_submits.inc.php:256 sql.php:170 msgid "You are about to DESTROY a complete database!" msgstr "База данных будет полностью удалена!" @@ -961,11 +941,11 @@ msgstr "Пустое имя хоста!" msgid "The user name is empty!" msgstr "Не задано имя пользователя!" -#: js/messages.php:44 server_privileges.php:1228 user_password.php:65 +#: js/messages.php:44 server_privileges.php:1229 user_password.php:65 msgid "The password is empty!" msgstr "Пароль не задан!" -#: js/messages.php:45 server_privileges.php:1226 user_password.php:68 +#: js/messages.php:45 server_privileges.php:1227 user_password.php:68 msgid "The passwords aren't the same!" msgstr "Некорректное подтверждение пароля!" @@ -973,27 +953,27 @@ msgstr "Некорректное подтверждение пароля!" msgid "Cancel" msgstr "Отмена" -#: js/messages.php:52 pmd_save_pos.php:53 +#: js/messages.php:52 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "Изменения сохранены" -#: js/messages.php:53 pmd_relation_upd.php:48 +#: js/messages.php:53 pmd_relation_upd.php:47 msgid "Relation deleted" msgstr "Связь удалена" -#: js/messages.php:54 pmd_relation_new.php:63 +#: js/messages.php:54 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "Добавлена связь на внешний ключ (FOREIGN KEY)" -#: js/messages.php:55 pmd_relation_new.php:85 +#: js/messages.php:55 pmd_relation_new.php:84 msgid "Internal relation added" msgstr "Добавлена внутренняя связь" -#: js/messages.php:56 pmd_relation_new.php:62 pmd_relation_new.php:87 +#: js/messages.php:56 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "Ошибка: Связь не добавлена." -#: js/messages.php:57 pmd_relation_new.php:30 +#: js/messages.php:57 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "Ошибка: Связь уже существует." @@ -1001,13 +981,13 @@ msgstr "Ошибка: Связь уже существует." msgid "Error saving coordinates for Designer." msgstr "Ошибка сохранения координат." -#: js/messages.php:59 libraries/relation.lib.php:94 -#: libraries/relation.lib.php:106 +#: js/messages.php:59 libraries/relation.lib.php:89 +#: libraries/relation.lib.php:101 msgid "General relation features" msgstr "Основные возможности связей" -#: js/messages.php:59 libraries/relation.lib.php:88 -#: libraries/relation.lib.php:95 +#: js/messages.php:59 libraries/relation.lib.php:83 +#: libraries/relation.lib.php:90 msgid "Disabled" msgstr "Недоступно" @@ -1025,7 +1005,7 @@ msgstr "" "Выберите поле являющееся первичным (PRIMARY), или уникальным (UNIQUE) " "индексом!" -#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:547 +#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" @@ -1056,10 +1036,10 @@ msgid "Prev" msgstr "Назад" #. l10n: Display text for next month link in calendar -#: js/messages.php:81 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:337 -#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:422 -#: tbl_structure.php:800 +#: js/messages.php:81 libraries/common.lib.php:2358 +#: libraries/common.lib.php:2361 libraries/display_tbl.lib.php:336 +#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 +#: tbl_structure.php:798 msgid "Next" msgstr "Следующий" @@ -1133,27 +1113,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1562 +#: js/messages.php:101 libraries/common.lib.php:1566 msgid "Jan" msgstr "Янв" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1564 +#: js/messages.php:103 libraries/common.lib.php:1568 msgid "Feb" msgstr "Фев" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1566 +#: js/messages.php:105 libraries/common.lib.php:1570 msgid "Mar" msgstr "Мар" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1568 +#: js/messages.php:107 libraries/common.lib.php:1572 msgid "Apr" msgstr "Апр" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1570 +#: js/messages.php:109 libraries/common.lib.php:1574 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1161,37 +1141,37 @@ msgid "May" msgstr "Май" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1572 +#: js/messages.php:111 libraries/common.lib.php:1576 msgid "Jun" msgstr "Июн" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1574 +#: js/messages.php:113 libraries/common.lib.php:1578 msgid "Jul" msgstr "Июл" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1576 +#: js/messages.php:115 libraries/common.lib.php:1580 msgid "Aug" msgstr "Авг" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1578 +#: js/messages.php:117 libraries/common.lib.php:1582 msgid "Sep" msgstr "Сен" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1580 +#: js/messages.php:119 libraries/common.lib.php:1584 msgid "Oct" msgstr "Окт" #. l10n: Short month name -#: js/messages.php:121 libraries/common.lib.php:1582 +#: js/messages.php:121 libraries/common.lib.php:1586 msgid "Nov" msgstr "Ноя" #. l10n: Short month name -#: js/messages.php:123 libraries/common.lib.php:1584 +#: js/messages.php:123 libraries/common.lib.php:1588 msgid "Dec" msgstr "Дек" @@ -1232,37 +1212,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1587 +#: js/messages.php:136 libraries/common.lib.php:1591 msgid "Sun" msgstr "Вс" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1589 +#: js/messages.php:138 libraries/common.lib.php:1593 msgid "Mon" msgstr "Пн" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1591 +#: js/messages.php:140 libraries/common.lib.php:1595 msgid "Tue" msgstr "Вт" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1593 +#: js/messages.php:142 libraries/common.lib.php:1597 msgid "Wed" msgstr "Ср" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1595 +#: js/messages.php:144 libraries/common.lib.php:1599 msgid "Thu" msgstr "Чт" #. l10n: Short week day name -#: js/messages.php:146 libraries/common.lib.php:1597 +#: js/messages.php:146 libraries/common.lib.php:1601 msgid "Fri" msgstr "Пт" #. l10n: Short week day name -#: js/messages.php:148 libraries/common.lib.php:1599 +#: js/messages.php:148 libraries/common.lib.php:1603 msgid "Sat" msgstr "Сб" @@ -1342,18 +1322,13 @@ msgstr "в секунду" msgid "Font size" msgstr "Размер шрифта" -#: libraries/File.class.php:336 libraries/File.class.php:424 -#: libraries/File.class.php:561 libraries/File.class.php:700 -msgid "Unknown error in file upload." -msgstr "При время загрузке файла произошла неизвестная ошибка." - -#: libraries/File.class.php:406 +#: libraries/File.class.php:315 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "Размер загружаемого файла превышает значение директивы upload_max_filesize " "установленное в конфигурационном файле PHP (php.ini)." -#: libraries/File.class.php:409 +#: libraries/File.class.php:318 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -1361,59 +1336,63 @@ msgstr "" "Размер загружаемого файла превышает значение директивы MAX_FILE_SIZE, " "определенной в HTML форме." -#: libraries/File.class.php:412 +#: libraries/File.class.php:321 msgid "The uploaded file was only partially uploaded." msgstr "Загруженный файл был загружен только частично." -#: libraries/File.class.php:415 +#: libraries/File.class.php:324 msgid "Missing a temporary folder." msgstr "Не найден каталог для хранения временных файлов." -#: libraries/File.class.php:418 +#: libraries/File.class.php:327 msgid "Failed to write file to disk." msgstr "Ошибка при попытке записи файла на диск." -#: libraries/File.class.php:421 +#: libraries/File.class.php:330 msgid "File upload stopped by extension." msgstr "Загрузка файла остановлена из-за расширения." -#: libraries/File.class.php:898 +#: libraries/File.class.php:333 +msgid "Unknown error in file upload." +msgstr "При время загрузке файла произошла неизвестная ошибка." + +#: libraries/File.class.php:624 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:427 tbl_relation.php:528 +#: libraries/Index.class.php:427 tbl_relation.php:526 msgid "No index defined!" msgstr "Индекс не определен!" -#: libraries/Index.class.php:432 server_databases.php:131 tbl_tracking.php:315 +#: libraries/Index.class.php:432 server_databases.php:129 tbl_tracking.php:310 msgid "Indexes" msgstr "Индексы" #: libraries/Index.class.php:443 libraries/mult_submits.inc.php:102 -#: libraries/tbl_properties.inc.php:518 tbl_structure.php:32 -#: tbl_structure.php:154 tbl_structure.php:158 tbl_structure.php:473 -#: tbl_tracking.php:321 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:31 +#: tbl_structure.php:153 tbl_structure.php:157 tbl_structure.php:471 +#: tbl_tracking.php:316 msgid "Unique" msgstr "Уникальный" -#: libraries/Index.class.php:444 tbl_tracking.php:322 +#: libraries/Index.class.php:444 tbl_tracking.php:317 msgid "Packed" msgstr "Упакован" -#: libraries/Index.class.php:446 tbl_tracking.php:324 +#: libraries/Index.class.php:446 tbl_tracking.php:319 msgid "Cardinality" msgstr "Уникальных элементов" -#: libraries/Index.class.php:449 tbl_tracking.php:278 tbl_tracking.php:327 +#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322 msgid "Comment" msgstr "Комментарий" #: libraries/Index.class.php:465 libraries/common.lib.php:609 -#: libraries/common.lib.php:1198 libraries/display_tbl.lib.php:1116 +#: libraries/common.lib.php:1191 libraries/display_tbl.lib.php:1115 #: libraries/import.lib.php:1119 libraries/import.lib.php:1143 -#: pdf_pages.php:284 setup/frames/index.inc.php:124 +#: pdf_pages.php:283 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:349 tbl_row_action.php:68 msgid "Edit" msgstr "Изменить" @@ -1435,15 +1414,15 @@ msgid "" msgstr "Индексы %1$s и %2$s равнозначны и один из них может быть удалён." #: libraries/List_Database.class.php:430 libraries/server_links.inc.php:40 -#: server_databases.php:87 server_privileges.php:1652 +#: server_databases.php:85 server_privileges.php:1656 #: setup/lib/messages.inc.php:107 test/theme.php:92 msgid "Databases" msgstr "Базы данных" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:259 libraries/import.lib.php:134 pdf_schema.php:31 -#: pdf_schema.php:231 tbl_change.php:1023 tbl_operations.php:212 -#: tbl_relation.php:289 view_operations.php:61 +#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 +#: tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Ошибка" @@ -1471,41 +1450,41 @@ msgid_plural "%1$d rows inserted." msgstr[0] "Вставлено строк: %1$d." msgstr[1] "Вставлено строк: %1$d." -#: libraries/StorageEngine.class.php:196 +#: libraries/StorageEngine.class.php:194 msgid "" "There is no detailed status information available for this storage engine." msgstr "" "Дополнительная информация о состоянии данного типа таблиц - отсутствует." -#: libraries/StorageEngine.class.php:352 +#: libraries/StorageEngine.class.php:354 #, php-format msgid "%s is available on this MySQL server." msgstr "Данный MySQL-сервер поддерживает таблицы типа %s." -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:357 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "Тип таблиц %s был отключен на данном MySQL сервере." -#: libraries/StorageEngine.class.php:359 +#: libraries/StorageEngine.class.php:361 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "Данный сервер MySQL не поддерживает тип таблиц %s." -#: libraries/Table.class.php:1018 +#: libraries/Table.class.php:1017 msgid "Invalid database" msgstr "Некорректная база данных" -#: libraries/Table.class.php:1032 tbl_get_field.php:25 +#: libraries/Table.class.php:1031 tbl_get_field.php:25 msgid "Invalid table name" msgstr "Неправильное имя таблицы" -#: libraries/Table.class.php:1047 +#: libraries/Table.class.php:1046 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "Ошибка при переименовании таблицы %1$s в %2$s" -#: libraries/Table.class.php:1131 +#: libraries/Table.class.php:1129 #, php-format msgid "Table %s has been renamed to %s" msgstr "Таблица `%s` была переименована в `%s`." @@ -1523,22 +1502,22 @@ msgstr "Предпросмотр не доступен." msgid "take it" msgstr "Применить" -#: libraries/Theme_Manager.class.php:114 +#: libraries/Theme_Manager.class.php:109 #, php-format msgid "Default theme %s not found!" msgstr "Тема по-умолчанию %s не найдена!" -#: libraries/Theme_Manager.class.php:152 +#: libraries/Theme_Manager.class.php:147 #, php-format msgid "Theme %s not found!" msgstr "Тема %s не найдена!" -#: libraries/Theme_Manager.class.php:220 +#: libraries/Theme_Manager.class.php:215 #, php-format msgid "Theme path not found for theme %s!" msgstr "Путь к файлам темы %s не найден!" -#: libraries/Theme_Manager.class.php:296 test/theme.php:160 themes.php:20 +#: libraries/Theme_Manager.class.php:291 test/theme.php:160 themes.php:20 #: themes.php:40 msgid "Theme / Style" msgstr "Тема / Стиль" @@ -1652,19 +1631,19 @@ msgstr "Отсутствует действенный подключенный msgid "Authenticating..." msgstr "Идентификация..." -#: libraries/blobstreaming.lib.php:689 +#: libraries/blobstreaming.lib.php:340 msgid "View image" msgstr "Просмотреть изображение" -#: libraries/blobstreaming.lib.php:693 +#: libraries/blobstreaming.lib.php:344 msgid "Play audio" msgstr "Воспроизвести аудио" -#: libraries/blobstreaming.lib.php:698 +#: libraries/blobstreaming.lib.php:349 msgid "View video" msgstr "Просмотреть видео" -#: libraries/blobstreaming.lib.php:702 +#: libraries/blobstreaming.lib.php:353 msgid "Download file" msgstr "Загрузить файл" @@ -1722,7 +1701,7 @@ msgid "Invalid authentication method set in configuration:" msgstr "" "В конфигурационном файле phpMyAdmin установлен неверный метод аутентификации:" -#: libraries/common.inc.php:909 +#: libraries/common.inc.php:908 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Необходимо обновить %s до версии %s или выше." @@ -1747,7 +1726,8 @@ msgstr "en" #: libraries/common.lib.php:425 libraries/common.lib.php:427 #: libraries/common.lib.php:429 libraries/common.lib.php:445 #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 -#: libraries/display_export.lib.php:163 libraries/relation.lib.php:84 +#: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 +#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 #: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" @@ -1762,151 +1742,151 @@ msgstr "SQL-запрос" msgid "MySQL said: " msgstr "Ответ MySQL: " -#: libraries/common.lib.php:1136 +#: libraries/common.lib.php:1129 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "Failed to connect to SQL validator!" msgstr "Невозможно соединиться с сервером MySQL" -#: libraries/common.lib.php:1174 setup/lib/messages.inc.php:350 +#: libraries/common.lib.php:1167 setup/lib/messages.inc.php:350 msgid "Explain SQL" msgstr "Анализ запроса" -#: libraries/common.lib.php:1177 +#: libraries/common.lib.php:1170 msgid "Skip Explain SQL" msgstr "Убрать анализ" -#: libraries/common.lib.php:1211 +#: libraries/common.lib.php:1204 msgid "Without PHP Code" msgstr "Убрать PHP-код" -#: libraries/common.lib.php:1214 setup/lib/messages.inc.php:352 +#: libraries/common.lib.php:1207 setup/lib/messages.inc.php:352 msgid "Create PHP Code" msgstr "PHP-код" -#: libraries/common.lib.php:1232 server_status.php:451 +#: libraries/common.lib.php:1225 server_status.php:451 #: setup/lib/messages.inc.php:351 msgid "Refresh" msgstr "Обновить" -#: libraries/common.lib.php:1241 +#: libraries/common.lib.php:1234 msgid "Skip Validate SQL" msgstr "Убрать проверку синтаксиса SQL" -#: libraries/common.lib.php:1244 setup/lib/messages.inc.php:353 +#: libraries/common.lib.php:1237 setup/lib/messages.inc.php:353 msgid "Validate SQL" msgstr "Проверка синтаксиса" -#: libraries/common.lib.php:1283 +#: libraries/common.lib.php:1287 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1285 +#: libraries/common.lib.php:1289 #, fuzzy #| msgid "Engines" msgid "Inline" msgstr "Типы таблиц" -#: libraries/common.lib.php:1339 libraries/common.lib.php:1354 +#: libraries/common.lib.php:1343 libraries/common.lib.php:1358 msgid "Profiling" msgstr "Профилирование" -#: libraries/common.lib.php:1358 libraries/tbl_triggers.lib.php:27 +#: libraries/common.lib.php:1362 libraries/tbl_triggers.lib.php:27 #: server_processlist.php:57 msgid "Time" msgstr "Время" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "B" msgstr "Байт" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "KiB" msgstr "КБ" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "MiB" msgstr "МБ" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "GiB" msgstr "ГБ" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "TiB" msgstr "ТБ" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "PiB" msgstr "ПБ" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "EiB" msgstr "ЭБ" #. l10n: Thousands separator -#: libraries/common.lib.php:1424 +#: libraries/common.lib.php:1428 msgid "," msgstr "," #. l10n: Decimal separator -#: libraries/common.lib.php:1426 +#: libraries/common.lib.php:1430 msgid "." msgstr "." #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1603 +#: libraries/common.lib.php:1607 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d %Y г., %H:%M" -#: libraries/common.lib.php:1909 +#: libraries/common.lib.php:1913 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s дней, %s часов, %s минут и %s секунд" -#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 -#: libraries/display_tbl.lib.php:289 server_status.php:718 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 +#: libraries/display_tbl.lib.php:288 server_status.php:718 msgid "Begin" msgstr "Начало" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 -#: libraries/display_tbl.lib.php:290 server_binlog.php:154 +#: libraries/common.lib.php:2328 libraries/common.lib.php:2331 +#: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "Назад" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 -#: libraries/display_tbl.lib.php:352 +#: libraries/common.lib.php:2359 libraries/common.lib.php:2362 +#: libraries/display_tbl.lib.php:351 msgid "End" msgstr "Конец" -#: libraries/common.lib.php:2429 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "Перейти к базе данных "%s"" -#: libraries/common.lib.php:2448 +#: libraries/common.lib.php:2453 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" "Работа параметра "%s" подвержена ошибке, описание смотрите на %s" -#: libraries/common.lib.php:2828 libraries/common.lib.php:2835 -#: libraries/db_links.inc.php:67 libraries/export/sql.php:24 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 +#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 -#: libraries/tbl_links.inc.php:59 querywindow.php:89 test/theme.php:96 +#: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2837 libraries/db_links.inc.php:103 -#: libraries/tbl_links.inc.php:94 libraries/tbl_links.inc.php:116 -#: view_operations.php:88 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: view_operations.php:87 msgid "Operations" msgstr "Операции" -#: libraries/core.lib.php:282 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1922,38 +1902,38 @@ msgstr "События" msgid "Name" msgstr "Имя" -#: libraries/db_links.inc.php:44 +#: libraries/db_links.inc.php:43 #, php-format msgid "Database %s has been dropped." msgstr "База данных %s была удалена." -#: libraries/db_links.inc.php:56 libraries/db_links.inc.php:57 -#: libraries/db_links.inc.php:58 +#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 +#: libraries/db_links.inc.php:57 msgid "Database seems to be empty!" msgstr "База данных - пуста!" -#: libraries/db_links.inc.php:80 libraries/relation.lib.php:142 -#: libraries/tbl_links.inc.php:68 +#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "Слежение" -#: libraries/db_links.inc.php:85 +#: libraries/db_links.inc.php:84 msgid "Query" msgstr "Запрос по шаблону" -#: libraries/db_links.inc.php:90 libraries/relation.lib.php:138 +#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 msgid "Designer" msgstr "Дизайнер" -#: libraries/db_links.inc.php:97 libraries/server_links.inc.php:87 -#: libraries/tbl_links.inc.php:90 pmd_pdf.php:83 pmd_pdf.php:109 +#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Импорт" -#: libraries/db_links.inc.php:110 libraries/server_links.inc.php:65 -#: server_privileges.php:111 server_privileges.php:1714 -#: server_privileges.php:2063 test/theme.php:116 +#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: server_privileges.php:110 server_privileges.php:1718 +#: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" msgstr "Привилегии" @@ -1965,14 +1945,14 @@ msgstr "Процедуры" msgid "Return type" msgstr "Возвращаемый тип" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1847 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1806 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "Может быть приблизительно. См. FAQ 3.11" -#: libraries/db_structure.lib.php:60 server_databases.php:141 -#: tbl_printview.php:334 tbl_structure.php:681 +#: libraries/db_structure.lib.php:60 server_databases.php:139 +#: tbl_printview.php:333 tbl_structure.php:679 msgid "Overhead" msgstr "Фрагментировано" @@ -1992,7 +1972,7 @@ msgstr "Сервер не отвечает" msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "(либо сокет локального MySQL-сервера некорректно настроен)" -#: libraries/dbi/mysql.dbi.lib.php:358 tbl_structure.php:607 +#: libraries/dbi/mysql.dbi.lib.php:358 tbl_structure.php:605 msgid "Details..." msgstr "Детали..." @@ -2002,22 +1982,22 @@ msgid "Change password" msgstr "Изменить пароль" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:807 +#: libraries/replication_gui.lib.php:347 server_privileges.php:806 msgid "No Password" msgstr "Без пароля" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1530 server_synchronize.php:1174 +#: libraries/replication_gui.lib.php:351 server_privileges.php:795 +#: server_privileges.php:799 server_privileges.php:810 +#: server_privileges.php:1534 server_synchronize.php:1173 msgid "Password" msgstr "Пароль" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:815 server_privileges.php:818 +#: server_privileges.php:814 server_privileges.php:817 msgid "Re-type" msgstr "Подтверждение" @@ -2040,8 +2020,8 @@ msgstr "Новая база данных" msgid "Create" msgstr "Создать" -#: libraries/display_create_database.lib.php:39 server_privileges.php:113 -#: server_privileges.php:1419 server_replication.php:34 +#: libraries/display_create_database.lib.php:39 server_privileges.php:112 +#: server_privileges.php:1423 server_replication.php:33 msgid "No Privileges" msgstr "Нет привилегий" @@ -2062,52 +2042,52 @@ msgstr "Создать новую таблицу в базе данных %s" msgid "Number of columns" msgstr "Количество полей" -#: libraries/display_export.lib.php:41 +#: libraries/display_export.lib.php:35 msgid "Could not load export plugins, please check your installation!" msgstr "" "Модули экспорта, отсутствуют! Проверьте содержимое каталога libraries/export " "установленной копии phpMyAdmin." -#: libraries/display_export.lib.php:106 +#: libraries/display_export.lib.php:100 #, fuzzy, php-format #| msgid "Dump %s row(s) starting at record # %s" msgid "Dump %s row(s) starting at row # %s" msgstr "Дамп из %s строк, начиная с записи # %s." -#: libraries/display_export.lib.php:114 +#: libraries/display_export.lib.php:108 msgid "Dump all rows" msgstr "Выгрузить все строки" -#: libraries/display_export.lib.php:124 setup/lib/messages.inc.php:79 +#: libraries/display_export.lib.php:118 setup/lib/messages.inc.php:79 msgid "Save as file" msgstr "Сохранить как файл" -#: libraries/display_export.lib.php:133 +#: libraries/display_export.lib.php:127 #, php-format msgid "Save on server in %s directory" msgstr "Сохранить на сервере в каталоге %s" -#: libraries/display_export.lib.php:141 setup/lib/messages.inc.php:87 +#: libraries/display_export.lib.php:135 setup/lib/messages.inc.php:87 msgid "Overwrite existing file(s)" msgstr "Перезаписать существующий(е) файл(ы)" -#: libraries/display_export.lib.php:147 +#: libraries/display_export.lib.php:141 msgid "File name template" msgstr "Шаблон имени файла" -#: libraries/display_export.lib.php:151 +#: libraries/display_export.lib.php:145 msgid "server name" msgstr "имя сервера" -#: libraries/display_export.lib.php:154 +#: libraries/display_export.lib.php:148 msgid "database name" msgstr "имя базы данных" -#: libraries/display_export.lib.php:157 +#: libraries/display_export.lib.php:151 msgid "table name" msgstr "имя таблицы" -#: libraries/display_export.lib.php:161 +#: libraries/display_export.lib.php:155 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2118,39 +2098,39 @@ msgstr "" "вставка текущей даты и времени. Дополнительно могут быть использованы " "следующие подстановки: %3$s. Остальной текст останется без изменений." -#: libraries/display_export.lib.php:202 +#: libraries/display_export.lib.php:196 msgid "remember template" msgstr "запомнить шаблон" -#: libraries/display_export.lib.php:210 libraries/display_import.lib.php:177 +#: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 #: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 msgid "Character set of the file:" msgstr "Кодировка файла:" -#: libraries/display_export.lib.php:235 setup/lib/messages.inc.php:81 +#: libraries/display_export.lib.php:229 setup/lib/messages.inc.php:81 msgid "Compression" msgstr "Упаковать" -#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:196 -#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:529 -#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:574 -#: server_privileges.php:1867 server_processlist.php:74 +#: libraries/display_export.lib.php:234 libraries/display_import.lib.php:196 +#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:528 +#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:573 +#: server_privileges.php:1871 server_processlist.php:74 msgid "None" msgstr "Нет" -#: libraries/display_export.lib.php:247 +#: libraries/display_export.lib.php:241 msgid "\"zipped\"" msgstr "zip" -#: libraries/display_export.lib.php:253 +#: libraries/display_export.lib.php:247 msgid "\"gzipped\"" msgstr "gzip" -#: libraries/display_export.lib.php:259 +#: libraries/display_export.lib.php:253 msgid "\"bzipped\"" msgstr "bzip" -#: libraries/display_export.lib.php:274 libraries/export/sql.php:42 +#: libraries/display_export.lib.php:268 libraries/export/sql.php:42 #: libraries/import/sql.php:31 msgid "SQL compatibility mode" msgstr "Режим совместимости SQL" @@ -2188,12 +2168,12 @@ msgid "File uploads are not allowed on this server." msgstr "Загрузка файлов на сервер, невозможна." #: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 -#: tbl_change.php:1024 +#: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "Установленный каталог загрузки не доступен" #: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 -#: tbl_change.php:1027 +#: tbl_change.php:925 msgid "web server upload directory" msgstr "Из каталога загрузки" @@ -2278,43 +2258,43 @@ msgstr "Размер бумаги" msgid "Language" msgstr "Язык" -#: libraries/display_tbl.lib.php:303 +#: libraries/display_tbl.lib.php:302 #, php-format msgid "%d is not valid row number." msgstr "Число %d не является правильным номером строки." -#: libraries/display_tbl.lib.php:309 +#: libraries/display_tbl.lib.php:308 #, fuzzy #| msgid "row(s) starting from record #" msgid "row(s) starting from row #" msgstr "строк начиная с" -#: libraries/display_tbl.lib.php:315 +#: libraries/display_tbl.lib.php:314 msgid "horizontal" msgstr "горизонтальном" -#: libraries/display_tbl.lib.php:316 +#: libraries/display_tbl.lib.php:315 msgid "horizontal (rotated headers)" msgstr "горизонтальном (повернутые заголовки)" -#: libraries/display_tbl.lib.php:317 +#: libraries/display_tbl.lib.php:316 msgid "vertical" msgstr "вертикальном" -#: libraries/display_tbl.lib.php:323 +#: libraries/display_tbl.lib.php:322 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "в %s режиме, заголовки после каждых %s ячеек" -#: libraries/display_tbl.lib.php:345 +#: libraries/display_tbl.lib.php:344 msgid "This operation could take a long time. Proceed anyway?" msgstr "Выполнение данной операции может занять длительное время. Продолжить?" -#: libraries/display_tbl.lib.php:511 +#: libraries/display_tbl.lib.php:510 msgid "Sort by key" msgstr "Сортировать по индексу" -#: libraries/display_tbl.lib.php:554 libraries/export/codegen.php:38 +#: libraries/display_tbl.lib.php:553 libraries/export/codegen.php:38 #: libraries/export/csv.php:29 libraries/export/excel.php:34 #: libraries/export/htmlword.php:28 libraries/export/latex.php:32 #: libraries/export/mediawiki.php:21 libraries/export/ods.php:26 @@ -2324,99 +2304,99 @@ msgstr "Сортировать по индексу" #: libraries/export/xlsx.php:26 libraries/export/xml.php:23 #: libraries/export/yaml.php:27 libraries/import.lib.php:1114 #: libraries/import.lib.php:1136 libraries/import/csv.php:31 -#: libraries/import/docsql.php:33 libraries/import/ldi.php:46 +#: libraries/import/docsql.php:32 libraries/import/ldi.php:46 #: libraries/import/ods.php:30 libraries/import/sql.php:19 #: libraries/import/xls.php:25 libraries/import/xlsx.php:25 -#: libraries/import/xml.php:25 tbl_select.php:264 tbl_structure.php:752 +#: libraries/import/xml.php:25 tbl_select.php:263 tbl_structure.php:750 msgid "Options" msgstr "Параметры" -#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:569 +#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:568 msgid "Partial Texts" msgstr "Сокращенное отображение данных" -#: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:573 +#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:572 msgid "Full Texts" msgstr "Развернутое отображение данных" -#: libraries/display_tbl.lib.php:586 +#: libraries/display_tbl.lib.php:585 msgid "Relational key" msgstr "Ссылочный ключ" -#: libraries/display_tbl.lib.php:587 +#: libraries/display_tbl.lib.php:586 #, fuzzy #| msgid "Relational display field" msgid "Relational display column" msgstr "Значение связанного поля" -#: libraries/display_tbl.lib.php:594 +#: libraries/display_tbl.lib.php:593 msgid "Show binary contents" msgstr "Показать бинарные данные" -#: libraries/display_tbl.lib.php:596 +#: libraries/display_tbl.lib.php:595 msgid "Show BLOB contents" msgstr "Показать BLOB содержимое" -#: libraries/display_tbl.lib.php:598 +#: libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "Показывать бинарные данные в виде HEX значений" -#: libraries/display_tbl.lib.php:606 pmd_general.php:140 tbl_change.php:312 -#: tbl_change.php:318 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:307 +#: tbl_change.php:313 msgid "Hide" msgstr "Скрыть" -#: libraries/display_tbl.lib.php:606 libraries/relation.lib.php:122 -#: libraries/tbl_properties.inc.php:143 transformation_overview.php:46 +#: libraries/display_tbl.lib.php:605 libraries/relation.lib.php:117 +#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46 msgid "Browser transformation" msgstr "Преобразование" -#: libraries/display_tbl.lib.php:1125 libraries/display_tbl.lib.php:1129 -#: libraries/display_tbl.lib.php:1131 +#: libraries/display_tbl.lib.php:1124 libraries/display_tbl.lib.php:1128 +#: libraries/display_tbl.lib.php:1130 msgid "Execute bookmarked query" msgstr "Выполнить отмеченный запрос" -#: libraries/display_tbl.lib.php:1144 libraries/display_tbl.lib.php:1156 +#: libraries/display_tbl.lib.php:1143 libraries/display_tbl.lib.php:1155 msgid "The row has been deleted" msgstr "Запись была удалена" -#: libraries/display_tbl.lib.php:1183 libraries/display_tbl.lib.php:2055 +#: libraries/display_tbl.lib.php:1182 libraries/display_tbl.lib.php:2014 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "Завершить" -#: libraries/display_tbl.lib.php:1933 +#: libraries/display_tbl.lib.php:1892 msgid "in query" msgstr "по запросу" -#: libraries/display_tbl.lib.php:1951 +#: libraries/display_tbl.lib.php:1910 msgid "Showing rows" msgstr "Отображает строки" -#: libraries/display_tbl.lib.php:1961 +#: libraries/display_tbl.lib.php:1920 msgid "total" msgstr "всего" -#: libraries/display_tbl.lib.php:1969 sql.php:523 +#: libraries/display_tbl.lib.php:1928 sql.php:522 #, php-format msgid "Query took %01.4f sec" msgstr "запрос занял %01.4f сек." -#: libraries/display_tbl.lib.php:2088 libraries/mult_submits.inc.php:112 -#: querywindow.php:115 querywindow.php:119 querywindow.php:122 -#: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:469 +#: libraries/display_tbl.lib.php:2047 libraries/mult_submits.inc.php:112 +#: querywindow.php:114 querywindow.php:118 querywindow.php:121 +#: tbl_structure.php:23 tbl_structure.php:148 tbl_structure.php:467 msgid "Change" msgstr "Изменить" -#: libraries/display_tbl.lib.php:2158 +#: libraries/display_tbl.lib.php:2117 msgid "Query results operations" msgstr "Использование результатов запроса" -#: libraries/display_tbl.lib.php:2186 +#: libraries/display_tbl.lib.php:2145 msgid "Print view (with full texts)" msgstr "Версия для печати (полностью)" -#: libraries/display_tbl.lib.php:2359 +#: libraries/display_tbl.lib.php:2318 msgid "Link not found" msgstr "Связь не найдена" @@ -2472,9 +2452,9 @@ msgstr "Состояние InnoDB" msgid "Buffer Pool Usage" msgstr "Использование" -#: libraries/engines/innodb.lib.php:168 server_databases.php:136 -#: server_databases.php:304 server_status.php:524 server_status.php:585 -#: server_status.php:606 tbl_printview.php:349 tbl_structure.php:695 +#: libraries/engines/innodb.lib.php:168 server_databases.php:134 +#: server_databases.php:302 server_status.php:524 server_status.php:585 +#: server_status.php:606 tbl_printview.php:348 tbl_structure.php:693 msgid "Total" msgstr "Всего" @@ -2616,6 +2596,87 @@ msgstr "" "REPAIR TABLE или для создания индексов при помощи команд CREATE INDEX или " "ALTER TABLE." +#: libraries/engines/pbms.lib.php:31 +#, fuzzy +#| msgid "Garbage threshold" +msgid "Garbage Threshold" +msgstr "Порог захламления" + +#: libraries/engines/pbms.lib.php:32 +#, fuzzy +#| msgid "" +#| "The percentage of garbage in a data log file before it is compacted. This " +#| "is a value between 1 and 99. The default is 50." +msgid "The percentage of garbage in a repository file before it is compacted." +msgstr "" +"Процентное соотношение захламления в файле журнала данных до его компоновки. " +"Значение между 1 и 99. Изначальное значение 50." + +#: libraries/engines/pbms.lib.php:36 libraries/replication_gui.lib.php:69 +#: server_synchronize.php:1161 +msgid "Port" +msgstr "Порт" + +#: libraries/engines/pbms.lib.php:37 +msgid "" +"The port for the PBMS stream-based communications. Setting this value to 0 " +"will disable HTTP communication with the daemon." +msgstr "" + +#: libraries/engines/pbms.lib.php:41 +msgid "Repository Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:42 +msgid "" +"The maximum size of a BLOB repository file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:46 +msgid "Temp Blob Timeout" +msgstr "" + +#: libraries/engines/pbms.lib.php:47 +msgid "" +"The timeout, in seconds, for temporary BLOBs. Uploaded BLOB data is removed " +"after this time, unless they are referenced by a record in the database." +msgstr "" + +#: libraries/engines/pbms.lib.php:51 +#, fuzzy +#| msgid "Log file threshold" +msgid "Temp Log Threshold" +msgstr "Порог файла журнала" + +#: libraries/engines/pbms.lib.php:52 +msgid "" +"The maximum size of a temporary BLOB log file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:56 +msgid "Max Keep Alive" +msgstr "" + +#: libraries/engines/pbms.lib.php:57 +msgid "" +"The timeout for inactive connection with the keep-alive flag set. After this " +"time the connection will be closed. The time-out is in milliseconds (1/1000)." +msgstr "" + +#: libraries/engines/pbms.lib.php:61 +msgid "Metadata Headers" +msgstr "" + +#: libraries/engines/pbms.lib.php:62 +msgid "" +"A \":\" delimited list of metadata headers to be used to initialize the " +"pbms_metadata_header table when a database is created." +msgstr "" + #: libraries/engines/pbxt.lib.php:22 msgid "Index cache size" msgstr "Размер кеша индекса" @@ -2766,7 +2827,7 @@ msgstr "" "порядковый номер." #: libraries/export/codegen.php:36 setup/lib/messages.inc.php:85 -#: tbl_printview.php:374 tbl_structure.php:736 +#: tbl_printview.php:373 tbl_structure.php:734 msgid "Format" msgstr "Формат" @@ -2839,9 +2900,9 @@ msgstr "Microsoft Word 2000" #: libraries/export/htmlword.php:23 libraries/export/latex.php:59 #: libraries/export/latex.php:205 libraries/export/odt.php:47 #: libraries/export/sql.php:105 libraries/export/sql.php:865 -#: libraries/export/texytext.php:27 server_databases.php:126 -#: server_privileges.php:576 server_replication.php:315 tbl_printview.php:315 -#: tbl_structure.php:664 +#: libraries/export/texytext.php:27 server_databases.php:124 +#: server_privileges.php:575 server_replication.php:314 tbl_printview.php:314 +#: tbl_structure.php:662 msgid "Data" msgstr "Данные" @@ -2856,7 +2917,6 @@ msgid "Table structure for table" msgstr "Структура таблицы" #: libraries/export/latex.php:13 -#| msgid "Content of table __TABLE__" msgid "Content of table @TABLE@" msgstr "Содержимое таблицы @TABLE@" @@ -2865,7 +2925,6 @@ msgid "(continued)" msgstr "(продолжение)" #: libraries/export/latex.php:15 -#| msgid "Structure of table __TABLE__" msgid "Structure of table @TABLE@" msgstr "Структура таблицы @TABLE@" @@ -2890,13 +2949,13 @@ msgid "Label key" msgstr "Идентификатор метки" #: libraries/export/latex.php:46 libraries/export/odt.php:34 -#: libraries/export/sql.php:90 tbl_relation.php:398 +#: libraries/export/sql.php:90 tbl_relation.php:396 msgid "Relations" msgstr "Связи" #: libraries/export/latex.php:52 libraries/export/odt.php:40 #: libraries/export/odt.php:317 libraries/export/sql.php:94 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "MIME-тип" @@ -2904,10 +2963,10 @@ msgstr "MIME-тип" #: libraries/export/xml.php:101 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1529 server_privileges.php:2061 -#: server_processlist.php:54 server_synchronize.php:1158 +#: libraries/replication_gui.lib.php:331 server_privileges.php:730 +#: server_privileges.php:733 server_privileges.php:789 +#: server_privileges.php:1533 server_privileges.php:2065 +#: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "Хост" @@ -3096,8 +3155,8 @@ msgstr "Экспортировать отображения (VIEW)" msgid "Export contents" msgstr "Экспортировать содержимое" -#: libraries/footer.inc.php:182 libraries/footer.inc.php:193 -#: libraries/footer.inc.php:196 +#: libraries/footer.inc.php:180 libraries/footer.inc.php:191 +#: libraries/footer.inc.php:194 msgid "Open new phpMyAdmin window" msgstr "Открыть phpMyAdmin в новом окне" @@ -3114,7 +3173,7 @@ msgstr "Результат SQL-запроса" msgid "Generated by" msgstr "Создан" -#: libraries/import.lib.php:151 sql.php:519 tbl_change.php:180 +#: libraries/import.lib.php:151 sql.php:518 tbl_change.php:175 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL вернула пустой результат (т.е. ноль строк)." @@ -3170,7 +3229,7 @@ msgstr "Игнорировать повторяющиеся строки" msgid "Column names in first row" msgstr "Имена таблиц в первой строке" -#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:501 +#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:500 #: view_create.php:147 msgid "Column names" msgstr "Названия столбцов" @@ -3197,12 +3256,12 @@ msgstr "Неправильный формат входных CSV-данных в msgid "Invalid column count in CSV input on line %d." msgstr "Неправильное количество полей во входных CSV-данных в строке %d." -#: libraries/import/docsql.php:28 +#: libraries/import/docsql.php:27 msgid "DocSQL" msgstr "DocSQL" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 -#: server_synchronize.php:427 server_synchronize.php:870 +#: libraries/import/docsql.php:30 libraries/tbl_properties.inc.php:616 +#: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "Имя таблицы" @@ -3262,26 +3321,26 @@ msgstr "Нет" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:512 -#: tbl_structure.php:28 tbl_structure.php:152 tbl_structure.php:156 -#: tbl_structure.php:472 +#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:511 +#: tbl_structure.php:27 tbl_structure.php:151 tbl_structure.php:155 +#: tbl_structure.php:470 msgid "Primary" msgstr "Первичный" #: libraries/mult_submits.inc.php:97 libraries/tbl_properties.inc.php:115 -#: libraries/tbl_properties.inc.php:524 tbl_printview.php:324 -#: tbl_structure.php:30 tbl_structure.php:153 tbl_structure.php:157 -#: tbl_structure.php:474 tbl_structure.php:672 +#: libraries/tbl_properties.inc.php:523 tbl_printview.php:323 +#: tbl_structure.php:29 tbl_structure.php:152 tbl_structure.php:156 +#: tbl_structure.php:472 tbl_structure.php:670 msgid "Index" msgstr "Индекс" -#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:530 -#: tbl_structure.php:34 tbl_structure.php:155 tbl_structure.php:159 -#: tbl_structure.php:477 +#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:529 +#: tbl_structure.php:33 tbl_structure.php:154 tbl_structure.php:158 +#: tbl_structure.php:475 msgid "Fulltext" msgstr "Полнотекстовый" -#: libraries/mult_submits.inc.php:434 tbl_replace.php:330 +#: libraries/mult_submits.inc.php:433 tbl_replace.php:330 msgid "No change" msgstr "Нет изменений" @@ -3289,190 +3348,190 @@ msgstr "Нет изменений" msgid "Charset" msgstr "Кодировка" -#: libraries/mysql_charsets.lib.php:210 libraries/mysql_charsets.lib.php:411 -#: tbl_change.php:515 +#: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 +#: tbl_change.php:510 msgid "Binary" msgstr "Двоичный" -#: libraries/mysql_charsets.lib.php:222 +#: libraries/mysql_charsets.lib.php:214 msgid "Bulgarian" msgstr "Болгарский" -#: libraries/mysql_charsets.lib.php:226 libraries/mysql_charsets.lib.php:351 +#: libraries/mysql_charsets.lib.php:218 libraries/mysql_charsets.lib.php:343 msgid "Simplified Chinese" msgstr "Китайский упрощенный" -#: libraries/mysql_charsets.lib.php:228 libraries/mysql_charsets.lib.php:371 +#: libraries/mysql_charsets.lib.php:220 libraries/mysql_charsets.lib.php:363 msgid "Traditional Chinese" msgstr "Китайский традиционный" -#: libraries/mysql_charsets.lib.php:232 libraries/mysql_charsets.lib.php:418 +#: libraries/mysql_charsets.lib.php:224 libraries/mysql_charsets.lib.php:410 msgid "case-insensitive" msgstr "регистронезависимый" -#: libraries/mysql_charsets.lib.php:235 libraries/mysql_charsets.lib.php:420 +#: libraries/mysql_charsets.lib.php:227 libraries/mysql_charsets.lib.php:412 msgid "case-sensitive" msgstr "регистрозависымый" -#: libraries/mysql_charsets.lib.php:238 +#: libraries/mysql_charsets.lib.php:230 msgid "Croatian" msgstr "Хорватский" -#: libraries/mysql_charsets.lib.php:241 +#: libraries/mysql_charsets.lib.php:233 msgid "Czech" msgstr "Чешский" -#: libraries/mysql_charsets.lib.php:244 +#: libraries/mysql_charsets.lib.php:236 msgid "Danish" msgstr "Датский" -#: libraries/mysql_charsets.lib.php:247 +#: libraries/mysql_charsets.lib.php:239 msgid "English" msgstr "Английский" -#: libraries/mysql_charsets.lib.php:250 +#: libraries/mysql_charsets.lib.php:242 msgid "Esperanto" msgstr "Эсперанто" -#: libraries/mysql_charsets.lib.php:253 +#: libraries/mysql_charsets.lib.php:245 msgid "Estonian" msgstr "Эстонский" -#: libraries/mysql_charsets.lib.php:256 libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:248 libraries/mysql_charsets.lib.php:251 msgid "German" msgstr "Немецкий" -#: libraries/mysql_charsets.lib.php:256 +#: libraries/mysql_charsets.lib.php:248 msgid "dictionary" msgstr "словарь" -#: libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:251 msgid "phone book" msgstr "телефонная книга" -#: libraries/mysql_charsets.lib.php:262 +#: libraries/mysql_charsets.lib.php:254 msgid "Hungarian" msgstr "Венгерский" -#: libraries/mysql_charsets.lib.php:265 +#: libraries/mysql_charsets.lib.php:257 msgid "Icelandic" msgstr "Исландский" -#: libraries/mysql_charsets.lib.php:268 libraries/mysql_charsets.lib.php:358 +#: libraries/mysql_charsets.lib.php:260 libraries/mysql_charsets.lib.php:350 msgid "Japanese" msgstr "Японский" -#: libraries/mysql_charsets.lib.php:271 +#: libraries/mysql_charsets.lib.php:263 msgid "Latvian" msgstr "Латвийский" -#: libraries/mysql_charsets.lib.php:274 +#: libraries/mysql_charsets.lib.php:266 msgid "Lithuanian" msgstr "Литовский" -#: libraries/mysql_charsets.lib.php:277 libraries/mysql_charsets.lib.php:380 +#: libraries/mysql_charsets.lib.php:269 libraries/mysql_charsets.lib.php:372 msgid "Korean" msgstr "Корейский" -#: libraries/mysql_charsets.lib.php:280 +#: libraries/mysql_charsets.lib.php:272 msgid "Persian" msgstr "Персидский" -#: libraries/mysql_charsets.lib.php:283 +#: libraries/mysql_charsets.lib.php:275 msgid "Polish" msgstr "Польский" -#: libraries/mysql_charsets.lib.php:286 libraries/mysql_charsets.lib.php:334 +#: libraries/mysql_charsets.lib.php:278 libraries/mysql_charsets.lib.php:326 msgid "West European" msgstr "Западно-Европейский" -#: libraries/mysql_charsets.lib.php:289 +#: libraries/mysql_charsets.lib.php:281 msgid "Romanian" msgstr "Румынский" -#: libraries/mysql_charsets.lib.php:292 +#: libraries/mysql_charsets.lib.php:284 msgid "Slovak" msgstr "Словацкий" -#: libraries/mysql_charsets.lib.php:295 +#: libraries/mysql_charsets.lib.php:287 msgid "Slovenian" msgstr "Словенский" -#: libraries/mysql_charsets.lib.php:298 +#: libraries/mysql_charsets.lib.php:290 msgid "Spanish" msgstr "Испанский" -#: libraries/mysql_charsets.lib.php:301 +#: libraries/mysql_charsets.lib.php:293 msgid "Traditional Spanish" msgstr "Испанский традиционный" -#: libraries/mysql_charsets.lib.php:304 libraries/mysql_charsets.lib.php:401 +#: libraries/mysql_charsets.lib.php:296 libraries/mysql_charsets.lib.php:393 msgid "Swedish" msgstr "Шведский" -#: libraries/mysql_charsets.lib.php:307 libraries/mysql_charsets.lib.php:404 +#: libraries/mysql_charsets.lib.php:299 libraries/mysql_charsets.lib.php:396 msgid "Thai" msgstr "Таи" -#: libraries/mysql_charsets.lib.php:310 libraries/mysql_charsets.lib.php:398 +#: libraries/mysql_charsets.lib.php:302 libraries/mysql_charsets.lib.php:390 msgid "Turkish" msgstr "Турецкий" -#: libraries/mysql_charsets.lib.php:313 libraries/mysql_charsets.lib.php:395 +#: libraries/mysql_charsets.lib.php:305 libraries/mysql_charsets.lib.php:387 msgid "Ukrainian" msgstr "Украинский" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 msgid "Unicode" msgstr "Юникод" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 -#: libraries/mysql_charsets.lib.php:334 libraries/mysql_charsets.lib.php:341 -#: libraries/mysql_charsets.lib.php:363 libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 +#: libraries/mysql_charsets.lib.php:326 libraries/mysql_charsets.lib.php:333 +#: libraries/mysql_charsets.lib.php:355 libraries/mysql_charsets.lib.php:366 msgid "multilingual" msgstr "многоязычный" -#: libraries/mysql_charsets.lib.php:341 +#: libraries/mysql_charsets.lib.php:333 msgid "Central European" msgstr "Центрально-Европейский" -#: libraries/mysql_charsets.lib.php:346 +#: libraries/mysql_charsets.lib.php:338 msgid "Russian" msgstr "Русский" -#: libraries/mysql_charsets.lib.php:363 +#: libraries/mysql_charsets.lib.php:355 msgid "Baltic" msgstr "Балтийский" -#: libraries/mysql_charsets.lib.php:368 +#: libraries/mysql_charsets.lib.php:360 msgid "Armenian" msgstr "Армянский" -#: libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:366 msgid "Cyrillic" msgstr "Кириллический" -#: libraries/mysql_charsets.lib.php:377 +#: libraries/mysql_charsets.lib.php:369 msgid "Arabic" msgstr "Арабский" -#: libraries/mysql_charsets.lib.php:383 +#: libraries/mysql_charsets.lib.php:375 msgid "Hebrew" msgstr "Иврит" -#: libraries/mysql_charsets.lib.php:386 +#: libraries/mysql_charsets.lib.php:378 msgid "Georgian" msgstr "Грузинский" -#: libraries/mysql_charsets.lib.php:389 +#: libraries/mysql_charsets.lib.php:381 msgid "Greek" msgstr "Греческий" -#: libraries/mysql_charsets.lib.php:392 +#: libraries/mysql_charsets.lib.php:384 msgid "Czech-Slovak" msgstr "Чехословацкий" -#: libraries/mysql_charsets.lib.php:407 libraries/mysql_charsets.lib.php:414 +#: libraries/mysql_charsets.lib.php:399 libraries/mysql_charsets.lib.php:406 msgid "unknown" msgstr "неизвестно" @@ -3498,68 +3557,68 @@ msgstr "Окно запроса" msgid "This format has no options" msgstr "Для этого формата нет настраиваемых параметров" -#: libraries/relation.lib.php:82 +#: libraries/relation.lib.php:77 msgid "not OK" msgstr "Не готово" -#: libraries/relation.lib.php:86 pmd_general.php:339 +#: libraries/relation.lib.php:81 pmd_general.php:339 msgid "OK" msgstr "OK" -#: libraries/relation.lib.php:87 +#: libraries/relation.lib.php:82 msgid "Enabled" msgstr "Доступно" -#: libraries/relation.lib.php:110 +#: libraries/relation.lib.php:105 msgid "Display Features" msgstr "Показать возможности" -#: libraries/relation.lib.php:116 +#: libraries/relation.lib.php:111 msgid "Creation of PDFs" msgstr "Создание PDF-схемы" -#: libraries/relation.lib.php:120 +#: libraries/relation.lib.php:115 msgid "Displaying Column Comments" msgstr "Отображать комментарии столбцов" -#: libraries/relation.lib.php:125 +#: libraries/relation.lib.php:120 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "Необходимо обновить таблицу column_comments. Детали смотрите в документации." -#: libraries/relation.lib.php:130 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 msgid "Bookmarked SQL query" msgstr "Созданные закладки" -#: libraries/relation.lib.php:134 querywindow.php:99 querywindow.php:207 +#: libraries/relation.lib.php:129 querywindow.php:98 querywindow.php:205 msgid "SQL history" msgstr "История SQL-запросов" -#: libraries/relation.lib.php:146 +#: libraries/relation.lib.php:141 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:148 +#: libraries/relation.lib.php:143 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" -#: libraries/relation.lib.php:149 +#: libraries/relation.lib.php:144 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:150 +#: libraries/relation.lib.php:145 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:151 +#: libraries/relation.lib.php:146 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1158 +#: libraries/relation.lib.php:1153 msgid "no description" msgstr "нет описания" @@ -3567,7 +3626,7 @@ msgstr "нет описания" msgid "Slave configuration" msgstr "Настройка подчиненного сервера" -#: libraries/replication_gui.lib.php:53 server_replication.php:346 +#: libraries/replication_gui.lib.php:53 server_replication.php:345 msgid "Change or reconfigure master server" msgstr "Изменить, или перенастроить головной сервер" @@ -3581,16 +3640,12 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:711 -#: server_privileges.php:714 server_privileges.php:721 -#: server_synchronize.php:1170 +#: libraries/replication_gui.lib.php:261 server_privileges.php:710 +#: server_privileges.php:713 server_privileges.php:720 +#: server_synchronize.php:1169 msgid "User name" msgstr "Имя пользователя" -#: libraries/replication_gui.lib.php:69 server_synchronize.php:1162 -msgid "Port" -msgstr "Порт" - #: libraries/replication_gui.lib.php:105 msgid "Master status" msgstr "Статус Master" @@ -3605,8 +3660,8 @@ msgid "Variable" msgstr "Переменная" #: libraries/replication_gui.lib.php:117 server_status.php:737 -#: tbl_change.php:322 tbl_printview.php:368 tbl_select.php:137 -#: tbl_structure.php:728 +#: tbl_change.php:317 tbl_printview.php:367 tbl_select.php:136 +#: tbl_structure.php:726 msgid "Value" msgstr "Значение" @@ -3622,38 +3677,38 @@ msgstr "" "Только подчиненные сервера запущенные с ключом --report-host=host_name " "option видимы в данном списке." -#: libraries/replication_gui.lib.php:242 server_replication.php:193 +#: libraries/replication_gui.lib.php:242 server_replication.php:192 msgid "Add slave replication user" msgstr "Добавьте подчиненного пользователя репликации" -#: libraries/replication_gui.lib.php:256 server_privileges.php:716 +#: libraries/replication_gui.lib.php:256 server_privileges.php:715 msgid "Any user" msgstr "Любой пользователь" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1920 server_privileges.php:1950 +#: libraries/replication_gui.lib.php:348 server_privileges.php:716 +#: server_privileges.php:783 server_privileges.php:807 +#: server_privileges.php:1924 server_privileges.php:1954 msgid "Use text field" msgstr "Использовать текстовое поле" -#: libraries/replication_gui.lib.php:304 server_privileges.php:764 +#: libraries/replication_gui.lib.php:304 server_privileges.php:763 msgid "Any host" msgstr "Любой хост" -#: libraries/replication_gui.lib.php:308 server_privileges.php:768 +#: libraries/replication_gui.lib.php:308 server_privileges.php:767 msgid "Local" msgstr "Локальный" -#: libraries/replication_gui.lib.php:314 server_privileges.php:773 +#: libraries/replication_gui.lib.php:314 server_privileges.php:772 msgid "This Host" msgstr "Этот хост" -#: libraries/replication_gui.lib.php:320 server_privileges.php:779 +#: libraries/replication_gui.lib.php:320 server_privileges.php:778 msgid "Use Host Table" msgstr "Использовать таблицу хостов" -#: libraries/replication_gui.lib.php:333 server_privileges.php:792 +#: libraries/replication_gui.lib.php:333 server_privileges.php:791 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3681,8 +3736,8 @@ msgstr "Неизвестный язык: %1$s." msgid "Servers" msgstr "Сервера" -#: libraries/server_links.inc.php:52 server_engines.php:111 -#: server_engines.php:115 server_status.php:414 test/theme.php:104 +#: libraries/server_links.inc.php:52 server_engines.php:125 +#: server_engines.php:129 server_status.php:414 test/theme.php:104 msgid "Variables" msgstr "Переменные" @@ -3703,12 +3758,12 @@ msgstr "Бинарный журнал" msgid "Processes" msgstr "Процессы" -#: libraries/server_links.inc.php:91 server_synchronize.php:1091 -#: server_synchronize.php:1099 +#: libraries/server_links.inc.php:91 server_synchronize.php:1090 +#: server_synchronize.php:1098 msgid "Synchronize" msgstr "Синхронизировать" -#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1109 +#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1108 msgid "Source database" msgstr "Источник" @@ -3726,7 +3781,7 @@ msgstr "Удалённый сервер" msgid "Difference" msgstr "Различие" -#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1111 +#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1110 msgid "Target database" msgstr "Целевая база данных" @@ -3746,11 +3801,11 @@ msgstr "Выполнить SQL-запрос(ы) к базе данных %s" msgid "Columns" msgstr "Названия столбцов" -#: libraries/sql_query_form.lib.php:342 sql.php:664 sql.php:665 sql.php:682 +#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "Создание закладки" -#: libraries/sql_query_form.lib.php:349 sql.php:676 +#: libraries/sql_query_form.lib.php:349 sql.php:669 msgid "Let every user access this bookmark" msgstr "Доступна для всех пользователей" @@ -3845,12 +3900,12 @@ msgstr "" "Проверка синтаксиса SQL не осуществима. Проверьте, установлены ли " "необходимые модули расширений для PHP, описанные в %sдокументации%s." -#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:139 -#: libraries/tbl_links.inc.php:140 +#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 +#: libraries/tbl_links.inc.php:139 msgid "Table seems to be empty!" msgstr "Таблица - пуста!" -#: libraries/tbl_links.inc.php:148 +#: libraries/tbl_links.inc.php:147 #, php-format msgid "Tracking of %s.%s is activated." msgstr "Слежение за %s.%s включено." @@ -3885,12 +3940,12 @@ msgstr "" "Для значений поля \"По умолчанию\" не используйте символы экранирования и " "кавычек." -#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1263 -#: pdf_schema.php:1284 tbl_printview.php:142 tbl_structure.php:179 +#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1262 +#: pdf_schema.php:1283 tbl_printview.php:141 tbl_structure.php:178 msgid "Attributes" msgstr "Атрибуты" -#: libraries/tbl_properties.inc.php:136 +#: libraries/tbl_properties.inc.php:135 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -3899,11 +3954,11 @@ msgstr "" "Для просмотра доступных MIME-типов и параметров преобразований " "воспользуйтесь данной ссылкой - %sописание преобразований%s" -#: libraries/tbl_properties.inc.php:144 +#: libraries/tbl_properties.inc.php:143 msgid "Transformation options" msgstr "Параметры преобразований" -#: libraries/tbl_properties.inc.php:145 +#: libraries/tbl_properties.inc.php:144 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
                            If you ever need to put a backslash (\"\\\") or a single " @@ -3915,18 +3970,18 @@ msgstr "" "экранировать (предварять) символом обратной косой черты, например: '\\\\xyz' " "или 'a\\'b'." -#: libraries/tbl_properties.inc.php:392 +#: libraries/tbl_properties.inc.php:391 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "Нет" -#: libraries/tbl_properties.inc.php:393 +#: libraries/tbl_properties.inc.php:392 msgid "As defined:" msgstr "Как определено:" -#: libraries/tbl_properties.inc.php:579 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:578 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
                            Please ask the " @@ -3935,29 +3990,29 @@ msgstr "" "На данный момент описание отсутствует.
                            Работа используемой функции " "отображения преобразования %s, будет в скором времени описана." -#: libraries/tbl_properties.inc.php:725 server_engines.php:57 -#: tbl_operations.php:354 +#: libraries/tbl_properties.inc.php:724 server_engines.php:56 +#: tbl_operations.php:352 msgid "Storage Engine" msgstr "Тип таблиц" -#: libraries/tbl_properties.inc.php:754 +#: libraries/tbl_properties.inc.php:753 msgid "PARTITION definition" msgstr "Определение разделов (PARTITION)" -#: libraries/tbl_properties.inc.php:775 pdf_pages.php:502 +#: libraries/tbl_properties.inc.php:774 pdf_pages.php:501 #: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214 -#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1124 tbl_indexes.php:247 -#: tbl_relation.php:565 +#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1022 tbl_indexes.php:246 +#: tbl_relation.php:563 msgid "Save" msgstr "Сохранить" -#: libraries/tbl_properties.inc.php:779 tbl_structure.php:541 +#: libraries/tbl_properties.inc.php:778 tbl_structure.php:539 #, fuzzy, php-format #| msgid "Add column(s)" msgid "Add %s column(s)" msgstr "Добавить поле(я)" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:535 +#: libraries/tbl_properties.inc.php:782 tbl_structure.php:533 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -4164,8 +4219,8 @@ msgstr "Отображение" msgid "Custom color" msgstr "Выбрать цвет" -#: main.php:162 pdf_pages.php:362 setup/lib/FormDisplay.tpl.php:216 -#: tbl_change.php:1173 +#: main.php:162 pdf_pages.php:361 setup/lib/FormDisplay.tpl.php:216 +#: tbl_change.php:1071 msgid "Reset" msgstr "Сбросить" @@ -4173,8 +4228,8 @@ msgstr "Сбросить" msgid "Protocol version" msgstr "Версия протокола" -#: main.php:188 server_privileges.php:1381 server_privileges.php:1528 -#: server_privileges.php:1642 server_privileges.php:2060 +#: main.php:188 server_privileges.php:1385 server_privileges.php:1532 +#: server_privileges.php:1646 server_privileges.php:2064 #: server_processlist.php:53 msgid "User" msgstr "Пользователь" @@ -4269,14 +4324,23 @@ msgstr "" "находится в установочной директории phpMyAdmin. Обязательно удалите его " "сразу после настройки phpMyAdmin." -#: main.php:330 +#: main.php:314 +#, php-format +msgid "" +"The additional features for working with linked tables have been " +"deactivated. To find out why click %shere%s." +msgstr "" +"Дополнительные возможности для работы со связанными таблицами недоступны. " +"Для определения причины нажмите %sздесь%s." + +#: main.php:329 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:345 +#: main.php:344 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -4285,7 +4349,7 @@ msgstr "" "Версия клиентской библиотеки MySQL (%s) отличается от версии установленного " "MySQL-сервера (%s). Это может привести к некорректной работе." -#: main.php:357 +#: main.php:356 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -4299,68 +4363,68 @@ msgstr "" msgid "Reload navigation frame" msgstr "Модифицировать фрейм навигации" -#: navigation.php:204 server_databases.php:370 server_synchronize.php:1190 +#: navigation.php:203 server_databases.php:368 server_synchronize.php:1189 msgid "No databases" msgstr "Базы данных отсутствуют" -#: navigation.php:298 +#: navigation.php:297 msgid "Filter" msgstr "Фильтр" -#: navigation.php:299 setup/frames/index.inc.php:218 +#: navigation.php:298 setup/frames/index.inc.php:218 #: setup/lib/messages.inc.php:41 msgid "Clear" msgstr "Очистить" -#: navigation.php:330 navigation.php:331 +#: navigation.php:329 navigation.php:330 #, fuzzy #| msgid "Create table" msgctxt "short form" msgid "Create table" msgstr "Создать таблицу" -#: navigation.php:333 navigation.php:495 +#: navigation.php:332 navigation.php:494 msgid "Please select a database" msgstr "Выберите базу данных" -#: pdf_pages.php:40 pdf_pages.php:46 pdf_pages.php:52 pdf_pages.php:57 +#: pdf_pages.php:39 pdf_pages.php:45 pdf_pages.php:51 pdf_pages.php:56 #, php-format msgid "%s table not found or not set in %s" msgstr "Таблица %s не найдена или не установлена в %s" -#: pdf_pages.php:265 +#: pdf_pages.php:264 msgid "Please choose a page to edit" msgstr "Выбор страницы для редактирования" -#: pdf_pages.php:303 pmd_pdf.php:113 +#: pdf_pages.php:302 pmd_pdf.php:111 msgid "Create a page" msgstr "Создать новую страницу" -#: pdf_pages.php:309 +#: pdf_pages.php:308 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Номер страницы:" -#: pdf_pages.php:313 +#: pdf_pages.php:312 #, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "Автоматическая раскладка" -#: pdf_pages.php:315 +#: pdf_pages.php:314 msgid "Internal relations" msgstr "Внутренние связи" -#: pdf_pages.php:338 +#: pdf_pages.php:337 msgid "Select Tables" msgstr "Выберите таблицы" -#: pdf_pages.php:361 +#: pdf_pages.php:360 msgid "Toggle scratchboard" msgstr "Отображение" -#: pdf_pages.php:524 +#: pdf_pages.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -4368,37 +4432,37 @@ msgstr "" "На текущей странице присутствуют ссылки на таблицы, которые больше не " "существуют. Удалить эти ссылки?" -#: pdf_schema.php:635 +#: pdf_schema.php:634 #, fuzzy, php-format #| msgid "The \"%s\" table doesn't exist!" msgid "The %s table doesn't exist!" msgstr "Таблица \"%s\" не существует!" -#: pdf_schema.php:671 +#: pdf_schema.php:670 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Измените координаты таблицы %s" -#: pdf_schema.php:994 +#: pdf_schema.php:993 #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" msgstr "Структура базы данных \"%s\" - Страница %s" -#: pdf_schema.php:1012 +#: pdf_schema.php:1011 msgid "No tables" msgstr "Нет таблиц" -#: pdf_schema.php:1031 pdf_schema.php:1140 +#: pdf_schema.php:1030 pdf_schema.php:1139 msgid "Relational schema" msgstr "Cхема связей" -#: pdf_schema.php:1115 +#: pdf_schema.php:1114 msgid "Table of contents" msgstr "Содержание" -#: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:145 -#: tbl_structure.php:182 tbl_tracking.php:277 +#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 +#: tbl_structure.php:181 tbl_tracking.php:272 msgid "Extra" msgstr "Дополнительно" @@ -4410,7 +4474,7 @@ msgstr "Показать/скрыть левое меню" msgid "Save position" msgstr "Сохранить расположение таблиц" -#: pmd_general.php:70 server_synchronize.php:428 server_synchronize.php:871 +#: pmd_general.php:70 server_synchronize.php:427 server_synchronize.php:870 msgid "Create table" msgstr "Создать таблицу" @@ -4490,32 +4554,32 @@ msgstr "" "отображаемого столбца\" и выберите необходимый столбец. Отображаемые столбцы " "подсвечиваются розовым цветом." -#: pmd_pdf.php:62 +#: pmd_pdf.php:60 #, fuzzy msgid "Page has been created" msgstr "Таблица %1$s была создана." -#: pmd_pdf.php:64 +#: pmd_pdf.php:62 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:84 +#: pmd_pdf.php:82 msgid "Export/Import to scale" msgstr "Масштаб" -#: pmd_pdf.php:88 +#: pmd_pdf.php:86 msgid "recommended" msgstr "рекомендуемый" -#: pmd_pdf.php:93 +#: pmd_pdf.php:91 msgid "to/from page" msgstr "Страница" -#: querywindow.php:94 +#: querywindow.php:93 msgid "Import files" msgstr "Импорт файлов" -#: querywindow.php:105 +#: querywindow.php:104 msgid "All" msgstr "Все" @@ -4561,69 +4625,69 @@ msgstr "Информация" msgid "Character Sets and Collations" msgstr "Кодировки и сравнения" -#: server_databases.php:51 +#: server_databases.php:49 msgid "No databases selected." msgstr "Ни одна база данных не выбрана." -#: server_databases.php:62 +#: server_databases.php:60 #, php-format msgid "%s databases have been dropped successfully." msgstr "Удалено баз данных: %s" -#: server_databases.php:87 +#: server_databases.php:85 msgid "Databases statistics" msgstr "Статистика баз данных" -#: server_databases.php:116 server_status.php:370 +#: server_databases.php:114 server_status.php:370 #: setup/lib/messages.inc.php:114 msgid "Tables" msgstr "Таблицы" -#: server_databases.php:194 server_replication.php:180 -#: server_replication.php:208 +#: server_databases.php:192 server_replication.php:179 +#: server_replication.php:207 msgid "Master replication" msgstr "Репликация головного сервера" -#: server_databases.php:196 server_replication.php:247 +#: server_databases.php:194 server_replication.php:246 msgid "Slave replication" msgstr "Репликация подчинённого сервера" -#: server_databases.php:229 +#: server_databases.php:227 #, fuzzy #| msgid "Go to database" msgid "Jump to database" msgstr "Перейти к базе данных" -#: server_databases.php:266 +#: server_databases.php:264 #, fuzzy #| msgid "Master replication" msgid "Not replicated" msgstr "Репликация головного сервера" -#: server_databases.php:272 +#: server_databases.php:270 #, fuzzy #| msgid "Replication" msgid "Replicated" msgstr "Репликация" -#: server_databases.php:288 +#: server_databases.php:286 #, php-format msgid "Check privileges for database "%s"." msgstr "Проверить привилегии для базы данных "%s"" -#: server_databases.php:292 server_databases.php:293 +#: server_databases.php:290 server_databases.php:291 msgid "Check Privileges" msgstr "Проверить привилегии" -#: server_databases.php:357 server_databases.php:358 +#: server_databases.php:355 server_databases.php:356 msgid "Enable Statistics" msgstr "Включить статистику" -#: server_databases.php:361 server_databases.php:362 +#: server_databases.php:359 server_databases.php:360 msgid "Disable Statistics" msgstr "Отключить статистику" -#: server_databases.php:365 +#: server_databases.php:363 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -4631,126 +4695,126 @@ msgstr "" "Примечание: Включение статистики баз данных может спровоцировать большой " "трафик между веб-сервером и сервером MySQL." -#: server_engines.php:48 +#: server_engines.php:47 msgid "Storage Engines" msgstr "Типы таблиц" -#: server_export.php:20 +#: server_export.php:18 msgid "View dump (schema) of databases" msgstr "Отобразить дамп (схему) баз данных" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:23 server_privileges.php:265 msgid "Includes all privileges except GRANT." msgstr "Содержит все привилегии, за исключением GRANT" -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:24 server_privileges.php:191 +#: server_privileges.php:514 msgid "Allows altering the structure of existing tables." msgstr "Разрешает изменение структуры существующих таблиц" -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:25 server_privileges.php:207 +#: server_privileges.php:520 msgid "Allows altering and dropping stored routines." msgstr "Разрешает изменение и удаление хранимых процедур" -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:26 server_privileges.php:183 +#: server_privileges.php:513 msgid "Allows creating new databases and tables." msgstr "Разрешает создание новых баз данных и таблиц" -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:27 server_privileges.php:206 +#: server_privileges.php:519 msgid "Allows creating stored routines." msgstr "Разрешает создание хранимых процедур" -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:513 msgid "Allows creating new tables." msgstr "Разрешает создание новых таблиц" -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:29 server_privileges.php:194 +#: server_privileges.php:517 msgid "Allows creating temporary tables." msgstr "Разрешает создание временных таблиц" -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:30 server_privileges.php:208 +#: server_privileges.php:553 msgid "Allows creating, dropping and renaming user accounts." msgstr "" "Разрешает создание, удаление и переименование учетных записей пользователей" -#: server_privileges.php:32 server_privileges.php:199 -#: server_privileges.php:203 server_privileges.php:526 -#: server_privileges.php:530 +#: server_privileges.php:31 server_privileges.php:198 +#: server_privileges.php:202 server_privileges.php:525 +#: server_privileges.php:529 msgid "Allows creating new views." msgstr "Разрешает создание новых представлений (CREATE VIEW)" -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:32 server_privileges.php:182 +#: server_privileges.php:505 msgid "Allows deleting data." msgstr "Разрешает удаление данных" -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:33 server_privileges.php:184 +#: server_privileges.php:516 msgid "Allows dropping databases and tables." msgstr "Разрешает удаление баз данных и таблиц" -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:34 server_privileges.php:516 msgid "Allows dropping tables." msgstr "Разрешает удаление таблиц" -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:35 server_privileges.php:199 +#: server_privileges.php:533 msgid "Allows to set up events for the event scheduler" msgstr "Разрешает настройку отложенных событий" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:36 server_privileges.php:209 +#: server_privileges.php:521 msgid "Allows executing stored routines." msgstr "Разрешает выполнение хранимых процедур" -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:37 server_privileges.php:188 +#: server_privileges.php:508 msgid "Allows importing data from and exporting data into files." msgstr "Разрешает импорт и экспорт данных в файлы" -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:38 server_privileges.php:539 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Разрешает добавление пользователей и привилегий без перезагрузки таблиц " "привилегий" -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:515 msgid "Allows creating and dropping indexes." msgstr "Разрешает создание и удаление индексов" -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:40 server_privileges.php:180 +#: server_privileges.php:441 server_privileges.php:503 msgid "Allows inserting and replacing data." msgstr "Разрешает вставку и замену данных" -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:41 server_privileges.php:195 +#: server_privileges.php:548 msgid "Allows locking tables for the current thread." msgstr "Разрешает блокировку таблиц для текущего потока" -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:42 server_privileges.php:645 +#: server_privileges.php:647 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Максимальное количество новых подключений, которые пользователь может " "установить в течение часа" -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:43 server_privileges.php:633 +#: server_privileges.php:635 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Максимальное количество запросов, которые пользователь может отправить в " "течение часа" -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:44 server_privileges.php:639 +#: server_privileges.php:641 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -4758,58 +4822,58 @@ msgstr "" "Максимальное количество команд изменяющих какую-либо таблицу или базу " "данных, которые пользователь может выполнить в течение часа" -#: server_privileges.php:46 server_privileges.php:652 -#: server_privileges.php:654 +#: server_privileges.php:45 server_privileges.php:651 +#: server_privileges.php:653 msgid "Limits the number of simultaneous connections the user may have." msgstr "Максимальное количество одновременных подключений одного пользователя" -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:46 server_privileges.php:187 +#: server_privileges.php:543 msgid "Allows viewing processes of all users" msgstr "Разрешает просмотр процессов всех пользователей" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:47 server_privileges.php:189 +#: server_privileges.php:447 server_privileges.php:549 msgid "Has no effect in this MySQL version." msgstr "Не доступно в данной версии MySQL!" -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:48 server_privileges.php:185 +#: server_privileges.php:544 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Разрешает перезагрузку настроек сервера и очистку его кешей" -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:197 +#: server_privileges.php:551 msgid "Allows the user to ask where the slaves / masters are." msgstr "Разрешает запрашивать местонахождение головного и подчиненных серверов" -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:50 server_privileges.php:196 +#: server_privileges.php:552 msgid "Needed for the replication slaves." msgstr "Необходимо для подчиненных серверов при репликации" -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:51 server_privileges.php:179 +#: server_privileges.php:438 server_privileges.php:502 msgid "Allows reading data." msgstr "Разрешает выборку данных" -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:52 server_privileges.php:192 +#: server_privileges.php:546 msgid "Gives access to the complete list of databases." msgstr "Разрешает доступ к полному списку баз данных" -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:53 server_privileges.php:203 +#: server_privileges.php:205 server_privileges.php:518 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Разрешает вывод запроса создающего представление (SHOW CREATE VIEW)" -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:54 server_privileges.php:186 +#: server_privileges.php:545 msgid "Allows shutting down the server." msgstr "Разрешает остановку сервера" -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:55 server_privileges.php:193 +#: server_privileges.php:542 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -4820,157 +4884,157 @@ msgstr "" "установка глобальных переменных или завершение процессов других " "пользователей)" -#: server_privileges.php:57 server_privileges.php:201 -#: server_privileges.php:535 +#: server_privileges.php:56 server_privileges.php:200 +#: server_privileges.php:534 msgid "Allows creating and dropping triggers" msgstr "Разрешает создание и удаление триггеров" -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:57 server_privileges.php:181 +#: server_privileges.php:444 server_privileges.php:504 msgid "Allows changing data." msgstr "Разрешает изменение данных" -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:58 server_privileges.php:259 msgid "No privileges." msgstr "Нет привилегий" -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:301 server_privileges.php:302 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Нет" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1710 server_privileges.php:1716 +#: server_privileges.php:430 server_privileges.php:565 +#: server_privileges.php:1714 server_privileges.php:1720 msgid "Table-specific privileges" msgstr " Привилегии уровня таблицы" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1532 +#: server_privileges.php:431 server_privileges.php:573 +#: server_privileges.php:1536 msgid " Note: MySQL privilege names are expressed in English " msgstr "Примечание: типы привилегий MySQL отображаются по-английски." -#: server_privileges.php:563 server_privileges.php:1531 +#: server_privileges.php:562 server_privileges.php:1535 msgid "Global privileges" msgstr "Глобальные привилегии" -#: server_privileges.php:565 server_privileges.php:1710 +#: server_privileges.php:564 server_privileges.php:1714 msgid "Database-specific privileges" msgstr "Привилегии уровня базы данных" -#: server_privileges.php:610 +#: server_privileges.php:609 msgid "Administration" msgstr "Администрирование" -#: server_privileges.php:630 +#: server_privileges.php:629 msgid "Resource limits" msgstr "Ограничение на использование ресурсов" -#: server_privileges.php:631 +#: server_privileges.php:630 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" "Замечание: Установка значения параметров в 0 (ноль), снимает ограничения." -#: server_privileges.php:708 +#: server_privileges.php:707 msgid "Login Information" msgstr "Информация учетной записи" -#: server_privileges.php:802 +#: server_privileges.php:801 msgid "Do not change the password" msgstr "Не менять пароль" -#: server_privileges.php:835 server_privileges.php:2197 +#: server_privileges.php:834 server_privileges.php:2201 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Пользователей не найдено." -#: server_privileges.php:879 +#: server_privileges.php:878 #, php-format msgid "The user %s already exists!" msgstr "Пользователь %s уже существует!" -#: server_privileges.php:962 +#: server_privileges.php:961 msgid "You have added a new user." msgstr "Был добавлен новый пользователь." -#: server_privileges.php:1183 +#: server_privileges.php:1184 #, php-format msgid "You have updated the privileges for %s." msgstr "Были изменены привилегии для %s." -#: server_privileges.php:1207 +#: server_privileges.php:1208 #, php-format msgid "You have revoked the privileges for %s" msgstr "Отменены привилегии для %s." -#: server_privileges.php:1243 +#: server_privileges.php:1244 #, php-format msgid "The password for %s was changed successfully." msgstr "Пароль для %s был успешно изменен." -#: server_privileges.php:1263 +#: server_privileges.php:1264 #, php-format msgid "Deleting %s" msgstr "Удаление %s" -#: server_privileges.php:1274 +#: server_privileges.php:1275 msgid "No users selected for deleting!" msgstr "Не выбраны пользователи подлежащие удалению!" -#: server_privileges.php:1277 +#: server_privileges.php:1278 msgid "Reloading the privileges" msgstr "Перезагрузка привилегий" -#: server_privileges.php:1292 +#: server_privileges.php:1296 msgid "The selected users have been deleted successfully." msgstr "Выбранные пользователи были успешно удалены." -#: server_privileges.php:1327 +#: server_privileges.php:1331 msgid "The privileges were reloaded successfully." msgstr "Привилегии были успешно перезагружены." -#: server_privileges.php:1355 server_privileges.php:1641 +#: server_privileges.php:1359 server_privileges.php:1645 msgid "Edit Privileges" msgstr "Редактирование привилегий" -#: server_privileges.php:1364 +#: server_privileges.php:1368 msgid "Revoke" msgstr "Отменить" -#: server_privileges.php:1396 +#: server_privileges.php:1400 msgid "User overview" msgstr "Обзор учетных записей" -#: server_privileges.php:1533 server_privileges.php:1715 -#: server_privileges.php:2064 +#: server_privileges.php:1537 server_privileges.php:1719 +#: server_privileges.php:2068 msgid "Grant" msgstr "GRANT" -#: server_privileges.php:1552 server_privileges.php:2154 +#: server_privileges.php:1556 server_privileges.php:2158 msgid "Any" msgstr "Любой" -#: server_privileges.php:1601 server_privileges.php:1625 -#: server_privileges.php:2019 server_privileges.php:2208 +#: server_privileges.php:1605 server_privileges.php:1629 +#: server_privileges.php:2023 server_privileges.php:2212 msgid "Add a new User" msgstr "Добавить нового пользователя" -#: server_privileges.php:1606 +#: server_privileges.php:1610 msgid "Remove selected users" msgstr "Удалить выделенных пользователей" -#: server_privileges.php:1609 +#: server_privileges.php:1613 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Отменить все активные привилегии пользователей и затем удалить их." -#: server_privileges.php:1610 server_privileges.php:1611 -#: server_privileges.php:1612 +#: server_privileges.php:1614 server_privileges.php:1615 +#: server_privileges.php:1616 msgid "Drop the databases that have the same names as the users." msgstr "Удалить базы данных, имена которых совпадают с именами пользователей." -#: server_privileges.php:1628 +#: server_privileges.php:1632 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4983,98 +5047,98 @@ msgstr "" "отличаться от привилегий, используемых сервером, если они были изменены " "вручную. В таком случае необходимо %sперезагрузить привилегии%s." -#: server_privileges.php:1676 +#: server_privileges.php:1680 msgid "The selected user was not found in the privilege table." msgstr "Выделенный пользователь не был найден в таблице привилегий." -#: server_privileges.php:1716 +#: server_privileges.php:1720 msgid "Column-specific privileges" msgstr "Привилегии уровня столбца" -#: server_privileges.php:1917 +#: server_privileges.php:1921 msgid "Add privileges on the following database" msgstr "Добавить привилегии на следующую базу" -#: server_privileges.php:1935 +#: server_privileges.php:1939 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "При использовании в имени базы данных символов нижнего подчеркивания (_) и " "процента (%), необходимо экранировать их символом обратной косой черты (\\), " "в противном случае они будут интерпретированы как групповые символы" -#: server_privileges.php:1938 +#: server_privileges.php:1942 msgid "Add privileges on the following table" msgstr " Добавить привилегии на следующую таблицу" -#: server_privileges.php:1995 +#: server_privileges.php:1999 msgid "Change Login Information / Copy User" msgstr "Изменить/Копировать учетную запись" -#: server_privileges.php:1998 +#: server_privileges.php:2002 msgid "Create a new user with the same privileges and ..." msgstr "Создать нового пользователя с такими же привилегиями..." -#: server_privileges.php:2000 +#: server_privileges.php:2004 msgid "... keep the old one." msgstr "и сохранить старого." -#: server_privileges.php:2001 +#: server_privileges.php:2005 msgid " ... delete the old one from the user tables." msgstr "и удалить старого из таблиц пользователей." -#: server_privileges.php:2002 +#: server_privileges.php:2006 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr ", отменить все активные привилегии старого и затем удалить его." -#: server_privileges.php:2003 +#: server_privileges.php:2007 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr ", удалить старого из таблиц пользователей и перезагрузить привилегии." -#: server_privileges.php:2025 +#: server_privileges.php:2029 msgid "Database for user" msgstr "База данных для пользователя" -#: server_privileges.php:2029 +#: server_privileges.php:2033 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Нет" -#: server_privileges.php:2030 +#: server_privileges.php:2034 msgid "Create database with same name and grant all privileges" msgstr "" "Создать базу данных с именем пользователя в названии и предоставить на нее " "полные привилегии" -#: server_privileges.php:2031 +#: server_privileges.php:2035 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" "Предоставить полные привилегии на базы данных подпадающие под шаблон (имя " "пользователя\\_%)" -#: server_privileges.php:2034 +#: server_privileges.php:2038 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Выставить полные привилегии на базу данных "%s"" -#: server_privileges.php:2057 +#: server_privileges.php:2061 #, php-format msgid "Users having access to "%s"" msgstr "Пользователи с правами доступа к "%s"" -#: server_privileges.php:2165 +#: server_privileges.php:2169 msgid "global" msgstr "Глобальный уровень" -#: server_privileges.php:2167 +#: server_privileges.php:2171 msgid "database-specific" msgstr "Уровень базы данных" -#: server_privileges.php:2169 +#: server_privileges.php:2173 msgid "wildcard" msgstr "Групповой символ" @@ -5095,44 +5159,44 @@ msgstr "" msgid "ID" msgstr "ID" -#: server_replication.php:50 +#: server_replication.php:49 msgid "Unknown error" msgstr "Неизвестная ошибка" -#: server_replication.php:57 +#: server_replication.php:56 #, php-format msgid "Unable to connect to master %s." msgstr "Невозможно соединиться с головным сервером %s." -#: server_replication.php:64 +#: server_replication.php:63 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" "Невозможно прочесть позицию журнала у головного сервера. Вероятно проблема в " "настройке привилегий головного сервера." -#: server_replication.php:70 +#: server_replication.php:69 msgid "Unable to change master" msgstr "Невозможно изменить головной сервер" -#: server_replication.php:73 +#: server_replication.php:72 #, php-format msgid "Master server changed succesfully to %s" msgstr "Головной сервер успешно изменён на %s" -#: server_replication.php:181 +#: server_replication.php:180 msgid "This server is configured as master in a replication process." msgstr "Данный сервер настроен головным в процессе репликации." -#: server_replication.php:183 server_status.php:391 +#: server_replication.php:182 server_status.php:391 msgid "Show master status" msgstr "Показать состояние головного сервера" -#: server_replication.php:186 +#: server_replication.php:185 msgid "Show connected slaves" msgstr "Показать соединённые подчиненные сервера" -#: server_replication.php:209 +#: server_replication.php:208 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -5141,11 +5205,11 @@ msgstr "" "Данный сервер не настроен в качестве головного для процесса репликации. " "Хотите произвести настройку?" -#: server_replication.php:216 +#: server_replication.php:215 msgid "Master configuration" msgstr "Настройка головного сервера" -#: server_replication.php:217 +#: server_replication.php:216 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -5159,19 +5223,19 @@ msgstr "" "выбрать игнорирование всех баз данных по умолчанию и разрешение для " "репликации только определенных. Пожалуйста, выберите желаемый режим:" -#: server_replication.php:220 +#: server_replication.php:219 msgid "Replicate all databases; Ignore:" msgstr "Репликация всех баз данных; игнорировать:" -#: server_replication.php:221 +#: server_replication.php:220 msgid "Ignore all databases; Replicate:" msgstr "Игнорировать все базы данных; репликация:" -#: server_replication.php:224 +#: server_replication.php:223 msgid "Please select databases:" msgstr "Пожалуйста, выберите базы данных:" -#: server_replication.php:227 +#: server_replication.php:226 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -5179,7 +5243,7 @@ msgstr "" "Теперь добавьте данные строки в конец конфигурационного файла my.cnf, после " "чего перезапустите сервер MySQL." -#: server_replication.php:229 +#: server_replication.php:228 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " @@ -5189,68 +5253,68 @@ msgstr "" "чего вы должны увидеть сообщение указывающее, что данный сервер настроен как головной." -#: server_replication.php:292 +#: server_replication.php:291 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:295 +#: server_replication.php:294 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:304 +#: server_replication.php:303 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" "Сервер настроен в качестве подчиненного для процесса репликации. Произвести " "действие:" -#: server_replication.php:307 +#: server_replication.php:306 msgid "See slave status table" msgstr "Смотрите таблицу состояния подчинённого сервера" -#: server_replication.php:310 +#: server_replication.php:309 msgid "Synchronize databases with master" msgstr "Синхронизировать базы данных с головным сервером" -#: server_replication.php:321 +#: server_replication.php:320 msgid "Control slave:" msgstr "Контролировать подчинённый сервер:" -#: server_replication.php:324 +#: server_replication.php:323 msgid "Full start" msgstr "Полный запуск" -#: server_replication.php:324 +#: server_replication.php:323 msgid "Full stop" msgstr "Полная остановка" -#: server_replication.php:325 +#: server_replication.php:324 msgid "Reset slave" msgstr "Сбросить подчиненный сервер" -#: server_replication.php:326 +#: server_replication.php:325 #, php-format msgid "SQL Thread %s only" msgstr "SQL только поток %s" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 msgid "Start" msgstr "Старт" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 msgid "Stop" msgstr "Стоп" -#: server_replication.php:327 +#: server_replication.php:326 #, php-format msgid "IO Thread %s only" msgstr "IO только поток %s" -#: server_replication.php:331 +#: server_replication.php:330 msgid "Error management:" msgstr "Управление ошибками:" -#: server_replication.php:333 +#: server_replication.php:332 #, fuzzy #| msgid "Skipping error(s) might lead into unsynchronized master and slave!" msgid "Skipping errors might lead into unsynchronized master and slave!" @@ -5258,19 +5322,19 @@ msgstr "" "Игнорирование ошибок может привести к рассинхронизации головного и " "подчинённого сервера!" -#: server_replication.php:335 +#: server_replication.php:334 msgid "Skip current error" msgstr "Игнорировать текущую ошибку" -#: server_replication.php:336 +#: server_replication.php:335 msgid "Skip next" msgstr "Пропустить следующую" -#: server_replication.php:339 +#: server_replication.php:338 msgid "errors." msgstr "ошибки." -#: server_replication.php:354 +#: server_replication.php:353 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -6128,113 +6192,113 @@ msgstr "Тип запроса" msgid "Replication status" msgstr "Состояние репликации" -#: server_synchronize.php:93 +#: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "Не получилось соединиться с источником" -#: server_synchronize.php:96 +#: server_synchronize.php:95 msgid "Could not connect to the target" msgstr "Не получилось соединиться с целевой базой данных" -#: server_synchronize.php:121 server_synchronize.php:124 tbl_create.php:77 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "База данных '%s' не существует." -#: server_synchronize.php:264 +#: server_synchronize.php:263 msgid "Structure Synchronization" msgstr "Синхронизация структуры" -#: server_synchronize.php:271 +#: server_synchronize.php:270 msgid "Data Synchronization" msgstr "Синхронизация данных" -#: server_synchronize.php:399 server_synchronize.php:838 +#: server_synchronize.php:398 server_synchronize.php:837 msgid "not present" msgstr "отсутствует" -#: server_synchronize.php:423 server_synchronize.php:866 +#: server_synchronize.php:422 server_synchronize.php:865 msgid "Structure Difference" msgstr "Различие структуры" -#: server_synchronize.php:424 server_synchronize.php:867 +#: server_synchronize.php:423 server_synchronize.php:866 msgid "Data Difference" msgstr "Различие данных" -#: server_synchronize.php:429 server_synchronize.php:872 +#: server_synchronize.php:428 server_synchronize.php:871 msgid "Add column(s)" msgstr "Добавить поле(я)" -#: server_synchronize.php:430 server_synchronize.php:873 +#: server_synchronize.php:429 server_synchronize.php:872 msgid "Remove column(s)" msgstr "Удалить поле(я)" -#: server_synchronize.php:431 server_synchronize.php:874 +#: server_synchronize.php:430 server_synchronize.php:873 msgid "Alter column(s)" msgstr "Изменить поле(я)" -#: server_synchronize.php:432 server_synchronize.php:875 +#: server_synchronize.php:431 server_synchronize.php:874 msgid "Remove index(s)" msgstr "Удалить индекс(ы)" -#: server_synchronize.php:433 server_synchronize.php:876 +#: server_synchronize.php:432 server_synchronize.php:875 msgid "Apply index(s)" msgstr "Применить индекс(ы)" -#: server_synchronize.php:434 server_synchronize.php:877 +#: server_synchronize.php:433 server_synchronize.php:876 msgid "Update row(s)" msgstr "Обновить строку(и)" -#: server_synchronize.php:435 server_synchronize.php:878 +#: server_synchronize.php:434 server_synchronize.php:877 msgid "Insert row(s)" msgstr "Вставить строку(и)" -#: server_synchronize.php:445 server_synchronize.php:889 +#: server_synchronize.php:444 server_synchronize.php:888 msgid "Would you like to delete all the previous rows from target tables?" msgstr "Удалить все предыдущие строки из целевой таблицы?" -#: server_synchronize.php:448 server_synchronize.php:893 +#: server_synchronize.php:447 server_synchronize.php:892 msgid "Apply Selected Changes" msgstr "Применить выбранные изменения" -#: server_synchronize.php:450 server_synchronize.php:895 +#: server_synchronize.php:449 server_synchronize.php:894 msgid "Synchronize Databases" msgstr "Синхронизировать базы данных" -#: server_synchronize.php:463 +#: server_synchronize.php:462 msgid "Selected target tables have been synchronized with source tables." msgstr "Выбранные целевые таблицы были синхронизированы с таблицами источника." -#: server_synchronize.php:941 +#: server_synchronize.php:940 msgid "Target database has been synchronized with source database" msgstr "Целевая база данных была синхронизирована с базой данных источника" -#: server_synchronize.php:1002 +#: server_synchronize.php:1001 msgid "The following queries have been executed:" msgstr "Выполнены следующие запросы:" -#: server_synchronize.php:1121 +#: server_synchronize.php:1120 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1122 +#: server_synchronize.php:1121 #, fuzzy #| msgid "Insecure connection" msgid "Current connection" msgstr "Небезопасное соединение" -#: server_synchronize.php:1151 +#: server_synchronize.php:1150 #, fuzzy, php-format #| msgid "Configuration file" msgid "Configuration: %s" msgstr "Конфигурационный файл" -#: server_synchronize.php:1166 +#: server_synchronize.php:1165 msgid "Socket" msgstr "Сокет" -#: server_synchronize.php:1212 +#: server_synchronize.php:1211 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -6848,10 +6912,15 @@ msgid "Signon login options" msgstr "Параметры Signon входа" #: setup/lib/messages.inc.php:128 +#, fuzzy +#| msgid "" +#| "Configure phpMyAdmin database to gain access to additional features, see " +#| "[a@../Documentation.html#linked-tables]linked-tables infrastructure[/a] " +#| "in documentation" msgid "" "Configure phpMyAdmin database to gain access to additional features, see " -"[a@../Documentation.html#linked-tables]linked-tables infrastructure[/a] in " -"documentation" +"[a@../Documentation.html#linked-tables]phpMyAdmin configuration storage[/a] " +"in documentation" msgstr "" "Настройка базы данных для установки расширенных возможностей phpMyAdmin. " "Смотрите в документации раздел описывающий [a@../Documentation.html#linked-" @@ -8073,117 +8142,117 @@ msgstr "" msgid "ZIP" msgstr "ZIP" -#: sql.php:495 tbl_replace.php:385 +#: sql.php:494 tbl_replace.php:384 #, php-format msgid "Inserted row id: %1$d" msgstr "Идентификатор вставленной строки: %1$d" -#: sql.php:512 +#: sql.php:511 msgid "Showing as PHP code" msgstr "Отображает как PHP-код" -#: sql.php:515 tbl_replace.php:359 +#: sql.php:514 tbl_replace.php:358 msgid "Showing SQL query" msgstr "Отображает SQL-запрос" -#: sql.php:517 +#: sql.php:516 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Проверка синтаксиса" -#: sql.php:638 +#: sql.php:631 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Проблемы с индексами таблицы `%s`" -#: sql.php:670 +#: sql.php:663 msgid "Label" msgstr "Метка" -#: tbl_addfield.php:188 tbl_alter.php:102 tbl_indexes.php:97 +#: tbl_addfield.php:185 tbl_alter.php:100 tbl_indexes.php:97 #, php-format msgid "Table %1$s has been altered successfully" msgstr "Таблица %1$s была успешно изменена" -#: tbl_change.php:250 tbl_select.php:26 tbl_select.php:27 tbl_select.php:30 -#: tbl_select.php:33 +#: tbl_change.php:245 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_select.php:32 msgid "Browse foreign values" msgstr "Обзор внешних значений" -#: tbl_change.php:280 tbl_change.php:318 +#: tbl_change.php:275 tbl_change.php:313 msgid "Function" msgstr "Функция" -#: tbl_change.php:300 tbl_indexes.php:199 tbl_indexes.php:224 +#: tbl_change.php:295 tbl_indexes.php:198 tbl_indexes.php:223 msgid "Ignore" msgstr "Игнорировать" -#: tbl_change.php:725 +#: tbl_change.php:720 #, fuzzy #| msgid " Because of its length,
                            this field might not be editable " msgid " Because of its length,
                            this column might not be editable " msgstr "Из-за большого количества данных
                            изменение может быть затруднено" -#: tbl_change.php:884 +#: tbl_change.php:835 msgid "Remove BLOB Repository Reference" msgstr "Удалить ссылку хранилища BLOB данных" -#: tbl_change.php:890 +#: tbl_change.php:841 msgid "Binary - do not edit" msgstr "Двоичные данные - не редактируются" -#: tbl_change.php:983 +#: tbl_change.php:889 msgid "Upload to BLOB repository" msgstr "Загрузить в хранилище BLOB данных" -#: tbl_change.php:1128 +#: tbl_change.php:1026 msgid "Insert as new row" msgstr "Вставить запись" -#: tbl_change.php:1129 +#: tbl_change.php:1027 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:1130 +#: tbl_change.php:1028 #, fuzzy msgid "Show insert query" msgstr "Отображает SQL-запрос" -#: tbl_change.php:1145 +#: tbl_change.php:1043 msgid "Go back to previous page" msgstr "Вернуться на предыдущую страницу" -#: tbl_change.php:1146 +#: tbl_change.php:1044 msgid "Insert another new row" msgstr "Добавить новую запись" -#: tbl_change.php:1150 +#: tbl_change.php:1048 msgid "Go back to this page" msgstr "Вернуться к данной странице" -#: tbl_change.php:1158 +#: tbl_change.php:1056 msgid "Edit next row" msgstr "Редактировать следующую строку" -#: tbl_change.php:1169 +#: tbl_change.php:1067 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Для перемещения между полями значения, используйте клавишу TAB, либо CTRL" "+клавиши со стрелками - для свободного перемещения" -#: tbl_change.php:1207 +#: tbl_change.php:1105 #, php-format msgid "Restart insertion with %s rows" msgstr "Количество вставляемых строк: %s" -#: tbl_create.php:57 +#: tbl_create.php:55 #, php-format msgid "Table %s already exists!" msgstr "Таблица %s уже существует!" -#: tbl_create.php:244 +#: tbl_create.php:241 #, php-format msgid "Table %1$s has been created." msgstr "Таблица %1$s была создана." @@ -8204,194 +8273,194 @@ msgstr "Невозможно переименовать индекс в PRIMARY! msgid "No index parts defined!" msgstr "Части индекса не определены!" -#: tbl_indexes.php:159 +#: tbl_indexes.php:158 msgid "Create a new index" msgstr "Создать новый индекс" -#: tbl_indexes.php:161 +#: tbl_indexes.php:160 msgid "Modify an index" msgstr "Изменить индекс" -#: tbl_indexes.php:167 +#: tbl_indexes.php:166 msgid "Index name:" msgstr "Имя индекса :" -#: tbl_indexes.php:173 +#: tbl_indexes.php:172 msgid "Index type:" msgstr "Тип индекса :" -#: tbl_indexes.php:183 +#: tbl_indexes.php:182 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "(Имя "PRIMARY" должен иметь только первичный индекс!)" -#: tbl_indexes.php:250 +#: tbl_indexes.php:249 #, php-format msgid "Add to index  %s column(s)" msgstr "Добавить к индексу %s столбец(ы)" -#: tbl_indexes.php:255 tbl_structure.php:588 tbl_structure.php:599 +#: tbl_indexes.php:254 tbl_structure.php:586 tbl_structure.php:597 msgid "Column count has to be larger than zero." msgstr "Количество столбцов должно быть больше нуля." -#: tbl_move_copy.php:45 +#: tbl_move_copy.php:44 msgid "Can't move table to same one!" msgstr "Не возможно переместить таблицу саму в себя!" -#: tbl_move_copy.php:47 +#: tbl_move_copy.php:46 msgid "Can't copy table to same one!" msgstr "Невозможно скопировать таблицу саму в себя!" -#: tbl_move_copy.php:55 +#: tbl_move_copy.php:54 #, php-format msgid "Table %s has been moved to %s." msgstr "Таблица %s была перемещена в %s." -#: tbl_move_copy.php:57 +#: tbl_move_copy.php:56 #, php-format msgid "Table %s has been copied to %s." msgstr "Таблица %s была скопирована в %s." -#: tbl_move_copy.php:81 +#: tbl_move_copy.php:80 msgid "The table name is empty!" msgstr "Не задано имя таблицы!" -#: tbl_operations.php:248 +#: tbl_operations.php:246 msgid "Alter table order by" msgstr "Изменить сортировку таблицы" -#: tbl_operations.php:257 +#: tbl_operations.php:255 msgid "(singly)" msgstr "(столбец)" -#: tbl_operations.php:277 +#: tbl_operations.php:275 msgid "Move table to (database.table):" msgstr "Переместить таблицы в (база данных.таблица):" -#: tbl_operations.php:335 +#: tbl_operations.php:333 msgid "Table options" msgstr "Параметры таблицы" -#: tbl_operations.php:339 +#: tbl_operations.php:337 msgid "Rename table to" msgstr "Переименовать таблицу в" -#: tbl_operations.php:510 +#: tbl_operations.php:508 msgid "Copy table to (database.table):" msgstr "Скопировать таблицу в (база данных.таблица):" -#: tbl_operations.php:557 +#: tbl_operations.php:555 msgid "Switch to copied table" msgstr "Переключиться на скопированную таблицу" -#: tbl_operations.php:569 +#: tbl_operations.php:567 msgid "Table maintenance" msgstr "Обслуживание таблицы" -#: tbl_operations.php:590 +#: tbl_operations.php:588 msgid "Defragment table" msgstr "Дефрагментировать таблицу" -#: tbl_operations.php:629 +#: tbl_operations.php:627 #, php-format msgid "Table %s has been flushed" msgstr "Обновлен кеш таблицы %s" -#: tbl_operations.php:635 +#: tbl_operations.php:633 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Обновить кеш таблицы ("FLUSH")" -#: tbl_operations.php:650 +#: tbl_operations.php:648 msgid "Partition maintenance" msgstr "Обслуживание разделов" -#: tbl_operations.php:658 +#: tbl_operations.php:656 #, php-format msgid "Partition %s" msgstr "Раздел %s" -#: tbl_operations.php:661 +#: tbl_operations.php:659 msgid "Analyze" msgstr "Анализ" -#: tbl_operations.php:662 +#: tbl_operations.php:660 msgid "Check" msgstr "Проверка" -#: tbl_operations.php:663 +#: tbl_operations.php:661 msgid "Optimize" msgstr "Оптимизация" -#: tbl_operations.php:664 +#: tbl_operations.php:662 msgid "Rebuild" msgstr "Перестройка" -#: tbl_operations.php:665 +#: tbl_operations.php:663 msgid "Repair" msgstr "Исправление" -#: tbl_operations.php:677 +#: tbl_operations.php:675 msgid "Remove partitioning" msgstr "Удалить разделение" -#: tbl_operations.php:703 +#: tbl_operations.php:701 msgid "Check referential integrity:" msgstr "Проверить целостность данных:" -#: tbl_printview.php:73 +#: tbl_printview.php:72 msgid "Show tables" msgstr "Отображение таблиц" -#: tbl_printview.php:308 tbl_structure.php:655 +#: tbl_printview.php:307 tbl_structure.php:653 msgid "Space usage" msgstr "Используемое пространство" -#: tbl_printview.php:312 tbl_structure.php:659 +#: tbl_printview.php:311 tbl_structure.php:657 msgid "Usage" msgstr "Использование" -#: tbl_printview.php:339 tbl_structure.php:686 +#: tbl_printview.php:338 tbl_structure.php:684 msgid "Effective" msgstr "Эффективность" -#: tbl_printview.php:364 tbl_structure.php:724 +#: tbl_printview.php:363 tbl_structure.php:722 msgid "Row Statistics" msgstr "Статистика строк" -#: tbl_printview.php:367 tbl_structure.php:727 +#: tbl_printview.php:366 tbl_structure.php:725 msgid "Statements" msgstr "Характеристика" -#: tbl_printview.php:378 tbl_structure.php:739 +#: tbl_printview.php:377 tbl_structure.php:737 msgid "static" msgstr "статический" -#: tbl_printview.php:380 tbl_structure.php:741 +#: tbl_printview.php:379 tbl_structure.php:739 msgid "dynamic" msgstr "динамический" -#: tbl_printview.php:402 tbl_structure.php:784 +#: tbl_printview.php:401 tbl_structure.php:782 msgid "Row length" msgstr "Длина строки" -#: tbl_printview.php:412 tbl_structure.php:792 +#: tbl_printview.php:411 tbl_structure.php:790 msgid " Row size " msgstr "Размер строки" -#: tbl_relation.php:278 +#: tbl_relation.php:276 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "Ошибка создания внешнего ключа на %1$s (проверьте типы данных)" -#: tbl_relation.php:404 +#: tbl_relation.php:402 #, fuzzy #| msgid "Internal relations" msgid "Internal relation" msgstr "Внутренние связи" -#: tbl_relation.php:406 +#: tbl_relation.php:404 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -8399,7 +8468,7 @@ msgstr "" "Внутренняя связь не обязательна, если существует соответствующая связь с " "помощью внешнего ключа (FOREIGN KEY)." -#: tbl_relation.php:412 +#: tbl_relation.php:410 #, fuzzy #| msgid "Foreign key limit" msgid "Foreign key constraint" @@ -8409,121 +8478,121 @@ msgstr "Лимит внешних ключей" msgid "No rows selected" msgstr "Для совершения действия необходимо выбрать одну или несколько строк" -#: tbl_select.php:130 +#: tbl_select.php:129 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Выполнить \"запрос по образцу\" (групповой символ: \"%\")" -#: tbl_select.php:136 +#: tbl_select.php:135 msgid "Operator" msgstr "Оператор" -#: tbl_select.php:267 +#: tbl_select.php:266 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "Выберите поля (не менее одного):" -#: tbl_select.php:285 +#: tbl_select.php:284 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Добавить условия поиска (тело для условия \"WHERE\"):" -#: tbl_select.php:292 +#: tbl_select.php:291 msgid "Number of rows per page" msgstr "Количество строк на странице" -#: tbl_select.php:298 +#: tbl_select.php:297 msgid "Display order:" msgstr "Сортировка:" -#: tbl_structure.php:160 +#: tbl_structure.php:159 msgid "Browse distinct values" msgstr "Обзор уникальных значений" -#: tbl_structure.php:360 +#: tbl_structure.php:358 #, fuzzy #| msgid "None" msgctxt "None for default" msgid "None" msgstr "Нет" -#: tbl_structure.php:373 +#: tbl_structure.php:371 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Column %s has been dropped" msgstr "Таблица %s была удалена" -#: tbl_structure.php:384 +#: tbl_structure.php:382 #, php-format msgid "A primary key has been added on %s" msgstr "Был добавлен первичный ключ к %s" -#: tbl_structure.php:399 tbl_structure.php:413 tbl_structure.php:427 +#: tbl_structure.php:397 tbl_structure.php:411 tbl_structure.php:425 #, php-format msgid "An index has been added on %s" msgstr "Был добавлен индекс для %s" -#: tbl_structure.php:505 tbl_structure.php:507 +#: tbl_structure.php:503 tbl_structure.php:505 msgid "Relation view" msgstr "Связи" -#: tbl_structure.php:514 tbl_structure.php:516 +#: tbl_structure.php:512 tbl_structure.php:514 msgid "Propose table structure" msgstr "Анализ структуры таблицы" -#: tbl_structure.php:539 +#: tbl_structure.php:537 #, fuzzy #| msgid "Add column(s)" msgid "Add column" msgstr "Добавить поле(я)" -#: tbl_structure.php:553 +#: tbl_structure.php:551 msgid "At End of Table" msgstr "В конец таблицы" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At Beginning of Table" msgstr "В начало таблицы" -#: tbl_structure.php:555 +#: tbl_structure.php:553 #, php-format msgid "After %s" msgstr "После %s" -#: tbl_structure.php:593 +#: tbl_structure.php:591 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "Создать индекс для  %s  столбца/ов" -#: tbl_structure.php:755 +#: tbl_structure.php:753 msgid "partitioned" msgstr "разделён" -#: tbl_tracking.php:113 +#: tbl_tracking.php:109 #, php-format msgid "Tracking report for table `%s`" msgstr "Отчёт слежения для таблицы `%s`" -#: tbl_tracking.php:186 +#: tbl_tracking.php:182 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "Версия %s создана, отслеживание %s.%s включено." -#: tbl_tracking.php:194 +#: tbl_tracking.php:190 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "Отслеживание %s.%s, версии %s выключено." -#: tbl_tracking.php:202 +#: tbl_tracking.php:198 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "Отслеживание %s.%s, версии %s включено." -#: tbl_tracking.php:212 +#: tbl_tracking.php:208 msgid "SQL statements executed." msgstr "Выполненные SQL запросы." -#: tbl_tracking.php:219 +#: tbl_tracking.php:215 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -8532,109 +8601,109 @@ msgstr "" "временную базу данных. Убедитесь, что у вас есть для этого достаточные " "привилегии." -#: tbl_tracking.php:220 +#: tbl_tracking.php:216 msgid "Comment out these two lines if you do not need them." msgstr "Закомментируйте эти две строки, если они вам не нужны." -#: tbl_tracking.php:229 +#: tbl_tracking.php:225 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "SQL выражения успешно выгружены; скопируйте, либо выполните их." -#: tbl_tracking.php:250 tbl_tracking.php:378 +#: tbl_tracking.php:245 tbl_tracking.php:373 msgid "Close" msgstr "Закрыть" -#: tbl_tracking.php:261 +#: tbl_tracking.php:256 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Обзор версии %s (SQL код)" -#: tbl_tracking.php:380 +#: tbl_tracking.php:375 msgid "Tracking statements" msgstr "Отслеживаемые выражения" -#: tbl_tracking.php:396 tbl_tracking.php:503 +#: tbl_tracking.php:391 tbl_tracking.php:498 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "Вывести %s с датой от %s до %s пользователя %s %s" -#: tbl_tracking.php:409 tbl_tracking.php:460 +#: tbl_tracking.php:404 tbl_tracking.php:455 msgid "Date" msgstr "Дата" -#: tbl_tracking.php:410 tbl_tracking.php:461 +#: tbl_tracking.php:405 tbl_tracking.php:456 msgid "Username" msgstr "Пользователь" -#: tbl_tracking.php:411 +#: tbl_tracking.php:406 msgid "Data definition statement" msgstr "Выражение определяющее структуру" -#: tbl_tracking.php:462 +#: tbl_tracking.php:457 msgid "Data manipulation statement" msgstr "Выражение изменяющее данные" -#: tbl_tracking.php:506 +#: tbl_tracking.php:501 msgid "SQL dump (file download)" msgstr "Выгрузка SQL (файл)" -#: tbl_tracking.php:507 +#: tbl_tracking.php:502 msgid "SQL dump" msgstr "Выгрузка SQL" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "This option will replace your table and contained data." msgstr "Данный параметр заместит таблицу и содержащиеся в ней данные." -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "SQL execution" msgstr "Выполнение SQL запроса" -#: tbl_tracking.php:520 +#: tbl_tracking.php:515 #, php-format msgid "Export as %s" msgstr "Экспортировать как %s" -#: tbl_tracking.php:560 +#: tbl_tracking.php:555 msgid "Show versions" msgstr "Показать версии" -#: tbl_tracking.php:592 +#: tbl_tracking.php:587 msgid "Version" msgstr "Версия" -#: tbl_tracking.php:639 +#: tbl_tracking.php:634 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "Выключить слежение за %s.%s" -#: tbl_tracking.php:641 +#: tbl_tracking.php:636 msgid "Deactivate now" msgstr "Выключить" -#: tbl_tracking.php:652 +#: tbl_tracking.php:647 #, php-format msgid "Activate tracking for %s.%s" msgstr "Включить слежение за %s.%s" -#: tbl_tracking.php:654 +#: tbl_tracking.php:649 msgid "Activate now" msgstr "Включить" -#: tbl_tracking.php:667 +#: tbl_tracking.php:662 #, php-format msgid "Create version %s of %s.%s" msgstr "Создать версию %s из %s.%s" -#: tbl_tracking.php:671 +#: tbl_tracking.php:666 msgid "Track these data definition statements:" msgstr "Отслеживать выражения определяющие структуру:" -#: tbl_tracking.php:679 +#: tbl_tracking.php:674 msgid "Track these data manipulation statements:" msgstr "Отслеживать выражения изменяющие данные:" -#: tbl_tracking.php:687 +#: tbl_tracking.php:682 msgid "Create version" msgstr "Создать версию" @@ -8684,11 +8753,41 @@ msgstr "Профиль был обновлен." msgid "VIEW name" msgstr "VIEW название" -#: view_operations.php:92 +#: view_operations.php:91 #, fuzzy msgid "Rename view to" msgstr "Переименовать таблицу в" +#~ msgid "BLOB Repository" +#~ msgstr "Хранилище данных типа BLOB" + +#, fuzzy +#~| msgid "Enabled" +#~ msgctxt "BLOB repository" +#~ msgid "Enabled" +#~ msgstr "Доступно" + +#~ msgid "Disable" +#~ msgstr "Отключить" + +#~ msgid "Damaged" +#~ msgstr "Повреждено" + +#, fuzzy +#~| msgid "Repair" +#~ msgctxt "BLOB repository" +#~ msgid "Repair" +#~ msgstr "Исправление" + +#, fuzzy +#~| msgid "Disabled" +#~ msgctxt "BLOB repository" +#~ msgid "Disabled" +#~ msgstr "Недоступно" + +#~ msgid "Enable" +#~ msgstr "Включить" + #~ msgid "" #~ "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " #~ "extension. Please check your PHP configuration." diff --git a/po/si.po b/po/si.po index 93f311065..4268eba6c 100644 --- a/po/si.po +++ b/po/si.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-21 13:53+0200\n" +"POT-Creation-Date: 2010-07-26 17:18+0200\n" "PO-Revision-Date: 2010-07-22 02:26+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: sinhala \n" @@ -14,19 +14,19 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.1\n" -#: browse_foreigners.php:37 browse_foreigners.php:58 -#: libraries/display_tbl.lib.php:416 server_privileges.php:1506 +#: browse_foreigners.php:36 browse_foreigners.php:57 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1510 msgid "Show all" msgstr "සියල්ල පෙන්වන්න" -#: browse_foreigners.php:81 libraries/common.lib.php:2313 -#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:393 -#: libraries/export/pdf.php:146 pdf_schema.php:282 pdf_schema.php:1122 -#: pdf_schema.php:1138 +#: browse_foreigners.php:80 libraries/common.lib.php:2318 +#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:392 +#: libraries/export/pdf.php:146 pdf_schema.php:281 pdf_schema.php:1121 +#: pdf_schema.php:1137 msgid "Page number:" msgstr "පිටු අංකය:" -#: browse_foreigners.php:131 +#: browse_foreigners.php:130 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -36,139 +36,151 @@ msgstr "" "parent window, or your browser's security settings are configured to block " "cross-window updates." -#: browse_foreigners.php:149 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2829 -#: libraries/common.lib.php:2836 libraries/db_links.inc.php:74 -#: libraries/tbl_links.inc.php:62 +#: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 +#: db_structure.php:89 db_structure.php:91 db_structure.php:102 +#: db_structure.php:104 libraries/common.lib.php:2834 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "සෙවීම" -#: browse_foreigners.php:152 db_operations.php:384 db_operations.php:428 -#: db_operations.php:498 db_operations.php:608 db_search.php:344 -#: db_structure.php:566 js/messages.php:48 libraries/Config.class.php:1043 -#: libraries/Theme_Manager.class.php:310 +#: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 +#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 +#: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 -#: libraries/common.lib.php:1340 libraries/common.lib.php:2289 +#: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 -#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:275 -#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:531 -#: libraries/display_tbl.lib.php:613 libraries/replication_gui.lib.php:75 +#: libraries/display_export.lib.php:269 libraries/display_import.lib.php:275 +#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 +#: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 #: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:781 -#: main.php:127 navigation.php:231 pdf_pages.php:291 pdf_pages.php:327 -#: pdf_pages.php:529 pmd_pdf.php:115 server_binlog.php:128 -#: server_privileges.php:664 server_privileges.php:1616 -#: server_privileges.php:1963 server_privileges.php:2010 -#: server_privileges.php:2049 server_replication.php:234 -#: server_replication.php:317 server_replication.php:340 -#: server_synchronize.php:1208 tbl_change.php:328 tbl_change.php:1172 -#: tbl_change.php:1209 tbl_indexes.php:253 tbl_operations.php:264 -#: tbl_operations.php:301 tbl_operations.php:498 tbl_operations.php:560 -#: tbl_operations.php:680 tbl_select.php:324 tbl_structure.php:561 -#: tbl_structure.php:596 tbl_tracking.php:394 tbl_tracking.php:511 -#: view_create.php:181 view_operations.php:100 +#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 +#: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 +#: server_privileges.php:663 server_privileges.php:1620 +#: server_privileges.php:1967 server_privileges.php:2014 +#: server_privileges.php:2053 server_replication.php:233 +#: server_replication.php:316 server_replication.php:339 +#: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 +#: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 +#: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 +#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "යන්න" -#: browse_foreigners.php:167 browse_foreigners.php:171 -#: libraries/Index.class.php:441 tbl_tracking.php:319 +#: browse_foreigners.php:166 browse_foreigners.php:170 +#: libraries/Index.class.php:441 tbl_tracking.php:314 msgid "Keyname" msgstr "යතුරු නම" -#: browse_foreigners.php:168 browse_foreigners.php:170 -#: server_collations.php:54 server_collations.php:66 server_engines.php:58 +#: browse_foreigners.php:167 browse_foreigners.php:169 +#: server_collations.php:54 server_collations.php:66 server_engines.php:57 #: server_status.php:738 msgid "Description" msgstr "විස්තරය" -#: browse_foreigners.php:246 browse_foreigners.php:255 -#: browse_foreigners.php:267 browse_foreigners.php:275 +#: browse_foreigners.php:245 browse_foreigners.php:254 +#: browse_foreigners.php:266 browse_foreigners.php:274 msgid "Use this value" msgstr "Use this value" -#: db_create.php:45 +#: bs_disp_as_mime_type.php:29 bs_play_media.php:35 +msgid "No blob streaming server configured!" +msgstr "" + +#: bs_disp_as_mime_type.php:35 +msgid "Failed to fetch headers" +msgstr "" + +#: bs_disp_as_mime_type.php:41 +msgid "Failed to open remote URL" +msgstr "" + +#: db_create.php:44 #, fuzzy, php-format msgid "Database %1$s has been created." msgstr "%s දත්තගබඩාව හලන ලදි." -#: db_datadict.php:48 db_operations.php:377 +#: db_datadict.php:48 db_operations.php:313 msgid "Database comment: " msgstr "දත්තගබඩා විස්තර: " -#: db_datadict.php:164 libraries/tbl_properties.inc.php:723 -#: pdf_schema.php:1235 tbl_operations.php:346 tbl_printview.php:128 +#: db_datadict.php:164 libraries/tbl_properties.inc.php:722 +#: pdf_schema.php:1234 tbl_operations.php:344 tbl_printview.php:127 msgid "Table comments" msgstr "වගු විස්තර" -#: db_datadict.php:173 db_qbe.php:173 libraries/Index.class.php:445 +#: db_datadict.php:173 db_qbe.php:170 libraries/Index.class.php:445 #: libraries/export/htmlword.php:243 libraries/export/latex.php:364 #: libraries/export/odt.php:293 libraries/export/texytext.php:233 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:274 -#: pdf_schema.php:1261 pdf_schema.php:1282 tbl_change.php:306 -#: tbl_indexes.php:188 tbl_printview.php:140 tbl_relation.php:401 -#: tbl_select.php:133 tbl_structure.php:176 tbl_tracking.php:272 -#: tbl_tracking.php:323 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 +#: pdf_schema.php:1260 pdf_schema.php:1281 tbl_change.php:301 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:132 tbl_structure.php:175 tbl_tracking.php:267 +#: tbl_tracking.php:318 #, fuzzy #| msgid "Column names" msgid "Column" msgstr "තීර නම්" -#: db_datadict.php:174 db_printview.php:105 libraries/Index.class.php:442 +#: db_datadict.php:174 db_printview.php:104 libraries/Index.class.php:442 #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 #: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:244 #: libraries/export/latex.php:364 libraries/export/odt.php:296 #: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:99 -#: pdf_schema.php:1262 pdf_schema.php:1283 server_privileges.php:2062 -#: tbl_change.php:285 tbl_change.php:312 tbl_printview.php:141 -#: tbl_printview.php:311 tbl_select.php:134 tbl_structure.php:177 -#: tbl_structure.php:658 tbl_tracking.php:273 tbl_tracking.php:320 +#: pdf_schema.php:1261 pdf_schema.php:1282 server_privileges.php:2066 +#: tbl_change.php:280 tbl_change.php:307 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:133 tbl_structure.php:176 +#: tbl_structure.php:656 tbl_tracking.php:268 tbl_tracking.php:315 msgid "Type" msgstr "වර්ගය" #: db_datadict.php:176 libraries/Index.class.php:448 #: libraries/export/htmlword.php:245 libraries/export/latex.php:364 #: libraries/export/odt.php:299 libraries/export/texytext.php:235 -#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1264 -#: pdf_schema.php:1285 tbl_change.php:321 tbl_printview.php:143 -#: tbl_structure.php:180 tbl_tracking.php:275 tbl_tracking.php:326 +#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1263 +#: pdf_schema.php:1284 tbl_change.php:316 tbl_printview.php:142 +#: tbl_structure.php:179 tbl_tracking.php:270 tbl_tracking.php:321 msgid "Null" msgstr "Null" -#: db_datadict.php:177 db_structure.php:500 libraries/export/htmlword.php:246 +#: db_datadict.php:177 db_structure.php:486 libraries/export/htmlword.php:246 #: libraries/export/latex.php:364 libraries/export/odt.php:302 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:105 -#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 -#: tbl_structure.php:181 tbl_tracking.php:276 +#: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:143 +#: tbl_structure.php:180 tbl_tracking.php:271 msgid "Default" msgstr "සාමාන්‍යයෙන් පවතින" #: db_datadict.php:181 libraries/export/htmlword.php:248 #: libraries/export/latex.php:366 libraries/export/odt.php:306 -#: libraries/export/texytext.php:238 pdf_schema.php:1267 pdf_schema.php:1288 -#: tbl_printview.php:148 +#: libraries/export/texytext.php:238 pdf_schema.php:1266 pdf_schema.php:1287 +#: tbl_printview.php:147 msgid "Links to" msgstr "Links to" -#: db_datadict.php:183 db_printview.php:111 libraries/export/htmlword.php:251 +#: db_datadict.php:183 db_printview.php:110 libraries/export/htmlword.php:251 #: libraries/export/latex.php:49 libraries/export/latex.php:369 #: libraries/export/odt.php:37 libraries/export/odt.php:311 #: libraries/export/sql.php:29 libraries/export/texytext.php:241 -#: libraries/tbl_properties.inc.php:129 pdf_schema.php:1278 -#: pdf_schema.php:1289 tbl_printview.php:150 +#: libraries/tbl_properties.inc.php:128 pdf_schema.php:1277 +#: pdf_schema.php:1288 tbl_printview.php:149 msgid "Comments" msgstr "විස්තරය" #: db_datadict.php:266 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/export/htmlword.php:321 #: libraries/export/latex.php:434 libraries/export/odt.php:367 -#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:262 -#: pdf_schema.php:1343 server_privileges.php:1560 server_privileges.php:1571 -#: server_privileges.php:1881 server_privileges.php:1886 -#: server_privileges.php:2179 sql.php:131 sql.php:193 tbl_printview.php:227 -#: tbl_structure.php:349 tbl_tracking.php:336 tbl_tracking.php:341 +#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:261 +#: pdf_schema.php:1342 server_privileges.php:1564 server_privileges.php:1575 +#: server_privileges.php:1885 server_privileges.php:1890 +#: server_privileges.php:2183 sql.php:130 sql.php:192 tbl_printview.php:226 +#: tbl_structure.php:347 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "නැත" @@ -179,17 +191,17 @@ msgstr "නැත" #: libraries/mult_submits.inc.php:49 libraries/mult_submits.inc.php:54 #: libraries/mult_submits.inc.php:59 libraries/mult_submits.inc.php:91 #: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:105 -#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:261 -#: libraries/mult_submits.inc.php:272 pdf_schema.php:1343 -#: server_databases.php:63 server_privileges.php:1557 -#: server_privileges.php:1571 server_privileges.php:1881 -#: server_privileges.php:1884 server_privileges.php:2179 sql.php:192 -#: tbl_printview.php:227 tbl_structure.php:39 tbl_structure.php:349 -#: tbl_tracking.php:334 tbl_tracking.php:339 +#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:260 +#: libraries/mult_submits.inc.php:271 pdf_schema.php:1342 +#: server_databases.php:61 server_privileges.php:1561 +#: server_privileges.php:1575 server_privileges.php:1885 +#: server_privileges.php:1888 server_privileges.php:2183 sql.php:191 +#: tbl_printview.php:226 tbl_structure.php:38 tbl_structure.php:347 +#: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" msgstr "ඔව්" -#: db_datadict.php:321 db_printview.php:265 tbl_printview.php:496 +#: db_datadict.php:321 db_printview.php:264 tbl_printview.php:495 msgid "Print" msgstr "මුද්‍රණය කරන්න" @@ -197,195 +209,154 @@ msgstr "මුද්‍රණය කරන්න" msgid "View dump (schema) of database" msgstr "View dump (schema) of database" -#: db_export.php:32 db_printview.php:95 db_qbe.php:101 db_structure.php:50 -#: db_tracking.php:34 export.php:352 navigation.php:326 +#: db_export.php:32 db_printview.php:94 db_qbe.php:98 db_structure.php:49 +#: db_tracking.php:30 export.php:350 navigation.php:325 msgid "No tables found in database." msgstr "දත්තගබඩාවේ වගු කිසිවක් සොයා ගැනීමට නොමැත." -#: db_export.php:42 db_search.php:326 server_export.php:26 +#: db_export.php:42 db_search.php:326 server_export.php:24 msgid "Select All" msgstr "සියල්ල තෝරන්න" -#: db_export.php:44 db_search.php:329 server_export.php:28 +#: db_export.php:44 db_search.php:329 server_export.php:26 msgid "Unselect All" msgstr "සියල්ලේ තෝරාගැනීම ඉවත් කරන්න‍" -#: db_operations.php:37 tbl_create.php:49 +#: db_operations.php:33 tbl_create.php:47 msgid "The database name is empty!" msgstr "දත්තගබඩා නම හිස්ව පවතී!" -#: db_operations.php:235 +#: db_operations.php:231 #, php-format msgid "Database %s has been renamed to %s" msgstr "%s දත්තගබඩාව %s බවට නම වෙනස් කරන ලදි" -#: db_operations.php:239 +#: db_operations.php:235 #, php-format msgid "Database %s has been copied to %s" msgstr "%s දත්තගබඩාව %s වෙතට පිටපත් කරන ලදි" -#: db_operations.php:411 +#: db_operations.php:347 msgid "Rename database to" msgstr "බවට දත්තගබඩාවේ නම වෙනස් කරන්න" -#: db_operations.php:416 server_processlist.php:56 +#: db_operations.php:352 server_processlist.php:56 msgid "Command" msgstr "විධානය" -#: db_operations.php:428 tbl_change.php:1141 +#: db_operations.php:364 tbl_change.php:1039 msgid "and then" msgstr "සහ එවිට" -#: db_operations.php:454 +#: db_operations.php:390 msgid "Copy database to" msgstr "වෙත දත්තගබඩාව පිටවත් කරන්න" -#: db_operations.php:461 tbl_operations.php:527 tbl_tracking.php:387 +#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Structure only" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:389 +#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "සැකිල්ල සහ දත්ත" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:388 +#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "දත්ත පමණයි" -#: db_operations.php:471 +#: db_operations.php:407 msgid "CREATE DATABASE before copying" msgstr "පිටපත් කිරීමට ප්‍රථම දත්තගබඩාවක් සාදන්න" -#: db_operations.php:474 libraries/export/sql.php:51 +#: db_operations.php:410 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 -#: libraries/export/sql.php:81 tbl_operations.php:535 +#: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "%s එක් කරන්න" -#: db_operations.php:478 libraries/export/sql.php:77 tbl_operations.php:298 -#: tbl_operations.php:537 +#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT අගයක් එක් කරන්න" -#: db_operations.php:482 tbl_operations.php:544 +#: db_operations.php:418 tbl_operations.php:542 msgid "Add constraints" msgstr "සීමා බාධවන් එක් කරන්න" -#: db_operations.php:495 +#: db_operations.php:431 msgid "Switch to copied database" msgstr "Switch to copied database" -#: db_operations.php:536 -msgid "BLOB Repository" -msgstr "" - -#: db_operations.php:539 db_tracking.php:75 libraries/common.lib.php:1357 -#: libraries/server_links.inc.php:48 server_processlist.php:58 -#: tbl_tracking.php:595 test/theme.php:100 -msgid "Status" -msgstr "තත්වය" - -#: db_operations.php:547 -#, fuzzy -#| msgid "Enabled" -msgctxt "BLOB repository" -msgid "Enabled" -msgstr "සක්‍රිය කරන් ලද" - -#: db_operations.php:551 -#, fuzzy -msgid "Disable" -msgstr "අක්‍රිය කරන ලද" - -#: db_operations.php:561 -msgid "Damaged" -msgstr "" - -#: db_operations.php:565 -#, fuzzy -msgctxt "BLOB repository" -msgid "Repair" -msgstr "වගුව ප්‍රතිසංස්කරණය කරන්න" - -#: db_operations.php:573 -#, fuzzy -#| msgid "Disabled" -msgctxt "BLOB repository" -msgid "Disabled" -msgstr "අක්‍රිය කරන ලද" - -#: db_operations.php:577 -#, fuzzy -msgid "Enable" -msgstr "සක්‍රිය කරන් ලද" - -#: db_operations.php:601 libraries/Index.class.php:447 +#: db_operations.php:451 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 -#: server_collations.php:53 server_collations.php:65 server_databases.php:110 -#: tbl_operations.php:362 tbl_select.php:135 tbl_structure.php:178 -#: tbl_structure.php:766 tbl_tracking.php:274 tbl_tracking.php:325 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 +#: server_collations.php:53 server_collations.php:65 server_databases.php:108 +#: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:177 +#: tbl_structure.php:764 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "Collation" -#: db_operations.php:614 main.php:315 pdf_schema.php:33 -#, php-format +#: db_operations.php:464 pdf_schema.php:32 +#, fuzzy, php-format +#| msgid "" +#| "The additional features for working with linked tables have been " +#| "deactivated. To find out why click %shere%s." msgid "" -"The additional features for working with linked tables have been " -"deactivated. To find out why click %shere%s." +"The phpMyAdmin configuration storage has been deactivated. To find out why " +"click %shere%s." msgstr "" "The additional features for working with linked tables have been " "deactivated. To find out why click %shere%s." -#: db_operations.php:647 +#: db_operations.php:497 msgid "Edit PDF Pages" msgstr "PDF පිටු සංස්කරණය කරන්න" -#: db_printview.php:103 db_tracking.php:71 db_tracking.php:156 +#: db_printview.php:102 db_tracking.php:67 db_tracking.php:152 #: libraries/db_structure.lib.php:37 libraries/export/xml.php:327 -#: libraries/header.inc.php:125 pdf_pages.php:423 server_privileges.php:1657 -#: server_privileges.php:1713 server_privileges.php:1977 -#: server_synchronize.php:422 server_synchronize.php:865 tbl_tracking.php:591 +#: libraries/header.inc.php:125 pdf_pages.php:422 server_privileges.php:1661 +#: server_privileges.php:1717 server_privileges.php:1981 +#: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "වගුව" -#: db_printview.php:104 libraries/db_structure.lib.php:47 +#: db_printview.php:103 libraries/db_structure.lib.php:47 #: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 -#: navigation.php:629 navigation.php:651 server_databases.php:121 -#: tbl_printview.php:392 tbl_structure.php:364 tbl_structure.php:776 +#: navigation.php:628 navigation.php:650 server_databases.php:119 +#: tbl_printview.php:391 tbl_structure.php:362 tbl_structure.php:774 msgid "Rows" msgstr "පේළි" -#: db_printview.php:108 libraries/db_structure.lib.php:58 tbl_indexes.php:189 +#: db_printview.php:107 libraries/db_structure.lib.php:58 tbl_indexes.php:188 msgid "Size" msgstr "ප්‍රමාණය" -#: db_printview.php:161 db_structure.php:456 libraries/export/sql.php:556 +#: db_printview.php:160 db_structure.php:442 libraries/export/sql.php:556 #: libraries/export/sql.php:896 msgid "in use" msgstr "භාවිතා වෙමින් පවතී" -#: db_printview.php:186 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:511 pdf_schema.php:1240 tbl_printview.php:432 -#: tbl_structure.php:808 +#: db_printview.php:185 libraries/db_info.inc.php:86 +#: libraries/export/sql.php:511 pdf_schema.php:1239 tbl_printview.php:431 +#: tbl_structure.php:806 msgid "Creation" msgstr "සෑදීම" -#: db_printview.php:195 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:516 pdf_schema.php:1245 tbl_printview.php:442 -#: tbl_structure.php:816 +#: db_printview.php:194 libraries/db_info.inc.php:91 +#: libraries/export/sql.php:516 pdf_schema.php:1244 tbl_printview.php:441 +#: tbl_structure.php:814 msgid "Last update" msgstr "අවසන් යාවත් කාලීන කිරීම" -#: db_printview.php:204 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:521 pdf_schema.php:1250 tbl_printview.php:452 -#: tbl_structure.php:824 +#: db_printview.php:203 libraries/db_info.inc.php:96 +#: libraries/export/sql.php:521 pdf_schema.php:1249 tbl_printview.php:451 +#: tbl_structure.php:822 msgid "Last check" msgstr "අවසන් පරීක්ෂාව" -#: db_printview.php:221 db_structure.php:479 +#: db_printview.php:220 db_structure.php:465 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -393,94 +364,94 @@ msgid_plural "%s tables" msgstr[0] "%s table(s)" msgstr[1] "%s table(s)" -#: db_qbe.php:28 import.php:453 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1980 libraries/sql_query_form.lib.php:138 -#: tbl_operations.php:212 tbl_relation.php:291 tbl_row_action.php:130 -#: view_operations.php:61 +#: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 +#: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "ඔබගේ SQL විමසුම සාර්ථකව ක්‍රියාවට නංවන ලදි" -#: db_qbe.php:41 +#: db_qbe.php:38 msgid "You have to choose at least one column to display" msgstr "පෙන්වීම සඳහා අවම වශයෙන් එක් තීරයක්වත් තෝරාගත යුතුයි" -#: db_qbe.php:199 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:865 +#: db_qbe.php:196 libraries/db_structure.lib.php:95 +#: libraries/display_tbl.lib.php:864 msgid "Sort" msgstr "‍තෝරනවා" -#: db_qbe.php:208 db_qbe.php:242 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:522 libraries/display_tbl.lib.php:827 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:259 -#: tbl_select.php:311 +#: db_qbe.php:205 db_qbe.php:239 libraries/db_structure.lib.php:102 +#: libraries/display_tbl.lib.php:521 libraries/display_tbl.lib.php:826 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:257 +#: tbl_select.php:310 msgid "Ascending" msgstr "ආරෝහන" -#: db_qbe.php:209 db_qbe.php:250 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:527 libraries/display_tbl.lib.php:824 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:260 -#: tbl_select.php:312 +#: db_qbe.php:206 db_qbe.php:247 libraries/db_structure.lib.php:110 +#: libraries/display_tbl.lib.php:526 libraries/display_tbl.lib.php:823 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:258 +#: tbl_select.php:311 msgid "Descending" msgstr "අවරෝහන" -#: db_qbe.php:263 db_tracking.php:77 libraries/display_tbl.lib.php:307 -#: tbl_change.php:275 tbl_tracking.php:596 +#: db_qbe.php:260 db_tracking.php:73 libraries/display_tbl.lib.php:306 +#: tbl_change.php:270 tbl_tracking.php:591 msgid "Show" msgstr "පෙන්වන්න" -#: db_qbe.php:299 +#: db_qbe.php:296 msgid "Criteria" msgstr "නිර්ණායක" -#: db_qbe.php:352 db_qbe.php:434 db_qbe.php:526 db_qbe.php:557 +#: db_qbe.php:349 db_qbe.php:431 db_qbe.php:523 db_qbe.php:554 msgid "Ins" msgstr "Ins" -#: db_qbe.php:356 db_qbe.php:438 db_qbe.php:523 db_qbe.php:554 +#: db_qbe.php:353 db_qbe.php:435 db_qbe.php:520 db_qbe.php:551 msgid "And" msgstr "සහ" -#: db_qbe.php:365 db_qbe.php:446 db_qbe.php:528 db_qbe.php:559 +#: db_qbe.php:362 db_qbe.php:443 db_qbe.php:525 db_qbe.php:556 msgid "Del" msgstr "Del" -#: db_qbe.php:369 db_qbe.php:450 db_qbe.php:521 db_qbe.php:552 -#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:778 -#: server_privileges.php:297 tbl_change.php:1027 tbl_indexes.php:249 -#: tbl_select.php:285 +#: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 +#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:777 +#: server_privileges.php:296 tbl_change.php:925 tbl_indexes.php:248 +#: tbl_select.php:284 msgid "Or" msgstr "හෝ" -#: db_qbe.php:506 +#: db_qbe.php:503 msgid "Modify" msgstr "වෙනස් කිරීම" -#: db_qbe.php:583 +#: db_qbe.php:580 #, fuzzy #| msgid "Add/Delete Criteria Row" msgid "Add/Delete criteria rows" msgstr "නිර්ණායක පේළියක් එක් කරන්න/ඉවත් කරන්න" -#: db_qbe.php:595 +#: db_qbe.php:592 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Add/Delete columns" msgstr "ක්ෂේත්‍ර තීර එක් කරන්න/ඉවත් කරන්න" -#: db_qbe.php:608 db_qbe.php:633 +#: db_qbe.php:605 db_qbe.php:630 msgid "Update Query" msgstr "Update Query" -#: db_qbe.php:616 +#: db_qbe.php:613 msgid "Use Tables" msgstr "Use Tables" -#: db_qbe.php:639 +#: db_qbe.php:636 #, php-format msgid "SQL query on database %s:" msgstr "SQL query on database %s:" -#: db_qbe.php:933 libraries/common.lib.php:1222 +#: db_qbe.php:930 libraries/common.lib.php:1215 msgid "Submit Query" msgstr "විමසුම ඉදිරිපත් කරන්න" @@ -520,17 +491,17 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s match(es) inside table %s" msgstr[1] "%s match(es) inside table %s" -#: db_search.php:249 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2831 -#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:49 -#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:466 +#: db_search.php:249 db_structure.php:75 db_structure.php:76 +#: db_structure.php:88 db_structure.php:90 db_structure.php:101 +#: db_structure.php:103 libraries/common.lib.php:2836 +#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 +#: tbl_structure.php:35 tbl_structure.php:47 tbl_structure.php:464 msgid "Browse" msgstr "බ්‍රවුස් කරන්න" -#: db_search.php:254 libraries/display_tbl.lib.php:1164 -#: libraries/display_tbl.lib.php:2055 libraries/sql_query_form.lib.php:453 -#: pdf_pages.php:285 pdf_pages.php:424 pdf_pages.php:460 pdf_pages.php:488 +#: db_search.php:254 libraries/display_tbl.lib.php:1163 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 msgid "Delete" @@ -570,233 +541,239 @@ msgstr "වගු(ව) තුල:" msgid "Inside column:" msgstr "වගු(ව) තුල:" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2830 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:75 +#: db_structure.php:79 db_structure.php:80 db_structure.php:92 +#: db_structure.php:93 db_structure.php:105 db_structure.php:106 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 +#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "ඇතුල් කරන්න" -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2827 libraries/common.lib.php:2834 -#: libraries/db_links.inc.php:62 libraries/export/htmlword.php:22 +#: db_structure.php:81 db_structure.php:94 db_structure.php:107 +#: libraries/common.lib.php:2832 libraries/common.lib.php:2839 +#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 -#: libraries/tbl_links.inc.php:55 pmd_general.php:133 -#: server_privileges.php:593 server_replication.php:314 tbl_tracking.php:268 +#: libraries/tbl_links.inc.php:54 pmd_general.php:133 +#: server_privileges.php:592 server_replication.php:313 tbl_tracking.php:263 msgid "Structure" msgstr "සැකිල්ල" -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:544 db_structure.php:545 db_tracking.php:90 -#: libraries/Index.class.php:482 libraries/common.lib.php:1659 -#: libraries/db_links.inc.php:99 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:126 -#: server_databases.php:351 tbl_structure.php:26 tbl_structure.php:150 -#: tbl_structure.php:151 tbl_structure.php:470 +#: db_structure.php:82 db_structure.php:83 db_structure.php:95 +#: db_structure.php:96 db_structure.php:108 db_structure.php:109 +#: db_structure.php:530 db_structure.php:531 db_tracking.php:86 +#: libraries/Index.class.php:482 libraries/common.lib.php:1663 +#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 +#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 +#: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" msgstr "හලන්න" -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:542 db_structure.php:543 libraries/common.lib.php:1658 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:104 +#: db_structure.php:84 db_structure.php:85 db_structure.php:97 +#: db_structure.php:98 db_structure.php:110 db_structure.php:111 +#: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 +#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 msgid "Empty" msgstr "හිස්" -#: db_structure.php:315 libraries/tbl_links.inc.php:99 +#: db_structure.php:301 libraries/tbl_links.inc.php:98 #, php-format msgid "Table %s has been emptied" msgstr "%s වගුව හිස් කරන ලදි" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "View %s has been dropped" msgstr "View %s has been dropped" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "Table %s has been dropped" msgstr "%s වගුව හලන ලදි" -#: db_structure.php:332 +#: db_structure.php:318 msgid "Tracking is active." msgstr "" -#: db_structure.php:334 +#: db_structure.php:320 msgid "Tracking is not active." msgstr "" -#: db_structure.php:419 libraries/display_tbl.lib.php:1943 +#: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -#: db_structure.php:433 db_structure.php:447 libraries/header.inc.php:125 -#: libraries/tbl_info.inc.php:65 tbl_structure.php:184 test/theme.php:73 +#: db_structure.php:419 db_structure.php:433 libraries/header.inc.php:125 +#: libraries/tbl_info.inc.php:60 tbl_structure.php:183 test/theme.php:73 msgid "View" msgstr "දර්ශනය කරන්න" -#: db_structure.php:484 libraries/db_structure.lib.php:40 -#: libraries/server_links.inc.php:69 server_replication.php:32 -#: server_replication.php:163 server_status.php:368 +#: db_structure.php:470 libraries/db_structure.lib.php:40 +#: libraries/server_links.inc.php:69 server_replication.php:31 +#: server_replication.php:162 server_status.php:368 msgid "Replication" msgstr "Replication" -#: db_structure.php:488 +#: db_structure.php:474 msgid "Sum" msgstr "එකතුව" -#: db_structure.php:495 libraries/StorageEngine.class.php:349 +#: db_structure.php:481 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s is the default storage engine on this MySQL server." -#: db_structure.php:523 db_structure.php:540 db_structure.php:541 -#: libraries/display_tbl.lib.php:2080 libraries/display_tbl.lib.php:2085 -#: libraries/mult_submits.inc.php:15 server_databases.php:345 -#: server_databases.php:350 server_privileges.php:1588 tbl_structure.php:454 -#: tbl_structure.php:463 +#: db_structure.php:509 db_structure.php:526 db_structure.php:527 +#: libraries/display_tbl.lib.php:2039 libraries/display_tbl.lib.php:2044 +#: libraries/mult_submits.inc.php:15 server_databases.php:343 +#: server_databases.php:348 server_privileges.php:1592 tbl_structure.php:452 +#: tbl_structure.php:461 msgid "With selected:" msgstr "තෝරාගත්:" -#: db_structure.php:526 libraries/display_tbl.lib.php:2075 -#: server_databases.php:347 server_privileges.php:569 -#: server_privileges.php:1591 tbl_structure.php:457 +#: db_structure.php:512 libraries/display_tbl.lib.php:2034 +#: server_databases.php:345 server_privileges.php:568 +#: server_privileges.php:1595 tbl_structure.php:455 msgid "Check All" msgstr "සියල්ල කතිර කොටුගත කරන්න" -#: db_structure.php:530 libraries/display_tbl.lib.php:2076 -#: libraries/replication_gui.lib.php:35 server_databases.php:349 -#: server_privileges.php:572 server_privileges.php:1595 tbl_structure.php:461 +#: db_structure.php:516 libraries/display_tbl.lib.php:2035 +#: libraries/replication_gui.lib.php:35 server_databases.php:347 +#: server_privileges.php:571 server_privileges.php:1599 tbl_structure.php:459 msgid "Uncheck All" msgstr "කතිර කොටුගත කිරීම ඉවත් කරන්න" -#: db_structure.php:535 +#: db_structure.php:521 msgid "Check tables having overhead" msgstr "Check tables having overhead" -#: db_structure.php:546 db_structure.php:547 db_structure.php:598 -#: libraries/display_tbl.lib.php:2179 libraries/mult_submits.inc.php:27 -#: tbl_structure.php:491 tbl_structure.php:493 +#: db_structure.php:532 db_structure.php:533 db_structure.php:584 +#: libraries/display_tbl.lib.php:2138 libraries/mult_submits.inc.php:27 +#: tbl_structure.php:489 tbl_structure.php:491 msgid "Print view" msgstr "මුද්‍රණ දර්ශනය" -#: db_structure.php:548 db_structure.php:549 libraries/mult_submits.inc.php:41 -#: tbl_operations.php:580 +#: db_structure.php:534 db_structure.php:535 libraries/mult_submits.inc.php:41 +#: tbl_operations.php:578 msgid "Check table" msgstr "වගුව පරීක්ෂා කරන්න" -#: db_structure.php:550 db_structure.php:551 libraries/mult_submits.inc.php:46 -#: tbl_operations.php:620 tbl_structure.php:708 tbl_structure.php:710 +#: db_structure.php:536 db_structure.php:537 libraries/mult_submits.inc.php:46 +#: tbl_operations.php:618 tbl_structure.php:706 tbl_structure.php:708 msgid "Optimize table" msgstr "ප්‍රශස්තගත වගුව" -#: db_structure.php:552 db_structure.php:553 libraries/mult_submits.inc.php:51 -#: tbl_operations.php:610 +#: db_structure.php:538 db_structure.php:539 libraries/mult_submits.inc.php:51 +#: tbl_operations.php:608 msgid "Repair table" msgstr "වගුව ප්‍රතිසංස්කරණය කරන්න" -#: db_structure.php:554 db_structure.php:555 libraries/mult_submits.inc.php:56 -#: tbl_operations.php:600 +#: db_structure.php:540 db_structure.php:541 libraries/mult_submits.inc.php:56 +#: tbl_operations.php:598 msgid "Analyze table" msgstr "වගුව විශ්ලේෂණය කරන්න" -#: db_structure.php:556 db_structure.php:557 libraries/db_links.inc.php:70 -#: libraries/display_export.lib.php:82 libraries/display_tbl.lib.php:2093 -#: libraries/display_tbl.lib.php:2224 libraries/mult_submits.inc.php:61 -#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:81 -#: pmd_pdf.php:83 pmd_pdf.php:108 server_privileges.php:1372 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 +#: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 +#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 +#: pmd_pdf.php:81 pmd_pdf.php:106 server_privileges.php:1376 #: setup/frames/menu.inc.php:22 tbl_row_action.php:58 msgid "Export" msgstr "අපනයනය" -#: db_structure.php:605 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:591 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "දත්ත කෝෂය" -#: db_tracking.php:65 +#: db_tracking.php:61 #, fuzzy msgid "Tracked tables" msgstr "වගුව පරීක්ෂා කරන්න" -#: db_tracking.php:70 libraries/export/htmlword.php:85 +#: db_tracking.php:66 libraries/export/htmlword.php:85 #: libraries/export/latex.php:152 libraries/export/odt.php:112 #: libraries/export/sql.php:339 libraries/export/texytext.php:84 #: libraries/export/xml.php:254 libraries/header.inc.php:105 -#: libraries/header_printview.inc.php:57 server_databases.php:168 -#: server_privileges.php:1652 server_privileges.php:1713 -#: server_privileges.php:1971 server_processlist.php:55 -#: server_synchronize.php:1178 server_synchronize.php:1182 -#: tbl_tracking.php:590 test/theme.php:64 +#: libraries/header_printview.inc.php:57 server_databases.php:166 +#: server_privileges.php:1656 server_privileges.php:1717 +#: server_privileges.php:1975 server_processlist.php:55 +#: server_synchronize.php:1177 server_synchronize.php:1181 +#: tbl_tracking.php:585 test/theme.php:64 msgid "Database" msgstr "දත්තගබඩාව" -#: db_tracking.php:72 +#: db_tracking.php:68 #, fuzzy msgid "Last version" msgstr "සර්වරයේ සංස්කරණය" -#: db_tracking.php:73 tbl_tracking.php:593 +#: db_tracking.php:69 tbl_tracking.php:588 #, fuzzy msgid "Created" msgstr "සාදන්න" -#: db_tracking.php:74 tbl_tracking.php:594 +#: db_tracking.php:70 tbl_tracking.php:589 msgid "Updated" msgstr "" -#: db_tracking.php:76 libraries/Index.class.php:439 -#: libraries/db_structure.lib.php:44 server_databases.php:202 -#: server_privileges.php:1534 server_privileges.php:1717 -#: server_privileges.php:2065 tbl_structure.php:186 +#: db_tracking.php:71 libraries/common.lib.php:1361 +#: libraries/server_links.inc.php:48 server_processlist.php:58 +#: tbl_tracking.php:590 test/theme.php:100 +msgid "Status" +msgstr "තත්වය" + +#: db_tracking.php:72 libraries/Index.class.php:439 +#: libraries/db_structure.lib.php:44 server_databases.php:200 +#: server_privileges.php:1538 server_privileges.php:1721 +#: server_privileges.php:2069 tbl_structure.php:185 msgid "Action" msgstr "ක්‍රියාව" -#: db_tracking.php:87 db_tracking.php:119 +#: db_tracking.php:83 db_tracking.php:115 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:105 tbl_tracking.php:547 tbl_tracking.php:605 -#: tbl_tracking.php:612 +#: db_tracking.php:101 tbl_tracking.php:542 tbl_tracking.php:600 +#: tbl_tracking.php:607 msgid "active" msgstr "" -#: db_tracking.php:107 tbl_tracking.php:549 tbl_tracking.php:607 -#: tbl_tracking.php:609 +#: db_tracking.php:103 tbl_tracking.php:544 tbl_tracking.php:602 +#: tbl_tracking.php:604 msgid "not active" msgstr "" -#: db_tracking.php:120 +#: db_tracking.php:116 #, fuzzy msgid "Versions" msgstr "පර්සියානු" -#: db_tracking.php:121 tbl_tracking.php:378 tbl_tracking.php:623 +#: db_tracking.php:117 tbl_tracking.php:373 tbl_tracking.php:618 msgid "Tracking report" msgstr "" -#: db_tracking.php:122 tbl_tracking.php:250 tbl_tracking.php:623 +#: db_tracking.php:118 tbl_tracking.php:245 tbl_tracking.php:618 #, fuzzy msgid "Structure snapshot" msgstr "Structure only" -#: db_tracking.php:151 +#: db_tracking.php:147 #, fuzzy msgid "Untracked tables" msgstr "වගුව පරීක්ෂා කරන්න" -#: db_tracking.php:171 db_tracking.php:173 tbl_structure.php:527 -#: tbl_structure.php:529 +#: db_tracking.php:167 db_tracking.php:169 tbl_structure.php:525 +#: tbl_structure.php:527 #, fuzzy msgid "Track table" msgstr "වගුව පරීක්ෂා කරන්න" -#: db_tracking.php:199 +#: db_tracking.php:195 #, fuzzy msgid "Database Log" msgstr "දත්තගබඩාව" @@ -805,29 +782,29 @@ msgstr "දත්තගබඩාව" msgid "Selected export type has to be saved in file!" msgstr "Selected export type has to be saved in file!" -#: export.php:153 export.php:178 export.php:620 +#: export.php:152 export.php:177 export.php:615 #, php-format msgid "Insufficient space to save the file %s." msgstr "Insufficient space to save the file %s ගොනුව සේව් කිරීමට ප්‍රමාණවත් ." -#: export.php:287 +#: export.php:286 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "" "File %s already exists on server, change filename or check overwrite option." -#: export.php:291 export.php:295 +#: export.php:290 export.php:294 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "The web server does not have permission to save the file %s." -#: export.php:622 +#: export.php:617 #, php-format msgid "Dump has been saved to file %s." msgstr "%s ගොනුවට නික්ෂේප දත්ත සේව් කරන ලදි." -#: import.php:59 +#: import.php:58 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -836,14 +813,14 @@ msgstr "" "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:840 -#: libraries/File.class.php:950 +#: import.php:277 import.php:330 libraries/File.class.php:566 +#: libraries/File.class.php:676 msgid "File could not be read" msgstr "ගොනුව කියවිය නොහැක" -#: import.php:286 import.php:295 import.php:314 import.php:323 -#: libraries/File.class.php:1020 libraries/File.class.php:1028 -#: libraries/File.class.php:1044 libraries/File.class.php:1052 +#: import.php:285 import.php:294 import.php:313 import.php:322 +#: libraries/File.class.php:746 libraries/File.class.php:754 +#: libraries/File.class.php:770 libraries/File.class.php:778 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -852,7 +829,7 @@ msgstr "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." -#: import.php:336 +#: import.php:335 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -862,29 +839,29 @@ msgstr "" "file size exceeded the maximum size permitted by your PHP configuration. See " "FAQ 1.16." -#: import.php:371 libraries/display_import.lib.php:23 +#: import.php:370 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "Could not load import plugins, please check your installation!" -#: import.php:396 +#: import.php:395 msgid "The bookmark has been deleted." msgstr "පොත් සලකුණ ඉවත් කරන ලදි." -#: import.php:400 +#: import.php:399 msgid "Showing bookmark" msgstr "පොත් සලකුණ පෙන්වන්න" -#: import.php:402 sql.php:625 +#: import.php:401 sql.php:618 #, php-format msgid "Bookmark %s created" msgstr "%s පොත් සලකුණ සාදන ලදි" -#: import.php:408 import.php:414 +#: import.php:407 import.php:413 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "ආනයනය සාර්ථකව අවසන් කරන ලදි, විමසුම්%d ක්‍රියාත්මක කරන ලදි." -#: import.php:423 +#: import.php:422 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -892,7 +869,7 @@ msgstr "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." -#: import.php:425 +#: import.php:424 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -900,19 +877,19 @@ msgstr "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." -#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:240 +#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:239 #: user_password.php:110 msgid "Back" msgstr "ආපසු" -#: index.php:188 +#: index.php:183 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin is more friendly with a frames-capable browser." -#: js/messages.php:25 server_synchronize.php:344 server_synchronize.php:356 -#: server_synchronize.php:372 server_synchronize.php:379 -#: server_synchronize.php:738 server_synchronize.php:766 -#: server_synchronize.php:794 server_synchronize.php:806 +#: js/messages.php:25 server_synchronize.php:343 server_synchronize.php:355 +#: server_synchronize.php:371 server_synchronize.php:378 +#: server_synchronize.php:737 server_synchronize.php:765 +#: server_synchronize.php:793 server_synchronize.php:805 msgid "Click to select" msgstr "" @@ -920,15 +897,15 @@ msgstr "" msgid "Click to unselect" msgstr "" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:88 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:87 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" statements are disabled." -#: js/messages.php:30 libraries/mult_submits.inc.php:257 sql.php:187 +#: js/messages.php:30 libraries/mult_submits.inc.php:256 sql.php:186 msgid "Do you really want to " msgstr "ඔබට ඇත්තෙන්ම අවශ්‍යද" -#: js/messages.php:31 libraries/mult_submits.inc.php:257 sql.php:171 +#: js/messages.php:31 libraries/mult_submits.inc.php:256 sql.php:170 msgid "You are about to DESTROY a complete database!" msgstr "ඔබ සූදානම් වන්නේ සම්පූර්ණ දත්තගබඩාවක් විනාශකර දැමීමටයි!" @@ -957,11 +934,11 @@ msgstr "දාරක නම හිස්ව පවතී!" msgid "The user name is empty!" msgstr "භාවිත නාමය හිස්ව පවතී!" -#: js/messages.php:44 server_privileges.php:1228 user_password.php:65 +#: js/messages.php:44 server_privileges.php:1229 user_password.php:65 msgid "The password is empty!" msgstr "The password is empty!" -#: js/messages.php:45 server_privileges.php:1226 user_password.php:68 +#: js/messages.php:45 server_privileges.php:1227 user_password.php:68 msgid "The passwords aren't the same!" msgstr "The passwords aren't the same!" @@ -969,29 +946,29 @@ msgstr "The passwords aren't the same!" msgid "Cancel" msgstr "" -#: js/messages.php:52 pmd_save_pos.php:53 +#: js/messages.php:52 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "වෙනස් කිරීම් සේව් කරන ලදි" -#: js/messages.php:53 pmd_relation_upd.php:48 +#: js/messages.php:53 pmd_relation_upd.php:47 #, fuzzy msgid "Relation deleted" msgstr "Relation view" -#: js/messages.php:54 pmd_relation_new.php:63 +#: js/messages.php:54 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:55 pmd_relation_new.php:85 +#: js/messages.php:55 pmd_relation_new.php:84 #, fuzzy msgid "Internal relation added" msgstr "Internal relations" -#: js/messages.php:56 pmd_relation_new.php:62 pmd_relation_new.php:87 +#: js/messages.php:56 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:57 pmd_relation_new.php:30 +#: js/messages.php:57 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "" @@ -999,13 +976,13 @@ msgstr "" msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:59 libraries/relation.lib.php:94 -#: libraries/relation.lib.php:106 +#: js/messages.php:59 libraries/relation.lib.php:89 +#: libraries/relation.lib.php:101 msgid "General relation features" msgstr "General relation features" -#: js/messages.php:59 libraries/relation.lib.php:88 -#: libraries/relation.lib.php:95 +#: js/messages.php:59 libraries/relation.lib.php:83 +#: libraries/relation.lib.php:90 msgid "Disabled" msgstr "අක්‍රිය කරන ලද" @@ -1021,7 +998,7 @@ msgstr "" msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:547 +#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" @@ -1051,10 +1028,10 @@ msgid "Prev" msgstr "පෙර" #. l10n: Display text for next month link in calendar -#: js/messages.php:81 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:337 -#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:422 -#: tbl_structure.php:800 +#: js/messages.php:81 libraries/common.lib.php:2358 +#: libraries/common.lib.php:2361 libraries/display_tbl.lib.php:336 +#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 +#: tbl_structure.php:798 msgid "Next" msgstr "මීලඟ" @@ -1128,27 +1105,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1562 +#: js/messages.php:101 libraries/common.lib.php:1566 msgid "Jan" msgstr "ජනවාරි" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1564 +#: js/messages.php:103 libraries/common.lib.php:1568 msgid "Feb" msgstr "පෙබරවාරි" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1566 +#: js/messages.php:105 libraries/common.lib.php:1570 msgid "Mar" msgstr "මාර්තු" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1568 +#: js/messages.php:107 libraries/common.lib.php:1572 msgid "Apr" msgstr "අ‍ප්‍රේල්" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1570 +#: js/messages.php:109 libraries/common.lib.php:1574 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1156,37 +1133,37 @@ msgid "May" msgstr "මැයි" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1572 +#: js/messages.php:111 libraries/common.lib.php:1576 msgid "Jun" msgstr "ජූනි" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1574 +#: js/messages.php:113 libraries/common.lib.php:1578 msgid "Jul" msgstr "ජූලි" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1576 +#: js/messages.php:115 libraries/common.lib.php:1580 msgid "Aug" msgstr "අගෝස්තු" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1578 +#: js/messages.php:117 libraries/common.lib.php:1582 msgid "Sep" msgstr "සැප්තැම්බර්" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1580 +#: js/messages.php:119 libraries/common.lib.php:1584 msgid "Oct" msgstr "ඔක්තෝම්බර්" #. l10n: Short month name -#: js/messages.php:121 libraries/common.lib.php:1582 +#: js/messages.php:121 libraries/common.lib.php:1586 msgid "Nov" msgstr "නොවැම්බර්" #. l10n: Short month name -#: js/messages.php:123 libraries/common.lib.php:1584 +#: js/messages.php:123 libraries/common.lib.php:1588 msgid "Dec" msgstr "දෙසැම්බර්" @@ -1227,37 +1204,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1587 +#: js/messages.php:136 libraries/common.lib.php:1591 msgid "Sun" msgstr "ඉරිදා" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1589 +#: js/messages.php:138 libraries/common.lib.php:1593 msgid "Mon" msgstr "සදුදා" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1591 +#: js/messages.php:140 libraries/common.lib.php:1595 msgid "Tue" msgstr "අගහරු‍වදා" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1593 +#: js/messages.php:142 libraries/common.lib.php:1597 msgid "Wed" msgstr "බදාදා" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1595 +#: js/messages.php:144 libraries/common.lib.php:1599 msgid "Thu" msgstr "බ්‍රහස්පතින්දා" #. l10n: Short week day name -#: js/messages.php:146 libraries/common.lib.php:1597 +#: js/messages.php:146 libraries/common.lib.php:1601 msgid "Fri" msgstr "සිකුරාදා:" #. l10n: Short week day name -#: js/messages.php:148 libraries/common.lib.php:1599 +#: js/messages.php:148 libraries/common.lib.php:1603 msgid "Sat" msgstr "සෙනසුරාදා" @@ -1335,76 +1312,75 @@ msgstr "තප්පරයකට" msgid "Font size" msgstr "ෆොන්ට් එකෙහි ප්‍රමාණය" -#: libraries/File.class.php:336 libraries/File.class.php:424 -#: libraries/File.class.php:561 libraries/File.class.php:700 -msgid "Unknown error in file upload." -msgstr "" - -#: libraries/File.class.php:406 +#: libraries/File.class.php:315 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:409 +#: libraries/File.class.php:318 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:412 +#: libraries/File.class.php:321 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:415 +#: libraries/File.class.php:324 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:418 +#: libraries/File.class.php:327 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:421 +#: libraries/File.class.php:330 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:898 +#: libraries/File.class.php:333 +msgid "Unknown error in file upload." +msgstr "" + +#: libraries/File.class.php:624 #, 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:427 tbl_relation.php:528 +#: libraries/Index.class.php:427 tbl_relation.php:526 msgid "No index defined!" msgstr "No index defined!" -#: libraries/Index.class.php:432 server_databases.php:131 tbl_tracking.php:315 +#: libraries/Index.class.php:432 server_databases.php:129 tbl_tracking.php:310 msgid "Indexes" msgstr "සූචියන්" #: libraries/Index.class.php:443 libraries/mult_submits.inc.php:102 -#: libraries/tbl_properties.inc.php:518 tbl_structure.php:32 -#: tbl_structure.php:154 tbl_structure.php:158 tbl_structure.php:473 -#: tbl_tracking.php:321 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:31 +#: tbl_structure.php:153 tbl_structure.php:157 tbl_structure.php:471 +#: tbl_tracking.php:316 msgid "Unique" msgstr "අනන්‍ය" -#: libraries/Index.class.php:444 tbl_tracking.php:322 +#: libraries/Index.class.php:444 tbl_tracking.php:317 msgid "Packed" msgstr "" -#: libraries/Index.class.php:446 tbl_tracking.php:324 +#: libraries/Index.class.php:446 tbl_tracking.php:319 msgid "Cardinality" msgstr "Cardinality" -#: libraries/Index.class.php:449 tbl_tracking.php:278 tbl_tracking.php:327 +#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322 #, fuzzy msgid "Comment" msgstr "විස්තරය" #: libraries/Index.class.php:465 libraries/common.lib.php:609 -#: libraries/common.lib.php:1198 libraries/display_tbl.lib.php:1116 +#: libraries/common.lib.php:1191 libraries/display_tbl.lib.php:1115 #: libraries/import.lib.php:1119 libraries/import.lib.php:1143 -#: pdf_pages.php:284 setup/frames/index.inc.php:124 +#: pdf_pages.php:283 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:349 tbl_row_action.php:68 msgid "Edit" msgstr "සංස්කරණය කරන්න" @@ -1426,15 +1402,15 @@ msgid "" msgstr "" #: libraries/List_Database.class.php:430 libraries/server_links.inc.php:40 -#: server_databases.php:87 server_privileges.php:1652 +#: server_databases.php:85 server_privileges.php:1656 #: setup/lib/messages.inc.php:107 test/theme.php:92 msgid "Databases" msgstr "දත්තගබඩා" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:259 libraries/import.lib.php:134 pdf_schema.php:31 -#: pdf_schema.php:231 tbl_change.php:1023 tbl_operations.php:212 -#: tbl_relation.php:289 view_operations.php:61 +#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 +#: tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "දෝෂය" @@ -1461,41 +1437,41 @@ msgid_plural "%1$d rows inserted." msgstr[0] "පේළි කිසිවක් තෝරගෙන නැත" msgstr[1] "පේළි කිසිවක් තෝරගෙන නැත" -#: libraries/StorageEngine.class.php:196 +#: libraries/StorageEngine.class.php:194 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:352 +#: libraries/StorageEngine.class.php:354 #, php-format msgid "%s is available on this MySQL server." msgstr "%s is available on this MySQL server." -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:357 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s has been disabled for this MySQL server." -#: libraries/StorageEngine.class.php:359 +#: libraries/StorageEngine.class.php:361 #, 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:1018 +#: libraries/Table.class.php:1017 msgid "Invalid database" msgstr "වලංගු නොවන දත්තගබඩාව" -#: libraries/Table.class.php:1032 tbl_get_field.php:25 +#: libraries/Table.class.php:1031 tbl_get_field.php:25 msgid "Invalid table name" msgstr "වලංගු නොවන වගු නම" -#: libraries/Table.class.php:1047 +#: libraries/Table.class.php:1046 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "%1$s සිට %2$s දක්වා වගුවේ නම් වෙනස් කිරීමේ දෝෂයක් ඇත" -#: libraries/Table.class.php:1131 +#: libraries/Table.class.php:1129 #, php-format msgid "Table %s has been renamed to %s" msgstr "%s වගුව %s බවට නම වෙනස් කරන ලදි" @@ -1513,22 +1489,22 @@ msgstr "No preview available." msgid "take it" msgstr "take it" -#: libraries/Theme_Manager.class.php:114 +#: libraries/Theme_Manager.class.php:109 #, php-format msgid "Default theme %s not found!" msgstr "‍%s සාමාන්‍යයෙන් පවතින තේමාව සොයාගැනීමට නොමැත!" -#: libraries/Theme_Manager.class.php:152 +#: libraries/Theme_Manager.class.php:147 #, php-format msgid "Theme %s not found!" msgstr "Theme %s not found!" -#: libraries/Theme_Manager.class.php:220 +#: 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:296 test/theme.php:160 themes.php:20 +#: libraries/Theme_Manager.class.php:291 test/theme.php:160 themes.php:20 #: themes.php:40 msgid "Theme / Style" msgstr "තේමාව / ශෛලිය" @@ -1641,19 +1617,19 @@ msgstr "" msgid "Authenticating..." msgstr "" -#: libraries/blobstreaming.lib.php:689 +#: libraries/blobstreaming.lib.php:340 msgid "View image" msgstr "" -#: libraries/blobstreaming.lib.php:693 +#: libraries/blobstreaming.lib.php:344 msgid "Play audio" msgstr "" -#: libraries/blobstreaming.lib.php:698 +#: libraries/blobstreaming.lib.php:349 msgid "View video" msgstr "" -#: libraries/blobstreaming.lib.php:702 +#: libraries/blobstreaming.lib.php:353 msgid "Download file" msgstr "" @@ -1708,7 +1684,7 @@ msgstr "සර්වරය" msgid "Invalid authentication method set in configuration:" msgstr "Invalid authentication method set in configuration:" -#: libraries/common.inc.php:909 +#: libraries/common.inc.php:908 #, php-format msgid "You should upgrade to %s %s or later." msgstr "You should upgrade to %s %s or later." @@ -1733,7 +1709,8 @@ msgstr "en" #: libraries/common.lib.php:425 libraries/common.lib.php:427 #: libraries/common.lib.php:429 libraries/common.lib.php:445 #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 -#: libraries/display_export.lib.php:163 libraries/relation.lib.php:84 +#: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 +#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 #: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" @@ -1748,148 +1725,148 @@ msgstr "SQL විමසුම" msgid "MySQL said: " msgstr "MySQL said: " -#: libraries/common.lib.php:1136 +#: libraries/common.lib.php:1129 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1174 setup/lib/messages.inc.php:350 +#: libraries/common.lib.php:1167 setup/lib/messages.inc.php:350 msgid "Explain SQL" msgstr "SQL ය පහදන්න " -#: libraries/common.lib.php:1177 +#: libraries/common.lib.php:1170 msgid "Skip Explain SQL" msgstr "Skip Explain SQL" -#: libraries/common.lib.php:1211 +#: libraries/common.lib.php:1204 msgid "Without PHP Code" msgstr "PHP කේත නොමැතිව" -#: libraries/common.lib.php:1214 setup/lib/messages.inc.php:352 +#: libraries/common.lib.php:1207 setup/lib/messages.inc.php:352 msgid "Create PHP Code" msgstr "PHP කේත සාදන්න" -#: libraries/common.lib.php:1232 server_status.php:451 +#: libraries/common.lib.php:1225 server_status.php:451 #: setup/lib/messages.inc.php:351 msgid "Refresh" msgstr "අලුත් කරන්න" -#: libraries/common.lib.php:1241 +#: libraries/common.lib.php:1234 msgid "Skip Validate SQL" msgstr "Skip Validate SQL" -#: libraries/common.lib.php:1244 setup/lib/messages.inc.php:353 +#: libraries/common.lib.php:1237 setup/lib/messages.inc.php:353 msgid "Validate SQL" msgstr "Validate SQL" -#: libraries/common.lib.php:1283 +#: libraries/common.lib.php:1287 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1285 +#: libraries/common.lib.php:1289 #, fuzzy #| msgid "Engines" msgid "Inline" msgstr "යන්ත්‍රයන්" -#: libraries/common.lib.php:1339 libraries/common.lib.php:1354 +#: libraries/common.lib.php:1343 libraries/common.lib.php:1358 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1358 libraries/tbl_triggers.lib.php:27 +#: libraries/common.lib.php:1362 libraries/tbl_triggers.lib.php:27 #: server_processlist.php:57 msgid "Time" msgstr "වේලාව" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "B" msgstr "B" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "KiB" msgstr "KiB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "MiB" msgstr "MiB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "GiB" msgstr "GiB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "TiB" msgstr "TiB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "PiB" msgstr "PiB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "EiB" msgstr "EiB" #. l10n: Thousands separator -#: libraries/common.lib.php:1424 +#: libraries/common.lib.php:1428 msgid "," msgstr "," #. l10n: Decimal separator -#: libraries/common.lib.php:1426 +#: libraries/common.lib.php:1430 msgid "." msgstr "." #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1603 +#: libraries/common.lib.php:1607 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y at %I:%M %p" -#: libraries/common.lib.php:1909 +#: libraries/common.lib.php:1913 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "දින %s, පැය %s, මිනිත්තු %s සහ තප්පර %s" -#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 -#: libraries/display_tbl.lib.php:289 server_status.php:718 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 +#: libraries/display_tbl.lib.php:288 server_status.php:718 msgid "Begin" msgstr "Begin" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 -#: libraries/display_tbl.lib.php:290 server_binlog.php:154 +#: libraries/common.lib.php:2328 libraries/common.lib.php:2331 +#: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "පෙර" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 -#: libraries/display_tbl.lib.php:352 +#: libraries/common.lib.php:2359 libraries/common.lib.php:2362 +#: libraries/display_tbl.lib.php:351 msgid "End" msgstr "අවසානය‍" -#: libraries/common.lib.php:2429 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr ""%s" දත්තගබඩාව වෙත යන්න ." -#: libraries/common.lib.php:2448 +#: libraries/common.lib.php:2453 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2828 libraries/common.lib.php:2835 -#: libraries/db_links.inc.php:67 libraries/export/sql.php:24 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 +#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 -#: libraries/tbl_links.inc.php:59 querywindow.php:89 test/theme.php:96 +#: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2837 libraries/db_links.inc.php:103 -#: libraries/tbl_links.inc.php:94 libraries/tbl_links.inc.php:116 -#: view_operations.php:88 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: view_operations.php:87 msgid "Operations" msgstr "මෙහෙයුම්" -#: libraries/core.lib.php:282 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1906,38 +1883,38 @@ msgstr "යවන ලද" msgid "Name" msgstr "නම" -#: libraries/db_links.inc.php:44 +#: libraries/db_links.inc.php:43 #, php-format msgid "Database %s has been dropped." msgstr "%s දත්තගබඩාව හලන ලදි." -#: libraries/db_links.inc.php:56 libraries/db_links.inc.php:57 -#: libraries/db_links.inc.php:58 +#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 +#: libraries/db_links.inc.php:57 msgid "Database seems to be empty!" msgstr "" -#: libraries/db_links.inc.php:80 libraries/relation.lib.php:142 -#: libraries/tbl_links.inc.php:68 +#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:85 +#: libraries/db_links.inc.php:84 msgid "Query" msgstr "විමසුම" -#: libraries/db_links.inc.php:90 libraries/relation.lib.php:138 +#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:97 libraries/server_links.inc.php:87 -#: libraries/tbl_links.inc.php:90 pmd_pdf.php:83 pmd_pdf.php:109 +#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "ආනයනය" -#: libraries/db_links.inc.php:110 libraries/server_links.inc.php:65 -#: server_privileges.php:111 server_privileges.php:1714 -#: server_privileges.php:2063 test/theme.php:116 +#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: server_privileges.php:110 server_privileges.php:1718 +#: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" msgstr "වරප්‍රසාද" @@ -1949,14 +1926,14 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1847 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1806 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "සමහර විට ආසන්න වශයෙන්. FAQ 3.11 බලන්න" -#: libraries/db_structure.lib.php:60 server_databases.php:141 -#: tbl_printview.php:334 tbl_structure.php:681 +#: libraries/db_structure.lib.php:60 server_databases.php:139 +#: tbl_printview.php:333 tbl_structure.php:679 msgid "Overhead" msgstr "පිරිවැය" @@ -1973,7 +1950,7 @@ msgstr "සර්වරය ප්‍රතිචාර නොදක්වයි" 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:358 tbl_structure.php:607 +#: libraries/dbi/mysql.dbi.lib.php:358 tbl_structure.php:605 msgid "Details..." msgstr "" @@ -1983,22 +1960,22 @@ msgid "Change password" msgstr "මුරපදය වෙනස් කරන්න" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:807 +#: libraries/replication_gui.lib.php:347 server_privileges.php:806 msgid "No Password" msgstr "මුරපදයක් නැත" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1530 server_synchronize.php:1174 +#: libraries/replication_gui.lib.php:351 server_privileges.php:795 +#: server_privileges.php:799 server_privileges.php:810 +#: server_privileges.php:1534 server_synchronize.php:1173 msgid "Password" msgstr "මුරපදය" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:815 server_privileges.php:818 +#: server_privileges.php:814 server_privileges.php:817 msgid "Re-type" msgstr "නැවත ටයිප් කරන්න" @@ -2021,8 +1998,8 @@ msgstr "නව දත්තගබඩාවක් සාදන්න" msgid "Create" msgstr "සාදන්න" -#: libraries/display_create_database.lib.php:39 server_privileges.php:113 -#: server_privileges.php:1419 server_replication.php:34 +#: libraries/display_create_database.lib.php:39 server_privileges.php:112 +#: server_privileges.php:1423 server_replication.php:33 msgid "No Privileges" msgstr "වරප්‍රසාද නොමැත" @@ -2043,50 +2020,50 @@ msgstr "%s දත්තගබඩාවේ නව වගුවක් සාදන msgid "Number of columns" msgstr "ක්ෂේත්‍ර ගණන" -#: libraries/display_export.lib.php:41 +#: libraries/display_export.lib.php:35 msgid "Could not load export plugins, please check your installation!" msgstr "Could not load export plugins, please check your installation!" -#: libraries/display_export.lib.php:106 +#: libraries/display_export.lib.php:100 #, fuzzy, php-format #| msgid "Dump %s row(s) starting at record # %s" msgid "Dump %s row(s) starting at row # %s" msgstr "Dump %s row(s) starting at record # %s." -#: libraries/display_export.lib.php:114 +#: libraries/display_export.lib.php:108 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:124 setup/lib/messages.inc.php:79 +#: libraries/display_export.lib.php:118 setup/lib/messages.inc.php:79 msgid "Save as file" msgstr "ගොනුවක් ලෙස තෝරන්න" -#: libraries/display_export.lib.php:133 +#: libraries/display_export.lib.php:127 #, php-format msgid "Save on server in %s directory" msgstr "සර්වරයේ %s ඩිරෙක්ටරියේ සේව් කරන්න" -#: libraries/display_export.lib.php:141 setup/lib/messages.inc.php:87 +#: libraries/display_export.lib.php:135 setup/lib/messages.inc.php:87 msgid "Overwrite existing file(s)" msgstr "Overwrite existing file(s)" -#: libraries/display_export.lib.php:147 +#: libraries/display_export.lib.php:141 msgid "File name template" msgstr "ෆයිල් නම් ටෙම්ප්ලේටය" -#: libraries/display_export.lib.php:151 +#: libraries/display_export.lib.php:145 msgid "server name" msgstr "සර්වරයේ නම" -#: libraries/display_export.lib.php:154 +#: libraries/display_export.lib.php:148 msgid "database name" msgstr "දත්තගබඩාවේ නම" -#: libraries/display_export.lib.php:157 +#: libraries/display_export.lib.php:151 msgid "table name" msgstr "වගුවේ නම" -#: libraries/display_export.lib.php:161 +#: libraries/display_export.lib.php:155 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2097,39 +2074,39 @@ msgstr "" "formatting strings. Additionally the following transformations will happen: " "%3$s. Other text will be kept as is." -#: libraries/display_export.lib.php:202 +#: libraries/display_export.lib.php:196 msgid "remember template" msgstr "ටෙම්ප්ලේටය මතක තබා ගන්න" -#: libraries/display_export.lib.php:210 libraries/display_import.lib.php:177 +#: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 #: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 msgid "Character set of the file:" msgstr "ගොනුවේ අක්ෂර කට්ටලය:" -#: libraries/display_export.lib.php:235 setup/lib/messages.inc.php:81 +#: libraries/display_export.lib.php:229 setup/lib/messages.inc.php:81 msgid "Compression" msgstr "Compression" -#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:196 -#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:529 -#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:574 -#: server_privileges.php:1867 server_processlist.php:74 +#: libraries/display_export.lib.php:234 libraries/display_import.lib.php:196 +#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:528 +#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:573 +#: server_privileges.php:1871 server_processlist.php:74 msgid "None" msgstr "කිසිවක් නැත" -#: libraries/display_export.lib.php:247 +#: libraries/display_export.lib.php:241 msgid "\"zipped\"" msgstr "\"සිප්ගත කරන ලද\"" -#: libraries/display_export.lib.php:253 +#: libraries/display_export.lib.php:247 msgid "\"gzipped\"" msgstr "\"gzipp ගත කරන ලදි\"" -#: libraries/display_export.lib.php:259 +#: libraries/display_export.lib.php:253 msgid "\"bzipped\"" msgstr "\"bzipp ගතකරන ලදි\"" -#: libraries/display_export.lib.php:274 libraries/export/sql.php:42 +#: libraries/display_export.lib.php:268 libraries/export/sql.php:42 #: libraries/import/sql.php:31 msgid "SQL compatibility mode" msgstr "SQL compatibility mode" @@ -2164,12 +2141,12 @@ msgid "File uploads are not allowed on this server." msgstr "File uploads are not allowed on this server." #: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 -#: tbl_change.php:1024 +#: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "අප්ලෝඩ් කිරීම් සඳහා සැකසූ ඩිරෙක්ටරිය වෙත පිවිසිය නොහැක" #: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 -#: tbl_change.php:1027 +#: tbl_change.php:925 msgid "web server upload directory" msgstr "අන්තර්ජාල සර්වරයේ අප්ලෝඩ් ඩිරෙක්ටරිය" @@ -2254,43 +2231,43 @@ msgstr "පිටුවේ ප්‍රමාණය" msgid "Language" msgstr "භාෂාව" -#: libraries/display_tbl.lib.php:303 +#: libraries/display_tbl.lib.php:302 #, php-format msgid "%d is not valid row number." msgstr "%d is not valid row number." -#: libraries/display_tbl.lib.php:309 +#: libraries/display_tbl.lib.php:308 #, fuzzy #| msgid "row(s) starting from record #" msgid "row(s) starting from row #" msgstr "row(s) starting from record #" -#: libraries/display_tbl.lib.php:315 +#: libraries/display_tbl.lib.php:314 msgid "horizontal" msgstr "horizontal" -#: libraries/display_tbl.lib.php:316 +#: libraries/display_tbl.lib.php:315 msgid "horizontal (rotated headers)" msgstr "horizontal (rotated headers)" -#: libraries/display_tbl.lib.php:317 +#: libraries/display_tbl.lib.php:316 msgid "vertical" msgstr "vertical" -#: libraries/display_tbl.lib.php:323 +#: libraries/display_tbl.lib.php:322 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "in %s mode and repeat headers after %s cells" -#: libraries/display_tbl.lib.php:345 +#: libraries/display_tbl.lib.php:344 msgid "This operation could take a long time. Proceed anyway?" msgstr "This operation could take a long time. Proceed anyway?" -#: libraries/display_tbl.lib.php:511 +#: libraries/display_tbl.lib.php:510 msgid "Sort by key" msgstr "යතුර අනුව තෝරන්න" -#: libraries/display_tbl.lib.php:554 libraries/export/codegen.php:38 +#: libraries/display_tbl.lib.php:553 libraries/export/codegen.php:38 #: libraries/export/csv.php:29 libraries/export/excel.php:34 #: libraries/export/htmlword.php:28 libraries/export/latex.php:32 #: libraries/export/mediawiki.php:21 libraries/export/ods.php:26 @@ -2300,101 +2277,101 @@ msgstr "යතුර අනුව තෝරන්න" #: libraries/export/xlsx.php:26 libraries/export/xml.php:23 #: libraries/export/yaml.php:27 libraries/import.lib.php:1114 #: libraries/import.lib.php:1136 libraries/import/csv.php:31 -#: libraries/import/docsql.php:33 libraries/import/ldi.php:46 +#: libraries/import/docsql.php:32 libraries/import/ldi.php:46 #: libraries/import/ods.php:30 libraries/import/sql.php:19 #: libraries/import/xls.php:25 libraries/import/xlsx.php:25 -#: libraries/import/xml.php:25 tbl_select.php:264 tbl_structure.php:752 +#: libraries/import/xml.php:25 tbl_select.php:263 tbl_structure.php:750 #, fuzzy msgid "Options" msgstr "මෙහෙයුම්" -#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:569 +#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:568 msgid "Partial Texts" msgstr "Partial Texts" -#: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:573 +#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:572 msgid "Full Texts" msgstr "සම්පූර්ණ පාඨ" -#: libraries/display_tbl.lib.php:586 +#: libraries/display_tbl.lib.php:585 #, fuzzy msgid "Relational key" msgstr "Relational schema" -#: libraries/display_tbl.lib.php:587 +#: libraries/display_tbl.lib.php:586 #, fuzzy #| msgid "Relational schema" msgid "Relational display column" msgstr "Relational schema" -#: libraries/display_tbl.lib.php:594 +#: libraries/display_tbl.lib.php:593 msgid "Show binary contents" msgstr "" -#: libraries/display_tbl.lib.php:596 +#: libraries/display_tbl.lib.php:595 msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:598 +#: libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "" -#: libraries/display_tbl.lib.php:606 pmd_general.php:140 tbl_change.php:312 -#: tbl_change.php:318 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:307 +#: tbl_change.php:313 msgid "Hide" msgstr "" -#: libraries/display_tbl.lib.php:606 libraries/relation.lib.php:122 -#: libraries/tbl_properties.inc.php:143 transformation_overview.php:46 +#: libraries/display_tbl.lib.php:605 libraries/relation.lib.php:117 +#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46 msgid "Browser transformation" msgstr "Browser transformation" -#: libraries/display_tbl.lib.php:1125 libraries/display_tbl.lib.php:1129 -#: libraries/display_tbl.lib.php:1131 +#: libraries/display_tbl.lib.php:1124 libraries/display_tbl.lib.php:1128 +#: libraries/display_tbl.lib.php:1130 msgid "Execute bookmarked query" msgstr "Execute bookmarked query" -#: libraries/display_tbl.lib.php:1144 libraries/display_tbl.lib.php:1156 +#: libraries/display_tbl.lib.php:1143 libraries/display_tbl.lib.php:1155 msgid "The row has been deleted" msgstr "පෙළ ඉවත් කරන ලදි" -#: libraries/display_tbl.lib.php:1183 libraries/display_tbl.lib.php:2055 +#: libraries/display_tbl.lib.php:1182 libraries/display_tbl.lib.php:2014 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "Kill" -#: libraries/display_tbl.lib.php:1933 +#: libraries/display_tbl.lib.php:1892 msgid "in query" msgstr "in query" -#: libraries/display_tbl.lib.php:1951 +#: libraries/display_tbl.lib.php:1910 msgid "Showing rows" msgstr "පේළි පෙන්වන්න" -#: libraries/display_tbl.lib.php:1961 +#: libraries/display_tbl.lib.php:1920 msgid "total" msgstr "මුළු එකතුව" -#: libraries/display_tbl.lib.php:1969 sql.php:523 +#: libraries/display_tbl.lib.php:1928 sql.php:522 #, php-format msgid "Query took %01.4f sec" msgstr "Query took %01.4f sec" -#: libraries/display_tbl.lib.php:2088 libraries/mult_submits.inc.php:112 -#: querywindow.php:115 querywindow.php:119 querywindow.php:122 -#: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:469 +#: libraries/display_tbl.lib.php:2047 libraries/mult_submits.inc.php:112 +#: querywindow.php:114 querywindow.php:118 querywindow.php:121 +#: tbl_structure.php:23 tbl_structure.php:148 tbl_structure.php:467 msgid "Change" msgstr "වෙනස් කරන්න" -#: libraries/display_tbl.lib.php:2158 +#: libraries/display_tbl.lib.php:2117 msgid "Query results operations" msgstr "Query results operations" -#: libraries/display_tbl.lib.php:2186 +#: libraries/display_tbl.lib.php:2145 msgid "Print view (with full texts)" msgstr "Print view (with full texts)" -#: libraries/display_tbl.lib.php:2359 +#: libraries/display_tbl.lib.php:2318 msgid "Link not found" msgstr "Link not found" @@ -2450,9 +2427,9 @@ msgstr "InnoDB Status" msgid "Buffer Pool Usage" msgstr "Buffer Pool Usage" -#: libraries/engines/innodb.lib.php:168 server_databases.php:136 -#: server_databases.php:304 server_status.php:524 server_status.php:585 -#: server_status.php:606 tbl_printview.php:349 tbl_structure.php:695 +#: libraries/engines/innodb.lib.php:168 server_databases.php:134 +#: server_databases.php:302 server_status.php:524 server_status.php:585 +#: server_status.php:606 tbl_printview.php:348 tbl_structure.php:693 msgid "Total" msgstr "මුළු එකතුව" @@ -2588,6 +2565,78 @@ msgstr "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." +#: libraries/engines/pbms.lib.php:31 +msgid "Garbage Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:32 +msgid "The percentage of garbage in a repository file before it is compacted." +msgstr "" + +#: libraries/engines/pbms.lib.php:36 libraries/replication_gui.lib.php:69 +#: server_synchronize.php:1161 +#, fuzzy +msgid "Port" +msgstr "‍තෝරනවා" + +#: libraries/engines/pbms.lib.php:37 +msgid "" +"The port for the PBMS stream-based communications. Setting this value to 0 " +"will disable HTTP communication with the daemon." +msgstr "" + +#: libraries/engines/pbms.lib.php:41 +msgid "Repository Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:42 +msgid "" +"The maximum size of a BLOB repository file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:46 +msgid "Temp Blob Timeout" +msgstr "" + +#: libraries/engines/pbms.lib.php:47 +msgid "" +"The timeout, in seconds, for temporary BLOBs. Uploaded BLOB data is removed " +"after this time, unless they are referenced by a record in the database." +msgstr "" + +#: libraries/engines/pbms.lib.php:51 +msgid "Temp Log Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:52 +msgid "" +"The maximum size of a temporary BLOB log file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:56 +msgid "Max Keep Alive" +msgstr "" + +#: libraries/engines/pbms.lib.php:57 +msgid "" +"The timeout for inactive connection with the keep-alive flag set. After this " +"time the connection will be closed. The time-out is in milliseconds (1/1000)." +msgstr "" + +#: libraries/engines/pbms.lib.php:61 +msgid "Metadata Headers" +msgstr "" + +#: libraries/engines/pbms.lib.php:62 +msgid "" +"A \":\" delimited list of metadata headers to be used to initialize the " +"pbms_metadata_header table when a database is created." +msgstr "" + #: libraries/engines/pbxt.lib.php:22 msgid "Index cache size" msgstr "" @@ -2713,7 +2762,7 @@ msgid "" msgstr "" #: libraries/export/codegen.php:36 setup/lib/messages.inc.php:85 -#: tbl_printview.php:374 tbl_structure.php:736 +#: tbl_printview.php:373 tbl_structure.php:734 msgid "Format" msgstr "ආකෘතිය" @@ -2784,9 +2833,9 @@ msgstr "මෛක්‍රොසොෆ්ට් වර්ඩ් 2000" #: libraries/export/htmlword.php:23 libraries/export/latex.php:59 #: libraries/export/latex.php:205 libraries/export/odt.php:47 #: libraries/export/sql.php:105 libraries/export/sql.php:865 -#: libraries/export/texytext.php:27 server_databases.php:126 -#: server_privileges.php:576 server_replication.php:315 tbl_printview.php:315 -#: tbl_structure.php:664 +#: libraries/export/texytext.php:27 server_databases.php:124 +#: server_privileges.php:575 server_replication.php:314 tbl_printview.php:314 +#: tbl_structure.php:662 msgid "Data" msgstr "දත්ත" @@ -2801,7 +2850,6 @@ msgid "Table structure for table" msgstr "වගුවක් සඳහා වගු සැකිල්ල" #: libraries/export/latex.php:13 -#| msgid "Content of table __TABLE__" msgid "Content of table @TABLE@" msgstr "Content of table @TABLE@" @@ -2810,7 +2858,6 @@ msgid "(continued)" msgstr "(ඉදිරියට)" #: libraries/export/latex.php:15 -#| msgid "Structure of table __TABLE__" msgid "Structure of table @TABLE@" msgstr "Structure of table @TABLE@" @@ -2835,13 +2882,13 @@ msgid "Label key" msgstr "ලේබල යතුර" #: libraries/export/latex.php:46 libraries/export/odt.php:34 -#: libraries/export/sql.php:90 tbl_relation.php:398 +#: libraries/export/sql.php:90 tbl_relation.php:396 msgid "Relations" msgstr "Relations" #: libraries/export/latex.php:52 libraries/export/odt.php:40 #: libraries/export/odt.php:317 libraries/export/sql.php:94 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "MIME වර්ගය" @@ -2849,10 +2896,10 @@ msgstr "MIME වර්ගය" #: libraries/export/xml.php:101 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1529 server_privileges.php:2061 -#: server_processlist.php:54 server_synchronize.php:1158 +#: libraries/replication_gui.lib.php:331 server_privileges.php:730 +#: server_privileges.php:733 server_privileges.php:789 +#: server_privileges.php:1533 server_privileges.php:2065 +#: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "දායකයා" @@ -3047,8 +3094,8 @@ msgstr "අපනයන වර්ගය" msgid "Export contents" msgstr "අපනයන වර්ගය" -#: libraries/footer.inc.php:182 libraries/footer.inc.php:193 -#: libraries/footer.inc.php:196 +#: libraries/footer.inc.php:180 libraries/footer.inc.php:191 +#: libraries/footer.inc.php:194 msgid "Open new phpMyAdmin window" msgstr "Open new phpMyAdmin window" @@ -3065,7 +3112,7 @@ msgstr "SQL ප්‍රතිළුල" msgid "Generated by" msgstr "උත්පාදනය කරන ලද්දේ" -#: libraries/import.lib.php:151 sql.php:519 tbl_change.php:180 +#: libraries/import.lib.php:151 sql.php:518 tbl_change.php:175 #: 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)." @@ -3124,7 +3171,7 @@ msgstr "Ignore duplicate rows" msgid "Column names in first row" msgstr "" -#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:501 +#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:500 #: view_create.php:147 msgid "Column names" msgstr "තීර නම්" @@ -3151,12 +3198,12 @@ msgstr "Invalid format of CSV input on line %d." msgid "Invalid column count in CSV input on line %d." msgstr "Invalid field count in CSV input on line %d." -#: libraries/import/docsql.php:28 +#: libraries/import/docsql.php:27 msgid "DocSQL" msgstr "" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 -#: server_synchronize.php:427 server_synchronize.php:870 +#: libraries/import/docsql.php:30 libraries/tbl_properties.inc.php:616 +#: server_synchronize.php:426 server_synchronize.php:869 #, fuzzy msgid "Table name" msgstr "වගුවේ නම" @@ -3214,26 +3261,26 @@ msgstr "කිසිවක් නැත" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:512 -#: tbl_structure.php:28 tbl_structure.php:152 tbl_structure.php:156 -#: tbl_structure.php:472 +#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:511 +#: tbl_structure.php:27 tbl_structure.php:151 tbl_structure.php:155 +#: tbl_structure.php:470 msgid "Primary" msgstr "මූලික" #: libraries/mult_submits.inc.php:97 libraries/tbl_properties.inc.php:115 -#: libraries/tbl_properties.inc.php:524 tbl_printview.php:324 -#: tbl_structure.php:30 tbl_structure.php:153 tbl_structure.php:157 -#: tbl_structure.php:474 tbl_structure.php:672 +#: libraries/tbl_properties.inc.php:523 tbl_printview.php:323 +#: tbl_structure.php:29 tbl_structure.php:152 tbl_structure.php:156 +#: tbl_structure.php:472 tbl_structure.php:670 msgid "Index" msgstr "සූචිය" -#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:530 -#: tbl_structure.php:34 tbl_structure.php:155 tbl_structure.php:159 -#: tbl_structure.php:477 +#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:529 +#: tbl_structure.php:33 tbl_structure.php:154 tbl_structure.php:158 +#: tbl_structure.php:475 msgid "Fulltext" msgstr "සම්පූර්ණ පාඨය" -#: libraries/mult_submits.inc.php:434 tbl_replace.php:330 +#: libraries/mult_submits.inc.php:433 tbl_replace.php:330 msgid "No change" msgstr "වෙනස්කම් නැත" @@ -3241,190 +3288,190 @@ msgstr "වෙනස්කම් නැත" msgid "Charset" msgstr "අක්ෂර කට්ටලය" -#: libraries/mysql_charsets.lib.php:210 libraries/mysql_charsets.lib.php:411 -#: tbl_change.php:515 +#: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 +#: tbl_change.php:510 msgid "Binary" msgstr "ද්වීමය" -#: libraries/mysql_charsets.lib.php:222 +#: libraries/mysql_charsets.lib.php:214 msgid "Bulgarian" msgstr "බල්ගේරියානු" -#: libraries/mysql_charsets.lib.php:226 libraries/mysql_charsets.lib.php:351 +#: libraries/mysql_charsets.lib.php:218 libraries/mysql_charsets.lib.php:343 msgid "Simplified Chinese" msgstr "සරලකරන ලද චීන" -#: libraries/mysql_charsets.lib.php:228 libraries/mysql_charsets.lib.php:371 +#: libraries/mysql_charsets.lib.php:220 libraries/mysql_charsets.lib.php:363 msgid "Traditional Chinese" msgstr "සාම්ප්‍රධායික චීන" -#: libraries/mysql_charsets.lib.php:232 libraries/mysql_charsets.lib.php:418 +#: libraries/mysql_charsets.lib.php:224 libraries/mysql_charsets.lib.php:410 msgid "case-insensitive" msgstr "පුවරු සංවේදී නොවන" -#: libraries/mysql_charsets.lib.php:235 libraries/mysql_charsets.lib.php:420 +#: libraries/mysql_charsets.lib.php:227 libraries/mysql_charsets.lib.php:412 msgid "case-sensitive" msgstr "පුවරු සංවේදී" -#: libraries/mysql_charsets.lib.php:238 +#: libraries/mysql_charsets.lib.php:230 msgid "Croatian" msgstr "ක්‍රොයේශියානු" -#: libraries/mysql_charsets.lib.php:241 +#: libraries/mysql_charsets.lib.php:233 msgid "Czech" msgstr "චෙකොස්ලෝවැකියානු" -#: libraries/mysql_charsets.lib.php:244 +#: libraries/mysql_charsets.lib.php:236 msgid "Danish" msgstr "ඩෙන්මාර්කියානු" -#: libraries/mysql_charsets.lib.php:247 +#: libraries/mysql_charsets.lib.php:239 msgid "English" msgstr "ඉංග්‍රීසි" -#: libraries/mysql_charsets.lib.php:250 +#: libraries/mysql_charsets.lib.php:242 msgid "Esperanto" msgstr "Esperanto" -#: libraries/mysql_charsets.lib.php:253 +#: libraries/mysql_charsets.lib.php:245 msgid "Estonian" msgstr "එස්තෝනියානු" -#: libraries/mysql_charsets.lib.php:256 libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:248 libraries/mysql_charsets.lib.php:251 msgid "German" msgstr "ජර්මානු" -#: libraries/mysql_charsets.lib.php:256 +#: libraries/mysql_charsets.lib.php:248 msgid "dictionary" msgstr "කෝෂය" -#: libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:251 msgid "phone book" msgstr "දුරකථන පොත" -#: libraries/mysql_charsets.lib.php:262 +#: libraries/mysql_charsets.lib.php:254 msgid "Hungarian" msgstr "හංගේරියානු" -#: libraries/mysql_charsets.lib.php:265 +#: libraries/mysql_charsets.lib.php:257 msgid "Icelandic" msgstr "අයිස්ලන්තියානු" -#: libraries/mysql_charsets.lib.php:268 libraries/mysql_charsets.lib.php:358 +#: libraries/mysql_charsets.lib.php:260 libraries/mysql_charsets.lib.php:350 msgid "Japanese" msgstr "ජපන්" -#: libraries/mysql_charsets.lib.php:271 +#: libraries/mysql_charsets.lib.php:263 msgid "Latvian" msgstr "ලැට්වියානු" -#: libraries/mysql_charsets.lib.php:274 +#: libraries/mysql_charsets.lib.php:266 msgid "Lithuanian" msgstr "ලිතුවේනියානු" -#: libraries/mysql_charsets.lib.php:277 libraries/mysql_charsets.lib.php:380 +#: libraries/mysql_charsets.lib.php:269 libraries/mysql_charsets.lib.php:372 msgid "Korean" msgstr "කොරියානු" -#: libraries/mysql_charsets.lib.php:280 +#: libraries/mysql_charsets.lib.php:272 msgid "Persian" msgstr "පර්සියානු" -#: libraries/mysql_charsets.lib.php:283 +#: libraries/mysql_charsets.lib.php:275 msgid "Polish" msgstr "පෝලන්ත" -#: libraries/mysql_charsets.lib.php:286 libraries/mysql_charsets.lib.php:334 +#: libraries/mysql_charsets.lib.php:278 libraries/mysql_charsets.lib.php:326 msgid "West European" msgstr "බටහිර යුරෝපියානු" -#: libraries/mysql_charsets.lib.php:289 +#: libraries/mysql_charsets.lib.php:281 msgid "Romanian" msgstr "රුමේනියානු" -#: libraries/mysql_charsets.lib.php:292 +#: libraries/mysql_charsets.lib.php:284 msgid "Slovak" msgstr "ස්ලෝවැකි" -#: libraries/mysql_charsets.lib.php:295 +#: libraries/mysql_charsets.lib.php:287 msgid "Slovenian" msgstr "ස්ලෝවේනියානු" -#: libraries/mysql_charsets.lib.php:298 +#: libraries/mysql_charsets.lib.php:290 msgid "Spanish" msgstr "ස්පාඤ්ඤ" -#: libraries/mysql_charsets.lib.php:301 +#: libraries/mysql_charsets.lib.php:293 msgid "Traditional Spanish" msgstr "සාම්ප්‍රධායික ස්පාඤ්ඤ" -#: libraries/mysql_charsets.lib.php:304 libraries/mysql_charsets.lib.php:401 +#: libraries/mysql_charsets.lib.php:296 libraries/mysql_charsets.lib.php:393 msgid "Swedish" msgstr "ස්වීඩීනියානු" -#: libraries/mysql_charsets.lib.php:307 libraries/mysql_charsets.lib.php:404 +#: libraries/mysql_charsets.lib.php:299 libraries/mysql_charsets.lib.php:396 msgid "Thai" msgstr "තායි" -#: libraries/mysql_charsets.lib.php:310 libraries/mysql_charsets.lib.php:398 +#: libraries/mysql_charsets.lib.php:302 libraries/mysql_charsets.lib.php:390 msgid "Turkish" msgstr "තුර්කියානු" -#: libraries/mysql_charsets.lib.php:313 libraries/mysql_charsets.lib.php:395 +#: libraries/mysql_charsets.lib.php:305 libraries/mysql_charsets.lib.php:387 msgid "Ukrainian" msgstr "යුක්රේනියානු" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 msgid "Unicode" msgstr "යුනිකෝඩ්" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 -#: libraries/mysql_charsets.lib.php:334 libraries/mysql_charsets.lib.php:341 -#: libraries/mysql_charsets.lib.php:363 libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 +#: libraries/mysql_charsets.lib.php:326 libraries/mysql_charsets.lib.php:333 +#: libraries/mysql_charsets.lib.php:355 libraries/mysql_charsets.lib.php:366 msgid "multilingual" msgstr "multilingual" -#: libraries/mysql_charsets.lib.php:341 +#: libraries/mysql_charsets.lib.php:333 msgid "Central European" msgstr "මධ්‍යම යුරෝපියානු" -#: libraries/mysql_charsets.lib.php:346 +#: libraries/mysql_charsets.lib.php:338 msgid "Russian" msgstr "රුසියානු" -#: libraries/mysql_charsets.lib.php:363 +#: libraries/mysql_charsets.lib.php:355 msgid "Baltic" msgstr "බෝල්ටික" -#: libraries/mysql_charsets.lib.php:368 +#: libraries/mysql_charsets.lib.php:360 msgid "Armenian" msgstr "ඇමෙරිකානු" -#: libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:366 msgid "Cyrillic" msgstr "සිරිලික්" -#: libraries/mysql_charsets.lib.php:377 +#: libraries/mysql_charsets.lib.php:369 msgid "Arabic" msgstr "අරාබියානු" -#: libraries/mysql_charsets.lib.php:383 +#: libraries/mysql_charsets.lib.php:375 msgid "Hebrew" msgstr "හීබෲ" -#: libraries/mysql_charsets.lib.php:386 +#: libraries/mysql_charsets.lib.php:378 msgid "Georgian" msgstr "ජෝජියානු‍" -#: libraries/mysql_charsets.lib.php:389 +#: libraries/mysql_charsets.lib.php:381 msgid "Greek" msgstr "ග්‍රීක්" -#: libraries/mysql_charsets.lib.php:392 +#: libraries/mysql_charsets.lib.php:384 msgid "Czech-Slovak" msgstr "චෙකොස්ලෝවැකියානු-ස්ලෝවැකියානු" -#: libraries/mysql_charsets.lib.php:407 libraries/mysql_charsets.lib.php:414 +#: libraries/mysql_charsets.lib.php:399 libraries/mysql_charsets.lib.php:406 msgid "unknown" msgstr "නොදන්නා" @@ -3450,68 +3497,68 @@ msgstr "Query window" msgid "This format has no options" msgstr "මෙම ආකෘතියේ විකල්ප කිසිවක් නැත" -#: libraries/relation.lib.php:82 +#: libraries/relation.lib.php:77 msgid "not OK" msgstr "OK නැත" -#: libraries/relation.lib.php:86 pmd_general.php:339 +#: libraries/relation.lib.php:81 pmd_general.php:339 msgid "OK" msgstr "OK" -#: libraries/relation.lib.php:87 +#: libraries/relation.lib.php:82 msgid "Enabled" msgstr "සක්‍රිය කරන් ලද" -#: libraries/relation.lib.php:110 +#: libraries/relation.lib.php:105 msgid "Display Features" msgstr "දර්ශන ලක්ෂණ" -#: libraries/relation.lib.php:116 +#: libraries/relation.lib.php:111 msgid "Creation of PDFs" msgstr "PDF සෑදීම" -#: libraries/relation.lib.php:120 +#: libraries/relation.lib.php:115 msgid "Displaying Column Comments" msgstr "තීර විස්තර පෙන්වීම" -#: libraries/relation.lib.php:125 +#: libraries/relation.lib.php:120 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "Please see the documentation on how to update your column_comments table" -#: libraries/relation.lib.php:130 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 msgid "Bookmarked SQL query" msgstr "පොත් සලකුණු කරන ලද SQL විමසුම" -#: libraries/relation.lib.php:134 querywindow.php:99 querywindow.php:207 +#: libraries/relation.lib.php:129 querywindow.php:98 querywindow.php:205 msgid "SQL history" msgstr "SQL ඉතිහාසය" -#: libraries/relation.lib.php:146 +#: libraries/relation.lib.php:141 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:148 +#: libraries/relation.lib.php:143 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" -#: libraries/relation.lib.php:149 +#: libraries/relation.lib.php:144 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:150 +#: libraries/relation.lib.php:145 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:151 +#: libraries/relation.lib.php:146 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1158 +#: libraries/relation.lib.php:1153 msgid "no description" msgstr "no description" @@ -3519,7 +3566,7 @@ msgstr "no description" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:53 server_replication.php:346 +#: libraries/replication_gui.lib.php:53 server_replication.php:345 msgid "Change or reconfigure master server" msgstr "" @@ -3531,17 +3578,12 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:711 -#: server_privileges.php:714 server_privileges.php:721 -#: server_synchronize.php:1170 +#: libraries/replication_gui.lib.php:261 server_privileges.php:710 +#: server_privileges.php:713 server_privileges.php:720 +#: server_synchronize.php:1169 msgid "User name" msgstr "භාවිත නාමය" -#: libraries/replication_gui.lib.php:69 server_synchronize.php:1162 -#, fuzzy -msgid "Port" -msgstr "‍තෝරනවා" - #: libraries/replication_gui.lib.php:105 #, fuzzy msgid "Master status" @@ -3558,8 +3600,8 @@ msgid "Variable" msgstr "Variable" #: libraries/replication_gui.lib.php:117 server_status.php:737 -#: tbl_change.php:322 tbl_printview.php:368 tbl_select.php:137 -#: tbl_structure.php:728 +#: tbl_change.php:317 tbl_printview.php:367 tbl_select.php:136 +#: tbl_structure.php:726 msgid "Value" msgstr "Value" @@ -3573,38 +3615,38 @@ msgid "" "this list." msgstr "" -#: libraries/replication_gui.lib.php:242 server_replication.php:193 +#: libraries/replication_gui.lib.php:242 server_replication.php:192 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:256 server_privileges.php:716 +#: libraries/replication_gui.lib.php:256 server_privileges.php:715 msgid "Any user" msgstr "ඕනෑම භාවිතා කරන්නෙක්" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1920 server_privileges.php:1950 +#: libraries/replication_gui.lib.php:348 server_privileges.php:716 +#: server_privileges.php:783 server_privileges.php:807 +#: server_privileges.php:1924 server_privileges.php:1954 msgid "Use text field" msgstr "Use text field" -#: libraries/replication_gui.lib.php:304 server_privileges.php:764 +#: libraries/replication_gui.lib.php:304 server_privileges.php:763 msgid "Any host" msgstr "ඕනෑම දායකයෙක්" -#: libraries/replication_gui.lib.php:308 server_privileges.php:768 +#: libraries/replication_gui.lib.php:308 server_privileges.php:767 msgid "Local" msgstr "ස්වදේශී" -#: libraries/replication_gui.lib.php:314 server_privileges.php:773 +#: libraries/replication_gui.lib.php:314 server_privileges.php:772 msgid "This Host" msgstr "this host" -#: libraries/replication_gui.lib.php:320 server_privileges.php:779 +#: libraries/replication_gui.lib.php:320 server_privileges.php:778 msgid "Use Host Table" msgstr "දායක වගුව භාවිතා කරන්න" -#: libraries/replication_gui.lib.php:333 server_privileges.php:792 +#: libraries/replication_gui.lib.php:333 server_privileges.php:791 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3630,8 +3672,8 @@ msgstr "%1$s නොදන්නා භාෂාවකි." msgid "Servers" msgstr "සර්වරයන්" -#: libraries/server_links.inc.php:52 server_engines.php:111 -#: server_engines.php:115 server_status.php:414 test/theme.php:104 +#: libraries/server_links.inc.php:52 server_engines.php:125 +#: server_engines.php:129 server_status.php:414 test/theme.php:104 msgid "Variables" msgstr "විචල්‍යනයන්" @@ -3652,12 +3694,12 @@ msgstr "ද්වීමය ලොගය" msgid "Processes" msgstr "ක්‍රියාවලිය" -#: libraries/server_links.inc.php:91 server_synchronize.php:1091 -#: server_synchronize.php:1099 +#: libraries/server_links.inc.php:91 server_synchronize.php:1090 +#: server_synchronize.php:1098 msgid "Synchronize" msgstr "" -#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1109 +#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1108 #, fuzzy msgid "Source database" msgstr "දත්තගබඩාවේ සොයන්න" @@ -3676,7 +3718,7 @@ msgstr "" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1111 +#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1110 #, fuzzy msgid "Target database" msgstr "දත්තගබඩාවේ සොයන්න" @@ -3697,11 +3739,11 @@ msgstr "Run SQL query/queries on database %s" msgid "Columns" msgstr "තීර නම්" -#: libraries/sql_query_form.lib.php:342 sql.php:664 sql.php:665 sql.php:682 +#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "මෙම SQL විමසුම පොත් සලකුණුගත කරන්න" -#: libraries/sql_query_form.lib.php:349 sql.php:676 +#: libraries/sql_query_form.lib.php:349 sql.php:669 msgid "Let every user access this bookmark" msgstr "සියලු භාවිතා කරන්නනට මෙම පොත් සලකුණට පිවිසීමට ඉඩ දෙන්න" @@ -3796,12 +3838,12 @@ 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/tbl_links.inc.php:106 libraries/tbl_links.inc.php:139 -#: libraries/tbl_links.inc.php:140 +#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 +#: libraries/tbl_links.inc.php:139 msgid "Table seems to be empty!" msgstr "" -#: libraries/tbl_links.inc.php:148 +#: libraries/tbl_links.inc.php:147 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" @@ -3836,12 +3878,12 @@ msgstr "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" -#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1263 -#: pdf_schema.php:1284 tbl_printview.php:142 tbl_structure.php:179 +#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1262 +#: pdf_schema.php:1283 tbl_printview.php:141 tbl_structure.php:178 msgid "Attributes" msgstr "ගුණාංග" -#: libraries/tbl_properties.inc.php:136 +#: libraries/tbl_properties.inc.php:135 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -3850,11 +3892,11 @@ msgstr "" "For a list of available transformation options and their MIME type " "transformations, click on %stransformation descriptions%s" -#: libraries/tbl_properties.inc.php:144 +#: libraries/tbl_properties.inc.php:143 msgid "Transformation options" msgstr "Transformation options" -#: libraries/tbl_properties.inc.php:145 +#: libraries/tbl_properties.inc.php:144 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
                            If you ever need to put a backslash (\"\\\") or a single " @@ -3866,18 +3908,18 @@ msgstr "" "quote (\"'\") amongst those values, precede it with a backslash (for example " "'\\\\xyz' or 'a\\'b')." -#: libraries/tbl_properties.inc.php:392 +#: libraries/tbl_properties.inc.php:391 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "කිසිවක් නැත" -#: libraries/tbl_properties.inc.php:393 +#: libraries/tbl_properties.inc.php:392 msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:579 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:578 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
                            Please ask the " @@ -3886,29 +3928,29 @@ msgstr "" "No description is available for this transformation.
                            Please ask the " "author what %s does." -#: libraries/tbl_properties.inc.php:725 server_engines.php:57 -#: tbl_operations.php:354 +#: libraries/tbl_properties.inc.php:724 server_engines.php:56 +#: tbl_operations.php:352 msgid "Storage Engine" msgstr "ගබඩා යන්ත්‍ර‍" -#: libraries/tbl_properties.inc.php:754 +#: libraries/tbl_properties.inc.php:753 msgid "PARTITION definition" msgstr "" -#: libraries/tbl_properties.inc.php:775 pdf_pages.php:502 +#: libraries/tbl_properties.inc.php:774 pdf_pages.php:501 #: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214 -#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1124 tbl_indexes.php:247 -#: tbl_relation.php:565 +#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1022 tbl_indexes.php:246 +#: tbl_relation.php:563 msgid "Save" msgstr "සේව් කරන්න" -#: libraries/tbl_properties.inc.php:779 tbl_structure.php:541 +#: libraries/tbl_properties.inc.php:778 tbl_structure.php:539 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "%s ක්ෂේත්‍ර(යක්) එක් කරන්න" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:535 +#: libraries/tbl_properties.inc.php:782 tbl_structure.php:533 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -4098,8 +4140,8 @@ msgstr "" msgid "Custom color" msgstr "" -#: main.php:162 pdf_pages.php:362 setup/lib/FormDisplay.tpl.php:216 -#: tbl_change.php:1173 +#: main.php:162 pdf_pages.php:361 setup/lib/FormDisplay.tpl.php:216 +#: tbl_change.php:1071 msgid "Reset" msgstr "ප්‍රතිසකසන්න" @@ -4107,8 +4149,8 @@ msgstr "ප්‍රතිසකසන්න" msgid "Protocol version" msgstr "ප්‍රෝටකෝල සංස්කරණය" -#: main.php:188 server_privileges.php:1381 server_privileges.php:1528 -#: server_privileges.php:1642 server_privileges.php:2060 +#: main.php:188 server_privileges.php:1385 server_privileges.php:1532 +#: server_privileges.php:1646 server_privileges.php:2064 #: server_processlist.php:53 msgid "User" msgstr "භාවිතා කරන්නා" @@ -4194,21 +4236,30 @@ msgid "" "has been configured." msgstr "" -#: main.php:330 +#: main.php:314 +#, php-format +msgid "" +"The additional features for working with linked tables have been " +"deactivated. To find out why click %shere%s." +msgstr "" +"The additional features for working with linked tables have been " +"deactivated. To find out why click %shere%s." + +#: main.php:329 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:345 +#: main.php:344 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: main.php:357 +#: main.php:356 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -4219,69 +4270,69 @@ msgstr "" msgid "Reload navigation frame" msgstr "" -#: navigation.php:204 server_databases.php:370 server_synchronize.php:1190 +#: navigation.php:203 server_databases.php:368 server_synchronize.php:1189 msgid "No databases" msgstr "දත්තගබඩා නොමැත" -#: navigation.php:298 +#: navigation.php:297 #, fuzzy msgid "Filter" msgstr "ක්ෂේත්‍ර" -#: navigation.php:299 setup/frames/index.inc.php:218 +#: navigation.php:298 setup/frames/index.inc.php:218 #: setup/lib/messages.inc.php:41 #, fuzzy msgid "Clear" msgstr "දින දර්ශනය" -#: navigation.php:330 navigation.php:331 +#: navigation.php:329 navigation.php:330 #, fuzzy msgctxt "short form" msgid "Create table" msgstr "නව පිටුවක් සාදන්න" -#: navigation.php:333 navigation.php:495 +#: navigation.php:332 navigation.php:494 msgid "Please select a database" msgstr "කරුණාකර දත්තගබඩාවක් තෝරන්න" -#: pdf_pages.php:40 pdf_pages.php:46 pdf_pages.php:52 pdf_pages.php:57 +#: pdf_pages.php:39 pdf_pages.php:45 pdf_pages.php:51 pdf_pages.php:56 #, php-format msgid "%s table not found or not set in %s" msgstr "%s table not found or not set in %s" -#: pdf_pages.php:265 +#: pdf_pages.php:264 msgid "Please choose a page to edit" msgstr "සංස්කරණය සඳහා පිටුවක් තෝරාගන්න" -#: pdf_pages.php:303 pmd_pdf.php:113 +#: pdf_pages.php:302 pmd_pdf.php:111 msgid "Create a page" msgstr "නව පිටුවක් සාදන්න" -#: pdf_pages.php:309 +#: pdf_pages.php:308 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "පිටු අංකය:" -#: pdf_pages.php:313 +#: pdf_pages.php:312 #, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "ස්වයංක්‍රීය සැලැස්ම" -#: pdf_pages.php:315 +#: pdf_pages.php:314 msgid "Internal relations" msgstr "Internal relations" -#: pdf_pages.php:338 +#: pdf_pages.php:337 msgid "Select Tables" msgstr "වගු තෝරන්න" -#: pdf_pages.php:361 +#: pdf_pages.php:360 msgid "Toggle scratchboard" msgstr "Toggle scratchboard" -#: pdf_pages.php:524 +#: pdf_pages.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -4289,37 +4340,37 @@ msgstr "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" -#: pdf_schema.php:635 +#: pdf_schema.php:634 #, fuzzy, php-format #| msgid "The \"%s\" table doesn't exist!" msgid "The %s table doesn't exist!" msgstr "The \"%s\" table doesn't exist!" -#: pdf_schema.php:671 +#: pdf_schema.php:670 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Please configure the coordinates for table %s" -#: pdf_schema.php:994 +#: pdf_schema.php:993 #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" msgstr "Schema of the \"%s\" database - Page %s" -#: pdf_schema.php:1012 +#: pdf_schema.php:1011 msgid "No tables" msgstr "වගු නොමැත" -#: pdf_schema.php:1031 pdf_schema.php:1140 +#: pdf_schema.php:1030 pdf_schema.php:1139 msgid "Relational schema" msgstr "Relational schema" -#: pdf_schema.php:1115 +#: pdf_schema.php:1114 msgid "Table of contents" msgstr "පටුන" -#: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:145 -#: tbl_structure.php:182 tbl_tracking.php:277 +#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 +#: tbl_structure.php:181 tbl_tracking.php:272 msgid "Extra" msgstr "අතිරේක" @@ -4331,7 +4382,7 @@ msgstr "" msgid "Save position" msgstr "" -#: pmd_general.php:70 server_synchronize.php:428 server_synchronize.php:871 +#: pmd_general.php:70 server_synchronize.php:427 server_synchronize.php:870 #, fuzzy msgid "Create table" msgstr "නව පිටුවක් සාදන්න" @@ -4406,32 +4457,32 @@ msgid "" "appropriate column name." msgstr "" -#: pmd_pdf.php:62 +#: pmd_pdf.php:60 #, fuzzy msgid "Page has been created" msgstr "%s වගුව හලන ලදි" -#: pmd_pdf.php:64 +#: pmd_pdf.php:62 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:84 +#: pmd_pdf.php:82 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:88 +#: pmd_pdf.php:86 msgid "recommended" msgstr "" -#: pmd_pdf.php:93 +#: pmd_pdf.php:91 msgid "to/from page" msgstr "" -#: querywindow.php:94 +#: querywindow.php:93 msgid "Import files" msgstr "ගොනු ආනයනය" -#: querywindow.php:105 +#: querywindow.php:104 msgid "All" msgstr "සියලු" @@ -4478,66 +4529,66 @@ msgstr "තොරතුරු" msgid "Character Sets and Collations" msgstr "අක්ෂර කට්ටල සහ ‍Collations" -#: server_databases.php:51 +#: server_databases.php:49 msgid "No databases selected." msgstr "දත්තගබඩාවක් තෝරාගෙන නොමැත." -#: server_databases.php:62 +#: server_databases.php:60 #, php-format msgid "%s databases have been dropped successfully." msgstr "%s දත්තගබඩාව සාර්ථකව හලන ලදි." -#: server_databases.php:87 +#: server_databases.php:85 msgid "Databases statistics" msgstr "දත්තගබඩා සංඛ්‍යා ලේඛන" -#: server_databases.php:116 server_status.php:370 +#: server_databases.php:114 server_status.php:370 #: setup/lib/messages.inc.php:114 msgid "Tables" msgstr "වගු" -#: server_databases.php:194 server_replication.php:180 -#: server_replication.php:208 +#: server_databases.php:192 server_replication.php:179 +#: server_replication.php:207 msgid "Master replication" msgstr "" -#: server_databases.php:196 server_replication.php:247 +#: server_databases.php:194 server_replication.php:246 msgid "Slave replication" msgstr "" -#: server_databases.php:229 +#: server_databases.php:227 #, fuzzy msgid "Jump to database" msgstr "දත්තගබඩා නොමැත" -#: server_databases.php:266 +#: server_databases.php:264 msgid "Not replicated" msgstr "" -#: server_databases.php:272 +#: server_databases.php:270 #, fuzzy #| msgid "Replication" msgid "Replicated" msgstr "Replication" -#: server_databases.php:288 +#: server_databases.php:286 #, php-format msgid "Check privileges for database "%s"." msgstr ""%s" දත්තගබඩාව සඳහා වරප්‍රසාද පරීක්ෂා කරන්න." -#: server_databases.php:292 server_databases.php:293 +#: server_databases.php:290 server_databases.php:291 msgid "Check Privileges" msgstr "වරප්‍රසාද පරීක්ෂා කරන්න" -#: server_databases.php:357 server_databases.php:358 +#: server_databases.php:355 server_databases.php:356 msgid "Enable Statistics" msgstr "සංඛ්‍යා ලේඛන සක්‍රිය කරන්න" -#: server_databases.php:361 server_databases.php:362 +#: server_databases.php:359 server_databases.php:360 msgid "Disable Statistics" msgstr "සංඛ්‍යා ලේඛන අක්‍රිය කරන්න" -#: server_databases.php:365 +#: server_databases.php:363 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -4545,120 +4596,120 @@ msgstr "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." -#: server_engines.php:48 +#: server_engines.php:47 msgid "Storage Engines" msgstr "ගබඩා යන්ත්‍ර" -#: server_export.php:20 +#: server_export.php:18 msgid "View dump (schema) of databases" msgstr "View dump (schema) of databases" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:23 server_privileges.php:265 msgid "Includes all privileges except GRANT." msgstr "Includes all privileges except GRANT." -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:24 server_privileges.php:191 +#: server_privileges.php:514 msgid "Allows altering the structure of existing tables." msgstr "Allows altering the structure of existing tables." -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:25 server_privileges.php:207 +#: server_privileges.php:520 msgid "Allows altering and dropping stored routines." msgstr "Allows altering and dropping stored routines." -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:26 server_privileges.php:183 +#: server_privileges.php:513 msgid "Allows creating new databases and tables." msgstr "Allows creating new databases and tables." -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:27 server_privileges.php:206 +#: server_privileges.php:519 msgid "Allows creating stored routines." msgstr "Allows creating stored routines." -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:513 msgid "Allows creating new tables." msgstr "Allows creating new tables." -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:29 server_privileges.php:194 +#: server_privileges.php:517 msgid "Allows creating temporary tables." msgstr "Allows creating temporary tables." -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:30 server_privileges.php:208 +#: server_privileges.php:553 msgid "Allows creating, dropping and renaming user accounts." msgstr "Allows creating, dropping and renaming user accounts." -#: server_privileges.php:32 server_privileges.php:199 -#: server_privileges.php:203 server_privileges.php:526 -#: server_privileges.php:530 +#: server_privileges.php:31 server_privileges.php:198 +#: server_privileges.php:202 server_privileges.php:525 +#: server_privileges.php:529 msgid "Allows creating new views." msgstr "Allows creating new views." -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:32 server_privileges.php:182 +#: server_privileges.php:505 msgid "Allows deleting data." msgstr "Allows deleting data." -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:33 server_privileges.php:184 +#: server_privileges.php:516 msgid "Allows dropping databases and tables." msgstr "Allows dropping databases and tables." -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:34 server_privileges.php:516 msgid "Allows dropping tables." msgstr "Allows dropping tables." -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:35 server_privileges.php:199 +#: server_privileges.php:533 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:36 server_privileges.php:209 +#: server_privileges.php:521 msgid "Allows executing stored routines." msgstr "Allows executing stored routines." -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:37 server_privileges.php:188 +#: server_privileges.php:508 msgid "Allows importing data from and exporting data into files." msgstr "Allows importing data from and exporting data into files." -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:38 server_privileges.php:539 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Allows adding users and privileges without reloading the privilege tables." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:515 msgid "Allows creating and dropping indexes." msgstr "Allows creating and dropping indexes." -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:40 server_privileges.php:180 +#: server_privileges.php:441 server_privileges.php:503 msgid "Allows inserting and replacing data." msgstr "Allows inserting and replacing data." -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:41 server_privileges.php:195 +#: server_privileges.php:548 msgid "Allows locking tables for the current thread." msgstr "Allows locking tables for the current thread." -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:42 server_privileges.php:645 +#: server_privileges.php:647 msgid "Limits the number of new connections the user may open per hour." msgstr "Limits the number of new connections the user may open per hour." -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:43 server_privileges.php:633 +#: server_privileges.php:635 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Limits the number of queries the user may send to the server per hour." -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:44 server_privileges.php:639 +#: server_privileges.php:641 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -4666,58 +4717,58 @@ msgstr "" "Limits the number of commands that change any table or database the user may " "execute per hour." -#: server_privileges.php:46 server_privileges.php:652 -#: server_privileges.php:654 +#: server_privileges.php:45 server_privileges.php:651 +#: server_privileges.php:653 msgid "Limits the number of simultaneous connections the user may have." msgstr "Limits the number of simultaneous connections the user may have." -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:46 server_privileges.php:187 +#: server_privileges.php:543 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:47 server_privileges.php:189 +#: server_privileges.php:447 server_privileges.php:549 msgid "Has no effect in this MySQL version." msgstr "Has no effect in this MySQL version." -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:48 server_privileges.php:185 +#: server_privileges.php:544 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Allows reloading server settings and flushing the server's caches." -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:197 +#: server_privileges.php:551 msgid "Allows the user to ask where the slaves / masters are." msgstr "Allows the user to ask where the slaves / masters are." -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:50 server_privileges.php:196 +#: server_privileges.php:552 msgid "Needed for the replication slaves." msgstr "Needed for the replication slaves." -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:51 server_privileges.php:179 +#: server_privileges.php:438 server_privileges.php:502 msgid "Allows reading data." msgstr "Allows reading data." -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:52 server_privileges.php:192 +#: server_privileges.php:546 msgid "Gives access to the complete list of databases." msgstr "Gives access to the complete list of databases." -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:53 server_privileges.php:203 +#: server_privileges.php:205 server_privileges.php:518 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Allows performing SHOW CREATE VIEW queries." -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:54 server_privileges.php:186 +#: server_privileges.php:545 msgid "Allows shutting down the server." msgstr "Allows shutting down the server." -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:55 server_privileges.php:193 +#: server_privileges.php:542 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -4727,158 +4778,158 @@ msgstr "" "required for most administrative operations like setting global variables or " "killing threads of other users." -#: server_privileges.php:57 server_privileges.php:201 -#: server_privileges.php:535 +#: server_privileges.php:56 server_privileges.php:200 +#: server_privileges.php:534 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "Allows creating and dropping indexes." -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:57 server_privileges.php:181 +#: server_privileges.php:444 server_privileges.php:504 msgid "Allows changing data." msgstr "Allows changing data." -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:58 server_privileges.php:259 msgid "No privileges." msgstr "වරප්‍රසාද නොමැත." -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:301 server_privileges.php:302 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "කිසිවක් නැත" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1710 server_privileges.php:1716 +#: server_privileges.php:430 server_privileges.php:565 +#: server_privileges.php:1714 server_privileges.php:1720 msgid "Table-specific privileges" msgstr "Table-specific privileges" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1532 +#: server_privileges.php:431 server_privileges.php:573 +#: server_privileges.php:1536 msgid " Note: MySQL privilege names are expressed in English " msgstr " Note: MySQL privilege names are expressed in English " -#: server_privileges.php:563 server_privileges.php:1531 +#: server_privileges.php:562 server_privileges.php:1535 msgid "Global privileges" msgstr "ගෝලීය වරප්‍රසාද" -#: server_privileges.php:565 server_privileges.php:1710 +#: server_privileges.php:564 server_privileges.php:1714 msgid "Database-specific privileges" msgstr "දත්තගබඩා විශේෂිත වරප්‍රසාද" -#: server_privileges.php:610 +#: server_privileges.php:609 msgid "Administration" msgstr "පරිපාලනය" -#: server_privileges.php:630 +#: server_privileges.php:629 msgid "Resource limits" msgstr "සම්පත් සීමා" -#: server_privileges.php:631 +#: server_privileges.php:630 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "සටහන: මෙම විකල්පය 0 (බිංදුවට) පත් කිරීම මගින්සීමා ඉවත් වනු ලැ‍‍බේ." -#: server_privileges.php:708 +#: server_privileges.php:707 msgid "Login Information" msgstr "ලොගින තොරතුරු" -#: server_privileges.php:802 +#: server_privileges.php:801 msgid "Do not change the password" msgstr "මුරපදය වෙනස් නොකරන්න" -#: server_privileges.php:835 server_privileges.php:2197 +#: server_privileges.php:834 server_privileges.php:2201 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "No user(s) found." -#: server_privileges.php:879 +#: server_privileges.php:878 #, php-format msgid "The user %s already exists!" msgstr "%s භාවිතා කරන්නා දැනටමත් පවතී!" -#: server_privileges.php:962 +#: server_privileges.php:961 msgid "You have added a new user." msgstr "ඔබ නව භාවිතා කරන්නනෙක් එක් කරන ලදි." -#: server_privileges.php:1183 +#: server_privileges.php:1184 #, php-format msgid "You have updated the privileges for %s." msgstr "You have updated the privileges for %s." -#: server_privileges.php:1207 +#: server_privileges.php:1208 #, php-format msgid "You have revoked the privileges for %s" msgstr "You have revoked the privileges for %s" -#: server_privileges.php:1243 +#: server_privileges.php:1244 #, php-format msgid "The password for %s was changed successfully." msgstr "The password for %s was changed successfully." -#: server_privileges.php:1263 +#: server_privileges.php:1264 #, php-format msgid "Deleting %s" msgstr "%s ඉවත් කරමින් පවතී" -#: server_privileges.php:1274 +#: server_privileges.php:1275 msgid "No users selected for deleting!" msgstr "ඉවත් කිරීම සඳහා භාවිතා කරන්නන් කිසිවෙක් තෝරාගෙන නොමැත!" -#: server_privileges.php:1277 +#: server_privileges.php:1278 msgid "Reloading the privileges" msgstr "Reloading the privileges" -#: server_privileges.php:1292 +#: server_privileges.php:1296 msgid "The selected users have been deleted successfully." msgstr "The selected users have been deleted successfully." -#: server_privileges.php:1327 +#: server_privileges.php:1331 msgid "The privileges were reloaded successfully." msgstr "The privileges were reloaded successfully." -#: server_privileges.php:1355 server_privileges.php:1641 +#: server_privileges.php:1359 server_privileges.php:1645 msgid "Edit Privileges" msgstr "වරප්‍රසාද සංස්කරණය කරන්න" -#: server_privileges.php:1364 +#: server_privileges.php:1368 msgid "Revoke" msgstr "Revoke" -#: server_privileges.php:1396 +#: server_privileges.php:1400 msgid "User overview" msgstr "User overview" -#: server_privileges.php:1533 server_privileges.php:1715 -#: server_privileges.php:2064 +#: server_privileges.php:1537 server_privileges.php:1719 +#: server_privileges.php:2068 msgid "Grant" msgstr "ප්‍රදානය කරන්න" -#: server_privileges.php:1552 server_privileges.php:2154 +#: server_privileges.php:1556 server_privileges.php:2158 msgid "Any" msgstr "ඕනෑම" -#: server_privileges.php:1601 server_privileges.php:1625 -#: server_privileges.php:2019 server_privileges.php:2208 +#: server_privileges.php:1605 server_privileges.php:1629 +#: server_privileges.php:2023 server_privileges.php:2212 msgid "Add a new User" msgstr "නව භාවිතා කරන්නේක් එක් කරන්න" -#: server_privileges.php:1606 +#: server_privileges.php:1610 msgid "Remove selected users" msgstr "තෝරාගත් භාවිතා කරන්නන් ඉවත් කරන්න" -#: server_privileges.php:1609 +#: server_privileges.php:1613 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Revoke all active privileges from the users and delete them afterwards." -#: server_privileges.php:1610 server_privileges.php:1611 -#: server_privileges.php:1612 +#: server_privileges.php:1614 server_privileges.php:1615 +#: server_privileges.php:1616 msgid "Drop the databases that have the same names as the users." msgstr "භාවිතා කරන්නන් හා සමාන නම් ඇති දත්තගබඩා හලන්න." -#: server_privileges.php:1628 +#: server_privileges.php:1632 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4891,92 +4942,92 @@ msgstr "" "server uses, if they have been changed manually. In this case, you should " "%sreload the privileges%s before you continue." -#: server_privileges.php:1676 +#: server_privileges.php:1680 msgid "The selected user was not found in the privilege table." msgstr "The selected user was not found in the privilege table." -#: server_privileges.php:1716 +#: server_privileges.php:1720 msgid "Column-specific privileges" msgstr "Column-specific privileges" -#: server_privileges.php:1917 +#: server_privileges.php:1921 msgid "Add privileges on the following database" msgstr "පහත දත්තගබඩාවට වරප්‍රසාද එක් කරන්න" -#: server_privileges.php:1935 +#: server_privileges.php:1939 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "Wildcards % and _ should be escaped with a \\ to use them literally" -#: server_privileges.php:1938 +#: server_privileges.php:1942 msgid "Add privileges on the following table" msgstr "පහත වගුවට වරප්‍රසාද එක් කරන්න" -#: server_privileges.php:1995 +#: server_privileges.php:1999 msgid "Change Login Information / Copy User" msgstr "ලොගින් තොරතුරු වෙනස් කරන්න / භාවිතා කරන්නා පිටපත් කරන්න" -#: server_privileges.php:1998 +#: server_privileges.php:2002 msgid "Create a new user with the same privileges and ..." msgstr "සහ එකම වරප්‍රසාද සහිතව නව භාවිතා කරන්නෙක් එක් කරන්න..." -#: server_privileges.php:2000 +#: server_privileges.php:2004 msgid "... keep the old one." msgstr "... පැරණි එක තබා ගන්න." -#: server_privileges.php:2001 +#: server_privileges.php:2005 msgid " ... delete the old one from the user tables." msgstr " ... භාවිතා කරන්නන්ගේ වගුවෙන් පැරණි එක ඉවත් කරන්න." -#: server_privileges.php:2002 +#: server_privileges.php:2006 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "" " ... revoke all active privileges from the old one and delete it afterwards." -#: server_privileges.php:2003 +#: server_privileges.php:2007 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr ".. භාවිතා කරන්නන්ගේ වගුවෙන් පැරණි එක ඉවත් කර වරප්‍රසාද නැවත අලුත් කරන්න." -#: server_privileges.php:2025 +#: server_privileges.php:2029 msgid "Database for user" msgstr "භාවිතා කරන්නා සඳහා දත්තගබඩාව" -#: server_privileges.php:2029 +#: server_privileges.php:2033 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "කිසිවක් නැත" -#: server_privileges.php:2030 +#: server_privileges.php:2034 msgid "Create database with same name and grant all privileges" msgstr "එකම නමින් දත්තගබඩාවක සාදා සියලු වරප්‍රසාද එයට දෙන්න" -#: server_privileges.php:2031 +#: server_privileges.php:2035 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "අභිමත ආදේශක නාමයන් සඳහා සියලු වරප්‍රසාද දෙන්න (භාවිත නාමය_%)" -#: server_privileges.php:2034 +#: server_privileges.php:2038 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr ""%s" දත්තගබඩාව සඳහා වරප්‍රසාද පරීක්ෂා කරන්න." -#: server_privileges.php:2057 +#: server_privileges.php:2061 #, php-format msgid "Users having access to "%s"" msgstr "Users having access to "%s"" -#: server_privileges.php:2165 +#: server_privileges.php:2169 msgid "global" msgstr "ගෝලීම" -#: server_privileges.php:2167 +#: server_privileges.php:2171 msgid "database-specific" msgstr "දත්තගබඩා විශේෂිත" -#: server_privileges.php:2169 +#: server_privileges.php:2173 msgid "wildcard" msgstr "wildcard" @@ -4996,54 +5047,54 @@ msgstr "" msgid "ID" msgstr "හැඳුනුම් අංකය (ID)" -#: server_replication.php:50 +#: server_replication.php:49 msgid "Unknown error" msgstr "" -#: server_replication.php:57 +#: server_replication.php:56 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:64 +#: server_replication.php:63 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:70 +#: server_replication.php:69 msgid "Unable to change master" msgstr "" -#: server_replication.php:73 +#: server_replication.php:72 #, php-format msgid "Master server changed succesfully to %s" msgstr "" -#: server_replication.php:181 +#: server_replication.php:180 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:183 server_status.php:391 +#: server_replication.php:182 server_status.php:391 #, fuzzy msgid "Show master status" msgstr "උපතත්වයන් පෙන්වන්න" -#: server_replication.php:186 +#: server_replication.php:185 msgid "Show connected slaves" msgstr "" -#: server_replication.php:209 +#: server_replication.php:208 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:216 +#: server_replication.php:215 msgid "Master configuration" msgstr "" -#: server_replication.php:217 +#: server_replication.php:216 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -5052,111 +5103,111 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:220 +#: server_replication.php:219 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:221 +#: server_replication.php:220 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:224 +#: server_replication.php:223 #, fuzzy msgid "Please select databases:" msgstr "කරුණාකර දත්තගබඩාවක් තෝරන්න" -#: server_replication.php:227 +#: server_replication.php:226 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: server_replication.php:229 +#: server_replication.php:228 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: server_replication.php:292 +#: server_replication.php:291 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:295 +#: server_replication.php:294 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:304 +#: server_replication.php:303 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:307 +#: server_replication.php:306 msgid "See slave status table" msgstr "" -#: server_replication.php:310 +#: server_replication.php:309 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:321 +#: server_replication.php:320 msgid "Control slave:" msgstr "" -#: server_replication.php:324 +#: server_replication.php:323 #, fuzzy msgid "Full start" msgstr "සම්පූර්ණ පාඨය" -#: server_replication.php:324 +#: server_replication.php:323 #, fuzzy msgid "Full stop" msgstr "සම්පූර්ණ පාඨය" -#: server_replication.php:325 +#: server_replication.php:324 msgid "Reset slave" msgstr "" -#: server_replication.php:326 +#: server_replication.php:325 #, php-format msgid "SQL Thread %s only" msgstr "" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 #, fuzzy msgid "Start" msgstr "සෙනසුරාදා" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 msgid "Stop" msgstr "" -#: server_replication.php:327 +#: server_replication.php:326 #, php-format msgid "IO Thread %s only" msgstr "" -#: server_replication.php:331 +#: server_replication.php:330 msgid "Error management:" msgstr "" -#: server_replication.php:333 +#: server_replication.php:332 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:335 +#: server_replication.php:334 msgid "Skip current error" msgstr "" -#: server_replication.php:336 +#: server_replication.php:335 msgid "Skip next" msgstr "" -#: server_replication.php:339 +#: server_replication.php:338 msgid "errors." msgstr "" -#: server_replication.php:354 +#: server_replication.php:353 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -5972,113 +6023,113 @@ msgstr "විමසුම් වර්ගය" msgid "Replication status" msgstr "Replication" -#: server_synchronize.php:93 +#: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:96 +#: server_synchronize.php:95 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:121 server_synchronize.php:124 tbl_create.php:77 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:264 +#: server_synchronize.php:263 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:271 +#: server_synchronize.php:270 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:399 server_synchronize.php:838 +#: server_synchronize.php:398 server_synchronize.php:837 msgid "not present" msgstr "" -#: server_synchronize.php:423 server_synchronize.php:866 +#: server_synchronize.php:422 server_synchronize.php:865 #, fuzzy msgid "Structure Difference" msgstr "Structure only" -#: server_synchronize.php:424 server_synchronize.php:867 +#: server_synchronize.php:423 server_synchronize.php:866 msgid "Data Difference" msgstr "" -#: server_synchronize.php:429 server_synchronize.php:872 +#: server_synchronize.php:428 server_synchronize.php:871 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:430 server_synchronize.php:873 +#: server_synchronize.php:429 server_synchronize.php:872 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:431 server_synchronize.php:874 +#: server_synchronize.php:430 server_synchronize.php:873 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:432 server_synchronize.php:875 +#: server_synchronize.php:431 server_synchronize.php:874 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:433 server_synchronize.php:876 +#: server_synchronize.php:432 server_synchronize.php:875 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:434 server_synchronize.php:877 +#: server_synchronize.php:433 server_synchronize.php:876 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:435 server_synchronize.php:878 +#: server_synchronize.php:434 server_synchronize.php:877 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:445 server_synchronize.php:889 +#: server_synchronize.php:444 server_synchronize.php:888 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:448 server_synchronize.php:893 +#: server_synchronize.php:447 server_synchronize.php:892 msgid "Apply Selected Changes" msgstr "" -#: server_synchronize.php:450 server_synchronize.php:895 +#: server_synchronize.php:449 server_synchronize.php:894 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:463 +#: server_synchronize.php:462 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:941 +#: server_synchronize.php:940 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:1002 +#: server_synchronize.php:1001 msgid "The following queries have been executed:" msgstr "" -#: server_synchronize.php:1121 +#: server_synchronize.php:1120 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1122 +#: server_synchronize.php:1121 #, fuzzy #| msgid "max. concurrent connections" msgid "Current connection" msgstr "max. concurrent connections" -#: server_synchronize.php:1151 +#: server_synchronize.php:1150 #, php-format msgid "Configuration: %s" msgstr "" -#: server_synchronize.php:1166 +#: server_synchronize.php:1165 msgid "Socket" msgstr "" -#: server_synchronize.php:1212 +#: server_synchronize.php:1211 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -6643,8 +6694,8 @@ msgstr "" #: setup/lib/messages.inc.php:128 msgid "" "Configure phpMyAdmin database to gain access to additional features, see " -"[a@../Documentation.html#linked-tables]linked-tables infrastructure[/a] in " -"documentation" +"[a@../Documentation.html#linked-tables]phpMyAdmin configuration storage[/a] " +"in documentation" msgstr "" #: setup/lib/messages.inc.php:129 setup/lib/messages.inc.php:290 @@ -7717,116 +7768,116 @@ msgstr "" msgid "ZIP" msgstr "" -#: sql.php:495 tbl_replace.php:385 +#: sql.php:494 tbl_replace.php:384 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: sql.php:512 +#: sql.php:511 msgid "Showing as PHP code" msgstr "" -#: sql.php:515 tbl_replace.php:359 +#: sql.php:514 tbl_replace.php:358 #, fuzzy msgid "Showing SQL query" msgstr "සම්පූර්ණ විමසුම් පෙන්වන්න" -#: sql.php:517 +#: sql.php:516 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Validate SQL" -#: sql.php:638 +#: sql.php:631 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problems with indexes of table `%s`" -#: sql.php:670 +#: sql.php:663 msgid "Label" msgstr "ලේබලය" -#: tbl_addfield.php:188 tbl_alter.php:102 tbl_indexes.php:97 +#: tbl_addfield.php:185 tbl_alter.php:100 tbl_indexes.php:97 #, fuzzy, php-format msgid "Table %1$s has been altered successfully" msgstr "The selected users have been deleted successfully." -#: tbl_change.php:250 tbl_select.php:26 tbl_select.php:27 tbl_select.php:30 -#: tbl_select.php:33 +#: tbl_change.php:245 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_select.php:32 msgid "Browse foreign values" msgstr "අන්‍ය අගයන් බ්‍රවුස් කරන්න" -#: tbl_change.php:280 tbl_change.php:318 +#: tbl_change.php:275 tbl_change.php:313 msgid "Function" msgstr "ශ්‍රිතය" -#: tbl_change.php:300 tbl_indexes.php:199 tbl_indexes.php:224 +#: tbl_change.php:295 tbl_indexes.php:198 tbl_indexes.php:223 msgid "Ignore" msgstr "අත්හැර දමන්න" -#: tbl_change.php:725 +#: tbl_change.php:720 #, fuzzy #| msgid " Because of its length,
                            this field might not be editable " msgid " Because of its length,
                            this column might not be editable " msgstr " Because of its length,
                            this field might not be editable " -#: tbl_change.php:884 +#: tbl_change.php:835 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:890 +#: tbl_change.php:841 msgid "Binary - do not edit" msgstr "ද්වීමය - සංස්කරණය නොකරන්න" -#: tbl_change.php:983 +#: tbl_change.php:889 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:1128 +#: tbl_change.php:1026 msgid "Insert as new row" msgstr "Insert as new row" -#: tbl_change.php:1129 +#: tbl_change.php:1027 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:1130 +#: tbl_change.php:1028 msgid "Show insert query" msgstr "" -#: tbl_change.php:1145 +#: tbl_change.php:1043 msgid "Go back to previous page" msgstr "පෙර පිටුවට ආපසු යන්න" -#: tbl_change.php:1146 +#: tbl_change.php:1044 msgid "Insert another new row" msgstr "නව පේළියක් එක් කරන්න" -#: tbl_change.php:1150 +#: tbl_change.php:1048 msgid "Go back to this page" msgstr "මෙම පිටුව වෙත ආපසු යන්න" -#: tbl_change.php:1158 +#: tbl_change.php:1056 msgid "Edit next row" msgstr "මීලඟ පේළිය එක් කරන්න" -#: tbl_change.php:1169 +#: tbl_change.php:1067 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" -#: tbl_change.php:1207 +#: tbl_change.php:1105 #, php-format msgid "Restart insertion with %s rows" msgstr "" -#: tbl_create.php:57 +#: tbl_create.php:55 #, php-format msgid "Table %s already exists!" msgstr " %s වගුව දැනටමත් පවතී!" -#: tbl_create.php:244 +#: tbl_create.php:241 #, fuzzy, php-format msgid "Table %1$s has been created." msgstr "%s වගුව හලන ලදි" @@ -7847,204 +7898,204 @@ msgstr "Can't rename index to PRIMARY!" msgid "No index parts defined!" msgstr "No index parts defined!" -#: tbl_indexes.php:159 +#: tbl_indexes.php:158 msgid "Create a new index" msgstr "නව සූචියක් සාදන්න" -#: tbl_indexes.php:161 +#: tbl_indexes.php:160 msgid "Modify an index" msgstr "සූචිය වෙනස් කරන්න" -#: tbl_indexes.php:167 +#: tbl_indexes.php:166 msgid "Index name:" msgstr "සූචියේ නම:" -#: tbl_indexes.php:173 +#: tbl_indexes.php:172 msgid "Index type:" msgstr "සූචි වර්ගය:" -#: tbl_indexes.php:183 +#: tbl_indexes.php:182 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" "(\"PRIMARY\" must be the name of and only of a primary key!)" -#: tbl_indexes.php:250 +#: tbl_indexes.php:249 #, php-format msgid "Add to index  %s column(s)" msgstr " %s තීර(ය) සූචියට එක් කරන්න" -#: tbl_indexes.php:255 tbl_structure.php:588 tbl_structure.php:599 +#: tbl_indexes.php:254 tbl_structure.php:586 tbl_structure.php:597 msgid "Column count has to be larger than zero." msgstr "Column count has to be larger than zero." -#: tbl_move_copy.php:45 +#: tbl_move_copy.php:44 msgid "Can't move table to same one!" msgstr "Can't move table to same one!" -#: tbl_move_copy.php:47 +#: tbl_move_copy.php:46 msgid "Can't copy table to same one!" msgstr "එම වගුවටම පිටපත් කල නොහැක!" -#: tbl_move_copy.php:55 +#: tbl_move_copy.php:54 #, php-format msgid "Table %s has been moved to %s." msgstr "%s වගුව %s වෙතට ගෙනයන ලදි." -#: tbl_move_copy.php:57 +#: tbl_move_copy.php:56 #, php-format msgid "Table %s has been copied to %s." msgstr "%s වගුව %s වෙතට පිටපත් කරන ලදි." -#: tbl_move_copy.php:81 +#: tbl_move_copy.php:80 msgid "The table name is empty!" msgstr "වගුවෙහි නම හිස්ව ඇත!" -#: tbl_operations.php:248 +#: tbl_operations.php:246 msgid "Alter table order by" msgstr "අනුව වගු අනුපිළිවෙල වෙනස් කරන්න" -#: tbl_operations.php:257 +#: tbl_operations.php:255 msgid "(singly)" msgstr "(singly)" -#: tbl_operations.php:277 +#: tbl_operations.php:275 msgid "Move table to (database.table):" msgstr "වගුව (දත්තගබඩාව.වගුව) වෙතට ගෙන යන්න:" -#: tbl_operations.php:335 +#: tbl_operations.php:333 msgid "Table options" msgstr "වගු විකල්ප" -#: tbl_operations.php:339 +#: tbl_operations.php:337 msgid "Rename table to" msgstr "වගුව බවට නම වෙනස් කරන්න" -#: tbl_operations.php:510 +#: tbl_operations.php:508 msgid "Copy table to (database.table):" msgstr "වගුව (දත්තගබඩාව.වගුව) වෙතට පිටපත් කරන්න:" -#: tbl_operations.php:557 +#: tbl_operations.php:555 msgid "Switch to copied table" msgstr "Switch to copied table" -#: tbl_operations.php:569 +#: tbl_operations.php:567 msgid "Table maintenance" msgstr "වගු නඩත්තුව" -#: tbl_operations.php:590 +#: tbl_operations.php:588 msgid "Defragment table" msgstr "Defragment table" -#: tbl_operations.php:629 +#: tbl_operations.php:627 #, php-format msgid "Table %s has been flushed" msgstr "Table %s has been flushed" -#: tbl_operations.php:635 +#: tbl_operations.php:633 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Flush the table (\"FLUSH\")" -#: tbl_operations.php:650 +#: tbl_operations.php:648 #, fuzzy msgid "Partition maintenance" msgstr "වගු නඩත්තුව" -#: tbl_operations.php:658 +#: tbl_operations.php:656 #, php-format msgid "Partition %s" msgstr "" -#: tbl_operations.php:661 +#: tbl_operations.php:659 msgid "Analyze" msgstr "" -#: tbl_operations.php:662 +#: tbl_operations.php:660 #, fuzzy msgid "Check" msgstr "චෙකොස්ලෝවැකියානු" -#: tbl_operations.php:663 +#: tbl_operations.php:661 msgid "Optimize" msgstr "" -#: tbl_operations.php:664 +#: tbl_operations.php:662 msgid "Rebuild" msgstr "" -#: tbl_operations.php:665 +#: tbl_operations.php:663 #, fuzzy msgid "Repair" msgstr "වගුව ප්‍රතිසංස්කරණය කරන්න" -#: tbl_operations.php:677 +#: tbl_operations.php:675 msgid "Remove partitioning" msgstr "" -#: tbl_operations.php:703 +#: tbl_operations.php:701 msgid "Check referential integrity:" msgstr "Check referential integrity:" -#: tbl_printview.php:73 +#: tbl_printview.php:72 msgid "Show tables" msgstr "වගු පෙන්වන්න" -#: tbl_printview.php:308 tbl_structure.php:655 +#: tbl_printview.php:307 tbl_structure.php:653 msgid "Space usage" msgstr "අවකාශ භාවිතය" -#: tbl_printview.php:312 tbl_structure.php:659 +#: tbl_printview.php:311 tbl_structure.php:657 msgid "Usage" msgstr "භාවිතය" -#: tbl_printview.php:339 tbl_structure.php:686 +#: tbl_printview.php:338 tbl_structure.php:684 msgid "Effective" msgstr "Effective" -#: tbl_printview.php:364 tbl_structure.php:724 +#: tbl_printview.php:363 tbl_structure.php:722 msgid "Row Statistics" msgstr "පේළි සංඛ්‍ය ලේඛන" -#: tbl_printview.php:367 tbl_structure.php:727 +#: tbl_printview.php:366 tbl_structure.php:725 msgid "Statements" msgstr "ප්‍රකාශය" -#: tbl_printview.php:378 tbl_structure.php:739 +#: tbl_printview.php:377 tbl_structure.php:737 msgid "static" msgstr "" -#: tbl_printview.php:380 tbl_structure.php:741 +#: tbl_printview.php:379 tbl_structure.php:739 msgid "dynamic" msgstr "ගතික" -#: tbl_printview.php:402 tbl_structure.php:784 +#: tbl_printview.php:401 tbl_structure.php:782 msgid "Row length" msgstr "පේළියේ දිග" -#: tbl_printview.php:412 tbl_structure.php:792 +#: tbl_printview.php:411 tbl_structure.php:790 msgid " Row size " msgstr "පේළියේ ප්‍රමාණය" -#: tbl_relation.php:278 +#: tbl_relation.php:276 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" -#: tbl_relation.php:404 +#: tbl_relation.php:402 #, fuzzy #| msgid "Internal relations" msgid "Internal relation" msgstr "Internal relations" -#: tbl_relation.php:406 +#: tbl_relation.php:404 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: tbl_relation.php:412 +#: tbl_relation.php:410 msgid "Foreign key constraint" msgstr "" @@ -8052,232 +8103,232 @@ msgstr "" msgid "No rows selected" msgstr "පේළි කිසිවක් තෝරගෙන නැත" -#: tbl_select.php:130 +#: tbl_select.php:129 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Do a \"query by example\" (wildcard: \"%\")" -#: tbl_select.php:136 +#: tbl_select.php:135 msgid "Operator" msgstr "මෙහෙයවනය" -#: tbl_select.php:267 +#: tbl_select.php:266 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "Select fields (at least one):" -#: tbl_select.php:285 +#: tbl_select.php:284 msgid "Add search conditions (body of the \"where\" clause):" msgstr "සෙවීම් කොන්දේසි එක් කරන්න (\"where\" වාක්‍යාංශය යටතේ):" -#: tbl_select.php:292 +#: tbl_select.php:291 msgid "Number of rows per page" msgstr "පිටුවකට පේළි ගණන" -#: tbl_select.php:298 +#: tbl_select.php:297 msgid "Display order:" msgstr "දර්ශනය කිරීමේ අනුපිළිවෙල:" -#: tbl_structure.php:160 +#: tbl_structure.php:159 msgid "Browse distinct values" msgstr "එකිනෙකට වෙනස් අගයන් බ්‍රවුස් කරන්න" -#: tbl_structure.php:360 +#: tbl_structure.php:358 #, fuzzy #| msgid "None" msgctxt "None for default" msgid "None" msgstr "කිසිවක් නැත" -#: tbl_structure.php:373 +#: tbl_structure.php:371 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Column %s has been dropped" msgstr "%s වගුව හලන ලදි" -#: tbl_structure.php:384 +#: tbl_structure.php:382 #, php-format msgid "A primary key has been added on %s" msgstr "%s ට මූලික යතුරක් එක් කරන ලදි" -#: tbl_structure.php:399 tbl_structure.php:413 tbl_structure.php:427 +#: tbl_structure.php:397 tbl_structure.php:411 tbl_structure.php:425 #, php-format msgid "An index has been added on %s" msgstr "%s සඳහා සූචියක් එක්කරන ලදි" -#: tbl_structure.php:505 tbl_structure.php:507 +#: tbl_structure.php:503 tbl_structure.php:505 msgid "Relation view" msgstr "Relation view" -#: tbl_structure.php:514 tbl_structure.php:516 +#: tbl_structure.php:512 tbl_structure.php:514 msgid "Propose table structure" msgstr "Propose table structure" -#: tbl_structure.php:539 +#: tbl_structure.php:537 #, fuzzy #| msgid "Add %s field(s)" msgid "Add column" msgstr "%s ක්ෂේත්‍ර(යක්) එක් කරන්න" -#: tbl_structure.php:553 +#: tbl_structure.php:551 msgid "At End of Table" msgstr "වගුව අවසනදී" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At Beginning of Table" msgstr "වගුව මුලදී" -#: tbl_structure.php:555 +#: tbl_structure.php:553 #, php-format msgid "After %s" msgstr "%s ට පසු" -#: tbl_structure.php:593 +#: tbl_structure.php:591 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "Create an index on %s columns" -#: tbl_structure.php:755 +#: tbl_structure.php:753 msgid "partitioned" msgstr "" -#: tbl_tracking.php:113 +#: tbl_tracking.php:109 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:186 +#: tbl_tracking.php:182 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "" -#: tbl_tracking.php:194 +#: tbl_tracking.php:190 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "" -#: tbl_tracking.php:202 +#: tbl_tracking.php:198 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "" -#: tbl_tracking.php:212 +#: tbl_tracking.php:208 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:219 +#: tbl_tracking.php:215 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:220 +#: tbl_tracking.php:216 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:229 +#: tbl_tracking.php:225 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:250 tbl_tracking.php:378 +#: tbl_tracking.php:245 tbl_tracking.php:373 msgid "Close" msgstr "" -#: tbl_tracking.php:261 +#: tbl_tracking.php:256 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:380 +#: tbl_tracking.php:375 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:396 tbl_tracking.php:503 +#: tbl_tracking.php:391 tbl_tracking.php:498 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "" -#: tbl_tracking.php:409 tbl_tracking.php:460 +#: tbl_tracking.php:404 tbl_tracking.php:455 #, fuzzy msgid "Date" msgstr "දත්ත" -#: tbl_tracking.php:410 tbl_tracking.php:461 +#: tbl_tracking.php:405 tbl_tracking.php:456 #, fuzzy msgid "Username" msgstr "භාවිත නාමය:" -#: tbl_tracking.php:411 +#: tbl_tracking.php:406 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:462 +#: tbl_tracking.php:457 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:506 +#: tbl_tracking.php:501 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:507 +#: tbl_tracking.php:502 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:520 +#: tbl_tracking.php:515 #, fuzzy, php-format msgid "Export as %s" msgstr "අපනයන වර්ගය" -#: tbl_tracking.php:560 +#: tbl_tracking.php:555 msgid "Show versions" msgstr "" -#: tbl_tracking.php:592 +#: tbl_tracking.php:587 #, fuzzy msgid "Version" msgstr "පර්සියානු" -#: tbl_tracking.php:639 +#: tbl_tracking.php:634 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "" -#: tbl_tracking.php:641 +#: tbl_tracking.php:636 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:652 +#: tbl_tracking.php:647 #, php-format msgid "Activate tracking for %s.%s" msgstr "" -#: tbl_tracking.php:654 +#: tbl_tracking.php:649 msgid "Activate now" msgstr "" -#: tbl_tracking.php:667 +#: tbl_tracking.php:662 #, php-format msgid "Create version %s of %s.%s" msgstr "" -#: tbl_tracking.php:671 +#: tbl_tracking.php:666 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:679 +#: tbl_tracking.php:674 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:687 +#: tbl_tracking.php:682 #, fuzzy msgid "Create version" msgstr "සර්වරයේ සංස්කරණය" @@ -8328,11 +8379,36 @@ msgstr "The profile has been updated." msgid "VIEW name" msgstr "" -#: view_operations.php:92 +#: view_operations.php:91 #, fuzzy msgid "Rename view to" msgstr "වගුව බවට නම වෙනස් කරන්න" +#, fuzzy +#~| msgid "Enabled" +#~ msgctxt "BLOB repository" +#~ msgid "Enabled" +#~ msgstr "සක්‍රිය කරන් ලද" + +#, fuzzy +#~ msgid "Disable" +#~ msgstr "අක්‍රිය කරන ලද" + +#, fuzzy +#~ msgctxt "BLOB repository" +#~ msgid "Repair" +#~ msgstr "වගුව ප්‍රතිසංස්කරණය කරන්න" + +#, fuzzy +#~| msgid "Disabled" +#~ msgctxt "BLOB repository" +#~ msgid "Disabled" +#~ msgstr "අක්‍රිය කරන ලද" + +#, fuzzy +#~ msgid "Enable" +#~ msgstr "සක්‍රිය කරන් ලද" + #~ msgid "" #~ "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " #~ "extension. Please check your PHP configuration." diff --git a/po/sk.po b/po/sk.po index 4aa703b30..12031e6ab 100644 --- a/po/sk.po +++ b/po/sk.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-21 13:53+0200\n" +"POT-Creation-Date: 2010-07-26 17:18+0200\n" "PO-Revision-Date: 2010-07-22 02:26+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: slovak \n" @@ -14,19 +14,19 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Generator: Pootle 2.0.1\n" -#: browse_foreigners.php:37 browse_foreigners.php:58 -#: libraries/display_tbl.lib.php:416 server_privileges.php:1506 +#: browse_foreigners.php:36 browse_foreigners.php:57 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1510 msgid "Show all" msgstr "Zobraziť všetko" -#: browse_foreigners.php:81 libraries/common.lib.php:2313 -#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:393 -#: libraries/export/pdf.php:146 pdf_schema.php:282 pdf_schema.php:1122 -#: pdf_schema.php:1138 +#: browse_foreigners.php:80 libraries/common.lib.php:2318 +#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:392 +#: libraries/export/pdf.php:146 pdf_schema.php:281 pdf_schema.php:1121 +#: pdf_schema.php:1137 msgid "Page number:" msgstr "Číslo stránky:" -#: browse_foreigners.php:131 +#: browse_foreigners.php:130 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -36,139 +36,151 @@ msgstr "" "rodičovské okno, alebo prehliadač blokuje operácie medzi oknami z dôvodu " "bezpečnostných nastavení" -#: browse_foreigners.php:149 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2829 -#: libraries/common.lib.php:2836 libraries/db_links.inc.php:74 -#: libraries/tbl_links.inc.php:62 +#: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 +#: db_structure.php:89 db_structure.php:91 db_structure.php:102 +#: db_structure.php:104 libraries/common.lib.php:2834 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Hľadať" -#: browse_foreigners.php:152 db_operations.php:384 db_operations.php:428 -#: db_operations.php:498 db_operations.php:608 db_search.php:344 -#: db_structure.php:566 js/messages.php:48 libraries/Config.class.php:1043 -#: libraries/Theme_Manager.class.php:310 +#: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 +#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 +#: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 -#: libraries/common.lib.php:1340 libraries/common.lib.php:2289 +#: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 -#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:275 -#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:531 -#: libraries/display_tbl.lib.php:613 libraries/replication_gui.lib.php:75 +#: libraries/display_export.lib.php:269 libraries/display_import.lib.php:275 +#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 +#: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 #: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:781 -#: main.php:127 navigation.php:231 pdf_pages.php:291 pdf_pages.php:327 -#: pdf_pages.php:529 pmd_pdf.php:115 server_binlog.php:128 -#: server_privileges.php:664 server_privileges.php:1616 -#: server_privileges.php:1963 server_privileges.php:2010 -#: server_privileges.php:2049 server_replication.php:234 -#: server_replication.php:317 server_replication.php:340 -#: server_synchronize.php:1208 tbl_change.php:328 tbl_change.php:1172 -#: tbl_change.php:1209 tbl_indexes.php:253 tbl_operations.php:264 -#: tbl_operations.php:301 tbl_operations.php:498 tbl_operations.php:560 -#: tbl_operations.php:680 tbl_select.php:324 tbl_structure.php:561 -#: tbl_structure.php:596 tbl_tracking.php:394 tbl_tracking.php:511 -#: view_create.php:181 view_operations.php:100 +#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 +#: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 +#: server_privileges.php:663 server_privileges.php:1620 +#: server_privileges.php:1967 server_privileges.php:2014 +#: server_privileges.php:2053 server_replication.php:233 +#: server_replication.php:316 server_replication.php:339 +#: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 +#: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 +#: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 +#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "Vykonaj" -#: browse_foreigners.php:167 browse_foreigners.php:171 -#: libraries/Index.class.php:441 tbl_tracking.php:319 +#: browse_foreigners.php:166 browse_foreigners.php:170 +#: libraries/Index.class.php:441 tbl_tracking.php:314 msgid "Keyname" msgstr "Kľúčový názov" -#: browse_foreigners.php:168 browse_foreigners.php:170 -#: server_collations.php:54 server_collations.php:66 server_engines.php:58 +#: browse_foreigners.php:167 browse_foreigners.php:169 +#: server_collations.php:54 server_collations.php:66 server_engines.php:57 #: server_status.php:738 msgid "Description" msgstr "Popis" -#: browse_foreigners.php:246 browse_foreigners.php:255 -#: browse_foreigners.php:267 browse_foreigners.php:275 +#: browse_foreigners.php:245 browse_foreigners.php:254 +#: browse_foreigners.php:266 browse_foreigners.php:274 msgid "Use this value" msgstr "Použiť túto hodnotu" -#: db_create.php:45 +#: bs_disp_as_mime_type.php:29 bs_play_media.php:35 +msgid "No blob streaming server configured!" +msgstr "" + +#: bs_disp_as_mime_type.php:35 +msgid "Failed to fetch headers" +msgstr "" + +#: bs_disp_as_mime_type.php:41 +msgid "Failed to open remote URL" +msgstr "" + +#: db_create.php:44 #, php-format msgid "Database %1$s has been created." msgstr "Databáza %1$s bola vytvorená." -#: db_datadict.php:48 db_operations.php:377 +#: db_datadict.php:48 db_operations.php:313 msgid "Database comment: " msgstr "Komentár k databáze: " -#: db_datadict.php:164 libraries/tbl_properties.inc.php:723 -#: pdf_schema.php:1235 tbl_operations.php:346 tbl_printview.php:128 +#: db_datadict.php:164 libraries/tbl_properties.inc.php:722 +#: pdf_schema.php:1234 tbl_operations.php:344 tbl_printview.php:127 msgid "Table comments" msgstr "Komentár k tabuľke" -#: db_datadict.php:173 db_qbe.php:173 libraries/Index.class.php:445 +#: db_datadict.php:173 db_qbe.php:170 libraries/Index.class.php:445 #: libraries/export/htmlword.php:243 libraries/export/latex.php:364 #: libraries/export/odt.php:293 libraries/export/texytext.php:233 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:274 -#: pdf_schema.php:1261 pdf_schema.php:1282 tbl_change.php:306 -#: tbl_indexes.php:188 tbl_printview.php:140 tbl_relation.php:401 -#: tbl_select.php:133 tbl_structure.php:176 tbl_tracking.php:272 -#: tbl_tracking.php:323 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 +#: pdf_schema.php:1260 pdf_schema.php:1281 tbl_change.php:301 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:132 tbl_structure.php:175 tbl_tracking.php:267 +#: tbl_tracking.php:318 #, fuzzy #| msgid "Column names" msgid "Column" msgstr "Názvy stĺpcov" -#: db_datadict.php:174 db_printview.php:105 libraries/Index.class.php:442 +#: db_datadict.php:174 db_printview.php:104 libraries/Index.class.php:442 #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 #: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:244 #: libraries/export/latex.php:364 libraries/export/odt.php:296 #: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:99 -#: pdf_schema.php:1262 pdf_schema.php:1283 server_privileges.php:2062 -#: tbl_change.php:285 tbl_change.php:312 tbl_printview.php:141 -#: tbl_printview.php:311 tbl_select.php:134 tbl_structure.php:177 -#: tbl_structure.php:658 tbl_tracking.php:273 tbl_tracking.php:320 +#: pdf_schema.php:1261 pdf_schema.php:1282 server_privileges.php:2066 +#: tbl_change.php:280 tbl_change.php:307 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:133 tbl_structure.php:176 +#: tbl_structure.php:656 tbl_tracking.php:268 tbl_tracking.php:315 msgid "Type" msgstr "Typ" #: db_datadict.php:176 libraries/Index.class.php:448 #: libraries/export/htmlword.php:245 libraries/export/latex.php:364 #: libraries/export/odt.php:299 libraries/export/texytext.php:235 -#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1264 -#: pdf_schema.php:1285 tbl_change.php:321 tbl_printview.php:143 -#: tbl_structure.php:180 tbl_tracking.php:275 tbl_tracking.php:326 +#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1263 +#: pdf_schema.php:1284 tbl_change.php:316 tbl_printview.php:142 +#: tbl_structure.php:179 tbl_tracking.php:270 tbl_tracking.php:321 msgid "Null" msgstr "Nulový" -#: db_datadict.php:177 db_structure.php:500 libraries/export/htmlword.php:246 +#: db_datadict.php:177 db_structure.php:486 libraries/export/htmlword.php:246 #: libraries/export/latex.php:364 libraries/export/odt.php:302 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:105 -#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 -#: tbl_structure.php:181 tbl_tracking.php:276 +#: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:143 +#: tbl_structure.php:180 tbl_tracking.php:271 msgid "Default" msgstr "Predvolené" #: db_datadict.php:181 libraries/export/htmlword.php:248 #: libraries/export/latex.php:366 libraries/export/odt.php:306 -#: libraries/export/texytext.php:238 pdf_schema.php:1267 pdf_schema.php:1288 -#: tbl_printview.php:148 +#: libraries/export/texytext.php:238 pdf_schema.php:1266 pdf_schema.php:1287 +#: tbl_printview.php:147 msgid "Links to" msgstr "Linkovať na" -#: db_datadict.php:183 db_printview.php:111 libraries/export/htmlword.php:251 +#: db_datadict.php:183 db_printview.php:110 libraries/export/htmlword.php:251 #: libraries/export/latex.php:49 libraries/export/latex.php:369 #: libraries/export/odt.php:37 libraries/export/odt.php:311 #: libraries/export/sql.php:29 libraries/export/texytext.php:241 -#: libraries/tbl_properties.inc.php:129 pdf_schema.php:1278 -#: pdf_schema.php:1289 tbl_printview.php:150 +#: libraries/tbl_properties.inc.php:128 pdf_schema.php:1277 +#: pdf_schema.php:1288 tbl_printview.php:149 msgid "Comments" msgstr "Komentáre" #: db_datadict.php:266 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/export/htmlword.php:321 #: libraries/export/latex.php:434 libraries/export/odt.php:367 -#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:262 -#: pdf_schema.php:1343 server_privileges.php:1560 server_privileges.php:1571 -#: server_privileges.php:1881 server_privileges.php:1886 -#: server_privileges.php:2179 sql.php:131 sql.php:193 tbl_printview.php:227 -#: tbl_structure.php:349 tbl_tracking.php:336 tbl_tracking.php:341 +#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:261 +#: pdf_schema.php:1342 server_privileges.php:1564 server_privileges.php:1575 +#: server_privileges.php:1885 server_privileges.php:1890 +#: server_privileges.php:2183 sql.php:130 sql.php:192 tbl_printview.php:226 +#: tbl_structure.php:347 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "Nie" @@ -179,17 +191,17 @@ msgstr "Nie" #: libraries/mult_submits.inc.php:49 libraries/mult_submits.inc.php:54 #: libraries/mult_submits.inc.php:59 libraries/mult_submits.inc.php:91 #: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:105 -#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:261 -#: libraries/mult_submits.inc.php:272 pdf_schema.php:1343 -#: server_databases.php:63 server_privileges.php:1557 -#: server_privileges.php:1571 server_privileges.php:1881 -#: server_privileges.php:1884 server_privileges.php:2179 sql.php:192 -#: tbl_printview.php:227 tbl_structure.php:39 tbl_structure.php:349 -#: tbl_tracking.php:334 tbl_tracking.php:339 +#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:260 +#: libraries/mult_submits.inc.php:271 pdf_schema.php:1342 +#: server_databases.php:61 server_privileges.php:1561 +#: server_privileges.php:1575 server_privileges.php:1885 +#: server_privileges.php:1888 server_privileges.php:2183 sql.php:191 +#: tbl_printview.php:226 tbl_structure.php:38 tbl_structure.php:347 +#: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" msgstr "Áno" -#: db_datadict.php:321 db_printview.php:265 tbl_printview.php:496 +#: db_datadict.php:321 db_printview.php:264 tbl_printview.php:495 msgid "Print" msgstr "Vytlačiť" @@ -197,196 +209,154 @@ msgstr "Vytlačiť" msgid "View dump (schema) of database" msgstr "Zobraziť dump (schému) databázy" -#: db_export.php:32 db_printview.php:95 db_qbe.php:101 db_structure.php:50 -#: db_tracking.php:34 export.php:352 navigation.php:326 +#: db_export.php:32 db_printview.php:94 db_qbe.php:98 db_structure.php:49 +#: db_tracking.php:30 export.php:350 navigation.php:325 msgid "No tables found in database." msgstr "Neboli nájdené žiadne tabuľky v tejto datábaze." -#: db_export.php:42 db_search.php:326 server_export.php:26 +#: db_export.php:42 db_search.php:326 server_export.php:24 msgid "Select All" msgstr "Označiť všetko" -#: db_export.php:44 db_search.php:329 server_export.php:28 +#: db_export.php:44 db_search.php:329 server_export.php:26 msgid "Unselect All" msgstr "Odznačiť všetko" -#: db_operations.php:37 tbl_create.php:49 +#: db_operations.php:33 tbl_create.php:47 msgid "The database name is empty!" msgstr "Meno databázy je prázdne!" -#: db_operations.php:235 +#: db_operations.php:231 #, php-format msgid "Database %s has been renamed to %s" msgstr "Databáza %s bola premenovaná na %s" -#: db_operations.php:239 +#: db_operations.php:235 #, php-format msgid "Database %s has been copied to %s" msgstr "Databáza %s bola skopírovaná na %s" -#: db_operations.php:411 +#: db_operations.php:347 msgid "Rename database to" msgstr "Premenovať databázu na" -#: db_operations.php:416 server_processlist.php:56 +#: db_operations.php:352 server_processlist.php:56 msgid "Command" msgstr "Príkaz" -#: db_operations.php:428 tbl_change.php:1141 +#: db_operations.php:364 tbl_change.php:1039 msgid "and then" msgstr "a potom" -#: db_operations.php:454 +#: db_operations.php:390 msgid "Copy database to" msgstr "Skopírovať databázu na" -#: db_operations.php:461 tbl_operations.php:527 tbl_tracking.php:387 +#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Iba štruktúru" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:389 +#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Štruktúru a dáta" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:388 +#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Iba dáta" -#: db_operations.php:471 +#: db_operations.php:407 msgid "CREATE DATABASE before copying" msgstr "Vytvoriť databázu (CREATE DATABASE) pred kopírovaním" -#: db_operations.php:474 libraries/export/sql.php:51 +#: db_operations.php:410 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 -#: libraries/export/sql.php:81 tbl_operations.php:535 +#: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "Pridať %s" -#: db_operations.php:478 libraries/export/sql.php:77 tbl_operations.php:298 -#: tbl_operations.php:537 +#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Pridať hodnotu AUTO_INCREMENT" -#: db_operations.php:482 tbl_operations.php:544 +#: db_operations.php:418 tbl_operations.php:542 msgid "Add constraints" msgstr "Pridať obmedzenia" -#: db_operations.php:495 +#: db_operations.php:431 msgid "Switch to copied database" msgstr "Prepnúť na skopírovanú databázu" -#: db_operations.php:536 -msgid "BLOB Repository" -msgstr "" - -#: db_operations.php:539 db_tracking.php:75 libraries/common.lib.php:1357 -#: libraries/server_links.inc.php:48 server_processlist.php:58 -#: tbl_tracking.php:595 test/theme.php:100 -msgid "Status" -msgstr "Stav" - -#: db_operations.php:547 -#, fuzzy -#| msgid "Enabled" -msgctxt "BLOB repository" -msgid "Enabled" -msgstr "Zapnuté" - -#: db_operations.php:551 -#, fuzzy -msgid "Disable" -msgstr "Vypnuté" - -#: db_operations.php:561 -msgid "Damaged" -msgstr "Poškodené" - -#: db_operations.php:565 -#, fuzzy -#| msgid "Repair" -msgctxt "BLOB repository" -msgid "Repair" -msgstr "Opraviť" - -#: db_operations.php:573 -#, fuzzy -#| msgid "Disabled" -msgctxt "BLOB repository" -msgid "Disabled" -msgstr "Vypnuté" - -#: db_operations.php:577 -#, fuzzy -msgid "Enable" -msgstr "Zapnuté" - -#: db_operations.php:601 libraries/Index.class.php:447 +#: db_operations.php:451 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 -#: server_collations.php:53 server_collations.php:65 server_databases.php:110 -#: tbl_operations.php:362 tbl_select.php:135 tbl_structure.php:178 -#: tbl_structure.php:766 tbl_tracking.php:274 tbl_tracking.php:325 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 +#: server_collations.php:53 server_collations.php:65 server_databases.php:108 +#: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:177 +#: tbl_structure.php:764 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "Zotriedenie" -#: db_operations.php:614 main.php:315 pdf_schema.php:33 -#, php-format +#: db_operations.php:464 pdf_schema.php:32 +#, fuzzy, php-format +#| msgid "" +#| "The additional features for working with linked tables have been " +#| "deactivated. To find out why click %shere%s." msgid "" -"The additional features for working with linked tables have been " -"deactivated. To find out why click %shere%s." +"The phpMyAdmin configuration storage has been deactivated. To find out why " +"click %shere%s." msgstr "" "Prídavné vlastnosti pre prácu s prepojenými tabuľkami boli deaktivované. Ak " "chcete zistiť prečo, kliknite %ssem%s." -#: db_operations.php:647 +#: db_operations.php:497 msgid "Edit PDF Pages" msgstr "Upraviť PDF Stránky" -#: db_printview.php:103 db_tracking.php:71 db_tracking.php:156 +#: db_printview.php:102 db_tracking.php:67 db_tracking.php:152 #: libraries/db_structure.lib.php:37 libraries/export/xml.php:327 -#: libraries/header.inc.php:125 pdf_pages.php:423 server_privileges.php:1657 -#: server_privileges.php:1713 server_privileges.php:1977 -#: server_synchronize.php:422 server_synchronize.php:865 tbl_tracking.php:591 +#: libraries/header.inc.php:125 pdf_pages.php:422 server_privileges.php:1661 +#: server_privileges.php:1717 server_privileges.php:1981 +#: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "Tabuľka" -#: db_printview.php:104 libraries/db_structure.lib.php:47 +#: db_printview.php:103 libraries/db_structure.lib.php:47 #: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 -#: navigation.php:629 navigation.php:651 server_databases.php:121 -#: tbl_printview.php:392 tbl_structure.php:364 tbl_structure.php:776 +#: navigation.php:628 navigation.php:650 server_databases.php:119 +#: tbl_printview.php:391 tbl_structure.php:362 tbl_structure.php:774 msgid "Rows" msgstr "Riadkov" -#: db_printview.php:108 libraries/db_structure.lib.php:58 tbl_indexes.php:189 +#: db_printview.php:107 libraries/db_structure.lib.php:58 tbl_indexes.php:188 msgid "Size" msgstr "Veľkosť" -#: db_printview.php:161 db_structure.php:456 libraries/export/sql.php:556 +#: db_printview.php:160 db_structure.php:442 libraries/export/sql.php:556 #: libraries/export/sql.php:896 msgid "in use" msgstr "práve sa používa" -#: db_printview.php:186 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:511 pdf_schema.php:1240 tbl_printview.php:432 -#: tbl_structure.php:808 +#: db_printview.php:185 libraries/db_info.inc.php:86 +#: libraries/export/sql.php:511 pdf_schema.php:1239 tbl_printview.php:431 +#: tbl_structure.php:806 msgid "Creation" msgstr "Vytvorenie" -#: db_printview.php:195 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:516 pdf_schema.php:1245 tbl_printview.php:442 -#: tbl_structure.php:816 +#: db_printview.php:194 libraries/db_info.inc.php:91 +#: libraries/export/sql.php:516 pdf_schema.php:1244 tbl_printview.php:441 +#: tbl_structure.php:814 msgid "Last update" msgstr "Posledná zmena" -#: db_printview.php:204 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:521 pdf_schema.php:1250 tbl_printview.php:452 -#: tbl_structure.php:824 +#: db_printview.php:203 libraries/db_info.inc.php:96 +#: libraries/export/sql.php:521 pdf_schema.php:1249 tbl_printview.php:451 +#: tbl_structure.php:822 msgid "Last check" msgstr "Posledná kontrola" -#: db_printview.php:221 db_structure.php:479 +#: db_printview.php:220 db_structure.php:465 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -395,94 +365,94 @@ msgstr[0] "%s tabuľka(y)" msgstr[1] "%s tabuľka(y)" msgstr[2] "%s tabuľka(y)" -#: db_qbe.php:28 import.php:453 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1980 libraries/sql_query_form.lib.php:138 -#: tbl_operations.php:212 tbl_relation.php:291 tbl_row_action.php:130 -#: view_operations.php:61 +#: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 +#: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "SQL dopyt bol úspešne vykonaný" -#: db_qbe.php:41 +#: db_qbe.php:38 msgid "You have to choose at least one column to display" msgstr "Zvolte prosím aspoň jeden stĺpec, ktorý chcete zobraziť" -#: db_qbe.php:199 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:865 +#: db_qbe.php:196 libraries/db_structure.lib.php:95 +#: libraries/display_tbl.lib.php:864 msgid "Sort" msgstr "Triediť" -#: db_qbe.php:208 db_qbe.php:242 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:522 libraries/display_tbl.lib.php:827 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:259 -#: tbl_select.php:311 +#: db_qbe.php:205 db_qbe.php:239 libraries/db_structure.lib.php:102 +#: libraries/display_tbl.lib.php:521 libraries/display_tbl.lib.php:826 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:257 +#: tbl_select.php:310 msgid "Ascending" msgstr "Vzostupne" -#: db_qbe.php:209 db_qbe.php:250 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:527 libraries/display_tbl.lib.php:824 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:260 -#: tbl_select.php:312 +#: db_qbe.php:206 db_qbe.php:247 libraries/db_structure.lib.php:110 +#: libraries/display_tbl.lib.php:526 libraries/display_tbl.lib.php:823 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:258 +#: tbl_select.php:311 msgid "Descending" msgstr "Zostupne" -#: db_qbe.php:263 db_tracking.php:77 libraries/display_tbl.lib.php:307 -#: tbl_change.php:275 tbl_tracking.php:596 +#: db_qbe.php:260 db_tracking.php:73 libraries/display_tbl.lib.php:306 +#: tbl_change.php:270 tbl_tracking.php:591 msgid "Show" msgstr "Ukázať" -#: db_qbe.php:299 +#: db_qbe.php:296 msgid "Criteria" msgstr "Kritéria" -#: db_qbe.php:352 db_qbe.php:434 db_qbe.php:526 db_qbe.php:557 +#: db_qbe.php:349 db_qbe.php:431 db_qbe.php:523 db_qbe.php:554 msgid "Ins" msgstr "Vložiť" -#: db_qbe.php:356 db_qbe.php:438 db_qbe.php:523 db_qbe.php:554 +#: db_qbe.php:353 db_qbe.php:435 db_qbe.php:520 db_qbe.php:551 msgid "And" msgstr "a" -#: db_qbe.php:365 db_qbe.php:446 db_qbe.php:528 db_qbe.php:559 +#: db_qbe.php:362 db_qbe.php:443 db_qbe.php:525 db_qbe.php:556 msgid "Del" msgstr "Zmazať" -#: db_qbe.php:369 db_qbe.php:450 db_qbe.php:521 db_qbe.php:552 -#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:778 -#: server_privileges.php:297 tbl_change.php:1027 tbl_indexes.php:249 -#: tbl_select.php:285 +#: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 +#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:777 +#: server_privileges.php:296 tbl_change.php:925 tbl_indexes.php:248 +#: tbl_select.php:284 msgid "Or" msgstr "alebo" -#: db_qbe.php:506 +#: db_qbe.php:503 msgid "Modify" msgstr "Zmeniť" -#: db_qbe.php:583 +#: db_qbe.php:580 #, fuzzy #| msgid "Add/Delete Criteria Row" msgid "Add/Delete criteria rows" msgstr "Pridať/Odobrať kritéria riadku" -#: db_qbe.php:595 +#: db_qbe.php:592 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Add/Delete columns" msgstr "Pridať/Odobrať polia stĺpcov" -#: db_qbe.php:608 db_qbe.php:633 +#: db_qbe.php:605 db_qbe.php:630 msgid "Update Query" msgstr "Aktualizovať dopyt" -#: db_qbe.php:616 +#: db_qbe.php:613 msgid "Use Tables" msgstr "Použiť tabuľky" -#: db_qbe.php:639 +#: db_qbe.php:636 #, php-format msgid "SQL query on database %s:" msgstr " SQL dopyt v databáze %s:" -#: db_qbe.php:933 libraries/common.lib.php:1222 +#: db_qbe.php:930 libraries/common.lib.php:1215 msgid "Submit Query" msgstr "Odošli dopyt" @@ -523,17 +493,17 @@ msgstr[0] "%s výskyt(ov)v tabuľke %s" msgstr[1] "%s výskyt(ov)v tabuľke %s" msgstr[2] "%s výskyt(ov)v tabuľke %s" -#: db_search.php:249 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2831 -#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:49 -#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:466 +#: db_search.php:249 db_structure.php:75 db_structure.php:76 +#: db_structure.php:88 db_structure.php:90 db_structure.php:101 +#: db_structure.php:103 libraries/common.lib.php:2836 +#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 +#: tbl_structure.php:35 tbl_structure.php:47 tbl_structure.php:464 msgid "Browse" msgstr "Prechádzať" -#: db_search.php:254 libraries/display_tbl.lib.php:1164 -#: libraries/display_tbl.lib.php:2055 libraries/sql_query_form.lib.php:453 -#: pdf_pages.php:285 pdf_pages.php:424 pdf_pages.php:460 pdf_pages.php:488 +#: db_search.php:254 libraries/display_tbl.lib.php:1163 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 msgid "Delete" @@ -575,230 +545,236 @@ msgstr "V tabuľke(ách):" msgid "Inside column:" msgstr "V tabuľke(ách):" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2830 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:75 +#: db_structure.php:79 db_structure.php:80 db_structure.php:92 +#: db_structure.php:93 db_structure.php:105 db_structure.php:106 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 +#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Vložiť" -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2827 libraries/common.lib.php:2834 -#: libraries/db_links.inc.php:62 libraries/export/htmlword.php:22 +#: db_structure.php:81 db_structure.php:94 db_structure.php:107 +#: libraries/common.lib.php:2832 libraries/common.lib.php:2839 +#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 -#: libraries/tbl_links.inc.php:55 pmd_general.php:133 -#: server_privileges.php:593 server_replication.php:314 tbl_tracking.php:268 +#: libraries/tbl_links.inc.php:54 pmd_general.php:133 +#: server_privileges.php:592 server_replication.php:313 tbl_tracking.php:263 msgid "Structure" msgstr "Štruktúra" -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:544 db_structure.php:545 db_tracking.php:90 -#: libraries/Index.class.php:482 libraries/common.lib.php:1659 -#: libraries/db_links.inc.php:99 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:126 -#: server_databases.php:351 tbl_structure.php:26 tbl_structure.php:150 -#: tbl_structure.php:151 tbl_structure.php:470 +#: db_structure.php:82 db_structure.php:83 db_structure.php:95 +#: db_structure.php:96 db_structure.php:108 db_structure.php:109 +#: db_structure.php:530 db_structure.php:531 db_tracking.php:86 +#: libraries/Index.class.php:482 libraries/common.lib.php:1663 +#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 +#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 +#: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" msgstr "Odstrániť" -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:542 db_structure.php:543 libraries/common.lib.php:1658 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:104 +#: db_structure.php:84 db_structure.php:85 db_structure.php:97 +#: db_structure.php:98 db_structure.php:110 db_structure.php:111 +#: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 +#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 msgid "Empty" msgstr "Vyprázdniť" -#: db_structure.php:315 libraries/tbl_links.inc.php:99 +#: db_structure.php:301 libraries/tbl_links.inc.php:98 #, php-format msgid "Table %s has been emptied" msgstr "Tabuľka %s bola vyprázdená" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "View %s has been dropped" msgstr "Pohľad %s bol odstránený" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "Table %s has been dropped" msgstr "Tabuľka %s bola odstránená" -#: db_structure.php:332 +#: db_structure.php:318 msgid "Tracking is active." msgstr "" -#: db_structure.php:334 +#: db_structure.php:320 msgid "Tracking is not active." msgstr "" -#: db_structure.php:419 libraries/display_tbl.lib.php:1943 +#: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -#: db_structure.php:433 db_structure.php:447 libraries/header.inc.php:125 -#: libraries/tbl_info.inc.php:65 tbl_structure.php:184 test/theme.php:73 +#: db_structure.php:419 db_structure.php:433 libraries/header.inc.php:125 +#: libraries/tbl_info.inc.php:60 tbl_structure.php:183 test/theme.php:73 msgid "View" msgstr "Pohľad" -#: db_structure.php:484 libraries/db_structure.lib.php:40 -#: libraries/server_links.inc.php:69 server_replication.php:32 -#: server_replication.php:163 server_status.php:368 +#: db_structure.php:470 libraries/db_structure.lib.php:40 +#: libraries/server_links.inc.php:69 server_replication.php:31 +#: server_replication.php:162 server_status.php:368 msgid "Replication" msgstr "Replikácia" -#: db_structure.php:488 +#: db_structure.php:474 msgid "Sum" msgstr "Celkom" -#: db_structure.php:495 libraries/StorageEngine.class.php:349 +#: db_structure.php:481 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "Na tomto MySQL servri je prednastaveným úložným systémom %s." -#: db_structure.php:523 db_structure.php:540 db_structure.php:541 -#: libraries/display_tbl.lib.php:2080 libraries/display_tbl.lib.php:2085 -#: libraries/mult_submits.inc.php:15 server_databases.php:345 -#: server_databases.php:350 server_privileges.php:1588 tbl_structure.php:454 -#: tbl_structure.php:463 +#: db_structure.php:509 db_structure.php:526 db_structure.php:527 +#: libraries/display_tbl.lib.php:2039 libraries/display_tbl.lib.php:2044 +#: libraries/mult_submits.inc.php:15 server_databases.php:343 +#: server_databases.php:348 server_privileges.php:1592 tbl_structure.php:452 +#: tbl_structure.php:461 msgid "With selected:" msgstr "Výber:" -#: db_structure.php:526 libraries/display_tbl.lib.php:2075 -#: server_databases.php:347 server_privileges.php:569 -#: server_privileges.php:1591 tbl_structure.php:457 +#: db_structure.php:512 libraries/display_tbl.lib.php:2034 +#: server_databases.php:345 server_privileges.php:568 +#: server_privileges.php:1595 tbl_structure.php:455 msgid "Check All" msgstr "Označiť všetko" -#: db_structure.php:530 libraries/display_tbl.lib.php:2076 -#: libraries/replication_gui.lib.php:35 server_databases.php:349 -#: server_privileges.php:572 server_privileges.php:1595 tbl_structure.php:461 +#: db_structure.php:516 libraries/display_tbl.lib.php:2035 +#: libraries/replication_gui.lib.php:35 server_databases.php:347 +#: server_privileges.php:571 server_privileges.php:1599 tbl_structure.php:459 msgid "Uncheck All" msgstr "Odznačiť všetko" -#: db_structure.php:535 +#: db_structure.php:521 msgid "Check tables having overhead" msgstr "Zvoliť neoptimálne" -#: db_structure.php:546 db_structure.php:547 db_structure.php:598 -#: libraries/display_tbl.lib.php:2179 libraries/mult_submits.inc.php:27 -#: tbl_structure.php:491 tbl_structure.php:493 +#: db_structure.php:532 db_structure.php:533 db_structure.php:584 +#: libraries/display_tbl.lib.php:2138 libraries/mult_submits.inc.php:27 +#: tbl_structure.php:489 tbl_structure.php:491 msgid "Print view" msgstr "Náhľad k tlači" -#: db_structure.php:548 db_structure.php:549 libraries/mult_submits.inc.php:41 -#: tbl_operations.php:580 +#: db_structure.php:534 db_structure.php:535 libraries/mult_submits.inc.php:41 +#: tbl_operations.php:578 msgid "Check table" msgstr "Skontrolovať tabuľku" -#: db_structure.php:550 db_structure.php:551 libraries/mult_submits.inc.php:46 -#: tbl_operations.php:620 tbl_structure.php:708 tbl_structure.php:710 +#: db_structure.php:536 db_structure.php:537 libraries/mult_submits.inc.php:46 +#: tbl_operations.php:618 tbl_structure.php:706 tbl_structure.php:708 msgid "Optimize table" msgstr "Optimalizovať tabuľku" -#: db_structure.php:552 db_structure.php:553 libraries/mult_submits.inc.php:51 -#: tbl_operations.php:610 +#: db_structure.php:538 db_structure.php:539 libraries/mult_submits.inc.php:51 +#: tbl_operations.php:608 msgid "Repair table" msgstr "Opraviť tabuľku" -#: db_structure.php:554 db_structure.php:555 libraries/mult_submits.inc.php:56 -#: tbl_operations.php:600 +#: db_structure.php:540 db_structure.php:541 libraries/mult_submits.inc.php:56 +#: tbl_operations.php:598 msgid "Analyze table" msgstr "Analyzovať tabuľku" -#: db_structure.php:556 db_structure.php:557 libraries/db_links.inc.php:70 -#: libraries/display_export.lib.php:82 libraries/display_tbl.lib.php:2093 -#: libraries/display_tbl.lib.php:2224 libraries/mult_submits.inc.php:61 -#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:81 -#: pmd_pdf.php:83 pmd_pdf.php:108 server_privileges.php:1372 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 +#: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 +#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 +#: pmd_pdf.php:81 pmd_pdf.php:106 server_privileges.php:1376 #: setup/frames/menu.inc.php:22 tbl_row_action.php:58 msgid "Export" msgstr "Exportovať" -#: db_structure.php:605 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:591 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "Dátový slovník" -#: db_tracking.php:65 +#: db_tracking.php:61 msgid "Tracked tables" msgstr "" -#: db_tracking.php:70 libraries/export/htmlword.php:85 +#: db_tracking.php:66 libraries/export/htmlword.php:85 #: libraries/export/latex.php:152 libraries/export/odt.php:112 #: libraries/export/sql.php:339 libraries/export/texytext.php:84 #: libraries/export/xml.php:254 libraries/header.inc.php:105 -#: libraries/header_printview.inc.php:57 server_databases.php:168 -#: server_privileges.php:1652 server_privileges.php:1713 -#: server_privileges.php:1971 server_processlist.php:55 -#: server_synchronize.php:1178 server_synchronize.php:1182 -#: tbl_tracking.php:590 test/theme.php:64 +#: libraries/header_printview.inc.php:57 server_databases.php:166 +#: server_privileges.php:1656 server_privileges.php:1717 +#: server_privileges.php:1975 server_processlist.php:55 +#: server_synchronize.php:1177 server_synchronize.php:1181 +#: tbl_tracking.php:585 test/theme.php:64 msgid "Database" msgstr "Databáza" -#: db_tracking.php:72 +#: db_tracking.php:68 msgid "Last version" msgstr "" -#: db_tracking.php:73 tbl_tracking.php:593 +#: db_tracking.php:69 tbl_tracking.php:588 #, fuzzy msgid "Created" msgstr "Vytvoriť" -#: db_tracking.php:74 tbl_tracking.php:594 +#: db_tracking.php:70 tbl_tracking.php:589 msgid "Updated" msgstr "" -#: db_tracking.php:76 libraries/Index.class.php:439 -#: libraries/db_structure.lib.php:44 server_databases.php:202 -#: server_privileges.php:1534 server_privileges.php:1717 -#: server_privileges.php:2065 tbl_structure.php:186 +#: db_tracking.php:71 libraries/common.lib.php:1361 +#: libraries/server_links.inc.php:48 server_processlist.php:58 +#: tbl_tracking.php:590 test/theme.php:100 +msgid "Status" +msgstr "Stav" + +#: db_tracking.php:72 libraries/Index.class.php:439 +#: libraries/db_structure.lib.php:44 server_databases.php:200 +#: server_privileges.php:1538 server_privileges.php:1721 +#: server_privileges.php:2069 tbl_structure.php:185 msgid "Action" msgstr "Akcia" -#: db_tracking.php:87 db_tracking.php:119 +#: db_tracking.php:83 db_tracking.php:115 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:105 tbl_tracking.php:547 tbl_tracking.php:605 -#: tbl_tracking.php:612 +#: db_tracking.php:101 tbl_tracking.php:542 tbl_tracking.php:600 +#: tbl_tracking.php:607 msgid "active" msgstr "" -#: db_tracking.php:107 tbl_tracking.php:549 tbl_tracking.php:607 -#: tbl_tracking.php:609 +#: db_tracking.php:103 tbl_tracking.php:544 tbl_tracking.php:602 +#: tbl_tracking.php:604 msgid "not active" msgstr "" -#: db_tracking.php:120 +#: db_tracking.php:116 #, fuzzy msgid "Versions" msgstr "Perština" -#: db_tracking.php:121 tbl_tracking.php:378 tbl_tracking.php:623 +#: db_tracking.php:117 tbl_tracking.php:373 tbl_tracking.php:618 msgid "Tracking report" msgstr "" -#: db_tracking.php:122 tbl_tracking.php:250 tbl_tracking.php:623 +#: db_tracking.php:118 tbl_tracking.php:245 tbl_tracking.php:618 #, fuzzy msgid "Structure snapshot" msgstr "Iba štruktúru" -#: db_tracking.php:151 +#: db_tracking.php:147 msgid "Untracked tables" msgstr "" -#: db_tracking.php:171 db_tracking.php:173 tbl_structure.php:527 -#: tbl_structure.php:529 +#: db_tracking.php:167 db_tracking.php:169 tbl_structure.php:525 +#: tbl_structure.php:527 #, fuzzy msgid "Track table" msgstr "Skontrolovať tabuľku" -#: db_tracking.php:199 +#: db_tracking.php:195 #, fuzzy msgid "Database Log" msgstr "Databáza" @@ -807,12 +783,12 @@ msgstr "Databáza" msgid "Selected export type has to be saved in file!" msgstr "Vybraný typ exportu musí byť uložený do súboru!" -#: export.php:153 export.php:178 export.php:620 +#: export.php:152 export.php:177 export.php:615 #, php-format msgid "Insufficient space to save the file %s." msgstr "Nedostatok miesta pre uloženie súboru %s." -#: export.php:287 +#: export.php:286 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -820,17 +796,17 @@ msgstr "" "Súbor %s už existuje na servery, zmente názov súboru alebo zvolte prepísanie " "súboru." -#: export.php:291 export.php:295 +#: export.php:290 export.php:294 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Web server nemá oprávenia na uloženie do súboru %s." -#: export.php:622 +#: export.php:617 #, php-format msgid "Dump has been saved to file %s." msgstr "Dump (schéma) bol uložený do súboru %s." -#: import.php:59 +#: import.php:58 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -839,14 +815,14 @@ 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ť." -#: import.php:278 import.php:331 libraries/File.class.php:840 -#: libraries/File.class.php:950 +#: import.php:277 import.php:330 libraries/File.class.php:566 +#: libraries/File.class.php:676 msgid "File could not be read" msgstr "Súbor sa nedá prečítať" -#: import.php:286 import.php:295 import.php:314 import.php:323 -#: libraries/File.class.php:1020 libraries/File.class.php:1028 -#: libraries/File.class.php:1044 libraries/File.class.php:1052 +#: import.php:285 import.php:294 import.php:313 import.php:322 +#: libraries/File.class.php:746 libraries/File.class.php:754 +#: libraries/File.class.php:770 libraries/File.class.php:778 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -855,7 +831,7 @@ msgstr "" "Pokúsili ste sa načítať súbor s nepodporovanou kompresiou (%s). Buď nie je " "zahrnutá podpora tejto kompresie alebo bola deaktivovaná v konfigurácii." -#: import.php:336 +#: import.php:335 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -864,31 +840,31 @@ msgstr "" "Neboli prijaté žiadne dáta na import. Buď nebol načítaný žiadny súbor alebo " "jeho veľkosť prekročila maximálnu veľkosť povolenú v PHP. Pozri FAQ 1.16." -#: import.php:371 libraries/display_import.lib.php:23 +#: import.php:370 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "" "Nebolo možné načítať importovacie pluginy, skontrolujte prosím vašu " "inštaláciu!" -#: import.php:396 +#: import.php:395 msgid "The bookmark has been deleted." msgstr "Záznam z obľúbených bol zmazaný." -#: import.php:400 +#: import.php:399 msgid "Showing bookmark" msgstr "Zobrazujem obľúbený príkaz" -#: import.php:402 sql.php:625 +#: import.php:401 sql.php:618 #, php-format msgid "Bookmark %s created" msgstr "Príkaz %s bol zaradený medzi obľúbené" -#: import.php:408 import.php:414 +#: import.php:407 import.php:413 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Import bol úspešne ukončený, bolo vykonaných %d dopytov." -#: import.php:423 +#: import.php:422 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -896,7 +872,7 @@ msgstr "" "Časový limit behu skriptu vypršal. Ak chcete import súboru dokončiť, " "odošlite znova formulár a import bude pokračovať." -#: import.php:425 +#: import.php:424 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -905,19 +881,19 @@ msgstr "" "že phpMyAdmin nebude schopný dokončiť tento import, pokiaľ nebude zvýšený " "časový limit behu skriptu v php." -#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:240 +#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:239 #: user_password.php:110 msgid "Back" msgstr "Späť" -#: index.php:188 +#: index.php:183 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin funguje lepšie s prehliadačmi podporujúcimi rámy." -#: js/messages.php:25 server_synchronize.php:344 server_synchronize.php:356 -#: server_synchronize.php:372 server_synchronize.php:379 -#: server_synchronize.php:738 server_synchronize.php:766 -#: server_synchronize.php:794 server_synchronize.php:806 +#: js/messages.php:25 server_synchronize.php:343 server_synchronize.php:355 +#: server_synchronize.php:371 server_synchronize.php:378 +#: server_synchronize.php:737 server_synchronize.php:765 +#: server_synchronize.php:793 server_synchronize.php:805 msgid "Click to select" msgstr "" @@ -925,15 +901,15 @@ msgstr "" msgid "Click to unselect" msgstr "" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:88 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:87 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Možnosť \"DROP DATABASE\" vypnutá." -#: js/messages.php:30 libraries/mult_submits.inc.php:257 sql.php:187 +#: js/messages.php:30 libraries/mult_submits.inc.php:256 sql.php:186 msgid "Do you really want to " msgstr "Skutočne chcete vykonať príkaz " -#: js/messages.php:31 libraries/mult_submits.inc.php:257 sql.php:171 +#: js/messages.php:31 libraries/mult_submits.inc.php:256 sql.php:170 msgid "You are about to DESTROY a complete database!" msgstr "Chystáte sa ZRUŠIŤ celú databázu!" @@ -962,11 +938,11 @@ msgstr "Názov hostiteľa je prázdny!" msgid "The user name is empty!" msgstr "Meno používateľa je prázdne!" -#: js/messages.php:44 server_privileges.php:1228 user_password.php:65 +#: js/messages.php:44 server_privileges.php:1229 user_password.php:65 msgid "The password is empty!" msgstr "Heslo je prázdne!" -#: js/messages.php:45 server_privileges.php:1226 user_password.php:68 +#: js/messages.php:45 server_privileges.php:1227 user_password.php:68 msgid "The passwords aren't the same!" msgstr "Heslá sa nezhodujú!" @@ -974,29 +950,29 @@ msgstr "Heslá sa nezhodujú!" msgid "Cancel" msgstr "Zrušiť" -#: js/messages.php:52 pmd_save_pos.php:53 +#: js/messages.php:52 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "Zmeny boli uložené" -#: js/messages.php:53 pmd_relation_upd.php:48 +#: js/messages.php:53 pmd_relation_upd.php:47 #, fuzzy msgid "Relation deleted" msgstr "Zobraziť prepojenia" -#: js/messages.php:54 pmd_relation_new.php:63 +#: js/messages.php:54 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:55 pmd_relation_new.php:85 +#: js/messages.php:55 pmd_relation_new.php:84 #, fuzzy msgid "Internal relation added" msgstr "Interné vzťahy" -#: js/messages.php:56 pmd_relation_new.php:62 pmd_relation_new.php:87 +#: js/messages.php:56 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:57 pmd_relation_new.php:30 +#: js/messages.php:57 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "" @@ -1004,13 +980,13 @@ msgstr "" msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:59 libraries/relation.lib.php:94 -#: libraries/relation.lib.php:106 +#: js/messages.php:59 libraries/relation.lib.php:89 +#: libraries/relation.lib.php:101 msgid "General relation features" msgstr "Možnosti všeobecných vzťahov" -#: js/messages.php:59 libraries/relation.lib.php:88 -#: libraries/relation.lib.php:95 +#: js/messages.php:59 libraries/relation.lib.php:83 +#: libraries/relation.lib.php:90 msgid "Disabled" msgstr "Vypnuté" @@ -1026,7 +1002,7 @@ msgstr "" msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:547 +#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" @@ -1057,10 +1033,10 @@ msgid "Prev" msgstr "Predchádzajúci" #. l10n: Display text for next month link in calendar -#: js/messages.php:81 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:337 -#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:422 -#: tbl_structure.php:800 +#: js/messages.php:81 libraries/common.lib.php:2358 +#: libraries/common.lib.php:2361 libraries/display_tbl.lib.php:336 +#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 +#: tbl_structure.php:798 msgid "Next" msgstr "Ďalší" @@ -1134,27 +1110,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1562 +#: js/messages.php:101 libraries/common.lib.php:1566 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1564 +#: js/messages.php:103 libraries/common.lib.php:1568 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1566 +#: js/messages.php:105 libraries/common.lib.php:1570 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1568 +#: js/messages.php:107 libraries/common.lib.php:1572 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1570 +#: js/messages.php:109 libraries/common.lib.php:1574 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1162,37 +1138,37 @@ msgid "May" msgstr "Máj" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1572 +#: js/messages.php:111 libraries/common.lib.php:1576 msgid "Jun" msgstr "Jún" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1574 +#: js/messages.php:113 libraries/common.lib.php:1578 msgid "Jul" msgstr "Júl" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1576 +#: js/messages.php:115 libraries/common.lib.php:1580 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1578 +#: js/messages.php:117 libraries/common.lib.php:1582 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1580 +#: js/messages.php:119 libraries/common.lib.php:1584 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:121 libraries/common.lib.php:1582 +#: js/messages.php:121 libraries/common.lib.php:1586 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:123 libraries/common.lib.php:1584 +#: js/messages.php:123 libraries/common.lib.php:1588 msgid "Dec" msgstr "Dec" @@ -1233,37 +1209,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1587 +#: js/messages.php:136 libraries/common.lib.php:1591 msgid "Sun" msgstr "Ne" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1589 +#: js/messages.php:138 libraries/common.lib.php:1593 msgid "Mon" msgstr "Po" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1591 +#: js/messages.php:140 libraries/common.lib.php:1595 msgid "Tue" msgstr "Út" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1593 +#: js/messages.php:142 libraries/common.lib.php:1597 msgid "Wed" msgstr "St" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1595 +#: js/messages.php:144 libraries/common.lib.php:1599 msgid "Thu" msgstr "Št" #. l10n: Short week day name -#: js/messages.php:146 libraries/common.lib.php:1597 +#: js/messages.php:146 libraries/common.lib.php:1601 msgid "Fri" msgstr "Pi" #. l10n: Short week day name -#: js/messages.php:148 libraries/common.lib.php:1599 +#: js/messages.php:148 libraries/common.lib.php:1603 msgid "Sat" msgstr "So" @@ -1343,74 +1319,73 @@ msgstr "za sekundu" msgid "Font size" msgstr "Veľkosť písma" -#: libraries/File.class.php:336 libraries/File.class.php:424 -#: libraries/File.class.php:561 libraries/File.class.php:700 -msgid "Unknown error in file upload." -msgstr "" - -#: libraries/File.class.php:406 +#: libraries/File.class.php:315 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:409 +#: libraries/File.class.php:318 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:412 +#: libraries/File.class.php:321 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:415 +#: libraries/File.class.php:324 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:418 +#: libraries/File.class.php:327 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:421 +#: libraries/File.class.php:330 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:898 +#: libraries/File.class.php:333 +msgid "Unknown error in file upload." +msgstr "" + +#: libraries/File.class.php:624 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "Chyba pri presune súboru, pozrite FAQ 1.11" -#: libraries/Index.class.php:427 tbl_relation.php:528 +#: libraries/Index.class.php:427 tbl_relation.php:526 msgid "No index defined!" msgstr "Nebol definovaný žiadny index!" -#: libraries/Index.class.php:432 server_databases.php:131 tbl_tracking.php:315 +#: libraries/Index.class.php:432 server_databases.php:129 tbl_tracking.php:310 msgid "Indexes" msgstr "Indexy" #: libraries/Index.class.php:443 libraries/mult_submits.inc.php:102 -#: libraries/tbl_properties.inc.php:518 tbl_structure.php:32 -#: tbl_structure.php:154 tbl_structure.php:158 tbl_structure.php:473 -#: tbl_tracking.php:321 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:31 +#: tbl_structure.php:153 tbl_structure.php:157 tbl_structure.php:471 +#: tbl_tracking.php:316 msgid "Unique" msgstr "Unikátny" -#: libraries/Index.class.php:444 tbl_tracking.php:322 +#: libraries/Index.class.php:444 tbl_tracking.php:317 msgid "Packed" msgstr "" -#: libraries/Index.class.php:446 tbl_tracking.php:324 +#: libraries/Index.class.php:446 tbl_tracking.php:319 msgid "Cardinality" msgstr "Mohutnosť" -#: libraries/Index.class.php:449 tbl_tracking.php:278 tbl_tracking.php:327 +#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322 msgid "Comment" msgstr "Komentár" #: libraries/Index.class.php:465 libraries/common.lib.php:609 -#: libraries/common.lib.php:1198 libraries/display_tbl.lib.php:1116 +#: libraries/common.lib.php:1191 libraries/display_tbl.lib.php:1115 #: libraries/import.lib.php:1119 libraries/import.lib.php:1143 -#: pdf_pages.php:284 setup/frames/index.inc.php:124 +#: pdf_pages.php:283 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:349 tbl_row_action.php:68 msgid "Edit" msgstr "Upraviť" @@ -1432,15 +1407,15 @@ msgid "" msgstr "" #: libraries/List_Database.class.php:430 libraries/server_links.inc.php:40 -#: server_databases.php:87 server_privileges.php:1652 +#: server_databases.php:85 server_privileges.php:1656 #: setup/lib/messages.inc.php:107 test/theme.php:92 msgid "Databases" msgstr "Databázy" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:259 libraries/import.lib.php:134 pdf_schema.php:31 -#: pdf_schema.php:231 tbl_change.php:1023 tbl_operations.php:212 -#: tbl_relation.php:289 view_operations.php:61 +#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 +#: tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Chyba" @@ -1468,41 +1443,41 @@ msgid_plural "%1$d rows inserted." msgstr[0] "%1$d riadok/riadkov vložených." msgstr[1] "%1$d riadok/riadkov vložených." -#: libraries/StorageEngine.class.php:196 +#: libraries/StorageEngine.class.php:194 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:352 +#: libraries/StorageEngine.class.php:354 #, php-format msgid "%s is available on this MySQL server." msgstr "Úložný systém %s je na tomto MySQL servri dostupný." -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:357 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "Úložný systém %s bol na tomto MySQL servri deaktivovaný." -#: libraries/StorageEngine.class.php:359 +#: libraries/StorageEngine.class.php:361 #, 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:1018 +#: libraries/Table.class.php:1017 msgid "Invalid database" msgstr "Chybná databáza" -#: libraries/Table.class.php:1032 tbl_get_field.php:25 +#: libraries/Table.class.php:1031 tbl_get_field.php:25 msgid "Invalid table name" msgstr "Chybné meno tabuľky" -#: libraries/Table.class.php:1047 +#: libraries/Table.class.php:1046 #, 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:1131 +#: libraries/Table.class.php:1129 #, php-format msgid "Table %s has been renamed to %s" msgstr "Tabuľka %s bola premenovaná na %s" @@ -1520,22 +1495,22 @@ msgstr "Náhľad nie je dostupný." msgid "take it" msgstr "zvoliť" -#: libraries/Theme_Manager.class.php:114 +#: 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:152 +#: 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:220 +#: 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:296 test/theme.php:160 themes.php:20 +#: libraries/Theme_Manager.class.php:291 test/theme.php:160 themes.php:20 #: themes.php:40 msgid "Theme / Style" msgstr "Vzhľad" @@ -1648,19 +1623,19 @@ msgstr "" msgid "Authenticating..." msgstr "" -#: libraries/blobstreaming.lib.php:689 +#: libraries/blobstreaming.lib.php:340 msgid "View image" msgstr "" -#: libraries/blobstreaming.lib.php:693 +#: libraries/blobstreaming.lib.php:344 msgid "Play audio" msgstr "" -#: libraries/blobstreaming.lib.php:698 +#: libraries/blobstreaming.lib.php:349 msgid "View video" msgstr "" -#: libraries/blobstreaming.lib.php:702 +#: libraries/blobstreaming.lib.php:353 msgid "Download file" msgstr "Stiahnuť súbor" @@ -1715,7 +1690,7 @@ msgstr "Server" msgid "Invalid authentication method set in configuration:" msgstr "V konfigurácii je nastavená nesprávna autentifikačná metóda:" -#: libraries/common.inc.php:909 +#: libraries/common.inc.php:908 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Mali by ste aktualizovať %s na verziu %s alebo vyššiu." @@ -1740,7 +1715,8 @@ msgstr "en" #: libraries/common.lib.php:425 libraries/common.lib.php:427 #: libraries/common.lib.php:429 libraries/common.lib.php:445 #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 -#: libraries/display_export.lib.php:163 libraries/relation.lib.php:84 +#: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 +#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 #: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" @@ -1755,149 +1731,149 @@ msgstr "SQL dopyt" msgid "MySQL said: " msgstr "MySQL hlási: " -#: libraries/common.lib.php:1136 +#: libraries/common.lib.php:1129 #, fuzzy msgid "Failed to connect to SQL validator!" msgstr "Nepodarilo sa pripojiť k zdroju" -#: libraries/common.lib.php:1174 setup/lib/messages.inc.php:350 +#: libraries/common.lib.php:1167 setup/lib/messages.inc.php:350 msgid "Explain SQL" msgstr "Vysvetliť SQL" -#: libraries/common.lib.php:1177 +#: libraries/common.lib.php:1170 msgid "Skip Explain SQL" msgstr "Preskočiť vysvetlenie SQL" -#: libraries/common.lib.php:1211 +#: libraries/common.lib.php:1204 msgid "Without PHP Code" msgstr "bez PHP kódu" -#: libraries/common.lib.php:1214 setup/lib/messages.inc.php:352 +#: libraries/common.lib.php:1207 setup/lib/messages.inc.php:352 msgid "Create PHP Code" msgstr "Vytvoriť PHP kód" -#: libraries/common.lib.php:1232 server_status.php:451 +#: libraries/common.lib.php:1225 server_status.php:451 #: setup/lib/messages.inc.php:351 msgid "Refresh" msgstr "Obnoviť" -#: libraries/common.lib.php:1241 +#: libraries/common.lib.php:1234 msgid "Skip Validate SQL" msgstr "Preskočiť potvrdenie platnosti SQL" -#: libraries/common.lib.php:1244 setup/lib/messages.inc.php:353 +#: libraries/common.lib.php:1237 setup/lib/messages.inc.php:353 msgid "Validate SQL" msgstr "Potvrdiť platnosť SQL" -#: libraries/common.lib.php:1283 +#: libraries/common.lib.php:1287 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1285 +#: libraries/common.lib.php:1289 #, fuzzy #| msgid "Engines" msgid "Inline" msgstr "Systémy" -#: libraries/common.lib.php:1339 libraries/common.lib.php:1354 +#: libraries/common.lib.php:1343 libraries/common.lib.php:1358 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1358 libraries/tbl_triggers.lib.php:27 +#: libraries/common.lib.php:1362 libraries/tbl_triggers.lib.php:27 #: server_processlist.php:57 msgid "Time" msgstr "Čas" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "B" msgstr "Bajtov" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "KiB" msgstr "KB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "MiB" msgstr "MB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "GiB" msgstr "GB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "TiB" msgstr "TB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "PiB" msgstr "PB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "EiB" msgstr "EB" #. l10n: Thousands separator -#: libraries/common.lib.php:1424 +#: libraries/common.lib.php:1428 msgid "," msgstr " " #. l10n: Decimal separator -#: libraries/common.lib.php:1426 +#: libraries/common.lib.php:1430 msgid "." msgstr "," #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1603 +#: libraries/common.lib.php:1607 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%d.%B, %Y - %H:%M" -#: libraries/common.lib.php:1909 +#: libraries/common.lib.php:1913 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dní, %s hodín, %s minút a %s sekúnd" -#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 -#: libraries/display_tbl.lib.php:289 server_status.php:718 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 +#: libraries/display_tbl.lib.php:288 server_status.php:718 msgid "Begin" msgstr "Začiatok" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 -#: libraries/display_tbl.lib.php:290 server_binlog.php:154 +#: libraries/common.lib.php:2328 libraries/common.lib.php:2331 +#: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "Predchádzajúci" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 -#: libraries/display_tbl.lib.php:352 +#: libraries/common.lib.php:2359 libraries/common.lib.php:2362 +#: libraries/display_tbl.lib.php:351 msgid "End" msgstr "Koniec" -#: libraries/common.lib.php:2429 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "Na databázu "%s"." -#: libraries/common.lib.php:2448 +#: libraries/common.lib.php:2453 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Funkčnosť %s je ovplyvnená známou chybou, pozri %s" -#: libraries/common.lib.php:2828 libraries/common.lib.php:2835 -#: libraries/db_links.inc.php:67 libraries/export/sql.php:24 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 +#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 -#: libraries/tbl_links.inc.php:59 querywindow.php:89 test/theme.php:96 +#: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2837 libraries/db_links.inc.php:103 -#: libraries/tbl_links.inc.php:94 libraries/tbl_links.inc.php:116 -#: view_operations.php:88 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: view_operations.php:87 msgid "Operations" msgstr "Operácie" -#: libraries/core.lib.php:282 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1913,38 +1889,38 @@ msgstr "Udalosti" msgid "Name" msgstr "Názov" -#: libraries/db_links.inc.php:44 +#: libraries/db_links.inc.php:43 #, php-format msgid "Database %s has been dropped." msgstr "Databáza %s bola zmazaná." -#: libraries/db_links.inc.php:56 libraries/db_links.inc.php:57 -#: libraries/db_links.inc.php:58 +#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 +#: libraries/db_links.inc.php:57 msgid "Database seems to be empty!" msgstr "Databáza vyzerá prázdna!" -#: libraries/db_links.inc.php:80 libraries/relation.lib.php:142 -#: libraries/tbl_links.inc.php:68 +#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:85 +#: libraries/db_links.inc.php:84 msgid "Query" msgstr "Dopyt podľa príkladu" -#: libraries/db_links.inc.php:90 libraries/relation.lib.php:138 +#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 msgid "Designer" msgstr "Dizajnér" -#: libraries/db_links.inc.php:97 libraries/server_links.inc.php:87 -#: libraries/tbl_links.inc.php:90 pmd_pdf.php:83 pmd_pdf.php:109 +#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Import" -#: libraries/db_links.inc.php:110 libraries/server_links.inc.php:65 -#: server_privileges.php:111 server_privileges.php:1714 -#: server_privileges.php:2063 test/theme.php:116 +#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: server_privileges.php:110 server_privileges.php:1718 +#: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" msgstr "Oprávnenia" @@ -1956,14 +1932,14 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1847 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1806 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "Môže byť nepresné. Pozri FAQ 3.11" -#: libraries/db_structure.lib.php:60 server_databases.php:141 -#: tbl_printview.php:334 tbl_structure.php:681 +#: libraries/db_structure.lib.php:60 server_databases.php:139 +#: tbl_printview.php:333 tbl_structure.php:679 msgid "Overhead" msgstr "Naviac" @@ -1980,7 +1956,7 @@ msgstr "Server neodpovedá" 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:358 tbl_structure.php:607 +#: libraries/dbi/mysql.dbi.lib.php:358 tbl_structure.php:605 msgid "Details..." msgstr "" @@ -1990,22 +1966,22 @@ msgid "Change password" msgstr "Zmeniť heslo" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:807 +#: libraries/replication_gui.lib.php:347 server_privileges.php:806 msgid "No Password" msgstr "Žiadne heslo" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1530 server_synchronize.php:1174 +#: libraries/replication_gui.lib.php:351 server_privileges.php:795 +#: server_privileges.php:799 server_privileges.php:810 +#: server_privileges.php:1534 server_synchronize.php:1173 msgid "Password" msgstr "Heslo" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:815 server_privileges.php:818 +#: server_privileges.php:814 server_privileges.php:817 msgid "Re-type" msgstr "Potvrdiť" @@ -2028,8 +2004,8 @@ msgstr "Vytvoriť novú databázu" msgid "Create" msgstr "Vytvoriť" -#: libraries/display_create_database.lib.php:39 server_privileges.php:113 -#: server_privileges.php:1419 server_replication.php:34 +#: libraries/display_create_database.lib.php:39 server_privileges.php:112 +#: server_privileges.php:1423 server_replication.php:33 msgid "No Privileges" msgstr "Žiadne oprávnenia" @@ -2050,51 +2026,51 @@ msgstr "Vytvoriť novú tabuľku v databáze %s" msgid "Number of columns" msgstr "Počet polí" -#: libraries/display_export.lib.php:41 +#: libraries/display_export.lib.php:35 msgid "Could not load export plugins, please check your installation!" msgstr "" "Nepodarilo sa načítať exportné pluginy, skontrolujte prosím vašu inštaláciu!" -#: libraries/display_export.lib.php:106 +#: libraries/display_export.lib.php:100 #, fuzzy, php-format #| msgid "Dump %s row(s) starting at record # %s" msgid "Dump %s row(s) starting at row # %s" msgstr "Zobraziť %s riadkov od riadku %s." -#: libraries/display_export.lib.php:114 +#: libraries/display_export.lib.php:108 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:124 setup/lib/messages.inc.php:79 +#: libraries/display_export.lib.php:118 setup/lib/messages.inc.php:79 msgid "Save as file" msgstr "Pošli" -#: libraries/display_export.lib.php:133 +#: libraries/display_export.lib.php:127 #, php-format msgid "Save on server in %s directory" msgstr "Uložiť na server do adresára %s" -#: libraries/display_export.lib.php:141 setup/lib/messages.inc.php:87 +#: libraries/display_export.lib.php:135 setup/lib/messages.inc.php:87 msgid "Overwrite existing file(s)" msgstr "Prepísať existujúci súbor(y)" -#: libraries/display_export.lib.php:147 +#: libraries/display_export.lib.php:141 msgid "File name template" msgstr "Vzor pre názov súboru" -#: libraries/display_export.lib.php:151 +#: libraries/display_export.lib.php:145 msgid "server name" msgstr "meno servera" -#: libraries/display_export.lib.php:154 +#: libraries/display_export.lib.php:148 msgid "database name" msgstr "meno databázy" -#: libraries/display_export.lib.php:157 +#: libraries/display_export.lib.php:151 msgid "table name" msgstr "meno tabuľky" -#: libraries/display_export.lib.php:161 +#: libraries/display_export.lib.php:155 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2105,39 +2081,39 @@ msgstr "" "reťazec pre formátovanie dátumu a času. Naviac budú vykonané tieto " "nahradenia: %3$s. Ostatný text bude zachovaný." -#: libraries/display_export.lib.php:202 +#: libraries/display_export.lib.php:196 msgid "remember template" msgstr "zapamätať si vzor" -#: libraries/display_export.lib.php:210 libraries/display_import.lib.php:177 +#: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 #: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 msgid "Character set of the file:" msgstr "Znaková sada súboru:" -#: libraries/display_export.lib.php:235 setup/lib/messages.inc.php:81 +#: libraries/display_export.lib.php:229 setup/lib/messages.inc.php:81 msgid "Compression" msgstr "Kompresia" -#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:196 -#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:529 -#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:574 -#: server_privileges.php:1867 server_processlist.php:74 +#: libraries/display_export.lib.php:234 libraries/display_import.lib.php:196 +#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:528 +#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:573 +#: server_privileges.php:1871 server_processlist.php:74 msgid "None" msgstr "Žiadny" -#: libraries/display_export.lib.php:247 +#: libraries/display_export.lib.php:241 msgid "\"zipped\"" msgstr "\"zozipované\"" -#: libraries/display_export.lib.php:253 +#: libraries/display_export.lib.php:247 msgid "\"gzipped\"" msgstr "\"gzip-ované\"" -#: libraries/display_export.lib.php:259 +#: libraries/display_export.lib.php:253 msgid "\"bzipped\"" msgstr "\"bzipped\"" -#: libraries/display_export.lib.php:274 libraries/export/sql.php:42 +#: libraries/display_export.lib.php:268 libraries/export/sql.php:42 #: libraries/import/sql.php:31 msgid "SQL compatibility mode" msgstr "Režim kompatibility SQL" @@ -2175,12 +2151,12 @@ msgid "File uploads are not allowed on this server." msgstr "Ukladanie súborov na server nie je povolené." #: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 -#: tbl_change.php:1024 +#: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "Adresár určený pre upload súborov sa nedá otvoriť" #: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 -#: tbl_change.php:1027 +#: tbl_change.php:925 msgid "web server upload directory" msgstr "upload adresár web serveru" @@ -2267,44 +2243,44 @@ msgstr "Veľkosť stránky" msgid "Language" msgstr "Jazyk" -#: libraries/display_tbl.lib.php:303 +#: libraries/display_tbl.lib.php:302 #, php-format msgid "%d is not valid row number." msgstr "%d nie je platné číslo riadku." -#: libraries/display_tbl.lib.php:309 +#: libraries/display_tbl.lib.php:308 #, fuzzy #| msgid "row(s) starting from record #" msgid "row(s) starting from row #" msgstr "riadky začínajú od" -#: libraries/display_tbl.lib.php:315 +#: libraries/display_tbl.lib.php:314 msgid "horizontal" msgstr "horizontálnom" -#: libraries/display_tbl.lib.php:316 +#: libraries/display_tbl.lib.php:315 msgid "horizontal (rotated headers)" msgstr "vodorovnom (otočené hlavičky)" -#: libraries/display_tbl.lib.php:317 +#: libraries/display_tbl.lib.php:316 msgid "vertical" msgstr "vertikálnom" -#: libraries/display_tbl.lib.php:323 +#: libraries/display_tbl.lib.php:322 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "v(o) %s móde a opakovať hlavičky po každých %s bunkách" -#: libraries/display_tbl.lib.php:345 +#: libraries/display_tbl.lib.php:344 msgid "This operation could take a long time. Proceed anyway?" msgstr "" "Táto operácia môže trvať veľmi dlho. Chcete ju aj napriek tomu vykonať?" -#: libraries/display_tbl.lib.php:511 +#: libraries/display_tbl.lib.php:510 msgid "Sort by key" msgstr "Zoradiť podľa kľúča" -#: libraries/display_tbl.lib.php:554 libraries/export/codegen.php:38 +#: libraries/display_tbl.lib.php:553 libraries/export/codegen.php:38 #: libraries/export/csv.php:29 libraries/export/excel.php:34 #: libraries/export/htmlword.php:28 libraries/export/latex.php:32 #: libraries/export/mediawiki.php:21 libraries/export/ods.php:26 @@ -2314,100 +2290,100 @@ msgstr "Zoradiť podľa kľúča" #: libraries/export/xlsx.php:26 libraries/export/xml.php:23 #: libraries/export/yaml.php:27 libraries/import.lib.php:1114 #: libraries/import.lib.php:1136 libraries/import/csv.php:31 -#: libraries/import/docsql.php:33 libraries/import/ldi.php:46 +#: libraries/import/docsql.php:32 libraries/import/ldi.php:46 #: libraries/import/ods.php:30 libraries/import/sql.php:19 #: libraries/import/xls.php:25 libraries/import/xlsx.php:25 -#: libraries/import/xml.php:25 tbl_select.php:264 tbl_structure.php:752 +#: libraries/import/xml.php:25 tbl_select.php:263 tbl_structure.php:750 msgid "Options" msgstr "Nastavenia" -#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:569 +#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:568 msgid "Partial Texts" msgstr "Čiastočné texty" -#: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:573 +#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:572 msgid "Full Texts" msgstr "Plné texty" -#: libraries/display_tbl.lib.php:586 +#: libraries/display_tbl.lib.php:585 #, fuzzy msgid "Relational key" msgstr "Relačná schéma" -#: libraries/display_tbl.lib.php:587 +#: libraries/display_tbl.lib.php:586 #, fuzzy #| msgid "Relational schema" msgid "Relational display column" msgstr "Relačná schéma" -#: libraries/display_tbl.lib.php:594 +#: libraries/display_tbl.lib.php:593 msgid "Show binary contents" msgstr "" -#: libraries/display_tbl.lib.php:596 +#: libraries/display_tbl.lib.php:595 msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:598 +#: libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "" -#: libraries/display_tbl.lib.php:606 pmd_general.php:140 tbl_change.php:312 -#: tbl_change.php:318 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:307 +#: tbl_change.php:313 msgid "Hide" msgstr "Skryť" -#: libraries/display_tbl.lib.php:606 libraries/relation.lib.php:122 -#: libraries/tbl_properties.inc.php:143 transformation_overview.php:46 +#: libraries/display_tbl.lib.php:605 libraries/relation.lib.php:117 +#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46 msgid "Browser transformation" msgstr "Transformácia pri prehliadaní" -#: libraries/display_tbl.lib.php:1125 libraries/display_tbl.lib.php:1129 -#: libraries/display_tbl.lib.php:1131 +#: libraries/display_tbl.lib.php:1124 libraries/display_tbl.lib.php:1128 +#: libraries/display_tbl.lib.php:1130 msgid "Execute bookmarked query" msgstr "Spustiť obľúbený dopyt" -#: libraries/display_tbl.lib.php:1144 libraries/display_tbl.lib.php:1156 +#: libraries/display_tbl.lib.php:1143 libraries/display_tbl.lib.php:1155 msgid "The row has been deleted" msgstr "Riadok bol zmazaný" -#: libraries/display_tbl.lib.php:1183 libraries/display_tbl.lib.php:2055 +#: libraries/display_tbl.lib.php:1182 libraries/display_tbl.lib.php:2014 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "Zabiť" -#: libraries/display_tbl.lib.php:1933 +#: libraries/display_tbl.lib.php:1892 msgid "in query" msgstr "v dopyte" -#: libraries/display_tbl.lib.php:1951 +#: libraries/display_tbl.lib.php:1910 msgid "Showing rows" msgstr "Ukázať záznamy " -#: libraries/display_tbl.lib.php:1961 +#: libraries/display_tbl.lib.php:1920 msgid "total" msgstr "celkovo" -#: libraries/display_tbl.lib.php:1969 sql.php:523 +#: libraries/display_tbl.lib.php:1928 sql.php:522 #, php-format msgid "Query took %01.4f sec" msgstr "Dopyt zabral %01.4f sek." -#: libraries/display_tbl.lib.php:2088 libraries/mult_submits.inc.php:112 -#: querywindow.php:115 querywindow.php:119 querywindow.php:122 -#: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:469 +#: libraries/display_tbl.lib.php:2047 libraries/mult_submits.inc.php:112 +#: querywindow.php:114 querywindow.php:118 querywindow.php:121 +#: tbl_structure.php:23 tbl_structure.php:148 tbl_structure.php:467 msgid "Change" msgstr "Zmeniť" -#: libraries/display_tbl.lib.php:2158 +#: libraries/display_tbl.lib.php:2117 msgid "Query results operations" msgstr "Operácie s výsledkami dopytu" -#: libraries/display_tbl.lib.php:2186 +#: libraries/display_tbl.lib.php:2145 msgid "Print view (with full texts)" msgstr "Náhľad tlače (s kompletnými textami)" -#: libraries/display_tbl.lib.php:2359 +#: libraries/display_tbl.lib.php:2318 msgid "Link not found" msgstr "Linka nebola nájdená" @@ -2462,9 +2438,9 @@ msgstr "Stav InnoDB" msgid "Buffer Pool Usage" msgstr "Využitie Vyrovnávacej Pamäte" -#: libraries/engines/innodb.lib.php:168 server_databases.php:136 -#: server_databases.php:304 server_status.php:524 server_status.php:585 -#: server_status.php:606 tbl_printview.php:349 tbl_structure.php:695 +#: libraries/engines/innodb.lib.php:168 server_databases.php:134 +#: server_databases.php:302 server_status.php:524 server_status.php:585 +#: server_status.php:606 tbl_printview.php:348 tbl_structure.php:693 msgid "Total" msgstr "Celkom" @@ -2601,6 +2577,77 @@ msgstr "" "príkazu REPAIR TABLE, alebo pri vytváraní indexov príkazmi CREATE INDEX " "alebo ALTER TABLE." +#: libraries/engines/pbms.lib.php:31 +msgid "Garbage Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:32 +msgid "The percentage of garbage in a repository file before it is compacted." +msgstr "" + +#: libraries/engines/pbms.lib.php:36 libraries/replication_gui.lib.php:69 +#: server_synchronize.php:1161 +msgid "Port" +msgstr "Port" + +#: libraries/engines/pbms.lib.php:37 +msgid "" +"The port for the PBMS stream-based communications. Setting this value to 0 " +"will disable HTTP communication with the daemon." +msgstr "" + +#: libraries/engines/pbms.lib.php:41 +msgid "Repository Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:42 +msgid "" +"The maximum size of a BLOB repository file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:46 +msgid "Temp Blob Timeout" +msgstr "" + +#: libraries/engines/pbms.lib.php:47 +msgid "" +"The timeout, in seconds, for temporary BLOBs. Uploaded BLOB data is removed " +"after this time, unless they are referenced by a record in the database." +msgstr "" + +#: libraries/engines/pbms.lib.php:51 +msgid "Temp Log Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:52 +msgid "" +"The maximum size of a temporary BLOB log file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:56 +msgid "Max Keep Alive" +msgstr "" + +#: libraries/engines/pbms.lib.php:57 +msgid "" +"The timeout for inactive connection with the keep-alive flag set. After this " +"time the connection will be closed. The time-out is in milliseconds (1/1000)." +msgstr "" + +#: libraries/engines/pbms.lib.php:61 +msgid "Metadata Headers" +msgstr "" + +#: libraries/engines/pbms.lib.php:62 +msgid "" +"A \":\" delimited list of metadata headers to be used to initialize the " +"pbms_metadata_header table when a database is created." +msgstr "" + #: libraries/engines/pbxt.lib.php:22 msgid "Index cache size" msgstr "" @@ -2725,7 +2772,7 @@ msgid "" msgstr "" #: libraries/export/codegen.php:36 setup/lib/messages.inc.php:85 -#: tbl_printview.php:374 tbl_structure.php:736 +#: tbl_printview.php:373 tbl_structure.php:734 msgid "Format" msgstr "Formát" @@ -2796,9 +2843,9 @@ msgstr "Microsoft Word 2000" #: libraries/export/htmlword.php:23 libraries/export/latex.php:59 #: libraries/export/latex.php:205 libraries/export/odt.php:47 #: libraries/export/sql.php:105 libraries/export/sql.php:865 -#: libraries/export/texytext.php:27 server_databases.php:126 -#: server_privileges.php:576 server_replication.php:315 tbl_printview.php:315 -#: tbl_structure.php:664 +#: libraries/export/texytext.php:27 server_databases.php:124 +#: server_privileges.php:575 server_replication.php:314 tbl_printview.php:314 +#: tbl_structure.php:662 msgid "Data" msgstr "Dáta" @@ -2813,7 +2860,6 @@ msgid "Table structure for table" msgstr "Štruktúra tabuľky pre tabuľku" #: libraries/export/latex.php:13 -#| msgid "Content of table __TABLE__" msgid "Content of table @TABLE@" msgstr "Obsah tabuľky @TABLE@" @@ -2822,7 +2868,6 @@ msgid "(continued)" msgstr "(pokračovanie)" #: libraries/export/latex.php:15 -#| msgid "Structure of table __TABLE__" msgid "Structure of table @TABLE@" msgstr "Štruktúra tabuľky @TABLE@" @@ -2847,13 +2892,13 @@ msgid "Label key" msgstr "Návestie" #: libraries/export/latex.php:46 libraries/export/odt.php:34 -#: libraries/export/sql.php:90 tbl_relation.php:398 +#: libraries/export/sql.php:90 tbl_relation.php:396 msgid "Relations" msgstr "Prepojenia" #: libraries/export/latex.php:52 libraries/export/odt.php:40 #: libraries/export/odt.php:317 libraries/export/sql.php:94 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "MIME typ" @@ -2861,10 +2906,10 @@ msgstr "MIME typ" #: libraries/export/xml.php:101 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1529 server_privileges.php:2061 -#: server_processlist.php:54 server_synchronize.php:1158 +#: libraries/replication_gui.lib.php:331 server_privileges.php:730 +#: server_privileges.php:733 server_privileges.php:789 +#: server_privileges.php:1533 server_privileges.php:2065 +#: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "Hostiteľ" @@ -3056,8 +3101,8 @@ msgstr "" msgid "Export contents" msgstr "" -#: libraries/footer.inc.php:182 libraries/footer.inc.php:193 -#: libraries/footer.inc.php:196 +#: libraries/footer.inc.php:180 libraries/footer.inc.php:191 +#: libraries/footer.inc.php:194 msgid "Open new phpMyAdmin window" msgstr "Otvoriť nové okno phpMyAdmina" @@ -3074,7 +3119,7 @@ msgstr "výsledok SQL" msgid "Generated by" msgstr "Vygenerované" -#: libraries/import.lib.php:151 sql.php:519 tbl_change.php:180 +#: libraries/import.lib.php:151 sql.php:518 tbl_change.php:175 #: 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)." @@ -3131,7 +3176,7 @@ msgstr "Ignorovať opakujúce sa riadky" msgid "Column names in first row" msgstr "Mená stĺpcov na prvom riadku" -#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:501 +#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:500 #: view_create.php:147 msgid "Column names" msgstr "Názvy stĺpcov" @@ -3158,12 +3203,12 @@ msgstr "Chybný formát v CSV vstupe na riadku %d." msgid "Invalid column count in CSV input on line %d." msgstr "Chybný počet položiek v CSV vstupe na riadku %d." -#: libraries/import/docsql.php:28 +#: libraries/import/docsql.php:27 msgid "DocSQL" msgstr "" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 -#: server_synchronize.php:427 server_synchronize.php:870 +#: libraries/import/docsql.php:30 libraries/tbl_properties.inc.php:616 +#: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "Názov tabuľky" @@ -3220,26 +3265,26 @@ msgstr "Žiadny" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:512 -#: tbl_structure.php:28 tbl_structure.php:152 tbl_structure.php:156 -#: tbl_structure.php:472 +#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:511 +#: tbl_structure.php:27 tbl_structure.php:151 tbl_structure.php:155 +#: tbl_structure.php:470 msgid "Primary" msgstr "Primárny" #: libraries/mult_submits.inc.php:97 libraries/tbl_properties.inc.php:115 -#: libraries/tbl_properties.inc.php:524 tbl_printview.php:324 -#: tbl_structure.php:30 tbl_structure.php:153 tbl_structure.php:157 -#: tbl_structure.php:474 tbl_structure.php:672 +#: libraries/tbl_properties.inc.php:523 tbl_printview.php:323 +#: tbl_structure.php:29 tbl_structure.php:152 tbl_structure.php:156 +#: tbl_structure.php:472 tbl_structure.php:670 msgid "Index" msgstr "Index" -#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:530 -#: tbl_structure.php:34 tbl_structure.php:155 tbl_structure.php:159 -#: tbl_structure.php:477 +#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:529 +#: tbl_structure.php:33 tbl_structure.php:154 tbl_structure.php:158 +#: tbl_structure.php:475 msgid "Fulltext" msgstr "Celý text" -#: libraries/mult_submits.inc.php:434 tbl_replace.php:330 +#: libraries/mult_submits.inc.php:433 tbl_replace.php:330 msgid "No change" msgstr "Žiadna zmena" @@ -3247,190 +3292,190 @@ msgstr "Žiadna zmena" msgid "Charset" msgstr "Znaková sada" -#: libraries/mysql_charsets.lib.php:210 libraries/mysql_charsets.lib.php:411 -#: tbl_change.php:515 +#: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 +#: tbl_change.php:510 msgid "Binary" msgstr "Binárny" -#: libraries/mysql_charsets.lib.php:222 +#: libraries/mysql_charsets.lib.php:214 msgid "Bulgarian" msgstr "Bulharsky" -#: libraries/mysql_charsets.lib.php:226 libraries/mysql_charsets.lib.php:351 +#: libraries/mysql_charsets.lib.php:218 libraries/mysql_charsets.lib.php:343 msgid "Simplified Chinese" msgstr "Zjednodušená Čínština" -#: libraries/mysql_charsets.lib.php:228 libraries/mysql_charsets.lib.php:371 +#: libraries/mysql_charsets.lib.php:220 libraries/mysql_charsets.lib.php:363 msgid "Traditional Chinese" msgstr "Tradičná Čínština" -#: libraries/mysql_charsets.lib.php:232 libraries/mysql_charsets.lib.php:418 +#: libraries/mysql_charsets.lib.php:224 libraries/mysql_charsets.lib.php:410 msgid "case-insensitive" msgstr "nerozlišovať veľké a malé písmená" -#: libraries/mysql_charsets.lib.php:235 libraries/mysql_charsets.lib.php:420 +#: libraries/mysql_charsets.lib.php:227 libraries/mysql_charsets.lib.php:412 msgid "case-sensitive" msgstr "rozlišovať veľké a malé písmená" -#: libraries/mysql_charsets.lib.php:238 +#: libraries/mysql_charsets.lib.php:230 msgid "Croatian" msgstr "Chorvátsky" -#: libraries/mysql_charsets.lib.php:241 +#: libraries/mysql_charsets.lib.php:233 msgid "Czech" msgstr "Česky" -#: libraries/mysql_charsets.lib.php:244 +#: libraries/mysql_charsets.lib.php:236 msgid "Danish" msgstr "Dánsky" -#: libraries/mysql_charsets.lib.php:247 +#: libraries/mysql_charsets.lib.php:239 msgid "English" msgstr "Anglicky" -#: libraries/mysql_charsets.lib.php:250 +#: libraries/mysql_charsets.lib.php:242 msgid "Esperanto" msgstr "Esperanto" -#: libraries/mysql_charsets.lib.php:253 +#: libraries/mysql_charsets.lib.php:245 msgid "Estonian" msgstr "Estónsky" -#: libraries/mysql_charsets.lib.php:256 libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:248 libraries/mysql_charsets.lib.php:251 msgid "German" msgstr "Nemecky" -#: libraries/mysql_charsets.lib.php:256 +#: libraries/mysql_charsets.lib.php:248 msgid "dictionary" msgstr "slovník" -#: libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:251 msgid "phone book" msgstr "adresár" -#: libraries/mysql_charsets.lib.php:262 +#: libraries/mysql_charsets.lib.php:254 msgid "Hungarian" msgstr "Maďarsky" -#: libraries/mysql_charsets.lib.php:265 +#: libraries/mysql_charsets.lib.php:257 msgid "Icelandic" msgstr "Islandčina" -#: libraries/mysql_charsets.lib.php:268 libraries/mysql_charsets.lib.php:358 +#: libraries/mysql_charsets.lib.php:260 libraries/mysql_charsets.lib.php:350 msgid "Japanese" msgstr "Japončina" -#: libraries/mysql_charsets.lib.php:271 +#: libraries/mysql_charsets.lib.php:263 msgid "Latvian" msgstr "Lotyšstina" -#: libraries/mysql_charsets.lib.php:274 +#: libraries/mysql_charsets.lib.php:266 msgid "Lithuanian" msgstr "Litovsky" -#: libraries/mysql_charsets.lib.php:277 libraries/mysql_charsets.lib.php:380 +#: libraries/mysql_charsets.lib.php:269 libraries/mysql_charsets.lib.php:372 msgid "Korean" msgstr "Kórejčina" -#: libraries/mysql_charsets.lib.php:280 +#: libraries/mysql_charsets.lib.php:272 msgid "Persian" msgstr "Perština" -#: libraries/mysql_charsets.lib.php:283 +#: libraries/mysql_charsets.lib.php:275 msgid "Polish" msgstr "Poľština" -#: libraries/mysql_charsets.lib.php:286 libraries/mysql_charsets.lib.php:334 +#: libraries/mysql_charsets.lib.php:278 libraries/mysql_charsets.lib.php:326 msgid "West European" msgstr "Západná Európa" -#: libraries/mysql_charsets.lib.php:289 +#: libraries/mysql_charsets.lib.php:281 msgid "Romanian" msgstr "Rumunština" -#: libraries/mysql_charsets.lib.php:292 +#: libraries/mysql_charsets.lib.php:284 msgid "Slovak" msgstr "Slovenčina" -#: libraries/mysql_charsets.lib.php:295 +#: libraries/mysql_charsets.lib.php:287 msgid "Slovenian" msgstr "Slovinčina" -#: libraries/mysql_charsets.lib.php:298 +#: libraries/mysql_charsets.lib.php:290 msgid "Spanish" msgstr "Španielsky" -#: libraries/mysql_charsets.lib.php:301 +#: libraries/mysql_charsets.lib.php:293 msgid "Traditional Spanish" msgstr "Tradičná Španielčina" -#: libraries/mysql_charsets.lib.php:304 libraries/mysql_charsets.lib.php:401 +#: libraries/mysql_charsets.lib.php:296 libraries/mysql_charsets.lib.php:393 msgid "Swedish" msgstr "Švédsky" -#: libraries/mysql_charsets.lib.php:307 libraries/mysql_charsets.lib.php:404 +#: libraries/mysql_charsets.lib.php:299 libraries/mysql_charsets.lib.php:396 msgid "Thai" msgstr "Thajčina" -#: libraries/mysql_charsets.lib.php:310 libraries/mysql_charsets.lib.php:398 +#: libraries/mysql_charsets.lib.php:302 libraries/mysql_charsets.lib.php:390 msgid "Turkish" msgstr "Turecky" -#: libraries/mysql_charsets.lib.php:313 libraries/mysql_charsets.lib.php:395 +#: libraries/mysql_charsets.lib.php:305 libraries/mysql_charsets.lib.php:387 msgid "Ukrainian" msgstr "Ukrajinsky" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 msgid "Unicode" msgstr "Unicode" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 -#: libraries/mysql_charsets.lib.php:334 libraries/mysql_charsets.lib.php:341 -#: libraries/mysql_charsets.lib.php:363 libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 +#: libraries/mysql_charsets.lib.php:326 libraries/mysql_charsets.lib.php:333 +#: libraries/mysql_charsets.lib.php:355 libraries/mysql_charsets.lib.php:366 msgid "multilingual" msgstr "mnohojazyčný" -#: libraries/mysql_charsets.lib.php:341 +#: libraries/mysql_charsets.lib.php:333 msgid "Central European" msgstr "Stredná Európa" -#: libraries/mysql_charsets.lib.php:346 +#: libraries/mysql_charsets.lib.php:338 msgid "Russian" msgstr "Ruština" -#: libraries/mysql_charsets.lib.php:363 +#: libraries/mysql_charsets.lib.php:355 msgid "Baltic" msgstr "Baltické" -#: libraries/mysql_charsets.lib.php:368 +#: libraries/mysql_charsets.lib.php:360 msgid "Armenian" msgstr "Arménština" -#: libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:366 msgid "Cyrillic" msgstr "Cyrilika" -#: libraries/mysql_charsets.lib.php:377 +#: libraries/mysql_charsets.lib.php:369 msgid "Arabic" msgstr "Arabština" -#: libraries/mysql_charsets.lib.php:383 +#: libraries/mysql_charsets.lib.php:375 msgid "Hebrew" msgstr "Hebrejsky" -#: libraries/mysql_charsets.lib.php:386 +#: libraries/mysql_charsets.lib.php:378 msgid "Georgian" msgstr "Gruzínčina" -#: libraries/mysql_charsets.lib.php:389 +#: libraries/mysql_charsets.lib.php:381 msgid "Greek" msgstr "Gréčtina" -#: libraries/mysql_charsets.lib.php:392 +#: libraries/mysql_charsets.lib.php:384 msgid "Czech-Slovak" msgstr "Čeština/Slovenčina" -#: libraries/mysql_charsets.lib.php:407 libraries/mysql_charsets.lib.php:414 +#: libraries/mysql_charsets.lib.php:399 libraries/mysql_charsets.lib.php:406 msgid "unknown" msgstr "neznámy" @@ -3456,69 +3501,69 @@ msgstr "SQL okno" msgid "This format has no options" msgstr "Tento formát nemá žiadne nastavenia" -#: libraries/relation.lib.php:82 +#: libraries/relation.lib.php:77 msgid "not OK" msgstr "chyba" -#: libraries/relation.lib.php:86 pmd_general.php:339 +#: libraries/relation.lib.php:81 pmd_general.php:339 msgid "OK" msgstr "OK" -#: libraries/relation.lib.php:87 +#: libraries/relation.lib.php:82 msgid "Enabled" msgstr "Zapnuté" -#: libraries/relation.lib.php:110 +#: libraries/relation.lib.php:105 msgid "Display Features" msgstr "Zobraziť vlastnosti" -#: libraries/relation.lib.php:116 +#: libraries/relation.lib.php:111 msgid "Creation of PDFs" msgstr "Vytváranie PDF" -#: libraries/relation.lib.php:120 +#: libraries/relation.lib.php:115 msgid "Displaying Column Comments" msgstr "Zobrazovať komentáre stĺpcov" -#: libraries/relation.lib.php:125 +#: libraries/relation.lib.php:120 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "Prosím prečítajte si dokumentáciu ako aktualizovať tabuľku s informáciami o " "stĺpcoch (Column_comments Table)" -#: libraries/relation.lib.php:130 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 msgid "Bookmarked SQL query" msgstr "Obľúbený SQL dopyt" -#: libraries/relation.lib.php:134 querywindow.php:99 querywindow.php:207 +#: libraries/relation.lib.php:129 querywindow.php:98 querywindow.php:205 msgid "SQL history" msgstr "SQL história" -#: libraries/relation.lib.php:146 +#: libraries/relation.lib.php:141 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:148 +#: libraries/relation.lib.php:143 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" -#: libraries/relation.lib.php:149 +#: libraries/relation.lib.php:144 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:150 +#: libraries/relation.lib.php:145 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:151 +#: libraries/relation.lib.php:146 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1158 +#: libraries/relation.lib.php:1153 msgid "no description" msgstr "bez Popisu" @@ -3527,7 +3572,7 @@ msgstr "bez Popisu" msgid "Slave configuration" msgstr "Slave replikácia" -#: libraries/replication_gui.lib.php:53 server_replication.php:346 +#: libraries/replication_gui.lib.php:53 server_replication.php:345 msgid "Change or reconfigure master server" msgstr "" @@ -3539,16 +3584,12 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:711 -#: server_privileges.php:714 server_privileges.php:721 -#: server_synchronize.php:1170 +#: libraries/replication_gui.lib.php:261 server_privileges.php:710 +#: server_privileges.php:713 server_privileges.php:720 +#: server_synchronize.php:1169 msgid "User name" msgstr "Meno používateľa" -#: libraries/replication_gui.lib.php:69 server_synchronize.php:1162 -msgid "Port" -msgstr "Port" - #: libraries/replication_gui.lib.php:105 #, fuzzy msgid "Master status" @@ -3565,8 +3606,8 @@ msgid "Variable" msgstr "Premenná" #: libraries/replication_gui.lib.php:117 server_status.php:737 -#: tbl_change.php:322 tbl_printview.php:368 tbl_select.php:137 -#: tbl_structure.php:728 +#: tbl_change.php:317 tbl_printview.php:367 tbl_select.php:136 +#: tbl_structure.php:726 msgid "Value" msgstr "Hodnota" @@ -3580,38 +3621,38 @@ msgid "" "this list." msgstr "" -#: libraries/replication_gui.lib.php:242 server_replication.php:193 +#: libraries/replication_gui.lib.php:242 server_replication.php:192 msgid "Add slave replication user" msgstr "Pridať replikačného užívateľa pre slave" -#: libraries/replication_gui.lib.php:256 server_privileges.php:716 +#: libraries/replication_gui.lib.php:256 server_privileges.php:715 msgid "Any user" msgstr "Akýkoľvek používateľ" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1920 server_privileges.php:1950 +#: libraries/replication_gui.lib.php:348 server_privileges.php:716 +#: server_privileges.php:783 server_privileges.php:807 +#: server_privileges.php:1924 server_privileges.php:1954 msgid "Use text field" msgstr "Požiť textové pole" -#: libraries/replication_gui.lib.php:304 server_privileges.php:764 +#: libraries/replication_gui.lib.php:304 server_privileges.php:763 msgid "Any host" msgstr "Akýkoľvek hostiteľ" -#: libraries/replication_gui.lib.php:308 server_privileges.php:768 +#: libraries/replication_gui.lib.php:308 server_privileges.php:767 msgid "Local" msgstr "Lokálny" -#: libraries/replication_gui.lib.php:314 server_privileges.php:773 +#: libraries/replication_gui.lib.php:314 server_privileges.php:772 msgid "This Host" msgstr "Tento počítač" -#: libraries/replication_gui.lib.php:320 server_privileges.php:779 +#: libraries/replication_gui.lib.php:320 server_privileges.php:778 msgid "Use Host Table" msgstr "Použiť tabuľku s hostiteľmi" -#: libraries/replication_gui.lib.php:333 server_privileges.php:792 +#: libraries/replication_gui.lib.php:333 server_privileges.php:791 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3639,8 +3680,8 @@ msgstr "Neznámy jazyk: %1$s." msgid "Servers" msgstr "Servery" -#: libraries/server_links.inc.php:52 server_engines.php:111 -#: server_engines.php:115 server_status.php:414 test/theme.php:104 +#: libraries/server_links.inc.php:52 server_engines.php:125 +#: server_engines.php:129 server_status.php:414 test/theme.php:104 msgid "Variables" msgstr "Premenné" @@ -3661,12 +3702,12 @@ msgstr "Binárny log" msgid "Processes" msgstr "Procesy" -#: libraries/server_links.inc.php:91 server_synchronize.php:1091 -#: server_synchronize.php:1099 +#: libraries/server_links.inc.php:91 server_synchronize.php:1090 +#: server_synchronize.php:1098 msgid "Synchronize" msgstr "Synchronizovať" -#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1109 +#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1108 msgid "Source database" msgstr "Zdrojová databáza" @@ -3684,7 +3725,7 @@ msgstr "Vzdialený server" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1111 +#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1110 msgid "Target database" msgstr "Cieľová databáza" @@ -3704,11 +3745,11 @@ msgstr "Spustiť SQL dopyt/dopyty na databázu %s" msgid "Columns" msgstr "Názvy stĺpcov" -#: libraries/sql_query_form.lib.php:342 sql.php:664 sql.php:665 sql.php:682 +#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "Pridať tento SQL dopyt do obľúbených" -#: libraries/sql_query_form.lib.php:349 sql.php:676 +#: libraries/sql_query_form.lib.php:349 sql.php:669 msgid "Let every user access this bookmark" msgstr "Dovoliť používať túto položku všetkým používateľom" @@ -3804,12 +3845,12 @@ msgstr "" "nainštalované všetky potrebné rozšírenia php, tak ako sú popísané v " "%sdocumentation%s." -#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:139 -#: libraries/tbl_links.inc.php:140 +#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 +#: libraries/tbl_links.inc.php:139 msgid "Table seems to be empty!" msgstr "Tabuľka vyzerá prázdna!" -#: libraries/tbl_links.inc.php:148 +#: libraries/tbl_links.inc.php:147 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" @@ -3844,12 +3885,12 @@ msgstr "" "Pre predvolené hodnoty, prosím zadajte iba jednu hodnotu bez úvodzoviek " "alebo uvádzacích znakov, napr.: a" -#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1263 -#: pdf_schema.php:1284 tbl_printview.php:142 tbl_structure.php:179 +#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1262 +#: pdf_schema.php:1283 tbl_printview.php:141 tbl_structure.php:178 msgid "Attributes" msgstr "Atribúty" -#: libraries/tbl_properties.inc.php:136 +#: libraries/tbl_properties.inc.php:135 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -3858,11 +3899,11 @@ msgstr "" "Pre zoznam dostupných parametrov a ich MIME typov kliknite na %spopisy " "transformácií%s" -#: libraries/tbl_properties.inc.php:144 +#: libraries/tbl_properties.inc.php:143 msgid "Transformation options" msgstr "Parametre transformácie" -#: libraries/tbl_properties.inc.php:145 +#: libraries/tbl_properties.inc.php:144 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
                            If you ever need to put a backslash (\"\\\") or a single " @@ -3874,18 +3915,18 @@ msgstr "" "jednoduché úvodzovky (\"'\") medzi týmito hodnotami, vložte pred nich spätné " "lomítko (napr. '\\\\xyz' alebo 'a\\'b')." -#: libraries/tbl_properties.inc.php:392 +#: libraries/tbl_properties.inc.php:391 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "Žiadny" -#: libraries/tbl_properties.inc.php:393 +#: libraries/tbl_properties.inc.php:392 msgid "As defined:" msgstr "Podľa zadania:" -#: libraries/tbl_properties.inc.php:579 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:578 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
                            Please ask the " @@ -3894,29 +3935,29 @@ msgstr "" "Nie je dostupný žiadny popis pre túto transformáciu.
                            Kontaktujte " "autora, ktorý %s vytára." -#: libraries/tbl_properties.inc.php:725 server_engines.php:57 -#: tbl_operations.php:354 +#: libraries/tbl_properties.inc.php:724 server_engines.php:56 +#: tbl_operations.php:352 msgid "Storage Engine" msgstr "Úložný Systém" -#: libraries/tbl_properties.inc.php:754 +#: libraries/tbl_properties.inc.php:753 msgid "PARTITION definition" msgstr "" -#: libraries/tbl_properties.inc.php:775 pdf_pages.php:502 +#: libraries/tbl_properties.inc.php:774 pdf_pages.php:501 #: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214 -#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1124 tbl_indexes.php:247 -#: tbl_relation.php:565 +#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1022 tbl_indexes.php:246 +#: tbl_relation.php:563 msgid "Save" msgstr "Uložiť" -#: libraries/tbl_properties.inc.php:779 tbl_structure.php:541 +#: libraries/tbl_properties.inc.php:778 tbl_structure.php:539 #, fuzzy, php-format #| msgid "Add column(s)" msgid "Add %s column(s)" msgstr "Pridať stĺpec/stĺpce" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:535 +#: libraries/tbl_properties.inc.php:782 tbl_structure.php:533 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -4099,8 +4140,8 @@ msgstr "" msgid "Custom color" msgstr "Vlastná farba" -#: main.php:162 pdf_pages.php:362 setup/lib/FormDisplay.tpl.php:216 -#: tbl_change.php:1173 +#: main.php:162 pdf_pages.php:361 setup/lib/FormDisplay.tpl.php:216 +#: tbl_change.php:1071 msgid "Reset" msgstr "Vynulovať" @@ -4108,8 +4149,8 @@ msgstr "Vynulovať" msgid "Protocol version" msgstr "Verzia protokolu" -#: main.php:188 server_privileges.php:1381 server_privileges.php:1528 -#: server_privileges.php:1642 server_privileges.php:2060 +#: main.php:188 server_privileges.php:1385 server_privileges.php:1532 +#: server_privileges.php:1646 server_privileges.php:2064 #: server_processlist.php:53 msgid "User" msgstr "Používateľ" @@ -4198,14 +4239,23 @@ msgstr "" "vašom phpMyAdmin adresári. Mali by ste ho odstrániť, ak je phpMyAdmin " "nakonfigurovaný." -#: main.php:330 +#: main.php:314 +#, php-format +msgid "" +"The additional features for working with linked tables have been " +"deactivated. To find out why click %shere%s." +msgstr "" +"Prídavné vlastnosti pre prácu s prepojenými tabuľkami boli deaktivované. Ak " +"chcete zistiť prečo, kliknite %ssem%s." + +#: main.php:329 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:345 +#: main.php:344 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -4214,7 +4264,7 @@ msgstr "" "Verzia Vašej PHP MySQL knižnice %s je rozdielna od MySQL server verzie %s. " "Toto môže spôsobiť nepredvídateľné správanie." -#: main.php:357 +#: main.php:356 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -4225,69 +4275,69 @@ msgstr "" msgid "Reload navigation frame" msgstr "" -#: navigation.php:204 server_databases.php:370 server_synchronize.php:1190 +#: navigation.php:203 server_databases.php:368 server_synchronize.php:1189 msgid "No databases" msgstr "Žiadne databázy" -#: navigation.php:298 +#: navigation.php:297 msgid "Filter" msgstr "Filter" -#: navigation.php:299 setup/frames/index.inc.php:218 +#: navigation.php:298 setup/frames/index.inc.php:218 #: setup/lib/messages.inc.php:41 #, fuzzy msgid "Clear" msgstr "Kalendár" -#: navigation.php:330 navigation.php:331 +#: navigation.php:329 navigation.php:330 #, fuzzy #| msgid "Create table" msgctxt "short form" msgid "Create table" msgstr "Vytvoriť tabuľku" -#: navigation.php:333 navigation.php:495 +#: navigation.php:332 navigation.php:494 msgid "Please select a database" msgstr "Prosím vyberte si databázu" -#: pdf_pages.php:40 pdf_pages.php:46 pdf_pages.php:52 pdf_pages.php:57 +#: pdf_pages.php:39 pdf_pages.php:45 pdf_pages.php:51 pdf_pages.php:56 #, php-format msgid "%s table not found or not set in %s" msgstr "Tabuľka %s nebola nájdená alebo nie je nastavená v %s" -#: pdf_pages.php:265 +#: pdf_pages.php:264 msgid "Please choose a page to edit" msgstr "Prosím zvolte si Stránku, ktorú chcete upraviť" -#: pdf_pages.php:303 pmd_pdf.php:113 +#: pdf_pages.php:302 pmd_pdf.php:111 msgid "Create a page" msgstr "Vytvoriť novú Stránku" -#: pdf_pages.php:309 +#: pdf_pages.php:308 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Číslo stránky:" -#: pdf_pages.php:313 +#: pdf_pages.php:312 #, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "Automatické rozvrhnutie" -#: pdf_pages.php:315 +#: pdf_pages.php:314 msgid "Internal relations" msgstr "Interné vzťahy" -#: pdf_pages.php:338 +#: pdf_pages.php:337 msgid "Select Tables" msgstr "Vybrať Tabuľky" -#: pdf_pages.php:361 +#: pdf_pages.php:360 msgid "Toggle scratchboard" msgstr "zobraziť grafický návrh" -#: pdf_pages.php:524 +#: pdf_pages.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -4295,37 +4345,37 @@ msgstr "" "Aktuálna stránka sa odkazuje na tabuľky, ktoré už neexistujú, želáte si " "odstrániť tieto odkazy?" -#: pdf_schema.php:635 +#: pdf_schema.php:634 #, fuzzy, php-format #| msgid "The \"%s\" table doesn't exist!" msgid "The %s table doesn't exist!" msgstr "Tabuľka \"%s\" neexistuje!" -#: pdf_schema.php:671 +#: pdf_schema.php:670 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Prosím skonfigurujte koordináty pre tabuľku %s" -#: pdf_schema.php:994 +#: pdf_schema.php:993 #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" msgstr "Schéma databázy \"%s\" - Strana %s" -#: pdf_schema.php:1012 +#: pdf_schema.php:1011 msgid "No tables" msgstr "Žiadne tabuľky" -#: pdf_schema.php:1031 pdf_schema.php:1140 +#: pdf_schema.php:1030 pdf_schema.php:1139 msgid "Relational schema" msgstr "Relačná schéma" -#: pdf_schema.php:1115 +#: pdf_schema.php:1114 msgid "Table of contents" msgstr "Obsah" -#: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:145 -#: tbl_structure.php:182 tbl_tracking.php:277 +#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 +#: tbl_structure.php:181 tbl_tracking.php:272 msgid "Extra" msgstr "Extra" @@ -4337,7 +4387,7 @@ msgstr "" msgid "Save position" msgstr "" -#: pmd_general.php:70 server_synchronize.php:428 server_synchronize.php:871 +#: pmd_general.php:70 server_synchronize.php:427 server_synchronize.php:870 msgid "Create table" msgstr "Vytvoriť tabuľku" @@ -4410,32 +4460,32 @@ msgid "" "appropriate column name." msgstr "" -#: pmd_pdf.php:62 +#: pmd_pdf.php:60 #, fuzzy msgid "Page has been created" msgstr "Tabuľka %1$s bola vytvorená." -#: pmd_pdf.php:64 +#: pmd_pdf.php:62 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:84 +#: pmd_pdf.php:82 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:88 +#: pmd_pdf.php:86 msgid "recommended" msgstr "" -#: pmd_pdf.php:93 +#: pmd_pdf.php:91 msgid "to/from page" msgstr "" -#: querywindow.php:94 +#: querywindow.php:93 msgid "Import files" msgstr "Importovať súbory" -#: querywindow.php:105 +#: querywindow.php:104 msgid "All" msgstr "Všetko" @@ -4481,69 +4531,69 @@ msgstr "Informácia" msgid "Character Sets and Collations" msgstr "Znakové sady a Zotriedenia" -#: server_databases.php:51 +#: server_databases.php:49 msgid "No databases selected." msgstr "Neboli vybrané žiadne databázy." -#: server_databases.php:62 +#: server_databases.php:60 #, php-format msgid "%s databases have been dropped successfully." msgstr "Úspešne zrušených databáz: %s." -#: server_databases.php:87 +#: server_databases.php:85 msgid "Databases statistics" msgstr "Štatistiky databázy" -#: server_databases.php:116 server_status.php:370 +#: server_databases.php:114 server_status.php:370 #: setup/lib/messages.inc.php:114 msgid "Tables" msgstr "Tabuľky" -#: server_databases.php:194 server_replication.php:180 -#: server_replication.php:208 +#: server_databases.php:192 server_replication.php:179 +#: server_replication.php:207 msgid "Master replication" msgstr "Master replikácia" -#: server_databases.php:196 server_replication.php:247 +#: server_databases.php:194 server_replication.php:246 msgid "Slave replication" msgstr "Slave replikácia" -#: server_databases.php:229 +#: server_databases.php:227 #, fuzzy #| msgid "Go to database" msgid "Jump to database" msgstr "Prejsť do databázy" -#: server_databases.php:266 +#: server_databases.php:264 #, fuzzy #| msgid "Master replication" msgid "Not replicated" msgstr "Master replikácia" -#: server_databases.php:272 +#: server_databases.php:270 #, fuzzy #| msgid "Replication" msgid "Replicated" msgstr "Replikácia" -#: server_databases.php:288 +#: server_databases.php:286 #, php-format msgid "Check privileges for database "%s"." msgstr "Skontrolovať oprávnenia pre databázu "%s"." -#: server_databases.php:292 server_databases.php:293 +#: server_databases.php:290 server_databases.php:291 msgid "Check Privileges" msgstr "Skontrolovať oprávnenia" -#: server_databases.php:357 server_databases.php:358 +#: server_databases.php:355 server_databases.php:356 msgid "Enable Statistics" msgstr "Zobraziť štatistiky" -#: server_databases.php:361 server_databases.php:362 +#: server_databases.php:359 server_databases.php:360 msgid "Disable Statistics" msgstr "Skryť štatistiky" -#: server_databases.php:365 +#: server_databases.php:363 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -4551,120 +4601,120 @@ msgstr "" "Poznámka: Aktivovanie štatistík databázy môže spôsobiť značné zvýšenie " "sieťovej prevádzky medzi databázou a web serverom." -#: server_engines.php:48 +#: server_engines.php:47 msgid "Storage Engines" msgstr "Úložné Systémy" -#: server_export.php:20 +#: server_export.php:18 msgid "View dump (schema) of databases" msgstr "Export databáz" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:23 server_privileges.php:265 msgid "Includes all privileges except GRANT." msgstr "Všetky oprávnenia okrem GRANT." -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:24 server_privileges.php:191 +#: server_privileges.php:514 msgid "Allows altering the structure of existing tables." msgstr "Povolí meniť štruktúru existujúcich tabuliek." -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:25 server_privileges.php:207 +#: server_privileges.php:520 msgid "Allows altering and dropping stored routines." msgstr "Umožňuje upravovať a odstraňovať uložené procedúry." -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:26 server_privileges.php:183 +#: server_privileges.php:513 msgid "Allows creating new databases and tables." msgstr "Povolí vytváranie nových databáz a tabuliek." -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:27 server_privileges.php:206 +#: server_privileges.php:519 msgid "Allows creating stored routines." msgstr "Umožňuje vytvárať uložené procedúry." -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:513 msgid "Allows creating new tables." msgstr "Povolí vytváranie nových tabuliek." -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:29 server_privileges.php:194 +#: server_privileges.php:517 msgid "Allows creating temporary tables." msgstr "Povolí vytváranie dočasných tabuliek." -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:30 server_privileges.php:208 +#: server_privileges.php:553 msgid "Allows creating, dropping and renaming user accounts." msgstr "Umožňuje vytvárať, odstraňovať a premenovávať používateľské kontá." -#: server_privileges.php:32 server_privileges.php:199 -#: server_privileges.php:203 server_privileges.php:526 -#: server_privileges.php:530 +#: server_privileges.php:31 server_privileges.php:198 +#: server_privileges.php:202 server_privileges.php:525 +#: server_privileges.php:529 msgid "Allows creating new views." msgstr "Umožňuje vytvárať nové pohľady." -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:32 server_privileges.php:182 +#: server_privileges.php:505 msgid "Allows deleting data." msgstr "Povolí mazanie dát." -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:33 server_privileges.php:184 +#: server_privileges.php:516 msgid "Allows dropping databases and tables." msgstr "Povolí odstraňovanie databáz a tabuliek." -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:34 server_privileges.php:516 msgid "Allows dropping tables." msgstr "Povolí odstraňovanie tabuliek." -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:35 server_privileges.php:199 +#: server_privileges.php:533 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:36 server_privileges.php:209 +#: server_privileges.php:521 msgid "Allows executing stored routines." msgstr "Umožňuje spúšťať uložené procedúry." -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:37 server_privileges.php:188 +#: server_privileges.php:508 msgid "Allows importing data from and exporting data into files." msgstr "Povolí importovanie a exportovanie dát zo/do súborov na serveri." -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:38 server_privileges.php:539 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "Povolí pridávanie uživatelov a práv bez znovunačítania tabuliek práv." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:515 msgid "Allows creating and dropping indexes." msgstr "Povolí vytváranie a mazanie indexov." -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:40 server_privileges.php:180 +#: server_privileges.php:441 server_privileges.php:503 msgid "Allows inserting and replacing data." msgstr "Povolí vkladanie a nahradzovanie dát." -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:41 server_privileges.php:195 +#: server_privileges.php:548 msgid "Allows locking tables for the current thread." msgstr "Povolí zmaknutie tabuliek pre aktuálne vlákno." -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:42 server_privileges.php:645 +#: server_privileges.php:647 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Obmedzí počet nových spojení, ktoré môže používateľ vytvoriť za hodinu." -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:43 server_privileges.php:633 +#: server_privileges.php:635 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Obmedzí počet dopytov, ktoré môže používateľ odoslať za hodinu." -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:44 server_privileges.php:639 +#: server_privileges.php:641 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -4672,60 +4722,60 @@ msgstr "" "Obmedzí počet príkazov meniacich tabuľku alebo databázu, ktorá môže " "používateľ odoslať za hodinu." -#: server_privileges.php:46 server_privileges.php:652 -#: server_privileges.php:654 +#: server_privileges.php:45 server_privileges.php:651 +#: server_privileges.php:653 msgid "Limits the number of simultaneous connections the user may have." msgstr "Obmedzuje počet simultánnych pripojení používateľa." -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:46 server_privileges.php:187 +#: server_privileges.php:543 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:47 server_privileges.php:189 +#: server_privileges.php:447 server_privileges.php:549 msgid "Has no effect in this MySQL version." msgstr "Nefunguje v tejto verzii MySQL." -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:48 server_privileges.php:185 +#: server_privileges.php:544 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Povolí znovunačítanie nastavení a vyprázdňovanie vyrovnávacích pamätí " "serveru." -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:197 +#: server_privileges.php:551 msgid "Allows the user to ask where the slaves / masters are." msgstr "Povolí používateľovi zistiť kde je hlavný / pomocný server." -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:50 server_privileges.php:196 +#: server_privileges.php:552 msgid "Needed for the replication slaves." msgstr "Potrebné pre replikáciu pomocných serverov." -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:51 server_privileges.php:179 +#: server_privileges.php:438 server_privileges.php:502 msgid "Allows reading data." msgstr "Povolí čítanie dát." -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:52 server_privileges.php:192 +#: server_privileges.php:546 msgid "Gives access to the complete list of databases." msgstr "Povolí prístup ku kompletnému zoznamu databáz." -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:53 server_privileges.php:203 +#: server_privileges.php:205 server_privileges.php:518 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Umožňuje spúšťať príkazy so SHOW CREATE VIEW." -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:54 server_privileges.php:186 +#: server_privileges.php:545 msgid "Allows shutting down the server." msgstr "Povolí vypnutie serveru." -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:55 server_privileges.php:193 +#: server_privileges.php:542 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -4735,159 +4785,159 @@ msgstr "" "Potrebné pre väčšinu operácií pri správe serveru ako nastavovanie globálny " "premenných alebo zabíjanie procesov iných používateľov." -#: server_privileges.php:57 server_privileges.php:201 -#: server_privileges.php:535 +#: server_privileges.php:56 server_privileges.php:200 +#: server_privileges.php:534 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "Povolí vytváranie a mazanie indexov." -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:57 server_privileges.php:181 +#: server_privileges.php:444 server_privileges.php:504 msgid "Allows changing data." msgstr "Povolí menenie dát." -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:58 server_privileges.php:259 msgid "No privileges." msgstr "Žiadne práva." -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:301 server_privileges.php:302 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Žiadny" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1710 server_privileges.php:1716 +#: server_privileges.php:430 server_privileges.php:565 +#: server_privileges.php:1714 server_privileges.php:1720 msgid "Table-specific privileges" msgstr "Oprávnenia pre jednotlivé tabuľky" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1532 +#: server_privileges.php:431 server_privileges.php:573 +#: server_privileges.php:1536 msgid " Note: MySQL privilege names are expressed in English " msgstr " Poznámka: názvy MySQL oprávnení sú uvádzané v angličtine. " -#: server_privileges.php:563 server_privileges.php:1531 +#: server_privileges.php:562 server_privileges.php:1535 msgid "Global privileges" msgstr "Globálne práva" -#: server_privileges.php:565 server_privileges.php:1710 +#: server_privileges.php:564 server_privileges.php:1714 msgid "Database-specific privileges" msgstr "Oprávnenia pre jednotlivé databázy" -#: server_privileges.php:610 +#: server_privileges.php:609 msgid "Administration" msgstr "Administrácia" -#: server_privileges.php:630 +#: server_privileges.php:629 msgid "Resource limits" msgstr "Obmedzenie zdrojov" -#: server_privileges.php:631 +#: server_privileges.php:630 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" "Poznámka: Nastavenie týchto parametrov na 0 (nulu) odstráni obmedzenia." -#: server_privileges.php:708 +#: server_privileges.php:707 msgid "Login Information" msgstr "Prihlásenie" -#: server_privileges.php:802 +#: server_privileges.php:801 msgid "Do not change the password" msgstr "Nezmeniť heslo" -#: server_privileges.php:835 server_privileges.php:2197 +#: server_privileges.php:834 server_privileges.php:2201 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Nebol nájdený žiadny používateľ." -#: server_privileges.php:879 +#: server_privileges.php:878 #, php-format msgid "The user %s already exists!" msgstr "Používateľ %s už existuje!" -#: server_privileges.php:962 +#: server_privileges.php:961 msgid "You have added a new user." msgstr "Používateľ bol pridaný." -#: server_privileges.php:1183 +#: server_privileges.php:1184 #, php-format msgid "You have updated the privileges for %s." msgstr "Boli aktualizované oprávnenia pre %s." -#: server_privileges.php:1207 +#: server_privileges.php:1208 #, php-format msgid "You have revoked the privileges for %s" msgstr "Boli zrušené oprávnenia pre %s" -#: server_privileges.php:1243 +#: server_privileges.php:1244 #, php-format msgid "The password for %s was changed successfully." msgstr "Heslo pre %s bolo úspešne zmenené." -#: server_privileges.php:1263 +#: server_privileges.php:1264 #, php-format msgid "Deleting %s" msgstr "Odstraňuje sa %s" -#: server_privileges.php:1274 +#: server_privileges.php:1275 msgid "No users selected for deleting!" msgstr "Na odstránenie neboli vybraní žiadni používatelia!" -#: server_privileges.php:1277 +#: server_privileges.php:1278 msgid "Reloading the privileges" msgstr "Znovunačítanie práv" -#: server_privileges.php:1292 +#: server_privileges.php:1296 msgid "The selected users have been deleted successfully." msgstr "Vybraní používatelia bol úspešne odstránený." -#: server_privileges.php:1327 +#: server_privileges.php:1331 msgid "The privileges were reloaded successfully." msgstr "Práva boli úspešne znovunačítané." -#: server_privileges.php:1355 server_privileges.php:1641 +#: server_privileges.php:1359 server_privileges.php:1645 msgid "Edit Privileges" msgstr "Upraviť oprávnenia" -#: server_privileges.php:1364 +#: server_privileges.php:1368 msgid "Revoke" msgstr "Zrušiť" -#: server_privileges.php:1396 +#: server_privileges.php:1400 msgid "User overview" msgstr "Prehľad používatelov" -#: server_privileges.php:1533 server_privileges.php:1715 -#: server_privileges.php:2064 +#: server_privileges.php:1537 server_privileges.php:1719 +#: server_privileges.php:2068 msgid "Grant" msgstr "Prideliť" -#: server_privileges.php:1552 server_privileges.php:2154 +#: server_privileges.php:1556 server_privileges.php:2158 msgid "Any" msgstr "Akýkoľvek" -#: server_privileges.php:1601 server_privileges.php:1625 -#: server_privileges.php:2019 server_privileges.php:2208 +#: server_privileges.php:1605 server_privileges.php:1629 +#: server_privileges.php:2023 server_privileges.php:2212 msgid "Add a new User" msgstr "Pridať nového používateľa" -#: server_privileges.php:1606 +#: server_privileges.php:1610 msgid "Remove selected users" msgstr "Odstrániť vybraných používateľov" -#: server_privileges.php:1609 +#: server_privileges.php:1613 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Odobranie všetkých aktívnych práv používateľom a ich následné odstránenie." -#: server_privileges.php:1610 server_privileges.php:1611 -#: server_privileges.php:1612 +#: server_privileges.php:1614 server_privileges.php:1615 +#: server_privileges.php:1616 msgid "Drop the databases that have the same names as the users." msgstr "Odstrániť databázy s rovnakým menom ako majú používatelia." -#: server_privileges.php:1628 +#: server_privileges.php:1632 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4900,51 +4950,51 @@ msgstr "" "tieto tabuľky ručne upravené. V tomto prípade sa odporúča vykonať " "%sznovunačítanie práv%s predtým ako budete pokračovať." -#: server_privileges.php:1676 +#: server_privileges.php:1680 msgid "The selected user was not found in the privilege table." msgstr "Zvolený používateľ nebol nájdený v tabuľke práv." -#: server_privileges.php:1716 +#: server_privileges.php:1720 msgid "Column-specific privileges" msgstr "Oprávnenia pre jednotlivé stĺpce" -#: server_privileges.php:1917 +#: server_privileges.php:1921 msgid "Add privileges on the following database" msgstr "Pridať oprávnenia pre nasledujúcu databázu" -#: server_privileges.php:1935 +#: server_privileges.php:1939 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "Náhradzujúcim znakom _ a % by mal predchádzať znak \\, pokiaľ ich nechcete " "použiť doslovne" -#: server_privileges.php:1938 +#: server_privileges.php:1942 msgid "Add privileges on the following table" msgstr "Pridať oprávnenia pre nasledujúcu tabuľku" -#: server_privileges.php:1995 +#: server_privileges.php:1999 msgid "Change Login Information / Copy User" msgstr "Zmeniť informácie o používateľovi / Kopírovať používateľa" -#: server_privileges.php:1998 +#: server_privileges.php:2002 msgid "Create a new user with the same privileges and ..." msgstr "Vytvoriť používateľa s rovnakými právami a..." -#: server_privileges.php:2000 +#: server_privileges.php:2004 msgid "... keep the old one." msgstr "... zachovať pôvodného používateľa." -#: server_privileges.php:2001 +#: server_privileges.php:2005 msgid " ... delete the old one from the user tables." msgstr " ... zmazať pôvodného používateľa z tabuliek používateľov." -#: server_privileges.php:2002 +#: server_privileges.php:2006 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "" " ... odobrať všetky oprávnenia pôvodnému používateľovi a následne ho zmazať." -#: server_privileges.php:2003 +#: server_privileges.php:2007 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -4952,44 +5002,44 @@ msgstr "" " ... zmazať pôvodného používateľa z tabuliek používateľov a potom " "znovunačítať oprávnenia." -#: server_privileges.php:2025 +#: server_privileges.php:2029 msgid "Database for user" msgstr "Databáza pre používateľa" -#: server_privileges.php:2029 +#: server_privileges.php:2033 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Žiadny" -#: server_privileges.php:2030 +#: server_privileges.php:2034 msgid "Create database with same name and grant all privileges" msgstr "Vytvoriť databázu s rovnakým menom a prideliť všetky oprávnenia" -#: server_privileges.php:2031 +#: server_privileges.php:2035 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Prideliť všetky oprávnenia pomocou masky (používateľ_%)" -#: server_privileges.php:2034 +#: server_privileges.php:2038 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Prideliť všetky oprávnenia na databázu "%s"" -#: server_privileges.php:2057 +#: server_privileges.php:2061 #, php-format msgid "Users having access to "%s"" msgstr "Používatelia majúci prístup k "%s"" -#: server_privileges.php:2165 +#: server_privileges.php:2169 msgid "global" msgstr "globálny" -#: server_privileges.php:2167 +#: server_privileges.php:2171 msgid "database-specific" msgstr "závislé na databáze" -#: server_privileges.php:2169 +#: server_privileges.php:2173 msgid "wildcard" msgstr "nahradzujúci znak" @@ -5008,42 +5058,42 @@ msgstr "Neporadilo za zabiť vlákno %s. Jeho beh bol pravdepodobne už ukončen msgid "ID" msgstr "ID" -#: server_replication.php:50 +#: server_replication.php:49 msgid "Unknown error" msgstr "" -#: server_replication.php:57 +#: server_replication.php:56 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:64 +#: server_replication.php:63 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:70 +#: server_replication.php:69 msgid "Unable to change master" msgstr "" -#: server_replication.php:73 +#: server_replication.php:72 #, php-format msgid "Master server changed succesfully to %s" msgstr "Master server zmenený úspešne na %s" -#: server_replication.php:181 +#: server_replication.php:180 msgid "This server is configured as master in a replication process." msgstr "Tento server je nakonfigurovaný ako master v replikačnom procese." -#: server_replication.php:183 server_status.php:391 +#: server_replication.php:182 server_status.php:391 msgid "Show master status" msgstr "Zobraziť stav master replikácie" -#: server_replication.php:186 +#: server_replication.php:185 msgid "Show connected slaves" msgstr "" -#: server_replication.php:209 +#: server_replication.php:208 #, fuzzy, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -5052,12 +5102,12 @@ msgstr "" "Tento server nie je nakonfigurovaný ako slave v replikačnom procese. Chceli " "by ste ho nakonfigurovať?" -#: server_replication.php:216 +#: server_replication.php:215 #, fuzzy msgid "Master configuration" msgstr "Master replikácia" -#: server_replication.php:217 +#: server_replication.php:216 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -5066,40 +5116,40 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:220 +#: server_replication.php:219 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:221 +#: server_replication.php:220 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:224 +#: server_replication.php:223 msgid "Please select databases:" msgstr "Prosím, vyberte databázy:" -#: server_replication.php:227 +#: server_replication.php:226 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: server_replication.php:229 +#: server_replication.php:228 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: server_replication.php:292 +#: server_replication.php:291 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:295 +#: server_replication.php:294 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:304 +#: server_replication.php:303 #, fuzzy msgid "" "Server is configured as slave in a replication process. Would you like to:" @@ -5107,71 +5157,71 @@ msgstr "" "Tento server nie je nakonfigurovaný ako slave v replikačnom procese. Chceli " "by ste ho nakonfigurovať?" -#: server_replication.php:307 +#: server_replication.php:306 msgid "See slave status table" msgstr "" -#: server_replication.php:310 +#: server_replication.php:309 #, fuzzy msgid "Synchronize databases with master" msgstr "Synchronizovať Databázy" -#: server_replication.php:321 +#: server_replication.php:320 msgid "Control slave:" msgstr "Ovládať slave:" -#: server_replication.php:324 +#: server_replication.php:323 #, fuzzy msgid "Full start" msgstr "Celý text" -#: server_replication.php:324 +#: server_replication.php:323 msgid "Full stop" msgstr "" -#: server_replication.php:325 +#: server_replication.php:324 msgid "Reset slave" msgstr "" -#: server_replication.php:326 +#: server_replication.php:325 #, php-format msgid "SQL Thread %s only" msgstr "" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 msgid "Start" msgstr "Štart" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 msgid "Stop" msgstr "Stop" -#: server_replication.php:327 +#: server_replication.php:326 #, php-format msgid "IO Thread %s only" msgstr "" -#: server_replication.php:331 +#: server_replication.php:330 msgid "Error management:" msgstr "" -#: server_replication.php:333 +#: server_replication.php:332 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:335 +#: server_replication.php:334 msgid "Skip current error" msgstr "" -#: server_replication.php:336 +#: server_replication.php:335 msgid "Skip next" msgstr "" -#: server_replication.php:339 +#: server_replication.php:338 msgid "errors." msgstr "" -#: server_replication.php:354 +#: server_replication.php:353 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -6008,114 +6058,114 @@ msgstr "Typ dopytu" msgid "Replication status" msgstr "Stav replikácie" -#: server_synchronize.php:93 +#: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "Nepodarilo sa pripojiť k zdroju" -#: server_synchronize.php:96 +#: server_synchronize.php:95 msgid "Could not connect to the target" msgstr "Nepodarilo sa pripojiť k cieľu" -#: server_synchronize.php:121 server_synchronize.php:124 tbl_create.php:77 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "'%s' databáza neexistuje." -#: server_synchronize.php:264 +#: server_synchronize.php:263 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:271 +#: server_synchronize.php:270 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:399 server_synchronize.php:838 +#: server_synchronize.php:398 server_synchronize.php:837 msgid "not present" msgstr "" -#: server_synchronize.php:423 server_synchronize.php:866 +#: server_synchronize.php:422 server_synchronize.php:865 msgid "Structure Difference" msgstr "" -#: server_synchronize.php:424 server_synchronize.php:867 +#: server_synchronize.php:423 server_synchronize.php:866 msgid "Data Difference" msgstr "" -#: server_synchronize.php:429 server_synchronize.php:872 +#: server_synchronize.php:428 server_synchronize.php:871 msgid "Add column(s)" msgstr "Pridať stĺpec/stĺpce" -#: server_synchronize.php:430 server_synchronize.php:873 +#: server_synchronize.php:429 server_synchronize.php:872 msgid "Remove column(s)" msgstr "Odstrániť stĺpec/stĺpce" -#: server_synchronize.php:431 server_synchronize.php:874 +#: server_synchronize.php:430 server_synchronize.php:873 msgid "Alter column(s)" msgstr "Upraviť stĺpec/stĺpce" -#: server_synchronize.php:432 server_synchronize.php:875 +#: server_synchronize.php:431 server_synchronize.php:874 msgid "Remove index(s)" msgstr "Odstrániť index/indexy" -#: server_synchronize.php:433 server_synchronize.php:876 +#: server_synchronize.php:432 server_synchronize.php:875 #, fuzzy msgid "Apply index(s)" msgstr "Odstrániť index/indexy" -#: server_synchronize.php:434 server_synchronize.php:877 +#: server_synchronize.php:433 server_synchronize.php:876 msgid "Update row(s)" msgstr "Upraviť riadok/riadky" -#: server_synchronize.php:435 server_synchronize.php:878 +#: server_synchronize.php:434 server_synchronize.php:877 msgid "Insert row(s)" msgstr "Pridať riadok/riadky" -#: server_synchronize.php:445 server_synchronize.php:889 +#: server_synchronize.php:444 server_synchronize.php:888 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:448 server_synchronize.php:893 +#: server_synchronize.php:447 server_synchronize.php:892 msgid "Apply Selected Changes" msgstr "Aplikovať Vybrané Zmeny" -#: server_synchronize.php:450 server_synchronize.php:895 +#: server_synchronize.php:449 server_synchronize.php:894 msgid "Synchronize Databases" msgstr "Synchronizovať Databázy" -#: server_synchronize.php:463 +#: server_synchronize.php:462 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:941 +#: server_synchronize.php:940 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:1002 +#: server_synchronize.php:1001 msgid "The following queries have been executed:" msgstr "" -#: server_synchronize.php:1121 +#: server_synchronize.php:1120 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1122 +#: server_synchronize.php:1121 #, fuzzy #| msgid "max. concurrent connections" msgid "Current connection" msgstr "max. súčasných pripojení" -#: server_synchronize.php:1151 +#: server_synchronize.php:1150 #, fuzzy, php-format #| msgid "Configuration file" msgid "Configuration: %s" msgstr "Konfiguračný súbor" -#: server_synchronize.php:1166 +#: server_synchronize.php:1165 msgid "Socket" msgstr "Socket" -#: server_synchronize.php:1212 +#: server_synchronize.php:1211 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -6679,8 +6729,8 @@ msgstr "" #: setup/lib/messages.inc.php:128 msgid "" "Configure phpMyAdmin database to gain access to additional features, see " -"[a@../Documentation.html#linked-tables]linked-tables infrastructure[/a] in " -"documentation" +"[a@../Documentation.html#linked-tables]phpMyAdmin configuration storage[/a] " +"in documentation" msgstr "" #: setup/lib/messages.inc.php:129 setup/lib/messages.inc.php:290 @@ -7750,117 +7800,117 @@ msgstr "" msgid "ZIP" msgstr "" -#: sql.php:495 tbl_replace.php:385 +#: sql.php:494 tbl_replace.php:384 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: sql.php:512 +#: sql.php:511 msgid "Showing as PHP code" msgstr "Zobrazujem ako PHP kód" -#: sql.php:515 tbl_replace.php:359 +#: sql.php:514 tbl_replace.php:358 msgid "Showing SQL query" msgstr "Zobrazujem SQL dotaz" -#: sql.php:517 +#: sql.php:516 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Potvrdiť platnosť SQL" -#: sql.php:638 +#: sql.php:631 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problémy s indexami v tabuľke `%s`" -#: sql.php:670 +#: sql.php:663 msgid "Label" msgstr "Názov" -#: tbl_addfield.php:188 tbl_alter.php:102 tbl_indexes.php:97 +#: tbl_addfield.php:185 tbl_alter.php:100 tbl_indexes.php:97 #, php-format msgid "Table %1$s has been altered successfully" msgstr "Tabuľka %1$s bola úspešné upravená" -#: tbl_change.php:250 tbl_select.php:26 tbl_select.php:27 tbl_select.php:30 -#: tbl_select.php:33 +#: tbl_change.php:245 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_select.php:32 msgid "Browse foreign values" msgstr "Prejsť hodnoty cudzích kľúčov" -#: tbl_change.php:280 tbl_change.php:318 +#: tbl_change.php:275 tbl_change.php:313 msgid "Function" msgstr "Funkcia" -#: tbl_change.php:300 tbl_indexes.php:199 tbl_indexes.php:224 +#: tbl_change.php:295 tbl_indexes.php:198 tbl_indexes.php:223 msgid "Ignore" msgstr "Ignorovať" -#: tbl_change.php:725 +#: tbl_change.php:720 #, fuzzy #| msgid " Because of its length,
                            this field might not be editable " msgid " Because of its length,
                            this column might not be editable " msgstr " Toto možno nepôjde upraviť,
                            kvôli svojej dĺžke " -#: tbl_change.php:884 +#: tbl_change.php:835 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:890 +#: tbl_change.php:841 msgid "Binary - do not edit" msgstr "Binárny - neupravujte " -#: tbl_change.php:983 +#: tbl_change.php:889 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:1128 +#: tbl_change.php:1026 msgid "Insert as new row" msgstr "Vložiť ako nový riadok" -#: tbl_change.php:1129 +#: tbl_change.php:1027 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:1130 +#: tbl_change.php:1028 #, fuzzy msgid "Show insert query" msgstr "Zobrazujem SQL dotaz" -#: tbl_change.php:1145 +#: tbl_change.php:1043 msgid "Go back to previous page" msgstr "Späť" -#: tbl_change.php:1146 +#: tbl_change.php:1044 msgid "Insert another new row" msgstr "Vložiť nový záznam" -#: tbl_change.php:1150 +#: tbl_change.php:1048 msgid "Go back to this page" msgstr "Späť na túto stránku" -#: tbl_change.php:1158 +#: tbl_change.php:1056 msgid "Edit next row" msgstr "Upraviť nasledujúci riadok" -#: tbl_change.php:1169 +#: tbl_change.php:1067 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Pre pohyb medzi hodnotami použite klávesu TAB alebo pre pohyb všetkými " "smermi klávesy CTRL+šípky" -#: tbl_change.php:1207 +#: tbl_change.php:1105 #, php-format msgid "Restart insertion with %s rows" msgstr "" -#: tbl_create.php:57 +#: tbl_create.php:55 #, php-format msgid "Table %s already exists!" msgstr "Tabuľka %s už existuje!" -#: tbl_create.php:244 +#: tbl_create.php:241 #, php-format msgid "Table %1$s has been created." msgstr "Tabuľka %1$s bola vytvorená." @@ -7881,201 +7931,201 @@ msgstr "Nie je možné premenovať index na PRIMARY!" msgid "No index parts defined!" msgstr "Časti indexu neboli definované!" -#: tbl_indexes.php:159 +#: tbl_indexes.php:158 msgid "Create a new index" msgstr "Vytvoriť nový index" -#: tbl_indexes.php:161 +#: tbl_indexes.php:160 msgid "Modify an index" msgstr "Modifikovať index" -#: tbl_indexes.php:167 +#: tbl_indexes.php:166 msgid "Index name:" msgstr "Meno indexu :" -#: tbl_indexes.php:173 +#: tbl_indexes.php:172 msgid "Index type:" msgstr "Typ indexu :" -#: tbl_indexes.php:183 +#: tbl_indexes.php:182 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "(\"PRIMARY\" musí byť iba meno primárneho kľúča!)" -#: tbl_indexes.php:250 +#: tbl_indexes.php:249 #, php-format msgid "Add to index  %s column(s)" msgstr "Pridať do indexu  %s stĺpec" -#: tbl_indexes.php:255 tbl_structure.php:588 tbl_structure.php:599 +#: tbl_indexes.php:254 tbl_structure.php:586 tbl_structure.php:597 msgid "Column count has to be larger than zero." msgstr "Počet stĺpcov musí byť väčší ako nula." -#: tbl_move_copy.php:45 +#: tbl_move_copy.php:44 msgid "Can't move table to same one!" msgstr "Nedá sa presunúť tabuľka sama do seba!" -#: tbl_move_copy.php:47 +#: tbl_move_copy.php:46 msgid "Can't copy table to same one!" msgstr "Nedá sa skopírovať tabuľka sama do seba!" -#: tbl_move_copy.php:55 +#: tbl_move_copy.php:54 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabuľka %s bola presunutá do %s." -#: tbl_move_copy.php:57 +#: tbl_move_copy.php:56 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabuľka %s bola skorírovaná do %s." -#: tbl_move_copy.php:81 +#: tbl_move_copy.php:80 msgid "The table name is empty!" msgstr "Tabuľka je prázdna!" -#: tbl_operations.php:248 +#: tbl_operations.php:246 msgid "Alter table order by" msgstr "Zmeniť poradie tabuľky podľa" -#: tbl_operations.php:257 +#: tbl_operations.php:255 msgid "(singly)" msgstr "(po jednom)" -#: tbl_operations.php:277 +#: tbl_operations.php:275 msgid "Move table to (database.table):" msgstr "Presunúť tabuľku do (databáza.tabuľka):" -#: tbl_operations.php:335 +#: tbl_operations.php:333 msgid "Table options" msgstr "Parametre tabuľky" -#: tbl_operations.php:339 +#: tbl_operations.php:337 msgid "Rename table to" msgstr "Premenovať tabuľku na" -#: tbl_operations.php:510 +#: tbl_operations.php:508 msgid "Copy table to (database.table):" msgstr "Skopírovať tabuľku do (databáza.tabuľka):" -#: tbl_operations.php:557 +#: tbl_operations.php:555 msgid "Switch to copied table" msgstr "Prepnúť na skopírovanú tabuľku" -#: tbl_operations.php:569 +#: tbl_operations.php:567 msgid "Table maintenance" msgstr "Údržba tabuľky" -#: tbl_operations.php:590 +#: tbl_operations.php:588 msgid "Defragment table" msgstr "Defragmentovať tabuľku" -#: tbl_operations.php:629 +#: tbl_operations.php:627 #, php-format msgid "Table %s has been flushed" msgstr "Tabuľka %s bola vyprázdnená" -#: tbl_operations.php:635 +#: tbl_operations.php:633 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Vyprázdniť tabuľku (\"FLUSH\")" -#: tbl_operations.php:650 +#: tbl_operations.php:648 #, fuzzy msgid "Partition maintenance" msgstr "Údržba tabuľky" -#: tbl_operations.php:658 +#: tbl_operations.php:656 #, php-format msgid "Partition %s" msgstr "" -#: tbl_operations.php:661 +#: tbl_operations.php:659 msgid "Analyze" msgstr "Analyzovať" -#: tbl_operations.php:662 +#: tbl_operations.php:660 msgid "Check" msgstr "Skontrolovať" -#: tbl_operations.php:663 +#: tbl_operations.php:661 msgid "Optimize" msgstr "Optimalizovať" -#: tbl_operations.php:664 +#: tbl_operations.php:662 msgid "Rebuild" msgstr "" -#: tbl_operations.php:665 +#: tbl_operations.php:663 msgid "Repair" msgstr "Opraviť" -#: tbl_operations.php:677 +#: tbl_operations.php:675 msgid "Remove partitioning" msgstr "" -#: tbl_operations.php:703 +#: tbl_operations.php:701 msgid "Check referential integrity:" msgstr "Skontrolovať referenčnú integritu:" -#: tbl_printview.php:73 +#: tbl_printview.php:72 msgid "Show tables" msgstr "Zobraziť tabuľky" -#: tbl_printview.php:308 tbl_structure.php:655 +#: tbl_printview.php:307 tbl_structure.php:653 msgid "Space usage" msgstr "Zabrané miesto" -#: tbl_printview.php:312 tbl_structure.php:659 +#: tbl_printview.php:311 tbl_structure.php:657 msgid "Usage" msgstr "Využitie" -#: tbl_printview.php:339 tbl_structure.php:686 +#: tbl_printview.php:338 tbl_structure.php:684 msgid "Effective" msgstr "Efektívny" -#: tbl_printview.php:364 tbl_structure.php:724 +#: tbl_printview.php:363 tbl_structure.php:722 msgid "Row Statistics" msgstr "Štatistika riadku" -#: tbl_printview.php:367 tbl_structure.php:727 +#: tbl_printview.php:366 tbl_structure.php:725 msgid "Statements" msgstr "Údaj" -#: tbl_printview.php:378 tbl_structure.php:739 +#: tbl_printview.php:377 tbl_structure.php:737 msgid "static" msgstr "" -#: tbl_printview.php:380 tbl_structure.php:741 +#: tbl_printview.php:379 tbl_structure.php:739 msgid "dynamic" msgstr "dynamický" -#: tbl_printview.php:402 tbl_structure.php:784 +#: tbl_printview.php:401 tbl_structure.php:782 msgid "Row length" msgstr "Dĺžka riadku" -#: tbl_printview.php:412 tbl_structure.php:792 +#: tbl_printview.php:411 tbl_structure.php:790 msgid " Row size " msgstr " Veľkosť riadku " -#: tbl_relation.php:278 +#: tbl_relation.php:276 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" -#: tbl_relation.php:404 +#: tbl_relation.php:402 #, fuzzy #| msgid "Internal relations" msgid "Internal relation" msgstr "Interné vzťahy" -#: tbl_relation.php:406 +#: tbl_relation.php:404 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: tbl_relation.php:412 +#: tbl_relation.php:410 msgid "Foreign key constraint" msgstr "" @@ -8083,232 +8133,232 @@ msgstr "" msgid "No rows selected" msgstr "Nebol vybraný žiadny riadok" -#: tbl_select.php:130 +#: tbl_select.php:129 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Vykonať \"dopyt podľa príkladu\" (nahradzujúci znak: \"%\")" -#: tbl_select.php:136 +#: tbl_select.php:135 msgid "Operator" msgstr "Operátor" -#: tbl_select.php:267 +#: tbl_select.php:266 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "Zvoliť pole (najmenej jedno):" -#: tbl_select.php:285 +#: tbl_select.php:284 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Pridať vyhľadávacie parametre (obsah dopytu po \"where\" príkaze):" -#: tbl_select.php:292 +#: tbl_select.php:291 msgid "Number of rows per page" msgstr "záznamov na stránku" -#: tbl_select.php:298 +#: tbl_select.php:297 msgid "Display order:" msgstr "Zobraziť zoradené:" -#: tbl_structure.php:160 +#: tbl_structure.php:159 msgid "Browse distinct values" msgstr "Prechádzať iné hodnoty" -#: tbl_structure.php:360 +#: tbl_structure.php:358 #, fuzzy #| msgid "None" msgctxt "None for default" msgid "None" msgstr "Žiadny" -#: tbl_structure.php:373 +#: tbl_structure.php:371 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Column %s has been dropped" msgstr "Tabuľka %s bola odstránená" -#: tbl_structure.php:384 +#: tbl_structure.php:382 #, php-format msgid "A primary key has been added on %s" msgstr "Bol pridaný primárny kľúč pre %s" -#: tbl_structure.php:399 tbl_structure.php:413 tbl_structure.php:427 +#: tbl_structure.php:397 tbl_structure.php:411 tbl_structure.php:425 #, php-format msgid "An index has been added on %s" msgstr "Bol pridaný index pre %s" -#: tbl_structure.php:505 tbl_structure.php:507 +#: tbl_structure.php:503 tbl_structure.php:505 msgid "Relation view" msgstr "Zobraziť prepojenia" -#: tbl_structure.php:514 tbl_structure.php:516 +#: tbl_structure.php:512 tbl_structure.php:514 msgid "Propose table structure" msgstr "Navrhnúť štruktúru tabuľky" -#: tbl_structure.php:539 +#: tbl_structure.php:537 #, fuzzy #| msgid "Add column(s)" msgid "Add column" msgstr "Pridať stĺpec/stĺpce" -#: tbl_structure.php:553 +#: tbl_structure.php:551 msgid "At End of Table" msgstr "Na konci tabuľky" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At Beginning of Table" msgstr "Na začiatku tabuľky" -#: tbl_structure.php:555 +#: tbl_structure.php:553 #, php-format msgid "After %s" msgstr "Po %s" -#: tbl_structure.php:593 +#: tbl_structure.php:591 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "Vytvoriť index na %s stĺpcoch" -#: tbl_structure.php:755 +#: tbl_structure.php:753 msgid "partitioned" msgstr "" -#: tbl_tracking.php:113 +#: tbl_tracking.php:109 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:186 +#: tbl_tracking.php:182 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "" -#: tbl_tracking.php:194 +#: tbl_tracking.php:190 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "" -#: tbl_tracking.php:202 +#: tbl_tracking.php:198 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "" -#: tbl_tracking.php:212 +#: tbl_tracking.php:208 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:219 +#: tbl_tracking.php:215 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:220 +#: tbl_tracking.php:216 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:229 +#: tbl_tracking.php:225 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:250 tbl_tracking.php:378 +#: tbl_tracking.php:245 tbl_tracking.php:373 msgid "Close" msgstr "" -#: tbl_tracking.php:261 +#: tbl_tracking.php:256 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:380 +#: tbl_tracking.php:375 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:396 tbl_tracking.php:503 +#: tbl_tracking.php:391 tbl_tracking.php:498 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "" -#: tbl_tracking.php:409 tbl_tracking.php:460 +#: tbl_tracking.php:404 tbl_tracking.php:455 #, fuzzy msgid "Date" msgstr "Dáta" -#: tbl_tracking.php:410 tbl_tracking.php:461 +#: tbl_tracking.php:405 tbl_tracking.php:456 #, fuzzy msgid "Username" msgstr "Používateľ:" -#: tbl_tracking.php:411 +#: tbl_tracking.php:406 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:462 +#: tbl_tracking.php:457 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:506 +#: tbl_tracking.php:501 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:507 +#: tbl_tracking.php:502 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:520 +#: tbl_tracking.php:515 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:560 +#: tbl_tracking.php:555 msgid "Show versions" msgstr "" -#: tbl_tracking.php:592 +#: tbl_tracking.php:587 #, fuzzy msgid "Version" msgstr "Perština" -#: tbl_tracking.php:639 +#: tbl_tracking.php:634 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "" -#: tbl_tracking.php:641 +#: tbl_tracking.php:636 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:652 +#: tbl_tracking.php:647 #, php-format msgid "Activate tracking for %s.%s" msgstr "" -#: tbl_tracking.php:654 +#: tbl_tracking.php:649 msgid "Activate now" msgstr "" -#: tbl_tracking.php:667 +#: tbl_tracking.php:662 #, php-format msgid "Create version %s of %s.%s" msgstr "" -#: tbl_tracking.php:671 +#: tbl_tracking.php:666 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:679 +#: tbl_tracking.php:674 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:687 +#: tbl_tracking.php:682 #, fuzzy msgid "Create version" msgstr "Vytvoriť relaciu" @@ -8358,11 +8408,40 @@ msgstr "Profil bol aktualizovaný." msgid "VIEW name" msgstr "" -#: view_operations.php:92 +#: view_operations.php:91 #, fuzzy msgid "Rename view to" msgstr "Premenovať tabuľku na" +#, fuzzy +#~| msgid "Enabled" +#~ msgctxt "BLOB repository" +#~ msgid "Enabled" +#~ msgstr "Zapnuté" + +#, fuzzy +#~ msgid "Disable" +#~ msgstr "Vypnuté" + +#~ msgid "Damaged" +#~ msgstr "Poškodené" + +#, fuzzy +#~| msgid "Repair" +#~ msgctxt "BLOB repository" +#~ msgid "Repair" +#~ msgstr "Opraviť" + +#, fuzzy +#~| msgid "Disabled" +#~ msgctxt "BLOB repository" +#~ msgid "Disabled" +#~ msgstr "Vypnuté" + +#, fuzzy +#~ msgid "Enable" +#~ msgstr "Zapnuté" + #~ msgid "" #~ "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " #~ "extension. Please check your PHP configuration." diff --git a/po/sl.po b/po/sl.po index 291d916aa..56f94d596 100644 --- a/po/sl.po +++ b/po/sl.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-21 13:53+0200\n" +"POT-Creation-Date: 2010-07-26 17:18+0200\n" "PO-Revision-Date: 2010-07-16 17:14+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" @@ -15,19 +15,19 @@ msgstr "" "%100==4 ? 2 : 3);\n" "X-Generator: Pootle 2.0.1\n" -#: browse_foreigners.php:37 browse_foreigners.php:58 -#: libraries/display_tbl.lib.php:416 server_privileges.php:1506 +#: browse_foreigners.php:36 browse_foreigners.php:57 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1510 msgid "Show all" msgstr "Pokaži vse" -#: browse_foreigners.php:81 libraries/common.lib.php:2313 -#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:393 -#: libraries/export/pdf.php:146 pdf_schema.php:282 pdf_schema.php:1122 -#: pdf_schema.php:1138 +#: browse_foreigners.php:80 libraries/common.lib.php:2318 +#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:392 +#: libraries/export/pdf.php:146 pdf_schema.php:281 pdf_schema.php:1121 +#: pdf_schema.php:1137 msgid "Page number:" msgstr "Številka strani:" -#: browse_foreigners.php:131 +#: browse_foreigners.php:130 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -36,137 +36,151 @@ msgstr "" "Ciljnega okna ni bilo mogoče osvežiti. Morda ste zaprli nadrejeno okno ali " "pa vaš brskalnik blokira osveževanje varnostnih parametrov med okni." -#: browse_foreigners.php:149 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2829 -#: libraries/common.lib.php:2836 libraries/db_links.inc.php:74 -#: libraries/tbl_links.inc.php:62 +#: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 +#: db_structure.php:89 db_structure.php:91 db_structure.php:102 +#: db_structure.php:104 libraries/common.lib.php:2834 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Iskanje" -#: browse_foreigners.php:152 db_operations.php:384 db_operations.php:428 -#: db_operations.php:498 db_operations.php:608 db_search.php:344 -#: db_structure.php:566 js/messages.php:48 libraries/Config.class.php:1043 -#: libraries/Theme_Manager.class.php:310 +#: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 +#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 +#: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 -#: libraries/common.lib.php:1340 libraries/common.lib.php:2289 +#: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 -#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:275 -#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:531 -#: libraries/display_tbl.lib.php:613 libraries/replication_gui.lib.php:75 +#: libraries/display_export.lib.php:269 libraries/display_import.lib.php:275 +#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 +#: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 #: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:781 -#: main.php:127 navigation.php:231 pdf_pages.php:291 pdf_pages.php:327 -#: pdf_pages.php:529 pmd_pdf.php:115 server_binlog.php:128 -#: server_privileges.php:664 server_privileges.php:1616 -#: server_privileges.php:1963 server_privileges.php:2010 -#: server_privileges.php:2049 server_replication.php:234 -#: server_replication.php:317 server_replication.php:340 -#: server_synchronize.php:1208 tbl_change.php:328 tbl_change.php:1172 -#: tbl_change.php:1209 tbl_indexes.php:253 tbl_operations.php:264 -#: tbl_operations.php:301 tbl_operations.php:498 tbl_operations.php:560 -#: tbl_operations.php:680 tbl_select.php:324 tbl_structure.php:561 -#: tbl_structure.php:596 tbl_tracking.php:394 tbl_tracking.php:511 -#: view_create.php:181 view_operations.php:100 +#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 +#: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 +#: server_privileges.php:663 server_privileges.php:1620 +#: server_privileges.php:1967 server_privileges.php:2014 +#: server_privileges.php:2053 server_replication.php:233 +#: server_replication.php:316 server_replication.php:339 +#: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 +#: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 +#: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 +#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "Izvedi" -#: browse_foreigners.php:167 browse_foreigners.php:171 -#: libraries/Index.class.php:441 tbl_tracking.php:319 +#: browse_foreigners.php:166 browse_foreigners.php:170 +#: libraries/Index.class.php:441 tbl_tracking.php:314 msgid "Keyname" msgstr "Ime ključa" -#: browse_foreigners.php:168 browse_foreigners.php:170 -#: server_collations.php:54 server_collations.php:66 server_engines.php:58 +#: browse_foreigners.php:167 browse_foreigners.php:169 +#: server_collations.php:54 server_collations.php:66 server_engines.php:57 #: server_status.php:738 msgid "Description" msgstr "Opis" -#: browse_foreigners.php:246 browse_foreigners.php:255 -#: browse_foreigners.php:267 browse_foreigners.php:275 +#: browse_foreigners.php:245 browse_foreigners.php:254 +#: browse_foreigners.php:266 browse_foreigners.php:274 msgid "Use this value" msgstr "Uporabi to vrednost" -#: db_create.php:45 +#: bs_disp_as_mime_type.php:29 bs_play_media.php:35 +msgid "No blob streaming server configured!" +msgstr "" + +#: bs_disp_as_mime_type.php:35 +#, fuzzy +#| msgid "Failed to write file to disk." +msgid "Failed to fetch headers" +msgstr "Pisanje datoteke na disk je spodletelo." + +#: bs_disp_as_mime_type.php:41 +msgid "Failed to open remote URL" +msgstr "" + +#: db_create.php:44 #, php-format msgid "Database %1$s has been created." msgstr "Podatkovna zbirka %1$s je ustvarjena." -#: db_datadict.php:48 db_operations.php:377 +#: db_datadict.php:48 db_operations.php:313 msgid "Database comment: " msgstr "Komentar zbirke podatkov: " -#: db_datadict.php:164 libraries/tbl_properties.inc.php:723 -#: pdf_schema.php:1235 tbl_operations.php:346 tbl_printview.php:128 +#: db_datadict.php:164 libraries/tbl_properties.inc.php:722 +#: pdf_schema.php:1234 tbl_operations.php:344 tbl_printview.php:127 msgid "Table comments" msgstr "Komentar tabele" -#: db_datadict.php:173 db_qbe.php:173 libraries/Index.class.php:445 +#: db_datadict.php:173 db_qbe.php:170 libraries/Index.class.php:445 #: libraries/export/htmlword.php:243 libraries/export/latex.php:364 #: libraries/export/odt.php:293 libraries/export/texytext.php:233 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:274 -#: pdf_schema.php:1261 pdf_schema.php:1282 tbl_change.php:306 -#: tbl_indexes.php:188 tbl_printview.php:140 tbl_relation.php:401 -#: tbl_select.php:133 tbl_structure.php:176 tbl_tracking.php:272 -#: tbl_tracking.php:323 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 +#: pdf_schema.php:1260 pdf_schema.php:1281 tbl_change.php:301 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:132 tbl_structure.php:175 tbl_tracking.php:267 +#: tbl_tracking.php:318 msgid "Column" msgstr "Stolpec" -#: db_datadict.php:174 db_printview.php:105 libraries/Index.class.php:442 +#: db_datadict.php:174 db_printview.php:104 libraries/Index.class.php:442 #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 #: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:244 #: libraries/export/latex.php:364 libraries/export/odt.php:296 #: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:99 -#: pdf_schema.php:1262 pdf_schema.php:1283 server_privileges.php:2062 -#: tbl_change.php:285 tbl_change.php:312 tbl_printview.php:141 -#: tbl_printview.php:311 tbl_select.php:134 tbl_structure.php:177 -#: tbl_structure.php:658 tbl_tracking.php:273 tbl_tracking.php:320 +#: pdf_schema.php:1261 pdf_schema.php:1282 server_privileges.php:2066 +#: tbl_change.php:280 tbl_change.php:307 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:133 tbl_structure.php:176 +#: tbl_structure.php:656 tbl_tracking.php:268 tbl_tracking.php:315 msgid "Type" msgstr "Vrsta" #: db_datadict.php:176 libraries/Index.class.php:448 #: libraries/export/htmlword.php:245 libraries/export/latex.php:364 #: libraries/export/odt.php:299 libraries/export/texytext.php:235 -#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1264 -#: pdf_schema.php:1285 tbl_change.php:321 tbl_printview.php:143 -#: tbl_structure.php:180 tbl_tracking.php:275 tbl_tracking.php:326 +#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1263 +#: pdf_schema.php:1284 tbl_change.php:316 tbl_printview.php:142 +#: tbl_structure.php:179 tbl_tracking.php:270 tbl_tracking.php:321 msgid "Null" msgstr "Null" -#: db_datadict.php:177 db_structure.php:500 libraries/export/htmlword.php:246 +#: db_datadict.php:177 db_structure.php:486 libraries/export/htmlword.php:246 #: libraries/export/latex.php:364 libraries/export/odt.php:302 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:105 -#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 -#: tbl_structure.php:181 tbl_tracking.php:276 +#: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:143 +#: tbl_structure.php:180 tbl_tracking.php:271 msgid "Default" msgstr "Privzeto" #: db_datadict.php:181 libraries/export/htmlword.php:248 #: libraries/export/latex.php:366 libraries/export/odt.php:306 -#: libraries/export/texytext.php:238 pdf_schema.php:1267 pdf_schema.php:1288 -#: tbl_printview.php:148 +#: libraries/export/texytext.php:238 pdf_schema.php:1266 pdf_schema.php:1287 +#: tbl_printview.php:147 msgid "Links to" msgstr "Povezave z" -#: db_datadict.php:183 db_printview.php:111 libraries/export/htmlword.php:251 +#: db_datadict.php:183 db_printview.php:110 libraries/export/htmlword.php:251 #: libraries/export/latex.php:49 libraries/export/latex.php:369 #: libraries/export/odt.php:37 libraries/export/odt.php:311 #: libraries/export/sql.php:29 libraries/export/texytext.php:241 -#: libraries/tbl_properties.inc.php:129 pdf_schema.php:1278 -#: pdf_schema.php:1289 tbl_printview.php:150 +#: libraries/tbl_properties.inc.php:128 pdf_schema.php:1277 +#: pdf_schema.php:1288 tbl_printview.php:149 msgid "Comments" msgstr "Komentarji" #: db_datadict.php:266 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/export/htmlword.php:321 #: libraries/export/latex.php:434 libraries/export/odt.php:367 -#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:262 -#: pdf_schema.php:1343 server_privileges.php:1560 server_privileges.php:1571 -#: server_privileges.php:1881 server_privileges.php:1886 -#: server_privileges.php:2179 sql.php:131 sql.php:193 tbl_printview.php:227 -#: tbl_structure.php:349 tbl_tracking.php:336 tbl_tracking.php:341 +#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:261 +#: pdf_schema.php:1342 server_privileges.php:1564 server_privileges.php:1575 +#: server_privileges.php:1885 server_privileges.php:1890 +#: server_privileges.php:2183 sql.php:130 sql.php:192 tbl_printview.php:226 +#: tbl_structure.php:347 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "Ne" @@ -177,17 +191,17 @@ msgstr "Ne" #: libraries/mult_submits.inc.php:49 libraries/mult_submits.inc.php:54 #: libraries/mult_submits.inc.php:59 libraries/mult_submits.inc.php:91 #: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:105 -#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:261 -#: libraries/mult_submits.inc.php:272 pdf_schema.php:1343 -#: server_databases.php:63 server_privileges.php:1557 -#: server_privileges.php:1571 server_privileges.php:1881 -#: server_privileges.php:1884 server_privileges.php:2179 sql.php:192 -#: tbl_printview.php:227 tbl_structure.php:39 tbl_structure.php:349 -#: tbl_tracking.php:334 tbl_tracking.php:339 +#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:260 +#: libraries/mult_submits.inc.php:271 pdf_schema.php:1342 +#: server_databases.php:61 server_privileges.php:1561 +#: server_privileges.php:1575 server_privileges.php:1885 +#: server_privileges.php:1888 server_privileges.php:2183 sql.php:191 +#: tbl_printview.php:226 tbl_structure.php:38 tbl_structure.php:347 +#: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" msgstr "Da" -#: db_datadict.php:321 db_printview.php:265 tbl_printview.php:496 +#: db_datadict.php:321 db_printview.php:264 tbl_printview.php:495 msgid "Print" msgstr "Natisni" @@ -195,188 +209,154 @@ msgstr "Natisni" msgid "View dump (schema) of database" msgstr "Preglej povzetek stanja podatkovne zbirke" -#: db_export.php:32 db_printview.php:95 db_qbe.php:101 db_structure.php:50 -#: db_tracking.php:34 export.php:352 navigation.php:326 +#: db_export.php:32 db_printview.php:94 db_qbe.php:98 db_structure.php:49 +#: db_tracking.php:30 export.php:350 navigation.php:325 msgid "No tables found in database." msgstr "V podatkovni zbirki ni mogoče najti tabel." -#: db_export.php:42 db_search.php:326 server_export.php:26 +#: db_export.php:42 db_search.php:326 server_export.php:24 msgid "Select All" msgstr "Izberi vse" -#: db_export.php:44 db_search.php:329 server_export.php:28 +#: db_export.php:44 db_search.php:329 server_export.php:26 msgid "Unselect All" msgstr "Prekliči izbor vsega" -#: db_operations.php:37 tbl_create.php:49 +#: db_operations.php:33 tbl_create.php:47 msgid "The database name is empty!" msgstr "Ime podatkovne zbirke je prazno!" -#: db_operations.php:235 +#: db_operations.php:231 #, php-format msgid "Database %s has been renamed to %s" msgstr "Zbirka podatkov %s je preimenovana v %s" -#: db_operations.php:239 +#: db_operations.php:235 #, php-format msgid "Database %s has been copied to %s" msgstr "Zbirka podatkov %s je kopirana v %s" -#: db_operations.php:411 +#: db_operations.php:347 msgid "Rename database to" msgstr "Preimenuj zbirko podatkov v" -#: db_operations.php:416 server_processlist.php:56 +#: db_operations.php:352 server_processlist.php:56 msgid "Command" msgstr "Ukaz" -#: db_operations.php:428 tbl_change.php:1141 +#: db_operations.php:364 tbl_change.php:1039 msgid "and then" msgstr "in potem" -#: db_operations.php:454 +#: db_operations.php:390 msgid "Copy database to" msgstr "Kopiraj zbirko podatkov v" -#: db_operations.php:461 tbl_operations.php:527 tbl_tracking.php:387 +#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Samo struktura" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:389 +#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Struktura in podatki" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:388 +#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Samo podatki" -#: db_operations.php:471 +#: db_operations.php:407 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE pred kopiranjem" -#: db_operations.php:474 libraries/export/sql.php:51 +#: db_operations.php:410 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 -#: libraries/export/sql.php:81 tbl_operations.php:535 +#: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "Dodaj %s" -#: db_operations.php:478 libraries/export/sql.php:77 tbl_operations.php:298 -#: tbl_operations.php:537 +#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Dodaj vrednost AUTO_INCREMENT" -#: db_operations.php:482 tbl_operations.php:544 +#: db_operations.php:418 tbl_operations.php:542 msgid "Add constraints" msgstr "Dodaj omejitve" -#: db_operations.php:495 +#: db_operations.php:431 msgid "Switch to copied database" msgstr "Preklopi na kopirano podatkovno zbirko" -#: db_operations.php:536 -msgid "BLOB Repository" -msgstr "Shramba BLOB" - -#: db_operations.php:539 db_tracking.php:75 libraries/common.lib.php:1357 -#: libraries/server_links.inc.php:48 server_processlist.php:58 -#: tbl_tracking.php:595 test/theme.php:100 -msgid "Status" -msgstr "Stanje" - -#: db_operations.php:547 -msgctxt "BLOB repository" -msgid "Enabled" -msgstr "Omogočeno" - -#: db_operations.php:551 -msgid "Disable" -msgstr "Onemogoči" - -#: db_operations.php:561 -msgid "Damaged" -msgstr "Poškodovano" - -#: db_operations.php:565 -msgctxt "BLOB repository" -msgid "Repair" -msgstr "Popravi" - -#: db_operations.php:573 -msgctxt "BLOB repository" -msgid "Disabled" -msgstr "Onemogočeno" - -#: db_operations.php:577 -msgid "Enable" -msgstr "Omogoči" - -#: db_operations.php:601 libraries/Index.class.php:447 +#: db_operations.php:451 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 -#: server_collations.php:53 server_collations.php:65 server_databases.php:110 -#: tbl_operations.php:362 tbl_select.php:135 tbl_structure.php:178 -#: tbl_structure.php:766 tbl_tracking.php:274 tbl_tracking.php:325 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 +#: server_collations.php:53 server_collations.php:65 server_databases.php:108 +#: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:177 +#: tbl_structure.php:764 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "Pravilo za razvrščanje znakov" -#: db_operations.php:614 main.php:315 pdf_schema.php:33 -#, php-format +#: db_operations.php:464 pdf_schema.php:32 +#, fuzzy, php-format +#| msgid "" +#| "The additional features for working with linked tables have been " +#| "deactivated. To find out why click %shere%s." msgid "" -"The additional features for working with linked tables have been " -"deactivated. To find out why click %shere%s." +"The phpMyAdmin configuration storage has been deactivated. To find out why " +"click %shere%s." msgstr "" "Dodatne funkcije za delo s povezanimi tabelami so bile izkjučene. Če želite " "izvedeti zakaj, kliknite %stukaj%s." -#: db_operations.php:647 +#: db_operations.php:497 msgid "Edit PDF Pages" msgstr "Uredi PDF strani" -#: db_printview.php:103 db_tracking.php:71 db_tracking.php:156 +#: db_printview.php:102 db_tracking.php:67 db_tracking.php:152 #: libraries/db_structure.lib.php:37 libraries/export/xml.php:327 -#: libraries/header.inc.php:125 pdf_pages.php:423 server_privileges.php:1657 -#: server_privileges.php:1713 server_privileges.php:1977 -#: server_synchronize.php:422 server_synchronize.php:865 tbl_tracking.php:591 +#: libraries/header.inc.php:125 pdf_pages.php:422 server_privileges.php:1661 +#: server_privileges.php:1717 server_privileges.php:1981 +#: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "Tabela" -#: db_printview.php:104 libraries/db_structure.lib.php:47 +#: db_printview.php:103 libraries/db_structure.lib.php:47 #: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 -#: navigation.php:629 navigation.php:651 server_databases.php:121 -#: tbl_printview.php:392 tbl_structure.php:364 tbl_structure.php:776 +#: navigation.php:628 navigation.php:650 server_databases.php:119 +#: tbl_printview.php:391 tbl_structure.php:362 tbl_structure.php:774 msgid "Rows" msgstr "vrstic" -#: db_printview.php:108 libraries/db_structure.lib.php:58 tbl_indexes.php:189 +#: db_printview.php:107 libraries/db_structure.lib.php:58 tbl_indexes.php:188 msgid "Size" msgstr "Velikost" -#: db_printview.php:161 db_structure.php:456 libraries/export/sql.php:556 +#: db_printview.php:160 db_structure.php:442 libraries/export/sql.php:556 #: libraries/export/sql.php:896 msgid "in use" msgstr "v uporabi" -#: db_printview.php:186 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:511 pdf_schema.php:1240 tbl_printview.php:432 -#: tbl_structure.php:808 +#: db_printview.php:185 libraries/db_info.inc.php:86 +#: libraries/export/sql.php:511 pdf_schema.php:1239 tbl_printview.php:431 +#: tbl_structure.php:806 msgid "Creation" msgstr "Ustvarjeno" -#: db_printview.php:195 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:516 pdf_schema.php:1245 tbl_printview.php:442 -#: tbl_structure.php:816 +#: db_printview.php:194 libraries/db_info.inc.php:91 +#: libraries/export/sql.php:516 pdf_schema.php:1244 tbl_printview.php:441 +#: tbl_structure.php:814 msgid "Last update" msgstr "Zadnjič posodobljeno" -#: db_printview.php:204 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:521 pdf_schema.php:1250 tbl_printview.php:452 -#: tbl_structure.php:824 +#: db_printview.php:203 libraries/db_info.inc.php:96 +#: libraries/export/sql.php:521 pdf_schema.php:1249 tbl_printview.php:451 +#: tbl_structure.php:822 msgid "Last check" msgstr "Zadnjič pregledano" -#: db_printview.php:221 db_structure.php:479 +#: db_printview.php:220 db_structure.php:465 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -385,90 +365,90 @@ msgstr[1] "%s tabeli" msgstr[2] "%s tabele" msgstr[3] "%s tabel" -#: db_qbe.php:28 import.php:453 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1980 libraries/sql_query_form.lib.php:138 -#: tbl_operations.php:212 tbl_relation.php:291 tbl_row_action.php:130 -#: view_operations.php:61 +#: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 +#: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "Poizvedba SQL je bila uspešno izvedena" -#: db_qbe.php:41 +#: db_qbe.php:38 msgid "You have to choose at least one column to display" msgstr "Za prikaz morate izbrati morate vsaj en stolpec" -#: db_qbe.php:199 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:865 +#: db_qbe.php:196 libraries/db_structure.lib.php:95 +#: libraries/display_tbl.lib.php:864 msgid "Sort" msgstr "Razvrsti" -#: db_qbe.php:208 db_qbe.php:242 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:522 libraries/display_tbl.lib.php:827 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:259 -#: tbl_select.php:311 +#: db_qbe.php:205 db_qbe.php:239 libraries/db_structure.lib.php:102 +#: libraries/display_tbl.lib.php:521 libraries/display_tbl.lib.php:826 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:257 +#: tbl_select.php:310 msgid "Ascending" msgstr "Naraščajoče" -#: db_qbe.php:209 db_qbe.php:250 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:527 libraries/display_tbl.lib.php:824 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:260 -#: tbl_select.php:312 +#: db_qbe.php:206 db_qbe.php:247 libraries/db_structure.lib.php:110 +#: libraries/display_tbl.lib.php:526 libraries/display_tbl.lib.php:823 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:258 +#: tbl_select.php:311 msgid "Descending" msgstr "Padajoče" -#: db_qbe.php:263 db_tracking.php:77 libraries/display_tbl.lib.php:307 -#: tbl_change.php:275 tbl_tracking.php:596 +#: db_qbe.php:260 db_tracking.php:73 libraries/display_tbl.lib.php:306 +#: tbl_change.php:270 tbl_tracking.php:591 msgid "Show" msgstr "Pokaži" -#: db_qbe.php:299 +#: db_qbe.php:296 msgid "Criteria" msgstr "Kriteriji" -#: db_qbe.php:352 db_qbe.php:434 db_qbe.php:526 db_qbe.php:557 +#: db_qbe.php:349 db_qbe.php:431 db_qbe.php:523 db_qbe.php:554 msgid "Ins" msgstr "Vstavi" -#: db_qbe.php:356 db_qbe.php:438 db_qbe.php:523 db_qbe.php:554 +#: db_qbe.php:353 db_qbe.php:435 db_qbe.php:520 db_qbe.php:551 msgid "And" msgstr "In" -#: db_qbe.php:365 db_qbe.php:446 db_qbe.php:528 db_qbe.php:559 +#: db_qbe.php:362 db_qbe.php:443 db_qbe.php:525 db_qbe.php:556 msgid "Del" msgstr "Briši" -#: db_qbe.php:369 db_qbe.php:450 db_qbe.php:521 db_qbe.php:552 -#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:778 -#: server_privileges.php:297 tbl_change.php:1027 tbl_indexes.php:249 -#: tbl_select.php:285 +#: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 +#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:777 +#: server_privileges.php:296 tbl_change.php:925 tbl_indexes.php:248 +#: tbl_select.php:284 msgid "Or" msgstr "Ali" -#: db_qbe.php:506 +#: db_qbe.php:503 msgid "Modify" msgstr "Spremeni" -#: db_qbe.php:583 +#: db_qbe.php:580 msgid "Add/Delete criteria rows" msgstr "Dodaj/Odstrani vrstice meril" -#: db_qbe.php:595 +#: db_qbe.php:592 msgid "Add/Delete columns" msgstr "Dodaj/Odstrani stolpce" -#: db_qbe.php:608 db_qbe.php:633 +#: db_qbe.php:605 db_qbe.php:630 msgid "Update Query" msgstr "Osveži poizvedbo" -#: db_qbe.php:616 +#: db_qbe.php:613 msgid "Use Tables" msgstr "Uporabi tabele" -#: db_qbe.php:639 +#: db_qbe.php:636 #, php-format msgid "SQL query on database %s:" msgstr "Poizvedba SQL na zbirki podatkov %s:" -#: db_qbe.php:933 libraries/common.lib.php:1222 +#: db_qbe.php:930 libraries/common.lib.php:1215 msgid "Submit Query" msgstr "Izvedi poizvedbo" @@ -510,17 +490,17 @@ msgstr[1] "%s zadetek(ov) v tabeli %s" msgstr[2] "%s zadetek(ov) v tabeli %s" msgstr[3] "%s zadetek(ov) v tabeli %s" -#: db_search.php:249 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2831 -#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:49 -#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:466 +#: db_search.php:249 db_structure.php:75 db_structure.php:76 +#: db_structure.php:88 db_structure.php:90 db_structure.php:101 +#: db_structure.php:103 libraries/common.lib.php:2836 +#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 +#: tbl_structure.php:35 tbl_structure.php:47 tbl_structure.php:464 msgid "Browse" msgstr "Prebrskaj" -#: db_search.php:254 libraries/display_tbl.lib.php:1164 -#: libraries/display_tbl.lib.php:2055 libraries/sql_query_form.lib.php:453 -#: pdf_pages.php:285 pdf_pages.php:424 pdf_pages.php:460 pdf_pages.php:488 +#: db_search.php:254 libraries/display_tbl.lib.php:1163 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 msgid "Delete" @@ -560,226 +540,232 @@ msgstr "V tabelah:" msgid "Inside column:" msgstr "V stolpcu:" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2830 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:75 +#: db_structure.php:79 db_structure.php:80 db_structure.php:92 +#: db_structure.php:93 db_structure.php:105 db_structure.php:106 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 +#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Vstavi" -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2827 libraries/common.lib.php:2834 -#: libraries/db_links.inc.php:62 libraries/export/htmlword.php:22 +#: db_structure.php:81 db_structure.php:94 db_structure.php:107 +#: libraries/common.lib.php:2832 libraries/common.lib.php:2839 +#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 -#: libraries/tbl_links.inc.php:55 pmd_general.php:133 -#: server_privileges.php:593 server_replication.php:314 tbl_tracking.php:268 +#: libraries/tbl_links.inc.php:54 pmd_general.php:133 +#: server_privileges.php:592 server_replication.php:313 tbl_tracking.php:263 msgid "Structure" msgstr "Struktura" -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:544 db_structure.php:545 db_tracking.php:90 -#: libraries/Index.class.php:482 libraries/common.lib.php:1659 -#: libraries/db_links.inc.php:99 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:126 -#: server_databases.php:351 tbl_structure.php:26 tbl_structure.php:150 -#: tbl_structure.php:151 tbl_structure.php:470 +#: db_structure.php:82 db_structure.php:83 db_structure.php:95 +#: db_structure.php:96 db_structure.php:108 db_structure.php:109 +#: db_structure.php:530 db_structure.php:531 db_tracking.php:86 +#: libraries/Index.class.php:482 libraries/common.lib.php:1663 +#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 +#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 +#: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" msgstr "Zavrzi" -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:542 db_structure.php:543 libraries/common.lib.php:1658 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:104 +#: db_structure.php:84 db_structure.php:85 db_structure.php:97 +#: db_structure.php:98 db_structure.php:110 db_structure.php:111 +#: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 +#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 msgid "Empty" msgstr "Izprazni" -#: db_structure.php:315 libraries/tbl_links.inc.php:99 +#: db_structure.php:301 libraries/tbl_links.inc.php:98 #, php-format msgid "Table %s has been emptied" msgstr "Tabela %s je izpraznjena" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "View %s has been dropped" msgstr "Pogled %s je zavržen" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "Table %s has been dropped" msgstr "Tabela %s je zavržena" -#: db_structure.php:332 +#: db_structure.php:318 msgid "Tracking is active." msgstr "Sledenje je aktivno." -#: db_structure.php:334 +#: db_structure.php:320 msgid "Tracking is not active." msgstr "Sledenje ni aktivno." -#: db_structure.php:419 libraries/display_tbl.lib.php:1943 +#: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "Pogled ima vsaj toliko vrstic. Prosimo, oglejte si %sdokumentacijo%s." -#: db_structure.php:433 db_structure.php:447 libraries/header.inc.php:125 -#: libraries/tbl_info.inc.php:65 tbl_structure.php:184 test/theme.php:73 +#: db_structure.php:419 db_structure.php:433 libraries/header.inc.php:125 +#: libraries/tbl_info.inc.php:60 tbl_structure.php:183 test/theme.php:73 msgid "View" msgstr "Pogled" -#: db_structure.php:484 libraries/db_structure.lib.php:40 -#: libraries/server_links.inc.php:69 server_replication.php:32 -#: server_replication.php:163 server_status.php:368 +#: db_structure.php:470 libraries/db_structure.lib.php:40 +#: libraries/server_links.inc.php:69 server_replication.php:31 +#: server_replication.php:162 server_status.php:368 msgid "Replication" msgstr "Podvojevanje" -#: db_structure.php:488 +#: db_structure.php:474 msgid "Sum" msgstr "Vsota" -#: db_structure.php:495 libraries/StorageEngine.class.php:349 +#: db_structure.php:481 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s je privzet skladiščni pogon na tem strežniku MySQL." -#: db_structure.php:523 db_structure.php:540 db_structure.php:541 -#: libraries/display_tbl.lib.php:2080 libraries/display_tbl.lib.php:2085 -#: libraries/mult_submits.inc.php:15 server_databases.php:345 -#: server_databases.php:350 server_privileges.php:1588 tbl_structure.php:454 -#: tbl_structure.php:463 +#: db_structure.php:509 db_structure.php:526 db_structure.php:527 +#: libraries/display_tbl.lib.php:2039 libraries/display_tbl.lib.php:2044 +#: libraries/mult_submits.inc.php:15 server_databases.php:343 +#: server_databases.php:348 server_privileges.php:1592 tbl_structure.php:452 +#: tbl_structure.php:461 msgid "With selected:" msgstr "Z označenim:" -#: db_structure.php:526 libraries/display_tbl.lib.php:2075 -#: server_databases.php:347 server_privileges.php:569 -#: server_privileges.php:1591 tbl_structure.php:457 +#: db_structure.php:512 libraries/display_tbl.lib.php:2034 +#: server_databases.php:345 server_privileges.php:568 +#: server_privileges.php:1595 tbl_structure.php:455 msgid "Check All" msgstr "Označi vse" -#: db_structure.php:530 libraries/display_tbl.lib.php:2076 -#: libraries/replication_gui.lib.php:35 server_databases.php:349 -#: server_privileges.php:572 server_privileges.php:1595 tbl_structure.php:461 +#: db_structure.php:516 libraries/display_tbl.lib.php:2035 +#: libraries/replication_gui.lib.php:35 server_databases.php:347 +#: server_privileges.php:571 server_privileges.php:1599 tbl_structure.php:459 msgid "Uncheck All" msgstr "Odznači vse" -#: db_structure.php:535 +#: db_structure.php:521 msgid "Check tables having overhead" msgstr "Preveri prekoračene" -#: db_structure.php:546 db_structure.php:547 db_structure.php:598 -#: libraries/display_tbl.lib.php:2179 libraries/mult_submits.inc.php:27 -#: tbl_structure.php:491 tbl_structure.php:493 +#: db_structure.php:532 db_structure.php:533 db_structure.php:584 +#: libraries/display_tbl.lib.php:2138 libraries/mult_submits.inc.php:27 +#: tbl_structure.php:489 tbl_structure.php:491 msgid "Print view" msgstr "Pogled za tiskanje" -#: db_structure.php:548 db_structure.php:549 libraries/mult_submits.inc.php:41 -#: tbl_operations.php:580 +#: db_structure.php:534 db_structure.php:535 libraries/mult_submits.inc.php:41 +#: tbl_operations.php:578 msgid "Check table" msgstr "Preveri tabelo" -#: db_structure.php:550 db_structure.php:551 libraries/mult_submits.inc.php:46 -#: tbl_operations.php:620 tbl_structure.php:708 tbl_structure.php:710 +#: db_structure.php:536 db_structure.php:537 libraries/mult_submits.inc.php:46 +#: tbl_operations.php:618 tbl_structure.php:706 tbl_structure.php:708 msgid "Optimize table" msgstr "Optimiraj tabelo" -#: db_structure.php:552 db_structure.php:553 libraries/mult_submits.inc.php:51 -#: tbl_operations.php:610 +#: db_structure.php:538 db_structure.php:539 libraries/mult_submits.inc.php:51 +#: tbl_operations.php:608 msgid "Repair table" msgstr "Popravi tabelo" -#: db_structure.php:554 db_structure.php:555 libraries/mult_submits.inc.php:56 -#: tbl_operations.php:600 +#: db_structure.php:540 db_structure.php:541 libraries/mult_submits.inc.php:56 +#: tbl_operations.php:598 msgid "Analyze table" msgstr "Analiziraj tabelo" -#: db_structure.php:556 db_structure.php:557 libraries/db_links.inc.php:70 -#: libraries/display_export.lib.php:82 libraries/display_tbl.lib.php:2093 -#: libraries/display_tbl.lib.php:2224 libraries/mult_submits.inc.php:61 -#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:81 -#: pmd_pdf.php:83 pmd_pdf.php:108 server_privileges.php:1372 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 +#: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 +#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 +#: pmd_pdf.php:81 pmd_pdf.php:106 server_privileges.php:1376 #: setup/frames/menu.inc.php:22 tbl_row_action.php:58 msgid "Export" msgstr "Izvozi" -#: db_structure.php:605 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:591 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "Slovar podatkov" -#: db_tracking.php:65 +#: db_tracking.php:61 msgid "Tracked tables" msgstr "Sledene tabele" -#: db_tracking.php:70 libraries/export/htmlword.php:85 +#: db_tracking.php:66 libraries/export/htmlword.php:85 #: libraries/export/latex.php:152 libraries/export/odt.php:112 #: libraries/export/sql.php:339 libraries/export/texytext.php:84 #: libraries/export/xml.php:254 libraries/header.inc.php:105 -#: libraries/header_printview.inc.php:57 server_databases.php:168 -#: server_privileges.php:1652 server_privileges.php:1713 -#: server_privileges.php:1971 server_processlist.php:55 -#: server_synchronize.php:1178 server_synchronize.php:1182 -#: tbl_tracking.php:590 test/theme.php:64 +#: libraries/header_printview.inc.php:57 server_databases.php:166 +#: server_privileges.php:1656 server_privileges.php:1717 +#: server_privileges.php:1975 server_processlist.php:55 +#: server_synchronize.php:1177 server_synchronize.php:1181 +#: tbl_tracking.php:585 test/theme.php:64 msgid "Database" msgstr "Podatkovna zbirka" -#: db_tracking.php:72 +#: db_tracking.php:68 msgid "Last version" msgstr "Zadnja različica" -#: db_tracking.php:73 tbl_tracking.php:593 +#: db_tracking.php:69 tbl_tracking.php:588 msgid "Created" msgstr "Ustvarjeno" -#: db_tracking.php:74 tbl_tracking.php:594 +#: db_tracking.php:70 tbl_tracking.php:589 msgid "Updated" msgstr "Posodobljeno" -#: db_tracking.php:76 libraries/Index.class.php:439 -#: libraries/db_structure.lib.php:44 server_databases.php:202 -#: server_privileges.php:1534 server_privileges.php:1717 -#: server_privileges.php:2065 tbl_structure.php:186 +#: db_tracking.php:71 libraries/common.lib.php:1361 +#: libraries/server_links.inc.php:48 server_processlist.php:58 +#: tbl_tracking.php:590 test/theme.php:100 +msgid "Status" +msgstr "Stanje" + +#: db_tracking.php:72 libraries/Index.class.php:439 +#: libraries/db_structure.lib.php:44 server_databases.php:200 +#: server_privileges.php:1538 server_privileges.php:1721 +#: server_privileges.php:2069 tbl_structure.php:185 msgid "Action" msgstr "Dejanje" -#: db_tracking.php:87 db_tracking.php:119 +#: db_tracking.php:83 db_tracking.php:115 msgid "Delete tracking data for this table" msgstr "Izbriši podatke sledenja te tabele" -#: db_tracking.php:105 tbl_tracking.php:547 tbl_tracking.php:605 -#: tbl_tracking.php:612 +#: db_tracking.php:101 tbl_tracking.php:542 tbl_tracking.php:600 +#: tbl_tracking.php:607 msgid "active" msgstr "aktivno" -#: db_tracking.php:107 tbl_tracking.php:549 tbl_tracking.php:607 -#: tbl_tracking.php:609 +#: db_tracking.php:103 tbl_tracking.php:544 tbl_tracking.php:602 +#: tbl_tracking.php:604 msgid "not active" msgstr "ni aktivno" -#: db_tracking.php:120 +#: db_tracking.php:116 msgid "Versions" msgstr "Različice" -#: db_tracking.php:121 tbl_tracking.php:378 tbl_tracking.php:623 +#: db_tracking.php:117 tbl_tracking.php:373 tbl_tracking.php:618 msgid "Tracking report" msgstr "Poročilo sledenja" -#: db_tracking.php:122 tbl_tracking.php:250 tbl_tracking.php:623 +#: db_tracking.php:118 tbl_tracking.php:245 tbl_tracking.php:618 msgid "Structure snapshot" msgstr "Posnetek strukture" -#: db_tracking.php:151 +#: db_tracking.php:147 msgid "Untracked tables" msgstr "Nesledene tabele" -#: db_tracking.php:171 db_tracking.php:173 tbl_structure.php:527 -#: tbl_structure.php:529 +#: db_tracking.php:167 db_tracking.php:169 tbl_structure.php:525 +#: tbl_structure.php:527 msgid "Track table" msgstr "Sledi tabeli" -#: db_tracking.php:199 +#: db_tracking.php:195 msgid "Database Log" msgstr "Dnevnik podatkovne zbirke" @@ -787,12 +773,12 @@ msgstr "Dnevnik podatkovne zbirke" msgid "Selected export type has to be saved in file!" msgstr "Izbrana vrsta izvoza mora biti shranjena v datoteko!" -#: export.php:153 export.php:178 export.php:620 +#: export.php:152 export.php:177 export.php:615 #, php-format msgid "Insufficient space to save the file %s." msgstr "Ni dovolj prostora za shranjevanje datoteke %s." -#: export.php:287 +#: export.php:286 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -800,17 +786,17 @@ msgstr "" "Datoteka %s že obstaja na strežniku, spremenite ime novi ali prepišite " "obstoječo datoteko." -#: export.php:291 export.php:295 +#: export.php:290 export.php:294 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Spletni strežnik nima dovoljenja za shranjevanje datoteke %s." -#: export.php:622 +#: export.php:617 #, php-format msgid "Dump has been saved to file %s." msgstr "Dump je shranjen v datoteko %s." -#: import.php:59 +#: import.php:58 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -819,14 +805,14 @@ msgstr "" "Najverjetneje ste poskušali naložiti preveliko datoteko. Prosimo, oglejte si " "%sdokumentacijo%s za načine, kako obiti to omejitev." -#: import.php:278 import.php:331 libraries/File.class.php:840 -#: libraries/File.class.php:950 +#: import.php:277 import.php:330 libraries/File.class.php:566 +#: libraries/File.class.php:676 msgid "File could not be read" msgstr "Ne morem prebrati datoteke" -#: import.php:286 import.php:295 import.php:314 import.php:323 -#: libraries/File.class.php:1020 libraries/File.class.php:1028 -#: libraries/File.class.php:1044 libraries/File.class.php:1052 +#: import.php:285 import.php:294 import.php:313 import.php:322 +#: libraries/File.class.php:746 libraries/File.class.php:754 +#: libraries/File.class.php:770 libraries/File.class.php:778 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -835,7 +821,7 @@ msgstr "" "Poskušali ste naložiti datoteko z nepodprtim stiskanjem (%s). Bodisi podpora " "za njega ni vključena ali pa je onemogočena z vašo konfiguracijo." -#: import.php:336 +#: import.php:335 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -845,30 +831,30 @@ msgstr "" "je velikost datoteke presegala največjo velikost, dovoljeno v konfiguraciji " "PHP. Glej [a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." -#: import.php:371 libraries/display_import.lib.php:23 +#: import.php:370 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "" "Ne morem naložiti vtičnikov za uvoz, prosimo, preverite vašo namestitev!" -#: import.php:396 +#: import.php:395 msgid "The bookmark has been deleted." msgstr "Zaznamek je odstranjen." -#: import.php:400 +#: import.php:399 msgid "Showing bookmark" msgstr "Prikazovanje zaznamka" -#: import.php:402 sql.php:625 +#: import.php:401 sql.php:618 #, php-format msgid "Bookmark %s created" msgstr "Zaznamek %s je ustvarjen" -#: import.php:408 import.php:414 +#: import.php:407 import.php:413 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Uvažanje je uspešno zaključeno, izvedenih je bilo %d poizvedb." -#: import.php:423 +#: import.php:422 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -876,7 +862,7 @@ msgstr "" "Časovna omejitev skripta je potekla; če želite končati uvoz, prosimo, " "ponovno pošljite isto datoteko in uvoz se bo nadaljeval." -#: import.php:425 +#: import.php:424 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -885,19 +871,19 @@ msgstr "" "navadi pomeni, da phpMyAdmin ne bo mogel dokončati tega uvoza, razen če " "povečate vaše časovne omejitve PHP." -#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:240 +#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:239 #: user_password.php:110 msgid "Back" msgstr "Nazaj" -#: index.php:188 +#: index.php:183 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin je prijaznejši z brskalnikom, ki podpira okvirje." -#: js/messages.php:25 server_synchronize.php:344 server_synchronize.php:356 -#: server_synchronize.php:372 server_synchronize.php:379 -#: server_synchronize.php:738 server_synchronize.php:766 -#: server_synchronize.php:794 server_synchronize.php:806 +#: js/messages.php:25 server_synchronize.php:343 server_synchronize.php:355 +#: server_synchronize.php:371 server_synchronize.php:378 +#: server_synchronize.php:737 server_synchronize.php:765 +#: server_synchronize.php:793 server_synchronize.php:805 msgid "Click to select" msgstr "Kliknite za označitev" @@ -905,15 +891,15 @@ msgstr "Kliknite za označitev" msgid "Click to unselect" msgstr "Kliknite za odznačitev" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:88 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:87 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Poizvedbe \"DROP DATABASE\" so izključene." -#: js/messages.php:30 libraries/mult_submits.inc.php:257 sql.php:187 +#: js/messages.php:30 libraries/mult_submits.inc.php:256 sql.php:186 msgid "Do you really want to " msgstr "Ali res želite " -#: js/messages.php:31 libraries/mult_submits.inc.php:257 sql.php:171 +#: js/messages.php:31 libraries/mult_submits.inc.php:256 sql.php:170 msgid "You are about to DESTROY a complete database!" msgstr "S tem dejanjem boste UNIČILI celotno zbirko podatkov!" @@ -944,11 +930,11 @@ msgstr "Ime gostitelja je prazno!" msgid "The user name is empty!" msgstr "Uporabniško ime je prazno!" -#: js/messages.php:44 server_privileges.php:1228 user_password.php:65 +#: js/messages.php:44 server_privileges.php:1229 user_password.php:65 msgid "The password is empty!" msgstr "Geslo je prazno!" -#: js/messages.php:45 server_privileges.php:1226 user_password.php:68 +#: js/messages.php:45 server_privileges.php:1227 user_password.php:68 msgid "The passwords aren't the same!" msgstr "Gesli se ne ujemata!" @@ -956,27 +942,27 @@ msgstr "Gesli se ne ujemata!" msgid "Cancel" msgstr "Prekliči" -#: js/messages.php:52 pmd_save_pos.php:53 +#: js/messages.php:52 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "Spremembe so shranjene" -#: js/messages.php:53 pmd_relation_upd.php:48 +#: js/messages.php:53 pmd_relation_upd.php:47 msgid "Relation deleted" msgstr "Relacija je izbrisana" -#: js/messages.php:54 pmd_relation_new.php:63 +#: js/messages.php:54 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "Dodano razmerje FOREIGN KEY" -#: js/messages.php:55 pmd_relation_new.php:85 +#: js/messages.php:55 pmd_relation_new.php:84 msgid "Internal relation added" msgstr "Dodana notranja razmerja" -#: js/messages.php:56 pmd_relation_new.php:62 pmd_relation_new.php:87 +#: js/messages.php:56 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "Napaka: Razmerje ni dodano." -#: js/messages.php:57 pmd_relation_new.php:30 +#: js/messages.php:57 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "Napaka: razmerje že obstaja." @@ -984,13 +970,13 @@ msgstr "Napaka: razmerje že obstaja." msgid "Error saving coordinates for Designer." msgstr "Napaka pri shranjevanju koordinat Oblikovalnika." -#: js/messages.php:59 libraries/relation.lib.php:94 -#: libraries/relation.lib.php:106 +#: js/messages.php:59 libraries/relation.lib.php:89 +#: libraries/relation.lib.php:101 msgid "General relation features" msgstr "Splošne lastnosti relacij" -#: js/messages.php:59 libraries/relation.lib.php:88 -#: libraries/relation.lib.php:95 +#: js/messages.php:59 libraries/relation.lib.php:83 +#: libraries/relation.lib.php:90 msgid "Disabled" msgstr "Onemogočeno" @@ -1006,7 +992,7 @@ msgstr "Izberite tuji ključ" msgid "Please select the primary key or a unique key" msgstr "Prosimo, izberite primarni ključ ali unikatni ključ" -#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:547 +#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:545 msgid "Choose column to display" msgstr "Izberite stolpec za prikaz" @@ -1031,10 +1017,10 @@ msgid "Prev" msgstr "Prejšnji" #. l10n: Display text for next month link in calendar -#: js/messages.php:81 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:337 -#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:422 -#: tbl_structure.php:800 +#: js/messages.php:81 libraries/common.lib.php:2358 +#: libraries/common.lib.php:2361 libraries/display_tbl.lib.php:336 +#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 +#: tbl_structure.php:798 msgid "Next" msgstr "Naslednji" @@ -1092,63 +1078,63 @@ msgid "December" msgstr "december" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1562 +#: js/messages.php:101 libraries/common.lib.php:1566 msgid "Jan" msgstr "jan" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1564 +#: js/messages.php:103 libraries/common.lib.php:1568 msgid "Feb" msgstr "feb" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1566 +#: js/messages.php:105 libraries/common.lib.php:1570 msgid "Mar" msgstr "mar" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1568 +#: js/messages.php:107 libraries/common.lib.php:1572 msgid "Apr" msgstr "apr" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1570 +#: js/messages.php:109 libraries/common.lib.php:1574 msgctxt "Short month name" msgid "May" msgstr "maj" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1572 +#: js/messages.php:111 libraries/common.lib.php:1576 msgid "Jun" msgstr "jun" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1574 +#: js/messages.php:113 libraries/common.lib.php:1578 msgid "Jul" msgstr "jul" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1576 +#: js/messages.php:115 libraries/common.lib.php:1580 msgid "Aug" msgstr "avg" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1578 +#: js/messages.php:117 libraries/common.lib.php:1582 msgid "Sep" msgstr "sep" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1580 +#: js/messages.php:119 libraries/common.lib.php:1584 msgid "Oct" msgstr "okt" #. l10n: Short month name -#: js/messages.php:121 libraries/common.lib.php:1582 +#: js/messages.php:121 libraries/common.lib.php:1586 msgid "Nov" msgstr "nov" #. l10n: Short month name -#: js/messages.php:123 libraries/common.lib.php:1584 +#: js/messages.php:123 libraries/common.lib.php:1588 msgid "Dec" msgstr "dec" @@ -1181,37 +1167,37 @@ msgid "Saturday" msgstr "sobota" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1587 +#: js/messages.php:136 libraries/common.lib.php:1591 msgid "Sun" msgstr "ned" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1589 +#: js/messages.php:138 libraries/common.lib.php:1593 msgid "Mon" msgstr "pon" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1591 +#: js/messages.php:140 libraries/common.lib.php:1595 msgid "Tue" msgstr "tor" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1593 +#: js/messages.php:142 libraries/common.lib.php:1597 msgid "Wed" msgstr "sre" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1595 +#: js/messages.php:144 libraries/common.lib.php:1599 msgid "Thu" msgstr "čet" #. l10n: Short week day name -#: js/messages.php:146 libraries/common.lib.php:1597 +#: js/messages.php:146 libraries/common.lib.php:1601 msgid "Fri" msgstr "pet" #. l10n: Short week day name -#: js/messages.php:148 libraries/common.lib.php:1599 +#: js/messages.php:148 libraries/common.lib.php:1603 msgid "Sat" msgstr "sob" @@ -1271,16 +1257,11 @@ msgstr "Sekunda" msgid "Font size" msgstr "Velikost pisave" -#: libraries/File.class.php:336 libraries/File.class.php:424 -#: libraries/File.class.php:561 libraries/File.class.php:700 -msgid "Unknown error in file upload." -msgstr "Neznana napaka pri nalaganju datoteke." - -#: libraries/File.class.php:406 +#: libraries/File.class.php:315 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:409 +#: libraries/File.class.php:318 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -1288,23 +1269,27 @@ msgstr "" "Naložena datotek presega napotek MAX_FILE_SIZE, ki je bil določen v obrazcu " "HTML." -#: libraries/File.class.php:412 +#: libraries/File.class.php:321 msgid "The uploaded file was only partially uploaded." msgstr "Naložena datoteka je bila naložena samo delno." -#: libraries/File.class.php:415 +#: libraries/File.class.php:324 msgid "Missing a temporary folder." msgstr "Manjka začasna mapa." -#: libraries/File.class.php:418 +#: libraries/File.class.php:327 msgid "Failed to write file to disk." msgstr "Pisanje datoteke na disk je spodletelo." -#: libraries/File.class.php:421 +#: libraries/File.class.php:330 msgid "File upload stopped by extension." msgstr "Nalaganje datoteke je ustavila razširitev." -#: libraries/File.class.php:898 +#: libraries/File.class.php:333 +msgid "Unknown error in file upload." +msgstr "Neznana napaka pri nalaganju datoteke." + +#: libraries/File.class.php:624 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -1312,37 +1297,37 @@ msgstr "" "Napaka pri premikanju naložene datoteke, glej [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" -#: libraries/Index.class.php:427 tbl_relation.php:528 +#: libraries/Index.class.php:427 tbl_relation.php:526 msgid "No index defined!" msgstr "Ni definiranega indeksa!" -#: libraries/Index.class.php:432 server_databases.php:131 tbl_tracking.php:315 +#: libraries/Index.class.php:432 server_databases.php:129 tbl_tracking.php:310 msgid "Indexes" msgstr "Indeksi" #: libraries/Index.class.php:443 libraries/mult_submits.inc.php:102 -#: libraries/tbl_properties.inc.php:518 tbl_structure.php:32 -#: tbl_structure.php:154 tbl_structure.php:158 tbl_structure.php:473 -#: tbl_tracking.php:321 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:31 +#: tbl_structure.php:153 tbl_structure.php:157 tbl_structure.php:471 +#: tbl_tracking.php:316 msgid "Unique" msgstr "Edinstven" -#: libraries/Index.class.php:444 tbl_tracking.php:322 +#: libraries/Index.class.php:444 tbl_tracking.php:317 msgid "Packed" msgstr "Stisnjeno" -#: libraries/Index.class.php:446 tbl_tracking.php:324 +#: libraries/Index.class.php:446 tbl_tracking.php:319 msgid "Cardinality" msgstr "Kardinalnost" -#: libraries/Index.class.php:449 tbl_tracking.php:278 tbl_tracking.php:327 +#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322 msgid "Comment" msgstr "Komentar" #: libraries/Index.class.php:465 libraries/common.lib.php:609 -#: libraries/common.lib.php:1198 libraries/display_tbl.lib.php:1116 +#: libraries/common.lib.php:1191 libraries/display_tbl.lib.php:1115 #: libraries/import.lib.php:1119 libraries/import.lib.php:1143 -#: pdf_pages.php:284 setup/frames/index.inc.php:124 +#: pdf_pages.php:283 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:349 tbl_row_action.php:68 msgid "Edit" msgstr "Uredi" @@ -1366,15 +1351,15 @@ msgstr "" "odstrani." #: libraries/List_Database.class.php:430 libraries/server_links.inc.php:40 -#: server_databases.php:87 server_privileges.php:1652 +#: server_databases.php:85 server_privileges.php:1656 #: setup/lib/messages.inc.php:107 test/theme.php:92 msgid "Databases" msgstr "Podatkovne zbirke" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:259 libraries/import.lib.php:134 pdf_schema.php:31 -#: pdf_schema.php:231 tbl_change.php:1023 tbl_operations.php:212 -#: tbl_relation.php:289 view_operations.php:61 +#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 +#: tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Napaka" @@ -1405,41 +1390,41 @@ msgstr[1] "Vstavljeni sta %1$d vrstici." msgstr[2] "Vstavljene so %1$d vrstice." msgstr[3] "Vstavljenih je %1$d vrstic." -#: libraries/StorageEngine.class.php:196 +#: libraries/StorageEngine.class.php:194 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:352 +#: libraries/StorageEngine.class.php:354 #, php-format msgid "%s is available on this MySQL server." msgstr "%s je na voljo na tem strežniku MySQL." -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:357 #, 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:359 +#: libraries/StorageEngine.class.php:361 #, 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:1018 +#: libraries/Table.class.php:1017 msgid "Invalid database" msgstr "Neveljavna zbirka podatkov" -#: libraries/Table.class.php:1032 tbl_get_field.php:25 +#: libraries/Table.class.php:1031 tbl_get_field.php:25 msgid "Invalid table name" msgstr "Neveljavno ime tabele" -#: libraries/Table.class.php:1047 +#: libraries/Table.class.php:1046 #, 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:1131 +#: libraries/Table.class.php:1129 #, php-format msgid "Table %s has been renamed to %s" msgstr "Tabela %s je preimenovana v %s" @@ -1457,22 +1442,22 @@ msgstr "Predogled ni na voljo." msgid "take it" msgstr "uporabi" -#: libraries/Theme_Manager.class.php:114 +#: 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:152 +#: libraries/Theme_Manager.class.php:147 #, php-format msgid "Theme %s not found!" msgstr "Tema %s ni bila najdena!" -#: libraries/Theme_Manager.class.php:220 +#: 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:296 test/theme.php:160 themes.php:20 +#: libraries/Theme_Manager.class.php:291 test/theme.php:160 themes.php:20 #: themes.php:40 msgid "Theme / Style" msgstr "Tema / Slog" @@ -1585,19 +1570,19 @@ msgstr "Vstavljen ni noben overitveni ključ" msgid "Authenticating..." msgstr "Potrjevanje ..." -#: libraries/blobstreaming.lib.php:689 +#: libraries/blobstreaming.lib.php:340 msgid "View image" msgstr "Ogled slike" -#: libraries/blobstreaming.lib.php:693 +#: libraries/blobstreaming.lib.php:344 msgid "Play audio" msgstr "Predvajaj avdio" -#: libraries/blobstreaming.lib.php:698 +#: libraries/blobstreaming.lib.php:349 msgid "View video" msgstr "Ogled videa" -#: libraries/blobstreaming.lib.php:702 +#: libraries/blobstreaming.lib.php:353 msgid "Download file" msgstr "Prenesi datoteko" @@ -1652,7 +1637,7 @@ msgstr "Strežnik" msgid "Invalid authentication method set in configuration:" msgstr "Neveljaven način overitve določen v konfiguracijski datoteki:" -#: libraries/common.inc.php:909 +#: libraries/common.inc.php:908 #, php-format msgid "You should upgrade to %s %s or later." msgstr "%s bi morali nadgraditi v verzijo %s ali novejšo." @@ -1677,7 +1662,8 @@ msgstr "en" #: libraries/common.lib.php:425 libraries/common.lib.php:427 #: libraries/common.lib.php:429 libraries/common.lib.php:445 #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 -#: libraries/display_export.lib.php:163 libraries/relation.lib.php:84 +#: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 +#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 #: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" @@ -1692,148 +1678,148 @@ msgstr "Poizvedba SQL" msgid "MySQL said: " msgstr "MySQL je vrnil: " -#: libraries/common.lib.php:1136 +#: libraries/common.lib.php:1129 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "Failed to connect to SQL validator!" msgstr "Ne morem se povezati s strežnikom MySQL" -#: libraries/common.lib.php:1174 setup/lib/messages.inc.php:350 +#: libraries/common.lib.php:1167 setup/lib/messages.inc.php:350 msgid "Explain SQL" msgstr "Razloži stavek SQL" -#: libraries/common.lib.php:1177 +#: libraries/common.lib.php:1170 msgid "Skip Explain SQL" msgstr "Preskoči razlago stavka SQL" -#: libraries/common.lib.php:1211 +#: libraries/common.lib.php:1204 msgid "Without PHP Code" msgstr "Brez kode PHP" -#: libraries/common.lib.php:1214 setup/lib/messages.inc.php:352 +#: libraries/common.lib.php:1207 setup/lib/messages.inc.php:352 msgid "Create PHP Code" msgstr "Ustvari kodo PHP" -#: libraries/common.lib.php:1232 server_status.php:451 +#: libraries/common.lib.php:1225 server_status.php:451 #: setup/lib/messages.inc.php:351 msgid "Refresh" msgstr "Osveži" -#: libraries/common.lib.php:1241 +#: libraries/common.lib.php:1234 msgid "Skip Validate SQL" msgstr "Preskoči preverjanje pravilnosti SQL stavka" -#: libraries/common.lib.php:1244 setup/lib/messages.inc.php:353 +#: libraries/common.lib.php:1237 setup/lib/messages.inc.php:353 msgid "Validate SQL" msgstr "Preveri pravilnost stavka SQL" -#: libraries/common.lib.php:1283 +#: libraries/common.lib.php:1287 msgid "Inline edit of this query" msgstr "Urejanje te poizvedbe v vrstici" -#: libraries/common.lib.php:1285 +#: libraries/common.lib.php:1289 msgid "Inline" msgstr "V vrstici" -#: libraries/common.lib.php:1339 libraries/common.lib.php:1354 +#: libraries/common.lib.php:1343 libraries/common.lib.php:1358 msgid "Profiling" msgstr "Profiliranje" -#: libraries/common.lib.php:1358 libraries/tbl_triggers.lib.php:27 +#: libraries/common.lib.php:1362 libraries/tbl_triggers.lib.php:27 #: server_processlist.php:57 msgid "Time" msgstr "Čas" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "B" msgstr "B" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "KiB" msgstr "KiB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "MiB" msgstr "MiB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "GiB" msgstr "GiB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "TiB" msgstr "TiB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "PiB" msgstr "PiB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "EiB" msgstr "EiB" #. l10n: Thousands separator -#: libraries/common.lib.php:1424 +#: libraries/common.lib.php:1428 msgid "," msgstr "." #. l10n: Decimal separator -#: libraries/common.lib.php:1426 +#: libraries/common.lib.php:1430 msgid "." msgstr "," #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1603 +#: libraries/common.lib.php:1607 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y ob %H.%M" -#: libraries/common.lib.php:1909 +#: libraries/common.lib.php:1913 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dni, %s ur, %s minut in %s sekund" -#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 -#: libraries/display_tbl.lib.php:289 server_status.php:718 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 +#: libraries/display_tbl.lib.php:288 server_status.php:718 msgid "Begin" msgstr "Začetek" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 -#: libraries/display_tbl.lib.php:290 server_binlog.php:154 +#: libraries/common.lib.php:2328 libraries/common.lib.php:2331 +#: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "Prejšnji" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 -#: libraries/display_tbl.lib.php:352 +#: libraries/common.lib.php:2359 libraries/common.lib.php:2362 +#: libraries/display_tbl.lib.php:351 msgid "End" msgstr "Konec" -#: libraries/common.lib.php:2429 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "Preskoči na podatkovno zbirko "%s"." -#: libraries/common.lib.php:2448 +#: libraries/common.lib.php:2453 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Na funkcionalnost %s vpliva znan hrošč, glej %s" -#: libraries/common.lib.php:2828 libraries/common.lib.php:2835 -#: libraries/db_links.inc.php:67 libraries/export/sql.php:24 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 +#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 -#: libraries/tbl_links.inc.php:59 querywindow.php:89 test/theme.php:96 +#: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2837 libraries/db_links.inc.php:103 -#: libraries/tbl_links.inc.php:94 libraries/tbl_links.inc.php:116 -#: view_operations.php:88 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: view_operations.php:87 msgid "Operations" msgstr "Operacije" -#: libraries/core.lib.php:282 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1849,38 +1835,38 @@ msgstr "Dogodki" msgid "Name" msgstr "Ime" -#: libraries/db_links.inc.php:44 +#: libraries/db_links.inc.php:43 #, php-format msgid "Database %s has been dropped." msgstr "Podatkovna zbirka %s je zavržena." -#: libraries/db_links.inc.php:56 libraries/db_links.inc.php:57 -#: libraries/db_links.inc.php:58 +#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 +#: libraries/db_links.inc.php:57 msgid "Database seems to be empty!" msgstr "Zbirka podatkov se zdi prazna!" -#: libraries/db_links.inc.php:80 libraries/relation.lib.php:142 -#: libraries/tbl_links.inc.php:68 +#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "Sledenje" -#: libraries/db_links.inc.php:85 +#: libraries/db_links.inc.php:84 msgid "Query" msgstr "Poizvedba" -#: libraries/db_links.inc.php:90 libraries/relation.lib.php:138 +#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 msgid "Designer" msgstr "Oblikovalnik" -#: libraries/db_links.inc.php:97 libraries/server_links.inc.php:87 -#: libraries/tbl_links.inc.php:90 pmd_pdf.php:83 pmd_pdf.php:109 +#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Uvozi" -#: libraries/db_links.inc.php:110 libraries/server_links.inc.php:65 -#: server_privileges.php:111 server_privileges.php:1714 -#: server_privileges.php:2063 test/theme.php:116 +#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: server_privileges.php:110 server_privileges.php:1718 +#: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" msgstr "Privilegiji" @@ -1892,7 +1878,7 @@ msgstr "Rutina" msgid "Return type" msgstr "Vrnjena vrsta" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1847 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1806 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -1900,8 +1886,8 @@ msgstr "" "Morda je približno. Glej [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" -#: libraries/db_structure.lib.php:60 server_databases.php:141 -#: tbl_printview.php:334 tbl_structure.php:681 +#: libraries/db_structure.lib.php:60 server_databases.php:139 +#: tbl_printview.php:333 tbl_structure.php:679 msgid "Overhead" msgstr "Presežek" @@ -1920,7 +1906,7 @@ msgstr "Strežnik se ne odziva" 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:358 tbl_structure.php:607 +#: libraries/dbi/mysql.dbi.lib.php:358 tbl_structure.php:605 msgid "Details..." msgstr "Podrobnosti ..." @@ -1930,22 +1916,22 @@ msgid "Change password" msgstr "Spremeni geslo" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:807 +#: libraries/replication_gui.lib.php:347 server_privileges.php:806 msgid "No Password" msgstr "Brez gesla" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1530 server_synchronize.php:1174 +#: libraries/replication_gui.lib.php:351 server_privileges.php:795 +#: server_privileges.php:799 server_privileges.php:810 +#: server_privileges.php:1534 server_synchronize.php:1173 msgid "Password" msgstr "Geslo" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:815 server_privileges.php:818 +#: server_privileges.php:814 server_privileges.php:817 msgid "Re-type" msgstr "Ponovno vnesi" @@ -1966,8 +1952,8 @@ msgstr "Ustvari novo zbirko podatkov" msgid "Create" msgstr "Ustvari" -#: libraries/display_create_database.lib.php:39 server_privileges.php:113 -#: server_privileges.php:1419 server_replication.php:34 +#: libraries/display_create_database.lib.php:39 server_privileges.php:112 +#: server_privileges.php:1423 server_replication.php:33 msgid "No Privileges" msgstr "Brez privilegijev" @@ -1984,50 +1970,50 @@ msgstr "Ustvari novo tabelo v podatkovni zbirki %s" msgid "Number of columns" msgstr "Število stolpcev" -#: libraries/display_export.lib.php:41 +#: libraries/display_export.lib.php:35 msgid "Could not load export plugins, please check your installation!" msgstr "" "Ne morem naložiti vtičnikov za izvoz, prosimo, preverite vašo namestitev!" -#: libraries/display_export.lib.php:106 +#: libraries/display_export.lib.php:100 #, php-format msgid "Dump %s row(s) starting at row # %s" msgstr "Odloži %s vrstic, začni pri vrstici # %s" -#: libraries/display_export.lib.php:114 +#: libraries/display_export.lib.php:108 msgid "Dump all rows" msgstr "Odloži vse vrstice" -#: libraries/display_export.lib.php:124 setup/lib/messages.inc.php:79 +#: libraries/display_export.lib.php:118 setup/lib/messages.inc.php:79 msgid "Save as file" msgstr "Shrani kot datoteko" -#: libraries/display_export.lib.php:133 +#: libraries/display_export.lib.php:127 #, php-format msgid "Save on server in %s directory" msgstr "Shrani na strežnik, v imenik %s" -#: libraries/display_export.lib.php:141 setup/lib/messages.inc.php:87 +#: libraries/display_export.lib.php:135 setup/lib/messages.inc.php:87 msgid "Overwrite existing file(s)" msgstr "Prepiši obstoječo(e) datoteko(e)" -#: libraries/display_export.lib.php:147 +#: libraries/display_export.lib.php:141 msgid "File name template" msgstr "Predloga datoteke" -#: libraries/display_export.lib.php:151 +#: libraries/display_export.lib.php:145 msgid "server name" msgstr "ime strežnika" -#: libraries/display_export.lib.php:154 +#: libraries/display_export.lib.php:148 msgid "database name" msgstr "ime podatkovne zbirke" -#: libraries/display_export.lib.php:157 +#: libraries/display_export.lib.php:151 msgid "table name" msgstr "ime tabele" -#: libraries/display_export.lib.php:161 +#: libraries/display_export.lib.php:155 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2038,39 +2024,39 @@ msgstr "" "nize za zapis časa. Dodatno bo prišlo še do naslednjih pretvorb: %3$s. " "Ostalo besedilo bo ostalo takšno, kot je." -#: libraries/display_export.lib.php:202 +#: libraries/display_export.lib.php:196 msgid "remember template" msgstr "shrani predlogo" -#: libraries/display_export.lib.php:210 libraries/display_import.lib.php:177 +#: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 #: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 msgid "Character set of the file:" msgstr "Nabor znakov datoteke:" -#: libraries/display_export.lib.php:235 setup/lib/messages.inc.php:81 +#: libraries/display_export.lib.php:229 setup/lib/messages.inc.php:81 msgid "Compression" msgstr "Stiskanje" -#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:196 -#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:529 -#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:574 -#: server_privileges.php:1867 server_processlist.php:74 +#: libraries/display_export.lib.php:234 libraries/display_import.lib.php:196 +#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:528 +#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:573 +#: server_privileges.php:1871 server_processlist.php:74 msgid "None" msgstr "Brez" -#: libraries/display_export.lib.php:247 +#: libraries/display_export.lib.php:241 msgid "\"zipped\"" msgstr "\"zipano\"" -#: libraries/display_export.lib.php:253 +#: libraries/display_export.lib.php:247 msgid "\"gzipped\"" msgstr "\"gzipano\"" -#: libraries/display_export.lib.php:259 +#: libraries/display_export.lib.php:253 msgid "\"bzipped\"" msgstr "\"bzipano\"" -#: libraries/display_export.lib.php:274 libraries/export/sql.php:42 +#: libraries/display_export.lib.php:268 libraries/export/sql.php:42 #: libraries/import/sql.php:31 msgid "SQL compatibility mode" msgstr "Združljivostni način SQL" @@ -2110,12 +2096,12 @@ msgid "File uploads are not allowed on this server." msgstr "Nalaganje datotek na tem strežniku ni dovoljeno." #: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 -#: tbl_change.php:1024 +#: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "Imenik, ki ste ga določili za nalaganje, je nedosegljiv" #: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 -#: tbl_change.php:1027 +#: tbl_change.php:925 msgid "web server upload directory" msgstr "imenik za nalaganje datotek" @@ -2199,41 +2185,41 @@ msgstr "Velikost papirja" msgid "Language" msgstr "Jezik" -#: libraries/display_tbl.lib.php:303 +#: libraries/display_tbl.lib.php:302 #, php-format msgid "%d is not valid row number." msgstr "%d ni veljavna številka vrstice." -#: libraries/display_tbl.lib.php:309 +#: libraries/display_tbl.lib.php:308 msgid "row(s) starting from row #" msgstr "vrstic naprej od vrstice #" -#: libraries/display_tbl.lib.php:315 +#: libraries/display_tbl.lib.php:314 msgid "horizontal" msgstr "vodoravnem" -#: libraries/display_tbl.lib.php:316 +#: libraries/display_tbl.lib.php:315 msgid "horizontal (rotated headers)" msgstr "vodoravno (zasukani naslovi)" -#: libraries/display_tbl.lib.php:317 +#: libraries/display_tbl.lib.php:316 msgid "vertical" msgstr "navpičnem" -#: libraries/display_tbl.lib.php:323 +#: libraries/display_tbl.lib.php:322 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "v %s načinu in ponovi glavo po %s celicah" -#: libraries/display_tbl.lib.php:345 +#: libraries/display_tbl.lib.php:344 msgid "This operation could take a long time. Proceed anyway?" msgstr "Ta operacija lahko traja dolgo časa. Vseeno nadaljujem?" -#: libraries/display_tbl.lib.php:511 +#: libraries/display_tbl.lib.php:510 msgid "Sort by key" msgstr "Uredi po ključu" -#: libraries/display_tbl.lib.php:554 libraries/export/codegen.php:38 +#: libraries/display_tbl.lib.php:553 libraries/export/codegen.php:38 #: libraries/export/csv.php:29 libraries/export/excel.php:34 #: libraries/export/htmlword.php:28 libraries/export/latex.php:32 #: libraries/export/mediawiki.php:21 libraries/export/ods.php:26 @@ -2243,97 +2229,97 @@ msgstr "Uredi po ključu" #: libraries/export/xlsx.php:26 libraries/export/xml.php:23 #: libraries/export/yaml.php:27 libraries/import.lib.php:1114 #: libraries/import.lib.php:1136 libraries/import/csv.php:31 -#: libraries/import/docsql.php:33 libraries/import/ldi.php:46 +#: libraries/import/docsql.php:32 libraries/import/ldi.php:46 #: libraries/import/ods.php:30 libraries/import/sql.php:19 #: libraries/import/xls.php:25 libraries/import/xlsx.php:25 -#: libraries/import/xml.php:25 tbl_select.php:264 tbl_structure.php:752 +#: libraries/import/xml.php:25 tbl_select.php:263 tbl_structure.php:750 msgid "Options" msgstr "Možnosti" -#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:569 +#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:568 msgid "Partial Texts" msgstr "Delna besedila" -#: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:573 +#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:572 msgid "Full Texts" msgstr "Polna besedila" -#: libraries/display_tbl.lib.php:586 +#: libraries/display_tbl.lib.php:585 msgid "Relational key" msgstr "Relacijski ključ" -#: libraries/display_tbl.lib.php:587 +#: libraries/display_tbl.lib.php:586 msgid "Relational display column" msgstr "Relacijski prikazni stolpec" -#: libraries/display_tbl.lib.php:594 +#: libraries/display_tbl.lib.php:593 msgid "Show binary contents" msgstr "Prikaži dvojiške vsebine" -#: libraries/display_tbl.lib.php:596 +#: libraries/display_tbl.lib.php:595 msgid "Show BLOB contents" msgstr "Prikaži vsebine BLOB" -#: libraries/display_tbl.lib.php:598 +#: libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "Prikaži dvojiške vsebine kot HEX" -#: libraries/display_tbl.lib.php:606 pmd_general.php:140 tbl_change.php:312 -#: tbl_change.php:318 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:307 +#: tbl_change.php:313 msgid "Hide" msgstr "Skrij" -#: libraries/display_tbl.lib.php:606 libraries/relation.lib.php:122 -#: libraries/tbl_properties.inc.php:143 transformation_overview.php:46 +#: libraries/display_tbl.lib.php:605 libraries/relation.lib.php:117 +#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46 msgid "Browser transformation" msgstr "Pretvorba z brskalnikom" -#: libraries/display_tbl.lib.php:1125 libraries/display_tbl.lib.php:1129 -#: libraries/display_tbl.lib.php:1131 +#: libraries/display_tbl.lib.php:1124 libraries/display_tbl.lib.php:1128 +#: libraries/display_tbl.lib.php:1130 msgid "Execute bookmarked query" msgstr "Izvedi izbrano poizvedbo" -#: libraries/display_tbl.lib.php:1144 libraries/display_tbl.lib.php:1156 +#: libraries/display_tbl.lib.php:1143 libraries/display_tbl.lib.php:1155 msgid "The row has been deleted" msgstr "Vrstica je izbrisana" -#: libraries/display_tbl.lib.php:1183 libraries/display_tbl.lib.php:2055 +#: libraries/display_tbl.lib.php:1182 libraries/display_tbl.lib.php:2014 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "Prekini proces" -#: libraries/display_tbl.lib.php:1933 +#: libraries/display_tbl.lib.php:1892 msgid "in query" msgstr "v poizvedbi" -#: libraries/display_tbl.lib.php:1951 +#: libraries/display_tbl.lib.php:1910 msgid "Showing rows" msgstr "Prikazujem vrstice" -#: libraries/display_tbl.lib.php:1961 +#: libraries/display_tbl.lib.php:1920 msgid "total" msgstr "skupaj" -#: libraries/display_tbl.lib.php:1969 sql.php:523 +#: libraries/display_tbl.lib.php:1928 sql.php:522 #, php-format msgid "Query took %01.4f sec" msgstr "Poizvedba je potrebovala %01.4f s" -#: libraries/display_tbl.lib.php:2088 libraries/mult_submits.inc.php:112 -#: querywindow.php:115 querywindow.php:119 querywindow.php:122 -#: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:469 +#: libraries/display_tbl.lib.php:2047 libraries/mult_submits.inc.php:112 +#: querywindow.php:114 querywindow.php:118 querywindow.php:121 +#: tbl_structure.php:23 tbl_structure.php:148 tbl_structure.php:467 msgid "Change" msgstr "Spremeni" -#: libraries/display_tbl.lib.php:2158 +#: libraries/display_tbl.lib.php:2117 msgid "Query results operations" msgstr "Dejanja rezultatov poizvedbe" -#: libraries/display_tbl.lib.php:2186 +#: libraries/display_tbl.lib.php:2145 msgid "Print view (with full texts)" msgstr "Pogled za tiskanje (s polnimi besedili)" -#: libraries/display_tbl.lib.php:2359 +#: libraries/display_tbl.lib.php:2318 msgid "Link not found" msgstr "Povezave ni mogoče najti" @@ -2389,9 +2375,9 @@ msgstr "Stanje InnoDB" msgid "Buffer Pool Usage" msgstr "Uporaba zaloge medpomnilnika" -#: libraries/engines/innodb.lib.php:168 server_databases.php:136 -#: server_databases.php:304 server_status.php:524 server_status.php:585 -#: server_status.php:606 tbl_printview.php:349 tbl_structure.php:695 +#: libraries/engines/innodb.lib.php:168 server_databases.php:134 +#: server_databases.php:302 server_status.php:524 server_status.php:585 +#: server_status.php:606 tbl_printview.php:348 tbl_structure.php:693 msgid "Total" msgstr "Skupaj" @@ -2526,6 +2512,87 @@ msgstr "" "Medpomnilnik, ki je dodeljen razvrščanju indeksov MyISAM med REPAIR TABLE " "ali ustvarjanju indeksov s CREATE INDEX ali ALTER TABLE." +#: libraries/engines/pbms.lib.php:31 +#, fuzzy +#| msgid "Garbage threshold" +msgid "Garbage Threshold" +msgstr "Omejitev smeti" + +#: libraries/engines/pbms.lib.php:32 +#, fuzzy +#| msgid "" +#| "The percentage of garbage in a data log file before it is compacted. This " +#| "is a value between 1 and 99. The default is 50." +msgid "The percentage of garbage in a repository file before it is compacted." +msgstr "" +"Odstotek smeti v dnevniški datoteki, preden je ta stisnjena. Vrednost je med " +"1 in 99. Privzeto je 50." + +#: libraries/engines/pbms.lib.php:36 libraries/replication_gui.lib.php:69 +#: server_synchronize.php:1161 +msgid "Port" +msgstr "Vrata" + +#: libraries/engines/pbms.lib.php:37 +msgid "" +"The port for the PBMS stream-based communications. Setting this value to 0 " +"will disable HTTP communication with the daemon." +msgstr "" + +#: libraries/engines/pbms.lib.php:41 +msgid "Repository Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:42 +msgid "" +"The maximum size of a BLOB repository file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:46 +msgid "Temp Blob Timeout" +msgstr "" + +#: libraries/engines/pbms.lib.php:47 +msgid "" +"The timeout, in seconds, for temporary BLOBs. Uploaded BLOB data is removed " +"after this time, unless they are referenced by a record in the database." +msgstr "" + +#: libraries/engines/pbms.lib.php:51 +#, fuzzy +#| msgid "Log file threshold" +msgid "Temp Log Threshold" +msgstr "Omejitev dnevniške datoetke" + +#: libraries/engines/pbms.lib.php:52 +msgid "" +"The maximum size of a temporary BLOB log file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:56 +msgid "Max Keep Alive" +msgstr "" + +#: libraries/engines/pbms.lib.php:57 +msgid "" +"The timeout for inactive connection with the keep-alive flag set. After this " +"time the connection will be closed. The time-out is in milliseconds (1/1000)." +msgstr "" + +#: libraries/engines/pbms.lib.php:61 +msgid "Metadata Headers" +msgstr "" + +#: libraries/engines/pbms.lib.php:62 +msgid "" +"A \":\" delimited list of metadata headers to be used to initialize the " +"pbms_metadata_header table when a database is created." +msgstr "" + #: libraries/engines/pbxt.lib.php:22 msgid "Index cache size" msgstr "Velikost predpomnilnika indeksov" @@ -2678,7 +2745,7 @@ msgstr "" "bo naslednja najvišja številka." #: libraries/export/codegen.php:36 setup/lib/messages.inc.php:85 -#: tbl_printview.php:374 tbl_structure.php:736 +#: tbl_printview.php:373 tbl_structure.php:734 msgid "Format" msgstr "Oblika" @@ -2741,9 +2808,9 @@ msgstr "Microsoft Word 2000" #: libraries/export/htmlword.php:23 libraries/export/latex.php:59 #: libraries/export/latex.php:205 libraries/export/odt.php:47 #: libraries/export/sql.php:105 libraries/export/sql.php:865 -#: libraries/export/texytext.php:27 server_databases.php:126 -#: server_privileges.php:576 server_replication.php:315 tbl_printview.php:315 -#: tbl_structure.php:664 +#: libraries/export/texytext.php:27 server_databases.php:124 +#: server_privileges.php:575 server_replication.php:314 tbl_printview.php:314 +#: tbl_structure.php:662 msgid "Data" msgstr "Podatki" @@ -2794,13 +2861,13 @@ msgid "Label key" msgstr "Označi ključ" #: libraries/export/latex.php:46 libraries/export/odt.php:34 -#: libraries/export/sql.php:90 tbl_relation.php:398 +#: libraries/export/sql.php:90 tbl_relation.php:396 msgid "Relations" msgstr "Relacije" #: libraries/export/latex.php:52 libraries/export/odt.php:40 #: libraries/export/odt.php:317 libraries/export/sql.php:94 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "Vrsta MIME" @@ -2808,10 +2875,10 @@ msgstr "Vrsta MIME" #: libraries/export/xml.php:101 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1529 server_privileges.php:2061 -#: server_processlist.php:54 server_synchronize.php:1158 +#: libraries/replication_gui.lib.php:331 server_privileges.php:730 +#: server_privileges.php:733 server_privileges.php:789 +#: server_privileges.php:1533 server_privileges.php:2065 +#: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "Gostitelj" @@ -2998,8 +3065,8 @@ msgstr "Izvozi poglede" msgid "Export contents" msgstr "Izvozi vsebine" -#: libraries/footer.inc.php:182 libraries/footer.inc.php:193 -#: libraries/footer.inc.php:196 +#: libraries/footer.inc.php:180 libraries/footer.inc.php:191 +#: libraries/footer.inc.php:194 msgid "Open new phpMyAdmin window" msgstr "Odpri novo okno phpMyAdmin" @@ -3015,7 +3082,7 @@ msgstr "Rezultat SQL" msgid "Generated by" msgstr "Ustvaril" -#: libraries/import.lib.php:151 sql.php:519 tbl_change.php:180 +#: libraries/import.lib.php:151 sql.php:518 tbl_change.php:175 #: 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)." @@ -3074,7 +3141,7 @@ msgstr "Prezri podvojene vrstice" msgid "Column names in first row" msgstr "Imena stolpcev v prvi vrstici" -#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:501 +#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:500 #: view_create.php:147 msgid "Column names" msgstr "Imena stolpcev" @@ -3100,12 +3167,12 @@ msgstr "Neveljavna oblika vnosa CSV v vrstici %d." msgid "Invalid column count in CSV input on line %d." msgstr "Neveljavno število stolpcev v vnosu CSV v vrstici %d." -#: libraries/import/docsql.php:28 +#: libraries/import/docsql.php:27 msgid "DocSQL" msgstr "DocSQL" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 -#: server_synchronize.php:427 server_synchronize.php:870 +#: libraries/import/docsql.php:30 libraries/tbl_properties.inc.php:616 +#: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "Ime tabele" @@ -3161,26 +3228,26 @@ msgstr "Nobeno" msgid "Convert to Kana" msgstr "Pretvori v kano" -#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:512 -#: tbl_structure.php:28 tbl_structure.php:152 tbl_structure.php:156 -#: tbl_structure.php:472 +#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:511 +#: tbl_structure.php:27 tbl_structure.php:151 tbl_structure.php:155 +#: tbl_structure.php:470 msgid "Primary" msgstr "Primarni" #: libraries/mult_submits.inc.php:97 libraries/tbl_properties.inc.php:115 -#: libraries/tbl_properties.inc.php:524 tbl_printview.php:324 -#: tbl_structure.php:30 tbl_structure.php:153 tbl_structure.php:157 -#: tbl_structure.php:474 tbl_structure.php:672 +#: libraries/tbl_properties.inc.php:523 tbl_printview.php:323 +#: tbl_structure.php:29 tbl_structure.php:152 tbl_structure.php:156 +#: tbl_structure.php:472 tbl_structure.php:670 msgid "Index" msgstr "Indeks" -#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:530 -#: tbl_structure.php:34 tbl_structure.php:155 tbl_structure.php:159 -#: tbl_structure.php:477 +#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:529 +#: tbl_structure.php:33 tbl_structure.php:154 tbl_structure.php:158 +#: tbl_structure.php:475 msgid "Fulltext" msgstr "Polno besedilo" -#: libraries/mult_submits.inc.php:434 tbl_replace.php:330 +#: libraries/mult_submits.inc.php:433 tbl_replace.php:330 msgid "No change" msgstr "Brez sprememb" @@ -3188,190 +3255,190 @@ msgstr "Brez sprememb" msgid "Charset" msgstr "Nabor znakov" -#: libraries/mysql_charsets.lib.php:210 libraries/mysql_charsets.lib.php:411 -#: tbl_change.php:515 +#: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 +#: tbl_change.php:510 msgid "Binary" msgstr "Dvojiško" -#: libraries/mysql_charsets.lib.php:222 +#: libraries/mysql_charsets.lib.php:214 msgid "Bulgarian" msgstr "Bolgarsko" -#: libraries/mysql_charsets.lib.php:226 libraries/mysql_charsets.lib.php:351 +#: libraries/mysql_charsets.lib.php:218 libraries/mysql_charsets.lib.php:343 msgid "Simplified Chinese" msgstr "Poenostavljeno kitajsko" -#: libraries/mysql_charsets.lib.php:228 libraries/mysql_charsets.lib.php:371 +#: libraries/mysql_charsets.lib.php:220 libraries/mysql_charsets.lib.php:363 msgid "Traditional Chinese" msgstr "Tradicionalno kitajsko" -#: libraries/mysql_charsets.lib.php:232 libraries/mysql_charsets.lib.php:418 +#: libraries/mysql_charsets.lib.php:224 libraries/mysql_charsets.lib.php:410 msgid "case-insensitive" msgstr "ne razlikuj velikih in malih črk" -#: libraries/mysql_charsets.lib.php:235 libraries/mysql_charsets.lib.php:420 +#: libraries/mysql_charsets.lib.php:227 libraries/mysql_charsets.lib.php:412 msgid "case-sensitive" msgstr "razlikuj velike in male črke" -#: libraries/mysql_charsets.lib.php:238 +#: libraries/mysql_charsets.lib.php:230 msgid "Croatian" msgstr "Hrvaško" -#: libraries/mysql_charsets.lib.php:241 +#: libraries/mysql_charsets.lib.php:233 msgid "Czech" msgstr "Češko" -#: libraries/mysql_charsets.lib.php:244 +#: libraries/mysql_charsets.lib.php:236 msgid "Danish" msgstr "Dansko" -#: libraries/mysql_charsets.lib.php:247 +#: libraries/mysql_charsets.lib.php:239 msgid "English" msgstr "Angleško" -#: libraries/mysql_charsets.lib.php:250 +#: libraries/mysql_charsets.lib.php:242 msgid "Esperanto" msgstr "Esperanto" -#: libraries/mysql_charsets.lib.php:253 +#: libraries/mysql_charsets.lib.php:245 msgid "Estonian" msgstr "Estonsko" -#: libraries/mysql_charsets.lib.php:256 libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:248 libraries/mysql_charsets.lib.php:251 msgid "German" msgstr "Nemško" -#: libraries/mysql_charsets.lib.php:256 +#: libraries/mysql_charsets.lib.php:248 msgid "dictionary" msgstr "slovar" -#: libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:251 msgid "phone book" msgstr "telefonski imenik" -#: libraries/mysql_charsets.lib.php:262 +#: libraries/mysql_charsets.lib.php:254 msgid "Hungarian" msgstr "Madžarsko" -#: libraries/mysql_charsets.lib.php:265 +#: libraries/mysql_charsets.lib.php:257 msgid "Icelandic" msgstr "Islandsko" -#: libraries/mysql_charsets.lib.php:268 libraries/mysql_charsets.lib.php:358 +#: libraries/mysql_charsets.lib.php:260 libraries/mysql_charsets.lib.php:350 msgid "Japanese" msgstr "Japonsko" -#: libraries/mysql_charsets.lib.php:271 +#: libraries/mysql_charsets.lib.php:263 msgid "Latvian" msgstr "Latvijsko" -#: libraries/mysql_charsets.lib.php:274 +#: libraries/mysql_charsets.lib.php:266 msgid "Lithuanian" msgstr "Litvansko" -#: libraries/mysql_charsets.lib.php:277 libraries/mysql_charsets.lib.php:380 +#: libraries/mysql_charsets.lib.php:269 libraries/mysql_charsets.lib.php:372 msgid "Korean" msgstr "Korejsko" -#: libraries/mysql_charsets.lib.php:280 +#: libraries/mysql_charsets.lib.php:272 msgid "Persian" msgstr "Perzijsko" -#: libraries/mysql_charsets.lib.php:283 +#: libraries/mysql_charsets.lib.php:275 msgid "Polish" msgstr "Poljsko" -#: libraries/mysql_charsets.lib.php:286 libraries/mysql_charsets.lib.php:334 +#: libraries/mysql_charsets.lib.php:278 libraries/mysql_charsets.lib.php:326 msgid "West European" msgstr "Zahodno evropsko" -#: libraries/mysql_charsets.lib.php:289 +#: libraries/mysql_charsets.lib.php:281 msgid "Romanian" msgstr "Romunsko" -#: libraries/mysql_charsets.lib.php:292 +#: libraries/mysql_charsets.lib.php:284 msgid "Slovak" msgstr "Slovaško" -#: libraries/mysql_charsets.lib.php:295 +#: libraries/mysql_charsets.lib.php:287 msgid "Slovenian" msgstr "Slovensko" -#: libraries/mysql_charsets.lib.php:298 +#: libraries/mysql_charsets.lib.php:290 msgid "Spanish" msgstr "Špansko" -#: libraries/mysql_charsets.lib.php:301 +#: libraries/mysql_charsets.lib.php:293 msgid "Traditional Spanish" msgstr "Tradicionalno špansko" -#: libraries/mysql_charsets.lib.php:304 libraries/mysql_charsets.lib.php:401 +#: libraries/mysql_charsets.lib.php:296 libraries/mysql_charsets.lib.php:393 msgid "Swedish" msgstr "Švedsko" -#: libraries/mysql_charsets.lib.php:307 libraries/mysql_charsets.lib.php:404 +#: libraries/mysql_charsets.lib.php:299 libraries/mysql_charsets.lib.php:396 msgid "Thai" msgstr "Tajsko" -#: libraries/mysql_charsets.lib.php:310 libraries/mysql_charsets.lib.php:398 +#: libraries/mysql_charsets.lib.php:302 libraries/mysql_charsets.lib.php:390 msgid "Turkish" msgstr "Turško" -#: libraries/mysql_charsets.lib.php:313 libraries/mysql_charsets.lib.php:395 +#: libraries/mysql_charsets.lib.php:305 libraries/mysql_charsets.lib.php:387 msgid "Ukrainian" msgstr "Ukrajinsko" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 msgid "Unicode" msgstr "Unikod" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 -#: libraries/mysql_charsets.lib.php:334 libraries/mysql_charsets.lib.php:341 -#: libraries/mysql_charsets.lib.php:363 libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 +#: libraries/mysql_charsets.lib.php:326 libraries/mysql_charsets.lib.php:333 +#: libraries/mysql_charsets.lib.php:355 libraries/mysql_charsets.lib.php:366 msgid "multilingual" msgstr "večjezično" -#: libraries/mysql_charsets.lib.php:341 +#: libraries/mysql_charsets.lib.php:333 msgid "Central European" msgstr "Centralno evropsko" -#: libraries/mysql_charsets.lib.php:346 +#: libraries/mysql_charsets.lib.php:338 msgid "Russian" msgstr "Rusko" -#: libraries/mysql_charsets.lib.php:363 +#: libraries/mysql_charsets.lib.php:355 msgid "Baltic" msgstr "Baltsko" -#: libraries/mysql_charsets.lib.php:368 +#: libraries/mysql_charsets.lib.php:360 msgid "Armenian" msgstr "Armensko" -#: libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:366 msgid "Cyrillic" msgstr "Cirilica" -#: libraries/mysql_charsets.lib.php:377 +#: libraries/mysql_charsets.lib.php:369 msgid "Arabic" msgstr "Arabsko" -#: libraries/mysql_charsets.lib.php:383 +#: libraries/mysql_charsets.lib.php:375 msgid "Hebrew" msgstr "Hebrejsko" -#: libraries/mysql_charsets.lib.php:386 +#: libraries/mysql_charsets.lib.php:378 msgid "Georgian" msgstr "Gruzijsko" -#: libraries/mysql_charsets.lib.php:389 +#: libraries/mysql_charsets.lib.php:381 msgid "Greek" msgstr "Grško" -#: libraries/mysql_charsets.lib.php:392 +#: libraries/mysql_charsets.lib.php:384 msgid "Czech-Slovak" msgstr "Češkoslovaško" -#: libraries/mysql_charsets.lib.php:407 libraries/mysql_charsets.lib.php:414 +#: libraries/mysql_charsets.lib.php:399 libraries/mysql_charsets.lib.php:406 msgid "unknown" msgstr "neznano" @@ -3397,57 +3464,57 @@ msgstr "Okno za poizvedbe" msgid "This format has no options" msgstr "Za to obliko ni možnosti" -#: libraries/relation.lib.php:82 +#: libraries/relation.lib.php:77 msgid "not OK" msgstr "ni v redu" -#: libraries/relation.lib.php:86 pmd_general.php:339 +#: libraries/relation.lib.php:81 pmd_general.php:339 msgid "OK" msgstr "V redu" -#: libraries/relation.lib.php:87 +#: libraries/relation.lib.php:82 msgid "Enabled" msgstr "Omogočeno" -#: libraries/relation.lib.php:110 +#: libraries/relation.lib.php:105 msgid "Display Features" msgstr "Prikaži lastnosti" -#: libraries/relation.lib.php:116 +#: libraries/relation.lib.php:111 msgid "Creation of PDFs" msgstr "Ustvarjanje datotek PDF" -#: libraries/relation.lib.php:120 +#: libraries/relation.lib.php:115 msgid "Displaying Column Comments" msgstr "Prikazovanje komentarjev stolpcev" -#: libraries/relation.lib.php:125 +#: libraries/relation.lib.php:120 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "Navodila za posodobitev tabele column_comments najdete v dokumentaciji" -#: libraries/relation.lib.php:130 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 msgid "Bookmarked SQL query" msgstr "Označena poizvedba SQL" -#: libraries/relation.lib.php:134 querywindow.php:99 querywindow.php:207 +#: libraries/relation.lib.php:129 querywindow.php:98 querywindow.php:205 msgid "SQL history" msgstr "Zgodovina SQL" -#: libraries/relation.lib.php:146 +#: libraries/relation.lib.php:141 msgid "Quick steps to setup advanced features:" msgstr "Hitri koraki za namestitev naprednih funkcij:" -#: libraries/relation.lib.php:148 +#: libraries/relation.lib.php:143 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "Ustvari potrebne tabele s script/create_tables.sql." -#: libraries/relation.lib.php:149 +#: libraries/relation.lib.php:144 msgid "Create a pma user and give access to these tables." msgstr "Ustvari uporabnika pma in dovoli dostop do teh tabel." -#: libraries/relation.lib.php:150 +#: libraries/relation.lib.php:145 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." @@ -3455,13 +3522,13 @@ msgstr "" "Omogočite napredne funkcije v konfiguracijski datoteki (config.inc." "php), za primer začnite z config.sample.inc.php." -#: libraries/relation.lib.php:151 +#: libraries/relation.lib.php:146 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" "Ponovno se prijavite v phpMyAdmin, da naložite posodobljeno konfiguracijsko " "datoteko." -#: libraries/relation.lib.php:1158 +#: libraries/relation.lib.php:1153 msgid "no description" msgstr "brez opisa" @@ -3469,7 +3536,7 @@ msgstr "brez opisa" msgid "Slave configuration" msgstr "Konfiguracija podrejencev" -#: libraries/replication_gui.lib.php:53 server_replication.php:346 +#: libraries/replication_gui.lib.php:53 server_replication.php:345 msgid "Change or reconfigure master server" msgstr "Spremeni ali ponovno konfiguriraj glavni strežnik" @@ -3484,16 +3551,12 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:711 -#: server_privileges.php:714 server_privileges.php:721 -#: server_synchronize.php:1170 +#: libraries/replication_gui.lib.php:261 server_privileges.php:710 +#: server_privileges.php:713 server_privileges.php:720 +#: server_synchronize.php:1169 msgid "User name" msgstr "Uporabniško ime" -#: libraries/replication_gui.lib.php:69 server_synchronize.php:1162 -msgid "Port" -msgstr "Vrata" - #: libraries/replication_gui.lib.php:105 msgid "Master status" msgstr "Stanje glavnega strežnika" @@ -3508,8 +3571,8 @@ msgid "Variable" msgstr "Spremenljivka" #: libraries/replication_gui.lib.php:117 server_status.php:737 -#: tbl_change.php:322 tbl_printview.php:368 tbl_select.php:137 -#: tbl_structure.php:728 +#: tbl_change.php:317 tbl_printview.php:367 tbl_select.php:136 +#: tbl_structure.php:726 msgid "Value" msgstr "Vrednost" @@ -3525,38 +3588,38 @@ msgstr "" "Samo podrejenci, ki so bili zagnani z možnostjo --report-host=host_name, so " "vidni na tem seznamu." -#: libraries/replication_gui.lib.php:242 server_replication.php:193 +#: libraries/replication_gui.lib.php:242 server_replication.php:192 msgid "Add slave replication user" msgstr "Dodaj uporabnika podvojevanja podrejencev" -#: libraries/replication_gui.lib.php:256 server_privileges.php:716 +#: libraries/replication_gui.lib.php:256 server_privileges.php:715 msgid "Any user" msgstr "Kateri koli uporabnik" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1920 server_privileges.php:1950 +#: libraries/replication_gui.lib.php:348 server_privileges.php:716 +#: server_privileges.php:783 server_privileges.php:807 +#: server_privileges.php:1924 server_privileges.php:1954 msgid "Use text field" msgstr "Uporabi besedilno polje" -#: libraries/replication_gui.lib.php:304 server_privileges.php:764 +#: libraries/replication_gui.lib.php:304 server_privileges.php:763 msgid "Any host" msgstr "Kateri koli gostitelj" -#: libraries/replication_gui.lib.php:308 server_privileges.php:768 +#: libraries/replication_gui.lib.php:308 server_privileges.php:767 msgid "Local" msgstr "Lokalno" -#: libraries/replication_gui.lib.php:314 server_privileges.php:773 +#: libraries/replication_gui.lib.php:314 server_privileges.php:772 msgid "This Host" msgstr "Ta strežnik" -#: libraries/replication_gui.lib.php:320 server_privileges.php:779 +#: libraries/replication_gui.lib.php:320 server_privileges.php:778 msgid "Use Host Table" msgstr "Uporabi tabelo gostiteljev" -#: libraries/replication_gui.lib.php:333 server_privileges.php:792 +#: libraries/replication_gui.lib.php:333 server_privileges.php:791 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3584,8 +3647,8 @@ msgstr "Neznani jezik: %1$s." msgid "Servers" msgstr "Strežniki" -#: libraries/server_links.inc.php:52 server_engines.php:111 -#: server_engines.php:115 server_status.php:414 test/theme.php:104 +#: libraries/server_links.inc.php:52 server_engines.php:125 +#: server_engines.php:129 server_status.php:414 test/theme.php:104 msgid "Variables" msgstr "Spremenljivke" @@ -3606,12 +3669,12 @@ msgstr "Dvojiški dnevnik" msgid "Processes" msgstr "Procesi" -#: libraries/server_links.inc.php:91 server_synchronize.php:1091 -#: server_synchronize.php:1099 +#: libraries/server_links.inc.php:91 server_synchronize.php:1090 +#: server_synchronize.php:1098 msgid "Synchronize" msgstr "Sinhroniziraj" -#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1109 +#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1108 msgid "Source database" msgstr "Izvorna zbirka podatkov" @@ -3629,7 +3692,7 @@ msgstr "Oddaljeni strežnik" msgid "Difference" msgstr "Razlika" -#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1111 +#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1110 msgid "Target database" msgstr "Ciljna zbirka podatkov" @@ -3647,11 +3710,11 @@ msgstr "Izvedi poizvedbo/poizvedbe SQL na podatkovni zbirki %s" msgid "Columns" msgstr "Stolpci" -#: libraries/sql_query_form.lib.php:342 sql.php:664 sql.php:665 sql.php:682 +#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "Označi to poizvedbo SQL" -#: libraries/sql_query_form.lib.php:349 sql.php:676 +#: libraries/sql_query_form.lib.php:349 sql.php:669 msgid "Let every user access this bookmark" msgstr "Dovoli dostop do zaznamka vsem uporabnikom" @@ -3746,12 +3809,12 @@ msgstr "" "Ne morem inicializirati preverjevalnika SQL. Prosimo, preverite, če so " "nameščene vse razširitve PHP, kot je navedeno v %sdokumenaciji%s." -#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:139 -#: libraries/tbl_links.inc.php:140 +#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 +#: libraries/tbl_links.inc.php:139 msgid "Table seems to be empty!" msgstr "Tabela je prazna!" -#: libraries/tbl_links.inc.php:148 +#: libraries/tbl_links.inc.php:147 #, php-format msgid "Tracking of %s.%s is activated." msgstr "Sledenje %s.%s je aktivirano." @@ -3780,12 +3843,12 @@ msgstr "" "Za privzete vrednosti vnesite samo vrednosti, brez poševnice nazaj ali " "narekovaja, npr.: a" -#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1263 -#: pdf_schema.php:1284 tbl_printview.php:142 tbl_structure.php:179 +#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1262 +#: pdf_schema.php:1283 tbl_printview.php:141 tbl_structure.php:178 msgid "Attributes" msgstr "Atributi" -#: libraries/tbl_properties.inc.php:136 +#: libraries/tbl_properties.inc.php:135 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -3794,11 +3857,11 @@ msgstr "" "Za seznam razpoložljivih možnosti pretvorbe in vrst MIME kliknite na %sopise " "transformacij%s" -#: libraries/tbl_properties.inc.php:144 +#: libraries/tbl_properties.inc.php:143 msgid "Transformation options" msgstr "Možnosti pretvorbe" -#: libraries/tbl_properties.inc.php:145 +#: libraries/tbl_properties.inc.php:144 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
                            If you ever need to put a backslash (\"\\\") or a single " @@ -3810,16 +3873,16 @@ msgstr "" "enojni narekovaj (\"'\"), morate pred ta znak postaviti (še eno) poševnico " "nazaj (npr. '\\\\xyz' ali 'a\\'b')." -#: libraries/tbl_properties.inc.php:392 +#: libraries/tbl_properties.inc.php:391 msgctxt "for default" msgid "None" msgstr "Brez" -#: libraries/tbl_properties.inc.php:393 +#: libraries/tbl_properties.inc.php:392 msgid "As defined:" msgstr "Kot določeno:" -#: libraries/tbl_properties.inc.php:579 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:578 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
                            Please ask the " @@ -3828,28 +3891,28 @@ msgstr "" "Za to pretvorbo ni na voljo opisa.
                            Za funkcije %s se pozanimajte pri " "avtorju." -#: libraries/tbl_properties.inc.php:725 server_engines.php:57 -#: tbl_operations.php:354 +#: libraries/tbl_properties.inc.php:724 server_engines.php:56 +#: tbl_operations.php:352 msgid "Storage Engine" msgstr "Pogon skladiščenja" -#: libraries/tbl_properties.inc.php:754 +#: libraries/tbl_properties.inc.php:753 msgid "PARTITION definition" msgstr "Definicija PARTITION" -#: libraries/tbl_properties.inc.php:775 pdf_pages.php:502 +#: libraries/tbl_properties.inc.php:774 pdf_pages.php:501 #: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214 -#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1124 tbl_indexes.php:247 -#: tbl_relation.php:565 +#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1022 tbl_indexes.php:246 +#: tbl_relation.php:563 msgid "Save" msgstr "Shrani" -#: libraries/tbl_properties.inc.php:779 tbl_structure.php:541 +#: libraries/tbl_properties.inc.php:778 tbl_structure.php:539 #, php-format msgid "Add %s column(s)" msgstr "Dodaj %s stolpec(-cev)" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:535 +#: libraries/tbl_properties.inc.php:782 tbl_structure.php:533 msgid "You have to add at least one column." msgstr "Dodati morate vsaj en stolpec." @@ -4010,8 +4073,8 @@ msgstr "Vmesnik" msgid "Custom color" msgstr "Barva po meri" -#: main.php:162 pdf_pages.php:362 setup/lib/FormDisplay.tpl.php:216 -#: tbl_change.php:1173 +#: main.php:162 pdf_pages.php:361 setup/lib/FormDisplay.tpl.php:216 +#: tbl_change.php:1071 msgid "Reset" msgstr "Ponastavi" @@ -4019,8 +4082,8 @@ msgstr "Ponastavi" msgid "Protocol version" msgstr "Različica protokola" -#: main.php:188 server_privileges.php:1381 server_privileges.php:1528 -#: server_privileges.php:1642 server_privileges.php:2060 +#: main.php:188 server_privileges.php:1385 server_privileges.php:1532 +#: server_privileges.php:1646 server_privileges.php:2064 #: server_processlist.php:53 msgid "User" msgstr "Uporabnik" @@ -4112,7 +4175,16 @@ msgstr "" "obstaja v vaši mapi phpMyAdmin. Priporočljivo jo je odstraniti, ko je " "phpMyAdmin enkrat že konfiguriran." -#: main.php:330 +#: main.php:314 +#, php-format +msgid "" +"The additional features for working with linked tables have been " +"deactivated. To find out why click %shere%s." +msgstr "" +"Dodatne funkcije za delo s povezanimi tabelami so bile izkjučene. Če želite " +"izvedeti zakaj, kliknite %stukaj%s." + +#: main.php:329 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " @@ -4122,7 +4194,7 @@ msgstr "" "nekatere funkcije phpMyAdmina manjkale. Na primer navigacijski okvir se ne " "bo osveževal samodejno." -#: main.php:345 +#: main.php:344 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -4131,7 +4203,7 @@ msgstr "" "Vaša PHP-knjižica MySQL različice %s se razlikuje od vašega strežnika MySQL " "različice %s. To lahko povzroči nepredvidljivo vedenje." -#: main.php:357 +#: main.php:356 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -4144,62 +4216,62 @@ msgstr "" msgid "Reload navigation frame" msgstr "Osveži okvir navigacije" -#: navigation.php:204 server_databases.php:370 server_synchronize.php:1190 +#: navigation.php:203 server_databases.php:368 server_synchronize.php:1189 msgid "No databases" msgstr "Brez zbirk podatkov" -#: navigation.php:298 +#: navigation.php:297 msgid "Filter" msgstr "Filtriranje" -#: navigation.php:299 setup/frames/index.inc.php:218 +#: navigation.php:298 setup/frames/index.inc.php:218 #: setup/lib/messages.inc.php:41 msgid "Clear" msgstr "Počisti" -#: navigation.php:330 navigation.php:331 +#: navigation.php:329 navigation.php:330 msgctxt "short form" msgid "Create table" msgstr "Ustvari tabelo" -#: navigation.php:333 navigation.php:495 +#: navigation.php:332 navigation.php:494 msgid "Please select a database" msgstr "Prosimo, izberite zbirko podatkov" -#: pdf_pages.php:40 pdf_pages.php:46 pdf_pages.php:52 pdf_pages.php:57 +#: pdf_pages.php:39 pdf_pages.php:45 pdf_pages.php:51 pdf_pages.php:56 #, php-format msgid "%s table not found or not set in %s" msgstr "Tabele %s ni mogoče najti ali pa ni v %s" -#: pdf_pages.php:265 +#: pdf_pages.php:264 msgid "Please choose a page to edit" msgstr "Izberite stran za urejanje" -#: pdf_pages.php:303 pmd_pdf.php:113 +#: pdf_pages.php:302 pmd_pdf.php:111 msgid "Create a page" msgstr "Ustvari novo stran" -#: pdf_pages.php:309 +#: pdf_pages.php:308 msgid "Page name" msgstr "Ime strani" -#: pdf_pages.php:313 +#: pdf_pages.php:312 msgid "Automatic layout based on" msgstr "Samodejna postavitev temelječa na" -#: pdf_pages.php:315 +#: pdf_pages.php:314 msgid "Internal relations" msgstr "Notranja razmerja" -#: pdf_pages.php:338 +#: pdf_pages.php:337 msgid "Select Tables" msgstr "Izberi tabele" -#: pdf_pages.php:361 +#: pdf_pages.php:360 msgid "Toggle scratchboard" msgstr "Preklopi odložišče (scratchboard)" -#: pdf_pages.php:524 +#: pdf_pages.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -4207,35 +4279,35 @@ msgstr "" "Trenutna stran vsebuje sklice na tabele, ki ne obstajajo več. Ali želite " "izbrisati te sklice?" -#: pdf_schema.php:635 +#: pdf_schema.php:634 #, php-format msgid "The %s table doesn't exist!" msgstr "Tabela %s ne obstaja!" -#: pdf_schema.php:671 +#: pdf_schema.php:670 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Prosimo, konfigurirajte koordinate za tabelo %s" -#: pdf_schema.php:994 +#: pdf_schema.php:993 #, php-format msgid "Schema of the %s database - Page %s" msgstr "Shema podatkovne zbirke %s - Stran %s" -#: pdf_schema.php:1012 +#: pdf_schema.php:1011 msgid "No tables" msgstr "Ni tabel" -#: pdf_schema.php:1031 pdf_schema.php:1140 +#: pdf_schema.php:1030 pdf_schema.php:1139 msgid "Relational schema" msgstr "Relacijska shema" -#: pdf_schema.php:1115 +#: pdf_schema.php:1114 msgid "Table of contents" msgstr "Vsebina" -#: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:145 -#: tbl_structure.php:182 tbl_tracking.php:277 +#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 +#: tbl_structure.php:181 tbl_tracking.php:272 msgid "Extra" msgstr "Dodatno" @@ -4247,7 +4319,7 @@ msgstr "Pokaži/Skrij levi meni" msgid "Save position" msgstr "Shrani položaj" -#: pmd_general.php:70 server_synchronize.php:428 server_synchronize.php:871 +#: pmd_general.php:70 server_synchronize.php:427 server_synchronize.php:870 msgid "Create table" msgstr "Ustvari tabelo" @@ -4321,31 +4393,31 @@ msgstr "" "prikazni stolpec, kliknite ikono \"Izberite stolpec za prikaz\", nato pa " "kliknite na ustrezno ime stolpca." -#: pmd_pdf.php:62 +#: pmd_pdf.php:60 msgid "Page has been created" msgstr "Stran je bila ustvarjena" -#: pmd_pdf.php:64 +#: pmd_pdf.php:62 msgid "Page creation failed" msgstr "Ustvarjanje strani je spodletelo" -#: pmd_pdf.php:84 +#: pmd_pdf.php:82 msgid "Export/Import to scale" msgstr "Izvozi/Uvozi v razmerju" -#: pmd_pdf.php:88 +#: pmd_pdf.php:86 msgid "recommended" msgstr "priporočeno" -#: pmd_pdf.php:93 +#: pmd_pdf.php:91 msgid "to/from page" msgstr "od/do strani" -#: querywindow.php:94 +#: querywindow.php:93 msgid "Import files" msgstr "Uvozi datoteke" -#: querywindow.php:105 +#: querywindow.php:104 msgid "All" msgstr "Vse/Vsi" @@ -4391,63 +4463,63 @@ msgstr "Podatki" msgid "Character Sets and Collations" msgstr "Nabori znakov in pravila za razvrščanje znakov" -#: server_databases.php:51 +#: server_databases.php:49 msgid "No databases selected." msgstr "Ni izbranih zbirk podatkov." -#: server_databases.php:62 +#: server_databases.php:60 #, php-format msgid "%s databases have been dropped successfully." msgstr "%s podatkovne zbirke so uspešno zavržene." -#: server_databases.php:87 +#: server_databases.php:85 msgid "Databases statistics" msgstr "Statistika zbirk podatkov" -#: server_databases.php:116 server_status.php:370 +#: server_databases.php:114 server_status.php:370 #: setup/lib/messages.inc.php:114 msgid "Tables" msgstr "Tabele" -#: server_databases.php:194 server_replication.php:180 -#: server_replication.php:208 +#: server_databases.php:192 server_replication.php:179 +#: server_replication.php:207 msgid "Master replication" msgstr "Podvojevanje glavnega strežnika" -#: server_databases.php:196 server_replication.php:247 +#: server_databases.php:194 server_replication.php:246 msgid "Slave replication" msgstr "Podvojevanje podrejencev" -#: server_databases.php:229 +#: server_databases.php:227 msgid "Jump to database" msgstr "Pojdi v zbirko podatkov" -#: server_databases.php:266 +#: server_databases.php:264 msgid "Not replicated" msgstr "Ni podvojeno" -#: server_databases.php:272 +#: server_databases.php:270 msgid "Replicated" msgstr "Podvojeno" -#: server_databases.php:288 +#: server_databases.php:286 #, php-format msgid "Check privileges for database "%s"." msgstr "Preveri privilegije za podatkovno zbirko "%s"." -#: server_databases.php:292 server_databases.php:293 +#: server_databases.php:290 server_databases.php:291 msgid "Check Privileges" msgstr "Preveri privilegije" -#: server_databases.php:357 server_databases.php:358 +#: server_databases.php:355 server_databases.php:356 msgid "Enable Statistics" msgstr "Omogoči statistiko" -#: server_databases.php:361 server_databases.php:362 +#: server_databases.php:359 server_databases.php:360 msgid "Disable Statistics" msgstr "Onemogoči statistiko" -#: server_databases.php:365 +#: server_databases.php:363 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -4455,121 +4527,121 @@ msgstr "" "Obvestilo: Omogočitev statistike podatkovne zbirke lahko povzroči močno " "povečan promet med spletnim in podatkovnim strežnikom." -#: server_engines.php:48 +#: server_engines.php:47 msgid "Storage Engines" msgstr "Pogoni skladiščenja" -#: server_export.php:20 +#: server_export.php:18 msgid "View dump (schema) of databases" msgstr "Pokaži povzetek stanja podatkovnih baz" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:23 server_privileges.php:265 msgid "Includes all privileges except GRANT." msgstr "Vsebuje vse privilegije razen GRANT." -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:24 server_privileges.php:191 +#: server_privileges.php:514 msgid "Allows altering the structure of existing tables." msgstr "Omogoča spreminjanje strukture obstoječih tabel." -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:25 server_privileges.php:207 +#: server_privileges.php:520 msgid "Allows altering and dropping stored routines." msgstr "Omogoča ustvarjanje in brisanje shranjenih rutin." -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:26 server_privileges.php:183 +#: server_privileges.php:513 msgid "Allows creating new databases and tables." msgstr "Omogoča ustvarjanje novih podatkovnih zbirk in tabel." -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:27 server_privileges.php:206 +#: server_privileges.php:519 msgid "Allows creating stored routines." msgstr "Omogoča ustvarjanje shranjenih rutin." -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:513 msgid "Allows creating new tables." msgstr "Omogoča ustvarjanje novih tabel." -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:29 server_privileges.php:194 +#: server_privileges.php:517 msgid "Allows creating temporary tables." msgstr "Omogoča ustvarjanje začasnih tabel." -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:30 server_privileges.php:208 +#: server_privileges.php:553 msgid "Allows creating, dropping and renaming user accounts." msgstr "Omogoča ustvarjanje, brisanje in preimenovanje uporabniških računov." -#: server_privileges.php:32 server_privileges.php:199 -#: server_privileges.php:203 server_privileges.php:526 -#: server_privileges.php:530 +#: server_privileges.php:31 server_privileges.php:198 +#: server_privileges.php:202 server_privileges.php:525 +#: server_privileges.php:529 msgid "Allows creating new views." msgstr "Omogoča ustvarjanje novih pogledov." -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:32 server_privileges.php:182 +#: server_privileges.php:505 msgid "Allows deleting data." msgstr "Omogoča brisanje podatkov." -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:33 server_privileges.php:184 +#: server_privileges.php:516 msgid "Allows dropping databases and tables." msgstr "Omogoča brisanje podatkovnih zbirk in tabel." -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:34 server_privileges.php:516 msgid "Allows dropping tables." msgstr "Omogoča brisanje tabel." -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:35 server_privileges.php:199 +#: server_privileges.php:533 msgid "Allows to set up events for the event scheduler" msgstr "Omogoča določanje dogodkov za načrtovalnik dogodkov" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:36 server_privileges.php:209 +#: server_privileges.php:521 msgid "Allows executing stored routines." msgstr "Omogoča izvajanje shranjenih rutin." -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:37 server_privileges.php:188 +#: server_privileges.php:508 msgid "Allows importing data from and exporting data into files." msgstr "Omogoča uvažanje in izvažanje podatkov v datoteke." -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:38 server_privileges.php:539 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Omogoča dodajanje uporabnikov in privilegijev brez osveževanja privilegijev." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:515 msgid "Allows creating and dropping indexes." msgstr "Omogoča ustvarjanje in brisanje indeksov." -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:40 server_privileges.php:180 +#: server_privileges.php:441 server_privileges.php:503 msgid "Allows inserting and replacing data." msgstr "Omogoča vstavljanje in zamenjavo podatkov." -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:41 server_privileges.php:195 +#: server_privileges.php:548 msgid "Allows locking tables for the current thread." msgstr "Omogoča zaklepanje tabel za trenutno temo." -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:42 server_privileges.php:645 +#: server_privileges.php:647 msgid "Limits the number of new connections the user may open per hour." msgstr "Omeji število povezav, ki jih uporabnik lahko odpre v eni uri." -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:43 server_privileges.php:633 +#: server_privileges.php:635 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Omeji število poizved, ki jih uporabnik lahko pošlje strežniku v eni uri." -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:44 server_privileges.php:639 +#: server_privileges.php:641 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -4577,62 +4649,62 @@ msgstr "" "Omeji število ukazov za spremembo tabel ali podatkovne zbirke, ki jih " "uporabnik lahko izvrši v eni uri." -#: server_privileges.php:46 server_privileges.php:652 -#: server_privileges.php:654 +#: server_privileges.php:45 server_privileges.php:651 +#: server_privileges.php:653 msgid "Limits the number of simultaneous connections the user may have." msgstr "Omeji število sočasnih povezav, ki jih lahko ima uporabnik." -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:46 server_privileges.php:187 +#: server_privileges.php:543 msgid "Allows viewing processes of all users" msgstr "Omogoča ogled procesov vseh uporabnikov" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:47 server_privileges.php:189 +#: server_privileges.php:447 server_privileges.php:549 msgid "Has no effect in this MySQL version." msgstr "V tej različici MySQL nima pomena." -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:48 server_privileges.php:185 +#: server_privileges.php:544 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Omogoča osveževanje strežnikovih nastavitev in praznjenje strežnikovih " "predpomnilnikov." -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:197 +#: server_privileges.php:551 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Da uporabniku pravico poizvedovati kje so njegovi nadrejeni / podrjeni " "strežniki." -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:50 server_privileges.php:196 +#: server_privileges.php:552 msgid "Needed for the replication slaves." msgstr "Potrebno za podrejene strežnike pri replikaciji." -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:51 server_privileges.php:179 +#: server_privileges.php:438 server_privileges.php:502 msgid "Allows reading data." msgstr "Omogoča branje podatkov." -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:52 server_privileges.php:192 +#: server_privileges.php:546 msgid "Gives access to the complete list of databases." msgstr "Omogoča dostop do popolnega spiska podatkovnih zbirk." -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:53 server_privileges.php:203 +#: server_privileges.php:205 server_privileges.php:518 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Omogoča izvajanje poizvedb SHOW CREATE VIEW." -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:54 server_privileges.php:186 +#: server_privileges.php:545 msgid "Allows shutting down the server." msgstr "Omogoča ugašanje strežnika." -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:55 server_privileges.php:193 +#: server_privileges.php:542 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -4642,153 +4714,153 @@ msgstr "" "priklopov; Potrebno za večino administrativnih nalog kot sta postavljanje " "globalnih spremenljivk in ukinjanje procesov drugih uporabnikov." -#: server_privileges.php:57 server_privileges.php:201 -#: server_privileges.php:535 +#: server_privileges.php:56 server_privileges.php:200 +#: server_privileges.php:534 msgid "Allows creating and dropping triggers" msgstr "Omogoča ustvarjanje in brisanje sprožilcev" -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:57 server_privileges.php:181 +#: server_privileges.php:444 server_privileges.php:504 msgid "Allows changing data." msgstr "Omogoča spreminjanje podatkov." -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:58 server_privileges.php:259 msgid "No privileges." msgstr "Brez privilegijev." -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:301 server_privileges.php:302 msgctxt "None privileges" msgid "None" msgstr "Brez" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1710 server_privileges.php:1716 +#: server_privileges.php:430 server_privileges.php:565 +#: server_privileges.php:1714 server_privileges.php:1720 msgid "Table-specific privileges" msgstr "Privilegiji tipični za tabelo" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1532 +#: server_privileges.php:431 server_privileges.php:573 +#: server_privileges.php:1536 msgid " Note: MySQL privilege names are expressed in English " msgstr " Opomba: Imena privilegijev MySQL so zapisana v angleščini " -#: server_privileges.php:563 server_privileges.php:1531 +#: server_privileges.php:562 server_privileges.php:1535 msgid "Global privileges" msgstr "Globalni privilegiji" -#: server_privileges.php:565 server_privileges.php:1710 +#: server_privileges.php:564 server_privileges.php:1714 msgid "Database-specific privileges" msgstr "Privilegiji tipični za podatkovno zbirko" -#: server_privileges.php:610 +#: server_privileges.php:609 msgid "Administration" msgstr "Administracija" -#: server_privileges.php:630 +#: server_privileges.php:629 msgid "Resource limits" msgstr "Omejitve virov" -#: server_privileges.php:631 +#: server_privileges.php:630 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" "Obvestilo: Če postavite vrednost na 0 (nič), boste odstranili omejitev." -#: server_privileges.php:708 +#: server_privileges.php:707 msgid "Login Information" msgstr "Podatki o prijavi" -#: server_privileges.php:802 +#: server_privileges.php:801 msgid "Do not change the password" msgstr "Ne spreminjaj gesla" -#: server_privileges.php:835 server_privileges.php:2197 +#: server_privileges.php:834 server_privileges.php:2201 msgid "No user found." msgstr "Najden ni bil noben uporabnik." -#: server_privileges.php:879 +#: server_privileges.php:878 #, php-format msgid "The user %s already exists!" msgstr "Uporabnik %s že obstaja!" -#: server_privileges.php:962 +#: server_privileges.php:961 msgid "You have added a new user." msgstr "Dodali ste novega uporabnika." -#: server_privileges.php:1183 +#: server_privileges.php:1184 #, php-format msgid "You have updated the privileges for %s." msgstr "Posodobili ste privilegije za %s." -#: server_privileges.php:1207 +#: server_privileges.php:1208 #, php-format msgid "You have revoked the privileges for %s" msgstr "Odvzeli ste privilegije za %s" -#: server_privileges.php:1243 +#: server_privileges.php:1244 #, php-format msgid "The password for %s was changed successfully." msgstr "Geslo za %s je uspešno spremenjeno." -#: server_privileges.php:1263 +#: server_privileges.php:1264 #, php-format msgid "Deleting %s" msgstr "Brišem %s" -#: server_privileges.php:1274 +#: server_privileges.php:1275 msgid "No users selected for deleting!" msgstr "Ni izbranih uporabnikov za brisanje!" -#: server_privileges.php:1277 +#: server_privileges.php:1278 msgid "Reloading the privileges" msgstr "Osvežujem privilegije" -#: server_privileges.php:1292 +#: server_privileges.php:1296 msgid "The selected users have been deleted successfully." msgstr "Uspešno sem izbrisal izbrane uporabnike." -#: server_privileges.php:1327 +#: server_privileges.php:1331 msgid "The privileges were reloaded successfully." msgstr "Uspešno sem osvežil privilegije." -#: server_privileges.php:1355 server_privileges.php:1641 +#: server_privileges.php:1359 server_privileges.php:1645 msgid "Edit Privileges" msgstr "Uredi privilegije" -#: server_privileges.php:1364 +#: server_privileges.php:1368 msgid "Revoke" msgstr "Odvzemi" -#: server_privileges.php:1396 +#: server_privileges.php:1400 msgid "User overview" msgstr "Pregled uporabnikov" -#: server_privileges.php:1533 server_privileges.php:1715 -#: server_privileges.php:2064 +#: server_privileges.php:1537 server_privileges.php:1719 +#: server_privileges.php:2068 msgid "Grant" msgstr "Dovoli" -#: server_privileges.php:1552 server_privileges.php:2154 +#: server_privileges.php:1556 server_privileges.php:2158 msgid "Any" msgstr "Kateri koli" -#: server_privileges.php:1601 server_privileges.php:1625 -#: server_privileges.php:2019 server_privileges.php:2208 +#: server_privileges.php:1605 server_privileges.php:1629 +#: server_privileges.php:2023 server_privileges.php:2212 msgid "Add a new User" msgstr "Dodaj novega uporabnika" -#: server_privileges.php:1606 +#: server_privileges.php:1610 msgid "Remove selected users" msgstr "Izbriši izbrane uporabnike" -#: server_privileges.php:1609 +#: server_privileges.php:1613 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Odvzemi uporabnikom aktivne privilegije in jih potem izbriši." -#: server_privileges.php:1610 server_privileges.php:1611 -#: server_privileges.php:1612 +#: server_privileges.php:1614 server_privileges.php:1615 +#: server_privileges.php:1616 msgid "Drop the databases that have the same names as the users." msgstr "Izbriši podatkovne zbirke, ki imajo enako ime kot uporabniki." -#: server_privileges.php:1628 +#: server_privileges.php:1632 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4801,50 +4873,50 @@ msgstr "" "jih uporablja strežnik, če so bile tabele ročno spremenjene. V tem primeru " "morate pred nadaljevanjem %sosvežiti privilegije%s." -#: server_privileges.php:1676 +#: server_privileges.php:1680 msgid "The selected user was not found in the privilege table." msgstr "Izbranega uporabnika v tabelah privilegijev nisem našel." -#: server_privileges.php:1716 +#: server_privileges.php:1720 msgid "Column-specific privileges" msgstr "Privilegiji tipični za stolpec" -#: server_privileges.php:1917 +#: server_privileges.php:1921 msgid "Add privileges on the following database" msgstr "Dodaj privilegije na naslednji podatkovni zbirki" -#: server_privileges.php:1935 +#: server_privileges.php:1939 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "Pred nadomestna znaka % in _ je potrebno postaviti \\, če ju želite " "uporabiti dobesedno." -#: server_privileges.php:1938 +#: server_privileges.php:1942 msgid "Add privileges on the following table" msgstr "Dodaj privilegije na naslednji tabeli" -#: server_privileges.php:1995 +#: server_privileges.php:1999 msgid "Change Login Information / Copy User" msgstr "Spremeni prijavne informacije / Kopiraj uporabnika" -#: server_privileges.php:1998 +#: server_privileges.php:2002 msgid "Create a new user with the same privileges and ..." msgstr "Ustvari novega uporabnika z enakimi pravicami in ..." -#: server_privileges.php:2000 +#: server_privileges.php:2004 msgid "... keep the old one." msgstr "... obdrži starega." -#: server_privileges.php:2001 +#: server_privileges.php:2005 msgid " ... delete the old one from the user tables." msgstr " ... izbriši starega s seznama uporabnikov." -#: server_privileges.php:2002 +#: server_privileges.php:2006 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr " ... prekliči vse aktivne pravice starega uporabnika ter jih izbriši." -#: server_privileges.php:2003 +#: server_privileges.php:2007 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -4852,43 +4924,43 @@ msgstr "" " ... izbriši starega uporabnika s seznama uporabnikov ter ponovno naloži " "njegove pravice." -#: server_privileges.php:2025 +#: server_privileges.php:2029 msgid "Database for user" msgstr "Podatkovna zbirka za uporabnika" -#: server_privileges.php:2029 +#: server_privileges.php:2033 msgctxt "Create none database for user" msgid "None" msgstr "Nobena" -#: server_privileges.php:2030 +#: server_privileges.php:2034 msgid "Create database with same name and grant all privileges" msgstr "Ustvari zbirko podatkov z enakim imenom in dodeli vse privilegije" -#: server_privileges.php:2031 +#: server_privileges.php:2035 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" "Dodeli vse privilegije na imenu z nadomestnim znakom (uporabniskoime\\_%)" -#: server_privileges.php:2034 +#: server_privileges.php:2038 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Dodeli vse privilegije za podatkovno zbirko "%s"" -#: server_privileges.php:2057 +#: server_privileges.php:2061 #, php-format msgid "Users having access to "%s"" msgstr "Uporabniški dostop do "%s"" -#: server_privileges.php:2165 +#: server_privileges.php:2169 msgid "global" msgstr "globalno" -#: server_privileges.php:2167 +#: server_privileges.php:2171 msgid "database-specific" msgstr "glede na zbirko podatkov" -#: server_privileges.php:2169 +#: server_privileges.php:2173 msgid "wildcard" msgstr "nadomestni znak" @@ -4907,45 +4979,45 @@ msgstr "phpMyAdmin ni uspel prekiniti teme %s. Verjetno je že prekinjena." msgid "ID" msgstr "ID" -#: server_replication.php:50 +#: server_replication.php:49 msgid "Unknown error" msgstr "Neznana napaka" -#: server_replication.php:57 +#: server_replication.php:56 #, php-format msgid "Unable to connect to master %s." msgstr "Ne morem se povezati z glavnim strežnikom %s." -#: server_replication.php:64 +#: server_replication.php:63 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" "Ne morem prebrati položaja dnevnika glavnega strežnika. Možne težave s " "privilegiji na glavnem strežniku." -#: server_replication.php:70 +#: server_replication.php:69 msgid "Unable to change master" msgstr "Ne morem spremeniti glavnega strežnika" -#: server_replication.php:73 +#: server_replication.php:72 #, php-format msgid "Master server changed succesfully to %s" msgstr "Glavni strežnik je uspešno spremenjen v %s" -#: server_replication.php:181 +#: server_replication.php:180 msgid "This server is configured as master in a replication process." msgstr "" "Ta strežnik je konfiguriran kot glavni strežnik v postopku podvojevanja." -#: server_replication.php:183 server_status.php:391 +#: server_replication.php:182 server_status.php:391 msgid "Show master status" msgstr "Pokaži stanje glavnega strežnika" -#: server_replication.php:186 +#: server_replication.php:185 msgid "Show connected slaves" msgstr "Pokaži povezane podrejence" -#: server_replication.php:209 +#: server_replication.php:208 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -4954,11 +5026,11 @@ msgstr "" "Ta strežnik ni konfiguriran kot glavni strežnik v postopku podvojevanja. Ali " "ga želite konfigurirati?" -#: server_replication.php:216 +#: server_replication.php:215 msgid "Master configuration" msgstr "Konfiguracija glavnega strežnika" -#: server_replication.php:217 +#: server_replication.php:216 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -4972,19 +5044,19 @@ msgstr "" "prezrtjem vseh zbirk podatkov po privzetem in podvojitvijo samo določenih " "zbirk podatkov. Prosimo, izberite način:" -#: server_replication.php:220 +#: server_replication.php:219 msgid "Replicate all databases; Ignore:" msgstr "Podvoji vse zbirke podatkov; prezri:" -#: server_replication.php:221 +#: server_replication.php:220 msgid "Ignore all databases; Replicate:" msgstr "Prezri vse zbirke podatkov; podvoji:" -#: server_replication.php:224 +#: server_replication.php:223 msgid "Please select databases:" msgstr "Prosimo, izberite zbirke podatkov:" -#: server_replication.php:227 +#: server_replication.php:226 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -4992,7 +5064,7 @@ msgstr "" "Sedaj dodajte naslednje vrstice na konec razdelka [mysqld] v vašem my.cnf in " "nato, prosimo, ponovno zaženite strežnik MySQL." -#: server_replication.php:229 +#: server_replication.php:228 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " @@ -5002,85 +5074,85 @@ msgstr "" "Nato bi morali videti sporočilo, ki vam sporoča, da ta strežnik je " "konfiguriran kot glavni strežnik" -#: server_replication.php:292 +#: server_replication.php:291 msgid "Slave SQL Thread not running!" msgstr "Podrejenčeva nit SQL ni zagnana!" -#: server_replication.php:295 +#: server_replication.php:294 msgid "Slave IO Thread not running!" msgstr "Podrejenčeva nit IO ni zagnana!" -#: server_replication.php:304 +#: server_replication.php:303 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" "Strežnik je konfiguriran kot podrejenec v postopku podvojevanja. Ali želite:" -#: server_replication.php:307 +#: server_replication.php:306 msgid "See slave status table" msgstr "Oglej si tabelo stanj podrejencev" -#: server_replication.php:310 +#: server_replication.php:309 msgid "Synchronize databases with master" msgstr "Sinhroniziraj zbirke podatkov z glavnim strežnikom" -#: server_replication.php:321 +#: server_replication.php:320 msgid "Control slave:" msgstr "Upravljaj podrejenca:" -#: server_replication.php:324 +#: server_replication.php:323 msgid "Full start" msgstr "Polni začetek" -#: server_replication.php:324 +#: server_replication.php:323 msgid "Full stop" msgstr "Polni konec" -#: server_replication.php:325 +#: server_replication.php:324 msgid "Reset slave" msgstr "Ponovno zaženi podrejenca" -#: server_replication.php:326 +#: server_replication.php:325 #, php-format msgid "SQL Thread %s only" msgstr "Nit SQL samo %s" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 msgid "Start" msgstr "Začetek" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 msgid "Stop" msgstr "Ustavi" -#: server_replication.php:327 +#: server_replication.php:326 #, php-format msgid "IO Thread %s only" msgstr "Nit IO samo %s" -#: server_replication.php:331 +#: server_replication.php:330 msgid "Error management:" msgstr "Upravljanje napak:" -#: server_replication.php:333 +#: server_replication.php:332 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" "Preskakovanje napak lahko vodi v nesinhroniziran glavni strežnik in " "podrejenec!" -#: server_replication.php:335 +#: server_replication.php:334 msgid "Skip current error" msgstr "Preskoči trenutno napako" -#: server_replication.php:336 +#: server_replication.php:335 msgid "Skip next" msgstr "Preskoči naslednjo" -#: server_replication.php:339 +#: server_replication.php:338 msgid "errors." msgstr "napak." -#: server_replication.php:354 +#: server_replication.php:353 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -5904,111 +5976,111 @@ msgstr "Vrsta poizvedbe" msgid "Replication status" msgstr "Stanje podvojevanja" -#: server_synchronize.php:93 +#: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "Ne morem se povezati z virom" -#: server_synchronize.php:96 +#: server_synchronize.php:95 msgid "Could not connect to the target" msgstr "Ne morem se povezati s ciljem" -#: server_synchronize.php:121 server_synchronize.php:124 tbl_create.php:77 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "Podatkovna zbirka '%s' ne obstaja." -#: server_synchronize.php:264 +#: server_synchronize.php:263 msgid "Structure Synchronization" msgstr "Sinhronizacija strukture" -#: server_synchronize.php:271 +#: server_synchronize.php:270 msgid "Data Synchronization" msgstr "Sinhronizacija podatkov" -#: server_synchronize.php:399 server_synchronize.php:838 +#: server_synchronize.php:398 server_synchronize.php:837 msgid "not present" msgstr "ni prisotno" -#: server_synchronize.php:423 server_synchronize.php:866 +#: server_synchronize.php:422 server_synchronize.php:865 msgid "Structure Difference" msgstr "Razlika zgradbe" -#: server_synchronize.php:424 server_synchronize.php:867 +#: server_synchronize.php:423 server_synchronize.php:866 msgid "Data Difference" msgstr "Razlika podatkov" -#: server_synchronize.php:429 server_synchronize.php:872 +#: server_synchronize.php:428 server_synchronize.php:871 msgid "Add column(s)" msgstr "Dodaj stolpec(-ce)" -#: server_synchronize.php:430 server_synchronize.php:873 +#: server_synchronize.php:429 server_synchronize.php:872 msgid "Remove column(s)" msgstr "Odstrani stolpec(-ce)" -#: server_synchronize.php:431 server_synchronize.php:874 +#: server_synchronize.php:430 server_synchronize.php:873 msgid "Alter column(s)" msgstr "Spremeni stolpec(-ce)" -#: server_synchronize.php:432 server_synchronize.php:875 +#: server_synchronize.php:431 server_synchronize.php:874 msgid "Remove index(s)" msgstr "Odstrani indeks(e)" -#: server_synchronize.php:433 server_synchronize.php:876 +#: server_synchronize.php:432 server_synchronize.php:875 msgid "Apply index(s)" msgstr "Uveljavi indeks(e)" -#: server_synchronize.php:434 server_synchronize.php:877 +#: server_synchronize.php:433 server_synchronize.php:876 msgid "Update row(s)" msgstr "Posodobi vrstico(-e)" -#: server_synchronize.php:435 server_synchronize.php:878 +#: server_synchronize.php:434 server_synchronize.php:877 msgid "Insert row(s)" msgstr "Vstavi vrstico(-e)" -#: server_synchronize.php:445 server_synchronize.php:889 +#: server_synchronize.php:444 server_synchronize.php:888 msgid "Would you like to delete all the previous rows from target tables?" msgstr "Ali želite izbrisati vse prejšnje vrstice iz ciljnih tabel?" -#: server_synchronize.php:448 server_synchronize.php:893 +#: server_synchronize.php:447 server_synchronize.php:892 msgid "Apply Selected Changes" msgstr "Uporabi izbrane spremembe" -#: server_synchronize.php:450 server_synchronize.php:895 +#: server_synchronize.php:449 server_synchronize.php:894 msgid "Synchronize Databases" msgstr "Sinhroniziraj zbirke podatkov" -#: server_synchronize.php:463 +#: server_synchronize.php:462 msgid "Selected target tables have been synchronized with source tables." msgstr "Izbrane ciljne tabele so bile sinhronizirane z izvornimi tabelami." -#: server_synchronize.php:941 +#: server_synchronize.php:940 msgid "Target database has been synchronized with source database" msgstr "" "Ciljna zbirka podatkov je bila sinhronizirana z izvorno zbirko podatkov" -#: server_synchronize.php:1002 +#: server_synchronize.php:1001 msgid "The following queries have been executed:" msgstr "Izvedene so bile naslednje poizvedbe:" -#: server_synchronize.php:1121 +#: server_synchronize.php:1120 msgid "Enter manually" msgstr "Vnesite ročno" -#: server_synchronize.php:1122 +#: server_synchronize.php:1121 msgid "Current connection" msgstr "Trenutna povezava" -#: server_synchronize.php:1151 +#: server_synchronize.php:1150 #, php-format msgid "Configuration: %s" msgstr "Konfiguracija: %s" -#: server_synchronize.php:1166 +#: server_synchronize.php:1165 msgid "Socket" msgstr "Vtičnica" -#: server_synchronize.php:1212 +#: server_synchronize.php:1211 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -6598,10 +6670,15 @@ msgid "Signon login options" msgstr "Prijavne možnosti signon" #: setup/lib/messages.inc.php:128 +#, fuzzy +#| msgid "" +#| "Configure phpMyAdmin database to gain access to additional features, see " +#| "[a@../Documentation.html#linked-tables]linked-tables infrastructure[/a] " +#| "in documentation" msgid "" "Configure phpMyAdmin database to gain access to additional features, see " -"[a@../Documentation.html#linked-tables]linked-tables infrastructure[/a] in " -"documentation" +"[a@../Documentation.html#linked-tables]phpMyAdmin configuration storage[/a] " +"in documentation" msgstr "" "Konfigurira zbirko podatkov phpMyAdmin za pridobitev dostopa do dodatnih " "funkcij, glej [a@../Documentation.html#linked-tables]infrastrukturo " @@ -7780,114 +7857,114 @@ msgstr "" msgid "ZIP" msgstr "ZIP" -#: sql.php:495 tbl_replace.php:385 +#: sql.php:494 tbl_replace.php:384 #, php-format msgid "Inserted row id: %1$d" msgstr "Id vstavljene vrstice: %1$d" -#: sql.php:512 +#: sql.php:511 msgid "Showing as PHP code" msgstr "Prikazovanje kot koda PHP" -#: sql.php:515 tbl_replace.php:359 +#: sql.php:514 tbl_replace.php:358 msgid "Showing SQL query" msgstr "Prikazovanje poizvedbe SQL" -#: sql.php:517 +#: sql.php:516 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Preveri pravilnost stavka SQL" -#: sql.php:638 +#: sql.php:631 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Težave z indeksi tabele `%s`" -#: sql.php:670 +#: sql.php:663 msgid "Label" msgstr "Oznaka" -#: tbl_addfield.php:188 tbl_alter.php:102 tbl_indexes.php:97 +#: tbl_addfield.php:185 tbl_alter.php:100 tbl_indexes.php:97 #, php-format msgid "Table %1$s has been altered successfully" msgstr "Tabela %1$s je bila uspešno spremenjena" -#: tbl_change.php:250 tbl_select.php:26 tbl_select.php:27 tbl_select.php:30 -#: tbl_select.php:33 +#: tbl_change.php:245 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_select.php:32 msgid "Browse foreign values" msgstr "Prebrskaj tuje vrednosti" -#: tbl_change.php:280 tbl_change.php:318 +#: tbl_change.php:275 tbl_change.php:313 msgid "Function" msgstr "Funkcija" -#: tbl_change.php:300 tbl_indexes.php:199 tbl_indexes.php:224 +#: tbl_change.php:295 tbl_indexes.php:198 tbl_indexes.php:223 msgid "Ignore" msgstr "Prezri" -#: tbl_change.php:725 +#: tbl_change.php:720 msgid " Because of its length,
                            this column might not be editable " msgstr " Zaradi njegove dolžine
                            stolpca morda ne bo mogoče urejati " -#: tbl_change.php:884 +#: tbl_change.php:835 msgid "Remove BLOB Repository Reference" msgstr "Odstrani sklic shrambe BLOB" -#: tbl_change.php:890 +#: tbl_change.php:841 msgid "Binary - do not edit" msgstr "Dvojiško - ne urejaj" -#: tbl_change.php:983 +#: tbl_change.php:889 msgid "Upload to BLOB repository" msgstr "Naloži v shrambo BLOB" -#: tbl_change.php:1128 +#: tbl_change.php:1026 msgid "Insert as new row" msgstr "Vstavi kot novo vrstico" -#: tbl_change.php:1129 +#: tbl_change.php:1027 msgid "Insert as new row and ignore errors" msgstr "Vstavi kot novo vrstico in presliši napake" -#: tbl_change.php:1130 +#: tbl_change.php:1028 msgid "Show insert query" msgstr "Prikaži poizvedbo insert" -#: tbl_change.php:1145 +#: tbl_change.php:1043 msgid "Go back to previous page" msgstr "Nazaj na prejšnjo stran" -#: tbl_change.php:1146 +#: tbl_change.php:1044 msgid "Insert another new row" msgstr "Vstavi še eno novo vrstico" -#: tbl_change.php:1150 +#: tbl_change.php:1048 msgid "Go back to this page" msgstr "Pojdi nazaj na stran" -#: tbl_change.php:1158 +#: tbl_change.php:1056 msgid "Edit next row" msgstr "Uredi naslednjo vrstico" -#: tbl_change.php:1169 +#: tbl_change.php:1067 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Uporabite tipko TAB za premik od vrednosti do vrednosti ali CTRL+puščice za " "premik kamor koli" -#: tbl_change.php:1207 +#: tbl_change.php:1105 #, php-format msgid "Restart insertion with %s rows" msgstr "Ponovno začni vstavljanje z %s vrsticami" -#: tbl_create.php:57 +#: tbl_create.php:55 #, php-format msgid "Table %s already exists!" msgstr "Tabela %s že obstaja!" -#: tbl_create.php:244 +#: tbl_create.php:241 #, php-format msgid "Table %1$s has been created." msgstr "Tabela %1$s je ustvarjena." @@ -7908,197 +7985,197 @@ msgstr "Indeksa ni mogoče preimenovati v PRIMARY!" msgid "No index parts defined!" msgstr "Ni definiranega dela indeksa!" -#: tbl_indexes.php:159 +#: tbl_indexes.php:158 msgid "Create a new index" msgstr "Ustvari nov indeks" -#: tbl_indexes.php:161 +#: tbl_indexes.php:160 msgid "Modify an index" msgstr "Spremeni indeks" -#: tbl_indexes.php:167 +#: tbl_indexes.php:166 msgid "Index name:" msgstr "Ime indeksa:" -#: tbl_indexes.php:173 +#: tbl_indexes.php:172 msgid "Index type:" msgstr "Vrsta indeksa:" -#: tbl_indexes.php:183 +#: tbl_indexes.php:182 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "(\"PRIMARY\" mora biti ime samo primarnega ključa!)" -#: tbl_indexes.php:250 +#: tbl_indexes.php:249 #, php-format msgid "Add to index  %s column(s)" msgstr "Dodaj indeksu  %s stolpec(ce)" -#: tbl_indexes.php:255 tbl_structure.php:588 tbl_structure.php:599 +#: tbl_indexes.php:254 tbl_structure.php:586 tbl_structure.php:597 msgid "Column count has to be larger than zero." msgstr "Število stolpcev mora biti večje od nič." -#: tbl_move_copy.php:45 +#: tbl_move_copy.php:44 msgid "Can't move table to same one!" msgstr "Tabele ni mogoče premakniti same vase!" -#: tbl_move_copy.php:47 +#: tbl_move_copy.php:46 msgid "Can't copy table to same one!" msgstr "Tabele ni mogoče kopirati same vase!" -#: tbl_move_copy.php:55 +#: tbl_move_copy.php:54 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabela %s je bila premaknjena v %s." -#: tbl_move_copy.php:57 +#: tbl_move_copy.php:56 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabela %s je skopirana v %s." -#: tbl_move_copy.php:81 +#: tbl_move_copy.php:80 msgid "The table name is empty!" msgstr "Ime tabele je prazno!" -#: tbl_operations.php:248 +#: tbl_operations.php:246 msgid "Alter table order by" msgstr "Spremeni vrstni red prikaza tabele za" -#: tbl_operations.php:257 +#: tbl_operations.php:255 msgid "(singly)" msgstr "(posamezno)" -#: tbl_operations.php:277 +#: tbl_operations.php:275 msgid "Move table to (database.table):" msgstr "Premakni tabelo v (podatkovna_zbirka.tabela):" -#: tbl_operations.php:335 +#: tbl_operations.php:333 msgid "Table options" msgstr "Možnosti tabele" -#: tbl_operations.php:339 +#: tbl_operations.php:337 msgid "Rename table to" msgstr "Preimenuj tabelo v" -#: tbl_operations.php:510 +#: tbl_operations.php:508 msgid "Copy table to (database.table):" msgstr "Kopiraj tabelo v (podatkovna_zbirka.tabela):" -#: tbl_operations.php:557 +#: tbl_operations.php:555 msgid "Switch to copied table" msgstr "Preklopi na kopirano tabelo" -#: tbl_operations.php:569 +#: tbl_operations.php:567 msgid "Table maintenance" msgstr "Vzdrževanje tabele" -#: tbl_operations.php:590 +#: tbl_operations.php:588 msgid "Defragment table" msgstr "Defragmentiraj tabelo" -#: tbl_operations.php:629 +#: tbl_operations.php:627 #, php-format msgid "Table %s has been flushed" msgstr "Tabela %s je osvežena" -#: tbl_operations.php:635 +#: tbl_operations.php:633 msgid "Flush the table (FLUSH)" msgstr "Počisti tabelo (FLUSH)" -#: tbl_operations.php:650 +#: tbl_operations.php:648 msgid "Partition maintenance" msgstr "Vzdrževanje particij" -#: tbl_operations.php:658 +#: tbl_operations.php:656 #, php-format msgid "Partition %s" msgstr "Particija %s" -#: tbl_operations.php:661 +#: tbl_operations.php:659 msgid "Analyze" msgstr "Analiziraj" -#: tbl_operations.php:662 +#: tbl_operations.php:660 msgid "Check" msgstr "Označi" -#: tbl_operations.php:663 +#: tbl_operations.php:661 msgid "Optimize" msgstr "Optimiraj" -#: tbl_operations.php:664 +#: tbl_operations.php:662 msgid "Rebuild" msgstr "Ponovno sestavi" -#: tbl_operations.php:665 +#: tbl_operations.php:663 msgid "Repair" msgstr "Popravi" -#: tbl_operations.php:677 +#: tbl_operations.php:675 msgid "Remove partitioning" msgstr "Odstrani particioniranje" -#: tbl_operations.php:703 +#: tbl_operations.php:701 msgid "Check referential integrity:" msgstr "Preveri referenčno integriteto:" -#: tbl_printview.php:73 +#: tbl_printview.php:72 msgid "Show tables" msgstr "Pokaži tabele" -#: tbl_printview.php:308 tbl_structure.php:655 +#: tbl_printview.php:307 tbl_structure.php:653 msgid "Space usage" msgstr "Poraba prostora" -#: tbl_printview.php:312 tbl_structure.php:659 +#: tbl_printview.php:311 tbl_structure.php:657 msgid "Usage" msgstr "Uporaba" -#: tbl_printview.php:339 tbl_structure.php:686 +#: tbl_printview.php:338 tbl_structure.php:684 msgid "Effective" msgstr "Učinkovito" -#: tbl_printview.php:364 tbl_structure.php:724 +#: tbl_printview.php:363 tbl_structure.php:722 msgid "Row Statistics" msgstr "Statistika vrstic" -#: tbl_printview.php:367 tbl_structure.php:727 +#: tbl_printview.php:366 tbl_structure.php:725 msgid "Statements" msgstr "Izjave" -#: tbl_printview.php:378 tbl_structure.php:739 +#: tbl_printview.php:377 tbl_structure.php:737 msgid "static" msgstr "statično" -#: tbl_printview.php:380 tbl_structure.php:741 +#: tbl_printview.php:379 tbl_structure.php:739 msgid "dynamic" msgstr "dinamično" -#: tbl_printview.php:402 tbl_structure.php:784 +#: tbl_printview.php:401 tbl_structure.php:782 msgid "Row length" msgstr "Dolžina vrstice" -#: tbl_printview.php:412 tbl_structure.php:792 +#: tbl_printview.php:411 tbl_structure.php:790 msgid " Row size " msgstr " Velikost vrstice " -#: tbl_relation.php:278 +#: tbl_relation.php:276 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" "Napaka pri ustvarjanju tujega ključa na %1$s (preverite podatkovne vrste)" -#: tbl_relation.php:404 +#: tbl_relation.php:402 msgid "Internal relation" msgstr "Notranja relacija" -#: tbl_relation.php:406 +#: tbl_relation.php:404 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "Notranja relacija ni nujna, ko obstaja ustrezna relacija FOREIGN KEY." -#: tbl_relation.php:412 +#: tbl_relation.php:410 msgid "Foreign key constraint" msgstr "Omejitev tujih ključev" @@ -8106,113 +8183,113 @@ msgstr "Omejitev tujih ključev" msgid "No rows selected" msgstr "Ni izbranih vrstic" -#: tbl_select.php:130 +#: tbl_select.php:129 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Izvedi \"query by example\" (nadomestni znak: \"%\")" -#: tbl_select.php:136 +#: tbl_select.php:135 msgid "Operator" msgstr "Operator" -#: tbl_select.php:267 +#: tbl_select.php:266 msgid "Select columns (at least one):" msgstr "Izberite stolpce (vsaj enega):" -#: tbl_select.php:285 +#: tbl_select.php:284 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Dodaj iskalne pogoje (telo \"where\" stavka):" -#: tbl_select.php:292 +#: tbl_select.php:291 msgid "Number of rows per page" msgstr "Število vrstic na stran" -#: tbl_select.php:298 +#: tbl_select.php:297 msgid "Display order:" msgstr "Vrstni red prikaza:" -#: tbl_structure.php:160 +#: tbl_structure.php:159 msgid "Browse distinct values" msgstr "Prebrskaj različne vrednosti" -#: tbl_structure.php:360 +#: tbl_structure.php:358 msgctxt "None for default" msgid "None" msgstr "Brez" -#: tbl_structure.php:373 +#: tbl_structure.php:371 #, php-format msgid "Column %s has been dropped" msgstr "Stolpec %s je zavržen" -#: tbl_structure.php:384 +#: tbl_structure.php:382 #, php-format msgid "A primary key has been added on %s" msgstr "Na %s je dodan primarni ključ" -#: tbl_structure.php:399 tbl_structure.php:413 tbl_structure.php:427 +#: tbl_structure.php:397 tbl_structure.php:411 tbl_structure.php:425 #, php-format msgid "An index has been added on %s" msgstr "Na %s je dodan indeks" -#: tbl_structure.php:505 tbl_structure.php:507 +#: tbl_structure.php:503 tbl_structure.php:505 msgid "Relation view" msgstr "Pogled relacij" -#: tbl_structure.php:514 tbl_structure.php:516 +#: tbl_structure.php:512 tbl_structure.php:514 msgid "Propose table structure" msgstr "Predlagaj strukturo tabele" -#: tbl_structure.php:539 +#: tbl_structure.php:537 msgid "Add column" msgstr "Dodaj stolpec" -#: tbl_structure.php:553 +#: tbl_structure.php:551 msgid "At End of Table" msgstr "Na koncu tabele" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At Beginning of Table" msgstr "Na začetku tabele" -#: tbl_structure.php:555 +#: tbl_structure.php:553 #, php-format msgid "After %s" msgstr "Po %s" -#: tbl_structure.php:593 +#: tbl_structure.php:591 #, php-format msgid "Create an index on  %s columns" msgstr "Ustvari indeks na  %s stolpcih" -#: tbl_structure.php:755 +#: tbl_structure.php:753 msgid "partitioned" msgstr "po particijah" -#: tbl_tracking.php:113 +#: tbl_tracking.php:109 #, php-format msgid "Tracking report for table `%s`" msgstr "Poročilo sledenja za tabelo `%s`" -#: tbl_tracking.php:186 +#: tbl_tracking.php:182 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "Različica %s je ustvarjena, sledenje %s.%s je aktivirano." -#: tbl_tracking.php:194 +#: tbl_tracking.php:190 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "Sledenje %s.%s, različice %s je dezaktivirano." -#: tbl_tracking.php:202 +#: tbl_tracking.php:198 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "Sledenje %s.%s, različice %s je aktivirano." -#: tbl_tracking.php:212 +#: tbl_tracking.php:208 msgid "SQL statements executed." msgstr "Stavki SQL so izvedeni." -#: tbl_tracking.php:219 +#: tbl_tracking.php:215 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -8220,111 +8297,111 @@ msgstr "" "Odložene podatke lahko izvedete z ustvarjanjem in uporabo začasne zbirke " "podatkov. Prosimo, prepričajte se, da imate privilegije za ta dejanja." -#: tbl_tracking.php:220 +#: tbl_tracking.php:216 msgid "Comment out these two lines if you do not need them." msgstr "Če teh dveh vrstic ne potrebujete, ju dajte v komentar." -#: tbl_tracking.php:229 +#: tbl_tracking.php:225 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" "Stavki SQL so bili izvoženi. Prosimo, skopirajte odložene podatke ali jih " "izvršite." -#: tbl_tracking.php:250 tbl_tracking.php:378 +#: tbl_tracking.php:245 tbl_tracking.php:373 msgid "Close" msgstr "Zapri" -#: tbl_tracking.php:261 +#: tbl_tracking.php:256 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Različica posnetka %s (koda SQL)" -#: tbl_tracking.php:380 +#: tbl_tracking.php:375 msgid "Tracking statements" msgstr "Sledenje stavkom" -#: tbl_tracking.php:396 tbl_tracking.php:503 +#: tbl_tracking.php:391 tbl_tracking.php:498 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "Prikaži %s z datumi od %s do %s uporabnika %s %s" -#: tbl_tracking.php:409 tbl_tracking.php:460 +#: tbl_tracking.php:404 tbl_tracking.php:455 msgid "Date" msgstr "Datum" -#: tbl_tracking.php:410 tbl_tracking.php:461 +#: tbl_tracking.php:405 tbl_tracking.php:456 msgid "Username" msgstr "Uporabniško ime" -#: tbl_tracking.php:411 +#: tbl_tracking.php:406 msgid "Data definition statement" msgstr "Stavek opredeljevanja podatkov" -#: tbl_tracking.php:462 +#: tbl_tracking.php:457 msgid "Data manipulation statement" msgstr "Stavek upravljanja s podatki" -#: tbl_tracking.php:506 +#: tbl_tracking.php:501 msgid "SQL dump (file download)" msgstr "Odložen SQL (prenos datoteke)" -#: tbl_tracking.php:507 +#: tbl_tracking.php:502 msgid "SQL dump" msgstr "Odložen SQL" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "This option will replace your table and contained data." msgstr "Ta možnost bo zamenjala vašo tabelo in vsebovane podatke." -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "SQL execution" msgstr "Izvršitev SQL" -#: tbl_tracking.php:520 +#: tbl_tracking.php:515 #, php-format msgid "Export as %s" msgstr "Izvozi kot %s" -#: tbl_tracking.php:560 +#: tbl_tracking.php:555 msgid "Show versions" msgstr "Prikaži različice" -#: tbl_tracking.php:592 +#: tbl_tracking.php:587 msgid "Version" msgstr "Različica" -#: tbl_tracking.php:639 +#: tbl_tracking.php:634 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "Dezaktiviraj sledenje za %s.%s" -#: tbl_tracking.php:641 +#: tbl_tracking.php:636 msgid "Deactivate now" msgstr "Dezaktiviraj zdaj" -#: tbl_tracking.php:652 +#: tbl_tracking.php:647 #, php-format msgid "Activate tracking for %s.%s" msgstr "Aktiviraj sledenje %s.%s" -#: tbl_tracking.php:654 +#: tbl_tracking.php:649 msgid "Activate now" msgstr "Aktiviraj zdaj" -#: tbl_tracking.php:667 +#: tbl_tracking.php:662 #, php-format msgid "Create version %s of %s.%s" msgstr "Ustvari različico %s tabele %s.%s" -#: tbl_tracking.php:671 +#: tbl_tracking.php:666 msgid "Track these data definition statements:" msgstr "Sledi tem stavkom opredeljevanja podatkov:" -#: tbl_tracking.php:679 +#: tbl_tracking.php:674 msgid "Track these data manipulation statements:" msgstr "Sledi tem stavkom upravljanja s podatki:" -#: tbl_tracking.php:687 +#: tbl_tracking.php:682 msgid "Create version" msgstr "Ustvari različico" @@ -8371,10 +8448,34 @@ msgstr "Profil je posodobljen." msgid "VIEW name" msgstr "Ime VIEW" -#: view_operations.php:92 +#: view_operations.php:91 msgid "Rename view to" msgstr "Preimenuj pogled v" +#~ msgid "BLOB Repository" +#~ msgstr "Shramba BLOB" + +#~ msgctxt "BLOB repository" +#~ msgid "Enabled" +#~ msgstr "Omogočeno" + +#~ msgid "Disable" +#~ msgstr "Onemogoči" + +#~ msgid "Damaged" +#~ msgstr "Poškodovano" + +#~ msgctxt "BLOB repository" +#~ msgid "Repair" +#~ msgstr "Popravi" + +#~ msgctxt "BLOB repository" +#~ msgid "Disabled" +#~ msgstr "Onemogočeno" + +#~ msgid "Enable" +#~ msgstr "Omogoči" + #~ msgid "" #~ "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " #~ "extension. Please check your PHP configuration." diff --git a/po/sq.po b/po/sq.po index 08b00c118..c0f539183 100644 --- a/po/sq.po +++ b/po/sq.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-21 13:53+0200\n" +"POT-Creation-Date: 2010-07-26 17:18+0200\n" "PO-Revision-Date: 2010-07-21 14:51+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: albanian \n" @@ -14,19 +14,19 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.1\n" -#: browse_foreigners.php:37 browse_foreigners.php:58 -#: libraries/display_tbl.lib.php:416 server_privileges.php:1506 +#: browse_foreigners.php:36 browse_foreigners.php:57 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1510 msgid "Show all" msgstr "Shfaqi të gjithë" -#: browse_foreigners.php:81 libraries/common.lib.php:2313 -#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:393 -#: libraries/export/pdf.php:146 pdf_schema.php:282 pdf_schema.php:1122 -#: pdf_schema.php:1138 +#: browse_foreigners.php:80 libraries/common.lib.php:2318 +#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:392 +#: libraries/export/pdf.php:146 pdf_schema.php:281 pdf_schema.php:1121 +#: pdf_schema.php:1137 msgid "Page number:" msgstr "Numri i faqes:" -#: browse_foreigners.php:131 +#: browse_foreigners.php:130 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -36,139 +36,151 @@ msgstr "" "keni mbyllur dritaren prind ose rregullimet mbrojtëse të shfletuesit tuaj të " "ndalojnë përditësimet nëpërmjet dritareve." -#: browse_foreigners.php:149 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2829 -#: libraries/common.lib.php:2836 libraries/db_links.inc.php:74 -#: libraries/tbl_links.inc.php:62 +#: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 +#: db_structure.php:89 db_structure.php:91 db_structure.php:102 +#: db_structure.php:104 libraries/common.lib.php:2834 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Kërko" -#: browse_foreigners.php:152 db_operations.php:384 db_operations.php:428 -#: db_operations.php:498 db_operations.php:608 db_search.php:344 -#: db_structure.php:566 js/messages.php:48 libraries/Config.class.php:1043 -#: libraries/Theme_Manager.class.php:310 +#: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 +#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 +#: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 -#: libraries/common.lib.php:1340 libraries/common.lib.php:2289 +#: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 -#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:275 -#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:531 -#: libraries/display_tbl.lib.php:613 libraries/replication_gui.lib.php:75 +#: libraries/display_export.lib.php:269 libraries/display_import.lib.php:275 +#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 +#: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 #: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:781 -#: main.php:127 navigation.php:231 pdf_pages.php:291 pdf_pages.php:327 -#: pdf_pages.php:529 pmd_pdf.php:115 server_binlog.php:128 -#: server_privileges.php:664 server_privileges.php:1616 -#: server_privileges.php:1963 server_privileges.php:2010 -#: server_privileges.php:2049 server_replication.php:234 -#: server_replication.php:317 server_replication.php:340 -#: server_synchronize.php:1208 tbl_change.php:328 tbl_change.php:1172 -#: tbl_change.php:1209 tbl_indexes.php:253 tbl_operations.php:264 -#: tbl_operations.php:301 tbl_operations.php:498 tbl_operations.php:560 -#: tbl_operations.php:680 tbl_select.php:324 tbl_structure.php:561 -#: tbl_structure.php:596 tbl_tracking.php:394 tbl_tracking.php:511 -#: view_create.php:181 view_operations.php:100 +#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 +#: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 +#: server_privileges.php:663 server_privileges.php:1620 +#: server_privileges.php:1967 server_privileges.php:2014 +#: server_privileges.php:2053 server_replication.php:233 +#: server_replication.php:316 server_replication.php:339 +#: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 +#: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 +#: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 +#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "Zbato" -#: browse_foreigners.php:167 browse_foreigners.php:171 -#: libraries/Index.class.php:441 tbl_tracking.php:319 +#: browse_foreigners.php:166 browse_foreigners.php:170 +#: libraries/Index.class.php:441 tbl_tracking.php:314 msgid "Keyname" msgstr "Emri i kyçit" -#: browse_foreigners.php:168 browse_foreigners.php:170 -#: server_collations.php:54 server_collations.php:66 server_engines.php:58 +#: browse_foreigners.php:167 browse_foreigners.php:169 +#: server_collations.php:54 server_collations.php:66 server_engines.php:57 #: server_status.php:738 msgid "Description" msgstr "Përshkrimi" -#: browse_foreigners.php:246 browse_foreigners.php:255 -#: browse_foreigners.php:267 browse_foreigners.php:275 +#: browse_foreigners.php:245 browse_foreigners.php:254 +#: browse_foreigners.php:266 browse_foreigners.php:274 msgid "Use this value" msgstr "Përdor këtë vlerë" -#: db_create.php:45 +#: bs_disp_as_mime_type.php:29 bs_play_media.php:35 +msgid "No blob streaming server configured!" +msgstr "" + +#: bs_disp_as_mime_type.php:35 +msgid "Failed to fetch headers" +msgstr "" + +#: bs_disp_as_mime_type.php:41 +msgid "Failed to open remote URL" +msgstr "" + +#: db_create.php:44 #, php-format msgid "Database %1$s has been created." msgstr "U krijua baza e të dhënave %1$s." -#: db_datadict.php:48 db_operations.php:377 +#: db_datadict.php:48 db_operations.php:313 msgid "Database comment: " msgstr "Komenti për databazën: " -#: db_datadict.php:164 libraries/tbl_properties.inc.php:723 -#: pdf_schema.php:1235 tbl_operations.php:346 tbl_printview.php:128 +#: db_datadict.php:164 libraries/tbl_properties.inc.php:722 +#: pdf_schema.php:1234 tbl_operations.php:344 tbl_printview.php:127 msgid "Table comments" msgstr "Komentet e tabelës" -#: db_datadict.php:173 db_qbe.php:173 libraries/Index.class.php:445 +#: db_datadict.php:173 db_qbe.php:170 libraries/Index.class.php:445 #: libraries/export/htmlword.php:243 libraries/export/latex.php:364 #: libraries/export/odt.php:293 libraries/export/texytext.php:233 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:274 -#: pdf_schema.php:1261 pdf_schema.php:1282 tbl_change.php:306 -#: tbl_indexes.php:188 tbl_printview.php:140 tbl_relation.php:401 -#: tbl_select.php:133 tbl_structure.php:176 tbl_tracking.php:272 -#: tbl_tracking.php:323 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 +#: pdf_schema.php:1260 pdf_schema.php:1281 tbl_change.php:301 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:132 tbl_structure.php:175 tbl_tracking.php:267 +#: tbl_tracking.php:318 #, fuzzy #| msgid "Column names" msgid "Column" msgstr "Emrat e kollonave" -#: db_datadict.php:174 db_printview.php:105 libraries/Index.class.php:442 +#: db_datadict.php:174 db_printview.php:104 libraries/Index.class.php:442 #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 #: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:244 #: libraries/export/latex.php:364 libraries/export/odt.php:296 #: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:99 -#: pdf_schema.php:1262 pdf_schema.php:1283 server_privileges.php:2062 -#: tbl_change.php:285 tbl_change.php:312 tbl_printview.php:141 -#: tbl_printview.php:311 tbl_select.php:134 tbl_structure.php:177 -#: tbl_structure.php:658 tbl_tracking.php:273 tbl_tracking.php:320 +#: pdf_schema.php:1261 pdf_schema.php:1282 server_privileges.php:2066 +#: tbl_change.php:280 tbl_change.php:307 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:133 tbl_structure.php:176 +#: tbl_structure.php:656 tbl_tracking.php:268 tbl_tracking.php:315 msgid "Type" msgstr "Lloji" #: db_datadict.php:176 libraries/Index.class.php:448 #: libraries/export/htmlword.php:245 libraries/export/latex.php:364 #: libraries/export/odt.php:299 libraries/export/texytext.php:235 -#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1264 -#: pdf_schema.php:1285 tbl_change.php:321 tbl_printview.php:143 -#: tbl_structure.php:180 tbl_tracking.php:275 tbl_tracking.php:326 +#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1263 +#: pdf_schema.php:1284 tbl_change.php:316 tbl_printview.php:142 +#: tbl_structure.php:179 tbl_tracking.php:270 tbl_tracking.php:321 msgid "Null" msgstr "Null" -#: db_datadict.php:177 db_structure.php:500 libraries/export/htmlword.php:246 +#: db_datadict.php:177 db_structure.php:486 libraries/export/htmlword.php:246 #: libraries/export/latex.php:364 libraries/export/odt.php:302 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:105 -#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 -#: tbl_structure.php:181 tbl_tracking.php:276 +#: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:143 +#: tbl_structure.php:180 tbl_tracking.php:271 msgid "Default" msgstr "Prezgjedhur" #: db_datadict.php:181 libraries/export/htmlword.php:248 #: libraries/export/latex.php:366 libraries/export/odt.php:306 -#: libraries/export/texytext.php:238 pdf_schema.php:1267 pdf_schema.php:1288 -#: tbl_printview.php:148 +#: libraries/export/texytext.php:238 pdf_schema.php:1266 pdf_schema.php:1287 +#: tbl_printview.php:147 msgid "Links to" msgstr "Lidhje me" -#: db_datadict.php:183 db_printview.php:111 libraries/export/htmlword.php:251 +#: db_datadict.php:183 db_printview.php:110 libraries/export/htmlword.php:251 #: libraries/export/latex.php:49 libraries/export/latex.php:369 #: libraries/export/odt.php:37 libraries/export/odt.php:311 #: libraries/export/sql.php:29 libraries/export/texytext.php:241 -#: libraries/tbl_properties.inc.php:129 pdf_schema.php:1278 -#: pdf_schema.php:1289 tbl_printview.php:150 +#: libraries/tbl_properties.inc.php:128 pdf_schema.php:1277 +#: pdf_schema.php:1288 tbl_printview.php:149 msgid "Comments" msgstr "Komente" #: db_datadict.php:266 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/export/htmlword.php:321 #: libraries/export/latex.php:434 libraries/export/odt.php:367 -#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:262 -#: pdf_schema.php:1343 server_privileges.php:1560 server_privileges.php:1571 -#: server_privileges.php:1881 server_privileges.php:1886 -#: server_privileges.php:2179 sql.php:131 sql.php:193 tbl_printview.php:227 -#: tbl_structure.php:349 tbl_tracking.php:336 tbl_tracking.php:341 +#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:261 +#: pdf_schema.php:1342 server_privileges.php:1564 server_privileges.php:1575 +#: server_privileges.php:1885 server_privileges.php:1890 +#: server_privileges.php:2183 sql.php:130 sql.php:192 tbl_printview.php:226 +#: tbl_structure.php:347 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr " Jo " @@ -179,17 +191,17 @@ msgstr " Jo " #: libraries/mult_submits.inc.php:49 libraries/mult_submits.inc.php:54 #: libraries/mult_submits.inc.php:59 libraries/mult_submits.inc.php:91 #: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:105 -#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:261 -#: libraries/mult_submits.inc.php:272 pdf_schema.php:1343 -#: server_databases.php:63 server_privileges.php:1557 -#: server_privileges.php:1571 server_privileges.php:1881 -#: server_privileges.php:1884 server_privileges.php:2179 sql.php:192 -#: tbl_printview.php:227 tbl_structure.php:39 tbl_structure.php:349 -#: tbl_tracking.php:334 tbl_tracking.php:339 +#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:260 +#: libraries/mult_submits.inc.php:271 pdf_schema.php:1342 +#: server_databases.php:61 server_privileges.php:1561 +#: server_privileges.php:1575 server_privileges.php:1885 +#: server_privileges.php:1888 server_privileges.php:2183 sql.php:191 +#: tbl_printview.php:226 tbl_structure.php:38 tbl_structure.php:347 +#: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" msgstr " Po " -#: db_datadict.php:321 db_printview.php:265 tbl_printview.php:496 +#: db_datadict.php:321 db_printview.php:264 tbl_printview.php:495 msgid "Print" msgstr "Printo" @@ -197,188 +209,154 @@ msgstr "Printo" msgid "View dump (schema) of database" msgstr "Shfaq dump (skema) e databazës" -#: db_export.php:32 db_printview.php:95 db_qbe.php:101 db_structure.php:50 -#: db_tracking.php:34 export.php:352 navigation.php:326 +#: db_export.php:32 db_printview.php:94 db_qbe.php:98 db_structure.php:49 +#: db_tracking.php:30 export.php:350 navigation.php:325 msgid "No tables found in database." msgstr "Nuk gjenden tabela në databazë." -#: db_export.php:42 db_search.php:326 server_export.php:26 +#: db_export.php:42 db_search.php:326 server_export.php:24 msgid "Select All" msgstr "Zgjidh gjithçka" -#: db_export.php:44 db_search.php:329 server_export.php:28 +#: db_export.php:44 db_search.php:329 server_export.php:26 msgid "Unselect All" msgstr "Asnjë zgjedhje" -#: db_operations.php:37 tbl_create.php:49 +#: db_operations.php:33 tbl_create.php:47 msgid "The database name is empty!" msgstr "Mungon emri i databazës!" -#: db_operations.php:235 +#: db_operations.php:231 #, php-format msgid "Database %s has been renamed to %s" msgstr "Databazës %s i është ndryshuar emri në %s" -#: db_operations.php:239 +#: db_operations.php:235 #, php-format msgid "Database %s has been copied to %s" msgstr "Databaza %s është kopjuar tek %s" -#: db_operations.php:411 +#: db_operations.php:347 msgid "Rename database to" msgstr "Ndysho emrin e databazës në" -#: db_operations.php:416 server_processlist.php:56 +#: db_operations.php:352 server_processlist.php:56 msgid "Command" msgstr "Komanda" -#: db_operations.php:428 tbl_change.php:1141 +#: db_operations.php:364 tbl_change.php:1039 msgid "and then" msgstr "" -#: db_operations.php:454 +#: db_operations.php:390 msgid "Copy database to" msgstr "Kopjo databazën në" -#: db_operations.php:461 tbl_operations.php:527 tbl_tracking.php:387 +#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Vetëm struktura" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:389 +#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Struktura dhe të dhënat" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:388 +#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Vetëm të dhënat" -#: db_operations.php:471 +#: db_operations.php:407 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE para se të kopjohet" -#: db_operations.php:474 libraries/export/sql.php:51 +#: db_operations.php:410 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 -#: libraries/export/sql.php:81 tbl_operations.php:535 +#: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "Shto %s" -#: db_operations.php:478 libraries/export/sql.php:77 tbl_operations.php:298 -#: tbl_operations.php:537 +#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Shto vlerë AUTO_INCREMENT" -#: db_operations.php:482 tbl_operations.php:544 +#: db_operations.php:418 tbl_operations.php:542 msgid "Add constraints" msgstr "Shto kushte" -#: db_operations.php:495 +#: db_operations.php:431 msgid "Switch to copied database" msgstr "Kalo tek databaza e kopjuar" -#: db_operations.php:536 -msgid "BLOB Repository" -msgstr "Repository BLOB" - -#: db_operations.php:539 db_tracking.php:75 libraries/common.lib.php:1357 -#: libraries/server_links.inc.php:48 server_processlist.php:58 -#: tbl_tracking.php:595 test/theme.php:100 -msgid "Status" -msgstr "Gjendja" - -#: db_operations.php:547 -msgctxt "BLOB repository" -msgid "Enabled" -msgstr "Aktivizuar" - -#: db_operations.php:551 -msgid "Disable" -msgstr "Çaktivizo" - -#: db_operations.php:561 -msgid "Damaged" -msgstr "Me dëme" - -#: db_operations.php:565 -msgctxt "BLOB repository" -msgid "Repair" -msgstr "Riparo" - -#: db_operations.php:573 -msgctxt "BLOB repository" -msgid "Disabled" -msgstr "Çaktivizuar" - -#: db_operations.php:577 -msgid "Enable" -msgstr "Aktivizo" - -#: db_operations.php:601 libraries/Index.class.php:447 +#: db_operations.php:451 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 -#: server_collations.php:53 server_collations.php:65 server_databases.php:110 -#: tbl_operations.php:362 tbl_select.php:135 tbl_structure.php:178 -#: tbl_structure.php:766 tbl_tracking.php:274 tbl_tracking.php:325 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 +#: server_collations.php:53 server_collations.php:65 server_databases.php:108 +#: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:177 +#: tbl_structure.php:764 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "Collation" -#: db_operations.php:614 main.php:315 pdf_schema.php:33 -#, php-format +#: db_operations.php:464 pdf_schema.php:32 +#, fuzzy, php-format +#| msgid "" +#| "The additional features for working with linked tables have been " +#| "deactivated. To find out why click %shere%s." msgid "" -"The additional features for working with linked tables have been " -"deactivated. To find out why click %shere%s." +"The phpMyAdmin configuration storage has been deactivated. To find out why " +"click %shere%s." 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:647 +#: db_operations.php:497 msgid "Edit PDF Pages" msgstr "Ndrysho faqet PDF" -#: db_printview.php:103 db_tracking.php:71 db_tracking.php:156 +#: db_printview.php:102 db_tracking.php:67 db_tracking.php:152 #: libraries/db_structure.lib.php:37 libraries/export/xml.php:327 -#: libraries/header.inc.php:125 pdf_pages.php:423 server_privileges.php:1657 -#: server_privileges.php:1713 server_privileges.php:1977 -#: server_synchronize.php:422 server_synchronize.php:865 tbl_tracking.php:591 +#: libraries/header.inc.php:125 pdf_pages.php:422 server_privileges.php:1661 +#: server_privileges.php:1717 server_privileges.php:1981 +#: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "Tabela" -#: db_printview.php:104 libraries/db_structure.lib.php:47 +#: db_printview.php:103 libraries/db_structure.lib.php:47 #: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 -#: navigation.php:629 navigation.php:651 server_databases.php:121 -#: tbl_printview.php:392 tbl_structure.php:364 tbl_structure.php:776 +#: navigation.php:628 navigation.php:650 server_databases.php:119 +#: tbl_printview.php:391 tbl_structure.php:362 tbl_structure.php:774 msgid "Rows" msgstr "rreshta" -#: db_printview.php:108 libraries/db_structure.lib.php:58 tbl_indexes.php:189 +#: db_printview.php:107 libraries/db_structure.lib.php:58 tbl_indexes.php:188 msgid "Size" msgstr "Madhësia" -#: db_printview.php:161 db_structure.php:456 libraries/export/sql.php:556 +#: db_printview.php:160 db_structure.php:442 libraries/export/sql.php:556 #: libraries/export/sql.php:896 msgid "in use" msgstr "në përdorim" -#: db_printview.php:186 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:511 pdf_schema.php:1240 tbl_printview.php:432 -#: tbl_structure.php:808 +#: db_printview.php:185 libraries/db_info.inc.php:86 +#: libraries/export/sql.php:511 pdf_schema.php:1239 tbl_printview.php:431 +#: tbl_structure.php:806 msgid "Creation" msgstr "Krijimi" -#: db_printview.php:195 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:516 pdf_schema.php:1245 tbl_printview.php:442 -#: tbl_structure.php:816 +#: db_printview.php:194 libraries/db_info.inc.php:91 +#: libraries/export/sql.php:516 pdf_schema.php:1244 tbl_printview.php:441 +#: tbl_structure.php:814 msgid "Last update" msgstr "Ndryshimi i fundit" -#: db_printview.php:204 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:521 pdf_schema.php:1250 tbl_printview.php:452 -#: tbl_structure.php:824 +#: db_printview.php:203 libraries/db_info.inc.php:96 +#: libraries/export/sql.php:521 pdf_schema.php:1249 tbl_printview.php:451 +#: tbl_structure.php:822 msgid "Last check" msgstr "Kontrolli i fundit" -#: db_printview.php:221 db_structure.php:479 +#: db_printview.php:220 db_structure.php:465 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -386,94 +364,94 @@ msgid_plural "%s tables" msgstr[0] "%s tabela(at)" msgstr[1] "%s tabela(at)" -#: db_qbe.php:28 import.php:453 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1980 libraries/sql_query_form.lib.php:138 -#: tbl_operations.php:212 tbl_relation.php:291 tbl_row_action.php:130 -#: view_operations.php:61 +#: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 +#: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "Query SQL u zbatua me sukses" -#: db_qbe.php:41 +#: db_qbe.php:38 msgid "You have to choose at least one column to display" msgstr "Zgjidh të paktën një kollonë për të shfaqur" -#: db_qbe.php:199 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:865 +#: db_qbe.php:196 libraries/db_structure.lib.php:95 +#: libraries/display_tbl.lib.php:864 msgid "Sort" msgstr "Renditja" -#: db_qbe.php:208 db_qbe.php:242 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:522 libraries/display_tbl.lib.php:827 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:259 -#: tbl_select.php:311 +#: db_qbe.php:205 db_qbe.php:239 libraries/db_structure.lib.php:102 +#: libraries/display_tbl.lib.php:521 libraries/display_tbl.lib.php:826 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:257 +#: tbl_select.php:310 msgid "Ascending" msgstr "Në ngjitje" -#: db_qbe.php:209 db_qbe.php:250 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:527 libraries/display_tbl.lib.php:824 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:260 -#: tbl_select.php:312 +#: db_qbe.php:206 db_qbe.php:247 libraries/db_structure.lib.php:110 +#: libraries/display_tbl.lib.php:526 libraries/display_tbl.lib.php:823 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:258 +#: tbl_select.php:311 msgid "Descending" msgstr "Në zbritje" -#: db_qbe.php:263 db_tracking.php:77 libraries/display_tbl.lib.php:307 -#: tbl_change.php:275 tbl_tracking.php:596 +#: db_qbe.php:260 db_tracking.php:73 libraries/display_tbl.lib.php:306 +#: tbl_change.php:270 tbl_tracking.php:591 msgid "Show" msgstr "Shfaq" -#: db_qbe.php:299 +#: db_qbe.php:296 msgid "Criteria" msgstr "Kriteri" -#: db_qbe.php:352 db_qbe.php:434 db_qbe.php:526 db_qbe.php:557 +#: db_qbe.php:349 db_qbe.php:431 db_qbe.php:523 db_qbe.php:554 msgid "Ins" msgstr "Shto" -#: db_qbe.php:356 db_qbe.php:438 db_qbe.php:523 db_qbe.php:554 +#: db_qbe.php:353 db_qbe.php:435 db_qbe.php:520 db_qbe.php:551 msgid "And" msgstr "Dhe" -#: db_qbe.php:365 db_qbe.php:446 db_qbe.php:528 db_qbe.php:559 +#: db_qbe.php:362 db_qbe.php:443 db_qbe.php:525 db_qbe.php:556 msgid "Del" msgstr "Fshi" -#: db_qbe.php:369 db_qbe.php:450 db_qbe.php:521 db_qbe.php:552 -#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:778 -#: server_privileges.php:297 tbl_change.php:1027 tbl_indexes.php:249 -#: tbl_select.php:285 +#: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 +#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:777 +#: server_privileges.php:296 tbl_change.php:925 tbl_indexes.php:248 +#: tbl_select.php:284 msgid "Or" msgstr "Ose" -#: db_qbe.php:506 +#: db_qbe.php:503 msgid "Modify" msgstr "Ndrysho" -#: db_qbe.php:583 +#: db_qbe.php:580 #, fuzzy #| msgid "Add/Delete Criteria Row" msgid "Add/Delete criteria rows" msgstr "Shto/Fshi rreshtin e kriterit" -#: db_qbe.php:595 +#: db_qbe.php:592 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Add/Delete columns" msgstr "Shto/Fshi kollonat e fushës" -#: db_qbe.php:608 db_qbe.php:633 +#: db_qbe.php:605 db_qbe.php:630 msgid "Update Query" msgstr "Përditëso kërkesën" -#: db_qbe.php:616 +#: db_qbe.php:613 msgid "Use Tables" msgstr "Përdor tabelat" -#: db_qbe.php:639 +#: db_qbe.php:636 #, php-format msgid "SQL query on database %s:" msgstr "Kërkesë SQL tek databaza %s:" -#: db_qbe.php:933 libraries/common.lib.php:1222 +#: db_qbe.php:930 libraries/common.lib.php:1215 msgid "Submit Query" msgstr "Dërgo Query" @@ -513,17 +491,17 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s korrispondon(jnë) tek tabela %s" msgstr[1] "%s korrispondon(jnë) tek tabela %s" -#: db_search.php:249 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2831 -#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:49 -#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:466 +#: db_search.php:249 db_structure.php:75 db_structure.php:76 +#: db_structure.php:88 db_structure.php:90 db_structure.php:101 +#: db_structure.php:103 libraries/common.lib.php:2836 +#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 +#: tbl_structure.php:35 tbl_structure.php:47 tbl_structure.php:464 msgid "Browse" msgstr "Shfleto" -#: db_search.php:254 libraries/display_tbl.lib.php:1164 -#: libraries/display_tbl.lib.php:2055 libraries/sql_query_form.lib.php:453 -#: pdf_pages.php:285 pdf_pages.php:424 pdf_pages.php:460 pdf_pages.php:488 +#: db_search.php:254 libraries/display_tbl.lib.php:1163 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 msgid "Delete" @@ -563,232 +541,238 @@ msgstr "Tek tabela(at):" msgid "Inside column:" msgstr "Tek fusha:" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2830 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:75 +#: db_structure.php:79 db_structure.php:80 db_structure.php:92 +#: db_structure.php:93 db_structure.php:105 db_structure.php:106 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 +#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Shto" -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2827 libraries/common.lib.php:2834 -#: libraries/db_links.inc.php:62 libraries/export/htmlword.php:22 +#: db_structure.php:81 db_structure.php:94 db_structure.php:107 +#: libraries/common.lib.php:2832 libraries/common.lib.php:2839 +#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 -#: libraries/tbl_links.inc.php:55 pmd_general.php:133 -#: server_privileges.php:593 server_replication.php:314 tbl_tracking.php:268 +#: libraries/tbl_links.inc.php:54 pmd_general.php:133 +#: server_privileges.php:592 server_replication.php:313 tbl_tracking.php:263 msgid "Structure" msgstr "Struktura" -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:544 db_structure.php:545 db_tracking.php:90 -#: libraries/Index.class.php:482 libraries/common.lib.php:1659 -#: libraries/db_links.inc.php:99 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:126 -#: server_databases.php:351 tbl_structure.php:26 tbl_structure.php:150 -#: tbl_structure.php:151 tbl_structure.php:470 +#: db_structure.php:82 db_structure.php:83 db_structure.php:95 +#: db_structure.php:96 db_structure.php:108 db_structure.php:109 +#: db_structure.php:530 db_structure.php:531 db_tracking.php:86 +#: libraries/Index.class.php:482 libraries/common.lib.php:1663 +#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 +#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 +#: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" msgstr "Elemino" -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:542 db_structure.php:543 libraries/common.lib.php:1658 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:104 +#: db_structure.php:84 db_structure.php:85 db_structure.php:97 +#: db_structure.php:98 db_structure.php:110 db_structure.php:111 +#: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 +#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 msgid "Empty" msgstr "Zbraz" -#: db_structure.php:315 libraries/tbl_links.inc.php:99 +#: db_structure.php:301 libraries/tbl_links.inc.php:98 #, php-format msgid "Table %s has been emptied" msgstr "Tabela %s u zbraz" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "View %s has been dropped" msgstr "Paraqitja %s u eleminua" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "Table %s has been dropped" msgstr "Tabela %s u eleminua" -#: db_structure.php:332 +#: db_structure.php:318 msgid "Tracking is active." msgstr "Gjurmimi është aktiv." -#: db_structure.php:334 +#: db_structure.php:320 msgid "Tracking is not active." msgstr "Gjurmimi nuk është aktiv." -#: db_structure.php:419 libraries/display_tbl.lib.php:1943 +#: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -#: db_structure.php:433 db_structure.php:447 libraries/header.inc.php:125 -#: libraries/tbl_info.inc.php:65 tbl_structure.php:184 test/theme.php:73 +#: db_structure.php:419 db_structure.php:433 libraries/header.inc.php:125 +#: libraries/tbl_info.inc.php:60 tbl_structure.php:183 test/theme.php:73 msgid "View" msgstr "Paraqitje" -#: db_structure.php:484 libraries/db_structure.lib.php:40 -#: libraries/server_links.inc.php:69 server_replication.php:32 -#: server_replication.php:163 server_status.php:368 +#: db_structure.php:470 libraries/db_structure.lib.php:40 +#: libraries/server_links.inc.php:69 server_replication.php:31 +#: server_replication.php:162 server_status.php:368 msgid "Replication" msgstr "Replikimi" -#: db_structure.php:488 +#: db_structure.php:474 #, fuzzy msgid "Sum" msgstr "Sum" -#: db_structure.php:495 libraries/StorageEngine.class.php:349 +#: db_structure.php:481 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: db_structure.php:523 db_structure.php:540 db_structure.php:541 -#: libraries/display_tbl.lib.php:2080 libraries/display_tbl.lib.php:2085 -#: libraries/mult_submits.inc.php:15 server_databases.php:345 -#: server_databases.php:350 server_privileges.php:1588 tbl_structure.php:454 -#: tbl_structure.php:463 +#: db_structure.php:509 db_structure.php:526 db_structure.php:527 +#: libraries/display_tbl.lib.php:2039 libraries/display_tbl.lib.php:2044 +#: libraries/mult_submits.inc.php:15 server_databases.php:343 +#: server_databases.php:348 server_privileges.php:1592 tbl_structure.php:452 +#: tbl_structure.php:461 msgid "With selected:" msgstr "N.q.s. të zgjedhur:" -#: db_structure.php:526 libraries/display_tbl.lib.php:2075 -#: server_databases.php:347 server_privileges.php:569 -#: server_privileges.php:1591 tbl_structure.php:457 +#: db_structure.php:512 libraries/display_tbl.lib.php:2034 +#: server_databases.php:345 server_privileges.php:568 +#: server_privileges.php:1595 tbl_structure.php:455 msgid "Check All" msgstr "Zgjidh gjithçka" -#: db_structure.php:530 libraries/display_tbl.lib.php:2076 -#: libraries/replication_gui.lib.php:35 server_databases.php:349 -#: server_privileges.php:572 server_privileges.php:1595 tbl_structure.php:461 +#: db_structure.php:516 libraries/display_tbl.lib.php:2035 +#: libraries/replication_gui.lib.php:35 server_databases.php:347 +#: server_privileges.php:571 server_privileges.php:1599 tbl_structure.php:459 msgid "Uncheck All" msgstr "Asnjë zgjedhje" -#: db_structure.php:535 +#: db_structure.php:521 msgid "Check tables having overhead" msgstr "Zgjidh të mbingarkuarit" -#: db_structure.php:546 db_structure.php:547 db_structure.php:598 -#: libraries/display_tbl.lib.php:2179 libraries/mult_submits.inc.php:27 -#: tbl_structure.php:491 tbl_structure.php:493 +#: db_structure.php:532 db_structure.php:533 db_structure.php:584 +#: libraries/display_tbl.lib.php:2138 libraries/mult_submits.inc.php:27 +#: tbl_structure.php:489 tbl_structure.php:491 msgid "Print view" msgstr "Shfaq për printim" -#: db_structure.php:548 db_structure.php:549 libraries/mult_submits.inc.php:41 -#: tbl_operations.php:580 +#: db_structure.php:534 db_structure.php:535 libraries/mult_submits.inc.php:41 +#: tbl_operations.php:578 msgid "Check table" msgstr "Kontrollo tabelën" -#: db_structure.php:550 db_structure.php:551 libraries/mult_submits.inc.php:46 -#: tbl_operations.php:620 tbl_structure.php:708 tbl_structure.php:710 +#: db_structure.php:536 db_structure.php:537 libraries/mult_submits.inc.php:46 +#: tbl_operations.php:618 tbl_structure.php:706 tbl_structure.php:708 msgid "Optimize table" msgstr "Optimizo tabelën" -#: db_structure.php:552 db_structure.php:553 libraries/mult_submits.inc.php:51 -#: tbl_operations.php:610 +#: db_structure.php:538 db_structure.php:539 libraries/mult_submits.inc.php:51 +#: tbl_operations.php:608 msgid "Repair table" msgstr "Riparo tabelën" -#: db_structure.php:554 db_structure.php:555 libraries/mult_submits.inc.php:56 -#: tbl_operations.php:600 +#: db_structure.php:540 db_structure.php:541 libraries/mult_submits.inc.php:56 +#: tbl_operations.php:598 msgid "Analyze table" msgstr "Analizo tabelën" -#: db_structure.php:556 db_structure.php:557 libraries/db_links.inc.php:70 -#: libraries/display_export.lib.php:82 libraries/display_tbl.lib.php:2093 -#: libraries/display_tbl.lib.php:2224 libraries/mult_submits.inc.php:61 -#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:81 -#: pmd_pdf.php:83 pmd_pdf.php:108 server_privileges.php:1372 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 +#: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 +#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 +#: pmd_pdf.php:81 pmd_pdf.php:106 server_privileges.php:1376 #: setup/frames/menu.inc.php:22 tbl_row_action.php:58 msgid "Export" msgstr "Eksporto" -#: db_structure.php:605 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:591 libraries/display_pdf_schema.lib.php:44 #, fuzzy msgid "Data Dictionary" msgstr "Data Dictionary" -#: db_tracking.php:65 +#: db_tracking.php:61 msgid "Tracked tables" msgstr "" -#: db_tracking.php:70 libraries/export/htmlword.php:85 +#: db_tracking.php:66 libraries/export/htmlword.php:85 #: libraries/export/latex.php:152 libraries/export/odt.php:112 #: libraries/export/sql.php:339 libraries/export/texytext.php:84 #: libraries/export/xml.php:254 libraries/header.inc.php:105 -#: libraries/header_printview.inc.php:57 server_databases.php:168 -#: server_privileges.php:1652 server_privileges.php:1713 -#: server_privileges.php:1971 server_processlist.php:55 -#: server_synchronize.php:1178 server_synchronize.php:1182 -#: tbl_tracking.php:590 test/theme.php:64 +#: libraries/header_printview.inc.php:57 server_databases.php:166 +#: server_privileges.php:1656 server_privileges.php:1717 +#: server_privileges.php:1975 server_processlist.php:55 +#: server_synchronize.php:1177 server_synchronize.php:1181 +#: tbl_tracking.php:585 test/theme.php:64 msgid "Database" msgstr "Databazat" -#: db_tracking.php:72 +#: db_tracking.php:68 msgid "Last version" msgstr "" -#: db_tracking.php:73 tbl_tracking.php:593 +#: db_tracking.php:69 tbl_tracking.php:588 #, fuzzy msgid "Created" msgstr "Krijo" -#: db_tracking.php:74 tbl_tracking.php:594 +#: db_tracking.php:70 tbl_tracking.php:589 msgid "Updated" msgstr "" -#: db_tracking.php:76 libraries/Index.class.php:439 -#: libraries/db_structure.lib.php:44 server_databases.php:202 -#: server_privileges.php:1534 server_privileges.php:1717 -#: server_privileges.php:2065 tbl_structure.php:186 +#: db_tracking.php:71 libraries/common.lib.php:1361 +#: libraries/server_links.inc.php:48 server_processlist.php:58 +#: tbl_tracking.php:590 test/theme.php:100 +msgid "Status" +msgstr "Gjendja" + +#: db_tracking.php:72 libraries/Index.class.php:439 +#: libraries/db_structure.lib.php:44 server_databases.php:200 +#: server_privileges.php:1538 server_privileges.php:1721 +#: server_privileges.php:2069 tbl_structure.php:185 msgid "Action" msgstr "Veprimi" -#: db_tracking.php:87 db_tracking.php:119 +#: db_tracking.php:83 db_tracking.php:115 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:105 tbl_tracking.php:547 tbl_tracking.php:605 -#: tbl_tracking.php:612 +#: db_tracking.php:101 tbl_tracking.php:542 tbl_tracking.php:600 +#: tbl_tracking.php:607 msgid "active" msgstr "" -#: db_tracking.php:107 tbl_tracking.php:549 tbl_tracking.php:607 -#: tbl_tracking.php:609 +#: db_tracking.php:103 tbl_tracking.php:544 tbl_tracking.php:602 +#: tbl_tracking.php:604 msgid "not active" msgstr "" -#: db_tracking.php:120 +#: db_tracking.php:116 #, fuzzy msgid "Versions" msgstr "Operacione" -#: db_tracking.php:121 tbl_tracking.php:378 tbl_tracking.php:623 +#: db_tracking.php:117 tbl_tracking.php:373 tbl_tracking.php:618 msgid "Tracking report" msgstr "" -#: db_tracking.php:122 tbl_tracking.php:250 tbl_tracking.php:623 +#: db_tracking.php:118 tbl_tracking.php:245 tbl_tracking.php:618 #, fuzzy msgid "Structure snapshot" msgstr "Vetëm struktura" -#: db_tracking.php:151 +#: db_tracking.php:147 msgid "Untracked tables" msgstr "" -#: db_tracking.php:171 db_tracking.php:173 tbl_structure.php:527 -#: tbl_structure.php:529 +#: db_tracking.php:167 db_tracking.php:169 tbl_structure.php:525 +#: tbl_structure.php:527 #, fuzzy msgid "Track table" msgstr "Kontrollo tabelën" -#: db_tracking.php:199 +#: db_tracking.php:195 #, fuzzy msgid "Database Log" msgstr "Databazat" @@ -797,12 +781,12 @@ msgstr "Databazat" msgid "Selected export type has to be saved in file!" msgstr "" -#: export.php:153 export.php:178 export.php:620 +#: export.php:152 export.php:177 export.php:615 #, php-format msgid "Insufficient space to save the file %s." msgstr "Hapësirë e pamjaftueshme për të ruajtur file %s." -#: export.php:287 +#: export.php:286 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -810,91 +794,91 @@ msgstr "" "File %s ekziston në server: të lutem, ndrysho emrin e file ose zgjidh " "opcionin \"Mbishkruaj\"." -#: export.php:291 export.php:295 +#: export.php:290 export.php:294 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Serveri web nuk ka të drejtat e duhura për të ruajtur file %s." -#: export.php:622 +#: export.php:617 #, php-format msgid "Dump has been saved to file %s." msgstr "Dump u ruajt tek file %s." -#: import.php:59 +#: 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." msgstr "" -#: import.php:278 import.php:331 libraries/File.class.php:840 -#: libraries/File.class.php:950 +#: import.php:277 import.php:330 libraries/File.class.php:566 +#: libraries/File.class.php:676 msgid "File could not be read" msgstr "File nuk mund të lexohet" -#: import.php:286 import.php:295 import.php:314 import.php:323 -#: libraries/File.class.php:1020 libraries/File.class.php:1028 -#: libraries/File.class.php:1044 libraries/File.class.php:1052 +#: import.php:285 import.php:294 import.php:313 import.php:322 +#: libraries/File.class.php:746 libraries/File.class.php:754 +#: libraries/File.class.php:770 libraries/File.class.php:778 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." msgstr "" -#: import.php:336 +#: import.php:335 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " "[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." msgstr "" -#: import.php:371 libraries/display_import.lib.php:23 +#: import.php:370 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:396 +#: import.php:395 msgid "The bookmark has been deleted." msgstr "Libërshënuesi u fshi." -#: import.php:400 +#: import.php:399 msgid "Showing bookmark" msgstr "" -#: import.php:402 sql.php:625 +#: import.php:401 sql.php:618 #, php-format msgid "Bookmark %s created" msgstr "" -#: import.php:408 import.php:414 +#: import.php:407 import.php:413 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" -#: import.php:423 +#: import.php:422 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: import.php:425 +#: import.php:424 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." msgstr "" -#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:240 +#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:239 #: user_password.php:110 msgid "Back" msgstr "Mbrapa" -#: index.php:188 +#: index.php:183 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin funksionon më mirë me shfletues që suportojnë frames" -#: js/messages.php:25 server_synchronize.php:344 server_synchronize.php:356 -#: server_synchronize.php:372 server_synchronize.php:379 -#: server_synchronize.php:738 server_synchronize.php:766 -#: server_synchronize.php:794 server_synchronize.php:806 +#: js/messages.php:25 server_synchronize.php:343 server_synchronize.php:355 +#: server_synchronize.php:371 server_synchronize.php:378 +#: server_synchronize.php:737 server_synchronize.php:765 +#: server_synchronize.php:793 server_synchronize.php:805 msgid "Click to select" msgstr "" @@ -902,15 +886,15 @@ msgstr "" msgid "Click to unselect" msgstr "" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:88 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:87 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Komandat \"DROP DATABASE\" nuk janë aktive." -#: js/messages.php:30 libraries/mult_submits.inc.php:257 sql.php:187 +#: js/messages.php:30 libraries/mult_submits.inc.php:256 sql.php:186 msgid "Do you really want to " msgstr "Konfermo: " -#: js/messages.php:31 libraries/mult_submits.inc.php:257 sql.php:171 +#: js/messages.php:31 libraries/mult_submits.inc.php:256 sql.php:170 msgid "You are about to DESTROY a complete database!" msgstr "Jeni duke SHKATËRRUAR një databazë komplete!" @@ -939,11 +923,11 @@ msgstr "Emri i host është bosh!" msgid "The user name is empty!" msgstr "Emri i përdoruesit është bosh!" -#: js/messages.php:44 server_privileges.php:1228 user_password.php:65 +#: js/messages.php:44 server_privileges.php:1229 user_password.php:65 msgid "The password is empty!" msgstr "Fjalëkalimi është bosh!" -#: js/messages.php:45 server_privileges.php:1226 user_password.php:68 +#: js/messages.php:45 server_privileges.php:1227 user_password.php:68 msgid "The passwords aren't the same!" msgstr "Fjalëkalimi nuk korrispondon!" @@ -951,29 +935,29 @@ msgstr "Fjalëkalimi nuk korrispondon!" msgid "Cancel" msgstr "" -#: js/messages.php:52 pmd_save_pos.php:53 +#: js/messages.php:52 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "Ndryshimet u ruajtën" -#: js/messages.php:53 pmd_relation_upd.php:48 +#: js/messages.php:53 pmd_relation_upd.php:47 #, fuzzy msgid "Relation deleted" msgstr "Shiko relacionet" -#: js/messages.php:54 pmd_relation_new.php:63 +#: js/messages.php:54 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:55 pmd_relation_new.php:85 +#: js/messages.php:55 pmd_relation_new.php:84 #, fuzzy msgid "Internal relation added" msgstr "Relacione të brendshme" -#: js/messages.php:56 pmd_relation_new.php:62 pmd_relation_new.php:87 +#: js/messages.php:56 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:57 pmd_relation_new.php:30 +#: js/messages.php:57 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "" @@ -981,13 +965,13 @@ msgstr "" msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:59 libraries/relation.lib.php:94 -#: libraries/relation.lib.php:106 +#: js/messages.php:59 libraries/relation.lib.php:89 +#: libraries/relation.lib.php:101 msgid "General relation features" msgstr "Karakteristikat e përgjithshme të relacionit" -#: js/messages.php:59 libraries/relation.lib.php:88 -#: libraries/relation.lib.php:95 +#: js/messages.php:59 libraries/relation.lib.php:83 +#: libraries/relation.lib.php:90 msgid "Disabled" msgstr "Jo aktiv" @@ -1003,7 +987,7 @@ msgstr "" msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:547 +#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" @@ -1035,10 +1019,10 @@ msgid "Prev" msgstr "Paraardhësi" #. l10n: Display text for next month link in calendar -#: js/messages.php:81 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:337 -#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:422 -#: tbl_structure.php:800 +#: js/messages.php:81 libraries/common.lib.php:2358 +#: libraries/common.lib.php:2361 libraries/display_tbl.lib.php:336 +#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 +#: tbl_structure.php:798 msgid "Next" msgstr "Në vazhdim" @@ -1112,27 +1096,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1562 +#: js/messages.php:101 libraries/common.lib.php:1566 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1564 +#: js/messages.php:103 libraries/common.lib.php:1568 msgid "Feb" msgstr "Shk" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1566 +#: js/messages.php:105 libraries/common.lib.php:1570 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1568 +#: js/messages.php:107 libraries/common.lib.php:1572 msgid "Apr" msgstr "Pri" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1570 +#: js/messages.php:109 libraries/common.lib.php:1574 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1140,37 +1124,37 @@ msgid "May" msgstr "Maj" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1572 +#: js/messages.php:111 libraries/common.lib.php:1576 msgid "Jun" msgstr "Qer" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1574 +#: js/messages.php:113 libraries/common.lib.php:1578 msgid "Jul" msgstr "Kor" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1576 +#: js/messages.php:115 libraries/common.lib.php:1580 msgid "Aug" msgstr "Gsh" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1578 +#: js/messages.php:117 libraries/common.lib.php:1582 msgid "Sep" msgstr "Sht" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1580 +#: js/messages.php:119 libraries/common.lib.php:1584 msgid "Oct" msgstr "Tet" #. l10n: Short month name -#: js/messages.php:121 libraries/common.lib.php:1582 +#: js/messages.php:121 libraries/common.lib.php:1586 msgid "Nov" msgstr "Nën" #. l10n: Short month name -#: js/messages.php:123 libraries/common.lib.php:1584 +#: js/messages.php:123 libraries/common.lib.php:1588 msgid "Dec" msgstr "Dhj" @@ -1211,37 +1195,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1587 +#: js/messages.php:136 libraries/common.lib.php:1591 msgid "Sun" msgstr "Djl" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1589 +#: js/messages.php:138 libraries/common.lib.php:1593 msgid "Mon" msgstr "Hën" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1591 +#: js/messages.php:140 libraries/common.lib.php:1595 msgid "Tue" msgstr "Mar" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1593 +#: js/messages.php:142 libraries/common.lib.php:1597 msgid "Wed" msgstr "Mër" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1595 +#: js/messages.php:144 libraries/common.lib.php:1599 msgid "Thu" msgstr "Enj" #. l10n: Short week day name -#: js/messages.php:146 libraries/common.lib.php:1597 +#: js/messages.php:146 libraries/common.lib.php:1601 msgid "Fri" msgstr "Pre" #. l10n: Short week day name -#: js/messages.php:148 libraries/common.lib.php:1599 +#: js/messages.php:148 libraries/common.lib.php:1603 msgid "Sat" msgstr "Sht" @@ -1319,75 +1303,74 @@ msgstr "në sekondë" msgid "Font size" msgstr "" -#: libraries/File.class.php:336 libraries/File.class.php:424 -#: libraries/File.class.php:561 libraries/File.class.php:700 -msgid "Unknown error in file upload." -msgstr "" - -#: libraries/File.class.php:406 +#: libraries/File.class.php:315 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:409 +#: libraries/File.class.php:318 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:412 +#: libraries/File.class.php:321 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:415 +#: libraries/File.class.php:324 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:418 +#: libraries/File.class.php:327 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:421 +#: libraries/File.class.php:330 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:898 +#: libraries/File.class.php:333 +msgid "Unknown error in file upload." +msgstr "" + +#: libraries/File.class.php:624 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "" -#: libraries/Index.class.php:427 tbl_relation.php:528 +#: libraries/Index.class.php:427 tbl_relation.php:526 msgid "No index defined!" msgstr "Asnjë tregues i përcaktuar!" -#: libraries/Index.class.php:432 server_databases.php:131 tbl_tracking.php:315 +#: libraries/Index.class.php:432 server_databases.php:129 tbl_tracking.php:310 msgid "Indexes" msgstr "Tregues" #: libraries/Index.class.php:443 libraries/mult_submits.inc.php:102 -#: libraries/tbl_properties.inc.php:518 tbl_structure.php:32 -#: tbl_structure.php:154 tbl_structure.php:158 tbl_structure.php:473 -#: tbl_tracking.php:321 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:31 +#: tbl_structure.php:153 tbl_structure.php:157 tbl_structure.php:471 +#: tbl_tracking.php:316 msgid "Unique" msgstr "I vetëm" -#: libraries/Index.class.php:444 tbl_tracking.php:322 +#: libraries/Index.class.php:444 tbl_tracking.php:317 msgid "Packed" msgstr "" -#: libraries/Index.class.php:446 tbl_tracking.php:324 +#: libraries/Index.class.php:446 tbl_tracking.php:319 msgid "Cardinality" msgstr "" -#: libraries/Index.class.php:449 tbl_tracking.php:278 tbl_tracking.php:327 +#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322 #, fuzzy msgid "Comment" msgstr "Komente" #: libraries/Index.class.php:465 libraries/common.lib.php:609 -#: libraries/common.lib.php:1198 libraries/display_tbl.lib.php:1116 +#: libraries/common.lib.php:1191 libraries/display_tbl.lib.php:1115 #: libraries/import.lib.php:1119 libraries/import.lib.php:1143 -#: pdf_pages.php:284 setup/frames/index.inc.php:124 +#: pdf_pages.php:283 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:349 tbl_row_action.php:68 msgid "Edit" msgstr "Ndrysho" @@ -1409,15 +1392,15 @@ msgid "" msgstr "" #: libraries/List_Database.class.php:430 libraries/server_links.inc.php:40 -#: server_databases.php:87 server_privileges.php:1652 +#: server_databases.php:85 server_privileges.php:1656 #: setup/lib/messages.inc.php:107 test/theme.php:92 msgid "Databases" msgstr "Databazat" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:259 libraries/import.lib.php:134 pdf_schema.php:31 -#: pdf_schema.php:231 tbl_change.php:1023 tbl_operations.php:212 -#: tbl_relation.php:289 view_operations.php:61 +#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 +#: tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Gabim" @@ -1444,40 +1427,40 @@ msgid_plural "%1$d rows inserted." msgstr[0] "Nuk ka rreshta të zgjedhur" msgstr[1] "Nuk ka rreshta të zgjedhur" -#: libraries/StorageEngine.class.php:196 +#: libraries/StorageEngine.class.php:194 msgid "" "There is no detailed status information available for this storage engine." msgstr "" -#: libraries/StorageEngine.class.php:352 +#: libraries/StorageEngine.class.php:354 #, php-format msgid "%s is available on this MySQL server." msgstr "" -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:357 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "" -#: libraries/StorageEngine.class.php:359 +#: libraries/StorageEngine.class.php:361 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "" -#: libraries/Table.class.php:1018 +#: libraries/Table.class.php:1017 msgid "Invalid database" msgstr "" -#: libraries/Table.class.php:1032 tbl_get_field.php:25 +#: libraries/Table.class.php:1031 tbl_get_field.php:25 msgid "Invalid table name" msgstr "" -#: libraries/Table.class.php:1047 +#: libraries/Table.class.php:1046 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "" -#: libraries/Table.class.php:1131 +#: libraries/Table.class.php:1129 #, php-format msgid "Table %s has been renamed to %s" msgstr "Tabela %s u riemërtua %s" @@ -1495,22 +1478,22 @@ msgstr "" msgid "take it" msgstr "merre" -#: libraries/Theme_Manager.class.php:114 +#: libraries/Theme_Manager.class.php:109 #, php-format msgid "Default theme %s not found!" msgstr "" -#: libraries/Theme_Manager.class.php:152 +#: libraries/Theme_Manager.class.php:147 #, php-format msgid "Theme %s not found!" msgstr "" -#: libraries/Theme_Manager.class.php:220 +#: libraries/Theme_Manager.class.php:215 #, php-format msgid "Theme path not found for theme %s!" msgstr "" -#: libraries/Theme_Manager.class.php:296 test/theme.php:160 themes.php:20 +#: libraries/Theme_Manager.class.php:291 test/theme.php:160 themes.php:20 #: themes.php:40 msgid "Theme / Style" msgstr "Tema / Stili" @@ -1621,19 +1604,19 @@ msgstr "" msgid "Authenticating..." msgstr "" -#: libraries/blobstreaming.lib.php:689 +#: libraries/blobstreaming.lib.php:340 msgid "View image" msgstr "" -#: libraries/blobstreaming.lib.php:693 +#: libraries/blobstreaming.lib.php:344 msgid "Play audio" msgstr "" -#: libraries/blobstreaming.lib.php:698 +#: libraries/blobstreaming.lib.php:349 msgid "View video" msgstr "" -#: libraries/blobstreaming.lib.php:702 +#: libraries/blobstreaming.lib.php:353 msgid "Download file" msgstr "" @@ -1686,7 +1669,7 @@ msgstr "Serveri" msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:909 +#: libraries/common.inc.php:908 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Duhet të instaloni %s %s ose superior." @@ -1711,7 +1694,8 @@ msgstr "en" #: libraries/common.lib.php:425 libraries/common.lib.php:427 #: libraries/common.lib.php:429 libraries/common.lib.php:445 #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 -#: libraries/display_export.lib.php:163 libraries/relation.lib.php:84 +#: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 +#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 #: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" @@ -1726,146 +1710,146 @@ msgstr "query SQL" msgid "MySQL said: " msgstr "Mesazh nga MySQL: " -#: libraries/common.lib.php:1136 +#: libraries/common.lib.php:1129 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1174 setup/lib/messages.inc.php:350 +#: libraries/common.lib.php:1167 setup/lib/messages.inc.php:350 msgid "Explain SQL" msgstr "Shpjego SQL" -#: libraries/common.lib.php:1177 +#: libraries/common.lib.php:1170 msgid "Skip Explain SQL" msgstr "Mos shpjego SQL" -#: libraries/common.lib.php:1211 +#: libraries/common.lib.php:1204 msgid "Without PHP Code" msgstr "pa kod PHP" -#: libraries/common.lib.php:1214 setup/lib/messages.inc.php:352 +#: libraries/common.lib.php:1207 setup/lib/messages.inc.php:352 msgid "Create PHP Code" msgstr "Krijo kodin PHP" -#: libraries/common.lib.php:1232 server_status.php:451 +#: libraries/common.lib.php:1225 server_status.php:451 #: setup/lib/messages.inc.php:351 msgid "Refresh" msgstr "Rifresko" -#: libraries/common.lib.php:1241 +#: libraries/common.lib.php:1234 msgid "Skip Validate SQL" msgstr "Mos vleftëso SQL" -#: libraries/common.lib.php:1244 setup/lib/messages.inc.php:353 +#: libraries/common.lib.php:1237 setup/lib/messages.inc.php:353 msgid "Validate SQL" msgstr "Vleftëso SQL" -#: libraries/common.lib.php:1283 +#: libraries/common.lib.php:1287 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1285 +#: libraries/common.lib.php:1289 msgid "Inline" msgstr "" -#: libraries/common.lib.php:1339 libraries/common.lib.php:1354 +#: libraries/common.lib.php:1343 libraries/common.lib.php:1358 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1358 libraries/tbl_triggers.lib.php:27 +#: libraries/common.lib.php:1362 libraries/tbl_triggers.lib.php:27 #: server_processlist.php:57 msgid "Time" msgstr "Koha" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "B" msgstr "Bytes" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "KiB" msgstr "KB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "MiB" msgstr "MB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "GiB" msgstr "GB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "TiB" msgstr "TB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "PiB" msgstr "PB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "EiB" msgstr "EB" #. l10n: Thousands separator -#: libraries/common.lib.php:1424 +#: libraries/common.lib.php:1428 msgid "," msgstr "." #. l10n: Decimal separator -#: libraries/common.lib.php:1426 +#: libraries/common.lib.php:1430 msgid "." msgstr "," #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1603 +#: libraries/common.lib.php:1607 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B, %Y at %I:%M %p" -#: libraries/common.lib.php:1909 +#: libraries/common.lib.php:1913 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s ditë, %s orë, %s minuta dhe %s sekonda" -#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 -#: libraries/display_tbl.lib.php:289 server_status.php:718 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 +#: libraries/display_tbl.lib.php:288 server_status.php:718 msgid "Begin" msgstr "Fillim" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 -#: libraries/display_tbl.lib.php:290 server_binlog.php:154 +#: libraries/common.lib.php:2328 libraries/common.lib.php:2331 +#: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "Paraardhësi" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 -#: libraries/display_tbl.lib.php:352 +#: libraries/common.lib.php:2359 libraries/common.lib.php:2362 +#: libraries/display_tbl.lib.php:351 msgid "End" msgstr "Fund" -#: libraries/common.lib.php:2429 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "Kalo tek databaza "%s"." -#: libraries/common.lib.php:2448 +#: libraries/common.lib.php:2453 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2828 libraries/common.lib.php:2835 -#: libraries/db_links.inc.php:67 libraries/export/sql.php:24 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 +#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 -#: libraries/tbl_links.inc.php:59 querywindow.php:89 test/theme.php:96 +#: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2837 libraries/db_links.inc.php:103 -#: libraries/tbl_links.inc.php:94 libraries/tbl_links.inc.php:116 -#: view_operations.php:88 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: view_operations.php:87 msgid "Operations" msgstr "Operacione" -#: libraries/core.lib.php:282 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1881,39 +1865,39 @@ msgstr "" msgid "Name" msgstr "Emri" -#: libraries/db_links.inc.php:44 +#: libraries/db_links.inc.php:43 #, php-format msgid "Database %s has been dropped." msgstr "Databaza %s u eleminua." -#: libraries/db_links.inc.php:56 libraries/db_links.inc.php:57 -#: libraries/db_links.inc.php:58 +#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 +#: libraries/db_links.inc.php:57 msgid "Database seems to be empty!" msgstr "" -#: libraries/db_links.inc.php:80 libraries/relation.lib.php:142 -#: libraries/tbl_links.inc.php:68 +#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:85 +#: libraries/db_links.inc.php:84 msgid "Query" msgstr "Query nga shembull" -#: libraries/db_links.inc.php:90 libraries/relation.lib.php:138 +#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:97 libraries/server_links.inc.php:87 -#: libraries/tbl_links.inc.php:90 pmd_pdf.php:83 pmd_pdf.php:109 +#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 #, fuzzy msgid "Import" msgstr "Eksporto" -#: libraries/db_links.inc.php:110 libraries/server_links.inc.php:65 -#: server_privileges.php:111 server_privileges.php:1714 -#: server_privileges.php:2063 test/theme.php:116 +#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: server_privileges.php:110 server_privileges.php:1718 +#: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" msgstr "Të drejtat" @@ -1925,14 +1909,14 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1847 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1806 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "" -#: libraries/db_structure.lib.php:60 server_databases.php:141 -#: tbl_printview.php:334 tbl_structure.php:681 +#: libraries/db_structure.lib.php:60 server_databases.php:139 +#: tbl_printview.php:333 tbl_structure.php:679 msgid "Overhead" msgstr "Mbi limit" @@ -1949,7 +1933,7 @@ msgstr "Serveri nuk përgjigjet" msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "" -#: libraries/dbi/mysql.dbi.lib.php:358 tbl_structure.php:607 +#: libraries/dbi/mysql.dbi.lib.php:358 tbl_structure.php:605 msgid "Details..." msgstr "" @@ -1959,22 +1943,22 @@ msgid "Change password" msgstr "Ndrysho fjalëkalimin" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:807 +#: libraries/replication_gui.lib.php:347 server_privileges.php:806 msgid "No Password" msgstr "Asnjë fjalëkalim" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1530 server_synchronize.php:1174 +#: libraries/replication_gui.lib.php:351 server_privileges.php:795 +#: server_privileges.php:799 server_privileges.php:810 +#: server_privileges.php:1534 server_synchronize.php:1173 msgid "Password" msgstr "Fjalëkalimi" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:815 server_privileges.php:818 +#: server_privileges.php:814 server_privileges.php:817 msgid "Re-type" msgstr "Rifut" @@ -1995,8 +1979,8 @@ msgstr "Krijo një databazë të re" msgid "Create" msgstr "Krijo" -#: libraries/display_create_database.lib.php:39 server_privileges.php:113 -#: server_privileges.php:1419 server_replication.php:34 +#: libraries/display_create_database.lib.php:39 server_privileges.php:112 +#: server_privileges.php:1423 server_replication.php:33 msgid "No Privileges" msgstr "Asnjë e drejtë" @@ -2017,51 +2001,51 @@ msgstr "Krijo një tabelë të re tek databaza %s" msgid "Number of columns" msgstr "regjistrime për faqe" -#: libraries/display_export.lib.php:41 +#: libraries/display_export.lib.php:35 msgid "Could not load export plugins, please check your installation!" msgstr "" -#: libraries/display_export.lib.php:106 +#: libraries/display_export.lib.php:100 #, fuzzy, php-format #| msgid "Dump %s row(s) starting at record # %s" msgid "Dump %s row(s) starting at row # %s" msgstr "Dump i %s rreshta duke filluar nga rreshti %s." -#: libraries/display_export.lib.php:114 +#: libraries/display_export.lib.php:108 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:124 setup/lib/messages.inc.php:79 +#: libraries/display_export.lib.php:118 setup/lib/messages.inc.php:79 msgid "Save as file" msgstr "Ruaje me emër..." -#: libraries/display_export.lib.php:133 +#: libraries/display_export.lib.php:127 #, php-format msgid "Save on server in %s directory" msgstr "Ruaje në server tek directory %s" -#: libraries/display_export.lib.php:141 setup/lib/messages.inc.php:87 +#: libraries/display_export.lib.php:135 setup/lib/messages.inc.php:87 msgid "Overwrite existing file(s)" msgstr "Mbishkruaj file(s) ekzistues" -#: libraries/display_export.lib.php:147 +#: libraries/display_export.lib.php:141 msgid "File name template" msgstr "Emri i file template" -#: libraries/display_export.lib.php:151 +#: libraries/display_export.lib.php:145 #, fuzzy msgid "server name" msgstr "Emri i përdoruesit" -#: libraries/display_export.lib.php:154 +#: libraries/display_export.lib.php:148 msgid "database name" msgstr "" -#: libraries/display_export.lib.php:157 +#: libraries/display_export.lib.php:151 msgid "table name" msgstr "" -#: libraries/display_export.lib.php:161 +#: libraries/display_export.lib.php:155 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2069,39 +2053,39 @@ msgid "" "%3$s. Other text will be kept as is." msgstr "" -#: libraries/display_export.lib.php:202 +#: libraries/display_export.lib.php:196 msgid "remember template" msgstr "kujto template" -#: libraries/display_export.lib.php:210 libraries/display_import.lib.php:177 +#: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 #: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 msgid "Character set of the file:" msgstr "Familja gërmave të file:" -#: libraries/display_export.lib.php:235 setup/lib/messages.inc.php:81 +#: libraries/display_export.lib.php:229 setup/lib/messages.inc.php:81 msgid "Compression" msgstr "Kompresim" -#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:196 -#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:529 -#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:574 -#: server_privileges.php:1867 server_processlist.php:74 +#: libraries/display_export.lib.php:234 libraries/display_import.lib.php:196 +#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:528 +#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:573 +#: server_privileges.php:1871 server_processlist.php:74 msgid "None" msgstr "Asnjë lloj" -#: libraries/display_export.lib.php:247 +#: libraries/display_export.lib.php:241 msgid "\"zipped\"" msgstr "\"kompresuar me zip\"" -#: libraries/display_export.lib.php:253 +#: libraries/display_export.lib.php:247 msgid "\"gzipped\"" msgstr "\"kompresuar me gzip\"" -#: libraries/display_export.lib.php:259 +#: libraries/display_export.lib.php:253 msgid "\"bzipped\"" msgstr "\"kompresuar me bzip2\"" -#: libraries/display_export.lib.php:274 libraries/export/sql.php:42 +#: libraries/display_export.lib.php:268 libraries/export/sql.php:42 #: libraries/import/sql.php:31 msgid "SQL compatibility mode" msgstr "" @@ -2136,12 +2120,12 @@ msgid "File uploads are not allowed on this server." msgstr "" #: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 -#: tbl_change.php:1024 +#: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "Directory që keni zgjedhur për upload nuk arrin të gjehet" #: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 -#: tbl_change.php:1027 +#: tbl_change.php:925 msgid "web server upload directory" msgstr "directory e upload të server-it web" @@ -2220,43 +2204,43 @@ msgstr "Përmasat e fletës" msgid "Language" msgstr "" -#: libraries/display_tbl.lib.php:303 +#: libraries/display_tbl.lib.php:302 #, php-format msgid "%d is not valid row number." msgstr "" -#: libraries/display_tbl.lib.php:309 +#: libraries/display_tbl.lib.php:308 #, fuzzy #| msgid "row(s) starting from record #" msgid "row(s) starting from row #" msgstr "rreshta duke filluar nga" -#: libraries/display_tbl.lib.php:315 +#: libraries/display_tbl.lib.php:314 msgid "horizontal" msgstr " horizontal " -#: libraries/display_tbl.lib.php:316 +#: libraries/display_tbl.lib.php:315 msgid "horizontal (rotated headers)" msgstr "horizontal (headers të rrotulluar)" -#: libraries/display_tbl.lib.php:317 +#: libraries/display_tbl.lib.php:316 msgid "vertical" msgstr " vertikal " -#: libraries/display_tbl.lib.php:323 +#: libraries/display_tbl.lib.php:322 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr " në modalitetin %s dhe përsërit headers mbas %s qelish " -#: libraries/display_tbl.lib.php:345 +#: libraries/display_tbl.lib.php:344 msgid "This operation could take a long time. Proceed anyway?" msgstr "" -#: libraries/display_tbl.lib.php:511 +#: libraries/display_tbl.lib.php:510 msgid "Sort by key" msgstr "Rendit sipas kyçit" -#: libraries/display_tbl.lib.php:554 libraries/export/codegen.php:38 +#: libraries/display_tbl.lib.php:553 libraries/export/codegen.php:38 #: libraries/export/csv.php:29 libraries/export/excel.php:34 #: libraries/export/htmlword.php:28 libraries/export/latex.php:32 #: libraries/export/mediawiki.php:21 libraries/export/ods.php:26 @@ -2266,101 +2250,101 @@ msgstr "Rendit sipas kyçit" #: libraries/export/xlsx.php:26 libraries/export/xml.php:23 #: libraries/export/yaml.php:27 libraries/import.lib.php:1114 #: libraries/import.lib.php:1136 libraries/import/csv.php:31 -#: libraries/import/docsql.php:33 libraries/import/ldi.php:46 +#: libraries/import/docsql.php:32 libraries/import/ldi.php:46 #: libraries/import/ods.php:30 libraries/import/sql.php:19 #: libraries/import/xls.php:25 libraries/import/xlsx.php:25 -#: libraries/import/xml.php:25 tbl_select.php:264 tbl_structure.php:752 +#: libraries/import/xml.php:25 tbl_select.php:263 tbl_structure.php:750 #, fuzzy msgid "Options" msgstr "Operacione" -#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:569 +#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:568 msgid "Partial Texts" msgstr "Tekst i pjesëshëm" -#: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:573 +#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:572 msgid "Full Texts" msgstr "Teksti i plotë" -#: libraries/display_tbl.lib.php:586 +#: libraries/display_tbl.lib.php:585 #, fuzzy msgid "Relational key" msgstr "Skema relacionale" -#: libraries/display_tbl.lib.php:587 +#: libraries/display_tbl.lib.php:586 #, fuzzy #| msgid "Relational schema" msgid "Relational display column" msgstr "Skema relacionale" -#: libraries/display_tbl.lib.php:594 +#: libraries/display_tbl.lib.php:593 msgid "Show binary contents" msgstr "" -#: libraries/display_tbl.lib.php:596 +#: libraries/display_tbl.lib.php:595 msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:598 +#: libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "" -#: libraries/display_tbl.lib.php:606 pmd_general.php:140 tbl_change.php:312 -#: tbl_change.php:318 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:307 +#: tbl_change.php:313 msgid "Hide" msgstr "" -#: libraries/display_tbl.lib.php:606 libraries/relation.lib.php:122 -#: libraries/tbl_properties.inc.php:143 transformation_overview.php:46 +#: libraries/display_tbl.lib.php:605 libraries/relation.lib.php:117 +#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46 msgid "Browser transformation" msgstr "Transformimi i Shfletuesit" -#: libraries/display_tbl.lib.php:1125 libraries/display_tbl.lib.php:1129 -#: libraries/display_tbl.lib.php:1131 +#: libraries/display_tbl.lib.php:1124 libraries/display_tbl.lib.php:1128 +#: libraries/display_tbl.lib.php:1130 msgid "Execute bookmarked query" msgstr "Zbaton query nga libërshënuesi" -#: libraries/display_tbl.lib.php:1144 libraries/display_tbl.lib.php:1156 +#: libraries/display_tbl.lib.php:1143 libraries/display_tbl.lib.php:1155 msgid "The row has been deleted" msgstr "rreshti u fshi" -#: libraries/display_tbl.lib.php:1183 libraries/display_tbl.lib.php:2055 +#: libraries/display_tbl.lib.php:1182 libraries/display_tbl.lib.php:2014 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "Hiq" -#: libraries/display_tbl.lib.php:1933 +#: libraries/display_tbl.lib.php:1892 msgid "in query" msgstr "tek query" -#: libraries/display_tbl.lib.php:1951 +#: libraries/display_tbl.lib.php:1910 msgid "Showing rows" msgstr "Shfaqja e regjistrimeve " -#: libraries/display_tbl.lib.php:1961 +#: libraries/display_tbl.lib.php:1920 msgid "total" msgstr "Gjithsej" -#: libraries/display_tbl.lib.php:1969 sql.php:523 +#: libraries/display_tbl.lib.php:1928 sql.php:522 #, php-format msgid "Query took %01.4f sec" msgstr "Query ka zgjatur %01.4f sec" -#: libraries/display_tbl.lib.php:2088 libraries/mult_submits.inc.php:112 -#: querywindow.php:115 querywindow.php:119 querywindow.php:122 -#: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:469 +#: libraries/display_tbl.lib.php:2047 libraries/mult_submits.inc.php:112 +#: querywindow.php:114 querywindow.php:118 querywindow.php:121 +#: tbl_structure.php:23 tbl_structure.php:148 tbl_structure.php:467 msgid "Change" msgstr "Ndrysho" -#: libraries/display_tbl.lib.php:2158 +#: libraries/display_tbl.lib.php:2117 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2186 +#: libraries/display_tbl.lib.php:2145 msgid "Print view (with full texts)" msgstr "Shfaq për printim (me full text)" -#: libraries/display_tbl.lib.php:2359 +#: libraries/display_tbl.lib.php:2318 msgid "Link not found" msgstr "Lidhja nuk u gjet" @@ -2414,9 +2398,9 @@ msgstr "Gjëndja InnoDB" msgid "Buffer Pool Usage" msgstr "" -#: libraries/engines/innodb.lib.php:168 server_databases.php:136 -#: server_databases.php:304 server_status.php:524 server_status.php:585 -#: server_status.php:606 tbl_printview.php:349 tbl_structure.php:695 +#: libraries/engines/innodb.lib.php:168 server_databases.php:134 +#: server_databases.php:302 server_status.php:524 server_status.php:585 +#: server_status.php:606 tbl_printview.php:348 tbl_structure.php:693 msgid "Total" msgstr "Gjithsej" @@ -2539,6 +2523,78 @@ msgid "" "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." msgstr "" +#: libraries/engines/pbms.lib.php:31 +msgid "Garbage Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:32 +msgid "The percentage of garbage in a repository file before it is compacted." +msgstr "" + +#: libraries/engines/pbms.lib.php:36 libraries/replication_gui.lib.php:69 +#: server_synchronize.php:1161 +#, fuzzy +msgid "Port" +msgstr "rreshtimi" + +#: libraries/engines/pbms.lib.php:37 +msgid "" +"The port for the PBMS stream-based communications. Setting this value to 0 " +"will disable HTTP communication with the daemon." +msgstr "" + +#: libraries/engines/pbms.lib.php:41 +msgid "Repository Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:42 +msgid "" +"The maximum size of a BLOB repository file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:46 +msgid "Temp Blob Timeout" +msgstr "" + +#: libraries/engines/pbms.lib.php:47 +msgid "" +"The timeout, in seconds, for temporary BLOBs. Uploaded BLOB data is removed " +"after this time, unless they are referenced by a record in the database." +msgstr "" + +#: libraries/engines/pbms.lib.php:51 +msgid "Temp Log Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:52 +msgid "" +"The maximum size of a temporary BLOB log file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:56 +msgid "Max Keep Alive" +msgstr "" + +#: libraries/engines/pbms.lib.php:57 +msgid "" +"The timeout for inactive connection with the keep-alive flag set. After this " +"time the connection will be closed. The time-out is in milliseconds (1/1000)." +msgstr "" + +#: libraries/engines/pbms.lib.php:61 +msgid "Metadata Headers" +msgstr "" + +#: libraries/engines/pbms.lib.php:62 +msgid "" +"A \":\" delimited list of metadata headers to be used to initialize the " +"pbms_metadata_header table when a database is created." +msgstr "" + #: libraries/engines/pbxt.lib.php:22 msgid "Index cache size" msgstr "" @@ -2662,7 +2718,7 @@ msgid "" msgstr "" #: libraries/export/codegen.php:36 setup/lib/messages.inc.php:85 -#: tbl_printview.php:374 tbl_structure.php:736 +#: tbl_printview.php:373 tbl_structure.php:734 msgid "Format" msgstr "Formati" @@ -2733,9 +2789,9 @@ msgstr "" #: libraries/export/htmlword.php:23 libraries/export/latex.php:59 #: libraries/export/latex.php:205 libraries/export/odt.php:47 #: libraries/export/sql.php:105 libraries/export/sql.php:865 -#: libraries/export/texytext.php:27 server_databases.php:126 -#: server_privileges.php:576 server_replication.php:315 tbl_printview.php:315 -#: tbl_structure.php:664 +#: libraries/export/texytext.php:27 server_databases.php:124 +#: server_privileges.php:575 server_replication.php:314 tbl_printview.php:314 +#: tbl_structure.php:662 msgid "Data" msgstr "Të dhëna" @@ -2750,7 +2806,6 @@ msgid "Table structure for table" msgstr "Struktura e tabelës" #: libraries/export/latex.php:13 -#| msgid "Content of table __TABLE__" msgid "Content of table @TABLE@" msgstr "Përmbajtja e tabelës @TABLE@" @@ -2759,7 +2814,6 @@ msgid "(continued)" msgstr "(vazhdon)" #: libraries/export/latex.php:15 -#| msgid "Structure of table __TABLE__" msgid "Structure of table @TABLE@" msgstr "Struktura e tabelës @TABLE@" @@ -2784,13 +2838,13 @@ msgid "Label key" msgstr "Kyçi i etiketës" #: libraries/export/latex.php:46 libraries/export/odt.php:34 -#: libraries/export/sql.php:90 tbl_relation.php:398 +#: libraries/export/sql.php:90 tbl_relation.php:396 msgid "Relations" msgstr "Relacione" #: libraries/export/latex.php:52 libraries/export/odt.php:40 #: libraries/export/odt.php:317 libraries/export/sql.php:94 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "Lloji MIME" @@ -2798,10 +2852,10 @@ msgstr "Lloji MIME" #: libraries/export/xml.php:101 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1529 server_privileges.php:2061 -#: server_processlist.php:54 server_synchronize.php:1158 +#: libraries/replication_gui.lib.php:331 server_privileges.php:730 +#: server_privileges.php:733 server_privileges.php:789 +#: server_privileges.php:1533 server_privileges.php:2065 +#: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "Host" @@ -2995,8 +3049,8 @@ msgstr "" msgid "Export contents" msgstr "" -#: libraries/footer.inc.php:182 libraries/footer.inc.php:193 -#: libraries/footer.inc.php:196 +#: libraries/footer.inc.php:180 libraries/footer.inc.php:191 +#: libraries/footer.inc.php:194 msgid "Open new phpMyAdmin window" msgstr "" @@ -3013,7 +3067,7 @@ msgstr "Rezultati SQL" msgid "Generated by" msgstr "Gjeneruar nga" -#: libraries/import.lib.php:151 sql.php:519 tbl_change.php:180 +#: libraries/import.lib.php:151 sql.php:518 tbl_change.php:175 #: 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)." @@ -3071,7 +3125,7 @@ msgstr "" msgid "Column names in first row" msgstr "" -#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:501 +#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:500 #: view_create.php:147 msgid "Column names" msgstr "Emrat e kollonave" @@ -3097,12 +3151,12 @@ msgstr "" msgid "Invalid column count in CSV input on line %d." msgstr "" -#: libraries/import/docsql.php:28 +#: libraries/import/docsql.php:27 msgid "DocSQL" msgstr "" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 -#: server_synchronize.php:427 server_synchronize.php:870 +#: libraries/import/docsql.php:30 libraries/tbl_properties.inc.php:616 +#: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "" @@ -3158,26 +3212,26 @@ msgstr "Asnjë lloj" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:512 -#: tbl_structure.php:28 tbl_structure.php:152 tbl_structure.php:156 -#: tbl_structure.php:472 +#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:511 +#: tbl_structure.php:27 tbl_structure.php:151 tbl_structure.php:155 +#: tbl_structure.php:470 msgid "Primary" msgstr "Primar" #: libraries/mult_submits.inc.php:97 libraries/tbl_properties.inc.php:115 -#: libraries/tbl_properties.inc.php:524 tbl_printview.php:324 -#: tbl_structure.php:30 tbl_structure.php:153 tbl_structure.php:157 -#: tbl_structure.php:474 tbl_structure.php:672 +#: libraries/tbl_properties.inc.php:523 tbl_printview.php:323 +#: tbl_structure.php:29 tbl_structure.php:152 tbl_structure.php:156 +#: tbl_structure.php:472 tbl_structure.php:670 msgid "Index" msgstr "Treguesi" -#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:530 -#: tbl_structure.php:34 tbl_structure.php:155 tbl_structure.php:159 -#: tbl_structure.php:477 +#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:529 +#: tbl_structure.php:33 tbl_structure.php:154 tbl_structure.php:158 +#: tbl_structure.php:475 msgid "Fulltext" msgstr "Teksti komplet" -#: libraries/mult_submits.inc.php:434 tbl_replace.php:330 +#: libraries/mult_submits.inc.php:433 tbl_replace.php:330 msgid "No change" msgstr "Asnjë ndryshim" @@ -3185,191 +3239,191 @@ msgstr "Asnjë ndryshim" msgid "Charset" msgstr "Familje gërmash" -#: libraries/mysql_charsets.lib.php:210 libraries/mysql_charsets.lib.php:411 -#: tbl_change.php:515 +#: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 +#: tbl_change.php:510 msgid "Binary" msgstr "Binar" -#: libraries/mysql_charsets.lib.php:222 +#: libraries/mysql_charsets.lib.php:214 msgid "Bulgarian" msgstr "Bullgarisht" -#: libraries/mysql_charsets.lib.php:226 libraries/mysql_charsets.lib.php:351 +#: libraries/mysql_charsets.lib.php:218 libraries/mysql_charsets.lib.php:343 msgid "Simplified Chinese" msgstr "Kineze e thjeshtëzuar" -#: libraries/mysql_charsets.lib.php:228 libraries/mysql_charsets.lib.php:371 +#: libraries/mysql_charsets.lib.php:220 libraries/mysql_charsets.lib.php:363 msgid "Traditional Chinese" msgstr "Kineze tradicionale" -#: libraries/mysql_charsets.lib.php:232 libraries/mysql_charsets.lib.php:418 +#: libraries/mysql_charsets.lib.php:224 libraries/mysql_charsets.lib.php:410 msgid "case-insensitive" msgstr "case-insensitive" -#: libraries/mysql_charsets.lib.php:235 libraries/mysql_charsets.lib.php:420 +#: libraries/mysql_charsets.lib.php:227 libraries/mysql_charsets.lib.php:412 msgid "case-sensitive" msgstr "case-sensitive" -#: libraries/mysql_charsets.lib.php:238 +#: libraries/mysql_charsets.lib.php:230 msgid "Croatian" msgstr "Kroate" -#: libraries/mysql_charsets.lib.php:241 +#: libraries/mysql_charsets.lib.php:233 msgid "Czech" msgstr "Çekisht" -#: libraries/mysql_charsets.lib.php:244 +#: libraries/mysql_charsets.lib.php:236 msgid "Danish" msgstr "Danisht" -#: libraries/mysql_charsets.lib.php:247 +#: libraries/mysql_charsets.lib.php:239 msgid "English" msgstr "Anglisht" -#: libraries/mysql_charsets.lib.php:250 +#: libraries/mysql_charsets.lib.php:242 msgid "Esperanto" msgstr "" -#: libraries/mysql_charsets.lib.php:253 +#: libraries/mysql_charsets.lib.php:245 msgid "Estonian" msgstr "Estoneze" -#: libraries/mysql_charsets.lib.php:256 libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:248 libraries/mysql_charsets.lib.php:251 msgid "German" msgstr "Gjermanisht" -#: libraries/mysql_charsets.lib.php:256 +#: libraries/mysql_charsets.lib.php:248 msgid "dictionary" msgstr "fjalor" -#: libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:251 msgid "phone book" msgstr "numratori" -#: libraries/mysql_charsets.lib.php:262 +#: libraries/mysql_charsets.lib.php:254 msgid "Hungarian" msgstr "Hungarisht" -#: libraries/mysql_charsets.lib.php:265 +#: libraries/mysql_charsets.lib.php:257 msgid "Icelandic" msgstr "Islandeze" -#: libraries/mysql_charsets.lib.php:268 libraries/mysql_charsets.lib.php:358 +#: libraries/mysql_charsets.lib.php:260 libraries/mysql_charsets.lib.php:350 msgid "Japanese" msgstr "Japonisht" -#: libraries/mysql_charsets.lib.php:271 +#: libraries/mysql_charsets.lib.php:263 msgid "Latvian" msgstr "Letone" -#: libraries/mysql_charsets.lib.php:274 +#: libraries/mysql_charsets.lib.php:266 msgid "Lithuanian" msgstr "Lituane" -#: libraries/mysql_charsets.lib.php:277 libraries/mysql_charsets.lib.php:380 +#: libraries/mysql_charsets.lib.php:269 libraries/mysql_charsets.lib.php:372 msgid "Korean" msgstr "Koreane" -#: libraries/mysql_charsets.lib.php:280 +#: libraries/mysql_charsets.lib.php:272 #, fuzzy msgid "Persian" msgstr "Gjeorgjisht" -#: libraries/mysql_charsets.lib.php:283 +#: libraries/mysql_charsets.lib.php:275 msgid "Polish" msgstr "Polonisht" -#: libraries/mysql_charsets.lib.php:286 libraries/mysql_charsets.lib.php:334 +#: libraries/mysql_charsets.lib.php:278 libraries/mysql_charsets.lib.php:326 msgid "West European" msgstr "Europa Perëndimore" -#: libraries/mysql_charsets.lib.php:289 +#: libraries/mysql_charsets.lib.php:281 msgid "Romanian" msgstr "Romanisht" -#: libraries/mysql_charsets.lib.php:292 +#: libraries/mysql_charsets.lib.php:284 msgid "Slovak" msgstr "Sllovakisht" -#: libraries/mysql_charsets.lib.php:295 +#: libraries/mysql_charsets.lib.php:287 msgid "Slovenian" msgstr "Sllovenisht" -#: libraries/mysql_charsets.lib.php:298 +#: libraries/mysql_charsets.lib.php:290 msgid "Spanish" msgstr "Spanjisht" -#: libraries/mysql_charsets.lib.php:301 +#: libraries/mysql_charsets.lib.php:293 msgid "Traditional Spanish" msgstr "Spanjishte tradicionale" -#: libraries/mysql_charsets.lib.php:304 libraries/mysql_charsets.lib.php:401 +#: libraries/mysql_charsets.lib.php:296 libraries/mysql_charsets.lib.php:393 msgid "Swedish" msgstr "Suedisht" -#: libraries/mysql_charsets.lib.php:307 libraries/mysql_charsets.lib.php:404 +#: libraries/mysql_charsets.lib.php:299 libraries/mysql_charsets.lib.php:396 msgid "Thai" msgstr "Thai" -#: libraries/mysql_charsets.lib.php:310 libraries/mysql_charsets.lib.php:398 +#: libraries/mysql_charsets.lib.php:302 libraries/mysql_charsets.lib.php:390 msgid "Turkish" msgstr "Turqisht" -#: libraries/mysql_charsets.lib.php:313 libraries/mysql_charsets.lib.php:395 +#: libraries/mysql_charsets.lib.php:305 libraries/mysql_charsets.lib.php:387 msgid "Ukrainian" msgstr "Ukrainase" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 msgid "Unicode" msgstr "Unicode" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 -#: libraries/mysql_charsets.lib.php:334 libraries/mysql_charsets.lib.php:341 -#: libraries/mysql_charsets.lib.php:363 libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 +#: libraries/mysql_charsets.lib.php:326 libraries/mysql_charsets.lib.php:333 +#: libraries/mysql_charsets.lib.php:355 libraries/mysql_charsets.lib.php:366 msgid "multilingual" msgstr "shumëgjuhësh" -#: libraries/mysql_charsets.lib.php:341 +#: libraries/mysql_charsets.lib.php:333 msgid "Central European" msgstr "Europa qendrore" -#: libraries/mysql_charsets.lib.php:346 +#: libraries/mysql_charsets.lib.php:338 msgid "Russian" msgstr "Rusisht" -#: libraries/mysql_charsets.lib.php:363 +#: libraries/mysql_charsets.lib.php:355 msgid "Baltic" msgstr "Baltike" -#: libraries/mysql_charsets.lib.php:368 +#: libraries/mysql_charsets.lib.php:360 msgid "Armenian" msgstr "Armene" -#: libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:366 msgid "Cyrillic" msgstr "Cyrillic" -#: libraries/mysql_charsets.lib.php:377 +#: libraries/mysql_charsets.lib.php:369 msgid "Arabic" msgstr "Arabisht" -#: libraries/mysql_charsets.lib.php:383 +#: libraries/mysql_charsets.lib.php:375 msgid "Hebrew" msgstr "Hebraike" -#: libraries/mysql_charsets.lib.php:386 +#: libraries/mysql_charsets.lib.php:378 msgid "Georgian" msgstr "Gjeorgjisht" -#: libraries/mysql_charsets.lib.php:389 +#: libraries/mysql_charsets.lib.php:381 msgid "Greek" msgstr "Greqisht" -#: libraries/mysql_charsets.lib.php:392 +#: libraries/mysql_charsets.lib.php:384 msgid "Czech-Slovak" msgstr "Çeko-Sllovak" -#: libraries/mysql_charsets.lib.php:407 libraries/mysql_charsets.lib.php:414 +#: libraries/mysql_charsets.lib.php:399 libraries/mysql_charsets.lib.php:406 msgid "unknown" msgstr "e panjohur" @@ -3395,68 +3449,68 @@ msgstr "Dritarja e Query" msgid "This format has no options" msgstr "Ky format nuk ka opcione" -#: libraries/relation.lib.php:82 +#: libraries/relation.lib.php:77 msgid "not OK" msgstr "jo OK" -#: libraries/relation.lib.php:86 pmd_general.php:339 +#: libraries/relation.lib.php:81 pmd_general.php:339 msgid "OK" msgstr "OK" -#: libraries/relation.lib.php:87 +#: libraries/relation.lib.php:82 msgid "Enabled" msgstr "Aktiv" -#: libraries/relation.lib.php:110 +#: libraries/relation.lib.php:105 msgid "Display Features" msgstr "Shfaq karakteristikat" -#: libraries/relation.lib.php:116 +#: libraries/relation.lib.php:111 msgid "Creation of PDFs" msgstr "Krijimi i PDF-ve" -#: libraries/relation.lib.php:120 +#: libraries/relation.lib.php:115 msgid "Displaying Column Comments" msgstr "Vizualizimi i komenteve të kollonave" -#: libraries/relation.lib.php:125 +#: libraries/relation.lib.php:120 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "Ju lutem lexoni dokumentet mbi rifreskimin e tabelës suaj Column_comments" -#: libraries/relation.lib.php:130 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 msgid "Bookmarked SQL query" msgstr "Query SQL shtuar të preferuarve" -#: libraries/relation.lib.php:134 querywindow.php:99 querywindow.php:207 +#: libraries/relation.lib.php:129 querywindow.php:98 querywindow.php:205 msgid "SQL history" msgstr "Kronollogjia e SQL" -#: libraries/relation.lib.php:146 +#: libraries/relation.lib.php:141 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:148 +#: libraries/relation.lib.php:143 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" -#: libraries/relation.lib.php:149 +#: libraries/relation.lib.php:144 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:150 +#: libraries/relation.lib.php:145 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:151 +#: libraries/relation.lib.php:146 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1158 +#: libraries/relation.lib.php:1153 msgid "no description" msgstr "asnjë përshkrim" @@ -3464,7 +3518,7 @@ msgstr "asnjë përshkrim" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:53 server_replication.php:346 +#: libraries/replication_gui.lib.php:53 server_replication.php:345 msgid "Change or reconfigure master server" msgstr "" @@ -3476,17 +3530,12 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:711 -#: server_privileges.php:714 server_privileges.php:721 -#: server_synchronize.php:1170 +#: libraries/replication_gui.lib.php:261 server_privileges.php:710 +#: server_privileges.php:713 server_privileges.php:720 +#: server_synchronize.php:1169 msgid "User name" msgstr "Emri i përdoruesit" -#: libraries/replication_gui.lib.php:69 server_synchronize.php:1162 -#, fuzzy -msgid "Port" -msgstr "rreshtimi" - #: libraries/replication_gui.lib.php:105 msgid "Master status" msgstr "" @@ -3501,8 +3550,8 @@ msgid "Variable" msgstr "E ndryshueshme" #: libraries/replication_gui.lib.php:117 server_status.php:737 -#: tbl_change.php:322 tbl_printview.php:368 tbl_select.php:137 -#: tbl_structure.php:728 +#: tbl_change.php:317 tbl_printview.php:367 tbl_select.php:136 +#: tbl_structure.php:726 msgid "Value" msgstr "Vlerë" @@ -3517,38 +3566,38 @@ msgid "" "this list." msgstr "" -#: libraries/replication_gui.lib.php:242 server_replication.php:193 +#: libraries/replication_gui.lib.php:242 server_replication.php:192 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:256 server_privileges.php:716 +#: libraries/replication_gui.lib.php:256 server_privileges.php:715 msgid "Any user" msgstr "Çfarëdo përdorues" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1920 server_privileges.php:1950 +#: libraries/replication_gui.lib.php:348 server_privileges.php:716 +#: server_privileges.php:783 server_privileges.php:807 +#: server_privileges.php:1924 server_privileges.php:1954 msgid "Use text field" msgstr "Përdor fushë teksti" -#: libraries/replication_gui.lib.php:304 server_privileges.php:764 +#: libraries/replication_gui.lib.php:304 server_privileges.php:763 msgid "Any host" msgstr "Çfarëdo host" -#: libraries/replication_gui.lib.php:308 server_privileges.php:768 +#: libraries/replication_gui.lib.php:308 server_privileges.php:767 msgid "Local" msgstr "Lokal" -#: libraries/replication_gui.lib.php:314 server_privileges.php:773 +#: libraries/replication_gui.lib.php:314 server_privileges.php:772 msgid "This Host" msgstr "Këtë Host" -#: libraries/replication_gui.lib.php:320 server_privileges.php:779 +#: libraries/replication_gui.lib.php:320 server_privileges.php:778 msgid "Use Host Table" msgstr "Përdor Tabelën e Host-it" -#: libraries/replication_gui.lib.php:333 server_privileges.php:792 +#: libraries/replication_gui.lib.php:333 server_privileges.php:791 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3575,8 +3624,8 @@ msgstr "" msgid "Servers" msgstr "Serveri" -#: libraries/server_links.inc.php:52 server_engines.php:111 -#: server_engines.php:115 server_status.php:414 test/theme.php:104 +#: libraries/server_links.inc.php:52 server_engines.php:125 +#: server_engines.php:129 server_status.php:414 test/theme.php:104 msgid "Variables" msgstr "Të ndryshueshmet" @@ -3598,12 +3647,12 @@ msgstr "Binar" msgid "Processes" msgstr "Proceset" -#: libraries/server_links.inc.php:91 server_synchronize.php:1091 -#: server_synchronize.php:1099 +#: libraries/server_links.inc.php:91 server_synchronize.php:1090 +#: server_synchronize.php:1098 msgid "Synchronize" msgstr "" -#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1109 +#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1108 #, fuzzy msgid "Source database" msgstr "Kërko në databazë" @@ -3622,7 +3671,7 @@ msgstr "" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1111 +#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1110 #, fuzzy msgid "Target database" msgstr "Kërko në databazë" @@ -3643,11 +3692,11 @@ msgstr "Zbato query SQL tek databaza %s" msgid "Columns" msgstr "Emrat e kollonave" -#: libraries/sql_query_form.lib.php:342 sql.php:664 sql.php:665 sql.php:682 +#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "Shtoja të preferuarve këtë query SQL" -#: libraries/sql_query_form.lib.php:349 sql.php:676 +#: libraries/sql_query_form.lib.php:349 sql.php:669 msgid "Let every user access this bookmark" msgstr "Lejo që çdo përdorues të ketë hyrje në këtë libërshënues" @@ -3745,12 +3794,12 @@ msgstr "" "Miratuesi SQL nuk arrin të niset. Ju lutem kontrolloni instalimin e " "prapashtesave të duhura php ashtu si përshkruhet tek %sdokumentimi%s." -#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:139 -#: libraries/tbl_links.inc.php:140 +#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 +#: libraries/tbl_links.inc.php:139 msgid "Table seems to be empty!" msgstr "" -#: libraries/tbl_links.inc.php:148 +#: libraries/tbl_links.inc.php:147 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" @@ -3785,12 +3834,12 @@ msgstr "" "Për vlerat e prezgjedhura, ju lutem shtoni një vlerë të vetme, pa backslash " "escaping apo thonjëza, duke përdorur këtë format: a" -#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1263 -#: pdf_schema.php:1284 tbl_printview.php:142 tbl_structure.php:179 +#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1262 +#: pdf_schema.php:1283 tbl_printview.php:141 tbl_structure.php:178 msgid "Attributes" msgstr "Pronësi" -#: libraries/tbl_properties.inc.php:136 +#: libraries/tbl_properties.inc.php:135 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -3799,11 +3848,11 @@ msgstr "" "Për listën e opcioneve të transformimeve në dispozicion dhe transformimet " "relativë të llojeve-MIME, kliko tek %spërshkrimet e transformimeve%s" -#: libraries/tbl_properties.inc.php:144 +#: libraries/tbl_properties.inc.php:143 msgid "Transformation options" msgstr "Opcione të transformimeve" -#: libraries/tbl_properties.inc.php:145 +#: libraries/tbl_properties.inc.php:144 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
                            If you ever need to put a backslash (\"\\\") or a single " @@ -3815,18 +3864,18 @@ msgstr "" "(\"\\\") apo një apostrofë (\"'\") midis këtyre vlerave, duhet ti backslash-" "oni (për shembull '\\\\xyz' ose 'a\\'b')." -#: libraries/tbl_properties.inc.php:392 +#: libraries/tbl_properties.inc.php:391 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "Asnjë lloj" -#: libraries/tbl_properties.inc.php:393 +#: libraries/tbl_properties.inc.php:392 msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:579 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:578 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
                            Please ask the " @@ -3835,28 +3884,28 @@ msgstr "" "Asnjë përshkrim në dispozicion për këtë transformim.
                            Ju lutem pyet " "autorin, çfarë %s bën." -#: libraries/tbl_properties.inc.php:725 server_engines.php:57 -#: tbl_operations.php:354 +#: libraries/tbl_properties.inc.php:724 server_engines.php:56 +#: tbl_operations.php:352 msgid "Storage Engine" msgstr "" -#: libraries/tbl_properties.inc.php:754 +#: libraries/tbl_properties.inc.php:753 msgid "PARTITION definition" msgstr "" -#: libraries/tbl_properties.inc.php:775 pdf_pages.php:502 +#: libraries/tbl_properties.inc.php:774 pdf_pages.php:501 #: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214 -#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1124 tbl_indexes.php:247 -#: tbl_relation.php:565 +#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1022 tbl_indexes.php:246 +#: tbl_relation.php:563 msgid "Save" msgstr "Ruaj" -#: libraries/tbl_properties.inc.php:779 tbl_structure.php:541 +#: libraries/tbl_properties.inc.php:778 tbl_structure.php:539 #, fuzzy, php-format msgid "Add %s column(s)" msgstr "Shto një fushë të re" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:535 +#: libraries/tbl_properties.inc.php:782 tbl_structure.php:533 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." @@ -4043,8 +4092,8 @@ msgstr "" msgid "Custom color" msgstr "" -#: main.php:162 pdf_pages.php:362 setup/lib/FormDisplay.tpl.php:216 -#: tbl_change.php:1173 +#: main.php:162 pdf_pages.php:361 setup/lib/FormDisplay.tpl.php:216 +#: tbl_change.php:1071 msgid "Reset" msgstr "Rinis" @@ -4052,8 +4101,8 @@ msgstr "Rinis" msgid "Protocol version" msgstr "" -#: main.php:188 server_privileges.php:1381 server_privileges.php:1528 -#: server_privileges.php:1642 server_privileges.php:2060 +#: main.php:188 server_privileges.php:1385 server_privileges.php:1532 +#: server_privileges.php:1646 server_privileges.php:2064 #: server_processlist.php:53 msgid "User" msgstr "Përdorues" @@ -4133,21 +4182,30 @@ msgid "" "has been configured." msgstr "" -#: main.php:330 +#: main.php:314 +#, php-format +msgid "" +"The additional features for working with linked tables have been " +"deactivated. To find out why click %shere%s." +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." + +#: main.php:329 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:345 +#: main.php:344 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: main.php:357 +#: main.php:356 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -4158,68 +4216,68 @@ msgstr "" msgid "Reload navigation frame" msgstr "" -#: navigation.php:204 server_databases.php:370 server_synchronize.php:1190 +#: navigation.php:203 server_databases.php:368 server_synchronize.php:1189 msgid "No databases" msgstr "Asnjë databazë" -#: navigation.php:298 +#: navigation.php:297 msgid "Filter" msgstr "" -#: navigation.php:299 setup/frames/index.inc.php:218 +#: navigation.php:298 setup/frames/index.inc.php:218 #: setup/lib/messages.inc.php:41 #, fuzzy msgid "Clear" msgstr "Kalendari" -#: navigation.php:330 navigation.php:331 +#: navigation.php:329 navigation.php:330 #, fuzzy msgctxt "short form" msgid "Create table" msgstr "Krijo një faqe të re" -#: navigation.php:333 navigation.php:495 +#: navigation.php:332 navigation.php:494 msgid "Please select a database" msgstr "Të lutem, zgjidh një databazë" -#: pdf_pages.php:40 pdf_pages.php:46 pdf_pages.php:52 pdf_pages.php:57 +#: pdf_pages.php:39 pdf_pages.php:45 pdf_pages.php:51 pdf_pages.php:56 #, php-format msgid "%s table not found or not set in %s" msgstr "%s tabela nuk u gjet ose nuk është përcaktuar tek %s" -#: pdf_pages.php:265 +#: pdf_pages.php:264 msgid "Please choose a page to edit" msgstr "Ju lutem zgjidhni faqen që dëshironi të modifikoni" -#: pdf_pages.php:303 pmd_pdf.php:113 +#: pdf_pages.php:302 pmd_pdf.php:111 msgid "Create a page" msgstr "Krijo një faqe të re" -#: pdf_pages.php:309 +#: pdf_pages.php:308 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Numri i faqes:" -#: pdf_pages.php:313 +#: pdf_pages.php:312 #, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "Faqosje automatike" -#: pdf_pages.php:315 +#: pdf_pages.php:314 msgid "Internal relations" msgstr "Relacione të brendshme" -#: pdf_pages.php:338 +#: pdf_pages.php:337 msgid "Select Tables" msgstr "Zgjidh Tabelat" -#: pdf_pages.php:361 +#: pdf_pages.php:360 msgid "Toggle scratchboard" msgstr "(ç')aktivo scratchboard" -#: pdf_pages.php:524 +#: pdf_pages.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -4227,37 +4285,37 @@ msgstr "" "Faqja aktuale përmban riferime ndaj tabelash që nuk ekzistojnë më. Dëshironi " "t'i eleminoni këto riferimente?" -#: pdf_schema.php:635 +#: pdf_schema.php:634 #, fuzzy, php-format #| msgid "The \"%s\" table doesn't exist!" msgid "The %s table doesn't exist!" msgstr "Tabela \"%s\" nuk ekziston!" -#: pdf_schema.php:671 +#: pdf_schema.php:670 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Ju lutem, konfiguroni koordinatat për tabelën %s" -#: pdf_schema.php:994 +#: pdf_schema.php:993 #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" msgstr "Skema e databazës \"%s\" - Faqja %s" -#: pdf_schema.php:1012 +#: pdf_schema.php:1011 msgid "No tables" msgstr "Asnjë tabelë" -#: pdf_schema.php:1031 pdf_schema.php:1140 +#: pdf_schema.php:1030 pdf_schema.php:1139 msgid "Relational schema" msgstr "Skema relacionale" -#: pdf_schema.php:1115 +#: pdf_schema.php:1114 msgid "Table of contents" msgstr "Tabela e përmbajtjes" -#: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:145 -#: tbl_structure.php:182 tbl_tracking.php:277 +#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 +#: tbl_structure.php:181 tbl_tracking.php:272 msgid "Extra" msgstr "Extra" @@ -4269,7 +4327,7 @@ msgstr "" msgid "Save position" msgstr "" -#: pmd_general.php:70 server_synchronize.php:428 server_synchronize.php:871 +#: pmd_general.php:70 server_synchronize.php:427 server_synchronize.php:870 #, fuzzy msgid "Create table" msgstr "Krijo një faqe të re" @@ -4342,32 +4400,32 @@ msgid "" "appropriate column name." msgstr "" -#: pmd_pdf.php:62 +#: pmd_pdf.php:60 #, fuzzy msgid "Page has been created" msgstr "Tabela %s u eleminua" -#: pmd_pdf.php:64 +#: pmd_pdf.php:62 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:84 +#: pmd_pdf.php:82 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:88 +#: pmd_pdf.php:86 msgid "recommended" msgstr "" -#: pmd_pdf.php:93 +#: pmd_pdf.php:91 msgid "to/from page" msgstr "" -#: querywindow.php:94 +#: querywindow.php:93 msgid "Import files" msgstr "Importo files" -#: querywindow.php:105 +#: querywindow.php:104 msgid "All" msgstr "Të gjithë" @@ -4416,66 +4474,66 @@ msgstr "Informacione mbi Identifikimin" msgid "Character Sets and Collations" msgstr "Familje gërmash dhe Collations" -#: server_databases.php:51 +#: server_databases.php:49 msgid "No databases selected." msgstr "Nuk është zgjedhur asnjë databazë." -#: server_databases.php:62 +#: server_databases.php:60 #, php-format msgid "%s databases have been dropped successfully." msgstr "%s databaza u eleminuan korrektësisht." -#: server_databases.php:87 +#: server_databases.php:85 msgid "Databases statistics" msgstr "Statistikat e databazave" -#: server_databases.php:116 server_status.php:370 +#: server_databases.php:114 server_status.php:370 #: setup/lib/messages.inc.php:114 msgid "Tables" msgstr "Tabela" -#: server_databases.php:194 server_replication.php:180 -#: server_replication.php:208 +#: server_databases.php:192 server_replication.php:179 +#: server_replication.php:207 msgid "Master replication" msgstr "" -#: server_databases.php:196 server_replication.php:247 +#: server_databases.php:194 server_replication.php:246 msgid "Slave replication" msgstr "" -#: server_databases.php:229 +#: server_databases.php:227 #, fuzzy msgid "Jump to database" msgstr "Asnjë databazë" -#: server_databases.php:266 +#: server_databases.php:264 msgid "Not replicated" msgstr "" -#: server_databases.php:272 +#: server_databases.php:270 #, fuzzy #| msgid "Replication" msgid "Replicated" msgstr "Replikimi" -#: server_databases.php:288 +#: server_databases.php:286 #, php-format msgid "Check privileges for database "%s"." msgstr "Kontrollo të drejtat për databazën "%s"." -#: server_databases.php:292 server_databases.php:293 +#: server_databases.php:290 server_databases.php:291 msgid "Check Privileges" msgstr "Kontrollo të drejtat" -#: server_databases.php:357 server_databases.php:358 +#: server_databases.php:355 server_databases.php:356 msgid "Enable Statistics" msgstr "Aktivo Statistikat" -#: server_databases.php:361 server_databases.php:362 +#: server_databases.php:359 server_databases.php:360 msgid "Disable Statistics" msgstr "Disaktivo Statistikat" -#: server_databases.php:365 +#: server_databases.php:363 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -4483,127 +4541,127 @@ msgstr "" "Shënim: Aktivimi këtu i statistikave të Databazës mund të shkaktojë rritjen " "e trafikut midis server-it web dhe MySQL." -#: server_engines.php:48 +#: server_engines.php:47 msgid "Storage Engines" msgstr "" -#: server_export.php:20 +#: server_export.php:18 msgid "View dump (schema) of databases" msgstr "Shfaq dump (skema) e databazave" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:23 server_privileges.php:265 msgid "Includes all privileges except GRANT." msgstr "Përfshin të gjitha të drejtat me përjashtim të GRANT." -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:24 server_privileges.php:191 +#: server_privileges.php:514 msgid "Allows altering the structure of existing tables." msgstr "Lejon ndryshimin e strukturës së tabelave ekzistuese." -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:25 server_privileges.php:207 +#: server_privileges.php:520 #, fuzzy msgid "Allows altering and dropping stored routines." msgstr "Lejon krijimin dhe eleminimin e treguesve." -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:26 server_privileges.php:183 +#: server_privileges.php:513 msgid "Allows creating new databases and tables." msgstr "Lejon krijimin e tabelave të reja dhe databazave të reja." -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:27 server_privileges.php:206 +#: server_privileges.php:519 #, fuzzy msgid "Allows creating stored routines." msgstr "Lejon krijimin e tabelave të reja." -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:513 msgid "Allows creating new tables." msgstr "Lejon krijimin e tabelave të reja." -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:29 server_privileges.php:194 +#: server_privileges.php:517 msgid "Allows creating temporary tables." msgstr "Lejon krijimin e tabelave të përkohëshme." -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:30 server_privileges.php:208 +#: server_privileges.php:553 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: server_privileges.php:32 server_privileges.php:199 -#: server_privileges.php:203 server_privileges.php:526 -#: server_privileges.php:530 +#: server_privileges.php:31 server_privileges.php:198 +#: server_privileges.php:202 server_privileges.php:525 +#: server_privileges.php:529 #, fuzzy msgid "Allows creating new views." msgstr "Lejon krijimin e tabelave të reja." -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:32 server_privileges.php:182 +#: server_privileges.php:505 msgid "Allows deleting data." msgstr "Lejon fshirjen e të dhënave." -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:33 server_privileges.php:184 +#: server_privileges.php:516 msgid "Allows dropping databases and tables." msgstr "Lejon eleminimin e databazave dhe tabelave." -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:34 server_privileges.php:516 msgid "Allows dropping tables." msgstr "Lejon eleminimin e tabelave." -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:35 server_privileges.php:199 +#: server_privileges.php:533 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:36 server_privileges.php:209 +#: server_privileges.php:521 msgid "Allows executing stored routines." msgstr "" -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:37 server_privileges.php:188 +#: server_privileges.php:508 msgid "Allows importing data from and exporting data into files." msgstr "" "Lejon importimin e të dhënave nga dhe eksportimin e të dhënave në files." -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:38 server_privileges.php:539 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Lejon të shtosh përdorues dhe të drejta pa ringarkuar tabelat e privilegjeve." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:515 msgid "Allows creating and dropping indexes." msgstr "Lejon krijimin dhe eleminimin e treguesve." -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:40 server_privileges.php:180 +#: server_privileges.php:441 server_privileges.php:503 msgid "Allows inserting and replacing data." msgstr "Lejon futjen dhe mbishkrimin e të dhënave." -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:41 server_privileges.php:195 +#: server_privileges.php:548 msgid "Allows locking tables for the current thread." msgstr "Lejon bllokimin e tabelave për thread e momentit." -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:42 server_privileges.php:645 +#: server_privileges.php:647 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Kufizon numrin e lidhjeve të reja që një përdorues mund të hapë në një orë." -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:43 server_privileges.php:633 +#: server_privileges.php:635 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Kufizon numrin e kërkesave që një përdorues mund ti dërgojë server-it në një " "orë." -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:44 server_privileges.php:639 +#: server_privileges.php:641 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -4611,63 +4669,63 @@ msgstr "" "Kufizon numrin e komandave që mund të ndryshojnë një tabelë apo databazë që " "një përdorues mund të zbatojë në një orë." -#: server_privileges.php:46 server_privileges.php:652 -#: server_privileges.php:654 +#: server_privileges.php:45 server_privileges.php:651 +#: server_privileges.php:653 #, fuzzy msgid "Limits the number of simultaneous connections the user may have." msgstr "" "Kufizon numrin e lidhjeve të reja që një përdorues mund të hapë në një orë." -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:46 server_privileges.php:187 +#: server_privileges.php:543 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:47 server_privileges.php:189 +#: server_privileges.php:447 server_privileges.php:549 msgid "Has no effect in this MySQL version." msgstr "Nuk ka asnjë efekt tek ky version i MySQL." -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:48 server_privileges.php:185 +#: server_privileges.php:544 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Lejon ringarkimin e parametrave të server-it dhe risetimin e cache të " "servërve." -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:197 +#: server_privileges.php:551 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "I jep të drejtën një përdoruesi të pyesë se ku gjenden slaves / masters." -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:50 server_privileges.php:196 +#: server_privileges.php:552 msgid "Needed for the replication slaves." msgstr "Nevoitet për replikimin e slaves." -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:51 server_privileges.php:179 +#: server_privileges.php:438 server_privileges.php:502 msgid "Allows reading data." msgstr "Lejon leximin e të dhënave." -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:52 server_privileges.php:192 +#: server_privileges.php:546 msgid "Gives access to the complete list of databases." msgstr "Mundëson hyrjen tek lista komplete e databazave." -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:53 server_privileges.php:203 +#: server_privileges.php:205 server_privileges.php:518 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:54 server_privileges.php:186 +#: server_privileges.php:545 msgid "Allows shutting down the server." msgstr "Lejon përfundimin e serverit." -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:55 server_privileges.php:193 +#: server_privileges.php:542 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -4677,158 +4735,158 @@ msgstr "" "nevojshëm për shumë operacione administrimi si përcaktimi i të " "ndryshueshmeve globale apo fshirja e threads të përdoruesve të tjerë." -#: server_privileges.php:57 server_privileges.php:201 -#: server_privileges.php:535 +#: server_privileges.php:56 server_privileges.php:200 +#: server_privileges.php:534 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "Lejon krijimin dhe eleminimin e treguesve." -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:57 server_privileges.php:181 +#: server_privileges.php:444 server_privileges.php:504 msgid "Allows changing data." msgstr "Lejon ndryshimin e të dhënave." -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:58 server_privileges.php:259 msgid "No privileges." msgstr "Asnjë të drejtë." -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:301 server_privileges.php:302 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Asnjë lloj" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1710 server_privileges.php:1716 +#: server_privileges.php:430 server_privileges.php:565 +#: server_privileges.php:1714 server_privileges.php:1720 msgid "Table-specific privileges" msgstr "Të drejta relative me tabelat" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1532 +#: server_privileges.php:431 server_privileges.php:573 +#: server_privileges.php:1536 msgid " Note: MySQL privilege names are expressed in English " msgstr "Shënim: emrat e të drejtave të MySQL janë në Anglisht" -#: server_privileges.php:563 server_privileges.php:1531 +#: server_privileges.php:562 server_privileges.php:1535 msgid "Global privileges" msgstr "Të drejtat e përgjithshme" -#: server_privileges.php:565 server_privileges.php:1710 +#: server_privileges.php:564 server_privileges.php:1714 msgid "Database-specific privileges" msgstr "Të drejta specifike të databazës" -#: server_privileges.php:610 +#: server_privileges.php:609 msgid "Administration" msgstr "Administrimi" -#: server_privileges.php:630 +#: server_privileges.php:629 msgid "Resource limits" msgstr "Limitet e rezervave" -#: server_privileges.php:631 +#: server_privileges.php:630 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" "Shënim: Vendosja e këtyre opcioneve në 0 (zero) do të thotë asnjë limit." -#: server_privileges.php:708 +#: server_privileges.php:707 msgid "Login Information" msgstr "Informacione mbi Identifikimin" -#: server_privileges.php:802 +#: server_privileges.php:801 msgid "Do not change the password" msgstr "Mos ndrysho fjalëkalim" -#: server_privileges.php:835 server_privileges.php:2197 +#: server_privileges.php:834 server_privileges.php:2201 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Nuk u gjet asnjë përdorues." -#: server_privileges.php:879 +#: server_privileges.php:878 #, php-format msgid "The user %s already exists!" msgstr "Përdoruesi %s ekziston!" -#: server_privileges.php:962 +#: server_privileges.php:961 msgid "You have added a new user." msgstr "Ke shtuar një përdorues të ri." -#: server_privileges.php:1183 +#: server_privileges.php:1184 #, php-format msgid "You have updated the privileges for %s." msgstr "Ke rifreskuar lejet për %s." -#: server_privileges.php:1207 +#: server_privileges.php:1208 #, php-format msgid "You have revoked the privileges for %s" msgstr "Ke anulluar të drejtat për %s" -#: server_privileges.php:1243 +#: server_privileges.php:1244 #, php-format msgid "The password for %s was changed successfully." msgstr "Fjalëkalimi për përdoruesin %s u ndryshua me sukses." -#: server_privileges.php:1263 +#: server_privileges.php:1264 #, php-format msgid "Deleting %s" msgstr "Në fshirje e sipër të %s" -#: server_privileges.php:1274 +#: server_privileges.php:1275 msgid "No users selected for deleting!" msgstr "" -#: server_privileges.php:1277 +#: server_privileges.php:1278 msgid "Reloading the privileges" msgstr "Duke ringarkuar të drejtat" -#: server_privileges.php:1292 +#: server_privileges.php:1296 msgid "The selected users have been deleted successfully." msgstr "Përdoruesit e zgjedhur u hoqën me sukses." -#: server_privileges.php:1327 +#: server_privileges.php:1331 msgid "The privileges were reloaded successfully." msgstr "Të drejtat u përditësuan me sukses." -#: server_privileges.php:1355 server_privileges.php:1641 +#: server_privileges.php:1359 server_privileges.php:1645 msgid "Edit Privileges" msgstr "Ndrysho të drejtat" -#: server_privileges.php:1364 +#: server_privileges.php:1368 msgid "Revoke" msgstr "Hiq" -#: server_privileges.php:1396 +#: server_privileges.php:1400 msgid "User overview" msgstr "Paraqitja e përgjithshme e përdoruesve" -#: server_privileges.php:1533 server_privileges.php:1715 -#: server_privileges.php:2064 +#: server_privileges.php:1537 server_privileges.php:1719 +#: server_privileges.php:2068 msgid "Grant" msgstr "Grant" -#: server_privileges.php:1552 server_privileges.php:2154 +#: server_privileges.php:1556 server_privileges.php:2158 msgid "Any" msgstr "Çfarëdo" -#: server_privileges.php:1601 server_privileges.php:1625 -#: server_privileges.php:2019 server_privileges.php:2208 +#: server_privileges.php:1605 server_privileges.php:1629 +#: server_privileges.php:2023 server_privileges.php:2212 msgid "Add a new User" msgstr "Shto një përdorues të ri" -#: server_privileges.php:1606 +#: server_privileges.php:1610 msgid "Remove selected users" msgstr "Heq përdoruesit e zgjedhur" -#: server_privileges.php:1609 +#: server_privileges.php:1613 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Hiqja të gjitha të drejtat aktive përdoruesve dhe pastaj eleminoi." -#: server_privileges.php:1610 server_privileges.php:1611 -#: server_privileges.php:1612 +#: server_privileges.php:1614 server_privileges.php:1615 +#: server_privileges.php:1616 msgid "Drop the databases that have the same names as the users." msgstr "Elemino databazat që kanë emër të njëjtë me përdoruesit." -#: server_privileges.php:1628 +#: server_privileges.php:1632 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4841,92 +4899,92 @@ msgstr "" "drejtave të përdorura nga serveri nëse janë kryer ndryshime manuale. Në këtë " "rast, duhet të %srifreskoni të drejtat%s para se të vazhdoni." -#: server_privileges.php:1676 +#: server_privileges.php:1680 msgid "The selected user was not found in the privilege table." msgstr "Përdoruesi i zgjedhur nuk u gjet tek tabela e të drejtave." -#: server_privileges.php:1716 +#: server_privileges.php:1720 msgid "Column-specific privileges" msgstr "Të drejtat relative të kollonave" -#: server_privileges.php:1917 +#: server_privileges.php:1921 msgid "Add privileges on the following database" msgstr "Shto të drejta tek databaza në vazhdim" -#: server_privileges.php:1935 +#: server_privileges.php:1939 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:1938 +#: server_privileges.php:1942 msgid "Add privileges on the following table" msgstr "Shto të drejta tek tabela në vazhdim" -#: server_privileges.php:1995 +#: server_privileges.php:1999 msgid "Change Login Information / Copy User" msgstr "Ndrysho Informacionet e Login / Kopjo përdoruesin" -#: server_privileges.php:1998 +#: server_privileges.php:2002 msgid "Create a new user with the same privileges and ..." msgstr "Krijo një përdorues të ri me të njëjta të drejta dhe ..." -#: server_privileges.php:2000 +#: server_privileges.php:2004 msgid "... keep the old one." msgstr "... mbaj të vjetrin." -#: server_privileges.php:2001 +#: server_privileges.php:2005 msgid " ... delete the old one from the user tables." msgstr " ... elemino të vjetrin nga tabela e përdoruesve." -#: server_privileges.php:2002 +#: server_privileges.php:2006 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr " ... hiq të gjitha të drejtat nga i vjetri e pastaj eleminoje." -#: server_privileges.php:2003 +#: server_privileges.php:2007 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" " ... elemino të vjetrin nga tabela e përdoruesve e pastaj rilexo të drejtat." -#: server_privileges.php:2025 +#: server_privileges.php:2029 msgid "Database for user" msgstr "" -#: server_privileges.php:2029 +#: server_privileges.php:2033 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Asnjë lloj" -#: server_privileges.php:2030 +#: server_privileges.php:2034 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2031 +#: server_privileges.php:2035 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2034 +#: server_privileges.php:2038 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "Kontrollo të drejtat për databazën "%s"." -#: server_privileges.php:2057 +#: server_privileges.php:2061 #, php-format msgid "Users having access to "%s"" msgstr "Përdoruesit që kanë hyrje tek "%s"" -#: server_privileges.php:2165 +#: server_privileges.php:2169 msgid "global" msgstr "globale" -#: server_privileges.php:2167 +#: server_privileges.php:2171 msgid "database-specific" msgstr "specifik i databazës" -#: server_privileges.php:2169 +#: server_privileges.php:2173 msgid "wildcard" msgstr "wildcard" @@ -4947,53 +5005,53 @@ msgstr "" msgid "ID" msgstr "ID" -#: server_replication.php:50 +#: server_replication.php:49 msgid "Unknown error" msgstr "" -#: server_replication.php:57 +#: server_replication.php:56 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:64 +#: server_replication.php:63 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:70 +#: server_replication.php:69 msgid "Unable to change master" msgstr "" -#: server_replication.php:73 +#: server_replication.php:72 #, php-format msgid "Master server changed succesfully to %s" msgstr "" -#: server_replication.php:181 +#: server_replication.php:180 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:183 server_status.php:391 +#: server_replication.php:182 server_status.php:391 msgid "Show master status" msgstr "" -#: server_replication.php:186 +#: server_replication.php:185 msgid "Show connected slaves" msgstr "" -#: server_replication.php:209 +#: server_replication.php:208 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:216 +#: server_replication.php:215 msgid "Master configuration" msgstr "" -#: server_replication.php:217 +#: server_replication.php:216 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -5002,110 +5060,110 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:220 +#: server_replication.php:219 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:221 +#: server_replication.php:220 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:224 +#: server_replication.php:223 #, fuzzy msgid "Please select databases:" msgstr "Të lutem, zgjidh një databazë" -#: server_replication.php:227 +#: server_replication.php:226 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: server_replication.php:229 +#: server_replication.php:228 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: server_replication.php:292 +#: server_replication.php:291 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:295 +#: server_replication.php:294 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:304 +#: server_replication.php:303 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:307 +#: server_replication.php:306 msgid "See slave status table" msgstr "" -#: server_replication.php:310 +#: server_replication.php:309 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:321 +#: server_replication.php:320 msgid "Control slave:" msgstr "" -#: server_replication.php:324 +#: server_replication.php:323 #, fuzzy msgid "Full start" msgstr "Teksti komplet" -#: server_replication.php:324 +#: server_replication.php:323 msgid "Full stop" msgstr "" -#: server_replication.php:325 +#: server_replication.php:324 msgid "Reset slave" msgstr "" -#: server_replication.php:326 +#: server_replication.php:325 #, php-format msgid "SQL Thread %s only" msgstr "" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 #, fuzzy msgid "Start" msgstr "Sht" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 msgid "Stop" msgstr "" -#: server_replication.php:327 +#: server_replication.php:326 #, php-format msgid "IO Thread %s only" msgstr "" -#: server_replication.php:331 +#: server_replication.php:330 msgid "Error management:" msgstr "" -#: server_replication.php:333 +#: server_replication.php:332 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:335 +#: server_replication.php:334 msgid "Skip current error" msgstr "" -#: server_replication.php:336 +#: server_replication.php:335 msgid "Skip next" msgstr "" -#: server_replication.php:339 +#: server_replication.php:338 msgid "errors." msgstr "" -#: server_replication.php:354 +#: server_replication.php:353 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -5815,112 +5873,112 @@ msgstr "Lloji i query" msgid "Replication status" msgstr "" -#: server_synchronize.php:93 +#: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:96 +#: server_synchronize.php:95 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:121 server_synchronize.php:124 tbl_create.php:77 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:264 +#: server_synchronize.php:263 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:271 +#: server_synchronize.php:270 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:399 server_synchronize.php:838 +#: server_synchronize.php:398 server_synchronize.php:837 msgid "not present" msgstr "" -#: server_synchronize.php:423 server_synchronize.php:866 +#: server_synchronize.php:422 server_synchronize.php:865 msgid "Structure Difference" msgstr "" -#: server_synchronize.php:424 server_synchronize.php:867 +#: server_synchronize.php:423 server_synchronize.php:866 msgid "Data Difference" msgstr "" -#: server_synchronize.php:429 server_synchronize.php:872 +#: server_synchronize.php:428 server_synchronize.php:871 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:430 server_synchronize.php:873 +#: server_synchronize.php:429 server_synchronize.php:872 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:431 server_synchronize.php:874 +#: server_synchronize.php:430 server_synchronize.php:873 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:432 server_synchronize.php:875 +#: server_synchronize.php:431 server_synchronize.php:874 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:433 server_synchronize.php:876 +#: server_synchronize.php:432 server_synchronize.php:875 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:434 server_synchronize.php:877 +#: server_synchronize.php:433 server_synchronize.php:876 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:435 server_synchronize.php:878 +#: server_synchronize.php:434 server_synchronize.php:877 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:445 server_synchronize.php:889 +#: server_synchronize.php:444 server_synchronize.php:888 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:448 server_synchronize.php:893 +#: server_synchronize.php:447 server_synchronize.php:892 msgid "Apply Selected Changes" msgstr "" -#: server_synchronize.php:450 server_synchronize.php:895 +#: server_synchronize.php:449 server_synchronize.php:894 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:463 +#: server_synchronize.php:462 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:941 +#: server_synchronize.php:940 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:1002 +#: server_synchronize.php:1001 msgid "The following queries have been executed:" msgstr "" -#: server_synchronize.php:1121 +#: server_synchronize.php:1120 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1122 +#: server_synchronize.php:1121 #, fuzzy #| msgid "Connections" msgid "Current connection" msgstr "Lidhje" -#: server_synchronize.php:1151 +#: server_synchronize.php:1150 #, php-format msgid "Configuration: %s" msgstr "" -#: server_synchronize.php:1166 +#: server_synchronize.php:1165 msgid "Socket" msgstr "" -#: server_synchronize.php:1212 +#: server_synchronize.php:1211 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -6477,8 +6535,8 @@ msgstr "" #: setup/lib/messages.inc.php:128 msgid "" "Configure phpMyAdmin database to gain access to additional features, see " -"[a@../Documentation.html#linked-tables]linked-tables infrastructure[/a] in " -"documentation" +"[a@../Documentation.html#linked-tables]phpMyAdmin configuration storage[/a] " +"in documentation" msgstr "" #: setup/lib/messages.inc.php:129 setup/lib/messages.inc.php:290 @@ -7537,114 +7595,114 @@ msgstr "" msgid "ZIP" msgstr "" -#: sql.php:495 tbl_replace.php:385 +#: sql.php:494 tbl_replace.php:384 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: sql.php:512 +#: sql.php:511 msgid "Showing as PHP code" msgstr "" -#: sql.php:515 tbl_replace.php:359 +#: sql.php:514 tbl_replace.php:358 msgid "Showing SQL query" msgstr "" -#: sql.php:517 +#: sql.php:516 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Vleftëso SQL" -#: sql.php:638 +#: sql.php:631 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:670 +#: sql.php:663 msgid "Label" msgstr "Etiketë" -#: tbl_addfield.php:188 tbl_alter.php:102 tbl_indexes.php:97 +#: tbl_addfield.php:185 tbl_alter.php:100 tbl_indexes.php:97 #, fuzzy, php-format msgid "Table %1$s has been altered successfully" msgstr "Përdoruesit e zgjedhur u hoqën me sukses." -#: tbl_change.php:250 tbl_select.php:26 tbl_select.php:27 tbl_select.php:30 -#: tbl_select.php:33 +#: tbl_change.php:245 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_select.php:32 msgid "Browse foreign values" msgstr "Shfleto opcionet e huaja" -#: tbl_change.php:280 tbl_change.php:318 +#: tbl_change.php:275 tbl_change.php:313 msgid "Function" msgstr "Funksioni" -#: tbl_change.php:300 tbl_indexes.php:199 tbl_indexes.php:224 +#: tbl_change.php:295 tbl_indexes.php:198 tbl_indexes.php:223 msgid "Ignore" msgstr "Shpërfill" -#: tbl_change.php:725 +#: tbl_change.php:720 #, fuzzy #| msgid " Because of its length,
                            this field might not be editable " msgid " Because of its length,
                            this column might not be editable " msgstr " Për shkak të gjatësisë saj,
                            kjo fushë nuk mund të ndryshohet " -#: tbl_change.php:884 +#: tbl_change.php:835 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:890 +#: tbl_change.php:841 msgid "Binary - do not edit" msgstr "Të dhëna të tipit binar - mos ndrysho" -#: tbl_change.php:983 +#: tbl_change.php:889 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:1128 +#: tbl_change.php:1026 msgid "Insert as new row" msgstr "Shto një rresht të ri" -#: tbl_change.php:1129 +#: tbl_change.php:1027 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:1130 +#: tbl_change.php:1028 msgid "Show insert query" msgstr "" -#: tbl_change.php:1145 +#: tbl_change.php:1043 msgid "Go back to previous page" msgstr "Mbrapa" -#: tbl_change.php:1146 +#: tbl_change.php:1044 msgid "Insert another new row" msgstr "Shto një regjistrim të ri" -#: tbl_change.php:1150 +#: tbl_change.php:1048 msgid "Go back to this page" msgstr "Kthehu mbrapa tek kjo faqe" -#: tbl_change.php:1158 +#: tbl_change.php:1056 msgid "Edit next row" msgstr "" -#: tbl_change.php:1169 +#: tbl_change.php:1067 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: tbl_change.php:1207 +#: tbl_change.php:1105 #, php-format msgid "Restart insertion with %s rows" msgstr "" -#: tbl_create.php:57 +#: tbl_create.php:55 #, fuzzy, php-format msgid "Table %s already exists!" msgstr "Përdoruesi %s ekziston!" -#: tbl_create.php:244 +#: tbl_create.php:241 #, fuzzy, php-format msgid "Table %1$s has been created." msgstr "Tabela %s u eleminua" @@ -7665,205 +7723,205 @@ msgstr "I pamundur riemërtimi i treguesit në PRIMAR!" msgid "No index parts defined!" msgstr "Asnjë pjesë e treguesit është përcaktuar!" -#: tbl_indexes.php:159 +#: tbl_indexes.php:158 msgid "Create a new index" msgstr "Krijo një tregues të ri" -#: tbl_indexes.php:161 +#: tbl_indexes.php:160 msgid "Modify an index" msgstr "Ndrysho një tregues" -#: tbl_indexes.php:167 +#: tbl_indexes.php:166 msgid "Index name:" msgstr "Emri i treguesit :" -#: tbl_indexes.php:173 +#: tbl_indexes.php:172 msgid "Index type:" msgstr "Lloji i treguesit :" -#: tbl_indexes.php:183 +#: tbl_indexes.php:182 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" "(\"PRIMARY\" duhet të jetë emri i, dhe vetëm i, një kyçi " "primar!)" -#: tbl_indexes.php:250 +#: tbl_indexes.php:249 #, php-format msgid "Add to index  %s column(s)" msgstr "Shto tek treguesi i  %s kolonës(ave)" -#: tbl_indexes.php:255 tbl_structure.php:588 tbl_structure.php:599 +#: tbl_indexes.php:254 tbl_structure.php:586 tbl_structure.php:597 msgid "Column count has to be larger than zero." msgstr "" -#: tbl_move_copy.php:45 +#: tbl_move_copy.php:44 msgid "Can't move table to same one!" msgstr "E pamundur lëvizja e tabelës tek vetvetja!" -#: tbl_move_copy.php:47 +#: tbl_move_copy.php:46 msgid "Can't copy table to same one!" msgstr "I pamundur kopjimi i tabelës tek vetvetja!" -#: tbl_move_copy.php:55 +#: tbl_move_copy.php:54 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabela %s u lëviz tek %s." -#: tbl_move_copy.php:57 +#: tbl_move_copy.php:56 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabela %s u kopjua tek %s." -#: tbl_move_copy.php:81 +#: tbl_move_copy.php:80 msgid "The table name is empty!" msgstr "Emri i tabelës është bosh!" -#: tbl_operations.php:248 +#: tbl_operations.php:246 msgid "Alter table order by" msgstr "Transformo tabelën e renditur sipas" -#: tbl_operations.php:257 +#: tbl_operations.php:255 msgid "(singly)" msgstr "(një nga një)" -#: tbl_operations.php:277 +#: tbl_operations.php:275 msgid "Move table to (database.table):" msgstr "Sposto tabelën në (databaza.tabela):" -#: tbl_operations.php:335 +#: tbl_operations.php:333 msgid "Table options" msgstr "Opcione për tabelën" -#: tbl_operations.php:339 +#: tbl_operations.php:337 msgid "Rename table to" msgstr "Riemërto tabelën në" -#: tbl_operations.php:510 +#: tbl_operations.php:508 msgid "Copy table to (database.table):" msgstr "Kopjo tabelën tek (databaza.tabela):" -#: tbl_operations.php:557 +#: tbl_operations.php:555 msgid "Switch to copied table" msgstr "Kalo tek tabela e kopjuar" -#: tbl_operations.php:569 +#: tbl_operations.php:567 msgid "Table maintenance" msgstr "Administrimi i tabelës" -#: tbl_operations.php:590 +#: tbl_operations.php:588 msgid "Defragment table" msgstr "Defragmento tabelën" -#: tbl_operations.php:629 +#: tbl_operations.php:627 #, php-format msgid "Table %s has been flushed" msgstr "Tabela %s u rifreskua" -#: tbl_operations.php:635 +#: tbl_operations.php:633 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Rifillo (\"FLUSH\") tabelën" -#: tbl_operations.php:650 +#: tbl_operations.php:648 #, fuzzy msgid "Partition maintenance" msgstr "Administrimi i tabelës" -#: tbl_operations.php:658 +#: tbl_operations.php:656 #, php-format msgid "Partition %s" msgstr "" -#: tbl_operations.php:661 +#: tbl_operations.php:659 msgid "Analyze" msgstr "" -#: tbl_operations.php:662 +#: tbl_operations.php:660 #, fuzzy msgid "Check" msgstr "Çekisht" -#: tbl_operations.php:663 +#: tbl_operations.php:661 msgid "Optimize" msgstr "" -#: tbl_operations.php:664 +#: tbl_operations.php:662 msgid "Rebuild" msgstr "" -#: tbl_operations.php:665 +#: tbl_operations.php:663 #, fuzzy msgid "Repair" msgstr "Riparo tabelën" -#: tbl_operations.php:677 +#: tbl_operations.php:675 msgid "Remove partitioning" msgstr "" -#: tbl_operations.php:703 +#: tbl_operations.php:701 msgid "Check referential integrity:" msgstr "Kontrollo integritetin e informacioneve:" -#: tbl_printview.php:73 +#: tbl_printview.php:72 msgid "Show tables" msgstr "Shfaq tabelat" -#: tbl_printview.php:308 tbl_structure.php:655 +#: tbl_printview.php:307 tbl_structure.php:653 msgid "Space usage" msgstr "Hapësira e përdorur" -#: tbl_printview.php:312 tbl_structure.php:659 +#: tbl_printview.php:311 tbl_structure.php:657 msgid "Usage" msgstr "Përdorimi" -#: tbl_printview.php:339 tbl_structure.php:686 +#: tbl_printview.php:338 tbl_structure.php:684 msgid "Effective" msgstr "Efektiv" -#: tbl_printview.php:364 tbl_structure.php:724 +#: tbl_printview.php:363 tbl_structure.php:722 msgid "Row Statistics" msgstr "Statistikat e rreshtave" -#: tbl_printview.php:367 tbl_structure.php:727 +#: tbl_printview.php:366 tbl_structure.php:725 msgid "Statements" msgstr "Instruksione" -#: tbl_printview.php:378 tbl_structure.php:739 +#: tbl_printview.php:377 tbl_structure.php:737 msgid "static" msgstr "" -#: tbl_printview.php:380 tbl_structure.php:741 +#: tbl_printview.php:379 tbl_structure.php:739 msgid "dynamic" msgstr "dinamik" -#: tbl_printview.php:402 tbl_structure.php:784 +#: tbl_printview.php:401 tbl_structure.php:782 msgid "Row length" msgstr "Gjatësia e rreshtit" -#: tbl_printview.php:412 tbl_structure.php:792 +#: tbl_printview.php:411 tbl_structure.php:790 msgid " Row size " msgstr "Madhësia e rreshtit" -#: tbl_relation.php:278 +#: tbl_relation.php:276 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" -#: tbl_relation.php:404 +#: tbl_relation.php:402 #, fuzzy #| msgid "Internal relations" msgid "Internal relation" msgstr "Relacione të brendshme" -#: tbl_relation.php:406 +#: tbl_relation.php:404 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: tbl_relation.php:412 +#: tbl_relation.php:410 msgid "Foreign key constraint" msgstr "" @@ -7871,232 +7929,232 @@ msgstr "" msgid "No rows selected" msgstr "Nuk ka rreshta të zgjedhur" -#: tbl_select.php:130 +#: tbl_select.php:129 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Zbato \"query nga shembull\" (karakteri jolly: \"%\")" -#: tbl_select.php:136 +#: tbl_select.php:135 msgid "Operator" msgstr "Operator" -#: tbl_select.php:267 +#: tbl_select.php:266 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "Zgjidh fushat (të paktën një):" -#: tbl_select.php:285 +#: tbl_select.php:284 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Shto kushte kërkimi (trupi i specifikimit \"where\"):" -#: tbl_select.php:292 +#: tbl_select.php:291 msgid "Number of rows per page" msgstr "regjistrime për faqe" -#: tbl_select.php:298 +#: tbl_select.php:297 msgid "Display order:" msgstr "Mënyra e shfaqjes:" -#: tbl_structure.php:160 +#: tbl_structure.php:159 #, fuzzy msgid "Browse distinct values" msgstr "Shfleto opcionet e huaja" -#: tbl_structure.php:360 +#: tbl_structure.php:358 #, fuzzy #| msgid "None" msgctxt "None for default" msgid "None" msgstr "Asnjë lloj" -#: tbl_structure.php:373 +#: tbl_structure.php:371 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Column %s has been dropped" msgstr "Tabela %s u eleminua" -#: tbl_structure.php:384 +#: tbl_structure.php:382 #, php-format msgid "A primary key has been added on %s" msgstr "Një kyç primar u shtua tek %s" -#: tbl_structure.php:399 tbl_structure.php:413 tbl_structure.php:427 +#: tbl_structure.php:397 tbl_structure.php:411 tbl_structure.php:425 #, php-format msgid "An index has been added on %s" msgstr "Një tregues u shtua tek %s" -#: tbl_structure.php:505 tbl_structure.php:507 +#: tbl_structure.php:503 tbl_structure.php:505 msgid "Relation view" msgstr "Shiko relacionet" -#: tbl_structure.php:514 tbl_structure.php:516 +#: tbl_structure.php:512 tbl_structure.php:514 msgid "Propose table structure" msgstr "Propozo strukturën e tabelës" -#: tbl_structure.php:539 +#: tbl_structure.php:537 #, fuzzy msgid "Add column" msgstr "Shto një fushë të re" -#: tbl_structure.php:553 +#: tbl_structure.php:551 msgid "At End of Table" msgstr "Në fund të tabelës" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At Beginning of Table" msgstr "Në fillim të tabelës" -#: tbl_structure.php:555 +#: tbl_structure.php:553 #, php-format msgid "After %s" msgstr "Mbas %s" -#: tbl_structure.php:593 +#: tbl_structure.php:591 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "Krijo një tregues tek  %s columns" -#: tbl_structure.php:755 +#: tbl_structure.php:753 msgid "partitioned" msgstr "" -#: tbl_tracking.php:113 +#: tbl_tracking.php:109 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:186 +#: tbl_tracking.php:182 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "" -#: tbl_tracking.php:194 +#: tbl_tracking.php:190 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "" -#: tbl_tracking.php:202 +#: tbl_tracking.php:198 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "" -#: tbl_tracking.php:212 +#: tbl_tracking.php:208 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:219 +#: tbl_tracking.php:215 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:220 +#: tbl_tracking.php:216 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:229 +#: tbl_tracking.php:225 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:250 tbl_tracking.php:378 +#: tbl_tracking.php:245 tbl_tracking.php:373 msgid "Close" msgstr "" -#: tbl_tracking.php:261 +#: tbl_tracking.php:256 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:380 +#: tbl_tracking.php:375 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:396 tbl_tracking.php:503 +#: tbl_tracking.php:391 tbl_tracking.php:498 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "" -#: tbl_tracking.php:409 tbl_tracking.php:460 +#: tbl_tracking.php:404 tbl_tracking.php:455 #, fuzzy msgid "Date" msgstr "Të dhëna" -#: tbl_tracking.php:410 tbl_tracking.php:461 +#: tbl_tracking.php:405 tbl_tracking.php:456 #, fuzzy msgid "Username" msgstr "Emri i përdoruesit:" -#: tbl_tracking.php:411 +#: tbl_tracking.php:406 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:462 +#: tbl_tracking.php:457 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:506 +#: tbl_tracking.php:501 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:507 +#: tbl_tracking.php:502 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:520 +#: tbl_tracking.php:515 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:560 +#: tbl_tracking.php:555 msgid "Show versions" msgstr "" -#: tbl_tracking.php:592 +#: tbl_tracking.php:587 #, fuzzy msgid "Version" msgstr "Versioni i PHP" -#: tbl_tracking.php:639 +#: tbl_tracking.php:634 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "" -#: tbl_tracking.php:641 +#: tbl_tracking.php:636 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:652 +#: tbl_tracking.php:647 #, php-format msgid "Activate tracking for %s.%s" msgstr "" -#: tbl_tracking.php:654 +#: tbl_tracking.php:649 msgid "Activate now" msgstr "" -#: tbl_tracking.php:667 +#: tbl_tracking.php:662 #, php-format msgid "Create version %s of %s.%s" msgstr "" -#: tbl_tracking.php:671 +#: tbl_tracking.php:666 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:679 +#: tbl_tracking.php:674 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:687 +#: tbl_tracking.php:682 #, fuzzy msgid "Create version" msgstr "Versioni i MySQL" @@ -8146,11 +8204,35 @@ msgstr "Profili u rifreskua." msgid "VIEW name" msgstr "" -#: view_operations.php:92 +#: view_operations.php:91 #, fuzzy msgid "Rename view to" msgstr "Riemërto tabelën në" +#~ msgid "BLOB Repository" +#~ msgstr "Repository BLOB" + +#~ msgctxt "BLOB repository" +#~ msgid "Enabled" +#~ msgstr "Aktivizuar" + +#~ msgid "Disable" +#~ msgstr "Çaktivizo" + +#~ msgid "Damaged" +#~ msgstr "Me dëme" + +#~ msgctxt "BLOB repository" +#~ msgid "Repair" +#~ msgstr "Riparo" + +#~ msgctxt "BLOB repository" +#~ msgid "Disabled" +#~ msgstr "Çaktivizuar" + +#~ msgid "Enable" +#~ msgstr "Aktivizo" + #~ msgid "" #~ "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " #~ "extension. Please check your PHP configuration." diff --git a/po/sr.po b/po/sr.po index 69ffa79ca..048184bf1 100644 --- a/po/sr.po +++ b/po/sr.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-21 13:53+0200\n" +"POT-Creation-Date: 2010-07-26 17:18+0200\n" "PO-Revision-Date: 2010-03-30 23:47+0200\n" "Last-Translator: Michal \n" "Language-Team: serbian_cyrillic \n" @@ -15,19 +15,19 @@ msgstr "" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Pootle 2.0.1\n" -#: browse_foreigners.php:37 browse_foreigners.php:58 -#: libraries/display_tbl.lib.php:416 server_privileges.php:1506 +#: browse_foreigners.php:36 browse_foreigners.php:57 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1510 msgid "Show all" msgstr "Прикажи све" -#: browse_foreigners.php:81 libraries/common.lib.php:2313 -#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:393 -#: libraries/export/pdf.php:146 pdf_schema.php:282 pdf_schema.php:1122 -#: pdf_schema.php:1138 +#: browse_foreigners.php:80 libraries/common.lib.php:2318 +#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:392 +#: libraries/export/pdf.php:146 pdf_schema.php:281 pdf_schema.php:1121 +#: pdf_schema.php:1137 msgid "Page number:" msgstr "Број стране:" -#: browse_foreigners.php:131 +#: browse_foreigners.php:130 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -37,139 +37,153 @@ msgstr "" "затворили матични прозор, или ваш претраживач онемогућава ажурирање међу " "прозорима због сигурносних подешавања" -#: browse_foreigners.php:149 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2829 -#: libraries/common.lib.php:2836 libraries/db_links.inc.php:74 -#: libraries/tbl_links.inc.php:62 +#: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 +#: db_structure.php:89 db_structure.php:91 db_structure.php:102 +#: db_structure.php:104 libraries/common.lib.php:2834 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Претраживање" -#: browse_foreigners.php:152 db_operations.php:384 db_operations.php:428 -#: db_operations.php:498 db_operations.php:608 db_search.php:344 -#: db_structure.php:566 js/messages.php:48 libraries/Config.class.php:1043 -#: libraries/Theme_Manager.class.php:310 +#: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 +#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 +#: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 -#: libraries/common.lib.php:1340 libraries/common.lib.php:2289 +#: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 -#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:275 -#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:531 -#: libraries/display_tbl.lib.php:613 libraries/replication_gui.lib.php:75 +#: libraries/display_export.lib.php:269 libraries/display_import.lib.php:275 +#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 +#: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 #: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:781 -#: main.php:127 navigation.php:231 pdf_pages.php:291 pdf_pages.php:327 -#: pdf_pages.php:529 pmd_pdf.php:115 server_binlog.php:128 -#: server_privileges.php:664 server_privileges.php:1616 -#: server_privileges.php:1963 server_privileges.php:2010 -#: server_privileges.php:2049 server_replication.php:234 -#: server_replication.php:317 server_replication.php:340 -#: server_synchronize.php:1208 tbl_change.php:328 tbl_change.php:1172 -#: tbl_change.php:1209 tbl_indexes.php:253 tbl_operations.php:264 -#: tbl_operations.php:301 tbl_operations.php:498 tbl_operations.php:560 -#: tbl_operations.php:680 tbl_select.php:324 tbl_structure.php:561 -#: tbl_structure.php:596 tbl_tracking.php:394 tbl_tracking.php:511 -#: view_create.php:181 view_operations.php:100 +#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 +#: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 +#: server_privileges.php:663 server_privileges.php:1620 +#: server_privileges.php:1967 server_privileges.php:2014 +#: server_privileges.php:2053 server_replication.php:233 +#: server_replication.php:316 server_replication.php:339 +#: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 +#: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 +#: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 +#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "Крени" -#: browse_foreigners.php:167 browse_foreigners.php:171 -#: libraries/Index.class.php:441 tbl_tracking.php:319 +#: browse_foreigners.php:166 browse_foreigners.php:170 +#: libraries/Index.class.php:441 tbl_tracking.php:314 msgid "Keyname" msgstr "Име кључа" -#: browse_foreigners.php:168 browse_foreigners.php:170 -#: server_collations.php:54 server_collations.php:66 server_engines.php:58 +#: browse_foreigners.php:167 browse_foreigners.php:169 +#: server_collations.php:54 server_collations.php:66 server_engines.php:57 #: server_status.php:738 msgid "Description" msgstr "Опис" -#: browse_foreigners.php:246 browse_foreigners.php:255 -#: browse_foreigners.php:267 browse_foreigners.php:275 +#: browse_foreigners.php:245 browse_foreigners.php:254 +#: browse_foreigners.php:266 browse_foreigners.php:274 msgid "Use this value" msgstr "Користи ову вредност" -#: db_create.php:45 +#: bs_disp_as_mime_type.php:29 bs_play_media.php:35 +msgid "No blob streaming server configured!" +msgstr "" + +#: bs_disp_as_mime_type.php:35 +#, fuzzy +#| msgid "Failed to write file to disk." +msgid "Failed to fetch headers" +msgstr "Неуспело уписивање датотеке на диск." + +#: bs_disp_as_mime_type.php:41 +msgid "Failed to open remote URL" +msgstr "" + +#: db_create.php:44 #, fuzzy, php-format msgid "Database %1$s has been created." msgstr "База %s је одбачена." -#: db_datadict.php:48 db_operations.php:377 +#: db_datadict.php:48 db_operations.php:313 msgid "Database comment: " msgstr "Коментар базе:" -#: db_datadict.php:164 libraries/tbl_properties.inc.php:723 -#: pdf_schema.php:1235 tbl_operations.php:346 tbl_printview.php:128 +#: db_datadict.php:164 libraries/tbl_properties.inc.php:722 +#: pdf_schema.php:1234 tbl_operations.php:344 tbl_printview.php:127 msgid "Table comments" msgstr "Коментари табеле" -#: db_datadict.php:173 db_qbe.php:173 libraries/Index.class.php:445 +#: db_datadict.php:173 db_qbe.php:170 libraries/Index.class.php:445 #: libraries/export/htmlword.php:243 libraries/export/latex.php:364 #: libraries/export/odt.php:293 libraries/export/texytext.php:233 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:274 -#: pdf_schema.php:1261 pdf_schema.php:1282 tbl_change.php:306 -#: tbl_indexes.php:188 tbl_printview.php:140 tbl_relation.php:401 -#: tbl_select.php:133 tbl_structure.php:176 tbl_tracking.php:272 -#: tbl_tracking.php:323 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 +#: pdf_schema.php:1260 pdf_schema.php:1281 tbl_change.php:301 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:132 tbl_structure.php:175 tbl_tracking.php:267 +#: tbl_tracking.php:318 #, fuzzy #| msgid "Column names" msgid "Column" msgstr "Имена колона" -#: db_datadict.php:174 db_printview.php:105 libraries/Index.class.php:442 +#: db_datadict.php:174 db_printview.php:104 libraries/Index.class.php:442 #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 #: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:244 #: libraries/export/latex.php:364 libraries/export/odt.php:296 #: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:99 -#: pdf_schema.php:1262 pdf_schema.php:1283 server_privileges.php:2062 -#: tbl_change.php:285 tbl_change.php:312 tbl_printview.php:141 -#: tbl_printview.php:311 tbl_select.php:134 tbl_structure.php:177 -#: tbl_structure.php:658 tbl_tracking.php:273 tbl_tracking.php:320 +#: pdf_schema.php:1261 pdf_schema.php:1282 server_privileges.php:2066 +#: tbl_change.php:280 tbl_change.php:307 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:133 tbl_structure.php:176 +#: tbl_structure.php:656 tbl_tracking.php:268 tbl_tracking.php:315 msgid "Type" msgstr "Тип" #: db_datadict.php:176 libraries/Index.class.php:448 #: libraries/export/htmlword.php:245 libraries/export/latex.php:364 #: libraries/export/odt.php:299 libraries/export/texytext.php:235 -#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1264 -#: pdf_schema.php:1285 tbl_change.php:321 tbl_printview.php:143 -#: tbl_structure.php:180 tbl_tracking.php:275 tbl_tracking.php:326 +#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1263 +#: pdf_schema.php:1284 tbl_change.php:316 tbl_printview.php:142 +#: tbl_structure.php:179 tbl_tracking.php:270 tbl_tracking.php:321 msgid "Null" msgstr "Null" -#: db_datadict.php:177 db_structure.php:500 libraries/export/htmlword.php:246 +#: db_datadict.php:177 db_structure.php:486 libraries/export/htmlword.php:246 #: libraries/export/latex.php:364 libraries/export/odt.php:302 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:105 -#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 -#: tbl_structure.php:181 tbl_tracking.php:276 +#: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:143 +#: tbl_structure.php:180 tbl_tracking.php:271 msgid "Default" msgstr "Подразумевано" #: db_datadict.php:181 libraries/export/htmlword.php:248 #: libraries/export/latex.php:366 libraries/export/odt.php:306 -#: libraries/export/texytext.php:238 pdf_schema.php:1267 pdf_schema.php:1288 -#: tbl_printview.php:148 +#: libraries/export/texytext.php:238 pdf_schema.php:1266 pdf_schema.php:1287 +#: tbl_printview.php:147 msgid "Links to" msgstr "Везе ка" -#: db_datadict.php:183 db_printview.php:111 libraries/export/htmlword.php:251 +#: db_datadict.php:183 db_printview.php:110 libraries/export/htmlword.php:251 #: libraries/export/latex.php:49 libraries/export/latex.php:369 #: libraries/export/odt.php:37 libraries/export/odt.php:311 #: libraries/export/sql.php:29 libraries/export/texytext.php:241 -#: libraries/tbl_properties.inc.php:129 pdf_schema.php:1278 -#: pdf_schema.php:1289 tbl_printview.php:150 +#: libraries/tbl_properties.inc.php:128 pdf_schema.php:1277 +#: pdf_schema.php:1288 tbl_printview.php:149 msgid "Comments" msgstr "Коментари" #: db_datadict.php:266 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/export/htmlword.php:321 #: libraries/export/latex.php:434 libraries/export/odt.php:367 -#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:262 -#: pdf_schema.php:1343 server_privileges.php:1560 server_privileges.php:1571 -#: server_privileges.php:1881 server_privileges.php:1886 -#: server_privileges.php:2179 sql.php:131 sql.php:193 tbl_printview.php:227 -#: tbl_structure.php:349 tbl_tracking.php:336 tbl_tracking.php:341 +#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:261 +#: pdf_schema.php:1342 server_privileges.php:1564 server_privileges.php:1575 +#: server_privileges.php:1885 server_privileges.php:1890 +#: server_privileges.php:2183 sql.php:130 sql.php:192 tbl_printview.php:226 +#: tbl_structure.php:347 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "Не" @@ -180,17 +194,17 @@ msgstr "Не" #: libraries/mult_submits.inc.php:49 libraries/mult_submits.inc.php:54 #: libraries/mult_submits.inc.php:59 libraries/mult_submits.inc.php:91 #: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:105 -#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:261 -#: libraries/mult_submits.inc.php:272 pdf_schema.php:1343 -#: server_databases.php:63 server_privileges.php:1557 -#: server_privileges.php:1571 server_privileges.php:1881 -#: server_privileges.php:1884 server_privileges.php:2179 sql.php:192 -#: tbl_printview.php:227 tbl_structure.php:39 tbl_structure.php:349 -#: tbl_tracking.php:334 tbl_tracking.php:339 +#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:260 +#: libraries/mult_submits.inc.php:271 pdf_schema.php:1342 +#: server_databases.php:61 server_privileges.php:1561 +#: server_privileges.php:1575 server_privileges.php:1885 +#: server_privileges.php:1888 server_privileges.php:2183 sql.php:191 +#: tbl_printview.php:226 tbl_structure.php:38 tbl_structure.php:347 +#: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" msgstr "Да" -#: db_datadict.php:321 db_printview.php:265 tbl_printview.php:496 +#: db_datadict.php:321 db_printview.php:264 tbl_printview.php:495 msgid "Print" msgstr "Штампај" @@ -198,195 +212,154 @@ msgstr "Штампај" msgid "View dump (schema) of database" msgstr "Прикажи садржај (схему) базе" -#: db_export.php:32 db_printview.php:95 db_qbe.php:101 db_structure.php:50 -#: db_tracking.php:34 export.php:352 navigation.php:326 +#: db_export.php:32 db_printview.php:94 db_qbe.php:98 db_structure.php:49 +#: db_tracking.php:30 export.php:350 navigation.php:325 msgid "No tables found in database." msgstr "Табеле нису пронађене у бази." -#: db_export.php:42 db_search.php:326 server_export.php:26 +#: db_export.php:42 db_search.php:326 server_export.php:24 msgid "Select All" msgstr "Изабери све" -#: db_export.php:44 db_search.php:329 server_export.php:28 +#: db_export.php:44 db_search.php:329 server_export.php:26 msgid "Unselect All" msgstr "ништа" -#: db_operations.php:37 tbl_create.php:49 +#: db_operations.php:33 tbl_create.php:47 msgid "The database name is empty!" msgstr "Име базе није задато!" -#: db_operations.php:235 +#: db_operations.php:231 #, php-format msgid "Database %s has been renamed to %s" msgstr "База %s је преименована у %s" -#: db_operations.php:239 +#: db_operations.php:235 #, php-format msgid "Database %s has been copied to %s" msgstr "База %s је прекопирана у %s" -#: db_operations.php:411 +#: db_operations.php:347 msgid "Rename database to" msgstr "Преименуј базу у" -#: db_operations.php:416 server_processlist.php:56 +#: db_operations.php:352 server_processlist.php:56 msgid "Command" msgstr "Наредба" -#: db_operations.php:428 tbl_change.php:1141 +#: db_operations.php:364 tbl_change.php:1039 msgid "and then" msgstr "и онда" -#: db_operations.php:454 +#: db_operations.php:390 msgid "Copy database to" msgstr "Копирај базу у" -#: db_operations.php:461 tbl_operations.php:527 tbl_tracking.php:387 +#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Само структура" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:389 +#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Структура и подаци" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:388 +#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Само подаци" -#: db_operations.php:471 +#: db_operations.php:407 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE пре копирања" -#: db_operations.php:474 libraries/export/sql.php:51 +#: db_operations.php:410 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 -#: libraries/export/sql.php:81 tbl_operations.php:535 +#: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "Додај %s" -#: db_operations.php:478 libraries/export/sql.php:77 tbl_operations.php:298 -#: tbl_operations.php:537 +#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Додај AUTO_INCREMENT вредност" -#: db_operations.php:482 tbl_operations.php:544 +#: db_operations.php:418 tbl_operations.php:542 msgid "Add constraints" msgstr "Додај ограничења" -#: db_operations.php:495 +#: db_operations.php:431 msgid "Switch to copied database" msgstr "Пребаци се на копирану базу" -#: db_operations.php:536 -msgid "BLOB Repository" -msgstr "" - -#: db_operations.php:539 db_tracking.php:75 libraries/common.lib.php:1357 -#: libraries/server_links.inc.php:48 server_processlist.php:58 -#: tbl_tracking.php:595 test/theme.php:100 -msgid "Status" -msgstr "Статус" - -#: db_operations.php:547 -#, fuzzy -#| msgid "Enabled" -msgctxt "BLOB repository" -msgid "Enabled" -msgstr "Омогућено" - -#: db_operations.php:551 -#, fuzzy -msgid "Disable" -msgstr "Онемогућено" - -#: db_operations.php:561 -msgid "Damaged" -msgstr "" - -#: db_operations.php:565 -#, fuzzy -msgctxt "BLOB repository" -msgid "Repair" -msgstr "Поправи табелу" - -#: db_operations.php:573 -#, fuzzy -#| msgid "Disabled" -msgctxt "BLOB repository" -msgid "Disabled" -msgstr "Онемогућено" - -#: db_operations.php:577 -#, fuzzy -msgid "Enable" -msgstr "Омогућено" - -#: db_operations.php:601 libraries/Index.class.php:447 +#: db_operations.php:451 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 -#: server_collations.php:53 server_collations.php:65 server_databases.php:110 -#: tbl_operations.php:362 tbl_select.php:135 tbl_structure.php:178 -#: tbl_structure.php:766 tbl_tracking.php:274 tbl_tracking.php:325 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 +#: server_collations.php:53 server_collations.php:65 server_databases.php:108 +#: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:177 +#: tbl_structure.php:764 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "Сортирање" -#: db_operations.php:614 main.php:315 pdf_schema.php:33 -#, php-format +#: db_operations.php:464 pdf_schema.php:32 +#, fuzzy, php-format +#| msgid "" +#| "The additional features for working with linked tables have been " +#| "deactivated. To find out why click %shere%s." msgid "" -"The additional features for working with linked tables have been " -"deactivated. To find out why click %shere%s." +"The phpMyAdmin configuration storage has been deactivated. To find out why " +"click %shere%s." msgstr "" "Додатне могућности за рад са повезаним табелама су искључене. Да бисте " "сазнали зашто, кликните %sовде%s." -#: db_operations.php:647 +#: db_operations.php:497 msgid "Edit PDF Pages" msgstr "Уређивање PDF страна" -#: db_printview.php:103 db_tracking.php:71 db_tracking.php:156 +#: db_printview.php:102 db_tracking.php:67 db_tracking.php:152 #: libraries/db_structure.lib.php:37 libraries/export/xml.php:327 -#: libraries/header.inc.php:125 pdf_pages.php:423 server_privileges.php:1657 -#: server_privileges.php:1713 server_privileges.php:1977 -#: server_synchronize.php:422 server_synchronize.php:865 tbl_tracking.php:591 +#: libraries/header.inc.php:125 pdf_pages.php:422 server_privileges.php:1661 +#: server_privileges.php:1717 server_privileges.php:1981 +#: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "Табела" -#: db_printview.php:104 libraries/db_structure.lib.php:47 +#: db_printview.php:103 libraries/db_structure.lib.php:47 #: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 -#: navigation.php:629 navigation.php:651 server_databases.php:121 -#: tbl_printview.php:392 tbl_structure.php:364 tbl_structure.php:776 +#: navigation.php:628 navigation.php:650 server_databases.php:119 +#: tbl_printview.php:391 tbl_structure.php:362 tbl_structure.php:774 msgid "Rows" msgstr "Редова" -#: db_printview.php:108 libraries/db_structure.lib.php:58 tbl_indexes.php:189 +#: db_printview.php:107 libraries/db_structure.lib.php:58 tbl_indexes.php:188 msgid "Size" msgstr "Величина" -#: db_printview.php:161 db_structure.php:456 libraries/export/sql.php:556 +#: db_printview.php:160 db_structure.php:442 libraries/export/sql.php:556 #: libraries/export/sql.php:896 msgid "in use" msgstr "се користи" -#: db_printview.php:186 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:511 pdf_schema.php:1240 tbl_printview.php:432 -#: tbl_structure.php:808 +#: db_printview.php:185 libraries/db_info.inc.php:86 +#: libraries/export/sql.php:511 pdf_schema.php:1239 tbl_printview.php:431 +#: tbl_structure.php:806 msgid "Creation" msgstr "Направљено" -#: db_printview.php:195 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:516 pdf_schema.php:1245 tbl_printview.php:442 -#: tbl_structure.php:816 +#: db_printview.php:194 libraries/db_info.inc.php:91 +#: libraries/export/sql.php:516 pdf_schema.php:1244 tbl_printview.php:441 +#: tbl_structure.php:814 msgid "Last update" msgstr "Последња измена" -#: db_printview.php:204 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:521 pdf_schema.php:1250 tbl_printview.php:452 -#: tbl_structure.php:824 +#: db_printview.php:203 libraries/db_info.inc.php:96 +#: libraries/export/sql.php:521 pdf_schema.php:1249 tbl_printview.php:451 +#: tbl_structure.php:822 msgid "Last check" msgstr "Последња провера" -#: db_printview.php:221 db_structure.php:479 +#: db_printview.php:220 db_structure.php:465 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -395,94 +368,94 @@ msgstr[0] "%s табела" msgstr[1] "%s табела" msgstr[2] "%s табела" -#: db_qbe.php:28 import.php:453 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1980 libraries/sql_query_form.lib.php:138 -#: tbl_operations.php:212 tbl_relation.php:291 tbl_row_action.php:130 -#: view_operations.php:61 +#: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 +#: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "Ваш SQL упит је успешно извршен" -#: db_qbe.php:41 +#: db_qbe.php:38 msgid "You have to choose at least one column to display" msgstr "Морате изабрати бар једну колону за приказ" -#: db_qbe.php:199 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:865 +#: db_qbe.php:196 libraries/db_structure.lib.php:95 +#: libraries/display_tbl.lib.php:864 msgid "Sort" msgstr "Сортирање" -#: db_qbe.php:208 db_qbe.php:242 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:522 libraries/display_tbl.lib.php:827 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:259 -#: tbl_select.php:311 +#: db_qbe.php:205 db_qbe.php:239 libraries/db_structure.lib.php:102 +#: libraries/display_tbl.lib.php:521 libraries/display_tbl.lib.php:826 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:257 +#: tbl_select.php:310 msgid "Ascending" msgstr "Растући" -#: db_qbe.php:209 db_qbe.php:250 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:527 libraries/display_tbl.lib.php:824 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:260 -#: tbl_select.php:312 +#: db_qbe.php:206 db_qbe.php:247 libraries/db_structure.lib.php:110 +#: libraries/display_tbl.lib.php:526 libraries/display_tbl.lib.php:823 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:258 +#: tbl_select.php:311 msgid "Descending" msgstr "Опадајући" -#: db_qbe.php:263 db_tracking.php:77 libraries/display_tbl.lib.php:307 -#: tbl_change.php:275 tbl_tracking.php:596 +#: db_qbe.php:260 db_tracking.php:73 libraries/display_tbl.lib.php:306 +#: tbl_change.php:270 tbl_tracking.php:591 msgid "Show" msgstr "Прикажи" -#: db_qbe.php:299 +#: db_qbe.php:296 msgid "Criteria" msgstr "Критеријум" -#: db_qbe.php:352 db_qbe.php:434 db_qbe.php:526 db_qbe.php:557 +#: db_qbe.php:349 db_qbe.php:431 db_qbe.php:523 db_qbe.php:554 msgid "Ins" msgstr "Ins" -#: db_qbe.php:356 db_qbe.php:438 db_qbe.php:523 db_qbe.php:554 +#: db_qbe.php:353 db_qbe.php:435 db_qbe.php:520 db_qbe.php:551 msgid "And" msgstr "и" -#: db_qbe.php:365 db_qbe.php:446 db_qbe.php:528 db_qbe.php:559 +#: db_qbe.php:362 db_qbe.php:443 db_qbe.php:525 db_qbe.php:556 msgid "Del" msgstr "Del" -#: db_qbe.php:369 db_qbe.php:450 db_qbe.php:521 db_qbe.php:552 -#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:778 -#: server_privileges.php:297 tbl_change.php:1027 tbl_indexes.php:249 -#: tbl_select.php:285 +#: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 +#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:777 +#: server_privileges.php:296 tbl_change.php:925 tbl_indexes.php:248 +#: tbl_select.php:284 msgid "Or" msgstr "или" -#: db_qbe.php:506 +#: db_qbe.php:503 msgid "Modify" msgstr "Промени" -#: db_qbe.php:583 +#: db_qbe.php:580 #, fuzzy #| msgid "Add/Delete Criteria Row" msgid "Add/Delete criteria rows" msgstr "Додај/обриши поље за критеријум" -#: db_qbe.php:595 +#: db_qbe.php:592 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Add/Delete columns" msgstr "Додај/обриши колону" -#: db_qbe.php:608 db_qbe.php:633 +#: db_qbe.php:605 db_qbe.php:630 msgid "Update Query" msgstr "Ажурирај упит" -#: db_qbe.php:616 +#: db_qbe.php:613 msgid "Use Tables" msgstr "Користи табеле" -#: db_qbe.php:639 +#: db_qbe.php:636 #, php-format msgid "SQL query on database %s:" msgstr "SQL упит на бази %s:" -#: db_qbe.php:933 libraries/common.lib.php:1222 +#: db_qbe.php:930 libraries/common.lib.php:1215 msgid "Submit Query" msgstr "Изврши SQL упит" @@ -523,17 +496,17 @@ msgstr[0] "%s погодака унутар табеле %s" msgstr[1] "%s погодака унутар табеле %s" msgstr[2] "%s погодака унутар табеле %s" -#: db_search.php:249 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2831 -#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:49 -#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:466 +#: db_search.php:249 db_structure.php:75 db_structure.php:76 +#: db_structure.php:88 db_structure.php:90 db_structure.php:101 +#: db_structure.php:103 libraries/common.lib.php:2836 +#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 +#: tbl_structure.php:35 tbl_structure.php:47 tbl_structure.php:464 msgid "Browse" msgstr "Преглед" -#: db_search.php:254 libraries/display_tbl.lib.php:1164 -#: libraries/display_tbl.lib.php:2055 libraries/sql_query_form.lib.php:453 -#: pdf_pages.php:285 pdf_pages.php:424 pdf_pages.php:460 pdf_pages.php:488 +#: db_search.php:254 libraries/display_tbl.lib.php:1163 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 msgid "Delete" @@ -574,233 +547,239 @@ msgstr "Унутар табела:" msgid "Inside column:" msgstr "Унутар табела:" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2830 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:75 +#: db_structure.php:79 db_structure.php:80 db_structure.php:92 +#: db_structure.php:93 db_structure.php:105 db_structure.php:106 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 +#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Нови запис" -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2827 libraries/common.lib.php:2834 -#: libraries/db_links.inc.php:62 libraries/export/htmlword.php:22 +#: db_structure.php:81 db_structure.php:94 db_structure.php:107 +#: libraries/common.lib.php:2832 libraries/common.lib.php:2839 +#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 -#: libraries/tbl_links.inc.php:55 pmd_general.php:133 -#: server_privileges.php:593 server_replication.php:314 tbl_tracking.php:268 +#: libraries/tbl_links.inc.php:54 pmd_general.php:133 +#: server_privileges.php:592 server_replication.php:313 tbl_tracking.php:263 msgid "Structure" msgstr "Структура" -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:544 db_structure.php:545 db_tracking.php:90 -#: libraries/Index.class.php:482 libraries/common.lib.php:1659 -#: libraries/db_links.inc.php:99 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:126 -#: server_databases.php:351 tbl_structure.php:26 tbl_structure.php:150 -#: tbl_structure.php:151 tbl_structure.php:470 +#: db_structure.php:82 db_structure.php:83 db_structure.php:95 +#: db_structure.php:96 db_structure.php:108 db_structure.php:109 +#: db_structure.php:530 db_structure.php:531 db_tracking.php:86 +#: libraries/Index.class.php:482 libraries/common.lib.php:1663 +#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 +#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 +#: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" msgstr "Одбаци" -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:542 db_structure.php:543 libraries/common.lib.php:1658 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:104 +#: db_structure.php:84 db_structure.php:85 db_structure.php:97 +#: db_structure.php:98 db_structure.php:110 db_structure.php:111 +#: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 +#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 msgid "Empty" msgstr "Испразни" -#: db_structure.php:315 libraries/tbl_links.inc.php:99 +#: db_structure.php:301 libraries/tbl_links.inc.php:98 #, php-format msgid "Table %s has been emptied" msgstr "Табела %s је испражњена" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "View %s has been dropped" msgstr "Поглед %s је одбачен" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "Table %s has been dropped" msgstr "Табела %s је одбачена" -#: db_structure.php:332 +#: db_structure.php:318 msgid "Tracking is active." msgstr "" -#: db_structure.php:334 +#: db_structure.php:320 msgid "Tracking is not active." msgstr "" -#: db_structure.php:419 libraries/display_tbl.lib.php:1943 +#: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -#: db_structure.php:433 db_structure.php:447 libraries/header.inc.php:125 -#: libraries/tbl_info.inc.php:65 tbl_structure.php:184 test/theme.php:73 +#: db_structure.php:419 db_structure.php:433 libraries/header.inc.php:125 +#: libraries/tbl_info.inc.php:60 tbl_structure.php:183 test/theme.php:73 msgid "View" msgstr "Поглед" -#: db_structure.php:484 libraries/db_structure.lib.php:40 -#: libraries/server_links.inc.php:69 server_replication.php:32 -#: server_replication.php:163 server_status.php:368 +#: db_structure.php:470 libraries/db_structure.lib.php:40 +#: libraries/server_links.inc.php:69 server_replication.php:31 +#: server_replication.php:162 server_status.php:368 msgid "Replication" msgstr "Репликација" -#: db_structure.php:488 +#: db_structure.php:474 msgid "Sum" msgstr "Укупно" -#: db_structure.php:495 libraries/StorageEngine.class.php:349 +#: db_structure.php:481 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s је подразумевани погон складиштења на овом MySQL серверу." -#: db_structure.php:523 db_structure.php:540 db_structure.php:541 -#: libraries/display_tbl.lib.php:2080 libraries/display_tbl.lib.php:2085 -#: libraries/mult_submits.inc.php:15 server_databases.php:345 -#: server_databases.php:350 server_privileges.php:1588 tbl_structure.php:454 -#: tbl_structure.php:463 +#: db_structure.php:509 db_structure.php:526 db_structure.php:527 +#: libraries/display_tbl.lib.php:2039 libraries/display_tbl.lib.php:2044 +#: libraries/mult_submits.inc.php:15 server_databases.php:343 +#: server_databases.php:348 server_privileges.php:1592 tbl_structure.php:452 +#: tbl_structure.php:461 msgid "With selected:" msgstr "Означено:" -#: db_structure.php:526 libraries/display_tbl.lib.php:2075 -#: server_databases.php:347 server_privileges.php:569 -#: server_privileges.php:1591 tbl_structure.php:457 +#: db_structure.php:512 libraries/display_tbl.lib.php:2034 +#: server_databases.php:345 server_privileges.php:568 +#: server_privileges.php:1595 tbl_structure.php:455 msgid "Check All" msgstr "Означи све" -#: db_structure.php:530 libraries/display_tbl.lib.php:2076 -#: libraries/replication_gui.lib.php:35 server_databases.php:349 -#: server_privileges.php:572 server_privileges.php:1595 tbl_structure.php:461 +#: db_structure.php:516 libraries/display_tbl.lib.php:2035 +#: libraries/replication_gui.lib.php:35 server_databases.php:347 +#: server_privileges.php:571 server_privileges.php:1599 tbl_structure.php:459 msgid "Uncheck All" msgstr "ниједно" -#: db_structure.php:535 +#: db_structure.php:521 msgid "Check tables having overhead" msgstr "Провери табеле које имају прекорачења" -#: db_structure.php:546 db_structure.php:547 db_structure.php:598 -#: libraries/display_tbl.lib.php:2179 libraries/mult_submits.inc.php:27 -#: tbl_structure.php:491 tbl_structure.php:493 +#: db_structure.php:532 db_structure.php:533 db_structure.php:584 +#: libraries/display_tbl.lib.php:2138 libraries/mult_submits.inc.php:27 +#: tbl_structure.php:489 tbl_structure.php:491 msgid "Print view" msgstr "За штампу" -#: db_structure.php:548 db_structure.php:549 libraries/mult_submits.inc.php:41 -#: tbl_operations.php:580 +#: db_structure.php:534 db_structure.php:535 libraries/mult_submits.inc.php:41 +#: tbl_operations.php:578 msgid "Check table" msgstr "Провери табелу" -#: db_structure.php:550 db_structure.php:551 libraries/mult_submits.inc.php:46 -#: tbl_operations.php:620 tbl_structure.php:708 tbl_structure.php:710 +#: db_structure.php:536 db_structure.php:537 libraries/mult_submits.inc.php:46 +#: tbl_operations.php:618 tbl_structure.php:706 tbl_structure.php:708 msgid "Optimize table" msgstr "Оптимизуј табелу" -#: db_structure.php:552 db_structure.php:553 libraries/mult_submits.inc.php:51 -#: tbl_operations.php:610 +#: db_structure.php:538 db_structure.php:539 libraries/mult_submits.inc.php:51 +#: tbl_operations.php:608 msgid "Repair table" msgstr "Поправи табелу" -#: db_structure.php:554 db_structure.php:555 libraries/mult_submits.inc.php:56 -#: tbl_operations.php:600 +#: db_structure.php:540 db_structure.php:541 libraries/mult_submits.inc.php:56 +#: tbl_operations.php:598 msgid "Analyze table" msgstr "Анализирај табелу" -#: db_structure.php:556 db_structure.php:557 libraries/db_links.inc.php:70 -#: libraries/display_export.lib.php:82 libraries/display_tbl.lib.php:2093 -#: libraries/display_tbl.lib.php:2224 libraries/mult_submits.inc.php:61 -#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:81 -#: pmd_pdf.php:83 pmd_pdf.php:108 server_privileges.php:1372 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 +#: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 +#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 +#: pmd_pdf.php:81 pmd_pdf.php:106 server_privileges.php:1376 #: setup/frames/menu.inc.php:22 tbl_row_action.php:58 msgid "Export" msgstr "Извоз" -#: db_structure.php:605 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:591 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "Речник података" -#: db_tracking.php:65 +#: db_tracking.php:61 #, fuzzy msgid "Tracked tables" msgstr "Провери табелу" -#: db_tracking.php:70 libraries/export/htmlword.php:85 +#: db_tracking.php:66 libraries/export/htmlword.php:85 #: libraries/export/latex.php:152 libraries/export/odt.php:112 #: libraries/export/sql.php:339 libraries/export/texytext.php:84 #: libraries/export/xml.php:254 libraries/header.inc.php:105 -#: libraries/header_printview.inc.php:57 server_databases.php:168 -#: server_privileges.php:1652 server_privileges.php:1713 -#: server_privileges.php:1971 server_processlist.php:55 -#: server_synchronize.php:1178 server_synchronize.php:1182 -#: tbl_tracking.php:590 test/theme.php:64 +#: libraries/header_printview.inc.php:57 server_databases.php:166 +#: server_privileges.php:1656 server_privileges.php:1717 +#: server_privileges.php:1975 server_processlist.php:55 +#: server_synchronize.php:1177 server_synchronize.php:1181 +#: tbl_tracking.php:585 test/theme.php:64 msgid "Database" msgstr "База података" -#: db_tracking.php:72 +#: db_tracking.php:68 #, fuzzy msgid "Last version" msgstr "Направи релацију" -#: db_tracking.php:73 tbl_tracking.php:593 +#: db_tracking.php:69 tbl_tracking.php:588 #, fuzzy msgid "Created" msgstr "Направи" -#: db_tracking.php:74 tbl_tracking.php:594 +#: db_tracking.php:70 tbl_tracking.php:589 msgid "Updated" msgstr "" -#: db_tracking.php:76 libraries/Index.class.php:439 -#: libraries/db_structure.lib.php:44 server_databases.php:202 -#: server_privileges.php:1534 server_privileges.php:1717 -#: server_privileges.php:2065 tbl_structure.php:186 +#: db_tracking.php:71 libraries/common.lib.php:1361 +#: libraries/server_links.inc.php:48 server_processlist.php:58 +#: tbl_tracking.php:590 test/theme.php:100 +msgid "Status" +msgstr "Статус" + +#: db_tracking.php:72 libraries/Index.class.php:439 +#: libraries/db_structure.lib.php:44 server_databases.php:200 +#: server_privileges.php:1538 server_privileges.php:1721 +#: server_privileges.php:2069 tbl_structure.php:185 msgid "Action" msgstr "Акција" -#: db_tracking.php:87 db_tracking.php:119 +#: db_tracking.php:83 db_tracking.php:115 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:105 tbl_tracking.php:547 tbl_tracking.php:605 -#: tbl_tracking.php:612 +#: db_tracking.php:101 tbl_tracking.php:542 tbl_tracking.php:600 +#: tbl_tracking.php:607 msgid "active" msgstr "" -#: db_tracking.php:107 tbl_tracking.php:549 tbl_tracking.php:607 -#: tbl_tracking.php:609 +#: db_tracking.php:103 tbl_tracking.php:544 tbl_tracking.php:602 +#: tbl_tracking.php:604 msgid "not active" msgstr "" -#: db_tracking.php:120 +#: db_tracking.php:116 #, fuzzy msgid "Versions" msgstr "Персијски" -#: db_tracking.php:121 tbl_tracking.php:378 tbl_tracking.php:623 +#: db_tracking.php:117 tbl_tracking.php:373 tbl_tracking.php:618 msgid "Tracking report" msgstr "" -#: db_tracking.php:122 tbl_tracking.php:250 tbl_tracking.php:623 +#: db_tracking.php:118 tbl_tracking.php:245 tbl_tracking.php:618 #, fuzzy msgid "Structure snapshot" msgstr "Само структура" -#: db_tracking.php:151 +#: db_tracking.php:147 #, fuzzy msgid "Untracked tables" msgstr "Провери табелу" -#: db_tracking.php:171 db_tracking.php:173 tbl_structure.php:527 -#: tbl_structure.php:529 +#: db_tracking.php:167 db_tracking.php:169 tbl_structure.php:525 +#: tbl_structure.php:527 #, fuzzy msgid "Track table" msgstr "Провери табелу" -#: db_tracking.php:199 +#: db_tracking.php:195 #, fuzzy msgid "Database Log" msgstr "База података" @@ -809,12 +788,12 @@ msgstr "База података" msgid "Selected export type has to be saved in file!" msgstr "Одабрани тип извоза мора бити сачуван у датотеку!" -#: export.php:153 export.php:178 export.php:620 +#: export.php:152 export.php:177 export.php:615 #, php-format msgid "Insufficient space to save the file %s." msgstr "Недовољно простора за снимање датотеке %s." -#: export.php:287 +#: export.php:286 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -822,17 +801,17 @@ msgstr "" "Датотека %s већ постоји на серверу, промените име датотеке или укључите " "опцију преписивања." -#: export.php:291 export.php:295 +#: export.php:290 export.php:294 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Веб серверу није дозвољено да сачува датотеку %s." -#: export.php:622 +#: export.php:617 #, php-format msgid "Dump has been saved to file %s." msgstr "Садржај базе је сачуван у датотеку %s." -#: import.php:59 +#: import.php:58 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -841,14 +820,14 @@ msgstr "" "Вероватно сте покушали да увезете превелику датотеку. Молимо погледајте " "%sдокументацију%s за начине превазилажења овог ограничења." -#: import.php:278 import.php:331 libraries/File.class.php:840 -#: libraries/File.class.php:950 +#: import.php:277 import.php:330 libraries/File.class.php:566 +#: libraries/File.class.php:676 msgid "File could not be read" msgstr "Датотеку није могуће прочитати" -#: import.php:286 import.php:295 import.php:314 import.php:323 -#: libraries/File.class.php:1020 libraries/File.class.php:1028 -#: libraries/File.class.php:1044 libraries/File.class.php:1052 +#: import.php:285 import.php:294 import.php:313 import.php:322 +#: libraries/File.class.php:746 libraries/File.class.php:754 +#: libraries/File.class.php:770 libraries/File.class.php:778 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -857,7 +836,7 @@ msgstr "" "Покушали сте да увезете датотеку са компресијом која није подржана (%s). Или " "подршка за њу није имплементирана, или је искључена у вашој конфигурацији." -#: import.php:336 +#: import.php:335 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -867,29 +846,29 @@ msgstr "" "или величина датотеке превазилази максималну величину дозвољену у вашој " "конфигурацији PHP-а. Погледајте. See FAQ 1.16." -#: import.php:371 libraries/display_import.lib.php:23 +#: import.php:370 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "Не могу да учитам додатке за увоз, молим проверите своју инсталацију!" -#: import.php:396 +#: import.php:395 msgid "The bookmark has been deleted." msgstr "Обележивач је управо обрисан." -#: import.php:400 +#: import.php:399 msgid "Showing bookmark" msgstr "Приказивање маркера" -#: import.php:402 sql.php:625 +#: import.php:401 sql.php:618 #, php-format msgid "Bookmark %s created" msgstr "Направљен маркер %s" -#: import.php:408 import.php:414 +#: import.php:407 import.php:413 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Увоз је успешно завршен, извршено је %d упита." -#: import.php:423 +#: import.php:422 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -897,7 +876,7 @@ msgstr "" "Време извршења скрипта је истекло, ако желите да довршите увоз, молимо " "пошаљите исту датотеку и увоз ће се наставити." -#: import.php:425 +#: import.php:424 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -906,19 +885,19 @@ msgstr "" "да phpMyAdmin неће бити у могућности да заврши овај увоз осим ако не " "повећате временска ограничења у PHP-у" -#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:240 +#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:239 #: user_password.php:110 msgid "Back" msgstr "Назад" -#: index.php:188 +#: index.php:183 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin преферира читаче који подржавају оквире." -#: js/messages.php:25 server_synchronize.php:344 server_synchronize.php:356 -#: server_synchronize.php:372 server_synchronize.php:379 -#: server_synchronize.php:738 server_synchronize.php:766 -#: server_synchronize.php:794 server_synchronize.php:806 +#: js/messages.php:25 server_synchronize.php:343 server_synchronize.php:355 +#: server_synchronize.php:371 server_synchronize.php:378 +#: server_synchronize.php:737 server_synchronize.php:765 +#: server_synchronize.php:793 server_synchronize.php:805 msgid "Click to select" msgstr "" @@ -926,15 +905,15 @@ msgstr "" msgid "Click to unselect" msgstr "" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:88 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:87 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" команда је онемогућена." -#: js/messages.php:30 libraries/mult_submits.inc.php:257 sql.php:187 +#: js/messages.php:30 libraries/mult_submits.inc.php:256 sql.php:186 msgid "Do you really want to " msgstr "Да ли стварно хоћете да " -#: js/messages.php:31 libraries/mult_submits.inc.php:257 sql.php:171 +#: js/messages.php:31 libraries/mult_submits.inc.php:256 sql.php:170 msgid "You are about to DESTROY a complete database!" msgstr "Овим ћете УНИШТИТИ комплетну базу података!" @@ -963,11 +942,11 @@ msgstr "Име домаћина је празно!" msgid "The user name is empty!" msgstr "Име корисника није унето!" -#: js/messages.php:44 server_privileges.php:1228 user_password.php:65 +#: js/messages.php:44 server_privileges.php:1229 user_password.php:65 msgid "The password is empty!" msgstr "Лозинка је празна!" -#: js/messages.php:45 server_privileges.php:1226 user_password.php:68 +#: js/messages.php:45 server_privileges.php:1227 user_password.php:68 msgid "The passwords aren't the same!" msgstr "Лозинке нису идентичне!" @@ -975,27 +954,27 @@ msgstr "Лозинке нису идентичне!" msgid "Cancel" msgstr "Откажи" -#: js/messages.php:52 pmd_save_pos.php:53 +#: js/messages.php:52 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "Измене су сачуване" -#: js/messages.php:53 pmd_relation_upd.php:48 +#: js/messages.php:53 pmd_relation_upd.php:47 msgid "Relation deleted" msgstr "Релација обрисана" -#: js/messages.php:54 pmd_relation_new.php:63 +#: js/messages.php:54 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:55 pmd_relation_new.php:85 +#: js/messages.php:55 pmd_relation_new.php:84 msgid "Internal relation added" msgstr "Додата интерна релација" -#: js/messages.php:56 pmd_relation_new.php:62 pmd_relation_new.php:87 +#: js/messages.php:56 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "Грешка: релација није додата." -#: js/messages.php:57 pmd_relation_new.php:30 +#: js/messages.php:57 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "Грешка: релација већ постоји." @@ -1003,13 +982,13 @@ msgstr "Грешка: релација већ постоји." msgid "Error saving coordinates for Designer." msgstr "Грешка при снимању координата за Дизајнер." -#: js/messages.php:59 libraries/relation.lib.php:94 -#: libraries/relation.lib.php:106 +#: js/messages.php:59 libraries/relation.lib.php:89 +#: libraries/relation.lib.php:101 msgid "General relation features" msgstr "Опште особине релација" -#: js/messages.php:59 libraries/relation.lib.php:88 -#: libraries/relation.lib.php:95 +#: js/messages.php:59 libraries/relation.lib.php:83 +#: libraries/relation.lib.php:90 msgid "Disabled" msgstr "Онемогућено" @@ -1025,7 +1004,7 @@ msgstr "Изабери страни кључ" msgid "Please select the primary key or a unique key" msgstr "Молимо изаберите примарни или јединствени кључ" -#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:547 +#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" @@ -1055,10 +1034,10 @@ msgid "Prev" msgstr "Претходна" #. l10n: Display text for next month link in calendar -#: js/messages.php:81 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:337 -#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:422 -#: tbl_structure.php:800 +#: js/messages.php:81 libraries/common.lib.php:2358 +#: libraries/common.lib.php:2361 libraries/display_tbl.lib.php:336 +#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 +#: tbl_structure.php:798 msgid "Next" msgstr "Следећи" @@ -1132,27 +1111,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1562 +#: js/messages.php:101 libraries/common.lib.php:1566 msgid "Jan" msgstr "јан" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1564 +#: js/messages.php:103 libraries/common.lib.php:1568 msgid "Feb" msgstr "феб" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1566 +#: js/messages.php:105 libraries/common.lib.php:1570 msgid "Mar" msgstr "мар" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1568 +#: js/messages.php:107 libraries/common.lib.php:1572 msgid "Apr" msgstr "апр" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1570 +#: js/messages.php:109 libraries/common.lib.php:1574 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1160,37 +1139,37 @@ msgid "May" msgstr "мај" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1572 +#: js/messages.php:111 libraries/common.lib.php:1576 msgid "Jun" msgstr "јун" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1574 +#: js/messages.php:113 libraries/common.lib.php:1578 msgid "Jul" msgstr "јул" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1576 +#: js/messages.php:115 libraries/common.lib.php:1580 msgid "Aug" msgstr "авг" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1578 +#: js/messages.php:117 libraries/common.lib.php:1582 msgid "Sep" msgstr "сеп" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1580 +#: js/messages.php:119 libraries/common.lib.php:1584 msgid "Oct" msgstr "окт" #. l10n: Short month name -#: js/messages.php:121 libraries/common.lib.php:1582 +#: js/messages.php:121 libraries/common.lib.php:1586 msgid "Nov" msgstr "нов" #. l10n: Short month name -#: js/messages.php:123 libraries/common.lib.php:1584 +#: js/messages.php:123 libraries/common.lib.php:1588 msgid "Dec" msgstr "дец" @@ -1231,37 +1210,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1587 +#: js/messages.php:136 libraries/common.lib.php:1591 msgid "Sun" msgstr "Нед" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1589 +#: js/messages.php:138 libraries/common.lib.php:1593 msgid "Mon" msgstr "Пон" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1591 +#: js/messages.php:140 libraries/common.lib.php:1595 msgid "Tue" msgstr "Уто" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1593 +#: js/messages.php:142 libraries/common.lib.php:1597 msgid "Wed" msgstr "Сре" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1595 +#: js/messages.php:144 libraries/common.lib.php:1599 msgid "Thu" msgstr "Чет" #. l10n: Short week day name -#: js/messages.php:146 libraries/common.lib.php:1597 +#: js/messages.php:146 libraries/common.lib.php:1601 msgid "Fri" msgstr "Пет" #. l10n: Short week day name -#: js/messages.php:148 libraries/common.lib.php:1599 +#: js/messages.php:148 libraries/common.lib.php:1603 msgid "Sat" msgstr "Суб" @@ -1339,18 +1318,13 @@ msgstr "у секунди" msgid "Font size" msgstr "Величина фонта" -#: libraries/File.class.php:336 libraries/File.class.php:424 -#: libraries/File.class.php:561 libraries/File.class.php:700 -msgid "Unknown error in file upload." -msgstr "Непозната грешка при слању датотеке." - -#: libraries/File.class.php:406 +#: libraries/File.class.php:315 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "Послата датотека превазилази вредност директиве upload_max_filesize у php." "ini." -#: libraries/File.class.php:409 +#: libraries/File.class.php:318 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -1358,60 +1332,64 @@ msgstr "" "Послата датотека превазилази вредност директиве MAX_FILE_SIZE која је " "наведена у HTML форми." -#: libraries/File.class.php:412 +#: libraries/File.class.php:321 msgid "The uploaded file was only partially uploaded." msgstr "Послата датотека је само делимично примљена." -#: libraries/File.class.php:415 +#: libraries/File.class.php:324 msgid "Missing a temporary folder." msgstr "Недостаје привремени директоријум." -#: libraries/File.class.php:418 +#: libraries/File.class.php:327 msgid "Failed to write file to disk." msgstr "Неуспело уписивање датотеке на диск." -#: libraries/File.class.php:421 +#: libraries/File.class.php:330 msgid "File upload stopped by extension." msgstr "Пријем датотеке заустављен због екстензије." -#: libraries/File.class.php:898 +#: libraries/File.class.php:333 +msgid "Unknown error in file upload." +msgstr "Непозната грешка при слању датотеке." + +#: libraries/File.class.php:624 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:427 tbl_relation.php:528 +#: libraries/Index.class.php:427 tbl_relation.php:526 msgid "No index defined!" msgstr "Кључ није дефинисан!" -#: libraries/Index.class.php:432 server_databases.php:131 tbl_tracking.php:315 +#: libraries/Index.class.php:432 server_databases.php:129 tbl_tracking.php:310 msgid "Indexes" msgstr "Кључеви" #: libraries/Index.class.php:443 libraries/mult_submits.inc.php:102 -#: libraries/tbl_properties.inc.php:518 tbl_structure.php:32 -#: tbl_structure.php:154 tbl_structure.php:158 tbl_structure.php:473 -#: tbl_tracking.php:321 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:31 +#: tbl_structure.php:153 tbl_structure.php:157 tbl_structure.php:471 +#: tbl_tracking.php:316 msgid "Unique" msgstr "Јединствени" -#: libraries/Index.class.php:444 tbl_tracking.php:322 +#: libraries/Index.class.php:444 tbl_tracking.php:317 msgid "Packed" msgstr "" -#: libraries/Index.class.php:446 tbl_tracking.php:324 +#: libraries/Index.class.php:446 tbl_tracking.php:319 msgid "Cardinality" msgstr "Кардиналност" -#: libraries/Index.class.php:449 tbl_tracking.php:278 tbl_tracking.php:327 +#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322 #, fuzzy msgid "Comment" msgstr "Коментари" #: libraries/Index.class.php:465 libraries/common.lib.php:609 -#: libraries/common.lib.php:1198 libraries/display_tbl.lib.php:1116 +#: libraries/common.lib.php:1191 libraries/display_tbl.lib.php:1115 #: libraries/import.lib.php:1119 libraries/import.lib.php:1143 -#: pdf_pages.php:284 setup/frames/index.inc.php:124 +#: pdf_pages.php:283 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:349 tbl_row_action.php:68 msgid "Edit" msgstr "Промени" @@ -1433,15 +1411,15 @@ msgid "" msgstr "" #: libraries/List_Database.class.php:430 libraries/server_links.inc.php:40 -#: server_databases.php:87 server_privileges.php:1652 +#: server_databases.php:85 server_privileges.php:1656 #: setup/lib/messages.inc.php:107 test/theme.php:92 msgid "Databases" msgstr "Базе" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:259 libraries/import.lib.php:134 pdf_schema.php:31 -#: pdf_schema.php:231 tbl_change.php:1023 tbl_operations.php:212 -#: tbl_relation.php:289 view_operations.php:61 +#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 +#: tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Грешка" @@ -1468,40 +1446,40 @@ msgid_plural "%1$d rows inserted." msgstr[0] "Нема одабраних редова" msgstr[1] "Нема одабраних редова" -#: libraries/StorageEngine.class.php:196 +#: libraries/StorageEngine.class.php:194 msgid "" "There is no detailed status information available for this storage engine." msgstr "Нема детаљнијих информација о статусу за овај погон складиштења." -#: libraries/StorageEngine.class.php:352 +#: libraries/StorageEngine.class.php:354 #, php-format msgid "%s is available on this MySQL server." msgstr "%s је доступан на овом MySQL серверу." -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:357 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s је онемогућен на овом MySQL серверу." -#: libraries/StorageEngine.class.php:359 +#: libraries/StorageEngine.class.php:361 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "Овај MySQL сервер не подржава %s погон складиштења." -#: libraries/Table.class.php:1018 +#: libraries/Table.class.php:1017 msgid "Invalid database" msgstr "Неисправна база података" -#: libraries/Table.class.php:1032 tbl_get_field.php:25 +#: libraries/Table.class.php:1031 tbl_get_field.php:25 msgid "Invalid table name" msgstr "Неисправан назив табеле" -#: libraries/Table.class.php:1047 +#: libraries/Table.class.php:1046 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "Грешка при преименовању табеле %1$s у %2$s" -#: libraries/Table.class.php:1131 +#: libraries/Table.class.php:1129 #, php-format msgid "Table %s has been renamed to %s" msgstr "Табели %s промењено име у %s" @@ -1519,22 +1497,22 @@ msgstr "Преглед не постоји." msgid "take it" msgstr "преузми" -#: libraries/Theme_Manager.class.php:114 +#: libraries/Theme_Manager.class.php:109 #, php-format msgid "Default theme %s not found!" msgstr "Није пронађена подразумевана тема %s!" -#: libraries/Theme_Manager.class.php:152 +#: libraries/Theme_Manager.class.php:147 #, php-format msgid "Theme %s not found!" msgstr "Није пронађена тема %s!" -#: libraries/Theme_Manager.class.php:220 +#: libraries/Theme_Manager.class.php:215 #, php-format msgid "Theme path not found for theme %s!" msgstr "Није пронађена путања до теме за тему %s!" -#: libraries/Theme_Manager.class.php:296 test/theme.php:160 themes.php:20 +#: libraries/Theme_Manager.class.php:291 test/theme.php:160 themes.php:20 #: themes.php:40 msgid "Theme / Style" msgstr "Тема / стил" @@ -1647,19 +1625,19 @@ msgstr "" msgid "Authenticating..." msgstr "" -#: libraries/blobstreaming.lib.php:689 +#: libraries/blobstreaming.lib.php:340 msgid "View image" msgstr "" -#: libraries/blobstreaming.lib.php:693 +#: libraries/blobstreaming.lib.php:344 msgid "Play audio" msgstr "" -#: libraries/blobstreaming.lib.php:698 +#: libraries/blobstreaming.lib.php:349 msgid "View video" msgstr "" -#: libraries/blobstreaming.lib.php:702 +#: libraries/blobstreaming.lib.php:353 msgid "Download file" msgstr "" @@ -1714,7 +1692,7 @@ msgstr "Сервер" msgid "Invalid authentication method set in configuration:" msgstr "Неисправан метод аутентикације је задат у конфигурацији:" -#: libraries/common.inc.php:909 +#: libraries/common.inc.php:908 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Требало би да унапредите ваш %s сервер на верзију %s или новију." @@ -1739,7 +1717,8 @@ msgstr "en" #: libraries/common.lib.php:425 libraries/common.lib.php:427 #: libraries/common.lib.php:429 libraries/common.lib.php:445 #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 -#: libraries/display_export.lib.php:163 libraries/relation.lib.php:84 +#: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 +#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 #: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" @@ -1754,148 +1733,148 @@ msgstr "SQL упит" msgid "MySQL said: " msgstr "MySQL рече: " -#: libraries/common.lib.php:1136 +#: libraries/common.lib.php:1129 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1174 setup/lib/messages.inc.php:350 +#: libraries/common.lib.php:1167 setup/lib/messages.inc.php:350 msgid "Explain SQL" msgstr "Објасни SQL" -#: libraries/common.lib.php:1177 +#: libraries/common.lib.php:1170 msgid "Skip Explain SQL" msgstr "Прескочи објашњавање SQL-a" -#: libraries/common.lib.php:1211 +#: libraries/common.lib.php:1204 msgid "Without PHP Code" msgstr "без PHP кода" -#: libraries/common.lib.php:1214 setup/lib/messages.inc.php:352 +#: libraries/common.lib.php:1207 setup/lib/messages.inc.php:352 msgid "Create PHP Code" msgstr "Направи PHP код" -#: libraries/common.lib.php:1232 server_status.php:451 +#: libraries/common.lib.php:1225 server_status.php:451 #: setup/lib/messages.inc.php:351 msgid "Refresh" msgstr "Освежи" -#: libraries/common.lib.php:1241 +#: libraries/common.lib.php:1234 msgid "Skip Validate SQL" msgstr "Прескочи проверу SQL-a" -#: libraries/common.lib.php:1244 setup/lib/messages.inc.php:353 +#: libraries/common.lib.php:1237 setup/lib/messages.inc.php:353 msgid "Validate SQL" msgstr "Провери SQL" -#: libraries/common.lib.php:1283 +#: libraries/common.lib.php:1287 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1285 +#: libraries/common.lib.php:1289 #, fuzzy #| msgid "Engines" msgid "Inline" msgstr "Складиштења" -#: libraries/common.lib.php:1339 libraries/common.lib.php:1354 +#: libraries/common.lib.php:1343 libraries/common.lib.php:1358 msgid "Profiling" msgstr "Профилисање" -#: libraries/common.lib.php:1358 libraries/tbl_triggers.lib.php:27 +#: libraries/common.lib.php:1362 libraries/tbl_triggers.lib.php:27 #: server_processlist.php:57 msgid "Time" msgstr "Време" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "B" msgstr "бајтова" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "KiB" msgstr "КБ" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "MiB" msgstr "МБ" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "GiB" msgstr "ГБ" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "TiB" msgstr "ТБ" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "PiB" msgstr "ПБ" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "EiB" msgstr "ЕБ" #. l10n: Thousands separator -#: libraries/common.lib.php:1424 +#: libraries/common.lib.php:1428 msgid "," msgstr "," #. l10n: Decimal separator -#: libraries/common.lib.php:1426 +#: libraries/common.lib.php:1430 msgid "." msgstr "." #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1603 +#: libraries/common.lib.php:1607 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%d. %B %Y. у %H:%M" -#: libraries/common.lib.php:1909 +#: libraries/common.lib.php:1913 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s дана, %s сати, %s минута и %s секунди" -#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 -#: libraries/display_tbl.lib.php:289 server_status.php:718 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 +#: libraries/display_tbl.lib.php:288 server_status.php:718 msgid "Begin" msgstr "Почетак" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 -#: libraries/display_tbl.lib.php:290 server_binlog.php:154 +#: libraries/common.lib.php:2328 libraries/common.lib.php:2331 +#: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "Претходна" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 -#: libraries/display_tbl.lib.php:352 +#: libraries/common.lib.php:2359 libraries/common.lib.php:2362 +#: libraries/display_tbl.lib.php:351 msgid "End" msgstr "Крај" -#: libraries/common.lib.php:2429 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "Пређи на базу "%s"." -#: libraries/common.lib.php:2448 +#: libraries/common.lib.php:2453 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Ова функционалност %s је погођена познатом грешком, видите %s" -#: libraries/common.lib.php:2828 libraries/common.lib.php:2835 -#: libraries/db_links.inc.php:67 libraries/export/sql.php:24 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 +#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 -#: libraries/tbl_links.inc.php:59 querywindow.php:89 test/theme.php:96 +#: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2837 libraries/db_links.inc.php:103 -#: libraries/tbl_links.inc.php:94 libraries/tbl_links.inc.php:116 -#: view_operations.php:88 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: view_operations.php:87 msgid "Operations" msgstr "Операције" -#: libraries/core.lib.php:282 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1912,38 +1891,38 @@ msgstr "Догађаји" msgid "Name" msgstr "Име" -#: libraries/db_links.inc.php:44 +#: libraries/db_links.inc.php:43 #, php-format msgid "Database %s has been dropped." msgstr "База %s је одбачена." -#: libraries/db_links.inc.php:56 libraries/db_links.inc.php:57 -#: libraries/db_links.inc.php:58 +#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 +#: libraries/db_links.inc.php:57 msgid "Database seems to be empty!" msgstr "База је изгледа празна!" -#: libraries/db_links.inc.php:80 libraries/relation.lib.php:142 -#: libraries/tbl_links.inc.php:68 +#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:85 +#: libraries/db_links.inc.php:84 msgid "Query" msgstr "Упит по примеру" -#: libraries/db_links.inc.php:90 libraries/relation.lib.php:138 +#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 msgid "Designer" msgstr "Дизајнер" -#: libraries/db_links.inc.php:97 libraries/server_links.inc.php:87 -#: libraries/tbl_links.inc.php:90 pmd_pdf.php:83 pmd_pdf.php:109 +#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Увоз" -#: libraries/db_links.inc.php:110 libraries/server_links.inc.php:65 -#: server_privileges.php:111 server_privileges.php:1714 -#: server_privileges.php:2063 test/theme.php:116 +#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: server_privileges.php:110 server_privileges.php:1718 +#: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" msgstr "Привилегије" @@ -1955,14 +1934,14 @@ msgstr "Рутине" msgid "Return type" msgstr "Повратни тип" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1847 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1806 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "Може бити приближно. Видите FAQ 3.11" -#: libraries/db_structure.lib.php:60 server_databases.php:141 -#: tbl_printview.php:334 tbl_structure.php:681 +#: libraries/db_structure.lib.php:60 server_databases.php:139 +#: tbl_printview.php:333 tbl_structure.php:679 msgid "Overhead" msgstr "Прекорачење" @@ -1981,7 +1960,7 @@ msgstr "Сервер не одговара" msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "(или прикључак локалног MySQL сервера није исправно подешен)" -#: libraries/dbi/mysql.dbi.lib.php:358 tbl_structure.php:607 +#: libraries/dbi/mysql.dbi.lib.php:358 tbl_structure.php:605 msgid "Details..." msgstr "" @@ -1991,22 +1970,22 @@ msgid "Change password" msgstr "Промени лозинку" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:807 +#: libraries/replication_gui.lib.php:347 server_privileges.php:806 msgid "No Password" msgstr "Нема лозинке" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1530 server_synchronize.php:1174 +#: libraries/replication_gui.lib.php:351 server_privileges.php:795 +#: server_privileges.php:799 server_privileges.php:810 +#: server_privileges.php:1534 server_synchronize.php:1173 msgid "Password" msgstr "Лозинка" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:815 server_privileges.php:818 +#: server_privileges.php:814 server_privileges.php:817 msgid "Re-type" msgstr "Поновите унос" @@ -2029,8 +2008,8 @@ msgstr "Направи нову базу података" msgid "Create" msgstr "Направи" -#: libraries/display_create_database.lib.php:39 server_privileges.php:113 -#: server_privileges.php:1419 server_replication.php:34 +#: libraries/display_create_database.lib.php:39 server_privileges.php:112 +#: server_privileges.php:1423 server_replication.php:33 msgid "No Privileges" msgstr "Нема привилегија" @@ -2051,51 +2030,51 @@ msgstr "Направи нову табелу у бази %s" msgid "Number of columns" msgstr "Број поља" -#: libraries/display_export.lib.php:41 +#: libraries/display_export.lib.php:35 msgid "Could not load export plugins, please check your installation!" msgstr "" "Није могуће учитати додатке за извоз, молимо проверите своју инсталацију!" -#: libraries/display_export.lib.php:106 +#: libraries/display_export.lib.php:100 #, fuzzy, php-format #| msgid "Dump %s row(s) starting at record # %s" msgid "Dump %s row(s) starting at row # %s" msgstr "Прикажи %s редова почевши од реда %s." -#: libraries/display_export.lib.php:114 +#: libraries/display_export.lib.php:108 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:124 setup/lib/messages.inc.php:79 +#: libraries/display_export.lib.php:118 setup/lib/messages.inc.php:79 msgid "Save as file" msgstr "Сачувај као датотеку" -#: libraries/display_export.lib.php:133 +#: libraries/display_export.lib.php:127 #, php-format msgid "Save on server in %s directory" msgstr "Сачувај на сервер у директоријум %s" -#: libraries/display_export.lib.php:141 setup/lib/messages.inc.php:87 +#: libraries/display_export.lib.php:135 setup/lib/messages.inc.php:87 msgid "Overwrite existing file(s)" msgstr "Препиши постојеће датотеке" -#: libraries/display_export.lib.php:147 +#: libraries/display_export.lib.php:141 msgid "File name template" msgstr "Шаблон имена датотеке" -#: libraries/display_export.lib.php:151 +#: libraries/display_export.lib.php:145 msgid "server name" msgstr "назив сервера" -#: libraries/display_export.lib.php:154 +#: libraries/display_export.lib.php:148 msgid "database name" msgstr "назив базе" -#: libraries/display_export.lib.php:157 +#: libraries/display_export.lib.php:151 msgid "table name" msgstr "назив табеле" -#: libraries/display_export.lib.php:161 +#: libraries/display_export.lib.php:155 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2106,39 +2085,39 @@ msgstr "" "користите стрингове за форматирање времена. Такође ће се десити и следеће " "трансформације: %3$s. Преостали текст ће остати како јесте." -#: libraries/display_export.lib.php:202 +#: libraries/display_export.lib.php:196 msgid "remember template" msgstr "запамти шаблон" -#: libraries/display_export.lib.php:210 libraries/display_import.lib.php:177 +#: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 #: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 msgid "Character set of the file:" msgstr "Карактер сет датотеке:" -#: libraries/display_export.lib.php:235 setup/lib/messages.inc.php:81 +#: libraries/display_export.lib.php:229 setup/lib/messages.inc.php:81 msgid "Compression" msgstr "Компресија" -#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:196 -#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:529 -#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:574 -#: server_privileges.php:1867 server_processlist.php:74 +#: libraries/display_export.lib.php:234 libraries/display_import.lib.php:196 +#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:528 +#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:573 +#: server_privileges.php:1871 server_processlist.php:74 msgid "None" msgstr "нема" -#: libraries/display_export.lib.php:247 +#: libraries/display_export.lib.php:241 msgid "\"zipped\"" msgstr "\"зиповано\"" -#: libraries/display_export.lib.php:253 +#: libraries/display_export.lib.php:247 msgid "\"gzipped\"" msgstr "\"гзип-овано\"" -#: libraries/display_export.lib.php:259 +#: libraries/display_export.lib.php:253 msgid "\"bzipped\"" msgstr "\"бзип-овано\"" -#: libraries/display_export.lib.php:274 libraries/export/sql.php:42 +#: libraries/display_export.lib.php:268 libraries/export/sql.php:42 #: libraries/import/sql.php:31 msgid "SQL compatibility mode" msgstr "Мод SQL компатибилности" @@ -2173,12 +2152,12 @@ msgid "File uploads are not allowed on this server." msgstr "Слање датотека на овај сервер није дозвољено." #: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 -#: tbl_change.php:1024 +#: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "Директоријум који сте изабрали за слање није доступан" #: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 -#: tbl_change.php:1027 +#: tbl_change.php:925 msgid "web server upload directory" msgstr "директоријум за слање веб сервера " @@ -2264,43 +2243,43 @@ msgstr "Димензије папира" msgid "Language" msgstr "Језик" -#: libraries/display_tbl.lib.php:303 +#: libraries/display_tbl.lib.php:302 #, php-format msgid "%d is not valid row number." msgstr "%d није исправан број реда." -#: libraries/display_tbl.lib.php:309 +#: libraries/display_tbl.lib.php:308 #, fuzzy #| msgid "row(s) starting from record #" msgid "row(s) starting from row #" msgstr " редова почев од реда" -#: libraries/display_tbl.lib.php:315 +#: libraries/display_tbl.lib.php:314 msgid "horizontal" msgstr "хоризонталном" -#: libraries/display_tbl.lib.php:316 +#: libraries/display_tbl.lib.php:315 msgid "horizontal (rotated headers)" msgstr "хоризонталном (ротирана заглавља)" -#: libraries/display_tbl.lib.php:317 +#: libraries/display_tbl.lib.php:316 msgid "vertical" msgstr "вертикалном" -#: libraries/display_tbl.lib.php:323 +#: libraries/display_tbl.lib.php:322 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "у %s моду и понови заглавље после сваког %s реда" -#: libraries/display_tbl.lib.php:345 +#: libraries/display_tbl.lib.php:344 msgid "This operation could take a long time. Proceed anyway?" msgstr "Ова операција може да потраје. Да ли да наставимо?" -#: libraries/display_tbl.lib.php:511 +#: libraries/display_tbl.lib.php:510 msgid "Sort by key" msgstr "Сортирај по кључу" -#: libraries/display_tbl.lib.php:554 libraries/export/codegen.php:38 +#: libraries/display_tbl.lib.php:553 libraries/export/codegen.php:38 #: libraries/export/csv.php:29 libraries/export/excel.php:34 #: libraries/export/htmlword.php:28 libraries/export/latex.php:32 #: libraries/export/mediawiki.php:21 libraries/export/ods.php:26 @@ -2310,100 +2289,100 @@ msgstr "Сортирај по кључу" #: libraries/export/xlsx.php:26 libraries/export/xml.php:23 #: libraries/export/yaml.php:27 libraries/import.lib.php:1114 #: libraries/import.lib.php:1136 libraries/import/csv.php:31 -#: libraries/import/docsql.php:33 libraries/import/ldi.php:46 +#: libraries/import/docsql.php:32 libraries/import/ldi.php:46 #: libraries/import/ods.php:30 libraries/import/sql.php:19 #: libraries/import/xls.php:25 libraries/import/xlsx.php:25 -#: libraries/import/xml.php:25 tbl_select.php:264 tbl_structure.php:752 +#: libraries/import/xml.php:25 tbl_select.php:263 tbl_structure.php:750 msgid "Options" msgstr "Опције" -#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:569 +#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:568 msgid "Partial Texts" msgstr "Део текста" -#: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:573 +#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:572 msgid "Full Texts" msgstr "Пун текст" -#: libraries/display_tbl.lib.php:586 +#: libraries/display_tbl.lib.php:585 #, fuzzy msgid "Relational key" msgstr "Релациона схема" -#: libraries/display_tbl.lib.php:587 +#: libraries/display_tbl.lib.php:586 #, fuzzy #| msgid "Relational schema" msgid "Relational display column" msgstr "Релациона схема" -#: libraries/display_tbl.lib.php:594 +#: libraries/display_tbl.lib.php:593 msgid "Show binary contents" msgstr "" -#: libraries/display_tbl.lib.php:596 +#: libraries/display_tbl.lib.php:595 msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:598 +#: libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "" -#: libraries/display_tbl.lib.php:606 pmd_general.php:140 tbl_change.php:312 -#: tbl_change.php:318 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:307 +#: tbl_change.php:313 msgid "Hide" msgstr "Сакриј" -#: libraries/display_tbl.lib.php:606 libraries/relation.lib.php:122 -#: libraries/tbl_properties.inc.php:143 transformation_overview.php:46 +#: libraries/display_tbl.lib.php:605 libraries/relation.lib.php:117 +#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46 msgid "Browser transformation" msgstr "Транформације читача" -#: libraries/display_tbl.lib.php:1125 libraries/display_tbl.lib.php:1129 -#: libraries/display_tbl.lib.php:1131 +#: libraries/display_tbl.lib.php:1124 libraries/display_tbl.lib.php:1128 +#: libraries/display_tbl.lib.php:1130 msgid "Execute bookmarked query" msgstr "Изврши упамћен упит" -#: libraries/display_tbl.lib.php:1144 libraries/display_tbl.lib.php:1156 +#: libraries/display_tbl.lib.php:1143 libraries/display_tbl.lib.php:1155 msgid "The row has been deleted" msgstr "Ред је обрисан" -#: libraries/display_tbl.lib.php:1183 libraries/display_tbl.lib.php:2055 +#: libraries/display_tbl.lib.php:1182 libraries/display_tbl.lib.php:2014 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "Обустави" -#: libraries/display_tbl.lib.php:1933 +#: libraries/display_tbl.lib.php:1892 msgid "in query" msgstr "у упиту" -#: libraries/display_tbl.lib.php:1951 +#: libraries/display_tbl.lib.php:1910 msgid "Showing rows" msgstr "Приказ записа" -#: libraries/display_tbl.lib.php:1961 +#: libraries/display_tbl.lib.php:1920 msgid "total" msgstr "укупно" -#: libraries/display_tbl.lib.php:1969 sql.php:523 +#: libraries/display_tbl.lib.php:1928 sql.php:522 #, php-format msgid "Query took %01.4f sec" msgstr "Упит је трајао %01.4f секунди" -#: libraries/display_tbl.lib.php:2088 libraries/mult_submits.inc.php:112 -#: querywindow.php:115 querywindow.php:119 querywindow.php:122 -#: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:469 +#: libraries/display_tbl.lib.php:2047 libraries/mult_submits.inc.php:112 +#: querywindow.php:114 querywindow.php:118 querywindow.php:121 +#: tbl_structure.php:23 tbl_structure.php:148 tbl_structure.php:467 msgid "Change" msgstr "Промени" -#: libraries/display_tbl.lib.php:2158 +#: libraries/display_tbl.lib.php:2117 msgid "Query results operations" msgstr "Операције на резултатима упита" -#: libraries/display_tbl.lib.php:2186 +#: libraries/display_tbl.lib.php:2145 msgid "Print view (with full texts)" msgstr "Поглед за штампу (са пуним текстом)" -#: libraries/display_tbl.lib.php:2359 +#: libraries/display_tbl.lib.php:2318 msgid "Link not found" msgstr "Веза није пронађена" @@ -2460,9 +2439,9 @@ msgstr "InnoDB статус" msgid "Buffer Pool Usage" msgstr "Коришћење скупа прихватника" -#: libraries/engines/innodb.lib.php:168 server_databases.php:136 -#: server_databases.php:304 server_status.php:524 server_status.php:585 -#: server_status.php:606 tbl_printview.php:349 tbl_structure.php:695 +#: libraries/engines/innodb.lib.php:168 server_databases.php:134 +#: server_databases.php:302 server_status.php:524 server_status.php:585 +#: server_status.php:606 tbl_printview.php:348 tbl_structure.php:693 msgid "Total" msgstr "Укупно" @@ -2598,6 +2577,78 @@ msgstr "" "Прихватник који се алоцира при сортирању MyISAM индекса за време операције " "REPAIR TABLE или при креирању индекса са CREATE INDEX или ALTER TABLE." +#: libraries/engines/pbms.lib.php:31 +msgid "Garbage Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:32 +msgid "The percentage of garbage in a repository file before it is compacted." +msgstr "" + +#: libraries/engines/pbms.lib.php:36 libraries/replication_gui.lib.php:69 +#: server_synchronize.php:1161 +#, fuzzy +msgid "Port" +msgstr "Сортирање" + +#: libraries/engines/pbms.lib.php:37 +msgid "" +"The port for the PBMS stream-based communications. Setting this value to 0 " +"will disable HTTP communication with the daemon." +msgstr "" + +#: libraries/engines/pbms.lib.php:41 +msgid "Repository Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:42 +msgid "" +"The maximum size of a BLOB repository file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:46 +msgid "Temp Blob Timeout" +msgstr "" + +#: libraries/engines/pbms.lib.php:47 +msgid "" +"The timeout, in seconds, for temporary BLOBs. Uploaded BLOB data is removed " +"after this time, unless they are referenced by a record in the database." +msgstr "" + +#: libraries/engines/pbms.lib.php:51 +msgid "Temp Log Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:52 +msgid "" +"The maximum size of a temporary BLOB log file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:56 +msgid "Max Keep Alive" +msgstr "" + +#: libraries/engines/pbms.lib.php:57 +msgid "" +"The timeout for inactive connection with the keep-alive flag set. After this " +"time the connection will be closed. The time-out is in milliseconds (1/1000)." +msgstr "" + +#: libraries/engines/pbms.lib.php:61 +msgid "Metadata Headers" +msgstr "" + +#: libraries/engines/pbms.lib.php:62 +msgid "" +"A \":\" delimited list of metadata headers to be used to initialize the " +"pbms_metadata_header table when a database is created." +msgstr "" + #: libraries/engines/pbxt.lib.php:22 msgid "Index cache size" msgstr "" @@ -2723,7 +2774,7 @@ msgid "" msgstr "" #: libraries/export/codegen.php:36 setup/lib/messages.inc.php:85 -#: tbl_printview.php:374 tbl_structure.php:736 +#: tbl_printview.php:373 tbl_structure.php:734 msgid "Format" msgstr "Формат" @@ -2794,9 +2845,9 @@ msgstr "Microsoft Word 2000" #: libraries/export/htmlword.php:23 libraries/export/latex.php:59 #: libraries/export/latex.php:205 libraries/export/odt.php:47 #: libraries/export/sql.php:105 libraries/export/sql.php:865 -#: libraries/export/texytext.php:27 server_databases.php:126 -#: server_privileges.php:576 server_replication.php:315 tbl_printview.php:315 -#: tbl_structure.php:664 +#: libraries/export/texytext.php:27 server_databases.php:124 +#: server_privileges.php:575 server_replication.php:314 tbl_printview.php:314 +#: tbl_structure.php:662 msgid "Data" msgstr "Подаци" @@ -2847,13 +2898,13 @@ msgid "Label key" msgstr "Ознака кључа" #: libraries/export/latex.php:46 libraries/export/odt.php:34 -#: libraries/export/sql.php:90 tbl_relation.php:398 +#: libraries/export/sql.php:90 tbl_relation.php:396 msgid "Relations" msgstr "Релације" #: libraries/export/latex.php:52 libraries/export/odt.php:40 #: libraries/export/odt.php:317 libraries/export/sql.php:94 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "MIME-типови" @@ -2861,10 +2912,10 @@ msgstr "MIME-типови" #: libraries/export/xml.php:101 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1529 server_privileges.php:2061 -#: server_processlist.php:54 server_synchronize.php:1158 +#: libraries/replication_gui.lib.php:331 server_privileges.php:730 +#: server_privileges.php:733 server_privileges.php:789 +#: server_privileges.php:1533 server_privileges.php:2065 +#: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "Домаћин" @@ -3057,8 +3108,8 @@ msgstr "Тип извоза" msgid "Export contents" msgstr "Тип извоза" -#: libraries/footer.inc.php:182 libraries/footer.inc.php:193 -#: libraries/footer.inc.php:196 +#: libraries/footer.inc.php:180 libraries/footer.inc.php:191 +#: libraries/footer.inc.php:194 msgid "Open new phpMyAdmin window" msgstr "Отвори нови phpMyAdmin прозор" @@ -3075,7 +3126,7 @@ msgstr "SQL резултат" msgid "Generated by" msgstr "Генерисао" -#: libraries/import.lib.php:151 sql.php:519 tbl_change.php:180 +#: libraries/import.lib.php:151 sql.php:518 tbl_change.php:175 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL је вратио празан резултат (нула редова)." @@ -3134,7 +3185,7 @@ msgstr "Игнориши дуплициране редове" msgid "Column names in first row" msgstr "" -#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:501 +#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:500 #: view_create.php:147 msgid "Column names" msgstr "Имена колона" @@ -3161,12 +3212,12 @@ msgstr "Неисправан формат CSV улаза на линији %d." msgid "Invalid column count in CSV input on line %d." msgstr "Неисправан број поља у CSV улазу на линији %d." -#: libraries/import/docsql.php:28 +#: libraries/import/docsql.php:27 msgid "DocSQL" msgstr "DocSQL" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 -#: server_synchronize.php:427 server_synchronize.php:870 +#: libraries/import/docsql.php:30 libraries/tbl_properties.inc.php:616 +#: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "Назив табеле" @@ -3223,26 +3274,26 @@ msgstr "нема" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:512 -#: tbl_structure.php:28 tbl_structure.php:152 tbl_structure.php:156 -#: tbl_structure.php:472 +#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:511 +#: tbl_structure.php:27 tbl_structure.php:151 tbl_structure.php:155 +#: tbl_structure.php:470 msgid "Primary" msgstr "Примарни" #: libraries/mult_submits.inc.php:97 libraries/tbl_properties.inc.php:115 -#: libraries/tbl_properties.inc.php:524 tbl_printview.php:324 -#: tbl_structure.php:30 tbl_structure.php:153 tbl_structure.php:157 -#: tbl_structure.php:474 tbl_structure.php:672 +#: libraries/tbl_properties.inc.php:523 tbl_printview.php:323 +#: tbl_structure.php:29 tbl_structure.php:152 tbl_structure.php:156 +#: tbl_structure.php:472 tbl_structure.php:670 msgid "Index" msgstr "Кључ" -#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:530 -#: tbl_structure.php:34 tbl_structure.php:155 tbl_structure.php:159 -#: tbl_structure.php:477 +#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:529 +#: tbl_structure.php:33 tbl_structure.php:154 tbl_structure.php:158 +#: tbl_structure.php:475 msgid "Fulltext" msgstr "Текст кључ" -#: libraries/mult_submits.inc.php:434 tbl_replace.php:330 +#: libraries/mult_submits.inc.php:433 tbl_replace.php:330 msgid "No change" msgstr "Нема измена" @@ -3250,190 +3301,190 @@ msgstr "Нема измена" msgid "Charset" msgstr "Карактер сет" -#: libraries/mysql_charsets.lib.php:210 libraries/mysql_charsets.lib.php:411 -#: tbl_change.php:515 +#: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 +#: tbl_change.php:510 msgid "Binary" msgstr "Бинарни" -#: libraries/mysql_charsets.lib.php:222 +#: libraries/mysql_charsets.lib.php:214 msgid "Bulgarian" msgstr "Бугарски" -#: libraries/mysql_charsets.lib.php:226 libraries/mysql_charsets.lib.php:351 +#: libraries/mysql_charsets.lib.php:218 libraries/mysql_charsets.lib.php:343 msgid "Simplified Chinese" msgstr "Поједностављени кинески" -#: libraries/mysql_charsets.lib.php:228 libraries/mysql_charsets.lib.php:371 +#: libraries/mysql_charsets.lib.php:220 libraries/mysql_charsets.lib.php:363 msgid "Traditional Chinese" msgstr "Традиционални кинески" -#: libraries/mysql_charsets.lib.php:232 libraries/mysql_charsets.lib.php:418 +#: libraries/mysql_charsets.lib.php:224 libraries/mysql_charsets.lib.php:410 msgid "case-insensitive" msgstr "Не разликује мала и велика слова" -#: libraries/mysql_charsets.lib.php:235 libraries/mysql_charsets.lib.php:420 +#: libraries/mysql_charsets.lib.php:227 libraries/mysql_charsets.lib.php:412 msgid "case-sensitive" msgstr "Разликује мала и велика слова" -#: libraries/mysql_charsets.lib.php:238 +#: libraries/mysql_charsets.lib.php:230 msgid "Croatian" msgstr "Хрватски" -#: libraries/mysql_charsets.lib.php:241 +#: libraries/mysql_charsets.lib.php:233 msgid "Czech" msgstr "Чешки" -#: libraries/mysql_charsets.lib.php:244 +#: libraries/mysql_charsets.lib.php:236 msgid "Danish" msgstr "Дански" -#: libraries/mysql_charsets.lib.php:247 +#: libraries/mysql_charsets.lib.php:239 msgid "English" msgstr "Енглески" -#: libraries/mysql_charsets.lib.php:250 +#: libraries/mysql_charsets.lib.php:242 msgid "Esperanto" msgstr "Есперанто" -#: libraries/mysql_charsets.lib.php:253 +#: libraries/mysql_charsets.lib.php:245 msgid "Estonian" msgstr "Естонски" -#: libraries/mysql_charsets.lib.php:256 libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:248 libraries/mysql_charsets.lib.php:251 msgid "German" msgstr "Немачки" -#: libraries/mysql_charsets.lib.php:256 +#: libraries/mysql_charsets.lib.php:248 msgid "dictionary" msgstr "речник" -#: libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:251 msgid "phone book" msgstr "телефонски именик" -#: libraries/mysql_charsets.lib.php:262 +#: libraries/mysql_charsets.lib.php:254 msgid "Hungarian" msgstr "Мађарски" -#: libraries/mysql_charsets.lib.php:265 +#: libraries/mysql_charsets.lib.php:257 msgid "Icelandic" msgstr "Исландски" -#: libraries/mysql_charsets.lib.php:268 libraries/mysql_charsets.lib.php:358 +#: libraries/mysql_charsets.lib.php:260 libraries/mysql_charsets.lib.php:350 msgid "Japanese" msgstr "Јапански" -#: libraries/mysql_charsets.lib.php:271 +#: libraries/mysql_charsets.lib.php:263 msgid "Latvian" msgstr "Летонски" -#: libraries/mysql_charsets.lib.php:274 +#: libraries/mysql_charsets.lib.php:266 msgid "Lithuanian" msgstr "Литвански" -#: libraries/mysql_charsets.lib.php:277 libraries/mysql_charsets.lib.php:380 +#: libraries/mysql_charsets.lib.php:269 libraries/mysql_charsets.lib.php:372 msgid "Korean" msgstr "Корејски" -#: libraries/mysql_charsets.lib.php:280 +#: libraries/mysql_charsets.lib.php:272 msgid "Persian" msgstr "Персијски" -#: libraries/mysql_charsets.lib.php:283 +#: libraries/mysql_charsets.lib.php:275 msgid "Polish" msgstr "Пољски" -#: libraries/mysql_charsets.lib.php:286 libraries/mysql_charsets.lib.php:334 +#: libraries/mysql_charsets.lib.php:278 libraries/mysql_charsets.lib.php:326 msgid "West European" msgstr "Западноевропски" -#: libraries/mysql_charsets.lib.php:289 +#: libraries/mysql_charsets.lib.php:281 msgid "Romanian" msgstr "Румунски" -#: libraries/mysql_charsets.lib.php:292 +#: libraries/mysql_charsets.lib.php:284 msgid "Slovak" msgstr "Словачки" -#: libraries/mysql_charsets.lib.php:295 +#: libraries/mysql_charsets.lib.php:287 msgid "Slovenian" msgstr "Словеначи" -#: libraries/mysql_charsets.lib.php:298 +#: libraries/mysql_charsets.lib.php:290 msgid "Spanish" msgstr "Шпански" -#: libraries/mysql_charsets.lib.php:301 +#: libraries/mysql_charsets.lib.php:293 msgid "Traditional Spanish" msgstr "Традиционални шпански" -#: libraries/mysql_charsets.lib.php:304 libraries/mysql_charsets.lib.php:401 +#: libraries/mysql_charsets.lib.php:296 libraries/mysql_charsets.lib.php:393 msgid "Swedish" msgstr "Шведски" -#: libraries/mysql_charsets.lib.php:307 libraries/mysql_charsets.lib.php:404 +#: libraries/mysql_charsets.lib.php:299 libraries/mysql_charsets.lib.php:396 msgid "Thai" msgstr "Тајски" -#: libraries/mysql_charsets.lib.php:310 libraries/mysql_charsets.lib.php:398 +#: libraries/mysql_charsets.lib.php:302 libraries/mysql_charsets.lib.php:390 msgid "Turkish" msgstr "Турски" -#: libraries/mysql_charsets.lib.php:313 libraries/mysql_charsets.lib.php:395 +#: libraries/mysql_charsets.lib.php:305 libraries/mysql_charsets.lib.php:387 msgid "Ukrainian" msgstr "Украјински" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 msgid "Unicode" msgstr "Уникод" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 -#: libraries/mysql_charsets.lib.php:334 libraries/mysql_charsets.lib.php:341 -#: libraries/mysql_charsets.lib.php:363 libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 +#: libraries/mysql_charsets.lib.php:326 libraries/mysql_charsets.lib.php:333 +#: libraries/mysql_charsets.lib.php:355 libraries/mysql_charsets.lib.php:366 msgid "multilingual" msgstr "вишејезички" -#: libraries/mysql_charsets.lib.php:341 +#: libraries/mysql_charsets.lib.php:333 msgid "Central European" msgstr "Централноевропски" -#: libraries/mysql_charsets.lib.php:346 +#: libraries/mysql_charsets.lib.php:338 msgid "Russian" msgstr "Руски" -#: libraries/mysql_charsets.lib.php:363 +#: libraries/mysql_charsets.lib.php:355 msgid "Baltic" msgstr "Балтички" -#: libraries/mysql_charsets.lib.php:368 +#: libraries/mysql_charsets.lib.php:360 msgid "Armenian" msgstr "Јерменски" -#: libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:366 msgid "Cyrillic" msgstr "Ћирилични" -#: libraries/mysql_charsets.lib.php:377 +#: libraries/mysql_charsets.lib.php:369 msgid "Arabic" msgstr "Арапски" -#: libraries/mysql_charsets.lib.php:383 +#: libraries/mysql_charsets.lib.php:375 msgid "Hebrew" msgstr "Хебрејски" -#: libraries/mysql_charsets.lib.php:386 +#: libraries/mysql_charsets.lib.php:378 msgid "Georgian" msgstr "Грузијски" -#: libraries/mysql_charsets.lib.php:389 +#: libraries/mysql_charsets.lib.php:381 msgid "Greek" msgstr "Грчки" -#: libraries/mysql_charsets.lib.php:392 +#: libraries/mysql_charsets.lib.php:384 msgid "Czech-Slovak" msgstr "Чешко-словачки" -#: libraries/mysql_charsets.lib.php:407 libraries/mysql_charsets.lib.php:414 +#: libraries/mysql_charsets.lib.php:399 libraries/mysql_charsets.lib.php:406 msgid "unknown" msgstr "непознат" @@ -3459,68 +3510,68 @@ msgstr "Прозор за упите" msgid "This format has no options" msgstr "Не постоје опције за овај формат" -#: libraries/relation.lib.php:82 +#: libraries/relation.lib.php:77 msgid "not OK" msgstr "није у реду" -#: libraries/relation.lib.php:86 pmd_general.php:339 +#: libraries/relation.lib.php:81 pmd_general.php:339 msgid "OK" msgstr "У реду" -#: libraries/relation.lib.php:87 +#: libraries/relation.lib.php:82 msgid "Enabled" msgstr "Омогућено" -#: libraries/relation.lib.php:110 +#: libraries/relation.lib.php:105 msgid "Display Features" msgstr "Прикажи особине" -#: libraries/relation.lib.php:116 +#: libraries/relation.lib.php:111 msgid "Creation of PDFs" msgstr "Прављење PDF-ova" -#: libraries/relation.lib.php:120 +#: libraries/relation.lib.php:115 msgid "Displaying Column Comments" msgstr "Приказујем коментаре колоне" -#: libraries/relation.lib.php:125 +#: libraries/relation.lib.php:120 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "Молимо погледајте у документацији како се ажурира табела Column_comments" -#: libraries/relation.lib.php:130 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 msgid "Bookmarked SQL query" msgstr "Запамћен SQL-упит" -#: libraries/relation.lib.php:134 querywindow.php:99 querywindow.php:207 +#: libraries/relation.lib.php:129 querywindow.php:98 querywindow.php:205 msgid "SQL history" msgstr "SQL историјат" -#: libraries/relation.lib.php:146 +#: libraries/relation.lib.php:141 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:148 +#: libraries/relation.lib.php:143 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" -#: libraries/relation.lib.php:149 +#: libraries/relation.lib.php:144 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:150 +#: libraries/relation.lib.php:145 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:151 +#: libraries/relation.lib.php:146 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1158 +#: libraries/relation.lib.php:1153 msgid "no description" msgstr "нема описа" @@ -3528,7 +3579,7 @@ msgstr "нема описа" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:53 server_replication.php:346 +#: libraries/replication_gui.lib.php:53 server_replication.php:345 msgid "Change or reconfigure master server" msgstr "" @@ -3540,17 +3591,12 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:711 -#: server_privileges.php:714 server_privileges.php:721 -#: server_synchronize.php:1170 +#: libraries/replication_gui.lib.php:261 server_privileges.php:710 +#: server_privileges.php:713 server_privileges.php:720 +#: server_synchronize.php:1169 msgid "User name" msgstr "Име корисника" -#: libraries/replication_gui.lib.php:69 server_synchronize.php:1162 -#, fuzzy -msgid "Port" -msgstr "Сортирање" - #: libraries/replication_gui.lib.php:105 #, fuzzy msgid "Master status" @@ -3567,8 +3613,8 @@ msgid "Variable" msgstr "Променљива" #: libraries/replication_gui.lib.php:117 server_status.php:737 -#: tbl_change.php:322 tbl_printview.php:368 tbl_select.php:137 -#: tbl_structure.php:728 +#: tbl_change.php:317 tbl_printview.php:367 tbl_select.php:136 +#: tbl_structure.php:726 msgid "Value" msgstr "Вредност" @@ -3582,38 +3628,38 @@ msgid "" "this list." msgstr "" -#: libraries/replication_gui.lib.php:242 server_replication.php:193 +#: libraries/replication_gui.lib.php:242 server_replication.php:192 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:256 server_privileges.php:716 +#: libraries/replication_gui.lib.php:256 server_privileges.php:715 msgid "Any user" msgstr "Било који корисник" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1920 server_privileges.php:1950 +#: libraries/replication_gui.lib.php:348 server_privileges.php:716 +#: server_privileges.php:783 server_privileges.php:807 +#: server_privileges.php:1924 server_privileges.php:1954 msgid "Use text field" msgstr "Користи текст поље" -#: libraries/replication_gui.lib.php:304 server_privileges.php:764 +#: libraries/replication_gui.lib.php:304 server_privileges.php:763 msgid "Any host" msgstr "Било који домаћин" -#: libraries/replication_gui.lib.php:308 server_privileges.php:768 +#: libraries/replication_gui.lib.php:308 server_privileges.php:767 msgid "Local" msgstr "Локални" -#: libraries/replication_gui.lib.php:314 server_privileges.php:773 +#: libraries/replication_gui.lib.php:314 server_privileges.php:772 msgid "This Host" msgstr "Овај сервер" -#: libraries/replication_gui.lib.php:320 server_privileges.php:779 +#: libraries/replication_gui.lib.php:320 server_privileges.php:778 msgid "Use Host Table" msgstr "Користи табелу домаћина" -#: libraries/replication_gui.lib.php:333 server_privileges.php:792 +#: libraries/replication_gui.lib.php:333 server_privileges.php:791 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3639,8 +3685,8 @@ msgstr "Непознат језик: %1$s." msgid "Servers" msgstr "Сервери" -#: libraries/server_links.inc.php:52 server_engines.php:111 -#: server_engines.php:115 server_status.php:414 test/theme.php:104 +#: libraries/server_links.inc.php:52 server_engines.php:125 +#: server_engines.php:129 server_status.php:414 test/theme.php:104 msgid "Variables" msgstr "Променљиве" @@ -3661,12 +3707,12 @@ msgstr "Бинарни дневник" msgid "Processes" msgstr "Процеси" -#: libraries/server_links.inc.php:91 server_synchronize.php:1091 -#: server_synchronize.php:1099 +#: libraries/server_links.inc.php:91 server_synchronize.php:1090 +#: server_synchronize.php:1098 msgid "Synchronize" msgstr "" -#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1109 +#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1108 #, fuzzy msgid "Source database" msgstr "Претраживање базе" @@ -3685,7 +3731,7 @@ msgstr "" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1111 +#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1110 #, fuzzy msgid "Target database" msgstr "Претраживање базе" @@ -3706,11 +3752,11 @@ msgstr "Изврши SQL упит(е) на бази %s" msgid "Columns" msgstr "Имена колона" -#: libraries/sql_query_form.lib.php:342 sql.php:664 sql.php:665 sql.php:682 +#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "Запамти SQL-упит" -#: libraries/sql_query_form.lib.php:349 sql.php:676 +#: libraries/sql_query_form.lib.php:349 sql.php:669 msgid "Let every user access this bookmark" msgstr "Дозволи сваком кориснику да приступа овом упамћеном упиту" @@ -3805,12 +3851,12 @@ msgstr "" "SQL валидатор није могао да буде покренут. Проверите да ли су инсталиране " "неопходне PHP екстензије описане у %sдокументацији%s." -#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:139 -#: libraries/tbl_links.inc.php:140 +#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 +#: libraries/tbl_links.inc.php:139 msgid "Table seems to be empty!" msgstr "Табела је изгледа празна!" -#: libraries/tbl_links.inc.php:148 +#: libraries/tbl_links.inc.php:147 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" @@ -3845,12 +3891,12 @@ msgstr "" "За подразумевану вредност, унесите само једну вредност, без косих црта или " "наводника у овом облику: а" -#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1263 -#: pdf_schema.php:1284 tbl_printview.php:142 tbl_structure.php:179 +#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1262 +#: pdf_schema.php:1283 tbl_printview.php:141 tbl_structure.php:178 msgid "Attributes" msgstr "Атрибути" -#: libraries/tbl_properties.inc.php:136 +#: libraries/tbl_properties.inc.php:135 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -3859,11 +3905,11 @@ msgstr "" "За листу доступних опција трансформације и њихове трансформације MIME-" "типова, кликните на %sописе трансформација%s" -#: libraries/tbl_properties.inc.php:144 +#: libraries/tbl_properties.inc.php:143 msgid "Transformation options" msgstr "Опције трансформације" -#: libraries/tbl_properties.inc.php:145 +#: libraries/tbl_properties.inc.php:144 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
                            If you ever need to put a backslash (\"\\\") or a single " @@ -3875,18 +3921,18 @@ msgstr "" "апостроф (\"'\") у те вредности, ставите обрнуту косу црту испред њих (на " "пример '\\\\xyz' или 'a\\'b')." -#: libraries/tbl_properties.inc.php:392 +#: libraries/tbl_properties.inc.php:391 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "нема" -#: libraries/tbl_properties.inc.php:393 +#: libraries/tbl_properties.inc.php:392 msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:579 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:578 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
                            Please ask the " @@ -3894,29 +3940,29 @@ msgid "" msgstr "" "Нема описа за ову трансформацију.
                            Молимо питајте аутора шта %s ради." -#: libraries/tbl_properties.inc.php:725 server_engines.php:57 -#: tbl_operations.php:354 +#: libraries/tbl_properties.inc.php:724 server_engines.php:56 +#: tbl_operations.php:352 msgid "Storage Engine" msgstr "Погон складиштења" -#: libraries/tbl_properties.inc.php:754 +#: libraries/tbl_properties.inc.php:753 msgid "PARTITION definition" msgstr "" -#: libraries/tbl_properties.inc.php:775 pdf_pages.php:502 +#: libraries/tbl_properties.inc.php:774 pdf_pages.php:501 #: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214 -#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1124 tbl_indexes.php:247 -#: tbl_relation.php:565 +#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1022 tbl_indexes.php:246 +#: tbl_relation.php:563 msgid "Save" msgstr "Сачувај" -#: libraries/tbl_properties.inc.php:779 tbl_structure.php:541 +#: libraries/tbl_properties.inc.php:778 tbl_structure.php:539 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "Додај %s поља" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:535 +#: libraries/tbl_properties.inc.php:782 tbl_structure.php:533 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -4118,8 +4164,8 @@ msgstr "" msgid "Custom color" msgstr "" -#: main.php:162 pdf_pages.php:362 setup/lib/FormDisplay.tpl.php:216 -#: tbl_change.php:1173 +#: main.php:162 pdf_pages.php:361 setup/lib/FormDisplay.tpl.php:216 +#: tbl_change.php:1071 msgid "Reset" msgstr "Поништи" @@ -4127,8 +4173,8 @@ msgstr "Поништи" msgid "Protocol version" msgstr "Верзија протокола" -#: main.php:188 server_privileges.php:1381 server_privileges.php:1528 -#: server_privileges.php:1642 server_privileges.php:2060 +#: main.php:188 server_privileges.php:1385 server_privileges.php:1532 +#: server_privileges.php:1646 server_privileges.php:2064 #: server_processlist.php:53 msgid "User" msgstr "Корисник" @@ -4212,14 +4258,23 @@ msgid "" "has been configured." msgstr "" -#: main.php:330 +#: main.php:314 +#, php-format +msgid "" +"The additional features for working with linked tables have been " +"deactivated. To find out why click %shere%s." +msgstr "" +"Додатне могућности за рад са повезаним табелама су искључене. Да бисте " +"сазнали зашто, кликните %sовде%s." + +#: main.php:329 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:345 +#: main.php:344 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -4228,7 +4283,7 @@ msgstr "" "Верзија ваше PHP MySQL библиотеке %s се разликује од верзије вашег MySQL " "сервера %s. Ово може довести до непредвидљивог понашања." -#: main.php:357 +#: main.php:356 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -4239,70 +4294,70 @@ msgstr "" msgid "Reload navigation frame" msgstr "" -#: navigation.php:204 server_databases.php:370 server_synchronize.php:1190 +#: navigation.php:203 server_databases.php:368 server_synchronize.php:1189 msgid "No databases" msgstr "База не постоји" -#: navigation.php:298 +#: navigation.php:297 #, fuzzy msgid "Filter" msgstr "Датотеке" -#: navigation.php:299 setup/frames/index.inc.php:218 +#: navigation.php:298 setup/frames/index.inc.php:218 #: setup/lib/messages.inc.php:41 #, fuzzy msgid "Clear" msgstr "Календар" -#: navigation.php:330 navigation.php:331 +#: navigation.php:329 navigation.php:330 #, fuzzy #| msgid "Create table" msgctxt "short form" msgid "Create table" msgstr "Направи табелу" -#: navigation.php:333 navigation.php:495 +#: navigation.php:332 navigation.php:494 msgid "Please select a database" msgstr "Изаберите базу" -#: pdf_pages.php:40 pdf_pages.php:46 pdf_pages.php:52 pdf_pages.php:57 +#: pdf_pages.php:39 pdf_pages.php:45 pdf_pages.php:51 pdf_pages.php:56 #, php-format msgid "%s table not found or not set in %s" msgstr "%s табела није пронађена или није постављена у %s" -#: pdf_pages.php:265 +#: pdf_pages.php:264 msgid "Please choose a page to edit" msgstr "Изаберите страну коју мењате" -#: pdf_pages.php:303 pmd_pdf.php:113 +#: pdf_pages.php:302 pmd_pdf.php:111 msgid "Create a page" msgstr "Направи нову страну" -#: pdf_pages.php:309 +#: pdf_pages.php:308 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Број стране:" -#: pdf_pages.php:313 +#: pdf_pages.php:312 #, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "Аутоматски распоред" -#: pdf_pages.php:315 +#: pdf_pages.php:314 msgid "Internal relations" msgstr "Унутрашње релације" -#: pdf_pages.php:338 +#: pdf_pages.php:337 msgid "Select Tables" msgstr "Изабери табеле" -#: pdf_pages.php:361 +#: pdf_pages.php:360 msgid "Toggle scratchboard" msgstr "Укључи/искључи радну таблу" -#: pdf_pages.php:524 +#: pdf_pages.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -4310,37 +4365,37 @@ msgstr "" "Тренутна страна има референце на табеле које више не постоје. Желите ли да " "обришете те референце?" -#: pdf_schema.php:635 +#: pdf_schema.php:634 #, fuzzy, php-format #| msgid "The \"%s\" table doesn't exist!" msgid "The %s table doesn't exist!" msgstr "Табела \"%s\" не постоји!" -#: pdf_schema.php:671 +#: pdf_schema.php:670 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Подесите координате за табелу %s" -#: pdf_schema.php:994 +#: pdf_schema.php:993 #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" msgstr "Схема базе \"%s\" - Страна %s" -#: pdf_schema.php:1012 +#: pdf_schema.php:1011 msgid "No tables" msgstr "Нема табела" -#: pdf_schema.php:1031 pdf_schema.php:1140 +#: pdf_schema.php:1030 pdf_schema.php:1139 msgid "Relational schema" msgstr "Релациона схема" -#: pdf_schema.php:1115 +#: pdf_schema.php:1114 msgid "Table of contents" msgstr "Садржај" -#: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:145 -#: tbl_structure.php:182 tbl_tracking.php:277 +#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 +#: tbl_structure.php:181 tbl_tracking.php:272 msgid "Extra" msgstr "Додатно" @@ -4352,7 +4407,7 @@ msgstr "Прикажи/сакриј мени с леве стране" msgid "Save position" msgstr "Сачувај позицију" -#: pmd_general.php:70 server_synchronize.php:428 server_synchronize.php:871 +#: pmd_general.php:70 server_synchronize.php:427 server_synchronize.php:870 msgid "Create table" msgstr "Направи табелу" @@ -4431,32 +4486,32 @@ msgstr "" "поље за приказ, кликните на икону „Изабери поље за приказ“, а потом на назив " "одговарајућег поља." -#: pmd_pdf.php:62 +#: pmd_pdf.php:60 #, fuzzy msgid "Page has been created" msgstr "Табела %s је одбачена" -#: pmd_pdf.php:64 +#: pmd_pdf.php:62 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:84 +#: pmd_pdf.php:82 msgid "Export/Import to scale" msgstr "Извор/увоз у размери" -#: pmd_pdf.php:88 +#: pmd_pdf.php:86 msgid "recommended" msgstr "препоручено" -#: pmd_pdf.php:93 +#: pmd_pdf.php:91 msgid "to/from page" msgstr "од/до странице" -#: querywindow.php:94 +#: querywindow.php:93 msgid "Import files" msgstr "Увоз датотека" -#: querywindow.php:105 +#: querywindow.php:104 msgid "All" msgstr "Све" @@ -4502,66 +4557,66 @@ msgstr "Информације" msgid "Character Sets and Collations" msgstr "Карактер сетови и сортирање" -#: server_databases.php:51 +#: server_databases.php:49 msgid "No databases selected." msgstr "Није изабрана ни једна база." -#: server_databases.php:62 +#: server_databases.php:60 #, php-format msgid "%s databases have been dropped successfully." msgstr "%s база је успешно одбачено." -#: server_databases.php:87 +#: server_databases.php:85 msgid "Databases statistics" msgstr "Статистика базе" -#: server_databases.php:116 server_status.php:370 +#: server_databases.php:114 server_status.php:370 #: setup/lib/messages.inc.php:114 msgid "Tables" msgstr "Табеле" -#: server_databases.php:194 server_replication.php:180 -#: server_replication.php:208 +#: server_databases.php:192 server_replication.php:179 +#: server_replication.php:207 msgid "Master replication" msgstr "" -#: server_databases.php:196 server_replication.php:247 +#: server_databases.php:194 server_replication.php:246 msgid "Slave replication" msgstr "" -#: server_databases.php:229 +#: server_databases.php:227 #, fuzzy msgid "Jump to database" msgstr "База не постоји" -#: server_databases.php:266 +#: server_databases.php:264 msgid "Not replicated" msgstr "" -#: server_databases.php:272 +#: server_databases.php:270 #, fuzzy #| msgid "Replication" msgid "Replicated" msgstr "Репликација" -#: server_databases.php:288 +#: server_databases.php:286 #, php-format msgid "Check privileges for database "%s"." msgstr "Провери привилегије за базу "%s"." -#: server_databases.php:292 server_databases.php:293 +#: server_databases.php:290 server_databases.php:291 msgid "Check Privileges" msgstr "Провери привилегије" -#: server_databases.php:357 server_databases.php:358 +#: server_databases.php:355 server_databases.php:356 msgid "Enable Statistics" msgstr "Укључи статистике" -#: server_databases.php:361 server_databases.php:362 +#: server_databases.php:359 server_databases.php:360 msgid "Disable Statistics" msgstr "Искључи статистике" -#: server_databases.php:365 +#: server_databases.php:363 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -4569,121 +4624,121 @@ msgstr "" "Напомена: укључивање статистика може проузроковати велики саобраћај између " "веб и MySQL сервера." -#: server_engines.php:48 +#: server_engines.php:47 msgid "Storage Engines" msgstr "Погони складиштења" -#: server_export.php:20 +#: server_export.php:18 msgid "View dump (schema) of databases" msgstr "Прикажи садржај (схему) базе" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:23 server_privileges.php:265 msgid "Includes all privileges except GRANT." msgstr "Укључује све привилегије осим GRANT." -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:24 server_privileges.php:191 +#: server_privileges.php:514 msgid "Allows altering the structure of existing tables." msgstr "Дозвољава измену структура постојећих табела." -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:25 server_privileges.php:207 +#: server_privileges.php:520 msgid "Allows altering and dropping stored routines." msgstr "Дозвољава измену и одбацивање сачуваних рутина." -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:26 server_privileges.php:183 +#: server_privileges.php:513 msgid "Allows creating new databases and tables." msgstr "Дозвољава креирање нових база и табела." -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:27 server_privileges.php:206 +#: server_privileges.php:519 msgid "Allows creating stored routines." msgstr "Дозвољава прављење сачуваних рутина." -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:513 msgid "Allows creating new tables." msgstr "Дозвољава креирање нових табела." -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:29 server_privileges.php:194 +#: server_privileges.php:517 msgid "Allows creating temporary tables." msgstr "Дозвољава креирање привремених табела.." -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:30 server_privileges.php:208 +#: server_privileges.php:553 msgid "Allows creating, dropping and renaming user accounts." msgstr "Дозвољава прављење, одбацивање и преименовање корисничких налога." -#: server_privileges.php:32 server_privileges.php:199 -#: server_privileges.php:203 server_privileges.php:526 -#: server_privileges.php:530 +#: server_privileges.php:31 server_privileges.php:198 +#: server_privileges.php:202 server_privileges.php:525 +#: server_privileges.php:529 msgid "Allows creating new views." msgstr "Дозволи креирање нових погледа." -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:32 server_privileges.php:182 +#: server_privileges.php:505 msgid "Allows deleting data." msgstr "Дозвољава брисање података." -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:33 server_privileges.php:184 +#: server_privileges.php:516 msgid "Allows dropping databases and tables." msgstr "Дозвољава одбацивање база и табела." -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:34 server_privileges.php:516 msgid "Allows dropping tables." msgstr "Дозвољава одбацивање табела." -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:35 server_privileges.php:199 +#: server_privileges.php:533 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:36 server_privileges.php:209 +#: server_privileges.php:521 msgid "Allows executing stored routines." msgstr "Дозвољава извршавање сачуваних рутина." -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:37 server_privileges.php:188 +#: server_privileges.php:508 msgid "Allows importing data from and exporting data into files." msgstr "Дозвољава увоз података и њихов извоз у датотеке." -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:38 server_privileges.php:539 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Дозвољава додавање корисника и привилегија без поновног учитавања табела " "привилегија." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:515 msgid "Allows creating and dropping indexes." msgstr "Дозвољава креирање и брисање кључева." -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:40 server_privileges.php:180 +#: server_privileges.php:441 server_privileges.php:503 msgid "Allows inserting and replacing data." msgstr "Дозвољава уметање и замену података." -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:41 server_privileges.php:195 +#: server_privileges.php:548 msgid "Allows locking tables for the current thread." msgstr "Дозвољава закључавање табела текућим процесима." -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:42 server_privileges.php:645 +#: server_privileges.php:647 msgid "Limits the number of new connections the user may open per hour." msgstr "Ограничава број нових конекција које корисник може та отвори на сат." -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:43 server_privileges.php:633 +#: server_privileges.php:635 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Ограничава број упита које корисник може да упути серверу за сат." -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:44 server_privileges.php:639 +#: server_privileges.php:641 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -4691,59 +4746,59 @@ msgstr "" "Ограничава број команди које мењају табеле или базе које корисник може да " "изврши на сат." -#: server_privileges.php:46 server_privileges.php:652 -#: server_privileges.php:654 +#: server_privileges.php:45 server_privileges.php:651 +#: server_privileges.php:653 msgid "Limits the number of simultaneous connections the user may have." msgstr "Ограничава број истовремених конекција које корисник може да има." -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:46 server_privileges.php:187 +#: server_privileges.php:543 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:47 server_privileges.php:189 +#: server_privileges.php:447 server_privileges.php:549 msgid "Has no effect in this MySQL version." msgstr "Нема ефекта у овој верзији MySQL-a." -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:48 server_privileges.php:185 +#: server_privileges.php:544 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Дозвољава поновно учитавање подешавања сервера и пражњење кеша сервера." -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:197 +#: server_privileges.php:551 msgid "Allows the user to ask where the slaves / masters are." msgstr "Даје право кориснику да пита где су главни/помоћни сервери." -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:50 server_privileges.php:196 +#: server_privileges.php:552 msgid "Needed for the replication slaves." msgstr "Потребно због помоћних сервера за репликацију." -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:51 server_privileges.php:179 +#: server_privileges.php:438 server_privileges.php:502 msgid "Allows reading data." msgstr "Дозвољава читање података." -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:52 server_privileges.php:192 +#: server_privileges.php:546 msgid "Gives access to the complete list of databases." msgstr "Даје приступ комплетној листи база." -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:53 server_privileges.php:203 +#: server_privileges.php:205 server_privileges.php:518 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Дозвољава извршавање SHOW CREATE VIEW упита." -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:54 server_privileges.php:186 +#: server_privileges.php:545 msgid "Allows shutting down the server." msgstr "Дозвољава гашење сервера." -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:55 server_privileges.php:193 +#: server_privileges.php:542 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -4753,157 +4808,157 @@ msgstr "" "Неопходно за већину административних опција као што су подешавање глобалних " "променљивих или прекидање процеса осталих корисника." -#: server_privileges.php:57 server_privileges.php:201 -#: server_privileges.php:535 +#: server_privileges.php:56 server_privileges.php:200 +#: server_privileges.php:534 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "Дозвољава креирање и брисање кључева." -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:57 server_privileges.php:181 +#: server_privileges.php:444 server_privileges.php:504 msgid "Allows changing data." msgstr "Дозвољава измену података." -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:58 server_privileges.php:259 msgid "No privileges." msgstr "Нема привилегија." -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:301 server_privileges.php:302 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "нема" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1710 server_privileges.php:1716 +#: server_privileges.php:430 server_privileges.php:565 +#: server_privileges.php:1714 server_privileges.php:1720 msgid "Table-specific privileges" msgstr "Привилегије везане за табеле" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1532 +#: server_privileges.php:431 server_privileges.php:573 +#: server_privileges.php:1536 msgid " Note: MySQL privilege names are expressed in English " msgstr " Напомена: MySQL имена привилегија морају да буду на енглеском " -#: server_privileges.php:563 server_privileges.php:1531 +#: server_privileges.php:562 server_privileges.php:1535 msgid "Global privileges" msgstr "Глобалне привилегије" -#: server_privileges.php:565 server_privileges.php:1710 +#: server_privileges.php:564 server_privileges.php:1714 msgid "Database-specific privileges" msgstr "Привилегије везане за базу" -#: server_privileges.php:610 +#: server_privileges.php:609 msgid "Administration" msgstr "Администрација" -#: server_privileges.php:630 +#: server_privileges.php:629 msgid "Resource limits" msgstr "Ограничења ресурса" -#: server_privileges.php:631 +#: server_privileges.php:630 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Напомена: Постављање ових опција на 0 (нулу) уклања ограничења." -#: server_privileges.php:708 +#: server_privileges.php:707 msgid "Login Information" msgstr "Подаци о пријави" -#: server_privileges.php:802 +#: server_privileges.php:801 msgid "Do not change the password" msgstr "Немој да мењаш лозинку" -#: server_privileges.php:835 server_privileges.php:2197 +#: server_privileges.php:834 server_privileges.php:2201 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Корисник није нађен." -#: server_privileges.php:879 +#: server_privileges.php:878 #, php-format msgid "The user %s already exists!" msgstr "Корисник %s већ постоји!" -#: server_privileges.php:962 +#: server_privileges.php:961 msgid "You have added a new user." msgstr "Додали сте новог корисника." -#: server_privileges.php:1183 +#: server_privileges.php:1184 #, php-format msgid "You have updated the privileges for %s." msgstr "Ажурирали сте привилегије за %s." -#: server_privileges.php:1207 +#: server_privileges.php:1208 #, php-format msgid "You have revoked the privileges for %s" msgstr "Забранили сте привилегије за %s" -#: server_privileges.php:1243 +#: server_privileges.php:1244 #, php-format msgid "The password for %s was changed successfully." msgstr "Лозинка за %s је успешно промењена." -#: server_privileges.php:1263 +#: server_privileges.php:1264 #, php-format msgid "Deleting %s" msgstr "Бришем %s" -#: server_privileges.php:1274 +#: server_privileges.php:1275 msgid "No users selected for deleting!" msgstr "Ниједан корисник није одабран за брисање!" -#: server_privileges.php:1277 +#: server_privileges.php:1278 msgid "Reloading the privileges" msgstr "Поново учитавам привилегије" -#: server_privileges.php:1292 +#: server_privileges.php:1296 msgid "The selected users have been deleted successfully." msgstr "Изабрани корисници су успешно обрисани." -#: server_privileges.php:1327 +#: server_privileges.php:1331 msgid "The privileges were reloaded successfully." msgstr "Привилегије су успешно поново учитане." -#: server_privileges.php:1355 server_privileges.php:1641 +#: server_privileges.php:1359 server_privileges.php:1645 msgid "Edit Privileges" msgstr "Промени привилегије" -#: server_privileges.php:1364 +#: server_privileges.php:1368 msgid "Revoke" msgstr "Забрани" -#: server_privileges.php:1396 +#: server_privileges.php:1400 msgid "User overview" msgstr "Преглед корисника" -#: server_privileges.php:1533 server_privileges.php:1715 -#: server_privileges.php:2064 +#: server_privileges.php:1537 server_privileges.php:1719 +#: server_privileges.php:2068 msgid "Grant" msgstr "Омогући" -#: server_privileges.php:1552 server_privileges.php:2154 +#: server_privileges.php:1556 server_privileges.php:2158 msgid "Any" msgstr "Било који" -#: server_privileges.php:1601 server_privileges.php:1625 -#: server_privileges.php:2019 server_privileges.php:2208 +#: server_privileges.php:1605 server_privileges.php:1629 +#: server_privileges.php:2023 server_privileges.php:2212 msgid "Add a new User" msgstr "Додај новог корисника" -#: server_privileges.php:1606 +#: server_privileges.php:1610 msgid "Remove selected users" msgstr "Уклони изабране кориснике" -#: server_privileges.php:1609 +#: server_privileges.php:1613 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Обустави све активне привилегије корисника и затим их обриши." -#: server_privileges.php:1610 server_privileges.php:1611 -#: server_privileges.php:1612 +#: server_privileges.php:1614 server_privileges.php:1615 +#: server_privileges.php:1616 msgid "Drop the databases that have the same names as the users." msgstr "Одбаци базе које се зову исто као корисници." -#: server_privileges.php:1628 +#: server_privileges.php:1632 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4916,92 +4971,92 @@ msgstr "" "сервер користи ако су вршене ручне измене. У том случају %sпоново учитајте " "привилегије%s пре него што наставите." -#: server_privileges.php:1676 +#: server_privileges.php:1680 msgid "The selected user was not found in the privilege table." msgstr "Изабрани корисник није пронађен у табели привилегија." -#: server_privileges.php:1716 +#: server_privileges.php:1720 msgid "Column-specific privileges" msgstr "Привилегије везане за колоне" -#: server_privileges.php:1917 +#: server_privileges.php:1921 msgid "Add privileges on the following database" msgstr "Додај привилегије на следећој бази" -#: server_privileges.php:1935 +#: server_privileges.php:1939 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "Пре џокера _ и % треба ставити знак \\ ако их користите самостално" -#: server_privileges.php:1938 +#: server_privileges.php:1942 msgid "Add privileges on the following table" msgstr "Додај привилегије на следећој табели" -#: server_privileges.php:1995 +#: server_privileges.php:1999 msgid "Change Login Information / Copy User" msgstr "Промени информације о пријави / Копирај корисника" -#: server_privileges.php:1998 +#: server_privileges.php:2002 msgid "Create a new user with the same privileges and ..." msgstr "Направи новог корисника са истим привилегијама и ..." -#: server_privileges.php:2000 +#: server_privileges.php:2004 msgid "... keep the old one." msgstr "... сачувај старе." -#: server_privileges.php:2001 +#: server_privileges.php:2005 msgid " ... delete the old one from the user tables." msgstr " ... обриши старе из табела корисника." -#: server_privileges.php:2002 +#: server_privileges.php:2006 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr " ... обустави све привилегије старог корисника и затим га обриши." -#: server_privileges.php:2003 +#: server_privileges.php:2007 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" " ... обриши старог из табеле корисника и затим поново учитај привилегије." -#: server_privileges.php:2025 +#: server_privileges.php:2029 msgid "Database for user" msgstr "База за корисника" -#: server_privileges.php:2029 +#: server_privileges.php:2033 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "нема" -#: server_privileges.php:2030 +#: server_privileges.php:2034 msgid "Create database with same name and grant all privileges" msgstr "Направи базу са истим именом и додај све привилегије" -#: server_privileges.php:2031 +#: server_privileges.php:2035 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Дај све привилегије на имену са џокерима (корисничко_име\\_%)" -#: server_privileges.php:2034 +#: server_privileges.php:2038 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "Провери привилегије за базу "%s"." -#: server_privileges.php:2057 +#: server_privileges.php:2061 #, php-format msgid "Users having access to "%s"" msgstr "Корисници који имају приступ "%s"" -#: server_privileges.php:2165 +#: server_privileges.php:2169 msgid "global" msgstr "глобално" -#: server_privileges.php:2167 +#: server_privileges.php:2171 msgid "database-specific" msgstr "Специфично за базу" -#: server_privileges.php:2169 +#: server_privileges.php:2173 msgid "wildcard" msgstr "џокер" @@ -5020,54 +5075,54 @@ msgstr "phpMyAdmin није могао да прекине процес %s. Ве msgid "ID" msgstr "ID" -#: server_replication.php:50 +#: server_replication.php:49 msgid "Unknown error" msgstr "" -#: server_replication.php:57 +#: server_replication.php:56 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:64 +#: server_replication.php:63 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:70 +#: server_replication.php:69 msgid "Unable to change master" msgstr "" -#: server_replication.php:73 +#: server_replication.php:72 #, php-format msgid "Master server changed succesfully to %s" msgstr "" -#: server_replication.php:181 +#: server_replication.php:180 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:183 server_status.php:391 +#: server_replication.php:182 server_status.php:391 #, fuzzy msgid "Show master status" msgstr "Прикажи статус подређених сервера" -#: server_replication.php:186 +#: server_replication.php:185 msgid "Show connected slaves" msgstr "" -#: server_replication.php:209 +#: server_replication.php:208 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:216 +#: server_replication.php:215 msgid "Master configuration" msgstr "" -#: server_replication.php:217 +#: server_replication.php:216 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -5076,111 +5131,111 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:220 +#: server_replication.php:219 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:221 +#: server_replication.php:220 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:224 +#: server_replication.php:223 #, fuzzy msgid "Please select databases:" msgstr "Изаберите базу" -#: server_replication.php:227 +#: server_replication.php:226 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: server_replication.php:229 +#: server_replication.php:228 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: server_replication.php:292 +#: server_replication.php:291 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:295 +#: server_replication.php:294 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:304 +#: server_replication.php:303 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:307 +#: server_replication.php:306 msgid "See slave status table" msgstr "" -#: server_replication.php:310 +#: server_replication.php:309 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:321 +#: server_replication.php:320 msgid "Control slave:" msgstr "" -#: server_replication.php:324 +#: server_replication.php:323 #, fuzzy msgid "Full start" msgstr "Текст кључ" -#: server_replication.php:324 +#: server_replication.php:323 #, fuzzy msgid "Full stop" msgstr "Текст кључ" -#: server_replication.php:325 +#: server_replication.php:324 msgid "Reset slave" msgstr "" -#: server_replication.php:326 +#: server_replication.php:325 #, php-format msgid "SQL Thread %s only" msgstr "" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 #, fuzzy msgid "Start" msgstr "Суб" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 msgid "Stop" msgstr "" -#: server_replication.php:327 +#: server_replication.php:326 #, php-format msgid "IO Thread %s only" msgstr "" -#: server_replication.php:331 +#: server_replication.php:330 msgid "Error management:" msgstr "" -#: server_replication.php:333 +#: server_replication.php:332 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:335 +#: server_replication.php:334 msgid "Skip current error" msgstr "" -#: server_replication.php:336 +#: server_replication.php:335 msgid "Skip next" msgstr "" -#: server_replication.php:339 +#: server_replication.php:338 msgid "errors." msgstr "" -#: server_replication.php:354 +#: server_replication.php:353 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -5995,114 +6050,114 @@ msgstr "Врста упита" msgid "Replication status" msgstr "Репликација" -#: server_synchronize.php:93 +#: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:96 +#: server_synchronize.php:95 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:121 server_synchronize.php:124 tbl_create.php:77 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:264 +#: server_synchronize.php:263 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:271 +#: server_synchronize.php:270 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:399 server_synchronize.php:838 +#: server_synchronize.php:398 server_synchronize.php:837 msgid "not present" msgstr "" -#: server_synchronize.php:423 server_synchronize.php:866 +#: server_synchronize.php:422 server_synchronize.php:865 #, fuzzy msgid "Structure Difference" msgstr "Структура за поглед (view)" -#: server_synchronize.php:424 server_synchronize.php:867 +#: server_synchronize.php:423 server_synchronize.php:866 #, fuzzy msgid "Data Difference" msgstr "Структура за поглед (view)" -#: server_synchronize.php:429 server_synchronize.php:872 +#: server_synchronize.php:428 server_synchronize.php:871 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:430 server_synchronize.php:873 +#: server_synchronize.php:429 server_synchronize.php:872 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:431 server_synchronize.php:874 +#: server_synchronize.php:430 server_synchronize.php:873 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:432 server_synchronize.php:875 +#: server_synchronize.php:431 server_synchronize.php:874 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:433 server_synchronize.php:876 +#: server_synchronize.php:432 server_synchronize.php:875 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:434 server_synchronize.php:877 +#: server_synchronize.php:433 server_synchronize.php:876 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:435 server_synchronize.php:878 +#: server_synchronize.php:434 server_synchronize.php:877 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:445 server_synchronize.php:889 +#: server_synchronize.php:444 server_synchronize.php:888 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:448 server_synchronize.php:893 +#: server_synchronize.php:447 server_synchronize.php:892 msgid "Apply Selected Changes" msgstr "" -#: server_synchronize.php:450 server_synchronize.php:895 +#: server_synchronize.php:449 server_synchronize.php:894 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:463 +#: server_synchronize.php:462 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:941 +#: server_synchronize.php:940 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:1002 +#: server_synchronize.php:1001 msgid "The following queries have been executed:" msgstr "" -#: server_synchronize.php:1121 +#: server_synchronize.php:1120 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1122 +#: server_synchronize.php:1121 #, fuzzy #| msgid "max. concurrent connections" msgid "Current connection" msgstr "макс. истовремених веза" -#: server_synchronize.php:1151 +#: server_synchronize.php:1150 #, php-format msgid "Configuration: %s" msgstr "" -#: server_synchronize.php:1166 +#: server_synchronize.php:1165 msgid "Socket" msgstr "" -#: server_synchronize.php:1212 +#: server_synchronize.php:1211 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -6667,8 +6722,8 @@ msgstr "" #: setup/lib/messages.inc.php:128 msgid "" "Configure phpMyAdmin database to gain access to additional features, see " -"[a@../Documentation.html#linked-tables]linked-tables infrastructure[/a] in " -"documentation" +"[a@../Documentation.html#linked-tables]phpMyAdmin configuration storage[/a] " +"in documentation" msgstr "" #: setup/lib/messages.inc.php:129 setup/lib/messages.inc.php:290 @@ -7741,117 +7796,117 @@ msgstr "" msgid "ZIP" msgstr "" -#: sql.php:495 tbl_replace.php:385 +#: sql.php:494 tbl_replace.php:384 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: sql.php:512 +#: sql.php:511 msgid "Showing as PHP code" msgstr "Приказ као PHP код" -#: sql.php:515 tbl_replace.php:359 +#: sql.php:514 tbl_replace.php:358 msgid "Showing SQL query" msgstr "Приказ као SQL упит" -#: sql.php:517 +#: sql.php:516 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Провери SQL" -#: sql.php:638 +#: sql.php:631 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Проблем при индексирању табеле `%s`" -#: sql.php:670 +#: sql.php:663 msgid "Label" msgstr "Назив" -#: tbl_addfield.php:188 tbl_alter.php:102 tbl_indexes.php:97 +#: tbl_addfield.php:185 tbl_alter.php:100 tbl_indexes.php:97 #, fuzzy, php-format msgid "Table %1$s has been altered successfully" msgstr "Изабрани корисници су успешно обрисани." -#: tbl_change.php:250 tbl_select.php:26 tbl_select.php:27 tbl_select.php:30 -#: tbl_select.php:33 +#: tbl_change.php:245 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_select.php:32 msgid "Browse foreign values" msgstr "Прегледај стране вредности" -#: tbl_change.php:280 tbl_change.php:318 +#: tbl_change.php:275 tbl_change.php:313 msgid "Function" msgstr "Функција" -#: tbl_change.php:300 tbl_indexes.php:199 tbl_indexes.php:224 +#: tbl_change.php:295 tbl_indexes.php:198 tbl_indexes.php:223 msgid "Ignore" msgstr "Игнориши" -#: tbl_change.php:725 +#: tbl_change.php:720 #, fuzzy #| msgid " Because of its length,
                            this field might not be editable " msgid " Because of its length,
                            this column might not be editable " msgstr "Због њехове величине, поље
                            можда нећете моћи да измените" -#: tbl_change.php:884 +#: tbl_change.php:835 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:890 +#: tbl_change.php:841 msgid "Binary - do not edit" msgstr "Бинарни - не мењај" -#: tbl_change.php:983 +#: tbl_change.php:889 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:1128 +#: tbl_change.php:1026 msgid "Insert as new row" msgstr "Унеси као нови ред" -#: tbl_change.php:1129 +#: tbl_change.php:1027 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:1130 +#: tbl_change.php:1028 #, fuzzy msgid "Show insert query" msgstr "Приказ као SQL упит" -#: tbl_change.php:1145 +#: tbl_change.php:1043 msgid "Go back to previous page" msgstr "Назад на претходну страну" -#: tbl_change.php:1146 +#: tbl_change.php:1044 msgid "Insert another new row" msgstr "Додај још један нови ред" -#: tbl_change.php:1150 +#: tbl_change.php:1048 msgid "Go back to this page" msgstr "Врати се на ову страну" -#: tbl_change.php:1158 +#: tbl_change.php:1056 msgid "Edit next row" msgstr "Уреди следећи ред" -#: tbl_change.php:1169 +#: tbl_change.php:1067 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Користите TAB тастер за померање од поља до поља, или CTRL+стрелице за " "слободно померање" -#: tbl_change.php:1207 +#: tbl_change.php:1105 #, php-format msgid "Restart insertion with %s rows" msgstr "Поново покрени уношење са %s редова" -#: tbl_create.php:57 +#: tbl_create.php:55 #, php-format msgid "Table %s already exists!" msgstr "Табела %s већ постоји!" -#: tbl_create.php:244 +#: tbl_create.php:241 #, fuzzy, php-format msgid "Table %1$s has been created." msgstr "Табела %s је одбачена" @@ -7872,203 +7927,203 @@ msgstr "Не могу да променим кључ у PRIMARY (примарн msgid "No index parts defined!" msgstr "Делови кључа нису дефинисани!" -#: tbl_indexes.php:159 +#: tbl_indexes.php:158 msgid "Create a new index" msgstr "Направи нови кључ" -#: tbl_indexes.php:161 +#: tbl_indexes.php:160 msgid "Modify an index" msgstr "Измени кључ" -#: tbl_indexes.php:167 +#: tbl_indexes.php:166 msgid "Index name:" msgstr "Име кључа :" -#: tbl_indexes.php:173 +#: tbl_indexes.php:172 msgid "Index type:" msgstr "Тип кључа :" -#: tbl_indexes.php:183 +#: tbl_indexes.php:182 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "(\"PRIMARY\" мора бити име само примарног кључа!)" -#: tbl_indexes.php:250 +#: tbl_indexes.php:249 #, php-format msgid "Add to index  %s column(s)" msgstr "Додај у кључ  %s колона(е)" -#: tbl_indexes.php:255 tbl_structure.php:588 tbl_structure.php:599 +#: tbl_indexes.php:254 tbl_structure.php:586 tbl_structure.php:597 msgid "Column count has to be larger than zero." msgstr "Број колона мора бити већи од нуле." -#: tbl_move_copy.php:45 +#: tbl_move_copy.php:44 msgid "Can't move table to same one!" msgstr "Не могу да преместим табелу у саму себе!" -#: tbl_move_copy.php:47 +#: tbl_move_copy.php:46 msgid "Can't copy table to same one!" msgstr "Не могу да копирам табелу у саму себе!" -#: tbl_move_copy.php:55 +#: tbl_move_copy.php:54 #, php-format msgid "Table %s has been moved to %s." msgstr "Табела %s је померена у %s." -#: tbl_move_copy.php:57 +#: tbl_move_copy.php:56 #, php-format msgid "Table %s has been copied to %s." msgstr "Табела %s је копирана у %s." -#: tbl_move_copy.php:81 +#: tbl_move_copy.php:80 msgid "The table name is empty!" msgstr "Има табеле је празно!" -#: tbl_operations.php:248 +#: tbl_operations.php:246 msgid "Alter table order by" msgstr "Промени редослед у табели" -#: tbl_operations.php:257 +#: tbl_operations.php:255 msgid "(singly)" msgstr "(по једном пољу)" -#: tbl_operations.php:277 +#: tbl_operations.php:275 msgid "Move table to (database.table):" msgstr "Помери табелу у (база.табела):" -#: tbl_operations.php:335 +#: tbl_operations.php:333 msgid "Table options" msgstr "Опције табеле" -#: tbl_operations.php:339 +#: tbl_operations.php:337 msgid "Rename table to" msgstr "Промени име табеле у " -#: tbl_operations.php:510 +#: tbl_operations.php:508 msgid "Copy table to (database.table):" msgstr "Копирај табелу у (база.табела):" -#: tbl_operations.php:557 +#: tbl_operations.php:555 msgid "Switch to copied table" msgstr "Пређи на копирану табелу" -#: tbl_operations.php:569 +#: tbl_operations.php:567 msgid "Table maintenance" msgstr "Радње на табели" -#: tbl_operations.php:590 +#: tbl_operations.php:588 msgid "Defragment table" msgstr "Дефрагментирај табелу" -#: tbl_operations.php:629 +#: tbl_operations.php:627 #, php-format msgid "Table %s has been flushed" msgstr "Табела %s је освежена" -#: tbl_operations.php:635 +#: tbl_operations.php:633 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Освежи табелу (\"FLUSH\")" -#: tbl_operations.php:650 +#: tbl_operations.php:648 #, fuzzy msgid "Partition maintenance" msgstr "Радње на табели" -#: tbl_operations.php:658 +#: tbl_operations.php:656 #, php-format msgid "Partition %s" msgstr "" -#: tbl_operations.php:661 +#: tbl_operations.php:659 msgid "Analyze" msgstr "" -#: tbl_operations.php:662 +#: tbl_operations.php:660 #, fuzzy msgid "Check" msgstr "Чешки" -#: tbl_operations.php:663 +#: tbl_operations.php:661 msgid "Optimize" msgstr "" -#: tbl_operations.php:664 +#: tbl_operations.php:662 msgid "Rebuild" msgstr "" -#: tbl_operations.php:665 +#: tbl_operations.php:663 #, fuzzy msgid "Repair" msgstr "Поправи табелу" -#: tbl_operations.php:677 +#: tbl_operations.php:675 msgid "Remove partitioning" msgstr "" -#: tbl_operations.php:703 +#: tbl_operations.php:701 msgid "Check referential integrity:" msgstr "Провери референцијални интегритет:" -#: tbl_printview.php:73 +#: tbl_printview.php:72 msgid "Show tables" msgstr "Прикажи табеле" -#: tbl_printview.php:308 tbl_structure.php:655 +#: tbl_printview.php:307 tbl_structure.php:653 msgid "Space usage" msgstr "Заузеће" -#: tbl_printview.php:312 tbl_structure.php:659 +#: tbl_printview.php:311 tbl_structure.php:657 msgid "Usage" msgstr "Заузеће" -#: tbl_printview.php:339 tbl_structure.php:686 +#: tbl_printview.php:338 tbl_structure.php:684 msgid "Effective" msgstr "Ефективне" -#: tbl_printview.php:364 tbl_structure.php:724 +#: tbl_printview.php:363 tbl_structure.php:722 msgid "Row Statistics" msgstr "Статистике реда" -#: tbl_printview.php:367 tbl_structure.php:727 +#: tbl_printview.php:366 tbl_structure.php:725 msgid "Statements" msgstr "Име" -#: tbl_printview.php:378 tbl_structure.php:739 +#: tbl_printview.php:377 tbl_structure.php:737 msgid "static" msgstr "" -#: tbl_printview.php:380 tbl_structure.php:741 +#: tbl_printview.php:379 tbl_structure.php:739 msgid "dynamic" msgstr "динамички" -#: tbl_printview.php:402 tbl_structure.php:784 +#: tbl_printview.php:401 tbl_structure.php:782 msgid "Row length" msgstr "Дужина реда" -#: tbl_printview.php:412 tbl_structure.php:792 +#: tbl_printview.php:411 tbl_structure.php:790 msgid " Row size " msgstr "Величина реда" -#: tbl_relation.php:278 +#: tbl_relation.php:276 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" -#: tbl_relation.php:404 +#: tbl_relation.php:402 #, fuzzy #| msgid "Internal relations" msgid "Internal relation" msgstr "Унутрашње релације" -#: tbl_relation.php:406 +#: tbl_relation.php:404 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: tbl_relation.php:412 +#: tbl_relation.php:410 msgid "Foreign key constraint" msgstr "" @@ -8076,232 +8131,232 @@ msgstr "" msgid "No rows selected" msgstr "Нема одабраних редова" -#: tbl_select.php:130 +#: tbl_select.php:129 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Направи \"упит по примеру\" (џокер: \"%\")" -#: tbl_select.php:136 +#: tbl_select.php:135 msgid "Operator" msgstr "Оператор" -#: tbl_select.php:267 +#: tbl_select.php:266 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "Изабери поља (најмање једно)" -#: tbl_select.php:285 +#: tbl_select.php:284 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Додај услове претраживања (део \"WHERE\" упита):" -#: tbl_select.php:292 +#: tbl_select.php:291 msgid "Number of rows per page" msgstr "Број редова по страни" -#: tbl_select.php:298 +#: tbl_select.php:297 msgid "Display order:" msgstr "Редослед приказа:" -#: tbl_structure.php:160 +#: tbl_structure.php:159 msgid "Browse distinct values" msgstr "Прегледај различите вредности" -#: tbl_structure.php:360 +#: tbl_structure.php:358 #, fuzzy #| msgid "None" msgctxt "None for default" msgid "None" msgstr "нема" -#: tbl_structure.php:373 +#: tbl_structure.php:371 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Column %s has been dropped" msgstr "Табела %s је одбачена" -#: tbl_structure.php:384 +#: tbl_structure.php:382 #, php-format msgid "A primary key has been added on %s" msgstr "Примарни кључ је управо додат %s" -#: tbl_structure.php:399 tbl_structure.php:413 tbl_structure.php:427 +#: tbl_structure.php:397 tbl_structure.php:411 tbl_structure.php:425 #, php-format msgid "An index has been added on %s" msgstr "Кључ је управо додат %s" -#: tbl_structure.php:505 tbl_structure.php:507 +#: tbl_structure.php:503 tbl_structure.php:505 msgid "Relation view" msgstr "Релациони поглед" -#: tbl_structure.php:514 tbl_structure.php:516 +#: tbl_structure.php:512 tbl_structure.php:514 msgid "Propose table structure" msgstr "Предложи структуру табеле" -#: tbl_structure.php:539 +#: tbl_structure.php:537 #, fuzzy #| msgid "Add %s field(s)" msgid "Add column" msgstr "Додај %s поља" -#: tbl_structure.php:553 +#: tbl_structure.php:551 msgid "At End of Table" msgstr "На крају табеле" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At Beginning of Table" msgstr "На почетку табеле" -#: tbl_structure.php:555 +#: tbl_structure.php:553 #, php-format msgid "After %s" msgstr "После %s" -#: tbl_structure.php:593 +#: tbl_structure.php:591 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "Направи кључ на %s колона" -#: tbl_structure.php:755 +#: tbl_structure.php:753 msgid "partitioned" msgstr "" -#: tbl_tracking.php:113 +#: tbl_tracking.php:109 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:186 +#: tbl_tracking.php:182 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "" -#: tbl_tracking.php:194 +#: tbl_tracking.php:190 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "" -#: tbl_tracking.php:202 +#: tbl_tracking.php:198 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "" -#: tbl_tracking.php:212 +#: tbl_tracking.php:208 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:219 +#: tbl_tracking.php:215 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:220 +#: tbl_tracking.php:216 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:229 +#: tbl_tracking.php:225 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:250 tbl_tracking.php:378 +#: tbl_tracking.php:245 tbl_tracking.php:373 msgid "Close" msgstr "" -#: tbl_tracking.php:261 +#: tbl_tracking.php:256 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:380 +#: tbl_tracking.php:375 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:396 tbl_tracking.php:503 +#: tbl_tracking.php:391 tbl_tracking.php:498 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "" -#: tbl_tracking.php:409 tbl_tracking.php:460 +#: tbl_tracking.php:404 tbl_tracking.php:455 #, fuzzy msgid "Date" msgstr "Подаци" -#: tbl_tracking.php:410 tbl_tracking.php:461 +#: tbl_tracking.php:405 tbl_tracking.php:456 #, fuzzy msgid "Username" msgstr "Корисничко име:" -#: tbl_tracking.php:411 +#: tbl_tracking.php:406 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:462 +#: tbl_tracking.php:457 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:506 +#: tbl_tracking.php:501 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:507 +#: tbl_tracking.php:502 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:520 +#: tbl_tracking.php:515 #, fuzzy, php-format msgid "Export as %s" msgstr "Тип извоза" -#: tbl_tracking.php:560 +#: tbl_tracking.php:555 msgid "Show versions" msgstr "" -#: tbl_tracking.php:592 +#: tbl_tracking.php:587 #, fuzzy msgid "Version" msgstr "Персијски" -#: tbl_tracking.php:639 +#: tbl_tracking.php:634 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "" -#: tbl_tracking.php:641 +#: tbl_tracking.php:636 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:652 +#: tbl_tracking.php:647 #, php-format msgid "Activate tracking for %s.%s" msgstr "" -#: tbl_tracking.php:654 +#: tbl_tracking.php:649 msgid "Activate now" msgstr "" -#: tbl_tracking.php:667 +#: tbl_tracking.php:662 #, php-format msgid "Create version %s of %s.%s" msgstr "" -#: tbl_tracking.php:671 +#: tbl_tracking.php:666 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:679 +#: tbl_tracking.php:674 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:687 +#: tbl_tracking.php:682 #, fuzzy msgid "Create version" msgstr "Направи релацију" @@ -8352,11 +8407,36 @@ msgstr "Профил је промењен." msgid "VIEW name" msgstr "назив за VIEW" -#: view_operations.php:92 +#: view_operations.php:91 #, fuzzy msgid "Rename view to" msgstr "Промени име табеле у " +#, fuzzy +#~| msgid "Enabled" +#~ msgctxt "BLOB repository" +#~ msgid "Enabled" +#~ msgstr "Омогућено" + +#, fuzzy +#~ msgid "Disable" +#~ msgstr "Онемогућено" + +#, fuzzy +#~ msgctxt "BLOB repository" +#~ msgid "Repair" +#~ msgstr "Поправи табелу" + +#, fuzzy +#~| msgid "Disabled" +#~ msgctxt "BLOB repository" +#~ msgid "Disabled" +#~ msgstr "Онемогућено" + +#, fuzzy +#~ msgid "Enable" +#~ msgstr "Омогућено" + #~ msgid "" #~ "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " #~ "extension. Please check your PHP configuration." diff --git a/po/sr@latin.po b/po/sr@latin.po index 8f63b5b1b..7bfc12a3e 100644 --- a/po/sr@latin.po +++ b/po/sr@latin.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-21 13:53+0200\n" +"POT-Creation-Date: 2010-07-26 17:18+0200\n" "PO-Revision-Date: 2010-07-22 02:27+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: serbian_latin \n" @@ -11,23 +11,23 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" -"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"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:37 browse_foreigners.php:58 -#: libraries/display_tbl.lib.php:416 server_privileges.php:1506 +#: browse_foreigners.php:36 browse_foreigners.php:57 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1510 msgid "Show all" msgstr "Prikaži sve" -#: browse_foreigners.php:81 libraries/common.lib.php:2313 -#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:393 -#: libraries/export/pdf.php:146 pdf_schema.php:282 pdf_schema.php:1122 -#: pdf_schema.php:1138 +#: browse_foreigners.php:80 libraries/common.lib.php:2318 +#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:392 +#: libraries/export/pdf.php:146 pdf_schema.php:281 pdf_schema.php:1121 +#: pdf_schema.php:1137 msgid "Page number:" msgstr "Broj strane:" -#: browse_foreigners.php:131 +#: browse_foreigners.php:130 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -37,139 +37,153 @@ msgstr "" "zatvorili matični prozor, ili vaš pretraživač onemogućava ažuriranje među " "prozorima zbog sigurnosnih podešavanja" -#: browse_foreigners.php:149 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2829 -#: libraries/common.lib.php:2836 libraries/db_links.inc.php:74 -#: libraries/tbl_links.inc.php:62 +#: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 +#: db_structure.php:89 db_structure.php:91 db_structure.php:102 +#: db_structure.php:104 libraries/common.lib.php:2834 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Pretraživanje" -#: browse_foreigners.php:152 db_operations.php:384 db_operations.php:428 -#: db_operations.php:498 db_operations.php:608 db_search.php:344 -#: db_structure.php:566 js/messages.php:48 libraries/Config.class.php:1043 -#: libraries/Theme_Manager.class.php:310 +#: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 +#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 +#: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 -#: libraries/common.lib.php:1340 libraries/common.lib.php:2289 +#: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 -#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:275 -#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:531 -#: libraries/display_tbl.lib.php:613 libraries/replication_gui.lib.php:75 +#: libraries/display_export.lib.php:269 libraries/display_import.lib.php:275 +#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 +#: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 #: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:781 -#: main.php:127 navigation.php:231 pdf_pages.php:291 pdf_pages.php:327 -#: pdf_pages.php:529 pmd_pdf.php:115 server_binlog.php:128 -#: server_privileges.php:664 server_privileges.php:1616 -#: server_privileges.php:1963 server_privileges.php:2010 -#: server_privileges.php:2049 server_replication.php:234 -#: server_replication.php:317 server_replication.php:340 -#: server_synchronize.php:1208 tbl_change.php:328 tbl_change.php:1172 -#: tbl_change.php:1209 tbl_indexes.php:253 tbl_operations.php:264 -#: tbl_operations.php:301 tbl_operations.php:498 tbl_operations.php:560 -#: tbl_operations.php:680 tbl_select.php:324 tbl_structure.php:561 -#: tbl_structure.php:596 tbl_tracking.php:394 tbl_tracking.php:511 -#: view_create.php:181 view_operations.php:100 +#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 +#: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 +#: server_privileges.php:663 server_privileges.php:1620 +#: server_privileges.php:1967 server_privileges.php:2014 +#: server_privileges.php:2053 server_replication.php:233 +#: server_replication.php:316 server_replication.php:339 +#: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 +#: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 +#: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 +#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "Kreni" -#: browse_foreigners.php:167 browse_foreigners.php:171 -#: libraries/Index.class.php:441 tbl_tracking.php:319 +#: browse_foreigners.php:166 browse_foreigners.php:170 +#: libraries/Index.class.php:441 tbl_tracking.php:314 msgid "Keyname" msgstr "Ime ključa" -#: browse_foreigners.php:168 browse_foreigners.php:170 -#: server_collations.php:54 server_collations.php:66 server_engines.php:58 +#: browse_foreigners.php:167 browse_foreigners.php:169 +#: server_collations.php:54 server_collations.php:66 server_engines.php:57 #: server_status.php:738 msgid "Description" msgstr "Opis" -#: browse_foreigners.php:246 browse_foreigners.php:255 -#: browse_foreigners.php:267 browse_foreigners.php:275 +#: browse_foreigners.php:245 browse_foreigners.php:254 +#: browse_foreigners.php:266 browse_foreigners.php:274 msgid "Use this value" msgstr "Koristi ovu vrednost" -#: db_create.php:45 +#: bs_disp_as_mime_type.php:29 bs_play_media.php:35 +msgid "No blob streaming server configured!" +msgstr "" + +#: bs_disp_as_mime_type.php:35 +#, fuzzy +#| msgid "Failed to write file to disk." +msgid "Failed to fetch headers" +msgstr "Neuspelo upisivanje datoteke na disk." + +#: bs_disp_as_mime_type.php:41 +msgid "Failed to open remote URL" +msgstr "" + +#: db_create.php:44 #, fuzzy, php-format msgid "Database %1$s has been created." msgstr "Baza %s je odbačena." -#: db_datadict.php:48 db_operations.php:377 +#: db_datadict.php:48 db_operations.php:313 msgid "Database comment: " msgstr "Komentar baze:" -#: db_datadict.php:164 libraries/tbl_properties.inc.php:723 -#: pdf_schema.php:1235 tbl_operations.php:346 tbl_printview.php:128 +#: db_datadict.php:164 libraries/tbl_properties.inc.php:722 +#: pdf_schema.php:1234 tbl_operations.php:344 tbl_printview.php:127 msgid "Table comments" msgstr "Komentari tabele" -#: db_datadict.php:173 db_qbe.php:173 libraries/Index.class.php:445 +#: db_datadict.php:173 db_qbe.php:170 libraries/Index.class.php:445 #: libraries/export/htmlword.php:243 libraries/export/latex.php:364 #: libraries/export/odt.php:293 libraries/export/texytext.php:233 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:274 -#: pdf_schema.php:1261 pdf_schema.php:1282 tbl_change.php:306 -#: tbl_indexes.php:188 tbl_printview.php:140 tbl_relation.php:401 -#: tbl_select.php:133 tbl_structure.php:176 tbl_tracking.php:272 -#: tbl_tracking.php:323 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 +#: pdf_schema.php:1260 pdf_schema.php:1281 tbl_change.php:301 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:132 tbl_structure.php:175 tbl_tracking.php:267 +#: tbl_tracking.php:318 #, fuzzy #| msgid "Column names" msgid "Column" msgstr "Imena kolona" -#: db_datadict.php:174 db_printview.php:105 libraries/Index.class.php:442 +#: db_datadict.php:174 db_printview.php:104 libraries/Index.class.php:442 #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 #: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:244 #: libraries/export/latex.php:364 libraries/export/odt.php:296 #: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:99 -#: pdf_schema.php:1262 pdf_schema.php:1283 server_privileges.php:2062 -#: tbl_change.php:285 tbl_change.php:312 tbl_printview.php:141 -#: tbl_printview.php:311 tbl_select.php:134 tbl_structure.php:177 -#: tbl_structure.php:658 tbl_tracking.php:273 tbl_tracking.php:320 +#: pdf_schema.php:1261 pdf_schema.php:1282 server_privileges.php:2066 +#: tbl_change.php:280 tbl_change.php:307 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:133 tbl_structure.php:176 +#: tbl_structure.php:656 tbl_tracking.php:268 tbl_tracking.php:315 msgid "Type" msgstr "Tip" #: db_datadict.php:176 libraries/Index.class.php:448 #: libraries/export/htmlword.php:245 libraries/export/latex.php:364 #: libraries/export/odt.php:299 libraries/export/texytext.php:235 -#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1264 -#: pdf_schema.php:1285 tbl_change.php:321 tbl_printview.php:143 -#: tbl_structure.php:180 tbl_tracking.php:275 tbl_tracking.php:326 +#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1263 +#: pdf_schema.php:1284 tbl_change.php:316 tbl_printview.php:142 +#: tbl_structure.php:179 tbl_tracking.php:270 tbl_tracking.php:321 msgid "Null" msgstr "Null" -#: db_datadict.php:177 db_structure.php:500 libraries/export/htmlword.php:246 +#: db_datadict.php:177 db_structure.php:486 libraries/export/htmlword.php:246 #: libraries/export/latex.php:364 libraries/export/odt.php:302 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:105 -#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 -#: tbl_structure.php:181 tbl_tracking.php:276 +#: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:143 +#: tbl_structure.php:180 tbl_tracking.php:271 msgid "Default" msgstr "Podrazumevano" #: db_datadict.php:181 libraries/export/htmlword.php:248 #: libraries/export/latex.php:366 libraries/export/odt.php:306 -#: libraries/export/texytext.php:238 pdf_schema.php:1267 pdf_schema.php:1288 -#: tbl_printview.php:148 +#: libraries/export/texytext.php:238 pdf_schema.php:1266 pdf_schema.php:1287 +#: tbl_printview.php:147 msgid "Links to" msgstr "Veze ka" -#: db_datadict.php:183 db_printview.php:111 libraries/export/htmlword.php:251 +#: db_datadict.php:183 db_printview.php:110 libraries/export/htmlword.php:251 #: libraries/export/latex.php:49 libraries/export/latex.php:369 #: libraries/export/odt.php:37 libraries/export/odt.php:311 #: libraries/export/sql.php:29 libraries/export/texytext.php:241 -#: libraries/tbl_properties.inc.php:129 pdf_schema.php:1278 -#: pdf_schema.php:1289 tbl_printview.php:150 +#: libraries/tbl_properties.inc.php:128 pdf_schema.php:1277 +#: pdf_schema.php:1288 tbl_printview.php:149 msgid "Comments" msgstr "Komentari" #: db_datadict.php:266 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/export/htmlword.php:321 #: libraries/export/latex.php:434 libraries/export/odt.php:367 -#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:262 -#: pdf_schema.php:1343 server_privileges.php:1560 server_privileges.php:1571 -#: server_privileges.php:1881 server_privileges.php:1886 -#: server_privileges.php:2179 sql.php:131 sql.php:193 tbl_printview.php:227 -#: tbl_structure.php:349 tbl_tracking.php:336 tbl_tracking.php:341 +#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:261 +#: pdf_schema.php:1342 server_privileges.php:1564 server_privileges.php:1575 +#: server_privileges.php:1885 server_privileges.php:1890 +#: server_privileges.php:2183 sql.php:130 sql.php:192 tbl_printview.php:226 +#: tbl_structure.php:347 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "Ne" @@ -180,17 +194,17 @@ msgstr "Ne" #: libraries/mult_submits.inc.php:49 libraries/mult_submits.inc.php:54 #: libraries/mult_submits.inc.php:59 libraries/mult_submits.inc.php:91 #: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:105 -#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:261 -#: libraries/mult_submits.inc.php:272 pdf_schema.php:1343 -#: server_databases.php:63 server_privileges.php:1557 -#: server_privileges.php:1571 server_privileges.php:1881 -#: server_privileges.php:1884 server_privileges.php:2179 sql.php:192 -#: tbl_printview.php:227 tbl_structure.php:39 tbl_structure.php:349 -#: tbl_tracking.php:334 tbl_tracking.php:339 +#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:260 +#: libraries/mult_submits.inc.php:271 pdf_schema.php:1342 +#: server_databases.php:61 server_privileges.php:1561 +#: server_privileges.php:1575 server_privileges.php:1885 +#: server_privileges.php:1888 server_privileges.php:2183 sql.php:191 +#: tbl_printview.php:226 tbl_structure.php:38 tbl_structure.php:347 +#: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" msgstr "Da" -#: db_datadict.php:321 db_printview.php:265 tbl_printview.php:496 +#: db_datadict.php:321 db_printview.php:264 tbl_printview.php:495 msgid "Print" msgstr "Štampaj" @@ -198,195 +212,154 @@ msgstr "Štampaj" msgid "View dump (schema) of database" msgstr "Prikaži sadržaj (shemu) baze" -#: db_export.php:32 db_printview.php:95 db_qbe.php:101 db_structure.php:50 -#: db_tracking.php:34 export.php:352 navigation.php:326 +#: db_export.php:32 db_printview.php:94 db_qbe.php:98 db_structure.php:49 +#: db_tracking.php:30 export.php:350 navigation.php:325 msgid "No tables found in database." msgstr "Tabele nisu pronađene u bazi." -#: db_export.php:42 db_search.php:326 server_export.php:26 +#: db_export.php:42 db_search.php:326 server_export.php:24 msgid "Select All" msgstr "Izaberi sve" -#: db_export.php:44 db_search.php:329 server_export.php:28 +#: db_export.php:44 db_search.php:329 server_export.php:26 msgid "Unselect All" msgstr "ništa" -#: db_operations.php:37 tbl_create.php:49 +#: db_operations.php:33 tbl_create.php:47 msgid "The database name is empty!" msgstr "Ime baze nije zadato!" -#: db_operations.php:235 +#: db_operations.php:231 #, php-format msgid "Database %s has been renamed to %s" msgstr "Baza %s je preimenovana u %s" -#: db_operations.php:239 +#: db_operations.php:235 #, php-format msgid "Database %s has been copied to %s" msgstr "Baza %s je prekopirana u %s" -#: db_operations.php:411 +#: db_operations.php:347 msgid "Rename database to" msgstr "Preimenuj bazu u" -#: db_operations.php:416 server_processlist.php:56 +#: db_operations.php:352 server_processlist.php:56 msgid "Command" msgstr "Naredba" -#: db_operations.php:428 tbl_change.php:1141 +#: db_operations.php:364 tbl_change.php:1039 msgid "and then" msgstr "i onda" -#: db_operations.php:454 +#: db_operations.php:390 msgid "Copy database to" msgstr "Kopiraj bazu u" -#: db_operations.php:461 tbl_operations.php:527 tbl_tracking.php:387 +#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Samo struktura" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:389 +#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Struktura i podaci" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:388 +#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Samo podaci" -#: db_operations.php:471 +#: db_operations.php:407 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE pre kopiranja" -#: db_operations.php:474 libraries/export/sql.php:51 +#: db_operations.php:410 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 -#: libraries/export/sql.php:81 tbl_operations.php:535 +#: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "Dodaj %s" -#: db_operations.php:478 libraries/export/sql.php:77 tbl_operations.php:298 -#: tbl_operations.php:537 +#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Dodaj AUTO_INCREMENT vrednost" -#: db_operations.php:482 tbl_operations.php:544 +#: db_operations.php:418 tbl_operations.php:542 msgid "Add constraints" msgstr "Dodaj ograničenja" -#: db_operations.php:495 +#: db_operations.php:431 msgid "Switch to copied database" msgstr "Prebaci se na kopiranu bazu" -#: db_operations.php:536 -msgid "BLOB Repository" -msgstr "" - -#: db_operations.php:539 db_tracking.php:75 libraries/common.lib.php:1357 -#: libraries/server_links.inc.php:48 server_processlist.php:58 -#: tbl_tracking.php:595 test/theme.php:100 -msgid "Status" -msgstr "Status" - -#: db_operations.php:547 -#, fuzzy -#| msgid "Enabled" -msgctxt "BLOB repository" -msgid "Enabled" -msgstr "Omogućeno" - -#: db_operations.php:551 -#, fuzzy -msgid "Disable" -msgstr "Onemogućeno" - -#: db_operations.php:561 -msgid "Damaged" -msgstr "" - -#: db_operations.php:565 -#, fuzzy -msgctxt "BLOB repository" -msgid "Repair" -msgstr "Popravi tabelu" - -#: db_operations.php:573 -#, fuzzy -#| msgid "Disabled" -msgctxt "BLOB repository" -msgid "Disabled" -msgstr "Onemogućeno" - -#: db_operations.php:577 -#, fuzzy -msgid "Enable" -msgstr "Omogućeno" - -#: db_operations.php:601 libraries/Index.class.php:447 +#: db_operations.php:451 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 -#: server_collations.php:53 server_collations.php:65 server_databases.php:110 -#: tbl_operations.php:362 tbl_select.php:135 tbl_structure.php:178 -#: tbl_structure.php:766 tbl_tracking.php:274 tbl_tracking.php:325 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 +#: server_collations.php:53 server_collations.php:65 server_databases.php:108 +#: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:177 +#: tbl_structure.php:764 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "Sortiranje" -#: db_operations.php:614 main.php:315 pdf_schema.php:33 -#, php-format +#: db_operations.php:464 pdf_schema.php:32 +#, fuzzy, php-format +#| msgid "" +#| "The additional features for working with linked tables have been " +#| "deactivated. To find out why click %shere%s." msgid "" -"The additional features for working with linked tables have been " -"deactivated. To find out why click %shere%s." +"The phpMyAdmin configuration storage has been deactivated. To find out why " +"click %shere%s." msgstr "" "Dodatne mogućnosti za rad sa povezanim tabelama su isključene. Da biste " "saznali zašto, kliknite %sovde%s." -#: db_operations.php:647 +#: db_operations.php:497 msgid "Edit PDF Pages" msgstr "Uređivanje PDF strana" -#: db_printview.php:103 db_tracking.php:71 db_tracking.php:156 +#: db_printview.php:102 db_tracking.php:67 db_tracking.php:152 #: libraries/db_structure.lib.php:37 libraries/export/xml.php:327 -#: libraries/header.inc.php:125 pdf_pages.php:423 server_privileges.php:1657 -#: server_privileges.php:1713 server_privileges.php:1977 -#: server_synchronize.php:422 server_synchronize.php:865 tbl_tracking.php:591 +#: libraries/header.inc.php:125 pdf_pages.php:422 server_privileges.php:1661 +#: server_privileges.php:1717 server_privileges.php:1981 +#: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "Tabela" -#: db_printview.php:104 libraries/db_structure.lib.php:47 +#: db_printview.php:103 libraries/db_structure.lib.php:47 #: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 -#: navigation.php:629 navigation.php:651 server_databases.php:121 -#: tbl_printview.php:392 tbl_structure.php:364 tbl_structure.php:776 +#: navigation.php:628 navigation.php:650 server_databases.php:119 +#: tbl_printview.php:391 tbl_structure.php:362 tbl_structure.php:774 msgid "Rows" msgstr "Redova" -#: db_printview.php:108 libraries/db_structure.lib.php:58 tbl_indexes.php:189 +#: db_printview.php:107 libraries/db_structure.lib.php:58 tbl_indexes.php:188 msgid "Size" msgstr "Veličina" -#: db_printview.php:161 db_structure.php:456 libraries/export/sql.php:556 +#: db_printview.php:160 db_structure.php:442 libraries/export/sql.php:556 #: libraries/export/sql.php:896 msgid "in use" msgstr "se koristi" -#: db_printview.php:186 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:511 pdf_schema.php:1240 tbl_printview.php:432 -#: tbl_structure.php:808 +#: db_printview.php:185 libraries/db_info.inc.php:86 +#: libraries/export/sql.php:511 pdf_schema.php:1239 tbl_printview.php:431 +#: tbl_structure.php:806 msgid "Creation" msgstr "Napravljeno" -#: db_printview.php:195 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:516 pdf_schema.php:1245 tbl_printview.php:442 -#: tbl_structure.php:816 +#: db_printview.php:194 libraries/db_info.inc.php:91 +#: libraries/export/sql.php:516 pdf_schema.php:1244 tbl_printview.php:441 +#: tbl_structure.php:814 msgid "Last update" msgstr "Poslednja izmena" -#: db_printview.php:204 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:521 pdf_schema.php:1250 tbl_printview.php:452 -#: tbl_structure.php:824 +#: db_printview.php:203 libraries/db_info.inc.php:96 +#: libraries/export/sql.php:521 pdf_schema.php:1249 tbl_printview.php:451 +#: tbl_structure.php:822 msgid "Last check" msgstr "Poslednja provera" -#: db_printview.php:221 db_structure.php:479 +#: db_printview.php:220 db_structure.php:465 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -395,94 +368,94 @@ msgstr[0] "%s tabela" msgstr[1] "%s tabela" msgstr[2] "%s tabela" -#: db_qbe.php:28 import.php:453 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1980 libraries/sql_query_form.lib.php:138 -#: tbl_operations.php:212 tbl_relation.php:291 tbl_row_action.php:130 -#: view_operations.php:61 +#: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 +#: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "Vaš SQL upit je uspešno izvršen" -#: db_qbe.php:41 +#: db_qbe.php:38 msgid "You have to choose at least one column to display" msgstr "Morate izabrati bar jednu kolonu za prikaz" -#: db_qbe.php:199 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:865 +#: db_qbe.php:196 libraries/db_structure.lib.php:95 +#: libraries/display_tbl.lib.php:864 msgid "Sort" msgstr "Sortiranje" -#: db_qbe.php:208 db_qbe.php:242 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:522 libraries/display_tbl.lib.php:827 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:259 -#: tbl_select.php:311 +#: db_qbe.php:205 db_qbe.php:239 libraries/db_structure.lib.php:102 +#: libraries/display_tbl.lib.php:521 libraries/display_tbl.lib.php:826 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:257 +#: tbl_select.php:310 msgid "Ascending" msgstr "Rastući" -#: db_qbe.php:209 db_qbe.php:250 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:527 libraries/display_tbl.lib.php:824 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:260 -#: tbl_select.php:312 +#: db_qbe.php:206 db_qbe.php:247 libraries/db_structure.lib.php:110 +#: libraries/display_tbl.lib.php:526 libraries/display_tbl.lib.php:823 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:258 +#: tbl_select.php:311 msgid "Descending" msgstr "Opadajući" -#: db_qbe.php:263 db_tracking.php:77 libraries/display_tbl.lib.php:307 -#: tbl_change.php:275 tbl_tracking.php:596 +#: db_qbe.php:260 db_tracking.php:73 libraries/display_tbl.lib.php:306 +#: tbl_change.php:270 tbl_tracking.php:591 msgid "Show" msgstr "Prikaži" -#: db_qbe.php:299 +#: db_qbe.php:296 msgid "Criteria" msgstr "Kriterijum" -#: db_qbe.php:352 db_qbe.php:434 db_qbe.php:526 db_qbe.php:557 +#: db_qbe.php:349 db_qbe.php:431 db_qbe.php:523 db_qbe.php:554 msgid "Ins" msgstr "Ins" -#: db_qbe.php:356 db_qbe.php:438 db_qbe.php:523 db_qbe.php:554 +#: db_qbe.php:353 db_qbe.php:435 db_qbe.php:520 db_qbe.php:551 msgid "And" msgstr "i" -#: db_qbe.php:365 db_qbe.php:446 db_qbe.php:528 db_qbe.php:559 +#: db_qbe.php:362 db_qbe.php:443 db_qbe.php:525 db_qbe.php:556 msgid "Del" msgstr "Del" -#: db_qbe.php:369 db_qbe.php:450 db_qbe.php:521 db_qbe.php:552 -#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:778 -#: server_privileges.php:297 tbl_change.php:1027 tbl_indexes.php:249 -#: tbl_select.php:285 +#: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 +#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:777 +#: server_privileges.php:296 tbl_change.php:925 tbl_indexes.php:248 +#: tbl_select.php:284 msgid "Or" msgstr "ili" -#: db_qbe.php:506 +#: db_qbe.php:503 msgid "Modify" msgstr "Promeni" -#: db_qbe.php:583 +#: db_qbe.php:580 #, fuzzy #| msgid "Add/Delete Criteria Row" msgid "Add/Delete criteria rows" msgstr "Dodaj/obriši polje za kriterijum" -#: db_qbe.php:595 +#: db_qbe.php:592 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Add/Delete columns" msgstr "Dodaj/obriši kolonu" -#: db_qbe.php:608 db_qbe.php:633 +#: db_qbe.php:605 db_qbe.php:630 msgid "Update Query" msgstr "Ažuriraj upit" -#: db_qbe.php:616 +#: db_qbe.php:613 msgid "Use Tables" msgstr "Koristi tabele" -#: db_qbe.php:639 +#: db_qbe.php:636 #, php-format msgid "SQL query on database %s:" msgstr "SQL upit na bazi %s:" -#: db_qbe.php:933 libraries/common.lib.php:1222 +#: db_qbe.php:930 libraries/common.lib.php:1215 msgid "Submit Query" msgstr "Izvrši SQL upit" @@ -523,17 +496,17 @@ msgstr[0] "%s pogodaka unutar tabele %s" msgstr[1] "%s pogodaka unutar tabele %s" msgstr[2] "%s pogodaka unutar tabele %s" -#: db_search.php:249 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2831 -#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:49 -#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:466 +#: db_search.php:249 db_structure.php:75 db_structure.php:76 +#: db_structure.php:88 db_structure.php:90 db_structure.php:101 +#: db_structure.php:103 libraries/common.lib.php:2836 +#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 +#: tbl_structure.php:35 tbl_structure.php:47 tbl_structure.php:464 msgid "Browse" msgstr "Pregled" -#: db_search.php:254 libraries/display_tbl.lib.php:1164 -#: libraries/display_tbl.lib.php:2055 libraries/sql_query_form.lib.php:453 -#: pdf_pages.php:285 pdf_pages.php:424 pdf_pages.php:460 pdf_pages.php:488 +#: db_search.php:254 libraries/display_tbl.lib.php:1163 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 msgid "Delete" @@ -574,233 +547,239 @@ msgstr "Unutar tabela:" msgid "Inside column:" msgstr "Unutar tabela:" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2830 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:75 +#: db_structure.php:79 db_structure.php:80 db_structure.php:92 +#: db_structure.php:93 db_structure.php:105 db_structure.php:106 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 +#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Novi zapis" -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2827 libraries/common.lib.php:2834 -#: libraries/db_links.inc.php:62 libraries/export/htmlword.php:22 +#: db_structure.php:81 db_structure.php:94 db_structure.php:107 +#: libraries/common.lib.php:2832 libraries/common.lib.php:2839 +#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 -#: libraries/tbl_links.inc.php:55 pmd_general.php:133 -#: server_privileges.php:593 server_replication.php:314 tbl_tracking.php:268 +#: libraries/tbl_links.inc.php:54 pmd_general.php:133 +#: server_privileges.php:592 server_replication.php:313 tbl_tracking.php:263 msgid "Structure" msgstr "Struktura" -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:544 db_structure.php:545 db_tracking.php:90 -#: libraries/Index.class.php:482 libraries/common.lib.php:1659 -#: libraries/db_links.inc.php:99 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:126 -#: server_databases.php:351 tbl_structure.php:26 tbl_structure.php:150 -#: tbl_structure.php:151 tbl_structure.php:470 +#: db_structure.php:82 db_structure.php:83 db_structure.php:95 +#: db_structure.php:96 db_structure.php:108 db_structure.php:109 +#: db_structure.php:530 db_structure.php:531 db_tracking.php:86 +#: libraries/Index.class.php:482 libraries/common.lib.php:1663 +#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 +#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 +#: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" msgstr "Odbaci" -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:542 db_structure.php:543 libraries/common.lib.php:1658 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:104 +#: db_structure.php:84 db_structure.php:85 db_structure.php:97 +#: db_structure.php:98 db_structure.php:110 db_structure.php:111 +#: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 +#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 msgid "Empty" msgstr "Isprazni" -#: db_structure.php:315 libraries/tbl_links.inc.php:99 +#: db_structure.php:301 libraries/tbl_links.inc.php:98 #, php-format msgid "Table %s has been emptied" msgstr "Tabela %s je ispražnjena" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "View %s has been dropped" msgstr "Pogled %s je odbačen" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "Table %s has been dropped" msgstr "Tabela %s je odbačena" -#: db_structure.php:332 +#: db_structure.php:318 msgid "Tracking is active." msgstr "" -#: db_structure.php:334 +#: db_structure.php:320 msgid "Tracking is not active." msgstr "" -#: db_structure.php:419 libraries/display_tbl.lib.php:1943 +#: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -#: db_structure.php:433 db_structure.php:447 libraries/header.inc.php:125 -#: libraries/tbl_info.inc.php:65 tbl_structure.php:184 test/theme.php:73 +#: db_structure.php:419 db_structure.php:433 libraries/header.inc.php:125 +#: libraries/tbl_info.inc.php:60 tbl_structure.php:183 test/theme.php:73 msgid "View" msgstr "Pogled" -#: db_structure.php:484 libraries/db_structure.lib.php:40 -#: libraries/server_links.inc.php:69 server_replication.php:32 -#: server_replication.php:163 server_status.php:368 +#: db_structure.php:470 libraries/db_structure.lib.php:40 +#: libraries/server_links.inc.php:69 server_replication.php:31 +#: server_replication.php:162 server_status.php:368 msgid "Replication" msgstr "Replikacija" -#: db_structure.php:488 +#: db_structure.php:474 msgid "Sum" msgstr "Ukupno" -#: db_structure.php:495 libraries/StorageEngine.class.php:349 +#: db_structure.php:481 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s je podrazumevani pogon skladištenja na ovom MySQL serveru." -#: db_structure.php:523 db_structure.php:540 db_structure.php:541 -#: libraries/display_tbl.lib.php:2080 libraries/display_tbl.lib.php:2085 -#: libraries/mult_submits.inc.php:15 server_databases.php:345 -#: server_databases.php:350 server_privileges.php:1588 tbl_structure.php:454 -#: tbl_structure.php:463 +#: db_structure.php:509 db_structure.php:526 db_structure.php:527 +#: libraries/display_tbl.lib.php:2039 libraries/display_tbl.lib.php:2044 +#: libraries/mult_submits.inc.php:15 server_databases.php:343 +#: server_databases.php:348 server_privileges.php:1592 tbl_structure.php:452 +#: tbl_structure.php:461 msgid "With selected:" msgstr "Označeno:" -#: db_structure.php:526 libraries/display_tbl.lib.php:2075 -#: server_databases.php:347 server_privileges.php:569 -#: server_privileges.php:1591 tbl_structure.php:457 +#: db_structure.php:512 libraries/display_tbl.lib.php:2034 +#: server_databases.php:345 server_privileges.php:568 +#: server_privileges.php:1595 tbl_structure.php:455 msgid "Check All" msgstr "Označi sve" -#: db_structure.php:530 libraries/display_tbl.lib.php:2076 -#: libraries/replication_gui.lib.php:35 server_databases.php:349 -#: server_privileges.php:572 server_privileges.php:1595 tbl_structure.php:461 +#: db_structure.php:516 libraries/display_tbl.lib.php:2035 +#: libraries/replication_gui.lib.php:35 server_databases.php:347 +#: server_privileges.php:571 server_privileges.php:1599 tbl_structure.php:459 msgid "Uncheck All" msgstr "nijedno" -#: db_structure.php:535 +#: db_structure.php:521 msgid "Check tables having overhead" msgstr "Proveri tabele koje imaju prekoračenja" -#: db_structure.php:546 db_structure.php:547 db_structure.php:598 -#: libraries/display_tbl.lib.php:2179 libraries/mult_submits.inc.php:27 -#: tbl_structure.php:491 tbl_structure.php:493 +#: db_structure.php:532 db_structure.php:533 db_structure.php:584 +#: libraries/display_tbl.lib.php:2138 libraries/mult_submits.inc.php:27 +#: tbl_structure.php:489 tbl_structure.php:491 msgid "Print view" msgstr "Za štampu" -#: db_structure.php:548 db_structure.php:549 libraries/mult_submits.inc.php:41 -#: tbl_operations.php:580 +#: db_structure.php:534 db_structure.php:535 libraries/mult_submits.inc.php:41 +#: tbl_operations.php:578 msgid "Check table" msgstr "Proveri tabelu" -#: db_structure.php:550 db_structure.php:551 libraries/mult_submits.inc.php:46 -#: tbl_operations.php:620 tbl_structure.php:708 tbl_structure.php:710 +#: db_structure.php:536 db_structure.php:537 libraries/mult_submits.inc.php:46 +#: tbl_operations.php:618 tbl_structure.php:706 tbl_structure.php:708 msgid "Optimize table" msgstr "Optimizuj tabelu" -#: db_structure.php:552 db_structure.php:553 libraries/mult_submits.inc.php:51 -#: tbl_operations.php:610 +#: db_structure.php:538 db_structure.php:539 libraries/mult_submits.inc.php:51 +#: tbl_operations.php:608 msgid "Repair table" msgstr "Popravi tabelu" -#: db_structure.php:554 db_structure.php:555 libraries/mult_submits.inc.php:56 -#: tbl_operations.php:600 +#: db_structure.php:540 db_structure.php:541 libraries/mult_submits.inc.php:56 +#: tbl_operations.php:598 msgid "Analyze table" msgstr "Analiziraj tabelu" -#: db_structure.php:556 db_structure.php:557 libraries/db_links.inc.php:70 -#: libraries/display_export.lib.php:82 libraries/display_tbl.lib.php:2093 -#: libraries/display_tbl.lib.php:2224 libraries/mult_submits.inc.php:61 -#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:81 -#: pmd_pdf.php:83 pmd_pdf.php:108 server_privileges.php:1372 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 +#: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 +#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 +#: pmd_pdf.php:81 pmd_pdf.php:106 server_privileges.php:1376 #: setup/frames/menu.inc.php:22 tbl_row_action.php:58 msgid "Export" msgstr "Izvoz" -#: db_structure.php:605 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:591 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "Rečnik podataka" -#: db_tracking.php:65 +#: db_tracking.php:61 #, fuzzy msgid "Tracked tables" msgstr "Proveri tabelu" -#: db_tracking.php:70 libraries/export/htmlword.php:85 +#: db_tracking.php:66 libraries/export/htmlword.php:85 #: libraries/export/latex.php:152 libraries/export/odt.php:112 #: libraries/export/sql.php:339 libraries/export/texytext.php:84 #: libraries/export/xml.php:254 libraries/header.inc.php:105 -#: libraries/header_printview.inc.php:57 server_databases.php:168 -#: server_privileges.php:1652 server_privileges.php:1713 -#: server_privileges.php:1971 server_processlist.php:55 -#: server_synchronize.php:1178 server_synchronize.php:1182 -#: tbl_tracking.php:590 test/theme.php:64 +#: libraries/header_printview.inc.php:57 server_databases.php:166 +#: server_privileges.php:1656 server_privileges.php:1717 +#: server_privileges.php:1975 server_processlist.php:55 +#: server_synchronize.php:1177 server_synchronize.php:1181 +#: tbl_tracking.php:585 test/theme.php:64 msgid "Database" msgstr "Baza podataka" -#: db_tracking.php:72 +#: db_tracking.php:68 #, fuzzy msgid "Last version" msgstr "Napravi relaciju" -#: db_tracking.php:73 tbl_tracking.php:593 +#: db_tracking.php:69 tbl_tracking.php:588 #, fuzzy msgid "Created" msgstr "Napravi" -#: db_tracking.php:74 tbl_tracking.php:594 +#: db_tracking.php:70 tbl_tracking.php:589 msgid "Updated" msgstr "" -#: db_tracking.php:76 libraries/Index.class.php:439 -#: libraries/db_structure.lib.php:44 server_databases.php:202 -#: server_privileges.php:1534 server_privileges.php:1717 -#: server_privileges.php:2065 tbl_structure.php:186 +#: db_tracking.php:71 libraries/common.lib.php:1361 +#: libraries/server_links.inc.php:48 server_processlist.php:58 +#: tbl_tracking.php:590 test/theme.php:100 +msgid "Status" +msgstr "Status" + +#: db_tracking.php:72 libraries/Index.class.php:439 +#: libraries/db_structure.lib.php:44 server_databases.php:200 +#: server_privileges.php:1538 server_privileges.php:1721 +#: server_privileges.php:2069 tbl_structure.php:185 msgid "Action" msgstr "Akcija" -#: db_tracking.php:87 db_tracking.php:119 +#: db_tracking.php:83 db_tracking.php:115 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:105 tbl_tracking.php:547 tbl_tracking.php:605 -#: tbl_tracking.php:612 +#: db_tracking.php:101 tbl_tracking.php:542 tbl_tracking.php:600 +#: tbl_tracking.php:607 msgid "active" msgstr "" -#: db_tracking.php:107 tbl_tracking.php:549 tbl_tracking.php:607 -#: tbl_tracking.php:609 +#: db_tracking.php:103 tbl_tracking.php:544 tbl_tracking.php:602 +#: tbl_tracking.php:604 msgid "not active" msgstr "" -#: db_tracking.php:120 +#: db_tracking.php:116 #, fuzzy msgid "Versions" msgstr "Persijski" -#: db_tracking.php:121 tbl_tracking.php:378 tbl_tracking.php:623 +#: db_tracking.php:117 tbl_tracking.php:373 tbl_tracking.php:618 msgid "Tracking report" msgstr "" -#: db_tracking.php:122 tbl_tracking.php:250 tbl_tracking.php:623 +#: db_tracking.php:118 tbl_tracking.php:245 tbl_tracking.php:618 #, fuzzy msgid "Structure snapshot" msgstr "Samo struktura" -#: db_tracking.php:151 +#: db_tracking.php:147 #, fuzzy msgid "Untracked tables" msgstr "Proveri tabelu" -#: db_tracking.php:171 db_tracking.php:173 tbl_structure.php:527 -#: tbl_structure.php:529 +#: db_tracking.php:167 db_tracking.php:169 tbl_structure.php:525 +#: tbl_structure.php:527 #, fuzzy msgid "Track table" msgstr "Proveri tabelu" -#: db_tracking.php:199 +#: db_tracking.php:195 #, fuzzy msgid "Database Log" msgstr "Baza podataka" @@ -809,12 +788,12 @@ msgstr "Baza podataka" msgid "Selected export type has to be saved in file!" msgstr "Odabrani tip izvoza mora biti sačuvan u datoteku!" -#: export.php:153 export.php:178 export.php:620 +#: export.php:152 export.php:177 export.php:615 #, php-format msgid "Insufficient space to save the file %s." msgstr "Nedovoljno prostora za snimanje datoteke %s." -#: export.php:287 +#: export.php:286 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -822,17 +801,17 @@ msgstr "" "Datoteka %s već postoji na serveru, promenite ime datoteke ili uključite " "opciju prepisivanja." -#: export.php:291 export.php:295 +#: export.php:290 export.php:294 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Veb serveru nije dozvoljeno da sačuva datoteku %s." -#: export.php:622 +#: export.php:617 #, php-format msgid "Dump has been saved to file %s." msgstr "Sadržaj baze je sačuvan u datoteku %s." -#: import.php:59 +#: import.php:58 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -841,14 +820,14 @@ msgstr "" "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:840 -#: libraries/File.class.php:950 +#: import.php:277 import.php:330 libraries/File.class.php:566 +#: libraries/File.class.php:676 msgid "File could not be read" msgstr "Datoteku nije moguće pročitati" -#: import.php:286 import.php:295 import.php:314 import.php:323 -#: libraries/File.class.php:1020 libraries/File.class.php:1028 -#: libraries/File.class.php:1044 libraries/File.class.php:1052 +#: import.php:285 import.php:294 import.php:313 import.php:322 +#: libraries/File.class.php:746 libraries/File.class.php:754 +#: libraries/File.class.php:770 libraries/File.class.php:778 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -857,7 +836,7 @@ msgstr "" "Pokušali ste da uvezete datoteku sa kompresijom koja nije podržana (%s). Ili " "podrška za nju nije implementirana, ili je isključena u vašoj konfiguraciji." -#: import.php:336 +#: import.php:335 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -867,29 +846,29 @@ msgstr "" "ili veličina datoteke prevazilazi maksimalnu veličinu dozvoljenu u vašoj " "konfiguraciji PHP-a. Pogledajte. See FAQ 1.16." -#: import.php:371 libraries/display_import.lib.php:23 +#: import.php:370 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "Ne mogu da učitam dodatke za uvoz, molim proverite svoju instalaciju!" -#: import.php:396 +#: import.php:395 msgid "The bookmark has been deleted." msgstr "Obeleživač je upravo obrisan." -#: import.php:400 +#: import.php:399 msgid "Showing bookmark" msgstr "Prikazivanje markera" -#: import.php:402 sql.php:625 +#: import.php:401 sql.php:618 #, php-format msgid "Bookmark %s created" msgstr "Napravljen marker %s" -#: import.php:408 import.php:414 +#: import.php:407 import.php:413 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Uvoz je uspešno završen, izvršeno je %d upita." -#: import.php:423 +#: import.php:422 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -897,7 +876,7 @@ msgstr "" "Vreme izvršenja skripta je isteklo, ako želite da dovršite uvoz, molimo " "pošaljite istu datoteku i uvoz će se nastaviti." -#: import.php:425 +#: import.php:424 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -906,19 +885,19 @@ msgstr "" "znači da phpMyAdmin neće biti u mogućnosti da završi ovaj uvoz osim ako ne " "povećate vremenska ograničenja u PHP-u" -#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:240 +#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:239 #: user_password.php:110 msgid "Back" msgstr "Nazad" -#: index.php:188 +#: index.php:183 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin preferira čitače koji podržavaju okvire." -#: js/messages.php:25 server_synchronize.php:344 server_synchronize.php:356 -#: server_synchronize.php:372 server_synchronize.php:379 -#: server_synchronize.php:738 server_synchronize.php:766 -#: server_synchronize.php:794 server_synchronize.php:806 +#: js/messages.php:25 server_synchronize.php:343 server_synchronize.php:355 +#: server_synchronize.php:371 server_synchronize.php:378 +#: server_synchronize.php:737 server_synchronize.php:765 +#: server_synchronize.php:793 server_synchronize.php:805 msgid "Click to select" msgstr "" @@ -926,15 +905,15 @@ msgstr "" msgid "Click to unselect" msgstr "" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:88 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:87 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" komanda je onemogućena." -#: js/messages.php:30 libraries/mult_submits.inc.php:257 sql.php:187 +#: js/messages.php:30 libraries/mult_submits.inc.php:256 sql.php:186 msgid "Do you really want to " msgstr "Da li stvarno hoćete da " -#: js/messages.php:31 libraries/mult_submits.inc.php:257 sql.php:171 +#: js/messages.php:31 libraries/mult_submits.inc.php:256 sql.php:170 msgid "You are about to DESTROY a complete database!" msgstr "Ovim ćete UNIŠTITI kompletnu bazu podataka!" @@ -963,11 +942,11 @@ msgstr "Ime domaćina je prazno!" msgid "The user name is empty!" msgstr "Ime korisnika nije uneto!" -#: js/messages.php:44 server_privileges.php:1228 user_password.php:65 +#: js/messages.php:44 server_privileges.php:1229 user_password.php:65 msgid "The password is empty!" msgstr "Lozinka je prazna!" -#: js/messages.php:45 server_privileges.php:1226 user_password.php:68 +#: js/messages.php:45 server_privileges.php:1227 user_password.php:68 msgid "The passwords aren't the same!" msgstr "Lozinke nisu identične!" @@ -975,27 +954,27 @@ msgstr "Lozinke nisu identične!" msgid "Cancel" msgstr "Otkaži" -#: js/messages.php:52 pmd_save_pos.php:53 +#: js/messages.php:52 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "Izmene su sačuvane" -#: js/messages.php:53 pmd_relation_upd.php:48 +#: js/messages.php:53 pmd_relation_upd.php:47 msgid "Relation deleted" msgstr "Relacija obrisana" -#: js/messages.php:54 pmd_relation_new.php:63 +#: js/messages.php:54 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:55 pmd_relation_new.php:85 +#: js/messages.php:55 pmd_relation_new.php:84 msgid "Internal relation added" msgstr "Dodata interna relacija" -#: js/messages.php:56 pmd_relation_new.php:62 pmd_relation_new.php:87 +#: js/messages.php:56 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "Greška: relacija nije dodata." -#: js/messages.php:57 pmd_relation_new.php:30 +#: js/messages.php:57 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "Greška: relacija već postoji." @@ -1003,13 +982,13 @@ msgstr "Greška: relacija već postoji." msgid "Error saving coordinates for Designer." msgstr "Greška pri snimanju koordinata za Dizajner." -#: js/messages.php:59 libraries/relation.lib.php:94 -#: libraries/relation.lib.php:106 +#: js/messages.php:59 libraries/relation.lib.php:89 +#: libraries/relation.lib.php:101 msgid "General relation features" msgstr "Opšte osobine relacija" -#: js/messages.php:59 libraries/relation.lib.php:88 -#: libraries/relation.lib.php:95 +#: js/messages.php:59 libraries/relation.lib.php:83 +#: libraries/relation.lib.php:90 msgid "Disabled" msgstr "Onemogućeno" @@ -1025,7 +1004,7 @@ msgstr "Izaberi strani ključ" msgid "Please select the primary key or a unique key" msgstr "Molimo izaberite primarni ili jedinstveni ključ" -#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:547 +#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" @@ -1055,10 +1034,10 @@ msgid "Prev" msgstr "Prethodna" #. l10n: Display text for next month link in calendar -#: js/messages.php:81 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:337 -#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:422 -#: tbl_structure.php:800 +#: js/messages.php:81 libraries/common.lib.php:2358 +#: libraries/common.lib.php:2361 libraries/display_tbl.lib.php:336 +#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 +#: tbl_structure.php:798 msgid "Next" msgstr "Sledeći" @@ -1132,27 +1111,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1562 +#: js/messages.php:101 libraries/common.lib.php:1566 msgid "Jan" msgstr "jan" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1564 +#: js/messages.php:103 libraries/common.lib.php:1568 msgid "Feb" msgstr "feb" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1566 +#: js/messages.php:105 libraries/common.lib.php:1570 msgid "Mar" msgstr "mar" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1568 +#: js/messages.php:107 libraries/common.lib.php:1572 msgid "Apr" msgstr "apr" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1570 +#: js/messages.php:109 libraries/common.lib.php:1574 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1160,37 +1139,37 @@ msgid "May" msgstr "maj" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1572 +#: js/messages.php:111 libraries/common.lib.php:1576 msgid "Jun" msgstr "jun" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1574 +#: js/messages.php:113 libraries/common.lib.php:1578 msgid "Jul" msgstr "jul" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1576 +#: js/messages.php:115 libraries/common.lib.php:1580 msgid "Aug" msgstr "avg" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1578 +#: js/messages.php:117 libraries/common.lib.php:1582 msgid "Sep" msgstr "sep" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1580 +#: js/messages.php:119 libraries/common.lib.php:1584 msgid "Oct" msgstr "okt" #. l10n: Short month name -#: js/messages.php:121 libraries/common.lib.php:1582 +#: js/messages.php:121 libraries/common.lib.php:1586 msgid "Nov" msgstr "nov" #. l10n: Short month name -#: js/messages.php:123 libraries/common.lib.php:1584 +#: js/messages.php:123 libraries/common.lib.php:1588 msgid "Dec" msgstr "dec" @@ -1231,37 +1210,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1587 +#: js/messages.php:136 libraries/common.lib.php:1591 msgid "Sun" msgstr "Ned" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1589 +#: js/messages.php:138 libraries/common.lib.php:1593 msgid "Mon" msgstr "Pon" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1591 +#: js/messages.php:140 libraries/common.lib.php:1595 msgid "Tue" msgstr "Uto" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1593 +#: js/messages.php:142 libraries/common.lib.php:1597 msgid "Wed" msgstr "Sre" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1595 +#: js/messages.php:144 libraries/common.lib.php:1599 msgid "Thu" msgstr "Čet" #. l10n: Short week day name -#: js/messages.php:146 libraries/common.lib.php:1597 +#: js/messages.php:146 libraries/common.lib.php:1601 msgid "Fri" msgstr "Pet" #. l10n: Short week day name -#: js/messages.php:148 libraries/common.lib.php:1599 +#: js/messages.php:148 libraries/common.lib.php:1603 msgid "Sat" msgstr "Sub" @@ -1339,18 +1318,13 @@ msgstr "u sekundi" msgid "Font size" msgstr "Veličina fonta" -#: libraries/File.class.php:336 libraries/File.class.php:424 -#: libraries/File.class.php:561 libraries/File.class.php:700 -msgid "Unknown error in file upload." -msgstr "Nepoznata greška pri slanju datoteke." - -#: libraries/File.class.php:406 +#: libraries/File.class.php:315 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:409 +#: libraries/File.class.php:318 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -1358,60 +1332,64 @@ msgstr "" "Poslata datoteka prevazilazi vrednost direktive MAX_FILE_SIZE koja je " "navedena u HTML formi." -#: libraries/File.class.php:412 +#: libraries/File.class.php:321 msgid "The uploaded file was only partially uploaded." msgstr "Poslata datoteka je samo delimično primljena." -#: libraries/File.class.php:415 +#: libraries/File.class.php:324 msgid "Missing a temporary folder." msgstr "Nedostaje privremeni direktorijum." -#: libraries/File.class.php:418 +#: libraries/File.class.php:327 msgid "Failed to write file to disk." msgstr "Neuspelo upisivanje datoteke na disk." -#: libraries/File.class.php:421 +#: libraries/File.class.php:330 msgid "File upload stopped by extension." msgstr "Prijem datoteke zaustavljen zbog ekstenzije." -#: libraries/File.class.php:898 +#: libraries/File.class.php:333 +msgid "Unknown error in file upload." +msgstr "Nepoznata greška pri slanju datoteke." + +#: libraries/File.class.php:624 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:427 tbl_relation.php:528 +#: libraries/Index.class.php:427 tbl_relation.php:526 msgid "No index defined!" msgstr "Ključ nije definisan!" -#: libraries/Index.class.php:432 server_databases.php:131 tbl_tracking.php:315 +#: libraries/Index.class.php:432 server_databases.php:129 tbl_tracking.php:310 msgid "Indexes" msgstr "Ključevi" #: libraries/Index.class.php:443 libraries/mult_submits.inc.php:102 -#: libraries/tbl_properties.inc.php:518 tbl_structure.php:32 -#: tbl_structure.php:154 tbl_structure.php:158 tbl_structure.php:473 -#: tbl_tracking.php:321 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:31 +#: tbl_structure.php:153 tbl_structure.php:157 tbl_structure.php:471 +#: tbl_tracking.php:316 msgid "Unique" msgstr "Jedinstveni" -#: libraries/Index.class.php:444 tbl_tracking.php:322 +#: libraries/Index.class.php:444 tbl_tracking.php:317 msgid "Packed" msgstr "" -#: libraries/Index.class.php:446 tbl_tracking.php:324 +#: libraries/Index.class.php:446 tbl_tracking.php:319 msgid "Cardinality" msgstr "Kardinalnost" -#: libraries/Index.class.php:449 tbl_tracking.php:278 tbl_tracking.php:327 +#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322 #, fuzzy msgid "Comment" msgstr "Komentari" #: libraries/Index.class.php:465 libraries/common.lib.php:609 -#: libraries/common.lib.php:1198 libraries/display_tbl.lib.php:1116 +#: libraries/common.lib.php:1191 libraries/display_tbl.lib.php:1115 #: libraries/import.lib.php:1119 libraries/import.lib.php:1143 -#: pdf_pages.php:284 setup/frames/index.inc.php:124 +#: pdf_pages.php:283 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:349 tbl_row_action.php:68 msgid "Edit" msgstr "Promeni" @@ -1433,15 +1411,15 @@ msgid "" msgstr "" #: libraries/List_Database.class.php:430 libraries/server_links.inc.php:40 -#: server_databases.php:87 server_privileges.php:1652 +#: server_databases.php:85 server_privileges.php:1656 #: setup/lib/messages.inc.php:107 test/theme.php:92 msgid "Databases" msgstr "Baze" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:259 libraries/import.lib.php:134 pdf_schema.php:31 -#: pdf_schema.php:231 tbl_change.php:1023 tbl_operations.php:212 -#: tbl_relation.php:289 view_operations.php:61 +#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 +#: tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Greška" @@ -1468,40 +1446,40 @@ msgid_plural "%1$d rows inserted." msgstr[0] "Nema odabranih redova" msgstr[1] "Nema odabranih redova" -#: libraries/StorageEngine.class.php:196 +#: libraries/StorageEngine.class.php:194 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:352 +#: libraries/StorageEngine.class.php:354 #, php-format msgid "%s is available on this MySQL server." msgstr "%s je dostupan na ovom MySQL serveru." -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:357 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s je onemogućen na ovom MySQL serveru." -#: libraries/StorageEngine.class.php:359 +#: libraries/StorageEngine.class.php:361 #, 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:1018 +#: libraries/Table.class.php:1017 msgid "Invalid database" msgstr "Neispravna baza podataka" -#: libraries/Table.class.php:1032 tbl_get_field.php:25 +#: libraries/Table.class.php:1031 tbl_get_field.php:25 msgid "Invalid table name" msgstr "Neispravan naziv tabele" -#: libraries/Table.class.php:1047 +#: libraries/Table.class.php:1046 #, 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:1131 +#: libraries/Table.class.php:1129 #, php-format msgid "Table %s has been renamed to %s" msgstr "Tabeli %s promenjeno ime u %s" @@ -1519,22 +1497,22 @@ msgstr "Pregled ne postoji." msgid "take it" msgstr "preuzmi" -#: libraries/Theme_Manager.class.php:114 +#: 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:152 +#: libraries/Theme_Manager.class.php:147 #, php-format msgid "Theme %s not found!" msgstr "Nije pronađena tema %s!" -#: libraries/Theme_Manager.class.php:220 +#: 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:296 test/theme.php:160 themes.php:20 +#: libraries/Theme_Manager.class.php:291 test/theme.php:160 themes.php:20 #: themes.php:40 msgid "Theme / Style" msgstr "Tema / stil" @@ -1647,19 +1625,19 @@ msgstr "" msgid "Authenticating..." msgstr "" -#: libraries/blobstreaming.lib.php:689 +#: libraries/blobstreaming.lib.php:340 msgid "View image" msgstr "" -#: libraries/blobstreaming.lib.php:693 +#: libraries/blobstreaming.lib.php:344 msgid "Play audio" msgstr "" -#: libraries/blobstreaming.lib.php:698 +#: libraries/blobstreaming.lib.php:349 msgid "View video" msgstr "" -#: libraries/blobstreaming.lib.php:702 +#: libraries/blobstreaming.lib.php:353 msgid "Download file" msgstr "" @@ -1714,7 +1692,7 @@ msgstr "Server" msgid "Invalid authentication method set in configuration:" msgstr "Neispravan metod autentikacije je zadat u konfiguraciji:" -#: libraries/common.inc.php:909 +#: libraries/common.inc.php:908 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Trebalo bi da unapredite vaš %s server na verziju %s ili noviju." @@ -1739,7 +1717,8 @@ msgstr "en" #: libraries/common.lib.php:425 libraries/common.lib.php:427 #: libraries/common.lib.php:429 libraries/common.lib.php:445 #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 -#: libraries/display_export.lib.php:163 libraries/relation.lib.php:84 +#: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 +#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 #: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" @@ -1754,148 +1733,148 @@ msgstr "SQL upit" msgid "MySQL said: " msgstr "MySQL reče: " -#: libraries/common.lib.php:1136 +#: libraries/common.lib.php:1129 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1174 setup/lib/messages.inc.php:350 +#: libraries/common.lib.php:1167 setup/lib/messages.inc.php:350 msgid "Explain SQL" msgstr "Objasni SQL" -#: libraries/common.lib.php:1177 +#: libraries/common.lib.php:1170 msgid "Skip Explain SQL" msgstr "Preskoči objašnjavanje SQL-a" -#: libraries/common.lib.php:1211 +#: libraries/common.lib.php:1204 msgid "Without PHP Code" msgstr "bez PHP koda" -#: libraries/common.lib.php:1214 setup/lib/messages.inc.php:352 +#: libraries/common.lib.php:1207 setup/lib/messages.inc.php:352 msgid "Create PHP Code" msgstr "Napravi PHP kod" -#: libraries/common.lib.php:1232 server_status.php:451 +#: libraries/common.lib.php:1225 server_status.php:451 #: setup/lib/messages.inc.php:351 msgid "Refresh" msgstr "Osveži" -#: libraries/common.lib.php:1241 +#: libraries/common.lib.php:1234 msgid "Skip Validate SQL" msgstr "Preskoči proveru SQL-a" -#: libraries/common.lib.php:1244 setup/lib/messages.inc.php:353 +#: libraries/common.lib.php:1237 setup/lib/messages.inc.php:353 msgid "Validate SQL" msgstr "Proveri SQL" -#: libraries/common.lib.php:1283 +#: libraries/common.lib.php:1287 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1285 +#: libraries/common.lib.php:1289 #, fuzzy #| msgid "Engines" msgid "Inline" msgstr "Skladištenja" -#: libraries/common.lib.php:1339 libraries/common.lib.php:1354 +#: libraries/common.lib.php:1343 libraries/common.lib.php:1358 msgid "Profiling" msgstr "Profilisanje" -#: libraries/common.lib.php:1358 libraries/tbl_triggers.lib.php:27 +#: libraries/common.lib.php:1362 libraries/tbl_triggers.lib.php:27 #: server_processlist.php:57 msgid "Time" msgstr "Vreme" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "B" msgstr "bajtova" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "KiB" msgstr "KB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "MiB" msgstr "MB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "GiB" msgstr "GB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "TiB" msgstr "TB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "PiB" msgstr "PB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "EiB" msgstr "EB" #. l10n: Thousands separator -#: libraries/common.lib.php:1424 +#: libraries/common.lib.php:1428 msgid "," msgstr "," #. l10n: Decimal separator -#: libraries/common.lib.php:1426 +#: libraries/common.lib.php:1430 msgid "." msgstr "." #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1603 +#: libraries/common.lib.php:1607 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%d. %B %Y. u %H:%M" -#: libraries/common.lib.php:1909 +#: libraries/common.lib.php:1913 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dana, %s sati, %s minuta i %s sekundi" -#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 -#: libraries/display_tbl.lib.php:289 server_status.php:718 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 +#: libraries/display_tbl.lib.php:288 server_status.php:718 msgid "Begin" msgstr "Početak" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 -#: libraries/display_tbl.lib.php:290 server_binlog.php:154 +#: libraries/common.lib.php:2328 libraries/common.lib.php:2331 +#: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "Prethodna" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 -#: libraries/display_tbl.lib.php:352 +#: libraries/common.lib.php:2359 libraries/common.lib.php:2362 +#: libraries/display_tbl.lib.php:351 msgid "End" msgstr "Kraj" -#: libraries/common.lib.php:2429 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "Pređi na bazu "%s"." -#: libraries/common.lib.php:2448 +#: libraries/common.lib.php:2453 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Ova funkcionalnost %s je pogođena poznatom greškom, vidite %s" -#: libraries/common.lib.php:2828 libraries/common.lib.php:2835 -#: libraries/db_links.inc.php:67 libraries/export/sql.php:24 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 +#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 -#: libraries/tbl_links.inc.php:59 querywindow.php:89 test/theme.php:96 +#: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2837 libraries/db_links.inc.php:103 -#: libraries/tbl_links.inc.php:94 libraries/tbl_links.inc.php:116 -#: view_operations.php:88 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: view_operations.php:87 msgid "Operations" msgstr "Operacije" -#: libraries/core.lib.php:282 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1912,38 +1891,38 @@ msgstr "Događaji" msgid "Name" msgstr "Ime" -#: libraries/db_links.inc.php:44 +#: libraries/db_links.inc.php:43 #, php-format msgid "Database %s has been dropped." msgstr "Baza %s je odbačena." -#: libraries/db_links.inc.php:56 libraries/db_links.inc.php:57 -#: libraries/db_links.inc.php:58 +#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 +#: libraries/db_links.inc.php:57 msgid "Database seems to be empty!" msgstr "Baza je izgleda prazna!" -#: libraries/db_links.inc.php:80 libraries/relation.lib.php:142 -#: libraries/tbl_links.inc.php:68 +#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:85 +#: libraries/db_links.inc.php:84 msgid "Query" msgstr "Upit po primeru" -#: libraries/db_links.inc.php:90 libraries/relation.lib.php:138 +#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 msgid "Designer" msgstr "Dizajner" -#: libraries/db_links.inc.php:97 libraries/server_links.inc.php:87 -#: libraries/tbl_links.inc.php:90 pmd_pdf.php:83 pmd_pdf.php:109 +#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Uvoz" -#: libraries/db_links.inc.php:110 libraries/server_links.inc.php:65 -#: server_privileges.php:111 server_privileges.php:1714 -#: server_privileges.php:2063 test/theme.php:116 +#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: server_privileges.php:110 server_privileges.php:1718 +#: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" msgstr "Privilegije" @@ -1955,14 +1934,14 @@ msgstr "Rutine" msgid "Return type" msgstr "Povratni tip" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1847 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1806 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "Može biti približno. Vidite FAQ 3.11" -#: libraries/db_structure.lib.php:60 server_databases.php:141 -#: tbl_printview.php:334 tbl_structure.php:681 +#: libraries/db_structure.lib.php:60 server_databases.php:139 +#: tbl_printview.php:333 tbl_structure.php:679 msgid "Overhead" msgstr "Prekoračenje" @@ -1981,7 +1960,7 @@ msgstr "Server ne odgovara" 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:358 tbl_structure.php:607 +#: libraries/dbi/mysql.dbi.lib.php:358 tbl_structure.php:605 msgid "Details..." msgstr "" @@ -1991,22 +1970,22 @@ msgid "Change password" msgstr "Promeni lozinku" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:807 +#: libraries/replication_gui.lib.php:347 server_privileges.php:806 msgid "No Password" msgstr "Nema lozinke" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1530 server_synchronize.php:1174 +#: libraries/replication_gui.lib.php:351 server_privileges.php:795 +#: server_privileges.php:799 server_privileges.php:810 +#: server_privileges.php:1534 server_synchronize.php:1173 msgid "Password" msgstr "Lozinka" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:815 server_privileges.php:818 +#: server_privileges.php:814 server_privileges.php:817 msgid "Re-type" msgstr "Ponovite unos" @@ -2029,8 +2008,8 @@ msgstr "Napravi novu bazu podataka" msgid "Create" msgstr "Napravi" -#: libraries/display_create_database.lib.php:39 server_privileges.php:113 -#: server_privileges.php:1419 server_replication.php:34 +#: libraries/display_create_database.lib.php:39 server_privileges.php:112 +#: server_privileges.php:1423 server_replication.php:33 msgid "No Privileges" msgstr "Nema privilegija" @@ -2051,51 +2030,51 @@ msgstr "Napravi novu tabelu u bazi %s" msgid "Number of columns" msgstr "Broj polja" -#: libraries/display_export.lib.php:41 +#: libraries/display_export.lib.php:35 msgid "Could not load export plugins, please check your installation!" msgstr "" "Nije moguće učitati dodatke za izvoz, molimo proverite svoju instalaciju!" -#: libraries/display_export.lib.php:106 +#: libraries/display_export.lib.php:100 #, fuzzy, php-format #| msgid "Dump %s row(s) starting at record # %s" msgid "Dump %s row(s) starting at row # %s" msgstr "Prikaži %s redova počevši od reda %s." -#: libraries/display_export.lib.php:114 +#: libraries/display_export.lib.php:108 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:124 setup/lib/messages.inc.php:79 +#: libraries/display_export.lib.php:118 setup/lib/messages.inc.php:79 msgid "Save as file" msgstr "Sačuvaj kao datoteku" -#: libraries/display_export.lib.php:133 +#: libraries/display_export.lib.php:127 #, php-format msgid "Save on server in %s directory" msgstr "Sačuvaj na server u direktorijum %s" -#: libraries/display_export.lib.php:141 setup/lib/messages.inc.php:87 +#: libraries/display_export.lib.php:135 setup/lib/messages.inc.php:87 msgid "Overwrite existing file(s)" msgstr "Prepiši postojeće datoteke" -#: libraries/display_export.lib.php:147 +#: libraries/display_export.lib.php:141 msgid "File name template" msgstr "Šablon imena datoteke" -#: libraries/display_export.lib.php:151 +#: libraries/display_export.lib.php:145 msgid "server name" msgstr "naziv servera" -#: libraries/display_export.lib.php:154 +#: libraries/display_export.lib.php:148 msgid "database name" msgstr "naziv baze" -#: libraries/display_export.lib.php:157 +#: libraries/display_export.lib.php:151 msgid "table name" msgstr "naziv tabele" -#: libraries/display_export.lib.php:161 +#: libraries/display_export.lib.php:155 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2106,39 +2085,39 @@ msgstr "" "koristite stringove za formatiranje vremena. Takođe će se desiti i sledeće " "transformacije: %3$s. Preostali tekst će ostati kako jeste." -#: libraries/display_export.lib.php:202 +#: libraries/display_export.lib.php:196 msgid "remember template" msgstr "zapamti šablon" -#: libraries/display_export.lib.php:210 libraries/display_import.lib.php:177 +#: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 #: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 msgid "Character set of the file:" msgstr "Karakter set datoteke:" -#: libraries/display_export.lib.php:235 setup/lib/messages.inc.php:81 +#: libraries/display_export.lib.php:229 setup/lib/messages.inc.php:81 msgid "Compression" msgstr "Kompresija" -#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:196 -#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:529 -#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:574 -#: server_privileges.php:1867 server_processlist.php:74 +#: libraries/display_export.lib.php:234 libraries/display_import.lib.php:196 +#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:528 +#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:573 +#: server_privileges.php:1871 server_processlist.php:74 msgid "None" msgstr "nema" -#: libraries/display_export.lib.php:247 +#: libraries/display_export.lib.php:241 msgid "\"zipped\"" msgstr "\"zipovano\"" -#: libraries/display_export.lib.php:253 +#: libraries/display_export.lib.php:247 msgid "\"gzipped\"" msgstr "\"gzip-ovano\"" -#: libraries/display_export.lib.php:259 +#: libraries/display_export.lib.php:253 msgid "\"bzipped\"" msgstr "\"bzip-ovano\"" -#: libraries/display_export.lib.php:274 libraries/export/sql.php:42 +#: libraries/display_export.lib.php:268 libraries/export/sql.php:42 #: libraries/import/sql.php:31 msgid "SQL compatibility mode" msgstr "Mod SQL kompatibilnosti" @@ -2173,12 +2152,12 @@ msgid "File uploads are not allowed on this server." msgstr "Slanje datoteka na ovaj server nije dozvoljeno." #: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 -#: tbl_change.php:1024 +#: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "Direktorijum koji ste izabrali za slanje nije dostupan" #: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 -#: tbl_change.php:1027 +#: tbl_change.php:925 msgid "web server upload directory" msgstr "direktorijum za slanje veb servera " @@ -2264,43 +2243,43 @@ msgstr "Dimenzije papira" msgid "Language" msgstr "Jezik" -#: libraries/display_tbl.lib.php:303 +#: libraries/display_tbl.lib.php:302 #, php-format msgid "%d is not valid row number." msgstr "%d nije ispravan broj reda." -#: libraries/display_tbl.lib.php:309 +#: libraries/display_tbl.lib.php:308 #, fuzzy #| msgid "row(s) starting from record #" msgid "row(s) starting from row #" msgstr " redova počev od reda" -#: libraries/display_tbl.lib.php:315 +#: libraries/display_tbl.lib.php:314 msgid "horizontal" msgstr "horizontalnom" -#: libraries/display_tbl.lib.php:316 +#: libraries/display_tbl.lib.php:315 msgid "horizontal (rotated headers)" msgstr "horizontalnom (rotirana zaglavlja)" -#: libraries/display_tbl.lib.php:317 +#: libraries/display_tbl.lib.php:316 msgid "vertical" msgstr "vertikalnom" -#: libraries/display_tbl.lib.php:323 +#: libraries/display_tbl.lib.php:322 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "u %s modu i ponovi zaglavlje posle svakog %s reda" -#: libraries/display_tbl.lib.php:345 +#: libraries/display_tbl.lib.php:344 msgid "This operation could take a long time. Proceed anyway?" msgstr "Ova operacija može da potraje. Da li da nastavimo?" -#: libraries/display_tbl.lib.php:511 +#: libraries/display_tbl.lib.php:510 msgid "Sort by key" msgstr "Sortiraj po ključu" -#: libraries/display_tbl.lib.php:554 libraries/export/codegen.php:38 +#: libraries/display_tbl.lib.php:553 libraries/export/codegen.php:38 #: libraries/export/csv.php:29 libraries/export/excel.php:34 #: libraries/export/htmlword.php:28 libraries/export/latex.php:32 #: libraries/export/mediawiki.php:21 libraries/export/ods.php:26 @@ -2310,100 +2289,100 @@ msgstr "Sortiraj po ključu" #: libraries/export/xlsx.php:26 libraries/export/xml.php:23 #: libraries/export/yaml.php:27 libraries/import.lib.php:1114 #: libraries/import.lib.php:1136 libraries/import/csv.php:31 -#: libraries/import/docsql.php:33 libraries/import/ldi.php:46 +#: libraries/import/docsql.php:32 libraries/import/ldi.php:46 #: libraries/import/ods.php:30 libraries/import/sql.php:19 #: libraries/import/xls.php:25 libraries/import/xlsx.php:25 -#: libraries/import/xml.php:25 tbl_select.php:264 tbl_structure.php:752 +#: libraries/import/xml.php:25 tbl_select.php:263 tbl_structure.php:750 msgid "Options" msgstr "Opcije" -#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:569 +#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:568 msgid "Partial Texts" msgstr "Deo teksta" -#: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:573 +#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:572 msgid "Full Texts" msgstr "Pun tekst" -#: libraries/display_tbl.lib.php:586 +#: libraries/display_tbl.lib.php:585 #, fuzzy msgid "Relational key" msgstr "Relaciona shema" -#: libraries/display_tbl.lib.php:587 +#: libraries/display_tbl.lib.php:586 #, fuzzy #| msgid "Relational schema" msgid "Relational display column" msgstr "Relaciona shema" -#: libraries/display_tbl.lib.php:594 +#: libraries/display_tbl.lib.php:593 msgid "Show binary contents" msgstr "" -#: libraries/display_tbl.lib.php:596 +#: libraries/display_tbl.lib.php:595 msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:598 +#: libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "" -#: libraries/display_tbl.lib.php:606 pmd_general.php:140 tbl_change.php:312 -#: tbl_change.php:318 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:307 +#: tbl_change.php:313 msgid "Hide" msgstr "Sakrij" -#: libraries/display_tbl.lib.php:606 libraries/relation.lib.php:122 -#: libraries/tbl_properties.inc.php:143 transformation_overview.php:46 +#: libraries/display_tbl.lib.php:605 libraries/relation.lib.php:117 +#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46 msgid "Browser transformation" msgstr "Tranformacije čitača" -#: libraries/display_tbl.lib.php:1125 libraries/display_tbl.lib.php:1129 -#: libraries/display_tbl.lib.php:1131 +#: libraries/display_tbl.lib.php:1124 libraries/display_tbl.lib.php:1128 +#: libraries/display_tbl.lib.php:1130 msgid "Execute bookmarked query" msgstr "Izvrši upamćen upit" -#: libraries/display_tbl.lib.php:1144 libraries/display_tbl.lib.php:1156 +#: libraries/display_tbl.lib.php:1143 libraries/display_tbl.lib.php:1155 msgid "The row has been deleted" msgstr "Red je obrisan" -#: libraries/display_tbl.lib.php:1183 libraries/display_tbl.lib.php:2055 +#: libraries/display_tbl.lib.php:1182 libraries/display_tbl.lib.php:2014 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "Obustavi" -#: libraries/display_tbl.lib.php:1933 +#: libraries/display_tbl.lib.php:1892 msgid "in query" msgstr "u upitu" -#: libraries/display_tbl.lib.php:1951 +#: libraries/display_tbl.lib.php:1910 msgid "Showing rows" msgstr "Prikaz zapisa" -#: libraries/display_tbl.lib.php:1961 +#: libraries/display_tbl.lib.php:1920 msgid "total" msgstr "ukupno" -#: libraries/display_tbl.lib.php:1969 sql.php:523 +#: libraries/display_tbl.lib.php:1928 sql.php:522 #, php-format msgid "Query took %01.4f sec" msgstr "Upit je trajao %01.4f sekundi" -#: libraries/display_tbl.lib.php:2088 libraries/mult_submits.inc.php:112 -#: querywindow.php:115 querywindow.php:119 querywindow.php:122 -#: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:469 +#: libraries/display_tbl.lib.php:2047 libraries/mult_submits.inc.php:112 +#: querywindow.php:114 querywindow.php:118 querywindow.php:121 +#: tbl_structure.php:23 tbl_structure.php:148 tbl_structure.php:467 msgid "Change" msgstr "Promeni" -#: libraries/display_tbl.lib.php:2158 +#: libraries/display_tbl.lib.php:2117 msgid "Query results operations" msgstr "Operacije na rezultatima upita" -#: libraries/display_tbl.lib.php:2186 +#: libraries/display_tbl.lib.php:2145 msgid "Print view (with full texts)" msgstr "Pogled za štampu (sa punim tekstom)" -#: libraries/display_tbl.lib.php:2359 +#: libraries/display_tbl.lib.php:2318 msgid "Link not found" msgstr "Veza nije pronađena" @@ -2460,9 +2439,9 @@ msgstr "InnoDB status" msgid "Buffer Pool Usage" msgstr "Korišćenje skupa prihvatnika" -#: libraries/engines/innodb.lib.php:168 server_databases.php:136 -#: server_databases.php:304 server_status.php:524 server_status.php:585 -#: server_status.php:606 tbl_printview.php:349 tbl_structure.php:695 +#: libraries/engines/innodb.lib.php:168 server_databases.php:134 +#: server_databases.php:302 server_status.php:524 server_status.php:585 +#: server_status.php:606 tbl_printview.php:348 tbl_structure.php:693 msgid "Total" msgstr "Ukupno" @@ -2598,6 +2577,78 @@ msgstr "" "Prihvatnik koji se alocira pri sortiranju MyISAM indeksa za vreme operacije " "REPAIR TABLE ili pri kreiranju indeksa sa CREATE INDEX ili ALTER TABLE." +#: libraries/engines/pbms.lib.php:31 +msgid "Garbage Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:32 +msgid "The percentage of garbage in a repository file before it is compacted." +msgstr "" + +#: libraries/engines/pbms.lib.php:36 libraries/replication_gui.lib.php:69 +#: server_synchronize.php:1161 +#, fuzzy +msgid "Port" +msgstr "Sortiranje" + +#: libraries/engines/pbms.lib.php:37 +msgid "" +"The port for the PBMS stream-based communications. Setting this value to 0 " +"will disable HTTP communication with the daemon." +msgstr "" + +#: libraries/engines/pbms.lib.php:41 +msgid "Repository Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:42 +msgid "" +"The maximum size of a BLOB repository file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:46 +msgid "Temp Blob Timeout" +msgstr "" + +#: libraries/engines/pbms.lib.php:47 +msgid "" +"The timeout, in seconds, for temporary BLOBs. Uploaded BLOB data is removed " +"after this time, unless they are referenced by a record in the database." +msgstr "" + +#: libraries/engines/pbms.lib.php:51 +msgid "Temp Log Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:52 +msgid "" +"The maximum size of a temporary BLOB log file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:56 +msgid "Max Keep Alive" +msgstr "" + +#: libraries/engines/pbms.lib.php:57 +msgid "" +"The timeout for inactive connection with the keep-alive flag set. After this " +"time the connection will be closed. The time-out is in milliseconds (1/1000)." +msgstr "" + +#: libraries/engines/pbms.lib.php:61 +msgid "Metadata Headers" +msgstr "" + +#: libraries/engines/pbms.lib.php:62 +msgid "" +"A \":\" delimited list of metadata headers to be used to initialize the " +"pbms_metadata_header table when a database is created." +msgstr "" + #: libraries/engines/pbxt.lib.php:22 msgid "Index cache size" msgstr "" @@ -2723,7 +2774,7 @@ msgid "" msgstr "" #: libraries/export/codegen.php:36 setup/lib/messages.inc.php:85 -#: tbl_printview.php:374 tbl_structure.php:736 +#: tbl_printview.php:373 tbl_structure.php:734 msgid "Format" msgstr "Format" @@ -2794,9 +2845,9 @@ msgstr "Microsoft Word 2000" #: libraries/export/htmlword.php:23 libraries/export/latex.php:59 #: libraries/export/latex.php:205 libraries/export/odt.php:47 #: libraries/export/sql.php:105 libraries/export/sql.php:865 -#: libraries/export/texytext.php:27 server_databases.php:126 -#: server_privileges.php:576 server_replication.php:315 tbl_printview.php:315 -#: tbl_structure.php:664 +#: libraries/export/texytext.php:27 server_databases.php:124 +#: server_privileges.php:575 server_replication.php:314 tbl_printview.php:314 +#: tbl_structure.php:662 msgid "Data" msgstr "Podaci" @@ -2811,7 +2862,6 @@ msgid "Table structure for table" msgstr "Struktura tabele" #: libraries/export/latex.php:13 -#| msgid "Content of table __TABLE__" msgid "Content of table @TABLE@" msgstr "Sadržaj tabele @TABLE@" @@ -2820,7 +2870,6 @@ msgid "(continued)" msgstr "(nastavljeno)" #: libraries/export/latex.php:15 -#| msgid "Structure of table __TABLE__" msgid "Structure of table @TABLE@" msgstr "Struktura tabele @TABLE@" @@ -2845,13 +2894,13 @@ msgid "Label key" msgstr "Oznaka ključa" #: libraries/export/latex.php:46 libraries/export/odt.php:34 -#: libraries/export/sql.php:90 tbl_relation.php:398 +#: libraries/export/sql.php:90 tbl_relation.php:396 msgid "Relations" msgstr "Relacije" #: libraries/export/latex.php:52 libraries/export/odt.php:40 #: libraries/export/odt.php:317 libraries/export/sql.php:94 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "MIME-tipovi" @@ -2859,10 +2908,10 @@ msgstr "MIME-tipovi" #: libraries/export/xml.php:101 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1529 server_privileges.php:2061 -#: server_processlist.php:54 server_synchronize.php:1158 +#: libraries/replication_gui.lib.php:331 server_privileges.php:730 +#: server_privileges.php:733 server_privileges.php:789 +#: server_privileges.php:1533 server_privileges.php:2065 +#: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "Domaćin" @@ -3055,8 +3104,8 @@ msgstr "Tip izvoza" msgid "Export contents" msgstr "Tip izvoza" -#: libraries/footer.inc.php:182 libraries/footer.inc.php:193 -#: libraries/footer.inc.php:196 +#: libraries/footer.inc.php:180 libraries/footer.inc.php:191 +#: libraries/footer.inc.php:194 msgid "Open new phpMyAdmin window" msgstr "Otvori novi phpMyAdmin prozor" @@ -3073,7 +3122,7 @@ msgstr "SQL rezultat" msgid "Generated by" msgstr "Generisao" -#: libraries/import.lib.php:151 sql.php:519 tbl_change.php:180 +#: libraries/import.lib.php:151 sql.php:518 tbl_change.php:175 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL je vratio prazan rezultat (nula redova)." @@ -3132,7 +3181,7 @@ msgstr "Ignoriši duplicirane redove" msgid "Column names in first row" msgstr "" -#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:501 +#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:500 #: view_create.php:147 msgid "Column names" msgstr "Imena kolona" @@ -3159,12 +3208,12 @@ msgstr "Neispravan format CSV ulaza na liniji %d." msgid "Invalid column count in CSV input on line %d." msgstr "Neispravan broj polja u CSV ulazu na liniji %d." -#: libraries/import/docsql.php:28 +#: libraries/import/docsql.php:27 msgid "DocSQL" msgstr "DocSQL" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 -#: server_synchronize.php:427 server_synchronize.php:870 +#: libraries/import/docsql.php:30 libraries/tbl_properties.inc.php:616 +#: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "Naziv tabele" @@ -3221,26 +3270,26 @@ msgstr "nema" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:512 -#: tbl_structure.php:28 tbl_structure.php:152 tbl_structure.php:156 -#: tbl_structure.php:472 +#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:511 +#: tbl_structure.php:27 tbl_structure.php:151 tbl_structure.php:155 +#: tbl_structure.php:470 msgid "Primary" msgstr "Primarni" #: libraries/mult_submits.inc.php:97 libraries/tbl_properties.inc.php:115 -#: libraries/tbl_properties.inc.php:524 tbl_printview.php:324 -#: tbl_structure.php:30 tbl_structure.php:153 tbl_structure.php:157 -#: tbl_structure.php:474 tbl_structure.php:672 +#: libraries/tbl_properties.inc.php:523 tbl_printview.php:323 +#: tbl_structure.php:29 tbl_structure.php:152 tbl_structure.php:156 +#: tbl_structure.php:472 tbl_structure.php:670 msgid "Index" msgstr "Ključ" -#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:530 -#: tbl_structure.php:34 tbl_structure.php:155 tbl_structure.php:159 -#: tbl_structure.php:477 +#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:529 +#: tbl_structure.php:33 tbl_structure.php:154 tbl_structure.php:158 +#: tbl_structure.php:475 msgid "Fulltext" msgstr "Tekst ključ" -#: libraries/mult_submits.inc.php:434 tbl_replace.php:330 +#: libraries/mult_submits.inc.php:433 tbl_replace.php:330 msgid "No change" msgstr "Nema izmena" @@ -3248,190 +3297,190 @@ msgstr "Nema izmena" msgid "Charset" msgstr "Karakter set" -#: libraries/mysql_charsets.lib.php:210 libraries/mysql_charsets.lib.php:411 -#: tbl_change.php:515 +#: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 +#: tbl_change.php:510 msgid "Binary" msgstr "Binarni" -#: libraries/mysql_charsets.lib.php:222 +#: libraries/mysql_charsets.lib.php:214 msgid "Bulgarian" msgstr "Bugarski" -#: libraries/mysql_charsets.lib.php:226 libraries/mysql_charsets.lib.php:351 +#: libraries/mysql_charsets.lib.php:218 libraries/mysql_charsets.lib.php:343 msgid "Simplified Chinese" msgstr "Pojednostavljeni kineski" -#: libraries/mysql_charsets.lib.php:228 libraries/mysql_charsets.lib.php:371 +#: libraries/mysql_charsets.lib.php:220 libraries/mysql_charsets.lib.php:363 msgid "Traditional Chinese" msgstr "Tradicionalni kineski" -#: libraries/mysql_charsets.lib.php:232 libraries/mysql_charsets.lib.php:418 +#: libraries/mysql_charsets.lib.php:224 libraries/mysql_charsets.lib.php:410 msgid "case-insensitive" msgstr "Ne razlikuje mala i velika slova" -#: libraries/mysql_charsets.lib.php:235 libraries/mysql_charsets.lib.php:420 +#: libraries/mysql_charsets.lib.php:227 libraries/mysql_charsets.lib.php:412 msgid "case-sensitive" msgstr "Razlikuje mala i velika slova" -#: libraries/mysql_charsets.lib.php:238 +#: libraries/mysql_charsets.lib.php:230 msgid "Croatian" msgstr "Hrvatski" -#: libraries/mysql_charsets.lib.php:241 +#: libraries/mysql_charsets.lib.php:233 msgid "Czech" msgstr "Češki" -#: libraries/mysql_charsets.lib.php:244 +#: libraries/mysql_charsets.lib.php:236 msgid "Danish" msgstr "Danski" -#: libraries/mysql_charsets.lib.php:247 +#: libraries/mysql_charsets.lib.php:239 msgid "English" msgstr "Engleski" -#: libraries/mysql_charsets.lib.php:250 +#: libraries/mysql_charsets.lib.php:242 msgid "Esperanto" msgstr "Esperanto" -#: libraries/mysql_charsets.lib.php:253 +#: libraries/mysql_charsets.lib.php:245 msgid "Estonian" msgstr "Estonski" -#: libraries/mysql_charsets.lib.php:256 libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:248 libraries/mysql_charsets.lib.php:251 msgid "German" msgstr "Nemački" -#: libraries/mysql_charsets.lib.php:256 +#: libraries/mysql_charsets.lib.php:248 msgid "dictionary" msgstr "rečnik" -#: libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:251 msgid "phone book" msgstr "telefonski imenik" -#: libraries/mysql_charsets.lib.php:262 +#: libraries/mysql_charsets.lib.php:254 msgid "Hungarian" msgstr "Mađarski" -#: libraries/mysql_charsets.lib.php:265 +#: libraries/mysql_charsets.lib.php:257 msgid "Icelandic" msgstr "Islandski" -#: libraries/mysql_charsets.lib.php:268 libraries/mysql_charsets.lib.php:358 +#: libraries/mysql_charsets.lib.php:260 libraries/mysql_charsets.lib.php:350 msgid "Japanese" msgstr "Japanski" -#: libraries/mysql_charsets.lib.php:271 +#: libraries/mysql_charsets.lib.php:263 msgid "Latvian" msgstr "Letonski" -#: libraries/mysql_charsets.lib.php:274 +#: libraries/mysql_charsets.lib.php:266 msgid "Lithuanian" msgstr "Litvanski" -#: libraries/mysql_charsets.lib.php:277 libraries/mysql_charsets.lib.php:380 +#: libraries/mysql_charsets.lib.php:269 libraries/mysql_charsets.lib.php:372 msgid "Korean" msgstr "Korejski" -#: libraries/mysql_charsets.lib.php:280 +#: libraries/mysql_charsets.lib.php:272 msgid "Persian" msgstr "Persijski" -#: libraries/mysql_charsets.lib.php:283 +#: libraries/mysql_charsets.lib.php:275 msgid "Polish" msgstr "Poljski" -#: libraries/mysql_charsets.lib.php:286 libraries/mysql_charsets.lib.php:334 +#: libraries/mysql_charsets.lib.php:278 libraries/mysql_charsets.lib.php:326 msgid "West European" msgstr "Zapadnoevropski" -#: libraries/mysql_charsets.lib.php:289 +#: libraries/mysql_charsets.lib.php:281 msgid "Romanian" msgstr "Rumunski" -#: libraries/mysql_charsets.lib.php:292 +#: libraries/mysql_charsets.lib.php:284 msgid "Slovak" msgstr "Slovački" -#: libraries/mysql_charsets.lib.php:295 +#: libraries/mysql_charsets.lib.php:287 msgid "Slovenian" msgstr "Slovenači" -#: libraries/mysql_charsets.lib.php:298 +#: libraries/mysql_charsets.lib.php:290 msgid "Spanish" msgstr "Španski" -#: libraries/mysql_charsets.lib.php:301 +#: libraries/mysql_charsets.lib.php:293 msgid "Traditional Spanish" msgstr "Tradicionalni španski" -#: libraries/mysql_charsets.lib.php:304 libraries/mysql_charsets.lib.php:401 +#: libraries/mysql_charsets.lib.php:296 libraries/mysql_charsets.lib.php:393 msgid "Swedish" msgstr "Švedski" -#: libraries/mysql_charsets.lib.php:307 libraries/mysql_charsets.lib.php:404 +#: libraries/mysql_charsets.lib.php:299 libraries/mysql_charsets.lib.php:396 msgid "Thai" msgstr "Tajski" -#: libraries/mysql_charsets.lib.php:310 libraries/mysql_charsets.lib.php:398 +#: libraries/mysql_charsets.lib.php:302 libraries/mysql_charsets.lib.php:390 msgid "Turkish" msgstr "Turski" -#: libraries/mysql_charsets.lib.php:313 libraries/mysql_charsets.lib.php:395 +#: libraries/mysql_charsets.lib.php:305 libraries/mysql_charsets.lib.php:387 msgid "Ukrainian" msgstr "Ukrajinski" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 msgid "Unicode" msgstr "Unikod" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 -#: libraries/mysql_charsets.lib.php:334 libraries/mysql_charsets.lib.php:341 -#: libraries/mysql_charsets.lib.php:363 libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 +#: libraries/mysql_charsets.lib.php:326 libraries/mysql_charsets.lib.php:333 +#: libraries/mysql_charsets.lib.php:355 libraries/mysql_charsets.lib.php:366 msgid "multilingual" msgstr "višejezički" -#: libraries/mysql_charsets.lib.php:341 +#: libraries/mysql_charsets.lib.php:333 msgid "Central European" msgstr "Centralnoevropski" -#: libraries/mysql_charsets.lib.php:346 +#: libraries/mysql_charsets.lib.php:338 msgid "Russian" msgstr "Ruski" -#: libraries/mysql_charsets.lib.php:363 +#: libraries/mysql_charsets.lib.php:355 msgid "Baltic" msgstr "Baltički" -#: libraries/mysql_charsets.lib.php:368 +#: libraries/mysql_charsets.lib.php:360 msgid "Armenian" msgstr "Jermenski" -#: libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:366 msgid "Cyrillic" msgstr "Ćirilični" -#: libraries/mysql_charsets.lib.php:377 +#: libraries/mysql_charsets.lib.php:369 msgid "Arabic" msgstr "Arapski" -#: libraries/mysql_charsets.lib.php:383 +#: libraries/mysql_charsets.lib.php:375 msgid "Hebrew" msgstr "Hebrejski" -#: libraries/mysql_charsets.lib.php:386 +#: libraries/mysql_charsets.lib.php:378 msgid "Georgian" msgstr "Gruzijski" -#: libraries/mysql_charsets.lib.php:389 +#: libraries/mysql_charsets.lib.php:381 msgid "Greek" msgstr "Grčki" -#: libraries/mysql_charsets.lib.php:392 +#: libraries/mysql_charsets.lib.php:384 msgid "Czech-Slovak" msgstr "Češko-slovački" -#: libraries/mysql_charsets.lib.php:407 libraries/mysql_charsets.lib.php:414 +#: libraries/mysql_charsets.lib.php:399 libraries/mysql_charsets.lib.php:406 msgid "unknown" msgstr "nepoznat" @@ -3457,68 +3506,68 @@ msgstr "Prozor za upite" msgid "This format has no options" msgstr "Ne postoje opcije za ovaj format" -#: libraries/relation.lib.php:82 +#: libraries/relation.lib.php:77 msgid "not OK" msgstr "nije u redu" -#: libraries/relation.lib.php:86 pmd_general.php:339 +#: libraries/relation.lib.php:81 pmd_general.php:339 msgid "OK" msgstr "U redu" -#: libraries/relation.lib.php:87 +#: libraries/relation.lib.php:82 msgid "Enabled" msgstr "Omogućeno" -#: libraries/relation.lib.php:110 +#: libraries/relation.lib.php:105 msgid "Display Features" msgstr "Prikaži osobine" -#: libraries/relation.lib.php:116 +#: libraries/relation.lib.php:111 msgid "Creation of PDFs" msgstr "Pravljenje PDF-ova" -#: libraries/relation.lib.php:120 +#: libraries/relation.lib.php:115 msgid "Displaying Column Comments" msgstr "Prikazujem komentare kolone" -#: libraries/relation.lib.php:125 +#: libraries/relation.lib.php:120 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "Molimo pogledajte u dokumentaciji kako se ažurira tabela Column_comments" -#: libraries/relation.lib.php:130 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 msgid "Bookmarked SQL query" msgstr "Zapamćen SQL-upit" -#: libraries/relation.lib.php:134 querywindow.php:99 querywindow.php:207 +#: libraries/relation.lib.php:129 querywindow.php:98 querywindow.php:205 msgid "SQL history" msgstr "SQL istorijat" -#: libraries/relation.lib.php:146 +#: libraries/relation.lib.php:141 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:148 +#: libraries/relation.lib.php:143 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" -#: libraries/relation.lib.php:149 +#: libraries/relation.lib.php:144 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:150 +#: libraries/relation.lib.php:145 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:151 +#: libraries/relation.lib.php:146 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1158 +#: libraries/relation.lib.php:1153 msgid "no description" msgstr "nema opisa" @@ -3526,7 +3575,7 @@ msgstr "nema opisa" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:53 server_replication.php:346 +#: libraries/replication_gui.lib.php:53 server_replication.php:345 msgid "Change or reconfigure master server" msgstr "" @@ -3538,17 +3587,12 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:711 -#: server_privileges.php:714 server_privileges.php:721 -#: server_synchronize.php:1170 +#: libraries/replication_gui.lib.php:261 server_privileges.php:710 +#: server_privileges.php:713 server_privileges.php:720 +#: server_synchronize.php:1169 msgid "User name" msgstr "Ime korisnika" -#: libraries/replication_gui.lib.php:69 server_synchronize.php:1162 -#, fuzzy -msgid "Port" -msgstr "Sortiranje" - #: libraries/replication_gui.lib.php:105 #, fuzzy msgid "Master status" @@ -3565,8 +3609,8 @@ msgid "Variable" msgstr "Promenljiva" #: libraries/replication_gui.lib.php:117 server_status.php:737 -#: tbl_change.php:322 tbl_printview.php:368 tbl_select.php:137 -#: tbl_structure.php:728 +#: tbl_change.php:317 tbl_printview.php:367 tbl_select.php:136 +#: tbl_structure.php:726 msgid "Value" msgstr "Vrednost" @@ -3580,38 +3624,38 @@ msgid "" "this list." msgstr "" -#: libraries/replication_gui.lib.php:242 server_replication.php:193 +#: libraries/replication_gui.lib.php:242 server_replication.php:192 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:256 server_privileges.php:716 +#: libraries/replication_gui.lib.php:256 server_privileges.php:715 msgid "Any user" msgstr "Bilo koji korisnik" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1920 server_privileges.php:1950 +#: libraries/replication_gui.lib.php:348 server_privileges.php:716 +#: server_privileges.php:783 server_privileges.php:807 +#: server_privileges.php:1924 server_privileges.php:1954 msgid "Use text field" msgstr "Koristi tekst polje" -#: libraries/replication_gui.lib.php:304 server_privileges.php:764 +#: libraries/replication_gui.lib.php:304 server_privileges.php:763 msgid "Any host" msgstr "Bilo koji domaćin" -#: libraries/replication_gui.lib.php:308 server_privileges.php:768 +#: libraries/replication_gui.lib.php:308 server_privileges.php:767 msgid "Local" msgstr "Lokalni" -#: libraries/replication_gui.lib.php:314 server_privileges.php:773 +#: libraries/replication_gui.lib.php:314 server_privileges.php:772 msgid "This Host" msgstr "Ovaj server" -#: libraries/replication_gui.lib.php:320 server_privileges.php:779 +#: libraries/replication_gui.lib.php:320 server_privileges.php:778 msgid "Use Host Table" msgstr "Koristi tabelu domaćina" -#: libraries/replication_gui.lib.php:333 server_privileges.php:792 +#: libraries/replication_gui.lib.php:333 server_privileges.php:791 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3637,8 +3681,8 @@ msgstr "Nepoznat jezik: %1$s." msgid "Servers" msgstr "Serveri" -#: libraries/server_links.inc.php:52 server_engines.php:111 -#: server_engines.php:115 server_status.php:414 test/theme.php:104 +#: libraries/server_links.inc.php:52 server_engines.php:125 +#: server_engines.php:129 server_status.php:414 test/theme.php:104 msgid "Variables" msgstr "Promenljive" @@ -3659,12 +3703,12 @@ msgstr "Binarni dnevnik" msgid "Processes" msgstr "Procesi" -#: libraries/server_links.inc.php:91 server_synchronize.php:1091 -#: server_synchronize.php:1099 +#: libraries/server_links.inc.php:91 server_synchronize.php:1090 +#: server_synchronize.php:1098 msgid "Synchronize" msgstr "" -#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1109 +#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1108 #, fuzzy msgid "Source database" msgstr "Pretraživanje baze" @@ -3683,7 +3727,7 @@ msgstr "" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1111 +#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1110 #, fuzzy msgid "Target database" msgstr "Pretraživanje baze" @@ -3704,11 +3748,11 @@ msgstr "Izvrši SQL upit(e) na bazi %s" msgid "Columns" msgstr "Imena kolona" -#: libraries/sql_query_form.lib.php:342 sql.php:664 sql.php:665 sql.php:682 +#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "Zapamti SQL-upit" -#: libraries/sql_query_form.lib.php:349 sql.php:676 +#: libraries/sql_query_form.lib.php:349 sql.php:669 msgid "Let every user access this bookmark" msgstr "Dozvoli svakom korisniku da pristupa ovom upamćenom upitu" @@ -3803,12 +3847,12 @@ msgstr "" "SQL validator nije mogao da bude pokrenut. Proverite da li su instalirane " "neophodne PHP ekstenzije opisane u %sdokumentaciji%s." -#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:139 -#: libraries/tbl_links.inc.php:140 +#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 +#: libraries/tbl_links.inc.php:139 msgid "Table seems to be empty!" msgstr "Tabela je izgleda prazna!" -#: libraries/tbl_links.inc.php:148 +#: libraries/tbl_links.inc.php:147 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" @@ -3843,12 +3887,12 @@ msgstr "" "Za podrazumevanu vrednost, unesite samo jednu vrednost, bez kosih crta ili " "navodnika u ovom obliku: a" -#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1263 -#: pdf_schema.php:1284 tbl_printview.php:142 tbl_structure.php:179 +#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1262 +#: pdf_schema.php:1283 tbl_printview.php:141 tbl_structure.php:178 msgid "Attributes" msgstr "Atributi" -#: libraries/tbl_properties.inc.php:136 +#: libraries/tbl_properties.inc.php:135 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -3857,11 +3901,11 @@ msgstr "" "Za listu dostupnih opcija transformacije i njihove transformacije MIME-" "tipova, kliknite na %sopise transformacija%s" -#: libraries/tbl_properties.inc.php:144 +#: libraries/tbl_properties.inc.php:143 msgid "Transformation options" msgstr "Opcije transformacije" -#: libraries/tbl_properties.inc.php:145 +#: libraries/tbl_properties.inc.php:144 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
                            If you ever need to put a backslash (\"\\\") or a single " @@ -3873,18 +3917,18 @@ msgstr "" "apostrof (\"'\") u te vrednosti, stavite obrnutu kosu crtu ispred njih (na " "primer '\\\\xyz' ili 'a\\'b')." -#: libraries/tbl_properties.inc.php:392 +#: libraries/tbl_properties.inc.php:391 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "nema" -#: libraries/tbl_properties.inc.php:393 +#: libraries/tbl_properties.inc.php:392 msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:579 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:578 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
                            Please ask the " @@ -3892,29 +3936,29 @@ msgid "" msgstr "" "Nema opisa za ovu transformaciju.
                            Molimo pitajte autora šta %s radi." -#: libraries/tbl_properties.inc.php:725 server_engines.php:57 -#: tbl_operations.php:354 +#: libraries/tbl_properties.inc.php:724 server_engines.php:56 +#: tbl_operations.php:352 msgid "Storage Engine" msgstr "Pogon skladištenja" -#: libraries/tbl_properties.inc.php:754 +#: libraries/tbl_properties.inc.php:753 msgid "PARTITION definition" msgstr "" -#: libraries/tbl_properties.inc.php:775 pdf_pages.php:502 +#: libraries/tbl_properties.inc.php:774 pdf_pages.php:501 #: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214 -#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1124 tbl_indexes.php:247 -#: tbl_relation.php:565 +#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1022 tbl_indexes.php:246 +#: tbl_relation.php:563 msgid "Save" msgstr "Sačuvaj" -#: libraries/tbl_properties.inc.php:779 tbl_structure.php:541 +#: libraries/tbl_properties.inc.php:778 tbl_structure.php:539 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "Dodaj %s polja" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:535 +#: libraries/tbl_properties.inc.php:782 tbl_structure.php:533 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -4117,8 +4161,8 @@ msgstr "" msgid "Custom color" msgstr "" -#: main.php:162 pdf_pages.php:362 setup/lib/FormDisplay.tpl.php:216 -#: tbl_change.php:1173 +#: main.php:162 pdf_pages.php:361 setup/lib/FormDisplay.tpl.php:216 +#: tbl_change.php:1071 msgid "Reset" msgstr "Poništi" @@ -4126,8 +4170,8 @@ msgstr "Poništi" msgid "Protocol version" msgstr "Verzija protokola" -#: main.php:188 server_privileges.php:1381 server_privileges.php:1528 -#: server_privileges.php:1642 server_privileges.php:2060 +#: main.php:188 server_privileges.php:1385 server_privileges.php:1532 +#: server_privileges.php:1646 server_privileges.php:2064 #: server_processlist.php:53 msgid "User" msgstr "Korisnik" @@ -4212,14 +4256,23 @@ msgid "" "has been configured." msgstr "" -#: main.php:330 +#: main.php:314 +#, php-format +msgid "" +"The additional features for working with linked tables have been " +"deactivated. To find out why click %shere%s." +msgstr "" +"Dodatne mogućnosti za rad sa povezanim tabelama su isključene. Da biste " +"saznali zašto, kliknite %sovde%s." + +#: main.php:329 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:345 +#: main.php:344 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -4228,7 +4281,7 @@ msgstr "" "Verzija vaše PHP MySQL biblioteke %s se razlikuje od verzije vašeg MySQL " "servera %s. Ovo može dovesti do nepredvidljivog ponašanja." -#: main.php:357 +#: main.php:356 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -4239,70 +4292,70 @@ msgstr "" msgid "Reload navigation frame" msgstr "" -#: navigation.php:204 server_databases.php:370 server_synchronize.php:1190 +#: navigation.php:203 server_databases.php:368 server_synchronize.php:1189 msgid "No databases" msgstr "Baza ne postoji" -#: navigation.php:298 +#: navigation.php:297 #, fuzzy msgid "Filter" msgstr "Datoteke" -#: navigation.php:299 setup/frames/index.inc.php:218 +#: navigation.php:298 setup/frames/index.inc.php:218 #: setup/lib/messages.inc.php:41 #, fuzzy msgid "Clear" msgstr "Kalendar" -#: navigation.php:330 navigation.php:331 +#: navigation.php:329 navigation.php:330 #, fuzzy #| msgid "Create table" msgctxt "short form" msgid "Create table" msgstr "Napravi tabelu" -#: navigation.php:333 navigation.php:495 +#: navigation.php:332 navigation.php:494 msgid "Please select a database" msgstr "Izaberite bazu" -#: pdf_pages.php:40 pdf_pages.php:46 pdf_pages.php:52 pdf_pages.php:57 +#: pdf_pages.php:39 pdf_pages.php:45 pdf_pages.php:51 pdf_pages.php:56 #, php-format msgid "%s table not found or not set in %s" msgstr "%s tabela nije pronađena ili nije postavljena u %s" -#: pdf_pages.php:265 +#: pdf_pages.php:264 msgid "Please choose a page to edit" msgstr "Izaberite stranu koju menjate" -#: pdf_pages.php:303 pmd_pdf.php:113 +#: pdf_pages.php:302 pmd_pdf.php:111 msgid "Create a page" msgstr "Napravi novu stranu" -#: pdf_pages.php:309 +#: pdf_pages.php:308 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Broj strane:" -#: pdf_pages.php:313 +#: pdf_pages.php:312 #, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "Automatski raspored" -#: pdf_pages.php:315 +#: pdf_pages.php:314 msgid "Internal relations" msgstr "Unutrašnje relacije" -#: pdf_pages.php:338 +#: pdf_pages.php:337 msgid "Select Tables" msgstr "Izaberi tabele" -#: pdf_pages.php:361 +#: pdf_pages.php:360 msgid "Toggle scratchboard" msgstr "Uključi/isključi radnu tablu" -#: pdf_pages.php:524 +#: pdf_pages.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -4310,37 +4363,37 @@ msgstr "" "Trenutna strana ima reference na tabele koje više ne postoje. Želite li da " "obrišete te reference?" -#: pdf_schema.php:635 +#: pdf_schema.php:634 #, fuzzy, php-format #| msgid "The \"%s\" table doesn't exist!" msgid "The %s table doesn't exist!" msgstr "Tabela \"%s\" ne postoji!" -#: pdf_schema.php:671 +#: pdf_schema.php:670 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Podesite koordinate za tabelu %s" -#: pdf_schema.php:994 +#: pdf_schema.php:993 #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" msgstr "Shema baze \"%s\" - Strana %s" -#: pdf_schema.php:1012 +#: pdf_schema.php:1011 msgid "No tables" msgstr "Nema tabela" -#: pdf_schema.php:1031 pdf_schema.php:1140 +#: pdf_schema.php:1030 pdf_schema.php:1139 msgid "Relational schema" msgstr "Relaciona shema" -#: pdf_schema.php:1115 +#: pdf_schema.php:1114 msgid "Table of contents" msgstr "Sadržaj" -#: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:145 -#: tbl_structure.php:182 tbl_tracking.php:277 +#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 +#: tbl_structure.php:181 tbl_tracking.php:272 msgid "Extra" msgstr "Dodatno" @@ -4352,7 +4405,7 @@ msgstr "Prikaži/sakrij meni s leve strane" msgid "Save position" msgstr "Sačuvaj poziciju" -#: pmd_general.php:70 server_synchronize.php:428 server_synchronize.php:871 +#: pmd_general.php:70 server_synchronize.php:427 server_synchronize.php:870 msgid "Create table" msgstr "Napravi tabelu" @@ -4431,32 +4484,32 @@ msgstr "" "polje za prikaz, kliknite na ikonu „Izaberi polje za prikaz“, a potom na " "naziv odgovarajućeg polja." -#: pmd_pdf.php:62 +#: pmd_pdf.php:60 #, fuzzy msgid "Page has been created" msgstr "Tabela %s je odbačena" -#: pmd_pdf.php:64 +#: pmd_pdf.php:62 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:84 +#: pmd_pdf.php:82 msgid "Export/Import to scale" msgstr "Izvor/uvoz u razmeri" -#: pmd_pdf.php:88 +#: pmd_pdf.php:86 msgid "recommended" msgstr "preporučeno" -#: pmd_pdf.php:93 +#: pmd_pdf.php:91 msgid "to/from page" msgstr "od/do stranice" -#: querywindow.php:94 +#: querywindow.php:93 msgid "Import files" msgstr "Uvoz datoteka" -#: querywindow.php:105 +#: querywindow.php:104 msgid "All" msgstr "Sve" @@ -4502,66 +4555,66 @@ msgstr "Informacije" msgid "Character Sets and Collations" msgstr "Karakter setovi i sortiranje" -#: server_databases.php:51 +#: server_databases.php:49 msgid "No databases selected." msgstr "Nije izabrana ni jedna baza." -#: server_databases.php:62 +#: server_databases.php:60 #, php-format msgid "%s databases have been dropped successfully." msgstr "%s baza je uspešno odbačeno." -#: server_databases.php:87 +#: server_databases.php:85 msgid "Databases statistics" msgstr "Statistika baze" -#: server_databases.php:116 server_status.php:370 +#: server_databases.php:114 server_status.php:370 #: setup/lib/messages.inc.php:114 msgid "Tables" msgstr "Tabele" -#: server_databases.php:194 server_replication.php:180 -#: server_replication.php:208 +#: server_databases.php:192 server_replication.php:179 +#: server_replication.php:207 msgid "Master replication" msgstr "" -#: server_databases.php:196 server_replication.php:247 +#: server_databases.php:194 server_replication.php:246 msgid "Slave replication" msgstr "" -#: server_databases.php:229 +#: server_databases.php:227 #, fuzzy msgid "Jump to database" msgstr "Baza ne postoji" -#: server_databases.php:266 +#: server_databases.php:264 msgid "Not replicated" msgstr "" -#: server_databases.php:272 +#: server_databases.php:270 #, fuzzy #| msgid "Replication" msgid "Replicated" msgstr "Replikacija" -#: server_databases.php:288 +#: server_databases.php:286 #, php-format msgid "Check privileges for database "%s"." msgstr "Proveri privilegije za bazu "%s"." -#: server_databases.php:292 server_databases.php:293 +#: server_databases.php:290 server_databases.php:291 msgid "Check Privileges" msgstr "Proveri privilegije" -#: server_databases.php:357 server_databases.php:358 +#: server_databases.php:355 server_databases.php:356 msgid "Enable Statistics" msgstr "Uključi statistike" -#: server_databases.php:361 server_databases.php:362 +#: server_databases.php:359 server_databases.php:360 msgid "Disable Statistics" msgstr "Isključi statistike" -#: server_databases.php:365 +#: server_databases.php:363 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -4569,121 +4622,121 @@ msgstr "" "Napomena: uključivanje statistika može prouzrokovati veliki saobraćaj između " "veb i MySQL servera." -#: server_engines.php:48 +#: server_engines.php:47 msgid "Storage Engines" msgstr "Pogoni skladištenja" -#: server_export.php:20 +#: server_export.php:18 msgid "View dump (schema) of databases" msgstr "Prikaži sadržaj (shemu) baze" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:23 server_privileges.php:265 msgid "Includes all privileges except GRANT." msgstr "Uključuje sve privilegije osim GRANT." -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:24 server_privileges.php:191 +#: server_privileges.php:514 msgid "Allows altering the structure of existing tables." msgstr "Dozvoljava izmenu struktura postojećih tabela." -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:25 server_privileges.php:207 +#: server_privileges.php:520 msgid "Allows altering and dropping stored routines." msgstr "Dozvoljava izmenu i odbacivanje sačuvanih rutina." -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:26 server_privileges.php:183 +#: server_privileges.php:513 msgid "Allows creating new databases and tables." msgstr "Dozvoljava kreiranje novih baza i tabela." -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:27 server_privileges.php:206 +#: server_privileges.php:519 msgid "Allows creating stored routines." msgstr "Dozvoljava pravljenje sačuvanih rutina." -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:513 msgid "Allows creating new tables." msgstr "Dozvoljava kreiranje novih tabela." -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:29 server_privileges.php:194 +#: server_privileges.php:517 msgid "Allows creating temporary tables." msgstr "Dozvoljava kreiranje privremenih tabela.." -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:30 server_privileges.php:208 +#: server_privileges.php:553 msgid "Allows creating, dropping and renaming user accounts." msgstr "Dozvoljava pravljenje, odbacivanje i preimenovanje korisničkih naloga." -#: server_privileges.php:32 server_privileges.php:199 -#: server_privileges.php:203 server_privileges.php:526 -#: server_privileges.php:530 +#: server_privileges.php:31 server_privileges.php:198 +#: server_privileges.php:202 server_privileges.php:525 +#: server_privileges.php:529 msgid "Allows creating new views." msgstr "Dozvoli kreiranje novih pogleda." -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:32 server_privileges.php:182 +#: server_privileges.php:505 msgid "Allows deleting data." msgstr "Dozvoljava brisanje podataka." -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:33 server_privileges.php:184 +#: server_privileges.php:516 msgid "Allows dropping databases and tables." msgstr "Dozvoljava odbacivanje baza i tabela." -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:34 server_privileges.php:516 msgid "Allows dropping tables." msgstr "Dozvoljava odbacivanje tabela." -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:35 server_privileges.php:199 +#: server_privileges.php:533 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:36 server_privileges.php:209 +#: server_privileges.php:521 msgid "Allows executing stored routines." msgstr "Dozvoljava izvršavanje sačuvanih rutina." -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:37 server_privileges.php:188 +#: server_privileges.php:508 msgid "Allows importing data from and exporting data into files." msgstr "Dozvoljava uvoz podataka i njihov izvoz u datoteke." -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:38 server_privileges.php:539 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Dozvoljava dodavanje korisnika i privilegija bez ponovnog učitavanja tabela " "privilegija." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:515 msgid "Allows creating and dropping indexes." msgstr "Dozvoljava kreiranje i brisanje ključeva." -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:40 server_privileges.php:180 +#: server_privileges.php:441 server_privileges.php:503 msgid "Allows inserting and replacing data." msgstr "Dozvoljava umetanje i zamenu podataka." -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:41 server_privileges.php:195 +#: server_privileges.php:548 msgid "Allows locking tables for the current thread." msgstr "Dozvoljava zaključavanje tabela tekućim procesima." -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:42 server_privileges.php:645 +#: server_privileges.php:647 msgid "Limits the number of new connections the user may open per hour." msgstr "Ograničava broj novih konekcija koje korisnik može ta otvori na sat." -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:43 server_privileges.php:633 +#: server_privileges.php:635 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Ograničava broj upita koje korisnik može da uputi serveru za sat." -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:44 server_privileges.php:639 +#: server_privileges.php:641 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -4691,59 +4744,59 @@ msgstr "" "Ograničava broj komandi koje menjaju tabele ili baze koje korisnik može da " "izvrši na sat." -#: server_privileges.php:46 server_privileges.php:652 -#: server_privileges.php:654 +#: server_privileges.php:45 server_privileges.php:651 +#: server_privileges.php:653 msgid "Limits the number of simultaneous connections the user may have." msgstr "Ograničava broj istovremenih konekcija koje korisnik može da ima." -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:46 server_privileges.php:187 +#: server_privileges.php:543 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:47 server_privileges.php:189 +#: server_privileges.php:447 server_privileges.php:549 msgid "Has no effect in this MySQL version." msgstr "Nema efekta u ovoj verziji MySQL-a." -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:48 server_privileges.php:185 +#: server_privileges.php:544 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Dozvoljava ponovno učitavanje podešavanja servera i pražnjenje keša servera." -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:197 +#: server_privileges.php:551 msgid "Allows the user to ask where the slaves / masters are." msgstr "Daje pravo korisniku da pita gde su glavni/pomoćni serveri." -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:50 server_privileges.php:196 +#: server_privileges.php:552 msgid "Needed for the replication slaves." msgstr "Potrebno zbog pomoćnih servera za replikaciju." -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:51 server_privileges.php:179 +#: server_privileges.php:438 server_privileges.php:502 msgid "Allows reading data." msgstr "Dozvoljava čitanje podataka." -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:52 server_privileges.php:192 +#: server_privileges.php:546 msgid "Gives access to the complete list of databases." msgstr "Daje pristup kompletnoj listi baza." -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:53 server_privileges.php:203 +#: server_privileges.php:205 server_privileges.php:518 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Dozvoljava izvršavanje SHOW CREATE VIEW upita." -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:54 server_privileges.php:186 +#: server_privileges.php:545 msgid "Allows shutting down the server." msgstr "Dozvoljava gašenje servera." -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:55 server_privileges.php:193 +#: server_privileges.php:542 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -4753,157 +4806,157 @@ msgstr "" "Neophodno za većinu administrativnih opcija kao što su podešavanje globalnih " "promenljivih ili prekidanje procesa ostalih korisnika." -#: server_privileges.php:57 server_privileges.php:201 -#: server_privileges.php:535 +#: server_privileges.php:56 server_privileges.php:200 +#: server_privileges.php:534 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "Dozvoljava kreiranje i brisanje ključeva." -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:57 server_privileges.php:181 +#: server_privileges.php:444 server_privileges.php:504 msgid "Allows changing data." msgstr "Dozvoljava izmenu podataka." -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:58 server_privileges.php:259 msgid "No privileges." msgstr "Nema privilegija." -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:301 server_privileges.php:302 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "nema" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1710 server_privileges.php:1716 +#: server_privileges.php:430 server_privileges.php:565 +#: server_privileges.php:1714 server_privileges.php:1720 msgid "Table-specific privileges" msgstr "Privilegije vezane za tabele" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1532 +#: server_privileges.php:431 server_privileges.php:573 +#: server_privileges.php:1536 msgid " Note: MySQL privilege names are expressed in English " msgstr " Napomena: MySQL imena privilegija moraju da budu na engleskom " -#: server_privileges.php:563 server_privileges.php:1531 +#: server_privileges.php:562 server_privileges.php:1535 msgid "Global privileges" msgstr "Globalne privilegije" -#: server_privileges.php:565 server_privileges.php:1710 +#: server_privileges.php:564 server_privileges.php:1714 msgid "Database-specific privileges" msgstr "Privilegije vezane za bazu" -#: server_privileges.php:610 +#: server_privileges.php:609 msgid "Administration" msgstr "Administracija" -#: server_privileges.php:630 +#: server_privileges.php:629 msgid "Resource limits" msgstr "Ograničenja resursa" -#: server_privileges.php:631 +#: server_privileges.php:630 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Napomena: Postavljanje ovih opcija na 0 (nulu) uklanja ograničenja." -#: server_privileges.php:708 +#: server_privileges.php:707 msgid "Login Information" msgstr "Podaci o prijavi" -#: server_privileges.php:802 +#: server_privileges.php:801 msgid "Do not change the password" msgstr "Nemoj da menjaš lozinku" -#: server_privileges.php:835 server_privileges.php:2197 +#: server_privileges.php:834 server_privileges.php:2201 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Korisnik nije nađen." -#: server_privileges.php:879 +#: server_privileges.php:878 #, php-format msgid "The user %s already exists!" msgstr "Korisnik %s već postoji!" -#: server_privileges.php:962 +#: server_privileges.php:961 msgid "You have added a new user." msgstr "Dodali ste novog korisnika." -#: server_privileges.php:1183 +#: server_privileges.php:1184 #, php-format msgid "You have updated the privileges for %s." msgstr "Ažurirali ste privilegije za %s." -#: server_privileges.php:1207 +#: server_privileges.php:1208 #, php-format msgid "You have revoked the privileges for %s" msgstr "Zabranili ste privilegije za %s" -#: server_privileges.php:1243 +#: server_privileges.php:1244 #, php-format msgid "The password for %s was changed successfully." msgstr "Lozinka za %s je uspešno promenjena." -#: server_privileges.php:1263 +#: server_privileges.php:1264 #, php-format msgid "Deleting %s" msgstr "Brišem %s" -#: server_privileges.php:1274 +#: server_privileges.php:1275 msgid "No users selected for deleting!" msgstr "Nijedan korisnik nije odabran za brisanje!" -#: server_privileges.php:1277 +#: server_privileges.php:1278 msgid "Reloading the privileges" msgstr "Ponovo učitavam privilegije" -#: server_privileges.php:1292 +#: server_privileges.php:1296 msgid "The selected users have been deleted successfully." msgstr "Izabrani korisnici su uspešno obrisani." -#: server_privileges.php:1327 +#: server_privileges.php:1331 msgid "The privileges were reloaded successfully." msgstr "Privilegije su uspešno ponovo učitane." -#: server_privileges.php:1355 server_privileges.php:1641 +#: server_privileges.php:1359 server_privileges.php:1645 msgid "Edit Privileges" msgstr "Promeni privilegije" -#: server_privileges.php:1364 +#: server_privileges.php:1368 msgid "Revoke" msgstr "Zabrani" -#: server_privileges.php:1396 +#: server_privileges.php:1400 msgid "User overview" msgstr "Pregled korisnika" -#: server_privileges.php:1533 server_privileges.php:1715 -#: server_privileges.php:2064 +#: server_privileges.php:1537 server_privileges.php:1719 +#: server_privileges.php:2068 msgid "Grant" msgstr "Omogući" -#: server_privileges.php:1552 server_privileges.php:2154 +#: server_privileges.php:1556 server_privileges.php:2158 msgid "Any" msgstr "Bilo koji" -#: server_privileges.php:1601 server_privileges.php:1625 -#: server_privileges.php:2019 server_privileges.php:2208 +#: server_privileges.php:1605 server_privileges.php:1629 +#: server_privileges.php:2023 server_privileges.php:2212 msgid "Add a new User" msgstr "Dodaj novog korisnika" -#: server_privileges.php:1606 +#: server_privileges.php:1610 msgid "Remove selected users" msgstr "Ukloni izabrane korisnike" -#: server_privileges.php:1609 +#: server_privileges.php:1613 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Obustavi sve aktivne privilegije korisnika i zatim ih obriši." -#: server_privileges.php:1610 server_privileges.php:1611 -#: server_privileges.php:1612 +#: server_privileges.php:1614 server_privileges.php:1615 +#: server_privileges.php:1616 msgid "Drop the databases that have the same names as the users." msgstr "Odbaci baze koje se zovu isto kao korisnici." -#: server_privileges.php:1628 +#: server_privileges.php:1632 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4916,92 +4969,92 @@ msgstr "" "server koristi ako su vršene ručne izmene. U tom slučaju %sponovo učitajte " "privilegije%s pre nego što nastavite." -#: server_privileges.php:1676 +#: server_privileges.php:1680 msgid "The selected user was not found in the privilege table." msgstr "Izabrani korisnik nije pronađen u tabeli privilegija." -#: server_privileges.php:1716 +#: server_privileges.php:1720 msgid "Column-specific privileges" msgstr "Privilegije vezane za kolone" -#: server_privileges.php:1917 +#: server_privileges.php:1921 msgid "Add privileges on the following database" msgstr "Dodaj privilegije na sledećoj bazi" -#: server_privileges.php:1935 +#: server_privileges.php:1939 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "Pre džokera _ i % treba staviti znak \\ ako ih koristite samostalno" -#: server_privileges.php:1938 +#: server_privileges.php:1942 msgid "Add privileges on the following table" msgstr "Dodaj privilegije na sledećoj tabeli" -#: server_privileges.php:1995 +#: server_privileges.php:1999 msgid "Change Login Information / Copy User" msgstr "Promeni informacije o prijavi / Kopiraj korisnika" -#: server_privileges.php:1998 +#: server_privileges.php:2002 msgid "Create a new user with the same privileges and ..." msgstr "Napravi novog korisnika sa istim privilegijama i ..." -#: server_privileges.php:2000 +#: server_privileges.php:2004 msgid "... keep the old one." msgstr "... sačuvaj stare." -#: server_privileges.php:2001 +#: server_privileges.php:2005 msgid " ... delete the old one from the user tables." msgstr " ... obriši stare iz tabela korisnika." -#: server_privileges.php:2002 +#: server_privileges.php:2006 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr " ... obustavi sve privilegije starog korisnika i zatim ga obriši." -#: server_privileges.php:2003 +#: server_privileges.php:2007 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" " ... obriši starog iz tabele korisnika i zatim ponovo učitaj privilegije." -#: server_privileges.php:2025 +#: server_privileges.php:2029 msgid "Database for user" msgstr "Baza za korisnika" -#: server_privileges.php:2029 +#: server_privileges.php:2033 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "nema" -#: server_privileges.php:2030 +#: server_privileges.php:2034 msgid "Create database with same name and grant all privileges" msgstr "Napravi bazu sa istim imenom i dodaj sve privilegije" -#: server_privileges.php:2031 +#: server_privileges.php:2035 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Daj sve privilegije na imenu sa džokerima (korisničko_ime\\_%)" -#: server_privileges.php:2034 +#: server_privileges.php:2038 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "Proveri privilegije za bazu "%s"." -#: server_privileges.php:2057 +#: server_privileges.php:2061 #, php-format msgid "Users having access to "%s"" msgstr "Korisnici koji imaju pristup "%s"" -#: server_privileges.php:2165 +#: server_privileges.php:2169 msgid "global" msgstr "globalno" -#: server_privileges.php:2167 +#: server_privileges.php:2171 msgid "database-specific" msgstr "Specifično za bazu" -#: server_privileges.php:2169 +#: server_privileges.php:2173 msgid "wildcard" msgstr "džoker" @@ -5020,54 +5073,54 @@ msgstr "phpMyAdmin nije mogao da prekine proces %s. Verovatno je već zatvoren." msgid "ID" msgstr "ID" -#: server_replication.php:50 +#: server_replication.php:49 msgid "Unknown error" msgstr "" -#: server_replication.php:57 +#: server_replication.php:56 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:64 +#: server_replication.php:63 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:70 +#: server_replication.php:69 msgid "Unable to change master" msgstr "" -#: server_replication.php:73 +#: server_replication.php:72 #, php-format msgid "Master server changed succesfully to %s" msgstr "" -#: server_replication.php:181 +#: server_replication.php:180 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:183 server_status.php:391 +#: server_replication.php:182 server_status.php:391 #, fuzzy msgid "Show master status" msgstr "Prikaži status podređenih servera" -#: server_replication.php:186 +#: server_replication.php:185 msgid "Show connected slaves" msgstr "" -#: server_replication.php:209 +#: server_replication.php:208 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:216 +#: server_replication.php:215 msgid "Master configuration" msgstr "" -#: server_replication.php:217 +#: server_replication.php:216 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -5076,111 +5129,111 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:220 +#: server_replication.php:219 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:221 +#: server_replication.php:220 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:224 +#: server_replication.php:223 #, fuzzy msgid "Please select databases:" msgstr "Izaberite bazu" -#: server_replication.php:227 +#: server_replication.php:226 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: server_replication.php:229 +#: server_replication.php:228 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: server_replication.php:292 +#: server_replication.php:291 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:295 +#: server_replication.php:294 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:304 +#: server_replication.php:303 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:307 +#: server_replication.php:306 msgid "See slave status table" msgstr "" -#: server_replication.php:310 +#: server_replication.php:309 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:321 +#: server_replication.php:320 msgid "Control slave:" msgstr "" -#: server_replication.php:324 +#: server_replication.php:323 #, fuzzy msgid "Full start" msgstr "Tekst ključ" -#: server_replication.php:324 +#: server_replication.php:323 #, fuzzy msgid "Full stop" msgstr "Tekst ključ" -#: server_replication.php:325 +#: server_replication.php:324 msgid "Reset slave" msgstr "" -#: server_replication.php:326 +#: server_replication.php:325 #, php-format msgid "SQL Thread %s only" msgstr "" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 #, fuzzy msgid "Start" msgstr "Sub" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 msgid "Stop" msgstr "" -#: server_replication.php:327 +#: server_replication.php:326 #, php-format msgid "IO Thread %s only" msgstr "" -#: server_replication.php:331 +#: server_replication.php:330 msgid "Error management:" msgstr "" -#: server_replication.php:333 +#: server_replication.php:332 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:335 +#: server_replication.php:334 msgid "Skip current error" msgstr "" -#: server_replication.php:336 +#: server_replication.php:335 msgid "Skip next" msgstr "" -#: server_replication.php:339 +#: server_replication.php:338 msgid "errors." msgstr "" -#: server_replication.php:354 +#: server_replication.php:353 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -5998,114 +6051,114 @@ msgstr "Vrsta upita" msgid "Replication status" msgstr "Replikacija" -#: server_synchronize.php:93 +#: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:96 +#: server_synchronize.php:95 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:121 server_synchronize.php:124 tbl_create.php:77 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:264 +#: server_synchronize.php:263 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:271 +#: server_synchronize.php:270 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:399 server_synchronize.php:838 +#: server_synchronize.php:398 server_synchronize.php:837 msgid "not present" msgstr "" -#: server_synchronize.php:423 server_synchronize.php:866 +#: server_synchronize.php:422 server_synchronize.php:865 #, fuzzy msgid "Structure Difference" msgstr "Struktura za pogled (view)" -#: server_synchronize.php:424 server_synchronize.php:867 +#: server_synchronize.php:423 server_synchronize.php:866 #, fuzzy msgid "Data Difference" msgstr "Struktura za pogled (view)" -#: server_synchronize.php:429 server_synchronize.php:872 +#: server_synchronize.php:428 server_synchronize.php:871 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:430 server_synchronize.php:873 +#: server_synchronize.php:429 server_synchronize.php:872 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:431 server_synchronize.php:874 +#: server_synchronize.php:430 server_synchronize.php:873 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:432 server_synchronize.php:875 +#: server_synchronize.php:431 server_synchronize.php:874 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:433 server_synchronize.php:876 +#: server_synchronize.php:432 server_synchronize.php:875 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:434 server_synchronize.php:877 +#: server_synchronize.php:433 server_synchronize.php:876 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:435 server_synchronize.php:878 +#: server_synchronize.php:434 server_synchronize.php:877 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:445 server_synchronize.php:889 +#: server_synchronize.php:444 server_synchronize.php:888 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:448 server_synchronize.php:893 +#: server_synchronize.php:447 server_synchronize.php:892 msgid "Apply Selected Changes" msgstr "" -#: server_synchronize.php:450 server_synchronize.php:895 +#: server_synchronize.php:449 server_synchronize.php:894 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:463 +#: server_synchronize.php:462 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:941 +#: server_synchronize.php:940 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:1002 +#: server_synchronize.php:1001 msgid "The following queries have been executed:" msgstr "" -#: server_synchronize.php:1121 +#: server_synchronize.php:1120 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1122 +#: server_synchronize.php:1121 #, fuzzy #| msgid "max. concurrent connections" msgid "Current connection" msgstr "maks. istovremenih veza" -#: server_synchronize.php:1151 +#: server_synchronize.php:1150 #, php-format msgid "Configuration: %s" msgstr "" -#: server_synchronize.php:1166 +#: server_synchronize.php:1165 msgid "Socket" msgstr "" -#: server_synchronize.php:1212 +#: server_synchronize.php:1211 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -6670,8 +6723,8 @@ msgstr "" #: setup/lib/messages.inc.php:128 msgid "" "Configure phpMyAdmin database to gain access to additional features, see " -"[a@../Documentation.html#linked-tables]linked-tables infrastructure[/a] in " -"documentation" +"[a@../Documentation.html#linked-tables]phpMyAdmin configuration storage[/a] " +"in documentation" msgstr "" #: setup/lib/messages.inc.php:129 setup/lib/messages.inc.php:290 @@ -7744,117 +7797,117 @@ msgstr "" msgid "ZIP" msgstr "" -#: sql.php:495 tbl_replace.php:385 +#: sql.php:494 tbl_replace.php:384 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: sql.php:512 +#: sql.php:511 msgid "Showing as PHP code" msgstr "Prikaz kao PHP kod" -#: sql.php:515 tbl_replace.php:359 +#: sql.php:514 tbl_replace.php:358 msgid "Showing SQL query" msgstr "Prikaz kao SQL upit" -#: sql.php:517 +#: sql.php:516 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Proveri SQL" -#: sql.php:638 +#: sql.php:631 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problem pri indeksiranju tabele `%s`" -#: sql.php:670 +#: sql.php:663 msgid "Label" msgstr "Naziv" -#: tbl_addfield.php:188 tbl_alter.php:102 tbl_indexes.php:97 +#: tbl_addfield.php:185 tbl_alter.php:100 tbl_indexes.php:97 #, fuzzy, php-format msgid "Table %1$s has been altered successfully" msgstr "Izabrani korisnici su uspešno obrisani." -#: tbl_change.php:250 tbl_select.php:26 tbl_select.php:27 tbl_select.php:30 -#: tbl_select.php:33 +#: tbl_change.php:245 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_select.php:32 msgid "Browse foreign values" msgstr "Pregledaj strane vrednosti" -#: tbl_change.php:280 tbl_change.php:318 +#: tbl_change.php:275 tbl_change.php:313 msgid "Function" msgstr "Funkcija" -#: tbl_change.php:300 tbl_indexes.php:199 tbl_indexes.php:224 +#: tbl_change.php:295 tbl_indexes.php:198 tbl_indexes.php:223 msgid "Ignore" msgstr "Ignoriši" -#: tbl_change.php:725 +#: tbl_change.php:720 #, fuzzy #| msgid " Because of its length,
                            this field might not be editable " msgid " Because of its length,
                            this column might not be editable " msgstr "Zbog njehove veličine, polje
                            možda nećete moći da izmenite" -#: tbl_change.php:884 +#: tbl_change.php:835 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:890 +#: tbl_change.php:841 msgid "Binary - do not edit" msgstr "Binarni - ne menjaj" -#: tbl_change.php:983 +#: tbl_change.php:889 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:1128 +#: tbl_change.php:1026 msgid "Insert as new row" msgstr "Unesi kao novi red" -#: tbl_change.php:1129 +#: tbl_change.php:1027 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:1130 +#: tbl_change.php:1028 #, fuzzy msgid "Show insert query" msgstr "Prikaz kao SQL upit" -#: tbl_change.php:1145 +#: tbl_change.php:1043 msgid "Go back to previous page" msgstr "Nazad na prethodnu stranu" -#: tbl_change.php:1146 +#: tbl_change.php:1044 msgid "Insert another new row" msgstr "Dodaj još jedan novi red" -#: tbl_change.php:1150 +#: tbl_change.php:1048 msgid "Go back to this page" msgstr "Vrati se na ovu stranu" -#: tbl_change.php:1158 +#: tbl_change.php:1056 msgid "Edit next row" msgstr "Uredi sledeći red" -#: tbl_change.php:1169 +#: tbl_change.php:1067 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Koristite TAB taster za pomeranje od polja do polja, ili CTRL+strelice za " "slobodno pomeranje" -#: tbl_change.php:1207 +#: tbl_change.php:1105 #, php-format msgid "Restart insertion with %s rows" msgstr "Ponovo pokreni unošenje sa %s redova" -#: tbl_create.php:57 +#: tbl_create.php:55 #, php-format msgid "Table %s already exists!" msgstr "Tabela %s već postoji!" -#: tbl_create.php:244 +#: tbl_create.php:241 #, fuzzy, php-format msgid "Table %1$s has been created." msgstr "Tabela %s je odbačena" @@ -7875,203 +7928,203 @@ msgstr "Ne mogu da promenim ključ u PRIMARY (primarni) !" msgid "No index parts defined!" msgstr "Delovi ključa nisu definisani!" -#: tbl_indexes.php:159 +#: tbl_indexes.php:158 msgid "Create a new index" msgstr "Napravi novi ključ" -#: tbl_indexes.php:161 +#: tbl_indexes.php:160 msgid "Modify an index" msgstr "Izmeni ključ" -#: tbl_indexes.php:167 +#: tbl_indexes.php:166 msgid "Index name:" msgstr "Ime ključa :" -#: tbl_indexes.php:173 +#: tbl_indexes.php:172 msgid "Index type:" msgstr "Tip ključa :" -#: tbl_indexes.php:183 +#: tbl_indexes.php:182 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "(\"PRIMARY\" mora biti ime samo primarnog ključa!)" -#: tbl_indexes.php:250 +#: tbl_indexes.php:249 #, php-format msgid "Add to index  %s column(s)" msgstr "Dodaj u ključ  %s kolona(e)" -#: tbl_indexes.php:255 tbl_structure.php:588 tbl_structure.php:599 +#: tbl_indexes.php:254 tbl_structure.php:586 tbl_structure.php:597 msgid "Column count has to be larger than zero." msgstr "Broj kolona mora biti veći od nule." -#: tbl_move_copy.php:45 +#: tbl_move_copy.php:44 msgid "Can't move table to same one!" msgstr "Ne mogu da premestim tabelu u samu sebe!" -#: tbl_move_copy.php:47 +#: tbl_move_copy.php:46 msgid "Can't copy table to same one!" msgstr "Ne mogu da kopiram tabelu u samu sebe!" -#: tbl_move_copy.php:55 +#: tbl_move_copy.php:54 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabela %s je pomerena u %s." -#: tbl_move_copy.php:57 +#: tbl_move_copy.php:56 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabela %s je kopirana u %s." -#: tbl_move_copy.php:81 +#: tbl_move_copy.php:80 msgid "The table name is empty!" msgstr "Ima tabele je prazno!" -#: tbl_operations.php:248 +#: tbl_operations.php:246 msgid "Alter table order by" msgstr "Promeni redosled u tabeli" -#: tbl_operations.php:257 +#: tbl_operations.php:255 msgid "(singly)" msgstr "(po jednom polju)" -#: tbl_operations.php:277 +#: tbl_operations.php:275 msgid "Move table to (database.table):" msgstr "Pomeri tabelu u (baza.tabela):" -#: tbl_operations.php:335 +#: tbl_operations.php:333 msgid "Table options" msgstr "Opcije tabele" -#: tbl_operations.php:339 +#: tbl_operations.php:337 msgid "Rename table to" msgstr "Promeni ime tabele u " -#: tbl_operations.php:510 +#: tbl_operations.php:508 msgid "Copy table to (database.table):" msgstr "Kopiraj tabelu u (baza.tabela):" -#: tbl_operations.php:557 +#: tbl_operations.php:555 msgid "Switch to copied table" msgstr "Pređi na kopiranu tabelu" -#: tbl_operations.php:569 +#: tbl_operations.php:567 msgid "Table maintenance" msgstr "Radnje na tabeli" -#: tbl_operations.php:590 +#: tbl_operations.php:588 msgid "Defragment table" msgstr "Defragmentiraj tabelu" -#: tbl_operations.php:629 +#: tbl_operations.php:627 #, php-format msgid "Table %s has been flushed" msgstr "Tabela %s je osvežena" -#: tbl_operations.php:635 +#: tbl_operations.php:633 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Osveži tabelu (\"FLUSH\")" -#: tbl_operations.php:650 +#: tbl_operations.php:648 #, fuzzy msgid "Partition maintenance" msgstr "Radnje na tabeli" -#: tbl_operations.php:658 +#: tbl_operations.php:656 #, php-format msgid "Partition %s" msgstr "" -#: tbl_operations.php:661 +#: tbl_operations.php:659 msgid "Analyze" msgstr "" -#: tbl_operations.php:662 +#: tbl_operations.php:660 #, fuzzy msgid "Check" msgstr "Češki" -#: tbl_operations.php:663 +#: tbl_operations.php:661 msgid "Optimize" msgstr "" -#: tbl_operations.php:664 +#: tbl_operations.php:662 msgid "Rebuild" msgstr "" -#: tbl_operations.php:665 +#: tbl_operations.php:663 #, fuzzy msgid "Repair" msgstr "Popravi tabelu" -#: tbl_operations.php:677 +#: tbl_operations.php:675 msgid "Remove partitioning" msgstr "" -#: tbl_operations.php:703 +#: tbl_operations.php:701 msgid "Check referential integrity:" msgstr "Proveri referencijalni integritet:" -#: tbl_printview.php:73 +#: tbl_printview.php:72 msgid "Show tables" msgstr "Prikaži tabele" -#: tbl_printview.php:308 tbl_structure.php:655 +#: tbl_printview.php:307 tbl_structure.php:653 msgid "Space usage" msgstr "Zauzeće" -#: tbl_printview.php:312 tbl_structure.php:659 +#: tbl_printview.php:311 tbl_structure.php:657 msgid "Usage" msgstr "Zauzeće" -#: tbl_printview.php:339 tbl_structure.php:686 +#: tbl_printview.php:338 tbl_structure.php:684 msgid "Effective" msgstr "Efektivne" -#: tbl_printview.php:364 tbl_structure.php:724 +#: tbl_printview.php:363 tbl_structure.php:722 msgid "Row Statistics" msgstr "Statistike reda" -#: tbl_printview.php:367 tbl_structure.php:727 +#: tbl_printview.php:366 tbl_structure.php:725 msgid "Statements" msgstr "Ime" -#: tbl_printview.php:378 tbl_structure.php:739 +#: tbl_printview.php:377 tbl_structure.php:737 msgid "static" msgstr "" -#: tbl_printview.php:380 tbl_structure.php:741 +#: tbl_printview.php:379 tbl_structure.php:739 msgid "dynamic" msgstr "dinamički" -#: tbl_printview.php:402 tbl_structure.php:784 +#: tbl_printview.php:401 tbl_structure.php:782 msgid "Row length" msgstr "Dužina reda" -#: tbl_printview.php:412 tbl_structure.php:792 +#: tbl_printview.php:411 tbl_structure.php:790 msgid " Row size " msgstr "Veličina reda" -#: tbl_relation.php:278 +#: tbl_relation.php:276 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" -#: tbl_relation.php:404 +#: tbl_relation.php:402 #, fuzzy #| msgid "Internal relations" msgid "Internal relation" msgstr "Unutrašnje relacije" -#: tbl_relation.php:406 +#: tbl_relation.php:404 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: tbl_relation.php:412 +#: tbl_relation.php:410 msgid "Foreign key constraint" msgstr "" @@ -8079,232 +8132,232 @@ msgstr "" msgid "No rows selected" msgstr "Nema odabranih redova" -#: tbl_select.php:130 +#: tbl_select.php:129 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Napravi \"upit po primeru\" (džoker: \"%\")" -#: tbl_select.php:136 +#: tbl_select.php:135 msgid "Operator" msgstr "Operator" -#: tbl_select.php:267 +#: tbl_select.php:266 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "Izaberi polja (najmanje jedno)" -#: tbl_select.php:285 +#: tbl_select.php:284 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Dodaj uslove pretraživanja (deo \"WHERE\" upita):" -#: tbl_select.php:292 +#: tbl_select.php:291 msgid "Number of rows per page" msgstr "Broj redova po strani" -#: tbl_select.php:298 +#: tbl_select.php:297 msgid "Display order:" msgstr "Redosled prikaza:" -#: tbl_structure.php:160 +#: tbl_structure.php:159 msgid "Browse distinct values" msgstr "Pregledaj različite vrednosti" -#: tbl_structure.php:360 +#: tbl_structure.php:358 #, fuzzy #| msgid "None" msgctxt "None for default" msgid "None" msgstr "nema" -#: tbl_structure.php:373 +#: tbl_structure.php:371 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Column %s has been dropped" msgstr "Tabela %s je odbačena" -#: tbl_structure.php:384 +#: tbl_structure.php:382 #, php-format msgid "A primary key has been added on %s" msgstr "Primarni ključ je upravo dodat %s" -#: tbl_structure.php:399 tbl_structure.php:413 tbl_structure.php:427 +#: tbl_structure.php:397 tbl_structure.php:411 tbl_structure.php:425 #, php-format msgid "An index has been added on %s" msgstr "Ključ je upravo dodat %s" -#: tbl_structure.php:505 tbl_structure.php:507 +#: tbl_structure.php:503 tbl_structure.php:505 msgid "Relation view" msgstr "Relacioni pogled" -#: tbl_structure.php:514 tbl_structure.php:516 +#: tbl_structure.php:512 tbl_structure.php:514 msgid "Propose table structure" msgstr "Predloži strukturu tabele" -#: tbl_structure.php:539 +#: tbl_structure.php:537 #, fuzzy #| msgid "Add %s field(s)" msgid "Add column" msgstr "Dodaj %s polja" -#: tbl_structure.php:553 +#: tbl_structure.php:551 msgid "At End of Table" msgstr "Na kraju tabele" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At Beginning of Table" msgstr "Na početku tabele" -#: tbl_structure.php:555 +#: tbl_structure.php:553 #, php-format msgid "After %s" msgstr "Posle %s" -#: tbl_structure.php:593 +#: tbl_structure.php:591 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "Napravi ključ na %s kolona" -#: tbl_structure.php:755 +#: tbl_structure.php:753 msgid "partitioned" msgstr "" -#: tbl_tracking.php:113 +#: tbl_tracking.php:109 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:186 +#: tbl_tracking.php:182 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "" -#: tbl_tracking.php:194 +#: tbl_tracking.php:190 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "" -#: tbl_tracking.php:202 +#: tbl_tracking.php:198 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "" -#: tbl_tracking.php:212 +#: tbl_tracking.php:208 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:219 +#: tbl_tracking.php:215 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:220 +#: tbl_tracking.php:216 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:229 +#: tbl_tracking.php:225 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:250 tbl_tracking.php:378 +#: tbl_tracking.php:245 tbl_tracking.php:373 msgid "Close" msgstr "" -#: tbl_tracking.php:261 +#: tbl_tracking.php:256 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:380 +#: tbl_tracking.php:375 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:396 tbl_tracking.php:503 +#: tbl_tracking.php:391 tbl_tracking.php:498 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "" -#: tbl_tracking.php:409 tbl_tracking.php:460 +#: tbl_tracking.php:404 tbl_tracking.php:455 #, fuzzy msgid "Date" msgstr "Podaci" -#: tbl_tracking.php:410 tbl_tracking.php:461 +#: tbl_tracking.php:405 tbl_tracking.php:456 #, fuzzy msgid "Username" msgstr "Korisničko ime:" -#: tbl_tracking.php:411 +#: tbl_tracking.php:406 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:462 +#: tbl_tracking.php:457 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:506 +#: tbl_tracking.php:501 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:507 +#: tbl_tracking.php:502 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:520 +#: tbl_tracking.php:515 #, fuzzy, php-format msgid "Export as %s" msgstr "Tip izvoza" -#: tbl_tracking.php:560 +#: tbl_tracking.php:555 msgid "Show versions" msgstr "" -#: tbl_tracking.php:592 +#: tbl_tracking.php:587 #, fuzzy msgid "Version" msgstr "Persijski" -#: tbl_tracking.php:639 +#: tbl_tracking.php:634 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "" -#: tbl_tracking.php:641 +#: tbl_tracking.php:636 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:652 +#: tbl_tracking.php:647 #, php-format msgid "Activate tracking for %s.%s" msgstr "" -#: tbl_tracking.php:654 +#: tbl_tracking.php:649 msgid "Activate now" msgstr "" -#: tbl_tracking.php:667 +#: tbl_tracking.php:662 #, php-format msgid "Create version %s of %s.%s" msgstr "" -#: tbl_tracking.php:671 +#: tbl_tracking.php:666 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:679 +#: tbl_tracking.php:674 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:687 +#: tbl_tracking.php:682 #, fuzzy msgid "Create version" msgstr "Napravi relaciju" @@ -8355,11 +8408,36 @@ msgstr "Profil je promenjen." msgid "VIEW name" msgstr "naziv za VIEW" -#: view_operations.php:92 +#: view_operations.php:91 #, fuzzy msgid "Rename view to" msgstr "Promeni ime tabele u " +#, fuzzy +#~| msgid "Enabled" +#~ msgctxt "BLOB repository" +#~ msgid "Enabled" +#~ msgstr "Omogućeno" + +#, fuzzy +#~ msgid "Disable" +#~ msgstr "Onemogućeno" + +#, fuzzy +#~ msgctxt "BLOB repository" +#~ msgid "Repair" +#~ msgstr "Popravi tabelu" + +#, fuzzy +#~| msgid "Disabled" +#~ msgctxt "BLOB repository" +#~ msgid "Disabled" +#~ msgstr "Onemogućeno" + +#, fuzzy +#~ msgid "Enable" +#~ msgstr "Omogućeno" + #~ msgid "" #~ "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " #~ "extension. Please check your PHP configuration." diff --git a/po/sv.po b/po/sv.po index 99482da6d..0f3cb0345 100644 --- a/po/sv.po +++ b/po/sv.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-21 13:53+0200\n" +"POT-Creation-Date: 2010-07-26 17:18+0200\n" "PO-Revision-Date: 2010-07-21 14:48+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: swedish \n" @@ -14,19 +14,19 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.1\n" -#: browse_foreigners.php:37 browse_foreigners.php:58 -#: libraries/display_tbl.lib.php:416 server_privileges.php:1506 +#: browse_foreigners.php:36 browse_foreigners.php:57 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1510 msgid "Show all" msgstr "Visa alla" -#: browse_foreigners.php:81 libraries/common.lib.php:2313 -#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:393 -#: libraries/export/pdf.php:146 pdf_schema.php:282 pdf_schema.php:1122 -#: pdf_schema.php:1138 +#: browse_foreigners.php:80 libraries/common.lib.php:2318 +#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:392 +#: libraries/export/pdf.php:146 pdf_schema.php:281 pdf_schema.php:1121 +#: pdf_schema.php:1137 msgid "Page number:" msgstr "Sida:" -#: browse_foreigners.php:131 +#: browse_foreigners.php:130 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -36,139 +36,153 @@ msgstr "" "föräldrafönstret eller att din webbläsares säkerhetsinställningar blockerar " "uppdateringar mellan fönster." -#: browse_foreigners.php:149 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2829 -#: libraries/common.lib.php:2836 libraries/db_links.inc.php:74 -#: libraries/tbl_links.inc.php:62 +#: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 +#: db_structure.php:89 db_structure.php:91 db_structure.php:102 +#: db_structure.php:104 libraries/common.lib.php:2834 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Sök" -#: browse_foreigners.php:152 db_operations.php:384 db_operations.php:428 -#: db_operations.php:498 db_operations.php:608 db_search.php:344 -#: db_structure.php:566 js/messages.php:48 libraries/Config.class.php:1043 -#: libraries/Theme_Manager.class.php:310 +#: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 +#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 +#: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 -#: libraries/common.lib.php:1340 libraries/common.lib.php:2289 +#: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 -#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:275 -#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:531 -#: libraries/display_tbl.lib.php:613 libraries/replication_gui.lib.php:75 +#: libraries/display_export.lib.php:269 libraries/display_import.lib.php:275 +#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 +#: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 #: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:781 -#: main.php:127 navigation.php:231 pdf_pages.php:291 pdf_pages.php:327 -#: pdf_pages.php:529 pmd_pdf.php:115 server_binlog.php:128 -#: server_privileges.php:664 server_privileges.php:1616 -#: server_privileges.php:1963 server_privileges.php:2010 -#: server_privileges.php:2049 server_replication.php:234 -#: server_replication.php:317 server_replication.php:340 -#: server_synchronize.php:1208 tbl_change.php:328 tbl_change.php:1172 -#: tbl_change.php:1209 tbl_indexes.php:253 tbl_operations.php:264 -#: tbl_operations.php:301 tbl_operations.php:498 tbl_operations.php:560 -#: tbl_operations.php:680 tbl_select.php:324 tbl_structure.php:561 -#: tbl_structure.php:596 tbl_tracking.php:394 tbl_tracking.php:511 -#: view_create.php:181 view_operations.php:100 +#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 +#: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 +#: server_privileges.php:663 server_privileges.php:1620 +#: server_privileges.php:1967 server_privileges.php:2014 +#: server_privileges.php:2053 server_replication.php:233 +#: server_replication.php:316 server_replication.php:339 +#: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 +#: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 +#: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 +#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "Kör" -#: browse_foreigners.php:167 browse_foreigners.php:171 -#: libraries/Index.class.php:441 tbl_tracking.php:319 +#: browse_foreigners.php:166 browse_foreigners.php:170 +#: libraries/Index.class.php:441 tbl_tracking.php:314 msgid "Keyname" msgstr "Nyckel" -#: browse_foreigners.php:168 browse_foreigners.php:170 -#: server_collations.php:54 server_collations.php:66 server_engines.php:58 +#: browse_foreigners.php:167 browse_foreigners.php:169 +#: server_collations.php:54 server_collations.php:66 server_engines.php:57 #: server_status.php:738 msgid "Description" msgstr "Beskrivning" -#: browse_foreigners.php:246 browse_foreigners.php:255 -#: browse_foreigners.php:267 browse_foreigners.php:275 +#: browse_foreigners.php:245 browse_foreigners.php:254 +#: browse_foreigners.php:266 browse_foreigners.php:274 msgid "Use this value" msgstr "Använd detta värde" -#: db_create.php:45 +#: bs_disp_as_mime_type.php:29 bs_play_media.php:35 +msgid "No blob streaming server configured!" +msgstr "" + +#: bs_disp_as_mime_type.php:35 +#, fuzzy +#| msgid "Failed to write file to disk." +msgid "Failed to fetch headers" +msgstr "Misslyckades att skriva fil till disk." + +#: bs_disp_as_mime_type.php:41 +msgid "Failed to open remote URL" +msgstr "" + +#: db_create.php:44 #, php-format msgid "Database %1$s has been created." msgstr "Databas %1$s har skapats." -#: db_datadict.php:48 db_operations.php:377 +#: db_datadict.php:48 db_operations.php:313 msgid "Database comment: " msgstr "Databaskommentar: " -#: db_datadict.php:164 libraries/tbl_properties.inc.php:723 -#: pdf_schema.php:1235 tbl_operations.php:346 tbl_printview.php:128 +#: db_datadict.php:164 libraries/tbl_properties.inc.php:722 +#: pdf_schema.php:1234 tbl_operations.php:344 tbl_printview.php:127 msgid "Table comments" msgstr "Tabellkommentarer" -#: db_datadict.php:173 db_qbe.php:173 libraries/Index.class.php:445 +#: db_datadict.php:173 db_qbe.php:170 libraries/Index.class.php:445 #: libraries/export/htmlword.php:243 libraries/export/latex.php:364 #: libraries/export/odt.php:293 libraries/export/texytext.php:233 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:274 -#: pdf_schema.php:1261 pdf_schema.php:1282 tbl_change.php:306 -#: tbl_indexes.php:188 tbl_printview.php:140 tbl_relation.php:401 -#: tbl_select.php:133 tbl_structure.php:176 tbl_tracking.php:272 -#: tbl_tracking.php:323 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 +#: pdf_schema.php:1260 pdf_schema.php:1281 tbl_change.php:301 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:132 tbl_structure.php:175 tbl_tracking.php:267 +#: tbl_tracking.php:318 #, fuzzy #| msgid "Column names" msgid "Column" msgstr "Kolumn-namn" -#: db_datadict.php:174 db_printview.php:105 libraries/Index.class.php:442 +#: db_datadict.php:174 db_printview.php:104 libraries/Index.class.php:442 #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 #: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:244 #: libraries/export/latex.php:364 libraries/export/odt.php:296 #: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:99 -#: pdf_schema.php:1262 pdf_schema.php:1283 server_privileges.php:2062 -#: tbl_change.php:285 tbl_change.php:312 tbl_printview.php:141 -#: tbl_printview.php:311 tbl_select.php:134 tbl_structure.php:177 -#: tbl_structure.php:658 tbl_tracking.php:273 tbl_tracking.php:320 +#: pdf_schema.php:1261 pdf_schema.php:1282 server_privileges.php:2066 +#: tbl_change.php:280 tbl_change.php:307 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:133 tbl_structure.php:176 +#: tbl_structure.php:656 tbl_tracking.php:268 tbl_tracking.php:315 msgid "Type" msgstr "Typ" #: db_datadict.php:176 libraries/Index.class.php:448 #: libraries/export/htmlword.php:245 libraries/export/latex.php:364 #: libraries/export/odt.php:299 libraries/export/texytext.php:235 -#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1264 -#: pdf_schema.php:1285 tbl_change.php:321 tbl_printview.php:143 -#: tbl_structure.php:180 tbl_tracking.php:275 tbl_tracking.php:326 +#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1263 +#: pdf_schema.php:1284 tbl_change.php:316 tbl_printview.php:142 +#: tbl_structure.php:179 tbl_tracking.php:270 tbl_tracking.php:321 msgid "Null" msgstr "Null" -#: db_datadict.php:177 db_structure.php:500 libraries/export/htmlword.php:246 +#: db_datadict.php:177 db_structure.php:486 libraries/export/htmlword.php:246 #: libraries/export/latex.php:364 libraries/export/odt.php:302 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:105 -#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 -#: tbl_structure.php:181 tbl_tracking.php:276 +#: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:143 +#: tbl_structure.php:180 tbl_tracking.php:271 msgid "Default" msgstr "Standard" #: db_datadict.php:181 libraries/export/htmlword.php:248 #: libraries/export/latex.php:366 libraries/export/odt.php:306 -#: libraries/export/texytext.php:238 pdf_schema.php:1267 pdf_schema.php:1288 -#: tbl_printview.php:148 +#: libraries/export/texytext.php:238 pdf_schema.php:1266 pdf_schema.php:1287 +#: tbl_printview.php:147 msgid "Links to" msgstr "Länkar till" -#: db_datadict.php:183 db_printview.php:111 libraries/export/htmlword.php:251 +#: db_datadict.php:183 db_printview.php:110 libraries/export/htmlword.php:251 #: libraries/export/latex.php:49 libraries/export/latex.php:369 #: libraries/export/odt.php:37 libraries/export/odt.php:311 #: libraries/export/sql.php:29 libraries/export/texytext.php:241 -#: libraries/tbl_properties.inc.php:129 pdf_schema.php:1278 -#: pdf_schema.php:1289 tbl_printview.php:150 +#: libraries/tbl_properties.inc.php:128 pdf_schema.php:1277 +#: pdf_schema.php:1288 tbl_printview.php:149 msgid "Comments" msgstr "Kommentarer" #: db_datadict.php:266 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/export/htmlword.php:321 #: libraries/export/latex.php:434 libraries/export/odt.php:367 -#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:262 -#: pdf_schema.php:1343 server_privileges.php:1560 server_privileges.php:1571 -#: server_privileges.php:1881 server_privileges.php:1886 -#: server_privileges.php:2179 sql.php:131 sql.php:193 tbl_printview.php:227 -#: tbl_structure.php:349 tbl_tracking.php:336 tbl_tracking.php:341 +#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:261 +#: pdf_schema.php:1342 server_privileges.php:1564 server_privileges.php:1575 +#: server_privileges.php:1885 server_privileges.php:1890 +#: server_privileges.php:2183 sql.php:130 sql.php:192 tbl_printview.php:226 +#: tbl_structure.php:347 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "Nej" @@ -179,17 +193,17 @@ msgstr "Nej" #: libraries/mult_submits.inc.php:49 libraries/mult_submits.inc.php:54 #: libraries/mult_submits.inc.php:59 libraries/mult_submits.inc.php:91 #: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:105 -#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:261 -#: libraries/mult_submits.inc.php:272 pdf_schema.php:1343 -#: server_databases.php:63 server_privileges.php:1557 -#: server_privileges.php:1571 server_privileges.php:1881 -#: server_privileges.php:1884 server_privileges.php:2179 sql.php:192 -#: tbl_printview.php:227 tbl_structure.php:39 tbl_structure.php:349 -#: tbl_tracking.php:334 tbl_tracking.php:339 +#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:260 +#: libraries/mult_submits.inc.php:271 pdf_schema.php:1342 +#: server_databases.php:61 server_privileges.php:1561 +#: server_privileges.php:1575 server_privileges.php:1885 +#: server_privileges.php:1888 server_privileges.php:2183 sql.php:191 +#: tbl_printview.php:226 tbl_structure.php:38 tbl_structure.php:347 +#: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" msgstr "Ja" -#: db_datadict.php:321 db_printview.php:265 tbl_printview.php:496 +#: db_datadict.php:321 db_printview.php:264 tbl_printview.php:495 msgid "Print" msgstr "Skriv ut" @@ -197,194 +211,154 @@ msgstr "Skriv ut" msgid "View dump (schema) of database" msgstr "Visa SQL-satser för databasen" -#: db_export.php:32 db_printview.php:95 db_qbe.php:101 db_structure.php:50 -#: db_tracking.php:34 export.php:352 navigation.php:326 +#: db_export.php:32 db_printview.php:94 db_qbe.php:98 db_structure.php:49 +#: db_tracking.php:30 export.php:350 navigation.php:325 msgid "No tables found in database." msgstr "Inga tabeller funna i databasen." -#: db_export.php:42 db_search.php:326 server_export.php:26 +#: db_export.php:42 db_search.php:326 server_export.php:24 msgid "Select All" msgstr "Markera alla" -#: db_export.php:44 db_search.php:329 server_export.php:28 +#: db_export.php:44 db_search.php:329 server_export.php:26 msgid "Unselect All" msgstr "Avmarkera alla" -#: db_operations.php:37 tbl_create.php:49 +#: db_operations.php:33 tbl_create.php:47 msgid "The database name is empty!" msgstr "Databasens namn är tomt!" -#: db_operations.php:235 +#: db_operations.php:231 #, php-format msgid "Database %s has been renamed to %s" msgstr "Databas %s har döpts om till %s" -#: db_operations.php:239 +#: db_operations.php:235 #, php-format msgid "Database %s has been copied to %s" msgstr "Databas %s har kopierats till %s" -#: db_operations.php:411 +#: db_operations.php:347 msgid "Rename database to" msgstr "Döp om databasen till" -#: db_operations.php:416 server_processlist.php:56 +#: db_operations.php:352 server_processlist.php:56 msgid "Command" msgstr "Kommando" -#: db_operations.php:428 tbl_change.php:1141 +#: db_operations.php:364 tbl_change.php:1039 msgid "and then" msgstr "och sedan" -#: db_operations.php:454 +#: db_operations.php:390 msgid "Copy database to" msgstr "Kopiera databas till" -#: db_operations.php:461 tbl_operations.php:527 tbl_tracking.php:387 +#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Enbart struktur" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:389 +#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Struktur och data" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:388 +#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Enbart data" -#: db_operations.php:471 +#: db_operations.php:407 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE före kopiering" -#: db_operations.php:474 libraries/export/sql.php:51 +#: db_operations.php:410 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 -#: libraries/export/sql.php:81 tbl_operations.php:535 +#: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "Lägg till %s" -#: db_operations.php:478 libraries/export/sql.php:77 tbl_operations.php:298 -#: tbl_operations.php:537 +#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Lägg till AUTO_INCREMENT-värde" -#: db_operations.php:482 tbl_operations.php:544 +#: db_operations.php:418 tbl_operations.php:542 msgid "Add constraints" msgstr "Lägg till restriktioner" -#: db_operations.php:495 +#: db_operations.php:431 msgid "Switch to copied database" msgstr "Byt till kopierad databas" -#: db_operations.php:536 -msgid "BLOB Repository" -msgstr "BLOB-förvaringsplats" - -#: db_operations.php:539 db_tracking.php:75 libraries/common.lib.php:1357 -#: libraries/server_links.inc.php:48 server_processlist.php:58 -#: tbl_tracking.php:595 test/theme.php:100 -msgid "Status" -msgstr "Status" - -#: db_operations.php:547 -#, fuzzy -#| msgid "Enabled" -msgctxt "BLOB repository" -msgid "Enabled" -msgstr "Aktiverat" - -#: db_operations.php:551 -msgid "Disable" -msgstr "Inaktivera" - -#: db_operations.php:561 -msgid "Damaged" -msgstr "Skadad" - -#: db_operations.php:565 -#, fuzzy -#| msgid "Repair" -msgctxt "BLOB repository" -msgid "Repair" -msgstr "Reparera" - -#: db_operations.php:573 -#, fuzzy -#| msgid "Disabled" -msgctxt "BLOB repository" -msgid "Disabled" -msgstr "Inaktiverat" - -#: db_operations.php:577 -msgid "Enable" -msgstr "Aktivera" - -#: db_operations.php:601 libraries/Index.class.php:447 +#: db_operations.php:451 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 -#: server_collations.php:53 server_collations.php:65 server_databases.php:110 -#: tbl_operations.php:362 tbl_select.php:135 tbl_structure.php:178 -#: tbl_structure.php:766 tbl_tracking.php:274 tbl_tracking.php:325 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 +#: server_collations.php:53 server_collations.php:65 server_databases.php:108 +#: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:177 +#: tbl_structure.php:764 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "Kollationering" -#: db_operations.php:614 main.php:315 pdf_schema.php:33 -#, php-format +#: db_operations.php:464 pdf_schema.php:32 +#, fuzzy, php-format +#| msgid "" +#| "The additional features for working with linked tables have been " +#| "deactivated. To find out why click %shere%s." msgid "" -"The additional features for working with linked tables have been " -"deactivated. To find out why click %shere%s." +"The phpMyAdmin configuration storage has been deactivated. To find out why " +"click %shere%s." msgstr "" "Den extra funktionaliteten för att hantera länkade tabeller har " "inaktiverats. %sVisa orsaken%s." -#: db_operations.php:647 +#: db_operations.php:497 msgid "Edit PDF Pages" msgstr "Redigera PDF-sidor" -#: db_printview.php:103 db_tracking.php:71 db_tracking.php:156 +#: db_printview.php:102 db_tracking.php:67 db_tracking.php:152 #: libraries/db_structure.lib.php:37 libraries/export/xml.php:327 -#: libraries/header.inc.php:125 pdf_pages.php:423 server_privileges.php:1657 -#: server_privileges.php:1713 server_privileges.php:1977 -#: server_synchronize.php:422 server_synchronize.php:865 tbl_tracking.php:591 +#: libraries/header.inc.php:125 pdf_pages.php:422 server_privileges.php:1661 +#: server_privileges.php:1717 server_privileges.php:1981 +#: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "Tabell" -#: db_printview.php:104 libraries/db_structure.lib.php:47 +#: db_printview.php:103 libraries/db_structure.lib.php:47 #: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 -#: navigation.php:629 navigation.php:651 server_databases.php:121 -#: tbl_printview.php:392 tbl_structure.php:364 tbl_structure.php:776 +#: navigation.php:628 navigation.php:650 server_databases.php:119 +#: tbl_printview.php:391 tbl_structure.php:362 tbl_structure.php:774 msgid "Rows" msgstr "Rader" -#: db_printview.php:108 libraries/db_structure.lib.php:58 tbl_indexes.php:189 +#: db_printview.php:107 libraries/db_structure.lib.php:58 tbl_indexes.php:188 msgid "Size" msgstr "Storlek" -#: db_printview.php:161 db_structure.php:456 libraries/export/sql.php:556 +#: db_printview.php:160 db_structure.php:442 libraries/export/sql.php:556 #: libraries/export/sql.php:896 msgid "in use" msgstr "används" -#: db_printview.php:186 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:511 pdf_schema.php:1240 tbl_printview.php:432 -#: tbl_structure.php:808 +#: db_printview.php:185 libraries/db_info.inc.php:86 +#: libraries/export/sql.php:511 pdf_schema.php:1239 tbl_printview.php:431 +#: tbl_structure.php:806 msgid "Creation" msgstr "Skapades" -#: db_printview.php:195 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:516 pdf_schema.php:1245 tbl_printview.php:442 -#: tbl_structure.php:816 +#: db_printview.php:194 libraries/db_info.inc.php:91 +#: libraries/export/sql.php:516 pdf_schema.php:1244 tbl_printview.php:441 +#: tbl_structure.php:814 msgid "Last update" msgstr "Senaste uppdatering" -#: db_printview.php:204 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:521 pdf_schema.php:1250 tbl_printview.php:452 -#: tbl_structure.php:824 +#: db_printview.php:203 libraries/db_info.inc.php:96 +#: libraries/export/sql.php:521 pdf_schema.php:1249 tbl_printview.php:451 +#: tbl_structure.php:822 msgid "Last check" msgstr "Senaste kontroll" -#: db_printview.php:221 db_structure.php:479 +#: db_printview.php:220 db_structure.php:465 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -392,94 +366,94 @@ msgid_plural "%s tables" msgstr[0] "%s tabell(er)" msgstr[1] "%s tabell(er)" -#: db_qbe.php:28 import.php:453 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1980 libraries/sql_query_form.lib.php:138 -#: tbl_operations.php:212 tbl_relation.php:291 tbl_row_action.php:130 -#: view_operations.php:61 +#: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 +#: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "Din SQL-fråga utfördes korrekt" -#: db_qbe.php:41 +#: db_qbe.php:38 msgid "You have to choose at least one column to display" msgstr "Du måste välja minst en kolumn som ska visas" -#: db_qbe.php:199 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:865 +#: db_qbe.php:196 libraries/db_structure.lib.php:95 +#: libraries/display_tbl.lib.php:864 msgid "Sort" msgstr "Sortering" -#: db_qbe.php:208 db_qbe.php:242 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:522 libraries/display_tbl.lib.php:827 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:259 -#: tbl_select.php:311 +#: db_qbe.php:205 db_qbe.php:239 libraries/db_structure.lib.php:102 +#: libraries/display_tbl.lib.php:521 libraries/display_tbl.lib.php:826 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:257 +#: tbl_select.php:310 msgid "Ascending" msgstr "Stigande" -#: db_qbe.php:209 db_qbe.php:250 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:527 libraries/display_tbl.lib.php:824 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:260 -#: tbl_select.php:312 +#: db_qbe.php:206 db_qbe.php:247 libraries/db_structure.lib.php:110 +#: libraries/display_tbl.lib.php:526 libraries/display_tbl.lib.php:823 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:258 +#: tbl_select.php:311 msgid "Descending" msgstr "Fallande" -#: db_qbe.php:263 db_tracking.php:77 libraries/display_tbl.lib.php:307 -#: tbl_change.php:275 tbl_tracking.php:596 +#: db_qbe.php:260 db_tracking.php:73 libraries/display_tbl.lib.php:306 +#: tbl_change.php:270 tbl_tracking.php:591 msgid "Show" msgstr "Visa" -#: db_qbe.php:299 +#: db_qbe.php:296 msgid "Criteria" msgstr "Villkor" -#: db_qbe.php:352 db_qbe.php:434 db_qbe.php:526 db_qbe.php:557 +#: db_qbe.php:349 db_qbe.php:431 db_qbe.php:523 db_qbe.php:554 msgid "Ins" msgstr "Infoga" -#: db_qbe.php:356 db_qbe.php:438 db_qbe.php:523 db_qbe.php:554 +#: db_qbe.php:353 db_qbe.php:435 db_qbe.php:520 db_qbe.php:551 msgid "And" msgstr "Och" -#: db_qbe.php:365 db_qbe.php:446 db_qbe.php:528 db_qbe.php:559 +#: db_qbe.php:362 db_qbe.php:443 db_qbe.php:525 db_qbe.php:556 msgid "Del" msgstr "Ta bort" -#: db_qbe.php:369 db_qbe.php:450 db_qbe.php:521 db_qbe.php:552 -#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:778 -#: server_privileges.php:297 tbl_change.php:1027 tbl_indexes.php:249 -#: tbl_select.php:285 +#: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 +#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:777 +#: server_privileges.php:296 tbl_change.php:925 tbl_indexes.php:248 +#: tbl_select.php:284 msgid "Or" msgstr "Eller" -#: db_qbe.php:506 +#: db_qbe.php:503 msgid "Modify" msgstr "Ändra" -#: db_qbe.php:583 +#: db_qbe.php:580 #, fuzzy #| msgid "Add/Delete Criteria Row" msgid "Add/Delete criteria rows" msgstr "Lägg till/ta bort villkorsrader" -#: db_qbe.php:595 +#: db_qbe.php:592 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Add/Delete columns" msgstr "Lägg till/ta bort fältkolumner" -#: db_qbe.php:608 db_qbe.php:633 +#: db_qbe.php:605 db_qbe.php:630 msgid "Update Query" msgstr "Uppdatera fråga" -#: db_qbe.php:616 +#: db_qbe.php:613 msgid "Use Tables" msgstr "Använd tabeller" -#: db_qbe.php:639 +#: db_qbe.php:636 #, php-format msgid "SQL query on database %s:" msgstr "SQL-fråga i databas %s:" -#: db_qbe.php:933 libraries/common.lib.php:1222 +#: db_qbe.php:930 libraries/common.lib.php:1215 msgid "Submit Query" msgstr "Kör fråga" @@ -519,17 +493,17 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s träff(ar) i tabell %s" msgstr[1] "%s träff(ar) i tabell %s" -#: db_search.php:249 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2831 -#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:49 -#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:466 +#: db_search.php:249 db_structure.php:75 db_structure.php:76 +#: db_structure.php:88 db_structure.php:90 db_structure.php:101 +#: db_structure.php:103 libraries/common.lib.php:2836 +#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 +#: tbl_structure.php:35 tbl_structure.php:47 tbl_structure.php:464 msgid "Browse" msgstr "Visa" -#: db_search.php:254 libraries/display_tbl.lib.php:1164 -#: libraries/display_tbl.lib.php:2055 libraries/sql_query_form.lib.php:453 -#: pdf_pages.php:285 pdf_pages.php:424 pdf_pages.php:460 pdf_pages.php:488 +#: db_search.php:254 libraries/display_tbl.lib.php:1163 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 msgid "Delete" @@ -569,233 +543,239 @@ msgstr "I tabell(er):" msgid "Inside column:" msgstr "I fält:" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2830 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:75 +#: db_structure.php:79 db_structure.php:80 db_structure.php:92 +#: db_structure.php:93 db_structure.php:105 db_structure.php:106 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 +#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Lägg till" -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2827 libraries/common.lib.php:2834 -#: libraries/db_links.inc.php:62 libraries/export/htmlword.php:22 +#: db_structure.php:81 db_structure.php:94 db_structure.php:107 +#: libraries/common.lib.php:2832 libraries/common.lib.php:2839 +#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 -#: libraries/tbl_links.inc.php:55 pmd_general.php:133 -#: server_privileges.php:593 server_replication.php:314 tbl_tracking.php:268 +#: libraries/tbl_links.inc.php:54 pmd_general.php:133 +#: server_privileges.php:592 server_replication.php:313 tbl_tracking.php:263 msgid "Structure" msgstr "Struktur" -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:544 db_structure.php:545 db_tracking.php:90 -#: libraries/Index.class.php:482 libraries/common.lib.php:1659 -#: libraries/db_links.inc.php:99 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:126 -#: server_databases.php:351 tbl_structure.php:26 tbl_structure.php:150 -#: tbl_structure.php:151 tbl_structure.php:470 +#: db_structure.php:82 db_structure.php:83 db_structure.php:95 +#: db_structure.php:96 db_structure.php:108 db_structure.php:109 +#: db_structure.php:530 db_structure.php:531 db_tracking.php:86 +#: libraries/Index.class.php:482 libraries/common.lib.php:1663 +#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 +#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 +#: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" msgstr "Radera" -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:542 db_structure.php:543 libraries/common.lib.php:1658 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:104 +#: db_structure.php:84 db_structure.php:85 db_structure.php:97 +#: db_structure.php:98 db_structure.php:110 db_structure.php:111 +#: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 +#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 msgid "Empty" msgstr "Töm" -#: db_structure.php:315 libraries/tbl_links.inc.php:99 +#: db_structure.php:301 libraries/tbl_links.inc.php:98 #, php-format msgid "Table %s has been emptied" msgstr "Tabellen %s har tömts" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "View %s has been dropped" msgstr "Vyn %s har tagits bort" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "Table %s has been dropped" msgstr "Tabellen %s har tagits bort" -#: db_structure.php:332 +#: db_structure.php:318 msgid "Tracking is active." msgstr "" -#: db_structure.php:334 +#: db_structure.php:320 msgid "Tracking is not active." msgstr "" -#: db_structure.php:419 libraries/display_tbl.lib.php:1943 +#: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "Denna vy har åtminstone detta antal rader. Se %sdokumentation%s." -#: db_structure.php:433 db_structure.php:447 libraries/header.inc.php:125 -#: libraries/tbl_info.inc.php:65 tbl_structure.php:184 test/theme.php:73 +#: db_structure.php:419 db_structure.php:433 libraries/header.inc.php:125 +#: libraries/tbl_info.inc.php:60 tbl_structure.php:183 test/theme.php:73 msgid "View" msgstr "Vy" -#: db_structure.php:484 libraries/db_structure.lib.php:40 -#: libraries/server_links.inc.php:69 server_replication.php:32 -#: server_replication.php:163 server_status.php:368 +#: db_structure.php:470 libraries/db_structure.lib.php:40 +#: libraries/server_links.inc.php:69 server_replication.php:31 +#: server_replication.php:162 server_status.php:368 msgid "Replication" msgstr "Replikering" -#: db_structure.php:488 +#: db_structure.php:474 msgid "Sum" msgstr "Summa" -#: db_structure.php:495 libraries/StorageEngine.class.php:349 +#: db_structure.php:481 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s är standardlagringsmotorn på denna MySQL-server." -#: db_structure.php:523 db_structure.php:540 db_structure.php:541 -#: libraries/display_tbl.lib.php:2080 libraries/display_tbl.lib.php:2085 -#: libraries/mult_submits.inc.php:15 server_databases.php:345 -#: server_databases.php:350 server_privileges.php:1588 tbl_structure.php:454 -#: tbl_structure.php:463 +#: db_structure.php:509 db_structure.php:526 db_structure.php:527 +#: libraries/display_tbl.lib.php:2039 libraries/display_tbl.lib.php:2044 +#: libraries/mult_submits.inc.php:15 server_databases.php:343 +#: server_databases.php:348 server_privileges.php:1592 tbl_structure.php:452 +#: tbl_structure.php:461 msgid "With selected:" msgstr "Med markerade:" -#: db_structure.php:526 libraries/display_tbl.lib.php:2075 -#: server_databases.php:347 server_privileges.php:569 -#: server_privileges.php:1591 tbl_structure.php:457 +#: db_structure.php:512 libraries/display_tbl.lib.php:2034 +#: server_databases.php:345 server_privileges.php:568 +#: server_privileges.php:1595 tbl_structure.php:455 msgid "Check All" msgstr "Markera alla" -#: db_structure.php:530 libraries/display_tbl.lib.php:2076 -#: libraries/replication_gui.lib.php:35 server_databases.php:349 -#: server_privileges.php:572 server_privileges.php:1595 tbl_structure.php:461 +#: db_structure.php:516 libraries/display_tbl.lib.php:2035 +#: libraries/replication_gui.lib.php:35 server_databases.php:347 +#: server_privileges.php:571 server_privileges.php:1599 tbl_structure.php:459 msgid "Uncheck All" msgstr "Avmarkera alla" -#: db_structure.php:535 +#: db_structure.php:521 msgid "Check tables having overhead" msgstr "Markera ooptimerade" -#: db_structure.php:546 db_structure.php:547 db_structure.php:598 -#: libraries/display_tbl.lib.php:2179 libraries/mult_submits.inc.php:27 -#: tbl_structure.php:491 tbl_structure.php:493 +#: db_structure.php:532 db_structure.php:533 db_structure.php:584 +#: libraries/display_tbl.lib.php:2138 libraries/mult_submits.inc.php:27 +#: tbl_structure.php:489 tbl_structure.php:491 msgid "Print view" msgstr "Utskriftsvänlig visning" -#: db_structure.php:548 db_structure.php:549 libraries/mult_submits.inc.php:41 -#: tbl_operations.php:580 +#: db_structure.php:534 db_structure.php:535 libraries/mult_submits.inc.php:41 +#: tbl_operations.php:578 msgid "Check table" msgstr "Kontrollera tabell" -#: db_structure.php:550 db_structure.php:551 libraries/mult_submits.inc.php:46 -#: tbl_operations.php:620 tbl_structure.php:708 tbl_structure.php:710 +#: db_structure.php:536 db_structure.php:537 libraries/mult_submits.inc.php:46 +#: tbl_operations.php:618 tbl_structure.php:706 tbl_structure.php:708 msgid "Optimize table" msgstr "Optimera tabell" -#: db_structure.php:552 db_structure.php:553 libraries/mult_submits.inc.php:51 -#: tbl_operations.php:610 +#: db_structure.php:538 db_structure.php:539 libraries/mult_submits.inc.php:51 +#: tbl_operations.php:608 msgid "Repair table" msgstr "Reparera tabell" -#: db_structure.php:554 db_structure.php:555 libraries/mult_submits.inc.php:56 -#: tbl_operations.php:600 +#: db_structure.php:540 db_structure.php:541 libraries/mult_submits.inc.php:56 +#: tbl_operations.php:598 msgid "Analyze table" msgstr "Analysera tabell" -#: db_structure.php:556 db_structure.php:557 libraries/db_links.inc.php:70 -#: libraries/display_export.lib.php:82 libraries/display_tbl.lib.php:2093 -#: libraries/display_tbl.lib.php:2224 libraries/mult_submits.inc.php:61 -#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:81 -#: pmd_pdf.php:83 pmd_pdf.php:108 server_privileges.php:1372 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 +#: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 +#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 +#: pmd_pdf.php:81 pmd_pdf.php:106 server_privileges.php:1376 #: setup/frames/menu.inc.php:22 tbl_row_action.php:58 msgid "Export" msgstr "Exportera" -#: db_structure.php:605 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:591 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "Datalexikon" -#: db_tracking.php:65 +#: db_tracking.php:61 #, fuzzy msgid "Tracked tables" msgstr "Hoppa över låsta tabeller" -#: db_tracking.php:70 libraries/export/htmlword.php:85 +#: db_tracking.php:66 libraries/export/htmlword.php:85 #: libraries/export/latex.php:152 libraries/export/odt.php:112 #: libraries/export/sql.php:339 libraries/export/texytext.php:84 #: libraries/export/xml.php:254 libraries/header.inc.php:105 -#: libraries/header_printview.inc.php:57 server_databases.php:168 -#: server_privileges.php:1652 server_privileges.php:1713 -#: server_privileges.php:1971 server_processlist.php:55 -#: server_synchronize.php:1178 server_synchronize.php:1182 -#: tbl_tracking.php:590 test/theme.php:64 +#: libraries/header_printview.inc.php:57 server_databases.php:166 +#: server_privileges.php:1656 server_privileges.php:1717 +#: server_privileges.php:1975 server_processlist.php:55 +#: server_synchronize.php:1177 server_synchronize.php:1181 +#: tbl_tracking.php:585 test/theme.php:64 msgid "Database" msgstr "Databas" -#: db_tracking.php:72 +#: db_tracking.php:68 #, fuzzy msgid "Last version" msgstr "Skapa relation" -#: db_tracking.php:73 tbl_tracking.php:593 +#: db_tracking.php:69 tbl_tracking.php:588 #, fuzzy msgid "Created" msgstr "Skapa" -#: db_tracking.php:74 tbl_tracking.php:594 +#: db_tracking.php:70 tbl_tracking.php:589 msgid "Updated" msgstr "" -#: db_tracking.php:76 libraries/Index.class.php:439 -#: libraries/db_structure.lib.php:44 server_databases.php:202 -#: server_privileges.php:1534 server_privileges.php:1717 -#: server_privileges.php:2065 tbl_structure.php:186 +#: db_tracking.php:71 libraries/common.lib.php:1361 +#: libraries/server_links.inc.php:48 server_processlist.php:58 +#: tbl_tracking.php:590 test/theme.php:100 +msgid "Status" +msgstr "Status" + +#: db_tracking.php:72 libraries/Index.class.php:439 +#: libraries/db_structure.lib.php:44 server_databases.php:200 +#: server_privileges.php:1538 server_privileges.php:1721 +#: server_privileges.php:2069 tbl_structure.php:185 msgid "Action" msgstr "Åtgärd" -#: db_tracking.php:87 db_tracking.php:119 +#: db_tracking.php:83 db_tracking.php:115 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:105 tbl_tracking.php:547 tbl_tracking.php:605 -#: tbl_tracking.php:612 +#: db_tracking.php:101 tbl_tracking.php:542 tbl_tracking.php:600 +#: tbl_tracking.php:607 msgid "active" msgstr "" -#: db_tracking.php:107 tbl_tracking.php:549 tbl_tracking.php:607 -#: tbl_tracking.php:609 +#: db_tracking.php:103 tbl_tracking.php:544 tbl_tracking.php:602 +#: tbl_tracking.php:604 msgid "not active" msgstr "" -#: db_tracking.php:120 +#: db_tracking.php:116 #, fuzzy msgid "Versions" msgstr "Persiska" -#: db_tracking.php:121 tbl_tracking.php:378 tbl_tracking.php:623 +#: db_tracking.php:117 tbl_tracking.php:373 tbl_tracking.php:618 msgid "Tracking report" msgstr "" -#: db_tracking.php:122 tbl_tracking.php:250 tbl_tracking.php:623 +#: db_tracking.php:118 tbl_tracking.php:245 tbl_tracking.php:618 #, fuzzy msgid "Structure snapshot" msgstr "Enbart struktur" -#: db_tracking.php:151 +#: db_tracking.php:147 #, fuzzy msgid "Untracked tables" msgstr "Hoppa över låsta tabeller" -#: db_tracking.php:171 db_tracking.php:173 tbl_structure.php:527 -#: tbl_structure.php:529 +#: db_tracking.php:167 db_tracking.php:169 tbl_structure.php:525 +#: tbl_structure.php:527 #, fuzzy msgid "Track table" msgstr "Kontrollera tabell" -#: db_tracking.php:199 +#: db_tracking.php:195 #, fuzzy msgid "Database Log" msgstr "Databas" @@ -804,12 +784,12 @@ msgstr "Databas" msgid "Selected export type has to be saved in file!" msgstr "Vald export-typ måste sparas i fil!" -#: export.php:153 export.php:178 export.php:620 +#: export.php:152 export.php:177 export.php:615 #, php-format msgid "Insufficient space to save the file %s." msgstr "Otillräckligt utrymme för att spara filen %s." -#: export.php:287 +#: export.php:286 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -817,17 +797,17 @@ msgstr "" "Filen %s finns redan på servern. Ändra filnamnet eller kryssa i skriv över-" "alternativet." -#: export.php:291 export.php:295 +#: export.php:290 export.php:294 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Webbservern har inte tillåtelse att spara filen %s." -#: export.php:622 +#: export.php:617 #, php-format msgid "Dump has been saved to file %s." msgstr "SQL-satserna har sparats till filen %s." -#: import.php:59 +#: import.php:58 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -836,14 +816,14 @@ msgstr "" "Du försökte förmodligen ladda upp en för stor fil. Se %sdokumentationen%s " "för metoder att gå runt denna begränsning." -#: import.php:278 import.php:331 libraries/File.class.php:840 -#: libraries/File.class.php:950 +#: import.php:277 import.php:330 libraries/File.class.php:566 +#: libraries/File.class.php:676 msgid "File could not be read" msgstr "Filen kunde inte läsas" -#: import.php:286 import.php:295 import.php:314 import.php:323 -#: libraries/File.class.php:1020 libraries/File.class.php:1028 -#: libraries/File.class.php:1044 libraries/File.class.php:1052 +#: import.php:285 import.php:294 import.php:313 import.php:322 +#: libraries/File.class.php:746 libraries/File.class.php:754 +#: libraries/File.class.php:770 libraries/File.class.php:778 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -852,7 +832,7 @@ msgstr "" "Du försökta ladda en fil med komprimering (%s) som inte stöds. Antingen är " "stöd för det inte implementerat eller inaktiverat i din konfiguration." -#: import.php:336 +#: import.php:335 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -862,29 +842,29 @@ msgstr "" "översteg filens storlek den maximala som tillåts av din PHP-konfiguration.. " "Se FAQ 1.16." -#: import.php:371 libraries/display_import.lib.php:23 +#: import.php:370 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "Kunde inte ladda tillägg för import. Kontrollera din installation!" -#: import.php:396 +#: import.php:395 msgid "The bookmark has been deleted." msgstr "Bokmärket har tagits bort." -#: import.php:400 +#: import.php:399 msgid "Showing bookmark" msgstr "Visar bokmärke" -#: import.php:402 sql.php:625 +#: import.php:401 sql.php:618 #, php-format msgid "Bookmark %s created" msgstr "Bokmärket %s har skapats" -#: import.php:408 import.php:414 +#: import.php:407 import.php:413 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Importen har avslutats korrekt, %d frågor utförda." -#: import.php:423 +#: import.php:422 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -892,7 +872,7 @@ msgstr "" "Skriptets tidsbegränsning har överskridits. Om du vill slutföra importen, " "importera samma fil igen så kommer importen att återupptas." -#: import.php:425 +#: import.php:424 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -901,19 +881,19 @@ msgstr "" "att phpMyAdmin inte kan slutföra denna import såvida du inte ökar PHP:s " "tidsbegränsningar." -#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:240 +#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:239 #: user_password.php:110 msgid "Back" msgstr "Bakåt" -#: index.php:188 +#: index.php:183 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin fungerar tyvärr endast med webbläsare som hanterar ramar." -#: js/messages.php:25 server_synchronize.php:344 server_synchronize.php:356 -#: server_synchronize.php:372 server_synchronize.php:379 -#: server_synchronize.php:738 server_synchronize.php:766 -#: server_synchronize.php:794 server_synchronize.php:806 +#: js/messages.php:25 server_synchronize.php:343 server_synchronize.php:355 +#: server_synchronize.php:371 server_synchronize.php:378 +#: server_synchronize.php:737 server_synchronize.php:765 +#: server_synchronize.php:793 server_synchronize.php:805 msgid "Click to select" msgstr "" @@ -921,15 +901,15 @@ msgstr "" msgid "Click to unselect" msgstr "" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:88 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:87 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\"-satser är inaktiverade." -#: js/messages.php:30 libraries/mult_submits.inc.php:257 sql.php:187 +#: js/messages.php:30 libraries/mult_submits.inc.php:256 sql.php:186 msgid "Do you really want to " msgstr "Vill du verkligen " -#: js/messages.php:31 libraries/mult_submits.inc.php:257 sql.php:171 +#: js/messages.php:31 libraries/mult_submits.inc.php:256 sql.php:170 msgid "You are about to DESTROY a complete database!" msgstr "Du håller på att FÖRGÖRA en hel databas!" @@ -958,11 +938,11 @@ msgstr "Värdnamnet är tomt!" msgid "The user name is empty!" msgstr "Användarnamnet är tomt!" -#: js/messages.php:44 server_privileges.php:1228 user_password.php:65 +#: js/messages.php:44 server_privileges.php:1229 user_password.php:65 msgid "The password is empty!" msgstr "Lösenordet är tomt!" -#: js/messages.php:45 server_privileges.php:1226 user_password.php:68 +#: js/messages.php:45 server_privileges.php:1227 user_password.php:68 msgid "The passwords aren't the same!" msgstr "Lösenorden är inte lika!" @@ -970,27 +950,27 @@ msgstr "Lösenorden är inte lika!" msgid "Cancel" msgstr "Avbryt" -#: js/messages.php:52 pmd_save_pos.php:53 +#: js/messages.php:52 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "Ändringarna har sparats" -#: js/messages.php:53 pmd_relation_upd.php:48 +#: js/messages.php:53 pmd_relation_upd.php:47 msgid "Relation deleted" msgstr "Relation borttagen" -#: js/messages.php:54 pmd_relation_new.php:63 +#: js/messages.php:54 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "Främmande nyckel-relation tillagd" -#: js/messages.php:55 pmd_relation_new.php:85 +#: js/messages.php:55 pmd_relation_new.php:84 msgid "Internal relation added" msgstr "Intern relation tillagd" -#: js/messages.php:56 pmd_relation_new.php:62 pmd_relation_new.php:87 +#: js/messages.php:56 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "Fel: Relation inte tillagd." -#: js/messages.php:57 pmd_relation_new.php:30 +#: js/messages.php:57 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "Fel: Relation finns redan." @@ -998,13 +978,13 @@ msgstr "Fel: Relation finns redan." msgid "Error saving coordinates for Designer." msgstr "Fel vid sparande av koordinater för Designer." -#: js/messages.php:59 libraries/relation.lib.php:94 -#: libraries/relation.lib.php:106 +#: js/messages.php:59 libraries/relation.lib.php:89 +#: libraries/relation.lib.php:101 msgid "General relation features" msgstr "Allmänna relationsfunktionaliteter" -#: js/messages.php:59 libraries/relation.lib.php:88 -#: libraries/relation.lib.php:95 +#: js/messages.php:59 libraries/relation.lib.php:83 +#: libraries/relation.lib.php:90 msgid "Disabled" msgstr "Inaktiverat" @@ -1020,7 +1000,7 @@ msgstr "Välj främmande nyckel" msgid "Please select the primary key or a unique key" msgstr "Välj den primära nyckeln eller en unik nyckel" -#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:547 +#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" @@ -1051,10 +1031,10 @@ msgid "Prev" msgstr "Föregående" #. l10n: Display text for next month link in calendar -#: js/messages.php:81 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:337 -#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:422 -#: tbl_structure.php:800 +#: js/messages.php:81 libraries/common.lib.php:2358 +#: libraries/common.lib.php:2361 libraries/display_tbl.lib.php:336 +#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 +#: tbl_structure.php:798 msgid "Next" msgstr "Nästa" @@ -1128,27 +1108,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1562 +#: js/messages.php:101 libraries/common.lib.php:1566 msgid "Jan" msgstr "januari" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1564 +#: js/messages.php:103 libraries/common.lib.php:1568 msgid "Feb" msgstr "februari" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1566 +#: js/messages.php:105 libraries/common.lib.php:1570 msgid "Mar" msgstr "mars" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1568 +#: js/messages.php:107 libraries/common.lib.php:1572 msgid "Apr" msgstr "april" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1570 +#: js/messages.php:109 libraries/common.lib.php:1574 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1156,37 +1136,37 @@ msgid "May" msgstr "maj" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1572 +#: js/messages.php:111 libraries/common.lib.php:1576 msgid "Jun" msgstr "juni" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1574 +#: js/messages.php:113 libraries/common.lib.php:1578 msgid "Jul" msgstr "juli" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1576 +#: js/messages.php:115 libraries/common.lib.php:1580 msgid "Aug" msgstr "augusti" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1578 +#: js/messages.php:117 libraries/common.lib.php:1582 msgid "Sep" msgstr "september" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1580 +#: js/messages.php:119 libraries/common.lib.php:1584 msgid "Oct" msgstr "oktober" #. l10n: Short month name -#: js/messages.php:121 libraries/common.lib.php:1582 +#: js/messages.php:121 libraries/common.lib.php:1586 msgid "Nov" msgstr "november" #. l10n: Short month name -#: js/messages.php:123 libraries/common.lib.php:1584 +#: js/messages.php:123 libraries/common.lib.php:1588 msgid "Dec" msgstr "december" @@ -1227,37 +1207,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1587 +#: js/messages.php:136 libraries/common.lib.php:1591 msgid "Sun" msgstr "Sön" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1589 +#: js/messages.php:138 libraries/common.lib.php:1593 msgid "Mon" msgstr "Mån" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1591 +#: js/messages.php:140 libraries/common.lib.php:1595 msgid "Tue" msgstr "Tis" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1593 +#: js/messages.php:142 libraries/common.lib.php:1597 msgid "Wed" msgstr "Ons" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1595 +#: js/messages.php:144 libraries/common.lib.php:1599 msgid "Thu" msgstr "Tors" #. l10n: Short week day name -#: js/messages.php:146 libraries/common.lib.php:1597 +#: js/messages.php:146 libraries/common.lib.php:1601 msgid "Fri" msgstr "Fre" #. l10n: Short week day name -#: js/messages.php:148 libraries/common.lib.php:1599 +#: js/messages.php:148 libraries/common.lib.php:1603 msgid "Sat" msgstr "Lör" @@ -1337,17 +1317,12 @@ msgstr "per sekund" msgid "Font size" msgstr "Teckenstorlek" -#: libraries/File.class.php:336 libraries/File.class.php:424 -#: libraries/File.class.php:561 libraries/File.class.php:700 -msgid "Unknown error in file upload." -msgstr "Okänt fel i filuppladdning." - -#: libraries/File.class.php:406 +#: libraries/File.class.php:315 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:409 +#: libraries/File.class.php:318 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -1355,59 +1330,63 @@ msgstr "" "Den uppladdade filen överskrider direktivet MAX_FILE_SIZE som specificerades " "i HTML-formuläret." -#: libraries/File.class.php:412 +#: libraries/File.class.php:321 msgid "The uploaded file was only partially uploaded." msgstr "Den uppladdade filen var endast delvis uppladdad." -#: libraries/File.class.php:415 +#: libraries/File.class.php:324 msgid "Missing a temporary folder." msgstr "Saknar en temporär katalog." -#: libraries/File.class.php:418 +#: libraries/File.class.php:327 msgid "Failed to write file to disk." msgstr "Misslyckades att skriva fil till disk." -#: libraries/File.class.php:421 +#: libraries/File.class.php:330 msgid "File upload stopped by extension." msgstr "Filuppladdning stoppades av tillägg." -#: libraries/File.class.php:898 +#: libraries/File.class.php:333 +msgid "Unknown error in file upload." +msgstr "Okänt fel i filuppladdning." + +#: libraries/File.class.php:624 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:427 tbl_relation.php:528 +#: libraries/Index.class.php:427 tbl_relation.php:526 msgid "No index defined!" msgstr "Inga index är definierade!" -#: libraries/Index.class.php:432 server_databases.php:131 tbl_tracking.php:315 +#: libraries/Index.class.php:432 server_databases.php:129 tbl_tracking.php:310 msgid "Indexes" msgstr "Index" #: libraries/Index.class.php:443 libraries/mult_submits.inc.php:102 -#: libraries/tbl_properties.inc.php:518 tbl_structure.php:32 -#: tbl_structure.php:154 tbl_structure.php:158 tbl_structure.php:473 -#: tbl_tracking.php:321 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:31 +#: tbl_structure.php:153 tbl_structure.php:157 tbl_structure.php:471 +#: tbl_tracking.php:316 msgid "Unique" msgstr "Unik" -#: libraries/Index.class.php:444 tbl_tracking.php:322 +#: libraries/Index.class.php:444 tbl_tracking.php:317 msgid "Packed" msgstr "Packad" -#: libraries/Index.class.php:446 tbl_tracking.php:324 +#: libraries/Index.class.php:446 tbl_tracking.php:319 msgid "Cardinality" msgstr "Kardinalitet" -#: libraries/Index.class.php:449 tbl_tracking.php:278 tbl_tracking.php:327 +#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322 msgid "Comment" msgstr "Kommentar" #: libraries/Index.class.php:465 libraries/common.lib.php:609 -#: libraries/common.lib.php:1198 libraries/display_tbl.lib.php:1116 +#: libraries/common.lib.php:1191 libraries/display_tbl.lib.php:1115 #: libraries/import.lib.php:1119 libraries/import.lib.php:1143 -#: pdf_pages.php:284 setup/frames/index.inc.php:124 +#: pdf_pages.php:283 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:349 tbl_row_action.php:68 msgid "Edit" msgstr "Ändra" @@ -1431,15 +1410,15 @@ msgstr "" "bort." #: libraries/List_Database.class.php:430 libraries/server_links.inc.php:40 -#: server_databases.php:87 server_privileges.php:1652 +#: server_databases.php:85 server_privileges.php:1656 #: setup/lib/messages.inc.php:107 test/theme.php:92 msgid "Databases" msgstr "Databaser" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:259 libraries/import.lib.php:134 pdf_schema.php:31 -#: pdf_schema.php:231 tbl_change.php:1023 tbl_operations.php:212 -#: tbl_relation.php:289 view_operations.php:61 +#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 +#: tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Fel" @@ -1467,42 +1446,42 @@ msgid_plural "%1$d rows inserted." msgstr[0] "%1$d rad(er) infogade." msgstr[1] "%1$d rad(er) infogade." -#: libraries/StorageEngine.class.php:196 +#: libraries/StorageEngine.class.php:194 msgid "" "There is no detailed status information available for this storage engine." msgstr "" "Det finns ingen tillgänglig detaljerad statusinformation för denna " "lagringsmotor." -#: libraries/StorageEngine.class.php:352 +#: libraries/StorageEngine.class.php:354 #, php-format msgid "%s is available on this MySQL server." msgstr "%s är tillgänglig på denna MySQL-server." -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:357 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s har inaktiverats på denna MySQL-server." -#: libraries/StorageEngine.class.php:359 +#: libraries/StorageEngine.class.php:361 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "Denna MySQL-server har inte stöd för lagringsmotorn %s." -#: libraries/Table.class.php:1018 +#: libraries/Table.class.php:1017 msgid "Invalid database" msgstr "Ogiltig databas" -#: libraries/Table.class.php:1032 tbl_get_field.php:25 +#: libraries/Table.class.php:1031 tbl_get_field.php:25 msgid "Invalid table name" msgstr "Ogiltigt tabellnamn" -#: libraries/Table.class.php:1047 +#: libraries/Table.class.php:1046 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "Fel vid namnbyte på tabell %1$s till %2$s" -#: libraries/Table.class.php:1131 +#: libraries/Table.class.php:1129 #, php-format msgid "Table %s has been renamed to %s" msgstr "Tabell %s har döpts om till %s" @@ -1520,22 +1499,22 @@ msgstr "Ingen förhandsgranskning tillgänglig." msgid "take it" msgstr "använd detta" -#: libraries/Theme_Manager.class.php:114 +#: libraries/Theme_Manager.class.php:109 #, php-format msgid "Default theme %s not found!" msgstr "Standardtema %s hittades inte!" -#: libraries/Theme_Manager.class.php:152 +#: libraries/Theme_Manager.class.php:147 #, php-format msgid "Theme %s not found!" msgstr "Tema %s hittades inte!" -#: libraries/Theme_Manager.class.php:220 +#: 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:296 test/theme.php:160 themes.php:20 +#: libraries/Theme_Manager.class.php:291 test/theme.php:160 themes.php:20 #: themes.php:40 msgid "Theme / Style" msgstr "Tema / Stil" @@ -1650,19 +1629,19 @@ msgstr "Giltig autentiseringsnyckel saknas" msgid "Authenticating..." msgstr "Autentisering pågår..." -#: libraries/blobstreaming.lib.php:689 +#: libraries/blobstreaming.lib.php:340 msgid "View image" msgstr "Visa bild" -#: libraries/blobstreaming.lib.php:693 +#: libraries/blobstreaming.lib.php:344 msgid "Play audio" msgstr "Spela ljud" -#: libraries/blobstreaming.lib.php:698 +#: libraries/blobstreaming.lib.php:349 msgid "View video" msgstr "Visa video" -#: libraries/blobstreaming.lib.php:702 +#: libraries/blobstreaming.lib.php:353 msgid "Download file" msgstr "Ladda ner fil" @@ -1716,7 +1695,7 @@ msgstr "Server" msgid "Invalid authentication method set in configuration:" msgstr "Ogiltig metod för autentisering angiven i konfiguration:" -#: libraries/common.inc.php:909 +#: libraries/common.inc.php:908 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Du bör uppgradera till %s %s eller senare." @@ -1743,7 +1722,8 @@ msgstr "Skickade" #: libraries/common.lib.php:425 libraries/common.lib.php:427 #: libraries/common.lib.php:429 libraries/common.lib.php:445 #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 -#: libraries/display_export.lib.php:163 libraries/relation.lib.php:84 +#: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 +#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 #: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" @@ -1758,150 +1738,150 @@ msgstr "SQL-fråga" msgid "MySQL said: " msgstr "MySQL sa: " -#: libraries/common.lib.php:1136 +#: libraries/common.lib.php:1129 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "Failed to connect to SQL validator!" msgstr "Kunde inte ansluta till MySQL-server" -#: libraries/common.lib.php:1174 setup/lib/messages.inc.php:350 +#: libraries/common.lib.php:1167 setup/lib/messages.inc.php:350 msgid "Explain SQL" msgstr "Förklara SQL-kod" -#: libraries/common.lib.php:1177 +#: libraries/common.lib.php:1170 msgid "Skip Explain SQL" msgstr "Utan SQL-förklaring" -#: libraries/common.lib.php:1211 +#: libraries/common.lib.php:1204 msgid "Without PHP Code" msgstr "Utan PHP-kod" -#: libraries/common.lib.php:1214 setup/lib/messages.inc.php:352 +#: libraries/common.lib.php:1207 setup/lib/messages.inc.php:352 msgid "Create PHP Code" msgstr "Skapa PHP-kod" -#: libraries/common.lib.php:1232 server_status.php:451 +#: libraries/common.lib.php:1225 server_status.php:451 #: setup/lib/messages.inc.php:351 msgid "Refresh" msgstr "Uppdatera" -#: libraries/common.lib.php:1241 +#: libraries/common.lib.php:1234 msgid "Skip Validate SQL" msgstr "Utan SQL-validering" -#: libraries/common.lib.php:1244 setup/lib/messages.inc.php:353 +#: libraries/common.lib.php:1237 setup/lib/messages.inc.php:353 msgid "Validate SQL" msgstr "Validera SQL-kod" -#: libraries/common.lib.php:1283 +#: libraries/common.lib.php:1287 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1285 +#: libraries/common.lib.php:1289 #, fuzzy #| msgid "Engines" msgid "Inline" msgstr "Motorer" -#: libraries/common.lib.php:1339 libraries/common.lib.php:1354 +#: libraries/common.lib.php:1343 libraries/common.lib.php:1358 msgid "Profiling" msgstr "Under produktion" -#: libraries/common.lib.php:1358 libraries/tbl_triggers.lib.php:27 +#: libraries/common.lib.php:1362 libraries/tbl_triggers.lib.php:27 #: server_processlist.php:57 msgid "Time" msgstr "Tid" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "B" msgstr "bytes" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "KiB" msgstr "KiB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "MiB" msgstr "MiB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "GiB" msgstr "GiB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "TiB" msgstr "TiB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "PiB" msgstr "PiB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "EiB" msgstr "EiB" #. l10n: Thousands separator -#: libraries/common.lib.php:1424 +#: libraries/common.lib.php:1428 msgid "," msgstr " " #. l10n: Decimal separator -#: libraries/common.lib.php:1426 +#: libraries/common.lib.php:1430 msgid "." msgstr "," #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1603 +#: libraries/common.lib.php:1607 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y kl %H:%M" -#: libraries/common.lib.php:1909 +#: libraries/common.lib.php:1913 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dagar, %s timmar, %s minuter och %s sekunder" -#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 -#: libraries/display_tbl.lib.php:289 server_status.php:718 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 +#: libraries/display_tbl.lib.php:288 server_status.php:718 msgid "Begin" msgstr "Början" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 -#: libraries/display_tbl.lib.php:290 server_binlog.php:154 +#: libraries/common.lib.php:2328 libraries/common.lib.php:2331 +#: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "Föregående" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 -#: libraries/display_tbl.lib.php:352 +#: libraries/common.lib.php:2359 libraries/common.lib.php:2362 +#: libraries/display_tbl.lib.php:351 msgid "End" msgstr "Slutet" -#: libraries/common.lib.php:2429 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "Hoppa till databas "%s"." -#: libraries/common.lib.php:2448 +#: libraries/common.lib.php:2453 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Funktionaliteten för %s påverkas av en känd bugg, se %s" -#: libraries/common.lib.php:2828 libraries/common.lib.php:2835 -#: libraries/db_links.inc.php:67 libraries/export/sql.php:24 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 +#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 -#: libraries/tbl_links.inc.php:59 querywindow.php:89 test/theme.php:96 +#: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2837 libraries/db_links.inc.php:103 -#: libraries/tbl_links.inc.php:94 libraries/tbl_links.inc.php:116 -#: view_operations.php:88 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: view_operations.php:87 msgid "Operations" msgstr "Operationer" -#: libraries/core.lib.php:282 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1917,38 +1897,38 @@ msgstr "Händelser" msgid "Name" msgstr "Namn" -#: libraries/db_links.inc.php:44 +#: libraries/db_links.inc.php:43 #, php-format msgid "Database %s has been dropped." msgstr "Databasen %s har tagits bort." -#: libraries/db_links.inc.php:56 libraries/db_links.inc.php:57 -#: libraries/db_links.inc.php:58 +#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 +#: libraries/db_links.inc.php:57 msgid "Database seems to be empty!" msgstr "Databasen verkar vara tom!" -#: libraries/db_links.inc.php:80 libraries/relation.lib.php:142 -#: libraries/tbl_links.inc.php:68 +#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:85 +#: libraries/db_links.inc.php:84 msgid "Query" msgstr "Skapa fråga" -#: libraries/db_links.inc.php:90 libraries/relation.lib.php:138 +#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 msgid "Designer" msgstr "Designer" -#: libraries/db_links.inc.php:97 libraries/server_links.inc.php:87 -#: libraries/tbl_links.inc.php:90 pmd_pdf.php:83 pmd_pdf.php:109 +#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importera" -#: libraries/db_links.inc.php:110 libraries/server_links.inc.php:65 -#: server_privileges.php:111 server_privileges.php:1714 -#: server_privileges.php:2063 test/theme.php:116 +#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: server_privileges.php:110 server_privileges.php:1718 +#: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" msgstr "Privilegier" @@ -1960,14 +1940,14 @@ msgstr "Rutiner" msgid "Return type" msgstr "Returtyp" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1847 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1806 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "Kan vara ungefärligt. Se FAQ 3.11" -#: libraries/db_structure.lib.php:60 server_databases.php:141 -#: tbl_printview.php:334 tbl_structure.php:681 +#: libraries/db_structure.lib.php:60 server_databases.php:139 +#: tbl_printview.php:333 tbl_structure.php:679 msgid "Overhead" msgstr "Outnyttjat" @@ -1984,7 +1964,7 @@ msgstr "Servern svarar inte" 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:358 tbl_structure.php:607 +#: libraries/dbi/mysql.dbi.lib.php:358 tbl_structure.php:605 msgid "Details..." msgstr "Detaljer..." @@ -1994,22 +1974,22 @@ msgid "Change password" msgstr "Byt lösenord" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:807 +#: libraries/replication_gui.lib.php:347 server_privileges.php:806 msgid "No Password" msgstr "Inget lösenord" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1530 server_synchronize.php:1174 +#: libraries/replication_gui.lib.php:351 server_privileges.php:795 +#: server_privileges.php:799 server_privileges.php:810 +#: server_privileges.php:1534 server_synchronize.php:1173 msgid "Password" msgstr "Lösenord" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:815 server_privileges.php:818 +#: server_privileges.php:814 server_privileges.php:817 msgid "Re-type" msgstr "Skriv igen" @@ -2032,8 +2012,8 @@ msgstr "Skapa ny databas" msgid "Create" msgstr "Skapa" -#: libraries/display_create_database.lib.php:39 server_privileges.php:113 -#: server_privileges.php:1419 server_replication.php:34 +#: libraries/display_create_database.lib.php:39 server_privileges.php:112 +#: server_privileges.php:1423 server_replication.php:33 msgid "No Privileges" msgstr "Inga privilegier" @@ -2054,50 +2034,50 @@ msgstr "Skapa ny tabell i databas %s" msgid "Number of columns" msgstr "Antal fält" -#: libraries/display_export.lib.php:41 +#: libraries/display_export.lib.php:35 msgid "Could not load export plugins, please check your installation!" msgstr "Kunde inte ladda export-tillägg. Kontrollera din installation." -#: libraries/display_export.lib.php:106 +#: libraries/display_export.lib.php:100 #, fuzzy, php-format #| msgid "Dump %s row(s) starting at record # %s" msgid "Dump %s row(s) starting at row # %s" msgstr "Visa %s rader med början på rad %s." -#: libraries/display_export.lib.php:114 +#: libraries/display_export.lib.php:108 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:124 setup/lib/messages.inc.php:79 +#: libraries/display_export.lib.php:118 setup/lib/messages.inc.php:79 msgid "Save as file" msgstr "Spara som fil" -#: libraries/display_export.lib.php:133 +#: libraries/display_export.lib.php:127 #, php-format msgid "Save on server in %s directory" msgstr "Spara på servern i katalogen %s" -#: libraries/display_export.lib.php:141 setup/lib/messages.inc.php:87 +#: libraries/display_export.lib.php:135 setup/lib/messages.inc.php:87 msgid "Overwrite existing file(s)" msgstr "Skriv över befintlig fil(er)" -#: libraries/display_export.lib.php:147 +#: libraries/display_export.lib.php:141 msgid "File name template" msgstr "Mall för filnamn" -#: libraries/display_export.lib.php:151 +#: libraries/display_export.lib.php:145 msgid "server name" msgstr "servernamn" -#: libraries/display_export.lib.php:154 +#: libraries/display_export.lib.php:148 msgid "database name" msgstr "databasnamn" -#: libraries/display_export.lib.php:157 +#: libraries/display_export.lib.php:151 msgid "table name" msgstr "tabellnamn" -#: libraries/display_export.lib.php:161 +#: libraries/display_export.lib.php:155 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2108,39 +2088,39 @@ msgstr "" "tidsformatering. Dessutom kommer följande omvandlingar att ske: %3$s. Övrig " "text behålls som den är." -#: libraries/display_export.lib.php:202 +#: libraries/display_export.lib.php:196 msgid "remember template" msgstr "kom ihåg mall" -#: libraries/display_export.lib.php:210 libraries/display_import.lib.php:177 +#: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 #: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 msgid "Character set of the file:" msgstr "Filens teckenuppsättning:" -#: libraries/display_export.lib.php:235 setup/lib/messages.inc.php:81 +#: libraries/display_export.lib.php:229 setup/lib/messages.inc.php:81 msgid "Compression" msgstr "Komprimering" -#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:196 -#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:529 -#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:574 -#: server_privileges.php:1867 server_processlist.php:74 +#: libraries/display_export.lib.php:234 libraries/display_import.lib.php:196 +#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:528 +#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:573 +#: server_privileges.php:1871 server_processlist.php:74 msgid "None" msgstr "Inget" -#: libraries/display_export.lib.php:247 +#: libraries/display_export.lib.php:241 msgid "\"zipped\"" msgstr "\"zippad\"" -#: libraries/display_export.lib.php:253 +#: libraries/display_export.lib.php:247 msgid "\"gzipped\"" msgstr "\"gzippad\"" -#: libraries/display_export.lib.php:259 +#: libraries/display_export.lib.php:253 msgid "\"bzipped\"" msgstr "\"bzippad\"" -#: libraries/display_export.lib.php:274 libraries/export/sql.php:42 +#: libraries/display_export.lib.php:268 libraries/export/sql.php:42 #: libraries/import/sql.php:31 msgid "SQL compatibility mode" msgstr "SQL-kompatibilitet" @@ -2180,12 +2160,12 @@ msgid "File uploads are not allowed on this server." msgstr "Filuppladdningar är inte tillåtna på denna server." #: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 -#: tbl_change.php:1024 +#: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "Katalogen som du konfigurerat för uppladdning kan inte nås" #: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 -#: tbl_change.php:1027 +#: tbl_change.php:925 msgid "web server upload directory" msgstr "Uppladdningskatalog på webbserver" @@ -2271,43 +2251,43 @@ msgstr "Pappersstorlek" msgid "Language" msgstr "Språk" -#: libraries/display_tbl.lib.php:303 +#: libraries/display_tbl.lib.php:302 #, php-format msgid "%d is not valid row number." msgstr "%d är inte ett giltigt radnummer." -#: libraries/display_tbl.lib.php:309 +#: libraries/display_tbl.lib.php:308 #, fuzzy #| msgid "row(s) starting from record #" msgid "row(s) starting from row #" msgstr "rader med början från" -#: libraries/display_tbl.lib.php:315 +#: libraries/display_tbl.lib.php:314 msgid "horizontal" msgstr "vågrätt" -#: libraries/display_tbl.lib.php:316 +#: libraries/display_tbl.lib.php:315 msgid "horizontal (rotated headers)" msgstr "vågrätt (roterade rubriker)" -#: libraries/display_tbl.lib.php:317 +#: libraries/display_tbl.lib.php:316 msgid "vertical" msgstr "lodrätt" -#: libraries/display_tbl.lib.php:323 +#: libraries/display_tbl.lib.php:322 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "i %s format och upprepa rubrikerna efter %s celler" -#: libraries/display_tbl.lib.php:345 +#: libraries/display_tbl.lib.php:344 msgid "This operation could take a long time. Proceed anyway?" msgstr "Denna operation kan ta lång tid. Försätt ändå?" -#: libraries/display_tbl.lib.php:511 +#: libraries/display_tbl.lib.php:510 msgid "Sort by key" msgstr "Sortera efter nyckel" -#: libraries/display_tbl.lib.php:554 libraries/export/codegen.php:38 +#: libraries/display_tbl.lib.php:553 libraries/export/codegen.php:38 #: libraries/export/csv.php:29 libraries/export/excel.php:34 #: libraries/export/htmlword.php:28 libraries/export/latex.php:32 #: libraries/export/mediawiki.php:21 libraries/export/ods.php:26 @@ -2317,100 +2297,100 @@ msgstr "Sortera efter nyckel" #: libraries/export/xlsx.php:26 libraries/export/xml.php:23 #: libraries/export/yaml.php:27 libraries/import.lib.php:1114 #: libraries/import.lib.php:1136 libraries/import/csv.php:31 -#: libraries/import/docsql.php:33 libraries/import/ldi.php:46 +#: libraries/import/docsql.php:32 libraries/import/ldi.php:46 #: libraries/import/ods.php:30 libraries/import/sql.php:19 #: libraries/import/xls.php:25 libraries/import/xlsx.php:25 -#: libraries/import/xml.php:25 tbl_select.php:264 tbl_structure.php:752 +#: libraries/import/xml.php:25 tbl_select.php:263 tbl_structure.php:750 msgid "Options" msgstr "Alternativ" -#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:569 +#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:568 msgid "Partial Texts" msgstr "Avkortade texter" -#: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:573 +#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:572 msgid "Full Texts" msgstr "Fullständiga texter" -#: libraries/display_tbl.lib.php:586 +#: libraries/display_tbl.lib.php:585 msgid "Relational key" msgstr "Relationsnyckel" -#: libraries/display_tbl.lib.php:587 +#: libraries/display_tbl.lib.php:586 #, fuzzy #| msgid "Relational display field" msgid "Relational display column" msgstr "Visningsfält för relation" -#: libraries/display_tbl.lib.php:594 +#: libraries/display_tbl.lib.php:593 msgid "Show binary contents" msgstr "Visa binärt innehåll" -#: libraries/display_tbl.lib.php:596 +#: libraries/display_tbl.lib.php:595 msgid "Show BLOB contents" msgstr "Visa BLOB-innehåll" -#: libraries/display_tbl.lib.php:598 +#: libraries/display_tbl.lib.php:597 #, fuzzy msgid "Show binary contents as HEX" msgstr "Visa binärt innehåll" -#: libraries/display_tbl.lib.php:606 pmd_general.php:140 tbl_change.php:312 -#: tbl_change.php:318 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:307 +#: tbl_change.php:313 msgid "Hide" msgstr "Dölj" -#: libraries/display_tbl.lib.php:606 libraries/relation.lib.php:122 -#: libraries/tbl_properties.inc.php:143 transformation_overview.php:46 +#: libraries/display_tbl.lib.php:605 libraries/relation.lib.php:117 +#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46 msgid "Browser transformation" msgstr "Webbläsaromvandling" -#: libraries/display_tbl.lib.php:1125 libraries/display_tbl.lib.php:1129 -#: libraries/display_tbl.lib.php:1131 +#: libraries/display_tbl.lib.php:1124 libraries/display_tbl.lib.php:1128 +#: libraries/display_tbl.lib.php:1130 msgid "Execute bookmarked query" msgstr "Utför bokmärkt fråga" -#: libraries/display_tbl.lib.php:1144 libraries/display_tbl.lib.php:1156 +#: libraries/display_tbl.lib.php:1143 libraries/display_tbl.lib.php:1155 msgid "The row has been deleted" msgstr "Raden har raderats" -#: libraries/display_tbl.lib.php:1183 libraries/display_tbl.lib.php:2055 +#: libraries/display_tbl.lib.php:1182 libraries/display_tbl.lib.php:2014 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "Döda" -#: libraries/display_tbl.lib.php:1933 +#: libraries/display_tbl.lib.php:1892 msgid "in query" msgstr "i fråga" -#: libraries/display_tbl.lib.php:1951 +#: libraries/display_tbl.lib.php:1910 msgid "Showing rows" msgstr "Visar rader " -#: libraries/display_tbl.lib.php:1961 +#: libraries/display_tbl.lib.php:1920 msgid "total" msgstr "totalt" -#: libraries/display_tbl.lib.php:1969 sql.php:523 +#: libraries/display_tbl.lib.php:1928 sql.php:522 #, php-format msgid "Query took %01.4f sec" msgstr "Frågan tog %01.4f sek" -#: libraries/display_tbl.lib.php:2088 libraries/mult_submits.inc.php:112 -#: querywindow.php:115 querywindow.php:119 querywindow.php:122 -#: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:469 +#: libraries/display_tbl.lib.php:2047 libraries/mult_submits.inc.php:112 +#: querywindow.php:114 querywindow.php:118 querywindow.php:121 +#: tbl_structure.php:23 tbl_structure.php:148 tbl_structure.php:467 msgid "Change" msgstr "Ändra" -#: libraries/display_tbl.lib.php:2158 +#: libraries/display_tbl.lib.php:2117 msgid "Query results operations" msgstr "Operationer för frågeresultat" -#: libraries/display_tbl.lib.php:2186 +#: libraries/display_tbl.lib.php:2145 msgid "Print view (with full texts)" msgstr "Utskriftsvänlig visning (med fullständiga texter)" -#: libraries/display_tbl.lib.php:2359 +#: libraries/display_tbl.lib.php:2318 msgid "Link not found" msgstr "Länk ej funnen" @@ -2466,9 +2446,9 @@ msgstr "InnoDB-status" msgid "Buffer Pool Usage" msgstr "Buffertanvändning" -#: libraries/engines/innodb.lib.php:168 server_databases.php:136 -#: server_databases.php:304 server_status.php:524 server_status.php:585 -#: server_status.php:606 tbl_printview.php:349 tbl_structure.php:695 +#: libraries/engines/innodb.lib.php:168 server_databases.php:134 +#: server_databases.php:302 server_status.php:524 server_status.php:585 +#: server_status.php:606 tbl_printview.php:348 tbl_structure.php:693 msgid "Total" msgstr "Totalt" @@ -2604,6 +2584,88 @@ msgstr "" "Bufferten som allokeras vid sortering av MyISAM-index under REPAIR TABLE " "eller vid skapande av index med CREATE INDEX eller ALTER TABLE." +#: libraries/engines/pbms.lib.php:31 +#, fuzzy +#| msgid "Garbage threshold" +msgid "Garbage Threshold" +msgstr "Gräns för skräp" + +#: libraries/engines/pbms.lib.php:32 +#, fuzzy +#| msgid "" +#| "The percentage of garbage in a data log file before it is compacted. This " +#| "is a value between 1 and 99. The default is 50." +msgid "The percentage of garbage in a repository file before it is compacted." +msgstr "" +"Andelen skräp i en dataloggfil innan den komprimeras. Detta är ett värde " +"mellan 1 och 99. Standardvärdet är 50." + +#: libraries/engines/pbms.lib.php:36 libraries/replication_gui.lib.php:69 +#: server_synchronize.php:1161 +#, fuzzy +msgid "Port" +msgstr "Sortering" + +#: libraries/engines/pbms.lib.php:37 +msgid "" +"The port for the PBMS stream-based communications. Setting this value to 0 " +"will disable HTTP communication with the daemon." +msgstr "" + +#: libraries/engines/pbms.lib.php:41 +msgid "Repository Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:42 +msgid "" +"The maximum size of a BLOB repository file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:46 +msgid "Temp Blob Timeout" +msgstr "" + +#: libraries/engines/pbms.lib.php:47 +msgid "" +"The timeout, in seconds, for temporary BLOBs. Uploaded BLOB data is removed " +"after this time, unless they are referenced by a record in the database." +msgstr "" + +#: libraries/engines/pbms.lib.php:51 +#, fuzzy +#| msgid "Log file threshold" +msgid "Temp Log Threshold" +msgstr "Gräns för loggfil" + +#: libraries/engines/pbms.lib.php:52 +msgid "" +"The maximum size of a temporary BLOB log file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:56 +msgid "Max Keep Alive" +msgstr "" + +#: libraries/engines/pbms.lib.php:57 +msgid "" +"The timeout for inactive connection with the keep-alive flag set. After this " +"time the connection will be closed. The time-out is in milliseconds (1/1000)." +msgstr "" + +#: libraries/engines/pbms.lib.php:61 +msgid "Metadata Headers" +msgstr "" + +#: libraries/engines/pbms.lib.php:62 +msgid "" +"A \":\" delimited list of metadata headers to be used to initialize the " +"pbms_metadata_header table when a database is created." +msgstr "" + #: libraries/engines/pbxt.lib.php:22 msgid "Index cache size" msgstr "Cachestorlek för index" @@ -2752,7 +2814,7 @@ msgstr "" "bort. Annars döps de om och ges det näst högsta numret." #: libraries/export/codegen.php:36 setup/lib/messages.inc.php:85 -#: tbl_printview.php:374 tbl_structure.php:736 +#: tbl_printview.php:373 tbl_structure.php:734 msgid "Format" msgstr "Format" @@ -2825,9 +2887,9 @@ msgstr "Microsoft Word 2000" #: libraries/export/htmlword.php:23 libraries/export/latex.php:59 #: libraries/export/latex.php:205 libraries/export/odt.php:47 #: libraries/export/sql.php:105 libraries/export/sql.php:865 -#: libraries/export/texytext.php:27 server_databases.php:126 -#: server_privileges.php:576 server_replication.php:315 tbl_printview.php:315 -#: tbl_structure.php:664 +#: libraries/export/texytext.php:27 server_databases.php:124 +#: server_privileges.php:575 server_replication.php:314 tbl_printview.php:314 +#: tbl_structure.php:662 msgid "Data" msgstr "Data" @@ -2842,7 +2904,6 @@ msgid "Table structure for table" msgstr "Struktur för tabell" #: libraries/export/latex.php:13 -#| msgid "Content of table __TABLE__" msgid "Content of table @TABLE@" msgstr "Innehåll i tabell @TABLE@" @@ -2851,7 +2912,6 @@ msgid "(continued)" msgstr "(fortsättning)" #: libraries/export/latex.php:15 -#| msgid "Structure of table __TABLE__" msgid "Structure of table @TABLE@" msgstr "Struktur för tabell @TABLE@" @@ -2876,13 +2936,13 @@ msgid "Label key" msgstr "Etikett" #: libraries/export/latex.php:46 libraries/export/odt.php:34 -#: libraries/export/sql.php:90 tbl_relation.php:398 +#: libraries/export/sql.php:90 tbl_relation.php:396 msgid "Relations" msgstr "Relationer" #: libraries/export/latex.php:52 libraries/export/odt.php:40 #: libraries/export/odt.php:317 libraries/export/sql.php:94 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "MIME-typ" @@ -2890,10 +2950,10 @@ msgstr "MIME-typ" #: libraries/export/xml.php:101 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1529 server_privileges.php:2061 -#: server_processlist.php:54 server_synchronize.php:1158 +#: libraries/replication_gui.lib.php:331 server_privileges.php:730 +#: server_privileges.php:733 server_privileges.php:789 +#: server_privileges.php:1533 server_privileges.php:2065 +#: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "Värd" @@ -3087,8 +3147,8 @@ msgstr "Standard för export" msgid "Export contents" msgstr "Standard för export" -#: libraries/footer.inc.php:182 libraries/footer.inc.php:193 -#: libraries/footer.inc.php:196 +#: libraries/footer.inc.php:180 libraries/footer.inc.php:191 +#: libraries/footer.inc.php:194 msgid "Open new phpMyAdmin window" msgstr "Öppna nytt phpMyAdmin-fönster" @@ -3105,7 +3165,7 @@ msgstr "SQL-resultat" msgid "Generated by" msgstr "Genererad av" -#: libraries/import.lib.php:151 sql.php:519 tbl_change.php:180 +#: libraries/import.lib.php:151 sql.php:518 tbl_change.php:175 #: 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)." @@ -3164,7 +3224,7 @@ msgstr "Ignorera dubblerade rader" msgid "Column names in first row" msgstr "" -#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:501 +#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:500 #: view_create.php:147 msgid "Column names" msgstr "Kolumn-namn" @@ -3191,12 +3251,12 @@ msgstr "Ogiltigt format i CSV-indata på rad %d." msgid "Invalid column count in CSV input on line %d." msgstr "Ogiltigt antal fält i CSV-indata på rad %d." -#: libraries/import/docsql.php:28 +#: libraries/import/docsql.php:27 msgid "DocSQL" msgstr "DocSQL" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 -#: server_synchronize.php:427 server_synchronize.php:870 +#: libraries/import/docsql.php:30 libraries/tbl_properties.inc.php:616 +#: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "Tabellnamn" @@ -3254,26 +3314,26 @@ msgstr "Inget" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:512 -#: tbl_structure.php:28 tbl_structure.php:152 tbl_structure.php:156 -#: tbl_structure.php:472 +#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:511 +#: tbl_structure.php:27 tbl_structure.php:151 tbl_structure.php:155 +#: tbl_structure.php:470 msgid "Primary" msgstr "Primär" #: libraries/mult_submits.inc.php:97 libraries/tbl_properties.inc.php:115 -#: libraries/tbl_properties.inc.php:524 tbl_printview.php:324 -#: tbl_structure.php:30 tbl_structure.php:153 tbl_structure.php:157 -#: tbl_structure.php:474 tbl_structure.php:672 +#: libraries/tbl_properties.inc.php:523 tbl_printview.php:323 +#: tbl_structure.php:29 tbl_structure.php:152 tbl_structure.php:156 +#: tbl_structure.php:472 tbl_structure.php:670 msgid "Index" msgstr "Index" -#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:530 -#: tbl_structure.php:34 tbl_structure.php:155 tbl_structure.php:159 -#: tbl_structure.php:477 +#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:529 +#: tbl_structure.php:33 tbl_structure.php:154 tbl_structure.php:158 +#: tbl_structure.php:475 msgid "Fulltext" msgstr "Heltext" -#: libraries/mult_submits.inc.php:434 tbl_replace.php:330 +#: libraries/mult_submits.inc.php:433 tbl_replace.php:330 msgid "No change" msgstr "Ingen förändring" @@ -3281,190 +3341,190 @@ msgstr "Ingen förändring" msgid "Charset" msgstr "Teckenuppsättning" -#: libraries/mysql_charsets.lib.php:210 libraries/mysql_charsets.lib.php:411 -#: tbl_change.php:515 +#: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 +#: tbl_change.php:510 msgid "Binary" msgstr "Binär" -#: libraries/mysql_charsets.lib.php:222 +#: libraries/mysql_charsets.lib.php:214 msgid "Bulgarian" msgstr "Bulgarisk" -#: libraries/mysql_charsets.lib.php:226 libraries/mysql_charsets.lib.php:351 +#: libraries/mysql_charsets.lib.php:218 libraries/mysql_charsets.lib.php:343 msgid "Simplified Chinese" msgstr "Förenklad kinesiska" -#: libraries/mysql_charsets.lib.php:228 libraries/mysql_charsets.lib.php:371 +#: libraries/mysql_charsets.lib.php:220 libraries/mysql_charsets.lib.php:363 msgid "Traditional Chinese" msgstr "Traditionell kinesiska" -#: libraries/mysql_charsets.lib.php:232 libraries/mysql_charsets.lib.php:418 +#: libraries/mysql_charsets.lib.php:224 libraries/mysql_charsets.lib.php:410 msgid "case-insensitive" msgstr "skiftlägesokänsligt" -#: libraries/mysql_charsets.lib.php:235 libraries/mysql_charsets.lib.php:420 +#: libraries/mysql_charsets.lib.php:227 libraries/mysql_charsets.lib.php:412 msgid "case-sensitive" msgstr "skiftlägeskänsligt" -#: libraries/mysql_charsets.lib.php:238 +#: libraries/mysql_charsets.lib.php:230 msgid "Croatian" msgstr "Kroatisk" -#: libraries/mysql_charsets.lib.php:241 +#: libraries/mysql_charsets.lib.php:233 msgid "Czech" msgstr "Tjeckisk" -#: libraries/mysql_charsets.lib.php:244 +#: libraries/mysql_charsets.lib.php:236 msgid "Danish" msgstr "Dansk" -#: libraries/mysql_charsets.lib.php:247 +#: libraries/mysql_charsets.lib.php:239 msgid "English" msgstr "Engelsk" -#: libraries/mysql_charsets.lib.php:250 +#: libraries/mysql_charsets.lib.php:242 msgid "Esperanto" msgstr "Esperanto" -#: libraries/mysql_charsets.lib.php:253 +#: libraries/mysql_charsets.lib.php:245 msgid "Estonian" msgstr "Estnisk" -#: libraries/mysql_charsets.lib.php:256 libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:248 libraries/mysql_charsets.lib.php:251 msgid "German" msgstr "Tysk" -#: libraries/mysql_charsets.lib.php:256 +#: libraries/mysql_charsets.lib.php:248 msgid "dictionary" msgstr "lexikon" -#: libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:251 msgid "phone book" msgstr "telefonbok" -#: libraries/mysql_charsets.lib.php:262 +#: libraries/mysql_charsets.lib.php:254 msgid "Hungarian" msgstr "Ungersk" -#: libraries/mysql_charsets.lib.php:265 +#: libraries/mysql_charsets.lib.php:257 msgid "Icelandic" msgstr "Isländska" -#: libraries/mysql_charsets.lib.php:268 libraries/mysql_charsets.lib.php:358 +#: libraries/mysql_charsets.lib.php:260 libraries/mysql_charsets.lib.php:350 msgid "Japanese" msgstr "Japansk" -#: libraries/mysql_charsets.lib.php:271 +#: libraries/mysql_charsets.lib.php:263 msgid "Latvian" msgstr "Lettiska" -#: libraries/mysql_charsets.lib.php:274 +#: libraries/mysql_charsets.lib.php:266 msgid "Lithuanian" msgstr "Litauisk" -#: libraries/mysql_charsets.lib.php:277 libraries/mysql_charsets.lib.php:380 +#: libraries/mysql_charsets.lib.php:269 libraries/mysql_charsets.lib.php:372 msgid "Korean" msgstr "Koreansk" -#: libraries/mysql_charsets.lib.php:280 +#: libraries/mysql_charsets.lib.php:272 msgid "Persian" msgstr "Persiska" -#: libraries/mysql_charsets.lib.php:283 +#: libraries/mysql_charsets.lib.php:275 msgid "Polish" msgstr "Polska" -#: libraries/mysql_charsets.lib.php:286 libraries/mysql_charsets.lib.php:334 +#: libraries/mysql_charsets.lib.php:278 libraries/mysql_charsets.lib.php:326 msgid "West European" msgstr "Västeuropeisk" -#: libraries/mysql_charsets.lib.php:289 +#: libraries/mysql_charsets.lib.php:281 msgid "Romanian" msgstr "Rumänska" -#: libraries/mysql_charsets.lib.php:292 +#: libraries/mysql_charsets.lib.php:284 msgid "Slovak" msgstr "Slovakiska" -#: libraries/mysql_charsets.lib.php:295 +#: libraries/mysql_charsets.lib.php:287 msgid "Slovenian" msgstr "Slovenska" -#: libraries/mysql_charsets.lib.php:298 +#: libraries/mysql_charsets.lib.php:290 msgid "Spanish" msgstr "Spanska" -#: libraries/mysql_charsets.lib.php:301 +#: libraries/mysql_charsets.lib.php:293 msgid "Traditional Spanish" msgstr "Traditionell Spanska" -#: libraries/mysql_charsets.lib.php:304 libraries/mysql_charsets.lib.php:401 +#: libraries/mysql_charsets.lib.php:296 libraries/mysql_charsets.lib.php:393 msgid "Swedish" msgstr "Svensk" -#: libraries/mysql_charsets.lib.php:307 libraries/mysql_charsets.lib.php:404 +#: libraries/mysql_charsets.lib.php:299 libraries/mysql_charsets.lib.php:396 msgid "Thai" msgstr "Thailändsk" -#: libraries/mysql_charsets.lib.php:310 libraries/mysql_charsets.lib.php:398 +#: libraries/mysql_charsets.lib.php:302 libraries/mysql_charsets.lib.php:390 msgid "Turkish" msgstr "Turkisk" -#: libraries/mysql_charsets.lib.php:313 libraries/mysql_charsets.lib.php:395 +#: libraries/mysql_charsets.lib.php:305 libraries/mysql_charsets.lib.php:387 msgid "Ukrainian" msgstr "Ukrainsk" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 msgid "Unicode" msgstr "Unicode" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 -#: libraries/mysql_charsets.lib.php:334 libraries/mysql_charsets.lib.php:341 -#: libraries/mysql_charsets.lib.php:363 libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 +#: libraries/mysql_charsets.lib.php:326 libraries/mysql_charsets.lib.php:333 +#: libraries/mysql_charsets.lib.php:355 libraries/mysql_charsets.lib.php:366 msgid "multilingual" msgstr "flerspråkig" -#: libraries/mysql_charsets.lib.php:341 +#: libraries/mysql_charsets.lib.php:333 msgid "Central European" msgstr "Centraleuropeisk" -#: libraries/mysql_charsets.lib.php:346 +#: libraries/mysql_charsets.lib.php:338 msgid "Russian" msgstr "Rysk" -#: libraries/mysql_charsets.lib.php:363 +#: libraries/mysql_charsets.lib.php:355 msgid "Baltic" msgstr "Baltisk" -#: libraries/mysql_charsets.lib.php:368 +#: libraries/mysql_charsets.lib.php:360 msgid "Armenian" msgstr "Armenisk" -#: libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:366 msgid "Cyrillic" msgstr "Kyrillisk" -#: libraries/mysql_charsets.lib.php:377 +#: libraries/mysql_charsets.lib.php:369 msgid "Arabic" msgstr "Arabisk" -#: libraries/mysql_charsets.lib.php:383 +#: libraries/mysql_charsets.lib.php:375 msgid "Hebrew" msgstr "Hebreisk" -#: libraries/mysql_charsets.lib.php:386 +#: libraries/mysql_charsets.lib.php:378 msgid "Georgian" msgstr "Georgisk" -#: libraries/mysql_charsets.lib.php:389 +#: libraries/mysql_charsets.lib.php:381 msgid "Greek" msgstr "Grekisk" -#: libraries/mysql_charsets.lib.php:392 +#: libraries/mysql_charsets.lib.php:384 msgid "Czech-Slovak" msgstr "Tjeckisk-Slovakisk" -#: libraries/mysql_charsets.lib.php:407 libraries/mysql_charsets.lib.php:414 +#: libraries/mysql_charsets.lib.php:399 libraries/mysql_charsets.lib.php:406 msgid "unknown" msgstr "okänd" @@ -3490,67 +3550,67 @@ msgstr "Frågefönster" msgid "This format has no options" msgstr "Detta format har inga alternativ" -#: libraries/relation.lib.php:82 +#: libraries/relation.lib.php:77 msgid "not OK" msgstr "Inte OK" -#: libraries/relation.lib.php:86 pmd_general.php:339 +#: libraries/relation.lib.php:81 pmd_general.php:339 msgid "OK" msgstr "OK" -#: libraries/relation.lib.php:87 +#: libraries/relation.lib.php:82 msgid "Enabled" msgstr "Aktiverat" -#: libraries/relation.lib.php:110 +#: libraries/relation.lib.php:105 msgid "Display Features" msgstr "Visningsfunktionaliteter" -#: libraries/relation.lib.php:116 +#: libraries/relation.lib.php:111 msgid "Creation of PDFs" msgstr "Skapande av PDF-sidor" -#: libraries/relation.lib.php:120 +#: libraries/relation.lib.php:115 msgid "Displaying Column Comments" msgstr "Visning av kolumnkommentarer" -#: libraries/relation.lib.php:125 +#: libraries/relation.lib.php:120 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "Se dokumentationen för uppdatering av din tabell column_comments" -#: libraries/relation.lib.php:130 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 msgid "Bookmarked SQL query" msgstr "Bokmärkt SQL-fråga" -#: libraries/relation.lib.php:134 querywindow.php:99 querywindow.php:207 +#: libraries/relation.lib.php:129 querywindow.php:98 querywindow.php:205 msgid "SQL history" msgstr "SQL-historik" -#: libraries/relation.lib.php:146 +#: libraries/relation.lib.php:141 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:148 +#: libraries/relation.lib.php:143 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" -#: libraries/relation.lib.php:149 +#: libraries/relation.lib.php:144 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:150 +#: libraries/relation.lib.php:145 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:151 +#: libraries/relation.lib.php:146 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1158 +#: libraries/relation.lib.php:1153 msgid "no description" msgstr "Ingen beskrivning" @@ -3559,7 +3619,7 @@ msgstr "Ingen beskrivning" msgid "Slave configuration" msgstr "Serverkonfiguration" -#: libraries/replication_gui.lib.php:53 server_replication.php:346 +#: libraries/replication_gui.lib.php:53 server_replication.php:345 msgid "Change or reconfigure master server" msgstr "" @@ -3571,17 +3631,12 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:711 -#: server_privileges.php:714 server_privileges.php:721 -#: server_synchronize.php:1170 +#: libraries/replication_gui.lib.php:261 server_privileges.php:710 +#: server_privileges.php:713 server_privileges.php:720 +#: server_synchronize.php:1169 msgid "User name" msgstr "Användarnamn" -#: libraries/replication_gui.lib.php:69 server_synchronize.php:1162 -#, fuzzy -msgid "Port" -msgstr "Sortering" - #: libraries/replication_gui.lib.php:105 msgid "Master status" msgstr "Master-status" @@ -3596,8 +3651,8 @@ msgid "Variable" msgstr "Variabel" #: libraries/replication_gui.lib.php:117 server_status.php:737 -#: tbl_change.php:322 tbl_printview.php:368 tbl_select.php:137 -#: tbl_structure.php:728 +#: tbl_change.php:317 tbl_printview.php:367 tbl_select.php:136 +#: tbl_structure.php:726 msgid "Value" msgstr "Värde" @@ -3611,38 +3666,38 @@ msgid "" "this list." msgstr "" -#: libraries/replication_gui.lib.php:242 server_replication.php:193 +#: libraries/replication_gui.lib.php:242 server_replication.php:192 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:256 server_privileges.php:716 +#: libraries/replication_gui.lib.php:256 server_privileges.php:715 msgid "Any user" msgstr "Vilken användare som helst" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1920 server_privileges.php:1950 +#: libraries/replication_gui.lib.php:348 server_privileges.php:716 +#: server_privileges.php:783 server_privileges.php:807 +#: server_privileges.php:1924 server_privileges.php:1954 msgid "Use text field" msgstr "Använd textfältet" -#: libraries/replication_gui.lib.php:304 server_privileges.php:764 +#: libraries/replication_gui.lib.php:304 server_privileges.php:763 msgid "Any host" msgstr "Vilken värd som helst" -#: libraries/replication_gui.lib.php:308 server_privileges.php:768 +#: libraries/replication_gui.lib.php:308 server_privileges.php:767 msgid "Local" msgstr "Lokal" -#: libraries/replication_gui.lib.php:314 server_privileges.php:773 +#: libraries/replication_gui.lib.php:314 server_privileges.php:772 msgid "This Host" msgstr "Denna värd" -#: libraries/replication_gui.lib.php:320 server_privileges.php:779 +#: libraries/replication_gui.lib.php:320 server_privileges.php:778 msgid "Use Host Table" msgstr "Använd värdtabell" -#: libraries/replication_gui.lib.php:333 server_privileges.php:792 +#: libraries/replication_gui.lib.php:333 server_privileges.php:791 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3670,8 +3725,8 @@ msgstr "Okänt språk: %1$s." msgid "Servers" msgstr "Servrar" -#: libraries/server_links.inc.php:52 server_engines.php:111 -#: server_engines.php:115 server_status.php:414 test/theme.php:104 +#: libraries/server_links.inc.php:52 server_engines.php:125 +#: server_engines.php:129 server_status.php:414 test/theme.php:104 msgid "Variables" msgstr "Variabler" @@ -3692,12 +3747,12 @@ msgstr "Binär logg" msgid "Processes" msgstr "Processer" -#: libraries/server_links.inc.php:91 server_synchronize.php:1091 -#: server_synchronize.php:1099 +#: libraries/server_links.inc.php:91 server_synchronize.php:1090 +#: server_synchronize.php:1098 msgid "Synchronize" msgstr "" -#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1109 +#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1108 #, fuzzy msgid "Source database" msgstr "Sök i databas" @@ -3717,7 +3772,7 @@ msgstr "Ny server" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1111 +#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1110 #, fuzzy msgid "Target database" msgstr "Sök i databas" @@ -3738,11 +3793,11 @@ msgstr "Kör SQL-fråga/frågor i databasen %s" msgid "Columns" msgstr "Kolumn-namn" -#: libraries/sql_query_form.lib.php:342 sql.php:664 sql.php:665 sql.php:682 +#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "Skapa bokmärke för den här SQL-frågan" -#: libraries/sql_query_form.lib.php:349 sql.php:676 +#: libraries/sql_query_form.lib.php:349 sql.php:669 msgid "Let every user access this bookmark" msgstr "Låt varje användare få tillgång till detta bokmärke" @@ -3838,12 +3893,12 @@ msgstr "" "SQL-validatorn kunde inte initieras. Kontrollera om du har installerat de " "nödvändiga PHP-tilläggen enligt %sdokumentationen%s." -#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:139 -#: libraries/tbl_links.inc.php:140 +#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 +#: libraries/tbl_links.inc.php:139 msgid "Table seems to be empty!" msgstr "Tabellen verkar vara tom!" -#: libraries/tbl_links.inc.php:148 +#: libraries/tbl_links.inc.php:147 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" @@ -3878,12 +3933,12 @@ msgstr "" "För standardvärden, ange endast ett enstaka värde, utan bakåtstreck eller " "citattecken, enligt formatet: a" -#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1263 -#: pdf_schema.php:1284 tbl_printview.php:142 tbl_structure.php:179 +#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1262 +#: pdf_schema.php:1283 tbl_printview.php:141 tbl_structure.php:178 msgid "Attributes" msgstr "Attribut" -#: libraries/tbl_properties.inc.php:136 +#: libraries/tbl_properties.inc.php:135 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -3892,11 +3947,11 @@ msgstr "" "För en lista med tillgängliga omvandlingsparametrar och deras MIME-" "typomvandlingar, klicka på %somvandlingsbeskrivningar%s" -#: libraries/tbl_properties.inc.php:144 +#: libraries/tbl_properties.inc.php:143 msgid "Transformation options" msgstr "Omvandlingsparametrar" -#: libraries/tbl_properties.inc.php:145 +#: libraries/tbl_properties.inc.php:144 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
                            If you ever need to put a backslash (\"\\\") or a single " @@ -3908,18 +3963,18 @@ msgstr "" "enkelcitat (\"'\") i värdena, skriv ett bakåtstreck före tecknet (t.ex. '\\" "\\xyz' eller 'a\\'b')." -#: libraries/tbl_properties.inc.php:392 +#: libraries/tbl_properties.inc.php:391 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "Inget" -#: libraries/tbl_properties.inc.php:393 +#: libraries/tbl_properties.inc.php:392 msgid "As defined:" msgstr "Enligt angivet:" -#: libraries/tbl_properties.inc.php:579 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:578 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
                            Please ask the " @@ -3928,29 +3983,29 @@ msgstr "" "Ingen beskrivning för denna omvandling finns tillgänglig.
                            Vänligen " "fråga upphovsmannen vad %s gör." -#: libraries/tbl_properties.inc.php:725 server_engines.php:57 -#: tbl_operations.php:354 +#: libraries/tbl_properties.inc.php:724 server_engines.php:56 +#: tbl_operations.php:352 msgid "Storage Engine" msgstr "Lagringsmotor" -#: libraries/tbl_properties.inc.php:754 +#: libraries/tbl_properties.inc.php:753 msgid "PARTITION definition" msgstr "Partitionsdefinition" -#: libraries/tbl_properties.inc.php:775 pdf_pages.php:502 +#: libraries/tbl_properties.inc.php:774 pdf_pages.php:501 #: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214 -#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1124 tbl_indexes.php:247 -#: tbl_relation.php:565 +#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1022 tbl_indexes.php:246 +#: tbl_relation.php:563 msgid "Save" msgstr "Spara" -#: libraries/tbl_properties.inc.php:779 tbl_structure.php:541 +#: libraries/tbl_properties.inc.php:778 tbl_structure.php:539 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "Lägg till %s fält" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:535 +#: libraries/tbl_properties.inc.php:782 tbl_structure.php:533 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -4155,8 +4210,8 @@ msgstr "Gränssnitt" msgid "Custom color" msgstr "Anpassad färg" -#: main.php:162 pdf_pages.php:362 setup/lib/FormDisplay.tpl.php:216 -#: tbl_change.php:1173 +#: main.php:162 pdf_pages.php:361 setup/lib/FormDisplay.tpl.php:216 +#: tbl_change.php:1071 msgid "Reset" msgstr "Återställ" @@ -4164,8 +4219,8 @@ msgstr "Återställ" msgid "Protocol version" msgstr "Protokollversion" -#: main.php:188 server_privileges.php:1381 server_privileges.php:1528 -#: server_privileges.php:1642 server_privileges.php:2060 +#: main.php:188 server_privileges.php:1385 server_privileges.php:1532 +#: server_privileges.php:1646 server_privileges.php:2064 #: server_processlist.php:53 msgid "User" msgstr "Användare" @@ -4256,14 +4311,23 @@ msgstr "" "fortfarande i din phpMyAdmin-katalog. Du borde ta bort den när phpMyAdmin " "har konfigurerats." -#: main.php:330 +#: main.php:314 +#, php-format +msgid "" +"The additional features for working with linked tables have been " +"deactivated. To find out why click %shere%s." +msgstr "" +"Den extra funktionaliteten för att hantera länkade tabeller har " +"inaktiverats. %sVisa orsaken%s." + +#: main.php:329 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:345 +#: main.php:344 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -4272,7 +4336,7 @@ msgstr "" "Din PHP MySQL bibliotekversion %s skiljer sig från din MySQL serverversion " "%s. Detta kan orsaka oförutsägbara beteenden." -#: main.php:357 +#: main.php:356 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -4284,68 +4348,68 @@ msgstr "Server körs med Suhosin. Se %sdokumentation%s för möjliga frågor." msgid "Reload navigation frame" msgstr "Anpassa navigeringsram" -#: navigation.php:204 server_databases.php:370 server_synchronize.php:1190 +#: navigation.php:203 server_databases.php:368 server_synchronize.php:1189 msgid "No databases" msgstr "Inga databaser" -#: navigation.php:298 +#: navigation.php:297 msgid "Filter" msgstr "Filter" -#: navigation.php:299 setup/frames/index.inc.php:218 +#: navigation.php:298 setup/frames/index.inc.php:218 #: setup/lib/messages.inc.php:41 msgid "Clear" msgstr "Nollställ" -#: navigation.php:330 navigation.php:331 +#: navigation.php:329 navigation.php:330 #, fuzzy #| msgid "Create table" msgctxt "short form" msgid "Create table" msgstr "Skapa tabell" -#: navigation.php:333 navigation.php:495 +#: navigation.php:332 navigation.php:494 msgid "Please select a database" msgstr "Välj en databas" -#: pdf_pages.php:40 pdf_pages.php:46 pdf_pages.php:52 pdf_pages.php:57 +#: pdf_pages.php:39 pdf_pages.php:45 pdf_pages.php:51 pdf_pages.php:56 #, php-format msgid "%s table not found or not set in %s" msgstr "%s-tabellen ej funnen eller ej angiven i %s" -#: pdf_pages.php:265 +#: pdf_pages.php:264 msgid "Please choose a page to edit" msgstr "Välj en sida att redigera" -#: pdf_pages.php:303 pmd_pdf.php:113 +#: pdf_pages.php:302 pmd_pdf.php:111 msgid "Create a page" msgstr "Skapa en ny sida" -#: pdf_pages.php:309 +#: pdf_pages.php:308 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Sida:" -#: pdf_pages.php:313 +#: pdf_pages.php:312 #, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "Automatisk layout" -#: pdf_pages.php:315 +#: pdf_pages.php:314 msgid "Internal relations" msgstr "Interna relationer" -#: pdf_pages.php:338 +#: pdf_pages.php:337 msgid "Select Tables" msgstr "Välj tabeller" -#: pdf_pages.php:361 +#: pdf_pages.php:360 msgid "Toggle scratchboard" msgstr "Visa/dölj skisstavla" -#: pdf_pages.php:524 +#: pdf_pages.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -4353,37 +4417,37 @@ msgstr "" "Nuvarande sida har referenser till tabeller som inte längre existerar. Vill " "du ta bort dessa referenser?" -#: pdf_schema.php:635 +#: pdf_schema.php:634 #, fuzzy, php-format #| msgid "The \"%s\" table doesn't exist!" msgid "The %s table doesn't exist!" msgstr "Tabellen \"%s\" finns inte!" -#: pdf_schema.php:671 +#: pdf_schema.php:670 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Var god ange koordinaterna för tabellen %s" -#: pdf_schema.php:994 +#: pdf_schema.php:993 #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" msgstr "Schema för databasen \"%s\" - Sidan %s" -#: pdf_schema.php:1012 +#: pdf_schema.php:1011 msgid "No tables" msgstr "Inga tabeller" -#: pdf_schema.php:1031 pdf_schema.php:1140 +#: pdf_schema.php:1030 pdf_schema.php:1139 msgid "Relational schema" msgstr "Relationsschema" -#: pdf_schema.php:1115 +#: pdf_schema.php:1114 msgid "Table of contents" msgstr "Innehållsförteckning" -#: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:145 -#: tbl_structure.php:182 tbl_tracking.php:277 +#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 +#: tbl_structure.php:181 tbl_tracking.php:272 msgid "Extra" msgstr "Extra" @@ -4395,7 +4459,7 @@ msgstr "Visa/Dölj vänster meny" msgid "Save position" msgstr "Spara position" -#: pmd_general.php:70 server_synchronize.php:428 server_synchronize.php:871 +#: pmd_general.php:70 server_synchronize.php:427 server_synchronize.php:870 msgid "Create table" msgstr "Skapa tabell" @@ -4473,32 +4537,32 @@ msgstr "" "Visningsfältet visas i rosa. För att ange ett fält som visningsfält, klicka " "på ikonen \"Välj fält som ska visas\" och klicka sedan på lämpligt fältnamn." -#: pmd_pdf.php:62 +#: pmd_pdf.php:60 #, fuzzy msgid "Page has been created" msgstr "Tabell %1$s har skapats." -#: pmd_pdf.php:64 +#: pmd_pdf.php:62 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:84 +#: pmd_pdf.php:82 msgid "Export/Import to scale" msgstr "Exportera/importera till skala" -#: pmd_pdf.php:88 +#: pmd_pdf.php:86 msgid "recommended" msgstr "rekommenderad" -#: pmd_pdf.php:93 +#: pmd_pdf.php:91 msgid "to/from page" msgstr "till/från sida" -#: querywindow.php:94 +#: querywindow.php:93 msgid "Import files" msgstr "Importera filer" -#: querywindow.php:105 +#: querywindow.php:104 msgid "All" msgstr "Alla" @@ -4544,69 +4608,69 @@ msgstr "Information" msgid "Character Sets and Collations" msgstr "Teckenuppsättningar och kollationeringar" -#: server_databases.php:51 +#: server_databases.php:49 msgid "No databases selected." msgstr "Inga databaser markerade." -#: server_databases.php:62 +#: server_databases.php:60 #, php-format msgid "%s databases have been dropped successfully." msgstr "%s databaser har tagits bort." -#: server_databases.php:87 +#: server_databases.php:85 msgid "Databases statistics" msgstr "Databas-statistik" -#: server_databases.php:116 server_status.php:370 +#: server_databases.php:114 server_status.php:370 #: setup/lib/messages.inc.php:114 msgid "Tables" msgstr "Tabeller" -#: server_databases.php:194 server_replication.php:180 -#: server_replication.php:208 +#: server_databases.php:192 server_replication.php:179 +#: server_replication.php:207 #, fuzzy msgid "Master replication" msgstr "Serverkonfiguration" -#: server_databases.php:196 server_replication.php:247 +#: server_databases.php:194 server_replication.php:246 #, fuzzy msgid "Slave replication" msgstr "Serverkonfiguration" -#: server_databases.php:229 +#: server_databases.php:227 #, fuzzy msgid "Jump to database" msgstr "Inga databaser" -#: server_databases.php:266 +#: server_databases.php:264 #, fuzzy msgid "Not replicated" msgstr "Serverkonfiguration" -#: server_databases.php:272 +#: server_databases.php:270 #, fuzzy #| msgid "Replication" msgid "Replicated" msgstr "Replikering" -#: server_databases.php:288 +#: server_databases.php:286 #, php-format msgid "Check privileges for database "%s"." msgstr "Kontrollera privilegier för databas "%s"." -#: server_databases.php:292 server_databases.php:293 +#: server_databases.php:290 server_databases.php:291 msgid "Check Privileges" msgstr "Kontrollera privilegier" -#: server_databases.php:357 server_databases.php:358 +#: server_databases.php:355 server_databases.php:356 msgid "Enable Statistics" msgstr "Slå på statistik" -#: server_databases.php:361 server_databases.php:362 +#: server_databases.php:359 server_databases.php:360 msgid "Disable Statistics" msgstr "Stäng av statistik" -#: server_databases.php:365 +#: server_databases.php:363 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -4614,121 +4678,121 @@ msgstr "" "Anm: Att slå på databasstatistik här kan orsaka tung trafik mellan webb- och " "MySQL-servern." -#: server_engines.php:48 +#: server_engines.php:47 msgid "Storage Engines" msgstr "Lagringsmotorer" -#: server_export.php:20 +#: server_export.php:18 msgid "View dump (schema) of databases" msgstr "Visa SQL-satser för databaser" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:23 server_privileges.php:265 msgid "Includes all privileges except GRANT." msgstr "Inkluderar alla privilegier utom GRANT." -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:24 server_privileges.php:191 +#: server_privileges.php:514 msgid "Allows altering the structure of existing tables." msgstr "Tillåter ändring av befintliga tabellers struktur." -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:25 server_privileges.php:207 +#: server_privileges.php:520 msgid "Allows altering and dropping stored routines." msgstr "Tillåter ändring och borttagning av lagrade rutiner." -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:26 server_privileges.php:183 +#: server_privileges.php:513 msgid "Allows creating new databases and tables." msgstr "Tillåter skapande av nya databaser och tabeller." -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:27 server_privileges.php:206 +#: server_privileges.php:519 msgid "Allows creating stored routines." msgstr "Tillåter skapande av lagrade rutiner." -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:513 msgid "Allows creating new tables." msgstr "Tillåter skapande av nya tabeller." -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:29 server_privileges.php:194 +#: server_privileges.php:517 msgid "Allows creating temporary tables." msgstr "Tillåter skapande av temporära tabeller." -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:30 server_privileges.php:208 +#: server_privileges.php:553 msgid "Allows creating, dropping and renaming user accounts." msgstr "Tillåter skapande, borttagning och omdöpning av användarkonton." -#: server_privileges.php:32 server_privileges.php:199 -#: server_privileges.php:203 server_privileges.php:526 -#: server_privileges.php:530 +#: server_privileges.php:31 server_privileges.php:198 +#: server_privileges.php:202 server_privileges.php:525 +#: server_privileges.php:529 msgid "Allows creating new views." msgstr "Tillåter skapande av nya vyer." -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:32 server_privileges.php:182 +#: server_privileges.php:505 msgid "Allows deleting data." msgstr "Tillåter borttagning av data." -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:33 server_privileges.php:184 +#: server_privileges.php:516 msgid "Allows dropping databases and tables." msgstr "Tillåter borttagning av databaser och tabeller." -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:34 server_privileges.php:516 msgid "Allows dropping tables." msgstr "Tillåter borttagning av tabeller." -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:35 server_privileges.php:199 +#: server_privileges.php:533 msgid "Allows to set up events for the event scheduler" msgstr "Tillåter skapande av händelser för händelseschemaläggaren" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:36 server_privileges.php:209 +#: server_privileges.php:521 msgid "Allows executing stored routines." msgstr "Tillåter utförande av lagrade rutiner." -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:37 server_privileges.php:188 +#: server_privileges.php:508 msgid "Allows importing data from and exporting data into files." msgstr "Tillåter import av data från och export av data till filer." -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:38 server_privileges.php:539 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Tillåter tillägg av användare och privilegier utan omladdning av " "privilegiumtabellerna." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:515 msgid "Allows creating and dropping indexes." msgstr "Tillåter skapande och borttagning av index." -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:40 server_privileges.php:180 +#: server_privileges.php:441 server_privileges.php:503 msgid "Allows inserting and replacing data." msgstr "Tillåter infogning och ersättning av data." -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:41 server_privileges.php:195 +#: server_privileges.php:548 msgid "Allows locking tables for the current thread." msgstr "Tillåter låsning av tabeller för gällande tråd." -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:42 server_privileges.php:645 +#: server_privileges.php:647 msgid "Limits the number of new connections the user may open per hour." msgstr "Begränsar antalet nya förbindelser användaren kan öppna per timme." -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:43 server_privileges.php:633 +#: server_privileges.php:635 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Begränsar antalet frågor användaren kan skicka till servern per timme." -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:44 server_privileges.php:639 +#: server_privileges.php:641 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -4736,59 +4800,59 @@ msgstr "" "Begränsar antalet kommandon, vilka ändrar någon tabell eller databas, som " "användaren kan utföra per timme." -#: server_privileges.php:46 server_privileges.php:652 -#: server_privileges.php:654 +#: server_privileges.php:45 server_privileges.php:651 +#: server_privileges.php:653 msgid "Limits the number of simultaneous connections the user may have." msgstr "Begränsar antalet samtidiga förbindelser som användaren kan ha." -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:46 server_privileges.php:187 +#: server_privileges.php:543 msgid "Allows viewing processes of all users" msgstr "Tillåter visning av processer för alla användare" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:47 server_privileges.php:189 +#: server_privileges.php:447 server_privileges.php:549 msgid "Has no effect in this MySQL version." msgstr "Har ingen verkan i denna MySQL-version." -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:48 server_privileges.php:185 +#: server_privileges.php:544 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Tillåter omladdning av serverinställningar och rensning av serverns cache." -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:197 +#: server_privileges.php:551 msgid "Allows the user to ask where the slaves / masters are." msgstr "Ger användaren rätt att fråga var slav- / huvudservrarna är." -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:50 server_privileges.php:196 +#: server_privileges.php:552 msgid "Needed for the replication slaves." msgstr "Nödvändigt för replikeringsslavar." -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:51 server_privileges.php:179 +#: server_privileges.php:438 server_privileges.php:502 msgid "Allows reading data." msgstr "Tillåter läsning av data." -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:52 server_privileges.php:192 +#: server_privileges.php:546 msgid "Gives access to the complete list of databases." msgstr "Ger tillgång till den fullständiga databaslistan." -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:53 server_privileges.php:203 +#: server_privileges.php:205 server_privileges.php:518 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Tillåter utförande av SHOW CREATE VIEW-frågor." -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:54 server_privileges.php:186 +#: server_privileges.php:545 msgid "Allows shutting down the server." msgstr "Tillåter avstängning av servern." -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:55 server_privileges.php:193 +#: server_privileges.php:542 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -4798,158 +4862,158 @@ msgstr "" "Nödvändig för de flesta administrativa funktioner, som att sätta globala " "variabler eller döda andra användares trådar." -#: server_privileges.php:57 server_privileges.php:201 -#: server_privileges.php:535 +#: server_privileges.php:56 server_privileges.php:200 +#: server_privileges.php:534 msgid "Allows creating and dropping triggers" msgstr "Tillåter skapande och borttagning av utlösare" -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:57 server_privileges.php:181 +#: server_privileges.php:444 server_privileges.php:504 msgid "Allows changing data." msgstr "Tillåter ändring av data." -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:58 server_privileges.php:259 msgid "No privileges." msgstr "Inga privilegier." -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:301 server_privileges.php:302 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Inget" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1710 server_privileges.php:1716 +#: server_privileges.php:430 server_privileges.php:565 +#: server_privileges.php:1714 server_privileges.php:1720 msgid "Table-specific privileges" msgstr "Tabellspecifika privilegier" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1532 +#: server_privileges.php:431 server_privileges.php:573 +#: server_privileges.php:1536 msgid " Note: MySQL privilege names are expressed in English " msgstr " Obs! MySQL privilegiumnamn anges på engelska " -#: server_privileges.php:563 server_privileges.php:1531 +#: server_privileges.php:562 server_privileges.php:1535 msgid "Global privileges" msgstr "Globala privilegier" -#: server_privileges.php:565 server_privileges.php:1710 +#: server_privileges.php:564 server_privileges.php:1714 msgid "Database-specific privileges" msgstr "Databasspecifika privilegier" -#: server_privileges.php:610 +#: server_privileges.php:609 msgid "Administration" msgstr "Administration" -#: server_privileges.php:630 +#: server_privileges.php:629 msgid "Resource limits" msgstr "Resursbegränsningar" -#: server_privileges.php:631 +#: server_privileges.php:630 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" "Anm: Genom att sätta dessa alternativ till 0 (noll) tas begränsningarna bort." -#: server_privileges.php:708 +#: server_privileges.php:707 msgid "Login Information" msgstr "Inloggningsinformation" -#: server_privileges.php:802 +#: server_privileges.php:801 msgid "Do not change the password" msgstr "Ändra inte lösenordet" -#: server_privileges.php:835 server_privileges.php:2197 +#: server_privileges.php:834 server_privileges.php:2201 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Hittade ingen användare." -#: server_privileges.php:879 +#: server_privileges.php:878 #, php-format msgid "The user %s already exists!" msgstr "Användaren %s finns redan!" -#: server_privileges.php:962 +#: server_privileges.php:961 msgid "You have added a new user." msgstr "Du har lagt till en ny användare." -#: server_privileges.php:1183 +#: server_privileges.php:1184 #, php-format msgid "You have updated the privileges for %s." msgstr "Du har uppdaterat privilegierna för %s." -#: server_privileges.php:1207 +#: server_privileges.php:1208 #, php-format msgid "You have revoked the privileges for %s" msgstr "Du har upphävt privilegierna för %s" -#: server_privileges.php:1243 +#: server_privileges.php:1244 #, php-format msgid "The password for %s was changed successfully." msgstr "Lösenordet för %s har ändrats." -#: server_privileges.php:1263 +#: server_privileges.php:1264 #, php-format msgid "Deleting %s" msgstr "Tar bort %s" -#: server_privileges.php:1274 +#: server_privileges.php:1275 msgid "No users selected for deleting!" msgstr "Inga användare valda för borttagning!" -#: server_privileges.php:1277 +#: server_privileges.php:1278 msgid "Reloading the privileges" msgstr "Laddar om privilegierna" -#: server_privileges.php:1292 +#: server_privileges.php:1296 msgid "The selected users have been deleted successfully." msgstr "De markerade användarna har tagits bort." -#: server_privileges.php:1327 +#: server_privileges.php:1331 msgid "The privileges were reloaded successfully." msgstr "Privilegierna har laddats om." -#: server_privileges.php:1355 server_privileges.php:1641 +#: server_privileges.php:1359 server_privileges.php:1645 msgid "Edit Privileges" msgstr "Ändra privilegier" -#: server_privileges.php:1364 +#: server_privileges.php:1368 msgid "Revoke" msgstr "Upphäv" -#: server_privileges.php:1396 +#: server_privileges.php:1400 msgid "User overview" msgstr "Användaröversikt" -#: server_privileges.php:1533 server_privileges.php:1715 -#: server_privileges.php:2064 +#: server_privileges.php:1537 server_privileges.php:1719 +#: server_privileges.php:2068 msgid "Grant" msgstr "Grant" -#: server_privileges.php:1552 server_privileges.php:2154 +#: server_privileges.php:1556 server_privileges.php:2158 msgid "Any" msgstr "Vem som helst" -#: server_privileges.php:1601 server_privileges.php:1625 -#: server_privileges.php:2019 server_privileges.php:2208 +#: server_privileges.php:1605 server_privileges.php:1629 +#: server_privileges.php:2023 server_privileges.php:2212 msgid "Add a new User" msgstr "Lägg till ny användare" -#: server_privileges.php:1606 +#: server_privileges.php:1610 msgid "Remove selected users" msgstr "Ta bort markerade användare" -#: server_privileges.php:1609 +#: server_privileges.php:1613 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Upphäv användarnas alla aktiva privilegier och ta bort användarna efteråt." -#: server_privileges.php:1610 server_privileges.php:1611 -#: server_privileges.php:1612 +#: server_privileges.php:1614 server_privileges.php:1615 +#: server_privileges.php:1616 msgid "Drop the databases that have the same names as the users." msgstr "Ta bort databaserna med samma namn som användarna." -#: server_privileges.php:1628 +#: server_privileges.php:1632 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4962,51 +5026,51 @@ msgstr "" "privilegierna som servern använder ifall manuella ändringar har gjorts. I " "detta fall bör du %sladda om privilegierna%s innan du fortsätter." -#: server_privileges.php:1676 +#: server_privileges.php:1680 msgid "The selected user was not found in the privilege table." msgstr "Den markerade användaren kunde inte hittas i privilegiumtabellen." -#: server_privileges.php:1716 +#: server_privileges.php:1720 msgid "Column-specific privileges" msgstr "Kolumnspecifika privilegier" -#: server_privileges.php:1917 +#: server_privileges.php:1921 msgid "Add privileges on the following database" msgstr "Lägg till privilegier till följande databas" -#: server_privileges.php:1935 +#: server_privileges.php:1939 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "Jokertecknen _ och % måste föregås av ett \\ för att användas i egentlig " "betydelse" -#: server_privileges.php:1938 +#: server_privileges.php:1942 msgid "Add privileges on the following table" msgstr "Lägg till privilegier till följande tabell" -#: server_privileges.php:1995 +#: server_privileges.php:1999 msgid "Change Login Information / Copy User" msgstr "Ändra inloggningsinformation / Kopiera användare" -#: server_privileges.php:1998 +#: server_privileges.php:2002 msgid "Create a new user with the same privileges and ..." msgstr "Skapa en ny användare med samma privilegier och ..." -#: server_privileges.php:2000 +#: server_privileges.php:2004 msgid "... keep the old one." msgstr "... behåll den gamla." -#: server_privileges.php:2001 +#: server_privileges.php:2005 msgid " ... delete the old one from the user tables." msgstr " ... ta bort den gamla från användartabellerna." -#: server_privileges.php:2002 +#: server_privileges.php:2006 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "" " ... upphäv alla aktiva privilegier från dan gamla och ta bort den efteråt." -#: server_privileges.php:2003 +#: server_privileges.php:2007 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -5014,44 +5078,44 @@ msgstr "" " ... ta bort den gamla från användartabellerna och ladda om privilegierna " "efteråt." -#: server_privileges.php:2025 +#: server_privileges.php:2029 msgid "Database for user" msgstr "Databas för användare" -#: server_privileges.php:2029 +#: server_privileges.php:2033 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Inget" -#: server_privileges.php:2030 +#: server_privileges.php:2034 msgid "Create database with same name and grant all privileges" msgstr "Skapa databas med samma namn och ge alla privilegier" -#: server_privileges.php:2031 +#: server_privileges.php:2035 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Ge alla privilegier till namn med jokertecken (username\\_%)" -#: server_privileges.php:2034 +#: server_privileges.php:2038 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Bevilja alla privilegier för databas "%s"" -#: server_privileges.php:2057 +#: server_privileges.php:2061 #, php-format msgid "Users having access to "%s"" msgstr "Användare som har tillgång till "%s"" -#: server_privileges.php:2165 +#: server_privileges.php:2169 msgid "global" msgstr "global" -#: server_privileges.php:2167 +#: server_privileges.php:2171 msgid "database-specific" msgstr "databasspecifik" -#: server_privileges.php:2169 +#: server_privileges.php:2173 msgid "wildcard" msgstr "jokertecken" @@ -5071,55 +5135,55 @@ msgstr "" msgid "ID" msgstr "ID" -#: server_replication.php:50 +#: server_replication.php:49 msgid "Unknown error" msgstr "" -#: server_replication.php:57 +#: server_replication.php:56 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:64 +#: server_replication.php:63 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:70 +#: server_replication.php:69 msgid "Unable to change master" msgstr "" -#: server_replication.php:73 +#: server_replication.php:72 #, php-format msgid "Master server changed succesfully to %s" msgstr "" -#: server_replication.php:181 +#: server_replication.php:180 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:183 server_status.php:391 +#: server_replication.php:182 server_status.php:391 #, fuzzy msgid "Show master status" msgstr "Visa slav-status" -#: server_replication.php:186 +#: server_replication.php:185 msgid "Show connected slaves" msgstr "" -#: server_replication.php:209 +#: server_replication.php:208 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:216 +#: server_replication.php:215 #, fuzzy msgid "Master configuration" msgstr "Serverkonfiguration" -#: server_replication.php:217 +#: server_replication.php:216 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -5128,112 +5192,112 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:220 +#: server_replication.php:219 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:221 +#: server_replication.php:220 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:224 +#: server_replication.php:223 #, fuzzy msgid "Please select databases:" msgstr "Välj en databas" -#: server_replication.php:227 +#: server_replication.php:226 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: server_replication.php:229 +#: server_replication.php:228 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: server_replication.php:292 +#: server_replication.php:291 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:295 +#: server_replication.php:294 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:304 +#: server_replication.php:303 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:307 +#: server_replication.php:306 msgid "See slave status table" msgstr "" -#: server_replication.php:310 +#: server_replication.php:309 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:321 +#: server_replication.php:320 #, fuzzy msgid "Control slave:" msgstr "Kontrollanvändare" -#: server_replication.php:324 +#: server_replication.php:323 #, fuzzy msgid "Full start" msgstr "Heltext" -#: server_replication.php:324 +#: server_replication.php:323 #, fuzzy msgid "Full stop" msgstr "Heltext" -#: server_replication.php:325 +#: server_replication.php:324 msgid "Reset slave" msgstr "" -#: server_replication.php:326 +#: server_replication.php:325 #, php-format msgid "SQL Thread %s only" msgstr "" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 #, fuzzy msgid "Start" msgstr "Start" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 msgid "Stop" msgstr "" -#: server_replication.php:327 +#: server_replication.php:326 #, php-format msgid "IO Thread %s only" msgstr "" -#: server_replication.php:331 +#: server_replication.php:330 msgid "Error management:" msgstr "" -#: server_replication.php:333 +#: server_replication.php:332 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:335 +#: server_replication.php:334 msgid "Skip current error" msgstr "" -#: server_replication.php:336 +#: server_replication.php:335 msgid "Skip next" msgstr "" -#: server_replication.php:339 +#: server_replication.php:338 msgid "errors." msgstr "" -#: server_replication.php:354 +#: server_replication.php:353 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -6058,117 +6122,117 @@ msgstr "Typ av fråga" msgid "Replication status" msgstr "Replikeringsstatus" -#: server_synchronize.php:93 +#: server_synchronize.php:92 #, fuzzy msgid "Could not connect to the source" msgstr "Kunde inte ansluta till MySQL-server" -#: server_synchronize.php:96 +#: server_synchronize.php:95 #, fuzzy msgid "Could not connect to the target" msgstr "Kunde inte ansluta till MySQL-server" -#: server_synchronize.php:121 server_synchronize.php:124 tbl_create.php:77 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:264 +#: server_synchronize.php:263 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:271 +#: server_synchronize.php:270 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:399 server_synchronize.php:838 +#: server_synchronize.php:398 server_synchronize.php:837 msgid "not present" msgstr "" -#: server_synchronize.php:423 server_synchronize.php:866 +#: server_synchronize.php:422 server_synchronize.php:865 #, fuzzy msgid "Structure Difference" msgstr "Struktur för visning" -#: server_synchronize.php:424 server_synchronize.php:867 +#: server_synchronize.php:423 server_synchronize.php:866 #, fuzzy msgid "Data Difference" msgstr "Struktur för visning" -#: server_synchronize.php:429 server_synchronize.php:872 +#: server_synchronize.php:428 server_synchronize.php:871 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:430 server_synchronize.php:873 +#: server_synchronize.php:429 server_synchronize.php:872 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:431 server_synchronize.php:874 +#: server_synchronize.php:430 server_synchronize.php:873 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:432 server_synchronize.php:875 +#: server_synchronize.php:431 server_synchronize.php:874 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:433 server_synchronize.php:876 +#: server_synchronize.php:432 server_synchronize.php:875 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:434 server_synchronize.php:877 +#: server_synchronize.php:433 server_synchronize.php:876 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:435 server_synchronize.php:878 +#: server_synchronize.php:434 server_synchronize.php:877 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:445 server_synchronize.php:889 +#: server_synchronize.php:444 server_synchronize.php:888 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:448 server_synchronize.php:893 +#: server_synchronize.php:447 server_synchronize.php:892 msgid "Apply Selected Changes" msgstr "" -#: server_synchronize.php:450 server_synchronize.php:895 +#: server_synchronize.php:449 server_synchronize.php:894 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:463 +#: server_synchronize.php:462 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:941 +#: server_synchronize.php:940 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:1002 +#: server_synchronize.php:1001 msgid "The following queries have been executed:" msgstr "" -#: server_synchronize.php:1121 +#: server_synchronize.php:1120 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1122 +#: server_synchronize.php:1121 #, fuzzy #| msgid "Insecure connection" msgid "Current connection" msgstr "Osäker anslutning" -#: server_synchronize.php:1151 +#: server_synchronize.php:1150 #, fuzzy, php-format #| msgid "Configuration file" msgid "Configuration: %s" msgstr "Konfigurationsfil" -#: server_synchronize.php:1166 +#: server_synchronize.php:1165 msgid "Socket" msgstr "" -#: server_synchronize.php:1212 +#: server_synchronize.php:1211 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -6762,10 +6826,15 @@ msgid "Signon login options" msgstr "Signon inloggningsalternativ" #: setup/lib/messages.inc.php:128 +#, fuzzy +#| msgid "" +#| "Configure phpMyAdmin database to gain access to additional features, see " +#| "[a@../Documentation.html#linked-tables]linked-tables infrastructure[/a] " +#| "in documentation" msgid "" "Configure phpMyAdmin database to gain access to additional features, see " -"[a@../Documentation.html#linked-tables]linked-tables infrastructure[/a] in " -"documentation" +"[a@../Documentation.html#linked-tables]phpMyAdmin configuration storage[/a] " +"in documentation" msgstr "" "Konfigurera phpMyAdmin-databas att få tillgång till extra funktionalitet, se " "[a@../Documentation.html#linked-tables]infrastruktur för länkade tabeller[/" @@ -7963,117 +8032,117 @@ msgstr "" msgid "ZIP" msgstr "ZIP" -#: sql.php:495 tbl_replace.php:385 +#: sql.php:494 tbl_replace.php:384 #, php-format msgid "Inserted row id: %1$d" msgstr "Infogade rad id: %1$d" -#: sql.php:512 +#: sql.php:511 msgid "Showing as PHP code" msgstr "Visar som PHP-kod" -#: sql.php:515 tbl_replace.php:359 +#: sql.php:514 tbl_replace.php:358 msgid "Showing SQL query" msgstr "Visar SQL-fråga" -#: sql.php:517 +#: sql.php:516 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Validera SQL-kod" -#: sql.php:638 +#: sql.php:631 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problem med index för tabell `%s`" -#: sql.php:670 +#: sql.php:663 msgid "Label" msgstr "Etikett" -#: tbl_addfield.php:188 tbl_alter.php:102 tbl_indexes.php:97 +#: tbl_addfield.php:185 tbl_alter.php:100 tbl_indexes.php:97 #, php-format msgid "Table %1$s has been altered successfully" msgstr "Tabell %1$s har ändrats" -#: tbl_change.php:250 tbl_select.php:26 tbl_select.php:27 tbl_select.php:30 -#: tbl_select.php:33 +#: tbl_change.php:245 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_select.php:32 msgid "Browse foreign values" msgstr "Visa främmande värden" -#: tbl_change.php:280 tbl_change.php:318 +#: tbl_change.php:275 tbl_change.php:313 msgid "Function" msgstr "Funktion" -#: tbl_change.php:300 tbl_indexes.php:199 tbl_indexes.php:224 +#: tbl_change.php:295 tbl_indexes.php:198 tbl_indexes.php:223 msgid "Ignore" msgstr "Ignorera" -#: tbl_change.php:725 +#: tbl_change.php:720 #, fuzzy #| msgid " Because of its length,
                            this field might not be editable " msgid " Because of its length,
                            this column might not be editable " msgstr " På grund av dess längd,
                            kanske detta fält inte kan redigeras " -#: tbl_change.php:884 +#: tbl_change.php:835 msgid "Remove BLOB Repository Reference" msgstr "Ta bort referens till BLOB-förvaringsplats" -#: tbl_change.php:890 +#: tbl_change.php:841 msgid "Binary - do not edit" msgstr "Binär - ändra inte" -#: tbl_change.php:983 +#: tbl_change.php:889 msgid "Upload to BLOB repository" msgstr "Ladda upp till BLOB-förvaringsplats" -#: tbl_change.php:1128 +#: tbl_change.php:1026 msgid "Insert as new row" msgstr "Lägg till som ny rad" -#: tbl_change.php:1129 +#: tbl_change.php:1027 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:1130 +#: tbl_change.php:1028 #, fuzzy msgid "Show insert query" msgstr "Visar SQL-fråga" -#: tbl_change.php:1145 +#: tbl_change.php:1043 msgid "Go back to previous page" msgstr "Gå tillbaka till föregående sida" -#: tbl_change.php:1146 +#: tbl_change.php:1044 msgid "Insert another new row" msgstr "Lägg till ytterligare en ny rad" -#: tbl_change.php:1150 +#: tbl_change.php:1048 msgid "Go back to this page" msgstr "Gå tillbaka till denna sida" -#: tbl_change.php:1158 +#: tbl_change.php:1056 msgid "Edit next row" msgstr "Ändra nästa rad" -#: tbl_change.php:1169 +#: tbl_change.php:1067 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Använd TAB-tangenten för att flytta från värde till värde, eller CTRL+pil " "för att flytta vart som helst" -#: tbl_change.php:1207 +#: tbl_change.php:1105 #, php-format msgid "Restart insertion with %s rows" msgstr "Börja om infogning med %s rader" -#: tbl_create.php:57 +#: tbl_create.php:55 #, php-format msgid "Table %s already exists!" msgstr "Tabell %s finns redan!" -#: tbl_create.php:244 +#: tbl_create.php:241 #, php-format msgid "Table %1$s has been created." msgstr "Tabell %1$s har skapats." @@ -8094,196 +8163,196 @@ msgstr "Kan inte byta namn på index till \"PRIMARY\"!" msgid "No index parts defined!" msgstr "Inga delar av index är definierade!" -#: tbl_indexes.php:159 +#: tbl_indexes.php:158 msgid "Create a new index" msgstr "Skapa ett nytt index" -#: tbl_indexes.php:161 +#: tbl_indexes.php:160 msgid "Modify an index" msgstr "Ändra ett index" -#: tbl_indexes.php:167 +#: tbl_indexes.php:166 msgid "Index name:" msgstr "Indexnamn :" -#: tbl_indexes.php:173 +#: tbl_indexes.php:172 msgid "Index type:" msgstr "Indextyp :" -#: tbl_indexes.php:183 +#: tbl_indexes.php:182 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" "(\"PRIMARY\" måste vara namnet på och endast på en " "primärnyckel!)" -#: tbl_indexes.php:250 +#: tbl_indexes.php:249 #, php-format msgid "Add to index  %s column(s)" msgstr "Lägg till %s kolumn(er) till index" -#: tbl_indexes.php:255 tbl_structure.php:588 tbl_structure.php:599 +#: tbl_indexes.php:254 tbl_structure.php:586 tbl_structure.php:597 msgid "Column count has to be larger than zero." msgstr "Antalet kolumner måste vara större än noll." -#: tbl_move_copy.php:45 +#: tbl_move_copy.php:44 msgid "Can't move table to same one!" msgstr "Kan inte flytta tabell till samma namn!" -#: tbl_move_copy.php:47 +#: tbl_move_copy.php:46 msgid "Can't copy table to same one!" msgstr "Kan inte kopiera tabell till samma namn!" -#: tbl_move_copy.php:55 +#: tbl_move_copy.php:54 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabellen %s har flyttats till %s." -#: tbl_move_copy.php:57 +#: tbl_move_copy.php:56 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabellen %s har kopierats till %s." -#: tbl_move_copy.php:81 +#: tbl_move_copy.php:80 msgid "The table name is empty!" msgstr "Tabellnamnet är tomt!" -#: tbl_operations.php:248 +#: tbl_operations.php:246 msgid "Alter table order by" msgstr "Sortera om tabellen efter" -#: tbl_operations.php:257 +#: tbl_operations.php:255 msgid "(singly)" msgstr "(ensam)" -#: tbl_operations.php:277 +#: tbl_operations.php:275 msgid "Move table to (database.table):" msgstr "Flytta tabellen till (databas.tabell):" -#: tbl_operations.php:335 +#: tbl_operations.php:333 msgid "Table options" msgstr "Tabellalternativ" -#: tbl_operations.php:339 +#: tbl_operations.php:337 msgid "Rename table to" msgstr "Döp om tabellen till" -#: tbl_operations.php:510 +#: tbl_operations.php:508 msgid "Copy table to (database.table):" msgstr "Kopiera tabellen till (databas.tabell):" -#: tbl_operations.php:557 +#: tbl_operations.php:555 msgid "Switch to copied table" msgstr "Byt till kopierad tabell" -#: tbl_operations.php:569 +#: tbl_operations.php:567 msgid "Table maintenance" msgstr "Tabellunderhåll" -#: tbl_operations.php:590 +#: tbl_operations.php:588 msgid "Defragment table" msgstr "Defragmentera tabell" -#: tbl_operations.php:629 +#: tbl_operations.php:627 #, php-format msgid "Table %s has been flushed" msgstr "Tabellen %s har rensats" -#: tbl_operations.php:635 +#: tbl_operations.php:633 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Rensa tabell" -#: tbl_operations.php:650 +#: tbl_operations.php:648 msgid "Partition maintenance" msgstr "Partitionsunderhåll" -#: tbl_operations.php:658 +#: tbl_operations.php:656 #, php-format msgid "Partition %s" msgstr "Partition %s" -#: tbl_operations.php:661 +#: tbl_operations.php:659 msgid "Analyze" msgstr "Analysera" -#: tbl_operations.php:662 +#: tbl_operations.php:660 msgid "Check" msgstr "Kontrollera" -#: tbl_operations.php:663 +#: tbl_operations.php:661 msgid "Optimize" msgstr "Optimera" -#: tbl_operations.php:664 +#: tbl_operations.php:662 msgid "Rebuild" msgstr "Omskapa" -#: tbl_operations.php:665 +#: tbl_operations.php:663 msgid "Repair" msgstr "Reparera" -#: tbl_operations.php:677 +#: tbl_operations.php:675 msgid "Remove partitioning" msgstr "Ta bort partitionering" -#: tbl_operations.php:703 +#: tbl_operations.php:701 msgid "Check referential integrity:" msgstr "Kontrollera referensintegritet:" -#: tbl_printview.php:73 +#: tbl_printview.php:72 msgid "Show tables" msgstr "Visa tabeller" -#: tbl_printview.php:308 tbl_structure.php:655 +#: tbl_printview.php:307 tbl_structure.php:653 msgid "Space usage" msgstr "Utrymmesanvändning" -#: tbl_printview.php:312 tbl_structure.php:659 +#: tbl_printview.php:311 tbl_structure.php:657 msgid "Usage" msgstr "Användning" -#: tbl_printview.php:339 tbl_structure.php:686 +#: tbl_printview.php:338 tbl_structure.php:684 msgid "Effective" msgstr "Effektivt" -#: tbl_printview.php:364 tbl_structure.php:724 +#: tbl_printview.php:363 tbl_structure.php:722 msgid "Row Statistics" msgstr "Radstatistik" -#: tbl_printview.php:367 tbl_structure.php:727 +#: tbl_printview.php:366 tbl_structure.php:725 msgid "Statements" msgstr "Uppgift" -#: tbl_printview.php:378 tbl_structure.php:739 +#: tbl_printview.php:377 tbl_structure.php:737 msgid "static" msgstr "statisk" -#: tbl_printview.php:380 tbl_structure.php:741 +#: tbl_printview.php:379 tbl_structure.php:739 msgid "dynamic" msgstr "dynamisk" -#: tbl_printview.php:402 tbl_structure.php:784 +#: tbl_printview.php:401 tbl_structure.php:782 msgid "Row length" msgstr "Radlängd" -#: tbl_printview.php:412 tbl_structure.php:792 +#: tbl_printview.php:411 tbl_structure.php:790 msgid " Row size " msgstr "Radstorlek" -#: tbl_relation.php:278 +#: tbl_relation.php:276 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "Fel vid skapande av främmande nyckel för %1$s (kontrollera datatyper)" -#: tbl_relation.php:404 +#: tbl_relation.php:402 #, fuzzy #| msgid "Internal relations" msgid "Internal relation" msgstr "Interna relationer" -#: tbl_relation.php:406 +#: tbl_relation.php:404 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -8291,7 +8360,7 @@ msgstr "" "En intern relation är inte nödvändig när en motsvarande främmande nyckel-" "relation finns." -#: tbl_relation.php:412 +#: tbl_relation.php:410 #, fuzzy #| msgid "Foreign key limit" msgid "Foreign key constraint" @@ -8301,232 +8370,232 @@ msgstr "Begränsning för främmande nyckel" msgid "No rows selected" msgstr "Inga rader valda" -#: tbl_select.php:130 +#: tbl_select.php:129 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Utför en \"Query By Example\" (jokertecken: \"%\")" -#: tbl_select.php:136 +#: tbl_select.php:135 msgid "Operator" msgstr "Operator" -#: tbl_select.php:267 +#: tbl_select.php:266 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "Välj fält (minst ett):" -#: tbl_select.php:285 +#: tbl_select.php:284 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Lägg till sökvillkor (uttryck i \"where\"-sats):" -#: tbl_select.php:292 +#: tbl_select.php:291 msgid "Number of rows per page" msgstr "Rader per sida" -#: tbl_select.php:298 +#: tbl_select.php:297 msgid "Display order:" msgstr "Visningsordning:" -#: tbl_structure.php:160 +#: tbl_structure.php:159 msgid "Browse distinct values" msgstr "Visa distinkta värden" -#: tbl_structure.php:360 +#: tbl_structure.php:358 #, fuzzy #| msgid "None" msgctxt "None for default" msgid "None" msgstr "Inget" -#: tbl_structure.php:373 +#: tbl_structure.php:371 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Column %s has been dropped" msgstr "Tabellen %s har tagits bort" -#: tbl_structure.php:384 +#: tbl_structure.php:382 #, php-format msgid "A primary key has been added on %s" msgstr "En primär nyckel har lagts till för %s" -#: tbl_structure.php:399 tbl_structure.php:413 tbl_structure.php:427 +#: tbl_structure.php:397 tbl_structure.php:411 tbl_structure.php:425 #, php-format msgid "An index has been added on %s" msgstr "Ett index har lagts till för %s" -#: tbl_structure.php:505 tbl_structure.php:507 +#: tbl_structure.php:503 tbl_structure.php:505 msgid "Relation view" msgstr "Visa relationer" -#: tbl_structure.php:514 tbl_structure.php:516 +#: tbl_structure.php:512 tbl_structure.php:514 msgid "Propose table structure" msgstr "Föreslå tabellstruktur" -#: tbl_structure.php:539 +#: tbl_structure.php:537 #, fuzzy #| msgid "Add %s field(s)" msgid "Add column" msgstr "Lägg till %s fält" -#: tbl_structure.php:553 +#: tbl_structure.php:551 msgid "At End of Table" msgstr "I slutet av tabellen" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At Beginning of Table" msgstr "I början av tabellen" -#: tbl_structure.php:555 +#: tbl_structure.php:553 #, php-format msgid "After %s" msgstr "Efter %s" -#: tbl_structure.php:593 +#: tbl_structure.php:591 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "Skapa ett index för %s kolumn(er)" -#: tbl_structure.php:755 +#: tbl_structure.php:753 msgid "partitioned" msgstr "partitionerad" -#: tbl_tracking.php:113 +#: tbl_tracking.php:109 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:186 +#: tbl_tracking.php:182 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "" -#: tbl_tracking.php:194 +#: tbl_tracking.php:190 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "" -#: tbl_tracking.php:202 +#: tbl_tracking.php:198 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "" -#: tbl_tracking.php:212 +#: tbl_tracking.php:208 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:219 +#: tbl_tracking.php:215 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:220 +#: tbl_tracking.php:216 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:229 +#: tbl_tracking.php:225 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:250 tbl_tracking.php:378 +#: tbl_tracking.php:245 tbl_tracking.php:373 msgid "Close" msgstr "" -#: tbl_tracking.php:261 +#: tbl_tracking.php:256 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:380 +#: tbl_tracking.php:375 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:396 tbl_tracking.php:503 +#: tbl_tracking.php:391 tbl_tracking.php:498 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "" -#: tbl_tracking.php:409 tbl_tracking.php:460 +#: tbl_tracking.php:404 tbl_tracking.php:455 #, fuzzy msgid "Date" msgstr "Data" -#: tbl_tracking.php:410 tbl_tracking.php:461 +#: tbl_tracking.php:405 tbl_tracking.php:456 #, fuzzy msgid "Username" msgstr "Användarnamn:" -#: tbl_tracking.php:411 +#: tbl_tracking.php:406 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:462 +#: tbl_tracking.php:457 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:506 +#: tbl_tracking.php:501 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:507 +#: tbl_tracking.php:502 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:520 +#: tbl_tracking.php:515 #, fuzzy, php-format msgid "Export as %s" msgstr "Standard för export" -#: tbl_tracking.php:560 +#: tbl_tracking.php:555 msgid "Show versions" msgstr "" -#: tbl_tracking.php:592 +#: tbl_tracking.php:587 #, fuzzy msgid "Version" msgstr "Persiska" -#: tbl_tracking.php:639 +#: tbl_tracking.php:634 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "" -#: tbl_tracking.php:641 +#: tbl_tracking.php:636 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:652 +#: tbl_tracking.php:647 #, php-format msgid "Activate tracking for %s.%s" msgstr "" -#: tbl_tracking.php:654 +#: tbl_tracking.php:649 msgid "Activate now" msgstr "" -#: tbl_tracking.php:667 +#: tbl_tracking.php:662 #, php-format msgid "Create version %s of %s.%s" msgstr "" -#: tbl_tracking.php:671 +#: tbl_tracking.php:666 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:679 +#: tbl_tracking.php:674 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:687 +#: tbl_tracking.php:682 #, fuzzy msgid "Create version" msgstr "Skapa relation" @@ -8576,11 +8645,41 @@ msgstr "Profilen har uppdaterats." msgid "VIEW name" msgstr "Namn på vy" -#: view_operations.php:92 +#: view_operations.php:91 #, fuzzy msgid "Rename view to" msgstr "Döp om tabellen till" +#~ msgid "BLOB Repository" +#~ msgstr "BLOB-förvaringsplats" + +#, fuzzy +#~| msgid "Enabled" +#~ msgctxt "BLOB repository" +#~ msgid "Enabled" +#~ msgstr "Aktiverat" + +#~ msgid "Disable" +#~ msgstr "Inaktivera" + +#~ msgid "Damaged" +#~ msgstr "Skadad" + +#, fuzzy +#~| msgid "Repair" +#~ msgctxt "BLOB repository" +#~ msgid "Repair" +#~ msgstr "Reparera" + +#, fuzzy +#~| msgid "Disabled" +#~ msgctxt "BLOB repository" +#~ msgid "Disabled" +#~ msgstr "Inaktiverat" + +#~ msgid "Enable" +#~ msgstr "Aktivera" + #~ msgid "" #~ "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " #~ "extension. Please check your PHP configuration." diff --git a/po/ta.po b/po/ta.po index ba393b8c4..293666b0e 100644 --- a/po/ta.po +++ b/po/ta.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-21 13:53+0200\n" +"POT-Creation-Date: 2010-07-26 17:18+0200\n" "PO-Revision-Date: 2010-04-16 10:43+0200\n" "Last-Translator: Sutharshan \n" "Language-Team: Tamil \n" @@ -17,156 +17,168 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.1\n" -#: browse_foreigners.php:37 browse_foreigners.php:58 -#: libraries/display_tbl.lib.php:416 server_privileges.php:1506 +#: browse_foreigners.php:36 browse_foreigners.php:57 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1510 msgid "Show all" msgstr "" -#: browse_foreigners.php:81 libraries/common.lib.php:2313 -#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:393 -#: libraries/export/pdf.php:146 pdf_schema.php:282 pdf_schema.php:1122 -#: pdf_schema.php:1138 +#: browse_foreigners.php:80 libraries/common.lib.php:2318 +#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:392 +#: libraries/export/pdf.php:146 pdf_schema.php:281 pdf_schema.php:1121 +#: pdf_schema.php:1137 msgid "Page number:" msgstr "" -#: browse_foreigners.php:131 +#: browse_foreigners.php:130 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " "cross-window updates." msgstr "" -#: browse_foreigners.php:149 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2829 -#: libraries/common.lib.php:2836 libraries/db_links.inc.php:74 -#: libraries/tbl_links.inc.php:62 +#: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 +#: db_structure.php:89 db_structure.php:91 db_structure.php:102 +#: db_structure.php:104 libraries/common.lib.php:2834 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "" -#: browse_foreigners.php:152 db_operations.php:384 db_operations.php:428 -#: db_operations.php:498 db_operations.php:608 db_search.php:344 -#: db_structure.php:566 js/messages.php:48 libraries/Config.class.php:1043 -#: libraries/Theme_Manager.class.php:310 +#: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 +#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 +#: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 -#: libraries/common.lib.php:1340 libraries/common.lib.php:2289 +#: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 -#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:275 -#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:531 -#: libraries/display_tbl.lib.php:613 libraries/replication_gui.lib.php:75 +#: libraries/display_export.lib.php:269 libraries/display_import.lib.php:275 +#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 +#: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 #: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:781 -#: main.php:127 navigation.php:231 pdf_pages.php:291 pdf_pages.php:327 -#: pdf_pages.php:529 pmd_pdf.php:115 server_binlog.php:128 -#: server_privileges.php:664 server_privileges.php:1616 -#: server_privileges.php:1963 server_privileges.php:2010 -#: server_privileges.php:2049 server_replication.php:234 -#: server_replication.php:317 server_replication.php:340 -#: server_synchronize.php:1208 tbl_change.php:328 tbl_change.php:1172 -#: tbl_change.php:1209 tbl_indexes.php:253 tbl_operations.php:264 -#: tbl_operations.php:301 tbl_operations.php:498 tbl_operations.php:560 -#: tbl_operations.php:680 tbl_select.php:324 tbl_structure.php:561 -#: tbl_structure.php:596 tbl_tracking.php:394 tbl_tracking.php:511 -#: view_create.php:181 view_operations.php:100 +#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 +#: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 +#: server_privileges.php:663 server_privileges.php:1620 +#: server_privileges.php:1967 server_privileges.php:2014 +#: server_privileges.php:2053 server_replication.php:233 +#: server_replication.php:316 server_replication.php:339 +#: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 +#: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 +#: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 +#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "" -#: browse_foreigners.php:167 browse_foreigners.php:171 -#: libraries/Index.class.php:441 tbl_tracking.php:319 +#: browse_foreigners.php:166 browse_foreigners.php:170 +#: libraries/Index.class.php:441 tbl_tracking.php:314 msgid "Keyname" msgstr "" -#: browse_foreigners.php:168 browse_foreigners.php:170 -#: server_collations.php:54 server_collations.php:66 server_engines.php:58 +#: browse_foreigners.php:167 browse_foreigners.php:169 +#: server_collations.php:54 server_collations.php:66 server_engines.php:57 #: server_status.php:738 msgid "Description" msgstr "" -#: browse_foreigners.php:246 browse_foreigners.php:255 -#: browse_foreigners.php:267 browse_foreigners.php:275 +#: browse_foreigners.php:245 browse_foreigners.php:254 +#: browse_foreigners.php:266 browse_foreigners.php:274 msgid "Use this value" msgstr "" -#: db_create.php:45 +#: bs_disp_as_mime_type.php:29 bs_play_media.php:35 +msgid "No blob streaming server configured!" +msgstr "" + +#: bs_disp_as_mime_type.php:35 +msgid "Failed to fetch headers" +msgstr "" + +#: bs_disp_as_mime_type.php:41 +msgid "Failed to open remote URL" +msgstr "" + +#: db_create.php:44 #, php-format msgid "Database %1$s has been created." msgstr "" -#: db_datadict.php:48 db_operations.php:377 +#: db_datadict.php:48 db_operations.php:313 msgid "Database comment: " msgstr "" -#: db_datadict.php:164 libraries/tbl_properties.inc.php:723 -#: pdf_schema.php:1235 tbl_operations.php:346 tbl_printview.php:128 +#: db_datadict.php:164 libraries/tbl_properties.inc.php:722 +#: pdf_schema.php:1234 tbl_operations.php:344 tbl_printview.php:127 msgid "Table comments" msgstr "" -#: db_datadict.php:173 db_qbe.php:173 libraries/Index.class.php:445 +#: db_datadict.php:173 db_qbe.php:170 libraries/Index.class.php:445 #: libraries/export/htmlword.php:243 libraries/export/latex.php:364 #: libraries/export/odt.php:293 libraries/export/texytext.php:233 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:274 -#: pdf_schema.php:1261 pdf_schema.php:1282 tbl_change.php:306 -#: tbl_indexes.php:188 tbl_printview.php:140 tbl_relation.php:401 -#: tbl_select.php:133 tbl_structure.php:176 tbl_tracking.php:272 -#: tbl_tracking.php:323 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 +#: pdf_schema.php:1260 pdf_schema.php:1281 tbl_change.php:301 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:132 tbl_structure.php:175 tbl_tracking.php:267 +#: tbl_tracking.php:318 msgid "Column" msgstr "" -#: db_datadict.php:174 db_printview.php:105 libraries/Index.class.php:442 +#: db_datadict.php:174 db_printview.php:104 libraries/Index.class.php:442 #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 #: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:244 #: libraries/export/latex.php:364 libraries/export/odt.php:296 #: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:99 -#: pdf_schema.php:1262 pdf_schema.php:1283 server_privileges.php:2062 -#: tbl_change.php:285 tbl_change.php:312 tbl_printview.php:141 -#: tbl_printview.php:311 tbl_select.php:134 tbl_structure.php:177 -#: tbl_structure.php:658 tbl_tracking.php:273 tbl_tracking.php:320 +#: pdf_schema.php:1261 pdf_schema.php:1282 server_privileges.php:2066 +#: tbl_change.php:280 tbl_change.php:307 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:133 tbl_structure.php:176 +#: tbl_structure.php:656 tbl_tracking.php:268 tbl_tracking.php:315 msgid "Type" msgstr "" #: db_datadict.php:176 libraries/Index.class.php:448 #: libraries/export/htmlword.php:245 libraries/export/latex.php:364 #: libraries/export/odt.php:299 libraries/export/texytext.php:235 -#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1264 -#: pdf_schema.php:1285 tbl_change.php:321 tbl_printview.php:143 -#: tbl_structure.php:180 tbl_tracking.php:275 tbl_tracking.php:326 +#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1263 +#: pdf_schema.php:1284 tbl_change.php:316 tbl_printview.php:142 +#: tbl_structure.php:179 tbl_tracking.php:270 tbl_tracking.php:321 msgid "Null" msgstr "" -#: db_datadict.php:177 db_structure.php:500 libraries/export/htmlword.php:246 +#: db_datadict.php:177 db_structure.php:486 libraries/export/htmlword.php:246 #: libraries/export/latex.php:364 libraries/export/odt.php:302 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:105 -#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 -#: tbl_structure.php:181 tbl_tracking.php:276 +#: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:143 +#: tbl_structure.php:180 tbl_tracking.php:271 msgid "Default" msgstr "" #: db_datadict.php:181 libraries/export/htmlword.php:248 #: libraries/export/latex.php:366 libraries/export/odt.php:306 -#: libraries/export/texytext.php:238 pdf_schema.php:1267 pdf_schema.php:1288 -#: tbl_printview.php:148 +#: libraries/export/texytext.php:238 pdf_schema.php:1266 pdf_schema.php:1287 +#: tbl_printview.php:147 msgid "Links to" msgstr "" -#: db_datadict.php:183 db_printview.php:111 libraries/export/htmlword.php:251 +#: db_datadict.php:183 db_printview.php:110 libraries/export/htmlword.php:251 #: libraries/export/latex.php:49 libraries/export/latex.php:369 #: libraries/export/odt.php:37 libraries/export/odt.php:311 #: libraries/export/sql.php:29 libraries/export/texytext.php:241 -#: libraries/tbl_properties.inc.php:129 pdf_schema.php:1278 -#: pdf_schema.php:1289 tbl_printview.php:150 +#: libraries/tbl_properties.inc.php:128 pdf_schema.php:1277 +#: pdf_schema.php:1288 tbl_printview.php:149 msgid "Comments" msgstr "" #: db_datadict.php:266 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/export/htmlword.php:321 #: libraries/export/latex.php:434 libraries/export/odt.php:367 -#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:262 -#: pdf_schema.php:1343 server_privileges.php:1560 server_privileges.php:1571 -#: server_privileges.php:1881 server_privileges.php:1886 -#: server_privileges.php:2179 sql.php:131 sql.php:193 tbl_printview.php:227 -#: tbl_structure.php:349 tbl_tracking.php:336 tbl_tracking.php:341 +#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:261 +#: pdf_schema.php:1342 server_privileges.php:1564 server_privileges.php:1575 +#: server_privileges.php:1885 server_privileges.php:1890 +#: server_privileges.php:2183 sql.php:130 sql.php:192 tbl_printview.php:226 +#: tbl_structure.php:347 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "" @@ -177,17 +189,17 @@ msgstr "" #: libraries/mult_submits.inc.php:49 libraries/mult_submits.inc.php:54 #: libraries/mult_submits.inc.php:59 libraries/mult_submits.inc.php:91 #: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:105 -#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:261 -#: libraries/mult_submits.inc.php:272 pdf_schema.php:1343 -#: server_databases.php:63 server_privileges.php:1557 -#: server_privileges.php:1571 server_privileges.php:1881 -#: server_privileges.php:1884 server_privileges.php:2179 sql.php:192 -#: tbl_printview.php:227 tbl_structure.php:39 tbl_structure.php:349 -#: tbl_tracking.php:334 tbl_tracking.php:339 +#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:260 +#: libraries/mult_submits.inc.php:271 pdf_schema.php:1342 +#: server_databases.php:61 server_privileges.php:1561 +#: server_privileges.php:1575 server_privileges.php:1885 +#: server_privileges.php:1888 server_privileges.php:2183 sql.php:191 +#: tbl_printview.php:226 tbl_structure.php:38 tbl_structure.php:347 +#: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" msgstr "" -#: db_datadict.php:321 db_printview.php:265 tbl_printview.php:496 +#: db_datadict.php:321 db_printview.php:264 tbl_printview.php:495 msgid "Print" msgstr "" @@ -195,280 +207,243 @@ msgstr "" msgid "View dump (schema) of database" msgstr "" -#: db_export.php:32 db_printview.php:95 db_qbe.php:101 db_structure.php:50 -#: db_tracking.php:34 export.php:352 navigation.php:326 +#: db_export.php:32 db_printview.php:94 db_qbe.php:98 db_structure.php:49 +#: db_tracking.php:30 export.php:350 navigation.php:325 msgid "No tables found in database." msgstr "" -#: db_export.php:42 db_search.php:326 server_export.php:26 +#: db_export.php:42 db_search.php:326 server_export.php:24 msgid "Select All" msgstr "" -#: db_export.php:44 db_search.php:329 server_export.php:28 +#: db_export.php:44 db_search.php:329 server_export.php:26 msgid "Unselect All" msgstr "" -#: db_operations.php:37 tbl_create.php:49 +#: db_operations.php:33 tbl_create.php:47 msgid "The database name is empty!" msgstr "" -#: db_operations.php:235 +#: db_operations.php:231 #, php-format msgid "Database %s has been renamed to %s" msgstr "" -#: db_operations.php:239 +#: db_operations.php:235 #, php-format msgid "Database %s has been copied to %s" msgstr "" -#: db_operations.php:411 +#: db_operations.php:347 msgid "Rename database to" msgstr "" -#: db_operations.php:416 server_processlist.php:56 +#: db_operations.php:352 server_processlist.php:56 msgid "Command" msgstr "" -#: db_operations.php:428 tbl_change.php:1141 +#: db_operations.php:364 tbl_change.php:1039 msgid "and then" msgstr "" -#: db_operations.php:454 +#: db_operations.php:390 msgid "Copy database to" msgstr "" -#: db_operations.php:461 tbl_operations.php:527 tbl_tracking.php:387 +#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:389 +#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:388 +#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "" -#: db_operations.php:471 +#: db_operations.php:407 msgid "CREATE DATABASE before copying" msgstr "" -#: db_operations.php:474 libraries/export/sql.php:51 +#: db_operations.php:410 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 -#: libraries/export/sql.php:81 tbl_operations.php:535 +#: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "%sஐ சேர்க்க" -#: db_operations.php:478 libraries/export/sql.php:77 tbl_operations.php:298 -#: tbl_operations.php:537 +#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "தானாக அதிகரிக்கும் பெறுமதியை சேர்க்க" -#: db_operations.php:482 tbl_operations.php:544 +#: db_operations.php:418 tbl_operations.php:542 msgid "Add constraints" msgstr "தடைகளை சேர்க்க" -#: db_operations.php:495 +#: db_operations.php:431 msgid "Switch to copied database" msgstr "" -#: db_operations.php:536 -msgid "BLOB Repository" -msgstr "" - -#: db_operations.php:539 db_tracking.php:75 libraries/common.lib.php:1357 -#: libraries/server_links.inc.php:48 server_processlist.php:58 -#: tbl_tracking.php:595 test/theme.php:100 -msgid "Status" -msgstr "" - -#: db_operations.php:547 -msgctxt "BLOB repository" -msgid "Enabled" -msgstr "" - -#: db_operations.php:551 -msgid "Disable" -msgstr "" - -#: db_operations.php:561 -msgid "Damaged" -msgstr "" - -#: db_operations.php:565 -msgctxt "BLOB repository" -msgid "Repair" -msgstr "" - -#: db_operations.php:573 -msgctxt "BLOB repository" -msgid "Disabled" -msgstr "" - -#: db_operations.php:577 -msgid "Enable" -msgstr "" - -#: db_operations.php:601 libraries/Index.class.php:447 +#: db_operations.php:451 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 -#: server_collations.php:53 server_collations.php:65 server_databases.php:110 -#: tbl_operations.php:362 tbl_select.php:135 tbl_structure.php:178 -#: tbl_structure.php:766 tbl_tracking.php:274 tbl_tracking.php:325 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 +#: server_collations.php:53 server_collations.php:65 server_databases.php:108 +#: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:177 +#: tbl_structure.php:764 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "" -#: db_operations.php:614 main.php:315 pdf_schema.php:33 +#: db_operations.php:464 pdf_schema.php:32 #, php-format msgid "" -"The additional features for working with linked tables have been " -"deactivated. To find out why click %shere%s." +"The phpMyAdmin configuration storage has been deactivated. To find out why " +"click %shere%s." msgstr "" -#: db_operations.php:647 +#: db_operations.php:497 msgid "Edit PDF Pages" msgstr "" -#: db_printview.php:103 db_tracking.php:71 db_tracking.php:156 +#: db_printview.php:102 db_tracking.php:67 db_tracking.php:152 #: libraries/db_structure.lib.php:37 libraries/export/xml.php:327 -#: libraries/header.inc.php:125 pdf_pages.php:423 server_privileges.php:1657 -#: server_privileges.php:1713 server_privileges.php:1977 -#: server_synchronize.php:422 server_synchronize.php:865 tbl_tracking.php:591 +#: libraries/header.inc.php:125 pdf_pages.php:422 server_privileges.php:1661 +#: server_privileges.php:1717 server_privileges.php:1981 +#: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "" -#: db_printview.php:104 libraries/db_structure.lib.php:47 +#: db_printview.php:103 libraries/db_structure.lib.php:47 #: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 -#: navigation.php:629 navigation.php:651 server_databases.php:121 -#: tbl_printview.php:392 tbl_structure.php:364 tbl_structure.php:776 +#: navigation.php:628 navigation.php:650 server_databases.php:119 +#: tbl_printview.php:391 tbl_structure.php:362 tbl_structure.php:774 msgid "Rows" msgstr "" -#: db_printview.php:108 libraries/db_structure.lib.php:58 tbl_indexes.php:189 +#: db_printview.php:107 libraries/db_structure.lib.php:58 tbl_indexes.php:188 msgid "Size" msgstr "" -#: db_printview.php:161 db_structure.php:456 libraries/export/sql.php:556 +#: db_printview.php:160 db_structure.php:442 libraries/export/sql.php:556 #: libraries/export/sql.php:896 msgid "in use" msgstr "" -#: db_printview.php:186 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:511 pdf_schema.php:1240 tbl_printview.php:432 -#: tbl_structure.php:808 +#: db_printview.php:185 libraries/db_info.inc.php:86 +#: libraries/export/sql.php:511 pdf_schema.php:1239 tbl_printview.php:431 +#: tbl_structure.php:806 msgid "Creation" msgstr "" -#: db_printview.php:195 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:516 pdf_schema.php:1245 tbl_printview.php:442 -#: tbl_structure.php:816 +#: db_printview.php:194 libraries/db_info.inc.php:91 +#: libraries/export/sql.php:516 pdf_schema.php:1244 tbl_printview.php:441 +#: tbl_structure.php:814 msgid "Last update" msgstr "" -#: db_printview.php:204 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:521 pdf_schema.php:1250 tbl_printview.php:452 -#: tbl_structure.php:824 +#: db_printview.php:203 libraries/db_info.inc.php:96 +#: libraries/export/sql.php:521 pdf_schema.php:1249 tbl_printview.php:451 +#: tbl_structure.php:822 msgid "Last check" msgstr "" -#: db_printview.php:221 db_structure.php:479 +#: db_printview.php:220 db_structure.php:465 #, php-format msgid "%s table" msgid_plural "%s tables" msgstr[0] "" msgstr[1] "" -#: db_qbe.php:28 import.php:453 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1980 libraries/sql_query_form.lib.php:138 -#: tbl_operations.php:212 tbl_relation.php:291 tbl_row_action.php:130 -#: view_operations.php:61 +#: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 +#: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "" -#: db_qbe.php:41 +#: db_qbe.php:38 msgid "You have to choose at least one column to display" msgstr "" -#: db_qbe.php:199 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:865 +#: db_qbe.php:196 libraries/db_structure.lib.php:95 +#: libraries/display_tbl.lib.php:864 msgid "Sort" msgstr "" -#: db_qbe.php:208 db_qbe.php:242 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:522 libraries/display_tbl.lib.php:827 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:259 -#: tbl_select.php:311 +#: db_qbe.php:205 db_qbe.php:239 libraries/db_structure.lib.php:102 +#: libraries/display_tbl.lib.php:521 libraries/display_tbl.lib.php:826 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:257 +#: tbl_select.php:310 msgid "Ascending" msgstr "" -#: db_qbe.php:209 db_qbe.php:250 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:527 libraries/display_tbl.lib.php:824 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:260 -#: tbl_select.php:312 +#: db_qbe.php:206 db_qbe.php:247 libraries/db_structure.lib.php:110 +#: libraries/display_tbl.lib.php:526 libraries/display_tbl.lib.php:823 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:258 +#: tbl_select.php:311 msgid "Descending" msgstr "" -#: db_qbe.php:263 db_tracking.php:77 libraries/display_tbl.lib.php:307 -#: tbl_change.php:275 tbl_tracking.php:596 +#: db_qbe.php:260 db_tracking.php:73 libraries/display_tbl.lib.php:306 +#: tbl_change.php:270 tbl_tracking.php:591 msgid "Show" msgstr "" -#: db_qbe.php:299 +#: db_qbe.php:296 msgid "Criteria" msgstr "" -#: db_qbe.php:352 db_qbe.php:434 db_qbe.php:526 db_qbe.php:557 +#: db_qbe.php:349 db_qbe.php:431 db_qbe.php:523 db_qbe.php:554 msgid "Ins" msgstr "" -#: db_qbe.php:356 db_qbe.php:438 db_qbe.php:523 db_qbe.php:554 +#: db_qbe.php:353 db_qbe.php:435 db_qbe.php:520 db_qbe.php:551 msgid "And" msgstr "" -#: db_qbe.php:365 db_qbe.php:446 db_qbe.php:528 db_qbe.php:559 +#: db_qbe.php:362 db_qbe.php:443 db_qbe.php:525 db_qbe.php:556 msgid "Del" msgstr "" -#: db_qbe.php:369 db_qbe.php:450 db_qbe.php:521 db_qbe.php:552 -#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:778 -#: server_privileges.php:297 tbl_change.php:1027 tbl_indexes.php:249 -#: tbl_select.php:285 +#: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 +#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:777 +#: server_privileges.php:296 tbl_change.php:925 tbl_indexes.php:248 +#: tbl_select.php:284 msgid "Or" msgstr "" -#: db_qbe.php:506 +#: db_qbe.php:503 msgid "Modify" msgstr "" -#: db_qbe.php:583 +#: db_qbe.php:580 #, fuzzy #| msgid "Add/Delete Criteria Row" msgid "Add/Delete criteria rows" msgstr "விதி நிரைகளை சேர்க்க/ நீக்குக" -#: db_qbe.php:595 +#: db_qbe.php:592 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Add/Delete columns" msgstr "கள நிரல்களை சேர்க்க/ நீக்குக" -#: db_qbe.php:608 db_qbe.php:633 +#: db_qbe.php:605 db_qbe.php:630 msgid "Update Query" msgstr "" -#: db_qbe.php:616 +#: db_qbe.php:613 msgid "Use Tables" msgstr "" -#: db_qbe.php:639 +#: db_qbe.php:636 #, php-format msgid "SQL query on database %s:" msgstr "" -#: db_qbe.php:933 libraries/common.lib.php:1222 +#: db_qbe.php:930 libraries/common.lib.php:1215 msgid "Submit Query" msgstr "" @@ -507,17 +482,17 @@ msgid_plural "%s matches inside table %s" msgstr[0] "" msgstr[1] "" -#: db_search.php:249 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2831 -#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:49 -#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:466 +#: db_search.php:249 db_structure.php:75 db_structure.php:76 +#: db_structure.php:88 db_structure.php:90 db_structure.php:101 +#: db_structure.php:103 libraries/common.lib.php:2836 +#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 +#: tbl_structure.php:35 tbl_structure.php:47 tbl_structure.php:464 msgid "Browse" msgstr "" -#: db_search.php:254 libraries/display_tbl.lib.php:1164 -#: libraries/display_tbl.lib.php:2055 libraries/sql_query_form.lib.php:453 -#: pdf_pages.php:285 pdf_pages.php:424 pdf_pages.php:460 pdf_pages.php:488 +#: db_search.php:254 libraries/display_tbl.lib.php:1163 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 msgid "Delete" @@ -554,226 +529,232 @@ msgstr "" msgid "Inside column:" msgstr "" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2830 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:75 +#: db_structure.php:79 db_structure.php:80 db_structure.php:92 +#: db_structure.php:93 db_structure.php:105 db_structure.php:106 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 +#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "" -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2827 libraries/common.lib.php:2834 -#: libraries/db_links.inc.php:62 libraries/export/htmlword.php:22 +#: db_structure.php:81 db_structure.php:94 db_structure.php:107 +#: libraries/common.lib.php:2832 libraries/common.lib.php:2839 +#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 -#: libraries/tbl_links.inc.php:55 pmd_general.php:133 -#: server_privileges.php:593 server_replication.php:314 tbl_tracking.php:268 +#: libraries/tbl_links.inc.php:54 pmd_general.php:133 +#: server_privileges.php:592 server_replication.php:313 tbl_tracking.php:263 msgid "Structure" msgstr "" -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:544 db_structure.php:545 db_tracking.php:90 -#: libraries/Index.class.php:482 libraries/common.lib.php:1659 -#: libraries/db_links.inc.php:99 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:126 -#: server_databases.php:351 tbl_structure.php:26 tbl_structure.php:150 -#: tbl_structure.php:151 tbl_structure.php:470 +#: db_structure.php:82 db_structure.php:83 db_structure.php:95 +#: db_structure.php:96 db_structure.php:108 db_structure.php:109 +#: db_structure.php:530 db_structure.php:531 db_tracking.php:86 +#: libraries/Index.class.php:482 libraries/common.lib.php:1663 +#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 +#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 +#: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" msgstr "" -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:542 db_structure.php:543 libraries/common.lib.php:1658 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:104 +#: db_structure.php:84 db_structure.php:85 db_structure.php:97 +#: db_structure.php:98 db_structure.php:110 db_structure.php:111 +#: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 +#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 msgid "Empty" msgstr "" -#: db_structure.php:315 libraries/tbl_links.inc.php:99 +#: db_structure.php:301 libraries/tbl_links.inc.php:98 #, php-format msgid "Table %s has been emptied" msgstr "" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "View %s has been dropped" msgstr "" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "Table %s has been dropped" msgstr "" -#: db_structure.php:332 +#: db_structure.php:318 msgid "Tracking is active." msgstr "" -#: db_structure.php:334 +#: db_structure.php:320 msgid "Tracking is not active." msgstr "" -#: db_structure.php:419 libraries/display_tbl.lib.php:1943 +#: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -#: db_structure.php:433 db_structure.php:447 libraries/header.inc.php:125 -#: libraries/tbl_info.inc.php:65 tbl_structure.php:184 test/theme.php:73 +#: db_structure.php:419 db_structure.php:433 libraries/header.inc.php:125 +#: libraries/tbl_info.inc.php:60 tbl_structure.php:183 test/theme.php:73 msgid "View" msgstr "" -#: db_structure.php:484 libraries/db_structure.lib.php:40 -#: libraries/server_links.inc.php:69 server_replication.php:32 -#: server_replication.php:163 server_status.php:368 +#: db_structure.php:470 libraries/db_structure.lib.php:40 +#: libraries/server_links.inc.php:69 server_replication.php:31 +#: server_replication.php:162 server_status.php:368 msgid "Replication" msgstr "" -#: db_structure.php:488 +#: db_structure.php:474 msgid "Sum" msgstr "" -#: db_structure.php:495 libraries/StorageEngine.class.php:349 +#: db_structure.php:481 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: db_structure.php:523 db_structure.php:540 db_structure.php:541 -#: libraries/display_tbl.lib.php:2080 libraries/display_tbl.lib.php:2085 -#: libraries/mult_submits.inc.php:15 server_databases.php:345 -#: server_databases.php:350 server_privileges.php:1588 tbl_structure.php:454 -#: tbl_structure.php:463 +#: db_structure.php:509 db_structure.php:526 db_structure.php:527 +#: libraries/display_tbl.lib.php:2039 libraries/display_tbl.lib.php:2044 +#: libraries/mult_submits.inc.php:15 server_databases.php:343 +#: server_databases.php:348 server_privileges.php:1592 tbl_structure.php:452 +#: tbl_structure.php:461 msgid "With selected:" msgstr "" -#: db_structure.php:526 libraries/display_tbl.lib.php:2075 -#: server_databases.php:347 server_privileges.php:569 -#: server_privileges.php:1591 tbl_structure.php:457 +#: db_structure.php:512 libraries/display_tbl.lib.php:2034 +#: server_databases.php:345 server_privileges.php:568 +#: server_privileges.php:1595 tbl_structure.php:455 msgid "Check All" msgstr "" -#: db_structure.php:530 libraries/display_tbl.lib.php:2076 -#: libraries/replication_gui.lib.php:35 server_databases.php:349 -#: server_privileges.php:572 server_privileges.php:1595 tbl_structure.php:461 +#: db_structure.php:516 libraries/display_tbl.lib.php:2035 +#: libraries/replication_gui.lib.php:35 server_databases.php:347 +#: server_privileges.php:571 server_privileges.php:1599 tbl_structure.php:459 msgid "Uncheck All" msgstr "" -#: db_structure.php:535 +#: db_structure.php:521 msgid "Check tables having overhead" msgstr "" -#: db_structure.php:546 db_structure.php:547 db_structure.php:598 -#: libraries/display_tbl.lib.php:2179 libraries/mult_submits.inc.php:27 -#: tbl_structure.php:491 tbl_structure.php:493 +#: db_structure.php:532 db_structure.php:533 db_structure.php:584 +#: libraries/display_tbl.lib.php:2138 libraries/mult_submits.inc.php:27 +#: tbl_structure.php:489 tbl_structure.php:491 msgid "Print view" msgstr "" -#: db_structure.php:548 db_structure.php:549 libraries/mult_submits.inc.php:41 -#: tbl_operations.php:580 +#: db_structure.php:534 db_structure.php:535 libraries/mult_submits.inc.php:41 +#: tbl_operations.php:578 msgid "Check table" msgstr "" -#: db_structure.php:550 db_structure.php:551 libraries/mult_submits.inc.php:46 -#: tbl_operations.php:620 tbl_structure.php:708 tbl_structure.php:710 +#: db_structure.php:536 db_structure.php:537 libraries/mult_submits.inc.php:46 +#: tbl_operations.php:618 tbl_structure.php:706 tbl_structure.php:708 msgid "Optimize table" msgstr "" -#: db_structure.php:552 db_structure.php:553 libraries/mult_submits.inc.php:51 -#: tbl_operations.php:610 +#: db_structure.php:538 db_structure.php:539 libraries/mult_submits.inc.php:51 +#: tbl_operations.php:608 msgid "Repair table" msgstr "" -#: db_structure.php:554 db_structure.php:555 libraries/mult_submits.inc.php:56 -#: tbl_operations.php:600 +#: db_structure.php:540 db_structure.php:541 libraries/mult_submits.inc.php:56 +#: tbl_operations.php:598 msgid "Analyze table" msgstr "" -#: db_structure.php:556 db_structure.php:557 libraries/db_links.inc.php:70 -#: libraries/display_export.lib.php:82 libraries/display_tbl.lib.php:2093 -#: libraries/display_tbl.lib.php:2224 libraries/mult_submits.inc.php:61 -#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:81 -#: pmd_pdf.php:83 pmd_pdf.php:108 server_privileges.php:1372 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 +#: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 +#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 +#: pmd_pdf.php:81 pmd_pdf.php:106 server_privileges.php:1376 #: setup/frames/menu.inc.php:22 tbl_row_action.php:58 msgid "Export" msgstr "" -#: db_structure.php:605 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:591 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "" -#: db_tracking.php:65 +#: db_tracking.php:61 msgid "Tracked tables" msgstr "" -#: db_tracking.php:70 libraries/export/htmlword.php:85 +#: db_tracking.php:66 libraries/export/htmlword.php:85 #: libraries/export/latex.php:152 libraries/export/odt.php:112 #: libraries/export/sql.php:339 libraries/export/texytext.php:84 #: libraries/export/xml.php:254 libraries/header.inc.php:105 -#: libraries/header_printview.inc.php:57 server_databases.php:168 -#: server_privileges.php:1652 server_privileges.php:1713 -#: server_privileges.php:1971 server_processlist.php:55 -#: server_synchronize.php:1178 server_synchronize.php:1182 -#: tbl_tracking.php:590 test/theme.php:64 +#: libraries/header_printview.inc.php:57 server_databases.php:166 +#: server_privileges.php:1656 server_privileges.php:1717 +#: server_privileges.php:1975 server_processlist.php:55 +#: server_synchronize.php:1177 server_synchronize.php:1181 +#: tbl_tracking.php:585 test/theme.php:64 msgid "Database" msgstr "" -#: db_tracking.php:72 +#: db_tracking.php:68 msgid "Last version" msgstr "" -#: db_tracking.php:73 tbl_tracking.php:593 +#: db_tracking.php:69 tbl_tracking.php:588 msgid "Created" msgstr "" -#: db_tracking.php:74 tbl_tracking.php:594 +#: db_tracking.php:70 tbl_tracking.php:589 msgid "Updated" msgstr "" -#: db_tracking.php:76 libraries/Index.class.php:439 -#: libraries/db_structure.lib.php:44 server_databases.php:202 -#: server_privileges.php:1534 server_privileges.php:1717 -#: server_privileges.php:2065 tbl_structure.php:186 +#: db_tracking.php:71 libraries/common.lib.php:1361 +#: libraries/server_links.inc.php:48 server_processlist.php:58 +#: tbl_tracking.php:590 test/theme.php:100 +msgid "Status" +msgstr "" + +#: db_tracking.php:72 libraries/Index.class.php:439 +#: libraries/db_structure.lib.php:44 server_databases.php:200 +#: server_privileges.php:1538 server_privileges.php:1721 +#: server_privileges.php:2069 tbl_structure.php:185 msgid "Action" msgstr "செயல்" -#: db_tracking.php:87 db_tracking.php:119 +#: db_tracking.php:83 db_tracking.php:115 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:105 tbl_tracking.php:547 tbl_tracking.php:605 -#: tbl_tracking.php:612 +#: db_tracking.php:101 tbl_tracking.php:542 tbl_tracking.php:600 +#: tbl_tracking.php:607 msgid "active" msgstr "" -#: db_tracking.php:107 tbl_tracking.php:549 tbl_tracking.php:607 -#: tbl_tracking.php:609 +#: db_tracking.php:103 tbl_tracking.php:544 tbl_tracking.php:602 +#: tbl_tracking.php:604 msgid "not active" msgstr "" -#: db_tracking.php:120 +#: db_tracking.php:116 msgid "Versions" msgstr "" -#: db_tracking.php:121 tbl_tracking.php:378 tbl_tracking.php:623 +#: db_tracking.php:117 tbl_tracking.php:373 tbl_tracking.php:618 msgid "Tracking report" msgstr "" -#: db_tracking.php:122 tbl_tracking.php:250 tbl_tracking.php:623 +#: db_tracking.php:118 tbl_tracking.php:245 tbl_tracking.php:618 msgid "Structure snapshot" msgstr "" -#: db_tracking.php:151 +#: db_tracking.php:147 msgid "Untracked tables" msgstr "" -#: db_tracking.php:171 db_tracking.php:173 tbl_structure.php:527 -#: tbl_structure.php:529 +#: db_tracking.php:167 db_tracking.php:169 tbl_structure.php:525 +#: tbl_structure.php:527 msgid "Track table" msgstr "" -#: db_tracking.php:199 +#: db_tracking.php:195 msgid "Database Log" msgstr "" @@ -781,102 +762,102 @@ msgstr "" msgid "Selected export type has to be saved in file!" msgstr "" -#: export.php:153 export.php:178 export.php:620 +#: export.php:152 export.php:177 export.php:615 #, php-format msgid "Insufficient space to save the file %s." msgstr "" -#: export.php:287 +#: export.php:286 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "" -#: export.php:291 export.php:295 +#: export.php:290 export.php:294 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "" -#: export.php:622 +#: export.php:617 #, php-format msgid "Dump has been saved to file %s." msgstr "" -#: import.php:59 +#: 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." msgstr "" -#: import.php:278 import.php:331 libraries/File.class.php:840 -#: libraries/File.class.php:950 +#: import.php:277 import.php:330 libraries/File.class.php:566 +#: libraries/File.class.php:676 msgid "File could not be read" msgstr "" -#: import.php:286 import.php:295 import.php:314 import.php:323 -#: libraries/File.class.php:1020 libraries/File.class.php:1028 -#: libraries/File.class.php:1044 libraries/File.class.php:1052 +#: import.php:285 import.php:294 import.php:313 import.php:322 +#: libraries/File.class.php:746 libraries/File.class.php:754 +#: libraries/File.class.php:770 libraries/File.class.php:778 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." msgstr "" -#: import.php:336 +#: import.php:335 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " "[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." msgstr "" -#: import.php:371 libraries/display_import.lib.php:23 +#: import.php:370 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:396 +#: import.php:395 msgid "The bookmark has been deleted." msgstr "" -#: import.php:400 +#: import.php:399 msgid "Showing bookmark" msgstr "" -#: import.php:402 sql.php:625 +#: import.php:401 sql.php:618 #, php-format msgid "Bookmark %s created" msgstr "" -#: import.php:408 import.php:414 +#: import.php:407 import.php:413 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" -#: import.php:423 +#: import.php:422 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: import.php:425 +#: import.php:424 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." msgstr "" -#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:240 +#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:239 #: user_password.php:110 msgid "Back" msgstr "" -#: index.php:188 +#: index.php:183 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" -#: js/messages.php:25 server_synchronize.php:344 server_synchronize.php:356 -#: server_synchronize.php:372 server_synchronize.php:379 -#: server_synchronize.php:738 server_synchronize.php:766 -#: server_synchronize.php:794 server_synchronize.php:806 +#: js/messages.php:25 server_synchronize.php:343 server_synchronize.php:355 +#: server_synchronize.php:371 server_synchronize.php:378 +#: server_synchronize.php:737 server_synchronize.php:765 +#: server_synchronize.php:793 server_synchronize.php:805 msgid "Click to select" msgstr "" @@ -884,15 +865,15 @@ msgstr "" msgid "Click to unselect" msgstr "" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:88 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:87 msgid "\"DROP DATABASE\" statements are disabled." msgstr "" -#: js/messages.php:30 libraries/mult_submits.inc.php:257 sql.php:187 +#: js/messages.php:30 libraries/mult_submits.inc.php:256 sql.php:186 msgid "Do you really want to " msgstr "" -#: js/messages.php:31 libraries/mult_submits.inc.php:257 sql.php:171 +#: js/messages.php:31 libraries/mult_submits.inc.php:256 sql.php:170 msgid "You are about to DESTROY a complete database!" msgstr "" @@ -921,11 +902,11 @@ msgstr "" msgid "The user name is empty!" msgstr "" -#: js/messages.php:44 server_privileges.php:1228 user_password.php:65 +#: js/messages.php:44 server_privileges.php:1229 user_password.php:65 msgid "The password is empty!" msgstr "" -#: js/messages.php:45 server_privileges.php:1226 user_password.php:68 +#: js/messages.php:45 server_privileges.php:1227 user_password.php:68 msgid "The passwords aren't the same!" msgstr "" @@ -933,27 +914,27 @@ msgstr "" msgid "Cancel" msgstr "விலக்கு" -#: js/messages.php:52 pmd_save_pos.php:53 +#: js/messages.php:52 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "" -#: js/messages.php:53 pmd_relation_upd.php:48 +#: js/messages.php:53 pmd_relation_upd.php:47 msgid "Relation deleted" msgstr "" -#: js/messages.php:54 pmd_relation_new.php:63 +#: js/messages.php:54 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:55 pmd_relation_new.php:85 +#: js/messages.php:55 pmd_relation_new.php:84 msgid "Internal relation added" msgstr "" -#: js/messages.php:56 pmd_relation_new.php:62 pmd_relation_new.php:87 +#: js/messages.php:56 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:57 pmd_relation_new.php:30 +#: js/messages.php:57 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "" @@ -961,13 +942,13 @@ msgstr "" msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:59 libraries/relation.lib.php:94 -#: libraries/relation.lib.php:106 +#: js/messages.php:59 libraries/relation.lib.php:89 +#: libraries/relation.lib.php:101 msgid "General relation features" msgstr "" -#: js/messages.php:59 libraries/relation.lib.php:88 -#: libraries/relation.lib.php:95 +#: js/messages.php:59 libraries/relation.lib.php:83 +#: libraries/relation.lib.php:90 msgid "Disabled" msgstr "" @@ -983,7 +964,7 @@ msgstr "" msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:547 +#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:545 msgid "Choose column to display" msgstr "" @@ -1006,10 +987,10 @@ msgid "Prev" msgstr "" #. l10n: Display text for next month link in calendar -#: js/messages.php:81 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:337 -#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:422 -#: tbl_structure.php:800 +#: js/messages.php:81 libraries/common.lib.php:2358 +#: libraries/common.lib.php:2361 libraries/display_tbl.lib.php:336 +#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 +#: tbl_structure.php:798 msgid "Next" msgstr "" @@ -1081,27 +1062,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1562 +#: js/messages.php:101 libraries/common.lib.php:1566 msgid "Jan" msgstr "தை" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1564 +#: js/messages.php:103 libraries/common.lib.php:1568 msgid "Feb" msgstr "மாசி" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1566 +#: js/messages.php:105 libraries/common.lib.php:1570 msgid "Mar" msgstr "பங்குனி" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1568 +#: js/messages.php:107 libraries/common.lib.php:1572 msgid "Apr" msgstr "சித்திரை" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1570 +#: js/messages.php:109 libraries/common.lib.php:1574 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1109,37 +1090,37 @@ msgid "May" msgstr "வைகாசி" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1572 +#: js/messages.php:111 libraries/common.lib.php:1576 msgid "Jun" msgstr "ஆணி" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1574 +#: js/messages.php:113 libraries/common.lib.php:1578 msgid "Jul" msgstr "ஆடி" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1576 +#: js/messages.php:115 libraries/common.lib.php:1580 msgid "Aug" msgstr "ஆவணி" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1578 +#: js/messages.php:117 libraries/common.lib.php:1582 msgid "Sep" msgstr "புரட்டாதி" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1580 +#: js/messages.php:119 libraries/common.lib.php:1584 msgid "Oct" msgstr "ஐப்பசி" #. l10n: Short month name -#: js/messages.php:121 libraries/common.lib.php:1582 +#: js/messages.php:121 libraries/common.lib.php:1586 msgid "Nov" msgstr "காத்திகை" #. l10n: Short month name -#: js/messages.php:123 libraries/common.lib.php:1584 +#: js/messages.php:123 libraries/common.lib.php:1588 msgid "Dec" msgstr "மார்கழி" @@ -1180,37 +1161,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1587 +#: js/messages.php:136 libraries/common.lib.php:1591 msgid "Sun" msgstr "ஞாயிறு" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1589 +#: js/messages.php:138 libraries/common.lib.php:1593 msgid "Mon" msgstr "திங்கள்" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1591 +#: js/messages.php:140 libraries/common.lib.php:1595 msgid "Tue" msgstr "செவ்வாய்" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1593 +#: js/messages.php:142 libraries/common.lib.php:1597 msgid "Wed" msgstr "புதன்" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1595 +#: js/messages.php:144 libraries/common.lib.php:1599 msgid "Thu" msgstr "வியாழன்" #. l10n: Short week day name -#: js/messages.php:146 libraries/common.lib.php:1597 +#: js/messages.php:146 libraries/common.lib.php:1601 msgid "Fri" msgstr "வெள்ளி" #. l10n: Short week day name -#: js/messages.php:148 libraries/common.lib.php:1599 +#: js/messages.php:148 libraries/common.lib.php:1603 msgid "Sat" msgstr "சனி" @@ -1284,74 +1265,73 @@ msgstr "" msgid "Font size" msgstr "" -#: libraries/File.class.php:336 libraries/File.class.php:424 -#: libraries/File.class.php:561 libraries/File.class.php:700 -msgid "Unknown error in file upload." -msgstr "" - -#: libraries/File.class.php:406 +#: libraries/File.class.php:315 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:409 +#: libraries/File.class.php:318 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:412 +#: libraries/File.class.php:321 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:415 +#: libraries/File.class.php:324 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:418 +#: libraries/File.class.php:327 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:421 +#: libraries/File.class.php:330 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:898 +#: libraries/File.class.php:333 +msgid "Unknown error in file upload." +msgstr "" + +#: libraries/File.class.php:624 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "" -#: libraries/Index.class.php:427 tbl_relation.php:528 +#: libraries/Index.class.php:427 tbl_relation.php:526 msgid "No index defined!" msgstr "" -#: libraries/Index.class.php:432 server_databases.php:131 tbl_tracking.php:315 +#: libraries/Index.class.php:432 server_databases.php:129 tbl_tracking.php:310 msgid "Indexes" msgstr "" #: libraries/Index.class.php:443 libraries/mult_submits.inc.php:102 -#: libraries/tbl_properties.inc.php:518 tbl_structure.php:32 -#: tbl_structure.php:154 tbl_structure.php:158 tbl_structure.php:473 -#: tbl_tracking.php:321 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:31 +#: tbl_structure.php:153 tbl_structure.php:157 tbl_structure.php:471 +#: tbl_tracking.php:316 msgid "Unique" msgstr "" -#: libraries/Index.class.php:444 tbl_tracking.php:322 +#: libraries/Index.class.php:444 tbl_tracking.php:317 msgid "Packed" msgstr "" -#: libraries/Index.class.php:446 tbl_tracking.php:324 +#: libraries/Index.class.php:446 tbl_tracking.php:319 msgid "Cardinality" msgstr "" -#: libraries/Index.class.php:449 tbl_tracking.php:278 tbl_tracking.php:327 +#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322 msgid "Comment" msgstr "" #: libraries/Index.class.php:465 libraries/common.lib.php:609 -#: libraries/common.lib.php:1198 libraries/display_tbl.lib.php:1116 +#: libraries/common.lib.php:1191 libraries/display_tbl.lib.php:1115 #: libraries/import.lib.php:1119 libraries/import.lib.php:1143 -#: pdf_pages.php:284 setup/frames/index.inc.php:124 +#: pdf_pages.php:283 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:349 tbl_row_action.php:68 msgid "Edit" msgstr "" @@ -1373,15 +1353,15 @@ msgid "" msgstr "" #: libraries/List_Database.class.php:430 libraries/server_links.inc.php:40 -#: server_databases.php:87 server_privileges.php:1652 +#: server_databases.php:85 server_privileges.php:1656 #: setup/lib/messages.inc.php:107 test/theme.php:92 msgid "Databases" msgstr "" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:259 libraries/import.lib.php:134 pdf_schema.php:31 -#: pdf_schema.php:231 tbl_change.php:1023 tbl_operations.php:212 -#: tbl_relation.php:289 view_operations.php:61 +#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 +#: tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "" @@ -1406,40 +1386,40 @@ msgid_plural "%1$d rows inserted." msgstr[0] "%1$d வரிசை சேர்க்கப்பட்டுள்ளது" msgstr[1] "%1$d வரிசைகள் சேர்க்கப்பட்டுள்ளன" -#: libraries/StorageEngine.class.php:196 +#: libraries/StorageEngine.class.php:194 msgid "" "There is no detailed status information available for this storage engine." msgstr "" -#: libraries/StorageEngine.class.php:352 +#: libraries/StorageEngine.class.php:354 #, php-format msgid "%s is available on this MySQL server." msgstr "" -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:357 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "" -#: libraries/StorageEngine.class.php:359 +#: libraries/StorageEngine.class.php:361 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "" -#: libraries/Table.class.php:1018 +#: libraries/Table.class.php:1017 msgid "Invalid database" msgstr "" -#: libraries/Table.class.php:1032 tbl_get_field.php:25 +#: libraries/Table.class.php:1031 tbl_get_field.php:25 msgid "Invalid table name" msgstr "" -#: libraries/Table.class.php:1047 +#: libraries/Table.class.php:1046 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "" -#: libraries/Table.class.php:1131 +#: libraries/Table.class.php:1129 #, php-format msgid "Table %s has been renamed to %s" msgstr "" @@ -1457,22 +1437,22 @@ msgstr "" msgid "take it" msgstr "" -#: libraries/Theme_Manager.class.php:114 +#: libraries/Theme_Manager.class.php:109 #, php-format msgid "Default theme %s not found!" msgstr "" -#: libraries/Theme_Manager.class.php:152 +#: libraries/Theme_Manager.class.php:147 #, php-format msgid "Theme %s not found!" msgstr "" -#: libraries/Theme_Manager.class.php:220 +#: libraries/Theme_Manager.class.php:215 #, php-format msgid "Theme path not found for theme %s!" msgstr "" -#: libraries/Theme_Manager.class.php:296 test/theme.php:160 themes.php:20 +#: libraries/Theme_Manager.class.php:291 test/theme.php:160 themes.php:20 #: themes.php:40 msgid "Theme / Style" msgstr "" @@ -1584,19 +1564,19 @@ msgstr "" msgid "Authenticating..." msgstr "" -#: libraries/blobstreaming.lib.php:689 +#: libraries/blobstreaming.lib.php:340 msgid "View image" msgstr "" -#: libraries/blobstreaming.lib.php:693 +#: libraries/blobstreaming.lib.php:344 msgid "Play audio" msgstr "" -#: libraries/blobstreaming.lib.php:698 +#: libraries/blobstreaming.lib.php:349 msgid "View video" msgstr "" -#: libraries/blobstreaming.lib.php:702 +#: libraries/blobstreaming.lib.php:353 msgid "Download file" msgstr "" @@ -1641,7 +1621,7 @@ msgstr "" msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:909 +#: libraries/common.inc.php:908 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" @@ -1666,7 +1646,8 @@ msgstr "en" #: libraries/common.lib.php:425 libraries/common.lib.php:427 #: libraries/common.lib.php:429 libraries/common.lib.php:445 #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 -#: libraries/display_export.lib.php:163 libraries/relation.lib.php:84 +#: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 +#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 #: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" @@ -1681,146 +1662,146 @@ msgstr "" msgid "MySQL said: " msgstr "" -#: libraries/common.lib.php:1136 +#: libraries/common.lib.php:1129 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1174 setup/lib/messages.inc.php:350 +#: libraries/common.lib.php:1167 setup/lib/messages.inc.php:350 msgid "Explain SQL" msgstr "" -#: libraries/common.lib.php:1177 +#: libraries/common.lib.php:1170 msgid "Skip Explain SQL" msgstr "" -#: libraries/common.lib.php:1211 +#: libraries/common.lib.php:1204 msgid "Without PHP Code" msgstr "" -#: libraries/common.lib.php:1214 setup/lib/messages.inc.php:352 +#: libraries/common.lib.php:1207 setup/lib/messages.inc.php:352 msgid "Create PHP Code" msgstr "" -#: libraries/common.lib.php:1232 server_status.php:451 +#: libraries/common.lib.php:1225 server_status.php:451 #: setup/lib/messages.inc.php:351 msgid "Refresh" msgstr "" -#: libraries/common.lib.php:1241 +#: libraries/common.lib.php:1234 msgid "Skip Validate SQL" msgstr "" -#: libraries/common.lib.php:1244 setup/lib/messages.inc.php:353 +#: libraries/common.lib.php:1237 setup/lib/messages.inc.php:353 msgid "Validate SQL" msgstr "" -#: libraries/common.lib.php:1283 +#: libraries/common.lib.php:1287 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1285 +#: libraries/common.lib.php:1289 msgid "Inline" msgstr "உள்வரிசை" -#: libraries/common.lib.php:1339 libraries/common.lib.php:1354 +#: libraries/common.lib.php:1343 libraries/common.lib.php:1358 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1358 libraries/tbl_triggers.lib.php:27 +#: libraries/common.lib.php:1362 libraries/tbl_triggers.lib.php:27 #: server_processlist.php:57 msgid "Time" msgstr "" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "B" msgstr "B" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "KiB" msgstr "KiB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "MiB" msgstr "MiB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "GiB" msgstr "GiB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "TiB" msgstr "TiB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "PiB" msgstr "PiB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "EiB" msgstr "EiB" #. l10n: Thousands separator -#: libraries/common.lib.php:1424 +#: libraries/common.lib.php:1428 msgid "," msgstr "," #. l10n: Decimal separator -#: libraries/common.lib.php:1426 +#: libraries/common.lib.php:1430 msgid "." msgstr "," #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1603 +#: libraries/common.lib.php:1607 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y at %I:%M %p" -#: libraries/common.lib.php:1909 +#: libraries/common.lib.php:1913 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s நாட்கள் %s மணித்தியாலங்கள் %s நிமிடங்கள் மற்றும் %s செக்கன்கள்" -#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 -#: libraries/display_tbl.lib.php:289 server_status.php:718 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 +#: libraries/display_tbl.lib.php:288 server_status.php:718 msgid "Begin" msgstr "" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 -#: libraries/display_tbl.lib.php:290 server_binlog.php:154 +#: libraries/common.lib.php:2328 libraries/common.lib.php:2331 +#: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 -#: libraries/display_tbl.lib.php:352 +#: libraries/common.lib.php:2359 libraries/common.lib.php:2362 +#: libraries/display_tbl.lib.php:351 msgid "End" msgstr "" -#: libraries/common.lib.php:2429 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "" -#: libraries/common.lib.php:2448 +#: libraries/common.lib.php:2453 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2828 libraries/common.lib.php:2835 -#: libraries/db_links.inc.php:67 libraries/export/sql.php:24 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 +#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 -#: libraries/tbl_links.inc.php:59 querywindow.php:89 test/theme.php:96 +#: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "" -#: libraries/common.lib.php:2837 libraries/db_links.inc.php:103 -#: libraries/tbl_links.inc.php:94 libraries/tbl_links.inc.php:116 -#: view_operations.php:88 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: view_operations.php:87 msgid "Operations" msgstr "" -#: libraries/core.lib.php:282 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1836,38 +1817,38 @@ msgstr "" msgid "Name" msgstr "" -#: libraries/db_links.inc.php:44 +#: libraries/db_links.inc.php:43 #, php-format msgid "Database %s has been dropped." msgstr "" -#: libraries/db_links.inc.php:56 libraries/db_links.inc.php:57 -#: libraries/db_links.inc.php:58 +#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 +#: libraries/db_links.inc.php:57 msgid "Database seems to be empty!" msgstr "" -#: libraries/db_links.inc.php:80 libraries/relation.lib.php:142 -#: libraries/tbl_links.inc.php:68 +#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:85 +#: libraries/db_links.inc.php:84 msgid "Query" msgstr "" -#: libraries/db_links.inc.php:90 libraries/relation.lib.php:138 +#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:97 libraries/server_links.inc.php:87 -#: libraries/tbl_links.inc.php:90 pmd_pdf.php:83 pmd_pdf.php:109 +#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "" -#: libraries/db_links.inc.php:110 libraries/server_links.inc.php:65 -#: server_privileges.php:111 server_privileges.php:1714 -#: server_privileges.php:2063 test/theme.php:116 +#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: server_privileges.php:110 server_privileges.php:1718 +#: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" msgstr "" @@ -1879,14 +1860,14 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1847 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1806 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "" -#: libraries/db_structure.lib.php:60 server_databases.php:141 -#: tbl_printview.php:334 tbl_structure.php:681 +#: libraries/db_structure.lib.php:60 server_databases.php:139 +#: tbl_printview.php:333 tbl_structure.php:679 msgid "Overhead" msgstr "" @@ -1903,7 +1884,7 @@ msgstr "" msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "" -#: libraries/dbi/mysql.dbi.lib.php:358 tbl_structure.php:607 +#: libraries/dbi/mysql.dbi.lib.php:358 tbl_structure.php:605 msgid "Details..." msgstr "" @@ -1913,22 +1894,22 @@ msgid "Change password" msgstr "" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:807 +#: libraries/replication_gui.lib.php:347 server_privileges.php:806 msgid "No Password" msgstr "" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1530 server_synchronize.php:1174 +#: libraries/replication_gui.lib.php:351 server_privileges.php:795 +#: server_privileges.php:799 server_privileges.php:810 +#: server_privileges.php:1534 server_synchronize.php:1173 msgid "Password" msgstr "" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:815 server_privileges.php:818 +#: server_privileges.php:814 server_privileges.php:817 msgid "Re-type" msgstr "" @@ -1949,8 +1930,8 @@ msgstr "" msgid "Create" msgstr "" -#: libraries/display_create_database.lib.php:39 server_privileges.php:113 -#: server_privileges.php:1419 server_replication.php:34 +#: libraries/display_create_database.lib.php:39 server_privileges.php:112 +#: server_privileges.php:1423 server_replication.php:33 msgid "No Privileges" msgstr "" @@ -1967,49 +1948,49 @@ msgstr "" msgid "Number of columns" msgstr "" -#: libraries/display_export.lib.php:41 +#: libraries/display_export.lib.php:35 msgid "Could not load export plugins, please check your installation!" msgstr "" -#: libraries/display_export.lib.php:106 +#: libraries/display_export.lib.php:100 #, php-format msgid "Dump %s row(s) starting at row # %s" msgstr "" -#: libraries/display_export.lib.php:114 +#: libraries/display_export.lib.php:108 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:124 setup/lib/messages.inc.php:79 +#: libraries/display_export.lib.php:118 setup/lib/messages.inc.php:79 msgid "Save as file" msgstr "" -#: libraries/display_export.lib.php:133 +#: libraries/display_export.lib.php:127 #, php-format msgid "Save on server in %s directory" msgstr "" -#: libraries/display_export.lib.php:141 setup/lib/messages.inc.php:87 +#: libraries/display_export.lib.php:135 setup/lib/messages.inc.php:87 msgid "Overwrite existing file(s)" msgstr "" -#: libraries/display_export.lib.php:147 +#: libraries/display_export.lib.php:141 msgid "File name template" msgstr "" -#: libraries/display_export.lib.php:151 +#: libraries/display_export.lib.php:145 msgid "server name" msgstr "" -#: libraries/display_export.lib.php:154 +#: libraries/display_export.lib.php:148 msgid "database name" msgstr "" -#: libraries/display_export.lib.php:157 +#: libraries/display_export.lib.php:151 msgid "table name" msgstr "" -#: libraries/display_export.lib.php:161 +#: libraries/display_export.lib.php:155 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2017,39 +1998,39 @@ msgid "" "%3$s. Other text will be kept as is." msgstr "" -#: libraries/display_export.lib.php:202 +#: libraries/display_export.lib.php:196 msgid "remember template" msgstr "" -#: libraries/display_export.lib.php:210 libraries/display_import.lib.php:177 +#: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 #: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 msgid "Character set of the file:" msgstr "" -#: libraries/display_export.lib.php:235 setup/lib/messages.inc.php:81 +#: libraries/display_export.lib.php:229 setup/lib/messages.inc.php:81 msgid "Compression" msgstr "" -#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:196 -#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:529 -#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:574 -#: server_privileges.php:1867 server_processlist.php:74 +#: libraries/display_export.lib.php:234 libraries/display_import.lib.php:196 +#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:528 +#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:573 +#: server_privileges.php:1871 server_processlist.php:74 msgid "None" msgstr "" -#: libraries/display_export.lib.php:247 +#: libraries/display_export.lib.php:241 msgid "\"zipped\"" msgstr "" -#: libraries/display_export.lib.php:253 +#: libraries/display_export.lib.php:247 msgid "\"gzipped\"" msgstr "" -#: libraries/display_export.lib.php:259 +#: libraries/display_export.lib.php:253 msgid "\"bzipped\"" msgstr "" -#: libraries/display_export.lib.php:274 libraries/export/sql.php:42 +#: libraries/display_export.lib.php:268 libraries/export/sql.php:42 #: libraries/import/sql.php:31 msgid "SQL compatibility mode" msgstr "" @@ -2084,12 +2065,12 @@ msgid "File uploads are not allowed on this server." msgstr "" #: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 -#: tbl_change.php:1024 +#: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "" #: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 -#: tbl_change.php:1027 +#: tbl_change.php:925 msgid "web server upload directory" msgstr "" @@ -2168,41 +2149,41 @@ msgstr "" msgid "Language" msgstr "" -#: libraries/display_tbl.lib.php:303 +#: libraries/display_tbl.lib.php:302 #, php-format msgid "%d is not valid row number." msgstr "" -#: libraries/display_tbl.lib.php:309 +#: libraries/display_tbl.lib.php:308 msgid "row(s) starting from row #" msgstr "" -#: libraries/display_tbl.lib.php:315 +#: libraries/display_tbl.lib.php:314 msgid "horizontal" msgstr "" -#: libraries/display_tbl.lib.php:316 +#: libraries/display_tbl.lib.php:315 msgid "horizontal (rotated headers)" msgstr "" -#: libraries/display_tbl.lib.php:317 +#: libraries/display_tbl.lib.php:316 msgid "vertical" msgstr "" -#: libraries/display_tbl.lib.php:323 +#: libraries/display_tbl.lib.php:322 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "" -#: libraries/display_tbl.lib.php:345 +#: libraries/display_tbl.lib.php:344 msgid "This operation could take a long time. Proceed anyway?" msgstr "" -#: libraries/display_tbl.lib.php:511 +#: libraries/display_tbl.lib.php:510 msgid "Sort by key" msgstr "" -#: libraries/display_tbl.lib.php:554 libraries/export/codegen.php:38 +#: libraries/display_tbl.lib.php:553 libraries/export/codegen.php:38 #: libraries/export/csv.php:29 libraries/export/excel.php:34 #: libraries/export/htmlword.php:28 libraries/export/latex.php:32 #: libraries/export/mediawiki.php:21 libraries/export/ods.php:26 @@ -2212,97 +2193,97 @@ msgstr "" #: libraries/export/xlsx.php:26 libraries/export/xml.php:23 #: libraries/export/yaml.php:27 libraries/import.lib.php:1114 #: libraries/import.lib.php:1136 libraries/import/csv.php:31 -#: libraries/import/docsql.php:33 libraries/import/ldi.php:46 +#: libraries/import/docsql.php:32 libraries/import/ldi.php:46 #: libraries/import/ods.php:30 libraries/import/sql.php:19 #: libraries/import/xls.php:25 libraries/import/xlsx.php:25 -#: libraries/import/xml.php:25 tbl_select.php:264 tbl_structure.php:752 +#: libraries/import/xml.php:25 tbl_select.php:263 tbl_structure.php:750 msgid "Options" msgstr "" -#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:569 +#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:568 msgid "Partial Texts" msgstr "" -#: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:573 +#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:572 msgid "Full Texts" msgstr "" -#: libraries/display_tbl.lib.php:586 +#: libraries/display_tbl.lib.php:585 msgid "Relational key" msgstr "" -#: libraries/display_tbl.lib.php:587 +#: libraries/display_tbl.lib.php:586 msgid "Relational display column" msgstr "" -#: libraries/display_tbl.lib.php:594 +#: libraries/display_tbl.lib.php:593 msgid "Show binary contents" msgstr "" -#: libraries/display_tbl.lib.php:596 +#: libraries/display_tbl.lib.php:595 msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:598 +#: libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "" -#: libraries/display_tbl.lib.php:606 pmd_general.php:140 tbl_change.php:312 -#: tbl_change.php:318 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:307 +#: tbl_change.php:313 msgid "Hide" msgstr "" -#: libraries/display_tbl.lib.php:606 libraries/relation.lib.php:122 -#: libraries/tbl_properties.inc.php:143 transformation_overview.php:46 +#: libraries/display_tbl.lib.php:605 libraries/relation.lib.php:117 +#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46 msgid "Browser transformation" msgstr "" -#: libraries/display_tbl.lib.php:1125 libraries/display_tbl.lib.php:1129 -#: libraries/display_tbl.lib.php:1131 +#: libraries/display_tbl.lib.php:1124 libraries/display_tbl.lib.php:1128 +#: libraries/display_tbl.lib.php:1130 msgid "Execute bookmarked query" msgstr "" -#: libraries/display_tbl.lib.php:1144 libraries/display_tbl.lib.php:1156 +#: libraries/display_tbl.lib.php:1143 libraries/display_tbl.lib.php:1155 msgid "The row has been deleted" msgstr "" -#: libraries/display_tbl.lib.php:1183 libraries/display_tbl.lib.php:2055 +#: libraries/display_tbl.lib.php:1182 libraries/display_tbl.lib.php:2014 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "" -#: libraries/display_tbl.lib.php:1933 +#: libraries/display_tbl.lib.php:1892 msgid "in query" msgstr "" -#: libraries/display_tbl.lib.php:1951 +#: libraries/display_tbl.lib.php:1910 msgid "Showing rows" msgstr "" -#: libraries/display_tbl.lib.php:1961 +#: libraries/display_tbl.lib.php:1920 msgid "total" msgstr "" -#: libraries/display_tbl.lib.php:1969 sql.php:523 +#: libraries/display_tbl.lib.php:1928 sql.php:522 #, php-format msgid "Query took %01.4f sec" msgstr "" -#: libraries/display_tbl.lib.php:2088 libraries/mult_submits.inc.php:112 -#: querywindow.php:115 querywindow.php:119 querywindow.php:122 -#: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:469 +#: libraries/display_tbl.lib.php:2047 libraries/mult_submits.inc.php:112 +#: querywindow.php:114 querywindow.php:118 querywindow.php:121 +#: tbl_structure.php:23 tbl_structure.php:148 tbl_structure.php:467 msgid "Change" msgstr "" -#: libraries/display_tbl.lib.php:2158 +#: libraries/display_tbl.lib.php:2117 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2186 +#: libraries/display_tbl.lib.php:2145 msgid "Print view (with full texts)" msgstr "" -#: libraries/display_tbl.lib.php:2359 +#: libraries/display_tbl.lib.php:2318 msgid "Link not found" msgstr "" @@ -2354,9 +2335,9 @@ msgstr "" msgid "Buffer Pool Usage" msgstr "" -#: libraries/engines/innodb.lib.php:168 server_databases.php:136 -#: server_databases.php:304 server_status.php:524 server_status.php:585 -#: server_status.php:606 tbl_printview.php:349 tbl_structure.php:695 +#: libraries/engines/innodb.lib.php:168 server_databases.php:134 +#: server_databases.php:302 server_status.php:524 server_status.php:585 +#: server_status.php:606 tbl_printview.php:348 tbl_structure.php:693 msgid "Total" msgstr "" @@ -2478,6 +2459,77 @@ msgid "" "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." msgstr "" +#: libraries/engines/pbms.lib.php:31 +msgid "Garbage Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:32 +msgid "The percentage of garbage in a repository file before it is compacted." +msgstr "" + +#: libraries/engines/pbms.lib.php:36 libraries/replication_gui.lib.php:69 +#: server_synchronize.php:1161 +msgid "Port" +msgstr "" + +#: libraries/engines/pbms.lib.php:37 +msgid "" +"The port for the PBMS stream-based communications. Setting this value to 0 " +"will disable HTTP communication with the daemon." +msgstr "" + +#: libraries/engines/pbms.lib.php:41 +msgid "Repository Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:42 +msgid "" +"The maximum size of a BLOB repository file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:46 +msgid "Temp Blob Timeout" +msgstr "" + +#: libraries/engines/pbms.lib.php:47 +msgid "" +"The timeout, in seconds, for temporary BLOBs. Uploaded BLOB data is removed " +"after this time, unless they are referenced by a record in the database." +msgstr "" + +#: libraries/engines/pbms.lib.php:51 +msgid "Temp Log Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:52 +msgid "" +"The maximum size of a temporary BLOB log file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:56 +msgid "Max Keep Alive" +msgstr "" + +#: libraries/engines/pbms.lib.php:57 +msgid "" +"The timeout for inactive connection with the keep-alive flag set. After this " +"time the connection will be closed. The time-out is in milliseconds (1/1000)." +msgstr "" + +#: libraries/engines/pbms.lib.php:61 +msgid "Metadata Headers" +msgstr "" + +#: libraries/engines/pbms.lib.php:62 +msgid "" +"A \":\" delimited list of metadata headers to be used to initialize the " +"pbms_metadata_header table when a database is created." +msgstr "" + #: libraries/engines/pbxt.lib.php:22 msgid "Index cache size" msgstr "" @@ -2601,7 +2653,7 @@ msgid "" msgstr "" #: libraries/export/codegen.php:36 setup/lib/messages.inc.php:85 -#: tbl_printview.php:374 tbl_structure.php:736 +#: tbl_printview.php:373 tbl_structure.php:734 msgid "Format" msgstr "" @@ -2664,9 +2716,9 @@ msgstr "" #: libraries/export/htmlword.php:23 libraries/export/latex.php:59 #: libraries/export/latex.php:205 libraries/export/odt.php:47 #: libraries/export/sql.php:105 libraries/export/sql.php:865 -#: libraries/export/texytext.php:27 server_databases.php:126 -#: server_privileges.php:576 server_replication.php:315 tbl_printview.php:315 -#: tbl_structure.php:664 +#: libraries/export/texytext.php:27 server_databases.php:124 +#: server_privileges.php:575 server_replication.php:314 tbl_printview.php:314 +#: tbl_structure.php:662 msgid "Data" msgstr "" @@ -2713,13 +2765,13 @@ msgid "Label key" msgstr "" #: libraries/export/latex.php:46 libraries/export/odt.php:34 -#: libraries/export/sql.php:90 tbl_relation.php:398 +#: libraries/export/sql.php:90 tbl_relation.php:396 msgid "Relations" msgstr "" #: libraries/export/latex.php:52 libraries/export/odt.php:40 #: libraries/export/odt.php:317 libraries/export/sql.php:94 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "" @@ -2727,10 +2779,10 @@ msgstr "" #: libraries/export/xml.php:101 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1529 server_privileges.php:2061 -#: server_processlist.php:54 server_synchronize.php:1158 +#: libraries/replication_gui.lib.php:331 server_privileges.php:730 +#: server_privileges.php:733 server_privileges.php:789 +#: server_privileges.php:1533 server_privileges.php:2065 +#: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "" @@ -2917,8 +2969,8 @@ msgstr "" msgid "Export contents" msgstr "" -#: libraries/footer.inc.php:182 libraries/footer.inc.php:193 -#: libraries/footer.inc.php:196 +#: libraries/footer.inc.php:180 libraries/footer.inc.php:191 +#: libraries/footer.inc.php:194 msgid "Open new phpMyAdmin window" msgstr "" @@ -2934,7 +2986,7 @@ msgstr "" msgid "Generated by" msgstr "" -#: libraries/import.lib.php:151 sql.php:519 tbl_change.php:180 +#: libraries/import.lib.php:151 sql.php:518 tbl_change.php:175 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" @@ -2990,7 +3042,7 @@ msgstr "" msgid "Column names in first row" msgstr "" -#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:501 +#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:500 #: view_create.php:147 msgid "Column names" msgstr "" @@ -3016,12 +3068,12 @@ msgstr "" msgid "Invalid column count in CSV input on line %d." msgstr "" -#: libraries/import/docsql.php:28 +#: libraries/import/docsql.php:27 msgid "DocSQL" msgstr "" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 -#: server_synchronize.php:427 server_synchronize.php:870 +#: libraries/import/docsql.php:30 libraries/tbl_properties.inc.php:616 +#: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "" @@ -3075,26 +3127,26 @@ msgstr "" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:512 -#: tbl_structure.php:28 tbl_structure.php:152 tbl_structure.php:156 -#: tbl_structure.php:472 +#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:511 +#: tbl_structure.php:27 tbl_structure.php:151 tbl_structure.php:155 +#: tbl_structure.php:470 msgid "Primary" msgstr "" #: libraries/mult_submits.inc.php:97 libraries/tbl_properties.inc.php:115 -#: libraries/tbl_properties.inc.php:524 tbl_printview.php:324 -#: tbl_structure.php:30 tbl_structure.php:153 tbl_structure.php:157 -#: tbl_structure.php:474 tbl_structure.php:672 +#: libraries/tbl_properties.inc.php:523 tbl_printview.php:323 +#: tbl_structure.php:29 tbl_structure.php:152 tbl_structure.php:156 +#: tbl_structure.php:472 tbl_structure.php:670 msgid "Index" msgstr "" -#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:530 -#: tbl_structure.php:34 tbl_structure.php:155 tbl_structure.php:159 -#: tbl_structure.php:477 +#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:529 +#: tbl_structure.php:33 tbl_structure.php:154 tbl_structure.php:158 +#: tbl_structure.php:475 msgid "Fulltext" msgstr "" -#: libraries/mult_submits.inc.php:434 tbl_replace.php:330 +#: libraries/mult_submits.inc.php:433 tbl_replace.php:330 msgid "No change" msgstr "" @@ -3102,190 +3154,190 @@ msgstr "" msgid "Charset" msgstr "" -#: libraries/mysql_charsets.lib.php:210 libraries/mysql_charsets.lib.php:411 -#: tbl_change.php:515 +#: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 +#: tbl_change.php:510 msgid "Binary" msgstr "" -#: libraries/mysql_charsets.lib.php:222 +#: libraries/mysql_charsets.lib.php:214 msgid "Bulgarian" msgstr "" -#: libraries/mysql_charsets.lib.php:226 libraries/mysql_charsets.lib.php:351 +#: libraries/mysql_charsets.lib.php:218 libraries/mysql_charsets.lib.php:343 msgid "Simplified Chinese" msgstr "" -#: libraries/mysql_charsets.lib.php:228 libraries/mysql_charsets.lib.php:371 +#: libraries/mysql_charsets.lib.php:220 libraries/mysql_charsets.lib.php:363 msgid "Traditional Chinese" msgstr "" -#: libraries/mysql_charsets.lib.php:232 libraries/mysql_charsets.lib.php:418 +#: libraries/mysql_charsets.lib.php:224 libraries/mysql_charsets.lib.php:410 msgid "case-insensitive" msgstr "" -#: libraries/mysql_charsets.lib.php:235 libraries/mysql_charsets.lib.php:420 +#: libraries/mysql_charsets.lib.php:227 libraries/mysql_charsets.lib.php:412 msgid "case-sensitive" msgstr "" -#: libraries/mysql_charsets.lib.php:238 +#: libraries/mysql_charsets.lib.php:230 msgid "Croatian" msgstr "" -#: libraries/mysql_charsets.lib.php:241 +#: libraries/mysql_charsets.lib.php:233 msgid "Czech" msgstr "" -#: libraries/mysql_charsets.lib.php:244 +#: libraries/mysql_charsets.lib.php:236 msgid "Danish" msgstr "" -#: libraries/mysql_charsets.lib.php:247 +#: libraries/mysql_charsets.lib.php:239 msgid "English" msgstr "" -#: libraries/mysql_charsets.lib.php:250 +#: libraries/mysql_charsets.lib.php:242 msgid "Esperanto" msgstr "" -#: libraries/mysql_charsets.lib.php:253 +#: libraries/mysql_charsets.lib.php:245 msgid "Estonian" msgstr "" -#: libraries/mysql_charsets.lib.php:256 libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:248 libraries/mysql_charsets.lib.php:251 msgid "German" msgstr "" -#: libraries/mysql_charsets.lib.php:256 +#: libraries/mysql_charsets.lib.php:248 msgid "dictionary" msgstr "" -#: libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:251 msgid "phone book" msgstr "" -#: libraries/mysql_charsets.lib.php:262 +#: libraries/mysql_charsets.lib.php:254 msgid "Hungarian" msgstr "" -#: libraries/mysql_charsets.lib.php:265 +#: libraries/mysql_charsets.lib.php:257 msgid "Icelandic" msgstr "" -#: libraries/mysql_charsets.lib.php:268 libraries/mysql_charsets.lib.php:358 +#: libraries/mysql_charsets.lib.php:260 libraries/mysql_charsets.lib.php:350 msgid "Japanese" msgstr "" -#: libraries/mysql_charsets.lib.php:271 +#: libraries/mysql_charsets.lib.php:263 msgid "Latvian" msgstr "" -#: libraries/mysql_charsets.lib.php:274 +#: libraries/mysql_charsets.lib.php:266 msgid "Lithuanian" msgstr "" -#: libraries/mysql_charsets.lib.php:277 libraries/mysql_charsets.lib.php:380 +#: libraries/mysql_charsets.lib.php:269 libraries/mysql_charsets.lib.php:372 msgid "Korean" msgstr "" -#: libraries/mysql_charsets.lib.php:280 +#: libraries/mysql_charsets.lib.php:272 msgid "Persian" msgstr "" -#: libraries/mysql_charsets.lib.php:283 +#: libraries/mysql_charsets.lib.php:275 msgid "Polish" msgstr "" -#: libraries/mysql_charsets.lib.php:286 libraries/mysql_charsets.lib.php:334 +#: libraries/mysql_charsets.lib.php:278 libraries/mysql_charsets.lib.php:326 msgid "West European" msgstr "" -#: libraries/mysql_charsets.lib.php:289 +#: libraries/mysql_charsets.lib.php:281 msgid "Romanian" msgstr "" -#: libraries/mysql_charsets.lib.php:292 +#: libraries/mysql_charsets.lib.php:284 msgid "Slovak" msgstr "" -#: libraries/mysql_charsets.lib.php:295 +#: libraries/mysql_charsets.lib.php:287 msgid "Slovenian" msgstr "" -#: libraries/mysql_charsets.lib.php:298 +#: libraries/mysql_charsets.lib.php:290 msgid "Spanish" msgstr "" -#: libraries/mysql_charsets.lib.php:301 +#: libraries/mysql_charsets.lib.php:293 msgid "Traditional Spanish" msgstr "" -#: libraries/mysql_charsets.lib.php:304 libraries/mysql_charsets.lib.php:401 +#: libraries/mysql_charsets.lib.php:296 libraries/mysql_charsets.lib.php:393 msgid "Swedish" msgstr "" -#: libraries/mysql_charsets.lib.php:307 libraries/mysql_charsets.lib.php:404 +#: libraries/mysql_charsets.lib.php:299 libraries/mysql_charsets.lib.php:396 msgid "Thai" msgstr "" -#: libraries/mysql_charsets.lib.php:310 libraries/mysql_charsets.lib.php:398 +#: libraries/mysql_charsets.lib.php:302 libraries/mysql_charsets.lib.php:390 msgid "Turkish" msgstr "" -#: libraries/mysql_charsets.lib.php:313 libraries/mysql_charsets.lib.php:395 +#: libraries/mysql_charsets.lib.php:305 libraries/mysql_charsets.lib.php:387 msgid "Ukrainian" msgstr "" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 msgid "Unicode" msgstr "" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 -#: libraries/mysql_charsets.lib.php:334 libraries/mysql_charsets.lib.php:341 -#: libraries/mysql_charsets.lib.php:363 libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 +#: libraries/mysql_charsets.lib.php:326 libraries/mysql_charsets.lib.php:333 +#: libraries/mysql_charsets.lib.php:355 libraries/mysql_charsets.lib.php:366 msgid "multilingual" msgstr "" -#: libraries/mysql_charsets.lib.php:341 +#: libraries/mysql_charsets.lib.php:333 msgid "Central European" msgstr "" -#: libraries/mysql_charsets.lib.php:346 +#: libraries/mysql_charsets.lib.php:338 msgid "Russian" msgstr "" -#: libraries/mysql_charsets.lib.php:363 +#: libraries/mysql_charsets.lib.php:355 msgid "Baltic" msgstr "" -#: libraries/mysql_charsets.lib.php:368 +#: libraries/mysql_charsets.lib.php:360 msgid "Armenian" msgstr "" -#: libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:366 msgid "Cyrillic" msgstr "" -#: libraries/mysql_charsets.lib.php:377 +#: libraries/mysql_charsets.lib.php:369 msgid "Arabic" msgstr "" -#: libraries/mysql_charsets.lib.php:383 +#: libraries/mysql_charsets.lib.php:375 msgid "Hebrew" msgstr "" -#: libraries/mysql_charsets.lib.php:386 +#: libraries/mysql_charsets.lib.php:378 msgid "Georgian" msgstr "" -#: libraries/mysql_charsets.lib.php:389 +#: libraries/mysql_charsets.lib.php:381 msgid "Greek" msgstr "" -#: libraries/mysql_charsets.lib.php:392 +#: libraries/mysql_charsets.lib.php:384 msgid "Czech-Slovak" msgstr "" -#: libraries/mysql_charsets.lib.php:407 libraries/mysql_charsets.lib.php:414 +#: libraries/mysql_charsets.lib.php:399 libraries/mysql_charsets.lib.php:406 msgid "unknown" msgstr "" @@ -3311,67 +3363,67 @@ msgstr "" msgid "This format has no options" msgstr "" -#: libraries/relation.lib.php:82 +#: libraries/relation.lib.php:77 msgid "not OK" msgstr "" -#: libraries/relation.lib.php:86 pmd_general.php:339 +#: libraries/relation.lib.php:81 pmd_general.php:339 msgid "OK" msgstr "" -#: libraries/relation.lib.php:87 +#: libraries/relation.lib.php:82 msgid "Enabled" msgstr "" -#: libraries/relation.lib.php:110 +#: libraries/relation.lib.php:105 msgid "Display Features" msgstr "" -#: libraries/relation.lib.php:116 +#: libraries/relation.lib.php:111 msgid "Creation of PDFs" msgstr "" -#: libraries/relation.lib.php:120 +#: libraries/relation.lib.php:115 msgid "Displaying Column Comments" msgstr "" -#: libraries/relation.lib.php:125 +#: libraries/relation.lib.php:120 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" -#: libraries/relation.lib.php:130 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 msgid "Bookmarked SQL query" msgstr "" -#: libraries/relation.lib.php:134 querywindow.php:99 querywindow.php:207 +#: libraries/relation.lib.php:129 querywindow.php:98 querywindow.php:205 msgid "SQL history" msgstr "" -#: libraries/relation.lib.php:146 +#: libraries/relation.lib.php:141 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:148 +#: libraries/relation.lib.php:143 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" -#: libraries/relation.lib.php:149 +#: libraries/relation.lib.php:144 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:150 +#: libraries/relation.lib.php:145 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:151 +#: libraries/relation.lib.php:146 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1158 +#: libraries/relation.lib.php:1153 msgid "no description" msgstr "" @@ -3379,7 +3431,7 @@ msgstr "" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:53 server_replication.php:346 +#: libraries/replication_gui.lib.php:53 server_replication.php:345 msgid "Change or reconfigure master server" msgstr "" @@ -3391,16 +3443,12 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:711 -#: server_privileges.php:714 server_privileges.php:721 -#: server_synchronize.php:1170 +#: libraries/replication_gui.lib.php:261 server_privileges.php:710 +#: server_privileges.php:713 server_privileges.php:720 +#: server_synchronize.php:1169 msgid "User name" msgstr "" -#: libraries/replication_gui.lib.php:69 server_synchronize.php:1162 -msgid "Port" -msgstr "" - #: libraries/replication_gui.lib.php:105 msgid "Master status" msgstr "" @@ -3415,8 +3463,8 @@ msgid "Variable" msgstr "" #: libraries/replication_gui.lib.php:117 server_status.php:737 -#: tbl_change.php:322 tbl_printview.php:368 tbl_select.php:137 -#: tbl_structure.php:728 +#: tbl_change.php:317 tbl_printview.php:367 tbl_select.php:136 +#: tbl_structure.php:726 msgid "Value" msgstr "" @@ -3430,38 +3478,38 @@ msgid "" "this list." msgstr "" -#: libraries/replication_gui.lib.php:242 server_replication.php:193 +#: libraries/replication_gui.lib.php:242 server_replication.php:192 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:256 server_privileges.php:716 +#: libraries/replication_gui.lib.php:256 server_privileges.php:715 msgid "Any user" msgstr "" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1920 server_privileges.php:1950 +#: libraries/replication_gui.lib.php:348 server_privileges.php:716 +#: server_privileges.php:783 server_privileges.php:807 +#: server_privileges.php:1924 server_privileges.php:1954 msgid "Use text field" msgstr "" -#: libraries/replication_gui.lib.php:304 server_privileges.php:764 +#: libraries/replication_gui.lib.php:304 server_privileges.php:763 msgid "Any host" msgstr "" -#: libraries/replication_gui.lib.php:308 server_privileges.php:768 +#: libraries/replication_gui.lib.php:308 server_privileges.php:767 msgid "Local" msgstr "" -#: libraries/replication_gui.lib.php:314 server_privileges.php:773 +#: libraries/replication_gui.lib.php:314 server_privileges.php:772 msgid "This Host" msgstr "" -#: libraries/replication_gui.lib.php:320 server_privileges.php:779 +#: libraries/replication_gui.lib.php:320 server_privileges.php:778 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:333 server_privileges.php:792 +#: libraries/replication_gui.lib.php:333 server_privileges.php:791 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3487,8 +3535,8 @@ msgstr "" msgid "Servers" msgstr "" -#: libraries/server_links.inc.php:52 server_engines.php:111 -#: server_engines.php:115 server_status.php:414 test/theme.php:104 +#: libraries/server_links.inc.php:52 server_engines.php:125 +#: server_engines.php:129 server_status.php:414 test/theme.php:104 msgid "Variables" msgstr "" @@ -3509,12 +3557,12 @@ msgstr "" msgid "Processes" msgstr "" -#: libraries/server_links.inc.php:91 server_synchronize.php:1091 -#: server_synchronize.php:1099 +#: libraries/server_links.inc.php:91 server_synchronize.php:1090 +#: server_synchronize.php:1098 msgid "Synchronize" msgstr "" -#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1109 +#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1108 msgid "Source database" msgstr "" @@ -3532,7 +3580,7 @@ msgstr "" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1111 +#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1110 msgid "Target database" msgstr "" @@ -3550,11 +3598,11 @@ msgstr "" msgid "Columns" msgstr "" -#: libraries/sql_query_form.lib.php:342 sql.php:664 sql.php:665 sql.php:682 +#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql_query_form.lib.php:349 sql.php:676 +#: libraries/sql_query_form.lib.php:349 sql.php:669 msgid "Let every user access this bookmark" msgstr "" @@ -3636,12 +3684,12 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" -#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:139 -#: libraries/tbl_links.inc.php:140 +#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 +#: libraries/tbl_links.inc.php:139 msgid "Table seems to be empty!" msgstr "" -#: libraries/tbl_links.inc.php:148 +#: libraries/tbl_links.inc.php:147 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" @@ -3664,23 +3712,23 @@ msgid "" "escaping or quotes, using this format: a" msgstr "" -#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1263 -#: pdf_schema.php:1284 tbl_printview.php:142 tbl_structure.php:179 +#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1262 +#: pdf_schema.php:1283 tbl_printview.php:141 tbl_structure.php:178 msgid "Attributes" msgstr "" -#: libraries/tbl_properties.inc.php:136 +#: libraries/tbl_properties.inc.php:135 #, php-format msgid "" "For a list of available transformation options and their MIME type " "transformations, click on %stransformation descriptions%s" msgstr "" -#: libraries/tbl_properties.inc.php:144 +#: libraries/tbl_properties.inc.php:143 msgid "Transformation options" msgstr "" -#: libraries/tbl_properties.inc.php:145 +#: libraries/tbl_properties.inc.php:144 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
                            If you ever need to put a backslash (\"\\\") or a single " @@ -3688,45 +3736,45 @@ msgid "" "'\\\\xyz' or 'a\\'b')." msgstr "" -#: libraries/tbl_properties.inc.php:392 +#: libraries/tbl_properties.inc.php:391 msgctxt "for default" msgid "None" msgstr "" -#: libraries/tbl_properties.inc.php:393 +#: libraries/tbl_properties.inc.php:392 msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:579 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:578 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
                            Please ask the " "author what %s does." msgstr "" -#: libraries/tbl_properties.inc.php:725 server_engines.php:57 -#: tbl_operations.php:354 +#: libraries/tbl_properties.inc.php:724 server_engines.php:56 +#: tbl_operations.php:352 msgid "Storage Engine" msgstr "" -#: libraries/tbl_properties.inc.php:754 +#: libraries/tbl_properties.inc.php:753 msgid "PARTITION definition" msgstr "" -#: libraries/tbl_properties.inc.php:775 pdf_pages.php:502 +#: libraries/tbl_properties.inc.php:774 pdf_pages.php:501 #: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214 -#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1124 tbl_indexes.php:247 -#: tbl_relation.php:565 +#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1022 tbl_indexes.php:246 +#: tbl_relation.php:563 msgid "Save" msgstr "" -#: libraries/tbl_properties.inc.php:779 tbl_structure.php:541 +#: libraries/tbl_properties.inc.php:778 tbl_structure.php:539 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "%s களத்தை சேர்க்க" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:535 +#: libraries/tbl_properties.inc.php:782 tbl_structure.php:533 #, fuzzy #| msgid "You have added a new user." msgid "You have to add at least one column." @@ -3851,8 +3899,8 @@ msgstr "" msgid "Custom color" msgstr "" -#: main.php:162 pdf_pages.php:362 setup/lib/FormDisplay.tpl.php:216 -#: tbl_change.php:1173 +#: main.php:162 pdf_pages.php:361 setup/lib/FormDisplay.tpl.php:216 +#: tbl_change.php:1071 msgid "Reset" msgstr "" @@ -3860,8 +3908,8 @@ msgstr "" msgid "Protocol version" msgstr "" -#: main.php:188 server_privileges.php:1381 server_privileges.php:1528 -#: server_privileges.php:1642 server_privileges.php:2060 +#: main.php:188 server_privileges.php:1385 server_privileges.php:1532 +#: server_privileges.php:1646 server_privileges.php:2064 #: server_processlist.php:53 msgid "User" msgstr "" @@ -3935,21 +3983,28 @@ msgid "" "has been configured." msgstr "" -#: main.php:330 +#: main.php:314 +#, php-format +msgid "" +"The additional features for working with linked tables have been " +"deactivated. To find out why click %shere%s." +msgstr "" + +#: main.php:329 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:345 +#: main.php:344 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: main.php:357 +#: main.php:356 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -3960,96 +4015,96 @@ msgstr "" msgid "Reload navigation frame" msgstr "" -#: navigation.php:204 server_databases.php:370 server_synchronize.php:1190 +#: navigation.php:203 server_databases.php:368 server_synchronize.php:1189 msgid "No databases" msgstr "" -#: navigation.php:298 +#: navigation.php:297 msgid "Filter" msgstr "" -#: navigation.php:299 setup/frames/index.inc.php:218 +#: navigation.php:298 setup/frames/index.inc.php:218 #: setup/lib/messages.inc.php:41 msgid "Clear" msgstr "" -#: navigation.php:330 navigation.php:331 +#: navigation.php:329 navigation.php:330 msgctxt "short form" msgid "Create table" msgstr "" -#: navigation.php:333 navigation.php:495 +#: navigation.php:332 navigation.php:494 msgid "Please select a database" msgstr "" -#: pdf_pages.php:40 pdf_pages.php:46 pdf_pages.php:52 pdf_pages.php:57 +#: pdf_pages.php:39 pdf_pages.php:45 pdf_pages.php:51 pdf_pages.php:56 #, php-format msgid "%s table not found or not set in %s" msgstr "" -#: pdf_pages.php:265 +#: pdf_pages.php:264 msgid "Please choose a page to edit" msgstr "" -#: pdf_pages.php:303 pmd_pdf.php:113 +#: pdf_pages.php:302 pmd_pdf.php:111 msgid "Create a page" msgstr "" -#: pdf_pages.php:309 +#: pdf_pages.php:308 msgid "Page name" msgstr "" -#: pdf_pages.php:313 +#: pdf_pages.php:312 msgid "Automatic layout based on" msgstr "" -#: pdf_pages.php:315 +#: pdf_pages.php:314 msgid "Internal relations" msgstr "" -#: pdf_pages.php:338 +#: pdf_pages.php:337 msgid "Select Tables" msgstr "" -#: pdf_pages.php:361 +#: pdf_pages.php:360 msgid "Toggle scratchboard" msgstr "" -#: pdf_pages.php:524 +#: pdf_pages.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" msgstr "" -#: pdf_schema.php:635 +#: pdf_schema.php:634 #, php-format msgid "The %s table doesn't exist!" msgstr "" -#: pdf_schema.php:671 +#: pdf_schema.php:670 #, php-format msgid "Please configure the coordinates for table %s" msgstr "" -#: pdf_schema.php:994 +#: pdf_schema.php:993 #, php-format msgid "Schema of the %s database - Page %s" msgstr "" -#: pdf_schema.php:1012 +#: pdf_schema.php:1011 msgid "No tables" msgstr "" -#: pdf_schema.php:1031 pdf_schema.php:1140 +#: pdf_schema.php:1030 pdf_schema.php:1139 msgid "Relational schema" msgstr "" -#: pdf_schema.php:1115 +#: pdf_schema.php:1114 msgid "Table of contents" msgstr "" -#: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:145 -#: tbl_structure.php:182 tbl_tracking.php:277 +#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 +#: tbl_structure.php:181 tbl_tracking.php:272 msgid "Extra" msgstr "" @@ -4061,7 +4116,7 @@ msgstr "" msgid "Save position" msgstr "" -#: pmd_general.php:70 server_synchronize.php:428 server_synchronize.php:871 +#: pmd_general.php:70 server_synchronize.php:427 server_synchronize.php:870 msgid "Create table" msgstr "" @@ -4132,31 +4187,31 @@ msgid "" "appropriate column name." msgstr "" -#: pmd_pdf.php:62 +#: pmd_pdf.php:60 msgid "Page has been created" msgstr "" -#: pmd_pdf.php:64 +#: pmd_pdf.php:62 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:84 +#: pmd_pdf.php:82 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:88 +#: pmd_pdf.php:86 msgid "recommended" msgstr "" -#: pmd_pdf.php:93 +#: pmd_pdf.php:91 msgid "to/from page" msgstr "" -#: querywindow.php:94 +#: querywindow.php:93 msgid "Import files" msgstr "" -#: querywindow.php:105 +#: querywindow.php:104 msgid "All" msgstr "" @@ -4202,390 +4257,390 @@ msgstr "" msgid "Character Sets and Collations" msgstr "" -#: server_databases.php:51 +#: server_databases.php:49 msgid "No databases selected." msgstr "" -#: server_databases.php:62 +#: server_databases.php:60 #, php-format msgid "%s databases have been dropped successfully." msgstr "" -#: server_databases.php:87 +#: server_databases.php:85 msgid "Databases statistics" msgstr "" -#: server_databases.php:116 server_status.php:370 +#: server_databases.php:114 server_status.php:370 #: setup/lib/messages.inc.php:114 msgid "Tables" msgstr "" -#: server_databases.php:194 server_replication.php:180 -#: server_replication.php:208 +#: server_databases.php:192 server_replication.php:179 +#: server_replication.php:207 msgid "Master replication" msgstr "" -#: server_databases.php:196 server_replication.php:247 +#: server_databases.php:194 server_replication.php:246 msgid "Slave replication" msgstr "" -#: server_databases.php:229 +#: server_databases.php:227 msgid "Jump to database" msgstr "" -#: server_databases.php:266 +#: server_databases.php:264 msgid "Not replicated" msgstr "" -#: server_databases.php:272 +#: server_databases.php:270 msgid "Replicated" msgstr "" -#: server_databases.php:288 +#: server_databases.php:286 #, php-format msgid "Check privileges for database "%s"." msgstr "" -#: server_databases.php:292 server_databases.php:293 +#: server_databases.php:290 server_databases.php:291 msgid "Check Privileges" msgstr "" -#: server_databases.php:357 server_databases.php:358 +#: server_databases.php:355 server_databases.php:356 msgid "Enable Statistics" msgstr "" -#: server_databases.php:361 server_databases.php:362 +#: server_databases.php:359 server_databases.php:360 msgid "Disable Statistics" msgstr "" -#: server_databases.php:365 +#: server_databases.php:363 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." msgstr "" -#: server_engines.php:48 +#: server_engines.php:47 msgid "Storage Engines" msgstr "" -#: server_export.php:20 +#: server_export.php:18 msgid "View dump (schema) of databases" msgstr "" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:23 server_privileges.php:265 msgid "Includes all privileges except GRANT." msgstr "" -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:24 server_privileges.php:191 +#: server_privileges.php:514 msgid "Allows altering the structure of existing tables." msgstr "" -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:25 server_privileges.php:207 +#: server_privileges.php:520 msgid "Allows altering and dropping stored routines." msgstr "" -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:26 server_privileges.php:183 +#: server_privileges.php:513 msgid "Allows creating new databases and tables." msgstr "" -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:27 server_privileges.php:206 +#: server_privileges.php:519 msgid "Allows creating stored routines." msgstr "" -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:513 msgid "Allows creating new tables." msgstr "" -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:29 server_privileges.php:194 +#: server_privileges.php:517 msgid "Allows creating temporary tables." msgstr "" -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:30 server_privileges.php:208 +#: server_privileges.php:553 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: server_privileges.php:32 server_privileges.php:199 -#: server_privileges.php:203 server_privileges.php:526 -#: server_privileges.php:530 +#: server_privileges.php:31 server_privileges.php:198 +#: server_privileges.php:202 server_privileges.php:525 +#: server_privileges.php:529 msgid "Allows creating new views." msgstr "" -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:32 server_privileges.php:182 +#: server_privileges.php:505 msgid "Allows deleting data." msgstr "" -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:33 server_privileges.php:184 +#: server_privileges.php:516 msgid "Allows dropping databases and tables." msgstr "" -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:34 server_privileges.php:516 msgid "Allows dropping tables." msgstr "" -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:35 server_privileges.php:199 +#: server_privileges.php:533 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:36 server_privileges.php:209 +#: server_privileges.php:521 msgid "Allows executing stored routines." msgstr "" -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:37 server_privileges.php:188 +#: server_privileges.php:508 msgid "Allows importing data from and exporting data into files." msgstr "" -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:38 server_privileges.php:539 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:515 msgid "Allows creating and dropping indexes." msgstr "" -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:40 server_privileges.php:180 +#: server_privileges.php:441 server_privileges.php:503 msgid "Allows inserting and replacing data." msgstr "" -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:41 server_privileges.php:195 +#: server_privileges.php:548 msgid "Allows locking tables for the current thread." msgstr "" -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:42 server_privileges.php:645 +#: server_privileges.php:647 msgid "Limits the number of new connections the user may open per hour." msgstr "" -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:43 server_privileges.php:633 +#: server_privileges.php:635 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:44 server_privileges.php:639 +#: server_privileges.php:641 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" -#: server_privileges.php:46 server_privileges.php:652 -#: server_privileges.php:654 +#: server_privileges.php:45 server_privileges.php:651 +#: server_privileges.php:653 msgid "Limits the number of simultaneous connections the user may have." msgstr "" -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:46 server_privileges.php:187 +#: server_privileges.php:543 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:47 server_privileges.php:189 +#: server_privileges.php:447 server_privileges.php:549 msgid "Has no effect in this MySQL version." msgstr "" -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:48 server_privileges.php:185 +#: server_privileges.php:544 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:197 +#: server_privileges.php:551 msgid "Allows the user to ask where the slaves / masters are." msgstr "" -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:50 server_privileges.php:196 +#: server_privileges.php:552 msgid "Needed for the replication slaves." msgstr "" -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:51 server_privileges.php:179 +#: server_privileges.php:438 server_privileges.php:502 msgid "Allows reading data." msgstr "" -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:52 server_privileges.php:192 +#: server_privileges.php:546 msgid "Gives access to the complete list of databases." msgstr "" -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:53 server_privileges.php:203 +#: server_privileges.php:205 server_privileges.php:518 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:54 server_privileges.php:186 +#: server_privileges.php:545 msgid "Allows shutting down the server." msgstr "" -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:55 server_privileges.php:193 +#: server_privileges.php:542 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " "killing threads of other users." msgstr "" -#: server_privileges.php:57 server_privileges.php:201 -#: server_privileges.php:535 +#: server_privileges.php:56 server_privileges.php:200 +#: server_privileges.php:534 msgid "Allows creating and dropping triggers" msgstr "" -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:57 server_privileges.php:181 +#: server_privileges.php:444 server_privileges.php:504 msgid "Allows changing data." msgstr "" -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:58 server_privileges.php:259 msgid "No privileges." msgstr "" -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:301 server_privileges.php:302 msgctxt "None privileges" msgid "None" msgstr "" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1710 server_privileges.php:1716 +#: server_privileges.php:430 server_privileges.php:565 +#: server_privileges.php:1714 server_privileges.php:1720 msgid "Table-specific privileges" msgstr "" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1532 +#: server_privileges.php:431 server_privileges.php:573 +#: server_privileges.php:1536 msgid " Note: MySQL privilege names are expressed in English " msgstr "" -#: server_privileges.php:563 server_privileges.php:1531 +#: server_privileges.php:562 server_privileges.php:1535 msgid "Global privileges" msgstr "" -#: server_privileges.php:565 server_privileges.php:1710 +#: server_privileges.php:564 server_privileges.php:1714 msgid "Database-specific privileges" msgstr "" -#: server_privileges.php:610 +#: server_privileges.php:609 msgid "Administration" msgstr "" -#: server_privileges.php:630 +#: server_privileges.php:629 msgid "Resource limits" msgstr "" -#: server_privileges.php:631 +#: server_privileges.php:630 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" -#: server_privileges.php:708 +#: server_privileges.php:707 msgid "Login Information" msgstr "" -#: server_privileges.php:802 +#: server_privileges.php:801 msgid "Do not change the password" msgstr "" -#: server_privileges.php:835 server_privileges.php:2197 +#: server_privileges.php:834 server_privileges.php:2201 msgid "No user found." msgstr "" -#: server_privileges.php:879 +#: server_privileges.php:878 #, php-format msgid "The user %s already exists!" msgstr "" -#: server_privileges.php:962 +#: server_privileges.php:961 msgid "You have added a new user." msgstr "நீங்கள் புதிய பயனாளரை சேர்த்துள்ளீர்கள்" -#: server_privileges.php:1183 +#: server_privileges.php:1184 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: server_privileges.php:1207 +#: server_privileges.php:1208 #, php-format msgid "You have revoked the privileges for %s" msgstr "" -#: server_privileges.php:1243 +#: server_privileges.php:1244 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: server_privileges.php:1263 +#: server_privileges.php:1264 #, php-format msgid "Deleting %s" msgstr "" -#: server_privileges.php:1274 +#: server_privileges.php:1275 msgid "No users selected for deleting!" msgstr "" -#: server_privileges.php:1277 +#: server_privileges.php:1278 msgid "Reloading the privileges" msgstr "" -#: server_privileges.php:1292 +#: server_privileges.php:1296 msgid "The selected users have been deleted successfully." msgstr "" -#: server_privileges.php:1327 +#: server_privileges.php:1331 msgid "The privileges were reloaded successfully." msgstr "" -#: server_privileges.php:1355 server_privileges.php:1641 +#: server_privileges.php:1359 server_privileges.php:1645 msgid "Edit Privileges" msgstr "" -#: server_privileges.php:1364 +#: server_privileges.php:1368 msgid "Revoke" msgstr "" -#: server_privileges.php:1396 +#: server_privileges.php:1400 msgid "User overview" msgstr "" -#: server_privileges.php:1533 server_privileges.php:1715 -#: server_privileges.php:2064 +#: server_privileges.php:1537 server_privileges.php:1719 +#: server_privileges.php:2068 msgid "Grant" msgstr "" -#: server_privileges.php:1552 server_privileges.php:2154 +#: server_privileges.php:1556 server_privileges.php:2158 msgid "Any" msgstr "" -#: server_privileges.php:1601 server_privileges.php:1625 -#: server_privileges.php:2019 server_privileges.php:2208 +#: server_privileges.php:1605 server_privileges.php:1629 +#: server_privileges.php:2023 server_privileges.php:2212 msgid "Add a new User" msgstr "புதிய பயனாளரை சேர்க்க" -#: server_privileges.php:1606 +#: server_privileges.php:1610 msgid "Remove selected users" msgstr "" -#: server_privileges.php:1609 +#: server_privileges.php:1613 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: server_privileges.php:1610 server_privileges.php:1611 -#: server_privileges.php:1612 +#: server_privileges.php:1614 server_privileges.php:1615 +#: server_privileges.php:1616 msgid "Drop the databases that have the same names as the users." msgstr "" -#: server_privileges.php:1628 +#: server_privileges.php:1632 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4594,89 +4649,89 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: server_privileges.php:1676 +#: server_privileges.php:1680 msgid "The selected user was not found in the privilege table." msgstr "" -#: server_privileges.php:1716 +#: server_privileges.php:1720 msgid "Column-specific privileges" msgstr "" -#: server_privileges.php:1917 +#: server_privileges.php:1921 msgid "Add privileges on the following database" msgstr "பின்வரும் கொட்பிட்கான புதிய அனுமதியை சேர்க்க" -#: server_privileges.php:1935 +#: server_privileges.php:1939 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:1938 +#: server_privileges.php:1942 msgid "Add privileges on the following table" msgstr "" -#: server_privileges.php:1995 +#: server_privileges.php:1999 msgid "Change Login Information / Copy User" msgstr "" -#: server_privileges.php:1998 +#: server_privileges.php:2002 msgid "Create a new user with the same privileges and ..." msgstr "" -#: server_privileges.php:2000 +#: server_privileges.php:2004 msgid "... keep the old one." msgstr "" -#: server_privileges.php:2001 +#: server_privileges.php:2005 msgid " ... delete the old one from the user tables." msgstr "" -#: server_privileges.php:2002 +#: server_privileges.php:2006 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: server_privileges.php:2003 +#: server_privileges.php:2007 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: server_privileges.php:2025 +#: server_privileges.php:2029 msgid "Database for user" msgstr "" -#: server_privileges.php:2029 +#: server_privileges.php:2033 msgctxt "Create none database for user" msgid "None" msgstr "" -#: server_privileges.php:2030 +#: server_privileges.php:2034 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2031 +#: server_privileges.php:2035 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2034 +#: server_privileges.php:2038 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: server_privileges.php:2057 +#: server_privileges.php:2061 #, php-format msgid "Users having access to "%s"" msgstr "" -#: server_privileges.php:2165 +#: server_privileges.php:2169 msgid "global" msgstr "" -#: server_privileges.php:2167 +#: server_privileges.php:2171 msgid "database-specific" msgstr "" -#: server_privileges.php:2169 +#: server_privileges.php:2173 msgid "wildcard" msgstr "" @@ -4695,53 +4750,53 @@ msgstr "" msgid "ID" msgstr "" -#: server_replication.php:50 +#: server_replication.php:49 msgid "Unknown error" msgstr "" -#: server_replication.php:57 +#: server_replication.php:56 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:64 +#: server_replication.php:63 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:70 +#: server_replication.php:69 msgid "Unable to change master" msgstr "" -#: server_replication.php:73 +#: server_replication.php:72 #, php-format msgid "Master server changed succesfully to %s" msgstr "" -#: server_replication.php:181 +#: server_replication.php:180 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:183 server_status.php:391 +#: server_replication.php:182 server_status.php:391 msgid "Show master status" msgstr "" -#: server_replication.php:186 +#: server_replication.php:185 msgid "Show connected slaves" msgstr "" -#: server_replication.php:209 +#: server_replication.php:208 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:216 +#: server_replication.php:215 msgid "Master configuration" msgstr "" -#: server_replication.php:217 +#: server_replication.php:216 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -4750,107 +4805,107 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:220 +#: server_replication.php:219 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:221 +#: server_replication.php:220 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:224 +#: server_replication.php:223 msgid "Please select databases:" msgstr "" -#: server_replication.php:227 +#: server_replication.php:226 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: server_replication.php:229 +#: server_replication.php:228 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: server_replication.php:292 +#: server_replication.php:291 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:295 +#: server_replication.php:294 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:304 +#: server_replication.php:303 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:307 +#: server_replication.php:306 msgid "See slave status table" msgstr "" -#: server_replication.php:310 +#: server_replication.php:309 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:321 +#: server_replication.php:320 msgid "Control slave:" msgstr "" -#: server_replication.php:324 +#: server_replication.php:323 msgid "Full start" msgstr "" -#: server_replication.php:324 +#: server_replication.php:323 msgid "Full stop" msgstr "" -#: server_replication.php:325 +#: server_replication.php:324 msgid "Reset slave" msgstr "" -#: server_replication.php:326 +#: server_replication.php:325 #, php-format msgid "SQL Thread %s only" msgstr "" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 msgid "Start" msgstr "" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 msgid "Stop" msgstr "" -#: server_replication.php:327 +#: server_replication.php:326 #, php-format msgid "IO Thread %s only" msgstr "" -#: server_replication.php:331 +#: server_replication.php:330 msgid "Error management:" msgstr "" -#: server_replication.php:333 +#: server_replication.php:332 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:335 +#: server_replication.php:334 msgid "Skip current error" msgstr "" -#: server_replication.php:336 +#: server_replication.php:335 msgid "Skip next" msgstr "" -#: server_replication.php:339 +#: server_replication.php:338 msgid "errors." msgstr "" -#: server_replication.php:354 +#: server_replication.php:353 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -5550,110 +5605,110 @@ msgstr "" msgid "Replication status" msgstr "" -#: server_synchronize.php:93 +#: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:96 +#: server_synchronize.php:95 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:121 server_synchronize.php:124 tbl_create.php:77 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:264 +#: server_synchronize.php:263 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:271 +#: server_synchronize.php:270 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:399 server_synchronize.php:838 +#: server_synchronize.php:398 server_synchronize.php:837 msgid "not present" msgstr "" -#: server_synchronize.php:423 server_synchronize.php:866 +#: server_synchronize.php:422 server_synchronize.php:865 msgid "Structure Difference" msgstr "" -#: server_synchronize.php:424 server_synchronize.php:867 +#: server_synchronize.php:423 server_synchronize.php:866 msgid "Data Difference" msgstr "" -#: server_synchronize.php:429 server_synchronize.php:872 +#: server_synchronize.php:428 server_synchronize.php:871 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:430 server_synchronize.php:873 +#: server_synchronize.php:429 server_synchronize.php:872 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:431 server_synchronize.php:874 +#: server_synchronize.php:430 server_synchronize.php:873 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:432 server_synchronize.php:875 +#: server_synchronize.php:431 server_synchronize.php:874 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:433 server_synchronize.php:876 +#: server_synchronize.php:432 server_synchronize.php:875 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:434 server_synchronize.php:877 +#: server_synchronize.php:433 server_synchronize.php:876 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:435 server_synchronize.php:878 +#: server_synchronize.php:434 server_synchronize.php:877 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:445 server_synchronize.php:889 +#: server_synchronize.php:444 server_synchronize.php:888 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:448 server_synchronize.php:893 +#: server_synchronize.php:447 server_synchronize.php:892 msgid "Apply Selected Changes" msgstr "" -#: server_synchronize.php:450 server_synchronize.php:895 +#: server_synchronize.php:449 server_synchronize.php:894 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:463 +#: server_synchronize.php:462 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:941 +#: server_synchronize.php:940 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:1002 +#: server_synchronize.php:1001 msgid "The following queries have been executed:" msgstr "" -#: server_synchronize.php:1121 +#: server_synchronize.php:1120 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1122 +#: server_synchronize.php:1121 msgid "Current connection" msgstr "" -#: server_synchronize.php:1151 +#: server_synchronize.php:1150 #, php-format msgid "Configuration: %s" msgstr "" -#: server_synchronize.php:1166 +#: server_synchronize.php:1165 msgid "Socket" msgstr "" -#: server_synchronize.php:1212 +#: server_synchronize.php:1211 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -6198,8 +6253,8 @@ msgstr "" #: setup/lib/messages.inc.php:128 msgid "" "Configure phpMyAdmin database to gain access to additional features, see " -"[a@../Documentation.html#linked-tables]linked-tables infrastructure[/a] in " -"documentation" +"[a@../Documentation.html#linked-tables]phpMyAdmin configuration storage[/a] " +"in documentation" msgstr "" #: setup/lib/messages.inc.php:129 setup/lib/messages.inc.php:290 @@ -7234,110 +7289,110 @@ msgstr "" msgid "ZIP" msgstr "ZIP" -#: sql.php:495 tbl_replace.php:385 +#: sql.php:494 tbl_replace.php:384 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: sql.php:512 +#: sql.php:511 msgid "Showing as PHP code" msgstr "" -#: sql.php:515 tbl_replace.php:359 +#: sql.php:514 tbl_replace.php:358 msgid "Showing SQL query" msgstr "" -#: sql.php:517 +#: sql.php:516 msgid "Validated SQL" msgstr "" -#: sql.php:638 +#: sql.php:631 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:670 +#: sql.php:663 msgid "Label" msgstr "" -#: tbl_addfield.php:188 tbl_alter.php:102 tbl_indexes.php:97 +#: tbl_addfield.php:185 tbl_alter.php:100 tbl_indexes.php:97 #, php-format msgid "Table %1$s has been altered successfully" msgstr "" -#: tbl_change.php:250 tbl_select.php:26 tbl_select.php:27 tbl_select.php:30 -#: tbl_select.php:33 +#: tbl_change.php:245 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_select.php:32 msgid "Browse foreign values" msgstr "" -#: tbl_change.php:280 tbl_change.php:318 +#: tbl_change.php:275 tbl_change.php:313 msgid "Function" msgstr "" -#: tbl_change.php:300 tbl_indexes.php:199 tbl_indexes.php:224 +#: tbl_change.php:295 tbl_indexes.php:198 tbl_indexes.php:223 msgid "Ignore" msgstr "" -#: tbl_change.php:725 +#: tbl_change.php:720 msgid " Because of its length,
                            this column might not be editable " msgstr "" -#: tbl_change.php:884 +#: tbl_change.php:835 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:890 +#: tbl_change.php:841 msgid "Binary - do not edit" msgstr "" -#: tbl_change.php:983 +#: tbl_change.php:889 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:1128 +#: tbl_change.php:1026 msgid "Insert as new row" msgstr "" -#: tbl_change.php:1129 +#: tbl_change.php:1027 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:1130 +#: tbl_change.php:1028 msgid "Show insert query" msgstr "" -#: tbl_change.php:1145 +#: tbl_change.php:1043 msgid "Go back to previous page" msgstr "" -#: tbl_change.php:1146 +#: tbl_change.php:1044 msgid "Insert another new row" msgstr "" -#: tbl_change.php:1150 +#: tbl_change.php:1048 msgid "Go back to this page" msgstr "" -#: tbl_change.php:1158 +#: tbl_change.php:1056 msgid "Edit next row" msgstr "" -#: tbl_change.php:1169 +#: tbl_change.php:1067 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: tbl_change.php:1207 +#: tbl_change.php:1105 #, php-format msgid "Restart insertion with %s rows" msgstr "" -#: tbl_create.php:57 +#: tbl_create.php:55 #, php-format msgid "Table %s already exists!" msgstr "" -#: tbl_create.php:244 +#: tbl_create.php:241 #, php-format msgid "Table %1$s has been created." msgstr "" @@ -7358,196 +7413,196 @@ msgstr "" msgid "No index parts defined!" msgstr "" -#: tbl_indexes.php:159 +#: tbl_indexes.php:158 msgid "Create a new index" msgstr "" -#: tbl_indexes.php:161 +#: tbl_indexes.php:160 msgid "Modify an index" msgstr "" -#: tbl_indexes.php:167 +#: tbl_indexes.php:166 msgid "Index name:" msgstr "" -#: tbl_indexes.php:173 +#: tbl_indexes.php:172 msgid "Index type:" msgstr "" -#: tbl_indexes.php:183 +#: tbl_indexes.php:182 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" -#: tbl_indexes.php:250 +#: tbl_indexes.php:249 #, php-format msgid "Add to index  %s column(s)" msgstr "" -#: tbl_indexes.php:255 tbl_structure.php:588 tbl_structure.php:599 +#: tbl_indexes.php:254 tbl_structure.php:586 tbl_structure.php:597 msgid "Column count has to be larger than zero." msgstr "" -#: tbl_move_copy.php:45 +#: tbl_move_copy.php:44 msgid "Can't move table to same one!" msgstr "" -#: tbl_move_copy.php:47 +#: tbl_move_copy.php:46 msgid "Can't copy table to same one!" msgstr "" -#: tbl_move_copy.php:55 +#: tbl_move_copy.php:54 #, php-format msgid "Table %s has been moved to %s." msgstr "" -#: tbl_move_copy.php:57 +#: tbl_move_copy.php:56 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: tbl_move_copy.php:81 +#: tbl_move_copy.php:80 msgid "The table name is empty!" msgstr "" -#: tbl_operations.php:248 +#: tbl_operations.php:246 msgid "Alter table order by" msgstr "" -#: tbl_operations.php:257 +#: tbl_operations.php:255 msgid "(singly)" msgstr "" -#: tbl_operations.php:277 +#: tbl_operations.php:275 msgid "Move table to (database.table):" msgstr "" -#: tbl_operations.php:335 +#: tbl_operations.php:333 msgid "Table options" msgstr "" -#: tbl_operations.php:339 +#: tbl_operations.php:337 msgid "Rename table to" msgstr "" -#: tbl_operations.php:510 +#: tbl_operations.php:508 msgid "Copy table to (database.table):" msgstr "" -#: tbl_operations.php:557 +#: tbl_operations.php:555 msgid "Switch to copied table" msgstr "" -#: tbl_operations.php:569 +#: tbl_operations.php:567 msgid "Table maintenance" msgstr "" -#: tbl_operations.php:590 +#: tbl_operations.php:588 msgid "Defragment table" msgstr "" -#: tbl_operations.php:629 +#: tbl_operations.php:627 #, php-format msgid "Table %s has been flushed" msgstr "" -#: tbl_operations.php:635 +#: tbl_operations.php:633 msgid "Flush the table (FLUSH)" msgstr "" -#: tbl_operations.php:650 +#: tbl_operations.php:648 msgid "Partition maintenance" msgstr "" -#: tbl_operations.php:658 +#: tbl_operations.php:656 #, php-format msgid "Partition %s" msgstr "" -#: tbl_operations.php:661 +#: tbl_operations.php:659 msgid "Analyze" msgstr "" -#: tbl_operations.php:662 +#: tbl_operations.php:660 msgid "Check" msgstr "" -#: tbl_operations.php:663 +#: tbl_operations.php:661 msgid "Optimize" msgstr "" -#: tbl_operations.php:664 +#: tbl_operations.php:662 msgid "Rebuild" msgstr "" -#: tbl_operations.php:665 +#: tbl_operations.php:663 msgid "Repair" msgstr "" -#: tbl_operations.php:677 +#: tbl_operations.php:675 msgid "Remove partitioning" msgstr "" -#: tbl_operations.php:703 +#: tbl_operations.php:701 msgid "Check referential integrity:" msgstr "" -#: tbl_printview.php:73 +#: tbl_printview.php:72 msgid "Show tables" msgstr "" -#: tbl_printview.php:308 tbl_structure.php:655 +#: tbl_printview.php:307 tbl_structure.php:653 msgid "Space usage" msgstr "" -#: tbl_printview.php:312 tbl_structure.php:659 +#: tbl_printview.php:311 tbl_structure.php:657 msgid "Usage" msgstr "" -#: tbl_printview.php:339 tbl_structure.php:686 +#: tbl_printview.php:338 tbl_structure.php:684 msgid "Effective" msgstr "" -#: tbl_printview.php:364 tbl_structure.php:724 +#: tbl_printview.php:363 tbl_structure.php:722 msgid "Row Statistics" msgstr "" -#: tbl_printview.php:367 tbl_structure.php:727 +#: tbl_printview.php:366 tbl_structure.php:725 msgid "Statements" msgstr "" -#: tbl_printview.php:378 tbl_structure.php:739 +#: tbl_printview.php:377 tbl_structure.php:737 msgid "static" msgstr "" -#: tbl_printview.php:380 tbl_structure.php:741 +#: tbl_printview.php:379 tbl_structure.php:739 msgid "dynamic" msgstr "" -#: tbl_printview.php:402 tbl_structure.php:784 +#: tbl_printview.php:401 tbl_structure.php:782 msgid "Row length" msgstr "" -#: tbl_printview.php:412 tbl_structure.php:792 +#: tbl_printview.php:411 tbl_structure.php:790 msgid " Row size " msgstr "" -#: tbl_relation.php:278 +#: tbl_relation.php:276 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" -#: tbl_relation.php:404 +#: tbl_relation.php:402 msgid "Internal relation" msgstr "" -#: tbl_relation.php:406 +#: tbl_relation.php:404 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: tbl_relation.php:412 +#: tbl_relation.php:410 msgid "Foreign key constraint" msgstr "" @@ -7555,223 +7610,223 @@ msgstr "" msgid "No rows selected" msgstr "" -#: tbl_select.php:130 +#: tbl_select.php:129 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "" -#: tbl_select.php:136 +#: tbl_select.php:135 msgid "Operator" msgstr "" -#: tbl_select.php:267 +#: tbl_select.php:266 msgid "Select columns (at least one):" msgstr "" -#: tbl_select.php:285 +#: tbl_select.php:284 msgid "Add search conditions (body of the \"where\" clause):" msgstr "" -#: tbl_select.php:292 +#: tbl_select.php:291 msgid "Number of rows per page" msgstr "" -#: tbl_select.php:298 +#: tbl_select.php:297 msgid "Display order:" msgstr "" -#: tbl_structure.php:160 +#: tbl_structure.php:159 msgid "Browse distinct values" msgstr "" -#: tbl_structure.php:360 +#: tbl_structure.php:358 msgctxt "None for default" msgid "None" msgstr "" -#: tbl_structure.php:373 +#: tbl_structure.php:371 #, php-format msgid "Column %s has been dropped" msgstr "" -#: tbl_structure.php:384 +#: tbl_structure.php:382 #, php-format msgid "A primary key has been added on %s" msgstr "" -#: tbl_structure.php:399 tbl_structure.php:413 tbl_structure.php:427 +#: tbl_structure.php:397 tbl_structure.php:411 tbl_structure.php:425 #, php-format msgid "An index has been added on %s" msgstr "" -#: tbl_structure.php:505 tbl_structure.php:507 +#: tbl_structure.php:503 tbl_structure.php:505 msgid "Relation view" msgstr "" -#: tbl_structure.php:514 tbl_structure.php:516 +#: tbl_structure.php:512 tbl_structure.php:514 msgid "Propose table structure" msgstr "" -#: tbl_structure.php:539 +#: tbl_structure.php:537 #, fuzzy #| msgid "Add %s field(s)" msgid "Add column" msgstr "%s களத்தை சேர்க்க" -#: tbl_structure.php:553 +#: tbl_structure.php:551 msgid "At End of Table" msgstr "" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At Beginning of Table" msgstr "" -#: tbl_structure.php:555 +#: tbl_structure.php:553 #, php-format msgid "After %s" msgstr "%s பின்" -#: tbl_structure.php:593 +#: tbl_structure.php:591 #, php-format msgid "Create an index on  %s columns" msgstr "" -#: tbl_structure.php:755 +#: tbl_structure.php:753 msgid "partitioned" msgstr "" -#: tbl_tracking.php:113 +#: tbl_tracking.php:109 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:186 +#: tbl_tracking.php:182 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "" -#: tbl_tracking.php:194 +#: tbl_tracking.php:190 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "" -#: tbl_tracking.php:202 +#: tbl_tracking.php:198 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "" -#: tbl_tracking.php:212 +#: tbl_tracking.php:208 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:219 +#: tbl_tracking.php:215 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:220 +#: tbl_tracking.php:216 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:229 +#: tbl_tracking.php:225 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:250 tbl_tracking.php:378 +#: tbl_tracking.php:245 tbl_tracking.php:373 msgid "Close" msgstr "" -#: tbl_tracking.php:261 +#: tbl_tracking.php:256 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:380 +#: tbl_tracking.php:375 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:396 tbl_tracking.php:503 +#: tbl_tracking.php:391 tbl_tracking.php:498 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "" -#: tbl_tracking.php:409 tbl_tracking.php:460 +#: tbl_tracking.php:404 tbl_tracking.php:455 msgid "Date" msgstr "" -#: tbl_tracking.php:410 tbl_tracking.php:461 +#: tbl_tracking.php:405 tbl_tracking.php:456 msgid "Username" msgstr "" -#: tbl_tracking.php:411 +#: tbl_tracking.php:406 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:462 +#: tbl_tracking.php:457 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:506 +#: tbl_tracking.php:501 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:507 +#: tbl_tracking.php:502 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:520 +#: tbl_tracking.php:515 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:560 +#: tbl_tracking.php:555 msgid "Show versions" msgstr "" -#: tbl_tracking.php:592 +#: tbl_tracking.php:587 msgid "Version" msgstr "" -#: tbl_tracking.php:639 +#: tbl_tracking.php:634 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "" -#: tbl_tracking.php:641 +#: tbl_tracking.php:636 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:652 +#: tbl_tracking.php:647 #, php-format msgid "Activate tracking for %s.%s" msgstr "" -#: tbl_tracking.php:654 +#: tbl_tracking.php:649 msgid "Activate now" msgstr "" -#: tbl_tracking.php:667 +#: tbl_tracking.php:662 #, php-format msgid "Create version %s of %s.%s" msgstr "" -#: tbl_tracking.php:671 +#: tbl_tracking.php:666 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:679 +#: tbl_tracking.php:674 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:687 +#: tbl_tracking.php:682 msgid "Create version" msgstr "" @@ -7816,7 +7871,7 @@ msgstr "" msgid "VIEW name" msgstr "" -#: view_operations.php:92 +#: view_operations.php:91 msgid "Rename view to" msgstr "" diff --git a/po/te.po b/po/te.po index cef4f6985..a8df35bef 100644 --- a/po/te.po +++ b/po/te.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-21 13:53+0200\n" +"POT-Creation-Date: 2010-07-26 17:18+0200\n" "PO-Revision-Date: 2010-05-26 14:20+0200\n" "Last-Translator: \n" "Language-Team: Telugu \n" @@ -17,19 +17,19 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.1\n" -#: browse_foreigners.php:37 browse_foreigners.php:58 -#: libraries/display_tbl.lib.php:416 server_privileges.php:1506 +#: browse_foreigners.php:36 browse_foreigners.php:57 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1510 msgid "Show all" msgstr "అన్నీ చూపించు" -#: browse_foreigners.php:81 libraries/common.lib.php:2313 -#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:393 -#: libraries/export/pdf.php:146 pdf_schema.php:282 pdf_schema.php:1122 -#: pdf_schema.php:1138 +#: browse_foreigners.php:80 libraries/common.lib.php:2318 +#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:392 +#: libraries/export/pdf.php:146 pdf_schema.php:281 pdf_schema.php:1121 +#: pdf_schema.php:1137 msgid "Page number:" msgstr "పుట సంఖ్య:" -#: browse_foreigners.php:131 +#: browse_foreigners.php:130 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -37,140 +37,152 @@ msgid "" msgstr "" # Research అంటే పరిశోధన, అందువల్లన ఇది శోధనైంది -#: browse_foreigners.php:149 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2829 -#: libraries/common.lib.php:2836 libraries/db_links.inc.php:74 -#: libraries/tbl_links.inc.php:62 +#: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 +#: db_structure.php:89 db_structure.php:91 db_structure.php:102 +#: db_structure.php:104 libraries/common.lib.php:2834 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "శోధించు" -#: browse_foreigners.php:152 db_operations.php:384 db_operations.php:428 -#: db_operations.php:498 db_operations.php:608 db_search.php:344 -#: db_structure.php:566 js/messages.php:48 libraries/Config.class.php:1043 -#: libraries/Theme_Manager.class.php:310 +#: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 +#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 +#: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 -#: libraries/common.lib.php:1340 libraries/common.lib.php:2289 +#: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 -#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:275 -#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:531 -#: libraries/display_tbl.lib.php:613 libraries/replication_gui.lib.php:75 +#: libraries/display_export.lib.php:269 libraries/display_import.lib.php:275 +#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 +#: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 #: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:781 -#: main.php:127 navigation.php:231 pdf_pages.php:291 pdf_pages.php:327 -#: pdf_pages.php:529 pmd_pdf.php:115 server_binlog.php:128 -#: server_privileges.php:664 server_privileges.php:1616 -#: server_privileges.php:1963 server_privileges.php:2010 -#: server_privileges.php:2049 server_replication.php:234 -#: server_replication.php:317 server_replication.php:340 -#: server_synchronize.php:1208 tbl_change.php:328 tbl_change.php:1172 -#: tbl_change.php:1209 tbl_indexes.php:253 tbl_operations.php:264 -#: tbl_operations.php:301 tbl_operations.php:498 tbl_operations.php:560 -#: tbl_operations.php:680 tbl_select.php:324 tbl_structure.php:561 -#: tbl_structure.php:596 tbl_tracking.php:394 tbl_tracking.php:511 -#: view_create.php:181 view_operations.php:100 +#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 +#: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 +#: server_privileges.php:663 server_privileges.php:1620 +#: server_privileges.php:1967 server_privileges.php:2014 +#: server_privileges.php:2053 server_replication.php:233 +#: server_replication.php:316 server_replication.php:339 +#: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 +#: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 +#: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 +#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "వెళ్ళు" -#: browse_foreigners.php:167 browse_foreigners.php:171 -#: libraries/Index.class.php:441 tbl_tracking.php:319 +#: browse_foreigners.php:166 browse_foreigners.php:170 +#: libraries/Index.class.php:441 tbl_tracking.php:314 msgid "Keyname" msgstr "" -#: browse_foreigners.php:168 browse_foreigners.php:170 -#: server_collations.php:54 server_collations.php:66 server_engines.php:58 +#: browse_foreigners.php:167 browse_foreigners.php:169 +#: server_collations.php:54 server_collations.php:66 server_engines.php:57 #: server_status.php:738 msgid "Description" msgstr "వివరణ" -#: browse_foreigners.php:246 browse_foreigners.php:255 -#: browse_foreigners.php:267 browse_foreigners.php:275 +#: browse_foreigners.php:245 browse_foreigners.php:254 +#: browse_foreigners.php:266 browse_foreigners.php:274 msgid "Use this value" msgstr "ఈ విలువని ఉపయోగించు" -#: db_create.php:45 +#: bs_disp_as_mime_type.php:29 bs_play_media.php:35 +msgid "No blob streaming server configured!" +msgstr "" + +#: bs_disp_as_mime_type.php:35 +msgid "Failed to fetch headers" +msgstr "" + +#: bs_disp_as_mime_type.php:41 +msgid "Failed to open remote URL" +msgstr "" + +#: db_create.php:44 #, php-format msgid "Database %1$s has been created." msgstr "" -#: db_datadict.php:48 db_operations.php:377 +#: db_datadict.php:48 db_operations.php:313 msgid "Database comment: " msgstr "" -#: db_datadict.php:164 libraries/tbl_properties.inc.php:723 -#: pdf_schema.php:1235 tbl_operations.php:346 tbl_printview.php:128 +#: db_datadict.php:164 libraries/tbl_properties.inc.php:722 +#: pdf_schema.php:1234 tbl_operations.php:344 tbl_printview.php:127 msgid "Table comments" msgstr "పట్టిక వ్యాఖ్యలు" # మొదటి అనువాదము -#: db_datadict.php:173 db_qbe.php:173 libraries/Index.class.php:445 +#: db_datadict.php:173 db_qbe.php:170 libraries/Index.class.php:445 #: libraries/export/htmlword.php:243 libraries/export/latex.php:364 #: libraries/export/odt.php:293 libraries/export/texytext.php:233 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:274 -#: pdf_schema.php:1261 pdf_schema.php:1282 tbl_change.php:306 -#: tbl_indexes.php:188 tbl_printview.php:140 tbl_relation.php:401 -#: tbl_select.php:133 tbl_structure.php:176 tbl_tracking.php:272 -#: tbl_tracking.php:323 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 +#: pdf_schema.php:1260 pdf_schema.php:1281 tbl_change.php:301 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:132 tbl_structure.php:175 tbl_tracking.php:267 +#: tbl_tracking.php:318 #, fuzzy #| msgid "Command" msgid "Column" msgstr "ఆజ్ఞ" -#: db_datadict.php:174 db_printview.php:105 libraries/Index.class.php:442 +#: db_datadict.php:174 db_printview.php:104 libraries/Index.class.php:442 #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 #: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:244 #: libraries/export/latex.php:364 libraries/export/odt.php:296 #: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:99 -#: pdf_schema.php:1262 pdf_schema.php:1283 server_privileges.php:2062 -#: tbl_change.php:285 tbl_change.php:312 tbl_printview.php:141 -#: tbl_printview.php:311 tbl_select.php:134 tbl_structure.php:177 -#: tbl_structure.php:658 tbl_tracking.php:273 tbl_tracking.php:320 +#: pdf_schema.php:1261 pdf_schema.php:1282 server_privileges.php:2066 +#: tbl_change.php:280 tbl_change.php:307 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:133 tbl_structure.php:176 +#: tbl_structure.php:656 tbl_tracking.php:268 tbl_tracking.php:315 msgid "Type" msgstr "రకం" #: db_datadict.php:176 libraries/Index.class.php:448 #: libraries/export/htmlword.php:245 libraries/export/latex.php:364 #: libraries/export/odt.php:299 libraries/export/texytext.php:235 -#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1264 -#: pdf_schema.php:1285 tbl_change.php:321 tbl_printview.php:143 -#: tbl_structure.php:180 tbl_tracking.php:275 tbl_tracking.php:326 +#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1263 +#: pdf_schema.php:1284 tbl_change.php:316 tbl_printview.php:142 +#: tbl_structure.php:179 tbl_tracking.php:270 tbl_tracking.php:321 msgid "Null" msgstr "" -#: db_datadict.php:177 db_structure.php:500 libraries/export/htmlword.php:246 +#: db_datadict.php:177 db_structure.php:486 libraries/export/htmlword.php:246 #: libraries/export/latex.php:364 libraries/export/odt.php:302 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:105 -#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 -#: tbl_structure.php:181 tbl_tracking.php:276 +#: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:143 +#: tbl_structure.php:180 tbl_tracking.php:271 msgid "Default" msgstr "" #: db_datadict.php:181 libraries/export/htmlword.php:248 #: libraries/export/latex.php:366 libraries/export/odt.php:306 -#: libraries/export/texytext.php:238 pdf_schema.php:1267 pdf_schema.php:1288 -#: tbl_printview.php:148 +#: libraries/export/texytext.php:238 pdf_schema.php:1266 pdf_schema.php:1287 +#: tbl_printview.php:147 msgid "Links to" msgstr "" -#: db_datadict.php:183 db_printview.php:111 libraries/export/htmlword.php:251 +#: db_datadict.php:183 db_printview.php:110 libraries/export/htmlword.php:251 #: libraries/export/latex.php:49 libraries/export/latex.php:369 #: libraries/export/odt.php:37 libraries/export/odt.php:311 #: libraries/export/sql.php:29 libraries/export/texytext.php:241 -#: libraries/tbl_properties.inc.php:129 pdf_schema.php:1278 -#: pdf_schema.php:1289 tbl_printview.php:150 +#: libraries/tbl_properties.inc.php:128 pdf_schema.php:1277 +#: pdf_schema.php:1288 tbl_printview.php:149 msgid "Comments" msgstr "వ్యాఖ్యలు" #: db_datadict.php:266 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/export/htmlword.php:321 #: libraries/export/latex.php:434 libraries/export/odt.php:367 -#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:262 -#: pdf_schema.php:1343 server_privileges.php:1560 server_privileges.php:1571 -#: server_privileges.php:1881 server_privileges.php:1886 -#: server_privileges.php:2179 sql.php:131 sql.php:193 tbl_printview.php:227 -#: tbl_structure.php:349 tbl_tracking.php:336 tbl_tracking.php:341 +#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:261 +#: pdf_schema.php:1342 server_privileges.php:1564 server_privileges.php:1575 +#: server_privileges.php:1885 server_privileges.php:1890 +#: server_privileges.php:2183 sql.php:130 sql.php:192 tbl_printview.php:226 +#: tbl_structure.php:347 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "కాదు" @@ -181,17 +193,17 @@ msgstr "కాదు" #: libraries/mult_submits.inc.php:49 libraries/mult_submits.inc.php:54 #: libraries/mult_submits.inc.php:59 libraries/mult_submits.inc.php:91 #: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:105 -#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:261 -#: libraries/mult_submits.inc.php:272 pdf_schema.php:1343 -#: server_databases.php:63 server_privileges.php:1557 -#: server_privileges.php:1571 server_privileges.php:1881 -#: server_privileges.php:1884 server_privileges.php:2179 sql.php:192 -#: tbl_printview.php:227 tbl_structure.php:39 tbl_structure.php:349 -#: tbl_tracking.php:334 tbl_tracking.php:339 +#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:260 +#: libraries/mult_submits.inc.php:271 pdf_schema.php:1342 +#: server_databases.php:61 server_privileges.php:1561 +#: server_privileges.php:1575 server_privileges.php:1885 +#: server_privileges.php:1888 server_privileges.php:2183 sql.php:191 +#: tbl_printview.php:226 tbl_structure.php:38 tbl_structure.php:347 +#: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" msgstr "అవును" -#: db_datadict.php:321 db_printview.php:265 tbl_printview.php:496 +#: db_datadict.php:321 db_printview.php:264 tbl_printview.php:495 msgid "Print" msgstr "ముద్రించు" @@ -199,285 +211,246 @@ msgstr "ముద్రించు" msgid "View dump (schema) of database" msgstr "" -#: db_export.php:32 db_printview.php:95 db_qbe.php:101 db_structure.php:50 -#: db_tracking.php:34 export.php:352 navigation.php:326 +#: db_export.php:32 db_printview.php:94 db_qbe.php:98 db_structure.php:49 +#: db_tracking.php:30 export.php:350 navigation.php:325 msgid "No tables found in database." msgstr "" -#: db_export.php:42 db_search.php:326 server_export.php:26 +#: db_export.php:42 db_search.php:326 server_export.php:24 msgid "Select All" msgstr "" -#: db_export.php:44 db_search.php:329 server_export.php:28 +#: db_export.php:44 db_search.php:329 server_export.php:26 msgid "Unselect All" msgstr "" # మొదటి అనువాదము -#: db_operations.php:37 tbl_create.php:49 +#: db_operations.php:33 tbl_create.php:47 msgid "The database name is empty!" msgstr "డేటాబేస్ పేరు ఖాళీగా ఉన్నది" -#: db_operations.php:235 +#: db_operations.php:231 #, php-format msgid "Database %s has been renamed to %s" msgstr "" -#: db_operations.php:239 +#: db_operations.php:235 #, php-format msgid "Database %s has been copied to %s" msgstr "" -#: db_operations.php:411 +#: db_operations.php:347 msgid "Rename database to" msgstr "" # మొదటి అనువాదము -#: db_operations.php:416 server_processlist.php:56 +#: db_operations.php:352 server_processlist.php:56 msgid "Command" msgstr "ఆజ్ఞ" # మొదటి అనువాదము -#: db_operations.php:428 tbl_change.php:1141 +#: db_operations.php:364 tbl_change.php:1039 msgid "and then" msgstr "మరియు తరువాత" -#: db_operations.php:454 +#: db_operations.php:390 msgid "Copy database to" msgstr "" -#: db_operations.php:461 tbl_operations.php:527 tbl_tracking.php:387 +#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:389 +#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:388 +#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "" -#: db_operations.php:471 +#: db_operations.php:407 msgid "CREATE DATABASE before copying" msgstr "" -#: db_operations.php:474 libraries/export/sql.php:51 +#: db_operations.php:410 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 -#: libraries/export/sql.php:81 tbl_operations.php:535 +#: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "" -#: db_operations.php:478 libraries/export/sql.php:77 tbl_operations.php:298 -#: tbl_operations.php:537 +#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "" -#: db_operations.php:482 tbl_operations.php:544 +#: db_operations.php:418 tbl_operations.php:542 msgid "Add constraints" msgstr "" -#: db_operations.php:495 +#: db_operations.php:431 msgid "Switch to copied database" msgstr "" -#: db_operations.php:536 -msgid "BLOB Repository" -msgstr "" - -#: db_operations.php:539 db_tracking.php:75 libraries/common.lib.php:1357 -#: libraries/server_links.inc.php:48 server_processlist.php:58 -#: tbl_tracking.php:595 test/theme.php:100 -msgid "Status" -msgstr "స్థితి" - -#: db_operations.php:547 -#, fuzzy -#| msgid "End" -msgctxt "BLOB repository" -msgid "Enabled" -msgstr "ముగింపు" - -#: db_operations.php:551 -msgid "Disable" -msgstr "" - -#: db_operations.php:561 -msgid "Damaged" -msgstr "" - -#: db_operations.php:565 -msgctxt "BLOB repository" -msgid "Repair" -msgstr "" - -#: db_operations.php:573 -msgctxt "BLOB repository" -msgid "Disabled" -msgstr "" - -#: db_operations.php:577 -msgid "Enable" -msgstr "" - -#: db_operations.php:601 libraries/Index.class.php:447 +#: db_operations.php:451 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 -#: server_collations.php:53 server_collations.php:65 server_databases.php:110 -#: tbl_operations.php:362 tbl_select.php:135 tbl_structure.php:178 -#: tbl_structure.php:766 tbl_tracking.php:274 tbl_tracking.php:325 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 +#: server_collations.php:53 server_collations.php:65 server_databases.php:108 +#: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:177 +#: tbl_structure.php:764 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "" -#: db_operations.php:614 main.php:315 pdf_schema.php:33 +#: db_operations.php:464 pdf_schema.php:32 #, php-format msgid "" -"The additional features for working with linked tables have been " -"deactivated. To find out why click %shere%s." +"The phpMyAdmin configuration storage has been deactivated. To find out why " +"click %shere%s." msgstr "" -#: db_operations.php:647 +#: db_operations.php:497 msgid "Edit PDF Pages" msgstr "" -#: db_printview.php:103 db_tracking.php:71 db_tracking.php:156 +#: db_printview.php:102 db_tracking.php:67 db_tracking.php:152 #: libraries/db_structure.lib.php:37 libraries/export/xml.php:327 -#: libraries/header.inc.php:125 pdf_pages.php:423 server_privileges.php:1657 -#: server_privileges.php:1713 server_privileges.php:1977 -#: server_synchronize.php:422 server_synchronize.php:865 tbl_tracking.php:591 +#: libraries/header.inc.php:125 pdf_pages.php:422 server_privileges.php:1661 +#: server_privileges.php:1717 server_privileges.php:1981 +#: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "పట్టిక" -#: db_printview.php:104 libraries/db_structure.lib.php:47 +#: db_printview.php:103 libraries/db_structure.lib.php:47 #: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 -#: navigation.php:629 navigation.php:651 server_databases.php:121 -#: tbl_printview.php:392 tbl_structure.php:364 tbl_structure.php:776 +#: navigation.php:628 navigation.php:650 server_databases.php:119 +#: tbl_printview.php:391 tbl_structure.php:362 tbl_structure.php:774 msgid "Rows" msgstr "" -#: db_printview.php:108 libraries/db_structure.lib.php:58 tbl_indexes.php:189 +#: db_printview.php:107 libraries/db_structure.lib.php:58 tbl_indexes.php:188 msgid "Size" msgstr "పరిమాణం" # మొదటి అనువాదము -#: db_printview.php:161 db_structure.php:456 libraries/export/sql.php:556 +#: db_printview.php:160 db_structure.php:442 libraries/export/sql.php:556 #: libraries/export/sql.php:896 msgid "in use" msgstr "వాడుకలో ఉన్నది" -#: db_printview.php:186 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:511 pdf_schema.php:1240 tbl_printview.php:432 -#: tbl_structure.php:808 +#: db_printview.php:185 libraries/db_info.inc.php:86 +#: libraries/export/sql.php:511 pdf_schema.php:1239 tbl_printview.php:431 +#: tbl_structure.php:806 msgid "Creation" msgstr "" -#: db_printview.php:195 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:516 pdf_schema.php:1245 tbl_printview.php:442 -#: tbl_structure.php:816 +#: db_printview.php:194 libraries/db_info.inc.php:91 +#: libraries/export/sql.php:516 pdf_schema.php:1244 tbl_printview.php:441 +#: tbl_structure.php:814 msgid "Last update" msgstr "" -#: db_printview.php:204 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:521 pdf_schema.php:1250 tbl_printview.php:452 -#: tbl_structure.php:824 +#: db_printview.php:203 libraries/db_info.inc.php:96 +#: libraries/export/sql.php:521 pdf_schema.php:1249 tbl_printview.php:451 +#: tbl_structure.php:822 msgid "Last check" msgstr "" -#: db_printview.php:221 db_structure.php:479 +#: db_printview.php:220 db_structure.php:465 #, php-format msgid "%s table" msgid_plural "%s tables" msgstr[0] "" msgstr[1] "" -#: db_qbe.php:28 import.php:453 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1980 libraries/sql_query_form.lib.php:138 -#: tbl_operations.php:212 tbl_relation.php:291 tbl_row_action.php:130 -#: view_operations.php:61 +#: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 +#: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "" -#: db_qbe.php:41 +#: db_qbe.php:38 msgid "You have to choose at least one column to display" msgstr "" # మొదటి అనువాదము -#: db_qbe.php:199 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:865 +#: db_qbe.php:196 libraries/db_structure.lib.php:95 +#: libraries/display_tbl.lib.php:864 msgid "Sort" msgstr "క్రమంలో పేర్చు" -#: db_qbe.php:208 db_qbe.php:242 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:522 libraries/display_tbl.lib.php:827 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:259 -#: tbl_select.php:311 +#: db_qbe.php:205 db_qbe.php:239 libraries/db_structure.lib.php:102 +#: libraries/display_tbl.lib.php:521 libraries/display_tbl.lib.php:826 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:257 +#: tbl_select.php:310 msgid "Ascending" msgstr "ఆరోహణ" -#: db_qbe.php:209 db_qbe.php:250 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:527 libraries/display_tbl.lib.php:824 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:260 -#: tbl_select.php:312 +#: db_qbe.php:206 db_qbe.php:247 libraries/db_structure.lib.php:110 +#: libraries/display_tbl.lib.php:526 libraries/display_tbl.lib.php:823 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:258 +#: tbl_select.php:311 msgid "Descending" msgstr "అవరోహణ" # మొదటి అనువాదము -#: db_qbe.php:263 db_tracking.php:77 libraries/display_tbl.lib.php:307 -#: tbl_change.php:275 tbl_tracking.php:596 +#: db_qbe.php:260 db_tracking.php:73 libraries/display_tbl.lib.php:306 +#: tbl_change.php:270 tbl_tracking.php:591 msgid "Show" msgstr "చూపించు" -#: db_qbe.php:299 +#: db_qbe.php:296 msgid "Criteria" msgstr "" -#: db_qbe.php:352 db_qbe.php:434 db_qbe.php:526 db_qbe.php:557 +#: db_qbe.php:349 db_qbe.php:431 db_qbe.php:523 db_qbe.php:554 msgid "Ins" msgstr "" -#: db_qbe.php:356 db_qbe.php:438 db_qbe.php:523 db_qbe.php:554 +#: db_qbe.php:353 db_qbe.php:435 db_qbe.php:520 db_qbe.php:551 msgid "And" msgstr "మరియు" -#: db_qbe.php:365 db_qbe.php:446 db_qbe.php:528 db_qbe.php:559 +#: db_qbe.php:362 db_qbe.php:443 db_qbe.php:525 db_qbe.php:556 msgid "Del" msgstr "" # మొదటి అనువాదము -#: db_qbe.php:369 db_qbe.php:450 db_qbe.php:521 db_qbe.php:552 -#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:778 -#: server_privileges.php:297 tbl_change.php:1027 tbl_indexes.php:249 -#: tbl_select.php:285 +#: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 +#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:777 +#: server_privileges.php:296 tbl_change.php:925 tbl_indexes.php:248 +#: tbl_select.php:284 msgid "Or" msgstr "లేదా" -#: db_qbe.php:506 +#: db_qbe.php:503 msgid "Modify" msgstr "" -#: db_qbe.php:583 +#: db_qbe.php:580 msgid "Add/Delete criteria rows" msgstr "" -#: db_qbe.php:595 +#: db_qbe.php:592 msgid "Add/Delete columns" msgstr "" -#: db_qbe.php:608 db_qbe.php:633 +#: db_qbe.php:605 db_qbe.php:630 msgid "Update Query" msgstr "" -#: db_qbe.php:616 +#: db_qbe.php:613 msgid "Use Tables" msgstr "" -#: db_qbe.php:639 +#: db_qbe.php:636 #, php-format msgid "SQL query on database %s:" msgstr "" -#: db_qbe.php:933 libraries/common.lib.php:1222 +#: db_qbe.php:930 libraries/common.lib.php:1215 msgid "Submit Query" msgstr "" @@ -516,17 +489,17 @@ msgid_plural "%s matches inside table %s" msgstr[0] "" msgstr[1] "" -#: db_search.php:249 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2831 -#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:49 -#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:466 +#: db_search.php:249 db_structure.php:75 db_structure.php:76 +#: db_structure.php:88 db_structure.php:90 db_structure.php:101 +#: db_structure.php:103 libraries/common.lib.php:2836 +#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 +#: tbl_structure.php:35 tbl_structure.php:47 tbl_structure.php:464 msgid "Browse" msgstr "" -#: db_search.php:254 libraries/display_tbl.lib.php:1164 -#: libraries/display_tbl.lib.php:2055 libraries/sql_query_form.lib.php:453 -#: pdf_pages.php:285 pdf_pages.php:424 pdf_pages.php:460 pdf_pages.php:488 +#: db_search.php:254 libraries/display_tbl.lib.php:1163 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 msgid "Delete" @@ -565,67 +538,67 @@ msgstr "" msgid "Inside column:" msgstr "" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2830 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:75 +#: db_structure.php:79 db_structure.php:80 db_structure.php:92 +#: db_structure.php:93 db_structure.php:105 db_structure.php:106 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 +#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "" -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2827 libraries/common.lib.php:2834 -#: libraries/db_links.inc.php:62 libraries/export/htmlword.php:22 +#: db_structure.php:81 db_structure.php:94 db_structure.php:107 +#: libraries/common.lib.php:2832 libraries/common.lib.php:2839 +#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 -#: libraries/tbl_links.inc.php:55 pmd_general.php:133 -#: server_privileges.php:593 server_replication.php:314 tbl_tracking.php:268 +#: libraries/tbl_links.inc.php:54 pmd_general.php:133 +#: server_privileges.php:592 server_replication.php:313 tbl_tracking.php:263 msgid "Structure" msgstr "" -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:544 db_structure.php:545 db_tracking.php:90 -#: libraries/Index.class.php:482 libraries/common.lib.php:1659 -#: libraries/db_links.inc.php:99 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:126 -#: server_databases.php:351 tbl_structure.php:26 tbl_structure.php:150 -#: tbl_structure.php:151 tbl_structure.php:470 +#: db_structure.php:82 db_structure.php:83 db_structure.php:95 +#: db_structure.php:96 db_structure.php:108 db_structure.php:109 +#: db_structure.php:530 db_structure.php:531 db_tracking.php:86 +#: libraries/Index.class.php:482 libraries/common.lib.php:1663 +#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 +#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 +#: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" msgstr "" # మొదటి అనువాదము -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:542 db_structure.php:543 libraries/common.lib.php:1658 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:104 +#: db_structure.php:84 db_structure.php:85 db_structure.php:97 +#: db_structure.php:98 db_structure.php:110 db_structure.php:111 +#: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 +#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 msgid "Empty" msgstr "ఖాళీ" -#: db_structure.php:315 libraries/tbl_links.inc.php:99 +#: db_structure.php:301 libraries/tbl_links.inc.php:98 #, php-format msgid "Table %s has been emptied" msgstr "" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "View %s has been dropped" msgstr "" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "Table %s has been dropped" msgstr "" -#: db_structure.php:332 +#: db_structure.php:318 msgid "Tracking is active." msgstr "" -#: db_structure.php:334 +#: db_structure.php:320 msgid "Tracking is not active." msgstr "" -#: db_structure.php:419 libraries/display_tbl.lib.php:1943 +#: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -633,162 +606,168 @@ msgid "" msgstr "" # మొదటి అనువాదము -#: db_structure.php:433 db_structure.php:447 libraries/header.inc.php:125 -#: libraries/tbl_info.inc.php:65 tbl_structure.php:184 test/theme.php:73 +#: db_structure.php:419 db_structure.php:433 libraries/header.inc.php:125 +#: libraries/tbl_info.inc.php:60 tbl_structure.php:183 test/theme.php:73 msgid "View" msgstr "చూపుము" -#: db_structure.php:484 libraries/db_structure.lib.php:40 -#: libraries/server_links.inc.php:69 server_replication.php:32 -#: server_replication.php:163 server_status.php:368 +#: db_structure.php:470 libraries/db_structure.lib.php:40 +#: libraries/server_links.inc.php:69 server_replication.php:31 +#: server_replication.php:162 server_status.php:368 msgid "Replication" msgstr "" # మొదటి అనువాదము -#: db_structure.php:488 +#: db_structure.php:474 msgid "Sum" msgstr "మొత్తము" -#: db_structure.php:495 libraries/StorageEngine.class.php:349 +#: db_structure.php:481 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: db_structure.php:523 db_structure.php:540 db_structure.php:541 -#: libraries/display_tbl.lib.php:2080 libraries/display_tbl.lib.php:2085 -#: libraries/mult_submits.inc.php:15 server_databases.php:345 -#: server_databases.php:350 server_privileges.php:1588 tbl_structure.php:454 -#: tbl_structure.php:463 +#: db_structure.php:509 db_structure.php:526 db_structure.php:527 +#: libraries/display_tbl.lib.php:2039 libraries/display_tbl.lib.php:2044 +#: libraries/mult_submits.inc.php:15 server_databases.php:343 +#: server_databases.php:348 server_privileges.php:1592 tbl_structure.php:452 +#: tbl_structure.php:461 msgid "With selected:" msgstr "" -#: db_structure.php:526 libraries/display_tbl.lib.php:2075 -#: server_databases.php:347 server_privileges.php:569 -#: server_privileges.php:1591 tbl_structure.php:457 +#: db_structure.php:512 libraries/display_tbl.lib.php:2034 +#: server_databases.php:345 server_privileges.php:568 +#: server_privileges.php:1595 tbl_structure.php:455 msgid "Check All" msgstr "" -#: db_structure.php:530 libraries/display_tbl.lib.php:2076 -#: libraries/replication_gui.lib.php:35 server_databases.php:349 -#: server_privileges.php:572 server_privileges.php:1595 tbl_structure.php:461 +#: db_structure.php:516 libraries/display_tbl.lib.php:2035 +#: libraries/replication_gui.lib.php:35 server_databases.php:347 +#: server_privileges.php:571 server_privileges.php:1599 tbl_structure.php:459 msgid "Uncheck All" msgstr "" -#: db_structure.php:535 +#: db_structure.php:521 msgid "Check tables having overhead" msgstr "" -#: db_structure.php:546 db_structure.php:547 db_structure.php:598 -#: libraries/display_tbl.lib.php:2179 libraries/mult_submits.inc.php:27 -#: tbl_structure.php:491 tbl_structure.php:493 +#: db_structure.php:532 db_structure.php:533 db_structure.php:584 +#: libraries/display_tbl.lib.php:2138 libraries/mult_submits.inc.php:27 +#: tbl_structure.php:489 tbl_structure.php:491 msgid "Print view" msgstr "" -#: db_structure.php:548 db_structure.php:549 libraries/mult_submits.inc.php:41 -#: tbl_operations.php:580 +#: db_structure.php:534 db_structure.php:535 libraries/mult_submits.inc.php:41 +#: tbl_operations.php:578 msgid "Check table" msgstr "" -#: db_structure.php:550 db_structure.php:551 libraries/mult_submits.inc.php:46 -#: tbl_operations.php:620 tbl_structure.php:708 tbl_structure.php:710 +#: db_structure.php:536 db_structure.php:537 libraries/mult_submits.inc.php:46 +#: tbl_operations.php:618 tbl_structure.php:706 tbl_structure.php:708 msgid "Optimize table" msgstr "" -#: db_structure.php:552 db_structure.php:553 libraries/mult_submits.inc.php:51 -#: tbl_operations.php:610 +#: db_structure.php:538 db_structure.php:539 libraries/mult_submits.inc.php:51 +#: tbl_operations.php:608 msgid "Repair table" msgstr "" -#: db_structure.php:554 db_structure.php:555 libraries/mult_submits.inc.php:56 -#: tbl_operations.php:600 +#: db_structure.php:540 db_structure.php:541 libraries/mult_submits.inc.php:56 +#: tbl_operations.php:598 msgid "Analyze table" msgstr "" -#: db_structure.php:556 db_structure.php:557 libraries/db_links.inc.php:70 -#: libraries/display_export.lib.php:82 libraries/display_tbl.lib.php:2093 -#: libraries/display_tbl.lib.php:2224 libraries/mult_submits.inc.php:61 -#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:81 -#: pmd_pdf.php:83 pmd_pdf.php:108 server_privileges.php:1372 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 +#: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 +#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 +#: pmd_pdf.php:81 pmd_pdf.php:106 server_privileges.php:1376 #: setup/frames/menu.inc.php:22 tbl_row_action.php:58 msgid "Export" msgstr "" -#: db_structure.php:605 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:591 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "" -#: db_tracking.php:65 +#: db_tracking.php:61 msgid "Tracked tables" msgstr "" # మొదటి అనువాదము -#: db_tracking.php:70 libraries/export/htmlword.php:85 +#: db_tracking.php:66 libraries/export/htmlword.php:85 #: libraries/export/latex.php:152 libraries/export/odt.php:112 #: libraries/export/sql.php:339 libraries/export/texytext.php:84 #: libraries/export/xml.php:254 libraries/header.inc.php:105 -#: libraries/header_printview.inc.php:57 server_databases.php:168 -#: server_privileges.php:1652 server_privileges.php:1713 -#: server_privileges.php:1971 server_processlist.php:55 -#: server_synchronize.php:1178 server_synchronize.php:1182 -#: tbl_tracking.php:590 test/theme.php:64 +#: libraries/header_printview.inc.php:57 server_databases.php:166 +#: server_privileges.php:1656 server_privileges.php:1717 +#: server_privileges.php:1975 server_processlist.php:55 +#: server_synchronize.php:1177 server_synchronize.php:1181 +#: tbl_tracking.php:585 test/theme.php:64 msgid "Database" msgstr "డేటాబేస్" -#: db_tracking.php:72 +#: db_tracking.php:68 msgid "Last version" msgstr "" -#: db_tracking.php:73 tbl_tracking.php:593 +#: db_tracking.php:69 tbl_tracking.php:588 msgid "Created" msgstr "" -#: db_tracking.php:74 tbl_tracking.php:594 +#: db_tracking.php:70 tbl_tracking.php:589 msgid "Updated" msgstr "" -#: db_tracking.php:76 libraries/Index.class.php:439 -#: libraries/db_structure.lib.php:44 server_databases.php:202 -#: server_privileges.php:1534 server_privileges.php:1717 -#: server_privileges.php:2065 tbl_structure.php:186 +#: db_tracking.php:71 libraries/common.lib.php:1361 +#: libraries/server_links.inc.php:48 server_processlist.php:58 +#: tbl_tracking.php:590 test/theme.php:100 +msgid "Status" +msgstr "స్థితి" + +#: db_tracking.php:72 libraries/Index.class.php:439 +#: libraries/db_structure.lib.php:44 server_databases.php:200 +#: server_privileges.php:1538 server_privileges.php:1721 +#: server_privileges.php:2069 tbl_structure.php:185 msgid "Action" msgstr "చర్య" -#: db_tracking.php:87 db_tracking.php:119 +#: db_tracking.php:83 db_tracking.php:115 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:105 tbl_tracking.php:547 tbl_tracking.php:605 -#: tbl_tracking.php:612 +#: db_tracking.php:101 tbl_tracking.php:542 tbl_tracking.php:600 +#: tbl_tracking.php:607 msgid "active" msgstr "" -#: db_tracking.php:107 tbl_tracking.php:549 tbl_tracking.php:607 -#: tbl_tracking.php:609 +#: db_tracking.php:103 tbl_tracking.php:544 tbl_tracking.php:602 +#: tbl_tracking.php:604 msgid "not active" msgstr "" -#: db_tracking.php:120 +#: db_tracking.php:116 msgid "Versions" msgstr "" -#: db_tracking.php:121 tbl_tracking.php:378 tbl_tracking.php:623 +#: db_tracking.php:117 tbl_tracking.php:373 tbl_tracking.php:618 msgid "Tracking report" msgstr "" -#: db_tracking.php:122 tbl_tracking.php:250 tbl_tracking.php:623 +#: db_tracking.php:118 tbl_tracking.php:245 tbl_tracking.php:618 msgid "Structure snapshot" msgstr "" -#: db_tracking.php:151 +#: db_tracking.php:147 msgid "Untracked tables" msgstr "" -#: db_tracking.php:171 db_tracking.php:173 tbl_structure.php:527 -#: tbl_structure.php:529 +#: db_tracking.php:167 db_tracking.php:169 tbl_structure.php:525 +#: tbl_structure.php:527 msgid "Track table" msgstr "" -#: db_tracking.php:199 +#: db_tracking.php:195 msgid "Database Log" msgstr "" @@ -796,102 +775,102 @@ msgstr "" msgid "Selected export type has to be saved in file!" msgstr "" -#: export.php:153 export.php:178 export.php:620 +#: export.php:152 export.php:177 export.php:615 #, php-format msgid "Insufficient space to save the file %s." msgstr "" -#: export.php:287 +#: export.php:286 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "" -#: export.php:291 export.php:295 +#: export.php:290 export.php:294 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "" -#: export.php:622 +#: export.php:617 #, php-format msgid "Dump has been saved to file %s." msgstr "" -#: import.php:59 +#: 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." msgstr "" -#: import.php:278 import.php:331 libraries/File.class.php:840 -#: libraries/File.class.php:950 +#: import.php:277 import.php:330 libraries/File.class.php:566 +#: libraries/File.class.php:676 msgid "File could not be read" msgstr "" -#: import.php:286 import.php:295 import.php:314 import.php:323 -#: libraries/File.class.php:1020 libraries/File.class.php:1028 -#: libraries/File.class.php:1044 libraries/File.class.php:1052 +#: import.php:285 import.php:294 import.php:313 import.php:322 +#: libraries/File.class.php:746 libraries/File.class.php:754 +#: libraries/File.class.php:770 libraries/File.class.php:778 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." msgstr "" -#: import.php:336 +#: import.php:335 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " "[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." msgstr "" -#: import.php:371 libraries/display_import.lib.php:23 +#: import.php:370 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:396 +#: import.php:395 msgid "The bookmark has been deleted." msgstr "" -#: import.php:400 +#: import.php:399 msgid "Showing bookmark" msgstr "" -#: import.php:402 sql.php:625 +#: import.php:401 sql.php:618 #, php-format msgid "Bookmark %s created" msgstr "" -#: import.php:408 import.php:414 +#: import.php:407 import.php:413 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" -#: import.php:423 +#: import.php:422 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: import.php:425 +#: import.php:424 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." msgstr "" -#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:240 +#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:239 #: user_password.php:110 msgid "Back" msgstr "వెనుకకి" -#: index.php:188 +#: index.php:183 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" -#: js/messages.php:25 server_synchronize.php:344 server_synchronize.php:356 -#: server_synchronize.php:372 server_synchronize.php:379 -#: server_synchronize.php:738 server_synchronize.php:766 -#: server_synchronize.php:794 server_synchronize.php:806 +#: js/messages.php:25 server_synchronize.php:343 server_synchronize.php:355 +#: server_synchronize.php:371 server_synchronize.php:378 +#: server_synchronize.php:737 server_synchronize.php:765 +#: server_synchronize.php:793 server_synchronize.php:805 msgid "Click to select" msgstr "" @@ -899,15 +878,15 @@ msgstr "" msgid "Click to unselect" msgstr "" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:88 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:87 msgid "\"DROP DATABASE\" statements are disabled." msgstr "" -#: js/messages.php:30 libraries/mult_submits.inc.php:257 sql.php:187 +#: js/messages.php:30 libraries/mult_submits.inc.php:256 sql.php:186 msgid "Do you really want to " msgstr "" -#: js/messages.php:31 libraries/mult_submits.inc.php:257 sql.php:171 +#: js/messages.php:31 libraries/mult_submits.inc.php:256 sql.php:170 msgid "You are about to DESTROY a complete database!" msgstr "" @@ -937,11 +916,11 @@ msgstr "" msgid "The user name is empty!" msgstr "వాడుకరి పేరులో ఏమీ లేదు" -#: js/messages.php:44 server_privileges.php:1228 user_password.php:65 +#: js/messages.php:44 server_privileges.php:1229 user_password.php:65 msgid "The password is empty!" msgstr "సంకేతపదం ఖాళీగా ఉంది!" -#: js/messages.php:45 server_privileges.php:1226 user_password.php:68 +#: js/messages.php:45 server_privileges.php:1227 user_password.php:68 msgid "The passwords aren't the same!" msgstr "సంకేతపదాలు సరిపోలలేదు!" @@ -949,27 +928,27 @@ msgstr "సంకేతపదాలు సరిపోలలేదు!" msgid "Cancel" msgstr "రద్దుచేయి" -#: js/messages.php:52 pmd_save_pos.php:53 +#: js/messages.php:52 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "" -#: js/messages.php:53 pmd_relation_upd.php:48 +#: js/messages.php:53 pmd_relation_upd.php:47 msgid "Relation deleted" msgstr "" -#: js/messages.php:54 pmd_relation_new.php:63 +#: js/messages.php:54 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:55 pmd_relation_new.php:85 +#: js/messages.php:55 pmd_relation_new.php:84 msgid "Internal relation added" msgstr "" -#: js/messages.php:56 pmd_relation_new.php:62 pmd_relation_new.php:87 +#: js/messages.php:56 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:57 pmd_relation_new.php:30 +#: js/messages.php:57 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "" @@ -977,13 +956,13 @@ msgstr "" msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:59 libraries/relation.lib.php:94 -#: libraries/relation.lib.php:106 +#: js/messages.php:59 libraries/relation.lib.php:89 +#: libraries/relation.lib.php:101 msgid "General relation features" msgstr "" -#: js/messages.php:59 libraries/relation.lib.php:88 -#: libraries/relation.lib.php:95 +#: js/messages.php:59 libraries/relation.lib.php:83 +#: libraries/relation.lib.php:90 msgid "Disabled" msgstr "" @@ -999,7 +978,7 @@ msgstr "" msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:547 +#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:545 msgid "Choose column to display" msgstr "" @@ -1026,10 +1005,10 @@ msgstr "క్రితము" # మొదటి అనువాదము #. l10n: Display text for next month link in calendar -#: js/messages.php:81 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:337 -#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:422 -#: tbl_structure.php:800 +#: js/messages.php:81 libraries/common.lib.php:2358 +#: libraries/common.lib.php:2361 libraries/display_tbl.lib.php:336 +#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 +#: tbl_structure.php:798 msgid "Next" msgstr "తదుపరి" @@ -1103,27 +1082,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1562 +#: js/messages.php:101 libraries/common.lib.php:1566 msgid "Jan" msgstr "జన" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1564 +#: js/messages.php:103 libraries/common.lib.php:1568 msgid "Feb" msgstr "ఫిబ్ర" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1566 +#: js/messages.php:105 libraries/common.lib.php:1570 msgid "Mar" msgstr "మార్చి" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1568 +#: js/messages.php:107 libraries/common.lib.php:1572 msgid "Apr" msgstr "ఏప్రి" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1570 +#: js/messages.php:109 libraries/common.lib.php:1574 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1131,37 +1110,37 @@ msgid "May" msgstr "మే" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1572 +#: js/messages.php:111 libraries/common.lib.php:1576 msgid "Jun" msgstr "జూన్" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1574 +#: js/messages.php:113 libraries/common.lib.php:1578 msgid "Jul" msgstr "జూలై" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1576 +#: js/messages.php:115 libraries/common.lib.php:1580 msgid "Aug" msgstr "ఆగ" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1578 +#: js/messages.php:117 libraries/common.lib.php:1582 msgid "Sep" msgstr "సెప్టె" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1580 +#: js/messages.php:119 libraries/common.lib.php:1584 msgid "Oct" msgstr "అక్టో" #. l10n: Short month name -#: js/messages.php:121 libraries/common.lib.php:1582 +#: js/messages.php:121 libraries/common.lib.php:1586 msgid "Nov" msgstr "నవం" #. l10n: Short month name -#: js/messages.php:123 libraries/common.lib.php:1584 +#: js/messages.php:123 libraries/common.lib.php:1588 msgid "Dec" msgstr "డిసెం" @@ -1202,37 +1181,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1587 +#: js/messages.php:136 libraries/common.lib.php:1591 msgid "Sun" msgstr "ఆది" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1589 +#: js/messages.php:138 libraries/common.lib.php:1593 msgid "Mon" msgstr "సోమ" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1591 +#: js/messages.php:140 libraries/common.lib.php:1595 msgid "Tue" msgstr "మంగళ" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1593 +#: js/messages.php:142 libraries/common.lib.php:1597 msgid "Wed" msgstr "బుధ" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1595 +#: js/messages.php:144 libraries/common.lib.php:1599 msgid "Thu" msgstr "గురు" #. l10n: Short week day name -#: js/messages.php:146 libraries/common.lib.php:1597 +#: js/messages.php:146 libraries/common.lib.php:1601 msgid "Fri" msgstr "శుక్ర" #. l10n: Short week day name -#: js/messages.php:148 libraries/common.lib.php:1599 +#: js/messages.php:148 libraries/common.lib.php:1603 msgid "Sat" msgstr "శని" @@ -1313,74 +1292,73 @@ msgstr "క్షణానికి" msgid "Font size" msgstr "" -#: libraries/File.class.php:336 libraries/File.class.php:424 -#: libraries/File.class.php:561 libraries/File.class.php:700 -msgid "Unknown error in file upload." -msgstr "" - -#: libraries/File.class.php:406 +#: libraries/File.class.php:315 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:409 +#: libraries/File.class.php:318 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:412 +#: libraries/File.class.php:321 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:415 +#: libraries/File.class.php:324 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:418 +#: libraries/File.class.php:327 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:421 +#: libraries/File.class.php:330 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:898 +#: libraries/File.class.php:333 +msgid "Unknown error in file upload." +msgstr "" + +#: libraries/File.class.php:624 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "" -#: libraries/Index.class.php:427 tbl_relation.php:528 +#: libraries/Index.class.php:427 tbl_relation.php:526 msgid "No index defined!" msgstr "" -#: libraries/Index.class.php:432 server_databases.php:131 tbl_tracking.php:315 +#: libraries/Index.class.php:432 server_databases.php:129 tbl_tracking.php:310 msgid "Indexes" msgstr "" #: libraries/Index.class.php:443 libraries/mult_submits.inc.php:102 -#: libraries/tbl_properties.inc.php:518 tbl_structure.php:32 -#: tbl_structure.php:154 tbl_structure.php:158 tbl_structure.php:473 -#: tbl_tracking.php:321 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:31 +#: tbl_structure.php:153 tbl_structure.php:157 tbl_structure.php:471 +#: tbl_tracking.php:316 msgid "Unique" msgstr "" -#: libraries/Index.class.php:444 tbl_tracking.php:322 +#: libraries/Index.class.php:444 tbl_tracking.php:317 msgid "Packed" msgstr "" -#: libraries/Index.class.php:446 tbl_tracking.php:324 +#: libraries/Index.class.php:446 tbl_tracking.php:319 msgid "Cardinality" msgstr "" -#: libraries/Index.class.php:449 tbl_tracking.php:278 tbl_tracking.php:327 +#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322 msgid "Comment" msgstr "వ్యాఖ్య" #: libraries/Index.class.php:465 libraries/common.lib.php:609 -#: libraries/common.lib.php:1198 libraries/display_tbl.lib.php:1116 +#: libraries/common.lib.php:1191 libraries/display_tbl.lib.php:1115 #: libraries/import.lib.php:1119 libraries/import.lib.php:1143 -#: pdf_pages.php:284 setup/frames/index.inc.php:124 +#: pdf_pages.php:283 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:349 tbl_row_action.php:68 msgid "Edit" msgstr "మార్చు" @@ -1402,15 +1380,15 @@ msgid "" msgstr "" #: libraries/List_Database.class.php:430 libraries/server_links.inc.php:40 -#: server_databases.php:87 server_privileges.php:1652 +#: server_databases.php:85 server_privileges.php:1656 #: setup/lib/messages.inc.php:107 test/theme.php:92 msgid "Databases" msgstr "" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:259 libraries/import.lib.php:134 pdf_schema.php:31 -#: pdf_schema.php:231 tbl_change.php:1023 tbl_operations.php:212 -#: tbl_relation.php:289 view_operations.php:61 +#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 +#: tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "" @@ -1435,40 +1413,40 @@ msgid_plural "%1$d rows inserted." msgstr[0] "" msgstr[1] "" -#: libraries/StorageEngine.class.php:196 +#: libraries/StorageEngine.class.php:194 msgid "" "There is no detailed status information available for this storage engine." msgstr "" -#: libraries/StorageEngine.class.php:352 +#: libraries/StorageEngine.class.php:354 #, php-format msgid "%s is available on this MySQL server." msgstr "" -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:357 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "" -#: libraries/StorageEngine.class.php:359 +#: libraries/StorageEngine.class.php:361 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "" -#: libraries/Table.class.php:1018 +#: libraries/Table.class.php:1017 msgid "Invalid database" msgstr "" -#: libraries/Table.class.php:1032 tbl_get_field.php:25 +#: libraries/Table.class.php:1031 tbl_get_field.php:25 msgid "Invalid table name" msgstr "" -#: libraries/Table.class.php:1047 +#: libraries/Table.class.php:1046 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "" -#: libraries/Table.class.php:1131 +#: libraries/Table.class.php:1129 #, php-format msgid "Table %s has been renamed to %s" msgstr "" @@ -1487,22 +1465,22 @@ msgstr "" msgid "take it" msgstr "తీసుకొనుము" -#: libraries/Theme_Manager.class.php:114 +#: libraries/Theme_Manager.class.php:109 #, php-format msgid "Default theme %s not found!" msgstr "" -#: libraries/Theme_Manager.class.php:152 +#: libraries/Theme_Manager.class.php:147 #, php-format msgid "Theme %s not found!" msgstr "" -#: libraries/Theme_Manager.class.php:220 +#: libraries/Theme_Manager.class.php:215 #, php-format msgid "Theme path not found for theme %s!" msgstr "" -#: libraries/Theme_Manager.class.php:296 test/theme.php:160 themes.php:20 +#: libraries/Theme_Manager.class.php:291 test/theme.php:160 themes.php:20 #: themes.php:40 msgid "Theme / Style" msgstr "" @@ -1611,20 +1589,20 @@ msgid "Authenticating..." msgstr "" # మొదటి అనువాదము -#: libraries/blobstreaming.lib.php:689 +#: libraries/blobstreaming.lib.php:340 msgid "View image" msgstr "చిత్రమును చూపుము" -#: libraries/blobstreaming.lib.php:693 +#: libraries/blobstreaming.lib.php:344 msgid "Play audio" msgstr "" # మొదటి అనువాదము -#: libraries/blobstreaming.lib.php:698 +#: libraries/blobstreaming.lib.php:349 msgid "View video" msgstr "వీడియోను చూపుము" -#: libraries/blobstreaming.lib.php:702 +#: libraries/blobstreaming.lib.php:353 msgid "Download file" msgstr "" @@ -1669,7 +1647,7 @@ msgstr "" msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:909 +#: libraries/common.inc.php:908 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" @@ -1694,7 +1672,8 @@ msgstr "" #: libraries/common.lib.php:425 libraries/common.lib.php:427 #: libraries/common.lib.php:429 libraries/common.lib.php:445 #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 -#: libraries/display_export.lib.php:163 libraries/relation.lib.php:84 +#: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 +#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 #: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" @@ -1709,148 +1688,148 @@ msgstr "" msgid "MySQL said: " msgstr "" -#: libraries/common.lib.php:1136 +#: libraries/common.lib.php:1129 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1174 setup/lib/messages.inc.php:350 +#: libraries/common.lib.php:1167 setup/lib/messages.inc.php:350 msgid "Explain SQL" msgstr "" -#: libraries/common.lib.php:1177 +#: libraries/common.lib.php:1170 msgid "Skip Explain SQL" msgstr "" -#: libraries/common.lib.php:1211 +#: libraries/common.lib.php:1204 msgid "Without PHP Code" msgstr "" -#: libraries/common.lib.php:1214 setup/lib/messages.inc.php:352 +#: libraries/common.lib.php:1207 setup/lib/messages.inc.php:352 msgid "Create PHP Code" msgstr "" -#: libraries/common.lib.php:1232 server_status.php:451 +#: libraries/common.lib.php:1225 server_status.php:451 #: setup/lib/messages.inc.php:351 msgid "Refresh" msgstr "" -#: libraries/common.lib.php:1241 +#: libraries/common.lib.php:1234 msgid "Skip Validate SQL" msgstr "" -#: libraries/common.lib.php:1244 setup/lib/messages.inc.php:353 +#: libraries/common.lib.php:1237 setup/lib/messages.inc.php:353 msgid "Validate SQL" msgstr "" -#: libraries/common.lib.php:1283 +#: libraries/common.lib.php:1287 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1285 +#: libraries/common.lib.php:1289 msgid "Inline" msgstr "" -#: libraries/common.lib.php:1339 libraries/common.lib.php:1354 +#: libraries/common.lib.php:1343 libraries/common.lib.php:1358 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1358 libraries/tbl_triggers.lib.php:27 +#: libraries/common.lib.php:1362 libraries/tbl_triggers.lib.php:27 #: server_processlist.php:57 msgid "Time" msgstr "సమయం" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "B" msgstr "" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "KiB" msgstr "" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "MiB" msgstr "" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "GiB" msgstr "" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "TiB" msgstr "" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "PiB" msgstr "" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "EiB" msgstr "" #. l10n: Thousands separator -#: libraries/common.lib.php:1424 +#: libraries/common.lib.php:1428 msgid "," msgstr "" #. l10n: Decimal separator -#: libraries/common.lib.php:1426 +#: libraries/common.lib.php:1430 msgid "." msgstr "" #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1603 +#: libraries/common.lib.php:1607 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y at %I:%M %p" -#: libraries/common.lib.php:1909 +#: libraries/common.lib.php:1913 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s రోజులు, %s గంటలు, %s నిమిషాలు మరియు %s క్షణాలు" # మొదటి అనువాదము -#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 -#: libraries/display_tbl.lib.php:289 server_status.php:718 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 +#: libraries/display_tbl.lib.php:288 server_status.php:718 msgid "Begin" msgstr "మొదలు" # మొదటి అనువాదము -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 -#: libraries/display_tbl.lib.php:290 server_binlog.php:154 +#: libraries/common.lib.php:2328 libraries/common.lib.php:2331 +#: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "క్రితము" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 -#: libraries/display_tbl.lib.php:352 +#: libraries/common.lib.php:2359 libraries/common.lib.php:2362 +#: libraries/display_tbl.lib.php:351 msgid "End" msgstr "ముగింపు" -#: libraries/common.lib.php:2429 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "" -#: libraries/common.lib.php:2448 +#: libraries/common.lib.php:2453 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2828 libraries/common.lib.php:2835 -#: libraries/db_links.inc.php:67 libraries/export/sql.php:24 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 +#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 -#: libraries/tbl_links.inc.php:59 querywindow.php:89 test/theme.php:96 +#: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "" -#: libraries/common.lib.php:2837 libraries/db_links.inc.php:103 -#: libraries/tbl_links.inc.php:94 libraries/tbl_links.inc.php:116 -#: view_operations.php:88 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: view_operations.php:87 msgid "Operations" msgstr "" -#: libraries/core.lib.php:282 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1866,38 +1845,38 @@ msgstr "" msgid "Name" msgstr "పేరు" -#: libraries/db_links.inc.php:44 +#: libraries/db_links.inc.php:43 #, php-format msgid "Database %s has been dropped." msgstr "" -#: libraries/db_links.inc.php:56 libraries/db_links.inc.php:57 -#: libraries/db_links.inc.php:58 +#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 +#: libraries/db_links.inc.php:57 msgid "Database seems to be empty!" msgstr "" -#: libraries/db_links.inc.php:80 libraries/relation.lib.php:142 -#: libraries/tbl_links.inc.php:68 +#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:85 +#: libraries/db_links.inc.php:84 msgid "Query" msgstr "" -#: libraries/db_links.inc.php:90 libraries/relation.lib.php:138 +#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:97 libraries/server_links.inc.php:87 -#: libraries/tbl_links.inc.php:90 pmd_pdf.php:83 pmd_pdf.php:109 +#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "" -#: libraries/db_links.inc.php:110 libraries/server_links.inc.php:65 -#: server_privileges.php:111 server_privileges.php:1714 -#: server_privileges.php:2063 test/theme.php:116 +#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: server_privileges.php:110 server_privileges.php:1718 +#: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" msgstr "" @@ -1909,14 +1888,14 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1847 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1806 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "" -#: libraries/db_structure.lib.php:60 server_databases.php:141 -#: tbl_printview.php:334 tbl_structure.php:681 +#: libraries/db_structure.lib.php:60 server_databases.php:139 +#: tbl_printview.php:333 tbl_structure.php:679 msgid "Overhead" msgstr "" @@ -1933,7 +1912,7 @@ msgstr "" msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "" -#: libraries/dbi/mysql.dbi.lib.php:358 tbl_structure.php:607 +#: libraries/dbi/mysql.dbi.lib.php:358 tbl_structure.php:605 msgid "Details..." msgstr "వివరాలు..." @@ -1943,22 +1922,22 @@ msgid "Change password" msgstr "" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:807 +#: libraries/replication_gui.lib.php:347 server_privileges.php:806 msgid "No Password" msgstr "సంకేతపదం లేదు" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1530 server_synchronize.php:1174 +#: libraries/replication_gui.lib.php:351 server_privileges.php:795 +#: server_privileges.php:799 server_privileges.php:810 +#: server_privileges.php:1534 server_synchronize.php:1173 msgid "Password" msgstr "సంకేతపదం" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:815 server_privileges.php:818 +#: server_privileges.php:814 server_privileges.php:817 msgid "Re-type" msgstr "" @@ -1980,8 +1959,8 @@ msgstr "" msgid "Create" msgstr "సృష్టించు" -#: libraries/display_create_database.lib.php:39 server_privileges.php:113 -#: server_privileges.php:1419 server_replication.php:34 +#: libraries/display_create_database.lib.php:39 server_privileges.php:112 +#: server_privileges.php:1423 server_replication.php:33 msgid "No Privileges" msgstr "" @@ -1998,49 +1977,49 @@ msgstr "" msgid "Number of columns" msgstr "" -#: libraries/display_export.lib.php:41 +#: libraries/display_export.lib.php:35 msgid "Could not load export plugins, please check your installation!" msgstr "" -#: libraries/display_export.lib.php:106 +#: libraries/display_export.lib.php:100 #, php-format msgid "Dump %s row(s) starting at row # %s" msgstr "" -#: libraries/display_export.lib.php:114 +#: libraries/display_export.lib.php:108 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:124 setup/lib/messages.inc.php:79 +#: libraries/display_export.lib.php:118 setup/lib/messages.inc.php:79 msgid "Save as file" msgstr "" -#: libraries/display_export.lib.php:133 +#: libraries/display_export.lib.php:127 #, php-format msgid "Save on server in %s directory" msgstr "" -#: libraries/display_export.lib.php:141 setup/lib/messages.inc.php:87 +#: libraries/display_export.lib.php:135 setup/lib/messages.inc.php:87 msgid "Overwrite existing file(s)" msgstr "" -#: libraries/display_export.lib.php:147 +#: libraries/display_export.lib.php:141 msgid "File name template" msgstr "" -#: libraries/display_export.lib.php:151 +#: libraries/display_export.lib.php:145 msgid "server name" msgstr "" -#: libraries/display_export.lib.php:154 +#: libraries/display_export.lib.php:148 msgid "database name" msgstr "" -#: libraries/display_export.lib.php:157 +#: libraries/display_export.lib.php:151 msgid "table name" msgstr "" -#: libraries/display_export.lib.php:161 +#: libraries/display_export.lib.php:155 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2048,39 +2027,39 @@ msgid "" "%3$s. Other text will be kept as is." msgstr "" -#: libraries/display_export.lib.php:202 +#: libraries/display_export.lib.php:196 msgid "remember template" msgstr "" -#: libraries/display_export.lib.php:210 libraries/display_import.lib.php:177 +#: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 #: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 msgid "Character set of the file:" msgstr "" -#: libraries/display_export.lib.php:235 setup/lib/messages.inc.php:81 +#: libraries/display_export.lib.php:229 setup/lib/messages.inc.php:81 msgid "Compression" msgstr "" -#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:196 -#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:529 -#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:574 -#: server_privileges.php:1867 server_processlist.php:74 +#: libraries/display_export.lib.php:234 libraries/display_import.lib.php:196 +#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:528 +#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:573 +#: server_privileges.php:1871 server_processlist.php:74 msgid "None" msgstr "" -#: libraries/display_export.lib.php:247 +#: libraries/display_export.lib.php:241 msgid "\"zipped\"" msgstr "" -#: libraries/display_export.lib.php:253 +#: libraries/display_export.lib.php:247 msgid "\"gzipped\"" msgstr "" -#: libraries/display_export.lib.php:259 +#: libraries/display_export.lib.php:253 msgid "\"bzipped\"" msgstr "" -#: libraries/display_export.lib.php:274 libraries/export/sql.php:42 +#: libraries/display_export.lib.php:268 libraries/export/sql.php:42 #: libraries/import/sql.php:31 msgid "SQL compatibility mode" msgstr "" @@ -2115,12 +2094,12 @@ msgid "File uploads are not allowed on this server." msgstr "" #: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 -#: tbl_change.php:1024 +#: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "" #: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 -#: tbl_change.php:1027 +#: tbl_change.php:925 msgid "web server upload directory" msgstr "" @@ -2199,41 +2178,41 @@ msgstr "కాగితపు పరిమాణం" msgid "Language" msgstr "భాష" -#: libraries/display_tbl.lib.php:303 +#: libraries/display_tbl.lib.php:302 #, php-format msgid "%d is not valid row number." msgstr "" -#: libraries/display_tbl.lib.php:309 +#: libraries/display_tbl.lib.php:308 msgid "row(s) starting from row #" msgstr "" -#: libraries/display_tbl.lib.php:315 +#: libraries/display_tbl.lib.php:314 msgid "horizontal" msgstr "" -#: libraries/display_tbl.lib.php:316 +#: libraries/display_tbl.lib.php:315 msgid "horizontal (rotated headers)" msgstr "" -#: libraries/display_tbl.lib.php:317 +#: libraries/display_tbl.lib.php:316 msgid "vertical" msgstr "" -#: libraries/display_tbl.lib.php:323 +#: libraries/display_tbl.lib.php:322 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "" -#: libraries/display_tbl.lib.php:345 +#: libraries/display_tbl.lib.php:344 msgid "This operation could take a long time. Proceed anyway?" msgstr "" -#: libraries/display_tbl.lib.php:511 +#: libraries/display_tbl.lib.php:510 msgid "Sort by key" msgstr "" -#: libraries/display_tbl.lib.php:554 libraries/export/codegen.php:38 +#: libraries/display_tbl.lib.php:553 libraries/export/codegen.php:38 #: libraries/export/csv.php:29 libraries/export/excel.php:34 #: libraries/export/htmlword.php:28 libraries/export/latex.php:32 #: libraries/export/mediawiki.php:21 libraries/export/ods.php:26 @@ -2243,99 +2222,99 @@ msgstr "" #: libraries/export/xlsx.php:26 libraries/export/xml.php:23 #: libraries/export/yaml.php:27 libraries/import.lib.php:1114 #: libraries/import.lib.php:1136 libraries/import/csv.php:31 -#: libraries/import/docsql.php:33 libraries/import/ldi.php:46 +#: libraries/import/docsql.php:32 libraries/import/ldi.php:46 #: libraries/import/ods.php:30 libraries/import/sql.php:19 #: libraries/import/xls.php:25 libraries/import/xlsx.php:25 -#: libraries/import/xml.php:25 tbl_select.php:264 tbl_structure.php:752 +#: libraries/import/xml.php:25 tbl_select.php:263 tbl_structure.php:750 msgid "Options" msgstr "" -#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:569 +#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:568 msgid "Partial Texts" msgstr "పాక్షిక పాఠ్యాలు" -#: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:573 +#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:572 msgid "Full Texts" msgstr "" -#: libraries/display_tbl.lib.php:586 +#: libraries/display_tbl.lib.php:585 msgid "Relational key" msgstr "" -#: libraries/display_tbl.lib.php:587 +#: libraries/display_tbl.lib.php:586 msgid "Relational display column" msgstr "" -#: libraries/display_tbl.lib.php:594 +#: libraries/display_tbl.lib.php:593 msgid "Show binary contents" msgstr "" -#: libraries/display_tbl.lib.php:596 +#: libraries/display_tbl.lib.php:595 msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:598 +#: libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "" # మొదటి అనువాదము -#: libraries/display_tbl.lib.php:606 pmd_general.php:140 tbl_change.php:312 -#: tbl_change.php:318 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:307 +#: tbl_change.php:313 msgid "Hide" msgstr "దాచు" -#: libraries/display_tbl.lib.php:606 libraries/relation.lib.php:122 -#: libraries/tbl_properties.inc.php:143 transformation_overview.php:46 +#: libraries/display_tbl.lib.php:605 libraries/relation.lib.php:117 +#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46 msgid "Browser transformation" msgstr "" -#: libraries/display_tbl.lib.php:1125 libraries/display_tbl.lib.php:1129 -#: libraries/display_tbl.lib.php:1131 +#: libraries/display_tbl.lib.php:1124 libraries/display_tbl.lib.php:1128 +#: libraries/display_tbl.lib.php:1130 msgid "Execute bookmarked query" msgstr "" -#: libraries/display_tbl.lib.php:1144 libraries/display_tbl.lib.php:1156 +#: libraries/display_tbl.lib.php:1143 libraries/display_tbl.lib.php:1155 msgid "The row has been deleted" msgstr "" -#: libraries/display_tbl.lib.php:1183 libraries/display_tbl.lib.php:2055 +#: libraries/display_tbl.lib.php:1182 libraries/display_tbl.lib.php:2014 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "" -#: libraries/display_tbl.lib.php:1933 +#: libraries/display_tbl.lib.php:1892 msgid "in query" msgstr "" -#: libraries/display_tbl.lib.php:1951 +#: libraries/display_tbl.lib.php:1910 msgid "Showing rows" msgstr "" -#: libraries/display_tbl.lib.php:1961 +#: libraries/display_tbl.lib.php:1920 msgid "total" msgstr "మొత్తం" -#: libraries/display_tbl.lib.php:1969 sql.php:523 +#: libraries/display_tbl.lib.php:1928 sql.php:522 #, php-format msgid "Query took %01.4f sec" msgstr "" # మొదటి అనువాదము -#: libraries/display_tbl.lib.php:2088 libraries/mult_submits.inc.php:112 -#: querywindow.php:115 querywindow.php:119 querywindow.php:122 -#: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:469 +#: libraries/display_tbl.lib.php:2047 libraries/mult_submits.inc.php:112 +#: querywindow.php:114 querywindow.php:118 querywindow.php:121 +#: tbl_structure.php:23 tbl_structure.php:148 tbl_structure.php:467 msgid "Change" msgstr "మార్చుము" -#: libraries/display_tbl.lib.php:2158 +#: libraries/display_tbl.lib.php:2117 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2186 +#: libraries/display_tbl.lib.php:2145 msgid "Print view (with full texts)" msgstr "" -#: libraries/display_tbl.lib.php:2359 +#: libraries/display_tbl.lib.php:2318 msgid "Link not found" msgstr "" @@ -2387,9 +2366,9 @@ msgstr "" msgid "Buffer Pool Usage" msgstr "" -#: libraries/engines/innodb.lib.php:168 server_databases.php:136 -#: server_databases.php:304 server_status.php:524 server_status.php:585 -#: server_status.php:606 tbl_printview.php:349 tbl_structure.php:695 +#: libraries/engines/innodb.lib.php:168 server_databases.php:134 +#: server_databases.php:302 server_status.php:524 server_status.php:585 +#: server_status.php:606 tbl_printview.php:348 tbl_structure.php:693 msgid "Total" msgstr "మొత్తం" @@ -2513,6 +2492,77 @@ msgid "" "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." msgstr "" +#: libraries/engines/pbms.lib.php:31 +msgid "Garbage Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:32 +msgid "The percentage of garbage in a repository file before it is compacted." +msgstr "" + +#: libraries/engines/pbms.lib.php:36 libraries/replication_gui.lib.php:69 +#: server_synchronize.php:1161 +msgid "Port" +msgstr "" + +#: libraries/engines/pbms.lib.php:37 +msgid "" +"The port for the PBMS stream-based communications. Setting this value to 0 " +"will disable HTTP communication with the daemon." +msgstr "" + +#: libraries/engines/pbms.lib.php:41 +msgid "Repository Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:42 +msgid "" +"The maximum size of a BLOB repository file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:46 +msgid "Temp Blob Timeout" +msgstr "" + +#: libraries/engines/pbms.lib.php:47 +msgid "" +"The timeout, in seconds, for temporary BLOBs. Uploaded BLOB data is removed " +"after this time, unless they are referenced by a record in the database." +msgstr "" + +#: libraries/engines/pbms.lib.php:51 +msgid "Temp Log Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:52 +msgid "" +"The maximum size of a temporary BLOB log file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:56 +msgid "Max Keep Alive" +msgstr "" + +#: libraries/engines/pbms.lib.php:57 +msgid "" +"The timeout for inactive connection with the keep-alive flag set. After this " +"time the connection will be closed. The time-out is in milliseconds (1/1000)." +msgstr "" + +#: libraries/engines/pbms.lib.php:61 +msgid "Metadata Headers" +msgstr "" + +#: libraries/engines/pbms.lib.php:62 +msgid "" +"A \":\" delimited list of metadata headers to be used to initialize the " +"pbms_metadata_header table when a database is created." +msgstr "" + #: libraries/engines/pbxt.lib.php:22 msgid "Index cache size" msgstr "" @@ -2636,7 +2686,7 @@ msgid "" msgstr "" #: libraries/export/codegen.php:36 setup/lib/messages.inc.php:85 -#: tbl_printview.php:374 tbl_structure.php:736 +#: tbl_printview.php:373 tbl_structure.php:734 msgid "Format" msgstr "" @@ -2699,9 +2749,9 @@ msgstr "" #: libraries/export/htmlword.php:23 libraries/export/latex.php:59 #: libraries/export/latex.php:205 libraries/export/odt.php:47 #: libraries/export/sql.php:105 libraries/export/sql.php:865 -#: libraries/export/texytext.php:27 server_databases.php:126 -#: server_privileges.php:576 server_replication.php:315 tbl_printview.php:315 -#: tbl_structure.php:664 +#: libraries/export/texytext.php:27 server_databases.php:124 +#: server_privileges.php:575 server_replication.php:314 tbl_printview.php:314 +#: tbl_structure.php:662 msgid "Data" msgstr "" @@ -2748,13 +2798,13 @@ msgid "Label key" msgstr "" #: libraries/export/latex.php:46 libraries/export/odt.php:34 -#: libraries/export/sql.php:90 tbl_relation.php:398 +#: libraries/export/sql.php:90 tbl_relation.php:396 msgid "Relations" msgstr "సంబంధాలు" #: libraries/export/latex.php:52 libraries/export/odt.php:40 #: libraries/export/odt.php:317 libraries/export/sql.php:94 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "" @@ -2762,10 +2812,10 @@ msgstr "" #: libraries/export/xml.php:101 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1529 server_privileges.php:2061 -#: server_processlist.php:54 server_synchronize.php:1158 +#: libraries/replication_gui.lib.php:331 server_privileges.php:730 +#: server_privileges.php:733 server_privileges.php:789 +#: server_privileges.php:1533 server_privileges.php:2065 +#: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "" @@ -2953,8 +3003,8 @@ msgstr "" msgid "Export contents" msgstr "" -#: libraries/footer.inc.php:182 libraries/footer.inc.php:193 -#: libraries/footer.inc.php:196 +#: libraries/footer.inc.php:180 libraries/footer.inc.php:191 +#: libraries/footer.inc.php:194 msgid "Open new phpMyAdmin window" msgstr "" @@ -2970,7 +3020,7 @@ msgstr "" msgid "Generated by" msgstr "" -#: libraries/import.lib.php:151 sql.php:519 tbl_change.php:180 +#: libraries/import.lib.php:151 sql.php:518 tbl_change.php:175 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" @@ -3026,7 +3076,7 @@ msgstr "" msgid "Column names in first row" msgstr "" -#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:501 +#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:500 #: view_create.php:147 msgid "Column names" msgstr "" @@ -3052,12 +3102,12 @@ msgstr "" msgid "Invalid column count in CSV input on line %d." msgstr "" -#: libraries/import/docsql.php:28 +#: libraries/import/docsql.php:27 msgid "DocSQL" msgstr "" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 -#: server_synchronize.php:427 server_synchronize.php:870 +#: libraries/import/docsql.php:30 libraries/tbl_properties.inc.php:616 +#: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "" @@ -3113,26 +3163,26 @@ msgstr "కాదు" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:512 -#: tbl_structure.php:28 tbl_structure.php:152 tbl_structure.php:156 -#: tbl_structure.php:472 +#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:511 +#: tbl_structure.php:27 tbl_structure.php:151 tbl_structure.php:155 +#: tbl_structure.php:470 msgid "Primary" msgstr "" #: libraries/mult_submits.inc.php:97 libraries/tbl_properties.inc.php:115 -#: libraries/tbl_properties.inc.php:524 tbl_printview.php:324 -#: tbl_structure.php:30 tbl_structure.php:153 tbl_structure.php:157 -#: tbl_structure.php:474 tbl_structure.php:672 +#: libraries/tbl_properties.inc.php:523 tbl_printview.php:323 +#: tbl_structure.php:29 tbl_structure.php:152 tbl_structure.php:156 +#: tbl_structure.php:472 tbl_structure.php:670 msgid "Index" msgstr "" -#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:530 -#: tbl_structure.php:34 tbl_structure.php:155 tbl_structure.php:159 -#: tbl_structure.php:477 +#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:529 +#: tbl_structure.php:33 tbl_structure.php:154 tbl_structure.php:158 +#: tbl_structure.php:475 msgid "Fulltext" msgstr "" -#: libraries/mult_submits.inc.php:434 tbl_replace.php:330 +#: libraries/mult_submits.inc.php:433 tbl_replace.php:330 msgid "No change" msgstr "" @@ -3141,201 +3191,201 @@ msgstr "" msgid "Charset" msgstr "అక్షరమాల" -#: libraries/mysql_charsets.lib.php:210 libraries/mysql_charsets.lib.php:411 -#: tbl_change.php:515 +#: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 +#: tbl_change.php:510 msgid "Binary" msgstr "" -#: libraries/mysql_charsets.lib.php:222 +#: libraries/mysql_charsets.lib.php:214 msgid "Bulgarian" msgstr "బల్గేరియన్" # మొదటి అనువాదము -#: libraries/mysql_charsets.lib.php:226 libraries/mysql_charsets.lib.php:351 +#: libraries/mysql_charsets.lib.php:218 libraries/mysql_charsets.lib.php:343 msgid "Simplified Chinese" msgstr "సరళ చైనీసు" # మొదటి అనువాదము -#: libraries/mysql_charsets.lib.php:228 libraries/mysql_charsets.lib.php:371 +#: libraries/mysql_charsets.lib.php:220 libraries/mysql_charsets.lib.php:363 msgid "Traditional Chinese" msgstr "సాంప్రదాయ చైనీస్" -#: libraries/mysql_charsets.lib.php:232 libraries/mysql_charsets.lib.php:418 +#: libraries/mysql_charsets.lib.php:224 libraries/mysql_charsets.lib.php:410 msgid "case-insensitive" msgstr "" -#: libraries/mysql_charsets.lib.php:235 libraries/mysql_charsets.lib.php:420 +#: libraries/mysql_charsets.lib.php:227 libraries/mysql_charsets.lib.php:412 msgid "case-sensitive" msgstr "" -#: libraries/mysql_charsets.lib.php:238 +#: libraries/mysql_charsets.lib.php:230 msgid "Croatian" msgstr "క్రొయోషియన్" # మొదటి అనువాదము -#: libraries/mysql_charsets.lib.php:241 +#: libraries/mysql_charsets.lib.php:233 msgid "Czech" msgstr "ఛెక్" -#: libraries/mysql_charsets.lib.php:244 +#: libraries/mysql_charsets.lib.php:236 msgid "Danish" msgstr "డానిష్" -#: libraries/mysql_charsets.lib.php:247 +#: libraries/mysql_charsets.lib.php:239 msgid "English" msgstr "ఆంగ్లం" -#: libraries/mysql_charsets.lib.php:250 +#: libraries/mysql_charsets.lib.php:242 msgid "Esperanto" msgstr "" -#: libraries/mysql_charsets.lib.php:253 +#: libraries/mysql_charsets.lib.php:245 msgid "Estonian" msgstr "" -#: libraries/mysql_charsets.lib.php:256 libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:248 libraries/mysql_charsets.lib.php:251 msgid "German" msgstr "జర్మన్" -#: libraries/mysql_charsets.lib.php:256 +#: libraries/mysql_charsets.lib.php:248 msgid "dictionary" msgstr "నిఘంటువు" -#: libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:251 msgid "phone book" msgstr "" -#: libraries/mysql_charsets.lib.php:262 +#: libraries/mysql_charsets.lib.php:254 msgid "Hungarian" msgstr "హంగేరియన్" -#: libraries/mysql_charsets.lib.php:265 +#: libraries/mysql_charsets.lib.php:257 msgid "Icelandic" msgstr "" # మొదటి అనువాదము -#: libraries/mysql_charsets.lib.php:268 libraries/mysql_charsets.lib.php:358 +#: libraries/mysql_charsets.lib.php:260 libraries/mysql_charsets.lib.php:350 msgid "Japanese" msgstr "జాపనీస్" -#: libraries/mysql_charsets.lib.php:271 +#: libraries/mysql_charsets.lib.php:263 msgid "Latvian" msgstr "" -#: libraries/mysql_charsets.lib.php:274 +#: libraries/mysql_charsets.lib.php:266 msgid "Lithuanian" msgstr "లిథుయేనియన్" -#: libraries/mysql_charsets.lib.php:277 libraries/mysql_charsets.lib.php:380 +#: libraries/mysql_charsets.lib.php:269 libraries/mysql_charsets.lib.php:372 msgid "Korean" msgstr "కొరియన్" -#: libraries/mysql_charsets.lib.php:280 +#: libraries/mysql_charsets.lib.php:272 msgid "Persian" msgstr "పెర్షియన్" -#: libraries/mysql_charsets.lib.php:283 +#: libraries/mysql_charsets.lib.php:275 msgid "Polish" msgstr "పోలిష్" -#: libraries/mysql_charsets.lib.php:286 libraries/mysql_charsets.lib.php:334 +#: libraries/mysql_charsets.lib.php:278 libraries/mysql_charsets.lib.php:326 msgid "West European" msgstr "పశ్చిమ ఐరోపియన్" -#: libraries/mysql_charsets.lib.php:289 +#: libraries/mysql_charsets.lib.php:281 msgid "Romanian" msgstr "రొమేనియన్" # మొదటి అనువాదము -#: libraries/mysql_charsets.lib.php:292 +#: libraries/mysql_charsets.lib.php:284 msgid "Slovak" msgstr "స్లోవాక్" # మొదటి అనువాదము -#: libraries/mysql_charsets.lib.php:295 +#: libraries/mysql_charsets.lib.php:287 msgid "Slovenian" msgstr "స్లోవాక్ దేశరి" -#: libraries/mysql_charsets.lib.php:298 +#: libraries/mysql_charsets.lib.php:290 msgid "Spanish" msgstr "స్పానిష్" # మొదటి అనువాదము -#: libraries/mysql_charsets.lib.php:301 +#: libraries/mysql_charsets.lib.php:293 msgid "Traditional Spanish" msgstr "సాంప్రదాయ స్పానిష్" # మొదటి అనువాదము -#: libraries/mysql_charsets.lib.php:304 libraries/mysql_charsets.lib.php:401 +#: libraries/mysql_charsets.lib.php:296 libraries/mysql_charsets.lib.php:393 msgid "Swedish" msgstr "స్వీడీష్" # మొదటి అనువాదము -#: libraries/mysql_charsets.lib.php:307 libraries/mysql_charsets.lib.php:404 +#: libraries/mysql_charsets.lib.php:299 libraries/mysql_charsets.lib.php:396 msgid "Thai" msgstr "థాయ్" -#: libraries/mysql_charsets.lib.php:310 libraries/mysql_charsets.lib.php:398 +#: libraries/mysql_charsets.lib.php:302 libraries/mysql_charsets.lib.php:390 msgid "Turkish" msgstr "టర్కిష్" -#: libraries/mysql_charsets.lib.php:313 libraries/mysql_charsets.lib.php:395 +#: libraries/mysql_charsets.lib.php:305 libraries/mysql_charsets.lib.php:387 msgid "Ukrainian" msgstr "ఉక్రేనియన్" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 msgid "Unicode" msgstr "యూనికోడ్" # మొదటి అనువాదము -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 -#: libraries/mysql_charsets.lib.php:334 libraries/mysql_charsets.lib.php:341 -#: libraries/mysql_charsets.lib.php:363 libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 +#: libraries/mysql_charsets.lib.php:326 libraries/mysql_charsets.lib.php:333 +#: libraries/mysql_charsets.lib.php:355 libraries/mysql_charsets.lib.php:366 msgid "multilingual" msgstr "బహు భాషా" -#: libraries/mysql_charsets.lib.php:341 +#: libraries/mysql_charsets.lib.php:333 msgid "Central European" msgstr "" -#: libraries/mysql_charsets.lib.php:346 +#: libraries/mysql_charsets.lib.php:338 msgid "Russian" msgstr "రష్యన్" -#: libraries/mysql_charsets.lib.php:363 +#: libraries/mysql_charsets.lib.php:355 msgid "Baltic" msgstr "" -#: libraries/mysql_charsets.lib.php:368 +#: libraries/mysql_charsets.lib.php:360 msgid "Armenian" msgstr "ఆర్మేనియన్" -#: libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:366 msgid "Cyrillic" msgstr "" -#: libraries/mysql_charsets.lib.php:377 +#: libraries/mysql_charsets.lib.php:369 msgid "Arabic" msgstr "అరబిక్" -#: libraries/mysql_charsets.lib.php:383 +#: libraries/mysql_charsets.lib.php:375 msgid "Hebrew" msgstr "హిబ్రూ" -#: libraries/mysql_charsets.lib.php:386 +#: libraries/mysql_charsets.lib.php:378 msgid "Georgian" msgstr "" -#: libraries/mysql_charsets.lib.php:389 +#: libraries/mysql_charsets.lib.php:381 msgid "Greek" msgstr "గ్రీకు" # మొదటి అనువాదము -#: libraries/mysql_charsets.lib.php:392 +#: libraries/mysql_charsets.lib.php:384 msgid "Czech-Slovak" msgstr "ఛెక్-స్లోవాక్" -#: libraries/mysql_charsets.lib.php:407 libraries/mysql_charsets.lib.php:414 +#: libraries/mysql_charsets.lib.php:399 libraries/mysql_charsets.lib.php:406 msgid "unknown" msgstr "" @@ -3361,67 +3411,67 @@ msgstr "" msgid "This format has no options" msgstr "" -#: libraries/relation.lib.php:82 +#: libraries/relation.lib.php:77 msgid "not OK" msgstr "" -#: libraries/relation.lib.php:86 pmd_general.php:339 +#: libraries/relation.lib.php:81 pmd_general.php:339 msgid "OK" msgstr "సరే" -#: libraries/relation.lib.php:87 +#: libraries/relation.lib.php:82 msgid "Enabled" msgstr "" -#: libraries/relation.lib.php:110 +#: libraries/relation.lib.php:105 msgid "Display Features" msgstr "" -#: libraries/relation.lib.php:116 +#: libraries/relation.lib.php:111 msgid "Creation of PDFs" msgstr "" -#: libraries/relation.lib.php:120 +#: libraries/relation.lib.php:115 msgid "Displaying Column Comments" msgstr "" -#: libraries/relation.lib.php:125 +#: libraries/relation.lib.php:120 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" -#: libraries/relation.lib.php:130 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 msgid "Bookmarked SQL query" msgstr "" -#: libraries/relation.lib.php:134 querywindow.php:99 querywindow.php:207 +#: libraries/relation.lib.php:129 querywindow.php:98 querywindow.php:205 msgid "SQL history" msgstr "SQL చరిత్ర" -#: libraries/relation.lib.php:146 +#: libraries/relation.lib.php:141 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:148 +#: libraries/relation.lib.php:143 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" -#: libraries/relation.lib.php:149 +#: libraries/relation.lib.php:144 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:150 +#: libraries/relation.lib.php:145 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:151 +#: libraries/relation.lib.php:146 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1158 +#: libraries/relation.lib.php:1153 msgid "no description" msgstr "వివరణ లేదు" @@ -3429,7 +3479,7 @@ msgstr "వివరణ లేదు" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:53 server_replication.php:346 +#: libraries/replication_gui.lib.php:53 server_replication.php:345 msgid "Change or reconfigure master server" msgstr "" @@ -3441,16 +3491,12 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:711 -#: server_privileges.php:714 server_privileges.php:721 -#: server_synchronize.php:1170 +#: libraries/replication_gui.lib.php:261 server_privileges.php:710 +#: server_privileges.php:713 server_privileges.php:720 +#: server_synchronize.php:1169 msgid "User name" msgstr "వాడుకరి పేరు" -#: libraries/replication_gui.lib.php:69 server_synchronize.php:1162 -msgid "Port" -msgstr "" - #: libraries/replication_gui.lib.php:105 msgid "Master status" msgstr "" @@ -3465,8 +3511,8 @@ msgid "Variable" msgstr "" #: libraries/replication_gui.lib.php:117 server_status.php:737 -#: tbl_change.php:322 tbl_printview.php:368 tbl_select.php:137 -#: tbl_structure.php:728 +#: tbl_change.php:317 tbl_printview.php:367 tbl_select.php:136 +#: tbl_structure.php:726 msgid "Value" msgstr "విలువ" @@ -3480,39 +3526,39 @@ msgid "" "this list." msgstr "" -#: libraries/replication_gui.lib.php:242 server_replication.php:193 +#: libraries/replication_gui.lib.php:242 server_replication.php:192 msgid "Add slave replication user" msgstr "" # మొదటి అనువాదము -#: libraries/replication_gui.lib.php:256 server_privileges.php:716 +#: libraries/replication_gui.lib.php:256 server_privileges.php:715 msgid "Any user" msgstr "ఏ వాడుకరి ఐనను" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1920 server_privileges.php:1950 +#: libraries/replication_gui.lib.php:348 server_privileges.php:716 +#: server_privileges.php:783 server_privileges.php:807 +#: server_privileges.php:1924 server_privileges.php:1954 msgid "Use text field" msgstr "" -#: libraries/replication_gui.lib.php:304 server_privileges.php:764 +#: libraries/replication_gui.lib.php:304 server_privileges.php:763 msgid "Any host" msgstr "" -#: libraries/replication_gui.lib.php:308 server_privileges.php:768 +#: libraries/replication_gui.lib.php:308 server_privileges.php:767 msgid "Local" msgstr "స్థానిక" -#: libraries/replication_gui.lib.php:314 server_privileges.php:773 +#: libraries/replication_gui.lib.php:314 server_privileges.php:772 msgid "This Host" msgstr "" -#: libraries/replication_gui.lib.php:320 server_privileges.php:779 +#: libraries/replication_gui.lib.php:320 server_privileges.php:778 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:333 server_privileges.php:792 +#: libraries/replication_gui.lib.php:333 server_privileges.php:791 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3538,8 +3584,8 @@ msgstr "" msgid "Servers" msgstr "" -#: libraries/server_links.inc.php:52 server_engines.php:111 -#: server_engines.php:115 server_status.php:414 test/theme.php:104 +#: libraries/server_links.inc.php:52 server_engines.php:125 +#: server_engines.php:129 server_status.php:414 test/theme.php:104 msgid "Variables" msgstr "" @@ -3560,12 +3606,12 @@ msgstr "" msgid "Processes" msgstr "" -#: libraries/server_links.inc.php:91 server_synchronize.php:1091 -#: server_synchronize.php:1099 +#: libraries/server_links.inc.php:91 server_synchronize.php:1090 +#: server_synchronize.php:1098 msgid "Synchronize" msgstr "" -#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1109 +#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1108 msgid "Source database" msgstr "" @@ -3583,7 +3629,7 @@ msgstr "" msgid "Difference" msgstr "తేడా" -#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1111 +#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1110 msgid "Target database" msgstr "" @@ -3603,11 +3649,11 @@ msgstr "" msgid "Columns" msgstr "వ్యాఖ్యలు" -#: libraries/sql_query_form.lib.php:342 sql.php:664 sql.php:665 sql.php:682 +#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql_query_form.lib.php:349 sql.php:676 +#: libraries/sql_query_form.lib.php:349 sql.php:669 msgid "Let every user access this bookmark" msgstr "" @@ -3689,12 +3735,12 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" -#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:139 -#: libraries/tbl_links.inc.php:140 +#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 +#: libraries/tbl_links.inc.php:139 msgid "Table seems to be empty!" msgstr "" -#: libraries/tbl_links.inc.php:148 +#: libraries/tbl_links.inc.php:147 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" @@ -3717,23 +3763,23 @@ msgid "" "escaping or quotes, using this format: a" msgstr "" -#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1263 -#: pdf_schema.php:1284 tbl_printview.php:142 tbl_structure.php:179 +#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1262 +#: pdf_schema.php:1283 tbl_printview.php:141 tbl_structure.php:178 msgid "Attributes" msgstr "" -#: libraries/tbl_properties.inc.php:136 +#: libraries/tbl_properties.inc.php:135 #, php-format msgid "" "For a list of available transformation options and their MIME type " "transformations, click on %stransformation descriptions%s" msgstr "" -#: libraries/tbl_properties.inc.php:144 +#: libraries/tbl_properties.inc.php:143 msgid "Transformation options" msgstr "" -#: libraries/tbl_properties.inc.php:145 +#: libraries/tbl_properties.inc.php:144 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
                            If you ever need to put a backslash (\"\\\") or a single " @@ -3741,49 +3787,49 @@ msgid "" "'\\\\xyz' or 'a\\'b')." msgstr "" -#: libraries/tbl_properties.inc.php:392 +#: libraries/tbl_properties.inc.php:391 #, fuzzy #| msgid "No" msgctxt "for default" msgid "None" msgstr "కాదు" -#: libraries/tbl_properties.inc.php:393 +#: libraries/tbl_properties.inc.php:392 msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:579 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:578 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
                            Please ask the " "author what %s does." msgstr "" -#: libraries/tbl_properties.inc.php:725 server_engines.php:57 -#: tbl_operations.php:354 +#: libraries/tbl_properties.inc.php:724 server_engines.php:56 +#: tbl_operations.php:352 msgid "Storage Engine" msgstr "" -#: libraries/tbl_properties.inc.php:754 +#: libraries/tbl_properties.inc.php:753 msgid "PARTITION definition" msgstr "" -#: libraries/tbl_properties.inc.php:775 pdf_pages.php:502 +#: libraries/tbl_properties.inc.php:774 pdf_pages.php:501 #: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214 -#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1124 tbl_indexes.php:247 -#: tbl_relation.php:565 +#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1022 tbl_indexes.php:246 +#: tbl_relation.php:563 msgid "Save" msgstr "భద్రపరచు" # మొదటి అనువాదము -#: libraries/tbl_properties.inc.php:779 tbl_structure.php:541 +#: libraries/tbl_properties.inc.php:778 tbl_structure.php:539 #, fuzzy, php-format #| msgid "Add into comments" msgid "Add %s column(s)" msgstr "స్పందనలకు చేర్చు" # మొదటి అనువాదము -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:535 +#: libraries/tbl_properties.inc.php:782 tbl_structure.php:533 #, fuzzy #| msgid "You have added a new user." msgid "You have to add at least one column." @@ -3908,8 +3954,8 @@ msgstr "" msgid "Custom color" msgstr "" -#: main.php:162 pdf_pages.php:362 setup/lib/FormDisplay.tpl.php:216 -#: tbl_change.php:1173 +#: main.php:162 pdf_pages.php:361 setup/lib/FormDisplay.tpl.php:216 +#: tbl_change.php:1071 msgid "Reset" msgstr "" @@ -3917,8 +3963,8 @@ msgstr "" msgid "Protocol version" msgstr "" -#: main.php:188 server_privileges.php:1381 server_privileges.php:1528 -#: server_privileges.php:1642 server_privileges.php:2060 +#: main.php:188 server_privileges.php:1385 server_privileges.php:1532 +#: server_privileges.php:1646 server_privileges.php:2064 #: server_processlist.php:53 msgid "User" msgstr "వాడుకరి" @@ -3992,21 +4038,28 @@ msgid "" "has been configured." msgstr "" -#: main.php:330 +#: main.php:314 +#, php-format +msgid "" +"The additional features for working with linked tables have been " +"deactivated. To find out why click %shere%s." +msgstr "" + +#: main.php:329 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:345 +#: main.php:344 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: main.php:357 +#: main.php:356 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -4017,102 +4070,102 @@ msgstr "" msgid "Reload navigation frame" msgstr "" -#: navigation.php:204 server_databases.php:370 server_synchronize.php:1190 +#: navigation.php:203 server_databases.php:368 server_synchronize.php:1189 msgid "No databases" msgstr "" -#: navigation.php:298 +#: navigation.php:297 msgid "Filter" msgstr "" -#: navigation.php:299 setup/frames/index.inc.php:218 +#: navigation.php:298 setup/frames/index.inc.php:218 #: setup/lib/messages.inc.php:41 msgid "Clear" msgstr "" # మొదటి అనువాదము -#: navigation.php:330 navigation.php:331 +#: navigation.php:329 navigation.php:330 #, fuzzy #| msgid "Create a page" msgctxt "short form" msgid "Create table" msgstr "పుటని సృష్టించు" -#: navigation.php:333 navigation.php:495 +#: navigation.php:332 navigation.php:494 msgid "Please select a database" msgstr "" -#: pdf_pages.php:40 pdf_pages.php:46 pdf_pages.php:52 pdf_pages.php:57 +#: pdf_pages.php:39 pdf_pages.php:45 pdf_pages.php:51 pdf_pages.php:56 #, php-format msgid "%s table not found or not set in %s" msgstr "" -#: pdf_pages.php:265 +#: pdf_pages.php:264 msgid "Please choose a page to edit" msgstr "" # మొదటి అనువాదము -#: pdf_pages.php:303 pmd_pdf.php:113 +#: pdf_pages.php:302 pmd_pdf.php:111 msgid "Create a page" msgstr "పుటని సృష్టించు" -#: pdf_pages.php:309 +#: pdf_pages.php:308 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "పుట సంఖ్య:" -#: pdf_pages.php:313 +#: pdf_pages.php:312 msgid "Automatic layout based on" msgstr "" -#: pdf_pages.php:315 +#: pdf_pages.php:314 msgid "Internal relations" msgstr "అంతర్గత సంబంధాలు" -#: pdf_pages.php:338 +#: pdf_pages.php:337 msgid "Select Tables" msgstr "" -#: pdf_pages.php:361 +#: pdf_pages.php:360 msgid "Toggle scratchboard" msgstr "" -#: pdf_pages.php:524 +#: pdf_pages.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" msgstr "" -#: pdf_schema.php:635 +#: pdf_schema.php:634 #, php-format msgid "The %s table doesn't exist!" msgstr "" -#: pdf_schema.php:671 +#: pdf_schema.php:670 #, php-format msgid "Please configure the coordinates for table %s" msgstr "" -#: pdf_schema.php:994 +#: pdf_schema.php:993 #, php-format msgid "Schema of the %s database - Page %s" msgstr "" -#: pdf_schema.php:1012 +#: pdf_schema.php:1011 msgid "No tables" msgstr "" -#: pdf_schema.php:1031 pdf_schema.php:1140 +#: pdf_schema.php:1030 pdf_schema.php:1139 msgid "Relational schema" msgstr "" -#: pdf_schema.php:1115 +#: pdf_schema.php:1114 msgid "Table of contents" msgstr "" -#: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:145 -#: tbl_structure.php:182 tbl_tracking.php:277 +#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 +#: tbl_structure.php:181 tbl_tracking.php:272 msgid "Extra" msgstr "" @@ -4125,7 +4178,7 @@ msgstr "ఎడమవైపున మెనుని చూపించు/దా msgid "Save position" msgstr "" -#: pmd_general.php:70 server_synchronize.php:428 server_synchronize.php:871 +#: pmd_general.php:70 server_synchronize.php:427 server_synchronize.php:870 msgid "Create table" msgstr "" @@ -4199,33 +4252,33 @@ msgid "" msgstr "" # మొదటి అనువాదము -#: pmd_pdf.php:62 +#: pmd_pdf.php:60 msgid "Page has been created" msgstr "పుటను సృష్టించడమైనది" # మొదటి అనువాదము -#: pmd_pdf.php:64 +#: pmd_pdf.php:62 msgid "Page creation failed" msgstr "పుటని సృష్టించుటలో తప్పిదము జరిగినది" -#: pmd_pdf.php:84 +#: pmd_pdf.php:82 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:88 +#: pmd_pdf.php:86 msgid "recommended" msgstr "" -#: pmd_pdf.php:93 +#: pmd_pdf.php:91 msgid "to/from page" msgstr "" -#: querywindow.php:94 +#: querywindow.php:93 msgid "Import files" msgstr "" # మొదటి అనువాదము -#: querywindow.php:105 +#: querywindow.php:104 msgid "All" msgstr "అన్నీ" @@ -4271,395 +4324,395 @@ msgstr "సమాచారం" msgid "Character Sets and Collations" msgstr "" -#: server_databases.php:51 +#: server_databases.php:49 msgid "No databases selected." msgstr "" -#: server_databases.php:62 +#: server_databases.php:60 #, php-format msgid "%s databases have been dropped successfully." msgstr "" -#: server_databases.php:87 +#: server_databases.php:85 msgid "Databases statistics" msgstr "" -#: server_databases.php:116 server_status.php:370 +#: server_databases.php:114 server_status.php:370 #: setup/lib/messages.inc.php:114 msgid "Tables" msgstr "" -#: server_databases.php:194 server_replication.php:180 -#: server_replication.php:208 +#: server_databases.php:192 server_replication.php:179 +#: server_replication.php:207 msgid "Master replication" msgstr "" -#: server_databases.php:196 server_replication.php:247 +#: server_databases.php:194 server_replication.php:246 msgid "Slave replication" msgstr "" -#: server_databases.php:229 +#: server_databases.php:227 msgid "Jump to database" msgstr "" -#: server_databases.php:266 +#: server_databases.php:264 msgid "Not replicated" msgstr "" -#: server_databases.php:272 +#: server_databases.php:270 msgid "Replicated" msgstr "" -#: server_databases.php:288 +#: server_databases.php:286 #, php-format msgid "Check privileges for database "%s"." msgstr "" -#: server_databases.php:292 server_databases.php:293 +#: server_databases.php:290 server_databases.php:291 msgid "Check Privileges" msgstr "" -#: server_databases.php:357 server_databases.php:358 +#: server_databases.php:355 server_databases.php:356 msgid "Enable Statistics" msgstr "గణాంకాలని చేతనంచేయి" -#: server_databases.php:361 server_databases.php:362 +#: server_databases.php:359 server_databases.php:360 msgid "Disable Statistics" msgstr "గణాంకాలని అచేతనంచేయి" -#: server_databases.php:365 +#: server_databases.php:363 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." msgstr "" -#: server_engines.php:48 +#: server_engines.php:47 msgid "Storage Engines" msgstr "" -#: server_export.php:20 +#: server_export.php:18 msgid "View dump (schema) of databases" msgstr "" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:23 server_privileges.php:265 msgid "Includes all privileges except GRANT." msgstr "" -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:24 server_privileges.php:191 +#: server_privileges.php:514 msgid "Allows altering the structure of existing tables." msgstr "" -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:25 server_privileges.php:207 +#: server_privileges.php:520 msgid "Allows altering and dropping stored routines." msgstr "" -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:26 server_privileges.php:183 +#: server_privileges.php:513 msgid "Allows creating new databases and tables." msgstr "" -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:27 server_privileges.php:206 +#: server_privileges.php:519 msgid "Allows creating stored routines." msgstr "" -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:513 msgid "Allows creating new tables." msgstr "" -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:29 server_privileges.php:194 +#: server_privileges.php:517 msgid "Allows creating temporary tables." msgstr "" -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:30 server_privileges.php:208 +#: server_privileges.php:553 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: server_privileges.php:32 server_privileges.php:199 -#: server_privileges.php:203 server_privileges.php:526 -#: server_privileges.php:530 +#: server_privileges.php:31 server_privileges.php:198 +#: server_privileges.php:202 server_privileges.php:525 +#: server_privileges.php:529 msgid "Allows creating new views." msgstr "" -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:32 server_privileges.php:182 +#: server_privileges.php:505 msgid "Allows deleting data." msgstr "" -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:33 server_privileges.php:184 +#: server_privileges.php:516 msgid "Allows dropping databases and tables." msgstr "" -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:34 server_privileges.php:516 msgid "Allows dropping tables." msgstr "" -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:35 server_privileges.php:199 +#: server_privileges.php:533 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:36 server_privileges.php:209 +#: server_privileges.php:521 msgid "Allows executing stored routines." msgstr "" -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:37 server_privileges.php:188 +#: server_privileges.php:508 msgid "Allows importing data from and exporting data into files." msgstr "" -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:38 server_privileges.php:539 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:515 msgid "Allows creating and dropping indexes." msgstr "" -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:40 server_privileges.php:180 +#: server_privileges.php:441 server_privileges.php:503 msgid "Allows inserting and replacing data." msgstr "" -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:41 server_privileges.php:195 +#: server_privileges.php:548 msgid "Allows locking tables for the current thread." msgstr "" -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:42 server_privileges.php:645 +#: server_privileges.php:647 msgid "Limits the number of new connections the user may open per hour." msgstr "" -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:43 server_privileges.php:633 +#: server_privileges.php:635 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:44 server_privileges.php:639 +#: server_privileges.php:641 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" -#: server_privileges.php:46 server_privileges.php:652 -#: server_privileges.php:654 +#: server_privileges.php:45 server_privileges.php:651 +#: server_privileges.php:653 msgid "Limits the number of simultaneous connections the user may have." msgstr "" -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:46 server_privileges.php:187 +#: server_privileges.php:543 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:47 server_privileges.php:189 +#: server_privileges.php:447 server_privileges.php:549 msgid "Has no effect in this MySQL version." msgstr "" -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:48 server_privileges.php:185 +#: server_privileges.php:544 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:197 +#: server_privileges.php:551 msgid "Allows the user to ask where the slaves / masters are." msgstr "" -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:50 server_privileges.php:196 +#: server_privileges.php:552 msgid "Needed for the replication slaves." msgstr "" -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:51 server_privileges.php:179 +#: server_privileges.php:438 server_privileges.php:502 msgid "Allows reading data." msgstr "" -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:52 server_privileges.php:192 +#: server_privileges.php:546 msgid "Gives access to the complete list of databases." msgstr "" -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:53 server_privileges.php:203 +#: server_privileges.php:205 server_privileges.php:518 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:54 server_privileges.php:186 +#: server_privileges.php:545 msgid "Allows shutting down the server." msgstr "" -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:55 server_privileges.php:193 +#: server_privileges.php:542 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " "killing threads of other users." msgstr "" -#: server_privileges.php:57 server_privileges.php:201 -#: server_privileges.php:535 +#: server_privileges.php:56 server_privileges.php:200 +#: server_privileges.php:534 msgid "Allows creating and dropping triggers" msgstr "" -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:57 server_privileges.php:181 +#: server_privileges.php:444 server_privileges.php:504 msgid "Allows changing data." msgstr "" -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:58 server_privileges.php:259 msgid "No privileges." msgstr "" -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:301 server_privileges.php:302 #, fuzzy #| msgid "No" msgctxt "None privileges" msgid "None" msgstr "కాదు" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1710 server_privileges.php:1716 +#: server_privileges.php:430 server_privileges.php:565 +#: server_privileges.php:1714 server_privileges.php:1720 msgid "Table-specific privileges" msgstr "" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1532 +#: server_privileges.php:431 server_privileges.php:573 +#: server_privileges.php:1536 msgid " Note: MySQL privilege names are expressed in English " msgstr "" -#: server_privileges.php:563 server_privileges.php:1531 +#: server_privileges.php:562 server_privileges.php:1535 msgid "Global privileges" msgstr "" -#: server_privileges.php:565 server_privileges.php:1710 +#: server_privileges.php:564 server_privileges.php:1714 msgid "Database-specific privileges" msgstr "" -#: server_privileges.php:610 +#: server_privileges.php:609 msgid "Administration" msgstr "పరిపాలన" -#: server_privileges.php:630 +#: server_privileges.php:629 msgid "Resource limits" msgstr "" -#: server_privileges.php:631 +#: server_privileges.php:630 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" -#: server_privileges.php:708 +#: server_privileges.php:707 msgid "Login Information" msgstr "ప్రవేశపు సమాచారం" -#: server_privileges.php:802 +#: server_privileges.php:801 msgid "Do not change the password" msgstr "" -#: server_privileges.php:835 server_privileges.php:2197 +#: server_privileges.php:834 server_privileges.php:2201 msgid "No user found." msgstr "" -#: server_privileges.php:879 +#: server_privileges.php:878 #, php-format msgid "The user %s already exists!" msgstr "" # మొదటి అనువాదము -#: server_privileges.php:962 +#: server_privileges.php:961 msgid "You have added a new user." msgstr "మీరు క్రొత్త వినియోగదారుని చేర్చారు" -#: server_privileges.php:1183 +#: server_privileges.php:1184 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: server_privileges.php:1207 +#: server_privileges.php:1208 #, php-format msgid "You have revoked the privileges for %s" msgstr "" -#: server_privileges.php:1243 +#: server_privileges.php:1244 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: server_privileges.php:1263 +#: server_privileges.php:1264 #, php-format msgid "Deleting %s" msgstr "" -#: server_privileges.php:1274 +#: server_privileges.php:1275 msgid "No users selected for deleting!" msgstr "" -#: server_privileges.php:1277 +#: server_privileges.php:1278 msgid "Reloading the privileges" msgstr "" -#: server_privileges.php:1292 +#: server_privileges.php:1296 msgid "The selected users have been deleted successfully." msgstr "" -#: server_privileges.php:1327 +#: server_privileges.php:1331 msgid "The privileges were reloaded successfully." msgstr "" -#: server_privileges.php:1355 server_privileges.php:1641 +#: server_privileges.php:1359 server_privileges.php:1645 msgid "Edit Privileges" msgstr "" -#: server_privileges.php:1364 +#: server_privileges.php:1368 msgid "Revoke" msgstr "" -#: server_privileges.php:1396 +#: server_privileges.php:1400 msgid "User overview" msgstr "" -#: server_privileges.php:1533 server_privileges.php:1715 -#: server_privileges.php:2064 +#: server_privileges.php:1537 server_privileges.php:1719 +#: server_privileges.php:2068 msgid "Grant" msgstr "" # మొదటి అనువాదము -#: server_privileges.php:1552 server_privileges.php:2154 +#: server_privileges.php:1556 server_privileges.php:2158 msgid "Any" msgstr "ఏదైనను" # మొదటి అనువాదము -#: server_privileges.php:1601 server_privileges.php:1625 -#: server_privileges.php:2019 server_privileges.php:2208 +#: server_privileges.php:1605 server_privileges.php:1629 +#: server_privileges.php:2023 server_privileges.php:2212 msgid "Add a new User" msgstr "క్రొత్త వినియోగదారుని చేర్చు" -#: server_privileges.php:1606 +#: server_privileges.php:1610 msgid "Remove selected users" msgstr "" -#: server_privileges.php:1609 +#: server_privileges.php:1613 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: server_privileges.php:1610 server_privileges.php:1611 -#: server_privileges.php:1612 +#: server_privileges.php:1614 server_privileges.php:1615 +#: server_privileges.php:1616 msgid "Drop the databases that have the same names as the users." msgstr "" -#: server_privileges.php:1628 +#: server_privileges.php:1632 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4668,92 +4721,92 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: server_privileges.php:1676 +#: server_privileges.php:1680 msgid "The selected user was not found in the privilege table." msgstr "" -#: server_privileges.php:1716 +#: server_privileges.php:1720 msgid "Column-specific privileges" msgstr "" -#: server_privileges.php:1917 +#: server_privileges.php:1921 msgid "Add privileges on the following database" msgstr "" -#: server_privileges.php:1935 +#: server_privileges.php:1939 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:1938 +#: server_privileges.php:1942 msgid "Add privileges on the following table" msgstr "" -#: server_privileges.php:1995 +#: server_privileges.php:1999 msgid "Change Login Information / Copy User" msgstr "" -#: server_privileges.php:1998 +#: server_privileges.php:2002 msgid "Create a new user with the same privileges and ..." msgstr "" # మొదటి అనువాదము -#: server_privileges.php:2000 +#: server_privileges.php:2004 msgid "... keep the old one." msgstr "... పాతదే ఉంచుము" -#: server_privileges.php:2001 +#: server_privileges.php:2005 msgid " ... delete the old one from the user tables." msgstr "" -#: server_privileges.php:2002 +#: server_privileges.php:2006 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: server_privileges.php:2003 +#: server_privileges.php:2007 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: server_privileges.php:2025 +#: server_privileges.php:2029 msgid "Database for user" msgstr "" -#: server_privileges.php:2029 +#: server_privileges.php:2033 #, fuzzy #| msgid "No" msgctxt "Create none database for user" msgid "None" msgstr "కాదు" -#: server_privileges.php:2030 +#: server_privileges.php:2034 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2031 +#: server_privileges.php:2035 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2034 +#: server_privileges.php:2038 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: server_privileges.php:2057 +#: server_privileges.php:2061 #, php-format msgid "Users having access to "%s"" msgstr "" -#: server_privileges.php:2165 +#: server_privileges.php:2169 msgid "global" msgstr "" -#: server_privileges.php:2167 +#: server_privileges.php:2171 msgid "database-specific" msgstr "" -#: server_privileges.php:2169 +#: server_privileges.php:2173 msgid "wildcard" msgstr "" @@ -4772,53 +4825,53 @@ msgstr "" msgid "ID" msgstr "" -#: server_replication.php:50 +#: server_replication.php:49 msgid "Unknown error" msgstr "" -#: server_replication.php:57 +#: server_replication.php:56 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:64 +#: server_replication.php:63 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:70 +#: server_replication.php:69 msgid "Unable to change master" msgstr "" -#: server_replication.php:73 +#: server_replication.php:72 #, php-format msgid "Master server changed succesfully to %s" msgstr "" -#: server_replication.php:181 +#: server_replication.php:180 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:183 server_status.php:391 +#: server_replication.php:182 server_status.php:391 msgid "Show master status" msgstr "" -#: server_replication.php:186 +#: server_replication.php:185 msgid "Show connected slaves" msgstr "" -#: server_replication.php:209 +#: server_replication.php:208 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:216 +#: server_replication.php:215 msgid "Master configuration" msgstr "" -#: server_replication.php:217 +#: server_replication.php:216 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -4827,109 +4880,109 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:220 +#: server_replication.php:219 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:221 +#: server_replication.php:220 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:224 +#: server_replication.php:223 msgid "Please select databases:" msgstr "" -#: server_replication.php:227 +#: server_replication.php:226 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: server_replication.php:229 +#: server_replication.php:228 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: server_replication.php:292 +#: server_replication.php:291 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:295 +#: server_replication.php:294 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:304 +#: server_replication.php:303 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:307 +#: server_replication.php:306 msgid "See slave status table" msgstr "" -#: server_replication.php:310 +#: server_replication.php:309 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:321 +#: server_replication.php:320 msgid "Control slave:" msgstr "" -#: server_replication.php:324 +#: server_replication.php:323 msgid "Full start" msgstr "" -#: server_replication.php:324 +#: server_replication.php:323 msgid "Full stop" msgstr "" -#: server_replication.php:325 +#: server_replication.php:324 msgid "Reset slave" msgstr "" -#: server_replication.php:326 +#: server_replication.php:325 #, php-format msgid "SQL Thread %s only" msgstr "" # మొదటి అనువాదము -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 msgid "Start" msgstr "మొదలుపెట్టు" # మొదటి అనువాదము -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 msgid "Stop" msgstr "ఆపుము" -#: server_replication.php:327 +#: server_replication.php:326 #, php-format msgid "IO Thread %s only" msgstr "" -#: server_replication.php:331 +#: server_replication.php:330 msgid "Error management:" msgstr "" -#: server_replication.php:333 +#: server_replication.php:332 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:335 +#: server_replication.php:334 msgid "Skip current error" msgstr "" -#: server_replication.php:336 +#: server_replication.php:335 msgid "Skip next" msgstr "" -#: server_replication.php:339 +#: server_replication.php:338 msgid "errors." msgstr "" -#: server_replication.php:354 +#: server_replication.php:353 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -5633,113 +5686,113 @@ msgstr "" msgid "Replication status" msgstr "" -#: server_synchronize.php:93 +#: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:96 +#: server_synchronize.php:95 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:121 server_synchronize.php:124 tbl_create.php:77 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:264 +#: server_synchronize.php:263 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:271 +#: server_synchronize.php:270 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:399 server_synchronize.php:838 +#: server_synchronize.php:398 server_synchronize.php:837 msgid "not present" msgstr "" -#: server_synchronize.php:423 server_synchronize.php:866 +#: server_synchronize.php:422 server_synchronize.php:865 msgid "Structure Difference" msgstr "" -#: server_synchronize.php:424 server_synchronize.php:867 +#: server_synchronize.php:423 server_synchronize.php:866 msgid "Data Difference" msgstr "" -#: server_synchronize.php:429 server_synchronize.php:872 +#: server_synchronize.php:428 server_synchronize.php:871 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:430 server_synchronize.php:873 +#: server_synchronize.php:429 server_synchronize.php:872 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:431 server_synchronize.php:874 +#: server_synchronize.php:430 server_synchronize.php:873 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:432 server_synchronize.php:875 +#: server_synchronize.php:431 server_synchronize.php:874 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:433 server_synchronize.php:876 +#: server_synchronize.php:432 server_synchronize.php:875 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:434 server_synchronize.php:877 +#: server_synchronize.php:433 server_synchronize.php:876 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:435 server_synchronize.php:878 +#: server_synchronize.php:434 server_synchronize.php:877 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:445 server_synchronize.php:889 +#: server_synchronize.php:444 server_synchronize.php:888 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:448 server_synchronize.php:893 +#: server_synchronize.php:447 server_synchronize.php:892 msgid "Apply Selected Changes" msgstr "" -#: server_synchronize.php:450 server_synchronize.php:895 +#: server_synchronize.php:449 server_synchronize.php:894 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:463 +#: server_synchronize.php:462 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:941 +#: server_synchronize.php:940 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:1002 +#: server_synchronize.php:1001 msgid "The following queries have been executed:" msgstr "" -#: server_synchronize.php:1121 +#: server_synchronize.php:1120 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1122 +#: server_synchronize.php:1121 #, fuzzy #| msgid "Connections" msgid "Current connection" msgstr "అనుసంధానాలు" -#: server_synchronize.php:1151 +#: server_synchronize.php:1150 #, fuzzy, php-format #| msgid "Server configuration" msgid "Configuration: %s" msgstr "సేవకి స్వరూపణం" -#: server_synchronize.php:1166 +#: server_synchronize.php:1165 msgid "Socket" msgstr "" -#: server_synchronize.php:1212 +#: server_synchronize.php:1211 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -6286,8 +6339,8 @@ msgstr "" #: setup/lib/messages.inc.php:128 msgid "" "Configure phpMyAdmin database to gain access to additional features, see " -"[a@../Documentation.html#linked-tables]linked-tables infrastructure[/a] in " -"documentation" +"[a@../Documentation.html#linked-tables]phpMyAdmin configuration storage[/a] " +"in documentation" msgstr "" #: setup/lib/messages.inc.php:129 setup/lib/messages.inc.php:290 @@ -7323,112 +7376,112 @@ msgstr "" msgid "ZIP" msgstr "" -#: sql.php:495 tbl_replace.php:385 +#: sql.php:494 tbl_replace.php:384 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: sql.php:512 +#: sql.php:511 msgid "Showing as PHP code" msgstr "" -#: sql.php:515 tbl_replace.php:359 +#: sql.php:514 tbl_replace.php:358 msgid "Showing SQL query" msgstr "" -#: sql.php:517 +#: sql.php:516 msgid "Validated SQL" msgstr "" -#: sql.php:638 +#: sql.php:631 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:670 +#: sql.php:663 msgid "Label" msgstr "" -#: tbl_addfield.php:188 tbl_alter.php:102 tbl_indexes.php:97 +#: tbl_addfield.php:185 tbl_alter.php:100 tbl_indexes.php:97 #, php-format msgid "Table %1$s has been altered successfully" msgstr "" -#: tbl_change.php:250 tbl_select.php:26 tbl_select.php:27 tbl_select.php:30 -#: tbl_select.php:33 +#: tbl_change.php:245 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_select.php:32 msgid "Browse foreign values" msgstr "" -#: tbl_change.php:280 tbl_change.php:318 +#: tbl_change.php:275 tbl_change.php:313 msgid "Function" msgstr "" -#: tbl_change.php:300 tbl_indexes.php:199 tbl_indexes.php:224 +#: tbl_change.php:295 tbl_indexes.php:198 tbl_indexes.php:223 msgid "Ignore" msgstr "" -#: tbl_change.php:725 +#: tbl_change.php:720 msgid " Because of its length,
                            this column might not be editable " msgstr "" -#: tbl_change.php:884 +#: tbl_change.php:835 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:890 +#: tbl_change.php:841 msgid "Binary - do not edit" msgstr "" -#: tbl_change.php:983 +#: tbl_change.php:889 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:1128 +#: tbl_change.php:1026 msgid "Insert as new row" msgstr "" -#: tbl_change.php:1129 +#: tbl_change.php:1027 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:1130 +#: tbl_change.php:1028 msgid "Show insert query" msgstr "" # మొదటి అనువాదము -#: tbl_change.php:1145 +#: tbl_change.php:1043 msgid "Go back to previous page" msgstr "మునుపటి పుటకు వెళ్ళు" -#: tbl_change.php:1146 +#: tbl_change.php:1044 msgid "Insert another new row" msgstr "" # మొదటి అనువాదము -#: tbl_change.php:1150 +#: tbl_change.php:1048 msgid "Go back to this page" msgstr "ఈ పుటకు తిరిగి వెళ్ళుము" -#: tbl_change.php:1158 +#: tbl_change.php:1056 msgid "Edit next row" msgstr "" -#: tbl_change.php:1169 +#: tbl_change.php:1067 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: tbl_change.php:1207 +#: tbl_change.php:1105 #, php-format msgid "Restart insertion with %s rows" msgstr "" -#: tbl_create.php:57 +#: tbl_create.php:55 #, php-format msgid "Table %s already exists!" msgstr "" -#: tbl_create.php:244 +#: tbl_create.php:241 #, php-format msgid "Table %1$s has been created." msgstr "" @@ -7449,199 +7502,199 @@ msgstr "" msgid "No index parts defined!" msgstr "" -#: tbl_indexes.php:159 +#: tbl_indexes.php:158 msgid "Create a new index" msgstr "" -#: tbl_indexes.php:161 +#: tbl_indexes.php:160 msgid "Modify an index" msgstr "" -#: tbl_indexes.php:167 +#: tbl_indexes.php:166 msgid "Index name:" msgstr "" -#: tbl_indexes.php:173 +#: tbl_indexes.php:172 msgid "Index type:" msgstr "" -#: tbl_indexes.php:183 +#: tbl_indexes.php:182 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" -#: tbl_indexes.php:250 +#: tbl_indexes.php:249 #, php-format msgid "Add to index  %s column(s)" msgstr "" -#: tbl_indexes.php:255 tbl_structure.php:588 tbl_structure.php:599 +#: tbl_indexes.php:254 tbl_structure.php:586 tbl_structure.php:597 msgid "Column count has to be larger than zero." msgstr "" -#: tbl_move_copy.php:45 +#: tbl_move_copy.php:44 msgid "Can't move table to same one!" msgstr "" -#: tbl_move_copy.php:47 +#: tbl_move_copy.php:46 msgid "Can't copy table to same one!" msgstr "" -#: tbl_move_copy.php:55 +#: tbl_move_copy.php:54 #, php-format msgid "Table %s has been moved to %s." msgstr "" -#: tbl_move_copy.php:57 +#: tbl_move_copy.php:56 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: tbl_move_copy.php:81 +#: tbl_move_copy.php:80 msgid "The table name is empty!" msgstr "" -#: tbl_operations.php:248 +#: tbl_operations.php:246 msgid "Alter table order by" msgstr "" -#: tbl_operations.php:257 +#: tbl_operations.php:255 msgid "(singly)" msgstr "" -#: tbl_operations.php:277 +#: tbl_operations.php:275 msgid "Move table to (database.table):" msgstr "" -#: tbl_operations.php:335 +#: tbl_operations.php:333 msgid "Table options" msgstr "" -#: tbl_operations.php:339 +#: tbl_operations.php:337 msgid "Rename table to" msgstr "" -#: tbl_operations.php:510 +#: tbl_operations.php:508 msgid "Copy table to (database.table):" msgstr "" -#: tbl_operations.php:557 +#: tbl_operations.php:555 msgid "Switch to copied table" msgstr "" -#: tbl_operations.php:569 +#: tbl_operations.php:567 msgid "Table maintenance" msgstr "" -#: tbl_operations.php:590 +#: tbl_operations.php:588 msgid "Defragment table" msgstr "" -#: tbl_operations.php:629 +#: tbl_operations.php:627 #, php-format msgid "Table %s has been flushed" msgstr "" -#: tbl_operations.php:635 +#: tbl_operations.php:633 msgid "Flush the table (FLUSH)" msgstr "" -#: tbl_operations.php:650 +#: tbl_operations.php:648 msgid "Partition maintenance" msgstr "" -#: tbl_operations.php:658 +#: tbl_operations.php:656 #, php-format msgid "Partition %s" msgstr "" # మొదటి అనువాదము -#: tbl_operations.php:661 +#: tbl_operations.php:659 msgid "Analyze" msgstr "విశదీకరించు" -#: tbl_operations.php:662 +#: tbl_operations.php:660 msgid "Check" msgstr "" -#: tbl_operations.php:663 +#: tbl_operations.php:661 msgid "Optimize" msgstr "" -#: tbl_operations.php:664 +#: tbl_operations.php:662 msgid "Rebuild" msgstr "" -#: tbl_operations.php:665 +#: tbl_operations.php:663 msgid "Repair" msgstr "" -#: tbl_operations.php:677 +#: tbl_operations.php:675 msgid "Remove partitioning" msgstr "" -#: tbl_operations.php:703 +#: tbl_operations.php:701 msgid "Check referential integrity:" msgstr "" -#: tbl_printview.php:73 +#: tbl_printview.php:72 msgid "Show tables" msgstr "" -#: tbl_printview.php:308 tbl_structure.php:655 +#: tbl_printview.php:307 tbl_structure.php:653 msgid "Space usage" msgstr "" -#: tbl_printview.php:312 tbl_structure.php:659 +#: tbl_printview.php:311 tbl_structure.php:657 msgid "Usage" msgstr "వాడుక" -#: tbl_printview.php:339 tbl_structure.php:686 +#: tbl_printview.php:338 tbl_structure.php:684 msgid "Effective" msgstr "" -#: tbl_printview.php:364 tbl_structure.php:724 +#: tbl_printview.php:363 tbl_structure.php:722 msgid "Row Statistics" msgstr "వరుసల గణాంకాలు" -#: tbl_printview.php:367 tbl_structure.php:727 +#: tbl_printview.php:366 tbl_structure.php:725 msgid "Statements" msgstr "" -#: tbl_printview.php:378 tbl_structure.php:739 +#: tbl_printview.php:377 tbl_structure.php:737 msgid "static" msgstr "" -#: tbl_printview.php:380 tbl_structure.php:741 +#: tbl_printview.php:379 tbl_structure.php:739 msgid "dynamic" msgstr "" -#: tbl_printview.php:402 tbl_structure.php:784 +#: tbl_printview.php:401 tbl_structure.php:782 msgid "Row length" msgstr "" -#: tbl_printview.php:412 tbl_structure.php:792 +#: tbl_printview.php:411 tbl_structure.php:790 msgid " Row size " msgstr "" -#: tbl_relation.php:278 +#: tbl_relation.php:276 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" -#: tbl_relation.php:404 +#: tbl_relation.php:402 #, fuzzy #| msgid "Internal relations" msgid "Internal relation" msgstr "అంతర్గత సంబంధాలు" -#: tbl_relation.php:406 +#: tbl_relation.php:404 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: tbl_relation.php:412 +#: tbl_relation.php:410 msgid "Foreign key constraint" msgstr "" @@ -7649,227 +7702,227 @@ msgstr "" msgid "No rows selected" msgstr "" -#: tbl_select.php:130 +#: tbl_select.php:129 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "" -#: tbl_select.php:136 +#: tbl_select.php:135 msgid "Operator" msgstr "" -#: tbl_select.php:267 +#: tbl_select.php:266 msgid "Select columns (at least one):" msgstr "" -#: tbl_select.php:285 +#: tbl_select.php:284 msgid "Add search conditions (body of the \"where\" clause):" msgstr "" -#: tbl_select.php:292 +#: tbl_select.php:291 msgid "Number of rows per page" msgstr "" -#: tbl_select.php:298 +#: tbl_select.php:297 msgid "Display order:" msgstr "" -#: tbl_structure.php:160 +#: tbl_structure.php:159 msgid "Browse distinct values" msgstr "" -#: tbl_structure.php:360 +#: tbl_structure.php:358 #, fuzzy #| msgid "No" msgctxt "None for default" msgid "None" msgstr "కాదు" -#: tbl_structure.php:373 +#: tbl_structure.php:371 #, php-format msgid "Column %s has been dropped" msgstr "" -#: tbl_structure.php:384 +#: tbl_structure.php:382 #, php-format msgid "A primary key has been added on %s" msgstr "" -#: tbl_structure.php:399 tbl_structure.php:413 tbl_structure.php:427 +#: tbl_structure.php:397 tbl_structure.php:411 tbl_structure.php:425 #, php-format msgid "An index has been added on %s" msgstr "" -#: tbl_structure.php:505 tbl_structure.php:507 +#: tbl_structure.php:503 tbl_structure.php:505 msgid "Relation view" msgstr "" -#: tbl_structure.php:514 tbl_structure.php:516 +#: tbl_structure.php:512 tbl_structure.php:514 msgid "Propose table structure" msgstr "" # మొదటి అనువాదము -#: tbl_structure.php:539 +#: tbl_structure.php:537 #, fuzzy #| msgid "Add into comments" msgid "Add column" msgstr "స్పందనలకు చేర్చు" -#: tbl_structure.php:553 +#: tbl_structure.php:551 msgid "At End of Table" msgstr "" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At Beginning of Table" msgstr "" # మొదటి అనువాదము -#: tbl_structure.php:555 +#: tbl_structure.php:553 #, php-format msgid "After %s" msgstr "%s మార్లు తరువాత" -#: tbl_structure.php:593 +#: tbl_structure.php:591 #, php-format msgid "Create an index on  %s columns" msgstr "" -#: tbl_structure.php:755 +#: tbl_structure.php:753 msgid "partitioned" msgstr "" -#: tbl_tracking.php:113 +#: tbl_tracking.php:109 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:186 +#: tbl_tracking.php:182 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "" -#: tbl_tracking.php:194 +#: tbl_tracking.php:190 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "" -#: tbl_tracking.php:202 +#: tbl_tracking.php:198 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "" -#: tbl_tracking.php:212 +#: tbl_tracking.php:208 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:219 +#: tbl_tracking.php:215 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:220 +#: tbl_tracking.php:216 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:229 +#: tbl_tracking.php:225 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:250 tbl_tracking.php:378 +#: tbl_tracking.php:245 tbl_tracking.php:373 msgid "Close" msgstr "మూసివేయి" -#: tbl_tracking.php:261 +#: tbl_tracking.php:256 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:380 +#: tbl_tracking.php:375 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:396 tbl_tracking.php:503 +#: tbl_tracking.php:391 tbl_tracking.php:498 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "" -#: tbl_tracking.php:409 tbl_tracking.php:460 +#: tbl_tracking.php:404 tbl_tracking.php:455 msgid "Date" msgstr "తేదీ" -#: tbl_tracking.php:410 tbl_tracking.php:461 +#: tbl_tracking.php:405 tbl_tracking.php:456 msgid "Username" msgstr "వాడుకరిపేరు" -#: tbl_tracking.php:411 +#: tbl_tracking.php:406 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:462 +#: tbl_tracking.php:457 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:506 +#: tbl_tracking.php:501 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:507 +#: tbl_tracking.php:502 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:520 +#: tbl_tracking.php:515 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:560 +#: tbl_tracking.php:555 msgid "Show versions" msgstr "" -#: tbl_tracking.php:592 +#: tbl_tracking.php:587 msgid "Version" msgstr "" -#: tbl_tracking.php:639 +#: tbl_tracking.php:634 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "" -#: tbl_tracking.php:641 +#: tbl_tracking.php:636 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:652 +#: tbl_tracking.php:647 #, php-format msgid "Activate tracking for %s.%s" msgstr "" -#: tbl_tracking.php:654 +#: tbl_tracking.php:649 msgid "Activate now" msgstr "" -#: tbl_tracking.php:667 +#: tbl_tracking.php:662 #, php-format msgid "Create version %s of %s.%s" msgstr "" -#: tbl_tracking.php:671 +#: tbl_tracking.php:666 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:679 +#: tbl_tracking.php:674 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:687 +#: tbl_tracking.php:682 msgid "Create version" msgstr "" @@ -7917,10 +7970,16 @@ msgstr "" msgid "VIEW name" msgstr "నామధేయమును చూపుము" -#: view_operations.php:92 +#: view_operations.php:91 msgid "Rename view to" msgstr "" +#, fuzzy +#~| msgid "End" +#~ msgctxt "BLOB repository" +#~ msgid "Enabled" +#~ msgstr "ముగింపు" + # మొదటి అనువాదము #, fuzzy #~| msgid "Add new field" diff --git a/po/th.po b/po/th.po index 9cee02922..73e6c15d9 100644 --- a/po/th.po +++ b/po/th.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-21 13:53+0200\n" +"POT-Creation-Date: 2010-07-26 17:18+0200\n" "PO-Revision-Date: 2010-03-12 09:19+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: thai \n" @@ -13,158 +13,170 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.5.3\n" -#: browse_foreigners.php:37 browse_foreigners.php:58 -#: libraries/display_tbl.lib.php:416 server_privileges.php:1506 +#: browse_foreigners.php:36 browse_foreigners.php:57 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1510 msgid "Show all" msgstr "แสดงทั้งหมด" -#: browse_foreigners.php:81 libraries/common.lib.php:2313 -#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:393 -#: libraries/export/pdf.php:146 pdf_schema.php:282 pdf_schema.php:1122 -#: pdf_schema.php:1138 +#: browse_foreigners.php:80 libraries/common.lib.php:2318 +#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:392 +#: libraries/export/pdf.php:146 pdf_schema.php:281 pdf_schema.php:1121 +#: pdf_schema.php:1137 msgid "Page number:" msgstr "หมายเลขหน้า:" -#: browse_foreigners.php:131 +#: browse_foreigners.php:130 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " "cross-window updates." msgstr "" -#: browse_foreigners.php:149 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2829 -#: libraries/common.lib.php:2836 libraries/db_links.inc.php:74 -#: libraries/tbl_links.inc.php:62 +#: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 +#: db_structure.php:89 db_structure.php:91 db_structure.php:102 +#: db_structure.php:104 libraries/common.lib.php:2834 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "ค้นหา" -#: browse_foreigners.php:152 db_operations.php:384 db_operations.php:428 -#: db_operations.php:498 db_operations.php:608 db_search.php:344 -#: db_structure.php:566 js/messages.php:48 libraries/Config.class.php:1043 -#: libraries/Theme_Manager.class.php:310 +#: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 +#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 +#: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 -#: libraries/common.lib.php:1340 libraries/common.lib.php:2289 +#: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 -#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:275 -#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:531 -#: libraries/display_tbl.lib.php:613 libraries/replication_gui.lib.php:75 +#: libraries/display_export.lib.php:269 libraries/display_import.lib.php:275 +#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 +#: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 #: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:781 -#: main.php:127 navigation.php:231 pdf_pages.php:291 pdf_pages.php:327 -#: pdf_pages.php:529 pmd_pdf.php:115 server_binlog.php:128 -#: server_privileges.php:664 server_privileges.php:1616 -#: server_privileges.php:1963 server_privileges.php:2010 -#: server_privileges.php:2049 server_replication.php:234 -#: server_replication.php:317 server_replication.php:340 -#: server_synchronize.php:1208 tbl_change.php:328 tbl_change.php:1172 -#: tbl_change.php:1209 tbl_indexes.php:253 tbl_operations.php:264 -#: tbl_operations.php:301 tbl_operations.php:498 tbl_operations.php:560 -#: tbl_operations.php:680 tbl_select.php:324 tbl_structure.php:561 -#: tbl_structure.php:596 tbl_tracking.php:394 tbl_tracking.php:511 -#: view_create.php:181 view_operations.php:100 +#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 +#: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 +#: server_privileges.php:663 server_privileges.php:1620 +#: server_privileges.php:1967 server_privileges.php:2014 +#: server_privileges.php:2053 server_replication.php:233 +#: server_replication.php:316 server_replication.php:339 +#: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 +#: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 +#: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 +#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "ลงมือ" -#: browse_foreigners.php:167 browse_foreigners.php:171 -#: libraries/Index.class.php:441 tbl_tracking.php:319 +#: browse_foreigners.php:166 browse_foreigners.php:170 +#: libraries/Index.class.php:441 tbl_tracking.php:314 msgid "Keyname" msgstr "ชื่อคีย์" -#: browse_foreigners.php:168 browse_foreigners.php:170 -#: server_collations.php:54 server_collations.php:66 server_engines.php:58 +#: browse_foreigners.php:167 browse_foreigners.php:169 +#: server_collations.php:54 server_collations.php:66 server_engines.php:57 #: server_status.php:738 msgid "Description" msgstr "รายละเอียด" -#: browse_foreigners.php:246 browse_foreigners.php:255 -#: browse_foreigners.php:267 browse_foreigners.php:275 +#: browse_foreigners.php:245 browse_foreigners.php:254 +#: browse_foreigners.php:266 browse_foreigners.php:274 msgid "Use this value" msgstr "ใช้ค่านี้" -#: db_create.php:45 +#: bs_disp_as_mime_type.php:29 bs_play_media.php:35 +msgid "No blob streaming server configured!" +msgstr "" + +#: bs_disp_as_mime_type.php:35 +msgid "Failed to fetch headers" +msgstr "" + +#: bs_disp_as_mime_type.php:41 +msgid "Failed to open remote URL" +msgstr "" + +#: db_create.php:44 #, fuzzy, php-format msgid "Database %1$s has been created." msgstr "โยนฐานข้อมูล %s ทิ้งไปเรียบร้อยแล้ว" -#: db_datadict.php:48 db_operations.php:377 +#: db_datadict.php:48 db_operations.php:313 msgid "Database comment: " msgstr "หมายเหตุของฐานข้อมูล: " -#: db_datadict.php:164 libraries/tbl_properties.inc.php:723 -#: pdf_schema.php:1235 tbl_operations.php:346 tbl_printview.php:128 +#: db_datadict.php:164 libraries/tbl_properties.inc.php:722 +#: pdf_schema.php:1234 tbl_operations.php:344 tbl_printview.php:127 msgid "Table comments" msgstr "หมายเหตุของตาราง" -#: db_datadict.php:173 db_qbe.php:173 libraries/Index.class.php:445 +#: db_datadict.php:173 db_qbe.php:170 libraries/Index.class.php:445 #: libraries/export/htmlword.php:243 libraries/export/latex.php:364 #: libraries/export/odt.php:293 libraries/export/texytext.php:233 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:274 -#: pdf_schema.php:1261 pdf_schema.php:1282 tbl_change.php:306 -#: tbl_indexes.php:188 tbl_printview.php:140 tbl_relation.php:401 -#: tbl_select.php:133 tbl_structure.php:176 tbl_tracking.php:272 -#: tbl_tracking.php:323 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 +#: pdf_schema.php:1260 pdf_schema.php:1281 tbl_change.php:301 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:132 tbl_structure.php:175 tbl_tracking.php:267 +#: tbl_tracking.php:318 #, fuzzy #| msgid "Column names" msgid "Column" msgstr "ชื่อคอลัมน์" -#: db_datadict.php:174 db_printview.php:105 libraries/Index.class.php:442 +#: db_datadict.php:174 db_printview.php:104 libraries/Index.class.php:442 #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 #: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:244 #: libraries/export/latex.php:364 libraries/export/odt.php:296 #: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:99 -#: pdf_schema.php:1262 pdf_schema.php:1283 server_privileges.php:2062 -#: tbl_change.php:285 tbl_change.php:312 tbl_printview.php:141 -#: tbl_printview.php:311 tbl_select.php:134 tbl_structure.php:177 -#: tbl_structure.php:658 tbl_tracking.php:273 tbl_tracking.php:320 +#: pdf_schema.php:1261 pdf_schema.php:1282 server_privileges.php:2066 +#: tbl_change.php:280 tbl_change.php:307 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:133 tbl_structure.php:176 +#: tbl_structure.php:656 tbl_tracking.php:268 tbl_tracking.php:315 msgid "Type" msgstr "ชนิด" #: db_datadict.php:176 libraries/Index.class.php:448 #: libraries/export/htmlword.php:245 libraries/export/latex.php:364 #: libraries/export/odt.php:299 libraries/export/texytext.php:235 -#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1264 -#: pdf_schema.php:1285 tbl_change.php:321 tbl_printview.php:143 -#: tbl_structure.php:180 tbl_tracking.php:275 tbl_tracking.php:326 +#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1263 +#: pdf_schema.php:1284 tbl_change.php:316 tbl_printview.php:142 +#: tbl_structure.php:179 tbl_tracking.php:270 tbl_tracking.php:321 msgid "Null" msgstr "ว่างเปล่า (null)" -#: db_datadict.php:177 db_structure.php:500 libraries/export/htmlword.php:246 +#: db_datadict.php:177 db_structure.php:486 libraries/export/htmlword.php:246 #: libraries/export/latex.php:364 libraries/export/odt.php:302 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:105 -#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 -#: tbl_structure.php:181 tbl_tracking.php:276 +#: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:143 +#: tbl_structure.php:180 tbl_tracking.php:271 msgid "Default" msgstr "ค่าปริยาย" #: db_datadict.php:181 libraries/export/htmlword.php:248 #: libraries/export/latex.php:366 libraries/export/odt.php:306 -#: libraries/export/texytext.php:238 pdf_schema.php:1267 pdf_schema.php:1288 -#: tbl_printview.php:148 +#: libraries/export/texytext.php:238 pdf_schema.php:1266 pdf_schema.php:1287 +#: tbl_printview.php:147 msgid "Links to" msgstr "เชื่อมไปยัง" -#: db_datadict.php:183 db_printview.php:111 libraries/export/htmlword.php:251 +#: db_datadict.php:183 db_printview.php:110 libraries/export/htmlword.php:251 #: libraries/export/latex.php:49 libraries/export/latex.php:369 #: libraries/export/odt.php:37 libraries/export/odt.php:311 #: libraries/export/sql.php:29 libraries/export/texytext.php:241 -#: libraries/tbl_properties.inc.php:129 pdf_schema.php:1278 -#: pdf_schema.php:1289 tbl_printview.php:150 +#: libraries/tbl_properties.inc.php:128 pdf_schema.php:1277 +#: pdf_schema.php:1288 tbl_printview.php:149 msgid "Comments" msgstr "หมายเหตุ" #: db_datadict.php:266 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/export/htmlword.php:321 #: libraries/export/latex.php:434 libraries/export/odt.php:367 -#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:262 -#: pdf_schema.php:1343 server_privileges.php:1560 server_privileges.php:1571 -#: server_privileges.php:1881 server_privileges.php:1886 -#: server_privileges.php:2179 sql.php:131 sql.php:193 tbl_printview.php:227 -#: tbl_structure.php:349 tbl_tracking.php:336 tbl_tracking.php:341 +#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:261 +#: pdf_schema.php:1342 server_privileges.php:1564 server_privileges.php:1575 +#: server_privileges.php:1885 server_privileges.php:1890 +#: server_privileges.php:2183 sql.php:130 sql.php:192 tbl_printview.php:226 +#: tbl_structure.php:347 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "ไม่" @@ -175,17 +187,17 @@ msgstr "ไม่" #: libraries/mult_submits.inc.php:49 libraries/mult_submits.inc.php:54 #: libraries/mult_submits.inc.php:59 libraries/mult_submits.inc.php:91 #: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:105 -#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:261 -#: libraries/mult_submits.inc.php:272 pdf_schema.php:1343 -#: server_databases.php:63 server_privileges.php:1557 -#: server_privileges.php:1571 server_privileges.php:1881 -#: server_privileges.php:1884 server_privileges.php:2179 sql.php:192 -#: tbl_printview.php:227 tbl_structure.php:39 tbl_structure.php:349 -#: tbl_tracking.php:334 tbl_tracking.php:339 +#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:260 +#: libraries/mult_submits.inc.php:271 pdf_schema.php:1342 +#: server_databases.php:61 server_privileges.php:1561 +#: server_privileges.php:1575 server_privileges.php:1885 +#: server_privileges.php:1888 server_privileges.php:2183 sql.php:191 +#: tbl_printview.php:226 tbl_structure.php:38 tbl_structure.php:347 +#: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" msgstr "ใช่" -#: db_datadict.php:321 db_printview.php:265 tbl_printview.php:496 +#: db_datadict.php:321 db_printview.php:264 tbl_printview.php:495 msgid "Print" msgstr "พิมพ์" @@ -193,197 +205,156 @@ msgstr "พิมพ์" msgid "View dump (schema) of database" msgstr "ดูโครงสร้างของฐานข้อมูล" -#: db_export.php:32 db_printview.php:95 db_qbe.php:101 db_structure.php:50 -#: db_tracking.php:34 export.php:352 navigation.php:326 +#: db_export.php:32 db_printview.php:94 db_qbe.php:98 db_structure.php:49 +#: db_tracking.php:30 export.php:350 navigation.php:325 msgid "No tables found in database." msgstr "ไม่พบตารางใด ๆ ในฐานข้อมูล" -#: db_export.php:42 db_search.php:326 server_export.php:26 +#: db_export.php:42 db_search.php:326 server_export.php:24 msgid "Select All" msgstr "เลือกทั้งหมด" -#: db_export.php:44 db_search.php:329 server_export.php:28 +#: db_export.php:44 db_search.php:329 server_export.php:26 msgid "Unselect All" msgstr "ไม่เลือกเลย" -#: db_operations.php:37 tbl_create.php:49 +#: db_operations.php:33 tbl_create.php:47 #, fuzzy msgid "The database name is empty!" msgstr "ชื่อตารางยังว่างอยู่!" -#: db_operations.php:235 +#: db_operations.php:231 #, fuzzy, php-format msgid "Database %s has been renamed to %s" msgstr "ตาราง %s ได้ถูกเปลี่ยนชื่อเป็น %s" -#: db_operations.php:239 +#: db_operations.php:235 #, fuzzy, php-format msgid "Database %s has been copied to %s" msgstr "คัดลอกตาราง %s ไปเก็บในชื่อ %s เรียบร้อยแล้ว." -#: db_operations.php:411 +#: db_operations.php:347 msgid "Rename database to" msgstr "เปลี่ยนชื่อฐานข้อมูลเป็น" -#: db_operations.php:416 server_processlist.php:56 +#: db_operations.php:352 server_processlist.php:56 msgid "Command" msgstr "คำสั่ง" -#: db_operations.php:428 tbl_change.php:1141 +#: db_operations.php:364 tbl_change.php:1039 msgid "and then" msgstr "" -#: db_operations.php:454 +#: db_operations.php:390 #, fuzzy msgid "Copy database to" msgstr "เปลี่ยนชื่อฐานข้อมูลเป็น" -#: db_operations.php:461 tbl_operations.php:527 tbl_tracking.php:387 +#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "เฉพาะโครงสร้าง" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:389 +#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "ทั้งโครงสร้างและข้อมูล" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:388 +#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "เฉพาะข้อมูล" -#: db_operations.php:471 +#: db_operations.php:407 msgid "CREATE DATABASE before copying" msgstr "" -#: db_operations.php:474 libraries/export/sql.php:51 +#: db_operations.php:410 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 -#: libraries/export/sql.php:81 tbl_operations.php:535 +#: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "" -#: db_operations.php:478 libraries/export/sql.php:77 tbl_operations.php:298 -#: tbl_operations.php:537 +#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "เพิ่มค่า AUTO_INCREMENT" -#: db_operations.php:482 tbl_operations.php:544 +#: db_operations.php:418 tbl_operations.php:542 msgid "Add constraints" msgstr "" -#: db_operations.php:495 +#: db_operations.php:431 #, fuzzy msgid "Switch to copied database" msgstr "สลับไปที่ตารางที่ถูกทำสำเนาไว้" -#: db_operations.php:536 -msgid "BLOB Repository" -msgstr "" - -#: db_operations.php:539 db_tracking.php:75 libraries/common.lib.php:1357 -#: libraries/server_links.inc.php:48 server_processlist.php:58 -#: tbl_tracking.php:595 test/theme.php:100 -msgid "Status" -msgstr "สถานะ" - -#: db_operations.php:547 -#, fuzzy -#| msgid "Enabled" -msgctxt "BLOB repository" -msgid "Enabled" -msgstr "เปิดใช้อยู่" - -#: db_operations.php:551 -#, fuzzy -msgid "Disable" -msgstr "ระงับการใช้อยู่" - -#: db_operations.php:561 -msgid "Damaged" -msgstr "" - -#: db_operations.php:565 -#, fuzzy -msgctxt "BLOB repository" -msgid "Repair" -msgstr "ซ่อมแซมตาราง" - -#: db_operations.php:573 -#, fuzzy -#| msgid "Disabled" -msgctxt "BLOB repository" -msgid "Disabled" -msgstr "ระงับการใช้อยู่" - -#: db_operations.php:577 -#, fuzzy -msgid "Enable" -msgstr "เปิดใช้อยู่" - -#: db_operations.php:601 libraries/Index.class.php:447 +#: db_operations.php:451 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 -#: server_collations.php:53 server_collations.php:65 server_databases.php:110 -#: tbl_operations.php:362 tbl_select.php:135 tbl_structure.php:178 -#: tbl_structure.php:766 tbl_tracking.php:274 tbl_tracking.php:325 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 +#: server_collations.php:53 server_collations.php:65 server_databases.php:108 +#: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:177 +#: tbl_structure.php:764 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "การเรียงลำดับ" -#: db_operations.php:614 main.php:315 pdf_schema.php:33 -#, php-format +#: db_operations.php:464 pdf_schema.php:32 +#, fuzzy, php-format +#| msgid "" +#| "The additional features for working with linked tables have been " +#| "deactivated. To find out why click %shere%s." msgid "" -"The additional features for working with linked tables have been " -"deactivated. To find out why click %shere%s." +"The phpMyAdmin configuration storage has been deactivated. To find out why " +"click %shere%s." msgstr "" "ความสามารถเพิ่มเติมสำหรับ linked Tables ได้ถูกระงับเอาไว้ ตามเหตุผลที่แจ้งไว้ใน %shere%s" -#: db_operations.php:647 +#: db_operations.php:497 msgid "Edit PDF Pages" msgstr "แก้ไขหน้า PDF" -#: db_printview.php:103 db_tracking.php:71 db_tracking.php:156 +#: db_printview.php:102 db_tracking.php:67 db_tracking.php:152 #: libraries/db_structure.lib.php:37 libraries/export/xml.php:327 -#: libraries/header.inc.php:125 pdf_pages.php:423 server_privileges.php:1657 -#: server_privileges.php:1713 server_privileges.php:1977 -#: server_synchronize.php:422 server_synchronize.php:865 tbl_tracking.php:591 +#: libraries/header.inc.php:125 pdf_pages.php:422 server_privileges.php:1661 +#: server_privileges.php:1717 server_privileges.php:1981 +#: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "ตาราง " -#: db_printview.php:104 libraries/db_structure.lib.php:47 +#: db_printview.php:103 libraries/db_structure.lib.php:47 #: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 -#: navigation.php:629 navigation.php:651 server_databases.php:121 -#: tbl_printview.php:392 tbl_structure.php:364 tbl_structure.php:776 +#: navigation.php:628 navigation.php:650 server_databases.php:119 +#: tbl_printview.php:391 tbl_structure.php:362 tbl_structure.php:774 msgid "Rows" msgstr "แถว" -#: db_printview.php:108 libraries/db_structure.lib.php:58 tbl_indexes.php:189 +#: db_printview.php:107 libraries/db_structure.lib.php:58 tbl_indexes.php:188 msgid "Size" msgstr "ขนาด" -#: db_printview.php:161 db_structure.php:456 libraries/export/sql.php:556 +#: db_printview.php:160 db_structure.php:442 libraries/export/sql.php:556 #: libraries/export/sql.php:896 msgid "in use" msgstr "ใช้อยู่" -#: db_printview.php:186 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:511 pdf_schema.php:1240 tbl_printview.php:432 -#: tbl_structure.php:808 +#: db_printview.php:185 libraries/db_info.inc.php:86 +#: libraries/export/sql.php:511 pdf_schema.php:1239 tbl_printview.php:431 +#: tbl_structure.php:806 msgid "Creation" msgstr "สร้างเมื่อ" -#: db_printview.php:195 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:516 pdf_schema.php:1245 tbl_printview.php:442 -#: tbl_structure.php:816 +#: db_printview.php:194 libraries/db_info.inc.php:91 +#: libraries/export/sql.php:516 pdf_schema.php:1244 tbl_printview.php:441 +#: tbl_structure.php:814 msgid "Last update" msgstr "ปรับปรุงครั้งสุดท้ายเมื่อ" -#: db_printview.php:204 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:521 pdf_schema.php:1250 tbl_printview.php:452 -#: tbl_structure.php:824 +#: db_printview.php:203 libraries/db_info.inc.php:96 +#: libraries/export/sql.php:521 pdf_schema.php:1249 tbl_printview.php:451 +#: tbl_structure.php:822 msgid "Last check" msgstr "ตรวจสอบครั้งสุดท้ายเมื่อ" -#: db_printview.php:221 db_structure.php:479 +#: db_printview.php:220 db_structure.php:465 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -391,94 +362,94 @@ msgid_plural "%s tables" msgstr[0] "%s ตาราง" msgstr[1] "%s ตาราง" -#: db_qbe.php:28 import.php:453 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1980 libraries/sql_query_form.lib.php:138 -#: tbl_operations.php:212 tbl_relation.php:291 tbl_row_action.php:130 -#: view_operations.php:61 +#: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 +#: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "ทำคำค้นเสร็จเรียบร้อยแล้ว" -#: db_qbe.php:41 +#: db_qbe.php:38 msgid "You have to choose at least one column to display" msgstr "ต้องเลือกให้แสดงอย่างน้อยหนึ่งคอลัมน์" -#: db_qbe.php:199 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:865 +#: db_qbe.php:196 libraries/db_structure.lib.php:95 +#: libraries/display_tbl.lib.php:864 msgid "Sort" msgstr "เรียง" -#: db_qbe.php:208 db_qbe.php:242 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:522 libraries/display_tbl.lib.php:827 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:259 -#: tbl_select.php:311 +#: db_qbe.php:205 db_qbe.php:239 libraries/db_structure.lib.php:102 +#: libraries/display_tbl.lib.php:521 libraries/display_tbl.lib.php:826 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:257 +#: tbl_select.php:310 msgid "Ascending" msgstr "น้อยไปมาก" -#: db_qbe.php:209 db_qbe.php:250 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:527 libraries/display_tbl.lib.php:824 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:260 -#: tbl_select.php:312 +#: db_qbe.php:206 db_qbe.php:247 libraries/db_structure.lib.php:110 +#: libraries/display_tbl.lib.php:526 libraries/display_tbl.lib.php:823 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:258 +#: tbl_select.php:311 msgid "Descending" msgstr "มากไปน้อย" -#: db_qbe.php:263 db_tracking.php:77 libraries/display_tbl.lib.php:307 -#: tbl_change.php:275 tbl_tracking.php:596 +#: db_qbe.php:260 db_tracking.php:73 libraries/display_tbl.lib.php:306 +#: tbl_change.php:270 tbl_tracking.php:591 msgid "Show" msgstr "แสดง" -#: db_qbe.php:299 +#: db_qbe.php:296 msgid "Criteria" msgstr "เงื่อนไข" -#: db_qbe.php:352 db_qbe.php:434 db_qbe.php:526 db_qbe.php:557 +#: db_qbe.php:349 db_qbe.php:431 db_qbe.php:523 db_qbe.php:554 msgid "Ins" msgstr "เพิ่ม" -#: db_qbe.php:356 db_qbe.php:438 db_qbe.php:523 db_qbe.php:554 +#: db_qbe.php:353 db_qbe.php:435 db_qbe.php:520 db_qbe.php:551 msgid "And" msgstr "และ" -#: db_qbe.php:365 db_qbe.php:446 db_qbe.php:528 db_qbe.php:559 +#: db_qbe.php:362 db_qbe.php:443 db_qbe.php:525 db_qbe.php:556 msgid "Del" msgstr "ลบ" -#: db_qbe.php:369 db_qbe.php:450 db_qbe.php:521 db_qbe.php:552 -#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:778 -#: server_privileges.php:297 tbl_change.php:1027 tbl_indexes.php:249 -#: tbl_select.php:285 +#: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 +#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:777 +#: server_privileges.php:296 tbl_change.php:925 tbl_indexes.php:248 +#: tbl_select.php:284 msgid "Or" msgstr "หรือ" -#: db_qbe.php:506 +#: db_qbe.php:503 msgid "Modify" msgstr "แก้ไข" -#: db_qbe.php:583 +#: db_qbe.php:580 #, fuzzy #| msgid "Add/Delete Criteria Row" msgid "Add/Delete criteria rows" msgstr "เพิ่ม/ลบ แถว" -#: db_qbe.php:595 +#: db_qbe.php:592 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Add/Delete columns" msgstr "เพิ่ม/ลบ คอลัมน์ (ฟิลด์)" -#: db_qbe.php:608 db_qbe.php:633 +#: db_qbe.php:605 db_qbe.php:630 msgid "Update Query" msgstr "ปรับปรุงคำค้น" -#: db_qbe.php:616 +#: db_qbe.php:613 msgid "Use Tables" msgstr "ใช้ตาราง" -#: db_qbe.php:639 +#: db_qbe.php:636 #, php-format msgid "SQL query on database %s:" msgstr "คำค้นบนฐานข้อมูล %s:" -#: db_qbe.php:933 libraries/common.lib.php:1222 +#: db_qbe.php:930 libraries/common.lib.php:1215 msgid "Submit Query" msgstr "ประมวลผลคำค้น" @@ -518,17 +489,17 @@ msgid_plural "%s matches inside table %s" msgstr[0] "พบ %s ผลลัพธ์ที่ตรงในตาราง %s" msgstr[1] "พบ %s ผลลัพธ์ที่ตรงในตาราง %s" -#: db_search.php:249 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2831 -#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:49 -#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:466 +#: db_search.php:249 db_structure.php:75 db_structure.php:76 +#: db_structure.php:88 db_structure.php:90 db_structure.php:101 +#: db_structure.php:103 libraries/common.lib.php:2836 +#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 +#: tbl_structure.php:35 tbl_structure.php:47 tbl_structure.php:464 msgid "Browse" msgstr "เปิดดู" -#: db_search.php:254 libraries/display_tbl.lib.php:1164 -#: libraries/display_tbl.lib.php:2055 libraries/sql_query_form.lib.php:453 -#: pdf_pages.php:285 pdf_pages.php:424 pdf_pages.php:460 pdf_pages.php:488 +#: db_search.php:254 libraries/display_tbl.lib.php:1163 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 msgid "Delete" @@ -568,231 +539,237 @@ msgstr "ในตาราง:" msgid "Inside column:" msgstr "ในตาราง:" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2830 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:75 +#: db_structure.php:79 db_structure.php:80 db_structure.php:92 +#: db_structure.php:93 db_structure.php:105 db_structure.php:106 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 +#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "แทรก" -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2827 libraries/common.lib.php:2834 -#: libraries/db_links.inc.php:62 libraries/export/htmlword.php:22 +#: db_structure.php:81 db_structure.php:94 db_structure.php:107 +#: libraries/common.lib.php:2832 libraries/common.lib.php:2839 +#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 -#: libraries/tbl_links.inc.php:55 pmd_general.php:133 -#: server_privileges.php:593 server_replication.php:314 tbl_tracking.php:268 +#: libraries/tbl_links.inc.php:54 pmd_general.php:133 +#: server_privileges.php:592 server_replication.php:313 tbl_tracking.php:263 msgid "Structure" msgstr "โครงสร้าง" -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:544 db_structure.php:545 db_tracking.php:90 -#: libraries/Index.class.php:482 libraries/common.lib.php:1659 -#: libraries/db_links.inc.php:99 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:126 -#: server_databases.php:351 tbl_structure.php:26 tbl_structure.php:150 -#: tbl_structure.php:151 tbl_structure.php:470 +#: db_structure.php:82 db_structure.php:83 db_structure.php:95 +#: db_structure.php:96 db_structure.php:108 db_structure.php:109 +#: db_structure.php:530 db_structure.php:531 db_tracking.php:86 +#: libraries/Index.class.php:482 libraries/common.lib.php:1663 +#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 +#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 +#: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" msgstr "โยนทิ้ง" -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:542 db_structure.php:543 libraries/common.lib.php:1658 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:104 +#: db_structure.php:84 db_structure.php:85 db_structure.php:97 +#: db_structure.php:98 db_structure.php:110 db_structure.php:111 +#: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 +#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 msgid "Empty" msgstr "ลบข้อมูล" -#: db_structure.php:315 libraries/tbl_links.inc.php:99 +#: db_structure.php:301 libraries/tbl_links.inc.php:98 #, php-format msgid "Table %s has been emptied" msgstr "ลบข้อมูลในตาราง %s เรียบร้อยแล้ว" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, fuzzy, php-format msgid "View %s has been dropped" msgstr "โยนฟิลด์ %s ทิ้งไปเรียบร้อยแล้ว" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "Table %s has been dropped" msgstr "โยนตาราง %s ทิ้งไปเรียบร้อยแล้ว" -#: db_structure.php:332 +#: db_structure.php:318 msgid "Tracking is active." msgstr "" -#: db_structure.php:334 +#: db_structure.php:320 msgid "Tracking is not active." msgstr "" -#: db_structure.php:419 libraries/display_tbl.lib.php:1943 +#: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -#: db_structure.php:433 db_structure.php:447 libraries/header.inc.php:125 -#: libraries/tbl_info.inc.php:65 tbl_structure.php:184 test/theme.php:73 +#: db_structure.php:419 db_structure.php:433 libraries/header.inc.php:125 +#: libraries/tbl_info.inc.php:60 tbl_structure.php:183 test/theme.php:73 msgid "View" msgstr "" -#: db_structure.php:484 libraries/db_structure.lib.php:40 -#: libraries/server_links.inc.php:69 server_replication.php:32 -#: server_replication.php:163 server_status.php:368 +#: db_structure.php:470 libraries/db_structure.lib.php:40 +#: libraries/server_links.inc.php:69 server_replication.php:31 +#: server_replication.php:162 server_status.php:368 #, fuzzy msgid "Replication" msgstr "รีเลชัน" -#: db_structure.php:488 +#: db_structure.php:474 msgid "Sum" msgstr "ผลรวม" -#: db_structure.php:495 libraries/StorageEngine.class.php:349 +#: db_structure.php:481 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: db_structure.php:523 db_structure.php:540 db_structure.php:541 -#: libraries/display_tbl.lib.php:2080 libraries/display_tbl.lib.php:2085 -#: libraries/mult_submits.inc.php:15 server_databases.php:345 -#: server_databases.php:350 server_privileges.php:1588 tbl_structure.php:454 -#: tbl_structure.php:463 +#: db_structure.php:509 db_structure.php:526 db_structure.php:527 +#: libraries/display_tbl.lib.php:2039 libraries/display_tbl.lib.php:2044 +#: libraries/mult_submits.inc.php:15 server_databases.php:343 +#: server_databases.php:348 server_privileges.php:1592 tbl_structure.php:452 +#: tbl_structure.php:461 msgid "With selected:" msgstr "ทำกับที่เลือก:" -#: db_structure.php:526 libraries/display_tbl.lib.php:2075 -#: server_databases.php:347 server_privileges.php:569 -#: server_privileges.php:1591 tbl_structure.php:457 +#: db_structure.php:512 libraries/display_tbl.lib.php:2034 +#: server_databases.php:345 server_privileges.php:568 +#: server_privileges.php:1595 tbl_structure.php:455 msgid "Check All" msgstr "เลือกทั้งหมด" -#: db_structure.php:530 libraries/display_tbl.lib.php:2076 -#: libraries/replication_gui.lib.php:35 server_databases.php:349 -#: server_privileges.php:572 server_privileges.php:1595 tbl_structure.php:461 +#: db_structure.php:516 libraries/display_tbl.lib.php:2035 +#: libraries/replication_gui.lib.php:35 server_databases.php:347 +#: server_privileges.php:571 server_privileges.php:1599 tbl_structure.php:459 msgid "Uncheck All" msgstr "ไม่เลือกเลย" -#: db_structure.php:535 +#: db_structure.php:521 msgid "Check tables having overhead" msgstr "" -#: db_structure.php:546 db_structure.php:547 db_structure.php:598 -#: libraries/display_tbl.lib.php:2179 libraries/mult_submits.inc.php:27 -#: tbl_structure.php:491 tbl_structure.php:493 +#: db_structure.php:532 db_structure.php:533 db_structure.php:584 +#: libraries/display_tbl.lib.php:2138 libraries/mult_submits.inc.php:27 +#: tbl_structure.php:489 tbl_structure.php:491 msgid "Print view" msgstr "แสดง" -#: db_structure.php:548 db_structure.php:549 libraries/mult_submits.inc.php:41 -#: tbl_operations.php:580 +#: db_structure.php:534 db_structure.php:535 libraries/mult_submits.inc.php:41 +#: tbl_operations.php:578 msgid "Check table" msgstr "ตรวจสอบตาราง" -#: db_structure.php:550 db_structure.php:551 libraries/mult_submits.inc.php:46 -#: tbl_operations.php:620 tbl_structure.php:708 tbl_structure.php:710 +#: db_structure.php:536 db_structure.php:537 libraries/mult_submits.inc.php:46 +#: tbl_operations.php:618 tbl_structure.php:706 tbl_structure.php:708 msgid "Optimize table" msgstr "ปรับแต่งตาราง" -#: db_structure.php:552 db_structure.php:553 libraries/mult_submits.inc.php:51 -#: tbl_operations.php:610 +#: db_structure.php:538 db_structure.php:539 libraries/mult_submits.inc.php:51 +#: tbl_operations.php:608 msgid "Repair table" msgstr "ซ่อมแซมตาราง" -#: db_structure.php:554 db_structure.php:555 libraries/mult_submits.inc.php:56 -#: tbl_operations.php:600 +#: db_structure.php:540 db_structure.php:541 libraries/mult_submits.inc.php:56 +#: tbl_operations.php:598 msgid "Analyze table" msgstr "วิเคราะห์ตาราง" -#: db_structure.php:556 db_structure.php:557 libraries/db_links.inc.php:70 -#: libraries/display_export.lib.php:82 libraries/display_tbl.lib.php:2093 -#: libraries/display_tbl.lib.php:2224 libraries/mult_submits.inc.php:61 -#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:81 -#: pmd_pdf.php:83 pmd_pdf.php:108 server_privileges.php:1372 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 +#: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 +#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 +#: pmd_pdf.php:81 pmd_pdf.php:106 server_privileges.php:1376 #: setup/frames/menu.inc.php:22 tbl_row_action.php:58 msgid "Export" msgstr "ส่งออก" -#: db_structure.php:605 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:591 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "พจนานุกรมข้อมูล" -#: db_tracking.php:65 +#: db_tracking.php:61 msgid "Tracked tables" msgstr "" -#: db_tracking.php:70 libraries/export/htmlword.php:85 +#: db_tracking.php:66 libraries/export/htmlword.php:85 #: libraries/export/latex.php:152 libraries/export/odt.php:112 #: libraries/export/sql.php:339 libraries/export/texytext.php:84 #: libraries/export/xml.php:254 libraries/header.inc.php:105 -#: libraries/header_printview.inc.php:57 server_databases.php:168 -#: server_privileges.php:1652 server_privileges.php:1713 -#: server_privileges.php:1971 server_processlist.php:55 -#: server_synchronize.php:1178 server_synchronize.php:1182 -#: tbl_tracking.php:590 test/theme.php:64 +#: libraries/header_printview.inc.php:57 server_databases.php:166 +#: server_privileges.php:1656 server_privileges.php:1717 +#: server_privileges.php:1975 server_processlist.php:55 +#: server_synchronize.php:1177 server_synchronize.php:1181 +#: tbl_tracking.php:585 test/theme.php:64 msgid "Database" msgstr "ฐานข้อมูล" -#: db_tracking.php:72 +#: db_tracking.php:68 msgid "Last version" msgstr "" -#: db_tracking.php:73 tbl_tracking.php:593 +#: db_tracking.php:69 tbl_tracking.php:588 #, fuzzy msgid "Created" msgstr "สร้าง" -#: db_tracking.php:74 tbl_tracking.php:594 +#: db_tracking.php:70 tbl_tracking.php:589 msgid "Updated" msgstr "" -#: db_tracking.php:76 libraries/Index.class.php:439 -#: libraries/db_structure.lib.php:44 server_databases.php:202 -#: server_privileges.php:1534 server_privileges.php:1717 -#: server_privileges.php:2065 tbl_structure.php:186 +#: db_tracking.php:71 libraries/common.lib.php:1361 +#: libraries/server_links.inc.php:48 server_processlist.php:58 +#: tbl_tracking.php:590 test/theme.php:100 +msgid "Status" +msgstr "สถานะ" + +#: db_tracking.php:72 libraries/Index.class.php:439 +#: libraries/db_structure.lib.php:44 server_databases.php:200 +#: server_privileges.php:1538 server_privileges.php:1721 +#: server_privileges.php:2069 tbl_structure.php:185 msgid "Action" msgstr "กระทำการ" -#: db_tracking.php:87 db_tracking.php:119 +#: db_tracking.php:83 db_tracking.php:115 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:105 tbl_tracking.php:547 tbl_tracking.php:605 -#: tbl_tracking.php:612 +#: db_tracking.php:101 tbl_tracking.php:542 tbl_tracking.php:600 +#: tbl_tracking.php:607 msgid "active" msgstr "" -#: db_tracking.php:107 tbl_tracking.php:549 tbl_tracking.php:607 -#: tbl_tracking.php:609 +#: db_tracking.php:103 tbl_tracking.php:544 tbl_tracking.php:602 +#: tbl_tracking.php:604 msgid "not active" msgstr "" -#: db_tracking.php:120 +#: db_tracking.php:116 #, fuzzy msgid "Versions" msgstr "กระบวนการ" -#: db_tracking.php:121 tbl_tracking.php:378 tbl_tracking.php:623 +#: db_tracking.php:117 tbl_tracking.php:373 tbl_tracking.php:618 msgid "Tracking report" msgstr "" -#: db_tracking.php:122 tbl_tracking.php:250 tbl_tracking.php:623 +#: db_tracking.php:118 tbl_tracking.php:245 tbl_tracking.php:618 #, fuzzy msgid "Structure snapshot" msgstr "เฉพาะโครงสร้าง" -#: db_tracking.php:151 +#: db_tracking.php:147 msgid "Untracked tables" msgstr "" -#: db_tracking.php:171 db_tracking.php:173 tbl_structure.php:527 -#: tbl_structure.php:529 +#: db_tracking.php:167 db_tracking.php:169 tbl_structure.php:525 +#: tbl_structure.php:527 #, fuzzy msgid "Track table" msgstr "ตรวจสอบตาราง" -#: db_tracking.php:199 +#: db_tracking.php:195 #, fuzzy msgid "Database Log" msgstr "ฐานข้อมูล" @@ -801,102 +778,102 @@ msgstr "ฐานข้อมูล" msgid "Selected export type has to be saved in file!" msgstr "" -#: export.php:153 export.php:178 export.php:620 +#: export.php:152 export.php:177 export.php:615 #, php-format msgid "Insufficient space to save the file %s." msgstr "" -#: export.php:287 +#: export.php:286 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "" -#: export.php:291 export.php:295 +#: export.php:290 export.php:294 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "" -#: export.php:622 +#: export.php:617 #, php-format msgid "Dump has been saved to file %s." msgstr "" -#: import.php:59 +#: 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." msgstr "" -#: import.php:278 import.php:331 libraries/File.class.php:840 -#: libraries/File.class.php:950 +#: import.php:277 import.php:330 libraries/File.class.php:566 +#: libraries/File.class.php:676 msgid "File could not be read" msgstr "อ่านไฟล์ไม่ได้" -#: import.php:286 import.php:295 import.php:314 import.php:323 -#: libraries/File.class.php:1020 libraries/File.class.php:1028 -#: libraries/File.class.php:1044 libraries/File.class.php:1052 +#: import.php:285 import.php:294 import.php:313 import.php:322 +#: libraries/File.class.php:746 libraries/File.class.php:754 +#: libraries/File.class.php:770 libraries/File.class.php:778 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." msgstr "" -#: import.php:336 +#: import.php:335 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " "[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." msgstr "" -#: import.php:371 libraries/display_import.lib.php:23 +#: import.php:370 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:396 +#: import.php:395 msgid "The bookmark has been deleted." msgstr "ลบคำค้นที่จดไว้เรียบร้อยแล้ว" -#: import.php:400 +#: import.php:399 msgid "Showing bookmark" msgstr "" -#: import.php:402 sql.php:625 +#: import.php:401 sql.php:618 #, php-format msgid "Bookmark %s created" msgstr "" -#: import.php:408 import.php:414 +#: import.php:407 import.php:413 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" -#: import.php:423 +#: import.php:422 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: import.php:425 +#: import.php:424 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." msgstr "" -#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:240 +#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:239 #: user_password.php:110 msgid "Back" msgstr "ย้อนกลับ" -#: index.php:188 +#: index.php:183 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "เบราเซอร์ที่ใช้เฟรมได้ จะช่วยให้ใช้ phpMyAdmin ได้ง่ายขึ้น" -#: js/messages.php:25 server_synchronize.php:344 server_synchronize.php:356 -#: server_synchronize.php:372 server_synchronize.php:379 -#: server_synchronize.php:738 server_synchronize.php:766 -#: server_synchronize.php:794 server_synchronize.php:806 +#: js/messages.php:25 server_synchronize.php:343 server_synchronize.php:355 +#: server_synchronize.php:371 server_synchronize.php:378 +#: server_synchronize.php:737 server_synchronize.php:765 +#: server_synchronize.php:793 server_synchronize.php:805 msgid "Click to select" msgstr "" @@ -904,15 +881,15 @@ msgstr "" msgid "Click to unselect" msgstr "" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:88 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:87 msgid "\"DROP DATABASE\" statements are disabled." msgstr "คำสั่ง \"DROP DATABASE\" ถูกปิดไว้" -#: js/messages.php:30 libraries/mult_submits.inc.php:257 sql.php:187 +#: js/messages.php:30 libraries/mult_submits.inc.php:256 sql.php:186 msgid "Do you really want to " msgstr "ต้องการจะ " -#: js/messages.php:31 libraries/mult_submits.inc.php:257 sql.php:171 +#: js/messages.php:31 libraries/mult_submits.inc.php:256 sql.php:170 msgid "You are about to DESTROY a complete database!" msgstr "" @@ -941,11 +918,11 @@ msgstr "ชื่อโฮสต์ยังว่างอยู่!" msgid "The user name is empty!" msgstr "ชื่อผู้ใช้ยังว่างอยู่!" -#: js/messages.php:44 server_privileges.php:1228 user_password.php:65 +#: js/messages.php:44 server_privileges.php:1229 user_password.php:65 msgid "The password is empty!" msgstr "รหัสผ่านยังว่างอยู่!" -#: js/messages.php:45 server_privileges.php:1226 user_password.php:68 +#: js/messages.php:45 server_privileges.php:1227 user_password.php:68 msgid "The passwords aren't the same!" msgstr "รหัสผ่านไม่ตรงกัน!" @@ -953,29 +930,29 @@ msgstr "รหัสผ่านไม่ตรงกัน!" msgid "Cancel" msgstr "" -#: js/messages.php:52 pmd_save_pos.php:53 +#: js/messages.php:52 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "บันทึกการแก้ไขเรียบร้อยแล้ว" -#: js/messages.php:53 pmd_relation_upd.php:48 +#: js/messages.php:53 pmd_relation_upd.php:47 #, fuzzy msgid "Relation deleted" msgstr "มุมมองรีเลชัน" -#: js/messages.php:54 pmd_relation_new.php:63 +#: js/messages.php:54 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:55 pmd_relation_new.php:85 +#: js/messages.php:55 pmd_relation_new.php:84 #, fuzzy msgid "Internal relation added" msgstr "รีเลชันภายใน" -#: js/messages.php:56 pmd_relation_new.php:62 pmd_relation_new.php:87 +#: js/messages.php:56 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:57 pmd_relation_new.php:30 +#: js/messages.php:57 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "" @@ -983,13 +960,13 @@ msgstr "" msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:59 libraries/relation.lib.php:94 -#: libraries/relation.lib.php:106 +#: js/messages.php:59 libraries/relation.lib.php:89 +#: libraries/relation.lib.php:101 msgid "General relation features" msgstr "ความสามารถด้านรีเลชันทั่วไป" -#: js/messages.php:59 libraries/relation.lib.php:88 -#: libraries/relation.lib.php:95 +#: js/messages.php:59 libraries/relation.lib.php:83 +#: libraries/relation.lib.php:90 msgid "Disabled" msgstr "ระงับการใช้อยู่" @@ -1005,7 +982,7 @@ msgstr "" msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:547 +#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" @@ -1037,10 +1014,10 @@ msgid "Prev" msgstr "ก่อนหน้า" #. l10n: Display text for next month link in calendar -#: js/messages.php:81 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:337 -#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:422 -#: tbl_structure.php:800 +#: js/messages.php:81 libraries/common.lib.php:2358 +#: libraries/common.lib.php:2361 libraries/display_tbl.lib.php:336 +#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 +#: tbl_structure.php:798 msgid "Next" msgstr "ต่อไป" @@ -1114,27 +1091,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1562 +#: js/messages.php:101 libraries/common.lib.php:1566 msgid "Jan" msgstr "ม.ค." #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1564 +#: js/messages.php:103 libraries/common.lib.php:1568 msgid "Feb" msgstr "ก.พ." #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1566 +#: js/messages.php:105 libraries/common.lib.php:1570 msgid "Mar" msgstr "มี.ค." #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1568 +#: js/messages.php:107 libraries/common.lib.php:1572 msgid "Apr" msgstr "เม.ย." #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1570 +#: js/messages.php:109 libraries/common.lib.php:1574 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1142,37 +1119,37 @@ msgid "May" msgstr "พ.ค." #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1572 +#: js/messages.php:111 libraries/common.lib.php:1576 msgid "Jun" msgstr "มิ.ย." #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1574 +#: js/messages.php:113 libraries/common.lib.php:1578 msgid "Jul" msgstr "ก.ค." #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1576 +#: js/messages.php:115 libraries/common.lib.php:1580 msgid "Aug" msgstr "ส.ค." #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1578 +#: js/messages.php:117 libraries/common.lib.php:1582 msgid "Sep" msgstr "ก.ย." #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1580 +#: js/messages.php:119 libraries/common.lib.php:1584 msgid "Oct" msgstr "ต.ค." #. l10n: Short month name -#: js/messages.php:121 libraries/common.lib.php:1582 +#: js/messages.php:121 libraries/common.lib.php:1586 msgid "Nov" msgstr "พ.ย." #. l10n: Short month name -#: js/messages.php:123 libraries/common.lib.php:1584 +#: js/messages.php:123 libraries/common.lib.php:1588 msgid "Dec" msgstr "ธ.ค." @@ -1213,37 +1190,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1587 +#: js/messages.php:136 libraries/common.lib.php:1591 msgid "Sun" msgstr "อา." #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1589 +#: js/messages.php:138 libraries/common.lib.php:1593 msgid "Mon" msgstr "จ." #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1591 +#: js/messages.php:140 libraries/common.lib.php:1595 msgid "Tue" msgstr "อ." #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1593 +#: js/messages.php:142 libraries/common.lib.php:1597 msgid "Wed" msgstr "พ." #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1595 +#: js/messages.php:144 libraries/common.lib.php:1599 msgid "Thu" msgstr "พฤ." #. l10n: Short week day name -#: js/messages.php:146 libraries/common.lib.php:1597 +#: js/messages.php:146 libraries/common.lib.php:1601 msgid "Fri" msgstr "ศ." #. l10n: Short week day name -#: js/messages.php:148 libraries/common.lib.php:1599 +#: js/messages.php:148 libraries/common.lib.php:1603 msgid "Sat" msgstr "ส." @@ -1321,75 +1298,74 @@ msgstr "ต่อวินาที" msgid "Font size" msgstr "" -#: libraries/File.class.php:336 libraries/File.class.php:424 -#: libraries/File.class.php:561 libraries/File.class.php:700 -msgid "Unknown error in file upload." -msgstr "" - -#: libraries/File.class.php:406 +#: libraries/File.class.php:315 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:409 +#: libraries/File.class.php:318 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:412 +#: libraries/File.class.php:321 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:415 +#: libraries/File.class.php:324 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:418 +#: libraries/File.class.php:327 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:421 +#: libraries/File.class.php:330 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:898 +#: libraries/File.class.php:333 +msgid "Unknown error in file upload." +msgstr "" + +#: libraries/File.class.php:624 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "" -#: libraries/Index.class.php:427 tbl_relation.php:528 +#: libraries/Index.class.php:427 tbl_relation.php:526 msgid "No index defined!" msgstr "ยังไม่ได้กำหนดดัชนีใดๆ!" -#: libraries/Index.class.php:432 server_databases.php:131 tbl_tracking.php:315 +#: libraries/Index.class.php:432 server_databases.php:129 tbl_tracking.php:310 msgid "Indexes" msgstr "ดัชนี" #: libraries/Index.class.php:443 libraries/mult_submits.inc.php:102 -#: libraries/tbl_properties.inc.php:518 tbl_structure.php:32 -#: tbl_structure.php:154 tbl_structure.php:158 tbl_structure.php:473 -#: tbl_tracking.php:321 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:31 +#: tbl_structure.php:153 tbl_structure.php:157 tbl_structure.php:471 +#: tbl_tracking.php:316 msgid "Unique" msgstr "เอกลักษณ์" -#: libraries/Index.class.php:444 tbl_tracking.php:322 +#: libraries/Index.class.php:444 tbl_tracking.php:317 msgid "Packed" msgstr "" -#: libraries/Index.class.php:446 tbl_tracking.php:324 +#: libraries/Index.class.php:446 tbl_tracking.php:319 msgid "Cardinality" msgstr "Cardinality" -#: libraries/Index.class.php:449 tbl_tracking.php:278 tbl_tracking.php:327 +#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322 #, fuzzy msgid "Comment" msgstr "หมายเหตุ" #: libraries/Index.class.php:465 libraries/common.lib.php:609 -#: libraries/common.lib.php:1198 libraries/display_tbl.lib.php:1116 +#: libraries/common.lib.php:1191 libraries/display_tbl.lib.php:1115 #: libraries/import.lib.php:1119 libraries/import.lib.php:1143 -#: pdf_pages.php:284 setup/frames/index.inc.php:124 +#: pdf_pages.php:283 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:349 tbl_row_action.php:68 msgid "Edit" msgstr "แก้ไข" @@ -1411,15 +1387,15 @@ msgid "" msgstr "" #: libraries/List_Database.class.php:430 libraries/server_links.inc.php:40 -#: server_databases.php:87 server_privileges.php:1652 +#: server_databases.php:85 server_privileges.php:1656 #: setup/lib/messages.inc.php:107 test/theme.php:92 msgid "Databases" msgstr "ฐานข้อมูล" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:259 libraries/import.lib.php:134 pdf_schema.php:31 -#: pdf_schema.php:231 tbl_change.php:1023 tbl_operations.php:212 -#: tbl_relation.php:289 view_operations.php:61 +#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 +#: tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "ผิดพลาด" @@ -1446,40 +1422,40 @@ msgid_plural "%1$d rows inserted." msgstr[0] "ยังไม่ได้เลือกแถว" msgstr[1] "ยังไม่ได้เลือกแถว" -#: libraries/StorageEngine.class.php:196 +#: libraries/StorageEngine.class.php:194 msgid "" "There is no detailed status information available for this storage engine." msgstr "" -#: libraries/StorageEngine.class.php:352 +#: libraries/StorageEngine.class.php:354 #, php-format msgid "%s is available on this MySQL server." msgstr "" -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:357 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "" -#: libraries/StorageEngine.class.php:359 +#: libraries/StorageEngine.class.php:361 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "" -#: libraries/Table.class.php:1018 +#: libraries/Table.class.php:1017 msgid "Invalid database" msgstr "" -#: libraries/Table.class.php:1032 tbl_get_field.php:25 +#: libraries/Table.class.php:1031 tbl_get_field.php:25 msgid "Invalid table name" msgstr "" -#: libraries/Table.class.php:1047 +#: libraries/Table.class.php:1046 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "" -#: libraries/Table.class.php:1131 +#: libraries/Table.class.php:1129 #, php-format msgid "Table %s has been renamed to %s" msgstr "ตาราง %s ได้ถูกเปลี่ยนชื่อเป็น %s" @@ -1497,22 +1473,22 @@ msgstr "" msgid "take it" msgstr "" -#: libraries/Theme_Manager.class.php:114 +#: libraries/Theme_Manager.class.php:109 #, php-format msgid "Default theme %s not found!" msgstr "" -#: libraries/Theme_Manager.class.php:152 +#: libraries/Theme_Manager.class.php:147 #, php-format msgid "Theme %s not found!" msgstr "" -#: libraries/Theme_Manager.class.php:220 +#: libraries/Theme_Manager.class.php:215 #, php-format msgid "Theme path not found for theme %s!" msgstr "" -#: libraries/Theme_Manager.class.php:296 test/theme.php:160 themes.php:20 +#: libraries/Theme_Manager.class.php:291 test/theme.php:160 themes.php:20 #: themes.php:40 msgid "Theme / Style" msgstr "หน้าตา" @@ -1619,19 +1595,19 @@ msgstr "" msgid "Authenticating..." msgstr "" -#: libraries/blobstreaming.lib.php:689 +#: libraries/blobstreaming.lib.php:340 msgid "View image" msgstr "" -#: libraries/blobstreaming.lib.php:693 +#: libraries/blobstreaming.lib.php:344 msgid "Play audio" msgstr "" -#: libraries/blobstreaming.lib.php:698 +#: libraries/blobstreaming.lib.php:349 msgid "View video" msgstr "" -#: libraries/blobstreaming.lib.php:702 +#: libraries/blobstreaming.lib.php:353 msgid "Download file" msgstr "" @@ -1681,7 +1657,7 @@ msgstr "เซิร์ฟเวอร์" msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:909 +#: libraries/common.inc.php:908 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" @@ -1708,7 +1684,8 @@ msgstr "ถูกส่ง" #: libraries/common.lib.php:425 libraries/common.lib.php:427 #: libraries/common.lib.php:429 libraries/common.lib.php:445 #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 -#: libraries/display_export.lib.php:163 libraries/relation.lib.php:84 +#: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 +#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 #: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" @@ -1723,146 +1700,146 @@ msgstr "คำค้น SQL" msgid "MySQL said: " msgstr "MySQL แสดง: " -#: libraries/common.lib.php:1136 +#: libraries/common.lib.php:1129 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1174 setup/lib/messages.inc.php:350 +#: libraries/common.lib.php:1167 setup/lib/messages.inc.php:350 msgid "Explain SQL" msgstr "อธิบาย SQL" -#: libraries/common.lib.php:1177 +#: libraries/common.lib.php:1170 msgid "Skip Explain SQL" msgstr "ไม่ต้องอธิบาย SQL" -#: libraries/common.lib.php:1211 +#: libraries/common.lib.php:1204 msgid "Without PHP Code" msgstr "ไม่เอาโค้ด PHP" -#: libraries/common.lib.php:1214 setup/lib/messages.inc.php:352 +#: libraries/common.lib.php:1207 setup/lib/messages.inc.php:352 msgid "Create PHP Code" msgstr "สร้างโค้ด PHP" -#: libraries/common.lib.php:1232 server_status.php:451 +#: libraries/common.lib.php:1225 server_status.php:451 #: setup/lib/messages.inc.php:351 msgid "Refresh" msgstr "เรียกใหม่" -#: libraries/common.lib.php:1241 +#: libraries/common.lib.php:1234 msgid "Skip Validate SQL" msgstr "ไม่ต้องตรวจสอบ SQL" -#: libraries/common.lib.php:1244 setup/lib/messages.inc.php:353 +#: libraries/common.lib.php:1237 setup/lib/messages.inc.php:353 msgid "Validate SQL" msgstr "ตรวจสอบ SQL" -#: libraries/common.lib.php:1283 +#: libraries/common.lib.php:1287 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1285 +#: libraries/common.lib.php:1289 msgid "Inline" msgstr "" -#: libraries/common.lib.php:1339 libraries/common.lib.php:1354 +#: libraries/common.lib.php:1343 libraries/common.lib.php:1358 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1358 libraries/tbl_triggers.lib.php:27 +#: libraries/common.lib.php:1362 libraries/tbl_triggers.lib.php:27 #: server_processlist.php:57 msgid "Time" msgstr "เวลา" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "B" msgstr "ไบต์" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "KiB" msgstr "กิโลไบต์" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "MiB" msgstr "เมกกะไบต์" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "GiB" msgstr "กิกะไบต์" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "TiB" msgstr "เทอราไบต์" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "PiB" msgstr "เพตตะไบต์" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "EiB" msgstr "เอกซะไบต์" #. l10n: Thousands separator -#: libraries/common.lib.php:1424 +#: libraries/common.lib.php:1428 msgid "," msgstr "," #. l10n: Decimal separator -#: libraries/common.lib.php:1426 +#: libraries/common.lib.php:1430 msgid "." msgstr "." #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1603 +#: libraries/common.lib.php:1607 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y %Rน." -#: libraries/common.lib.php:1909 +#: libraries/common.lib.php:1913 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s วัน, %s ชั่วโมง, %s นาที, %s วินาที" -#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 -#: libraries/display_tbl.lib.php:289 server_status.php:718 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 +#: libraries/display_tbl.lib.php:288 server_status.php:718 msgid "Begin" msgstr "จุดเริ่มต้น" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 -#: libraries/display_tbl.lib.php:290 server_binlog.php:154 +#: libraries/common.lib.php:2328 libraries/common.lib.php:2331 +#: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "ก่อนหน้า" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 -#: libraries/display_tbl.lib.php:352 +#: libraries/common.lib.php:2359 libraries/common.lib.php:2362 +#: libraries/display_tbl.lib.php:351 msgid "End" msgstr "ท้ายสุด" -#: libraries/common.lib.php:2429 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "กระโดดไปที่ฐานข้อมูล "%s"." -#: libraries/common.lib.php:2448 +#: libraries/common.lib.php:2453 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2828 libraries/common.lib.php:2835 -#: libraries/db_links.inc.php:67 libraries/export/sql.php:24 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 +#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 -#: libraries/tbl_links.inc.php:59 querywindow.php:89 test/theme.php:96 +#: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2837 libraries/db_links.inc.php:103 -#: libraries/tbl_links.inc.php:94 libraries/tbl_links.inc.php:116 -#: view_operations.php:88 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: view_operations.php:87 msgid "Operations" msgstr "กระบวนการ" -#: libraries/core.lib.php:282 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1878,39 +1855,39 @@ msgstr "" msgid "Name" msgstr "ชื่อ" -#: libraries/db_links.inc.php:44 +#: libraries/db_links.inc.php:43 #, php-format msgid "Database %s has been dropped." msgstr "โยนฐานข้อมูล %s ทิ้งไปเรียบร้อยแล้ว" -#: libraries/db_links.inc.php:56 libraries/db_links.inc.php:57 -#: libraries/db_links.inc.php:58 +#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 +#: libraries/db_links.inc.php:57 msgid "Database seems to be empty!" msgstr "" -#: libraries/db_links.inc.php:80 libraries/relation.lib.php:142 -#: libraries/tbl_links.inc.php:68 +#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:85 +#: libraries/db_links.inc.php:84 msgid "Query" msgstr "คำค้นจากตัวอย่าง" -#: libraries/db_links.inc.php:90 libraries/relation.lib.php:138 +#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:97 libraries/server_links.inc.php:87 -#: libraries/tbl_links.inc.php:90 pmd_pdf.php:83 pmd_pdf.php:109 +#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 #, fuzzy msgid "Import" msgstr "ส่งออก" -#: libraries/db_links.inc.php:110 libraries/server_links.inc.php:65 -#: server_privileges.php:111 server_privileges.php:1714 -#: server_privileges.php:2063 test/theme.php:116 +#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: server_privileges.php:110 server_privileges.php:1718 +#: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" msgstr "สิทธิ" @@ -1922,14 +1899,14 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1847 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1806 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "" -#: libraries/db_structure.lib.php:60 server_databases.php:141 -#: tbl_printview.php:334 tbl_structure.php:681 +#: libraries/db_structure.lib.php:60 server_databases.php:139 +#: tbl_printview.php:333 tbl_structure.php:679 msgid "Overhead" msgstr "เกินความจำเป็น" @@ -1946,7 +1923,7 @@ msgstr "เซิร์ฟเวอร์ดังกล่าวไม่ตอ msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "" -#: libraries/dbi/mysql.dbi.lib.php:358 tbl_structure.php:607 +#: libraries/dbi/mysql.dbi.lib.php:358 tbl_structure.php:605 msgid "Details..." msgstr "" @@ -1956,22 +1933,22 @@ msgid "Change password" msgstr "เปลี่ยนรหัสผ่าน" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:807 +#: libraries/replication_gui.lib.php:347 server_privileges.php:806 msgid "No Password" msgstr "ไม่มีรหัสผ่าน" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1530 server_synchronize.php:1174 +#: libraries/replication_gui.lib.php:351 server_privileges.php:795 +#: server_privileges.php:799 server_privileges.php:810 +#: server_privileges.php:1534 server_synchronize.php:1173 msgid "Password" msgstr "รหัสผ่าน" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:815 server_privileges.php:818 +#: server_privileges.php:814 server_privileges.php:817 msgid "Re-type" msgstr "พิมพ์ใหม่" @@ -1992,8 +1969,8 @@ msgstr "สร้างฐานข้อมูลใหม่" msgid "Create" msgstr "สร้าง" -#: libraries/display_create_database.lib.php:39 server_privileges.php:113 -#: server_privileges.php:1419 server_replication.php:34 +#: libraries/display_create_database.lib.php:39 server_privileges.php:112 +#: server_privileges.php:1423 server_replication.php:33 msgid "No Privileges" msgstr "ไม่มีสิทธิ" @@ -2014,51 +1991,51 @@ msgstr "สร้างตารางในฐานข้อมูลนี้ msgid "Number of columns" msgstr "ระเบียนต่อหน้า" -#: libraries/display_export.lib.php:41 +#: libraries/display_export.lib.php:35 msgid "Could not load export plugins, please check your installation!" msgstr "" -#: libraries/display_export.lib.php:106 +#: libraries/display_export.lib.php:100 #, fuzzy, php-format #| msgid "Dump %s row(s) starting at record # %s" msgid "Dump %s row(s) starting at row # %s" msgstr "ดัมพ์แถว %s แถว เริ่มที่แถว %s" -#: libraries/display_export.lib.php:114 +#: libraries/display_export.lib.php:108 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:124 setup/lib/messages.inc.php:79 +#: libraries/display_export.lib.php:118 setup/lib/messages.inc.php:79 msgid "Save as file" msgstr "ส่งมาเป็นไฟล์" -#: libraries/display_export.lib.php:133 +#: libraries/display_export.lib.php:127 #, fuzzy, php-format msgid "Save on server in %s directory" msgstr "ไดเรกทอรีสำหรับอัพโหลด ที่เว็บเซิร์ฟเวอร์" -#: libraries/display_export.lib.php:141 setup/lib/messages.inc.php:87 +#: libraries/display_export.lib.php:135 setup/lib/messages.inc.php:87 msgid "Overwrite existing file(s)" msgstr "เขียนทับแฟ้มที่มีอยู่แล้ว" -#: libraries/display_export.lib.php:147 +#: libraries/display_export.lib.php:141 msgid "File name template" msgstr "รูปแบบของชื่อไฟล์" -#: libraries/display_export.lib.php:151 +#: libraries/display_export.lib.php:145 #, fuzzy msgid "server name" msgstr "ชื่อผู้ใช้" -#: libraries/display_export.lib.php:154 +#: libraries/display_export.lib.php:148 msgid "database name" msgstr "" -#: libraries/display_export.lib.php:157 +#: libraries/display_export.lib.php:151 msgid "table name" msgstr "" -#: libraries/display_export.lib.php:161 +#: libraries/display_export.lib.php:155 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2066,39 +2043,39 @@ msgid "" "%3$s. Other text will be kept as is." msgstr "" -#: libraries/display_export.lib.php:202 +#: libraries/display_export.lib.php:196 msgid "remember template" msgstr "จำรูปแบบ" -#: libraries/display_export.lib.php:210 libraries/display_import.lib.php:177 +#: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 #: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 msgid "Character set of the file:" msgstr "ชุดอักขระของไฟล์ (character set):" -#: libraries/display_export.lib.php:235 setup/lib/messages.inc.php:81 +#: libraries/display_export.lib.php:229 setup/lib/messages.inc.php:81 msgid "Compression" msgstr "บีบอัดข้อมูล" -#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:196 -#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:529 -#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:574 -#: server_privileges.php:1867 server_processlist.php:74 +#: libraries/display_export.lib.php:234 libraries/display_import.lib.php:196 +#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:528 +#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:573 +#: server_privileges.php:1871 server_processlist.php:74 msgid "None" msgstr "ไม่มี" -#: libraries/display_export.lib.php:247 +#: libraries/display_export.lib.php:241 msgid "\"zipped\"" msgstr "\"ถูกบีบอัดอยู่ (zip)\"" -#: libraries/display_export.lib.php:253 +#: libraries/display_export.lib.php:247 msgid "\"gzipped\"" msgstr "\"gzipped\"" -#: libraries/display_export.lib.php:259 +#: libraries/display_export.lib.php:253 msgid "\"bzipped\"" msgstr "\"bzipped\"" -#: libraries/display_export.lib.php:274 libraries/export/sql.php:42 +#: libraries/display_export.lib.php:268 libraries/export/sql.php:42 #: libraries/import/sql.php:31 msgid "SQL compatibility mode" msgstr "" @@ -2133,12 +2110,12 @@ msgid "File uploads are not allowed on this server." msgstr "" #: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 -#: tbl_change.php:1024 +#: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "ไม่สามารถใช้งาน ไดเรกทอรีที่ตั้งไว้สำหรับอัพโหลดได้" #: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 -#: tbl_change.php:1027 +#: tbl_change.php:925 msgid "web server upload directory" msgstr "ไดเรกทอรีสำหรับอัพโหลด ที่เว็บเซิร์ฟเวอร์" @@ -2217,43 +2194,43 @@ msgstr "ขนาดกระดาษ" msgid "Language" msgstr "" -#: libraries/display_tbl.lib.php:303 +#: libraries/display_tbl.lib.php:302 #, php-format msgid "%d is not valid row number." msgstr "" -#: libraries/display_tbl.lib.php:309 +#: libraries/display_tbl.lib.php:308 #, fuzzy #| msgid "row(s) starting from record #" msgid "row(s) starting from row #" msgstr "แถว เริ่มจากแถวที่" -#: libraries/display_tbl.lib.php:315 +#: libraries/display_tbl.lib.php:314 msgid "horizontal" msgstr "แนวนอน" -#: libraries/display_tbl.lib.php:316 +#: libraries/display_tbl.lib.php:315 msgid "horizontal (rotated headers)" msgstr "แนวนอน (หมุนหัวเรื่อง)" -#: libraries/display_tbl.lib.php:317 +#: libraries/display_tbl.lib.php:316 msgid "vertical" msgstr "แนวตั้ง" -#: libraries/display_tbl.lib.php:323 +#: libraries/display_tbl.lib.php:322 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "อยู่ใน %s และซ้ำหัวแถวทุกๆ %s เซลล์" -#: libraries/display_tbl.lib.php:345 +#: libraries/display_tbl.lib.php:344 msgid "This operation could take a long time. Proceed anyway?" msgstr "" -#: libraries/display_tbl.lib.php:511 +#: libraries/display_tbl.lib.php:510 msgid "Sort by key" msgstr "เรียงโดยคีย์" -#: libraries/display_tbl.lib.php:554 libraries/export/codegen.php:38 +#: libraries/display_tbl.lib.php:553 libraries/export/codegen.php:38 #: libraries/export/csv.php:29 libraries/export/excel.php:34 #: libraries/export/htmlword.php:28 libraries/export/latex.php:32 #: libraries/export/mediawiki.php:21 libraries/export/ods.php:26 @@ -2263,102 +2240,102 @@ msgstr "เรียงโดยคีย์" #: libraries/export/xlsx.php:26 libraries/export/xml.php:23 #: libraries/export/yaml.php:27 libraries/import.lib.php:1114 #: libraries/import.lib.php:1136 libraries/import/csv.php:31 -#: libraries/import/docsql.php:33 libraries/import/ldi.php:46 +#: libraries/import/docsql.php:32 libraries/import/ldi.php:46 #: libraries/import/ods.php:30 libraries/import/sql.php:19 #: libraries/import/xls.php:25 libraries/import/xlsx.php:25 -#: libraries/import/xml.php:25 tbl_select.php:264 tbl_structure.php:752 +#: libraries/import/xml.php:25 tbl_select.php:263 tbl_structure.php:750 #, fuzzy msgid "Options" msgstr "กระบวนการ" -#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:569 +#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:568 msgid "Partial Texts" msgstr "ข้อความบางส่วน" -#: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:573 +#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:572 msgid "Full Texts" msgstr "ทั้งข้อความ" -#: libraries/display_tbl.lib.php:586 +#: libraries/display_tbl.lib.php:585 #, fuzzy msgid "Relational key" msgstr "รีเลชันแนล สกีมา" -#: libraries/display_tbl.lib.php:587 +#: libraries/display_tbl.lib.php:586 #, fuzzy #| msgid "Relational schema" msgid "Relational display column" msgstr "รีเลชันแนล สกีมา" -#: libraries/display_tbl.lib.php:594 +#: libraries/display_tbl.lib.php:593 msgid "Show binary contents" msgstr "" -#: libraries/display_tbl.lib.php:596 +#: libraries/display_tbl.lib.php:595 msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:598 +#: libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "" -#: libraries/display_tbl.lib.php:606 pmd_general.php:140 tbl_change.php:312 -#: tbl_change.php:318 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:307 +#: tbl_change.php:313 msgid "Hide" msgstr "" -#: libraries/display_tbl.lib.php:606 libraries/relation.lib.php:122 -#: libraries/tbl_properties.inc.php:143 transformation_overview.php:46 +#: libraries/display_tbl.lib.php:605 libraries/relation.lib.php:117 +#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46 #, fuzzy msgid "Browser transformation" msgstr "การแปลงที่เรียกใช้ได้" -#: libraries/display_tbl.lib.php:1125 libraries/display_tbl.lib.php:1129 -#: libraries/display_tbl.lib.php:1131 +#: libraries/display_tbl.lib.php:1124 libraries/display_tbl.lib.php:1128 +#: libraries/display_tbl.lib.php:1130 msgid "Execute bookmarked query" msgstr "" -#: libraries/display_tbl.lib.php:1144 libraries/display_tbl.lib.php:1156 +#: libraries/display_tbl.lib.php:1143 libraries/display_tbl.lib.php:1155 msgid "The row has been deleted" msgstr "ลบเรียบร้อยแล้ว" -#: libraries/display_tbl.lib.php:1183 libraries/display_tbl.lib.php:2055 +#: libraries/display_tbl.lib.php:1182 libraries/display_tbl.lib.php:2014 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "ฆ่าทิ้ง" -#: libraries/display_tbl.lib.php:1933 +#: libraries/display_tbl.lib.php:1892 msgid "in query" msgstr "ในคำค้น" -#: libraries/display_tbl.lib.php:1951 +#: libraries/display_tbl.lib.php:1910 msgid "Showing rows" msgstr "แสดงระเบียนที่ " -#: libraries/display_tbl.lib.php:1961 +#: libraries/display_tbl.lib.php:1920 msgid "total" msgstr "ทั้งหมด" -#: libraries/display_tbl.lib.php:1969 sql.php:523 +#: libraries/display_tbl.lib.php:1928 sql.php:522 #, php-format msgid "Query took %01.4f sec" msgstr "คำค้นใช้เวลา %01.4f วินาที" -#: libraries/display_tbl.lib.php:2088 libraries/mult_submits.inc.php:112 -#: querywindow.php:115 querywindow.php:119 querywindow.php:122 -#: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:469 +#: libraries/display_tbl.lib.php:2047 libraries/mult_submits.inc.php:112 +#: querywindow.php:114 querywindow.php:118 querywindow.php:121 +#: tbl_structure.php:23 tbl_structure.php:148 tbl_structure.php:467 msgid "Change" msgstr "เปลี่ยน" -#: libraries/display_tbl.lib.php:2158 +#: libraries/display_tbl.lib.php:2117 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2186 +#: libraries/display_tbl.lib.php:2145 msgid "Print view (with full texts)" msgstr "" -#: libraries/display_tbl.lib.php:2359 +#: libraries/display_tbl.lib.php:2318 msgid "Link not found" msgstr "ไม่พบลิงก์" @@ -2412,9 +2389,9 @@ msgstr "สถานะของ InnoDB" msgid "Buffer Pool Usage" msgstr "" -#: libraries/engines/innodb.lib.php:168 server_databases.php:136 -#: server_databases.php:304 server_status.php:524 server_status.php:585 -#: server_status.php:606 tbl_printview.php:349 tbl_structure.php:695 +#: libraries/engines/innodb.lib.php:168 server_databases.php:134 +#: server_databases.php:302 server_status.php:524 server_status.php:585 +#: server_status.php:606 tbl_printview.php:348 tbl_structure.php:693 msgid "Total" msgstr "รวม" @@ -2537,6 +2514,78 @@ msgid "" "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." msgstr "" +#: libraries/engines/pbms.lib.php:31 +msgid "Garbage Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:32 +msgid "The percentage of garbage in a repository file before it is compacted." +msgstr "" + +#: libraries/engines/pbms.lib.php:36 libraries/replication_gui.lib.php:69 +#: server_synchronize.php:1161 +#, fuzzy +msgid "Port" +msgstr "เรียง" + +#: libraries/engines/pbms.lib.php:37 +msgid "" +"The port for the PBMS stream-based communications. Setting this value to 0 " +"will disable HTTP communication with the daemon." +msgstr "" + +#: libraries/engines/pbms.lib.php:41 +msgid "Repository Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:42 +msgid "" +"The maximum size of a BLOB repository file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:46 +msgid "Temp Blob Timeout" +msgstr "" + +#: libraries/engines/pbms.lib.php:47 +msgid "" +"The timeout, in seconds, for temporary BLOBs. Uploaded BLOB data is removed " +"after this time, unless they are referenced by a record in the database." +msgstr "" + +#: libraries/engines/pbms.lib.php:51 +msgid "Temp Log Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:52 +msgid "" +"The maximum size of a temporary BLOB log file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:56 +msgid "Max Keep Alive" +msgstr "" + +#: libraries/engines/pbms.lib.php:57 +msgid "" +"The timeout for inactive connection with the keep-alive flag set. After this " +"time the connection will be closed. The time-out is in milliseconds (1/1000)." +msgstr "" + +#: libraries/engines/pbms.lib.php:61 +msgid "Metadata Headers" +msgstr "" + +#: libraries/engines/pbms.lib.php:62 +msgid "" +"A \":\" delimited list of metadata headers to be used to initialize the " +"pbms_metadata_header table when a database is created." +msgstr "" + #: libraries/engines/pbxt.lib.php:22 msgid "Index cache size" msgstr "" @@ -2660,7 +2709,7 @@ msgid "" msgstr "" #: libraries/export/codegen.php:36 setup/lib/messages.inc.php:85 -#: tbl_printview.php:374 tbl_structure.php:736 +#: tbl_printview.php:373 tbl_structure.php:734 msgid "Format" msgstr "รูปแบบ" @@ -2731,9 +2780,9 @@ msgstr "" #: libraries/export/htmlword.php:23 libraries/export/latex.php:59 #: libraries/export/latex.php:205 libraries/export/odt.php:47 #: libraries/export/sql.php:105 libraries/export/sql.php:865 -#: libraries/export/texytext.php:27 server_databases.php:126 -#: server_privileges.php:576 server_replication.php:315 tbl_printview.php:315 -#: tbl_structure.php:664 +#: libraries/export/texytext.php:27 server_databases.php:124 +#: server_privileges.php:575 server_replication.php:314 tbl_printview.php:314 +#: tbl_structure.php:662 msgid "Data" msgstr "ข้อมูล" @@ -2782,13 +2831,13 @@ msgid "Label key" msgstr "" #: libraries/export/latex.php:46 libraries/export/odt.php:34 -#: libraries/export/sql.php:90 tbl_relation.php:398 +#: libraries/export/sql.php:90 tbl_relation.php:396 msgid "Relations" msgstr "รีเลชัน" #: libraries/export/latex.php:52 libraries/export/odt.php:40 #: libraries/export/odt.php:317 libraries/export/sql.php:94 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "MIME-type" @@ -2796,10 +2845,10 @@ msgstr "MIME-type" #: libraries/export/xml.php:101 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1529 server_privileges.php:2061 -#: server_processlist.php:54 server_synchronize.php:1158 +#: libraries/replication_gui.lib.php:331 server_privileges.php:730 +#: server_privileges.php:733 server_privileges.php:789 +#: server_privileges.php:1533 server_privileges.php:2065 +#: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "โฮสต์" @@ -2992,8 +3041,8 @@ msgstr "" msgid "Export contents" msgstr "" -#: libraries/footer.inc.php:182 libraries/footer.inc.php:193 -#: libraries/footer.inc.php:196 +#: libraries/footer.inc.php:180 libraries/footer.inc.php:191 +#: libraries/footer.inc.php:194 msgid "Open new phpMyAdmin window" msgstr "" @@ -3010,7 +3059,7 @@ msgstr "ผลลัพธ์ SQL" msgid "Generated by" msgstr "สร้างโดย" -#: libraries/import.lib.php:151 sql.php:519 tbl_change.php:180 +#: libraries/import.lib.php:151 sql.php:518 tbl_change.php:175 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL คืนผลลัพธ์ว่างเปล่ากลับมา (null / 0 แถว)." @@ -3068,7 +3117,7 @@ msgstr "" msgid "Column names in first row" msgstr "" -#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:501 +#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:500 #: view_create.php:147 msgid "Column names" msgstr "ชื่อคอลัมน์" @@ -3094,12 +3143,12 @@ msgstr "" msgid "Invalid column count in CSV input on line %d." msgstr "" -#: libraries/import/docsql.php:28 +#: libraries/import/docsql.php:27 msgid "DocSQL" msgstr "" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 -#: server_synchronize.php:427 server_synchronize.php:870 +#: libraries/import/docsql.php:30 libraries/tbl_properties.inc.php:616 +#: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "" @@ -3155,26 +3204,26 @@ msgstr "ไม่มี" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:512 -#: tbl_structure.php:28 tbl_structure.php:152 tbl_structure.php:156 -#: tbl_structure.php:472 +#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:511 +#: tbl_structure.php:27 tbl_structure.php:151 tbl_structure.php:155 +#: tbl_structure.php:470 msgid "Primary" msgstr "ไพรมารี" #: libraries/mult_submits.inc.php:97 libraries/tbl_properties.inc.php:115 -#: libraries/tbl_properties.inc.php:524 tbl_printview.php:324 -#: tbl_structure.php:30 tbl_structure.php:153 tbl_structure.php:157 -#: tbl_structure.php:474 tbl_structure.php:672 +#: libraries/tbl_properties.inc.php:523 tbl_printview.php:323 +#: tbl_structure.php:29 tbl_structure.php:152 tbl_structure.php:156 +#: tbl_structure.php:472 tbl_structure.php:670 msgid "Index" msgstr "ดัชนี" -#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:530 -#: tbl_structure.php:34 tbl_structure.php:155 tbl_structure.php:159 -#: tbl_structure.php:477 +#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:529 +#: tbl_structure.php:33 tbl_structure.php:154 tbl_structure.php:158 +#: tbl_structure.php:475 msgid "Fulltext" msgstr "ข้อความเต็ม (fulltext)" -#: libraries/mult_submits.inc.php:434 tbl_replace.php:330 +#: libraries/mult_submits.inc.php:433 tbl_replace.php:330 msgid "No change" msgstr "ไม่มีการเปลี่ยนแปลง" @@ -3182,191 +3231,191 @@ msgstr "ไม่มีการเปลี่ยนแปลง" msgid "Charset" msgstr "ชุดตัวอักษร" -#: libraries/mysql_charsets.lib.php:210 libraries/mysql_charsets.lib.php:411 -#: tbl_change.php:515 +#: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 +#: tbl_change.php:510 msgid "Binary" msgstr " ข้อมูลไบนารี " -#: libraries/mysql_charsets.lib.php:222 +#: libraries/mysql_charsets.lib.php:214 msgid "Bulgarian" msgstr "บัลเกเรีย" -#: libraries/mysql_charsets.lib.php:226 libraries/mysql_charsets.lib.php:351 +#: libraries/mysql_charsets.lib.php:218 libraries/mysql_charsets.lib.php:343 msgid "Simplified Chinese" msgstr "จีน (แผ่นดินใหญ่)" -#: libraries/mysql_charsets.lib.php:228 libraries/mysql_charsets.lib.php:371 +#: libraries/mysql_charsets.lib.php:220 libraries/mysql_charsets.lib.php:363 msgid "Traditional Chinese" msgstr "จีน (ไต้หวัน)" -#: libraries/mysql_charsets.lib.php:232 libraries/mysql_charsets.lib.php:418 +#: libraries/mysql_charsets.lib.php:224 libraries/mysql_charsets.lib.php:410 msgid "case-insensitive" msgstr "ไม่สนใจตัวเล็กตัวใหญ่" -#: libraries/mysql_charsets.lib.php:235 libraries/mysql_charsets.lib.php:420 +#: libraries/mysql_charsets.lib.php:227 libraries/mysql_charsets.lib.php:412 msgid "case-sensitive" msgstr "สนใจตัวเล็กตัวใหญ่" -#: libraries/mysql_charsets.lib.php:238 +#: libraries/mysql_charsets.lib.php:230 msgid "Croatian" msgstr "โครเอเชีย" -#: libraries/mysql_charsets.lib.php:241 +#: libraries/mysql_charsets.lib.php:233 msgid "Czech" msgstr "เช็ค" -#: libraries/mysql_charsets.lib.php:244 +#: libraries/mysql_charsets.lib.php:236 msgid "Danish" msgstr "เดนมาร์ก" -#: libraries/mysql_charsets.lib.php:247 +#: libraries/mysql_charsets.lib.php:239 msgid "English" msgstr "อังกฤษ" -#: libraries/mysql_charsets.lib.php:250 +#: libraries/mysql_charsets.lib.php:242 msgid "Esperanto" msgstr "" -#: libraries/mysql_charsets.lib.php:253 +#: libraries/mysql_charsets.lib.php:245 msgid "Estonian" msgstr "เอสโตเนีย" -#: libraries/mysql_charsets.lib.php:256 libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:248 libraries/mysql_charsets.lib.php:251 msgid "German" msgstr "เยอรมัน" -#: libraries/mysql_charsets.lib.php:256 +#: libraries/mysql_charsets.lib.php:248 msgid "dictionary" msgstr "พจนานุกรม" -#: libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:251 msgid "phone book" msgstr "สมุดโทรศัพท์" -#: libraries/mysql_charsets.lib.php:262 +#: libraries/mysql_charsets.lib.php:254 msgid "Hungarian" msgstr "ฮังการี" -#: libraries/mysql_charsets.lib.php:265 +#: libraries/mysql_charsets.lib.php:257 msgid "Icelandic" msgstr "ไอซ์แลนด์" -#: libraries/mysql_charsets.lib.php:268 libraries/mysql_charsets.lib.php:358 +#: libraries/mysql_charsets.lib.php:260 libraries/mysql_charsets.lib.php:350 msgid "Japanese" msgstr "ญี่ปุ่น" -#: libraries/mysql_charsets.lib.php:271 +#: libraries/mysql_charsets.lib.php:263 msgid "Latvian" msgstr "ลัตเวีย" -#: libraries/mysql_charsets.lib.php:274 +#: libraries/mysql_charsets.lib.php:266 msgid "Lithuanian" msgstr "ลิธัวเนีย" -#: libraries/mysql_charsets.lib.php:277 libraries/mysql_charsets.lib.php:380 +#: libraries/mysql_charsets.lib.php:269 libraries/mysql_charsets.lib.php:372 msgid "Korean" msgstr "เกาหลี" -#: libraries/mysql_charsets.lib.php:280 +#: libraries/mysql_charsets.lib.php:272 #, fuzzy msgid "Persian" msgstr "จอร์เจีย" -#: libraries/mysql_charsets.lib.php:283 +#: libraries/mysql_charsets.lib.php:275 msgid "Polish" msgstr "โปแลนด์" -#: libraries/mysql_charsets.lib.php:286 libraries/mysql_charsets.lib.php:334 +#: libraries/mysql_charsets.lib.php:278 libraries/mysql_charsets.lib.php:326 msgid "West European" msgstr "ยุโรปตะวันตก" -#: libraries/mysql_charsets.lib.php:289 +#: libraries/mysql_charsets.lib.php:281 msgid "Romanian" msgstr "โรมาเนีย" -#: libraries/mysql_charsets.lib.php:292 +#: libraries/mysql_charsets.lib.php:284 msgid "Slovak" msgstr "สโลวัก" -#: libraries/mysql_charsets.lib.php:295 +#: libraries/mysql_charsets.lib.php:287 msgid "Slovenian" msgstr "สโลเวเนีย" -#: libraries/mysql_charsets.lib.php:298 +#: libraries/mysql_charsets.lib.php:290 msgid "Spanish" msgstr "สเปน" -#: libraries/mysql_charsets.lib.php:301 +#: libraries/mysql_charsets.lib.php:293 msgid "Traditional Spanish" msgstr "สเปน (ดั้งเดิม)" -#: libraries/mysql_charsets.lib.php:304 libraries/mysql_charsets.lib.php:401 +#: libraries/mysql_charsets.lib.php:296 libraries/mysql_charsets.lib.php:393 msgid "Swedish" msgstr "สวีเดน" -#: libraries/mysql_charsets.lib.php:307 libraries/mysql_charsets.lib.php:404 +#: libraries/mysql_charsets.lib.php:299 libraries/mysql_charsets.lib.php:396 msgid "Thai" msgstr "ไทย" -#: libraries/mysql_charsets.lib.php:310 libraries/mysql_charsets.lib.php:398 +#: libraries/mysql_charsets.lib.php:302 libraries/mysql_charsets.lib.php:390 msgid "Turkish" msgstr "ตุรกี" -#: libraries/mysql_charsets.lib.php:313 libraries/mysql_charsets.lib.php:395 +#: libraries/mysql_charsets.lib.php:305 libraries/mysql_charsets.lib.php:387 msgid "Ukrainian" msgstr "ยูเครน" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 msgid "Unicode" msgstr "ยูนิโค้ด" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 -#: libraries/mysql_charsets.lib.php:334 libraries/mysql_charsets.lib.php:341 -#: libraries/mysql_charsets.lib.php:363 libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 +#: libraries/mysql_charsets.lib.php:326 libraries/mysql_charsets.lib.php:333 +#: libraries/mysql_charsets.lib.php:355 libraries/mysql_charsets.lib.php:366 msgid "multilingual" msgstr "หลายภาษา" -#: libraries/mysql_charsets.lib.php:341 +#: libraries/mysql_charsets.lib.php:333 msgid "Central European" msgstr "ยุโรปกลาง" -#: libraries/mysql_charsets.lib.php:346 +#: libraries/mysql_charsets.lib.php:338 msgid "Russian" msgstr "รัสเซีย" -#: libraries/mysql_charsets.lib.php:363 +#: libraries/mysql_charsets.lib.php:355 msgid "Baltic" msgstr "บอลติก" -#: libraries/mysql_charsets.lib.php:368 +#: libraries/mysql_charsets.lib.php:360 msgid "Armenian" msgstr "อาร์เมเนีย" -#: libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:366 msgid "Cyrillic" msgstr "ซิริลิค" -#: libraries/mysql_charsets.lib.php:377 +#: libraries/mysql_charsets.lib.php:369 msgid "Arabic" msgstr "อารบิค" -#: libraries/mysql_charsets.lib.php:383 +#: libraries/mysql_charsets.lib.php:375 msgid "Hebrew" msgstr "ฮิบรู" -#: libraries/mysql_charsets.lib.php:386 +#: libraries/mysql_charsets.lib.php:378 msgid "Georgian" msgstr "จอร์เจีย" -#: libraries/mysql_charsets.lib.php:389 +#: libraries/mysql_charsets.lib.php:381 msgid "Greek" msgstr "กรีก" -#: libraries/mysql_charsets.lib.php:392 +#: libraries/mysql_charsets.lib.php:384 msgid "Czech-Slovak" msgstr "เช็ค-สโลวัก" -#: libraries/mysql_charsets.lib.php:407 libraries/mysql_charsets.lib.php:414 +#: libraries/mysql_charsets.lib.php:399 libraries/mysql_charsets.lib.php:406 msgid "unknown" msgstr "ไม่ระบุ" @@ -3392,69 +3441,69 @@ msgstr "หน้าต่างคำค้น" msgid "This format has no options" msgstr "รูปแบบนี้ไม่มีตัวเลือก" -#: libraries/relation.lib.php:82 +#: libraries/relation.lib.php:77 msgid "not OK" msgstr "ไม่ตกลง" -#: libraries/relation.lib.php:86 pmd_general.php:339 +#: libraries/relation.lib.php:81 pmd_general.php:339 msgid "OK" msgstr "ตกลง" -#: libraries/relation.lib.php:87 +#: libraries/relation.lib.php:82 msgid "Enabled" msgstr "เปิดใช้อยู่" -#: libraries/relation.lib.php:110 +#: libraries/relation.lib.php:105 msgid "Display Features" msgstr "ความสามารถด้านการแสดงผล" -#: libraries/relation.lib.php:116 +#: libraries/relation.lib.php:111 msgid "Creation of PDFs" msgstr "การสร้างเอกสาร PDF" -#: libraries/relation.lib.php:120 +#: libraries/relation.lib.php:115 msgid "Displaying Column Comments" msgstr "แสดงหมายเหตุของคอลัมน์" -#: libraries/relation.lib.php:125 +#: libraries/relation.lib.php:120 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "โปรดอ่านเอกสารเกี่ยวกับ วิธีการปรับปรุงตาราง Column_comments (เก็บหมายเหตุของคอลัมน์) " "ของคุณ" -#: libraries/relation.lib.php:130 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 msgid "Bookmarked SQL query" msgstr "คำค้นนี้ถูกจดไว้แล้ว" -#: libraries/relation.lib.php:134 querywindow.php:99 querywindow.php:207 +#: libraries/relation.lib.php:129 querywindow.php:98 querywindow.php:205 msgid "SQL history" msgstr "SQL-history" -#: libraries/relation.lib.php:146 +#: libraries/relation.lib.php:141 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:148 +#: libraries/relation.lib.php:143 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" -#: libraries/relation.lib.php:149 +#: libraries/relation.lib.php:144 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:150 +#: libraries/relation.lib.php:145 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:151 +#: libraries/relation.lib.php:146 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1158 +#: libraries/relation.lib.php:1153 msgid "no description" msgstr "ไม่มีรายละเอียด" @@ -3462,7 +3511,7 @@ msgstr "ไม่มีรายละเอียด" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:53 server_replication.php:346 +#: libraries/replication_gui.lib.php:53 server_replication.php:345 msgid "Change or reconfigure master server" msgstr "" @@ -3474,17 +3523,12 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:711 -#: server_privileges.php:714 server_privileges.php:721 -#: server_synchronize.php:1170 +#: libraries/replication_gui.lib.php:261 server_privileges.php:710 +#: server_privileges.php:713 server_privileges.php:720 +#: server_synchronize.php:1169 msgid "User name" msgstr "ชื่อผู้ใช้" -#: libraries/replication_gui.lib.php:69 server_synchronize.php:1162 -#, fuzzy -msgid "Port" -msgstr "เรียง" - #: libraries/replication_gui.lib.php:105 msgid "Master status" msgstr "" @@ -3499,8 +3543,8 @@ msgid "Variable" msgstr "ตัวแปร" #: libraries/replication_gui.lib.php:117 server_status.php:737 -#: tbl_change.php:322 tbl_printview.php:368 tbl_select.php:137 -#: tbl_structure.php:728 +#: tbl_change.php:317 tbl_printview.php:367 tbl_select.php:136 +#: tbl_structure.php:726 msgid "Value" msgstr "ค่า" @@ -3515,38 +3559,38 @@ msgid "" "this list." msgstr "" -#: libraries/replication_gui.lib.php:242 server_replication.php:193 +#: libraries/replication_gui.lib.php:242 server_replication.php:192 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:256 server_privileges.php:716 +#: libraries/replication_gui.lib.php:256 server_privileges.php:715 msgid "Any user" msgstr "ผู้ใช้ใดๆ" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1920 server_privileges.php:1950 +#: libraries/replication_gui.lib.php:348 server_privileges.php:716 +#: server_privileges.php:783 server_privileges.php:807 +#: server_privileges.php:1924 server_privileges.php:1954 msgid "Use text field" msgstr "ใช้ช่องใส่ข้อความ (text field)" -#: libraries/replication_gui.lib.php:304 server_privileges.php:764 +#: libraries/replication_gui.lib.php:304 server_privileges.php:763 msgid "Any host" msgstr "โฮสต์ใดๆ" -#: libraries/replication_gui.lib.php:308 server_privileges.php:768 +#: libraries/replication_gui.lib.php:308 server_privileges.php:767 msgid "Local" msgstr "โลคอล" -#: libraries/replication_gui.lib.php:314 server_privileges.php:773 +#: libraries/replication_gui.lib.php:314 server_privileges.php:772 msgid "This Host" msgstr "โฮสต์นี้" -#: libraries/replication_gui.lib.php:320 server_privileges.php:779 +#: libraries/replication_gui.lib.php:320 server_privileges.php:778 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:333 server_privileges.php:792 +#: libraries/replication_gui.lib.php:333 server_privileges.php:791 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3573,8 +3617,8 @@ msgstr "" msgid "Servers" msgstr "เซิร์ฟเวอร์" -#: libraries/server_links.inc.php:52 server_engines.php:111 -#: server_engines.php:115 server_status.php:414 test/theme.php:104 +#: libraries/server_links.inc.php:52 server_engines.php:125 +#: server_engines.php:129 server_status.php:414 test/theme.php:104 msgid "Variables" msgstr "ตัวแปร" @@ -3596,12 +3640,12 @@ msgstr " ข้อมูลไบนารี " msgid "Processes" msgstr "โพรเซส" -#: libraries/server_links.inc.php:91 server_synchronize.php:1091 -#: server_synchronize.php:1099 +#: libraries/server_links.inc.php:91 server_synchronize.php:1090 +#: server_synchronize.php:1098 msgid "Synchronize" msgstr "" -#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1109 +#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1108 #, fuzzy msgid "Source database" msgstr "ค้นหาในฐานข้อมูล" @@ -3620,7 +3664,7 @@ msgstr "" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1111 +#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1110 #, fuzzy msgid "Target database" msgstr "ค้นหาในฐานข้อมูล" @@ -3641,11 +3685,11 @@ msgstr "ประมวลผลคำค้นบนฐานข้อมูล msgid "Columns" msgstr "ชื่อคอลัมน์" -#: libraries/sql_query_form.lib.php:342 sql.php:664 sql.php:665 sql.php:682 +#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "จดคำค้นนี้ไว้" -#: libraries/sql_query_form.lib.php:349 sql.php:676 +#: libraries/sql_query_form.lib.php:349 sql.php:669 msgid "Let every user access this bookmark" msgstr "" @@ -3739,12 +3783,12 @@ msgstr "" "ไม่สามารถเริ่มตัวตรวจสอบ SQL ได้. กรุณาตรวจสอบว่า คุณได้ติดตั้ง php extensions ที่จำเป็น " "ดังที่อธิบายไว้ใน %sdocumentation%s เรียบร้อยแล้ว" -#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:139 -#: libraries/tbl_links.inc.php:140 +#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 +#: libraries/tbl_links.inc.php:139 msgid "Table seems to be empty!" msgstr "" -#: libraries/tbl_links.inc.php:148 +#: libraries/tbl_links.inc.php:147 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" @@ -3776,23 +3820,23 @@ msgid "" "escaping or quotes, using this format: a" msgstr "" -#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1263 -#: pdf_schema.php:1284 tbl_printview.php:142 tbl_structure.php:179 +#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1262 +#: pdf_schema.php:1283 tbl_printview.php:141 tbl_structure.php:178 msgid "Attributes" msgstr "แอตทริบิวต์" -#: libraries/tbl_properties.inc.php:136 +#: libraries/tbl_properties.inc.php:135 #, php-format msgid "" "For a list of available transformation options and their MIME type " "transformations, click on %stransformation descriptions%s" msgstr "" -#: libraries/tbl_properties.inc.php:144 +#: libraries/tbl_properties.inc.php:143 msgid "Transformation options" msgstr "ตัวเลือกการแปลง" -#: libraries/tbl_properties.inc.php:145 +#: libraries/tbl_properties.inc.php:144 #, fuzzy msgid "" "Please enter the values for transformation options using this format: 'a', " @@ -3804,46 +3848,46 @@ msgstr "" ">ถ้าต้องการใส่เครื่องหมาย backslash (\"\\\") หรือ อัญประกาศเดี่ยว (\"'\") " "เข้าไปในค่าเหล่านั้น ให้ใส่เครื่องหมาย แบ๊กแสลช นำหน้า (ตัวอย่าง: '\\\\xyz' or 'a\\'b')" -#: libraries/tbl_properties.inc.php:392 +#: libraries/tbl_properties.inc.php:391 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "ไม่มี" -#: libraries/tbl_properties.inc.php:393 +#: libraries/tbl_properties.inc.php:392 msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:579 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:578 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
                            Please ask the " "author what %s does." msgstr "ไม่ปรากฏรายละเอียดสำหรับการแปลงนี้.
                            กรุณาสอบถามผู้เขียนว่า, %s ทำอะไร." -#: libraries/tbl_properties.inc.php:725 server_engines.php:57 -#: tbl_operations.php:354 +#: libraries/tbl_properties.inc.php:724 server_engines.php:56 +#: tbl_operations.php:352 msgid "Storage Engine" msgstr "" -#: libraries/tbl_properties.inc.php:754 +#: libraries/tbl_properties.inc.php:753 msgid "PARTITION definition" msgstr "" -#: libraries/tbl_properties.inc.php:775 pdf_pages.php:502 +#: libraries/tbl_properties.inc.php:774 pdf_pages.php:501 #: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214 -#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1124 tbl_indexes.php:247 -#: tbl_relation.php:565 +#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1022 tbl_indexes.php:246 +#: tbl_relation.php:563 msgid "Save" msgstr "บันทึก" -#: libraries/tbl_properties.inc.php:779 tbl_structure.php:541 +#: libraries/tbl_properties.inc.php:778 tbl_structure.php:539 #, fuzzy, php-format msgid "Add %s column(s)" msgstr "เพิ่มฟิลด์ใหม่" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:535 +#: libraries/tbl_properties.inc.php:782 tbl_structure.php:533 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." @@ -3976,8 +4020,8 @@ msgstr "" msgid "Custom color" msgstr "" -#: main.php:162 pdf_pages.php:362 setup/lib/FormDisplay.tpl.php:216 -#: tbl_change.php:1173 +#: main.php:162 pdf_pages.php:361 setup/lib/FormDisplay.tpl.php:216 +#: tbl_change.php:1071 msgid "Reset" msgstr "เริ่มใหม่" @@ -3985,8 +4029,8 @@ msgstr "เริ่มใหม่" msgid "Protocol version" msgstr "" -#: main.php:188 server_privileges.php:1381 server_privileges.php:1528 -#: server_privileges.php:1642 server_privileges.php:2060 +#: main.php:188 server_privileges.php:1385 server_privileges.php:1532 +#: server_privileges.php:1646 server_privileges.php:2064 #: server_processlist.php:53 msgid "User" msgstr "ผู้ใช้" @@ -4064,21 +4108,29 @@ msgid "" "has been configured." msgstr "" -#: main.php:330 +#: main.php:314 +#, php-format +msgid "" +"The additional features for working with linked tables have been " +"deactivated. To find out why click %shere%s." +msgstr "" +"ความสามารถเพิ่มเติมสำหรับ linked Tables ได้ถูกระงับเอาไว้ ตามเหตุผลที่แจ้งไว้ใน %shere%s" + +#: main.php:329 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:345 +#: main.php:344 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: main.php:357 +#: main.php:356 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -4089,104 +4141,104 @@ msgstr "" msgid "Reload navigation frame" msgstr "" -#: navigation.php:204 server_databases.php:370 server_synchronize.php:1190 +#: navigation.php:203 server_databases.php:368 server_synchronize.php:1189 msgid "No databases" msgstr "ไม่มีฐานข้อมูล" -#: navigation.php:298 +#: navigation.php:297 msgid "Filter" msgstr "" -#: navigation.php:299 setup/frames/index.inc.php:218 +#: navigation.php:298 setup/frames/index.inc.php:218 #: setup/lib/messages.inc.php:41 #, fuzzy msgid "Clear" msgstr "ปฏิทิน" -#: navigation.php:330 navigation.php:331 +#: navigation.php:329 navigation.php:330 #, fuzzy msgctxt "short form" msgid "Create table" msgstr "เริ่มหน้าใหม่" -#: navigation.php:333 navigation.php:495 +#: navigation.php:332 navigation.php:494 msgid "Please select a database" msgstr "โปรดเลือกฐานข้อมูล" -#: pdf_pages.php:40 pdf_pages.php:46 pdf_pages.php:52 pdf_pages.php:57 +#: pdf_pages.php:39 pdf_pages.php:45 pdf_pages.php:51 pdf_pages.php:56 #, php-format msgid "%s table not found or not set in %s" msgstr "ไม่พบตาราง %s ใน %s" -#: pdf_pages.php:265 +#: pdf_pages.php:264 msgid "Please choose a page to edit" msgstr "เลือกหน้าที่ต้องการแก้ไข" -#: pdf_pages.php:303 pmd_pdf.php:113 +#: pdf_pages.php:302 pmd_pdf.php:111 msgid "Create a page" msgstr "เริ่มหน้าใหม่" -#: pdf_pages.php:309 +#: pdf_pages.php:308 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "หมายเลขหน้า:" -#: pdf_pages.php:313 +#: pdf_pages.php:312 #, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "จัดตำแหน่งอัตโนมัติ" -#: pdf_pages.php:315 +#: pdf_pages.php:314 msgid "Internal relations" msgstr "รีเลชันภายใน" -#: pdf_pages.php:338 +#: pdf_pages.php:337 msgid "Select Tables" msgstr "เลือกตาราง" -#: pdf_pages.php:361 +#: pdf_pages.php:360 msgid "Toggle scratchboard" msgstr "" -#: pdf_pages.php:524 +#: pdf_pages.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" msgstr "" -#: pdf_schema.php:635 +#: pdf_schema.php:634 #, fuzzy, php-format #| msgid "The \"%s\" table doesn't exist!" msgid "The %s table doesn't exist!" msgstr "ไม่มีตาราง \"%s\"!" -#: pdf_schema.php:671 +#: pdf_schema.php:670 #, php-format msgid "Please configure the coordinates for table %s" msgstr "กรุณาตั้งค่าโคออร์ดิเนตของตาราง %s" -#: pdf_schema.php:994 +#: pdf_schema.php:993 #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" msgstr "schema ของฐานข้อมูล \"%s\" - หน้า %s" -#: pdf_schema.php:1012 +#: pdf_schema.php:1011 msgid "No tables" msgstr "ไม่มีตาราง" -#: pdf_schema.php:1031 pdf_schema.php:1140 +#: pdf_schema.php:1030 pdf_schema.php:1139 msgid "Relational schema" msgstr "รีเลชันแนล สกีมา" -#: pdf_schema.php:1115 +#: pdf_schema.php:1114 msgid "Table of contents" msgstr "สารบัญ" -#: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:145 -#: tbl_structure.php:182 tbl_tracking.php:277 +#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 +#: tbl_structure.php:181 tbl_tracking.php:272 msgid "Extra" msgstr "เพิ่มเติม" @@ -4198,7 +4250,7 @@ msgstr "" msgid "Save position" msgstr "" -#: pmd_general.php:70 server_synchronize.php:428 server_synchronize.php:871 +#: pmd_general.php:70 server_synchronize.php:427 server_synchronize.php:870 #, fuzzy msgid "Create table" msgstr "เริ่มหน้าใหม่" @@ -4271,32 +4323,32 @@ msgid "" "appropriate column name." msgstr "" -#: pmd_pdf.php:62 +#: pmd_pdf.php:60 #, fuzzy msgid "Page has been created" msgstr "โยนตาราง %s ทิ้งไปเรียบร้อยแล้ว" -#: pmd_pdf.php:64 +#: pmd_pdf.php:62 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:84 +#: pmd_pdf.php:82 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:88 +#: pmd_pdf.php:86 msgid "recommended" msgstr "" -#: pmd_pdf.php:93 +#: pmd_pdf.php:91 msgid "to/from page" msgstr "" -#: querywindow.php:94 +#: querywindow.php:93 msgid "Import files" msgstr "นำเข้าไฟล์" -#: querywindow.php:105 +#: querywindow.php:104 msgid "All" msgstr "ทั้งหมด" @@ -4345,65 +4397,65 @@ msgstr "ข้อมูลล็อกอิน" msgid "Character Sets and Collations" msgstr "ชุดตัวอักษร และการเรียงลำดับ" -#: server_databases.php:51 +#: server_databases.php:49 msgid "No databases selected." msgstr "ยังไม่ได้เลือกฐานข้อมูล." -#: server_databases.php:62 +#: server_databases.php:60 #, php-format msgid "%s databases have been dropped successfully." msgstr "%s ฐานข้อมูลได้ถูกทิ้งไปเรียบร้อยแล้ว." -#: server_databases.php:87 +#: server_databases.php:85 msgid "Databases statistics" msgstr "สถิติฐานข้อมูล" -#: server_databases.php:116 server_status.php:370 +#: server_databases.php:114 server_status.php:370 #: setup/lib/messages.inc.php:114 msgid "Tables" msgstr "ตาราง" -#: server_databases.php:194 server_replication.php:180 -#: server_replication.php:208 +#: server_databases.php:192 server_replication.php:179 +#: server_replication.php:207 msgid "Master replication" msgstr "" -#: server_databases.php:196 server_replication.php:247 +#: server_databases.php:194 server_replication.php:246 msgid "Slave replication" msgstr "" -#: server_databases.php:229 +#: server_databases.php:227 #, fuzzy msgid "Jump to database" msgstr "ไม่มีฐานข้อมูล" -#: server_databases.php:266 +#: server_databases.php:264 msgid "Not replicated" msgstr "" -#: server_databases.php:272 +#: server_databases.php:270 #, fuzzy msgid "Replicated" msgstr "รีเลชัน" -#: server_databases.php:288 +#: server_databases.php:286 #, php-format msgid "Check privileges for database "%s"." msgstr "ตรวจสอบสิทธิสำหรับฐานข้อมูล "%s"." -#: server_databases.php:292 server_databases.php:293 +#: server_databases.php:290 server_databases.php:291 msgid "Check Privileges" msgstr "ตรวจสอบสิทธิ" -#: server_databases.php:357 server_databases.php:358 +#: server_databases.php:355 server_databases.php:356 msgid "Enable Statistics" msgstr "ให้มีการเก็บสถิติ" -#: server_databases.php:361 server_databases.php:362 +#: server_databases.php:359 server_databases.php:360 msgid "Disable Statistics" msgstr "ยกเลิกการเก็บสถิติ" -#: server_databases.php:365 +#: server_databases.php:363 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -4411,339 +4463,339 @@ msgstr "" "โปรดทราบ: การเปิดใช้การเก็บสถิติของฐานข้อมูล อาจจะทำให้มีปริมาณการถ่ายโอนข้อมูลจำนวนมาก " "ระหว่างเว็บเซิร์ฟเวอร์ และเซิร์ฟเวอร์ MySQL." -#: server_engines.php:48 +#: server_engines.php:47 msgid "Storage Engines" msgstr "" -#: server_export.php:20 +#: server_export.php:18 #, fuzzy msgid "View dump (schema) of databases" msgstr "ดูโครงสร้างของฐานข้อมูล" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:23 server_privileges.php:265 msgid "Includes all privileges except GRANT." msgstr "ให้สิทธิทุกอย่าง ยกเว้นการให้สิทธิแก่ผู้อื่น (GRANT)." -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:24 server_privileges.php:191 +#: server_privileges.php:514 msgid "Allows altering the structure of existing tables." msgstr "อนุญาตให้เปลี่ยนโครงสร้างของตารางที่มีอยู่เดิม." -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:25 server_privileges.php:207 +#: server_privileges.php:520 #, fuzzy msgid "Allows altering and dropping stored routines." msgstr "อนุญาตให้สร้าง และทิ้ง ดัชนี" -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:26 server_privileges.php:183 +#: server_privileges.php:513 msgid "Allows creating new databases and tables." msgstr "อนุญาตให้สร้างฐานข้อมูล และตารางใหม่." -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:27 server_privileges.php:206 +#: server_privileges.php:519 #, fuzzy msgid "Allows creating stored routines." msgstr "อนุญาตให้สร้างตารางใหม่." -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:513 msgid "Allows creating new tables." msgstr "อนุญาตให้สร้างตารางใหม่." -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:29 server_privileges.php:194 +#: server_privileges.php:517 msgid "Allows creating temporary tables." msgstr "อนุญาตให้สร้างตารางชั่วคราว." -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:30 server_privileges.php:208 +#: server_privileges.php:553 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: server_privileges.php:32 server_privileges.php:199 -#: server_privileges.php:203 server_privileges.php:526 -#: server_privileges.php:530 +#: server_privileges.php:31 server_privileges.php:198 +#: server_privileges.php:202 server_privileges.php:525 +#: server_privileges.php:529 #, fuzzy msgid "Allows creating new views." msgstr "อนุญาตให้สร้างตารางใหม่." -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:32 server_privileges.php:182 +#: server_privileges.php:505 msgid "Allows deleting data." msgstr "อนุญาตให้ลบข้อมูล" -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:33 server_privileges.php:184 +#: server_privileges.php:516 msgid "Allows dropping databases and tables." msgstr "อนุญาตให้ทิ้งฐานข้อมูล และตาราง" -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:34 server_privileges.php:516 msgid "Allows dropping tables." msgstr "อนุญาตให้ทิ้งตาราง" -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:35 server_privileges.php:199 +#: server_privileges.php:533 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:36 server_privileges.php:209 +#: server_privileges.php:521 msgid "Allows executing stored routines." msgstr "" -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:37 server_privileges.php:188 +#: server_privileges.php:508 msgid "Allows importing data from and exporting data into files." msgstr "อนุญาตให้นำเข้าข้อมูล และส่งออกข้อมูล ไปที่ไฟล์" -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:38 server_privileges.php:539 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "อนุญาตให้เพิ่มผู้ใช้ และสิทธิเข้าถึง โดยไม่ต้องเรียกใช้ตารางสิทธิใหม่" -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:515 msgid "Allows creating and dropping indexes." msgstr "อนุญาตให้สร้าง และทิ้ง ดัชนี" -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:40 server_privileges.php:180 +#: server_privileges.php:441 server_privileges.php:503 msgid "Allows inserting and replacing data." msgstr "อนุญาตให้เพิ่ม และแทนที่ ข้อมูล" -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:41 server_privileges.php:195 +#: server_privileges.php:548 msgid "Allows locking tables for the current thread." msgstr "อนุญาตให้ล็อกตารางสำหรับเธรดปัจจุบัน" -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:42 server_privileges.php:645 +#: server_privileges.php:647 msgid "Limits the number of new connections the user may open per hour." msgstr "จำกัดจำนวนการเชื่อมต่อใหม่ ที่ผู้ใช้จะสามารถเปิดได้ ต่อชั่วโมง" -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:43 server_privileges.php:633 +#: server_privileges.php:635 msgid "Limits the number of queries the user may send to the server per hour." msgstr "จำกัดจำนวนของคำค้น ที่ผู้ใช้จะสามารถส่งมาที่เซิร์ฟเวอร์ได้ ต่อชั่วโมง" -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:44 server_privileges.php:639 +#: server_privileges.php:641 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" "จำกัดจำนวนของคำสั่ง ที่จะเปลี่ยนแปลงตาราง หรือฐานข้อมูลใดๆ ที่ผู้ใช้จะสามารถสั่งได้ ต่อชั่วโมง" -#: server_privileges.php:46 server_privileges.php:652 -#: server_privileges.php:654 +#: server_privileges.php:45 server_privileges.php:651 +#: server_privileges.php:653 #, fuzzy msgid "Limits the number of simultaneous connections the user may have." msgstr "จำกัดจำนวนการเชื่อมต่อใหม่ ที่ผู้ใช้จะสามารถเปิดได้ ต่อชั่วโมง" -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:46 server_privileges.php:187 +#: server_privileges.php:543 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:47 server_privileges.php:189 +#: server_privileges.php:447 server_privileges.php:549 msgid "Has no effect in this MySQL version." msgstr "ไม่มีผลใน MySQL รุ่นนี้" -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:48 server_privileges.php:185 +#: server_privileges.php:544 msgid "Allows reloading server settings and flushing the server's caches." msgstr "อนุญาตให้เรียกใช้ค่ากำหนดของเซิร์ฟเวอร์ใหม่ และล้างแคชของเซิร์ฟเวอร์" -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:197 +#: server_privileges.php:551 msgid "Allows the user to ask where the slaves / masters are." msgstr "มอบสิทธิให้ผู้ใช้ ในการถามว่า slaves หรือ masters อยู่ที่ไหน." -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:50 server_privileges.php:196 +#: server_privileges.php:552 msgid "Needed for the replication slaves." msgstr "" -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:51 server_privileges.php:179 +#: server_privileges.php:438 server_privileges.php:502 msgid "Allows reading data." msgstr "อนุญาตให้อ่านข้อมูลได้." -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:52 server_privileges.php:192 +#: server_privileges.php:546 msgid "Gives access to the complete list of databases." msgstr "สามารถเรียกดูรายการฐานข้อมูลทั้งหมดได้" -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:53 server_privileges.php:203 +#: server_privileges.php:205 server_privileges.php:518 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:54 server_privileges.php:186 +#: server_privileges.php:545 msgid "Allows shutting down the server." msgstr "อนุญาตให้ปิดเซิร์ฟเวอร์ได้" -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:55 server_privileges.php:193 +#: server_privileges.php:542 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " "killing threads of other users." msgstr "" -#: server_privileges.php:57 server_privileges.php:201 -#: server_privileges.php:535 +#: server_privileges.php:56 server_privileges.php:200 +#: server_privileges.php:534 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "อนุญาตให้สร้าง และทิ้ง ดัชนี" -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:57 server_privileges.php:181 +#: server_privileges.php:444 server_privileges.php:504 msgid "Allows changing data." msgstr "อนุญาตให้เปลี่ยนข้อมูลได้." -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:58 server_privileges.php:259 msgid "No privileges." msgstr "ไม่มีสิทธิใดๆ." -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:301 server_privileges.php:302 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "ไม่มี" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1710 server_privileges.php:1716 +#: server_privileges.php:430 server_privileges.php:565 +#: server_privileges.php:1714 server_privileges.php:1720 msgid "Table-specific privileges" msgstr "สิทธิเจาะจงเฉพาะตาราง" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1532 +#: server_privileges.php:431 server_privileges.php:573 +#: server_privileges.php:1536 msgid " Note: MySQL privilege names are expressed in English " msgstr " โปรดทราบ: ชื่อของสิทธิใน MySQL จะแสดงเป็นภาษาอังกฤษ " -#: server_privileges.php:563 server_privileges.php:1531 +#: server_privileges.php:562 server_privileges.php:1535 msgid "Global privileges" msgstr "สิทธิแบบโกลบอล" -#: server_privileges.php:565 server_privileges.php:1710 +#: server_privileges.php:564 server_privileges.php:1714 msgid "Database-specific privileges" msgstr "สิทธิเจาะจงเฉพาะฐานข้อมูล" -#: server_privileges.php:610 +#: server_privileges.php:609 msgid "Administration" msgstr "การดูแลระบบ" -#: server_privileges.php:630 +#: server_privileges.php:629 msgid "Resource limits" msgstr "ขีดจำกัดของทรัพยากร" -#: server_privileges.php:631 +#: server_privileges.php:630 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "โปรดทราบ: ถ้าเปลี่ยนค่าเหล่านี้เป็น 0 (ศูนย์) จะหมายถึง ไม่มีขีดจำกัด." -#: server_privileges.php:708 +#: server_privileges.php:707 msgid "Login Information" msgstr "ข้อมูลล็อกอิน" -#: server_privileges.php:802 +#: server_privileges.php:801 msgid "Do not change the password" msgstr "กรุณาอย่าเปลี่ยนรหัสผ่าน" -#: server_privileges.php:835 server_privileges.php:2197 +#: server_privileges.php:834 server_privileges.php:2201 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "ไม่พบผู้ใช้ใดๆ." -#: server_privileges.php:879 +#: server_privileges.php:878 #, php-format msgid "The user %s already exists!" msgstr "มีผู้ใช้ %s อยู่แล้ว!" -#: server_privileges.php:962 +#: server_privileges.php:961 msgid "You have added a new user." msgstr "เพิ่มผู้ใช้ใหม่เรียบร้อยแล้ว" -#: server_privileges.php:1183 +#: server_privileges.php:1184 #, php-format msgid "You have updated the privileges for %s." msgstr "คุณได้ปรับปรุงสิทธิสำหรับ %s แล้ว" -#: server_privileges.php:1207 +#: server_privileges.php:1208 #, php-format msgid "You have revoked the privileges for %s" msgstr "คุณได้เพิกถอนสิทธิของ %s" -#: server_privileges.php:1243 +#: server_privileges.php:1244 #, php-format msgid "The password for %s was changed successfully." msgstr "เปลี่ยนรหัสผ่านของ %s เรียบร้อยแล้ว" -#: server_privileges.php:1263 +#: server_privileges.php:1264 #, php-format msgid "Deleting %s" msgstr "กำลังลบ %s" -#: server_privileges.php:1274 +#: server_privileges.php:1275 msgid "No users selected for deleting!" msgstr "" -#: server_privileges.php:1277 +#: server_privileges.php:1278 msgid "Reloading the privileges" msgstr "ปรับปรุงสิทธิเข้าถึงใหม่อีกรอบ" -#: server_privileges.php:1292 +#: server_privileges.php:1296 msgid "The selected users have been deleted successfully." msgstr "ลบผู้ใช้ที่เลือกไว้เรียบร้อยแล้ว." -#: server_privileges.php:1327 +#: server_privileges.php:1331 msgid "The privileges were reloaded successfully." msgstr "สิทธิได้ถูกเรียกใช้ใหม่เรียบร้อยแล้ว" -#: server_privileges.php:1355 server_privileges.php:1641 +#: server_privileges.php:1359 server_privileges.php:1645 msgid "Edit Privileges" msgstr "แก้ไขสิทธิ" -#: server_privileges.php:1364 +#: server_privileges.php:1368 msgid "Revoke" msgstr "เพิกถอน" -#: server_privileges.php:1396 +#: server_privileges.php:1400 msgid "User overview" msgstr "ข้อมูลทั่วไปของผู้ใช้" -#: server_privileges.php:1533 server_privileges.php:1715 -#: server_privileges.php:2064 +#: server_privileges.php:1537 server_privileges.php:1719 +#: server_privileges.php:2068 msgid "Grant" msgstr "มอบสิทธิ" -#: server_privileges.php:1552 server_privileges.php:2154 +#: server_privileges.php:1556 server_privileges.php:2158 msgid "Any" msgstr "ใดๆ" -#: server_privileges.php:1601 server_privileges.php:1625 -#: server_privileges.php:2019 server_privileges.php:2208 +#: server_privileges.php:1605 server_privileges.php:1629 +#: server_privileges.php:2023 server_privileges.php:2212 msgid "Add a new User" msgstr "เพิ่มผู้ใช้ใหม่" -#: server_privileges.php:1606 +#: server_privileges.php:1610 msgid "Remove selected users" msgstr "ถอนผู้ใช้ที่เลือก" -#: server_privileges.php:1609 +#: server_privileges.php:1613 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "เพิกถอน active privileges ทั้งหมดจากผู้ใช้ และลบผู้ใช้ทิ้งหลังจากนั้น." -#: server_privileges.php:1610 server_privileges.php:1611 -#: server_privileges.php:1612 +#: server_privileges.php:1614 server_privileges.php:1615 +#: server_privileges.php:1616 msgid "Drop the databases that have the same names as the users." msgstr "โยนฐานข้อมูลที่มีชื่อเดียวกับผู้ใช้ทิ้ง." -#: server_privileges.php:1628 +#: server_privileges.php:1632 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4752,91 +4804,91 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: server_privileges.php:1676 +#: server_privileges.php:1680 msgid "The selected user was not found in the privilege table." msgstr "ไม่พบผู้ใช้ที่เลือกในตารางแสดงสิทธิ" -#: server_privileges.php:1716 +#: server_privileges.php:1720 msgid "Column-specific privileges" msgstr "สิทธิเฉพาะคอลัมน์" -#: server_privileges.php:1917 +#: server_privileges.php:1921 msgid "Add privileges on the following database" msgstr "เพิ่มสิทธิของฐานข้อมูลต่อไปนี้" -#: server_privileges.php:1935 +#: server_privileges.php:1939 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:1938 +#: server_privileges.php:1942 msgid "Add privileges on the following table" msgstr "เพิ่มสิทธิของตารางต่อไปนี้" -#: server_privileges.php:1995 +#: server_privileges.php:1999 msgid "Change Login Information / Copy User" msgstr "เปลี่ยนข้อมูลล็อกอิน / ทำสำเนาผู้ใช้" -#: server_privileges.php:1998 +#: server_privileges.php:2002 msgid "Create a new user with the same privileges and ..." msgstr "สร้างผู้ใช้ใหม่ ให้มีสิทธิเหมือนกัน และ ..." -#: server_privileges.php:2000 +#: server_privileges.php:2004 msgid "... keep the old one." msgstr "... เก็บของเก่าไว้." -#: server_privileges.php:2001 +#: server_privileges.php:2005 msgid " ... delete the old one from the user tables." msgstr " ... ลบของเก่าทิ้งไปจากตารางผู้ใช้." -#: server_privileges.php:2002 +#: server_privileges.php:2006 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr " ... เรียกคืนสิทธิ์ทั้งหมดจากเดิม แล้วลบมันหลังจากนั้น." -#: server_privileges.php:2003 +#: server_privileges.php:2007 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr " ... ลบของเก่าจากตารางผู้ใช้ แล้วเรียกใช้รายการสิทธิ์ใหม่หลังจากนั้น." -#: server_privileges.php:2025 +#: server_privileges.php:2029 msgid "Database for user" msgstr "" -#: server_privileges.php:2029 +#: server_privileges.php:2033 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "ไม่มี" -#: server_privileges.php:2030 +#: server_privileges.php:2034 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2031 +#: server_privileges.php:2035 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2034 +#: server_privileges.php:2038 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "ตรวจสอบสิทธิสำหรับฐานข้อมูล "%s"." -#: server_privileges.php:2057 +#: server_privileges.php:2061 #, php-format msgid "Users having access to "%s"" msgstr "ผู้ใช้มีสิทธิเข้าถึงฐานข้อมูล "%s"" -#: server_privileges.php:2165 +#: server_privileges.php:2169 msgid "global" msgstr "โกลบอล" -#: server_privileges.php:2167 +#: server_privileges.php:2171 msgid "database-specific" msgstr "เฉพาะฐานข้อมูล" -#: server_privileges.php:2169 +#: server_privileges.php:2173 msgid "wildcard" msgstr "ไวล์การ์ด" @@ -4855,53 +4907,53 @@ msgstr "phpMyAdmin ไม่สามารถฆ่าเธรด %s. บา msgid "ID" msgstr "ID" -#: server_replication.php:50 +#: server_replication.php:49 msgid "Unknown error" msgstr "" -#: server_replication.php:57 +#: server_replication.php:56 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:64 +#: server_replication.php:63 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:70 +#: server_replication.php:69 msgid "Unable to change master" msgstr "" -#: server_replication.php:73 +#: server_replication.php:72 #, php-format msgid "Master server changed succesfully to %s" msgstr "" -#: server_replication.php:181 +#: server_replication.php:180 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:183 server_status.php:391 +#: server_replication.php:182 server_status.php:391 msgid "Show master status" msgstr "" -#: server_replication.php:186 +#: server_replication.php:185 msgid "Show connected slaves" msgstr "" -#: server_replication.php:209 +#: server_replication.php:208 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:216 +#: server_replication.php:215 msgid "Master configuration" msgstr "" -#: server_replication.php:217 +#: server_replication.php:216 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -4910,110 +4962,110 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:220 +#: server_replication.php:219 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:221 +#: server_replication.php:220 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:224 +#: server_replication.php:223 #, fuzzy msgid "Please select databases:" msgstr "โปรดเลือกฐานข้อมูล" -#: server_replication.php:227 +#: server_replication.php:226 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: server_replication.php:229 +#: server_replication.php:228 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: server_replication.php:292 +#: server_replication.php:291 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:295 +#: server_replication.php:294 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:304 +#: server_replication.php:303 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:307 +#: server_replication.php:306 msgid "See slave status table" msgstr "" -#: server_replication.php:310 +#: server_replication.php:309 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:321 +#: server_replication.php:320 msgid "Control slave:" msgstr "" -#: server_replication.php:324 +#: server_replication.php:323 #, fuzzy msgid "Full start" msgstr "ข้อความเต็ม (fulltext)" -#: server_replication.php:324 +#: server_replication.php:323 msgid "Full stop" msgstr "" -#: server_replication.php:325 +#: server_replication.php:324 msgid "Reset slave" msgstr "" -#: server_replication.php:326 +#: server_replication.php:325 #, php-format msgid "SQL Thread %s only" msgstr "" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 #, fuzzy msgid "Start" msgstr "ส." -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 msgid "Stop" msgstr "" -#: server_replication.php:327 +#: server_replication.php:326 #, php-format msgid "IO Thread %s only" msgstr "" -#: server_replication.php:331 +#: server_replication.php:330 msgid "Error management:" msgstr "" -#: server_replication.php:333 +#: server_replication.php:332 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:335 +#: server_replication.php:334 msgid "Skip current error" msgstr "" -#: server_replication.php:336 +#: server_replication.php:335 msgid "Skip next" msgstr "" -#: server_replication.php:339 +#: server_replication.php:338 msgid "errors." msgstr "" -#: server_replication.php:354 +#: server_replication.php:353 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -5721,112 +5773,112 @@ msgstr "ชนิดคำค้น" msgid "Replication status" msgstr "" -#: server_synchronize.php:93 +#: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:96 +#: server_synchronize.php:95 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:121 server_synchronize.php:124 tbl_create.php:77 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:264 +#: server_synchronize.php:263 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:271 +#: server_synchronize.php:270 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:399 server_synchronize.php:838 +#: server_synchronize.php:398 server_synchronize.php:837 msgid "not present" msgstr "" -#: server_synchronize.php:423 server_synchronize.php:866 +#: server_synchronize.php:422 server_synchronize.php:865 msgid "Structure Difference" msgstr "" -#: server_synchronize.php:424 server_synchronize.php:867 +#: server_synchronize.php:423 server_synchronize.php:866 msgid "Data Difference" msgstr "" -#: server_synchronize.php:429 server_synchronize.php:872 +#: server_synchronize.php:428 server_synchronize.php:871 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:430 server_synchronize.php:873 +#: server_synchronize.php:429 server_synchronize.php:872 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:431 server_synchronize.php:874 +#: server_synchronize.php:430 server_synchronize.php:873 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:432 server_synchronize.php:875 +#: server_synchronize.php:431 server_synchronize.php:874 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:433 server_synchronize.php:876 +#: server_synchronize.php:432 server_synchronize.php:875 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:434 server_synchronize.php:877 +#: server_synchronize.php:433 server_synchronize.php:876 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:435 server_synchronize.php:878 +#: server_synchronize.php:434 server_synchronize.php:877 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:445 server_synchronize.php:889 +#: server_synchronize.php:444 server_synchronize.php:888 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:448 server_synchronize.php:893 +#: server_synchronize.php:447 server_synchronize.php:892 msgid "Apply Selected Changes" msgstr "" -#: server_synchronize.php:450 server_synchronize.php:895 +#: server_synchronize.php:449 server_synchronize.php:894 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:463 +#: server_synchronize.php:462 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:941 +#: server_synchronize.php:940 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:1002 +#: server_synchronize.php:1001 msgid "The following queries have been executed:" msgstr "" -#: server_synchronize.php:1121 +#: server_synchronize.php:1120 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1122 +#: server_synchronize.php:1121 #, fuzzy #| msgid "Connections" msgid "Current connection" msgstr "การเชื่อมต่อ" -#: server_synchronize.php:1151 +#: server_synchronize.php:1150 #, php-format msgid "Configuration: %s" msgstr "" -#: server_synchronize.php:1166 +#: server_synchronize.php:1165 msgid "Socket" msgstr "" -#: server_synchronize.php:1212 +#: server_synchronize.php:1211 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -6383,8 +6435,8 @@ msgstr "" #: setup/lib/messages.inc.php:128 msgid "" "Configure phpMyAdmin database to gain access to additional features, see " -"[a@../Documentation.html#linked-tables]linked-tables infrastructure[/a] in " -"documentation" +"[a@../Documentation.html#linked-tables]phpMyAdmin configuration storage[/a] " +"in documentation" msgstr "" #: setup/lib/messages.inc.php:129 setup/lib/messages.inc.php:290 @@ -7442,115 +7494,115 @@ msgstr "" msgid "ZIP" msgstr "" -#: sql.php:495 tbl_replace.php:385 +#: sql.php:494 tbl_replace.php:384 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: sql.php:512 +#: sql.php:511 msgid "Showing as PHP code" msgstr "" -#: sql.php:515 tbl_replace.php:359 +#: sql.php:514 tbl_replace.php:358 msgid "Showing SQL query" msgstr "" -#: sql.php:517 +#: sql.php:516 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "ตรวจสอบ SQL" -#: sql.php:638 +#: sql.php:631 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:670 +#: sql.php:663 msgid "Label" msgstr "ป้ายชื่อ" -#: tbl_addfield.php:188 tbl_alter.php:102 tbl_indexes.php:97 +#: tbl_addfield.php:185 tbl_alter.php:100 tbl_indexes.php:97 #, fuzzy, php-format msgid "Table %1$s has been altered successfully" msgstr "ลบผู้ใช้ที่เลือกไว้เรียบร้อยแล้ว." -#: tbl_change.php:250 tbl_select.php:26 tbl_select.php:27 tbl_select.php:30 -#: tbl_select.php:33 +#: tbl_change.php:245 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_select.php:32 msgid "Browse foreign values" msgstr "" -#: tbl_change.php:280 tbl_change.php:318 +#: tbl_change.php:275 tbl_change.php:313 msgid "Function" msgstr "ฟังก์ชั่น" -#: tbl_change.php:300 tbl_indexes.php:199 tbl_indexes.php:224 +#: tbl_change.php:295 tbl_indexes.php:198 tbl_indexes.php:223 msgid "Ignore" msgstr "ไม่สนใจ" -#: tbl_change.php:725 +#: tbl_change.php:720 #, fuzzy #| msgid " Because of its length,
                            this field might not be editable " msgid " Because of its length,
                            this column might not be editable " msgstr "เนื่องจากความยาวของมัน
                            ฟิลด์นี้ ไม่อาจแก้ไขได้" -#: tbl_change.php:884 +#: tbl_change.php:835 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:890 +#: tbl_change.php:841 msgid "Binary - do not edit" msgstr " ข้อมูลไบนารี - ห้ามแก้ไข " -#: tbl_change.php:983 +#: tbl_change.php:889 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:1128 +#: tbl_change.php:1026 msgid "Insert as new row" msgstr "แทรกเป็นแถวใหม่" -#: tbl_change.php:1129 +#: tbl_change.php:1027 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:1130 +#: tbl_change.php:1028 msgid "Show insert query" msgstr "" -#: tbl_change.php:1145 +#: tbl_change.php:1043 msgid "Go back to previous page" msgstr "ส่งกลับ" -#: tbl_change.php:1146 +#: tbl_change.php:1044 msgid "Insert another new row" msgstr "แทรกระเบียนใหม่" -#: tbl_change.php:1150 +#: tbl_change.php:1048 #, fuzzy msgid "Go back to this page" msgstr "ส่งกลับ" -#: tbl_change.php:1158 +#: tbl_change.php:1056 msgid "Edit next row" msgstr "" -#: tbl_change.php:1169 +#: tbl_change.php:1067 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: tbl_change.php:1207 +#: tbl_change.php:1105 #, php-format msgid "Restart insertion with %s rows" msgstr "" -#: tbl_create.php:57 +#: tbl_create.php:55 #, fuzzy, php-format msgid "Table %s already exists!" msgstr "มีผู้ใช้ %s อยู่แล้ว!" -#: tbl_create.php:244 +#: tbl_create.php:241 #, fuzzy, php-format msgid "Table %1$s has been created." msgstr "โยนตาราง %s ทิ้งไปเรียบร้อยแล้ว" @@ -7571,203 +7623,203 @@ msgstr "เปลี่ยนชื่อดัชนีเป็น PRIMARY ไ msgid "No index parts defined!" msgstr "ไม่ได้กำหนดส่วนใดๆ ของดัชนี!" -#: tbl_indexes.php:159 +#: tbl_indexes.php:158 msgid "Create a new index" msgstr "สร้างดัชนีใหม่" -#: tbl_indexes.php:161 +#: tbl_indexes.php:160 msgid "Modify an index" msgstr "แก้ไขดัชนี" -#: tbl_indexes.php:167 +#: tbl_indexes.php:166 msgid "Index name:" msgstr "ชื่อดัชนี :" -#: tbl_indexes.php:173 +#: tbl_indexes.php:172 msgid "Index type:" msgstr "ชนิดของดัชนี :" -#: tbl_indexes.php:183 +#: tbl_indexes.php:182 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "(ชื่อของไพรมารีคีย์จะต้องเป็น \"PRIMARY\" เท่านั้น!)" -#: tbl_indexes.php:250 +#: tbl_indexes.php:249 #, php-format msgid "Add to index  %s column(s)" msgstr "เพิ่มดัชนีคอลัมน์ %s" -#: tbl_indexes.php:255 tbl_structure.php:588 tbl_structure.php:599 +#: tbl_indexes.php:254 tbl_structure.php:586 tbl_structure.php:597 msgid "Column count has to be larger than zero." msgstr "" -#: tbl_move_copy.php:45 +#: tbl_move_copy.php:44 msgid "Can't move table to same one!" msgstr "ย้ายตารางไปที่เดิมไม่ได้" -#: tbl_move_copy.php:47 +#: tbl_move_copy.php:46 msgid "Can't copy table to same one!" msgstr "คัดลอกตารางไปที่เดิมไม่ได้" -#: tbl_move_copy.php:55 +#: tbl_move_copy.php:54 #, php-format msgid "Table %s has been moved to %s." msgstr "ตาราง %s ถูกย้ายไป %s แล้ว" -#: tbl_move_copy.php:57 +#: tbl_move_copy.php:56 #, php-format msgid "Table %s has been copied to %s." msgstr "คัดลอกตาราง %s ไปเก็บในชื่อ %s เรียบร้อยแล้ว." -#: tbl_move_copy.php:81 +#: tbl_move_copy.php:80 msgid "The table name is empty!" msgstr "ชื่อตารางยังว่างอยู่!" -#: tbl_operations.php:248 +#: tbl_operations.php:246 msgid "Alter table order by" msgstr "เรียงค่าในตารางตาม" -#: tbl_operations.php:257 +#: tbl_operations.php:255 msgid "(singly)" msgstr "(เดี่ยว)" -#: tbl_operations.php:277 +#: tbl_operations.php:275 msgid "Move table to (database.table):" msgstr "ย้ายตารางไป (database.table):" -#: tbl_operations.php:335 +#: tbl_operations.php:333 msgid "Table options" msgstr "ตัวเลือกตาราง" -#: tbl_operations.php:339 +#: tbl_operations.php:337 msgid "Rename table to" msgstr "เปลี่ยนชื่อตารางเป็น" -#: tbl_operations.php:510 +#: tbl_operations.php:508 msgid "Copy table to (database.table):" msgstr "คัดลอกตารางไปยัง (ฐานข้อมูล.ตาราง):" -#: tbl_operations.php:557 +#: tbl_operations.php:555 msgid "Switch to copied table" msgstr "สลับไปที่ตารางที่ถูกทำสำเนาไว้" -#: tbl_operations.php:569 +#: tbl_operations.php:567 msgid "Table maintenance" msgstr "การดูแลรักษาตาราง" -#: tbl_operations.php:590 +#: tbl_operations.php:588 msgid "Defragment table" msgstr "จัดระเบียบตาราง" -#: tbl_operations.php:629 +#: tbl_operations.php:627 #, php-format msgid "Table %s has been flushed" msgstr "ล้างตาราง %s เรียบร้อยแล้ว" -#: tbl_operations.php:635 +#: tbl_operations.php:633 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "ล้างตาราง (flush)" -#: tbl_operations.php:650 +#: tbl_operations.php:648 #, fuzzy msgid "Partition maintenance" msgstr "การดูแลรักษาตาราง" -#: tbl_operations.php:658 +#: tbl_operations.php:656 #, php-format msgid "Partition %s" msgstr "" -#: tbl_operations.php:661 +#: tbl_operations.php:659 msgid "Analyze" msgstr "" -#: tbl_operations.php:662 +#: tbl_operations.php:660 #, fuzzy msgid "Check" msgstr "เช็ค" -#: tbl_operations.php:663 +#: tbl_operations.php:661 msgid "Optimize" msgstr "" -#: tbl_operations.php:664 +#: tbl_operations.php:662 msgid "Rebuild" msgstr "" -#: tbl_operations.php:665 +#: tbl_operations.php:663 #, fuzzy msgid "Repair" msgstr "ซ่อมแซมตาราง" -#: tbl_operations.php:677 +#: tbl_operations.php:675 msgid "Remove partitioning" msgstr "" -#: tbl_operations.php:703 +#: tbl_operations.php:701 msgid "Check referential integrity:" msgstr "ตรวจสอบความสมบูรณ์ของการอ้างถึง:" -#: tbl_printview.php:73 +#: tbl_printview.php:72 msgid "Show tables" msgstr "แสดงตาราง" -#: tbl_printview.php:308 tbl_structure.php:655 +#: tbl_printview.php:307 tbl_structure.php:653 msgid "Space usage" msgstr "เนื้อที่ที่ใช้" -#: tbl_printview.php:312 tbl_structure.php:659 +#: tbl_printview.php:311 tbl_structure.php:657 msgid "Usage" msgstr "ใช้งาน" -#: tbl_printview.php:339 tbl_structure.php:686 +#: tbl_printview.php:338 tbl_structure.php:684 msgid "Effective" msgstr "มีผล" -#: tbl_printview.php:364 tbl_structure.php:724 +#: tbl_printview.php:363 tbl_structure.php:722 msgid "Row Statistics" msgstr "สถิติของแถว" -#: tbl_printview.php:367 tbl_structure.php:727 +#: tbl_printview.php:366 tbl_structure.php:725 msgid "Statements" msgstr "คำสั่ง" -#: tbl_printview.php:378 tbl_structure.php:739 +#: tbl_printview.php:377 tbl_structure.php:737 msgid "static" msgstr "" -#: tbl_printview.php:380 tbl_structure.php:741 +#: tbl_printview.php:379 tbl_structure.php:739 msgid "dynamic" msgstr "ไม่คงที่" -#: tbl_printview.php:402 tbl_structure.php:784 +#: tbl_printview.php:401 tbl_structure.php:782 msgid "Row length" msgstr "ความยาวแถว" -#: tbl_printview.php:412 tbl_structure.php:792 +#: tbl_printview.php:411 tbl_structure.php:790 msgid " Row size " msgstr " ขนาดแถว " -#: tbl_relation.php:278 +#: tbl_relation.php:276 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" -#: tbl_relation.php:404 +#: tbl_relation.php:402 #, fuzzy #| msgid "Internal relations" msgid "Internal relation" msgstr "รีเลชันภายใน" -#: tbl_relation.php:406 +#: tbl_relation.php:404 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: tbl_relation.php:412 +#: tbl_relation.php:410 msgid "Foreign key constraint" msgstr "" @@ -7775,232 +7827,232 @@ msgstr "" msgid "No rows selected" msgstr "ยังไม่ได้เลือกแถว" -#: tbl_select.php:130 +#: tbl_select.php:129 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "ทำ \"คำค้นจากตัวอย่าง\" (wildcard: \"%\")" -#: tbl_select.php:136 +#: tbl_select.php:135 #, fuzzy msgid "Operator" msgstr "กระบวนการ" -#: tbl_select.php:267 +#: tbl_select.php:266 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "เลือกฟิลด์ (อย่างน้อยหนึ่งฟิลด์):" -#: tbl_select.php:285 +#: tbl_select.php:284 msgid "Add search conditions (body of the \"where\" clause):" msgstr "เพิ่มเงื่อนไขในการค้นหา:" -#: tbl_select.php:292 +#: tbl_select.php:291 msgid "Number of rows per page" msgstr "ระเบียนต่อหน้า" -#: tbl_select.php:298 +#: tbl_select.php:297 msgid "Display order:" msgstr "ลำดับการแสดง:" -#: tbl_structure.php:160 +#: tbl_structure.php:159 msgid "Browse distinct values" msgstr "" -#: tbl_structure.php:360 +#: tbl_structure.php:358 #, fuzzy #| msgid "None" msgctxt "None for default" msgid "None" msgstr "ไม่มี" -#: tbl_structure.php:373 +#: tbl_structure.php:371 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Column %s has been dropped" msgstr "โยนตาราง %s ทิ้งไปเรียบร้อยแล้ว" -#: tbl_structure.php:384 +#: tbl_structure.php:382 #, php-format msgid "A primary key has been added on %s" msgstr "ได้เพิ่มไพรมารีคีย์แล้วใน %s" -#: tbl_structure.php:399 tbl_structure.php:413 tbl_structure.php:427 +#: tbl_structure.php:397 tbl_structure.php:411 tbl_structure.php:425 #, php-format msgid "An index has been added on %s" msgstr "ได้เพิ่มดัชนีแล้วใน %s" -#: tbl_structure.php:505 tbl_structure.php:507 +#: tbl_structure.php:503 tbl_structure.php:505 msgid "Relation view" msgstr "มุมมองรีเลชัน" -#: tbl_structure.php:514 tbl_structure.php:516 +#: tbl_structure.php:512 tbl_structure.php:514 msgid "Propose table structure" msgstr "เสนอโครงสร้างตาราง" -#: tbl_structure.php:539 +#: tbl_structure.php:537 #, fuzzy msgid "Add column" msgstr "เพิ่มฟิลด์ใหม่" -#: tbl_structure.php:553 +#: tbl_structure.php:551 msgid "At End of Table" msgstr "ที่จุดสุดท้ายของตาราง" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At Beginning of Table" msgstr "ที่จุดเริ่มต้นของตาราง" -#: tbl_structure.php:555 +#: tbl_structure.php:553 #, php-format msgid "After %s" msgstr "หลัง %s" -#: tbl_structure.php:593 +#: tbl_structure.php:591 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "สร้างดัชนีโดยคอลัมน์ %s" -#: tbl_structure.php:755 +#: tbl_structure.php:753 msgid "partitioned" msgstr "" -#: tbl_tracking.php:113 +#: tbl_tracking.php:109 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:186 +#: tbl_tracking.php:182 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "" -#: tbl_tracking.php:194 +#: tbl_tracking.php:190 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "" -#: tbl_tracking.php:202 +#: tbl_tracking.php:198 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "" -#: tbl_tracking.php:212 +#: tbl_tracking.php:208 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:219 +#: tbl_tracking.php:215 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:220 +#: tbl_tracking.php:216 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:229 +#: tbl_tracking.php:225 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:250 tbl_tracking.php:378 +#: tbl_tracking.php:245 tbl_tracking.php:373 msgid "Close" msgstr "" -#: tbl_tracking.php:261 +#: tbl_tracking.php:256 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:380 +#: tbl_tracking.php:375 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:396 tbl_tracking.php:503 +#: tbl_tracking.php:391 tbl_tracking.php:498 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "" -#: tbl_tracking.php:409 tbl_tracking.php:460 +#: tbl_tracking.php:404 tbl_tracking.php:455 #, fuzzy msgid "Date" msgstr "ข้อมูล" -#: tbl_tracking.php:410 tbl_tracking.php:461 +#: tbl_tracking.php:405 tbl_tracking.php:456 #, fuzzy msgid "Username" msgstr "ชื่อผู้ใช้:" -#: tbl_tracking.php:411 +#: tbl_tracking.php:406 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:462 +#: tbl_tracking.php:457 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:506 +#: tbl_tracking.php:501 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:507 +#: tbl_tracking.php:502 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:520 +#: tbl_tracking.php:515 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:560 +#: tbl_tracking.php:555 msgid "Show versions" msgstr "" -#: tbl_tracking.php:592 +#: tbl_tracking.php:587 #, fuzzy msgid "Version" msgstr "รุ่นของ PHP" -#: tbl_tracking.php:639 +#: tbl_tracking.php:634 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "" -#: tbl_tracking.php:641 +#: tbl_tracking.php:636 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:652 +#: tbl_tracking.php:647 #, php-format msgid "Activate tracking for %s.%s" msgstr "" -#: tbl_tracking.php:654 +#: tbl_tracking.php:649 msgid "Activate now" msgstr "" -#: tbl_tracking.php:667 +#: tbl_tracking.php:662 #, php-format msgid "Create version %s of %s.%s" msgstr "" -#: tbl_tracking.php:671 +#: tbl_tracking.php:666 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:679 +#: tbl_tracking.php:674 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:687 +#: tbl_tracking.php:682 #, fuzzy msgid "Create version" msgstr "รุ่นของเซิร์ฟเวอร์" @@ -8048,11 +8100,36 @@ msgstr "ปรับปรุงโพรไฟล์เรียบร้อย msgid "VIEW name" msgstr "" -#: view_operations.php:92 +#: view_operations.php:91 #, fuzzy msgid "Rename view to" msgstr "เปลี่ยนชื่อตารางเป็น" +#, fuzzy +#~| msgid "Enabled" +#~ msgctxt "BLOB repository" +#~ msgid "Enabled" +#~ msgstr "เปิดใช้อยู่" + +#, fuzzy +#~ msgid "Disable" +#~ msgstr "ระงับการใช้อยู่" + +#, fuzzy +#~ msgctxt "BLOB repository" +#~ msgid "Repair" +#~ msgstr "ซ่อมแซมตาราง" + +#, fuzzy +#~| msgid "Disabled" +#~ msgctxt "BLOB repository" +#~ msgid "Disabled" +#~ msgstr "ระงับการใช้อยู่" + +#, fuzzy +#~ msgid "Enable" +#~ msgstr "เปิดใช้อยู่" + #~ msgid "" #~ "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " #~ "extension. Please check your PHP configuration." diff --git a/po/tr.po b/po/tr.po index 273d7f5b8..77fefee8a 100644 --- a/po/tr.po +++ b/po/tr.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-21 13:53+0200\n" +"POT-Creation-Date: 2010-07-26 17:18+0200\n" "PO-Revision-Date: 2010-06-21 19:58+0200\n" "Last-Translator: Burak \n" "Language-Team: turkish \n" @@ -14,19 +14,19 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.1\n" -#: browse_foreigners.php:37 browse_foreigners.php:58 -#: libraries/display_tbl.lib.php:416 server_privileges.php:1506 +#: browse_foreigners.php:36 browse_foreigners.php:57 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1510 msgid "Show all" msgstr "Tümünü göster" -#: browse_foreigners.php:81 libraries/common.lib.php:2313 -#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:393 -#: libraries/export/pdf.php:146 pdf_schema.php:282 pdf_schema.php:1122 -#: pdf_schema.php:1138 +#: browse_foreigners.php:80 libraries/common.lib.php:2318 +#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:392 +#: libraries/export/pdf.php:146 pdf_schema.php:281 pdf_schema.php:1121 +#: pdf_schema.php:1137 msgid "Page number:" msgstr "Sayfa numarası:" -#: browse_foreigners.php:131 +#: browse_foreigners.php:130 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -36,137 +36,151 @@ msgstr "" "olabilirsiniz ya da tarayıcınızın güvenlik ayarları çapraz-pencere " "güncellemelerini engellemek için yapılandırılmıştır." -#: browse_foreigners.php:149 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2829 -#: libraries/common.lib.php:2836 libraries/db_links.inc.php:74 -#: libraries/tbl_links.inc.php:62 +#: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 +#: db_structure.php:89 db_structure.php:91 db_structure.php:102 +#: db_structure.php:104 libraries/common.lib.php:2834 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Ara" -#: browse_foreigners.php:152 db_operations.php:384 db_operations.php:428 -#: db_operations.php:498 db_operations.php:608 db_search.php:344 -#: db_structure.php:566 js/messages.php:48 libraries/Config.class.php:1043 -#: libraries/Theme_Manager.class.php:310 +#: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 +#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 +#: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 -#: libraries/common.lib.php:1340 libraries/common.lib.php:2289 +#: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 -#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:275 -#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:531 -#: libraries/display_tbl.lib.php:613 libraries/replication_gui.lib.php:75 +#: libraries/display_export.lib.php:269 libraries/display_import.lib.php:275 +#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 +#: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 #: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:781 -#: main.php:127 navigation.php:231 pdf_pages.php:291 pdf_pages.php:327 -#: pdf_pages.php:529 pmd_pdf.php:115 server_binlog.php:128 -#: server_privileges.php:664 server_privileges.php:1616 -#: server_privileges.php:1963 server_privileges.php:2010 -#: server_privileges.php:2049 server_replication.php:234 -#: server_replication.php:317 server_replication.php:340 -#: server_synchronize.php:1208 tbl_change.php:328 tbl_change.php:1172 -#: tbl_change.php:1209 tbl_indexes.php:253 tbl_operations.php:264 -#: tbl_operations.php:301 tbl_operations.php:498 tbl_operations.php:560 -#: tbl_operations.php:680 tbl_select.php:324 tbl_structure.php:561 -#: tbl_structure.php:596 tbl_tracking.php:394 tbl_tracking.php:511 -#: view_create.php:181 view_operations.php:100 +#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 +#: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 +#: server_privileges.php:663 server_privileges.php:1620 +#: server_privileges.php:1967 server_privileges.php:2014 +#: server_privileges.php:2053 server_replication.php:233 +#: server_replication.php:316 server_replication.php:339 +#: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 +#: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 +#: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 +#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "Git" -#: browse_foreigners.php:167 browse_foreigners.php:171 -#: libraries/Index.class.php:441 tbl_tracking.php:319 +#: browse_foreigners.php:166 browse_foreigners.php:170 +#: libraries/Index.class.php:441 tbl_tracking.php:314 msgid "Keyname" msgstr "Anahtar ismi" -#: browse_foreigners.php:168 browse_foreigners.php:170 -#: server_collations.php:54 server_collations.php:66 server_engines.php:58 +#: browse_foreigners.php:167 browse_foreigners.php:169 +#: server_collations.php:54 server_collations.php:66 server_engines.php:57 #: server_status.php:738 msgid "Description" msgstr "Açıklama" -#: browse_foreigners.php:246 browse_foreigners.php:255 -#: browse_foreigners.php:267 browse_foreigners.php:275 +#: browse_foreigners.php:245 browse_foreigners.php:254 +#: browse_foreigners.php:266 browse_foreigners.php:274 msgid "Use this value" msgstr "Bu değeri kullan" -#: db_create.php:45 +#: bs_disp_as_mime_type.php:29 bs_play_media.php:35 +msgid "No blob streaming server configured!" +msgstr "" + +#: bs_disp_as_mime_type.php:35 +#, fuzzy +#| msgid "Failed to write file to disk." +msgid "Failed to fetch headers" +msgstr "Dosyayı diske yazma başarısız." + +#: bs_disp_as_mime_type.php:41 +msgid "Failed to open remote URL" +msgstr "" + +#: db_create.php:44 #, php-format msgid "Database %1$s has been created." msgstr "Veritabanı %1$s oluşturuldu." -#: db_datadict.php:48 db_operations.php:377 +#: db_datadict.php:48 db_operations.php:313 msgid "Database comment: " msgstr "Veritabanı yorumu:" -#: db_datadict.php:164 libraries/tbl_properties.inc.php:723 -#: pdf_schema.php:1235 tbl_operations.php:346 tbl_printview.php:128 +#: db_datadict.php:164 libraries/tbl_properties.inc.php:722 +#: pdf_schema.php:1234 tbl_operations.php:344 tbl_printview.php:127 msgid "Table comments" msgstr "Tablo yorumları" -#: db_datadict.php:173 db_qbe.php:173 libraries/Index.class.php:445 +#: db_datadict.php:173 db_qbe.php:170 libraries/Index.class.php:445 #: libraries/export/htmlword.php:243 libraries/export/latex.php:364 #: libraries/export/odt.php:293 libraries/export/texytext.php:233 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:274 -#: pdf_schema.php:1261 pdf_schema.php:1282 tbl_change.php:306 -#: tbl_indexes.php:188 tbl_printview.php:140 tbl_relation.php:401 -#: tbl_select.php:133 tbl_structure.php:176 tbl_tracking.php:272 -#: tbl_tracking.php:323 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 +#: pdf_schema.php:1260 pdf_schema.php:1281 tbl_change.php:301 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:132 tbl_structure.php:175 tbl_tracking.php:267 +#: tbl_tracking.php:318 msgid "Column" msgstr "Sütun" -#: db_datadict.php:174 db_printview.php:105 libraries/Index.class.php:442 +#: db_datadict.php:174 db_printview.php:104 libraries/Index.class.php:442 #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 #: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:244 #: libraries/export/latex.php:364 libraries/export/odt.php:296 #: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:99 -#: pdf_schema.php:1262 pdf_schema.php:1283 server_privileges.php:2062 -#: tbl_change.php:285 tbl_change.php:312 tbl_printview.php:141 -#: tbl_printview.php:311 tbl_select.php:134 tbl_structure.php:177 -#: tbl_structure.php:658 tbl_tracking.php:273 tbl_tracking.php:320 +#: pdf_schema.php:1261 pdf_schema.php:1282 server_privileges.php:2066 +#: tbl_change.php:280 tbl_change.php:307 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:133 tbl_structure.php:176 +#: tbl_structure.php:656 tbl_tracking.php:268 tbl_tracking.php:315 msgid "Type" msgstr "Türü" #: db_datadict.php:176 libraries/Index.class.php:448 #: libraries/export/htmlword.php:245 libraries/export/latex.php:364 #: libraries/export/odt.php:299 libraries/export/texytext.php:235 -#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1264 -#: pdf_schema.php:1285 tbl_change.php:321 tbl_printview.php:143 -#: tbl_structure.php:180 tbl_tracking.php:275 tbl_tracking.php:326 +#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1263 +#: pdf_schema.php:1284 tbl_change.php:316 tbl_printview.php:142 +#: tbl_structure.php:179 tbl_tracking.php:270 tbl_tracking.php:321 msgid "Null" msgstr "Boş" -#: db_datadict.php:177 db_structure.php:500 libraries/export/htmlword.php:246 +#: db_datadict.php:177 db_structure.php:486 libraries/export/htmlword.php:246 #: libraries/export/latex.php:364 libraries/export/odt.php:302 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:105 -#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 -#: tbl_structure.php:181 tbl_tracking.php:276 +#: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:143 +#: tbl_structure.php:180 tbl_tracking.php:271 msgid "Default" msgstr "Varsayılan" #: db_datadict.php:181 libraries/export/htmlword.php:248 #: libraries/export/latex.php:366 libraries/export/odt.php:306 -#: libraries/export/texytext.php:238 pdf_schema.php:1267 pdf_schema.php:1288 -#: tbl_printview.php:148 +#: libraries/export/texytext.php:238 pdf_schema.php:1266 pdf_schema.php:1287 +#: tbl_printview.php:147 msgid "Links to" msgstr "Şuna bağlantı ver ->" -#: db_datadict.php:183 db_printview.php:111 libraries/export/htmlword.php:251 +#: db_datadict.php:183 db_printview.php:110 libraries/export/htmlword.php:251 #: libraries/export/latex.php:49 libraries/export/latex.php:369 #: libraries/export/odt.php:37 libraries/export/odt.php:311 #: libraries/export/sql.php:29 libraries/export/texytext.php:241 -#: libraries/tbl_properties.inc.php:129 pdf_schema.php:1278 -#: pdf_schema.php:1289 tbl_printview.php:150 +#: libraries/tbl_properties.inc.php:128 pdf_schema.php:1277 +#: pdf_schema.php:1288 tbl_printview.php:149 msgid "Comments" msgstr "Yorumlar" #: db_datadict.php:266 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/export/htmlword.php:321 #: libraries/export/latex.php:434 libraries/export/odt.php:367 -#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:262 -#: pdf_schema.php:1343 server_privileges.php:1560 server_privileges.php:1571 -#: server_privileges.php:1881 server_privileges.php:1886 -#: server_privileges.php:2179 sql.php:131 sql.php:193 tbl_printview.php:227 -#: tbl_structure.php:349 tbl_tracking.php:336 tbl_tracking.php:341 +#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:261 +#: pdf_schema.php:1342 server_privileges.php:1564 server_privileges.php:1575 +#: server_privileges.php:1885 server_privileges.php:1890 +#: server_privileges.php:2183 sql.php:130 sql.php:192 tbl_printview.php:226 +#: tbl_structure.php:347 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "Hayır" @@ -177,17 +191,17 @@ msgstr "Hayır" #: libraries/mult_submits.inc.php:49 libraries/mult_submits.inc.php:54 #: libraries/mult_submits.inc.php:59 libraries/mult_submits.inc.php:91 #: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:105 -#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:261 -#: libraries/mult_submits.inc.php:272 pdf_schema.php:1343 -#: server_databases.php:63 server_privileges.php:1557 -#: server_privileges.php:1571 server_privileges.php:1881 -#: server_privileges.php:1884 server_privileges.php:2179 sql.php:192 -#: tbl_printview.php:227 tbl_structure.php:39 tbl_structure.php:349 -#: tbl_tracking.php:334 tbl_tracking.php:339 +#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:260 +#: libraries/mult_submits.inc.php:271 pdf_schema.php:1342 +#: server_databases.php:61 server_privileges.php:1561 +#: server_privileges.php:1575 server_privileges.php:1885 +#: server_privileges.php:1888 server_privileges.php:2183 sql.php:191 +#: tbl_printview.php:226 tbl_structure.php:38 tbl_structure.php:347 +#: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" msgstr "Evet" -#: db_datadict.php:321 db_printview.php:265 tbl_printview.php:496 +#: db_datadict.php:321 db_printview.php:264 tbl_printview.php:495 msgid "Print" msgstr "Yazdır" @@ -195,277 +209,243 @@ msgstr "Yazdır" msgid "View dump (schema) of database" msgstr "Veritabanının dökümünü (şemasını) göster" -#: db_export.php:32 db_printview.php:95 db_qbe.php:101 db_structure.php:50 -#: db_tracking.php:34 export.php:352 navigation.php:326 +#: db_export.php:32 db_printview.php:94 db_qbe.php:98 db_structure.php:49 +#: db_tracking.php:30 export.php:350 navigation.php:325 msgid "No tables found in database." msgstr "Veritabanında tablo bulunamadı." -#: db_export.php:42 db_search.php:326 server_export.php:26 +#: db_export.php:42 db_search.php:326 server_export.php:24 msgid "Select All" msgstr "Tümünü Seç" -#: db_export.php:44 db_search.php:329 server_export.php:28 +#: db_export.php:44 db_search.php:329 server_export.php:26 msgid "Unselect All" msgstr "Tüm Seçimi Kaldır" -#: db_operations.php:37 tbl_create.php:49 +#: db_operations.php:33 tbl_create.php:47 msgid "The database name is empty!" msgstr "Veritabanı adı boş!" -#: db_operations.php:235 +#: db_operations.php:231 #, php-format msgid "Database %s has been renamed to %s" msgstr "%s veritabanı %s olarak yeniden adlandırıldı" -#: db_operations.php:239 +#: db_operations.php:235 #, php-format msgid "Database %s has been copied to %s" msgstr "%s veritabanı %s'e kopyalandı" -#: db_operations.php:411 +#: db_operations.php:347 msgid "Rename database to" msgstr "Veritabanını şuna yeniden adlandır" -#: db_operations.php:416 server_processlist.php:56 +#: db_operations.php:352 server_processlist.php:56 msgid "Command" msgstr "Komut" -#: db_operations.php:428 tbl_change.php:1141 +#: db_operations.php:364 tbl_change.php:1039 msgid "and then" msgstr "ve sonra" -#: db_operations.php:454 +#: db_operations.php:390 msgid "Copy database to" msgstr "Veritabanını şuraya kopyala:" -#: db_operations.php:461 tbl_operations.php:527 tbl_tracking.php:387 +#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Sadece yapı" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:389 +#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Yapı ve veri" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:388 +#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Sadece veri" -#: db_operations.php:471 +#: db_operations.php:407 msgid "CREATE DATABASE before copying" msgstr "Kopyalamadan önce VERİTABANI OLUŞTUR" -#: db_operations.php:474 libraries/export/sql.php:51 +#: db_operations.php:410 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 -#: libraries/export/sql.php:81 tbl_operations.php:535 +#: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "%s komutu ekle" -#: db_operations.php:478 libraries/export/sql.php:77 tbl_operations.php:298 -#: tbl_operations.php:537 +#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT değeri ekle" -#: db_operations.php:482 tbl_operations.php:544 +#: db_operations.php:418 tbl_operations.php:542 msgid "Add constraints" msgstr "Kısıtlamaları ekle" -#: db_operations.php:495 +#: db_operations.php:431 msgid "Switch to copied database" msgstr "Kopyalanmış veritabanına geç" -#: db_operations.php:536 -msgid "BLOB Repository" -msgstr "BLOB Havuzu" - -#: db_operations.php:539 db_tracking.php:75 libraries/common.lib.php:1357 -#: libraries/server_links.inc.php:48 server_processlist.php:58 -#: tbl_tracking.php:595 test/theme.php:100 -msgid "Status" -msgstr "Durum" - -#: db_operations.php:547 -msgctxt "BLOB repository" -msgid "Enabled" -msgstr "Etkinleştirildi" - -#: db_operations.php:551 -msgid "Disable" -msgstr "Etkisiz" - -#: db_operations.php:561 -msgid "Damaged" -msgstr "Hasarlı" - -#: db_operations.php:565 -msgctxt "BLOB repository" -msgid "Repair" -msgstr "Onar" - -#: db_operations.php:573 -msgctxt "BLOB repository" -msgid "Disabled" -msgstr "Etkisizleştirildi" - -#: db_operations.php:577 -msgid "Enable" -msgstr "Etkin" - -#: db_operations.php:601 libraries/Index.class.php:447 +#: db_operations.php:451 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 -#: server_collations.php:53 server_collations.php:65 server_databases.php:110 -#: tbl_operations.php:362 tbl_select.php:135 tbl_structure.php:178 -#: tbl_structure.php:766 tbl_tracking.php:274 tbl_tracking.php:325 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 +#: server_collations.php:53 server_collations.php:65 server_databases.php:108 +#: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:177 +#: tbl_structure.php:764 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "Karşılaştırma" -#: db_operations.php:614 main.php:315 pdf_schema.php:33 -#, php-format +#: db_operations.php:464 pdf_schema.php:32 +#, fuzzy, php-format +#| msgid "" +#| "The additional features for working with linked tables have been " +#| "deactivated. To find out why click %shere%s." msgid "" -"The additional features for working with linked tables have been " -"deactivated. To find out why click %shere%s." +"The phpMyAdmin configuration storage has been deactivated. To find out why " +"click %shere%s." msgstr "" "Bağlı tablolar ile çalışan ilave özellikler etkisizleştirildi. Nedenini " "öğrenmek için %sburaya%s tıklayın." -#: db_operations.php:647 +#: db_operations.php:497 msgid "Edit PDF Pages" msgstr "PDF Sayfalarını düzenle" -#: db_printview.php:103 db_tracking.php:71 db_tracking.php:156 +#: db_printview.php:102 db_tracking.php:67 db_tracking.php:152 #: libraries/db_structure.lib.php:37 libraries/export/xml.php:327 -#: libraries/header.inc.php:125 pdf_pages.php:423 server_privileges.php:1657 -#: server_privileges.php:1713 server_privileges.php:1977 -#: server_synchronize.php:422 server_synchronize.php:865 tbl_tracking.php:591 +#: libraries/header.inc.php:125 pdf_pages.php:422 server_privileges.php:1661 +#: server_privileges.php:1717 server_privileges.php:1981 +#: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "Tablo" -#: db_printview.php:104 libraries/db_structure.lib.php:47 +#: db_printview.php:103 libraries/db_structure.lib.php:47 #: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 -#: navigation.php:629 navigation.php:651 server_databases.php:121 -#: tbl_printview.php:392 tbl_structure.php:364 tbl_structure.php:776 +#: navigation.php:628 navigation.php:650 server_databases.php:119 +#: tbl_printview.php:391 tbl_structure.php:362 tbl_structure.php:774 msgid "Rows" msgstr "Satır" -#: db_printview.php:108 libraries/db_structure.lib.php:58 tbl_indexes.php:189 +#: db_printview.php:107 libraries/db_structure.lib.php:58 tbl_indexes.php:188 msgid "Size" msgstr "Boyut" -#: db_printview.php:161 db_structure.php:456 libraries/export/sql.php:556 +#: db_printview.php:160 db_structure.php:442 libraries/export/sql.php:556 #: libraries/export/sql.php:896 msgid "in use" msgstr "kullanımda" -#: db_printview.php:186 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:511 pdf_schema.php:1240 tbl_printview.php:432 -#: tbl_structure.php:808 +#: db_printview.php:185 libraries/db_info.inc.php:86 +#: libraries/export/sql.php:511 pdf_schema.php:1239 tbl_printview.php:431 +#: tbl_structure.php:806 msgid "Creation" msgstr "Oluşturma" -#: db_printview.php:195 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:516 pdf_schema.php:1245 tbl_printview.php:442 -#: tbl_structure.php:816 +#: db_printview.php:194 libraries/db_info.inc.php:91 +#: libraries/export/sql.php:516 pdf_schema.php:1244 tbl_printview.php:441 +#: tbl_structure.php:814 msgid "Last update" msgstr "Son güncellenme" -#: db_printview.php:204 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:521 pdf_schema.php:1250 tbl_printview.php:452 -#: tbl_structure.php:824 +#: db_printview.php:203 libraries/db_info.inc.php:96 +#: libraries/export/sql.php:521 pdf_schema.php:1249 tbl_printview.php:451 +#: tbl_structure.php:822 msgid "Last check" msgstr "Son kontrol" -#: db_printview.php:221 db_structure.php:479 +#: db_printview.php:220 db_structure.php:465 #, php-format msgid "%s table" msgid_plural "%s tables" msgstr[0] "%s tablo" -#: db_qbe.php:28 import.php:453 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1980 libraries/sql_query_form.lib.php:138 -#: tbl_operations.php:212 tbl_relation.php:291 tbl_row_action.php:130 -#: view_operations.php:61 +#: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 +#: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "SQL sorgunuz başarılı olarak çalıştırıldı" -#: db_qbe.php:41 +#: db_qbe.php:38 msgid "You have to choose at least one column to display" msgstr "Görüntülemek için en az bir sütun seçmelisiniz" -#: db_qbe.php:199 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:865 +#: db_qbe.php:196 libraries/db_structure.lib.php:95 +#: libraries/display_tbl.lib.php:864 msgid "Sort" msgstr "Sırala" -#: db_qbe.php:208 db_qbe.php:242 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:522 libraries/display_tbl.lib.php:827 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:259 -#: tbl_select.php:311 +#: db_qbe.php:205 db_qbe.php:239 libraries/db_structure.lib.php:102 +#: libraries/display_tbl.lib.php:521 libraries/display_tbl.lib.php:826 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:257 +#: tbl_select.php:310 msgid "Ascending" msgstr "Küçükten Büyüğe" -#: db_qbe.php:209 db_qbe.php:250 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:527 libraries/display_tbl.lib.php:824 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:260 -#: tbl_select.php:312 +#: db_qbe.php:206 db_qbe.php:247 libraries/db_structure.lib.php:110 +#: libraries/display_tbl.lib.php:526 libraries/display_tbl.lib.php:823 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:258 +#: tbl_select.php:311 msgid "Descending" msgstr "Büyükten Küçüğe" -#: db_qbe.php:263 db_tracking.php:77 libraries/display_tbl.lib.php:307 -#: tbl_change.php:275 tbl_tracking.php:596 +#: db_qbe.php:260 db_tracking.php:73 libraries/display_tbl.lib.php:306 +#: tbl_change.php:270 tbl_tracking.php:591 msgid "Show" msgstr "Göster" -#: db_qbe.php:299 +#: db_qbe.php:296 msgid "Criteria" msgstr "Kriter" -#: db_qbe.php:352 db_qbe.php:434 db_qbe.php:526 db_qbe.php:557 +#: db_qbe.php:349 db_qbe.php:431 db_qbe.php:523 db_qbe.php:554 msgid "Ins" msgstr "Ins" -#: db_qbe.php:356 db_qbe.php:438 db_qbe.php:523 db_qbe.php:554 +#: db_qbe.php:353 db_qbe.php:435 db_qbe.php:520 db_qbe.php:551 msgid "And" msgstr "Ve" -#: db_qbe.php:365 db_qbe.php:446 db_qbe.php:528 db_qbe.php:559 +#: db_qbe.php:362 db_qbe.php:443 db_qbe.php:525 db_qbe.php:556 msgid "Del" msgstr "Del" -#: db_qbe.php:369 db_qbe.php:450 db_qbe.php:521 db_qbe.php:552 -#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:778 -#: server_privileges.php:297 tbl_change.php:1027 tbl_indexes.php:249 -#: tbl_select.php:285 +#: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 +#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:777 +#: server_privileges.php:296 tbl_change.php:925 tbl_indexes.php:248 +#: tbl_select.php:284 msgid "Or" msgstr "Veya" -#: db_qbe.php:506 +#: db_qbe.php:503 msgid "Modify" msgstr "Değiştir" -#: db_qbe.php:583 +#: db_qbe.php:580 msgid "Add/Delete criteria rows" msgstr "Kriter satırı Ekle/Sil" -#: db_qbe.php:595 +#: db_qbe.php:592 msgid "Add/Delete columns" msgstr "Sütun Ekle/Sil" -#: db_qbe.php:608 db_qbe.php:633 +#: db_qbe.php:605 db_qbe.php:630 msgid "Update Query" msgstr "Sorguyu Güncelle" -#: db_qbe.php:616 +#: db_qbe.php:613 msgid "Use Tables" msgstr "Tabloları kullan" -#: db_qbe.php:639 +#: db_qbe.php:636 #, php-format msgid "SQL query on database %s:" msgstr "%s veritabanındaki SQL sorgusu:" -#: db_qbe.php:933 libraries/common.lib.php:1222 +#: db_qbe.php:930 libraries/common.lib.php:1215 msgid "Submit Query" msgstr "Sorguyu Gönder" @@ -504,17 +484,17 @@ msgid "%s match inside table %s" msgid_plural "%s matches inside table %s" msgstr[0] "%s eşleşme, %s tablosu içinde" -#: db_search.php:249 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2831 -#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:49 -#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:466 +#: db_search.php:249 db_structure.php:75 db_structure.php:76 +#: db_structure.php:88 db_structure.php:90 db_structure.php:101 +#: db_structure.php:103 libraries/common.lib.php:2836 +#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 +#: tbl_structure.php:35 tbl_structure.php:47 tbl_structure.php:464 msgid "Browse" msgstr "Gözat" -#: db_search.php:254 libraries/display_tbl.lib.php:1164 -#: libraries/display_tbl.lib.php:2055 libraries/sql_query_form.lib.php:453 -#: pdf_pages.php:285 pdf_pages.php:424 pdf_pages.php:460 pdf_pages.php:488 +#: db_search.php:254 libraries/display_tbl.lib.php:1163 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 msgid "Delete" @@ -551,66 +531,66 @@ msgstr "Tablo içindeki(ler):" msgid "Inside column:" msgstr "İç sütun:" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2830 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:75 +#: db_structure.php:79 db_structure.php:80 db_structure.php:92 +#: db_structure.php:93 db_structure.php:105 db_structure.php:106 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 +#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Ekle" -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2827 libraries/common.lib.php:2834 -#: libraries/db_links.inc.php:62 libraries/export/htmlword.php:22 +#: db_structure.php:81 db_structure.php:94 db_structure.php:107 +#: libraries/common.lib.php:2832 libraries/common.lib.php:2839 +#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 -#: libraries/tbl_links.inc.php:55 pmd_general.php:133 -#: server_privileges.php:593 server_replication.php:314 tbl_tracking.php:268 +#: libraries/tbl_links.inc.php:54 pmd_general.php:133 +#: server_privileges.php:592 server_replication.php:313 tbl_tracking.php:263 msgid "Structure" msgstr "Yapı" -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:544 db_structure.php:545 db_tracking.php:90 -#: libraries/Index.class.php:482 libraries/common.lib.php:1659 -#: libraries/db_links.inc.php:99 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:126 -#: server_databases.php:351 tbl_structure.php:26 tbl_structure.php:150 -#: tbl_structure.php:151 tbl_structure.php:470 +#: db_structure.php:82 db_structure.php:83 db_structure.php:95 +#: db_structure.php:96 db_structure.php:108 db_structure.php:109 +#: db_structure.php:530 db_structure.php:531 db_tracking.php:86 +#: libraries/Index.class.php:482 libraries/common.lib.php:1663 +#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 +#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 +#: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" msgstr "Kaldır" -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:542 db_structure.php:543 libraries/common.lib.php:1658 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:104 +#: db_structure.php:84 db_structure.php:85 db_structure.php:97 +#: db_structure.php:98 db_structure.php:110 db_structure.php:111 +#: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 +#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 msgid "Empty" msgstr "Boşalt" -#: db_structure.php:315 libraries/tbl_links.inc.php:99 +#: db_structure.php:301 libraries/tbl_links.inc.php:98 #, php-format msgid "Table %s has been emptied" msgstr "%s tablosu boşaltıldı" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "View %s has been dropped" msgstr "%s görünümü kaldırıldı" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "Table %s has been dropped" msgstr "%s tablosu kaldırıldı" -#: db_structure.php:332 +#: db_structure.php:318 msgid "Tracking is active." msgstr "İzleme aktif." -#: db_structure.php:334 +#: db_structure.php:320 msgid "Tracking is not active." msgstr "İzleme aktif değil." -#: db_structure.php:419 libraries/display_tbl.lib.php:1943 +#: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -619,160 +599,166 @@ msgstr "" "Bu görünüm en az bu satır sayısı kadar olur. Lütfen %sdocumentation%s " "belgesinden yararlanın." -#: db_structure.php:433 db_structure.php:447 libraries/header.inc.php:125 -#: libraries/tbl_info.inc.php:65 tbl_structure.php:184 test/theme.php:73 +#: db_structure.php:419 db_structure.php:433 libraries/header.inc.php:125 +#: libraries/tbl_info.inc.php:60 tbl_structure.php:183 test/theme.php:73 msgid "View" msgstr "Görünüm" -#: db_structure.php:484 libraries/db_structure.lib.php:40 -#: libraries/server_links.inc.php:69 server_replication.php:32 -#: server_replication.php:163 server_status.php:368 +#: db_structure.php:470 libraries/db_structure.lib.php:40 +#: libraries/server_links.inc.php:69 server_replication.php:31 +#: server_replication.php:162 server_status.php:368 msgid "Replication" msgstr "Kopya etme" -#: db_structure.php:488 +#: db_structure.php:474 msgid "Sum" msgstr "Toplam" -#: db_structure.php:495 libraries/StorageEngine.class.php:349 +#: db_structure.php:481 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s bu MySQL sunucusundaki varsayılan depolama motorudur." -#: db_structure.php:523 db_structure.php:540 db_structure.php:541 -#: libraries/display_tbl.lib.php:2080 libraries/display_tbl.lib.php:2085 -#: libraries/mult_submits.inc.php:15 server_databases.php:345 -#: server_databases.php:350 server_privileges.php:1588 tbl_structure.php:454 -#: tbl_structure.php:463 +#: db_structure.php:509 db_structure.php:526 db_structure.php:527 +#: libraries/display_tbl.lib.php:2039 libraries/display_tbl.lib.php:2044 +#: libraries/mult_submits.inc.php:15 server_databases.php:343 +#: server_databases.php:348 server_privileges.php:1592 tbl_structure.php:452 +#: tbl_structure.php:461 msgid "With selected:" msgstr "Seçilileri:" -#: db_structure.php:526 libraries/display_tbl.lib.php:2075 -#: server_databases.php:347 server_privileges.php:569 -#: server_privileges.php:1591 tbl_structure.php:457 +#: db_structure.php:512 libraries/display_tbl.lib.php:2034 +#: server_databases.php:345 server_privileges.php:568 +#: server_privileges.php:1595 tbl_structure.php:455 msgid "Check All" msgstr "Tümünü Seç" -#: db_structure.php:530 libraries/display_tbl.lib.php:2076 -#: libraries/replication_gui.lib.php:35 server_databases.php:349 -#: server_privileges.php:572 server_privileges.php:1595 tbl_structure.php:461 +#: db_structure.php:516 libraries/display_tbl.lib.php:2035 +#: libraries/replication_gui.lib.php:35 server_databases.php:347 +#: server_privileges.php:571 server_privileges.php:1599 tbl_structure.php:459 msgid "Uncheck All" msgstr "Hiçbirini Seçme" -#: db_structure.php:535 +#: db_structure.php:521 msgid "Check tables having overhead" msgstr "Ek yükü olan tabloları kontrol et" -#: db_structure.php:546 db_structure.php:547 db_structure.php:598 -#: libraries/display_tbl.lib.php:2179 libraries/mult_submits.inc.php:27 -#: tbl_structure.php:491 tbl_structure.php:493 +#: db_structure.php:532 db_structure.php:533 db_structure.php:584 +#: libraries/display_tbl.lib.php:2138 libraries/mult_submits.inc.php:27 +#: tbl_structure.php:489 tbl_structure.php:491 msgid "Print view" msgstr "Baskı görünümü" -#: db_structure.php:548 db_structure.php:549 libraries/mult_submits.inc.php:41 -#: tbl_operations.php:580 +#: db_structure.php:534 db_structure.php:535 libraries/mult_submits.inc.php:41 +#: tbl_operations.php:578 msgid "Check table" msgstr "Tabloyu kontrol et" -#: db_structure.php:550 db_structure.php:551 libraries/mult_submits.inc.php:46 -#: tbl_operations.php:620 tbl_structure.php:708 tbl_structure.php:710 +#: db_structure.php:536 db_structure.php:537 libraries/mult_submits.inc.php:46 +#: tbl_operations.php:618 tbl_structure.php:706 tbl_structure.php:708 msgid "Optimize table" msgstr "Tabloyu uyarla" -#: db_structure.php:552 db_structure.php:553 libraries/mult_submits.inc.php:51 -#: tbl_operations.php:610 +#: db_structure.php:538 db_structure.php:539 libraries/mult_submits.inc.php:51 +#: tbl_operations.php:608 msgid "Repair table" msgstr "Tabloyu onar" -#: db_structure.php:554 db_structure.php:555 libraries/mult_submits.inc.php:56 -#: tbl_operations.php:600 +#: db_structure.php:540 db_structure.php:541 libraries/mult_submits.inc.php:56 +#: tbl_operations.php:598 msgid "Analyze table" msgstr "Tabloyu incele" -#: db_structure.php:556 db_structure.php:557 libraries/db_links.inc.php:70 -#: libraries/display_export.lib.php:82 libraries/display_tbl.lib.php:2093 -#: libraries/display_tbl.lib.php:2224 libraries/mult_submits.inc.php:61 -#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:81 -#: pmd_pdf.php:83 pmd_pdf.php:108 server_privileges.php:1372 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 +#: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 +#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 +#: pmd_pdf.php:81 pmd_pdf.php:106 server_privileges.php:1376 #: setup/frames/menu.inc.php:22 tbl_row_action.php:58 msgid "Export" msgstr "Dışarı Aktar" -#: db_structure.php:605 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:591 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "Veri sözlüğü" -#: db_tracking.php:65 +#: db_tracking.php:61 msgid "Tracked tables" msgstr "İzlenen tablolar" -#: db_tracking.php:70 libraries/export/htmlword.php:85 +#: db_tracking.php:66 libraries/export/htmlword.php:85 #: libraries/export/latex.php:152 libraries/export/odt.php:112 #: libraries/export/sql.php:339 libraries/export/texytext.php:84 #: libraries/export/xml.php:254 libraries/header.inc.php:105 -#: libraries/header_printview.inc.php:57 server_databases.php:168 -#: server_privileges.php:1652 server_privileges.php:1713 -#: server_privileges.php:1971 server_processlist.php:55 -#: server_synchronize.php:1178 server_synchronize.php:1182 -#: tbl_tracking.php:590 test/theme.php:64 +#: libraries/header_printview.inc.php:57 server_databases.php:166 +#: server_privileges.php:1656 server_privileges.php:1717 +#: server_privileges.php:1975 server_processlist.php:55 +#: server_synchronize.php:1177 server_synchronize.php:1181 +#: tbl_tracking.php:585 test/theme.php:64 msgid "Database" msgstr "Veritabanı" -#: db_tracking.php:72 +#: db_tracking.php:68 msgid "Last version" msgstr "Son sürüm" -#: db_tracking.php:73 tbl_tracking.php:593 +#: db_tracking.php:69 tbl_tracking.php:588 msgid "Created" msgstr "Oluşturuldu" -#: db_tracking.php:74 tbl_tracking.php:594 +#: db_tracking.php:70 tbl_tracking.php:589 msgid "Updated" msgstr "Güncellendi" -#: db_tracking.php:76 libraries/Index.class.php:439 -#: libraries/db_structure.lib.php:44 server_databases.php:202 -#: server_privileges.php:1534 server_privileges.php:1717 -#: server_privileges.php:2065 tbl_structure.php:186 +#: db_tracking.php:71 libraries/common.lib.php:1361 +#: libraries/server_links.inc.php:48 server_processlist.php:58 +#: tbl_tracking.php:590 test/theme.php:100 +msgid "Status" +msgstr "Durum" + +#: db_tracking.php:72 libraries/Index.class.php:439 +#: libraries/db_structure.lib.php:44 server_databases.php:200 +#: server_privileges.php:1538 server_privileges.php:1721 +#: server_privileges.php:2069 tbl_structure.php:185 msgid "Action" msgstr "Eylem" -#: db_tracking.php:87 db_tracking.php:119 +#: db_tracking.php:83 db_tracking.php:115 msgid "Delete tracking data for this table" msgstr "Bu tabloyu izleme verisini sil" -#: db_tracking.php:105 tbl_tracking.php:547 tbl_tracking.php:605 -#: tbl_tracking.php:612 +#: db_tracking.php:101 tbl_tracking.php:542 tbl_tracking.php:600 +#: tbl_tracking.php:607 msgid "active" msgstr "aktif" -#: db_tracking.php:107 tbl_tracking.php:549 tbl_tracking.php:607 -#: tbl_tracking.php:609 +#: db_tracking.php:103 tbl_tracking.php:544 tbl_tracking.php:602 +#: tbl_tracking.php:604 msgid "not active" msgstr "aktif değil" -#: db_tracking.php:120 +#: db_tracking.php:116 msgid "Versions" msgstr "Sürümler" -#: db_tracking.php:121 tbl_tracking.php:378 tbl_tracking.php:623 +#: db_tracking.php:117 tbl_tracking.php:373 tbl_tracking.php:618 msgid "Tracking report" msgstr "İzleme raporu" -#: db_tracking.php:122 tbl_tracking.php:250 tbl_tracking.php:623 +#: db_tracking.php:118 tbl_tracking.php:245 tbl_tracking.php:618 msgid "Structure snapshot" msgstr "Yapı görüntüsü yakalama" -#: db_tracking.php:151 +#: db_tracking.php:147 msgid "Untracked tables" msgstr "İzlenmeyen tablolar" -#: db_tracking.php:171 db_tracking.php:173 tbl_structure.php:527 -#: tbl_structure.php:529 +#: db_tracking.php:167 db_tracking.php:169 tbl_structure.php:525 +#: tbl_structure.php:527 msgid "Track table" msgstr "Tabloyu izle" -#: db_tracking.php:199 +#: db_tracking.php:195 msgid "Database Log" msgstr "Veritabanı Günlüğü" @@ -780,12 +766,12 @@ msgstr "Veritabanı Günlüğü" msgid "Selected export type has to be saved in file!" msgstr "Seçili dışarı aktarma türü dosyaya kaydedilmelidir!" -#: export.php:153 export.php:178 export.php:620 +#: export.php:152 export.php:177 export.php:615 #, php-format msgid "Insufficient space to save the file %s." msgstr "%s dosyasını kaydetmek için yetersiz alan." -#: export.php:287 +#: export.php:286 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -793,17 +779,17 @@ msgstr "" "%s dosyası zaten sunucuda var, dosya adını değiştirin veya üzerine yazma " "seçeneğini işaretleyin." -#: export.php:291 export.php:295 +#: export.php:290 export.php:294 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Web sunucusu %s dosyasını kaydetmek için izne sahip değil." -#: export.php:622 +#: export.php:617 #, php-format msgid "Dump has been saved to file %s." msgstr "Döküm dosyası %s dosyasına kaydedildi." -#: import.php:59 +#: import.php:58 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -812,14 +798,14 @@ msgstr "" "Muhtemelen çok büyük dosya göndermeyi denediniz. Lütfen bu sınıra çözüm yolu " "bulmak için %sbelgelere%s başvurun." -#: import.php:278 import.php:331 libraries/File.class.php:840 -#: libraries/File.class.php:950 +#: import.php:277 import.php:330 libraries/File.class.php:566 +#: libraries/File.class.php:676 msgid "File could not be read" msgstr "Dosya okunamadı" -#: import.php:286 import.php:295 import.php:314 import.php:323 -#: libraries/File.class.php:1020 libraries/File.class.php:1028 -#: libraries/File.class.php:1044 libraries/File.class.php:1052 +#: import.php:285 import.php:294 import.php:313 import.php:322 +#: libraries/File.class.php:746 libraries/File.class.php:754 +#: libraries/File.class.php:770 libraries/File.class.php:778 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -828,7 +814,7 @@ msgstr "" "Desteklenmeyen sıkıştırmayla (%s) dosya yüklemeyi denediniz. Ya bunun için " "destek henüz tamamlanmadı ya da yapılandırmanız tarafından etkisizleştirildi." -#: import.php:336 +#: import.php:335 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -838,30 +824,30 @@ msgstr "" "yapılandırmanız tarafından izin verilen en fazla boyut aşıldı. [a@./" "Documentation.html#faq1_16@Documentation]SSS 1.16[/a]'ya bakın." -#: import.php:371 libraries/display_import.lib.php:23 +#: import.php:370 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "" "İçeri aktarma eklentileri yüklenemedi, lütfen kurulumunuzu kontrol edin!" -#: import.php:396 +#: import.php:395 msgid "The bookmark has been deleted." msgstr "İşaretleme silindi." -#: import.php:400 +#: import.php:399 msgid "Showing bookmark" msgstr "İşaret gösteriliyor" -#: import.php:402 sql.php:625 +#: import.php:401 sql.php:618 #, php-format msgid "Bookmark %s created" msgstr "İşaretleme %s oluşturuldu" -#: import.php:408 import.php:414 +#: import.php:407 import.php:413 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "İçeri aktarma başarılı olarak bitti, %d sorgu çalıştırıldı." -#: import.php:423 +#: import.php:422 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -869,7 +855,7 @@ msgstr "" "Küçük program zaman aşımı geçti, eğer içeri aktarmayı bitirmek istiyorsanız, " "lütfen aynı dosyayı yeniden gönderin ve içeri aktarma devam edecektir." -#: import.php:425 +#: import.php:424 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -878,20 +864,20 @@ msgstr "" "sınırlarını arttırmadığınız sürece phpMyAdmin'in bu içeri aktarmayı " "biteremeyeceği anlamına gelir." -#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:240 +#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:239 #: user_password.php:110 msgid "Back" msgstr "Geri" -#: index.php:188 +#: index.php:183 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" "phpMyAdmin, çerçeve-kabiliyeti olan tarayıcı ile daha kullanışlıdır." -#: js/messages.php:25 server_synchronize.php:344 server_synchronize.php:356 -#: server_synchronize.php:372 server_synchronize.php:379 -#: server_synchronize.php:738 server_synchronize.php:766 -#: server_synchronize.php:794 server_synchronize.php:806 +#: js/messages.php:25 server_synchronize.php:343 server_synchronize.php:355 +#: server_synchronize.php:371 server_synchronize.php:378 +#: server_synchronize.php:737 server_synchronize.php:765 +#: server_synchronize.php:793 server_synchronize.php:805 msgid "Click to select" msgstr "Seçmek için tıklayın" @@ -899,15 +885,15 @@ msgstr "Seçmek için tıklayın" msgid "Click to unselect" msgstr "Seçimi kaldırmak için tıklayın" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:88 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:87 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" ifadesi etkisizleştirildi." -#: js/messages.php:30 libraries/mult_submits.inc.php:257 sql.php:187 +#: js/messages.php:30 libraries/mult_submits.inc.php:256 sql.php:186 msgid "Do you really want to " msgstr "Bunu uygulamak istiyor musunuz: " -#: js/messages.php:31 libraries/mult_submits.inc.php:257 sql.php:171 +#: js/messages.php:31 libraries/mult_submits.inc.php:256 sql.php:170 msgid "You are about to DESTROY a complete database!" msgstr "Bütün bir veritabanını YOK ETMEK üzeresiniz!" @@ -938,11 +924,11 @@ msgstr "Anamakine adı boş!" msgid "The user name is empty!" msgstr "Kullanıcı adı boş!" -#: js/messages.php:44 server_privileges.php:1228 user_password.php:65 +#: js/messages.php:44 server_privileges.php:1229 user_password.php:65 msgid "The password is empty!" msgstr "Parola boş!" -#: js/messages.php:45 server_privileges.php:1226 user_password.php:68 +#: js/messages.php:45 server_privileges.php:1227 user_password.php:68 msgid "The passwords aren't the same!" msgstr "Parolalar birbiriyle aynı değil!" @@ -950,27 +936,27 @@ msgstr "Parolalar birbiriyle aynı değil!" msgid "Cancel" msgstr "İptal" -#: js/messages.php:52 pmd_save_pos.php:53 +#: js/messages.php:52 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "Değişiklikler kaydedildi" -#: js/messages.php:53 pmd_relation_upd.php:48 +#: js/messages.php:53 pmd_relation_upd.php:47 msgid "Relation deleted" msgstr "Bağlantı silindi" -#: js/messages.php:54 pmd_relation_new.php:63 +#: js/messages.php:54 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "FOREIGN KEY bağlantısı eklendi" -#: js/messages.php:55 pmd_relation_new.php:85 +#: js/messages.php:55 pmd_relation_new.php:84 msgid "Internal relation added" msgstr "Dahili bağlantı eklendi" -#: js/messages.php:56 pmd_relation_new.php:62 pmd_relation_new.php:87 +#: js/messages.php:56 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "Hata: Bağlantı eklenmedi." -#: js/messages.php:57 pmd_relation_new.php:30 +#: js/messages.php:57 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "Hata: bağlantı zaten var." @@ -978,13 +964,13 @@ msgstr "Hata: bağlantı zaten var." msgid "Error saving coordinates for Designer." msgstr "Tasarımcı düzenlemelerini kaydetme hatası." -#: js/messages.php:59 libraries/relation.lib.php:94 -#: libraries/relation.lib.php:106 +#: js/messages.php:59 libraries/relation.lib.php:89 +#: libraries/relation.lib.php:101 msgid "General relation features" msgstr "Genel bağlantı özellikleri" -#: js/messages.php:59 libraries/relation.lib.php:88 -#: libraries/relation.lib.php:95 +#: js/messages.php:59 libraries/relation.lib.php:83 +#: libraries/relation.lib.php:90 msgid "Disabled" msgstr "Etkisiz" @@ -1000,7 +986,7 @@ msgstr "Dış Anahtarı seç" msgid "Please select the primary key or a unique key" msgstr "Lütfen birincil anaktarı veya benzersiz anahtarı seçin" -#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:547 +#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:545 msgid "Choose column to display" msgstr "Göstermek için sütun seçin" @@ -1025,10 +1011,10 @@ msgid "Prev" msgstr "Önceki" #. l10n: Display text for next month link in calendar -#: js/messages.php:81 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:337 -#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:422 -#: tbl_structure.php:800 +#: js/messages.php:81 libraries/common.lib.php:2358 +#: libraries/common.lib.php:2361 libraries/display_tbl.lib.php:336 +#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 +#: tbl_structure.php:798 msgid "Next" msgstr "Sonraki" @@ -1086,63 +1072,63 @@ msgid "December" msgstr "Aralık" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1562 +#: js/messages.php:101 libraries/common.lib.php:1566 msgid "Jan" msgstr "Oca" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1564 +#: js/messages.php:103 libraries/common.lib.php:1568 msgid "Feb" msgstr "Şub" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1566 +#: js/messages.php:105 libraries/common.lib.php:1570 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1568 +#: js/messages.php:107 libraries/common.lib.php:1572 msgid "Apr" msgstr "Nis" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1570 +#: js/messages.php:109 libraries/common.lib.php:1574 msgctxt "Short month name" msgid "May" msgstr "May" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1572 +#: js/messages.php:111 libraries/common.lib.php:1576 msgid "Jun" msgstr "Haz" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1574 +#: js/messages.php:113 libraries/common.lib.php:1578 msgid "Jul" msgstr "Tem" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1576 +#: js/messages.php:115 libraries/common.lib.php:1580 msgid "Aug" msgstr "Ağu" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1578 +#: js/messages.php:117 libraries/common.lib.php:1582 msgid "Sep" msgstr "Eyl" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1580 +#: js/messages.php:119 libraries/common.lib.php:1584 msgid "Oct" msgstr "Eki" #. l10n: Short month name -#: js/messages.php:121 libraries/common.lib.php:1582 +#: js/messages.php:121 libraries/common.lib.php:1586 msgid "Nov" msgstr "Kas" #. l10n: Short month name -#: js/messages.php:123 libraries/common.lib.php:1584 +#: js/messages.php:123 libraries/common.lib.php:1588 msgid "Dec" msgstr "Ara" @@ -1175,37 +1161,37 @@ msgid "Saturday" msgstr "Cumartesi" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1587 +#: js/messages.php:136 libraries/common.lib.php:1591 msgid "Sun" msgstr "Paz" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1589 +#: js/messages.php:138 libraries/common.lib.php:1593 msgid "Mon" msgstr "Ptesi" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1591 +#: js/messages.php:140 libraries/common.lib.php:1595 msgid "Tue" msgstr "Salı" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1593 +#: js/messages.php:142 libraries/common.lib.php:1597 msgid "Wed" msgstr "Çar" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1595 +#: js/messages.php:144 libraries/common.lib.php:1599 msgid "Thu" msgstr "Per" #. l10n: Short week day name -#: js/messages.php:146 libraries/common.lib.php:1597 +#: js/messages.php:146 libraries/common.lib.php:1601 msgid "Fri" msgstr "Cu" #. l10n: Short week day name -#: js/messages.php:148 libraries/common.lib.php:1599 +#: js/messages.php:148 libraries/common.lib.php:1603 msgid "Sat" msgstr "Ctesi" @@ -1265,17 +1251,12 @@ msgstr "Saniye" msgid "Font size" msgstr "Yazı Tipi boyutu" -#: libraries/File.class.php:336 libraries/File.class.php:424 -#: libraries/File.class.php:561 libraries/File.class.php:700 -msgid "Unknown error in file upload." -msgstr "Dosya göndermede bilinmeyen hata oldu." - -#: libraries/File.class.php:406 +#: libraries/File.class.php:315 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:409 +#: libraries/File.class.php:318 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -1283,23 +1264,27 @@ msgstr "" "Gönderilen dosya, HTML formu içinde belirlenmiş MAX_FILE_SIZE yönergesini " "aşıyor." -#: libraries/File.class.php:412 +#: libraries/File.class.php:321 msgid "The uploaded file was only partially uploaded." msgstr "Gönderilen dosya sadece kısmen gönderildi." -#: libraries/File.class.php:415 +#: libraries/File.class.php:324 msgid "Missing a temporary folder." msgstr "Eksik geçici klasör." -#: libraries/File.class.php:418 +#: libraries/File.class.php:327 msgid "Failed to write file to disk." msgstr "Dosyayı diske yazma başarısız." -#: libraries/File.class.php:421 +#: libraries/File.class.php:330 msgid "File upload stopped by extension." msgstr "Dosya gönderme uzantısından dolayı durduruldu." -#: libraries/File.class.php:898 +#: libraries/File.class.php:333 +msgid "Unknown error in file upload." +msgstr "Dosya göndermede bilinmeyen hata oldu." + +#: libraries/File.class.php:624 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -1307,37 +1292,37 @@ msgstr "" "Gönderilen dosyayı taşıma hatası, [a@./Documentation." "html#faq1_11@Documentation]SSS 1.11[/a]'e bakın" -#: libraries/Index.class.php:427 tbl_relation.php:528 +#: libraries/Index.class.php:427 tbl_relation.php:526 msgid "No index defined!" msgstr "Tanımlı indeks yok!" -#: libraries/Index.class.php:432 server_databases.php:131 tbl_tracking.php:315 +#: libraries/Index.class.php:432 server_databases.php:129 tbl_tracking.php:310 msgid "Indexes" msgstr "İndeksler" #: libraries/Index.class.php:443 libraries/mult_submits.inc.php:102 -#: libraries/tbl_properties.inc.php:518 tbl_structure.php:32 -#: tbl_structure.php:154 tbl_structure.php:158 tbl_structure.php:473 -#: tbl_tracking.php:321 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:31 +#: tbl_structure.php:153 tbl_structure.php:157 tbl_structure.php:471 +#: tbl_tracking.php:316 msgid "Unique" msgstr "Eşsiz" -#: libraries/Index.class.php:444 tbl_tracking.php:322 +#: libraries/Index.class.php:444 tbl_tracking.php:317 msgid "Packed" msgstr "Paketlendi" -#: libraries/Index.class.php:446 tbl_tracking.php:324 +#: libraries/Index.class.php:446 tbl_tracking.php:319 msgid "Cardinality" msgstr "Önemlilik" -#: libraries/Index.class.php:449 tbl_tracking.php:278 tbl_tracking.php:327 +#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322 msgid "Comment" msgstr "Yorum" #: libraries/Index.class.php:465 libraries/common.lib.php:609 -#: libraries/common.lib.php:1198 libraries/display_tbl.lib.php:1116 +#: libraries/common.lib.php:1191 libraries/display_tbl.lib.php:1115 #: libraries/import.lib.php:1119 libraries/import.lib.php:1143 -#: pdf_pages.php:284 setup/frames/index.inc.php:124 +#: pdf_pages.php:283 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:349 tbl_row_action.php:68 msgid "Edit" msgstr "Düzenle" @@ -1361,15 +1346,15 @@ msgstr "" "olabilir." #: libraries/List_Database.class.php:430 libraries/server_links.inc.php:40 -#: server_databases.php:87 server_privileges.php:1652 +#: server_databases.php:85 server_privileges.php:1656 #: setup/lib/messages.inc.php:107 test/theme.php:92 msgid "Databases" msgstr "Veritabanları" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:259 libraries/import.lib.php:134 pdf_schema.php:31 -#: pdf_schema.php:231 tbl_change.php:1023 tbl_operations.php:212 -#: tbl_relation.php:289 view_operations.php:61 +#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 +#: tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Hata" @@ -1391,40 +1376,40 @@ msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." msgstr[0] "%1$d satır eklendi." -#: libraries/StorageEngine.class.php:196 +#: libraries/StorageEngine.class.php:194 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:352 +#: libraries/StorageEngine.class.php:354 #, php-format msgid "%s is available on this MySQL server." msgstr "%s bu MySQL sunucusunda var." -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:357 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s bu MySQL sunucusu için etkisizleştirildi." -#: libraries/StorageEngine.class.php:359 +#: libraries/StorageEngine.class.php:361 #, 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:1018 +#: libraries/Table.class.php:1017 msgid "Invalid database" msgstr "Geçersiz veritabanı" -#: libraries/Table.class.php:1032 tbl_get_field.php:25 +#: libraries/Table.class.php:1031 tbl_get_field.php:25 msgid "Invalid table name" msgstr "Geçersiz tablo adı" -#: libraries/Table.class.php:1047 +#: libraries/Table.class.php:1046 #, 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:1131 +#: libraries/Table.class.php:1129 #, php-format msgid "Table %s has been renamed to %s" msgstr "%s tablosu %s olarak yeniden adlandırıldı" @@ -1442,22 +1427,22 @@ msgstr "Önizleme mevcut değil." msgid "take it" msgstr "Al" -#: libraries/Theme_Manager.class.php:114 +#: 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:152 +#: libraries/Theme_Manager.class.php:147 #, php-format msgid "Theme %s not found!" msgstr "%s teması bulunamadı!" -#: libraries/Theme_Manager.class.php:220 +#: 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:296 test/theme.php:160 themes.php:20 +#: libraries/Theme_Manager.class.php:291 test/theme.php:160 themes.php:20 #: themes.php:40 msgid "Theme / Style" msgstr "Tema / Stil" @@ -1574,19 +1559,19 @@ msgstr "Geçerli kimlik denetimi anahtarı takılı değil" msgid "Authenticating..." msgstr "Kimlik doğrulanıyor..." -#: libraries/blobstreaming.lib.php:689 +#: libraries/blobstreaming.lib.php:340 msgid "View image" msgstr "Resmi göster" -#: libraries/blobstreaming.lib.php:693 +#: libraries/blobstreaming.lib.php:344 msgid "Play audio" msgstr "Ses çal" -#: libraries/blobstreaming.lib.php:698 +#: libraries/blobstreaming.lib.php:349 msgid "View video" msgstr "Görüntüyü göster" -#: libraries/blobstreaming.lib.php:702 +#: libraries/blobstreaming.lib.php:353 msgid "Download file" msgstr "Dosyayı indir" @@ -1641,7 +1626,7 @@ msgstr "Sunucu" msgid "Invalid authentication method set in configuration:" msgstr "Yapılandırma içinde geçersiz kimlik denetimi yöntemi ayarı:" -#: libraries/common.inc.php:909 +#: libraries/common.inc.php:908 #, php-format msgid "You should upgrade to %s %s or later." msgstr "%s %s veya sonrasına yükseltmelisiniz." @@ -1666,7 +1651,8 @@ msgstr "en" #: libraries/common.lib.php:425 libraries/common.lib.php:427 #: libraries/common.lib.php:429 libraries/common.lib.php:445 #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 -#: libraries/display_export.lib.php:163 libraries/relation.lib.php:84 +#: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 +#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 #: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" @@ -1681,148 +1667,148 @@ msgstr "SQL sorgusu" msgid "MySQL said: " msgstr "MySQL çıktısı: " -#: libraries/common.lib.php:1136 +#: libraries/common.lib.php:1129 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "Failed to connect to SQL validator!" msgstr "MySQL sunucusuna bağlanamadı" -#: libraries/common.lib.php:1174 setup/lib/messages.inc.php:350 +#: libraries/common.lib.php:1167 setup/lib/messages.inc.php:350 msgid "Explain SQL" msgstr "SQL'i açıkla" -#: libraries/common.lib.php:1177 +#: libraries/common.lib.php:1170 msgid "Skip Explain SQL" msgstr "SQL Açıklamasını atla" -#: libraries/common.lib.php:1211 +#: libraries/common.lib.php:1204 msgid "Without PHP Code" msgstr "PHP Kodsuz" -#: libraries/common.lib.php:1214 setup/lib/messages.inc.php:352 +#: libraries/common.lib.php:1207 setup/lib/messages.inc.php:352 msgid "Create PHP Code" msgstr "PHP Kodu oluştur" -#: libraries/common.lib.php:1232 server_status.php:451 +#: libraries/common.lib.php:1225 server_status.php:451 #: setup/lib/messages.inc.php:351 msgid "Refresh" msgstr "Yenile" -#: libraries/common.lib.php:1241 +#: libraries/common.lib.php:1234 msgid "Skip Validate SQL" msgstr "SQL Onaylamayı atla" -#: libraries/common.lib.php:1244 setup/lib/messages.inc.php:353 +#: libraries/common.lib.php:1237 setup/lib/messages.inc.php:353 msgid "Validate SQL" msgstr "SQL'i onayla" -#: libraries/common.lib.php:1283 +#: libraries/common.lib.php:1287 msgid "Inline edit of this query" msgstr "Bu sorguyu sıralı düzenle" -#: libraries/common.lib.php:1285 +#: libraries/common.lib.php:1289 msgid "Inline" msgstr "Sıralı" -#: libraries/common.lib.php:1339 libraries/common.lib.php:1354 +#: libraries/common.lib.php:1343 libraries/common.lib.php:1358 msgid "Profiling" msgstr "Profil çıkart" -#: libraries/common.lib.php:1358 libraries/tbl_triggers.lib.php:27 +#: libraries/common.lib.php:1362 libraries/tbl_triggers.lib.php:27 #: server_processlist.php:57 msgid "Time" msgstr "Süre" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "B" msgstr "B" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "KiB" msgstr "KiB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "MiB" msgstr "MiB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "GiB" msgstr "GiB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "TiB" msgstr "TiB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "PiB" msgstr "PiB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "EiB" msgstr "EiB" #. l10n: Thousands separator -#: libraries/common.lib.php:1424 +#: libraries/common.lib.php:1428 msgid "," msgstr "," #. l10n: Decimal separator -#: libraries/common.lib.php:1426 +#: libraries/common.lib.php:1430 msgid "." msgstr "." #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1603 +#: libraries/common.lib.php:1607 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y, %H:%M:%S" -#: libraries/common.lib.php:1909 +#: libraries/common.lib.php:1913 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s gün, %s saat, %s dakika ve %s saniye" -#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 -#: libraries/display_tbl.lib.php:289 server_status.php:718 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 +#: libraries/display_tbl.lib.php:288 server_status.php:718 msgid "Begin" msgstr "Yukarı" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 -#: libraries/display_tbl.lib.php:290 server_binlog.php:154 +#: libraries/common.lib.php:2328 libraries/common.lib.php:2331 +#: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "Önceki" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 -#: libraries/display_tbl.lib.php:352 +#: libraries/common.lib.php:2359 libraries/common.lib.php:2362 +#: libraries/display_tbl.lib.php:351 msgid "End" msgstr "Son" -#: libraries/common.lib.php:2429 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr ""%s" veritabanına git." -#: libraries/common.lib.php:2448 +#: libraries/common.lib.php:2453 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "%s işlevselliği bilinen bir hata tarafından zarar görmüş, bakınız %s" -#: libraries/common.lib.php:2828 libraries/common.lib.php:2835 -#: libraries/db_links.inc.php:67 libraries/export/sql.php:24 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 +#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 -#: libraries/tbl_links.inc.php:59 querywindow.php:89 test/theme.php:96 +#: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2837 libraries/db_links.inc.php:103 -#: libraries/tbl_links.inc.php:94 libraries/tbl_links.inc.php:116 -#: view_operations.php:88 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: view_operations.php:87 msgid "Operations" msgstr "İşlemler" -#: libraries/core.lib.php:282 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1838,38 +1824,38 @@ msgstr "Olaylar" msgid "Name" msgstr "İsim" -#: libraries/db_links.inc.php:44 +#: libraries/db_links.inc.php:43 #, php-format msgid "Database %s has been dropped." msgstr "%s veritabanı kaldırıldı." -#: libraries/db_links.inc.php:56 libraries/db_links.inc.php:57 -#: libraries/db_links.inc.php:58 +#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 +#: libraries/db_links.inc.php:57 msgid "Database seems to be empty!" msgstr "Veritabanı boş olarak görünüyor!" -#: libraries/db_links.inc.php:80 libraries/relation.lib.php:142 -#: libraries/tbl_links.inc.php:68 +#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "İzleme" -#: libraries/db_links.inc.php:85 +#: libraries/db_links.inc.php:84 msgid "Query" msgstr "Sorgu" -#: libraries/db_links.inc.php:90 libraries/relation.lib.php:138 +#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 msgid "Designer" msgstr "Tasarımcı" -#: libraries/db_links.inc.php:97 libraries/server_links.inc.php:87 -#: libraries/tbl_links.inc.php:90 pmd_pdf.php:83 pmd_pdf.php:109 +#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "İçeri Aktar" -#: libraries/db_links.inc.php:110 libraries/server_links.inc.php:65 -#: server_privileges.php:111 server_privileges.php:1714 -#: server_privileges.php:2063 test/theme.php:116 +#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: server_privileges.php:110 server_privileges.php:1718 +#: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" msgstr "Yetkiler" @@ -1881,7 +1867,7 @@ msgstr "Yordamlar" msgid "Return type" msgstr "Dönüş türü" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1847 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1806 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -1889,8 +1875,8 @@ msgstr "" "Yaklaşık olabilir. [a@./Documentation.html#faq3_11@Documentation]SSS 3.11[/" "a]'e bakın" -#: libraries/db_structure.lib.php:60 server_databases.php:141 -#: tbl_printview.php:334 tbl_structure.php:681 +#: libraries/db_structure.lib.php:60 server_databases.php:139 +#: tbl_printview.php:333 tbl_structure.php:679 msgid "Overhead" msgstr "Ek Yük" @@ -1909,7 +1895,7 @@ msgstr "Sunucu yanıt vermiyor" 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:358 tbl_structure.php:607 +#: libraries/dbi/mysql.dbi.lib.php:358 tbl_structure.php:605 msgid "Details..." msgstr "Ayrıntılar..." @@ -1919,22 +1905,22 @@ msgid "Change password" msgstr "Parola değiştir" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:807 +#: libraries/replication_gui.lib.php:347 server_privileges.php:806 msgid "No Password" msgstr "Parola yok" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1530 server_synchronize.php:1174 +#: libraries/replication_gui.lib.php:351 server_privileges.php:795 +#: server_privileges.php:799 server_privileges.php:810 +#: server_privileges.php:1534 server_synchronize.php:1173 msgid "Password" msgstr "Parola" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:815 server_privileges.php:818 +#: server_privileges.php:814 server_privileges.php:817 msgid "Re-type" msgstr "Yeniden gir" @@ -1955,8 +1941,8 @@ msgstr "Yeni veritabanı oluştur" msgid "Create" msgstr "Oluştur" -#: libraries/display_create_database.lib.php:39 server_privileges.php:113 -#: server_privileges.php:1419 server_replication.php:34 +#: libraries/display_create_database.lib.php:39 server_privileges.php:112 +#: server_privileges.php:1423 server_replication.php:33 msgid "No Privileges" msgstr "Yetkiniz yok" @@ -1973,50 +1959,50 @@ msgstr "%s veritabanında yeni tablo oluştur" msgid "Number of columns" msgstr "Sütun sayısı" -#: libraries/display_export.lib.php:41 +#: libraries/display_export.lib.php:35 msgid "Could not load export plugins, please check your installation!" msgstr "" "Dışarı aktarma eklentileri yüklenemedi, lütfen kurulumunuzu kontrol edin!" -#: libraries/display_export.lib.php:106 +#: libraries/display_export.lib.php:100 #, php-format msgid "Dump %s row(s) starting at row # %s" msgstr "%s satır dökümü, %s. satırdan başlıyor" -#: libraries/display_export.lib.php:114 +#: libraries/display_export.lib.php:108 msgid "Dump all rows" msgstr "Tüm satırları yığınla" -#: libraries/display_export.lib.php:124 setup/lib/messages.inc.php:79 +#: libraries/display_export.lib.php:118 setup/lib/messages.inc.php:79 msgid "Save as file" msgstr "Dosya olarak kaydet" -#: libraries/display_export.lib.php:133 +#: libraries/display_export.lib.php:127 #, php-format msgid "Save on server in %s directory" msgstr "Sunucuda %s dizinine kaydet" -#: libraries/display_export.lib.php:141 setup/lib/messages.inc.php:87 +#: libraries/display_export.lib.php:135 setup/lib/messages.inc.php:87 msgid "Overwrite existing file(s)" msgstr "Mevcut dosya(ların)nın üzerine yaz" -#: libraries/display_export.lib.php:147 +#: libraries/display_export.lib.php:141 msgid "File name template" msgstr "Dosya adı şablonu" -#: libraries/display_export.lib.php:151 +#: libraries/display_export.lib.php:145 msgid "server name" msgstr "sunucu adı" -#: libraries/display_export.lib.php:154 +#: libraries/display_export.lib.php:148 msgid "database name" msgstr "veritabanı adı" -#: libraries/display_export.lib.php:157 +#: libraries/display_export.lib.php:151 msgid "table name" msgstr "tablo adı" -#: libraries/display_export.lib.php:161 +#: libraries/display_export.lib.php:155 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2027,39 +2013,39 @@ msgstr "" "biçimlendirme dizgisi kullanabilirsiniz. İlave olarak yandaki dönüşümler " "meydana gelecek: %3$s. Diğer metin olduğu gibi tutulacak." -#: libraries/display_export.lib.php:202 +#: libraries/display_export.lib.php:196 msgid "remember template" msgstr "şablonu hatırla" -#: libraries/display_export.lib.php:210 libraries/display_import.lib.php:177 +#: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 #: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 msgid "Character set of the file:" msgstr "Dosyanın karakter grubu:" -#: libraries/display_export.lib.php:235 setup/lib/messages.inc.php:81 +#: libraries/display_export.lib.php:229 setup/lib/messages.inc.php:81 msgid "Compression" msgstr "Sıkıştırma" -#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:196 -#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:529 -#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:574 -#: server_privileges.php:1867 server_processlist.php:74 +#: libraries/display_export.lib.php:234 libraries/display_import.lib.php:196 +#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:528 +#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:573 +#: server_privileges.php:1871 server_processlist.php:74 msgid "None" msgstr "Hiçbiri" -#: libraries/display_export.lib.php:247 +#: libraries/display_export.lib.php:241 msgid "\"zipped\"" msgstr "\"zip olarak\"" -#: libraries/display_export.lib.php:253 +#: libraries/display_export.lib.php:247 msgid "\"gzipped\"" msgstr "\"gzip olarak\"" -#: libraries/display_export.lib.php:259 +#: libraries/display_export.lib.php:253 msgid "\"bzipped\"" msgstr "\"bzip olarak\"" -#: libraries/display_export.lib.php:274 libraries/export/sql.php:42 +#: libraries/display_export.lib.php:268 libraries/export/sql.php:42 #: libraries/import/sql.php:31 msgid "SQL compatibility mode" msgstr "SQL uyumluluk kipi" @@ -2099,12 +2085,12 @@ msgid "File uploads are not allowed on this server." msgstr "Bu sunucuda dosya gönderimlerine izin verilmez." #: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 -#: tbl_change.php:1024 +#: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "Gönderme işi için ayarladığınız dizine ulaşılamıyor" #: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 -#: tbl_change.php:1027 +#: tbl_change.php:925 msgid "web server upload directory" msgstr "web sunucusu gönderme dizini" @@ -2190,41 +2176,41 @@ msgstr "Kağıt boyutu" msgid "Language" msgstr "Dil" -#: libraries/display_tbl.lib.php:303 +#: libraries/display_tbl.lib.php:302 #, php-format msgid "%d is not valid row number." msgstr "%d geçerli bir satır sayısı değil." -#: libraries/display_tbl.lib.php:309 +#: libraries/display_tbl.lib.php:308 msgid "row(s) starting from row #" msgstr "satır, başlayacağı satır numarası" -#: libraries/display_tbl.lib.php:315 +#: libraries/display_tbl.lib.php:314 msgid "horizontal" msgstr "yatay" -#: libraries/display_tbl.lib.php:316 +#: libraries/display_tbl.lib.php:315 msgid "horizontal (rotated headers)" msgstr "yatay (döndürülmüş başlıklar)" -#: libraries/display_tbl.lib.php:317 +#: libraries/display_tbl.lib.php:316 msgid "vertical" msgstr "dikey" -#: libraries/display_tbl.lib.php:323 +#: libraries/display_tbl.lib.php:322 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "%s kipinde ve %s hücre sonra başlığı tekrarla" -#: libraries/display_tbl.lib.php:345 +#: libraries/display_tbl.lib.php:344 msgid "This operation could take a long time. Proceed anyway?" msgstr "Bu işlem uzun zaman alabilir. Yine de ilerlensin mi?" -#: libraries/display_tbl.lib.php:511 +#: libraries/display_tbl.lib.php:510 msgid "Sort by key" msgstr "Anahtara göre sırala" -#: libraries/display_tbl.lib.php:554 libraries/export/codegen.php:38 +#: libraries/display_tbl.lib.php:553 libraries/export/codegen.php:38 #: libraries/export/csv.php:29 libraries/export/excel.php:34 #: libraries/export/htmlword.php:28 libraries/export/latex.php:32 #: libraries/export/mediawiki.php:21 libraries/export/ods.php:26 @@ -2234,97 +2220,97 @@ msgstr "Anahtara göre sırala" #: libraries/export/xlsx.php:26 libraries/export/xml.php:23 #: libraries/export/yaml.php:27 libraries/import.lib.php:1114 #: libraries/import.lib.php:1136 libraries/import/csv.php:31 -#: libraries/import/docsql.php:33 libraries/import/ldi.php:46 +#: libraries/import/docsql.php:32 libraries/import/ldi.php:46 #: libraries/import/ods.php:30 libraries/import/sql.php:19 #: libraries/import/xls.php:25 libraries/import/xlsx.php:25 -#: libraries/import/xml.php:25 tbl_select.php:264 tbl_structure.php:752 +#: libraries/import/xml.php:25 tbl_select.php:263 tbl_structure.php:750 msgid "Options" msgstr "Seçenekler" -#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:569 +#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:568 msgid "Partial Texts" msgstr "Kısmi Metinler" -#: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:573 +#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:572 msgid "Full Texts" msgstr "Tam Metinler" -#: libraries/display_tbl.lib.php:586 +#: libraries/display_tbl.lib.php:585 msgid "Relational key" msgstr "Bağlantılı anahtar" -#: libraries/display_tbl.lib.php:587 +#: libraries/display_tbl.lib.php:586 msgid "Relational display column" msgstr "Bağlantılı görüntü sütunu" -#: libraries/display_tbl.lib.php:594 +#: libraries/display_tbl.lib.php:593 msgid "Show binary contents" msgstr "Binari içerikleri göster" -#: libraries/display_tbl.lib.php:596 +#: libraries/display_tbl.lib.php:595 msgid "Show BLOB contents" msgstr "BLOB içerikleri göster" -#: libraries/display_tbl.lib.php:598 +#: libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "Binari içerikleri HEX olarak göster" -#: libraries/display_tbl.lib.php:606 pmd_general.php:140 tbl_change.php:312 -#: tbl_change.php:318 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:307 +#: tbl_change.php:313 msgid "Hide" msgstr "Gizle" -#: libraries/display_tbl.lib.php:606 libraries/relation.lib.php:122 -#: libraries/tbl_properties.inc.php:143 transformation_overview.php:46 +#: libraries/display_tbl.lib.php:605 libraries/relation.lib.php:117 +#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46 msgid "Browser transformation" msgstr "Tarayıcı dönüşümü" -#: libraries/display_tbl.lib.php:1125 libraries/display_tbl.lib.php:1129 -#: libraries/display_tbl.lib.php:1131 +#: libraries/display_tbl.lib.php:1124 libraries/display_tbl.lib.php:1128 +#: libraries/display_tbl.lib.php:1130 msgid "Execute bookmarked query" msgstr "İşaretlenmiş sorguyu çalıştır" -#: libraries/display_tbl.lib.php:1144 libraries/display_tbl.lib.php:1156 +#: libraries/display_tbl.lib.php:1143 libraries/display_tbl.lib.php:1155 msgid "The row has been deleted" msgstr "Satır silindi" -#: libraries/display_tbl.lib.php:1183 libraries/display_tbl.lib.php:2055 +#: libraries/display_tbl.lib.php:1182 libraries/display_tbl.lib.php:2014 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "Sonlandır" -#: libraries/display_tbl.lib.php:1933 +#: libraries/display_tbl.lib.php:1892 msgid "in query" msgstr "sorgu içerisinde" -#: libraries/display_tbl.lib.php:1951 +#: libraries/display_tbl.lib.php:1910 msgid "Showing rows" msgstr "Satırlar gösteriliyor" -#: libraries/display_tbl.lib.php:1961 +#: libraries/display_tbl.lib.php:1920 msgid "total" msgstr "toplam" -#: libraries/display_tbl.lib.php:1969 sql.php:523 +#: libraries/display_tbl.lib.php:1928 sql.php:522 #, php-format msgid "Query took %01.4f sec" msgstr "Sorgu %01.4f san. sürdü" -#: libraries/display_tbl.lib.php:2088 libraries/mult_submits.inc.php:112 -#: querywindow.php:115 querywindow.php:119 querywindow.php:122 -#: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:469 +#: libraries/display_tbl.lib.php:2047 libraries/mult_submits.inc.php:112 +#: querywindow.php:114 querywindow.php:118 querywindow.php:121 +#: tbl_structure.php:23 tbl_structure.php:148 tbl_structure.php:467 msgid "Change" msgstr "Değiştir" -#: libraries/display_tbl.lib.php:2158 +#: libraries/display_tbl.lib.php:2117 msgid "Query results operations" msgstr "Sorgu sonuçları işlemleri" -#: libraries/display_tbl.lib.php:2186 +#: libraries/display_tbl.lib.php:2145 msgid "Print view (with full texts)" msgstr "Baskı görünümü (tüm metinler ile)" -#: libraries/display_tbl.lib.php:2359 +#: libraries/display_tbl.lib.php:2318 msgid "Link not found" msgstr "Bağlantı bulunamadı" @@ -2380,9 +2366,9 @@ msgstr "InnoDB Durumu" msgid "Buffer Pool Usage" msgstr "Ara Bellek Havuzu Kullanımı" -#: libraries/engines/innodb.lib.php:168 server_databases.php:136 -#: server_databases.php:304 server_status.php:524 server_status.php:585 -#: server_status.php:606 tbl_printview.php:349 tbl_structure.php:695 +#: libraries/engines/innodb.lib.php:168 server_databases.php:134 +#: server_databases.php:302 server_status.php:524 server_status.php:585 +#: server_status.php:606 tbl_printview.php:348 tbl_structure.php:693 msgid "Total" msgstr "Toplam" @@ -2520,6 +2506,87 @@ msgstr "" "CREATE INDEX veya ALTER TABLE komutuyla indeksler oluşturulduğunda ayrılan " "ara bellek miktarı." +#: libraries/engines/pbms.lib.php:31 +#, fuzzy +#| msgid "Garbage threshold" +msgid "Garbage Threshold" +msgstr "Artık başı" + +#: libraries/engines/pbms.lib.php:32 +#, fuzzy +#| msgid "" +#| "The percentage of garbage in a data log file before it is compacted. This " +#| "is a value between 1 and 99. The default is 50." +msgid "The percentage of garbage in a repository file before it is compacted." +msgstr "" +"Küçültülmeden önce veri günlük dosyasındaki artık yüzdesi. Bu 1 ile 99 " +"arasında bir değerdir. Varsayılan değer 50'dir." + +#: libraries/engines/pbms.lib.php:36 libraries/replication_gui.lib.php:69 +#: server_synchronize.php:1161 +msgid "Port" +msgstr "B.Noktası" + +#: libraries/engines/pbms.lib.php:37 +msgid "" +"The port for the PBMS stream-based communications. Setting this value to 0 " +"will disable HTTP communication with the daemon." +msgstr "" + +#: libraries/engines/pbms.lib.php:41 +msgid "Repository Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:42 +msgid "" +"The maximum size of a BLOB repository file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:46 +msgid "Temp Blob Timeout" +msgstr "" + +#: libraries/engines/pbms.lib.php:47 +msgid "" +"The timeout, in seconds, for temporary BLOBs. Uploaded BLOB data is removed " +"after this time, unless they are referenced by a record in the database." +msgstr "" + +#: libraries/engines/pbms.lib.php:51 +#, fuzzy +#| msgid "Log file threshold" +msgid "Temp Log Threshold" +msgstr "Günlük dosyası başı" + +#: libraries/engines/pbms.lib.php:52 +msgid "" +"The maximum size of a temporary BLOB log file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:56 +msgid "Max Keep Alive" +msgstr "" + +#: libraries/engines/pbms.lib.php:57 +msgid "" +"The timeout for inactive connection with the keep-alive flag set. After this " +"time the connection will be closed. The time-out is in milliseconds (1/1000)." +msgstr "" + +#: libraries/engines/pbms.lib.php:61 +msgid "Metadata Headers" +msgstr "" + +#: libraries/engines/pbms.lib.php:62 +msgid "" +"A \":\" delimited list of metadata headers to be used to initialize the " +"pbms_metadata_header table when a database is created." +msgstr "" + #: libraries/engines/pbxt.lib.php:22 msgid "Index cache size" msgstr "İndeks önbellek boyutu" @@ -2670,7 +2737,7 @@ msgstr "" "diğer taraftan yeniden adlandırılır ve bir sonraki en yüksek numara verilir." #: libraries/export/codegen.php:36 setup/lib/messages.inc.php:85 -#: tbl_printview.php:374 tbl_structure.php:736 +#: tbl_printview.php:373 tbl_structure.php:734 msgid "Format" msgstr "Biçim" @@ -2733,9 +2800,9 @@ msgstr "Microsoft Word 2000" #: libraries/export/htmlword.php:23 libraries/export/latex.php:59 #: libraries/export/latex.php:205 libraries/export/odt.php:47 #: libraries/export/sql.php:105 libraries/export/sql.php:865 -#: libraries/export/texytext.php:27 server_databases.php:126 -#: server_privileges.php:576 server_replication.php:315 tbl_printview.php:315 -#: tbl_structure.php:664 +#: libraries/export/texytext.php:27 server_databases.php:124 +#: server_privileges.php:575 server_replication.php:314 tbl_printview.php:314 +#: tbl_structure.php:662 msgid "Data" msgstr "Veri" @@ -2786,13 +2853,13 @@ msgid "Label key" msgstr "Etiket anahtarı" #: libraries/export/latex.php:46 libraries/export/odt.php:34 -#: libraries/export/sql.php:90 tbl_relation.php:398 +#: libraries/export/sql.php:90 tbl_relation.php:396 msgid "Relations" msgstr "İlişkiler" #: libraries/export/latex.php:52 libraries/export/odt.php:40 #: libraries/export/odt.php:317 libraries/export/sql.php:94 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "MIME türü" @@ -2800,10 +2867,10 @@ msgstr "MIME türü" #: libraries/export/xml.php:101 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1529 server_privileges.php:2061 -#: server_processlist.php:54 server_synchronize.php:1158 +#: libraries/replication_gui.lib.php:331 server_privileges.php:730 +#: server_privileges.php:733 server_privileges.php:789 +#: server_privileges.php:1533 server_privileges.php:2065 +#: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "Anamakine" @@ -2990,8 +3057,8 @@ msgstr "Görünümleri dışarı aktar" msgid "Export contents" msgstr "İçerikleri dışarı aktar" -#: libraries/footer.inc.php:182 libraries/footer.inc.php:193 -#: libraries/footer.inc.php:196 +#: libraries/footer.inc.php:180 libraries/footer.inc.php:191 +#: libraries/footer.inc.php:194 msgid "Open new phpMyAdmin window" msgstr "Yeni phpMyAdmin penceresi aç" @@ -3007,7 +3074,7 @@ msgstr "SQL sonucu" msgid "Generated by" msgstr "Üreten:" -#: libraries/import.lib.php:151 sql.php:519 tbl_change.php:180 +#: libraries/import.lib.php:151 sql.php:518 tbl_change.php:175 #: 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)." @@ -3065,7 +3132,7 @@ msgstr "Kopya satırları yoksay" msgid "Column names in first row" msgstr "İlk sıradaki sütun isimleri" -#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:501 +#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:500 #: view_create.php:147 msgid "Column names" msgstr "Sütun adları" @@ -3091,12 +3158,12 @@ msgstr "CSV girişinin %d. satırında geçersiz biçim." msgid "Invalid column count in CSV input on line %d." msgstr "CSV girişinde %d. satırda geçersiz sütun sayısı." -#: libraries/import/docsql.php:28 +#: libraries/import/docsql.php:27 msgid "DocSQL" msgstr "DocSQL" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 -#: server_synchronize.php:427 server_synchronize.php:870 +#: libraries/import/docsql.php:30 libraries/tbl_properties.inc.php:616 +#: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "Tablo adı" @@ -3152,26 +3219,26 @@ msgstr "Hiçbiri" msgid "Convert to Kana" msgstr "Kana'ya dönüştür" -#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:512 -#: tbl_structure.php:28 tbl_structure.php:152 tbl_structure.php:156 -#: tbl_structure.php:472 +#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:511 +#: tbl_structure.php:27 tbl_structure.php:151 tbl_structure.php:155 +#: tbl_structure.php:470 msgid "Primary" msgstr "Birincil" #: libraries/mult_submits.inc.php:97 libraries/tbl_properties.inc.php:115 -#: libraries/tbl_properties.inc.php:524 tbl_printview.php:324 -#: tbl_structure.php:30 tbl_structure.php:153 tbl_structure.php:157 -#: tbl_structure.php:474 tbl_structure.php:672 +#: libraries/tbl_properties.inc.php:523 tbl_printview.php:323 +#: tbl_structure.php:29 tbl_structure.php:152 tbl_structure.php:156 +#: tbl_structure.php:472 tbl_structure.php:670 msgid "Index" msgstr "İndeks" -#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:530 -#: tbl_structure.php:34 tbl_structure.php:155 tbl_structure.php:159 -#: tbl_structure.php:477 +#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:529 +#: tbl_structure.php:33 tbl_structure.php:154 tbl_structure.php:158 +#: tbl_structure.php:475 msgid "Fulltext" msgstr "Tam metin" -#: libraries/mult_submits.inc.php:434 tbl_replace.php:330 +#: libraries/mult_submits.inc.php:433 tbl_replace.php:330 msgid "No change" msgstr "Değişiklik yok" @@ -3179,190 +3246,190 @@ msgstr "Değişiklik yok" msgid "Charset" msgstr "Karakter grubu" -#: libraries/mysql_charsets.lib.php:210 libraries/mysql_charsets.lib.php:411 -#: tbl_change.php:515 +#: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 +#: tbl_change.php:510 msgid "Binary" msgstr "Binari" -#: libraries/mysql_charsets.lib.php:222 +#: libraries/mysql_charsets.lib.php:214 msgid "Bulgarian" msgstr "Bulgarca" -#: libraries/mysql_charsets.lib.php:226 libraries/mysql_charsets.lib.php:351 +#: libraries/mysql_charsets.lib.php:218 libraries/mysql_charsets.lib.php:343 msgid "Simplified Chinese" msgstr "Basitleştirilmiş Çince" -#: libraries/mysql_charsets.lib.php:228 libraries/mysql_charsets.lib.php:371 +#: libraries/mysql_charsets.lib.php:220 libraries/mysql_charsets.lib.php:363 msgid "Traditional Chinese" msgstr "Geleneksel Çince" -#: libraries/mysql_charsets.lib.php:232 libraries/mysql_charsets.lib.php:418 +#: libraries/mysql_charsets.lib.php:224 libraries/mysql_charsets.lib.php:410 msgid "case-insensitive" msgstr "büyük küçük harfe duyarsız" -#: libraries/mysql_charsets.lib.php:235 libraries/mysql_charsets.lib.php:420 +#: libraries/mysql_charsets.lib.php:227 libraries/mysql_charsets.lib.php:412 msgid "case-sensitive" msgstr "büyük küçük harfe duyarlı" -#: libraries/mysql_charsets.lib.php:238 +#: libraries/mysql_charsets.lib.php:230 msgid "Croatian" msgstr "Hırvatça" -#: libraries/mysql_charsets.lib.php:241 +#: libraries/mysql_charsets.lib.php:233 msgid "Czech" msgstr "Çekçe" -#: libraries/mysql_charsets.lib.php:244 +#: libraries/mysql_charsets.lib.php:236 msgid "Danish" msgstr "Danca" -#: libraries/mysql_charsets.lib.php:247 +#: libraries/mysql_charsets.lib.php:239 msgid "English" msgstr "İngilizce" -#: libraries/mysql_charsets.lib.php:250 +#: libraries/mysql_charsets.lib.php:242 msgid "Esperanto" msgstr "Esperanto" -#: libraries/mysql_charsets.lib.php:253 +#: libraries/mysql_charsets.lib.php:245 msgid "Estonian" msgstr "Estçe" -#: libraries/mysql_charsets.lib.php:256 libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:248 libraries/mysql_charsets.lib.php:251 msgid "German" msgstr "Almanca" -#: libraries/mysql_charsets.lib.php:256 +#: libraries/mysql_charsets.lib.php:248 msgid "dictionary" msgstr "sözlük" -#: libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:251 msgid "phone book" msgstr "telefon defteri" -#: libraries/mysql_charsets.lib.php:262 +#: libraries/mysql_charsets.lib.php:254 msgid "Hungarian" msgstr "Macarca" -#: libraries/mysql_charsets.lib.php:265 +#: libraries/mysql_charsets.lib.php:257 msgid "Icelandic" msgstr "İzlandaca" -#: libraries/mysql_charsets.lib.php:268 libraries/mysql_charsets.lib.php:358 +#: libraries/mysql_charsets.lib.php:260 libraries/mysql_charsets.lib.php:350 msgid "Japanese" msgstr "Japonca" -#: libraries/mysql_charsets.lib.php:271 +#: libraries/mysql_charsets.lib.php:263 msgid "Latvian" msgstr "Litvanyaca" -#: libraries/mysql_charsets.lib.php:274 +#: libraries/mysql_charsets.lib.php:266 msgid "Lithuanian" msgstr "Litvanyaca" -#: libraries/mysql_charsets.lib.php:277 libraries/mysql_charsets.lib.php:380 +#: libraries/mysql_charsets.lib.php:269 libraries/mysql_charsets.lib.php:372 msgid "Korean" msgstr "Korece" -#: libraries/mysql_charsets.lib.php:280 +#: libraries/mysql_charsets.lib.php:272 msgid "Persian" msgstr "Farsça" -#: libraries/mysql_charsets.lib.php:283 +#: libraries/mysql_charsets.lib.php:275 msgid "Polish" msgstr "Polonyaca" -#: libraries/mysql_charsets.lib.php:286 libraries/mysql_charsets.lib.php:334 +#: libraries/mysql_charsets.lib.php:278 libraries/mysql_charsets.lib.php:326 msgid "West European" msgstr "Batı Avrupa" -#: libraries/mysql_charsets.lib.php:289 +#: libraries/mysql_charsets.lib.php:281 msgid "Romanian" msgstr "Romence" -#: libraries/mysql_charsets.lib.php:292 +#: libraries/mysql_charsets.lib.php:284 msgid "Slovak" msgstr "Slovakça" -#: libraries/mysql_charsets.lib.php:295 +#: libraries/mysql_charsets.lib.php:287 msgid "Slovenian" msgstr "Slovence" -#: libraries/mysql_charsets.lib.php:298 +#: libraries/mysql_charsets.lib.php:290 msgid "Spanish" msgstr "İspanyolca" -#: libraries/mysql_charsets.lib.php:301 +#: libraries/mysql_charsets.lib.php:293 msgid "Traditional Spanish" msgstr "Geleneksel İspanyolca" -#: libraries/mysql_charsets.lib.php:304 libraries/mysql_charsets.lib.php:401 +#: libraries/mysql_charsets.lib.php:296 libraries/mysql_charsets.lib.php:393 msgid "Swedish" msgstr "İsveççe" -#: libraries/mysql_charsets.lib.php:307 libraries/mysql_charsets.lib.php:404 +#: libraries/mysql_charsets.lib.php:299 libraries/mysql_charsets.lib.php:396 msgid "Thai" msgstr "Tayca" -#: libraries/mysql_charsets.lib.php:310 libraries/mysql_charsets.lib.php:398 +#: libraries/mysql_charsets.lib.php:302 libraries/mysql_charsets.lib.php:390 msgid "Turkish" msgstr "Türkçe" -#: libraries/mysql_charsets.lib.php:313 libraries/mysql_charsets.lib.php:395 +#: libraries/mysql_charsets.lib.php:305 libraries/mysql_charsets.lib.php:387 msgid "Ukrainian" msgstr "Ukraynaca" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 msgid "Unicode" msgstr "Unicode" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 -#: libraries/mysql_charsets.lib.php:334 libraries/mysql_charsets.lib.php:341 -#: libraries/mysql_charsets.lib.php:363 libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 +#: libraries/mysql_charsets.lib.php:326 libraries/mysql_charsets.lib.php:333 +#: libraries/mysql_charsets.lib.php:355 libraries/mysql_charsets.lib.php:366 msgid "multilingual" msgstr "çokdilli" -#: libraries/mysql_charsets.lib.php:341 +#: libraries/mysql_charsets.lib.php:333 msgid "Central European" msgstr "Orta Avrupa" -#: libraries/mysql_charsets.lib.php:346 +#: libraries/mysql_charsets.lib.php:338 msgid "Russian" msgstr "Rusça" -#: libraries/mysql_charsets.lib.php:363 +#: libraries/mysql_charsets.lib.php:355 msgid "Baltic" msgstr "Baltık" -#: libraries/mysql_charsets.lib.php:368 +#: libraries/mysql_charsets.lib.php:360 msgid "Armenian" msgstr "Ermenice" -#: libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:366 msgid "Cyrillic" msgstr "Kiril" -#: libraries/mysql_charsets.lib.php:377 +#: libraries/mysql_charsets.lib.php:369 msgid "Arabic" msgstr "Arapça" -#: libraries/mysql_charsets.lib.php:383 +#: libraries/mysql_charsets.lib.php:375 msgid "Hebrew" msgstr "İbranice" -#: libraries/mysql_charsets.lib.php:386 +#: libraries/mysql_charsets.lib.php:378 msgid "Georgian" msgstr "Gürcüce" -#: libraries/mysql_charsets.lib.php:389 +#: libraries/mysql_charsets.lib.php:381 msgid "Greek" msgstr "Yunanca" -#: libraries/mysql_charsets.lib.php:392 +#: libraries/mysql_charsets.lib.php:384 msgid "Czech-Slovak" msgstr "Çekçe-Slovakça" -#: libraries/mysql_charsets.lib.php:407 libraries/mysql_charsets.lib.php:414 +#: libraries/mysql_charsets.lib.php:399 libraries/mysql_charsets.lib.php:406 msgid "unknown" msgstr "bilinmeyen" @@ -3388,59 +3455,59 @@ msgstr "Sorgu penceresi" msgid "This format has no options" msgstr "Bu biçimin seçenekleri yok" -#: libraries/relation.lib.php:82 +#: libraries/relation.lib.php:77 msgid "not OK" msgstr "TAMAM değil" -#: libraries/relation.lib.php:86 pmd_general.php:339 +#: libraries/relation.lib.php:81 pmd_general.php:339 msgid "OK" msgstr "TAMAM" -#: libraries/relation.lib.php:87 +#: libraries/relation.lib.php:82 msgid "Enabled" msgstr "Etkin" -#: libraries/relation.lib.php:110 +#: libraries/relation.lib.php:105 msgid "Display Features" msgstr "Özellikleri Göster" -#: libraries/relation.lib.php:116 +#: libraries/relation.lib.php:111 msgid "Creation of PDFs" msgstr "PDF'lerin oluşturulması" -#: libraries/relation.lib.php:120 +#: libraries/relation.lib.php:115 msgid "Displaying Column Comments" msgstr "Sütun Yorumları gösteriliyor" -#: libraries/relation.lib.php:125 +#: libraries/relation.lib.php:120 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "Sütun_Yorumları tablonuzun nasıl güncelleneceğini öğrenmek için lütfen " "belgelere bakın" -#: libraries/relation.lib.php:130 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 msgid "Bookmarked SQL query" msgstr "SQL sorgusu işaretlendi" -#: libraries/relation.lib.php:134 querywindow.php:99 querywindow.php:207 +#: libraries/relation.lib.php:129 querywindow.php:98 querywindow.php:205 msgid "SQL history" msgstr "SQL geçmişi" -#: libraries/relation.lib.php:146 +#: libraries/relation.lib.php:141 msgid "Quick steps to setup advanced features:" msgstr "Gelişmiş özellikleri kurmak için hızlı adımlar:" -#: libraries/relation.lib.php:148 +#: libraries/relation.lib.php:143 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "Gerekli tabloları script/create_tables.sql ile oluştur." -#: libraries/relation.lib.php:149 +#: libraries/relation.lib.php:144 msgid "Create a pma user and give access to these tables." msgstr "Pma kullanıcısı oluştur ve bu tablolara erişim ver." -#: libraries/relation.lib.php:150 +#: libraries/relation.lib.php:145 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." @@ -3448,13 +3515,13 @@ msgstr "" "(config.inc.php) yapılandırma dosyasında gelişmiş özellikler " "etkin, örneğin config.sample.inc.php dosyasından başlayarak." -#: libraries/relation.lib.php:151 +#: libraries/relation.lib.php:146 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" "Güncellenmiş yapılandırma dosyasını yüklemek için phpMyAdmin'e yeniden " "oturum açın." -#: libraries/relation.lib.php:1158 +#: libraries/relation.lib.php:1153 msgid "no description" msgstr "Açıklama yok" @@ -3462,7 +3529,7 @@ msgstr "Açıklama yok" msgid "Slave configuration" msgstr "Slave yapılandırması" -#: libraries/replication_gui.lib.php:53 server_replication.php:346 +#: libraries/replication_gui.lib.php:53 server_replication.php:345 msgid "Change or reconfigure master server" msgstr "Asıl sunucuyu değiştir veya yeniden yapılandır" @@ -3476,16 +3543,12 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:711 -#: server_privileges.php:714 server_privileges.php:721 -#: server_synchronize.php:1170 +#: libraries/replication_gui.lib.php:261 server_privileges.php:710 +#: server_privileges.php:713 server_privileges.php:720 +#: server_synchronize.php:1169 msgid "User name" msgstr "Kullanıcı Adı" -#: libraries/replication_gui.lib.php:69 server_synchronize.php:1162 -msgid "Port" -msgstr "B.Noktası" - #: libraries/replication_gui.lib.php:105 msgid "Master status" msgstr "Master durumu" @@ -3500,8 +3563,8 @@ msgid "Variable" msgstr "Değişken" #: libraries/replication_gui.lib.php:117 server_status.php:737 -#: tbl_change.php:322 tbl_printview.php:368 tbl_select.php:137 -#: tbl_structure.php:728 +#: tbl_change.php:317 tbl_printview.php:367 tbl_select.php:136 +#: tbl_structure.php:726 msgid "Value" msgstr "Değer" @@ -3517,38 +3580,38 @@ msgstr "" "Sadece slave'ler, bu listede --report-host=host_name seçeneğiyle görünen bu " "şekilde başlar." -#: libraries/replication_gui.lib.php:242 server_replication.php:193 +#: libraries/replication_gui.lib.php:242 server_replication.php:192 msgid "Add slave replication user" msgstr "Slave kopya etme kullanıcısı ekle" -#: libraries/replication_gui.lib.php:256 server_privileges.php:716 +#: libraries/replication_gui.lib.php:256 server_privileges.php:715 msgid "Any user" msgstr "Herhangi kullanıcı" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1920 server_privileges.php:1950 +#: libraries/replication_gui.lib.php:348 server_privileges.php:716 +#: server_privileges.php:783 server_privileges.php:807 +#: server_privileges.php:1924 server_privileges.php:1954 msgid "Use text field" msgstr "Metin alanını kullan" -#: libraries/replication_gui.lib.php:304 server_privileges.php:764 +#: libraries/replication_gui.lib.php:304 server_privileges.php:763 msgid "Any host" msgstr "Herhangi anamakine" -#: libraries/replication_gui.lib.php:308 server_privileges.php:768 +#: libraries/replication_gui.lib.php:308 server_privileges.php:767 msgid "Local" msgstr "Yerel" -#: libraries/replication_gui.lib.php:314 server_privileges.php:773 +#: libraries/replication_gui.lib.php:314 server_privileges.php:772 msgid "This Host" msgstr "Bu Anamakine" -#: libraries/replication_gui.lib.php:320 server_privileges.php:779 +#: libraries/replication_gui.lib.php:320 server_privileges.php:778 msgid "Use Host Table" msgstr "Anamakine Tablosu kullan" -#: libraries/replication_gui.lib.php:333 server_privileges.php:792 +#: libraries/replication_gui.lib.php:333 server_privileges.php:791 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3576,8 +3639,8 @@ msgstr "Bilinmeyen dil: %1$s." msgid "Servers" msgstr "Sunucular" -#: libraries/server_links.inc.php:52 server_engines.php:111 -#: server_engines.php:115 server_status.php:414 test/theme.php:104 +#: libraries/server_links.inc.php:52 server_engines.php:125 +#: server_engines.php:129 server_status.php:414 test/theme.php:104 msgid "Variables" msgstr "Değişkenler" @@ -3598,12 +3661,12 @@ msgstr "Binari günlüğü" msgid "Processes" msgstr "İşlemler" -#: libraries/server_links.inc.php:91 server_synchronize.php:1091 -#: server_synchronize.php:1099 +#: libraries/server_links.inc.php:91 server_synchronize.php:1090 +#: server_synchronize.php:1098 msgid "Synchronize" msgstr "Eşitle" -#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1109 +#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1108 msgid "Source database" msgstr "Kaynak veritabanı" @@ -3621,7 +3684,7 @@ msgstr "Uzak sunucu" msgid "Difference" msgstr "Farkı" -#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1111 +#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1110 msgid "Target database" msgstr "Hedef veritabanı" @@ -3639,11 +3702,11 @@ msgstr "%s veritabanı üzerinde SQL sorgusunu/sorgularını çalıştır" msgid "Columns" msgstr "Sütun" -#: libraries/sql_query_form.lib.php:342 sql.php:664 sql.php:665 sql.php:682 +#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "Bu SQL sorgusunu işaretle" -#: libraries/sql_query_form.lib.php:349 sql.php:676 +#: libraries/sql_query_form.lib.php:349 sql.php:669 msgid "Let every user access this bookmark" msgstr "Bütün kullanıcıların bu işaretlemeye erişimlerine izin ver" @@ -3739,12 +3802,12 @@ msgstr "" "SQL onaylayıcısı başlatılamadı. %sBelgelerde%s anlatıldığı gibi lütfen " "gerekli PHP uzantılarının kurulu olduğunu kontrol edin." -#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:139 -#: libraries/tbl_links.inc.php:140 +#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 +#: libraries/tbl_links.inc.php:139 msgid "Table seems to be empty!" msgstr "Tablo boş olarak görünüyor!" -#: libraries/tbl_links.inc.php:148 +#: libraries/tbl_links.inc.php:147 #, php-format msgid "Tracking of %s.%s is activated." msgstr "%s.%s izleme aktif." @@ -3773,12 +3836,12 @@ msgstr "" "Varsayılan değerler için lütfen sola eğik çizgisiz veya alıntısız sadece tek " "değer girin. Bu biçimi kullanın: a" -#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1263 -#: pdf_schema.php:1284 tbl_printview.php:142 tbl_structure.php:179 +#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1262 +#: pdf_schema.php:1283 tbl_printview.php:141 tbl_structure.php:178 msgid "Attributes" msgstr "Öznitelikler" -#: libraries/tbl_properties.inc.php:136 +#: libraries/tbl_properties.inc.php:135 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -3787,11 +3850,11 @@ msgstr "" "Mevcut dönüşüm seçeneklerinin listesi ve bunların MIME türü dönüşümleri için " "%sdönüşüm tanımlamarı%s'na tıklayın" -#: libraries/tbl_properties.inc.php:144 +#: libraries/tbl_properties.inc.php:143 msgid "Transformation options" msgstr "Dönüşüm seçenekleri" -#: libraries/tbl_properties.inc.php:145 +#: libraries/tbl_properties.inc.php:144 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
                            If you ever need to put a backslash (\"\\\") or a single " @@ -3803,16 +3866,16 @@ msgstr "" "veya tek tırnak (\"'\") koymanız gerekirse, önlerine ters eğik çizgi koyun " "(örneğin '\\\\xyz' veya 'a\\'b')." -#: libraries/tbl_properties.inc.php:392 +#: libraries/tbl_properties.inc.php:391 msgctxt "for default" msgid "None" msgstr "Hiçbiri" -#: libraries/tbl_properties.inc.php:393 +#: libraries/tbl_properties.inc.php:392 msgid "As defined:" msgstr "Tanımlandığı gibi:" -#: libraries/tbl_properties.inc.php:579 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:578 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
                            Please ask the " @@ -3821,28 +3884,28 @@ msgstr "" "Bu dönüşüm için mevcut açıklama yok.
                            Lütfen yazara %s ne yapar diye " "sorun." -#: libraries/tbl_properties.inc.php:725 server_engines.php:57 -#: tbl_operations.php:354 +#: libraries/tbl_properties.inc.php:724 server_engines.php:56 +#: tbl_operations.php:352 msgid "Storage Engine" msgstr "Depolama Motoru" -#: libraries/tbl_properties.inc.php:754 +#: libraries/tbl_properties.inc.php:753 msgid "PARTITION definition" msgstr "PARTITION tanımı" -#: libraries/tbl_properties.inc.php:775 pdf_pages.php:502 +#: libraries/tbl_properties.inc.php:774 pdf_pages.php:501 #: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214 -#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1124 tbl_indexes.php:247 -#: tbl_relation.php:565 +#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1022 tbl_indexes.php:246 +#: tbl_relation.php:563 msgid "Save" msgstr "Kaydet" -#: libraries/tbl_properties.inc.php:779 tbl_structure.php:541 +#: libraries/tbl_properties.inc.php:778 tbl_structure.php:539 #, php-format msgid "Add %s column(s)" msgstr "%s sütun ekle" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:535 +#: libraries/tbl_properties.inc.php:782 tbl_structure.php:533 msgid "You have to add at least one column." msgstr "En az bir sütun eklemek zorundasınız." @@ -4007,8 +4070,8 @@ msgstr "Arabirim" msgid "Custom color" msgstr "Özel renk" -#: main.php:162 pdf_pages.php:362 setup/lib/FormDisplay.tpl.php:216 -#: tbl_change.php:1173 +#: main.php:162 pdf_pages.php:361 setup/lib/FormDisplay.tpl.php:216 +#: tbl_change.php:1071 msgid "Reset" msgstr "Sıfırla" @@ -4016,8 +4079,8 @@ msgstr "Sıfırla" msgid "Protocol version" msgstr "Protokol sürümü" -#: main.php:188 server_privileges.php:1381 server_privileges.php:1528 -#: server_privileges.php:1642 server_privileges.php:2060 +#: main.php:188 server_privileges.php:1385 server_privileges.php:1532 +#: server_privileges.php:1646 server_privileges.php:2064 #: server_processlist.php:53 msgid "User" msgstr "Kullanıcı" @@ -4110,7 +4173,16 @@ msgstr "" "phpMyAdmin dizininiz içinde mevcut. Birkez phpMyAdmin yapılandırıldı mı bunu " "kaldırmalısınız." -#: main.php:330 +#: main.php:314 +#, php-format +msgid "" +"The additional features for working with linked tables have been " +"deactivated. To find out why click %shere%s." +msgstr "" +"Bağlı tablolar ile çalışan ilave özellikler etkisizleştirildi. Nedenini " +"öğrenmek için %sburaya%s tıklayın." + +#: main.php:329 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " @@ -4120,7 +4192,7 @@ msgstr "" "phpMyAdmin işevselliği eksik olacaktır. Örneğin rehber çerçeveyi otomatik " "olarak yenilemeyecek." -#: main.php:345 +#: main.php:344 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -4129,7 +4201,7 @@ msgstr "" "PHP MySQL kütüphanenizin %s sürümü MySQL sunucunuzun %s sürümünden farklı. " "Bu tarafsız davranışa sebep olabilir." -#: main.php:357 +#: main.php:356 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -4142,62 +4214,62 @@ msgstr "" msgid "Reload navigation frame" msgstr "Rehber çerçeveyi yeniden yükle" -#: navigation.php:204 server_databases.php:370 server_synchronize.php:1190 +#: navigation.php:203 server_databases.php:368 server_synchronize.php:1189 msgid "No databases" msgstr "Veritabanı yok" -#: navigation.php:298 +#: navigation.php:297 msgid "Filter" msgstr "Süzgeç" -#: navigation.php:299 setup/frames/index.inc.php:218 +#: navigation.php:298 setup/frames/index.inc.php:218 #: setup/lib/messages.inc.php:41 msgid "Clear" msgstr "Temizle" -#: navigation.php:330 navigation.php:331 +#: navigation.php:329 navigation.php:330 msgctxt "short form" msgid "Create table" msgstr "Tablo oluştur" -#: navigation.php:333 navigation.php:495 +#: navigation.php:332 navigation.php:494 msgid "Please select a database" msgstr "Lütfen bir veritabanı seçin" -#: pdf_pages.php:40 pdf_pages.php:46 pdf_pages.php:52 pdf_pages.php:57 +#: pdf_pages.php:39 pdf_pages.php:45 pdf_pages.php:51 pdf_pages.php:56 #, php-format msgid "%s table not found or not set in %s" msgstr "%s tablosu bulunamadı veya %s içinde ayarlanmadı" -#: pdf_pages.php:265 +#: pdf_pages.php:264 msgid "Please choose a page to edit" msgstr "Lütfen düzenlemek için sayfa seçin" -#: pdf_pages.php:303 pmd_pdf.php:113 +#: pdf_pages.php:302 pmd_pdf.php:111 msgid "Create a page" msgstr "Yeni bir sayfa oluştur" -#: pdf_pages.php:309 +#: pdf_pages.php:308 msgid "Page name" msgstr "Sayfa adı" -#: pdf_pages.php:313 +#: pdf_pages.php:312 msgid "Automatic layout based on" msgstr "Otomatik yerleşim tabanı" -#: pdf_pages.php:315 +#: pdf_pages.php:314 msgid "Internal relations" msgstr "Dahili ilişkiler" -#: pdf_pages.php:338 +#: pdf_pages.php:337 msgid "Select Tables" msgstr "Tabloları seç" -#: pdf_pages.php:361 +#: pdf_pages.php:360 msgid "Toggle scratchboard" msgstr "Karalama panosunu değiştir" -#: pdf_pages.php:524 +#: pdf_pages.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -4205,35 +4277,35 @@ msgstr "" "Şu anki sayfa, daha fazla bulunması gereksiz tablolara verilmiş referanslara " "sahip. Bu referansları silmek ister misiniz?" -#: pdf_schema.php:635 +#: pdf_schema.php:634 #, php-format msgid "The %s table doesn't exist!" msgstr "%s tablosu yok!" -#: pdf_schema.php:671 +#: pdf_schema.php:670 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Lütfen %s tablosu için koordinatları yapılandırın" -#: pdf_schema.php:994 +#: pdf_schema.php:993 #, php-format msgid "Schema of the %s database - Page %s" msgstr "%s veritabanının şeması - Sayfa %s" -#: pdf_schema.php:1012 +#: pdf_schema.php:1011 msgid "No tables" msgstr "Tablolar yok" -#: pdf_schema.php:1031 pdf_schema.php:1140 +#: pdf_schema.php:1030 pdf_schema.php:1139 msgid "Relational schema" msgstr "İlişkisel şema" -#: pdf_schema.php:1115 +#: pdf_schema.php:1114 msgid "Table of contents" msgstr "İçerik tablosu" -#: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:145 -#: tbl_structure.php:182 tbl_tracking.php:277 +#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 +#: tbl_structure.php:181 tbl_tracking.php:272 msgid "Extra" msgstr "Ekstra" @@ -4245,7 +4317,7 @@ msgstr "Sol menüyü Göster/Gizle" msgid "Save position" msgstr "Konumu kaydet" -#: pmd_general.php:70 server_synchronize.php:428 server_synchronize.php:871 +#: pmd_general.php:70 server_synchronize.php:427 server_synchronize.php:870 msgid "Create table" msgstr "Tablo oluştur" @@ -4319,31 +4391,31 @@ msgstr "" "ayarı kaldırmak için \"Görüntülemek için sütun seç\" simgesine tıklayın, " "sonrada uygun sütun adı üzerine tıklayın." -#: pmd_pdf.php:62 +#: pmd_pdf.php:60 msgid "Page has been created" msgstr "Sayfa oluşturuldu" -#: pmd_pdf.php:64 +#: pmd_pdf.php:62 msgid "Page creation failed" msgstr "Sayfa oluşturma başarısız" -#: pmd_pdf.php:84 +#: pmd_pdf.php:82 msgid "Export/Import to scale" msgstr "Ölçeklemek için İçeri/Dışarı Aktar" -#: pmd_pdf.php:88 +#: pmd_pdf.php:86 msgid "recommended" msgstr "önerilir" -#: pmd_pdf.php:93 +#: pmd_pdf.php:91 msgid "to/from page" msgstr "sayfadan/sayfaya" -#: querywindow.php:94 +#: querywindow.php:93 msgid "Import files" msgstr "Dosyaları içeri aktar" -#: querywindow.php:105 +#: querywindow.php:104 msgid "All" msgstr "Tümü" @@ -4389,63 +4461,63 @@ msgstr "Bilgi" msgid "Character Sets and Collations" msgstr "Karakter Grupları ve Karşılaştırmalar" -#: server_databases.php:51 +#: server_databases.php:49 msgid "No databases selected." msgstr "Veritabanı seçilmedi." -#: server_databases.php:62 +#: server_databases.php:60 #, php-format msgid "%s databases have been dropped successfully." msgstr "%s veritabanları başarılı olarak kaldırıldı." -#: server_databases.php:87 +#: server_databases.php:85 msgid "Databases statistics" msgstr "Veritabanı istatistikleri" -#: server_databases.php:116 server_status.php:370 +#: server_databases.php:114 server_status.php:370 #: setup/lib/messages.inc.php:114 msgid "Tables" msgstr "Tablolar" -#: server_databases.php:194 server_replication.php:180 -#: server_replication.php:208 +#: server_databases.php:192 server_replication.php:179 +#: server_replication.php:207 msgid "Master replication" msgstr "Asılı kopya etme" -#: server_databases.php:196 server_replication.php:247 +#: server_databases.php:194 server_replication.php:246 msgid "Slave replication" msgstr "Slave kopya etme" -#: server_databases.php:229 +#: server_databases.php:227 msgid "Jump to database" msgstr "Veritabanına git" -#: server_databases.php:266 +#: server_databases.php:264 msgid "Not replicated" msgstr "Kopya edilmedi" -#: server_databases.php:272 +#: server_databases.php:270 msgid "Replicated" msgstr "Kopya edildi" -#: server_databases.php:288 +#: server_databases.php:286 #, php-format msgid "Check privileges for database "%s"." msgstr ""%s" veritabanı için yetkileri kontrol et." -#: server_databases.php:292 server_databases.php:293 +#: server_databases.php:290 server_databases.php:291 msgid "Check Privileges" msgstr "Yetkileri kontrol et" -#: server_databases.php:357 server_databases.php:358 +#: server_databases.php:355 server_databases.php:356 msgid "Enable Statistics" msgstr "İstatistikler etkin" -#: server_databases.php:361 server_databases.php:362 +#: server_databases.php:359 server_databases.php:360 msgid "Disable Statistics" msgstr "İstatistikler etkisiz" -#: server_databases.php:365 +#: server_databases.php:363 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -4453,124 +4525,124 @@ msgstr "" "Not: Buradaki veritabanı istatistiklerini etkinleştirmek web sunucusu ile " "MySQL sunucusu arasında yüksek trafiğe yol açabilir." -#: server_engines.php:48 +#: server_engines.php:47 msgid "Storage Engines" msgstr "Depolama Motorları" -#: server_export.php:20 +#: server_export.php:18 msgid "View dump (schema) of databases" msgstr "Veritabanlarının dökümünü (şemasını) göster" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:23 server_privileges.php:265 msgid "Includes all privileges except GRANT." msgstr "GRANT hariç tüm yetkileri içerir." -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:24 server_privileges.php:191 +#: server_privileges.php:514 msgid "Allows altering the structure of existing tables." msgstr "Varolan tabloların yapısının değiştirilmesine izin verir." -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:25 server_privileges.php:207 +#: server_privileges.php:520 msgid "Allows altering and dropping stored routines." msgstr "Depolanan yordamların değiştirilmesine ve kaldırılmasına izin verir." -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:26 server_privileges.php:183 +#: server_privileges.php:513 msgid "Allows creating new databases and tables." msgstr "Yeni veritabanları ve tabloların oluşturulmasına izin verir." -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:27 server_privileges.php:206 +#: server_privileges.php:519 msgid "Allows creating stored routines." msgstr "Depolanan yordamların oluşturulmasına izin verir." -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:513 msgid "Allows creating new tables." msgstr "Yeni tabloların oluşturulmasına izin verir." -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:29 server_privileges.php:194 +#: server_privileges.php:517 msgid "Allows creating temporary tables." msgstr "Geçici tablolara oluşturulmasına izin verir." -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:30 server_privileges.php:208 +#: server_privileges.php:553 msgid "Allows creating, dropping and renaming user accounts." msgstr "" "Kullanıcı hesaplarının oluşturulmasına, kaldırılmasına ve yeniden " "adlandırılmasına izin verir." -#: server_privileges.php:32 server_privileges.php:199 -#: server_privileges.php:203 server_privileges.php:526 -#: server_privileges.php:530 +#: server_privileges.php:31 server_privileges.php:198 +#: server_privileges.php:202 server_privileges.php:525 +#: server_privileges.php:529 msgid "Allows creating new views." msgstr "Yeni görünümlerin oluşturulmasına izin verir." -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:32 server_privileges.php:182 +#: server_privileges.php:505 msgid "Allows deleting data." msgstr "Veri silinmesine izin verir." -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:33 server_privileges.php:184 +#: server_privileges.php:516 msgid "Allows dropping databases and tables." msgstr "Veritabanları ve tabloların kaldırılmasına izin verir." -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:34 server_privileges.php:516 msgid "Allows dropping tables." msgstr "Tabloların kaldırılmasına izin verir." -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:35 server_privileges.php:199 +#: server_privileges.php:533 msgid "Allows to set up events for the event scheduler" msgstr "Olay zamanlayıcısı için olayları ayarlamaya izin verir" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:36 server_privileges.php:209 +#: server_privileges.php:521 msgid "Allows executing stored routines." msgstr "Depolanan yordamların yürütülmesine izin verir." -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:37 server_privileges.php:188 +#: server_privileges.php:508 msgid "Allows importing data from and exporting data into files." msgstr "Verinin içeri ve dışarı aktarılmasına izin verir." -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:38 server_privileges.php:539 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Yetki tablolarını yeniden yüklemeden yeni kullanıcıların ve yetkilerin " "eklenmesine izin verir." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:515 msgid "Allows creating and dropping indexes." msgstr "İndekslerin oluşturulmasına ve kaldırılmasına izin verir." -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:40 server_privileges.php:180 +#: server_privileges.php:441 server_privileges.php:503 msgid "Allows inserting and replacing data." msgstr "Verinin eklenmesine ve yerinin değiştirilmesine izin verir." -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:41 server_privileges.php:195 +#: server_privileges.php:548 msgid "Allows locking tables for the current thread." msgstr "Şu anki işlem için tabloların kilitlenmesine izin verir." -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:42 server_privileges.php:645 +#: server_privileges.php:647 msgid "Limits the number of new connections the user may open per hour." msgstr "Kullanıcının saat başına açabileceği yeni bağlantı sayısını sınırlar." -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:43 server_privileges.php:633 +#: server_privileges.php:635 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Kullanıcının saat başına sunucuya gönderebileceği sorgu sayısını sınırlar." -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:44 server_privileges.php:639 +#: server_privileges.php:641 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -4578,61 +4650,61 @@ msgstr "" "Kullanıcının saat başına çalıştırabileceği herhangi bir tabloyu veya " "veritabanını değiştiren komut sayısını sınırlar." -#: server_privileges.php:46 server_privileges.php:652 -#: server_privileges.php:654 +#: server_privileges.php:45 server_privileges.php:651 +#: server_privileges.php:653 msgid "Limits the number of simultaneous connections the user may have." msgstr "Kullanıcının eşzamanlı bağlantı sayısını sınırlar." -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:46 server_privileges.php:187 +#: server_privileges.php:543 msgid "Allows viewing processes of all users" msgstr "Tüm kullanıcıların işlemlerini görüntülemeye izin verir" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:47 server_privileges.php:189 +#: server_privileges.php:447 server_privileges.php:549 msgid "Has no effect in this MySQL version." msgstr "Bu MySQL sürümünde etkisi yoktur." -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:48 server_privileges.php:185 +#: server_privileges.php:544 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Sunucu ayarlarının yeniden yüklenmesine ve sunucunun önbelleğinin " "temizlenmesine izin verir." -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:197 +#: server_privileges.php:551 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Kullanıcılara slave / master'ların nerede olduğunu sormasına izin verir." -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:50 server_privileges.php:196 +#: server_privileges.php:552 msgid "Needed for the replication slaves." msgstr "Kopya edilen slave'ler için gereklidir." -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:51 server_privileges.php:179 +#: server_privileges.php:438 server_privileges.php:502 msgid "Allows reading data." msgstr "Veri okunmasına izin verir." -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:52 server_privileges.php:192 +#: server_privileges.php:546 msgid "Gives access to the complete list of databases." msgstr "Bütün veritabanı listesine erişim verir." -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:53 server_privileges.php:203 +#: server_privileges.php:205 server_privileges.php:518 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "SHOW CREATE VIEW sorgularının yapılmasına izin verir." -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:54 server_privileges.php:186 +#: server_privileges.php:545 msgid "Allows shutting down the server." msgstr "Sunucunun kapatılmasına izin ver." -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:55 server_privileges.php:193 +#: server_privileges.php:542 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -4642,152 +4714,152 @@ msgstr "" "değişkenleri ayarlamak veya diğer kullanıcıların işlemlerini sonlandırmak " "gibi pek çok yönetimsel işlemler için gereklidir." -#: server_privileges.php:57 server_privileges.php:201 -#: server_privileges.php:535 +#: server_privileges.php:56 server_privileges.php:200 +#: server_privileges.php:534 msgid "Allows creating and dropping triggers" msgstr "Tetikleyicileri oluşturmaya ve kaldırmaya izin verir" -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:57 server_privileges.php:181 +#: server_privileges.php:444 server_privileges.php:504 msgid "Allows changing data." msgstr "Veri değiştirilmesine izin ver." -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:58 server_privileges.php:259 msgid "No privileges." msgstr "Yetkiniz yok." -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:301 server_privileges.php:302 msgctxt "None privileges" msgid "None" msgstr "Hiçbiri" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1710 server_privileges.php:1716 +#: server_privileges.php:430 server_privileges.php:565 +#: server_privileges.php:1714 server_privileges.php:1720 msgid "Table-specific privileges" msgstr "Tabloya özgü yetkiler" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1532 +#: server_privileges.php:431 server_privileges.php:573 +#: server_privileges.php:1536 msgid " Note: MySQL privilege names are expressed in English " msgstr " Not: MySQL yetki adları İngilizce olarak belirtilir " -#: server_privileges.php:563 server_privileges.php:1531 +#: server_privileges.php:562 server_privileges.php:1535 msgid "Global privileges" msgstr "Genel yetkiler" -#: server_privileges.php:565 server_privileges.php:1710 +#: server_privileges.php:564 server_privileges.php:1714 msgid "Database-specific privileges" msgstr "Veritabanına özgü yetkiler" -#: server_privileges.php:610 +#: server_privileges.php:609 msgid "Administration" msgstr "Yönetim" -#: server_privileges.php:630 +#: server_privileges.php:629 msgid "Resource limits" msgstr "Kaynak sınırları" -#: server_privileges.php:631 +#: server_privileges.php:630 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Not: Bu seçeneklerin 0 (sıfır)'a ayarlanması sınırı kaldırır." -#: server_privileges.php:708 +#: server_privileges.php:707 msgid "Login Information" msgstr "Oturum Açma Bilgisi" -#: server_privileges.php:802 +#: server_privileges.php:801 msgid "Do not change the password" msgstr "Parolayı değiştirme" -#: server_privileges.php:835 server_privileges.php:2197 +#: server_privileges.php:834 server_privileges.php:2201 msgid "No user found." msgstr "Kullanıcı bulunamadı." -#: server_privileges.php:879 +#: server_privileges.php:878 #, php-format msgid "The user %s already exists!" msgstr "%s kullanıcısı zaten var!" -#: server_privileges.php:962 +#: server_privileges.php:961 msgid "You have added a new user." msgstr "Yeni bir kullanıcı eklediniz." -#: server_privileges.php:1183 +#: server_privileges.php:1184 #, php-format msgid "You have updated the privileges for %s." msgstr "%s için yetkileri güncellediniz." -#: server_privileges.php:1207 +#: server_privileges.php:1208 #, php-format msgid "You have revoked the privileges for %s" msgstr "%s için yetkileri geri aldınız" -#: server_privileges.php:1243 +#: server_privileges.php:1244 #, php-format msgid "The password for %s was changed successfully." msgstr "%s için parola başarılı olarak değiştirildi." -#: server_privileges.php:1263 +#: server_privileges.php:1264 #, php-format msgid "Deleting %s" msgstr "%s siliniyor" -#: server_privileges.php:1274 +#: server_privileges.php:1275 msgid "No users selected for deleting!" msgstr "Silmek için kullanıcı seçilmedi!" -#: server_privileges.php:1277 +#: server_privileges.php:1278 msgid "Reloading the privileges" msgstr "Yetkiler yeniden yükleniyor" -#: server_privileges.php:1292 +#: server_privileges.php:1296 msgid "The selected users have been deleted successfully." msgstr "Seçili kullanıcılar başarılı olarak silindi." -#: server_privileges.php:1327 +#: server_privileges.php:1331 msgid "The privileges were reloaded successfully." msgstr "Yetkiler başarılı olarak yüklendi." -#: server_privileges.php:1355 server_privileges.php:1641 +#: server_privileges.php:1359 server_privileges.php:1645 msgid "Edit Privileges" msgstr "Yetkileri düzenle" -#: server_privileges.php:1364 +#: server_privileges.php:1368 msgid "Revoke" msgstr "Geri al" -#: server_privileges.php:1396 +#: server_privileges.php:1400 msgid "User overview" msgstr "Kullanıcı gözden geçirme" -#: server_privileges.php:1533 server_privileges.php:1715 -#: server_privileges.php:2064 +#: server_privileges.php:1537 server_privileges.php:1719 +#: server_privileges.php:2068 msgid "Grant" msgstr "Onayla" -#: server_privileges.php:1552 server_privileges.php:2154 +#: server_privileges.php:1556 server_privileges.php:2158 msgid "Any" msgstr "Herhangi" -#: server_privileges.php:1601 server_privileges.php:1625 -#: server_privileges.php:2019 server_privileges.php:2208 +#: server_privileges.php:1605 server_privileges.php:1629 +#: server_privileges.php:2023 server_privileges.php:2212 msgid "Add a new User" msgstr "Yeni Kullanıcı ekle" -#: server_privileges.php:1606 +#: server_privileges.php:1610 msgid "Remove selected users" msgstr "Seçili kullanıcıları kaldır" -#: server_privileges.php:1609 +#: server_privileges.php:1613 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Kullanıcılardan tüm aktif yetkileri geri al ve sonra da sil." -#: server_privileges.php:1610 server_privileges.php:1611 -#: server_privileges.php:1612 +#: server_privileges.php:1614 server_privileges.php:1615 +#: server_privileges.php:1616 msgid "Drop the databases that have the same names as the users." msgstr "Kullanıcılarla aynı isimlerde olan veritabanlarını kaldır." -#: server_privileges.php:1628 +#: server_privileges.php:1632 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4800,48 +4872,48 @@ msgstr "" "sunucunun kullandığı yetkilerden farklı olabilir. Bu durumda devam etmeden " "önce %syetkileri yeniden yüklemeniz%s gerekir." -#: server_privileges.php:1676 +#: server_privileges.php:1680 msgid "The selected user was not found in the privilege table." msgstr "Seçili kullanıcı yetki tablosunda bulunamadı." -#: server_privileges.php:1716 +#: server_privileges.php:1720 msgid "Column-specific privileges" msgstr "Sütuna özgü yetkiler" -#: server_privileges.php:1917 +#: server_privileges.php:1921 msgid "Add privileges on the following database" msgstr "Aşağıdaki veritabanına yetkileri ekle" -#: server_privileges.php:1935 +#: server_privileges.php:1939 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "_ ve % jokerleri harfi harfine kullanılmak için \\ ile doldurun" -#: server_privileges.php:1938 +#: server_privileges.php:1942 msgid "Add privileges on the following table" msgstr "Aşağıdaki tabloya yetkileri ekle" -#: server_privileges.php:1995 +#: server_privileges.php:1999 msgid "Change Login Information / Copy User" msgstr "Otutum Açma Bilgisini değiştir / Kullanıcıyı kopyala" -#: server_privileges.php:1998 +#: server_privileges.php:2002 msgid "Create a new user with the same privileges and ..." msgstr "Aynı yetkilerle yeni bir kullanıcı oluştur ve ..." -#: server_privileges.php:2000 +#: server_privileges.php:2004 msgid "... keep the old one." msgstr "... eski olanı sakla." -#: server_privileges.php:2001 +#: server_privileges.php:2005 msgid " ... delete the old one from the user tables." msgstr " ... eski olanı kullanıcı tablolarından sil." -#: server_privileges.php:2002 +#: server_privileges.php:2006 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr " ... eski olandan bütün aktif yetkileri iptal et ve sonra da sil." -#: server_privileges.php:2003 +#: server_privileges.php:2007 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -4849,42 +4921,42 @@ msgstr "" " ... eski olanı kullanıcı tablolarından sil ve sonra da yetkileri yeniden " "yükle." -#: server_privileges.php:2025 +#: server_privileges.php:2029 msgid "Database for user" msgstr "Kullanıcı için veritabanı" -#: server_privileges.php:2029 +#: server_privileges.php:2033 msgctxt "Create none database for user" msgid "None" msgstr "Hiçbiri" -#: server_privileges.php:2030 +#: server_privileges.php:2034 msgid "Create database with same name and grant all privileges" msgstr "Aynı isimle veritabanı oluştur ve tüm yetkileri ver" -#: server_privileges.php:2031 +#: server_privileges.php:2035 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Joker isimlere tüm yetkileri ver (kullanıcıadı\\_%)" -#: server_privileges.php:2034 +#: server_privileges.php:2038 #, php-format msgid "Grant all privileges on database "%s"" msgstr ""%s" veritabanı üzerindeki tüm yetkileri ver" -#: server_privileges.php:2057 +#: server_privileges.php:2061 #, php-format msgid "Users having access to "%s"" msgstr ""%s" veritabanına erişimi olan kullanıcılar" -#: server_privileges.php:2165 +#: server_privileges.php:2169 msgid "global" msgstr "genel" -#: server_privileges.php:2167 +#: server_privileges.php:2171 msgid "database-specific" msgstr "Veritabanına özgü" -#: server_privileges.php:2169 +#: server_privileges.php:2173 msgid "wildcard" msgstr "joker" @@ -4903,43 +4975,43 @@ msgstr "phpMyAdmin %s işlemini sonlandıramadı. Muhtemelen zaten kapatılmış msgid "ID" msgstr "ID" -#: server_replication.php:50 +#: server_replication.php:49 msgid "Unknown error" msgstr "Bilinmeyen hata" -#: server_replication.php:57 +#: server_replication.php:56 #, php-format msgid "Unable to connect to master %s." msgstr "Master %s sunucusuna bağlanılamıyor." -#: server_replication.php:64 +#: server_replication.php:63 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "Master günlük konumu okunamıyor. Master üzerinde mümkün yetki sorunu." -#: server_replication.php:70 +#: server_replication.php:69 msgid "Unable to change master" msgstr "Master değiştirilemiyor" -#: server_replication.php:73 +#: server_replication.php:72 #, php-format msgid "Master server changed succesfully to %s" msgstr "Asıl sunucu %s 'na başarılı olarak değiştirildi" -#: server_replication.php:181 +#: server_replication.php:180 msgid "This server is configured as master in a replication process." msgstr "" "Bu sunucu kopya etme işlemi sırasında asıl sunucu olarak yapılandırıldı." -#: server_replication.php:183 server_status.php:391 +#: server_replication.php:182 server_status.php:391 msgid "Show master status" msgstr "Master durumunu göster" -#: server_replication.php:186 +#: server_replication.php:185 msgid "Show connected slaves" msgstr "Bağlı slave'leri göster" -#: server_replication.php:209 +#: server_replication.php:208 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -4948,11 +5020,11 @@ msgstr "" "Bu sunucu kopya etme işlemi sırasında asıl sunucu olarak yapılandırılmadı. " "Bunu yapılandırmak ister misiniz?" -#: server_replication.php:216 +#: server_replication.php:215 msgid "Master configuration" msgstr "Master yapılandırması" -#: server_replication.php:217 +#: server_replication.php:216 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -4967,19 +5039,19 @@ msgstr "" "kopya etmek için sadece belirli veritabanlarına izin verebilirsiniz. Lütfen " "modu seçin:" -#: server_replication.php:220 +#: server_replication.php:219 msgid "Replicate all databases; Ignore:" msgstr "Tüm veritabanlarını kopya et; Yoksay:" -#: server_replication.php:221 +#: server_replication.php:220 msgid "Ignore all databases; Replicate:" msgstr "Tüm veritabanlarını yoksay; Kopya et:" -#: server_replication.php:224 +#: server_replication.php:223 msgid "Please select databases:" msgstr "Lütfen veritabanlarını seçin:" -#: server_replication.php:227 +#: server_replication.php:226 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -4987,7 +5059,7 @@ msgstr "" "Şimdi, aşağıdaki satırları my.cnf dosyanız içindeki [mysqld] bölümünün " "sonuna ekleyin ve ondan sonra lütfen MySQL sunucusunu yeniden başlatın." -#: server_replication.php:229 +#: server_replication.php:228 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " @@ -4997,84 +5069,84 @@ msgstr "" "tıklayın. Ondan sonra bu sunucunun asıl olarak yapılandırıldığını " "gösteren, sizi uyaran bir mesaj görmelisiniz" -#: server_replication.php:292 +#: server_replication.php:291 msgid "Slave SQL Thread not running!" msgstr "Slave SQL işlemi çalışmıyor!" -#: server_replication.php:295 +#: server_replication.php:294 msgid "Slave IO Thread not running!" msgstr "Slave G/Ç işlemi çalışmıyor!" -#: server_replication.php:304 +#: server_replication.php:303 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" "Sunucu kopya etme işlemi sırasında slave sunucu olarak yapılandırıldı. Bunu " "istiyor musunuz:" -#: server_replication.php:307 +#: server_replication.php:306 msgid "See slave status table" msgstr "Slave durum tablosuna bak" -#: server_replication.php:310 +#: server_replication.php:309 msgid "Synchronize databases with master" msgstr "Asılı ile veritabanlarını eşitle" -#: server_replication.php:321 +#: server_replication.php:320 msgid "Control slave:" msgstr "Slave'i kontrol et:" -#: server_replication.php:324 +#: server_replication.php:323 msgid "Full start" msgstr "Tam başlat" -#: server_replication.php:324 +#: server_replication.php:323 msgid "Full stop" msgstr "Tam durdur" -#: server_replication.php:325 +#: server_replication.php:324 msgid "Reset slave" msgstr "Slave'i sıfırla" -#: server_replication.php:326 +#: server_replication.php:325 #, php-format msgid "SQL Thread %s only" msgstr "Sadece SQL İşlemi %s" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 msgid "Start" msgstr "Başlat" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 msgid "Stop" msgstr "Durdur" -#: server_replication.php:327 +#: server_replication.php:326 #, php-format msgid "IO Thread %s only" msgstr "Sadece G/Ç İşlemi %s" -#: server_replication.php:331 +#: server_replication.php:330 msgid "Error management:" msgstr "Hata yönetimi:" -#: server_replication.php:333 +#: server_replication.php:332 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "Hataları atlamak master ve slave'i eşitlenmemeye sürükleyebilir!" -#: server_replication.php:335 +#: server_replication.php:334 msgid "Skip current error" msgstr "Şu anki hatayı atla" -#: server_replication.php:336 +#: server_replication.php:335 msgid "Skip next" msgstr "İleri atla" -#: server_replication.php:339 +#: server_replication.php:338 msgid "errors." msgstr "hata." -#: server_replication.php:354 +#: server_replication.php:353 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -5899,110 +5971,110 @@ msgstr "Sorgu türü" msgid "Replication status" msgstr "Kopya etme durumu" -#: server_synchronize.php:93 +#: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "Kaynağa bağlanamadı" -#: server_synchronize.php:96 +#: server_synchronize.php:95 msgid "Could not connect to the target" msgstr "Hedefe bağlanamadı" -#: server_synchronize.php:121 server_synchronize.php:124 tbl_create.php:77 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "'%s' veritabanı mevcut değil." -#: server_synchronize.php:264 +#: server_synchronize.php:263 msgid "Structure Synchronization" msgstr "Yapı Eşitleme" -#: server_synchronize.php:271 +#: server_synchronize.php:270 msgid "Data Synchronization" msgstr "Veri Eşitleme" -#: server_synchronize.php:399 server_synchronize.php:838 +#: server_synchronize.php:398 server_synchronize.php:837 msgid "not present" msgstr "mevcut değil" -#: server_synchronize.php:423 server_synchronize.php:866 +#: server_synchronize.php:422 server_synchronize.php:865 msgid "Structure Difference" msgstr "Yapı Farklılığı" -#: server_synchronize.php:424 server_synchronize.php:867 +#: server_synchronize.php:423 server_synchronize.php:866 msgid "Data Difference" msgstr "Veri Farklılığı" -#: server_synchronize.php:429 server_synchronize.php:872 +#: server_synchronize.php:428 server_synchronize.php:871 msgid "Add column(s)" msgstr "Sekme(leri) ekle" -#: server_synchronize.php:430 server_synchronize.php:873 +#: server_synchronize.php:429 server_synchronize.php:872 msgid "Remove column(s)" msgstr "Sekme(leri)yi kaldır" -#: server_synchronize.php:431 server_synchronize.php:874 +#: server_synchronize.php:430 server_synchronize.php:873 msgid "Alter column(s)" msgstr "Sekme(leri)yi değiştir" -#: server_synchronize.php:432 server_synchronize.php:875 +#: server_synchronize.php:431 server_synchronize.php:874 msgid "Remove index(s)" msgstr "İndeks(leri)i kaldır" -#: server_synchronize.php:433 server_synchronize.php:876 +#: server_synchronize.php:432 server_synchronize.php:875 msgid "Apply index(s)" msgstr "İndeks(leri)i uygula" -#: server_synchronize.php:434 server_synchronize.php:877 +#: server_synchronize.php:433 server_synchronize.php:876 msgid "Update row(s)" msgstr "Sıra(ları)yı güncelle" -#: server_synchronize.php:435 server_synchronize.php:878 +#: server_synchronize.php:434 server_synchronize.php:877 msgid "Insert row(s)" msgstr "Sıra(ları) ekle" -#: server_synchronize.php:445 server_synchronize.php:889 +#: server_synchronize.php:444 server_synchronize.php:888 msgid "Would you like to delete all the previous rows from target tables?" msgstr "Hedef tablolardan önceki tüm sıraları silme istiyor musunuz?" -#: server_synchronize.php:448 server_synchronize.php:893 +#: server_synchronize.php:447 server_synchronize.php:892 msgid "Apply Selected Changes" msgstr "Seçili Değişiklikleri Uygula" -#: server_synchronize.php:450 server_synchronize.php:895 +#: server_synchronize.php:449 server_synchronize.php:894 msgid "Synchronize Databases" msgstr "Veritabanlarını Eşitle" -#: server_synchronize.php:463 +#: server_synchronize.php:462 msgid "Selected target tables have been synchronized with source tables." msgstr "Seçili hedef tablolar kaynak tablolar ile eşitlendi." -#: server_synchronize.php:941 +#: server_synchronize.php:940 msgid "Target database has been synchronized with source database" msgstr "Hedef veritabanı kaynak veritabanı ile eşitlendi" -#: server_synchronize.php:1002 +#: server_synchronize.php:1001 msgid "The following queries have been executed:" msgstr "Aşağıdaki sorgular çalıştırıldı:" -#: server_synchronize.php:1121 +#: server_synchronize.php:1120 msgid "Enter manually" msgstr "Elle giriş" -#: server_synchronize.php:1122 +#: server_synchronize.php:1121 msgid "Current connection" msgstr "Şu anki bağlantı" -#: server_synchronize.php:1151 +#: server_synchronize.php:1150 #, php-format msgid "Configuration: %s" msgstr "Yapılandırma: %s" -#: server_synchronize.php:1166 +#: server_synchronize.php:1165 msgid "Socket" msgstr "Soket" -#: server_synchronize.php:1212 +#: server_synchronize.php:1211 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -6597,10 +6669,15 @@ msgid "Signon login options" msgstr "Oturum açma seçenekleri" #: setup/lib/messages.inc.php:128 +#, fuzzy +#| msgid "" +#| "Configure phpMyAdmin database to gain access to additional features, see " +#| "[a@../Documentation.html#linked-tables]linked-tables infrastructure[/a] " +#| "in documentation" msgid "" "Configure phpMyAdmin database to gain access to additional features, see " -"[a@../Documentation.html#linked-tables]linked-tables infrastructure[/a] in " -"documentation" +"[a@../Documentation.html#linked-tables]phpMyAdmin configuration storage[/a] " +"in documentation" msgstr "" "İlave özelliklere erişim kazanmak için phpMyAdmin veritabanını yapılandırır, " "belgelerde [a@../Documentation.html#linked-tables]bağlantılı tablolar " @@ -7794,114 +7871,114 @@ msgstr "" msgid "ZIP" msgstr "ZIP" -#: sql.php:495 tbl_replace.php:385 +#: sql.php:494 tbl_replace.php:384 #, php-format msgid "Inserted row id: %1$d" msgstr "Eklenen satır id: %1$d" -#: sql.php:512 +#: sql.php:511 msgid "Showing as PHP code" msgstr "PHP kodu olarak gösteriliyor" -#: sql.php:515 tbl_replace.php:359 +#: sql.php:514 tbl_replace.php:358 msgid "Showing SQL query" msgstr "SQL sorgusu gösteriliyor" -#: sql.php:517 +#: sql.php:516 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "SQL'i onayla" -#: sql.php:638 +#: sql.php:631 #, php-format msgid "Problems with indexes of table `%s`" msgstr "`%s` tablosunun indeksleri ile ilgili sorunlar" -#: sql.php:670 +#: sql.php:663 msgid "Label" msgstr "Etiket" -#: tbl_addfield.php:188 tbl_alter.php:102 tbl_indexes.php:97 +#: tbl_addfield.php:185 tbl_alter.php:100 tbl_indexes.php:97 #, php-format msgid "Table %1$s has been altered successfully" msgstr "Tablo %1$s başarılı olarak değiştirldi" -#: tbl_change.php:250 tbl_select.php:26 tbl_select.php:27 tbl_select.php:30 -#: tbl_select.php:33 +#: tbl_change.php:245 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_select.php:32 msgid "Browse foreign values" msgstr "Dış değerlere gözat" -#: tbl_change.php:280 tbl_change.php:318 +#: tbl_change.php:275 tbl_change.php:313 msgid "Function" msgstr "İşlev" -#: tbl_change.php:300 tbl_indexes.php:199 tbl_indexes.php:224 +#: tbl_change.php:295 tbl_indexes.php:198 tbl_indexes.php:223 msgid "Ignore" msgstr "Yoksay" -#: tbl_change.php:725 +#: tbl_change.php:720 msgid " Because of its length,
                            this column might not be editable " msgstr " Uzunluğu nedeniyle,
                            bu sütun düzenlenebilir olmayabilir " -#: tbl_change.php:884 +#: tbl_change.php:835 msgid "Remove BLOB Repository Reference" msgstr "BLOB Havuzu Referansını kaldır" -#: tbl_change.php:890 +#: tbl_change.php:841 msgid "Binary - do not edit" msgstr "Binari - düzenlemeyiniz" -#: tbl_change.php:983 +#: tbl_change.php:889 msgid "Upload to BLOB repository" msgstr "BLOB Havuzuna gönder" -#: tbl_change.php:1128 +#: tbl_change.php:1026 msgid "Insert as new row" msgstr "Yeni satır olarak ekle" -#: tbl_change.php:1129 +#: tbl_change.php:1027 msgid "Insert as new row and ignore errors" msgstr "Yeni satır olarak ekle ve hataları yoksay" -#: tbl_change.php:1130 +#: tbl_change.php:1028 msgid "Show insert query" msgstr "Ekleme sorgusunu göster" -#: tbl_change.php:1145 +#: tbl_change.php:1043 msgid "Go back to previous page" msgstr "Önceki sayfaya geri dön" -#: tbl_change.php:1146 +#: tbl_change.php:1044 msgid "Insert another new row" msgstr "Yeni başka bir satır ekle" -#: tbl_change.php:1150 +#: tbl_change.php:1048 msgid "Go back to this page" msgstr "Bu sayfaya geri dön" -#: tbl_change.php:1158 +#: tbl_change.php:1056 msgid "Edit next row" msgstr "Sonraki satırı düzenle" -#: tbl_change.php:1169 +#: tbl_change.php:1067 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Değerden değere geçmek için TAB tuşunu veya herhangi bir yere gitmek için " "CTRL+OK TUŞLARI'nı kullanın" -#: tbl_change.php:1207 +#: tbl_change.php:1105 #, php-format msgid "Restart insertion with %s rows" msgstr "%s satırlı eklemeyi yeniden başlat" -#: tbl_create.php:57 +#: tbl_create.php:55 #, php-format msgid "Table %s already exists!" msgstr "%s tablosu zaten var!" -#: tbl_create.php:244 +#: tbl_create.php:241 #, php-format msgid "Table %1$s has been created." msgstr "Tablo %1$s oluşturuldu." @@ -7922,193 +7999,193 @@ msgstr "İndeks'i PRIMARY olarak yeniden adlandıramazsınız!" msgid "No index parts defined!" msgstr "Tanımlı indeks kısımları yok!" -#: tbl_indexes.php:159 +#: tbl_indexes.php:158 msgid "Create a new index" msgstr "Yeni bir indeks oluştur" -#: tbl_indexes.php:161 +#: tbl_indexes.php:160 msgid "Modify an index" msgstr "Indeksi değiştir" -#: tbl_indexes.php:167 +#: tbl_indexes.php:166 msgid "Index name:" msgstr "İndeks ismi:" -#: tbl_indexes.php:173 +#: tbl_indexes.php:172 msgid "Index type:" msgstr "İndeks türü:" -#: tbl_indexes.php:183 +#: tbl_indexes.php:182 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" "(\"PRIMARY\" sadece ve sadece bir birincil anahtarın ismi " "olmalıdır!)" -#: tbl_indexes.php:250 +#: tbl_indexes.php:249 #, php-format msgid "Add to index  %s column(s)" msgstr "İndekse %s sütun ekle" -#: tbl_indexes.php:255 tbl_structure.php:588 tbl_structure.php:599 +#: tbl_indexes.php:254 tbl_structure.php:586 tbl_structure.php:597 msgid "Column count has to be larger than zero." msgstr "Sütun sayısı sıfırdan büyük olmalı." -#: tbl_move_copy.php:45 +#: tbl_move_copy.php:44 msgid "Can't move table to same one!" msgstr "Tablo aynısına taşınamıyor!" -#: tbl_move_copy.php:47 +#: tbl_move_copy.php:46 msgid "Can't copy table to same one!" msgstr "Tablo aynısına kopyalanamıyor!" -#: tbl_move_copy.php:55 +#: tbl_move_copy.php:54 #, php-format msgid "Table %s has been moved to %s." msgstr "%s tablosu %s üzerine taşındı." -#: tbl_move_copy.php:57 +#: tbl_move_copy.php:56 #, php-format msgid "Table %s has been copied to %s." msgstr "%s tablosu %s üzerine kopyalandı." -#: tbl_move_copy.php:81 +#: tbl_move_copy.php:80 msgid "The table name is empty!" msgstr "Tablo adı boş!" -#: tbl_operations.php:248 +#: tbl_operations.php:246 msgid "Alter table order by" msgstr "Tablo sıralamasını şuna göre değiştir" -#: tbl_operations.php:257 +#: tbl_operations.php:255 msgid "(singly)" msgstr "(birer birer)" -#: tbl_operations.php:277 +#: tbl_operations.php:275 msgid "Move table to (database.table):" msgstr "Tabloyu şuna (veritabanı.tablo) taşı:" -#: tbl_operations.php:335 +#: tbl_operations.php:333 msgid "Table options" msgstr "Tablo seçenekleri" -#: tbl_operations.php:339 +#: tbl_operations.php:337 msgid "Rename table to" msgstr "Tabloyu yeniden şuna adlandır" -#: tbl_operations.php:510 +#: tbl_operations.php:508 msgid "Copy table to (database.table):" msgstr "Tabloyu şuna (veritabanı.tablo) kopyala:" -#: tbl_operations.php:557 +#: tbl_operations.php:555 msgid "Switch to copied table" msgstr "Kopyalanmış tabloya geç" -#: tbl_operations.php:569 +#: tbl_operations.php:567 msgid "Table maintenance" msgstr "Tablo bakımı" -#: tbl_operations.php:590 +#: tbl_operations.php:588 msgid "Defragment table" msgstr "Tabloyu birleştir" -#: tbl_operations.php:629 +#: tbl_operations.php:627 #, php-format msgid "Table %s has been flushed" msgstr "%s tablosu temizlendi" -#: tbl_operations.php:635 +#: tbl_operations.php:633 msgid "Flush the table (FLUSH)" msgstr "Tabloyu temizle (FLUSH)" -#: tbl_operations.php:650 +#: tbl_operations.php:648 msgid "Partition maintenance" msgstr "Bölüm bakımı" -#: tbl_operations.php:658 +#: tbl_operations.php:656 #, php-format msgid "Partition %s" msgstr "Bölüm %s" -#: tbl_operations.php:661 +#: tbl_operations.php:659 msgid "Analyze" msgstr "İncele" -#: tbl_operations.php:662 +#: tbl_operations.php:660 msgid "Check" msgstr "Seç" -#: tbl_operations.php:663 +#: tbl_operations.php:661 msgid "Optimize" msgstr "Uyarla" -#: tbl_operations.php:664 +#: tbl_operations.php:662 msgid "Rebuild" msgstr "Yeniden Oluştur" -#: tbl_operations.php:665 +#: tbl_operations.php:663 msgid "Repair" msgstr "Onar" -#: tbl_operations.php:677 +#: tbl_operations.php:675 msgid "Remove partitioning" msgstr "Bölümlendirmeyi kaldır" -#: tbl_operations.php:703 +#: tbl_operations.php:701 msgid "Check referential integrity:" msgstr "İlgili bütünlük kontrolü:" -#: tbl_printview.php:73 +#: tbl_printview.php:72 msgid "Show tables" msgstr "Tabloları göster" -#: tbl_printview.php:308 tbl_structure.php:655 +#: tbl_printview.php:307 tbl_structure.php:653 msgid "Space usage" msgstr "Alan kullanımı" -#: tbl_printview.php:312 tbl_structure.php:659 +#: tbl_printview.php:311 tbl_structure.php:657 msgid "Usage" msgstr "Kullanım" -#: tbl_printview.php:339 tbl_structure.php:686 +#: tbl_printview.php:338 tbl_structure.php:684 msgid "Effective" msgstr "Etkili" -#: tbl_printview.php:364 tbl_structure.php:724 +#: tbl_printview.php:363 tbl_structure.php:722 msgid "Row Statistics" msgstr "Satır İstatistikleri" -#: tbl_printview.php:367 tbl_structure.php:727 +#: tbl_printview.php:366 tbl_structure.php:725 msgid "Statements" msgstr "İfadeler" -#: tbl_printview.php:378 tbl_structure.php:739 +#: tbl_printview.php:377 tbl_structure.php:737 msgid "static" msgstr "sabit" -#: tbl_printview.php:380 tbl_structure.php:741 +#: tbl_printview.php:379 tbl_structure.php:739 msgid "dynamic" msgstr "değişken" -#: tbl_printview.php:402 tbl_structure.php:784 +#: tbl_printview.php:401 tbl_structure.php:782 msgid "Row length" msgstr "Satır uzunluğu" -#: tbl_printview.php:412 tbl_structure.php:792 +#: tbl_printview.php:411 tbl_structure.php:790 msgid " Row size " msgstr " Satır boyutu " -#: tbl_relation.php:278 +#: tbl_relation.php:276 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" "%1$s üzerinde dış anahtar oluşturma hatası (veri türlerini kontrol edin)" -#: tbl_relation.php:404 +#: tbl_relation.php:402 msgid "Internal relation" msgstr "Dahili bağlantılı" -#: tbl_relation.php:406 +#: tbl_relation.php:404 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -8116,7 +8193,7 @@ msgstr "" "FOREIGN KEY bağlantısının yerini tutan bir bağlantı varken dahili bağlantı " "mümkün değildir." -#: tbl_relation.php:412 +#: tbl_relation.php:410 msgid "Foreign key constraint" msgstr "Dış anahtar kısıtlaması" @@ -8124,113 +8201,113 @@ msgstr "Dış anahtar kısıtlaması" msgid "No rows selected" msgstr "Satır seçilmedi" -#: tbl_select.php:130 +#: tbl_select.php:129 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "\"Örnek sorgu\" yap. (joker: \"%\")" -#: tbl_select.php:136 +#: tbl_select.php:135 msgid "Operator" msgstr "İşletici" -#: tbl_select.php:267 +#: tbl_select.php:266 msgid "Select columns (at least one):" msgstr "Sütunları seç (en az bir):" -#: tbl_select.php:285 +#: tbl_select.php:284 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Arama koşulu ekle (\"where\" koşulu gövdesi):" -#: tbl_select.php:292 +#: tbl_select.php:291 msgid "Number of rows per page" msgstr "Sayfa başına satır sayısı" -#: tbl_select.php:298 +#: tbl_select.php:297 msgid "Display order:" msgstr "Görünüm düzeni:" -#: tbl_structure.php:160 +#: tbl_structure.php:159 msgid "Browse distinct values" msgstr "Belirgin değerlere gözat" -#: tbl_structure.php:360 +#: tbl_structure.php:358 msgctxt "None for default" msgid "None" msgstr "Hiçbiri" -#: tbl_structure.php:373 +#: tbl_structure.php:371 #, php-format msgid "Column %s has been dropped" msgstr "Sütun %s kaldırıldı" -#: tbl_structure.php:384 +#: tbl_structure.php:382 #, php-format msgid "A primary key has been added on %s" msgstr "%s üzerinde birincil anahtar eklendi" -#: tbl_structure.php:399 tbl_structure.php:413 tbl_structure.php:427 +#: tbl_structure.php:397 tbl_structure.php:411 tbl_structure.php:425 #, php-format msgid "An index has been added on %s" msgstr "%s üzerinde bir indeks eklendi" -#: tbl_structure.php:505 tbl_structure.php:507 +#: tbl_structure.php:503 tbl_structure.php:505 msgid "Relation view" msgstr "İlişki görünümü" -#: tbl_structure.php:514 tbl_structure.php:516 +#: tbl_structure.php:512 tbl_structure.php:514 msgid "Propose table structure" msgstr "Tablo yapısı öner" -#: tbl_structure.php:539 +#: tbl_structure.php:537 msgid "Add column" msgstr "Sütun ekle" -#: tbl_structure.php:553 +#: tbl_structure.php:551 msgid "At End of Table" msgstr "Tablonun Sonuna" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At Beginning of Table" msgstr "Tablonun Başına" -#: tbl_structure.php:555 +#: tbl_structure.php:553 #, php-format msgid "After %s" msgstr "%s tablosundan sonra" -#: tbl_structure.php:593 +#: tbl_structure.php:591 #, php-format msgid "Create an index on  %s columns" msgstr " %s sütunda indeks oluştur" -#: tbl_structure.php:755 +#: tbl_structure.php:753 msgid "partitioned" msgstr "bölüme ayrıldı" -#: tbl_tracking.php:113 +#: tbl_tracking.php:109 #, php-format msgid "Tracking report for table `%s`" msgstr "`%s` tablosu için izleme raporu" -#: tbl_tracking.php:186 +#: tbl_tracking.php:182 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "Sürüm %s oluşturuldu, %s.%s için izlenen aktif." -#: tbl_tracking.php:194 +#: tbl_tracking.php:190 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "%s.%s için izleniyor, sürüm %s devre dışı." -#: tbl_tracking.php:202 +#: tbl_tracking.php:198 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "%s.%s için izleniyor, sürüm %s aktif." -#: tbl_tracking.php:212 +#: tbl_tracking.php:208 msgid "SQL statements executed." msgstr "SQL ifadeleri çalıştırıldı." -#: tbl_tracking.php:219 +#: tbl_tracking.php:215 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -8239,111 +8316,111 @@ msgstr "" "çalıştırabilirsiniz. Lütfen bunu yapmak için izinlerinizin olduğundan emin " "olun." -#: tbl_tracking.php:220 +#: tbl_tracking.php:216 msgid "Comment out these two lines if you do not need them." msgstr "Eğer ihtiyacınız yoksa bu iki satırı yorum dışı bırakın." -#: tbl_tracking.php:229 +#: tbl_tracking.php:225 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" "SQL ifadeleri dışarı aktarıldı. Lütfen yığını kopyalayın ya da çalıştırın." -#: tbl_tracking.php:250 tbl_tracking.php:378 +#: tbl_tracking.php:245 tbl_tracking.php:373 msgid "Close" msgstr "Kapat" -#: tbl_tracking.php:261 +#: tbl_tracking.php:256 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Sürüm %s görüntüsü yakalama (SQL kodu)" -#: tbl_tracking.php:380 +#: tbl_tracking.php:375 msgid "Tracking statements" msgstr "İzleme ifadeleri" -#: tbl_tracking.php:396 tbl_tracking.php:503 +#: tbl_tracking.php:391 tbl_tracking.php:498 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "" "%s tarihleriyle göster. %s ile %s arasını. %s %s kullanıcısı tarafından" -#: tbl_tracking.php:409 tbl_tracking.php:460 +#: tbl_tracking.php:404 tbl_tracking.php:455 msgid "Date" msgstr "Tarih" -#: tbl_tracking.php:410 tbl_tracking.php:461 +#: tbl_tracking.php:405 tbl_tracking.php:456 msgid "Username" msgstr "Kullanıcı Adı" -#: tbl_tracking.php:411 +#: tbl_tracking.php:406 msgid "Data definition statement" msgstr "Veri tanımlama ifadesi" -#: tbl_tracking.php:462 +#: tbl_tracking.php:457 msgid "Data manipulation statement" msgstr "Veri işleme ifadesi" -#: tbl_tracking.php:506 +#: tbl_tracking.php:501 msgid "SQL dump (file download)" msgstr "SQL yığını (dosya indirme)" -#: tbl_tracking.php:507 +#: tbl_tracking.php:502 msgid "SQL dump" msgstr "SQL yığını" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "This option will replace your table and contained data." msgstr "Bu seçenek tablolarınızı ve içerdiği veriyi değiştirecektir." -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "SQL execution" msgstr "SQL çalıştırma" -#: tbl_tracking.php:520 +#: tbl_tracking.php:515 #, php-format msgid "Export as %s" msgstr "%s olarak dışarı aktar" -#: tbl_tracking.php:560 +#: tbl_tracking.php:555 msgid "Show versions" msgstr "Sürümleri göster" -#: tbl_tracking.php:592 +#: tbl_tracking.php:587 msgid "Version" msgstr "Sürüm" -#: tbl_tracking.php:639 +#: tbl_tracking.php:634 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "%s.%s için izlemeyi devre dışı bırak" -#: tbl_tracking.php:641 +#: tbl_tracking.php:636 msgid "Deactivate now" msgstr "Hemen devre dışı bırak" -#: tbl_tracking.php:652 +#: tbl_tracking.php:647 #, php-format msgid "Activate tracking for %s.%s" msgstr "%s.%s için izlemeyi aktif et" -#: tbl_tracking.php:654 +#: tbl_tracking.php:649 msgid "Activate now" msgstr "Hemen aktif et" -#: tbl_tracking.php:667 +#: tbl_tracking.php:662 #, php-format msgid "Create version %s of %s.%s" msgstr "%s.%s için %s sürümü oluştur" -#: tbl_tracking.php:671 +#: tbl_tracking.php:666 msgid "Track these data definition statements:" msgstr "Bu veri tanımlama ifadelerini izle:" -#: tbl_tracking.php:679 +#: tbl_tracking.php:674 msgid "Track these data manipulation statements:" msgstr "Bu veri işleme ifadelerini izle:" -#: tbl_tracking.php:687 +#: tbl_tracking.php:682 msgid "Create version" msgstr "Sürüm oluştur" @@ -8391,10 +8468,34 @@ msgstr "Profil güncellendi." msgid "VIEW name" msgstr "GÖRÜNÜM adı" -#: view_operations.php:92 +#: view_operations.php:91 msgid "Rename view to" msgstr "Görünümü yeniden şuna adlandır" +#~ msgid "BLOB Repository" +#~ msgstr "BLOB Havuzu" + +#~ msgctxt "BLOB repository" +#~ msgid "Enabled" +#~ msgstr "Etkinleştirildi" + +#~ msgid "Disable" +#~ msgstr "Etkisiz" + +#~ msgid "Damaged" +#~ msgstr "Hasarlı" + +#~ msgctxt "BLOB repository" +#~ msgid "Repair" +#~ msgstr "Onar" + +#~ msgctxt "BLOB repository" +#~ msgid "Disabled" +#~ msgstr "Etkisizleştirildi" + +#~ msgid "Enable" +#~ msgstr "Etkin" + #~ msgid "" #~ "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " #~ "extension. Please check your PHP configuration." diff --git a/po/tt.po b/po/tt.po index cbbcae96c..629acfd32 100644 --- a/po/tt.po +++ b/po/tt.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-21 13:53+0200\n" +"POT-Creation-Date: 2010-07-26 17:18+0200\n" "PO-Revision-Date: 2010-07-22 02:25+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: tatarish \n" @@ -14,19 +14,19 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.1\n" -#: browse_foreigners.php:37 browse_foreigners.php:58 -#: libraries/display_tbl.lib.php:416 server_privileges.php:1506 +#: browse_foreigners.php:36 browse_foreigners.php:57 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1510 msgid "Show all" msgstr "Barısın kürsät" -#: browse_foreigners.php:81 libraries/common.lib.php:2313 -#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:393 -#: libraries/export/pdf.php:146 pdf_schema.php:282 pdf_schema.php:1122 -#: pdf_schema.php:1138 +#: browse_foreigners.php:80 libraries/common.lib.php:2318 +#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:392 +#: libraries/export/pdf.php:146 pdf_schema.php:281 pdf_schema.php:1121 +#: pdf_schema.php:1137 msgid "Page number:" msgstr "Bitneñ sanı:" -#: browse_foreigners.php:131 +#: browse_foreigners.php:130 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -36,139 +36,151 @@ msgstr "" "bälki, yä browserneñ iminlek caylawında täräzä-ara yañartu tıyılğan bulıp " "tora." -#: browse_foreigners.php:149 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2829 -#: libraries/common.lib.php:2836 libraries/db_links.inc.php:74 -#: libraries/tbl_links.inc.php:62 +#: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 +#: db_structure.php:89 db_structure.php:91 db_structure.php:102 +#: db_structure.php:104 libraries/common.lib.php:2834 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Ezläw" -#: browse_foreigners.php:152 db_operations.php:384 db_operations.php:428 -#: db_operations.php:498 db_operations.php:608 db_search.php:344 -#: db_structure.php:566 js/messages.php:48 libraries/Config.class.php:1043 -#: libraries/Theme_Manager.class.php:310 +#: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 +#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 +#: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 -#: libraries/common.lib.php:1340 libraries/common.lib.php:2289 +#: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 -#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:275 -#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:531 -#: libraries/display_tbl.lib.php:613 libraries/replication_gui.lib.php:75 +#: libraries/display_export.lib.php:269 libraries/display_import.lib.php:275 +#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 +#: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 #: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:781 -#: main.php:127 navigation.php:231 pdf_pages.php:291 pdf_pages.php:327 -#: pdf_pages.php:529 pmd_pdf.php:115 server_binlog.php:128 -#: server_privileges.php:664 server_privileges.php:1616 -#: server_privileges.php:1963 server_privileges.php:2010 -#: server_privileges.php:2049 server_replication.php:234 -#: server_replication.php:317 server_replication.php:340 -#: server_synchronize.php:1208 tbl_change.php:328 tbl_change.php:1172 -#: tbl_change.php:1209 tbl_indexes.php:253 tbl_operations.php:264 -#: tbl_operations.php:301 tbl_operations.php:498 tbl_operations.php:560 -#: tbl_operations.php:680 tbl_select.php:324 tbl_structure.php:561 -#: tbl_structure.php:596 tbl_tracking.php:394 tbl_tracking.php:511 -#: view_create.php:181 view_operations.php:100 +#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 +#: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 +#: server_privileges.php:663 server_privileges.php:1620 +#: server_privileges.php:1967 server_privileges.php:2014 +#: server_privileges.php:2053 server_replication.php:233 +#: server_replication.php:316 server_replication.php:339 +#: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 +#: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 +#: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 +#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "Äydä" -#: browse_foreigners.php:167 browse_foreigners.php:171 -#: libraries/Index.class.php:441 tbl_tracking.php:319 +#: browse_foreigners.php:166 browse_foreigners.php:170 +#: libraries/Index.class.php:441 tbl_tracking.php:314 msgid "Keyname" msgstr "Tezeş adı" -#: browse_foreigners.php:168 browse_foreigners.php:170 -#: server_collations.php:54 server_collations.php:66 server_engines.php:58 +#: browse_foreigners.php:167 browse_foreigners.php:169 +#: server_collations.php:54 server_collations.php:66 server_engines.php:57 #: server_status.php:738 msgid "Description" msgstr "Açıqlama" -#: browse_foreigners.php:246 browse_foreigners.php:255 -#: browse_foreigners.php:267 browse_foreigners.php:275 +#: browse_foreigners.php:245 browse_foreigners.php:254 +#: browse_foreigners.php:266 browse_foreigners.php:274 msgid "Use this value" msgstr "Bu bäyä belän" -#: db_create.php:45 +#: bs_disp_as_mime_type.php:29 bs_play_media.php:35 +msgid "No blob streaming server configured!" +msgstr "" + +#: bs_disp_as_mime_type.php:35 +msgid "Failed to fetch headers" +msgstr "" + +#: bs_disp_as_mime_type.php:41 +msgid "Failed to open remote URL" +msgstr "" + +#: db_create.php:44 #, fuzzy, php-format msgid "Database %1$s has been created." msgstr "%s biremlege beterelde." -#: db_datadict.php:48 db_operations.php:377 +#: db_datadict.php:48 db_operations.php:313 msgid "Database comment: " msgstr "Biremlek açıqlaması:" -#: db_datadict.php:164 libraries/tbl_properties.inc.php:723 -#: pdf_schema.php:1235 tbl_operations.php:346 tbl_printview.php:128 +#: db_datadict.php:164 libraries/tbl_properties.inc.php:722 +#: pdf_schema.php:1234 tbl_operations.php:344 tbl_printview.php:127 msgid "Table comments" msgstr "Tüşämä açıqlaması" -#: db_datadict.php:173 db_qbe.php:173 libraries/Index.class.php:445 +#: db_datadict.php:173 db_qbe.php:170 libraries/Index.class.php:445 #: libraries/export/htmlword.php:243 libraries/export/latex.php:364 #: libraries/export/odt.php:293 libraries/export/texytext.php:233 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:274 -#: pdf_schema.php:1261 pdf_schema.php:1282 tbl_change.php:306 -#: tbl_indexes.php:188 tbl_printview.php:140 tbl_relation.php:401 -#: tbl_select.php:133 tbl_structure.php:176 tbl_tracking.php:272 -#: tbl_tracking.php:323 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 +#: pdf_schema.php:1260 pdf_schema.php:1281 tbl_change.php:301 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:132 tbl_structure.php:175 tbl_tracking.php:267 +#: tbl_tracking.php:318 #, fuzzy #| msgid "Column names" msgid "Column" msgstr "Alan iseme" -#: db_datadict.php:174 db_printview.php:105 libraries/Index.class.php:442 +#: db_datadict.php:174 db_printview.php:104 libraries/Index.class.php:442 #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 #: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:244 #: libraries/export/latex.php:364 libraries/export/odt.php:296 #: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:99 -#: pdf_schema.php:1262 pdf_schema.php:1283 server_privileges.php:2062 -#: tbl_change.php:285 tbl_change.php:312 tbl_printview.php:141 -#: tbl_printview.php:311 tbl_select.php:134 tbl_structure.php:177 -#: tbl_structure.php:658 tbl_tracking.php:273 tbl_tracking.php:320 +#: pdf_schema.php:1261 pdf_schema.php:1282 server_privileges.php:2066 +#: tbl_change.php:280 tbl_change.php:307 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:133 tbl_structure.php:176 +#: tbl_structure.php:656 tbl_tracking.php:268 tbl_tracking.php:315 msgid "Type" msgstr "Töre" #: db_datadict.php:176 libraries/Index.class.php:448 #: libraries/export/htmlword.php:245 libraries/export/latex.php:364 #: libraries/export/odt.php:299 libraries/export/texytext.php:235 -#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1264 -#: pdf_schema.php:1285 tbl_change.php:321 tbl_printview.php:143 -#: tbl_structure.php:180 tbl_tracking.php:275 tbl_tracking.php:326 +#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1263 +#: pdf_schema.php:1284 tbl_change.php:316 tbl_printview.php:142 +#: tbl_structure.php:179 tbl_tracking.php:270 tbl_tracking.php:321 msgid "Null" msgstr "Buş" -#: db_datadict.php:177 db_structure.php:500 libraries/export/htmlword.php:246 +#: db_datadict.php:177 db_structure.php:486 libraries/export/htmlword.php:246 #: libraries/export/latex.php:364 libraries/export/odt.php:302 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:105 -#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 -#: tbl_structure.php:181 tbl_tracking.php:276 +#: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:143 +#: tbl_structure.php:180 tbl_tracking.php:271 msgid "Default" msgstr "Töpcay" #: db_datadict.php:181 libraries/export/htmlword.php:248 #: libraries/export/latex.php:366 libraries/export/odt.php:306 -#: libraries/export/texytext.php:238 pdf_schema.php:1267 pdf_schema.php:1288 -#: tbl_printview.php:148 +#: libraries/export/texytext.php:238 pdf_schema.php:1266 pdf_schema.php:1287 +#: tbl_printview.php:147 msgid "Links to" msgstr "Bonı belän bäyläneş:" -#: db_datadict.php:183 db_printview.php:111 libraries/export/htmlword.php:251 +#: db_datadict.php:183 db_printview.php:110 libraries/export/htmlword.php:251 #: libraries/export/latex.php:49 libraries/export/latex.php:369 #: libraries/export/odt.php:37 libraries/export/odt.php:311 #: libraries/export/sql.php:29 libraries/export/texytext.php:241 -#: libraries/tbl_properties.inc.php:129 pdf_schema.php:1278 -#: pdf_schema.php:1289 tbl_printview.php:150 +#: libraries/tbl_properties.inc.php:128 pdf_schema.php:1277 +#: pdf_schema.php:1288 tbl_printview.php:149 msgid "Comments" msgstr "Açıqlama" #: db_datadict.php:266 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/export/htmlword.php:321 #: libraries/export/latex.php:434 libraries/export/odt.php:367 -#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:262 -#: pdf_schema.php:1343 server_privileges.php:1560 server_privileges.php:1571 -#: server_privileges.php:1881 server_privileges.php:1886 -#: server_privileges.php:2179 sql.php:131 sql.php:193 tbl_printview.php:227 -#: tbl_structure.php:349 tbl_tracking.php:336 tbl_tracking.php:341 +#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:261 +#: pdf_schema.php:1342 server_privileges.php:1564 server_privileges.php:1575 +#: server_privileges.php:1885 server_privileges.php:1890 +#: server_privileges.php:2183 sql.php:130 sql.php:192 tbl_printview.php:226 +#: tbl_structure.php:347 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "Yuq" @@ -179,17 +191,17 @@ msgstr "Yuq" #: libraries/mult_submits.inc.php:49 libraries/mult_submits.inc.php:54 #: libraries/mult_submits.inc.php:59 libraries/mult_submits.inc.php:91 #: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:105 -#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:261 -#: libraries/mult_submits.inc.php:272 pdf_schema.php:1343 -#: server_databases.php:63 server_privileges.php:1557 -#: server_privileges.php:1571 server_privileges.php:1881 -#: server_privileges.php:1884 server_privileges.php:2179 sql.php:192 -#: tbl_printview.php:227 tbl_structure.php:39 tbl_structure.php:349 -#: tbl_tracking.php:334 tbl_tracking.php:339 +#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:260 +#: libraries/mult_submits.inc.php:271 pdf_schema.php:1342 +#: server_databases.php:61 server_privileges.php:1561 +#: server_privileges.php:1575 server_privileges.php:1885 +#: server_privileges.php:1888 server_privileges.php:2183 sql.php:191 +#: tbl_printview.php:226 tbl_structure.php:38 tbl_structure.php:347 +#: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" msgstr "Äye" -#: db_datadict.php:321 db_printview.php:265 tbl_printview.php:496 +#: db_datadict.php:321 db_printview.php:264 tbl_printview.php:495 msgid "Print" msgstr "Bastır" @@ -197,289 +209,248 @@ msgstr "Bastır" msgid "View dump (schema) of database" msgstr "Biremlek eçtälegen (tözeleşen) çığaru" -#: db_export.php:32 db_printview.php:95 db_qbe.php:101 db_structure.php:50 -#: db_tracking.php:34 export.php:352 navigation.php:326 +#: db_export.php:32 db_printview.php:94 db_qbe.php:98 db_structure.php:49 +#: db_tracking.php:30 export.php:350 navigation.php:325 msgid "No tables found in database." msgstr "Bu biremlektä ber genä dä tüşämä yuq." -#: db_export.php:42 db_search.php:326 server_export.php:26 +#: db_export.php:42 db_search.php:326 server_export.php:24 msgid "Select All" msgstr "Saylap Beter" -#: db_export.php:44 db_search.php:329 server_export.php:28 +#: db_export.php:44 db_search.php:329 server_export.php:26 msgid "Unselect All" msgstr "Saylanunı Töşer" -#: db_operations.php:37 tbl_create.php:49 +#: db_operations.php:33 tbl_create.php:47 msgid "The database name is empty!" msgstr "Biremlek iseme buş!" -#: db_operations.php:235 +#: db_operations.php:231 #, php-format msgid "Database %s has been renamed to %s" msgstr "\"%s\" biremlege \"%s\" itep ataldı" -#: db_operations.php:239 +#: db_operations.php:235 #, php-format msgid "Database %s has been copied to %s" msgstr "Database %s has been copied to %s" -#: db_operations.php:411 +#: db_operations.php:347 msgid "Rename database to" msgstr "Biremlekne bolay atap quy" -#: db_operations.php:416 server_processlist.php:56 +#: db_operations.php:352 server_processlist.php:56 msgid "Command" msgstr "Ämer" -#: db_operations.php:428 tbl_change.php:1141 +#: db_operations.php:364 tbl_change.php:1039 msgid "and then" msgstr ", şunnan soñ" -#: db_operations.php:454 +#: db_operations.php:390 msgid "Copy database to" msgstr "Biremlekne boña kübäyt" -#: db_operations.php:461 tbl_operations.php:527 tbl_tracking.php:387 +#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Tözeleşen genä" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:389 +#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Tözeleşen dä, eçtälegen dä" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:388 +#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Eçtälegen genä" -#: db_operations.php:471 +#: db_operations.php:407 msgid "CREATE DATABASE before copying" msgstr "Kübäytü aldınnan CREATE DATABASE östise" -#: db_operations.php:474 libraries/export/sql.php:51 +#: db_operations.php:410 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 -#: libraries/export/sql.php:81 tbl_operations.php:535 +#: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "%s östäw" -#: db_operations.php:478 libraries/export/sql.php:77 tbl_operations.php:298 -#: tbl_operations.php:537 +#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "\"AUTO_INCREMENT\" bäyäsen östise" -#: db_operations.php:482 tbl_operations.php:544 +#: db_operations.php:418 tbl_operations.php:542 msgid "Add constraints" msgstr "Çikläwlär östise" -#: db_operations.php:495 +#: db_operations.php:431 msgid "Switch to copied database" msgstr "Kübäytelgän biremlekkä küçäse" -#: db_operations.php:536 -msgid "BLOB Repository" -msgstr "" - -#: db_operations.php:539 db_tracking.php:75 libraries/common.lib.php:1357 -#: libraries/server_links.inc.php:48 server_processlist.php:58 -#: tbl_tracking.php:595 test/theme.php:100 -msgid "Status" -msgstr "Torış" - -#: db_operations.php:547 -#, fuzzy -#| msgid "Enabled" -msgctxt "BLOB repository" -msgid "Enabled" -msgstr "Açıq" - -#: db_operations.php:551 -#, fuzzy -msgid "Disable" -msgstr "Sünek" - -#: db_operations.php:561 -msgid "Damaged" -msgstr "" - -#: db_operations.php:565 -#, fuzzy -msgctxt "BLOB repository" -msgid "Repair" -msgstr "Tüşämä tözätü" - -#: db_operations.php:573 -#, fuzzy -#| msgid "Disabled" -msgctxt "BLOB repository" -msgid "Disabled" -msgstr "Sünek" - -#: db_operations.php:577 -#, fuzzy -msgid "Enable" -msgstr "Açıq" - -#: db_operations.php:601 libraries/Index.class.php:447 +#: db_operations.php:451 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 -#: server_collations.php:53 server_collations.php:65 server_databases.php:110 -#: tbl_operations.php:362 tbl_select.php:135 tbl_structure.php:178 -#: tbl_structure.php:766 tbl_tracking.php:274 tbl_tracking.php:325 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 +#: server_collations.php:53 server_collations.php:65 server_databases.php:108 +#: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:177 +#: tbl_structure.php:764 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "Tezü cayı" -#: db_operations.php:614 main.php:315 pdf_schema.php:33 -#, php-format +#: db_operations.php:464 pdf_schema.php:32 +#, fuzzy, php-format +#| msgid "" +#| "The additional features for working with linked tables have been " +#| "deactivated. To find out why click %shere%s." msgid "" -"The additional features for working with linked tables have been " -"deactivated. To find out why click %shere%s." +"The phpMyAdmin configuration storage has been deactivated. To find out why " +"click %shere%s." 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:647 +#: db_operations.php:497 msgid "Edit PDF Pages" msgstr "PDF-Bitlär Üzgärtü" -#: db_printview.php:103 db_tracking.php:71 db_tracking.php:156 +#: db_printview.php:102 db_tracking.php:67 db_tracking.php:152 #: libraries/db_structure.lib.php:37 libraries/export/xml.php:327 -#: libraries/header.inc.php:125 pdf_pages.php:423 server_privileges.php:1657 -#: server_privileges.php:1713 server_privileges.php:1977 -#: server_synchronize.php:422 server_synchronize.php:865 tbl_tracking.php:591 +#: libraries/header.inc.php:125 pdf_pages.php:422 server_privileges.php:1661 +#: server_privileges.php:1717 server_privileges.php:1981 +#: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "Tüşämä" -#: db_printview.php:104 libraries/db_structure.lib.php:47 +#: db_printview.php:103 libraries/db_structure.lib.php:47 #: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 -#: navigation.php:629 navigation.php:651 server_databases.php:121 -#: tbl_printview.php:392 tbl_structure.php:364 tbl_structure.php:776 +#: navigation.php:628 navigation.php:650 server_databases.php:119 +#: tbl_printview.php:391 tbl_structure.php:362 tbl_structure.php:774 msgid "Rows" msgstr "Kerem" -#: db_printview.php:108 libraries/db_structure.lib.php:58 tbl_indexes.php:189 +#: db_printview.php:107 libraries/db_structure.lib.php:58 tbl_indexes.php:188 msgid "Size" msgstr "Küläme" -#: db_printview.php:161 db_structure.php:456 libraries/export/sql.php:556 +#: db_printview.php:160 db_structure.php:442 libraries/export/sql.php:556 #: libraries/export/sql.php:896 msgid "in use" msgstr "totıla" -#: db_printview.php:186 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:511 pdf_schema.php:1240 tbl_printview.php:432 -#: tbl_structure.php:808 +#: db_printview.php:185 libraries/db_info.inc.php:86 +#: libraries/export/sql.php:511 pdf_schema.php:1239 tbl_printview.php:431 +#: tbl_structure.php:806 msgid "Creation" msgstr "Yasalışı" -#: db_printview.php:195 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:516 pdf_schema.php:1245 tbl_printview.php:442 -#: tbl_structure.php:816 +#: db_printview.php:194 libraries/db_info.inc.php:91 +#: libraries/export/sql.php:516 pdf_schema.php:1244 tbl_printview.php:441 +#: tbl_structure.php:814 msgid "Last update" msgstr "Soñğı yañartılu" -#: db_printview.php:204 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:521 pdf_schema.php:1250 tbl_printview.php:452 -#: tbl_structure.php:824 +#: db_printview.php:203 libraries/db_info.inc.php:96 +#: libraries/export/sql.php:521 pdf_schema.php:1249 tbl_printview.php:451 +#: tbl_structure.php:822 msgid "Last check" msgstr "Soñğı tikşerü" -#: db_printview.php:221 db_structure.php:479 +#: db_printview.php:220 db_structure.php:465 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" msgid_plural "%s tables" msgstr[0] "%s tüşämä" -#: db_qbe.php:28 import.php:453 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1980 libraries/sql_query_form.lib.php:138 -#: tbl_operations.php:212 tbl_relation.php:291 tbl_row_action.php:130 -#: view_operations.php:61 +#: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 +#: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "SQL-sorawıñ uñışlı eşkärtelde" -#: db_qbe.php:41 +#: db_qbe.php:38 msgid "You have to choose at least one column to display" msgstr "You have to choose at least one Column to display" -#: db_qbe.php:199 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:865 +#: db_qbe.php:196 libraries/db_structure.lib.php:95 +#: libraries/display_tbl.lib.php:864 msgid "Sort" msgstr "Tezü" -#: db_qbe.php:208 db_qbe.php:242 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:522 libraries/display_tbl.lib.php:827 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:259 -#: tbl_select.php:311 +#: db_qbe.php:205 db_qbe.php:239 libraries/db_structure.lib.php:102 +#: libraries/display_tbl.lib.php:521 libraries/display_tbl.lib.php:826 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:257 +#: tbl_select.php:310 msgid "Ascending" msgstr "Artıp" -#: db_qbe.php:209 db_qbe.php:250 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:527 libraries/display_tbl.lib.php:824 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:260 -#: tbl_select.php:312 +#: db_qbe.php:206 db_qbe.php:247 libraries/db_structure.lib.php:110 +#: libraries/display_tbl.lib.php:526 libraries/display_tbl.lib.php:823 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:258 +#: tbl_select.php:311 msgid "Descending" msgstr "Kimep" -#: db_qbe.php:263 db_tracking.php:77 libraries/display_tbl.lib.php:307 -#: tbl_change.php:275 tbl_tracking.php:596 +#: db_qbe.php:260 db_tracking.php:73 libraries/display_tbl.lib.php:306 +#: tbl_change.php:270 tbl_tracking.php:591 msgid "Show" msgstr "Kürsät" -#: db_qbe.php:299 +#: db_qbe.php:296 msgid "Criteria" msgstr "Şart" -#: db_qbe.php:352 db_qbe.php:434 db_qbe.php:526 db_qbe.php:557 +#: db_qbe.php:349 db_qbe.php:431 db_qbe.php:523 db_qbe.php:554 msgid "Ins" msgstr "Tıq" -#: db_qbe.php:356 db_qbe.php:438 db_qbe.php:523 db_qbe.php:554 +#: db_qbe.php:353 db_qbe.php:435 db_qbe.php:520 db_qbe.php:551 msgid "And" msgstr "Wä" -#: db_qbe.php:365 db_qbe.php:446 db_qbe.php:528 db_qbe.php:559 +#: db_qbe.php:362 db_qbe.php:443 db_qbe.php:525 db_qbe.php:556 msgid "Del" msgstr "Sal" -#: db_qbe.php:369 db_qbe.php:450 db_qbe.php:521 db_qbe.php:552 -#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:778 -#: server_privileges.php:297 tbl_change.php:1027 tbl_indexes.php:249 -#: tbl_select.php:285 +#: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 +#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:777 +#: server_privileges.php:296 tbl_change.php:925 tbl_indexes.php:248 +#: tbl_select.php:284 msgid "Or" msgstr "Yä" -#: db_qbe.php:506 +#: db_qbe.php:503 msgid "Modify" msgstr "Üzgärt" -#: db_qbe.php:583 +#: db_qbe.php:580 #, fuzzy #| msgid "Add/Delete Criteria Row" msgid "Add/Delete criteria rows" msgstr "Add/Delete Criteria Row" -#: db_qbe.php:595 +#: db_qbe.php:592 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Add/Delete columns" msgstr "Add/Delete Field Columns" -#: db_qbe.php:608 db_qbe.php:633 +#: db_qbe.php:605 db_qbe.php:630 msgid "Update Query" msgstr "Sorawnı Yañart" -#: db_qbe.php:616 +#: db_qbe.php:613 msgid "Use Tables" msgstr "Tüşämä qullanıp" -#: db_qbe.php:639 +#: db_qbe.php:636 #, php-format msgid "SQL query on database %s:" msgstr "%s biremlegenä SQL-soraw:" -#: db_qbe.php:933 libraries/common.lib.php:1222 +#: db_qbe.php:930 libraries/common.lib.php:1215 msgid "Submit Query" msgstr "Sorawnı Yulla" @@ -518,17 +489,17 @@ msgid "%s match inside table %s" msgid_plural "%s matches inside table %s" msgstr[0] "%s kileşü bar, %s atlı tüşämädä" -#: db_search.php:249 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2831 -#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:49 -#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:466 +#: db_search.php:249 db_structure.php:75 db_structure.php:76 +#: db_structure.php:88 db_structure.php:90 db_structure.php:101 +#: db_structure.php:103 libraries/common.lib.php:2836 +#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 +#: tbl_structure.php:35 tbl_structure.php:47 tbl_structure.php:464 msgid "Browse" msgstr "Küzätü" -#: db_search.php:254 libraries/display_tbl.lib.php:1164 -#: libraries/display_tbl.lib.php:2055 libraries/sql_query_form.lib.php:453 -#: pdf_pages.php:285 pdf_pages.php:424 pdf_pages.php:460 pdf_pages.php:488 +#: db_search.php:254 libraries/display_tbl.lib.php:1163 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 msgid "Delete" @@ -567,234 +538,240 @@ msgstr "Kiläse tüşämä eçendä:" msgid "Inside column:" msgstr "Kiläse tüşämä eçendä:" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2830 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:75 +#: db_structure.php:79 db_structure.php:80 db_structure.php:92 +#: db_structure.php:93 db_structure.php:105 db_structure.php:106 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 +#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Östäw" -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2827 libraries/common.lib.php:2834 -#: libraries/db_links.inc.php:62 libraries/export/htmlword.php:22 +#: db_structure.php:81 db_structure.php:94 db_structure.php:107 +#: libraries/common.lib.php:2832 libraries/common.lib.php:2839 +#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 -#: libraries/tbl_links.inc.php:55 pmd_general.php:133 -#: server_privileges.php:593 server_replication.php:314 tbl_tracking.php:268 +#: libraries/tbl_links.inc.php:54 pmd_general.php:133 +#: server_privileges.php:592 server_replication.php:313 tbl_tracking.php:263 msgid "Structure" msgstr "Tözeleş" -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:544 db_structure.php:545 db_tracking.php:90 -#: libraries/Index.class.php:482 libraries/common.lib.php:1659 -#: libraries/db_links.inc.php:99 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:126 -#: server_databases.php:351 tbl_structure.php:26 tbl_structure.php:150 -#: tbl_structure.php:151 tbl_structure.php:470 +#: db_structure.php:82 db_structure.php:83 db_structure.php:95 +#: db_structure.php:96 db_structure.php:108 db_structure.php:109 +#: db_structure.php:530 db_structure.php:531 db_tracking.php:86 +#: libraries/Index.class.php:482 libraries/common.lib.php:1663 +#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 +#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 +#: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" msgstr "Beter" -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:542 db_structure.php:543 libraries/common.lib.php:1658 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:104 +#: db_structure.php:84 db_structure.php:85 db_structure.php:97 +#: db_structure.php:98 db_structure.php:110 db_structure.php:111 +#: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 +#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 msgid "Empty" msgstr "Buşat" -#: db_structure.php:315 libraries/tbl_links.inc.php:99 +#: db_structure.php:301 libraries/tbl_links.inc.php:98 #, php-format msgid "Table %s has been emptied" msgstr "\"%s\" atlı tüşämä buşatıldı" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "View %s has been dropped" msgstr "\"%s\" atlı Qaraş beterelgän buldı" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "Table %s has been dropped" msgstr "\"%s\" atlı tüşämä beterelde" -#: db_structure.php:332 +#: db_structure.php:318 msgid "Tracking is active." msgstr "" -#: db_structure.php:334 +#: db_structure.php:320 msgid "Tracking is not active." msgstr "" -#: db_structure.php:419 libraries/display_tbl.lib.php:1943 +#: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -#: db_structure.php:433 db_structure.php:447 libraries/header.inc.php:125 -#: libraries/tbl_info.inc.php:65 tbl_structure.php:184 test/theme.php:73 +#: db_structure.php:419 db_structure.php:433 libraries/header.inc.php:125 +#: libraries/tbl_info.inc.php:60 tbl_structure.php:183 test/theme.php:73 msgid "View" msgstr "Qaraş" -#: db_structure.php:484 libraries/db_structure.lib.php:40 -#: libraries/server_links.inc.php:69 server_replication.php:32 -#: server_replication.php:163 server_status.php:368 +#: db_structure.php:470 libraries/db_structure.lib.php:40 +#: libraries/server_links.inc.php:69 server_replication.php:31 +#: server_replication.php:162 server_status.php:368 #, fuzzy msgid "Replication" msgstr "Bäyläneşlär" -#: db_structure.php:488 +#: db_structure.php:474 msgid "Sum" msgstr "Sum" -#: db_structure.php:495 libraries/StorageEngine.class.php:349 +#: db_structure.php:481 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "Bu MySQL-serverdä %s digän saqlaw ısulı töp bularaq saylanğan." -#: db_structure.php:523 db_structure.php:540 db_structure.php:541 -#: libraries/display_tbl.lib.php:2080 libraries/display_tbl.lib.php:2085 -#: libraries/mult_submits.inc.php:15 server_databases.php:345 -#: server_databases.php:350 server_privileges.php:1588 tbl_structure.php:454 -#: tbl_structure.php:463 +#: db_structure.php:509 db_structure.php:526 db_structure.php:527 +#: libraries/display_tbl.lib.php:2039 libraries/display_tbl.lib.php:2044 +#: libraries/mult_submits.inc.php:15 server_databases.php:343 +#: server_databases.php:348 server_privileges.php:1592 tbl_structure.php:452 +#: tbl_structure.php:461 msgid "With selected:" msgstr "Saylanğannı:" -#: db_structure.php:526 libraries/display_tbl.lib.php:2075 -#: server_databases.php:347 server_privileges.php:569 -#: server_privileges.php:1591 tbl_structure.php:457 +#: db_structure.php:512 libraries/display_tbl.lib.php:2034 +#: server_databases.php:345 server_privileges.php:568 +#: server_privileges.php:1595 tbl_structure.php:455 msgid "Check All" msgstr "Saylap Beter" -#: db_structure.php:530 libraries/display_tbl.lib.php:2076 -#: libraries/replication_gui.lib.php:35 server_databases.php:349 -#: server_privileges.php:572 server_privileges.php:1595 tbl_structure.php:461 +#: db_structure.php:516 libraries/display_tbl.lib.php:2035 +#: libraries/replication_gui.lib.php:35 server_databases.php:347 +#: server_privileges.php:571 server_privileges.php:1599 tbl_structure.php:459 msgid "Uncheck All" msgstr "Saylanunı Töşer" -#: db_structure.php:535 +#: db_structure.php:521 msgid "Check tables having overhead" msgstr "Check overheaded" -#: db_structure.php:546 db_structure.php:547 db_structure.php:598 -#: libraries/display_tbl.lib.php:2179 libraries/mult_submits.inc.php:27 -#: tbl_structure.php:491 tbl_structure.php:493 +#: db_structure.php:532 db_structure.php:533 db_structure.php:584 +#: libraries/display_tbl.lib.php:2138 libraries/mult_submits.inc.php:27 +#: tbl_structure.php:489 tbl_structure.php:491 msgid "Print view" msgstr "Bastıru küreneşe" -#: db_structure.php:548 db_structure.php:549 libraries/mult_submits.inc.php:41 -#: tbl_operations.php:580 +#: db_structure.php:534 db_structure.php:535 libraries/mult_submits.inc.php:41 +#: tbl_operations.php:578 msgid "Check table" msgstr "Tüşämä tikşerü" -#: db_structure.php:550 db_structure.php:551 libraries/mult_submits.inc.php:46 -#: tbl_operations.php:620 tbl_structure.php:708 tbl_structure.php:710 +#: db_structure.php:536 db_structure.php:537 libraries/mult_submits.inc.php:46 +#: tbl_operations.php:618 tbl_structure.php:706 tbl_structure.php:708 msgid "Optimize table" msgstr "Optimize table" -#: db_structure.php:552 db_structure.php:553 libraries/mult_submits.inc.php:51 -#: tbl_operations.php:610 +#: db_structure.php:538 db_structure.php:539 libraries/mult_submits.inc.php:51 +#: tbl_operations.php:608 msgid "Repair table" msgstr "Tüşämä tözätü" -#: db_structure.php:554 db_structure.php:555 libraries/mult_submits.inc.php:56 -#: tbl_operations.php:600 +#: db_structure.php:540 db_structure.php:541 libraries/mult_submits.inc.php:56 +#: tbl_operations.php:598 msgid "Analyze table" msgstr "Tüşämä centekläw" -#: db_structure.php:556 db_structure.php:557 libraries/db_links.inc.php:70 -#: libraries/display_export.lib.php:82 libraries/display_tbl.lib.php:2093 -#: libraries/display_tbl.lib.php:2224 libraries/mult_submits.inc.php:61 -#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:81 -#: pmd_pdf.php:83 pmd_pdf.php:108 server_privileges.php:1372 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 +#: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 +#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 +#: pmd_pdf.php:81 pmd_pdf.php:106 server_privileges.php:1376 #: setup/frames/menu.inc.php:22 tbl_row_action.php:58 msgid "Export" msgstr "Export" -#: db_structure.php:605 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:591 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "Eçtälek Süzlege" -#: db_tracking.php:65 +#: db_tracking.php:61 #, fuzzy msgid "Tracked tables" msgstr "Tüşämä tikşerü" -#: db_tracking.php:70 libraries/export/htmlword.php:85 +#: db_tracking.php:66 libraries/export/htmlword.php:85 #: libraries/export/latex.php:152 libraries/export/odt.php:112 #: libraries/export/sql.php:339 libraries/export/texytext.php:84 #: libraries/export/xml.php:254 libraries/header.inc.php:105 -#: libraries/header_printview.inc.php:57 server_databases.php:168 -#: server_privileges.php:1652 server_privileges.php:1713 -#: server_privileges.php:1971 server_processlist.php:55 -#: server_synchronize.php:1178 server_synchronize.php:1182 -#: tbl_tracking.php:590 test/theme.php:64 +#: libraries/header_printview.inc.php:57 server_databases.php:166 +#: server_privileges.php:1656 server_privileges.php:1717 +#: server_privileges.php:1975 server_processlist.php:55 +#: server_synchronize.php:1177 server_synchronize.php:1181 +#: tbl_tracking.php:585 test/theme.php:64 msgid "Database" msgstr "Biremlek" -#: db_tracking.php:72 +#: db_tracking.php:68 #, fuzzy msgid "Last version" msgstr "Server söreme" -#: db_tracking.php:73 tbl_tracking.php:593 +#: db_tracking.php:69 tbl_tracking.php:588 #, fuzzy msgid "Created" msgstr "Yarat" -#: db_tracking.php:74 tbl_tracking.php:594 +#: db_tracking.php:70 tbl_tracking.php:589 msgid "Updated" msgstr "" -#: db_tracking.php:76 libraries/Index.class.php:439 -#: libraries/db_structure.lib.php:44 server_databases.php:202 -#: server_privileges.php:1534 server_privileges.php:1717 -#: server_privileges.php:2065 tbl_structure.php:186 +#: db_tracking.php:71 libraries/common.lib.php:1361 +#: libraries/server_links.inc.php:48 server_processlist.php:58 +#: tbl_tracking.php:590 test/theme.php:100 +msgid "Status" +msgstr "Torış" + +#: db_tracking.php:72 libraries/Index.class.php:439 +#: libraries/db_structure.lib.php:44 server_databases.php:200 +#: server_privileges.php:1538 server_privileges.php:1721 +#: server_privileges.php:2069 tbl_structure.php:185 msgid "Action" msgstr "Eş" -#: db_tracking.php:87 db_tracking.php:119 +#: db_tracking.php:83 db_tracking.php:115 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:105 tbl_tracking.php:547 tbl_tracking.php:605 -#: tbl_tracking.php:612 +#: db_tracking.php:101 tbl_tracking.php:542 tbl_tracking.php:600 +#: tbl_tracking.php:607 msgid "active" msgstr "" -#: db_tracking.php:107 tbl_tracking.php:549 tbl_tracking.php:607 -#: tbl_tracking.php:609 +#: db_tracking.php:103 tbl_tracking.php:544 tbl_tracking.php:602 +#: tbl_tracking.php:604 msgid "not active" msgstr "" -#: db_tracking.php:120 +#: db_tracking.php:116 #, fuzzy msgid "Versions" msgstr "Farsíça" -#: db_tracking.php:121 tbl_tracking.php:378 tbl_tracking.php:623 +#: db_tracking.php:117 tbl_tracking.php:373 tbl_tracking.php:618 msgid "Tracking report" msgstr "" -#: db_tracking.php:122 tbl_tracking.php:250 tbl_tracking.php:623 +#: db_tracking.php:118 tbl_tracking.php:245 tbl_tracking.php:618 #, fuzzy msgid "Structure snapshot" msgstr "Tözeleşen genä" -#: db_tracking.php:151 +#: db_tracking.php:147 #, fuzzy msgid "Untracked tables" msgstr "Tüşämä tikşerü" -#: db_tracking.php:171 db_tracking.php:173 tbl_structure.php:527 -#: tbl_structure.php:529 +#: db_tracking.php:167 db_tracking.php:169 tbl_structure.php:525 +#: tbl_structure.php:527 #, fuzzy msgid "Track table" msgstr "Tüşämä tikşerü" -#: db_tracking.php:199 +#: db_tracking.php:195 #, fuzzy msgid "Database Log" msgstr "Biremlek" @@ -803,12 +780,12 @@ msgstr "Biremlek" msgid "Selected export type has to be saved in file!" msgstr "" -#: export.php:153 export.php:178 export.php:620 +#: export.php:152 export.php:177 export.php:615 #, php-format msgid "Insufficient space to save the file %s." msgstr "\"%s\" biremen saqlaw öçen buş ara citmi." -#: export.php:287 +#: export.php:286 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -816,91 +793,91 @@ msgstr "" "Serverdä %s digän birem bar inde, adın almaştırası, yä inde östän yazu " "tamğasın açası qala." -#: export.php:291 export.php:295 +#: export.php:290 export.php:294 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "The web server does not have permission to save the file %s." -#: export.php:622 +#: export.php:617 #, php-format msgid "Dump has been saved to file %s." msgstr "Eçtälege \"%s\" biremenä saqlandı." -#: import.php:59 +#: 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." msgstr "" -#: import.php:278 import.php:331 libraries/File.class.php:840 -#: libraries/File.class.php:950 +#: import.php:277 import.php:330 libraries/File.class.php:566 +#: libraries/File.class.php:676 msgid "File could not be read" msgstr "Birem uqıp bulmadı" -#: import.php:286 import.php:295 import.php:314 import.php:323 -#: libraries/File.class.php:1020 libraries/File.class.php:1028 -#: libraries/File.class.php:1044 libraries/File.class.php:1052 +#: import.php:285 import.php:294 import.php:313 import.php:322 +#: libraries/File.class.php:746 libraries/File.class.php:754 +#: libraries/File.class.php:770 libraries/File.class.php:778 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." msgstr "" -#: import.php:336 +#: import.php:335 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " "[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." msgstr "" -#: import.php:371 libraries/display_import.lib.php:23 +#: import.php:370 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "Totaşmalar yökläp bulmadı, quyılışın tikşerep alası!" -#: import.php:396 +#: import.php:395 msgid "The bookmark has been deleted." msgstr "Tamğa beterelde." -#: import.php:400 +#: import.php:399 msgid "Showing bookmark" msgstr "Bitbilge kürsätü" -#: import.php:402 sql.php:625 +#: import.php:401 sql.php:618 #, php-format msgid "Bookmark %s created" msgstr "%s digän bitbilge yaratıldı" -#: import.php:408 import.php:414 +#: import.php:407 import.php:413 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" -#: import.php:423 +#: import.php:422 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: import.php:425 +#: import.php:424 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." msgstr "" -#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:240 +#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:239 #: user_password.php:110 msgid "Back" msgstr "Kire" -#: index.php:188 +#: index.php:183 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin is more friendly with a frames-capable browser." -#: js/messages.php:25 server_synchronize.php:344 server_synchronize.php:356 -#: server_synchronize.php:372 server_synchronize.php:379 -#: server_synchronize.php:738 server_synchronize.php:766 -#: server_synchronize.php:794 server_synchronize.php:806 +#: js/messages.php:25 server_synchronize.php:343 server_synchronize.php:355 +#: server_synchronize.php:371 server_synchronize.php:378 +#: server_synchronize.php:737 server_synchronize.php:765 +#: server_synchronize.php:793 server_synchronize.php:805 msgid "Click to select" msgstr "" @@ -908,15 +885,15 @@ msgstr "" msgid "Click to unselect" msgstr "" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:88 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:87 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" cönläläre sünderelgän." -#: js/messages.php:30 libraries/mult_submits.inc.php:257 sql.php:187 +#: js/messages.php:30 libraries/mult_submits.inc.php:256 sql.php:186 msgid "Do you really want to " msgstr "Sin çınlap ta bonı eşlärgä teliseñme: " -#: js/messages.php:31 libraries/mult_submits.inc.php:257 sql.php:171 +#: js/messages.php:31 libraries/mult_submits.inc.php:256 sql.php:170 msgid "You are about to DESTROY a complete database!" msgstr "You are about to DESTROY a complete database!" @@ -945,11 +922,11 @@ msgstr "Host adı buş!" msgid "The user name is empty!" msgstr "Atama buş!" -#: js/messages.php:44 server_privileges.php:1228 user_password.php:65 +#: js/messages.php:44 server_privileges.php:1229 user_password.php:65 msgid "The password is empty!" msgstr "Sersüzeñ buş!" -#: js/messages.php:45 server_privileges.php:1226 user_password.php:68 +#: js/messages.php:45 server_privileges.php:1227 user_password.php:68 msgid "The passwords aren't the same!" msgstr "Sersüzlär berbersenä kileşmi!" @@ -957,29 +934,29 @@ msgstr "Sersüzlär berbersenä kileşmi!" msgid "Cancel" msgstr "" -#: js/messages.php:52 pmd_save_pos.php:53 +#: js/messages.php:52 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "Üzgärtülär saqlandı" -#: js/messages.php:53 pmd_relation_upd.php:48 +#: js/messages.php:53 pmd_relation_upd.php:47 #, fuzzy msgid "Relation deleted" msgstr "Bäyläneşkä küzätü" -#: js/messages.php:54 pmd_relation_new.php:63 +#: js/messages.php:54 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:55 pmd_relation_new.php:85 +#: js/messages.php:55 pmd_relation_new.php:84 #, fuzzy msgid "Internal relation added" msgstr "Eçke bäyläneş" -#: js/messages.php:56 pmd_relation_new.php:62 pmd_relation_new.php:87 +#: js/messages.php:56 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:57 pmd_relation_new.php:30 +#: js/messages.php:57 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "" @@ -987,13 +964,13 @@ msgstr "" msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:59 libraries/relation.lib.php:94 -#: libraries/relation.lib.php:106 +#: js/messages.php:59 libraries/relation.lib.php:89 +#: libraries/relation.lib.php:101 msgid "General relation features" msgstr "Bäyläneşlär buyınça töp mömkinleklär" -#: js/messages.php:59 libraries/relation.lib.php:88 -#: libraries/relation.lib.php:95 +#: js/messages.php:59 libraries/relation.lib.php:83 +#: libraries/relation.lib.php:90 msgid "Disabled" msgstr "Sünek" @@ -1009,7 +986,7 @@ msgstr "" msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:547 +#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" @@ -1039,10 +1016,10 @@ msgid "Prev" msgstr "Uzğan" #. l10n: Display text for next month link in calendar -#: js/messages.php:81 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:337 -#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:422 -#: tbl_structure.php:800 +#: js/messages.php:81 libraries/common.lib.php:2358 +#: libraries/common.lib.php:2361 libraries/display_tbl.lib.php:336 +#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 +#: tbl_structure.php:798 msgid "Next" msgstr "Kiläse" @@ -1116,27 +1093,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1562 +#: js/messages.php:101 libraries/common.lib.php:1566 msgid "Jan" msgstr "Ğın" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1564 +#: js/messages.php:103 libraries/common.lib.php:1568 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1566 +#: js/messages.php:105 libraries/common.lib.php:1570 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1568 +#: js/messages.php:107 libraries/common.lib.php:1572 msgid "Apr" msgstr "Äpr" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1570 +#: js/messages.php:109 libraries/common.lib.php:1574 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1144,37 +1121,37 @@ msgid "May" msgstr "May" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1572 +#: js/messages.php:111 libraries/common.lib.php:1576 msgid "Jun" msgstr "Yün" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1574 +#: js/messages.php:113 libraries/common.lib.php:1578 msgid "Jul" msgstr "Yül" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1576 +#: js/messages.php:115 libraries/common.lib.php:1580 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1578 +#: js/messages.php:117 libraries/common.lib.php:1582 msgid "Sep" msgstr "Sen" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1580 +#: js/messages.php:119 libraries/common.lib.php:1584 msgid "Oct" msgstr "Ökt" #. l10n: Short month name -#: js/messages.php:121 libraries/common.lib.php:1582 +#: js/messages.php:121 libraries/common.lib.php:1586 msgid "Nov" msgstr "Nöy" #. l10n: Short month name -#: js/messages.php:123 libraries/common.lib.php:1584 +#: js/messages.php:123 libraries/common.lib.php:1588 msgid "Dec" msgstr "Dek" @@ -1215,37 +1192,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1587 +#: js/messages.php:136 libraries/common.lib.php:1591 msgid "Sun" msgstr "Ykş" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1589 +#: js/messages.php:138 libraries/common.lib.php:1593 msgid "Mon" msgstr "Dşm" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1591 +#: js/messages.php:140 libraries/common.lib.php:1595 msgid "Tue" msgstr "Sşm" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1593 +#: js/messages.php:142 libraries/common.lib.php:1597 msgid "Wed" msgstr "Çrş" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1595 +#: js/messages.php:144 libraries/common.lib.php:1599 msgid "Thu" msgstr "Pnc" #. l10n: Short week day name -#: js/messages.php:146 libraries/common.lib.php:1597 +#: js/messages.php:146 libraries/common.lib.php:1601 msgid "Fri" msgstr "Cmğ" #. l10n: Short week day name -#: js/messages.php:148 libraries/common.lib.php:1599 +#: js/messages.php:148 libraries/common.lib.php:1603 msgid "Sat" msgstr "Şmb" @@ -1323,76 +1300,75 @@ msgstr "sekund sayın" msgid "Font size" msgstr "" -#: libraries/File.class.php:336 libraries/File.class.php:424 -#: libraries/File.class.php:561 libraries/File.class.php:700 -msgid "Unknown error in file upload." -msgstr "" - -#: libraries/File.class.php:406 +#: libraries/File.class.php:315 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:409 +#: libraries/File.class.php:318 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:412 +#: libraries/File.class.php:321 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:415 +#: libraries/File.class.php:324 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:418 +#: libraries/File.class.php:327 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:421 +#: libraries/File.class.php:330 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:898 +#: libraries/File.class.php:333 +msgid "Unknown error in file upload." +msgstr "" + +#: libraries/File.class.php:624 #, 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:427 tbl_relation.php:528 +#: libraries/Index.class.php:427 tbl_relation.php:526 msgid "No index defined!" msgstr "Açqıç bilgelänmäde!" -#: libraries/Index.class.php:432 server_databases.php:131 tbl_tracking.php:315 +#: libraries/Index.class.php:432 server_databases.php:129 tbl_tracking.php:310 msgid "Indexes" msgstr "Tezeşlär" #: libraries/Index.class.php:443 libraries/mult_submits.inc.php:102 -#: libraries/tbl_properties.inc.php:518 tbl_structure.php:32 -#: tbl_structure.php:154 tbl_structure.php:158 tbl_structure.php:473 -#: tbl_tracking.php:321 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:31 +#: tbl_structure.php:153 tbl_structure.php:157 tbl_structure.php:471 +#: tbl_tracking.php:316 msgid "Unique" msgstr "Qabatsız" -#: libraries/Index.class.php:444 tbl_tracking.php:322 +#: libraries/Index.class.php:444 tbl_tracking.php:317 msgid "Packed" msgstr "" -#: libraries/Index.class.php:446 tbl_tracking.php:324 +#: libraries/Index.class.php:446 tbl_tracking.php:319 msgid "Cardinality" msgstr "Qabatlanu sanı" -#: libraries/Index.class.php:449 tbl_tracking.php:278 tbl_tracking.php:327 +#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322 #, fuzzy msgid "Comment" msgstr "Açıqlama" #: libraries/Index.class.php:465 libraries/common.lib.php:609 -#: libraries/common.lib.php:1198 libraries/display_tbl.lib.php:1116 +#: libraries/common.lib.php:1191 libraries/display_tbl.lib.php:1115 #: libraries/import.lib.php:1119 libraries/import.lib.php:1143 -#: pdf_pages.php:284 setup/frames/index.inc.php:124 +#: pdf_pages.php:283 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:349 tbl_row_action.php:68 msgid "Edit" msgstr "Tözätü" @@ -1414,15 +1390,15 @@ msgid "" msgstr "" #: libraries/List_Database.class.php:430 libraries/server_links.inc.php:40 -#: server_databases.php:87 server_privileges.php:1652 +#: server_databases.php:85 server_privileges.php:1656 #: setup/lib/messages.inc.php:107 test/theme.php:92 msgid "Databases" msgstr "Biremleklär" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:259 libraries/import.lib.php:134 pdf_schema.php:31 -#: pdf_schema.php:231 tbl_change.php:1023 tbl_operations.php:212 -#: tbl_relation.php:289 view_operations.php:61 +#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 +#: tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Xata" @@ -1449,40 +1425,40 @@ msgid_plural "%1$d rows inserted." msgstr[0] "Kertemnär sayladı" msgstr[1] "Kertemnär sayladı" -#: libraries/StorageEngine.class.php:196 +#: libraries/StorageEngine.class.php:194 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:352 +#: libraries/StorageEngine.class.php:354 #, php-format msgid "%s is available on this MySQL server." msgstr "Bu MySQL serverdä %s bar." -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:357 #, 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:359 +#: libraries/StorageEngine.class.php:361 #, 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:1018 +#: libraries/Table.class.php:1017 msgid "Invalid database" msgstr "Yaraqsız biremlek" -#: libraries/Table.class.php:1032 tbl_get_field.php:25 +#: libraries/Table.class.php:1031 tbl_get_field.php:25 msgid "Invalid table name" msgstr "Tüşämä adı yaraqsız" -#: libraries/Table.class.php:1047 +#: libraries/Table.class.php:1046 #, 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:1131 +#: libraries/Table.class.php:1129 #, php-format msgid "Table %s has been renamed to %s" msgstr "\"%s\" tüşämäse \"%s\" itep ataldı" @@ -1500,22 +1476,22 @@ msgstr "" msgid "take it" msgstr "bonı sayla" -#: libraries/Theme_Manager.class.php:114 +#: 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:152 +#: 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:220 +#: 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:296 test/theme.php:160 themes.php:20 +#: libraries/Theme_Manager.class.php:291 test/theme.php:160 themes.php:20 #: themes.php:40 msgid "Theme / Style" msgstr "Tışlaw / Bizäleş" @@ -1626,19 +1602,19 @@ msgstr "" msgid "Authenticating..." msgstr "" -#: libraries/blobstreaming.lib.php:689 +#: libraries/blobstreaming.lib.php:340 msgid "View image" msgstr "" -#: libraries/blobstreaming.lib.php:693 +#: libraries/blobstreaming.lib.php:344 msgid "Play audio" msgstr "" -#: libraries/blobstreaming.lib.php:698 +#: libraries/blobstreaming.lib.php:349 msgid "View video" msgstr "" -#: libraries/blobstreaming.lib.php:702 +#: libraries/blobstreaming.lib.php:353 msgid "Download file" msgstr "" @@ -1693,7 +1669,7 @@ msgstr "Server" msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:909 +#: libraries/common.inc.php:908 #, php-format msgid "You should upgrade to %s %s or later." msgstr "You should upgrade to %s %s or later." @@ -1718,7 +1694,8 @@ msgstr "en" #: libraries/common.lib.php:425 libraries/common.lib.php:427 #: libraries/common.lib.php:429 libraries/common.lib.php:445 #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 -#: libraries/display_export.lib.php:163 libraries/relation.lib.php:84 +#: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 +#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 #: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" @@ -1733,148 +1710,148 @@ msgstr "SQL-soraw" msgid "MySQL said: " msgstr "MySQL qaytarışı:" -#: libraries/common.lib.php:1136 +#: libraries/common.lib.php:1129 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1174 setup/lib/messages.inc.php:350 +#: libraries/common.lib.php:1167 setup/lib/messages.inc.php:350 msgid "Explain SQL" msgstr "SQL Centekläw" -#: libraries/common.lib.php:1177 +#: libraries/common.lib.php:1170 msgid "Skip Explain SQL" msgstr "SQL Centeklämäskä" -#: libraries/common.lib.php:1211 +#: libraries/common.lib.php:1204 msgid "Without PHP Code" msgstr "PHP Kodısız" -#: libraries/common.lib.php:1214 setup/lib/messages.inc.php:352 +#: libraries/common.lib.php:1207 setup/lib/messages.inc.php:352 msgid "Create PHP Code" msgstr "PHP-Kod yasa" -#: libraries/common.lib.php:1232 server_status.php:451 +#: libraries/common.lib.php:1225 server_status.php:451 #: setup/lib/messages.inc.php:351 msgid "Refresh" msgstr "Yañart" -#: libraries/common.lib.php:1241 +#: libraries/common.lib.php:1234 msgid "Skip Validate SQL" msgstr "SQL Tikşermäskä" -#: libraries/common.lib.php:1244 setup/lib/messages.inc.php:353 +#: libraries/common.lib.php:1237 setup/lib/messages.inc.php:353 msgid "Validate SQL" msgstr "SQL'nı Tikşer" -#: libraries/common.lib.php:1283 +#: libraries/common.lib.php:1287 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1285 +#: libraries/common.lib.php:1289 #, fuzzy #| msgid "Engines" msgid "Inline" msgstr "Engine" -#: libraries/common.lib.php:1339 libraries/common.lib.php:1354 +#: libraries/common.lib.php:1343 libraries/common.lib.php:1358 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1358 libraries/tbl_triggers.lib.php:27 +#: libraries/common.lib.php:1362 libraries/tbl_triggers.lib.php:27 #: server_processlist.php:57 msgid "Time" msgstr "Waqıt" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "B" msgstr "Bayt" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "KiB" msgstr "KB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "MiB" msgstr "MB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "GiB" msgstr "GB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "TiB" msgstr "TB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "PiB" msgstr "PB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "EiB" msgstr "EB" #. l10n: Thousands separator -#: libraries/common.lib.php:1424 +#: libraries/common.lib.php:1428 msgid "," msgstr "," #. l10n: Decimal separator -#: libraries/common.lib.php:1426 +#: libraries/common.lib.php:1430 msgid "." msgstr "." #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1603 +#: libraries/common.lib.php:1607 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%Y.%m.%d, %H:%M" -#: libraries/common.lib.php:1909 +#: libraries/common.lib.php:1913 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s kön, %s säğät, %s minut ta %s sekund" -#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 -#: libraries/display_tbl.lib.php:289 server_status.php:718 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 +#: libraries/display_tbl.lib.php:288 server_status.php:718 msgid "Begin" msgstr "Başlawğa" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 -#: libraries/display_tbl.lib.php:290 server_binlog.php:154 +#: libraries/common.lib.php:2328 libraries/common.lib.php:2331 +#: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "Uzğan" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 -#: libraries/display_tbl.lib.php:352 +#: libraries/common.lib.php:2359 libraries/common.lib.php:2362 +#: libraries/display_tbl.lib.php:351 msgid "End" msgstr "Azaq" -#: libraries/common.lib.php:2429 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr ""%s" biremlegenä küç." -#: libraries/common.lib.php:2448 +#: libraries/common.lib.php:2453 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2828 libraries/common.lib.php:2835 -#: libraries/db_links.inc.php:67 libraries/export/sql.php:24 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 +#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 -#: libraries/tbl_links.inc.php:59 querywindow.php:89 test/theme.php:96 +#: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2837 libraries/db_links.inc.php:103 -#: libraries/tbl_links.inc.php:94 libraries/tbl_links.inc.php:116 -#: view_operations.php:88 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: view_operations.php:87 msgid "Operations" msgstr "Eşkärtü" -#: libraries/core.lib.php:282 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1891,38 +1868,38 @@ msgstr "Cibärelde" msgid "Name" msgstr "Adı" -#: libraries/db_links.inc.php:44 +#: libraries/db_links.inc.php:43 #, php-format msgid "Database %s has been dropped." msgstr "%s biremlege beterelde." -#: libraries/db_links.inc.php:56 libraries/db_links.inc.php:57 -#: libraries/db_links.inc.php:58 +#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 +#: libraries/db_links.inc.php:57 msgid "Database seems to be empty!" msgstr "" -#: libraries/db_links.inc.php:80 libraries/relation.lib.php:142 -#: libraries/tbl_links.inc.php:68 +#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:85 +#: libraries/db_links.inc.php:84 msgid "Query" msgstr "Soraw" -#: libraries/db_links.inc.php:90 libraries/relation.lib.php:138 +#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:97 libraries/server_links.inc.php:87 -#: libraries/tbl_links.inc.php:90 pmd_pdf.php:83 pmd_pdf.php:109 +#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Yökläw" -#: libraries/db_links.inc.php:110 libraries/server_links.inc.php:65 -#: server_privileges.php:111 server_privileges.php:1714 -#: server_privileges.php:2063 test/theme.php:116 +#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: server_privileges.php:110 server_privileges.php:1718 +#: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" msgstr "Xoquqlar" @@ -1934,14 +1911,14 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1847 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1806 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "Törle buluı bar. YBS 3.11 qarísı" -#: libraries/db_structure.lib.php:60 server_databases.php:141 -#: tbl_printview.php:334 tbl_structure.php:681 +#: libraries/db_structure.lib.php:60 server_databases.php:139 +#: tbl_printview.php:333 tbl_structure.php:679 msgid "Overhead" msgstr "Overhead" @@ -1958,7 +1935,7 @@ msgstr "Bu server endäşmi" 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:358 tbl_structure.php:607 +#: libraries/dbi/mysql.dbi.lib.php:358 tbl_structure.php:605 msgid "Details..." msgstr "" @@ -1968,22 +1945,22 @@ msgid "Change password" msgstr "Sersüz üzgärtü" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:807 +#: libraries/replication_gui.lib.php:347 server_privileges.php:806 msgid "No Password" msgstr "Sersüzsez" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1530 server_synchronize.php:1174 +#: libraries/replication_gui.lib.php:351 server_privileges.php:795 +#: server_privileges.php:799 server_privileges.php:810 +#: server_privileges.php:1534 server_synchronize.php:1173 msgid "Password" msgstr "Sersüz" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:815 server_privileges.php:818 +#: server_privileges.php:814 server_privileges.php:817 msgid "Re-type" msgstr "Qabatla" @@ -2006,8 +1983,8 @@ msgstr "Yaña biremlek yaratu" msgid "Create" msgstr "Yarat" -#: libraries/display_create_database.lib.php:39 server_privileges.php:113 -#: server_privileges.php:1419 server_replication.php:34 +#: libraries/display_create_database.lib.php:39 server_privileges.php:112 +#: server_privileges.php:1423 server_replication.php:33 msgid "No Privileges" msgstr "Xoquqsız" @@ -2028,51 +2005,51 @@ msgstr "%s biremlegendä yaña tüşämä yaratu" msgid "Number of columns" msgstr "Alannar sanı" -#: libraries/display_export.lib.php:41 +#: libraries/display_export.lib.php:35 #, fuzzy msgid "Could not load export plugins, please check your installation!" msgstr "Totaşmalar yökläp bulmadı, quyılışın tikşerep alası!" -#: libraries/display_export.lib.php:106 +#: libraries/display_export.lib.php:100 #, fuzzy, php-format #| msgid "Dump %s row(s) starting at record # %s" msgid "Dump %s row(s) starting at row # %s" msgstr "Eçtälek: %s kerem, #%s keremnän başlap." -#: libraries/display_export.lib.php:114 +#: libraries/display_export.lib.php:108 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:124 setup/lib/messages.inc.php:79 +#: libraries/display_export.lib.php:118 setup/lib/messages.inc.php:79 msgid "Save as file" msgstr "Biremgä saqlıysı" -#: libraries/display_export.lib.php:133 +#: libraries/display_export.lib.php:127 #, php-format msgid "Save on server in %s directory" msgstr "Serverneñ \"%s\" törgägendä saqla" -#: libraries/display_export.lib.php:141 setup/lib/messages.inc.php:87 +#: libraries/display_export.lib.php:135 setup/lib/messages.inc.php:87 msgid "Overwrite existing file(s)" msgstr "Birem bar bulsa, östän yazdırası" -#: libraries/display_export.lib.php:147 +#: libraries/display_export.lib.php:141 msgid "File name template" msgstr "Birem adınıñ tözeleşe" -#: libraries/display_export.lib.php:151 +#: libraries/display_export.lib.php:145 msgid "server name" msgstr "server adı" -#: libraries/display_export.lib.php:154 +#: libraries/display_export.lib.php:148 msgid "database name" msgstr "biremlek adı" -#: libraries/display_export.lib.php:157 +#: libraries/display_export.lib.php:151 msgid "table name" msgstr "tüşämä adı" -#: libraries/display_export.lib.php:161 +#: libraries/display_export.lib.php:155 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2080,39 +2057,39 @@ msgid "" "%3$s. Other text will be kept as is." msgstr "" -#: libraries/display_export.lib.php:202 +#: libraries/display_export.lib.php:196 msgid "remember template" msgstr "tözeleşen yatla" -#: libraries/display_export.lib.php:210 libraries/display_import.lib.php:177 +#: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 #: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 msgid "Character set of the file:" msgstr "Şul biremneñ bilgelämäse:" -#: libraries/display_export.lib.php:235 setup/lib/messages.inc.php:81 +#: libraries/display_export.lib.php:229 setup/lib/messages.inc.php:81 msgid "Compression" msgstr "Qısu" -#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:196 -#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:529 -#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:574 -#: server_privileges.php:1867 server_processlist.php:74 +#: libraries/display_export.lib.php:234 libraries/display_import.lib.php:196 +#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:528 +#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:573 +#: server_privileges.php:1871 server_processlist.php:74 msgid "None" msgstr "Buş" -#: libraries/display_export.lib.php:247 +#: libraries/display_export.lib.php:241 msgid "\"zipped\"" msgstr "\"ziple\"" -#: libraries/display_export.lib.php:253 +#: libraries/display_export.lib.php:247 msgid "\"gzipped\"" msgstr "\"gziple\"" -#: libraries/display_export.lib.php:259 +#: libraries/display_export.lib.php:253 msgid "\"bzipped\"" msgstr "\"bziple\"" -#: libraries/display_export.lib.php:274 libraries/export/sql.php:42 +#: libraries/display_export.lib.php:268 libraries/export/sql.php:42 #: libraries/import/sql.php:31 msgid "SQL compatibility mode" msgstr "SQL, kileşterü ısulı" @@ -2147,12 +2124,12 @@ msgid "File uploads are not allowed on this server." msgstr "" #: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 -#: tbl_change.php:1024 +#: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "Yökläw öçen bigelängän törgäkne uqıp bulmí" #: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 -#: tbl_change.php:1027 +#: tbl_change.php:925 msgid "web server upload directory" msgstr "web-server'neñ yökläw törgäge" @@ -2233,43 +2210,43 @@ msgstr "Qäğäz zuqlığı" msgid "Language" msgstr "" -#: libraries/display_tbl.lib.php:303 +#: libraries/display_tbl.lib.php:302 #, php-format msgid "%d is not valid row number." msgstr "%d digäne yazma sanı öçen kileşmi." -#: libraries/display_tbl.lib.php:309 +#: libraries/display_tbl.lib.php:308 #, fuzzy #| msgid "row(s) starting from record #" msgid "row(s) starting from row #" msgstr "kerem; berençese #" -#: libraries/display_tbl.lib.php:315 +#: libraries/display_tbl.lib.php:314 msgid "horizontal" msgstr "yatqırıp" -#: libraries/display_tbl.lib.php:316 +#: libraries/display_tbl.lib.php:315 msgid "horizontal (rotated headers)" msgstr "yatqırıp (başlıqlar almaşıp)" -#: libraries/display_tbl.lib.php:317 +#: libraries/display_tbl.lib.php:316 msgid "vertical" msgstr "bastırıp" -#: libraries/display_tbl.lib.php:323 +#: libraries/display_tbl.lib.php:322 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "%s ısulı belän; başlıqnı %s yul sayın qabatlísı" -#: libraries/display_tbl.lib.php:345 +#: libraries/display_tbl.lib.php:344 msgid "This operation could take a long time. Proceed anyway?" msgstr "Bu eş ozaqqa suzıla ala. Barıber eşliseme?" -#: libraries/display_tbl.lib.php:511 +#: libraries/display_tbl.lib.php:510 msgid "Sort by key" msgstr "Qullanası tezeş" -#: libraries/display_tbl.lib.php:554 libraries/export/codegen.php:38 +#: libraries/display_tbl.lib.php:553 libraries/export/codegen.php:38 #: libraries/export/csv.php:29 libraries/export/excel.php:34 #: libraries/export/htmlword.php:28 libraries/export/latex.php:32 #: libraries/export/mediawiki.php:21 libraries/export/ods.php:26 @@ -2279,101 +2256,101 @@ msgstr "Qullanası tezeş" #: libraries/export/xlsx.php:26 libraries/export/xml.php:23 #: libraries/export/yaml.php:27 libraries/import.lib.php:1114 #: libraries/import.lib.php:1136 libraries/import/csv.php:31 -#: libraries/import/docsql.php:33 libraries/import/ldi.php:46 +#: libraries/import/docsql.php:32 libraries/import/ldi.php:46 #: libraries/import/ods.php:30 libraries/import/sql.php:19 #: libraries/import/xls.php:25 libraries/import/xlsx.php:25 -#: libraries/import/xml.php:25 tbl_select.php:264 tbl_structure.php:752 +#: libraries/import/xml.php:25 tbl_select.php:263 tbl_structure.php:750 #, fuzzy msgid "Options" msgstr "Eşkärtü" -#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:569 +#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:568 msgid "Partial Texts" msgstr "Partial Texts" -#: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:573 +#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:572 msgid "Full Texts" msgstr "Tulı Mätennär" -#: libraries/display_tbl.lib.php:586 +#: libraries/display_tbl.lib.php:585 #, fuzzy msgid "Relational key" msgstr "Bäyläneşlär sxeme" -#: libraries/display_tbl.lib.php:587 +#: libraries/display_tbl.lib.php:586 #, fuzzy #| msgid "Relational schema" msgid "Relational display column" msgstr "Bäyläneşlär sxeme" -#: libraries/display_tbl.lib.php:594 +#: libraries/display_tbl.lib.php:593 msgid "Show binary contents" msgstr "" -#: libraries/display_tbl.lib.php:596 +#: libraries/display_tbl.lib.php:595 msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:598 +#: libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "" -#: libraries/display_tbl.lib.php:606 pmd_general.php:140 tbl_change.php:312 -#: tbl_change.php:318 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:307 +#: tbl_change.php:313 msgid "Hide" msgstr "" -#: libraries/display_tbl.lib.php:606 libraries/relation.lib.php:122 -#: libraries/tbl_properties.inc.php:143 transformation_overview.php:46 +#: libraries/display_tbl.lib.php:605 libraries/relation.lib.php:117 +#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46 msgid "Browser transformation" msgstr "Browser transformation" -#: libraries/display_tbl.lib.php:1125 libraries/display_tbl.lib.php:1129 -#: libraries/display_tbl.lib.php:1131 +#: libraries/display_tbl.lib.php:1124 libraries/display_tbl.lib.php:1128 +#: libraries/display_tbl.lib.php:1130 msgid "Execute bookmarked query" msgstr "Tamğalanğan soraw cibärü" -#: libraries/display_tbl.lib.php:1144 libraries/display_tbl.lib.php:1156 +#: libraries/display_tbl.lib.php:1143 libraries/display_tbl.lib.php:1155 msgid "The row has been deleted" msgstr "Bu yazma salınğan buldı" -#: libraries/display_tbl.lib.php:1183 libraries/display_tbl.lib.php:2055 +#: libraries/display_tbl.lib.php:1182 libraries/display_tbl.lib.php:2014 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "Üter" -#: libraries/display_tbl.lib.php:1933 +#: libraries/display_tbl.lib.php:1892 msgid "in query" msgstr "sorawda" -#: libraries/display_tbl.lib.php:1951 +#: libraries/display_tbl.lib.php:1910 msgid "Showing rows" msgstr "Yazma sanı:" -#: libraries/display_tbl.lib.php:1961 +#: libraries/display_tbl.lib.php:1920 msgid "total" msgstr "tulayım" -#: libraries/display_tbl.lib.php:1969 sql.php:523 +#: libraries/display_tbl.lib.php:1928 sql.php:522 #, php-format msgid "Query took %01.4f sec" msgstr "Soraw eşkärtü %01.4f sek aldı" -#: libraries/display_tbl.lib.php:2088 libraries/mult_submits.inc.php:112 -#: querywindow.php:115 querywindow.php:119 querywindow.php:122 -#: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:469 +#: libraries/display_tbl.lib.php:2047 libraries/mult_submits.inc.php:112 +#: querywindow.php:114 querywindow.php:118 querywindow.php:121 +#: tbl_structure.php:23 tbl_structure.php:148 tbl_structure.php:467 msgid "Change" msgstr "Üzgärt" -#: libraries/display_tbl.lib.php:2158 +#: libraries/display_tbl.lib.php:2117 msgid "Query results operations" msgstr "Soraw qaytarmasın eşkärtü" -#: libraries/display_tbl.lib.php:2186 +#: libraries/display_tbl.lib.php:2145 msgid "Print view (with full texts)" msgstr "Bastıru küreneşe (bar mätennär belän)" -#: libraries/display_tbl.lib.php:2359 +#: libraries/display_tbl.lib.php:2318 msgid "Link not found" msgstr "Bäyläneş tabılmadı" @@ -2427,9 +2404,9 @@ msgstr "InnoDB Torışı" msgid "Buffer Pool Usage" msgstr "Bufer Pul Totılğanlığı" -#: libraries/engines/innodb.lib.php:168 server_databases.php:136 -#: server_databases.php:304 server_status.php:524 server_status.php:585 -#: server_status.php:606 tbl_printview.php:349 tbl_structure.php:695 +#: libraries/engines/innodb.lib.php:168 server_databases.php:134 +#: server_databases.php:302 server_status.php:524 server_status.php:585 +#: server_status.php:606 tbl_printview.php:348 tbl_structure.php:693 msgid "Total" msgstr "Tulayım" @@ -2564,6 +2541,78 @@ msgstr "" "REPAIR TABLE aşa MyISAM-açqıç tözätkändä dä, CREATE INDEX yä ALTER TABLE aşa " "açqıç östägändä dä yasala torğan bufer bu." +#: libraries/engines/pbms.lib.php:31 +msgid "Garbage Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:32 +msgid "The percentage of garbage in a repository file before it is compacted." +msgstr "" + +#: libraries/engines/pbms.lib.php:36 libraries/replication_gui.lib.php:69 +#: server_synchronize.php:1161 +#, fuzzy +msgid "Port" +msgstr "Tezü" + +#: libraries/engines/pbms.lib.php:37 +msgid "" +"The port for the PBMS stream-based communications. Setting this value to 0 " +"will disable HTTP communication with the daemon." +msgstr "" + +#: libraries/engines/pbms.lib.php:41 +msgid "Repository Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:42 +msgid "" +"The maximum size of a BLOB repository file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:46 +msgid "Temp Blob Timeout" +msgstr "" + +#: libraries/engines/pbms.lib.php:47 +msgid "" +"The timeout, in seconds, for temporary BLOBs. Uploaded BLOB data is removed " +"after this time, unless they are referenced by a record in the database." +msgstr "" + +#: libraries/engines/pbms.lib.php:51 +msgid "Temp Log Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:52 +msgid "" +"The maximum size of a temporary BLOB log file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:56 +msgid "Max Keep Alive" +msgstr "" + +#: libraries/engines/pbms.lib.php:57 +msgid "" +"The timeout for inactive connection with the keep-alive flag set. After this " +"time the connection will be closed. The time-out is in milliseconds (1/1000)." +msgstr "" + +#: libraries/engines/pbms.lib.php:61 +msgid "Metadata Headers" +msgstr "" + +#: libraries/engines/pbms.lib.php:62 +msgid "" +"A \":\" delimited list of metadata headers to be used to initialize the " +"pbms_metadata_header table when a database is created." +msgstr "" + #: libraries/engines/pbxt.lib.php:22 msgid "Index cache size" msgstr "" @@ -2689,7 +2738,7 @@ msgid "" msgstr "" #: libraries/export/codegen.php:36 setup/lib/messages.inc.php:85 -#: tbl_printview.php:374 tbl_structure.php:736 +#: tbl_printview.php:373 tbl_structure.php:734 msgid "Format" msgstr "Tözeleş" @@ -2760,9 +2809,9 @@ msgstr "Microsoft Word 2000" #: libraries/export/htmlword.php:23 libraries/export/latex.php:59 #: libraries/export/latex.php:205 libraries/export/odt.php:47 #: libraries/export/sql.php:105 libraries/export/sql.php:865 -#: libraries/export/texytext.php:27 server_databases.php:126 -#: server_privileges.php:576 server_replication.php:315 tbl_printview.php:315 -#: tbl_structure.php:664 +#: libraries/export/texytext.php:27 server_databases.php:124 +#: server_privileges.php:575 server_replication.php:314 tbl_printview.php:314 +#: tbl_structure.php:662 msgid "Data" msgstr "Eçtälek" @@ -2777,7 +2826,6 @@ msgid "Table structure for table" msgstr "Tüşämä tözeleşe" #: libraries/export/latex.php:13 -#| msgid "Content of table __TABLE__" msgid "Content of table @TABLE@" msgstr "@TABLE@ atlı tüşämä eçtälege" @@ -2786,7 +2834,6 @@ msgid "(continued)" msgstr "(dawamlı)" #: libraries/export/latex.php:15 -#| msgid "Structure of table __TABLE__" msgid "Structure of table @TABLE@" msgstr "@TABLE@ atlı tüşämä tözeleşe" @@ -2811,13 +2858,13 @@ msgid "Label key" msgstr "Açqıç yazması" #: libraries/export/latex.php:46 libraries/export/odt.php:34 -#: libraries/export/sql.php:90 tbl_relation.php:398 +#: libraries/export/sql.php:90 tbl_relation.php:396 msgid "Relations" msgstr "Bäyläneşlär" #: libraries/export/latex.php:52 libraries/export/odt.php:40 #: libraries/export/odt.php:317 libraries/export/sql.php:94 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "MIME-törläre" @@ -2825,10 +2872,10 @@ msgstr "MIME-törläre" #: libraries/export/xml.php:101 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1529 server_privileges.php:2061 -#: server_processlist.php:54 server_synchronize.php:1158 +#: libraries/replication_gui.lib.php:331 server_privileges.php:730 +#: server_privileges.php:733 server_privileges.php:789 +#: server_privileges.php:1533 server_privileges.php:2065 +#: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "Host" @@ -3025,8 +3072,8 @@ msgstr "Çığaru ısulı" msgid "Export contents" msgstr "Çığaru ısulı" -#: libraries/footer.inc.php:182 libraries/footer.inc.php:193 -#: libraries/footer.inc.php:196 +#: libraries/footer.inc.php:180 libraries/footer.inc.php:191 +#: libraries/footer.inc.php:194 msgid "Open new phpMyAdmin window" msgstr "Yaña phpMyAdmin-täräzä açu" @@ -3043,7 +3090,7 @@ msgstr "SQL qaytarışı" msgid "Generated by" msgstr "Ürçätkeç:" -#: libraries/import.lib.php:151 sql.php:519 tbl_change.php:180 +#: libraries/import.lib.php:151 sql.php:518 tbl_change.php:175 #: 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ı." @@ -3102,7 +3149,7 @@ msgstr "Qabatlanğan yazmalarnı ütäse" msgid "Column names in first row" msgstr "" -#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:501 +#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:500 #: view_create.php:147 msgid "Column names" msgstr "Alan iseme" @@ -3128,12 +3175,12 @@ msgstr "" msgid "Invalid column count in CSV input on line %d." msgstr "" -#: libraries/import/docsql.php:28 +#: libraries/import/docsql.php:27 msgid "DocSQL" msgstr "" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 -#: server_synchronize.php:427 server_synchronize.php:870 +#: libraries/import/docsql.php:30 libraries/tbl_properties.inc.php:616 +#: server_synchronize.php:426 server_synchronize.php:869 #, fuzzy msgid "Table name" msgstr "tüşämä adı" @@ -3191,26 +3238,26 @@ msgstr "Buş" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:512 -#: tbl_structure.php:28 tbl_structure.php:152 tbl_structure.php:156 -#: tbl_structure.php:472 +#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:511 +#: tbl_structure.php:27 tbl_structure.php:151 tbl_structure.php:155 +#: tbl_structure.php:470 msgid "Primary" msgstr "Töp" #: libraries/mult_submits.inc.php:97 libraries/tbl_properties.inc.php:115 -#: libraries/tbl_properties.inc.php:524 tbl_printview.php:324 -#: tbl_structure.php:30 tbl_structure.php:153 tbl_structure.php:157 -#: tbl_structure.php:474 tbl_structure.php:672 +#: libraries/tbl_properties.inc.php:523 tbl_printview.php:323 +#: tbl_structure.php:29 tbl_structure.php:152 tbl_structure.php:156 +#: tbl_structure.php:472 tbl_structure.php:670 msgid "Index" msgstr "Tezeş" -#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:530 -#: tbl_structure.php:34 tbl_structure.php:155 tbl_structure.php:159 -#: tbl_structure.php:477 +#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:529 +#: tbl_structure.php:33 tbl_structure.php:154 tbl_structure.php:158 +#: tbl_structure.php:475 msgid "Fulltext" msgstr "Tulımäten" -#: libraries/mult_submits.inc.php:434 tbl_replace.php:330 +#: libraries/mult_submits.inc.php:433 tbl_replace.php:330 msgid "No change" msgstr "Üzgäreşsez" @@ -3218,190 +3265,190 @@ msgstr "Üzgäreşsez" msgid "Charset" msgstr "Bilgelämä" -#: libraries/mysql_charsets.lib.php:210 libraries/mysql_charsets.lib.php:411 -#: tbl_change.php:515 +#: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 +#: tbl_change.php:510 msgid "Binary" msgstr "Binar" -#: libraries/mysql_charsets.lib.php:222 +#: libraries/mysql_charsets.lib.php:214 msgid "Bulgarian" msgstr "Balgarça" -#: libraries/mysql_charsets.lib.php:226 libraries/mysql_charsets.lib.php:351 +#: libraries/mysql_charsets.lib.php:218 libraries/mysql_charsets.lib.php:343 msgid "Simplified Chinese" msgstr "Ciñel Çinçä" -#: libraries/mysql_charsets.lib.php:228 libraries/mysql_charsets.lib.php:371 +#: libraries/mysql_charsets.lib.php:220 libraries/mysql_charsets.lib.php:363 msgid "Traditional Chinese" msgstr "Ğädäti Çinçä" -#: libraries/mysql_charsets.lib.php:232 libraries/mysql_charsets.lib.php:418 +#: libraries/mysql_charsets.lib.php:224 libraries/mysql_charsets.lib.php:410 msgid "case-insensitive" msgstr "keşe/olı sizmiçä" -#: libraries/mysql_charsets.lib.php:235 libraries/mysql_charsets.lib.php:420 +#: libraries/mysql_charsets.lib.php:227 libraries/mysql_charsets.lib.php:412 msgid "case-sensitive" msgstr "keşe/olı sizep" -#: libraries/mysql_charsets.lib.php:238 +#: libraries/mysql_charsets.lib.php:230 msgid "Croatian" msgstr "Kroatça" -#: libraries/mysql_charsets.lib.php:241 +#: libraries/mysql_charsets.lib.php:233 msgid "Czech" msgstr "Çexçä" -#: libraries/mysql_charsets.lib.php:244 +#: libraries/mysql_charsets.lib.php:236 msgid "Danish" msgstr "Dança" -#: libraries/mysql_charsets.lib.php:247 +#: libraries/mysql_charsets.lib.php:239 msgid "English" msgstr "İnglizçä" -#: libraries/mysql_charsets.lib.php:250 +#: libraries/mysql_charsets.lib.php:242 msgid "Esperanto" msgstr "Esperanto" -#: libraries/mysql_charsets.lib.php:253 +#: libraries/mysql_charsets.lib.php:245 msgid "Estonian" msgstr "Estonça" -#: libraries/mysql_charsets.lib.php:256 libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:248 libraries/mysql_charsets.lib.php:251 msgid "German" msgstr "Almança" -#: libraries/mysql_charsets.lib.php:256 +#: libraries/mysql_charsets.lib.php:248 msgid "dictionary" msgstr "süzlek" -#: libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:251 msgid "phone book" msgstr "telefon däftäre" -#: libraries/mysql_charsets.lib.php:262 +#: libraries/mysql_charsets.lib.php:254 msgid "Hungarian" msgstr "Macarça" -#: libraries/mysql_charsets.lib.php:265 +#: libraries/mysql_charsets.lib.php:257 msgid "Icelandic" msgstr "İclandça" -#: libraries/mysql_charsets.lib.php:268 libraries/mysql_charsets.lib.php:358 +#: libraries/mysql_charsets.lib.php:260 libraries/mysql_charsets.lib.php:350 msgid "Japanese" msgstr "Japança" -#: libraries/mysql_charsets.lib.php:271 +#: libraries/mysql_charsets.lib.php:263 msgid "Latvian" msgstr "Latça" -#: libraries/mysql_charsets.lib.php:274 +#: libraries/mysql_charsets.lib.php:266 msgid "Lithuanian" msgstr "Litçä" -#: libraries/mysql_charsets.lib.php:277 libraries/mysql_charsets.lib.php:380 +#: libraries/mysql_charsets.lib.php:269 libraries/mysql_charsets.lib.php:372 msgid "Korean" msgstr "Koreyçä" -#: libraries/mysql_charsets.lib.php:280 +#: libraries/mysql_charsets.lib.php:272 msgid "Persian" msgstr "Farsíça" -#: libraries/mysql_charsets.lib.php:283 +#: libraries/mysql_charsets.lib.php:275 msgid "Polish" msgstr "Polça" -#: libraries/mysql_charsets.lib.php:286 libraries/mysql_charsets.lib.php:334 +#: libraries/mysql_charsets.lib.php:278 libraries/mysql_charsets.lib.php:326 msgid "West European" msgstr "Batış Awrupı" -#: libraries/mysql_charsets.lib.php:289 +#: libraries/mysql_charsets.lib.php:281 msgid "Romanian" msgstr "Romança" -#: libraries/mysql_charsets.lib.php:292 +#: libraries/mysql_charsets.lib.php:284 msgid "Slovak" msgstr "Slovakça" -#: libraries/mysql_charsets.lib.php:295 +#: libraries/mysql_charsets.lib.php:287 msgid "Slovenian" msgstr "Slovença" -#: libraries/mysql_charsets.lib.php:298 +#: libraries/mysql_charsets.lib.php:290 msgid "Spanish" msgstr "İspança" -#: libraries/mysql_charsets.lib.php:301 +#: libraries/mysql_charsets.lib.php:293 msgid "Traditional Spanish" msgstr "Ğädäti İspança" -#: libraries/mysql_charsets.lib.php:304 libraries/mysql_charsets.lib.php:401 +#: libraries/mysql_charsets.lib.php:296 libraries/mysql_charsets.lib.php:393 msgid "Swedish" msgstr "İswäcçä" -#: libraries/mysql_charsets.lib.php:307 libraries/mysql_charsets.lib.php:404 +#: libraries/mysql_charsets.lib.php:299 libraries/mysql_charsets.lib.php:396 msgid "Thai" msgstr "Tayça" -#: libraries/mysql_charsets.lib.php:310 libraries/mysql_charsets.lib.php:398 +#: libraries/mysql_charsets.lib.php:302 libraries/mysql_charsets.lib.php:390 msgid "Turkish" msgstr "Törekçä" -#: libraries/mysql_charsets.lib.php:313 libraries/mysql_charsets.lib.php:395 +#: libraries/mysql_charsets.lib.php:305 libraries/mysql_charsets.lib.php:387 msgid "Ukrainian" msgstr "Ukrainça" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 msgid "Unicode" msgstr "Unicode" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 -#: libraries/mysql_charsets.lib.php:334 libraries/mysql_charsets.lib.php:341 -#: libraries/mysql_charsets.lib.php:363 libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 +#: libraries/mysql_charsets.lib.php:326 libraries/mysql_charsets.lib.php:333 +#: libraries/mysql_charsets.lib.php:355 libraries/mysql_charsets.lib.php:366 msgid "multilingual" msgstr "küptelle" -#: libraries/mysql_charsets.lib.php:341 +#: libraries/mysql_charsets.lib.php:333 msgid "Central European" msgstr "Üzäk Awrupı" -#: libraries/mysql_charsets.lib.php:346 +#: libraries/mysql_charsets.lib.php:338 msgid "Russian" msgstr "Urısça" -#: libraries/mysql_charsets.lib.php:363 +#: libraries/mysql_charsets.lib.php:355 msgid "Baltic" msgstr "Baltiq" -#: libraries/mysql_charsets.lib.php:368 +#: libraries/mysql_charsets.lib.php:360 msgid "Armenian" msgstr "Ärmänçä" -#: libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:366 msgid "Cyrillic" msgstr "Urısälif" -#: libraries/mysql_charsets.lib.php:377 +#: libraries/mysql_charsets.lib.php:369 msgid "Arabic" msgstr "Çäräpçä" -#: libraries/mysql_charsets.lib.php:383 +#: libraries/mysql_charsets.lib.php:375 msgid "Hebrew" msgstr "Yähüdçä" -#: libraries/mysql_charsets.lib.php:386 +#: libraries/mysql_charsets.lib.php:378 msgid "Georgian" msgstr "Görceçä" -#: libraries/mysql_charsets.lib.php:389 +#: libraries/mysql_charsets.lib.php:381 msgid "Greek" msgstr "Yunança" -#: libraries/mysql_charsets.lib.php:392 +#: libraries/mysql_charsets.lib.php:384 msgid "Czech-Slovak" msgstr "Çex-Slovak" -#: libraries/mysql_charsets.lib.php:407 libraries/mysql_charsets.lib.php:414 +#: libraries/mysql_charsets.lib.php:399 libraries/mysql_charsets.lib.php:406 msgid "unknown" msgstr "belgesez" @@ -3427,67 +3474,67 @@ msgstr "Soraw täräzäse" msgid "This format has no options" msgstr "Bu tözeleşeneñ köyläneşe yuq" -#: libraries/relation.lib.php:82 +#: libraries/relation.lib.php:77 msgid "not OK" msgstr "OK tügel" -#: libraries/relation.lib.php:86 pmd_general.php:339 +#: libraries/relation.lib.php:81 pmd_general.php:339 msgid "OK" msgstr "OK" -#: libraries/relation.lib.php:87 +#: libraries/relation.lib.php:82 msgid "Enabled" msgstr "Açıq" -#: libraries/relation.lib.php:110 +#: libraries/relation.lib.php:105 msgid "Display Features" msgstr "Mömkinleklär Kürsätü" -#: libraries/relation.lib.php:116 +#: libraries/relation.lib.php:111 msgid "Creation of PDFs" msgstr "PDF yaratu" -#: libraries/relation.lib.php:120 +#: libraries/relation.lib.php:115 msgid "Displaying Column Comments" msgstr "Buy Açıqlamasın Kürsätäse" -#: libraries/relation.lib.php:125 +#: libraries/relation.lib.php:120 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "Sineñ Column_comments Tüşämä yañartu eşe turında Qullanmada qarísı" -#: libraries/relation.lib.php:130 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 msgid "Bookmarked SQL query" msgstr "Tamğalanğan SQL-soraw" -#: libraries/relation.lib.php:134 querywindow.php:99 querywindow.php:207 +#: libraries/relation.lib.php:129 querywindow.php:98 querywindow.php:205 msgid "SQL history" msgstr "SQL-taríxı" -#: libraries/relation.lib.php:146 +#: libraries/relation.lib.php:141 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:148 +#: libraries/relation.lib.php:143 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" -#: libraries/relation.lib.php:149 +#: libraries/relation.lib.php:144 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:150 +#: libraries/relation.lib.php:145 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:151 +#: libraries/relation.lib.php:146 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1158 +#: libraries/relation.lib.php:1153 msgid "no description" msgstr "Açıqlamasız" @@ -3495,7 +3542,7 @@ msgstr "Açıqlamasız" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:53 server_replication.php:346 +#: libraries/replication_gui.lib.php:53 server_replication.php:345 msgid "Change or reconfigure master server" msgstr "" @@ -3507,17 +3554,12 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:711 -#: server_privileges.php:714 server_privileges.php:721 -#: server_synchronize.php:1170 +#: libraries/replication_gui.lib.php:261 server_privileges.php:710 +#: server_privileges.php:713 server_privileges.php:720 +#: server_synchronize.php:1169 msgid "User name" msgstr "İreşü iseme" -#: libraries/replication_gui.lib.php:69 server_synchronize.php:1162 -#, fuzzy -msgid "Port" -msgstr "Tezü" - #: libraries/replication_gui.lib.php:105 msgid "Master status" msgstr "" @@ -3532,8 +3574,8 @@ msgid "Variable" msgstr "Üzgärmä" #: libraries/replication_gui.lib.php:117 server_status.php:737 -#: tbl_change.php:322 tbl_printview.php:368 tbl_select.php:137 -#: tbl_structure.php:728 +#: tbl_change.php:317 tbl_printview.php:367 tbl_select.php:136 +#: tbl_structure.php:726 msgid "Value" msgstr "Bäyä" @@ -3547,38 +3589,38 @@ msgid "" "this list." msgstr "" -#: libraries/replication_gui.lib.php:242 server_replication.php:193 +#: libraries/replication_gui.lib.php:242 server_replication.php:192 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:256 server_privileges.php:716 +#: libraries/replication_gui.lib.php:256 server_privileges.php:715 msgid "Any user" msgstr "Törle qullanuçı" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1920 server_privileges.php:1950 +#: libraries/replication_gui.lib.php:348 server_privileges.php:716 +#: server_privileges.php:783 server_privileges.php:807 +#: server_privileges.php:1924 server_privileges.php:1954 msgid "Use text field" msgstr "Bu mätennän" -#: libraries/replication_gui.lib.php:304 server_privileges.php:764 +#: libraries/replication_gui.lib.php:304 server_privileges.php:763 msgid "Any host" msgstr "Bar bulğan host" -#: libraries/replication_gui.lib.php:308 server_privileges.php:768 +#: libraries/replication_gui.lib.php:308 server_privileges.php:767 msgid "Local" msgstr "Cirle" -#: libraries/replication_gui.lib.php:314 server_privileges.php:773 +#: libraries/replication_gui.lib.php:314 server_privileges.php:772 msgid "This Host" msgstr "Bu Sanaq" -#: libraries/replication_gui.lib.php:320 server_privileges.php:779 +#: libraries/replication_gui.lib.php:320 server_privileges.php:778 msgid "Use Host Table" msgstr "Host Tüşämä eçennän" -#: libraries/replication_gui.lib.php:333 server_privileges.php:792 +#: libraries/replication_gui.lib.php:333 server_privileges.php:791 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3604,8 +3646,8 @@ msgstr "Belgesez tel: %1$s." msgid "Servers" msgstr "Serverlär" -#: libraries/server_links.inc.php:52 server_engines.php:111 -#: server_engines.php:115 server_status.php:414 test/theme.php:104 +#: libraries/server_links.inc.php:52 server_engines.php:125 +#: server_engines.php:129 server_status.php:414 test/theme.php:104 msgid "Variables" msgstr "Üzgärmälär" @@ -3626,12 +3668,12 @@ msgstr "Binar köndälek" msgid "Processes" msgstr "Proseslar" -#: libraries/server_links.inc.php:91 server_synchronize.php:1091 -#: server_synchronize.php:1099 +#: libraries/server_links.inc.php:91 server_synchronize.php:1090 +#: server_synchronize.php:1098 msgid "Synchronize" msgstr "" -#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1109 +#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1108 #, fuzzy msgid "Source database" msgstr "Biremlektä ezläw: " @@ -3650,7 +3692,7 @@ msgstr "" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1111 +#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1110 #, fuzzy msgid "Target database" msgstr "Biremlektä ezläw: " @@ -3671,11 +3713,11 @@ msgstr "%s biremlegendä eşlätäse SQL-soraw" msgid "Columns" msgstr "Alan iseme" -#: libraries/sql_query_form.lib.php:342 sql.php:664 sql.php:665 sql.php:682 +#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "Bu SQL-sorawğa tamğa quy" -#: libraries/sql_query_form.lib.php:349 sql.php:676 +#: libraries/sql_query_form.lib.php:349 sql.php:669 msgid "Let every user access this bookmark" msgstr "Bu tamğanı bar qullanuçığa da ireşüle itäse" @@ -3770,12 +3812,12 @@ 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:106 libraries/tbl_links.inc.php:139 -#: libraries/tbl_links.inc.php:140 +#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 +#: libraries/tbl_links.inc.php:139 msgid "Table seems to be empty!" msgstr "" -#: libraries/tbl_links.inc.php:148 +#: libraries/tbl_links.inc.php:147 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" @@ -3809,12 +3851,12 @@ msgstr "" "Töpcay bäyäsen kertkändä, kireawışlar qullanmasqa, cäyä eçenä da salmasqa. " "Bolayraq kertäse: a" -#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1263 -#: pdf_schema.php:1284 tbl_printview.php:142 tbl_structure.php:179 +#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1262 +#: pdf_schema.php:1283 tbl_printview.php:141 tbl_structure.php:178 msgid "Attributes" msgstr "Üzençälek" -#: libraries/tbl_properties.inc.php:136 +#: libraries/tbl_properties.inc.php:135 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -3823,11 +3865,11 @@ msgstr "" "For a list of available transformation options and their MIME-type " "transformations, click on %stransformation descriptions%s" -#: libraries/tbl_properties.inc.php:144 +#: libraries/tbl_properties.inc.php:143 msgid "Transformation options" msgstr "Transformation options" -#: libraries/tbl_properties.inc.php:145 +#: libraries/tbl_properties.inc.php:144 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
                            If you ever need to put a backslash (\"\\\") or a single " @@ -3839,18 +3881,18 @@ msgstr "" "quote (\"'\") amongst those values, backslash it (for example '\\\\xyz' or 'a" "\\'b')." -#: libraries/tbl_properties.inc.php:392 +#: libraries/tbl_properties.inc.php:391 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "Buş" -#: libraries/tbl_properties.inc.php:393 +#: libraries/tbl_properties.inc.php:392 msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:579 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:578 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
                            Please ask the " @@ -3859,29 +3901,29 @@ msgstr "" "No Description is available for this transformation.
                            Please ask the " "author, what %s does." -#: libraries/tbl_properties.inc.php:725 server_engines.php:57 -#: tbl_operations.php:354 +#: libraries/tbl_properties.inc.php:724 server_engines.php:56 +#: tbl_operations.php:352 msgid "Storage Engine" msgstr "Saqlaw Isulı" -#: libraries/tbl_properties.inc.php:754 +#: libraries/tbl_properties.inc.php:753 msgid "PARTITION definition" msgstr "" -#: libraries/tbl_properties.inc.php:775 pdf_pages.php:502 +#: libraries/tbl_properties.inc.php:774 pdf_pages.php:501 #: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214 -#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1124 tbl_indexes.php:247 -#: tbl_relation.php:565 +#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1022 tbl_indexes.php:246 +#: tbl_relation.php:563 msgid "Save" msgstr "Saqla" -#: libraries/tbl_properties.inc.php:779 tbl_structure.php:541 +#: libraries/tbl_properties.inc.php:778 tbl_structure.php:539 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "%s alan östäw" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:535 +#: libraries/tbl_properties.inc.php:782 tbl_structure.php:533 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -4066,8 +4108,8 @@ msgstr "" msgid "Custom color" msgstr "" -#: main.php:162 pdf_pages.php:362 setup/lib/FormDisplay.tpl.php:216 -#: tbl_change.php:1173 +#: main.php:162 pdf_pages.php:361 setup/lib/FormDisplay.tpl.php:216 +#: tbl_change.php:1071 msgid "Reset" msgstr "Awdar" @@ -4075,8 +4117,8 @@ msgstr "Awdar" msgid "Protocol version" msgstr "Protokol söreme" -#: main.php:188 server_privileges.php:1381 server_privileges.php:1528 -#: server_privileges.php:1642 server_privileges.php:2060 +#: main.php:188 server_privileges.php:1385 server_privileges.php:1532 +#: server_privileges.php:1646 server_privileges.php:2064 #: server_processlist.php:53 msgid "User" msgstr "Qullanuçı" @@ -4160,21 +4202,30 @@ msgid "" "has been configured." msgstr "" -#: main.php:330 +#: main.php:314 +#, php-format +msgid "" +"The additional features for working with linked tables have been " +"deactivated. To find out why click %shere%s." +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." + +#: main.php:329 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:345 +#: main.php:344 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: main.php:357 +#: main.php:356 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -4185,69 +4236,69 @@ msgstr "" msgid "Reload navigation frame" msgstr "" -#: navigation.php:204 server_databases.php:370 server_synchronize.php:1190 +#: navigation.php:203 server_databases.php:368 server_synchronize.php:1189 msgid "No databases" msgstr "Biremleklär yuq" -#: navigation.php:298 +#: navigation.php:297 #, fuzzy msgid "Filter" msgstr "Alan" -#: navigation.php:299 setup/frames/index.inc.php:218 +#: navigation.php:298 setup/frames/index.inc.php:218 #: setup/lib/messages.inc.php:41 #, fuzzy msgid "Clear" msgstr "Täqwim" -#: navigation.php:330 navigation.php:331 +#: navigation.php:329 navigation.php:330 #, fuzzy msgctxt "short form" msgid "Create table" msgstr "Yaña Bit yaratu" -#: navigation.php:333 navigation.php:495 +#: navigation.php:332 navigation.php:494 msgid "Please select a database" msgstr "Berär biremlek saylísı" -#: pdf_pages.php:40 pdf_pages.php:46 pdf_pages.php:52 pdf_pages.php:57 +#: pdf_pages.php:39 pdf_pages.php:45 pdf_pages.php:51 pdf_pages.php:56 #, php-format msgid "%s table not found or not set in %s" msgstr "%s atlı tüşämä yuq, yä ki \"%s\" tezmäsenä kermi" -#: pdf_pages.php:265 +#: pdf_pages.php:264 msgid "Please choose a page to edit" msgstr "Tözätü öçen berär bit sayla" -#: pdf_pages.php:303 pmd_pdf.php:113 +#: pdf_pages.php:302 pmd_pdf.php:111 msgid "Create a page" msgstr "Yaña Bit yaratu" -#: pdf_pages.php:309 +#: pdf_pages.php:308 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Bitneñ sanı:" -#: pdf_pages.php:313 +#: pdf_pages.php:312 #, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "Zihenle urnaştıru" -#: pdf_pages.php:315 +#: pdf_pages.php:314 msgid "Internal relations" msgstr "Eçke bäyläneş" -#: pdf_pages.php:338 +#: pdf_pages.php:337 msgid "Select Tables" msgstr "Tüşämä Saylaw" -#: pdf_pages.php:361 +#: pdf_pages.php:360 msgid "Toggle scratchboard" msgstr "Toggle scratchboard" -#: pdf_pages.php:524 +#: pdf_pages.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -4255,37 +4306,37 @@ msgstr "" "The current Page has References to Tables that no longer exist. Would you " "like to delete those References?" -#: pdf_schema.php:635 +#: pdf_schema.php:634 #, fuzzy, php-format #| msgid "The \"%s\" table doesn't exist!" msgid "The %s table doesn't exist!" msgstr "\"%s\" atlı tüşämä yuq äle!" -#: pdf_schema.php:671 +#: pdf_schema.php:670 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Please configure the coordinates for table %s" -#: pdf_schema.php:994 +#: pdf_schema.php:993 #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" msgstr "\"%s\" biremlek tözeleşe - %s. bit" -#: pdf_schema.php:1012 +#: pdf_schema.php:1011 msgid "No tables" msgstr "Berär genä dä tüşämä yuq" -#: pdf_schema.php:1031 pdf_schema.php:1140 +#: pdf_schema.php:1030 pdf_schema.php:1139 msgid "Relational schema" msgstr "Bäyläneşlär sxeme" -#: pdf_schema.php:1115 +#: pdf_schema.php:1114 msgid "Table of contents" msgstr "Eçtälek isemlege" -#: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:145 -#: tbl_structure.php:182 tbl_tracking.php:277 +#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 +#: tbl_structure.php:181 tbl_tracking.php:272 msgid "Extra" msgstr "Östämä" @@ -4297,7 +4348,7 @@ msgstr "" msgid "Save position" msgstr "" -#: pmd_general.php:70 server_synchronize.php:428 server_synchronize.php:871 +#: pmd_general.php:70 server_synchronize.php:427 server_synchronize.php:870 #, fuzzy msgid "Create table" msgstr "Yaña Bit yaratu" @@ -4372,32 +4423,32 @@ msgid "" "appropriate column name." msgstr "" -#: pmd_pdf.php:62 +#: pmd_pdf.php:60 #, fuzzy msgid "Page has been created" msgstr "\"%s\" atlı tüşämä beterelde" -#: pmd_pdf.php:64 +#: pmd_pdf.php:62 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:84 +#: pmd_pdf.php:82 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:88 +#: pmd_pdf.php:86 msgid "recommended" msgstr "" -#: pmd_pdf.php:93 +#: pmd_pdf.php:91 msgid "to/from page" msgstr "" -#: querywindow.php:94 +#: querywindow.php:93 msgid "Import files" msgstr "Biremdän alu" -#: querywindow.php:105 +#: querywindow.php:104 msgid "All" msgstr "Barısı" @@ -4444,65 +4495,65 @@ msgstr "Beleşmä" msgid "Character Sets and Collations" msgstr "Bilgelämä & Tezü cayı" -#: server_databases.php:51 +#: server_databases.php:49 msgid "No databases selected." msgstr "Biremlek saylanmağan." -#: server_databases.php:62 +#: server_databases.php:60 #, php-format msgid "%s databases have been dropped successfully." msgstr "\"%s\" biremlegen beterü uñışlı uzdı." -#: server_databases.php:87 +#: server_databases.php:85 msgid "Databases statistics" msgstr "Biremlek nöfüsläre" -#: server_databases.php:116 server_status.php:370 +#: server_databases.php:114 server_status.php:370 #: setup/lib/messages.inc.php:114 msgid "Tables" msgstr "Tüşämä" -#: server_databases.php:194 server_replication.php:180 -#: server_replication.php:208 +#: server_databases.php:192 server_replication.php:179 +#: server_replication.php:207 msgid "Master replication" msgstr "" -#: server_databases.php:196 server_replication.php:247 +#: server_databases.php:194 server_replication.php:246 msgid "Slave replication" msgstr "" -#: server_databases.php:229 +#: server_databases.php:227 #, fuzzy msgid "Jump to database" msgstr "Biremleklär yuq" -#: server_databases.php:266 +#: server_databases.php:264 msgid "Not replicated" msgstr "" -#: server_databases.php:272 +#: server_databases.php:270 #, fuzzy msgid "Replicated" msgstr "Bäyläneşlär" -#: server_databases.php:288 +#: server_databases.php:286 #, php-format msgid "Check privileges for database "%s"." msgstr "\"%s\" biremlege öçen xoquqlar tikşerü." -#: server_databases.php:292 server_databases.php:293 +#: server_databases.php:290 server_databases.php:291 msgid "Check Privileges" msgstr "Xoquqlar tikşerü" -#: server_databases.php:357 server_databases.php:358 +#: server_databases.php:355 server_databases.php:356 msgid "Enable Statistics" msgstr "Nöfüsne Cibärü" -#: server_databases.php:361 server_databases.php:362 +#: server_databases.php:359 server_databases.php:360 msgid "Disable Statistics" msgstr "Nöfüse Sünderü" -#: server_databases.php:365 +#: server_databases.php:363 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -4510,120 +4561,120 @@ msgstr "" "Note: Enabling the Database statistics here might cause heavy traffic " "between the webserver and the MySQL one." -#: server_engines.php:48 +#: server_engines.php:47 msgid "Storage Engines" msgstr "Saqlaw Isulı" -#: server_export.php:20 +#: server_export.php:18 msgid "View dump (schema) of databases" msgstr "Biremleklärneñ eçtälegen (tözeleşen) çığaru" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:23 server_privileges.php:265 msgid "Includes all privileges except GRANT." msgstr "GRANT'tan basqa bar xoquqlar da bar." -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:24 server_privileges.php:191 +#: server_privileges.php:514 msgid "Allows altering the structure of existing tables." msgstr "Biredä bulğan tüşämä tözeleşen üzgärtü xoquqı." -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:25 server_privileges.php:207 +#: server_privileges.php:520 msgid "Allows altering and dropping stored routines." msgstr "Allows altering and dropping stored routines." -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:26 server_privileges.php:183 +#: server_privileges.php:513 msgid "Allows creating new databases and tables." msgstr "Yaña biremlek/tüşämä yasaw xoquqı." -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:27 server_privileges.php:206 +#: server_privileges.php:519 msgid "Allows creating stored routines." msgstr "Saqlanğan funksílar qorırğa birä." -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:513 msgid "Allows creating new tables." msgstr "Yaña tüşämä yasaw xoquqı." -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:29 server_privileges.php:194 +#: server_privileges.php:517 msgid "Allows creating temporary tables." msgstr "Waqıtlı tüşämä yasaw xoquqı." -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:30 server_privileges.php:208 +#: server_privileges.php:553 msgid "Allows creating, dropping and renaming user accounts." msgstr "Qullanuçı xísabın qoru/salu/ataw eşen qılırğa birä." -#: server_privileges.php:32 server_privileges.php:199 -#: server_privileges.php:203 server_privileges.php:526 -#: server_privileges.php:530 +#: server_privileges.php:31 server_privileges.php:198 +#: server_privileges.php:202 server_privileges.php:525 +#: server_privileges.php:529 msgid "Allows creating new views." msgstr "Yaña qaraş qorırğa birä." -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:32 server_privileges.php:182 +#: server_privileges.php:505 msgid "Allows deleting data." msgstr "Eçtälek beterü xoquqı." -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:33 server_privileges.php:184 +#: server_privileges.php:516 msgid "Allows dropping databases and tables." msgstr "Biremlek/tüşämä beterü xoquqı." -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:34 server_privileges.php:516 msgid "Allows dropping tables." msgstr "Tüşämä beterü xoquqı." -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:35 server_privileges.php:199 +#: server_privileges.php:533 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:36 server_privileges.php:209 +#: server_privileges.php:521 msgid "Allows executing stored routines." msgstr "Eçke funksílar eşlätterergä birä." -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:37 server_privileges.php:188 +#: server_privileges.php:508 msgid "Allows importing data from and exporting data into files." msgstr "Allows importing data from and exporting data into files." -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:38 server_privileges.php:539 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Allows adding users and privileges without reloading the privilege tüşämä." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:515 msgid "Allows creating and dropping indexes." msgstr "Açqıçlarnı qoru/beterü xoquqı." -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:40 server_privileges.php:180 +#: server_privileges.php:441 server_privileges.php:503 msgid "Allows inserting and replacing data." msgstr "Eçtälek östäw/almaştıru xoquqı." -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:41 server_privileges.php:195 +#: server_privileges.php:548 msgid "Allows locking tables for the current thread." msgstr "Allows locking tables for the current thread." -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:42 server_privileges.php:645 +#: server_privileges.php:647 msgid "Limits the number of new connections the user may open per hour." msgstr "Limits the number of new connections the user may open per hour." -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:43 server_privileges.php:633 +#: server_privileges.php:635 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Limits the number of queries the user may send to the server per hour." -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:44 server_privileges.php:639 +#: server_privileges.php:641 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -4631,59 +4682,59 @@ msgstr "" "Limits the number of commands that change any table or database the user may " "execute per hour." -#: server_privileges.php:46 server_privileges.php:652 -#: server_privileges.php:654 +#: server_privileges.php:45 server_privileges.php:651 +#: server_privileges.php:653 #, fuzzy msgid "Limits the number of simultaneous connections the user may have." msgstr "Limits the number of new connections the user may open per hour." -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:46 server_privileges.php:187 +#: server_privileges.php:543 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:47 server_privileges.php:189 +#: server_privileges.php:447 server_privileges.php:549 msgid "Has no effect in this MySQL version." msgstr "Has no effect in this MySQL version." -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:48 server_privileges.php:185 +#: server_privileges.php:544 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Allows reloading server settings and flushing the server's caches." -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:197 +#: server_privileges.php:551 msgid "Allows the user to ask where the slaves / masters are." msgstr "Gives the right to the user to ask where the slaves / masters are." -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:50 server_privileges.php:196 +#: server_privileges.php:552 msgid "Needed for the replication slaves." msgstr "Needed for the replication slaves." -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:51 server_privileges.php:179 +#: server_privileges.php:438 server_privileges.php:502 msgid "Allows reading data." msgstr "Eçtälekne uqu xoquqı." -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:52 server_privileges.php:192 +#: server_privileges.php:546 msgid "Gives access to the complete list of databases." msgstr "Gives access to the complete list of databases." -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:53 server_privileges.php:203 +#: server_privileges.php:205 server_privileges.php:518 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "SHOW CREATE VIEW sorawların eşläterlek itä." -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:54 server_privileges.php:186 +#: server_privileges.php:545 msgid "Allows shutting down the server." msgstr "Serverne tuqtatu xoquqı." -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:55 server_privileges.php:193 +#: server_privileges.php:542 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -4693,157 +4744,157 @@ msgstr "" "Required for most administrative operations like setting global variables or " "killing threads of other users." -#: server_privileges.php:57 server_privileges.php:201 -#: server_privileges.php:535 +#: server_privileges.php:56 server_privileges.php:200 +#: server_privileges.php:534 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "Açqıçlarnı qoru/beterü xoquqı." -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:57 server_privileges.php:181 +#: server_privileges.php:444 server_privileges.php:504 msgid "Allows changing data." msgstr "Eçtälek üzgärtü xoquqı." -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:58 server_privileges.php:259 msgid "No privileges." msgstr "Xoquqlar yuq." -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:301 server_privileges.php:302 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Buş" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1710 server_privileges.php:1716 +#: server_privileges.php:430 server_privileges.php:565 +#: server_privileges.php:1714 server_privileges.php:1720 msgid "Table-specific privileges" msgstr "Berär tüşämä öçen xoquqlar" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1532 +#: server_privileges.php:431 server_privileges.php:573 +#: server_privileges.php:1536 msgid " Note: MySQL privilege names are expressed in English " msgstr " Beläse: MySQL'da xoquq adı İnglizçä kertelä!" -#: server_privileges.php:563 server_privileges.php:1531 +#: server_privileges.php:562 server_privileges.php:1535 msgid "Global privileges" msgstr "Töp xoquq" -#: server_privileges.php:565 server_privileges.php:1710 +#: server_privileges.php:564 server_privileges.php:1714 msgid "Database-specific privileges" msgstr "Berär biremlekkä qağılışlı xoquqlar" -#: server_privileges.php:610 +#: server_privileges.php:609 msgid "Administration" msgstr "İdärä" -#: server_privileges.php:630 +#: server_privileges.php:629 msgid "Resource limits" msgstr "Resurs çikläwläre" -#: server_privileges.php:631 +#: server_privileges.php:630 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Beläse: 0 (nül) kertelgän çaqta çikläwe beterelä." -#: server_privileges.php:708 +#: server_privileges.php:707 msgid "Login Information" msgstr "Kereş Turında" -#: server_privileges.php:802 +#: server_privileges.php:801 msgid "Do not change the password" msgstr "Sersüzen üzgärtäse tügel" -#: server_privileges.php:835 server_privileges.php:2197 +#: server_privileges.php:834 server_privileges.php:2201 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Qullanuçı yuq." -#: server_privileges.php:879 +#: server_privileges.php:878 #, php-format msgid "The user %s already exists!" msgstr "\"%s\" atlı qullanuçı bar inde!" -#: server_privileges.php:962 +#: server_privileges.php:961 msgid "You have added a new user." msgstr "Yana qullanuçı östälände." -#: server_privileges.php:1183 +#: server_privileges.php:1184 #, php-format msgid "You have updated the privileges for %s." msgstr "You have updated the privileges for %s." -#: server_privileges.php:1207 +#: server_privileges.php:1208 #, php-format msgid "You have revoked the privileges for %s" msgstr "You have revoked the privileges for %s" -#: server_privileges.php:1243 +#: server_privileges.php:1244 #, php-format msgid "The password for %s was changed successfully." msgstr "\"%s\" öçen sezsüz üzgärtü uñışlı uzdı." -#: server_privileges.php:1263 +#: server_privileges.php:1264 #, php-format msgid "Deleting %s" msgstr "\"%s\" Beterü" -#: server_privileges.php:1274 +#: server_privileges.php:1275 msgid "No users selected for deleting!" msgstr "Beteräse qullanuçılar saylanmağan!" -#: server_privileges.php:1277 +#: server_privileges.php:1278 msgid "Reloading the privileges" msgstr "Bu xoquqlarnı yöklä" -#: server_privileges.php:1292 +#: server_privileges.php:1296 msgid "The selected users have been deleted successfully." msgstr "Saylanğan qullanuçını beterü uñışlı uzdı." -#: server_privileges.php:1327 +#: server_privileges.php:1331 msgid "The privileges were reloaded successfully." msgstr "Bu xoquqlarnı yökläw uñışlı uzdı." -#: server_privileges.php:1355 server_privileges.php:1641 +#: server_privileges.php:1359 server_privileges.php:1645 msgid "Edit Privileges" msgstr "Xoquqlar Üzgärtü" -#: server_privileges.php:1364 +#: server_privileges.php:1368 msgid "Revoke" msgstr "Töşer" -#: server_privileges.php:1396 +#: server_privileges.php:1400 msgid "User overview" msgstr "Qullanuçılar tezmäse" -#: server_privileges.php:1533 server_privileges.php:1715 -#: server_privileges.php:2064 +#: server_privileges.php:1537 server_privileges.php:1719 +#: server_privileges.php:2068 msgid "Grant" msgstr "Xoquq" -#: server_privileges.php:1552 server_privileges.php:2154 +#: server_privileges.php:1556 server_privileges.php:2158 msgid "Any" msgstr "Törle" -#: server_privileges.php:1601 server_privileges.php:1625 -#: server_privileges.php:2019 server_privileges.php:2208 +#: server_privileges.php:1605 server_privileges.php:1629 +#: server_privileges.php:2023 server_privileges.php:2212 msgid "Add a new User" msgstr "Yaña qullanuçı östäw" -#: server_privileges.php:1606 +#: server_privileges.php:1610 msgid "Remove selected users" msgstr "Saylanğan qullanuçı beterü" -#: server_privileges.php:1609 +#: server_privileges.php:1613 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Qullanuçı xoquqların awdarıp beteräse." -#: server_privileges.php:1610 server_privileges.php:1611 -#: server_privileges.php:1612 +#: server_privileges.php:1614 server_privileges.php:1615 +#: server_privileges.php:1616 msgid "Drop the databases that have the same names as the users." msgstr "Bu qullanuçılar kebek atalğan biremleklärne beteräse." -#: server_privileges.php:1628 +#: server_privileges.php:1632 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4856,50 +4907,50 @@ msgstr "" "alardan ayırıla ala. Andí çaqlarda, dawam itü aldınnan, %sxoquqlarnı qabat " "yökläp alası%s." -#: server_privileges.php:1676 +#: server_privileges.php:1680 msgid "The selected user was not found in the privilege table." msgstr "Bu qullanuçı xoquqlar tüşämä eçendä tabılmadı." -#: server_privileges.php:1716 +#: server_privileges.php:1720 msgid "Column-specific privileges" msgstr "Berär bağana öçen xoquqlar" -#: server_privileges.php:1917 +#: server_privileges.php:1921 msgid "Add privileges on the following database" msgstr "Kiläse biremlek öçen xoquqlar östäw" -#: server_privileges.php:1935 +#: server_privileges.php:1939 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "_ belän % bilgelären şul kileş kenä qullanu öçen \\ belän ütkärergä kiräk" -#: server_privileges.php:1938 +#: server_privileges.php:1942 msgid "Add privileges on the following table" msgstr "Kiläse tüşämä öçen xoquqlar östäw" -#: server_privileges.php:1995 +#: server_privileges.php:1999 msgid "Change Login Information / Copy User" msgstr "Change Login Information / Copy User" -#: server_privileges.php:1998 +#: server_privileges.php:2002 msgid "Create a new user with the same privileges and ..." msgstr "Create a new user with the same privileges and ..." -#: server_privileges.php:2000 +#: server_privileges.php:2004 msgid "... keep the old one." msgstr "... keep the old one." -#: server_privileges.php:2001 +#: server_privileges.php:2005 msgid " ... delete the old one from the user tables." msgstr " ... delete the old one from the user tables." -#: server_privileges.php:2002 +#: server_privileges.php:2006 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "" " ... revoke all active privileges from the old one and delete it afterwards." -#: server_privileges.php:2003 +#: server_privileges.php:2007 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -4907,44 +4958,44 @@ msgstr "" " ... delete the old one from the user tables and reload the privileges " "afterwards." -#: server_privileges.php:2025 +#: server_privileges.php:2029 msgid "Database for user" msgstr "Qullanuçı biremlege" -#: server_privileges.php:2029 +#: server_privileges.php:2033 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Buş" -#: server_privileges.php:2030 +#: server_privileges.php:2034 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2031 +#: server_privileges.php:2035 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2034 +#: server_privileges.php:2038 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "\"%s\" biremlege öçen xoquqlar tikşerü." -#: server_privileges.php:2057 +#: server_privileges.php:2061 #, php-format msgid "Users having access to "%s"" msgstr "\"%s\" belän eşläw xoquqı bulğan qullanuçılar" -#: server_privileges.php:2165 +#: server_privileges.php:2169 msgid "global" msgstr "ğömümi" -#: server_privileges.php:2167 +#: server_privileges.php:2171 msgid "database-specific" msgstr "berär biremlekkä qağılışlı" -#: server_privileges.php:2169 +#: server_privileges.php:2173 msgid "wildcard" msgstr "almaşbilge" @@ -4963,53 +5014,53 @@ msgstr "phpMyAdmin %s ceben üterä almadı. Bälki ul yabılğan bulğan da ind msgid "ID" msgstr "ID" -#: server_replication.php:50 +#: server_replication.php:49 msgid "Unknown error" msgstr "" -#: server_replication.php:57 +#: server_replication.php:56 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:64 +#: server_replication.php:63 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:70 +#: server_replication.php:69 msgid "Unable to change master" msgstr "" -#: server_replication.php:73 +#: server_replication.php:72 #, php-format msgid "Master server changed succesfully to %s" msgstr "" -#: server_replication.php:181 +#: server_replication.php:180 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:183 server_status.php:391 +#: server_replication.php:182 server_status.php:391 msgid "Show master status" msgstr "" -#: server_replication.php:186 +#: server_replication.php:185 msgid "Show connected slaves" msgstr "" -#: server_replication.php:209 +#: server_replication.php:208 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:216 +#: server_replication.php:215 msgid "Master configuration" msgstr "" -#: server_replication.php:217 +#: server_replication.php:216 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -5018,111 +5069,111 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:220 +#: server_replication.php:219 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:221 +#: server_replication.php:220 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:224 +#: server_replication.php:223 #, fuzzy msgid "Please select databases:" msgstr "Berär biremlek saylísı" -#: server_replication.php:227 +#: server_replication.php:226 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: server_replication.php:229 +#: server_replication.php:228 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: server_replication.php:292 +#: server_replication.php:291 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:295 +#: server_replication.php:294 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:304 +#: server_replication.php:303 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:307 +#: server_replication.php:306 msgid "See slave status table" msgstr "" -#: server_replication.php:310 +#: server_replication.php:309 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:321 +#: server_replication.php:320 msgid "Control slave:" msgstr "" -#: server_replication.php:324 +#: server_replication.php:323 #, fuzzy msgid "Full start" msgstr "Tulımäten" -#: server_replication.php:324 +#: server_replication.php:323 #, fuzzy msgid "Full stop" msgstr "Tulımäten" -#: server_replication.php:325 +#: server_replication.php:324 msgid "Reset slave" msgstr "" -#: server_replication.php:326 +#: server_replication.php:325 #, php-format msgid "SQL Thread %s only" msgstr "" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 #, fuzzy msgid "Start" msgstr "Şmb" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 msgid "Stop" msgstr "" -#: server_replication.php:327 +#: server_replication.php:326 #, php-format msgid "IO Thread %s only" msgstr "" -#: server_replication.php:331 +#: server_replication.php:330 msgid "Error management:" msgstr "" -#: server_replication.php:333 +#: server_replication.php:332 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:335 +#: server_replication.php:334 msgid "Skip current error" msgstr "" -#: server_replication.php:336 +#: server_replication.php:335 msgid "Skip next" msgstr "" -#: server_replication.php:339 +#: server_replication.php:338 msgid "errors." msgstr "" -#: server_replication.php:354 +#: server_replication.php:353 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -5841,113 +5892,113 @@ msgstr "Soraw töre" msgid "Replication status" msgstr "Bäyläneşlär" -#: server_synchronize.php:93 +#: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:96 +#: server_synchronize.php:95 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:121 server_synchronize.php:124 tbl_create.php:77 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:264 +#: server_synchronize.php:263 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:271 +#: server_synchronize.php:270 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:399 server_synchronize.php:838 +#: server_synchronize.php:398 server_synchronize.php:837 msgid "not present" msgstr "" -#: server_synchronize.php:423 server_synchronize.php:866 +#: server_synchronize.php:422 server_synchronize.php:865 #, fuzzy msgid "Structure Difference" msgstr "Tözeleşen genä" -#: server_synchronize.php:424 server_synchronize.php:867 +#: server_synchronize.php:423 server_synchronize.php:866 msgid "Data Difference" msgstr "" -#: server_synchronize.php:429 server_synchronize.php:872 +#: server_synchronize.php:428 server_synchronize.php:871 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:430 server_synchronize.php:873 +#: server_synchronize.php:429 server_synchronize.php:872 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:431 server_synchronize.php:874 +#: server_synchronize.php:430 server_synchronize.php:873 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:432 server_synchronize.php:875 +#: server_synchronize.php:431 server_synchronize.php:874 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:433 server_synchronize.php:876 +#: server_synchronize.php:432 server_synchronize.php:875 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:434 server_synchronize.php:877 +#: server_synchronize.php:433 server_synchronize.php:876 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:435 server_synchronize.php:878 +#: server_synchronize.php:434 server_synchronize.php:877 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:445 server_synchronize.php:889 +#: server_synchronize.php:444 server_synchronize.php:888 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:448 server_synchronize.php:893 +#: server_synchronize.php:447 server_synchronize.php:892 msgid "Apply Selected Changes" msgstr "" -#: server_synchronize.php:450 server_synchronize.php:895 +#: server_synchronize.php:449 server_synchronize.php:894 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:463 +#: server_synchronize.php:462 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:941 +#: server_synchronize.php:940 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:1002 +#: server_synchronize.php:1001 msgid "The following queries have been executed:" msgstr "" -#: server_synchronize.php:1121 +#: server_synchronize.php:1120 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1122 +#: server_synchronize.php:1121 #, fuzzy #| msgid "Connections" msgid "Current connection" msgstr "Totaşular" -#: server_synchronize.php:1151 +#: server_synchronize.php:1150 #, php-format msgid "Configuration: %s" msgstr "" -#: server_synchronize.php:1166 +#: server_synchronize.php:1165 msgid "Socket" msgstr "" -#: server_synchronize.php:1212 +#: server_synchronize.php:1211 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -6512,8 +6563,8 @@ msgstr "" #: setup/lib/messages.inc.php:128 msgid "" "Configure phpMyAdmin database to gain access to additional features, see " -"[a@../Documentation.html#linked-tables]linked-tables infrastructure[/a] in " -"documentation" +"[a@../Documentation.html#linked-tables]phpMyAdmin configuration storage[/a] " +"in documentation" msgstr "" #: setup/lib/messages.inc.php:129 setup/lib/messages.inc.php:290 @@ -7582,117 +7633,117 @@ msgstr "" msgid "ZIP" msgstr "" -#: sql.php:495 tbl_replace.php:385 +#: sql.php:494 tbl_replace.php:384 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: sql.php:512 +#: sql.php:511 msgid "Showing as PHP code" msgstr "" -#: sql.php:515 tbl_replace.php:359 +#: sql.php:514 tbl_replace.php:358 #, fuzzy msgid "Showing SQL query" msgstr "Tulı Sorawlar Kürsät" -#: sql.php:517 +#: sql.php:516 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "SQL'nı Tikşer" -#: sql.php:638 +#: sql.php:631 #, php-format msgid "Problems with indexes of table `%s`" msgstr "`%s` atlı tüşäw tezeşläre belän nidider tiskärlek bar" -#: sql.php:670 +#: sql.php:663 msgid "Label" msgstr "Yarlıq" -#: tbl_addfield.php:188 tbl_alter.php:102 tbl_indexes.php:97 +#: tbl_addfield.php:185 tbl_alter.php:100 tbl_indexes.php:97 #, fuzzy, php-format msgid "Table %1$s has been altered successfully" msgstr "Saylanğan qullanuçını beterü uñışlı uzdı." -#: tbl_change.php:250 tbl_select.php:26 tbl_select.php:27 tbl_select.php:30 -#: tbl_select.php:33 +#: tbl_change.php:245 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_select.php:32 msgid "Browse foreign values" msgstr "Browse foreign values" -#: tbl_change.php:280 tbl_change.php:318 +#: tbl_change.php:275 tbl_change.php:313 msgid "Function" msgstr "Funksí" -#: tbl_change.php:300 tbl_indexes.php:199 tbl_indexes.php:224 +#: tbl_change.php:295 tbl_indexes.php:198 tbl_indexes.php:223 msgid "Ignore" msgstr "Qarama" -#: tbl_change.php:725 +#: tbl_change.php:720 #, fuzzy #| msgid " Because of its length,
                            this field might not be editable " msgid " Because of its length,
                            this column might not be editable " msgstr " Because of its length,
                            this field might not be editable" -#: tbl_change.php:884 +#: tbl_change.php:835 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:890 +#: tbl_change.php:841 msgid "Binary - do not edit" msgstr "Binar - üzgärtmäslek" -#: tbl_change.php:983 +#: tbl_change.php:889 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:1128 +#: tbl_change.php:1026 msgid "Insert as new row" msgstr "Yaña yazma kert tä" -#: tbl_change.php:1129 +#: tbl_change.php:1027 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:1130 +#: tbl_change.php:1028 msgid "Show insert query" msgstr "" -#: tbl_change.php:1145 +#: tbl_change.php:1043 msgid "Go back to previous page" msgstr "Aldağı bitkä qaytu" -#: tbl_change.php:1146 +#: tbl_change.php:1044 msgid "Insert another new row" msgstr "Tağın ber yazma östäw" -#: tbl_change.php:1150 +#: tbl_change.php:1048 msgid "Go back to this page" msgstr "Bu bitkä kire qaytası" -#: tbl_change.php:1158 +#: tbl_change.php:1056 msgid "Edit next row" msgstr "Kiläse yazma üzgärtü" -#: tbl_change.php:1169 +#: tbl_change.php:1067 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Ber bäyädän ikençegä küçü öçen TAB töymäsen qullanası, başqa cirgä küçü " "öçen, CTRL+uq töymäläre bar" -#: tbl_change.php:1207 +#: tbl_change.php:1105 #, php-format msgid "Restart insertion with %s rows" msgstr "" -#: tbl_create.php:57 +#: tbl_create.php:55 #, php-format msgid "Table %s already exists!" msgstr "%s atlı tüşämä bar inde!" -#: tbl_create.php:244 +#: tbl_create.php:241 #, fuzzy, php-format msgid "Table %1$s has been created." msgstr "\"%s\" atlı tüşämä beterelde" @@ -7713,203 +7764,203 @@ msgstr "Açqıçnı \"PRIMARY\" itep atap bulmí!" msgid "No index parts defined!" msgstr "No index parts defined!" -#: tbl_indexes.php:159 +#: tbl_indexes.php:158 msgid "Create a new index" msgstr "Yaña tezeş yaratu" -#: tbl_indexes.php:161 +#: tbl_indexes.php:160 msgid "Modify an index" msgstr "Açqıç üzgärtü" -#: tbl_indexes.php:167 +#: tbl_indexes.php:166 msgid "Index name:" msgstr "Tezeş adı :" -#: tbl_indexes.php:173 +#: tbl_indexes.php:172 msgid "Index type:" msgstr "Tezeş töre :" -#: tbl_indexes.php:183 +#: tbl_indexes.php:182 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "(Töp açqıçnıñ ğına adı \"PRIMARY\" bulırğa tieş!)" -#: tbl_indexes.php:250 +#: tbl_indexes.php:249 #, php-format msgid "Add to index  %s column(s)" msgstr "Açqıçqa tağın  %s alan östise" -#: tbl_indexes.php:255 tbl_structure.php:588 tbl_structure.php:599 +#: tbl_indexes.php:254 tbl_structure.php:586 tbl_structure.php:597 msgid "Column count has to be larger than zero." msgstr "" -#: tbl_move_copy.php:45 +#: tbl_move_copy.php:44 msgid "Can't move table to same one!" msgstr "Ber ük at belän tüşämä küçerep bulmí!" -#: tbl_move_copy.php:47 +#: tbl_move_copy.php:46 msgid "Can't copy table to same one!" msgstr "Can't copy table to same one!" -#: tbl_move_copy.php:55 +#: tbl_move_copy.php:54 #, php-format msgid "Table %s has been moved to %s." msgstr "\"%s\" atlı tüşämä \"%s\" kebek ataldı." -#: tbl_move_copy.php:57 +#: tbl_move_copy.php:56 #, php-format msgid "Table %s has been copied to %s." msgstr "Table %s has been copied to %s." -#: tbl_move_copy.php:81 +#: tbl_move_copy.php:80 msgid "The table name is empty!" msgstr "Tüşämä adı kertelmi qaldı!" -#: tbl_operations.php:248 +#: tbl_operations.php:246 msgid "Alter table order by" msgstr "Tüşämä eçtälegen bolay tezäse" -#: tbl_operations.php:257 +#: tbl_operations.php:255 msgid "(singly)" msgstr "(sıñar)" -#: tbl_operations.php:277 +#: tbl_operations.php:275 msgid "Move table to (database.table):" msgstr "Boña küçerü (biremlek.tüşämä):" -#: tbl_operations.php:335 +#: tbl_operations.php:333 msgid "Table options" msgstr "Tüşämä köyläneşe" -#: tbl_operations.php:339 +#: tbl_operations.php:337 msgid "Rename table to" msgstr "Tüşämä adın üzgärtü" -#: tbl_operations.php:510 +#: tbl_operations.php:508 msgid "Copy table to (database.table):" msgstr "Boña kübäyt (biremlek.tüşämä):" -#: tbl_operations.php:557 +#: tbl_operations.php:555 msgid "Switch to copied table" msgstr "Kübäytelgän tüşämägä küçäse" -#: tbl_operations.php:569 +#: tbl_operations.php:567 msgid "Table maintenance" msgstr "Tüşämä eşkärtü" -#: tbl_operations.php:590 +#: tbl_operations.php:588 msgid "Defragment table" msgstr "Tüşämä kisäklären berläşterü" -#: tbl_operations.php:629 +#: tbl_operations.php:627 #, php-format msgid "Table %s has been flushed" msgstr "\"%s\" atlı tüşämä awdarıldı" -#: tbl_operations.php:635 +#: tbl_operations.php:633 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Tüşäwne awdar (\"FLUSH\")" -#: tbl_operations.php:650 +#: tbl_operations.php:648 #, fuzzy msgid "Partition maintenance" msgstr "Tüşämä eşkärtü" -#: tbl_operations.php:658 +#: tbl_operations.php:656 #, php-format msgid "Partition %s" msgstr "" -#: tbl_operations.php:661 +#: tbl_operations.php:659 msgid "Analyze" msgstr "" -#: tbl_operations.php:662 +#: tbl_operations.php:660 #, fuzzy msgid "Check" msgstr "Çexçä" -#: tbl_operations.php:663 +#: tbl_operations.php:661 msgid "Optimize" msgstr "" -#: tbl_operations.php:664 +#: tbl_operations.php:662 msgid "Rebuild" msgstr "" -#: tbl_operations.php:665 +#: tbl_operations.php:663 #, fuzzy msgid "Repair" msgstr "Tüşämä tözätü" -#: tbl_operations.php:677 +#: tbl_operations.php:675 msgid "Remove partitioning" msgstr "" -#: tbl_operations.php:703 +#: tbl_operations.php:701 msgid "Check referential integrity:" msgstr "Bäyläneşlärne döreslekkä tikşerü:" -#: tbl_printview.php:73 +#: tbl_printview.php:72 msgid "Show tables" msgstr "Tüşämälär kürsätäse" -#: tbl_printview.php:308 tbl_structure.php:655 +#: tbl_printview.php:307 tbl_structure.php:653 msgid "Space usage" msgstr "Totılğan Alan" -#: tbl_printview.php:312 tbl_structure.php:659 +#: tbl_printview.php:311 tbl_structure.php:657 msgid "Usage" msgstr "Totılu" -#: tbl_printview.php:339 tbl_structure.php:686 +#: tbl_printview.php:338 tbl_structure.php:684 msgid "Effective" msgstr "Uñışlı" -#: tbl_printview.php:364 tbl_structure.php:724 +#: tbl_printview.php:363 tbl_structure.php:722 msgid "Row Statistics" msgstr "Kerem Nöfüse" -#: tbl_printview.php:367 tbl_structure.php:727 +#: tbl_printview.php:366 tbl_structure.php:725 msgid "Statements" msgstr "Cömlä" -#: tbl_printview.php:378 tbl_structure.php:739 +#: tbl_printview.php:377 tbl_structure.php:737 msgid "static" msgstr "" -#: tbl_printview.php:380 tbl_structure.php:741 +#: tbl_printview.php:379 tbl_structure.php:739 msgid "dynamic" msgstr "üzgärüçän" -#: tbl_printview.php:402 tbl_structure.php:784 +#: tbl_printview.php:401 tbl_structure.php:782 msgid "Row length" msgstr "Kerem ozınlığı" -#: tbl_printview.php:412 tbl_structure.php:792 +#: tbl_printview.php:411 tbl_structure.php:790 msgid " Row size " msgstr " Kerem olılığı" -#: tbl_relation.php:278 +#: tbl_relation.php:276 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" -#: tbl_relation.php:404 +#: tbl_relation.php:402 #, fuzzy #| msgid "Internal relations" msgid "Internal relation" msgstr "Eçke bäyläneş" -#: tbl_relation.php:406 +#: tbl_relation.php:404 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: tbl_relation.php:412 +#: tbl_relation.php:410 msgid "Foreign key constraint" msgstr "" @@ -7917,233 +7968,233 @@ msgstr "" msgid "No rows selected" msgstr "Kertemnär sayladı" -#: tbl_select.php:130 +#: tbl_select.php:129 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "\"Ürnäk buyınça soraw\" eşkärtü (almaştırma: \"%\")" -#: tbl_select.php:136 +#: tbl_select.php:135 msgid "Operator" msgstr "Operator" -#: tbl_select.php:267 +#: tbl_select.php:266 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "Alannar saylísı (iñ kimendä ber):" -#: tbl_select.php:285 +#: tbl_select.php:284 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Ezläw şartın östäw (\"WHERE\" eçtälege):" -#: tbl_select.php:292 +#: tbl_select.php:291 msgid "Number of rows per page" msgstr "Bit sayın Kertem sanı" -#: tbl_select.php:298 +#: tbl_select.php:297 msgid "Display order:" msgstr "Kürsätü tärtibe:" -#: tbl_structure.php:160 +#: tbl_structure.php:159 #, fuzzy msgid "Browse distinct values" msgstr "Browse foreign values" -#: tbl_structure.php:360 +#: tbl_structure.php:358 #, fuzzy #| msgid "None" msgctxt "None for default" msgid "None" msgstr "Buş" -#: tbl_structure.php:373 +#: tbl_structure.php:371 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Column %s has been dropped" msgstr "\"%s\" atlı tüşämä beterelde" -#: tbl_structure.php:384 +#: tbl_structure.php:382 #, php-format msgid "A primary key has been added on %s" msgstr "\"%s\" öçen töp açqıç qorıldı" -#: tbl_structure.php:399 tbl_structure.php:413 tbl_structure.php:427 +#: tbl_structure.php:397 tbl_structure.php:411 tbl_structure.php:425 #, php-format msgid "An index has been added on %s" msgstr "\"%s\" öçen ber açqıç qorıldı" -#: tbl_structure.php:505 tbl_structure.php:507 +#: tbl_structure.php:503 tbl_structure.php:505 msgid "Relation view" msgstr "Bäyläneşkä küzätü" -#: tbl_structure.php:514 tbl_structure.php:516 +#: tbl_structure.php:512 tbl_structure.php:514 msgid "Propose table structure" msgstr "Tüşämä tözeleşenä küzätü" -#: tbl_structure.php:539 +#: tbl_structure.php:537 #, fuzzy #| msgid "Add %s field(s)" msgid "Add column" msgstr "%s alan östäw" -#: tbl_structure.php:553 +#: tbl_structure.php:551 msgid "At End of Table" msgstr "Tüşämä azağına" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At Beginning of Table" msgstr "Tüşämä Başına" -#: tbl_structure.php:555 +#: tbl_structure.php:553 #, php-format msgid "After %s" msgstr "%s artınnan" -#: tbl_structure.php:593 +#: tbl_structure.php:591 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "%s alannan tezeş yaratu" -#: tbl_structure.php:755 +#: tbl_structure.php:753 msgid "partitioned" msgstr "" -#: tbl_tracking.php:113 +#: tbl_tracking.php:109 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:186 +#: tbl_tracking.php:182 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "" -#: tbl_tracking.php:194 +#: tbl_tracking.php:190 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "" -#: tbl_tracking.php:202 +#: tbl_tracking.php:198 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "" -#: tbl_tracking.php:212 +#: tbl_tracking.php:208 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:219 +#: tbl_tracking.php:215 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:220 +#: tbl_tracking.php:216 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:229 +#: tbl_tracking.php:225 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:250 tbl_tracking.php:378 +#: tbl_tracking.php:245 tbl_tracking.php:373 msgid "Close" msgstr "" -#: tbl_tracking.php:261 +#: tbl_tracking.php:256 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:380 +#: tbl_tracking.php:375 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:396 tbl_tracking.php:503 +#: tbl_tracking.php:391 tbl_tracking.php:498 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "" -#: tbl_tracking.php:409 tbl_tracking.php:460 +#: tbl_tracking.php:404 tbl_tracking.php:455 #, fuzzy msgid "Date" msgstr "Eçtälek" -#: tbl_tracking.php:410 tbl_tracking.php:461 +#: tbl_tracking.php:405 tbl_tracking.php:456 #, fuzzy msgid "Username" msgstr "Atama:" -#: tbl_tracking.php:411 +#: tbl_tracking.php:406 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:462 +#: tbl_tracking.php:457 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:506 +#: tbl_tracking.php:501 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:507 +#: tbl_tracking.php:502 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:520 +#: tbl_tracking.php:515 #, fuzzy, php-format msgid "Export as %s" msgstr "Çığaru ısulı" -#: tbl_tracking.php:560 +#: tbl_tracking.php:555 msgid "Show versions" msgstr "" -#: tbl_tracking.php:592 +#: tbl_tracking.php:587 #, fuzzy msgid "Version" msgstr "Farsíça" -#: tbl_tracking.php:639 +#: tbl_tracking.php:634 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "" -#: tbl_tracking.php:641 +#: tbl_tracking.php:636 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:652 +#: tbl_tracking.php:647 #, php-format msgid "Activate tracking for %s.%s" msgstr "" -#: tbl_tracking.php:654 +#: tbl_tracking.php:649 msgid "Activate now" msgstr "" -#: tbl_tracking.php:667 +#: tbl_tracking.php:662 #, php-format msgid "Create version %s of %s.%s" msgstr "" -#: tbl_tracking.php:671 +#: tbl_tracking.php:666 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:679 +#: tbl_tracking.php:674 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:687 +#: tbl_tracking.php:682 #, fuzzy msgid "Create version" msgstr "Server söreme" @@ -8194,11 +8245,36 @@ msgstr "The profile has been updated." msgid "VIEW name" msgstr "" -#: view_operations.php:92 +#: view_operations.php:91 #, fuzzy msgid "Rename view to" msgstr "Tüşämä adın üzgärtü" +#, fuzzy +#~| msgid "Enabled" +#~ msgctxt "BLOB repository" +#~ msgid "Enabled" +#~ msgstr "Açıq" + +#, fuzzy +#~ msgid "Disable" +#~ msgstr "Sünek" + +#, fuzzy +#~ msgctxt "BLOB repository" +#~ msgid "Repair" +#~ msgstr "Tüşämä tözätü" + +#, fuzzy +#~| msgid "Disabled" +#~ msgctxt "BLOB repository" +#~ msgid "Disabled" +#~ msgstr "Sünek" + +#, fuzzy +#~ msgid "Enable" +#~ msgstr "Açıq" + #~ msgid "" #~ "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " #~ "extension. Please check your PHP configuration." diff --git a/po/ug.po b/po/ug.po index be7308d29..1f876d86a 100644 --- a/po/ug.po +++ b/po/ug.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-21 13:53+0200\n" +"POT-Creation-Date: 2010-07-26 17:18+0200\n" "PO-Revision-Date: 2010-07-26 05:01+0200\n" "Last-Translator: \n" "Language-Team: Uyghur \n" @@ -17,19 +17,19 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.1\n" -#: browse_foreigners.php:37 browse_foreigners.php:58 -#: libraries/display_tbl.lib.php:416 server_privileges.php:1506 +#: browse_foreigners.php:36 browse_foreigners.php:57 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1510 msgid "Show all" msgstr "ھەممىسىنى كۆرسىتىش" -#: browse_foreigners.php:81 libraries/common.lib.php:2313 -#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:393 -#: libraries/export/pdf.php:146 pdf_schema.php:282 pdf_schema.php:1122 -#: pdf_schema.php:1138 +#: browse_foreigners.php:80 libraries/common.lib.php:2318 +#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:392 +#: libraries/export/pdf.php:146 pdf_schema.php:281 pdf_schema.php:1121 +#: pdf_schema.php:1137 msgid "Page number:" msgstr "بەت نومۇرى:" -#: browse_foreigners.php:131 +#: browse_foreigners.php:130 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -38,137 +38,151 @@ msgstr "" "كۆزنەكنى يىڭىلاشقا ئامالسىز،سىز بەلكەم باش كۆزنەكنى تاقىۋەتكەن بۇلىشىڭىز " "ياكى تور كۆرەۈچىڭىزنىڭ بىخەتەرلىك تەڭشىكى تسقۇنلۇق قىلغان بۇلىشى مۇمكىن." -#: browse_foreigners.php:149 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2829 -#: libraries/common.lib.php:2836 libraries/db_links.inc.php:74 -#: libraries/tbl_links.inc.php:62 +#: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 +#: db_structure.php:89 db_structure.php:91 db_structure.php:102 +#: db_structure.php:104 libraries/common.lib.php:2834 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "ئىزدەش" -#: browse_foreigners.php:152 db_operations.php:384 db_operations.php:428 -#: db_operations.php:498 db_operations.php:608 db_search.php:344 -#: db_structure.php:566 js/messages.php:48 libraries/Config.class.php:1043 -#: libraries/Theme_Manager.class.php:310 +#: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 +#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 +#: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 -#: libraries/common.lib.php:1340 libraries/common.lib.php:2289 +#: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 -#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:275 -#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:531 -#: libraries/display_tbl.lib.php:613 libraries/replication_gui.lib.php:75 +#: libraries/display_export.lib.php:269 libraries/display_import.lib.php:275 +#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 +#: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 #: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:781 -#: main.php:127 navigation.php:231 pdf_pages.php:291 pdf_pages.php:327 -#: pdf_pages.php:529 pmd_pdf.php:115 server_binlog.php:128 -#: server_privileges.php:664 server_privileges.php:1616 -#: server_privileges.php:1963 server_privileges.php:2010 -#: server_privileges.php:2049 server_replication.php:234 -#: server_replication.php:317 server_replication.php:340 -#: server_synchronize.php:1208 tbl_change.php:328 tbl_change.php:1172 -#: tbl_change.php:1209 tbl_indexes.php:253 tbl_operations.php:264 -#: tbl_operations.php:301 tbl_operations.php:498 tbl_operations.php:560 -#: tbl_operations.php:680 tbl_select.php:324 tbl_structure.php:561 -#: tbl_structure.php:596 tbl_tracking.php:394 tbl_tracking.php:511 -#: view_create.php:181 view_operations.php:100 +#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 +#: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 +#: server_privileges.php:663 server_privileges.php:1620 +#: server_privileges.php:1967 server_privileges.php:2014 +#: server_privileges.php:2053 server_replication.php:233 +#: server_replication.php:316 server_replication.php:339 +#: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 +#: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 +#: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 +#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "ئىجرا قىلىش" -#: browse_foreigners.php:167 browse_foreigners.php:171 -#: libraries/Index.class.php:441 tbl_tracking.php:319 +#: browse_foreigners.php:166 browse_foreigners.php:170 +#: libraries/Index.class.php:441 tbl_tracking.php:314 msgid "Keyname" msgstr "قىممەت ئىسمى" -#: browse_foreigners.php:168 browse_foreigners.php:170 -#: server_collations.php:54 server_collations.php:66 server_engines.php:58 +#: browse_foreigners.php:167 browse_foreigners.php:169 +#: server_collations.php:54 server_collations.php:66 server_engines.php:57 #: server_status.php:738 msgid "Description" msgstr "ئىزاھات" -#: browse_foreigners.php:246 browse_foreigners.php:255 -#: browse_foreigners.php:267 browse_foreigners.php:275 +#: browse_foreigners.php:245 browse_foreigners.php:254 +#: browse_foreigners.php:266 browse_foreigners.php:274 msgid "Use this value" msgstr "مۇشۇ قىممەتنى ئىشلىتىش" -#: db_create.php:45 +#: bs_disp_as_mime_type.php:29 bs_play_media.php:35 +msgid "No blob streaming server configured!" +msgstr "" + +#: bs_disp_as_mime_type.php:35 +#, fuzzy +#| msgid "Failed to write file to disk." +msgid "Failed to fetch headers" +msgstr "ھۆججەتنى دېسكىغا يىزىشتا خاتالىق كۆرۈلدى." + +#: bs_disp_as_mime_type.php:41 +msgid "Failed to open remote URL" +msgstr "" + +#: db_create.php:44 #, php-format msgid "Database %1$s has been created." msgstr "%1$s ساندان غەلبىلىك قۇرۇلدى" -#: db_datadict.php:48 db_operations.php:377 +#: db_datadict.php:48 db_operations.php:313 msgid "Database comment: " msgstr "ساندان ئىزاھاتى:" -#: db_datadict.php:164 libraries/tbl_properties.inc.php:723 -#: pdf_schema.php:1235 tbl_operations.php:346 tbl_printview.php:128 +#: db_datadict.php:164 libraries/tbl_properties.inc.php:722 +#: pdf_schema.php:1234 tbl_operations.php:344 tbl_printview.php:127 msgid "Table comments" msgstr "جەدۋەل ئىزاھى" -#: db_datadict.php:173 db_qbe.php:173 libraries/Index.class.php:445 +#: db_datadict.php:173 db_qbe.php:170 libraries/Index.class.php:445 #: libraries/export/htmlword.php:243 libraries/export/latex.php:364 #: libraries/export/odt.php:293 libraries/export/texytext.php:233 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:274 -#: pdf_schema.php:1261 pdf_schema.php:1282 tbl_change.php:306 -#: tbl_indexes.php:188 tbl_printview.php:140 tbl_relation.php:401 -#: tbl_select.php:133 tbl_structure.php:176 tbl_tracking.php:272 -#: tbl_tracking.php:323 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 +#: pdf_schema.php:1260 pdf_schema.php:1281 tbl_change.php:301 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:132 tbl_structure.php:175 tbl_tracking.php:267 +#: tbl_tracking.php:318 msgid "Column" msgstr "سۆزلەم" -#: db_datadict.php:174 db_printview.php:105 libraries/Index.class.php:442 +#: db_datadict.php:174 db_printview.php:104 libraries/Index.class.php:442 #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 #: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:244 #: libraries/export/latex.php:364 libraries/export/odt.php:296 #: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:99 -#: pdf_schema.php:1262 pdf_schema.php:1283 server_privileges.php:2062 -#: tbl_change.php:285 tbl_change.php:312 tbl_printview.php:141 -#: tbl_printview.php:311 tbl_select.php:134 tbl_structure.php:177 -#: tbl_structure.php:658 tbl_tracking.php:273 tbl_tracking.php:320 +#: pdf_schema.php:1261 pdf_schema.php:1282 server_privileges.php:2066 +#: tbl_change.php:280 tbl_change.php:307 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:133 tbl_structure.php:176 +#: tbl_structure.php:656 tbl_tracking.php:268 tbl_tracking.php:315 msgid "Type" msgstr "تۈرى" #: db_datadict.php:176 libraries/Index.class.php:448 #: libraries/export/htmlword.php:245 libraries/export/latex.php:364 #: libraries/export/odt.php:299 libraries/export/texytext.php:235 -#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1264 -#: pdf_schema.php:1285 tbl_change.php:321 tbl_printview.php:143 -#: tbl_structure.php:180 tbl_tracking.php:275 tbl_tracking.php:326 +#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1263 +#: pdf_schema.php:1284 tbl_change.php:316 tbl_printview.php:142 +#: tbl_structure.php:179 tbl_tracking.php:270 tbl_tracking.php:321 msgid "Null" msgstr "بوش" -#: db_datadict.php:177 db_structure.php:500 libraries/export/htmlword.php:246 +#: db_datadict.php:177 db_structure.php:486 libraries/export/htmlword.php:246 #: libraries/export/latex.php:364 libraries/export/odt.php:302 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:105 -#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 -#: tbl_structure.php:181 tbl_tracking.php:276 +#: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:143 +#: tbl_structure.php:180 tbl_tracking.php:271 msgid "Default" msgstr "ئەندىز" #: db_datadict.php:181 libraries/export/htmlword.php:248 #: libraries/export/latex.php:366 libraries/export/odt.php:306 -#: libraries/export/texytext.php:238 pdf_schema.php:1267 pdf_schema.php:1288 -#: tbl_printview.php:148 +#: libraries/export/texytext.php:238 pdf_schema.php:1266 pdf_schema.php:1287 +#: tbl_printview.php:147 msgid "Links to" msgstr "ئۇلانما" -#: db_datadict.php:183 db_printview.php:111 libraries/export/htmlword.php:251 +#: db_datadict.php:183 db_printview.php:110 libraries/export/htmlword.php:251 #: libraries/export/latex.php:49 libraries/export/latex.php:369 #: libraries/export/odt.php:37 libraries/export/odt.php:311 #: libraries/export/sql.php:29 libraries/export/texytext.php:241 -#: libraries/tbl_properties.inc.php:129 pdf_schema.php:1278 -#: pdf_schema.php:1289 tbl_printview.php:150 +#: libraries/tbl_properties.inc.php:128 pdf_schema.php:1277 +#: pdf_schema.php:1288 tbl_printview.php:149 msgid "Comments" msgstr "ئىزاھلار" #: db_datadict.php:266 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/export/htmlword.php:321 #: libraries/export/latex.php:434 libraries/export/odt.php:367 -#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:262 -#: pdf_schema.php:1343 server_privileges.php:1560 server_privileges.php:1571 -#: server_privileges.php:1881 server_privileges.php:1886 -#: server_privileges.php:2179 sql.php:131 sql.php:193 tbl_printview.php:227 -#: tbl_structure.php:349 tbl_tracking.php:336 tbl_tracking.php:341 +#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:261 +#: pdf_schema.php:1342 server_privileges.php:1564 server_privileges.php:1575 +#: server_privileges.php:1885 server_privileges.php:1890 +#: server_privileges.php:2183 sql.php:130 sql.php:192 tbl_printview.php:226 +#: tbl_structure.php:347 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "يوق" @@ -179,17 +193,17 @@ msgstr "يوق" #: libraries/mult_submits.inc.php:49 libraries/mult_submits.inc.php:54 #: libraries/mult_submits.inc.php:59 libraries/mult_submits.inc.php:91 #: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:105 -#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:261 -#: libraries/mult_submits.inc.php:272 pdf_schema.php:1343 -#: server_databases.php:63 server_privileges.php:1557 -#: server_privileges.php:1571 server_privileges.php:1881 -#: server_privileges.php:1884 server_privileges.php:2179 sql.php:192 -#: tbl_printview.php:227 tbl_structure.php:39 tbl_structure.php:349 -#: tbl_tracking.php:334 tbl_tracking.php:339 +#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:260 +#: libraries/mult_submits.inc.php:271 pdf_schema.php:1342 +#: server_databases.php:61 server_privileges.php:1561 +#: server_privileges.php:1575 server_privileges.php:1885 +#: server_privileges.php:1888 server_privileges.php:2183 sql.php:191 +#: tbl_printview.php:226 tbl_structure.php:38 tbl_structure.php:347 +#: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" msgstr "بولدى" -#: db_datadict.php:321 db_printview.php:265 tbl_printview.php:496 +#: db_datadict.php:321 db_printview.php:264 tbl_printview.php:495 msgid "Print" msgstr "يازدۇر" @@ -197,277 +211,243 @@ msgstr "يازدۇر" msgid "View dump (schema) of database" msgstr "ساندان قالدۇقىنى كۆرسىتىش" -#: db_export.php:32 db_printview.php:95 db_qbe.php:101 db_structure.php:50 -#: db_tracking.php:34 export.php:352 navigation.php:326 +#: db_export.php:32 db_printview.php:94 db_qbe.php:98 db_structure.php:49 +#: db_tracking.php:30 export.php:350 navigation.php:325 msgid "No tables found in database." msgstr "سانداندا جەدۋەل يوق" -#: db_export.php:42 db_search.php:326 server_export.php:26 +#: db_export.php:42 db_search.php:326 server_export.php:24 msgid "Select All" msgstr "ھەممىنى تاللاش" -#: db_export.php:44 db_search.php:329 server_export.php:28 +#: db_export.php:44 db_search.php:329 server_export.php:26 msgid "Unselect All" msgstr "ھەممە تاللاشنى قالدۇرۇش" -#: db_operations.php:37 tbl_create.php:49 +#: db_operations.php:33 tbl_create.php:47 msgid "The database name is empty!" msgstr "ساندان ئىسمىنى بوش قويماڭ!" -#: db_operations.php:235 +#: db_operations.php:231 #, php-format msgid "Database %s has been renamed to %s" msgstr "ساندان ئىسمى %s غا ئۆزگەرتىلدى %s" -#: db_operations.php:239 +#: db_operations.php:235 #, php-format msgid "Database %s has been copied to %s" msgstr "ساندان %s غا كۆچۈرۈلدى %s" -#: db_operations.php:411 +#: db_operations.php:347 msgid "Rename database to" msgstr "ئۆزگەرتىلگەن ساندان ئىسمى" -#: db_operations.php:416 server_processlist.php:56 +#: db_operations.php:352 server_processlist.php:56 msgid "Command" msgstr "بۇيرۇق" -#: db_operations.php:428 tbl_change.php:1141 +#: db_operations.php:364 tbl_change.php:1039 msgid "and then" msgstr "كېيىن" -#: db_operations.php:454 +#: db_operations.php:390 msgid "Copy database to" msgstr "كۆچۈرۈلگەن ساندان" -#: db_operations.php:461 tbl_operations.php:527 tbl_tracking.php:387 +#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "تۈزىلىشىنىلا" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:389 +#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "تۈزۈلىشى ۋە ئۇچۇر" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:388 +#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "ئۇچۇرنىلا" -#: db_operations.php:471 +#: db_operations.php:407 msgid "CREATE DATABASE before copying" msgstr "ئاندىنقى سانداننى كۆپەيتىپ ساندان قۇرۇش" -#: db_operations.php:474 libraries/export/sql.php:51 +#: db_operations.php:410 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 -#: libraries/export/sql.php:81 tbl_operations.php:535 +#: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "قوشۇلغىنى %s" -#: db_operations.php:478 libraries/export/sql.php:77 tbl_operations.php:298 -#: tbl_operations.php:537 +#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT قوشۇش" -#: db_operations.php:482 tbl_operations.php:544 +#: db_operations.php:418 tbl_operations.php:542 msgid "Add constraints" msgstr "مەجبۇرى قوشۇش" -#: db_operations.php:495 +#: db_operations.php:431 msgid "Switch to copied database" msgstr "كۆپەيتىلگەن ساندانغا كۆچۈش" -#: db_operations.php:536 -msgid "BLOB Repository" -msgstr "BLOB ئامبىرى" - -#: db_operations.php:539 db_tracking.php:75 libraries/common.lib.php:1357 -#: libraries/server_links.inc.php:48 server_processlist.php:58 -#: tbl_tracking.php:595 test/theme.php:100 -msgid "Status" -msgstr "ھالەت" - -#: db_operations.php:547 -msgctxt "BLOB repository" -msgid "Enabled" -msgstr "ئېچىلدى" - -#: db_operations.php:551 -msgid "Disable" -msgstr "تاقاش" - -#: db_operations.php:561 -msgid "Damaged" -msgstr "بۇزۇلغان" - -#: db_operations.php:565 -msgctxt "BLOB repository" -msgid "Repair" -msgstr "ئوڭشاش" - -#: db_operations.php:573 -msgctxt "BLOB repository" -msgid "Disabled" -msgstr "تاقالدى" - -#: db_operations.php:577 -msgid "Enable" -msgstr "ئېچىش" - -#: db_operations.php:601 libraries/Index.class.php:447 +#: db_operations.php:451 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 -#: server_collations.php:53 server_collations.php:65 server_databases.php:110 -#: tbl_operations.php:362 tbl_select.php:135 tbl_structure.php:178 -#: tbl_structure.php:766 tbl_tracking.php:274 tbl_tracking.php:325 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 +#: server_collations.php:53 server_collations.php:65 server_databases.php:108 +#: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:177 +#: tbl_structure.php:764 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "تاسقاش" -#: db_operations.php:614 main.php:315 pdf_schema.php:33 -#, php-format +#: db_operations.php:464 pdf_schema.php:32 +#, fuzzy, php-format +#| msgid "" +#| "The additional features for working with linked tables have been " +#| "deactivated. To find out why click %shere%s." msgid "" -"The additional features for working with linked tables have been " -"deactivated. To find out why click %shere%s." +"The phpMyAdmin configuration storage has been deactivated. To find out why " +"click %shere%s." msgstr "" "ئالاقىدار جەدۋەللەرنىڭ قوشۇمچە ئىقتىدارى پائالسىز. سەۋەبىنى ئېنىقلاش ئۈچۈن " "%sبۇ يەرنى كۆرۈڭ%s." -#: db_operations.php:647 +#: db_operations.php:497 msgid "Edit PDF Pages" msgstr "PDF بېتىنى تەھرىرلەش" -#: db_printview.php:103 db_tracking.php:71 db_tracking.php:156 +#: db_printview.php:102 db_tracking.php:67 db_tracking.php:152 #: libraries/db_structure.lib.php:37 libraries/export/xml.php:327 -#: libraries/header.inc.php:125 pdf_pages.php:423 server_privileges.php:1657 -#: server_privileges.php:1713 server_privileges.php:1977 -#: server_synchronize.php:422 server_synchronize.php:865 tbl_tracking.php:591 +#: libraries/header.inc.php:125 pdf_pages.php:422 server_privileges.php:1661 +#: server_privileges.php:1717 server_privileges.php:1981 +#: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "جەدۋەل" -#: db_printview.php:104 libraries/db_structure.lib.php:47 +#: db_printview.php:103 libraries/db_structure.lib.php:47 #: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 -#: navigation.php:629 navigation.php:651 server_databases.php:121 -#: tbl_printview.php:392 tbl_structure.php:364 tbl_structure.php:776 +#: navigation.php:628 navigation.php:650 server_databases.php:119 +#: tbl_printview.php:391 tbl_structure.php:362 tbl_structure.php:774 msgid "Rows" msgstr "سەپ سانى" -#: db_printview.php:108 libraries/db_structure.lib.php:58 tbl_indexes.php:189 +#: db_printview.php:107 libraries/db_structure.lib.php:58 tbl_indexes.php:188 msgid "Size" msgstr "ھەجىم" -#: db_printview.php:161 db_structure.php:456 libraries/export/sql.php:556 +#: db_printview.php:160 db_structure.php:442 libraries/export/sql.php:556 #: libraries/export/sql.php:896 msgid "in use" msgstr "ئىشلىتىلمەكتە" -#: db_printview.php:186 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:511 pdf_schema.php:1240 tbl_printview.php:432 -#: tbl_structure.php:808 +#: db_printview.php:185 libraries/db_info.inc.php:86 +#: libraries/export/sql.php:511 pdf_schema.php:1239 tbl_printview.php:431 +#: tbl_structure.php:806 msgid "Creation" msgstr "قۇرۇش" -#: db_printview.php:195 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:516 pdf_schema.php:1245 tbl_printview.php:442 -#: tbl_structure.php:816 +#: db_printview.php:194 libraries/db_info.inc.php:91 +#: libraries/export/sql.php:516 pdf_schema.php:1244 tbl_printview.php:441 +#: tbl_structure.php:814 msgid "Last update" msgstr "ئاخىرقى يېڭلىنىش" -#: db_printview.php:204 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:521 pdf_schema.php:1250 tbl_printview.php:452 -#: tbl_structure.php:824 +#: db_printview.php:203 libraries/db_info.inc.php:96 +#: libraries/export/sql.php:521 pdf_schema.php:1249 tbl_printview.php:451 +#: tbl_structure.php:822 msgid "Last check" msgstr "ئاخىرقى تەكشۈرۈش" -#: db_printview.php:221 db_structure.php:479 +#: db_printview.php:220 db_structure.php:465 #, php-format msgid "%s table" msgid_plural "%s tables" msgstr[0] "%s جەدۋەل" -#: db_qbe.php:28 import.php:453 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1980 libraries/sql_query_form.lib.php:138 -#: tbl_operations.php:212 tbl_relation.php:291 tbl_row_action.php:130 -#: view_operations.php:61 +#: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 +#: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "SQL بۇيرىقى غەلبىلىك بىجىرىلدى" -#: db_qbe.php:41 +#: db_qbe.php:38 msgid "You have to choose at least one column to display" msgstr "بۇنى بىجىرىش ئۈچۈن مەزمۇن تاللانغان بولۇشى كېرەك" -#: db_qbe.php:199 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:865 +#: db_qbe.php:196 libraries/db_structure.lib.php:95 +#: libraries/display_tbl.lib.php:864 msgid "Sort" msgstr "تۈرلەش" -#: db_qbe.php:208 db_qbe.php:242 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:522 libraries/display_tbl.lib.php:827 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:259 -#: tbl_select.php:311 +#: db_qbe.php:205 db_qbe.php:239 libraries/db_structure.lib.php:102 +#: libraries/display_tbl.lib.php:521 libraries/display_tbl.lib.php:826 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:257 +#: tbl_select.php:310 msgid "Ascending" msgstr "ئارتىش" -#: db_qbe.php:209 db_qbe.php:250 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:527 libraries/display_tbl.lib.php:824 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:260 -#: tbl_select.php:312 +#: db_qbe.php:206 db_qbe.php:247 libraries/db_structure.lib.php:110 +#: libraries/display_tbl.lib.php:526 libraries/display_tbl.lib.php:823 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:258 +#: tbl_select.php:311 msgid "Descending" msgstr "كېمىيىش" -#: db_qbe.php:263 db_tracking.php:77 libraries/display_tbl.lib.php:307 -#: tbl_change.php:275 tbl_tracking.php:596 +#: db_qbe.php:260 db_tracking.php:73 libraries/display_tbl.lib.php:306 +#: tbl_change.php:270 tbl_tracking.php:591 msgid "Show" msgstr "كۆرسىتىش" -#: db_qbe.php:299 +#: db_qbe.php:296 msgid "Criteria" msgstr "شەرت" -#: db_qbe.php:352 db_qbe.php:434 db_qbe.php:526 db_qbe.php:557 +#: db_qbe.php:349 db_qbe.php:431 db_qbe.php:523 db_qbe.php:554 msgid "Ins" msgstr "قىستۇرۇش" -#: db_qbe.php:356 db_qbe.php:438 db_qbe.php:523 db_qbe.php:554 +#: db_qbe.php:353 db_qbe.php:435 db_qbe.php:520 db_qbe.php:551 msgid "And" msgstr "ۋە" -#: db_qbe.php:365 db_qbe.php:446 db_qbe.php:528 db_qbe.php:559 +#: db_qbe.php:362 db_qbe.php:443 db_qbe.php:525 db_qbe.php:556 msgid "Del" msgstr "ئۆچۈرۈش" -#: db_qbe.php:369 db_qbe.php:450 db_qbe.php:521 db_qbe.php:552 -#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:778 -#: server_privileges.php:297 tbl_change.php:1027 tbl_indexes.php:249 -#: tbl_select.php:285 +#: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 +#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:777 +#: server_privileges.php:296 tbl_change.php:925 tbl_indexes.php:248 +#: tbl_select.php:284 msgid "Or" msgstr "ياكى" -#: db_qbe.php:506 +#: db_qbe.php:503 msgid "Modify" msgstr "ئۆزگەرتىش" -#: db_qbe.php:583 +#: db_qbe.php:580 msgid "Add/Delete criteria rows" msgstr "رەت قوشۇش\\ئۆچۈرۈش" -#: db_qbe.php:595 +#: db_qbe.php:592 msgid "Add/Delete columns" msgstr "سۆزلەم قوشۇش\\ئۆچۈرۈش" -#: db_qbe.php:608 db_qbe.php:633 +#: db_qbe.php:605 db_qbe.php:630 msgid "Update Query" msgstr "يېڭلاش" -#: db_qbe.php:616 +#: db_qbe.php:613 msgid "Use Tables" msgstr "جەدۋەللەرنى ئىشلىتىش" -#: db_qbe.php:639 +#: db_qbe.php:636 #, php-format msgid "SQL query on database %s:" msgstr "SQL ئىجرا بولۋاتقان ساندان %s:" -#: db_qbe.php:933 libraries/common.lib.php:1222 +#: db_qbe.php:930 libraries/common.lib.php:1215 msgid "Submit Query" msgstr "تاپشۇرۇش" @@ -505,17 +485,17 @@ msgid "%s match inside table %s" msgid_plural "%s matches inside table %s" msgstr[0] "%s ئۇيغۇنلۇق تىپىلدى، جەدۋىلى %s" -#: db_search.php:249 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2831 -#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:49 -#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:466 +#: db_search.php:249 db_structure.php:75 db_structure.php:76 +#: db_structure.php:88 db_structure.php:90 db_structure.php:101 +#: db_structure.php:103 libraries/common.lib.php:2836 +#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 +#: tbl_structure.php:35 tbl_structure.php:47 tbl_structure.php:464 msgid "Browse" msgstr "كۆزەت" -#: db_search.php:254 libraries/display_tbl.lib.php:1164 -#: libraries/display_tbl.lib.php:2055 libraries/sql_query_form.lib.php:453 -#: pdf_pages.php:285 pdf_pages.php:424 pdf_pages.php:460 pdf_pages.php:488 +#: db_search.php:254 libraries/display_tbl.lib.php:1163 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 msgid "Delete" @@ -551,226 +531,232 @@ msgstr "تۆۋەندىكى جەدۋەل(لەر): " msgid "Inside column:" msgstr "ئىچىدىكى سۆزلەم:" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2830 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:75 +#: db_structure.php:79 db_structure.php:80 db_structure.php:92 +#: db_structure.php:93 db_structure.php:105 db_structure.php:106 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 +#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "قىستۇرۇش" -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2827 libraries/common.lib.php:2834 -#: libraries/db_links.inc.php:62 libraries/export/htmlword.php:22 +#: db_structure.php:81 db_structure.php:94 db_structure.php:107 +#: libraries/common.lib.php:2832 libraries/common.lib.php:2839 +#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 -#: libraries/tbl_links.inc.php:55 pmd_general.php:133 -#: server_privileges.php:593 server_replication.php:314 tbl_tracking.php:268 +#: libraries/tbl_links.inc.php:54 pmd_general.php:133 +#: server_privileges.php:592 server_replication.php:313 tbl_tracking.php:263 msgid "Structure" msgstr "تۈزۈلىشى" -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:544 db_structure.php:545 db_tracking.php:90 -#: libraries/Index.class.php:482 libraries/common.lib.php:1659 -#: libraries/db_links.inc.php:99 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:126 -#: server_databases.php:351 tbl_structure.php:26 tbl_structure.php:150 -#: tbl_structure.php:151 tbl_structure.php:470 +#: db_structure.php:82 db_structure.php:83 db_structure.php:95 +#: db_structure.php:96 db_structure.php:108 db_structure.php:109 +#: db_structure.php:530 db_structure.php:531 db_tracking.php:86 +#: libraries/Index.class.php:482 libraries/common.lib.php:1663 +#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 +#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 +#: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" msgstr "ئۆچۈرۈش" -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:542 db_structure.php:543 libraries/common.lib.php:1658 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:104 +#: db_structure.php:84 db_structure.php:85 db_structure.php:97 +#: db_structure.php:98 db_structure.php:110 db_structure.php:111 +#: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 +#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 msgid "Empty" msgstr "تازىلاش" -#: db_structure.php:315 libraries/tbl_links.inc.php:99 +#: db_structure.php:301 libraries/tbl_links.inc.php:98 #, php-format msgid "Table %s has been emptied" msgstr " %s جەدۋەل تازىلاندى" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "View %s has been dropped" msgstr "%s كۆرۈنمە ئۆچۈرۈلدى" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "Table %s has been dropped" msgstr "%s جەدىۋەل ئۆچۈرۈلدى" -#: db_structure.php:332 +#: db_structure.php:318 msgid "Tracking is active." msgstr "ئاكتىپ ئىزلاش" -#: db_structure.php:334 +#: db_structure.php:320 msgid "Tracking is not active." msgstr "ئىزلاش ئاكتىپ ئەمەس" -#: db_structure.php:419 libraries/display_tbl.lib.php:1943 +#: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "بۇ كۆرسەتمە كامىدا ئىگە بولغان سەپ، %sھۆججەت%s." -#: db_structure.php:433 db_structure.php:447 libraries/header.inc.php:125 -#: libraries/tbl_info.inc.php:65 tbl_structure.php:184 test/theme.php:73 +#: db_structure.php:419 db_structure.php:433 libraries/header.inc.php:125 +#: libraries/tbl_info.inc.php:60 tbl_structure.php:183 test/theme.php:73 msgid "View" msgstr "قاراش" -#: db_structure.php:484 libraries/db_structure.lib.php:40 -#: libraries/server_links.inc.php:69 server_replication.php:32 -#: server_replication.php:163 server_status.php:368 +#: db_structure.php:470 libraries/db_structure.lib.php:40 +#: libraries/server_links.inc.php:69 server_replication.php:31 +#: server_replication.php:162 server_status.php:368 msgid "Replication" msgstr "كۆچۈرۈش" -#: db_structure.php:488 +#: db_structure.php:474 msgid "Sum" msgstr "جەمئىي" -#: db_structure.php:495 libraries/StorageEngine.class.php:349 +#: db_structure.php:481 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s بولسا MySQL مۇلازىمىتېرنىڭ ساقلاش ئەندىزە موتۇرى" -#: db_structure.php:523 db_structure.php:540 db_structure.php:541 -#: libraries/display_tbl.lib.php:2080 libraries/display_tbl.lib.php:2085 -#: libraries/mult_submits.inc.php:15 server_databases.php:345 -#: server_databases.php:350 server_privileges.php:1588 tbl_structure.php:454 -#: tbl_structure.php:463 +#: db_structure.php:509 db_structure.php:526 db_structure.php:527 +#: libraries/display_tbl.lib.php:2039 libraries/display_tbl.lib.php:2044 +#: libraries/mult_submits.inc.php:15 server_databases.php:343 +#: server_databases.php:348 server_privileges.php:1592 tbl_structure.php:452 +#: tbl_structure.php:461 msgid "With selected:" msgstr "تاللانغىنى:" -#: db_structure.php:526 libraries/display_tbl.lib.php:2075 -#: server_databases.php:347 server_privileges.php:569 -#: server_privileges.php:1591 tbl_structure.php:457 +#: db_structure.php:512 libraries/display_tbl.lib.php:2034 +#: server_databases.php:345 server_privileges.php:568 +#: server_privileges.php:1595 tbl_structure.php:455 msgid "Check All" msgstr "ھەممىنى تاللاش" -#: db_structure.php:530 libraries/display_tbl.lib.php:2076 -#: libraries/replication_gui.lib.php:35 server_databases.php:349 -#: server_privileges.php:572 server_privileges.php:1595 tbl_structure.php:461 +#: db_structure.php:516 libraries/display_tbl.lib.php:2035 +#: libraries/replication_gui.lib.php:35 server_databases.php:347 +#: server_privileges.php:571 server_privileges.php:1599 tbl_structure.php:459 msgid "Uncheck All" msgstr "تاللاشنى بىكار قىلىش" -#: db_structure.php:535 +#: db_structure.php:521 msgid "Check tables having overhead" msgstr "مەزمۇن بارلارنى تاللاش" -#: db_structure.php:546 db_structure.php:547 db_structure.php:598 -#: libraries/display_tbl.lib.php:2179 libraries/mult_submits.inc.php:27 -#: tbl_structure.php:491 tbl_structure.php:493 +#: db_structure.php:532 db_structure.php:533 db_structure.php:584 +#: libraries/display_tbl.lib.php:2138 libraries/mult_submits.inc.php:27 +#: tbl_structure.php:489 tbl_structure.php:491 msgid "Print view" msgstr "بېسىپ كۆرسىتىش" -#: db_structure.php:548 db_structure.php:549 libraries/mult_submits.inc.php:41 -#: tbl_operations.php:580 +#: db_structure.php:534 db_structure.php:535 libraries/mult_submits.inc.php:41 +#: tbl_operations.php:578 msgid "Check table" msgstr "جەدۋەل تەكشۈرۈش" -#: db_structure.php:550 db_structure.php:551 libraries/mult_submits.inc.php:46 -#: tbl_operations.php:620 tbl_structure.php:708 tbl_structure.php:710 +#: db_structure.php:536 db_structure.php:537 libraries/mult_submits.inc.php:46 +#: tbl_operations.php:618 tbl_structure.php:706 tbl_structure.php:708 msgid "Optimize table" msgstr "جەدۋەلنى ئەلالاش" -#: db_structure.php:552 db_structure.php:553 libraries/mult_submits.inc.php:51 -#: tbl_operations.php:610 +#: db_structure.php:538 db_structure.php:539 libraries/mult_submits.inc.php:51 +#: tbl_operations.php:608 msgid "Repair table" msgstr "جەدۋەلنى ئوڭشاش" -#: db_structure.php:554 db_structure.php:555 libraries/mult_submits.inc.php:56 -#: tbl_operations.php:600 +#: db_structure.php:540 db_structure.php:541 libraries/mult_submits.inc.php:56 +#: tbl_operations.php:598 msgid "Analyze table" msgstr "جەدۋەل تەھلىلى" -#: db_structure.php:556 db_structure.php:557 libraries/db_links.inc.php:70 -#: libraries/display_export.lib.php:82 libraries/display_tbl.lib.php:2093 -#: libraries/display_tbl.lib.php:2224 libraries/mult_submits.inc.php:61 -#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:81 -#: pmd_pdf.php:83 pmd_pdf.php:108 server_privileges.php:1372 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 +#: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 +#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 +#: pmd_pdf.php:81 pmd_pdf.php:106 server_privileges.php:1376 #: setup/frames/menu.inc.php:22 tbl_row_action.php:58 msgid "Export" msgstr "چىقىرىش" -#: db_structure.php:605 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:591 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "مەلۇمات لۇغىتى" -#: db_tracking.php:65 +#: db_tracking.php:61 msgid "Tracked tables" msgstr "ئىزلانغان جەدۋەل" -#: db_tracking.php:70 libraries/export/htmlword.php:85 +#: db_tracking.php:66 libraries/export/htmlword.php:85 #: libraries/export/latex.php:152 libraries/export/odt.php:112 #: libraries/export/sql.php:339 libraries/export/texytext.php:84 #: libraries/export/xml.php:254 libraries/header.inc.php:105 -#: libraries/header_printview.inc.php:57 server_databases.php:168 -#: server_privileges.php:1652 server_privileges.php:1713 -#: server_privileges.php:1971 server_processlist.php:55 -#: server_synchronize.php:1178 server_synchronize.php:1182 -#: tbl_tracking.php:590 test/theme.php:64 +#: libraries/header_printview.inc.php:57 server_databases.php:166 +#: server_privileges.php:1656 server_privileges.php:1717 +#: server_privileges.php:1975 server_processlist.php:55 +#: server_synchronize.php:1177 server_synchronize.php:1181 +#: tbl_tracking.php:585 test/theme.php:64 msgid "Database" msgstr "ساندان" -#: db_tracking.php:72 +#: db_tracking.php:68 msgid "Last version" msgstr "ېيڭى نەشىر" -#: db_tracking.php:73 tbl_tracking.php:593 +#: db_tracking.php:69 tbl_tracking.php:588 msgid "Created" msgstr "قۇرۇش" -#: db_tracking.php:74 tbl_tracking.php:594 +#: db_tracking.php:70 tbl_tracking.php:589 msgid "Updated" msgstr "يېڭلاش" -#: db_tracking.php:76 libraries/Index.class.php:439 -#: libraries/db_structure.lib.php:44 server_databases.php:202 -#: server_privileges.php:1534 server_privileges.php:1717 -#: server_privileges.php:2065 tbl_structure.php:186 +#: db_tracking.php:71 libraries/common.lib.php:1361 +#: libraries/server_links.inc.php:48 server_processlist.php:58 +#: tbl_tracking.php:590 test/theme.php:100 +msgid "Status" +msgstr "ھالەت" + +#: db_tracking.php:72 libraries/Index.class.php:439 +#: libraries/db_structure.lib.php:44 server_databases.php:200 +#: server_privileges.php:1538 server_privileges.php:1721 +#: server_privileges.php:2069 tbl_structure.php:185 msgid "Action" msgstr "ئامال" -#: db_tracking.php:87 db_tracking.php:119 +#: db_tracking.php:83 db_tracking.php:115 msgid "Delete tracking data for this table" msgstr "سانلىق مەلۇماتنى ئىزقوغلاپ ئۈچۈرۈش" -#: db_tracking.php:105 tbl_tracking.php:547 tbl_tracking.php:605 -#: tbl_tracking.php:612 +#: db_tracking.php:101 tbl_tracking.php:542 tbl_tracking.php:600 +#: tbl_tracking.php:607 msgid "active" msgstr "پائال" -#: db_tracking.php:107 tbl_tracking.php:549 tbl_tracking.php:607 -#: tbl_tracking.php:609 +#: db_tracking.php:103 tbl_tracking.php:544 tbl_tracking.php:602 +#: tbl_tracking.php:604 msgid "not active" msgstr "پائالسىز" -#: db_tracking.php:120 +#: db_tracking.php:116 msgid "Versions" msgstr "نەشىر" -#: db_tracking.php:121 tbl_tracking.php:378 tbl_tracking.php:623 +#: db_tracking.php:117 tbl_tracking.php:373 tbl_tracking.php:618 msgid "Tracking report" msgstr "ئىزلاش خاتىرىسى" -#: db_tracking.php:122 tbl_tracking.php:250 tbl_tracking.php:623 +#: db_tracking.php:118 tbl_tracking.php:245 tbl_tracking.php:618 msgid "Structure snapshot" msgstr "تۈزۈلمە رەسىمى" -#: db_tracking.php:151 +#: db_tracking.php:147 msgid "Untracked tables" msgstr "ئىزلانمىغان جەدۋەللەر" -#: db_tracking.php:171 db_tracking.php:173 tbl_structure.php:527 -#: tbl_structure.php:529 +#: db_tracking.php:167 db_tracking.php:169 tbl_structure.php:525 +#: tbl_structure.php:527 msgid "Track table" msgstr "جەدۋەل ئىزلاش" -#: db_tracking.php:199 +#: db_tracking.php:195 msgid "Database Log" msgstr "ساندان خاتىرىسى" @@ -778,12 +764,12 @@ msgstr "ساندان خاتىرىسى" msgid "Selected export type has to be saved in file!" msgstr "چىقارماقچى بولغان ھۆججەت تۈرىنى تاللاڭ!" -#: export.php:153 export.php:178 export.php:620 +#: export.php:152 export.php:177 export.php:615 #, php-format msgid "Insufficient space to save the file %s." msgstr "ھۆججەتنى ساقلاشقا يىتەرلىك بوشلۇق يوق %s。" -#: export.php:287 +#: export.php:286 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -791,17 +777,17 @@ msgstr "" "%s بۇ ھۆججەت مۇلازىمىتېردا باركەن، ھۆججەت ئىسمىنى ئۆزگەرتىڭ ياكى قاپلاپ " "كۆچۈرۈش تۈرىنى تالالڭ." -#: export.php:291 export.php:295 +#: export.php:290 export.php:294 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "بۇ %s ھۆججەتنى مۇلازىمىتېردا ساقلاش ھوقۇقىڭىز يېتەرسىز." -#: export.php:622 +#: export.php:617 #, php-format msgid "Dump has been saved to file %s." msgstr "%s ھۆججىتىدە ساقلاندى." -#: import.php:59 +#: import.php:58 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -810,14 +796,14 @@ msgstr "" "سىز يوللىماقچى بولغان ھۆججەت بەك چوڭكەن، %sياردەم%s ھۆججىتىدىن ھەل قىلىش " "چارىسىنى كۆرۈڭ." -#: import.php:278 import.php:331 libraries/File.class.php:840 -#: libraries/File.class.php:950 +#: import.php:277 import.php:330 libraries/File.class.php:566 +#: libraries/File.class.php:676 msgid "File could not be read" msgstr "ھۆججەتنى ئوقۇيالمىدى" -#: import.php:286 import.php:295 import.php:314 import.php:323 -#: libraries/File.class.php:1020 libraries/File.class.php:1028 -#: libraries/File.class.php:1044 libraries/File.class.php:1052 +#: import.php:285 import.php:294 import.php:313 import.php:322 +#: libraries/File.class.php:746 libraries/File.class.php:754 +#: libraries/File.class.php:770 libraries/File.class.php:778 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -826,7 +812,7 @@ msgstr "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." -#: import.php:336 +#: import.php:335 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -836,29 +822,29 @@ msgstr "" "file size exceeded the maximum size permitted by your PHP configuration. See " "[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." -#: import.php:371 libraries/display_import.lib.php:23 +#: import.php:370 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "قىستۇرمىلار كىرگۈزىشكە ئامالسىز، قاچىلانمىنى تەكشۈرۈپ بىقىڭ!" -#: import.php:396 +#: import.php:395 msgid "The bookmark has been deleted." msgstr "خەتكۈچ ئۆچۈرۈلدى" -#: import.php:400 +#: import.php:399 msgid "Showing bookmark" msgstr "خەتكۈچنى كۆرسىتىش" -#: import.php:402 sql.php:625 +#: import.php:401 sql.php:618 #, php-format msgid "Bookmark %s created" msgstr "قۇرۇلغان خەتكۈچ %s" -#: import.php:408 import.php:414 +#: import.php:407 import.php:413 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "%d كىرگۈزىش غەلبىىك بولدى" -#: import.php:423 +#: import.php:422 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -866,7 +852,7 @@ msgstr "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." -#: import.php:425 +#: import.php:424 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -874,19 +860,19 @@ msgstr "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." -#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:240 +#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:239 #: user_password.php:110 msgid "Back" msgstr "قايتىش" -#: index.php:188 +#: index.php:183 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin دەستەك توركۆرگۈچلەردە ياخشى ئىشلەيدۇ." -#: js/messages.php:25 server_synchronize.php:344 server_synchronize.php:356 -#: server_synchronize.php:372 server_synchronize.php:379 -#: server_synchronize.php:738 server_synchronize.php:766 -#: server_synchronize.php:794 server_synchronize.php:806 +#: js/messages.php:25 server_synchronize.php:343 server_synchronize.php:355 +#: server_synchronize.php:371 server_synchronize.php:378 +#: server_synchronize.php:737 server_synchronize.php:765 +#: server_synchronize.php:793 server_synchronize.php:805 msgid "Click to select" msgstr "بىر چىكىپ تاللاڭ" @@ -894,15 +880,15 @@ msgstr "بىر چىكىپ تاللاڭ" msgid "Click to unselect" msgstr "بىر چىكىپ بىكار قىلىڭ" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:88 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:87 msgid "\"DROP DATABASE\" statements are disabled." msgstr "ساندان ئۆچۈرۈش بۇيرۇقى (\"DROP DATABASE\") چەكلەنگەن." -#: js/messages.php:30 libraries/mult_submits.inc.php:257 sql.php:187 +#: js/messages.php:30 libraries/mult_submits.inc.php:256 sql.php:186 msgid "Do you really want to " msgstr "راستىنلا ئجرا قىلىمسىز" -#: js/messages.php:31 libraries/mult_submits.inc.php:257 sql.php:171 +#: js/messages.php:31 libraries/mult_submits.inc.php:256 sql.php:170 msgid "You are about to DESTROY a complete database!" msgstr "ساندان تولۇق ئۆچۈرۈلدى!" @@ -931,11 +917,11 @@ msgstr "مۇلازىمىتېر ئىسمى بوشكەن!" msgid "The user name is empty!" msgstr "قوللانغۇچى ئىسمى بوشكەن!" -#: js/messages.php:44 server_privileges.php:1228 user_password.php:65 +#: js/messages.php:44 server_privileges.php:1229 user_password.php:65 msgid "The password is empty!" msgstr "پارول بوشكەن!" -#: js/messages.php:45 server_privileges.php:1226 user_password.php:68 +#: js/messages.php:45 server_privileges.php:1227 user_password.php:68 msgid "The passwords aren't the same!" msgstr "كىرگۈزگەن پارولار ئوخشاش ئەمەس!" @@ -943,27 +929,27 @@ msgstr "كىرگۈزگەن پارولار ئوخشاش ئەمەس!" msgid "Cancel" msgstr "بىكار قىلىش" -#: js/messages.php:52 pmd_save_pos.php:53 +#: js/messages.php:52 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "ئۆزگەرتىشلەر ساقلاندى" -#: js/messages.php:53 pmd_relation_upd.php:48 +#: js/messages.php:53 pmd_relation_upd.php:47 msgid "Relation deleted" msgstr ".باغلانمىلار ئۆچۈرۈلدى" -#: js/messages.php:54 pmd_relation_new.php:63 +#: js/messages.php:54 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "سىرتقى مۇناسىۋەتلىك ئۇلانما قۇشۇلدى" -#: js/messages.php:55 pmd_relation_new.php:85 +#: js/messages.php:55 pmd_relation_new.php:84 msgid "Internal relation added" msgstr ".ئىچكى ئۇلىنىش مۇاسىۋىتى قۇشۇلدى" -#: js/messages.php:56 pmd_relation_new.php:62 pmd_relation_new.php:87 +#: js/messages.php:56 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "!خاتالىق:مۇناسىۋەت قۇشۇلمىغان" -#: js/messages.php:57 pmd_relation_new.php:30 +#: js/messages.php:57 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "!خاتالىق:بۇناسىۋەت ئاللىقاچان مەۋجۈت" @@ -971,13 +957,13 @@ msgstr "!خاتالىق:بۇناسىۋەت ئاللىقاچان مەۋجۈت" msgid "Error saving coordinates for Designer." msgstr "ساقلاشتا خاتالىق كۆرۈلدى." -#: js/messages.php:59 libraries/relation.lib.php:94 -#: libraries/relation.lib.php:106 +#: js/messages.php:59 libraries/relation.lib.php:89 +#: libraries/relation.lib.php:101 msgid "General relation features" msgstr "ئاساسىي ئالاقە ۋاريانتلىرى" -#: js/messages.php:59 libraries/relation.lib.php:88 -#: libraries/relation.lib.php:95 +#: js/messages.php:59 libraries/relation.lib.php:83 +#: libraries/relation.lib.php:90 msgid "Disabled" msgstr "تاقالدى" @@ -994,7 +980,7 @@ msgid "Please select the primary key or a unique key" msgstr "ئاساسىي قىممەت ياكى بىردىنبىر قىمەتنى تاللاڭ" # column نى سۆزلەم دەپ ئالساق مۇۋاپىق بولغىدەك -#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:547 +#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:545 msgid "Choose column to display" msgstr "سۆزلەمنى كۆرسەتمەسلىك" @@ -1017,10 +1003,10 @@ msgid "Prev" msgstr "ئالدىنقى ئاي" #. l10n: Display text for next month link in calendar -#: js/messages.php:81 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:337 -#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:422 -#: tbl_structure.php:800 +#: js/messages.php:81 libraries/common.lib.php:2358 +#: libraries/common.lib.php:2361 libraries/display_tbl.lib.php:336 +#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 +#: tbl_structure.php:798 msgid "Next" msgstr "كىيىنكى ئاي" @@ -1078,63 +1064,63 @@ msgid "December" msgstr "12-ئاي" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1562 +#: js/messages.php:101 libraries/common.lib.php:1566 msgid "Jan" msgstr "1-ئاي" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1564 +#: js/messages.php:103 libraries/common.lib.php:1568 msgid "Feb" msgstr "2-ئاي" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1566 +#: js/messages.php:105 libraries/common.lib.php:1570 msgid "Mar" msgstr "3-ئاي" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1568 +#: js/messages.php:107 libraries/common.lib.php:1572 msgid "Apr" msgstr "4-ئاي" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1570 +#: js/messages.php:109 libraries/common.lib.php:1574 msgctxt "Short month name" msgid "May" msgstr "5-ئاي" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1572 +#: js/messages.php:111 libraries/common.lib.php:1576 msgid "Jun" msgstr "6-ئاي" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1574 +#: js/messages.php:113 libraries/common.lib.php:1578 msgid "Jul" msgstr "چىللە" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1576 +#: js/messages.php:115 libraries/common.lib.php:1580 msgid "Aug" msgstr "تومۇز" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1578 +#: js/messages.php:117 libraries/common.lib.php:1582 msgid "Sep" msgstr "مىزان" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1580 +#: js/messages.php:119 libraries/common.lib.php:1584 msgid "Oct" msgstr "ئوغۇز" #. l10n: Short month name -#: js/messages.php:121 libraries/common.lib.php:1582 +#: js/messages.php:121 libraries/common.lib.php:1586 msgid "Nov" msgstr "ئوغلاق" #. l10n: Short month name -#: js/messages.php:123 libraries/common.lib.php:1584 +#: js/messages.php:123 libraries/common.lib.php:1588 msgid "Dec" msgstr "كۆنەك" @@ -1167,37 +1153,37 @@ msgid "Saturday" msgstr "شەنبە" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1587 +#: js/messages.php:136 libraries/common.lib.php:1591 msgid "Sun" msgstr "يەكشەنبە" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1589 +#: js/messages.php:138 libraries/common.lib.php:1593 msgid "Mon" msgstr "دۈشەنبە" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1591 +#: js/messages.php:140 libraries/common.lib.php:1595 msgid "Tue" msgstr "سەيشەنبە" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1593 +#: js/messages.php:142 libraries/common.lib.php:1597 msgid "Wed" msgstr "چارشەنبە" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1595 +#: js/messages.php:144 libraries/common.lib.php:1599 msgid "Thu" msgstr "پەيشەنبە" #. l10n: Short week day name -#: js/messages.php:146 libraries/common.lib.php:1597 +#: js/messages.php:146 libraries/common.lib.php:1601 msgid "Fri" msgstr "جۈمە" #. l10n: Short week day name -#: js/messages.php:148 libraries/common.lib.php:1599 +#: js/messages.php:148 libraries/common.lib.php:1603 msgid "Sat" msgstr "شەنبە" @@ -1257,78 +1243,77 @@ msgstr "سېكنۇت" msgid "Font size" msgstr "خەتنىڭ چوڭ-كىچىكلىكى" -#: libraries/File.class.php:336 libraries/File.class.php:424 -#: libraries/File.class.php:561 libraries/File.class.php:700 -msgid "Unknown error in file upload." -msgstr "ھۆججەت يۈكلەشتە ئېنىقسىز خاتالىق كۆرۈلدى." - -#: libraries/File.class.php:406 +#: libraries/File.class.php:315 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "سىز يۈكلىگەن ھۆججەت php.ini نىڭ ئىچىدىكى upload_max_filesize چەكلىمىسىدىن " "ئېشىپ كەتتى." -#: libraries/File.class.php:409 +#: libraries/File.class.php:318 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:412 +#: libraries/File.class.php:321 msgid "The uploaded file was only partially uploaded." msgstr "سىز يۈكلىگەن ھۆججەتنىڭ پەقەت بىر قىسىمىلا يۈكلەندى." -#: libraries/File.class.php:415 +#: libraries/File.class.php:324 msgid "Missing a temporary folder." msgstr "ۋاقىتلىق ھۆججەت ساقلاش مۇندەرىجىسى تىپىلمىدى." -#: libraries/File.class.php:418 +#: libraries/File.class.php:327 msgid "Failed to write file to disk." msgstr "ھۆججەتنى دېسكىغا يىزىشتا خاتالىق كۆرۈلدى." -#: libraries/File.class.php:421 +#: libraries/File.class.php:330 msgid "File upload stopped by extension." msgstr "كېڭەيتىلمە ئىسمى بۇنداق ھۆججەتلەرنى يوللاشقا بولمايدۇ." -#: libraries/File.class.php:898 +#: libraries/File.class.php:333 +msgid "Unknown error in file upload." +msgstr "ھۆججەت يۈكلەشتە ئېنىقسىز خاتالىق كۆرۈلدى." + +#: libraries/File.class.php:624 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]" +"Error moving the uploaded file, see [a@./Documentation." +"html#faq1_11@Documentation]FAQ 1.11[/a]" -#: libraries/Index.class.php:427 tbl_relation.php:528 +#: libraries/Index.class.php:427 tbl_relation.php:526 msgid "No index defined!" msgstr "index قىممىتى بەلگىلەنمىگەن!" -#: libraries/Index.class.php:432 server_databases.php:131 tbl_tracking.php:315 +#: libraries/Index.class.php:432 server_databases.php:129 tbl_tracking.php:310 msgid "Indexes" msgstr "تېزىسلار" #: libraries/Index.class.php:443 libraries/mult_submits.inc.php:102 -#: libraries/tbl_properties.inc.php:518 tbl_structure.php:32 -#: tbl_structure.php:154 tbl_structure.php:158 tbl_structure.php:473 -#: tbl_tracking.php:321 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:31 +#: tbl_structure.php:153 tbl_structure.php:157 tbl_structure.php:471 +#: tbl_tracking.php:316 msgid "Unique" msgstr "بىردىنبىر" -#: libraries/Index.class.php:444 tbl_tracking.php:322 +#: libraries/Index.class.php:444 tbl_tracking.php:317 msgid "Packed" msgstr "ئىخچام" -#: libraries/Index.class.php:446 tbl_tracking.php:324 +#: libraries/Index.class.php:446 tbl_tracking.php:319 msgid "Cardinality" msgstr "تۈپ سان" -#: libraries/Index.class.php:449 tbl_tracking.php:278 tbl_tracking.php:327 +#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322 msgid "Comment" msgstr "ئىزاھات" #: libraries/Index.class.php:465 libraries/common.lib.php:609 -#: libraries/common.lib.php:1198 libraries/display_tbl.lib.php:1116 +#: libraries/common.lib.php:1191 libraries/display_tbl.lib.php:1115 #: libraries/import.lib.php:1119 libraries/import.lib.php:1143 -#: pdf_pages.php:284 setup/frames/index.inc.php:124 +#: pdf_pages.php:283 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:349 tbl_row_action.php:68 msgid "Edit" msgstr "تەھىرلەش" @@ -1352,15 +1337,15 @@ msgstr "" "removed." #: libraries/List_Database.class.php:430 libraries/server_links.inc.php:40 -#: server_databases.php:87 server_privileges.php:1652 +#: server_databases.php:85 server_privileges.php:1656 #: setup/lib/messages.inc.php:107 test/theme.php:92 msgid "Databases" msgstr "ساندان" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:259 libraries/import.lib.php:134 pdf_schema.php:31 -#: pdf_schema.php:231 tbl_change.php:1023 tbl_operations.php:212 -#: tbl_relation.php:289 view_operations.php:61 +#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 +#: tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "خاتالىق" @@ -1382,40 +1367,40 @@ msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." msgstr[0] "%1$d قۇر قوشۇلدى." -#: libraries/StorageEngine.class.php:196 +#: libraries/StorageEngine.class.php:194 msgid "" "There is no detailed status information available for this storage engine." msgstr "بۇ ساقلىغۇچقا مۇناسىۋەتلىك باشقا ئۇچۇرلار مەۋجۇت ئەمەس." -#: libraries/StorageEngine.class.php:352 +#: libraries/StorageEngine.class.php:354 #, php-format msgid "%s is available on this MySQL server." msgstr "%s نى بۇ MySQL مۇلازىمىتېرىدا ئىشلىتىشكە بولىدۇ." -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:357 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s نى بۇ MySQL مۇلازىمىتېرىدا ئىشلىتىشكە بولمايدۇ." -#: libraries/StorageEngine.class.php:359 +#: libraries/StorageEngine.class.php:361 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "بۇ MySQL مۇلازىمىتېرى %s نى قوللىمايدۇ." -#: libraries/Table.class.php:1018 +#: libraries/Table.class.php:1017 msgid "Invalid database" msgstr "ئۈنۈمسىز ساندان" -#: libraries/Table.class.php:1032 tbl_get_field.php:25 +#: libraries/Table.class.php:1031 tbl_get_field.php:25 msgid "Invalid table name" msgstr "ئۈنۈمسىز جەدۋەل ئىسمى" -#: libraries/Table.class.php:1047 +#: libraries/Table.class.php:1046 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "%1$s بۇ جەدۋەل ئىسمىنى %2$s غا ئۆزگەرتىشتە خاتالىق كۆرۈلدى." -#: libraries/Table.class.php:1131 +#: libraries/Table.class.php:1129 #, php-format msgid "Table %s has been renamed to %s" msgstr "%1$s بۇ جەدۋەل ئىسمىنى %2$s غا ئۆزگەرتىش غەلبىلىك بولدى." @@ -1433,22 +1418,22 @@ msgstr "ئالدىن كۆرگىنى بولمايدۇ." msgid "take it" msgstr "ئېلىش" -#: libraries/Theme_Manager.class.php:114 +#: libraries/Theme_Manager.class.php:109 #, php-format msgid "Default theme %s not found!" msgstr "ئۇسلۇپ ئەندىزسى %s تېپىلمىدى!" -#: libraries/Theme_Manager.class.php:152 +#: libraries/Theme_Manager.class.php:147 #, php-format msgid "Theme %s not found!" msgstr "تېما %s تېپىلمىدى!" -#: libraries/Theme_Manager.class.php:220 +#: libraries/Theme_Manager.class.php:215 #, php-format msgid "Theme path not found for theme %s!" msgstr "ماۋزۇ %s تېپىلمىدى." -#: libraries/Theme_Manager.class.php:296 test/theme.php:160 themes.php:20 +#: libraries/Theme_Manager.class.php:291 test/theme.php:160 themes.php:20 #: themes.php:40 msgid "Theme / Style" msgstr "تېما \\ ئۇسلۇب" @@ -1561,19 +1546,19 @@ msgstr "" msgid "Authenticating..." msgstr "" -#: libraries/blobstreaming.lib.php:689 +#: libraries/blobstreaming.lib.php:340 msgid "View image" msgstr "" -#: libraries/blobstreaming.lib.php:693 +#: libraries/blobstreaming.lib.php:344 msgid "Play audio" msgstr "ئاۋاز قۇيۇش" -#: libraries/blobstreaming.lib.php:698 +#: libraries/blobstreaming.lib.php:349 msgid "View video" msgstr "سىن قۇيۇش" -#: libraries/blobstreaming.lib.php:702 +#: libraries/blobstreaming.lib.php:353 msgid "Download file" msgstr "ھۆججەت چۈشۈرۈش" @@ -1618,7 +1603,7 @@ msgstr "" msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:909 +#: libraries/common.inc.php:908 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" @@ -1643,7 +1628,8 @@ msgstr "" #: libraries/common.lib.php:425 libraries/common.lib.php:427 #: libraries/common.lib.php:429 libraries/common.lib.php:445 #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 -#: libraries/display_export.lib.php:163 libraries/relation.lib.php:84 +#: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 +#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 #: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" @@ -1658,146 +1644,146 @@ msgstr "" msgid "MySQL said: " msgstr "" -#: libraries/common.lib.php:1136 +#: libraries/common.lib.php:1129 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1174 setup/lib/messages.inc.php:350 +#: libraries/common.lib.php:1167 setup/lib/messages.inc.php:350 msgid "Explain SQL" msgstr "" -#: libraries/common.lib.php:1177 +#: libraries/common.lib.php:1170 msgid "Skip Explain SQL" msgstr "" -#: libraries/common.lib.php:1211 +#: libraries/common.lib.php:1204 msgid "Without PHP Code" msgstr "" -#: libraries/common.lib.php:1214 setup/lib/messages.inc.php:352 +#: libraries/common.lib.php:1207 setup/lib/messages.inc.php:352 msgid "Create PHP Code" msgstr "" -#: libraries/common.lib.php:1232 server_status.php:451 +#: libraries/common.lib.php:1225 server_status.php:451 #: setup/lib/messages.inc.php:351 msgid "Refresh" msgstr "" -#: libraries/common.lib.php:1241 +#: libraries/common.lib.php:1234 msgid "Skip Validate SQL" msgstr "" -#: libraries/common.lib.php:1244 setup/lib/messages.inc.php:353 +#: libraries/common.lib.php:1237 setup/lib/messages.inc.php:353 msgid "Validate SQL" msgstr "" -#: libraries/common.lib.php:1283 +#: libraries/common.lib.php:1287 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1285 +#: libraries/common.lib.php:1289 msgid "Inline" msgstr "" -#: libraries/common.lib.php:1339 libraries/common.lib.php:1354 +#: libraries/common.lib.php:1343 libraries/common.lib.php:1358 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1358 libraries/tbl_triggers.lib.php:27 +#: libraries/common.lib.php:1362 libraries/tbl_triggers.lib.php:27 #: server_processlist.php:57 msgid "Time" msgstr "" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "B" msgstr "" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "KiB" msgstr "" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "MiB" msgstr "" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "GiB" msgstr "" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "TiB" msgstr "" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "PiB" msgstr "" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "EiB" msgstr "" #. l10n: Thousands separator -#: libraries/common.lib.php:1424 +#: libraries/common.lib.php:1428 msgid "," msgstr "" #. l10n: Decimal separator -#: libraries/common.lib.php:1426 +#: libraries/common.lib.php:1430 msgid "." msgstr "" #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1603 +#: libraries/common.lib.php:1607 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "" -#: libraries/common.lib.php:1909 +#: libraries/common.lib.php:1913 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "" -#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 -#: libraries/display_tbl.lib.php:289 server_status.php:718 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 +#: libraries/display_tbl.lib.php:288 server_status.php:718 msgid "Begin" msgstr "" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 -#: libraries/display_tbl.lib.php:290 server_binlog.php:154 +#: libraries/common.lib.php:2328 libraries/common.lib.php:2331 +#: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 -#: libraries/display_tbl.lib.php:352 +#: libraries/common.lib.php:2359 libraries/common.lib.php:2362 +#: libraries/display_tbl.lib.php:351 msgid "End" msgstr "" -#: libraries/common.lib.php:2429 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "" -#: libraries/common.lib.php:2448 +#: libraries/common.lib.php:2453 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2828 libraries/common.lib.php:2835 -#: libraries/db_links.inc.php:67 libraries/export/sql.php:24 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 +#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 -#: libraries/tbl_links.inc.php:59 querywindow.php:89 test/theme.php:96 +#: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "" -#: libraries/common.lib.php:2837 libraries/db_links.inc.php:103 -#: libraries/tbl_links.inc.php:94 libraries/tbl_links.inc.php:116 -#: view_operations.php:88 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: view_operations.php:87 msgid "Operations" msgstr "" -#: libraries/core.lib.php:282 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1813,38 +1799,38 @@ msgstr "" msgid "Name" msgstr "" -#: libraries/db_links.inc.php:44 +#: libraries/db_links.inc.php:43 #, php-format msgid "Database %s has been dropped." msgstr "" -#: libraries/db_links.inc.php:56 libraries/db_links.inc.php:57 -#: libraries/db_links.inc.php:58 +#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 +#: libraries/db_links.inc.php:57 msgid "Database seems to be empty!" msgstr "" -#: libraries/db_links.inc.php:80 libraries/relation.lib.php:142 -#: libraries/tbl_links.inc.php:68 +#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:85 +#: libraries/db_links.inc.php:84 msgid "Query" msgstr "" -#: libraries/db_links.inc.php:90 libraries/relation.lib.php:138 +#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:97 libraries/server_links.inc.php:87 -#: libraries/tbl_links.inc.php:90 pmd_pdf.php:83 pmd_pdf.php:109 +#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "" -#: libraries/db_links.inc.php:110 libraries/server_links.inc.php:65 -#: server_privileges.php:111 server_privileges.php:1714 -#: server_privileges.php:2063 test/theme.php:116 +#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: server_privileges.php:110 server_privileges.php:1718 +#: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" msgstr "" @@ -1856,14 +1842,14 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1847 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1806 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "" -#: libraries/db_structure.lib.php:60 server_databases.php:141 -#: tbl_printview.php:334 tbl_structure.php:681 +#: libraries/db_structure.lib.php:60 server_databases.php:139 +#: tbl_printview.php:333 tbl_structure.php:679 msgid "Overhead" msgstr "" @@ -1880,7 +1866,7 @@ msgstr "" msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "" -#: libraries/dbi/mysql.dbi.lib.php:358 tbl_structure.php:607 +#: libraries/dbi/mysql.dbi.lib.php:358 tbl_structure.php:605 msgid "Details..." msgstr "" @@ -1890,22 +1876,22 @@ msgid "Change password" msgstr "" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:807 +#: libraries/replication_gui.lib.php:347 server_privileges.php:806 msgid "No Password" msgstr "" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1530 server_synchronize.php:1174 +#: libraries/replication_gui.lib.php:351 server_privileges.php:795 +#: server_privileges.php:799 server_privileges.php:810 +#: server_privileges.php:1534 server_synchronize.php:1173 msgid "Password" msgstr "" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:815 server_privileges.php:818 +#: server_privileges.php:814 server_privileges.php:817 msgid "Re-type" msgstr "" @@ -1926,8 +1912,8 @@ msgstr "" msgid "Create" msgstr "" -#: libraries/display_create_database.lib.php:39 server_privileges.php:113 -#: server_privileges.php:1419 server_replication.php:34 +#: libraries/display_create_database.lib.php:39 server_privileges.php:112 +#: server_privileges.php:1423 server_replication.php:33 msgid "No Privileges" msgstr "" @@ -1944,49 +1930,49 @@ msgstr "" msgid "Number of columns" msgstr "" -#: libraries/display_export.lib.php:41 +#: libraries/display_export.lib.php:35 msgid "Could not load export plugins, please check your installation!" msgstr "" -#: libraries/display_export.lib.php:106 +#: libraries/display_export.lib.php:100 #, php-format msgid "Dump %s row(s) starting at row # %s" msgstr "" -#: libraries/display_export.lib.php:114 +#: libraries/display_export.lib.php:108 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:124 setup/lib/messages.inc.php:79 +#: libraries/display_export.lib.php:118 setup/lib/messages.inc.php:79 msgid "Save as file" msgstr "" -#: libraries/display_export.lib.php:133 +#: libraries/display_export.lib.php:127 #, php-format msgid "Save on server in %s directory" msgstr "" -#: libraries/display_export.lib.php:141 setup/lib/messages.inc.php:87 +#: libraries/display_export.lib.php:135 setup/lib/messages.inc.php:87 msgid "Overwrite existing file(s)" msgstr "" -#: libraries/display_export.lib.php:147 +#: libraries/display_export.lib.php:141 msgid "File name template" msgstr "" -#: libraries/display_export.lib.php:151 +#: libraries/display_export.lib.php:145 msgid "server name" msgstr "" -#: libraries/display_export.lib.php:154 +#: libraries/display_export.lib.php:148 msgid "database name" msgstr "" -#: libraries/display_export.lib.php:157 +#: libraries/display_export.lib.php:151 msgid "table name" msgstr "" -#: libraries/display_export.lib.php:161 +#: libraries/display_export.lib.php:155 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -1994,39 +1980,39 @@ msgid "" "%3$s. Other text will be kept as is." msgstr "" -#: libraries/display_export.lib.php:202 +#: libraries/display_export.lib.php:196 msgid "remember template" msgstr "" -#: libraries/display_export.lib.php:210 libraries/display_import.lib.php:177 +#: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 #: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 msgid "Character set of the file:" msgstr "" -#: libraries/display_export.lib.php:235 setup/lib/messages.inc.php:81 +#: libraries/display_export.lib.php:229 setup/lib/messages.inc.php:81 msgid "Compression" msgstr "" -#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:196 -#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:529 -#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:574 -#: server_privileges.php:1867 server_processlist.php:74 +#: libraries/display_export.lib.php:234 libraries/display_import.lib.php:196 +#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:528 +#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:573 +#: server_privileges.php:1871 server_processlist.php:74 msgid "None" msgstr "" -#: libraries/display_export.lib.php:247 +#: libraries/display_export.lib.php:241 msgid "\"zipped\"" msgstr "" -#: libraries/display_export.lib.php:253 +#: libraries/display_export.lib.php:247 msgid "\"gzipped\"" msgstr "" -#: libraries/display_export.lib.php:259 +#: libraries/display_export.lib.php:253 msgid "\"bzipped\"" msgstr "" -#: libraries/display_export.lib.php:274 libraries/export/sql.php:42 +#: libraries/display_export.lib.php:268 libraries/export/sql.php:42 #: libraries/import/sql.php:31 msgid "SQL compatibility mode" msgstr "" @@ -2061,12 +2047,12 @@ msgid "File uploads are not allowed on this server." msgstr "" #: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 -#: tbl_change.php:1024 +#: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "" #: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 -#: tbl_change.php:1027 +#: tbl_change.php:925 msgid "web server upload directory" msgstr "" @@ -2145,41 +2131,41 @@ msgstr "" msgid "Language" msgstr "" -#: libraries/display_tbl.lib.php:303 +#: libraries/display_tbl.lib.php:302 #, php-format msgid "%d is not valid row number." msgstr "" -#: libraries/display_tbl.lib.php:309 +#: libraries/display_tbl.lib.php:308 msgid "row(s) starting from row #" msgstr "" -#: libraries/display_tbl.lib.php:315 +#: libraries/display_tbl.lib.php:314 msgid "horizontal" msgstr "" -#: libraries/display_tbl.lib.php:316 +#: libraries/display_tbl.lib.php:315 msgid "horizontal (rotated headers)" msgstr "" -#: libraries/display_tbl.lib.php:317 +#: libraries/display_tbl.lib.php:316 msgid "vertical" msgstr "" -#: libraries/display_tbl.lib.php:323 +#: libraries/display_tbl.lib.php:322 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "" -#: libraries/display_tbl.lib.php:345 +#: libraries/display_tbl.lib.php:344 msgid "This operation could take a long time. Proceed anyway?" msgstr "" -#: libraries/display_tbl.lib.php:511 +#: libraries/display_tbl.lib.php:510 msgid "Sort by key" msgstr "" -#: libraries/display_tbl.lib.php:554 libraries/export/codegen.php:38 +#: libraries/display_tbl.lib.php:553 libraries/export/codegen.php:38 #: libraries/export/csv.php:29 libraries/export/excel.php:34 #: libraries/export/htmlword.php:28 libraries/export/latex.php:32 #: libraries/export/mediawiki.php:21 libraries/export/ods.php:26 @@ -2189,97 +2175,97 @@ msgstr "" #: libraries/export/xlsx.php:26 libraries/export/xml.php:23 #: libraries/export/yaml.php:27 libraries/import.lib.php:1114 #: libraries/import.lib.php:1136 libraries/import/csv.php:31 -#: libraries/import/docsql.php:33 libraries/import/ldi.php:46 +#: libraries/import/docsql.php:32 libraries/import/ldi.php:46 #: libraries/import/ods.php:30 libraries/import/sql.php:19 #: libraries/import/xls.php:25 libraries/import/xlsx.php:25 -#: libraries/import/xml.php:25 tbl_select.php:264 tbl_structure.php:752 +#: libraries/import/xml.php:25 tbl_select.php:263 tbl_structure.php:750 msgid "Options" msgstr "" -#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:569 +#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:568 msgid "Partial Texts" msgstr "" -#: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:573 +#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:572 msgid "Full Texts" msgstr "" -#: libraries/display_tbl.lib.php:586 +#: libraries/display_tbl.lib.php:585 msgid "Relational key" msgstr "" -#: libraries/display_tbl.lib.php:587 +#: libraries/display_tbl.lib.php:586 msgid "Relational display column" msgstr "" -#: libraries/display_tbl.lib.php:594 +#: libraries/display_tbl.lib.php:593 msgid "Show binary contents" msgstr "" -#: libraries/display_tbl.lib.php:596 +#: libraries/display_tbl.lib.php:595 msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:598 +#: libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "" -#: libraries/display_tbl.lib.php:606 pmd_general.php:140 tbl_change.php:312 -#: tbl_change.php:318 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:307 +#: tbl_change.php:313 msgid "Hide" msgstr "" -#: libraries/display_tbl.lib.php:606 libraries/relation.lib.php:122 -#: libraries/tbl_properties.inc.php:143 transformation_overview.php:46 +#: libraries/display_tbl.lib.php:605 libraries/relation.lib.php:117 +#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46 msgid "Browser transformation" msgstr "" -#: libraries/display_tbl.lib.php:1125 libraries/display_tbl.lib.php:1129 -#: libraries/display_tbl.lib.php:1131 +#: libraries/display_tbl.lib.php:1124 libraries/display_tbl.lib.php:1128 +#: libraries/display_tbl.lib.php:1130 msgid "Execute bookmarked query" msgstr "" -#: libraries/display_tbl.lib.php:1144 libraries/display_tbl.lib.php:1156 +#: libraries/display_tbl.lib.php:1143 libraries/display_tbl.lib.php:1155 msgid "The row has been deleted" msgstr "" -#: libraries/display_tbl.lib.php:1183 libraries/display_tbl.lib.php:2055 +#: libraries/display_tbl.lib.php:1182 libraries/display_tbl.lib.php:2014 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "" -#: libraries/display_tbl.lib.php:1933 +#: libraries/display_tbl.lib.php:1892 msgid "in query" msgstr "" -#: libraries/display_tbl.lib.php:1951 +#: libraries/display_tbl.lib.php:1910 msgid "Showing rows" msgstr "" -#: libraries/display_tbl.lib.php:1961 +#: libraries/display_tbl.lib.php:1920 msgid "total" msgstr "" -#: libraries/display_tbl.lib.php:1969 sql.php:523 +#: libraries/display_tbl.lib.php:1928 sql.php:522 #, php-format msgid "Query took %01.4f sec" msgstr "" -#: libraries/display_tbl.lib.php:2088 libraries/mult_submits.inc.php:112 -#: querywindow.php:115 querywindow.php:119 querywindow.php:122 -#: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:469 +#: libraries/display_tbl.lib.php:2047 libraries/mult_submits.inc.php:112 +#: querywindow.php:114 querywindow.php:118 querywindow.php:121 +#: tbl_structure.php:23 tbl_structure.php:148 tbl_structure.php:467 msgid "Change" msgstr "" -#: libraries/display_tbl.lib.php:2158 +#: libraries/display_tbl.lib.php:2117 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2186 +#: libraries/display_tbl.lib.php:2145 msgid "Print view (with full texts)" msgstr "" -#: libraries/display_tbl.lib.php:2359 +#: libraries/display_tbl.lib.php:2318 msgid "Link not found" msgstr "" @@ -2331,9 +2317,9 @@ msgstr "" msgid "Buffer Pool Usage" msgstr "" -#: libraries/engines/innodb.lib.php:168 server_databases.php:136 -#: server_databases.php:304 server_status.php:524 server_status.php:585 -#: server_status.php:606 tbl_printview.php:349 tbl_structure.php:695 +#: libraries/engines/innodb.lib.php:168 server_databases.php:134 +#: server_databases.php:302 server_status.php:524 server_status.php:585 +#: server_status.php:606 tbl_printview.php:348 tbl_structure.php:693 msgid "Total" msgstr "" @@ -2455,6 +2441,77 @@ msgid "" "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." msgstr "" +#: libraries/engines/pbms.lib.php:31 +msgid "Garbage Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:32 +msgid "The percentage of garbage in a repository file before it is compacted." +msgstr "" + +#: libraries/engines/pbms.lib.php:36 libraries/replication_gui.lib.php:69 +#: server_synchronize.php:1161 +msgid "Port" +msgstr "" + +#: libraries/engines/pbms.lib.php:37 +msgid "" +"The port for the PBMS stream-based communications. Setting this value to 0 " +"will disable HTTP communication with the daemon." +msgstr "" + +#: libraries/engines/pbms.lib.php:41 +msgid "Repository Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:42 +msgid "" +"The maximum size of a BLOB repository file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:46 +msgid "Temp Blob Timeout" +msgstr "" + +#: libraries/engines/pbms.lib.php:47 +msgid "" +"The timeout, in seconds, for temporary BLOBs. Uploaded BLOB data is removed " +"after this time, unless they are referenced by a record in the database." +msgstr "" + +#: libraries/engines/pbms.lib.php:51 +msgid "Temp Log Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:52 +msgid "" +"The maximum size of a temporary BLOB log file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:56 +msgid "Max Keep Alive" +msgstr "" + +#: libraries/engines/pbms.lib.php:57 +msgid "" +"The timeout for inactive connection with the keep-alive flag set. After this " +"time the connection will be closed. The time-out is in milliseconds (1/1000)." +msgstr "" + +#: libraries/engines/pbms.lib.php:61 +msgid "Metadata Headers" +msgstr "" + +#: libraries/engines/pbms.lib.php:62 +msgid "" +"A \":\" delimited list of metadata headers to be used to initialize the " +"pbms_metadata_header table when a database is created." +msgstr "" + #: libraries/engines/pbxt.lib.php:22 msgid "Index cache size" msgstr "" @@ -2578,7 +2635,7 @@ msgid "" msgstr "" #: libraries/export/codegen.php:36 setup/lib/messages.inc.php:85 -#: tbl_printview.php:374 tbl_structure.php:736 +#: tbl_printview.php:373 tbl_structure.php:734 msgid "Format" msgstr "" @@ -2641,9 +2698,9 @@ msgstr "" #: libraries/export/htmlword.php:23 libraries/export/latex.php:59 #: libraries/export/latex.php:205 libraries/export/odt.php:47 #: libraries/export/sql.php:105 libraries/export/sql.php:865 -#: libraries/export/texytext.php:27 server_databases.php:126 -#: server_privileges.php:576 server_replication.php:315 tbl_printview.php:315 -#: tbl_structure.php:664 +#: libraries/export/texytext.php:27 server_databases.php:124 +#: server_privileges.php:575 server_replication.php:314 tbl_printview.php:314 +#: tbl_structure.php:662 msgid "Data" msgstr "" @@ -2692,13 +2749,13 @@ msgid "Label key" msgstr "" #: libraries/export/latex.php:46 libraries/export/odt.php:34 -#: libraries/export/sql.php:90 tbl_relation.php:398 +#: libraries/export/sql.php:90 tbl_relation.php:396 msgid "Relations" msgstr "" #: libraries/export/latex.php:52 libraries/export/odt.php:40 #: libraries/export/odt.php:317 libraries/export/sql.php:94 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "" @@ -2706,10 +2763,10 @@ msgstr "" #: libraries/export/xml.php:101 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1529 server_privileges.php:2061 -#: server_processlist.php:54 server_synchronize.php:1158 +#: libraries/replication_gui.lib.php:331 server_privileges.php:730 +#: server_privileges.php:733 server_privileges.php:789 +#: server_privileges.php:1533 server_privileges.php:2065 +#: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "" @@ -2896,8 +2953,8 @@ msgstr "" msgid "Export contents" msgstr "" -#: libraries/footer.inc.php:182 libraries/footer.inc.php:193 -#: libraries/footer.inc.php:196 +#: libraries/footer.inc.php:180 libraries/footer.inc.php:191 +#: libraries/footer.inc.php:194 msgid "Open new phpMyAdmin window" msgstr "" @@ -2913,7 +2970,7 @@ msgstr "" msgid "Generated by" msgstr "" -#: libraries/import.lib.php:151 sql.php:519 tbl_change.php:180 +#: libraries/import.lib.php:151 sql.php:518 tbl_change.php:175 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" @@ -2969,7 +3026,7 @@ msgstr "" msgid "Column names in first row" msgstr "" -#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:501 +#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:500 #: view_create.php:147 msgid "Column names" msgstr "" @@ -2995,12 +3052,12 @@ msgstr "" msgid "Invalid column count in CSV input on line %d." msgstr "" -#: libraries/import/docsql.php:28 +#: libraries/import/docsql.php:27 msgid "DocSQL" msgstr "" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 -#: server_synchronize.php:427 server_synchronize.php:870 +#: libraries/import/docsql.php:30 libraries/tbl_properties.inc.php:616 +#: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "" @@ -3054,26 +3111,26 @@ msgstr "" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:512 -#: tbl_structure.php:28 tbl_structure.php:152 tbl_structure.php:156 -#: tbl_structure.php:472 +#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:511 +#: tbl_structure.php:27 tbl_structure.php:151 tbl_structure.php:155 +#: tbl_structure.php:470 msgid "Primary" msgstr "" #: libraries/mult_submits.inc.php:97 libraries/tbl_properties.inc.php:115 -#: libraries/tbl_properties.inc.php:524 tbl_printview.php:324 -#: tbl_structure.php:30 tbl_structure.php:153 tbl_structure.php:157 -#: tbl_structure.php:474 tbl_structure.php:672 +#: libraries/tbl_properties.inc.php:523 tbl_printview.php:323 +#: tbl_structure.php:29 tbl_structure.php:152 tbl_structure.php:156 +#: tbl_structure.php:472 tbl_structure.php:670 msgid "Index" msgstr "" -#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:530 -#: tbl_structure.php:34 tbl_structure.php:155 tbl_structure.php:159 -#: tbl_structure.php:477 +#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:529 +#: tbl_structure.php:33 tbl_structure.php:154 tbl_structure.php:158 +#: tbl_structure.php:475 msgid "Fulltext" msgstr "" -#: libraries/mult_submits.inc.php:434 tbl_replace.php:330 +#: libraries/mult_submits.inc.php:433 tbl_replace.php:330 msgid "No change" msgstr "" @@ -3081,190 +3138,190 @@ msgstr "" msgid "Charset" msgstr "" -#: libraries/mysql_charsets.lib.php:210 libraries/mysql_charsets.lib.php:411 -#: tbl_change.php:515 +#: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 +#: tbl_change.php:510 msgid "Binary" msgstr "" -#: libraries/mysql_charsets.lib.php:222 +#: libraries/mysql_charsets.lib.php:214 msgid "Bulgarian" msgstr "" -#: libraries/mysql_charsets.lib.php:226 libraries/mysql_charsets.lib.php:351 +#: libraries/mysql_charsets.lib.php:218 libraries/mysql_charsets.lib.php:343 msgid "Simplified Chinese" msgstr "" -#: libraries/mysql_charsets.lib.php:228 libraries/mysql_charsets.lib.php:371 +#: libraries/mysql_charsets.lib.php:220 libraries/mysql_charsets.lib.php:363 msgid "Traditional Chinese" msgstr "" -#: libraries/mysql_charsets.lib.php:232 libraries/mysql_charsets.lib.php:418 +#: libraries/mysql_charsets.lib.php:224 libraries/mysql_charsets.lib.php:410 msgid "case-insensitive" msgstr "" -#: libraries/mysql_charsets.lib.php:235 libraries/mysql_charsets.lib.php:420 +#: libraries/mysql_charsets.lib.php:227 libraries/mysql_charsets.lib.php:412 msgid "case-sensitive" msgstr "" -#: libraries/mysql_charsets.lib.php:238 +#: libraries/mysql_charsets.lib.php:230 msgid "Croatian" msgstr "" -#: libraries/mysql_charsets.lib.php:241 +#: libraries/mysql_charsets.lib.php:233 msgid "Czech" msgstr "" -#: libraries/mysql_charsets.lib.php:244 +#: libraries/mysql_charsets.lib.php:236 msgid "Danish" msgstr "" -#: libraries/mysql_charsets.lib.php:247 +#: libraries/mysql_charsets.lib.php:239 msgid "English" msgstr "" -#: libraries/mysql_charsets.lib.php:250 +#: libraries/mysql_charsets.lib.php:242 msgid "Esperanto" msgstr "" -#: libraries/mysql_charsets.lib.php:253 +#: libraries/mysql_charsets.lib.php:245 msgid "Estonian" msgstr "" -#: libraries/mysql_charsets.lib.php:256 libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:248 libraries/mysql_charsets.lib.php:251 msgid "German" msgstr "" -#: libraries/mysql_charsets.lib.php:256 +#: libraries/mysql_charsets.lib.php:248 msgid "dictionary" msgstr "" -#: libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:251 msgid "phone book" msgstr "" -#: libraries/mysql_charsets.lib.php:262 +#: libraries/mysql_charsets.lib.php:254 msgid "Hungarian" msgstr "" -#: libraries/mysql_charsets.lib.php:265 +#: libraries/mysql_charsets.lib.php:257 msgid "Icelandic" msgstr "" -#: libraries/mysql_charsets.lib.php:268 libraries/mysql_charsets.lib.php:358 +#: libraries/mysql_charsets.lib.php:260 libraries/mysql_charsets.lib.php:350 msgid "Japanese" msgstr "" -#: libraries/mysql_charsets.lib.php:271 +#: libraries/mysql_charsets.lib.php:263 msgid "Latvian" msgstr "" -#: libraries/mysql_charsets.lib.php:274 +#: libraries/mysql_charsets.lib.php:266 msgid "Lithuanian" msgstr "" -#: libraries/mysql_charsets.lib.php:277 libraries/mysql_charsets.lib.php:380 +#: libraries/mysql_charsets.lib.php:269 libraries/mysql_charsets.lib.php:372 msgid "Korean" msgstr "" -#: libraries/mysql_charsets.lib.php:280 +#: libraries/mysql_charsets.lib.php:272 msgid "Persian" msgstr "" -#: libraries/mysql_charsets.lib.php:283 +#: libraries/mysql_charsets.lib.php:275 msgid "Polish" msgstr "" -#: libraries/mysql_charsets.lib.php:286 libraries/mysql_charsets.lib.php:334 +#: libraries/mysql_charsets.lib.php:278 libraries/mysql_charsets.lib.php:326 msgid "West European" msgstr "" -#: libraries/mysql_charsets.lib.php:289 +#: libraries/mysql_charsets.lib.php:281 msgid "Romanian" msgstr "" -#: libraries/mysql_charsets.lib.php:292 +#: libraries/mysql_charsets.lib.php:284 msgid "Slovak" msgstr "" -#: libraries/mysql_charsets.lib.php:295 +#: libraries/mysql_charsets.lib.php:287 msgid "Slovenian" msgstr "" -#: libraries/mysql_charsets.lib.php:298 +#: libraries/mysql_charsets.lib.php:290 msgid "Spanish" msgstr "" -#: libraries/mysql_charsets.lib.php:301 +#: libraries/mysql_charsets.lib.php:293 msgid "Traditional Spanish" msgstr "" -#: libraries/mysql_charsets.lib.php:304 libraries/mysql_charsets.lib.php:401 +#: libraries/mysql_charsets.lib.php:296 libraries/mysql_charsets.lib.php:393 msgid "Swedish" msgstr "" -#: libraries/mysql_charsets.lib.php:307 libraries/mysql_charsets.lib.php:404 +#: libraries/mysql_charsets.lib.php:299 libraries/mysql_charsets.lib.php:396 msgid "Thai" msgstr "" -#: libraries/mysql_charsets.lib.php:310 libraries/mysql_charsets.lib.php:398 +#: libraries/mysql_charsets.lib.php:302 libraries/mysql_charsets.lib.php:390 msgid "Turkish" msgstr "" -#: libraries/mysql_charsets.lib.php:313 libraries/mysql_charsets.lib.php:395 +#: libraries/mysql_charsets.lib.php:305 libraries/mysql_charsets.lib.php:387 msgid "Ukrainian" msgstr "" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 msgid "Unicode" msgstr "" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 -#: libraries/mysql_charsets.lib.php:334 libraries/mysql_charsets.lib.php:341 -#: libraries/mysql_charsets.lib.php:363 libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 +#: libraries/mysql_charsets.lib.php:326 libraries/mysql_charsets.lib.php:333 +#: libraries/mysql_charsets.lib.php:355 libraries/mysql_charsets.lib.php:366 msgid "multilingual" msgstr "" -#: libraries/mysql_charsets.lib.php:341 +#: libraries/mysql_charsets.lib.php:333 msgid "Central European" msgstr "" -#: libraries/mysql_charsets.lib.php:346 +#: libraries/mysql_charsets.lib.php:338 msgid "Russian" msgstr "" -#: libraries/mysql_charsets.lib.php:363 +#: libraries/mysql_charsets.lib.php:355 msgid "Baltic" msgstr "" -#: libraries/mysql_charsets.lib.php:368 +#: libraries/mysql_charsets.lib.php:360 msgid "Armenian" msgstr "" -#: libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:366 msgid "Cyrillic" msgstr "" -#: libraries/mysql_charsets.lib.php:377 +#: libraries/mysql_charsets.lib.php:369 msgid "Arabic" msgstr "" -#: libraries/mysql_charsets.lib.php:383 +#: libraries/mysql_charsets.lib.php:375 msgid "Hebrew" msgstr "" -#: libraries/mysql_charsets.lib.php:386 +#: libraries/mysql_charsets.lib.php:378 msgid "Georgian" msgstr "" -#: libraries/mysql_charsets.lib.php:389 +#: libraries/mysql_charsets.lib.php:381 msgid "Greek" msgstr "" -#: libraries/mysql_charsets.lib.php:392 +#: libraries/mysql_charsets.lib.php:384 msgid "Czech-Slovak" msgstr "" -#: libraries/mysql_charsets.lib.php:407 libraries/mysql_charsets.lib.php:414 +#: libraries/mysql_charsets.lib.php:399 libraries/mysql_charsets.lib.php:406 msgid "unknown" msgstr "" @@ -3290,67 +3347,67 @@ msgstr "" msgid "This format has no options" msgstr "" -#: libraries/relation.lib.php:82 +#: libraries/relation.lib.php:77 msgid "not OK" msgstr "" -#: libraries/relation.lib.php:86 pmd_general.php:339 +#: libraries/relation.lib.php:81 pmd_general.php:339 msgid "OK" msgstr "" -#: libraries/relation.lib.php:87 +#: libraries/relation.lib.php:82 msgid "Enabled" msgstr "" -#: libraries/relation.lib.php:110 +#: libraries/relation.lib.php:105 msgid "Display Features" msgstr "" -#: libraries/relation.lib.php:116 +#: libraries/relation.lib.php:111 msgid "Creation of PDFs" msgstr "" -#: libraries/relation.lib.php:120 +#: libraries/relation.lib.php:115 msgid "Displaying Column Comments" msgstr "" -#: libraries/relation.lib.php:125 +#: libraries/relation.lib.php:120 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" -#: libraries/relation.lib.php:130 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 msgid "Bookmarked SQL query" msgstr "" -#: libraries/relation.lib.php:134 querywindow.php:99 querywindow.php:207 +#: libraries/relation.lib.php:129 querywindow.php:98 querywindow.php:205 msgid "SQL history" msgstr "" -#: libraries/relation.lib.php:146 +#: libraries/relation.lib.php:141 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:148 +#: libraries/relation.lib.php:143 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" -#: libraries/relation.lib.php:149 +#: libraries/relation.lib.php:144 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:150 +#: libraries/relation.lib.php:145 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:151 +#: libraries/relation.lib.php:146 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1158 +#: libraries/relation.lib.php:1153 msgid "no description" msgstr "" @@ -3358,7 +3415,7 @@ msgstr "" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:53 server_replication.php:346 +#: libraries/replication_gui.lib.php:53 server_replication.php:345 msgid "Change or reconfigure master server" msgstr "" @@ -3370,16 +3427,12 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:711 -#: server_privileges.php:714 server_privileges.php:721 -#: server_synchronize.php:1170 +#: libraries/replication_gui.lib.php:261 server_privileges.php:710 +#: server_privileges.php:713 server_privileges.php:720 +#: server_synchronize.php:1169 msgid "User name" msgstr "" -#: libraries/replication_gui.lib.php:69 server_synchronize.php:1162 -msgid "Port" -msgstr "" - #: libraries/replication_gui.lib.php:105 msgid "Master status" msgstr "" @@ -3394,8 +3447,8 @@ msgid "Variable" msgstr "" #: libraries/replication_gui.lib.php:117 server_status.php:737 -#: tbl_change.php:322 tbl_printview.php:368 tbl_select.php:137 -#: tbl_structure.php:728 +#: tbl_change.php:317 tbl_printview.php:367 tbl_select.php:136 +#: tbl_structure.php:726 msgid "Value" msgstr "" @@ -3409,38 +3462,38 @@ msgid "" "this list." msgstr "" -#: libraries/replication_gui.lib.php:242 server_replication.php:193 +#: libraries/replication_gui.lib.php:242 server_replication.php:192 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:256 server_privileges.php:716 +#: libraries/replication_gui.lib.php:256 server_privileges.php:715 msgid "Any user" msgstr "" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1920 server_privileges.php:1950 +#: libraries/replication_gui.lib.php:348 server_privileges.php:716 +#: server_privileges.php:783 server_privileges.php:807 +#: server_privileges.php:1924 server_privileges.php:1954 msgid "Use text field" msgstr "" -#: libraries/replication_gui.lib.php:304 server_privileges.php:764 +#: libraries/replication_gui.lib.php:304 server_privileges.php:763 msgid "Any host" msgstr "" -#: libraries/replication_gui.lib.php:308 server_privileges.php:768 +#: libraries/replication_gui.lib.php:308 server_privileges.php:767 msgid "Local" msgstr "" -#: libraries/replication_gui.lib.php:314 server_privileges.php:773 +#: libraries/replication_gui.lib.php:314 server_privileges.php:772 msgid "This Host" msgstr "" -#: libraries/replication_gui.lib.php:320 server_privileges.php:779 +#: libraries/replication_gui.lib.php:320 server_privileges.php:778 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:333 server_privileges.php:792 +#: libraries/replication_gui.lib.php:333 server_privileges.php:791 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3466,8 +3519,8 @@ msgstr "" msgid "Servers" msgstr "" -#: libraries/server_links.inc.php:52 server_engines.php:111 -#: server_engines.php:115 server_status.php:414 test/theme.php:104 +#: libraries/server_links.inc.php:52 server_engines.php:125 +#: server_engines.php:129 server_status.php:414 test/theme.php:104 msgid "Variables" msgstr "" @@ -3488,12 +3541,12 @@ msgstr "" msgid "Processes" msgstr "" -#: libraries/server_links.inc.php:91 server_synchronize.php:1091 -#: server_synchronize.php:1099 +#: libraries/server_links.inc.php:91 server_synchronize.php:1090 +#: server_synchronize.php:1098 msgid "Synchronize" msgstr "" -#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1109 +#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1108 msgid "Source database" msgstr "" @@ -3511,7 +3564,7 @@ msgstr "" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1111 +#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1110 msgid "Target database" msgstr "" @@ -3529,11 +3582,11 @@ msgstr "" msgid "Columns" msgstr "" -#: libraries/sql_query_form.lib.php:342 sql.php:664 sql.php:665 sql.php:682 +#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql_query_form.lib.php:349 sql.php:676 +#: libraries/sql_query_form.lib.php:349 sql.php:669 msgid "Let every user access this bookmark" msgstr "" @@ -3615,12 +3668,12 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" -#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:139 -#: libraries/tbl_links.inc.php:140 +#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 +#: libraries/tbl_links.inc.php:139 msgid "Table seems to be empty!" msgstr "" -#: libraries/tbl_links.inc.php:148 +#: libraries/tbl_links.inc.php:147 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" @@ -3643,23 +3696,23 @@ msgid "" "escaping or quotes, using this format: a" msgstr "" -#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1263 -#: pdf_schema.php:1284 tbl_printview.php:142 tbl_structure.php:179 +#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1262 +#: pdf_schema.php:1283 tbl_printview.php:141 tbl_structure.php:178 msgid "Attributes" msgstr "" -#: libraries/tbl_properties.inc.php:136 +#: libraries/tbl_properties.inc.php:135 #, php-format msgid "" "For a list of available transformation options and their MIME type " "transformations, click on %stransformation descriptions%s" msgstr "" -#: libraries/tbl_properties.inc.php:144 +#: libraries/tbl_properties.inc.php:143 msgid "Transformation options" msgstr "" -#: libraries/tbl_properties.inc.php:145 +#: libraries/tbl_properties.inc.php:144 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
                            If you ever need to put a backslash (\"\\\") or a single " @@ -3667,44 +3720,44 @@ msgid "" "'\\\\xyz' or 'a\\'b')." msgstr "" -#: libraries/tbl_properties.inc.php:392 +#: libraries/tbl_properties.inc.php:391 msgctxt "for default" msgid "None" msgstr "" -#: libraries/tbl_properties.inc.php:393 +#: libraries/tbl_properties.inc.php:392 msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:579 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:578 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
                            Please ask the " "author what %s does." msgstr "" -#: libraries/tbl_properties.inc.php:725 server_engines.php:57 -#: tbl_operations.php:354 +#: libraries/tbl_properties.inc.php:724 server_engines.php:56 +#: tbl_operations.php:352 msgid "Storage Engine" msgstr "" -#: libraries/tbl_properties.inc.php:754 +#: libraries/tbl_properties.inc.php:753 msgid "PARTITION definition" msgstr "" -#: libraries/tbl_properties.inc.php:775 pdf_pages.php:502 +#: libraries/tbl_properties.inc.php:774 pdf_pages.php:501 #: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214 -#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1124 tbl_indexes.php:247 -#: tbl_relation.php:565 +#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1022 tbl_indexes.php:246 +#: tbl_relation.php:563 msgid "Save" msgstr "" -#: libraries/tbl_properties.inc.php:779 tbl_structure.php:541 +#: libraries/tbl_properties.inc.php:778 tbl_structure.php:539 #, php-format msgid "Add %s column(s)" msgstr "" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:535 +#: libraries/tbl_properties.inc.php:782 tbl_structure.php:533 msgid "You have to add at least one column." msgstr "" @@ -3827,8 +3880,8 @@ msgstr "" msgid "Custom color" msgstr "" -#: main.php:162 pdf_pages.php:362 setup/lib/FormDisplay.tpl.php:216 -#: tbl_change.php:1173 +#: main.php:162 pdf_pages.php:361 setup/lib/FormDisplay.tpl.php:216 +#: tbl_change.php:1071 msgid "Reset" msgstr "" @@ -3836,8 +3889,8 @@ msgstr "" msgid "Protocol version" msgstr "" -#: main.php:188 server_privileges.php:1381 server_privileges.php:1528 -#: server_privileges.php:1642 server_privileges.php:2060 +#: main.php:188 server_privileges.php:1385 server_privileges.php:1532 +#: server_privileges.php:1646 server_privileges.php:2064 #: server_processlist.php:53 msgid "User" msgstr "" @@ -3911,21 +3964,30 @@ msgid "" "has been configured." msgstr "" -#: main.php:330 +#: main.php:314 +#, php-format +msgid "" +"The additional features for working with linked tables have been " +"deactivated. To find out why click %shere%s." +msgstr "" +"ئالاقىدار جەدۋەللەرنىڭ قوشۇمچە ئىقتىدارى پائالسىز. سەۋەبىنى ئېنىقلاش ئۈچۈن " +"%sبۇ يەرنى كۆرۈڭ%s." + +#: main.php:329 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:345 +#: main.php:344 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: main.php:357 +#: main.php:356 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -3936,96 +3998,96 @@ msgstr "" msgid "Reload navigation frame" msgstr "" -#: navigation.php:204 server_databases.php:370 server_synchronize.php:1190 +#: navigation.php:203 server_databases.php:368 server_synchronize.php:1189 msgid "No databases" msgstr "" -#: navigation.php:298 +#: navigation.php:297 msgid "Filter" msgstr "" -#: navigation.php:299 setup/frames/index.inc.php:218 +#: navigation.php:298 setup/frames/index.inc.php:218 #: setup/lib/messages.inc.php:41 msgid "Clear" msgstr "" -#: navigation.php:330 navigation.php:331 +#: navigation.php:329 navigation.php:330 msgctxt "short form" msgid "Create table" msgstr "" -#: navigation.php:333 navigation.php:495 +#: navigation.php:332 navigation.php:494 msgid "Please select a database" msgstr "" -#: pdf_pages.php:40 pdf_pages.php:46 pdf_pages.php:52 pdf_pages.php:57 +#: pdf_pages.php:39 pdf_pages.php:45 pdf_pages.php:51 pdf_pages.php:56 #, php-format msgid "%s table not found or not set in %s" msgstr "" -#: pdf_pages.php:265 +#: pdf_pages.php:264 msgid "Please choose a page to edit" msgstr "" -#: pdf_pages.php:303 pmd_pdf.php:113 +#: pdf_pages.php:302 pmd_pdf.php:111 msgid "Create a page" msgstr "" -#: pdf_pages.php:309 +#: pdf_pages.php:308 msgid "Page name" msgstr "" -#: pdf_pages.php:313 +#: pdf_pages.php:312 msgid "Automatic layout based on" msgstr "" -#: pdf_pages.php:315 +#: pdf_pages.php:314 msgid "Internal relations" msgstr "" -#: pdf_pages.php:338 +#: pdf_pages.php:337 msgid "Select Tables" msgstr "" -#: pdf_pages.php:361 +#: pdf_pages.php:360 msgid "Toggle scratchboard" msgstr "" -#: pdf_pages.php:524 +#: pdf_pages.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" msgstr "" -#: pdf_schema.php:635 +#: pdf_schema.php:634 #, php-format msgid "The %s table doesn't exist!" msgstr "" -#: pdf_schema.php:671 +#: pdf_schema.php:670 #, php-format msgid "Please configure the coordinates for table %s" msgstr "" -#: pdf_schema.php:994 +#: pdf_schema.php:993 #, php-format msgid "Schema of the %s database - Page %s" msgstr "" -#: pdf_schema.php:1012 +#: pdf_schema.php:1011 msgid "No tables" msgstr "" -#: pdf_schema.php:1031 pdf_schema.php:1140 +#: pdf_schema.php:1030 pdf_schema.php:1139 msgid "Relational schema" msgstr "" -#: pdf_schema.php:1115 +#: pdf_schema.php:1114 msgid "Table of contents" msgstr "" -#: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:145 -#: tbl_structure.php:182 tbl_tracking.php:277 +#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 +#: tbl_structure.php:181 tbl_tracking.php:272 msgid "Extra" msgstr "" @@ -4037,7 +4099,7 @@ msgstr "" msgid "Save position" msgstr "" -#: pmd_general.php:70 server_synchronize.php:428 server_synchronize.php:871 +#: pmd_general.php:70 server_synchronize.php:427 server_synchronize.php:870 msgid "Create table" msgstr "" @@ -4108,31 +4170,31 @@ msgid "" "appropriate column name." msgstr "" -#: pmd_pdf.php:62 +#: pmd_pdf.php:60 msgid "Page has been created" msgstr "" -#: pmd_pdf.php:64 +#: pmd_pdf.php:62 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:84 +#: pmd_pdf.php:82 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:88 +#: pmd_pdf.php:86 msgid "recommended" msgstr "" -#: pmd_pdf.php:93 +#: pmd_pdf.php:91 msgid "to/from page" msgstr "" -#: querywindow.php:94 +#: querywindow.php:93 msgid "Import files" msgstr "" -#: querywindow.php:105 +#: querywindow.php:104 msgid "All" msgstr "" @@ -4178,390 +4240,390 @@ msgstr "" msgid "Character Sets and Collations" msgstr "" -#: server_databases.php:51 +#: server_databases.php:49 msgid "No databases selected." msgstr "" -#: server_databases.php:62 +#: server_databases.php:60 #, php-format msgid "%s databases have been dropped successfully." msgstr "" -#: server_databases.php:87 +#: server_databases.php:85 msgid "Databases statistics" msgstr "" -#: server_databases.php:116 server_status.php:370 +#: server_databases.php:114 server_status.php:370 #: setup/lib/messages.inc.php:114 msgid "Tables" msgstr "" -#: server_databases.php:194 server_replication.php:180 -#: server_replication.php:208 +#: server_databases.php:192 server_replication.php:179 +#: server_replication.php:207 msgid "Master replication" msgstr "" -#: server_databases.php:196 server_replication.php:247 +#: server_databases.php:194 server_replication.php:246 msgid "Slave replication" msgstr "" -#: server_databases.php:229 +#: server_databases.php:227 msgid "Jump to database" msgstr "" -#: server_databases.php:266 +#: server_databases.php:264 msgid "Not replicated" msgstr "" -#: server_databases.php:272 +#: server_databases.php:270 msgid "Replicated" msgstr "" -#: server_databases.php:288 +#: server_databases.php:286 #, php-format msgid "Check privileges for database "%s"." msgstr "" -#: server_databases.php:292 server_databases.php:293 +#: server_databases.php:290 server_databases.php:291 msgid "Check Privileges" msgstr "" -#: server_databases.php:357 server_databases.php:358 +#: server_databases.php:355 server_databases.php:356 msgid "Enable Statistics" msgstr "" -#: server_databases.php:361 server_databases.php:362 +#: server_databases.php:359 server_databases.php:360 msgid "Disable Statistics" msgstr "" -#: server_databases.php:365 +#: server_databases.php:363 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." msgstr "" -#: server_engines.php:48 +#: server_engines.php:47 msgid "Storage Engines" msgstr "" -#: server_export.php:20 +#: server_export.php:18 msgid "View dump (schema) of databases" msgstr "" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:23 server_privileges.php:265 msgid "Includes all privileges except GRANT." msgstr "" -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:24 server_privileges.php:191 +#: server_privileges.php:514 msgid "Allows altering the structure of existing tables." msgstr "" -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:25 server_privileges.php:207 +#: server_privileges.php:520 msgid "Allows altering and dropping stored routines." msgstr "" -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:26 server_privileges.php:183 +#: server_privileges.php:513 msgid "Allows creating new databases and tables." msgstr "" -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:27 server_privileges.php:206 +#: server_privileges.php:519 msgid "Allows creating stored routines." msgstr "" -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:513 msgid "Allows creating new tables." msgstr "" -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:29 server_privileges.php:194 +#: server_privileges.php:517 msgid "Allows creating temporary tables." msgstr "" -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:30 server_privileges.php:208 +#: server_privileges.php:553 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: server_privileges.php:32 server_privileges.php:199 -#: server_privileges.php:203 server_privileges.php:526 -#: server_privileges.php:530 +#: server_privileges.php:31 server_privileges.php:198 +#: server_privileges.php:202 server_privileges.php:525 +#: server_privileges.php:529 msgid "Allows creating new views." msgstr "" -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:32 server_privileges.php:182 +#: server_privileges.php:505 msgid "Allows deleting data." msgstr "" -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:33 server_privileges.php:184 +#: server_privileges.php:516 msgid "Allows dropping databases and tables." msgstr "" -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:34 server_privileges.php:516 msgid "Allows dropping tables." msgstr "" -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:35 server_privileges.php:199 +#: server_privileges.php:533 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:36 server_privileges.php:209 +#: server_privileges.php:521 msgid "Allows executing stored routines." msgstr "" -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:37 server_privileges.php:188 +#: server_privileges.php:508 msgid "Allows importing data from and exporting data into files." msgstr "" -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:38 server_privileges.php:539 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:515 msgid "Allows creating and dropping indexes." msgstr "" -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:40 server_privileges.php:180 +#: server_privileges.php:441 server_privileges.php:503 msgid "Allows inserting and replacing data." msgstr "" -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:41 server_privileges.php:195 +#: server_privileges.php:548 msgid "Allows locking tables for the current thread." msgstr "" -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:42 server_privileges.php:645 +#: server_privileges.php:647 msgid "Limits the number of new connections the user may open per hour." msgstr "" -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:43 server_privileges.php:633 +#: server_privileges.php:635 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:44 server_privileges.php:639 +#: server_privileges.php:641 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" -#: server_privileges.php:46 server_privileges.php:652 -#: server_privileges.php:654 +#: server_privileges.php:45 server_privileges.php:651 +#: server_privileges.php:653 msgid "Limits the number of simultaneous connections the user may have." msgstr "" -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:46 server_privileges.php:187 +#: server_privileges.php:543 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:47 server_privileges.php:189 +#: server_privileges.php:447 server_privileges.php:549 msgid "Has no effect in this MySQL version." msgstr "" -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:48 server_privileges.php:185 +#: server_privileges.php:544 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:197 +#: server_privileges.php:551 msgid "Allows the user to ask where the slaves / masters are." msgstr "" -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:50 server_privileges.php:196 +#: server_privileges.php:552 msgid "Needed for the replication slaves." msgstr "" -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:51 server_privileges.php:179 +#: server_privileges.php:438 server_privileges.php:502 msgid "Allows reading data." msgstr "" -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:52 server_privileges.php:192 +#: server_privileges.php:546 msgid "Gives access to the complete list of databases." msgstr "" -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:53 server_privileges.php:203 +#: server_privileges.php:205 server_privileges.php:518 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:54 server_privileges.php:186 +#: server_privileges.php:545 msgid "Allows shutting down the server." msgstr "" -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:55 server_privileges.php:193 +#: server_privileges.php:542 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " "killing threads of other users." msgstr "" -#: server_privileges.php:57 server_privileges.php:201 -#: server_privileges.php:535 +#: server_privileges.php:56 server_privileges.php:200 +#: server_privileges.php:534 msgid "Allows creating and dropping triggers" msgstr "" -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:57 server_privileges.php:181 +#: server_privileges.php:444 server_privileges.php:504 msgid "Allows changing data." msgstr "" -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:58 server_privileges.php:259 msgid "No privileges." msgstr "" -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:301 server_privileges.php:302 msgctxt "None privileges" msgid "None" msgstr "" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1710 server_privileges.php:1716 +#: server_privileges.php:430 server_privileges.php:565 +#: server_privileges.php:1714 server_privileges.php:1720 msgid "Table-specific privileges" msgstr "" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1532 +#: server_privileges.php:431 server_privileges.php:573 +#: server_privileges.php:1536 msgid " Note: MySQL privilege names are expressed in English " msgstr "" -#: server_privileges.php:563 server_privileges.php:1531 +#: server_privileges.php:562 server_privileges.php:1535 msgid "Global privileges" msgstr "" -#: server_privileges.php:565 server_privileges.php:1710 +#: server_privileges.php:564 server_privileges.php:1714 msgid "Database-specific privileges" msgstr "" -#: server_privileges.php:610 +#: server_privileges.php:609 msgid "Administration" msgstr "" -#: server_privileges.php:630 +#: server_privileges.php:629 msgid "Resource limits" msgstr "" -#: server_privileges.php:631 +#: server_privileges.php:630 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" -#: server_privileges.php:708 +#: server_privileges.php:707 msgid "Login Information" msgstr "" -#: server_privileges.php:802 +#: server_privileges.php:801 msgid "Do not change the password" msgstr "" -#: server_privileges.php:835 server_privileges.php:2197 +#: server_privileges.php:834 server_privileges.php:2201 msgid "No user found." msgstr "" -#: server_privileges.php:879 +#: server_privileges.php:878 #, php-format msgid "The user %s already exists!" msgstr "" -#: server_privileges.php:962 +#: server_privileges.php:961 msgid "You have added a new user." msgstr "" -#: server_privileges.php:1183 +#: server_privileges.php:1184 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: server_privileges.php:1207 +#: server_privileges.php:1208 #, php-format msgid "You have revoked the privileges for %s" msgstr "" -#: server_privileges.php:1243 +#: server_privileges.php:1244 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: server_privileges.php:1263 +#: server_privileges.php:1264 #, php-format msgid "Deleting %s" msgstr "" -#: server_privileges.php:1274 +#: server_privileges.php:1275 msgid "No users selected for deleting!" msgstr "" -#: server_privileges.php:1277 +#: server_privileges.php:1278 msgid "Reloading the privileges" msgstr "" -#: server_privileges.php:1292 +#: server_privileges.php:1296 msgid "The selected users have been deleted successfully." msgstr "" -#: server_privileges.php:1327 +#: server_privileges.php:1331 msgid "The privileges were reloaded successfully." msgstr "" -#: server_privileges.php:1355 server_privileges.php:1641 +#: server_privileges.php:1359 server_privileges.php:1645 msgid "Edit Privileges" msgstr "" -#: server_privileges.php:1364 +#: server_privileges.php:1368 msgid "Revoke" msgstr "" -#: server_privileges.php:1396 +#: server_privileges.php:1400 msgid "User overview" msgstr "" -#: server_privileges.php:1533 server_privileges.php:1715 -#: server_privileges.php:2064 +#: server_privileges.php:1537 server_privileges.php:1719 +#: server_privileges.php:2068 msgid "Grant" msgstr "" -#: server_privileges.php:1552 server_privileges.php:2154 +#: server_privileges.php:1556 server_privileges.php:2158 msgid "Any" msgstr "" -#: server_privileges.php:1601 server_privileges.php:1625 -#: server_privileges.php:2019 server_privileges.php:2208 +#: server_privileges.php:1605 server_privileges.php:1629 +#: server_privileges.php:2023 server_privileges.php:2212 msgid "Add a new User" msgstr "" -#: server_privileges.php:1606 +#: server_privileges.php:1610 msgid "Remove selected users" msgstr "" -#: server_privileges.php:1609 +#: server_privileges.php:1613 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: server_privileges.php:1610 server_privileges.php:1611 -#: server_privileges.php:1612 +#: server_privileges.php:1614 server_privileges.php:1615 +#: server_privileges.php:1616 msgid "Drop the databases that have the same names as the users." msgstr "" -#: server_privileges.php:1628 +#: server_privileges.php:1632 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4570,89 +4632,89 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: server_privileges.php:1676 +#: server_privileges.php:1680 msgid "The selected user was not found in the privilege table." msgstr "" -#: server_privileges.php:1716 +#: server_privileges.php:1720 msgid "Column-specific privileges" msgstr "" -#: server_privileges.php:1917 +#: server_privileges.php:1921 msgid "Add privileges on the following database" msgstr "" -#: server_privileges.php:1935 +#: server_privileges.php:1939 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:1938 +#: server_privileges.php:1942 msgid "Add privileges on the following table" msgstr "" -#: server_privileges.php:1995 +#: server_privileges.php:1999 msgid "Change Login Information / Copy User" msgstr "" -#: server_privileges.php:1998 +#: server_privileges.php:2002 msgid "Create a new user with the same privileges and ..." msgstr "" -#: server_privileges.php:2000 +#: server_privileges.php:2004 msgid "... keep the old one." msgstr "" -#: server_privileges.php:2001 +#: server_privileges.php:2005 msgid " ... delete the old one from the user tables." msgstr "" -#: server_privileges.php:2002 +#: server_privileges.php:2006 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: server_privileges.php:2003 +#: server_privileges.php:2007 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: server_privileges.php:2025 +#: server_privileges.php:2029 msgid "Database for user" msgstr "" -#: server_privileges.php:2029 +#: server_privileges.php:2033 msgctxt "Create none database for user" msgid "None" msgstr "" -#: server_privileges.php:2030 +#: server_privileges.php:2034 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2031 +#: server_privileges.php:2035 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2034 +#: server_privileges.php:2038 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: server_privileges.php:2057 +#: server_privileges.php:2061 #, php-format msgid "Users having access to "%s"" msgstr "" -#: server_privileges.php:2165 +#: server_privileges.php:2169 msgid "global" msgstr "" -#: server_privileges.php:2167 +#: server_privileges.php:2171 msgid "database-specific" msgstr "" -#: server_privileges.php:2169 +#: server_privileges.php:2173 msgid "wildcard" msgstr "" @@ -4671,53 +4733,53 @@ msgstr "" msgid "ID" msgstr "" -#: server_replication.php:50 +#: server_replication.php:49 msgid "Unknown error" msgstr "" -#: server_replication.php:57 +#: server_replication.php:56 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:64 +#: server_replication.php:63 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:70 +#: server_replication.php:69 msgid "Unable to change master" msgstr "" -#: server_replication.php:73 +#: server_replication.php:72 #, php-format msgid "Master server changed succesfully to %s" msgstr "" -#: server_replication.php:181 +#: server_replication.php:180 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:183 server_status.php:391 +#: server_replication.php:182 server_status.php:391 msgid "Show master status" msgstr "" -#: server_replication.php:186 +#: server_replication.php:185 msgid "Show connected slaves" msgstr "" -#: server_replication.php:209 +#: server_replication.php:208 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:216 +#: server_replication.php:215 msgid "Master configuration" msgstr "" -#: server_replication.php:217 +#: server_replication.php:216 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -4726,107 +4788,107 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:220 +#: server_replication.php:219 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:221 +#: server_replication.php:220 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:224 +#: server_replication.php:223 msgid "Please select databases:" msgstr "" -#: server_replication.php:227 +#: server_replication.php:226 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: server_replication.php:229 +#: server_replication.php:228 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: server_replication.php:292 +#: server_replication.php:291 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:295 +#: server_replication.php:294 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:304 +#: server_replication.php:303 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:307 +#: server_replication.php:306 msgid "See slave status table" msgstr "" -#: server_replication.php:310 +#: server_replication.php:309 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:321 +#: server_replication.php:320 msgid "Control slave:" msgstr "" -#: server_replication.php:324 +#: server_replication.php:323 msgid "Full start" msgstr "" -#: server_replication.php:324 +#: server_replication.php:323 msgid "Full stop" msgstr "" -#: server_replication.php:325 +#: server_replication.php:324 msgid "Reset slave" msgstr "" -#: server_replication.php:326 +#: server_replication.php:325 #, php-format msgid "SQL Thread %s only" msgstr "" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 msgid "Start" msgstr "" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 msgid "Stop" msgstr "" -#: server_replication.php:327 +#: server_replication.php:326 #, php-format msgid "IO Thread %s only" msgstr "" -#: server_replication.php:331 +#: server_replication.php:330 msgid "Error management:" msgstr "" -#: server_replication.php:333 +#: server_replication.php:332 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:335 +#: server_replication.php:334 msgid "Skip current error" msgstr "" -#: server_replication.php:336 +#: server_replication.php:335 msgid "Skip next" msgstr "" -#: server_replication.php:339 +#: server_replication.php:338 msgid "errors." msgstr "" -#: server_replication.php:354 +#: server_replication.php:353 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -5526,110 +5588,110 @@ msgstr "" msgid "Replication status" msgstr "" -#: server_synchronize.php:93 +#: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:96 +#: server_synchronize.php:95 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:121 server_synchronize.php:124 tbl_create.php:77 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:264 +#: server_synchronize.php:263 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:271 +#: server_synchronize.php:270 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:399 server_synchronize.php:838 +#: server_synchronize.php:398 server_synchronize.php:837 msgid "not present" msgstr "" -#: server_synchronize.php:423 server_synchronize.php:866 +#: server_synchronize.php:422 server_synchronize.php:865 msgid "Structure Difference" msgstr "" -#: server_synchronize.php:424 server_synchronize.php:867 +#: server_synchronize.php:423 server_synchronize.php:866 msgid "Data Difference" msgstr "" -#: server_synchronize.php:429 server_synchronize.php:872 +#: server_synchronize.php:428 server_synchronize.php:871 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:430 server_synchronize.php:873 +#: server_synchronize.php:429 server_synchronize.php:872 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:431 server_synchronize.php:874 +#: server_synchronize.php:430 server_synchronize.php:873 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:432 server_synchronize.php:875 +#: server_synchronize.php:431 server_synchronize.php:874 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:433 server_synchronize.php:876 +#: server_synchronize.php:432 server_synchronize.php:875 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:434 server_synchronize.php:877 +#: server_synchronize.php:433 server_synchronize.php:876 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:435 server_synchronize.php:878 +#: server_synchronize.php:434 server_synchronize.php:877 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:445 server_synchronize.php:889 +#: server_synchronize.php:444 server_synchronize.php:888 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:448 server_synchronize.php:893 +#: server_synchronize.php:447 server_synchronize.php:892 msgid "Apply Selected Changes" msgstr "" -#: server_synchronize.php:450 server_synchronize.php:895 +#: server_synchronize.php:449 server_synchronize.php:894 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:463 +#: server_synchronize.php:462 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:941 +#: server_synchronize.php:940 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:1002 +#: server_synchronize.php:1001 msgid "The following queries have been executed:" msgstr "" -#: server_synchronize.php:1121 +#: server_synchronize.php:1120 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1122 +#: server_synchronize.php:1121 msgid "Current connection" msgstr "" -#: server_synchronize.php:1151 +#: server_synchronize.php:1150 #, php-format msgid "Configuration: %s" msgstr "" -#: server_synchronize.php:1166 +#: server_synchronize.php:1165 msgid "Socket" msgstr "" -#: server_synchronize.php:1212 +#: server_synchronize.php:1211 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -6174,8 +6236,8 @@ msgstr "" #: setup/lib/messages.inc.php:128 msgid "" "Configure phpMyAdmin database to gain access to additional features, see " -"[a@../Documentation.html#linked-tables]linked-tables infrastructure[/a] in " -"documentation" +"[a@../Documentation.html#linked-tables]phpMyAdmin configuration storage[/a] " +"in documentation" msgstr "" #: setup/lib/messages.inc.php:129 setup/lib/messages.inc.php:290 @@ -7210,110 +7272,110 @@ msgstr "" msgid "ZIP" msgstr "" -#: sql.php:495 tbl_replace.php:385 +#: sql.php:494 tbl_replace.php:384 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: sql.php:512 +#: sql.php:511 msgid "Showing as PHP code" msgstr "" -#: sql.php:515 tbl_replace.php:359 +#: sql.php:514 tbl_replace.php:358 msgid "Showing SQL query" msgstr "" -#: sql.php:517 +#: sql.php:516 msgid "Validated SQL" msgstr "" -#: sql.php:638 +#: sql.php:631 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:670 +#: sql.php:663 msgid "Label" msgstr "" -#: tbl_addfield.php:188 tbl_alter.php:102 tbl_indexes.php:97 +#: tbl_addfield.php:185 tbl_alter.php:100 tbl_indexes.php:97 #, php-format msgid "Table %1$s has been altered successfully" msgstr "" -#: tbl_change.php:250 tbl_select.php:26 tbl_select.php:27 tbl_select.php:30 -#: tbl_select.php:33 +#: tbl_change.php:245 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_select.php:32 msgid "Browse foreign values" msgstr "" -#: tbl_change.php:280 tbl_change.php:318 +#: tbl_change.php:275 tbl_change.php:313 msgid "Function" msgstr "" -#: tbl_change.php:300 tbl_indexes.php:199 tbl_indexes.php:224 +#: tbl_change.php:295 tbl_indexes.php:198 tbl_indexes.php:223 msgid "Ignore" msgstr "" -#: tbl_change.php:725 +#: tbl_change.php:720 msgid " Because of its length,
                            this column might not be editable " msgstr "" -#: tbl_change.php:884 +#: tbl_change.php:835 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:890 +#: tbl_change.php:841 msgid "Binary - do not edit" msgstr "" -#: tbl_change.php:983 +#: tbl_change.php:889 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:1128 +#: tbl_change.php:1026 msgid "Insert as new row" msgstr "" -#: tbl_change.php:1129 +#: tbl_change.php:1027 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:1130 +#: tbl_change.php:1028 msgid "Show insert query" msgstr "" -#: tbl_change.php:1145 +#: tbl_change.php:1043 msgid "Go back to previous page" msgstr "" -#: tbl_change.php:1146 +#: tbl_change.php:1044 msgid "Insert another new row" msgstr "" -#: tbl_change.php:1150 +#: tbl_change.php:1048 msgid "Go back to this page" msgstr "" -#: tbl_change.php:1158 +#: tbl_change.php:1056 msgid "Edit next row" msgstr "" -#: tbl_change.php:1169 +#: tbl_change.php:1067 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: tbl_change.php:1207 +#: tbl_change.php:1105 #, php-format msgid "Restart insertion with %s rows" msgstr "" -#: tbl_create.php:57 +#: tbl_create.php:55 #, php-format msgid "Table %s already exists!" msgstr "" -#: tbl_create.php:244 +#: tbl_create.php:241 #, php-format msgid "Table %1$s has been created." msgstr "" @@ -7334,196 +7396,196 @@ msgstr "" msgid "No index parts defined!" msgstr "" -#: tbl_indexes.php:159 +#: tbl_indexes.php:158 msgid "Create a new index" msgstr "" -#: tbl_indexes.php:161 +#: tbl_indexes.php:160 msgid "Modify an index" msgstr "" -#: tbl_indexes.php:167 +#: tbl_indexes.php:166 msgid "Index name:" msgstr "" -#: tbl_indexes.php:173 +#: tbl_indexes.php:172 msgid "Index type:" msgstr "" -#: tbl_indexes.php:183 +#: tbl_indexes.php:182 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" -#: tbl_indexes.php:250 +#: tbl_indexes.php:249 #, php-format msgid "Add to index  %s column(s)" msgstr "" -#: tbl_indexes.php:255 tbl_structure.php:588 tbl_structure.php:599 +#: tbl_indexes.php:254 tbl_structure.php:586 tbl_structure.php:597 msgid "Column count has to be larger than zero." msgstr "" -#: tbl_move_copy.php:45 +#: tbl_move_copy.php:44 msgid "Can't move table to same one!" msgstr "" -#: tbl_move_copy.php:47 +#: tbl_move_copy.php:46 msgid "Can't copy table to same one!" msgstr "" -#: tbl_move_copy.php:55 +#: tbl_move_copy.php:54 #, php-format msgid "Table %s has been moved to %s." msgstr "" -#: tbl_move_copy.php:57 +#: tbl_move_copy.php:56 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: tbl_move_copy.php:81 +#: tbl_move_copy.php:80 msgid "The table name is empty!" msgstr "" -#: tbl_operations.php:248 +#: tbl_operations.php:246 msgid "Alter table order by" msgstr "" -#: tbl_operations.php:257 +#: tbl_operations.php:255 msgid "(singly)" msgstr "" -#: tbl_operations.php:277 +#: tbl_operations.php:275 msgid "Move table to (database.table):" msgstr "" -#: tbl_operations.php:335 +#: tbl_operations.php:333 msgid "Table options" msgstr "" -#: tbl_operations.php:339 +#: tbl_operations.php:337 msgid "Rename table to" msgstr "" -#: tbl_operations.php:510 +#: tbl_operations.php:508 msgid "Copy table to (database.table):" msgstr "" -#: tbl_operations.php:557 +#: tbl_operations.php:555 msgid "Switch to copied table" msgstr "" -#: tbl_operations.php:569 +#: tbl_operations.php:567 msgid "Table maintenance" msgstr "" -#: tbl_operations.php:590 +#: tbl_operations.php:588 msgid "Defragment table" msgstr "" -#: tbl_operations.php:629 +#: tbl_operations.php:627 #, php-format msgid "Table %s has been flushed" msgstr "" -#: tbl_operations.php:635 +#: tbl_operations.php:633 msgid "Flush the table (FLUSH)" msgstr "" -#: tbl_operations.php:650 +#: tbl_operations.php:648 msgid "Partition maintenance" msgstr "" -#: tbl_operations.php:658 +#: tbl_operations.php:656 #, php-format msgid "Partition %s" msgstr "" -#: tbl_operations.php:661 +#: tbl_operations.php:659 msgid "Analyze" msgstr "" -#: tbl_operations.php:662 +#: tbl_operations.php:660 msgid "Check" msgstr "" -#: tbl_operations.php:663 +#: tbl_operations.php:661 msgid "Optimize" msgstr "" -#: tbl_operations.php:664 +#: tbl_operations.php:662 msgid "Rebuild" msgstr "" -#: tbl_operations.php:665 +#: tbl_operations.php:663 msgid "Repair" msgstr "" -#: tbl_operations.php:677 +#: tbl_operations.php:675 msgid "Remove partitioning" msgstr "" -#: tbl_operations.php:703 +#: tbl_operations.php:701 msgid "Check referential integrity:" msgstr "" -#: tbl_printview.php:73 +#: tbl_printview.php:72 msgid "Show tables" msgstr "" -#: tbl_printview.php:308 tbl_structure.php:655 +#: tbl_printview.php:307 tbl_structure.php:653 msgid "Space usage" msgstr "" -#: tbl_printview.php:312 tbl_structure.php:659 +#: tbl_printview.php:311 tbl_structure.php:657 msgid "Usage" msgstr "" -#: tbl_printview.php:339 tbl_structure.php:686 +#: tbl_printview.php:338 tbl_structure.php:684 msgid "Effective" msgstr "" -#: tbl_printview.php:364 tbl_structure.php:724 +#: tbl_printview.php:363 tbl_structure.php:722 msgid "Row Statistics" msgstr "" -#: tbl_printview.php:367 tbl_structure.php:727 +#: tbl_printview.php:366 tbl_structure.php:725 msgid "Statements" msgstr "" -#: tbl_printview.php:378 tbl_structure.php:739 +#: tbl_printview.php:377 tbl_structure.php:737 msgid "static" msgstr "" -#: tbl_printview.php:380 tbl_structure.php:741 +#: tbl_printview.php:379 tbl_structure.php:739 msgid "dynamic" msgstr "" -#: tbl_printview.php:402 tbl_structure.php:784 +#: tbl_printview.php:401 tbl_structure.php:782 msgid "Row length" msgstr "" -#: tbl_printview.php:412 tbl_structure.php:792 +#: tbl_printview.php:411 tbl_structure.php:790 msgid " Row size " msgstr "" -#: tbl_relation.php:278 +#: tbl_relation.php:276 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" -#: tbl_relation.php:404 +#: tbl_relation.php:402 msgid "Internal relation" msgstr "" -#: tbl_relation.php:406 +#: tbl_relation.php:404 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: tbl_relation.php:412 +#: tbl_relation.php:410 msgid "Foreign key constraint" msgstr "" @@ -7531,221 +7593,221 @@ msgstr "" msgid "No rows selected" msgstr "" -#: tbl_select.php:130 +#: tbl_select.php:129 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "" -#: tbl_select.php:136 +#: tbl_select.php:135 msgid "Operator" msgstr "" -#: tbl_select.php:267 +#: tbl_select.php:266 msgid "Select columns (at least one):" msgstr "" -#: tbl_select.php:285 +#: tbl_select.php:284 msgid "Add search conditions (body of the \"where\" clause):" msgstr "" -#: tbl_select.php:292 +#: tbl_select.php:291 msgid "Number of rows per page" msgstr "" -#: tbl_select.php:298 +#: tbl_select.php:297 msgid "Display order:" msgstr "" -#: tbl_structure.php:160 +#: tbl_structure.php:159 msgid "Browse distinct values" msgstr "" -#: tbl_structure.php:360 +#: tbl_structure.php:358 msgctxt "None for default" msgid "None" msgstr "" -#: tbl_structure.php:373 +#: tbl_structure.php:371 #, php-format msgid "Column %s has been dropped" msgstr "" -#: tbl_structure.php:384 +#: tbl_structure.php:382 #, php-format msgid "A primary key has been added on %s" msgstr "" -#: tbl_structure.php:399 tbl_structure.php:413 tbl_structure.php:427 +#: tbl_structure.php:397 tbl_structure.php:411 tbl_structure.php:425 #, php-format msgid "An index has been added on %s" msgstr "" -#: tbl_structure.php:505 tbl_structure.php:507 +#: tbl_structure.php:503 tbl_structure.php:505 msgid "Relation view" msgstr "" -#: tbl_structure.php:514 tbl_structure.php:516 +#: tbl_structure.php:512 tbl_structure.php:514 msgid "Propose table structure" msgstr "" -#: tbl_structure.php:539 +#: tbl_structure.php:537 msgid "Add column" msgstr "" -#: tbl_structure.php:553 +#: tbl_structure.php:551 msgid "At End of Table" msgstr "" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At Beginning of Table" msgstr "" -#: tbl_structure.php:555 +#: tbl_structure.php:553 #, php-format msgid "After %s" msgstr "" -#: tbl_structure.php:593 +#: tbl_structure.php:591 #, php-format msgid "Create an index on  %s columns" msgstr "" -#: tbl_structure.php:755 +#: tbl_structure.php:753 msgid "partitioned" msgstr "" -#: tbl_tracking.php:113 +#: tbl_tracking.php:109 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:186 +#: tbl_tracking.php:182 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "" -#: tbl_tracking.php:194 +#: tbl_tracking.php:190 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "" -#: tbl_tracking.php:202 +#: tbl_tracking.php:198 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "" -#: tbl_tracking.php:212 +#: tbl_tracking.php:208 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:219 +#: tbl_tracking.php:215 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:220 +#: tbl_tracking.php:216 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:229 +#: tbl_tracking.php:225 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:250 tbl_tracking.php:378 +#: tbl_tracking.php:245 tbl_tracking.php:373 msgid "Close" msgstr "" -#: tbl_tracking.php:261 +#: tbl_tracking.php:256 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:380 +#: tbl_tracking.php:375 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:396 tbl_tracking.php:503 +#: tbl_tracking.php:391 tbl_tracking.php:498 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "" -#: tbl_tracking.php:409 tbl_tracking.php:460 +#: tbl_tracking.php:404 tbl_tracking.php:455 msgid "Date" msgstr "" -#: tbl_tracking.php:410 tbl_tracking.php:461 +#: tbl_tracking.php:405 tbl_tracking.php:456 msgid "Username" msgstr "" -#: tbl_tracking.php:411 +#: tbl_tracking.php:406 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:462 +#: tbl_tracking.php:457 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:506 +#: tbl_tracking.php:501 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:507 +#: tbl_tracking.php:502 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:520 +#: tbl_tracking.php:515 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:560 +#: tbl_tracking.php:555 msgid "Show versions" msgstr "" -#: tbl_tracking.php:592 +#: tbl_tracking.php:587 msgid "Version" msgstr "" -#: tbl_tracking.php:639 +#: tbl_tracking.php:634 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "" -#: tbl_tracking.php:641 +#: tbl_tracking.php:636 msgid "Deactivate now" msgstr "دەرھال ئىشلىتىشنى توختۇتۇڭ" -#: tbl_tracking.php:652 +#: tbl_tracking.php:647 #, php-format msgid "Activate tracking for %s.%s" msgstr "" -#: tbl_tracking.php:654 +#: tbl_tracking.php:649 msgid "Activate now" msgstr "" -#: tbl_tracking.php:667 +#: tbl_tracking.php:662 #, php-format msgid "Create version %s of %s.%s" msgstr "" -#: tbl_tracking.php:671 +#: tbl_tracking.php:666 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:679 +#: tbl_tracking.php:674 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:687 +#: tbl_tracking.php:682 msgid "Create version" msgstr "نەشىرنى قۇىماق" @@ -7790,6 +7852,30 @@ msgstr "" msgid "VIEW name" msgstr "" -#: view_operations.php:92 +#: view_operations.php:91 msgid "Rename view to" msgstr "" + +#~ msgid "BLOB Repository" +#~ msgstr "BLOB ئامبىرى" + +#~ msgctxt "BLOB repository" +#~ msgid "Enabled" +#~ msgstr "ئېچىلدى" + +#~ msgid "Disable" +#~ msgstr "تاقاش" + +#~ msgid "Damaged" +#~ msgstr "بۇزۇلغان" + +#~ msgctxt "BLOB repository" +#~ msgid "Repair" +#~ msgstr "ئوڭشاش" + +#~ msgctxt "BLOB repository" +#~ msgid "Disabled" +#~ msgstr "تاقالدى" + +#~ msgid "Enable" +#~ msgstr "ئېچىش" diff --git a/po/uk.po b/po/uk.po index ebeca30ef..857cc0db9 100644 --- a/po/uk.po +++ b/po/uk.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-21 13:53+0200\n" +"POT-Creation-Date: 2010-07-26 17:18+0200\n" "PO-Revision-Date: 2010-03-12 09:19+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: ukrainian \n" @@ -13,158 +13,170 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.5.3\n" -#: browse_foreigners.php:37 browse_foreigners.php:58 -#: libraries/display_tbl.lib.php:416 server_privileges.php:1506 +#: browse_foreigners.php:36 browse_foreigners.php:57 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1510 msgid "Show all" msgstr "Показати все" -#: browse_foreigners.php:81 libraries/common.lib.php:2313 -#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:393 -#: libraries/export/pdf.php:146 pdf_schema.php:282 pdf_schema.php:1122 -#: pdf_schema.php:1138 +#: browse_foreigners.php:80 libraries/common.lib.php:2318 +#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:392 +#: libraries/export/pdf.php:146 pdf_schema.php:281 pdf_schema.php:1121 +#: pdf_schema.php:1137 msgid "Page number:" msgstr "Номер сторінки:" -#: browse_foreigners.php:131 +#: browse_foreigners.php:130 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " "cross-window updates." msgstr "" -#: browse_foreigners.php:149 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2829 -#: libraries/common.lib.php:2836 libraries/db_links.inc.php:74 -#: libraries/tbl_links.inc.php:62 +#: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 +#: db_structure.php:89 db_structure.php:91 db_structure.php:102 +#: db_structure.php:104 libraries/common.lib.php:2834 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Шукати" -#: browse_foreigners.php:152 db_operations.php:384 db_operations.php:428 -#: db_operations.php:498 db_operations.php:608 db_search.php:344 -#: db_structure.php:566 js/messages.php:48 libraries/Config.class.php:1043 -#: libraries/Theme_Manager.class.php:310 +#: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 +#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 +#: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 -#: libraries/common.lib.php:1340 libraries/common.lib.php:2289 +#: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 -#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:275 -#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:531 -#: libraries/display_tbl.lib.php:613 libraries/replication_gui.lib.php:75 +#: libraries/display_export.lib.php:269 libraries/display_import.lib.php:275 +#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 +#: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 #: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:781 -#: main.php:127 navigation.php:231 pdf_pages.php:291 pdf_pages.php:327 -#: pdf_pages.php:529 pmd_pdf.php:115 server_binlog.php:128 -#: server_privileges.php:664 server_privileges.php:1616 -#: server_privileges.php:1963 server_privileges.php:2010 -#: server_privileges.php:2049 server_replication.php:234 -#: server_replication.php:317 server_replication.php:340 -#: server_synchronize.php:1208 tbl_change.php:328 tbl_change.php:1172 -#: tbl_change.php:1209 tbl_indexes.php:253 tbl_operations.php:264 -#: tbl_operations.php:301 tbl_operations.php:498 tbl_operations.php:560 -#: tbl_operations.php:680 tbl_select.php:324 tbl_structure.php:561 -#: tbl_structure.php:596 tbl_tracking.php:394 tbl_tracking.php:511 -#: view_create.php:181 view_operations.php:100 +#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 +#: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 +#: server_privileges.php:663 server_privileges.php:1620 +#: server_privileges.php:1967 server_privileges.php:2014 +#: server_privileges.php:2053 server_replication.php:233 +#: server_replication.php:316 server_replication.php:339 +#: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 +#: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 +#: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 +#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "Вперед" -#: browse_foreigners.php:167 browse_foreigners.php:171 -#: libraries/Index.class.php:441 tbl_tracking.php:319 +#: browse_foreigners.php:166 browse_foreigners.php:170 +#: libraries/Index.class.php:441 tbl_tracking.php:314 msgid "Keyname" msgstr "Ім'я ключа" -#: browse_foreigners.php:168 browse_foreigners.php:170 -#: server_collations.php:54 server_collations.php:66 server_engines.php:58 +#: browse_foreigners.php:167 browse_foreigners.php:169 +#: server_collations.php:54 server_collations.php:66 server_engines.php:57 #: server_status.php:738 msgid "Description" msgstr "Опис" -#: browse_foreigners.php:246 browse_foreigners.php:255 -#: browse_foreigners.php:267 browse_foreigners.php:275 +#: browse_foreigners.php:245 browse_foreigners.php:254 +#: browse_foreigners.php:266 browse_foreigners.php:274 msgid "Use this value" msgstr "" -#: db_create.php:45 +#: bs_disp_as_mime_type.php:29 bs_play_media.php:35 +msgid "No blob streaming server configured!" +msgstr "" + +#: bs_disp_as_mime_type.php:35 +msgid "Failed to fetch headers" +msgstr "" + +#: bs_disp_as_mime_type.php:41 +msgid "Failed to open remote URL" +msgstr "" + +#: db_create.php:44 #, php-format msgid "Database %1$s has been created." msgstr "" -#: db_datadict.php:48 db_operations.php:377 +#: db_datadict.php:48 db_operations.php:313 msgid "Database comment: " msgstr "Коментар бази даних: " -#: db_datadict.php:164 libraries/tbl_properties.inc.php:723 -#: pdf_schema.php:1235 tbl_operations.php:346 tbl_printview.php:128 +#: db_datadict.php:164 libraries/tbl_properties.inc.php:722 +#: pdf_schema.php:1234 tbl_operations.php:344 tbl_printview.php:127 msgid "Table comments" msgstr "Коментар до таблиці" -#: db_datadict.php:173 db_qbe.php:173 libraries/Index.class.php:445 +#: db_datadict.php:173 db_qbe.php:170 libraries/Index.class.php:445 #: libraries/export/htmlword.php:243 libraries/export/latex.php:364 #: libraries/export/odt.php:293 libraries/export/texytext.php:233 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:274 -#: pdf_schema.php:1261 pdf_schema.php:1282 tbl_change.php:306 -#: tbl_indexes.php:188 tbl_printview.php:140 tbl_relation.php:401 -#: tbl_select.php:133 tbl_structure.php:176 tbl_tracking.php:272 -#: tbl_tracking.php:323 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 +#: pdf_schema.php:1260 pdf_schema.php:1281 tbl_change.php:301 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:132 tbl_structure.php:175 tbl_tracking.php:267 +#: tbl_tracking.php:318 #, fuzzy #| msgid "Column names" msgid "Column" msgstr "Назви колонок" -#: db_datadict.php:174 db_printview.php:105 libraries/Index.class.php:442 +#: db_datadict.php:174 db_printview.php:104 libraries/Index.class.php:442 #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 #: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:244 #: libraries/export/latex.php:364 libraries/export/odt.php:296 #: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:99 -#: pdf_schema.php:1262 pdf_schema.php:1283 server_privileges.php:2062 -#: tbl_change.php:285 tbl_change.php:312 tbl_printview.php:141 -#: tbl_printview.php:311 tbl_select.php:134 tbl_structure.php:177 -#: tbl_structure.php:658 tbl_tracking.php:273 tbl_tracking.php:320 +#: pdf_schema.php:1261 pdf_schema.php:1282 server_privileges.php:2066 +#: tbl_change.php:280 tbl_change.php:307 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:133 tbl_structure.php:176 +#: tbl_structure.php:656 tbl_tracking.php:268 tbl_tracking.php:315 msgid "Type" msgstr "Тип" #: db_datadict.php:176 libraries/Index.class.php:448 #: libraries/export/htmlword.php:245 libraries/export/latex.php:364 #: libraries/export/odt.php:299 libraries/export/texytext.php:235 -#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1264 -#: pdf_schema.php:1285 tbl_change.php:321 tbl_printview.php:143 -#: tbl_structure.php:180 tbl_tracking.php:275 tbl_tracking.php:326 +#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1263 +#: pdf_schema.php:1284 tbl_change.php:316 tbl_printview.php:142 +#: tbl_structure.php:179 tbl_tracking.php:270 tbl_tracking.php:321 msgid "Null" msgstr "Нуль" -#: db_datadict.php:177 db_structure.php:500 libraries/export/htmlword.php:246 +#: db_datadict.php:177 db_structure.php:486 libraries/export/htmlword.php:246 #: libraries/export/latex.php:364 libraries/export/odt.php:302 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:105 -#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 -#: tbl_structure.php:181 tbl_tracking.php:276 +#: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:143 +#: tbl_structure.php:180 tbl_tracking.php:271 msgid "Default" msgstr "По замовчуванню" #: db_datadict.php:181 libraries/export/htmlword.php:248 #: libraries/export/latex.php:366 libraries/export/odt.php:306 -#: libraries/export/texytext.php:238 pdf_schema.php:1267 pdf_schema.php:1288 -#: tbl_printview.php:148 +#: libraries/export/texytext.php:238 pdf_schema.php:1266 pdf_schema.php:1287 +#: tbl_printview.php:147 msgid "Links to" msgstr "Лінки до" -#: db_datadict.php:183 db_printview.php:111 libraries/export/htmlword.php:251 +#: db_datadict.php:183 db_printview.php:110 libraries/export/htmlword.php:251 #: libraries/export/latex.php:49 libraries/export/latex.php:369 #: libraries/export/odt.php:37 libraries/export/odt.php:311 #: libraries/export/sql.php:29 libraries/export/texytext.php:241 -#: libraries/tbl_properties.inc.php:129 pdf_schema.php:1278 -#: pdf_schema.php:1289 tbl_printview.php:150 +#: libraries/tbl_properties.inc.php:128 pdf_schema.php:1277 +#: pdf_schema.php:1288 tbl_printview.php:149 msgid "Comments" msgstr "Коментарі" #: db_datadict.php:266 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/export/htmlword.php:321 #: libraries/export/latex.php:434 libraries/export/odt.php:367 -#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:262 -#: pdf_schema.php:1343 server_privileges.php:1560 server_privileges.php:1571 -#: server_privileges.php:1881 server_privileges.php:1886 -#: server_privileges.php:2179 sql.php:131 sql.php:193 tbl_printview.php:227 -#: tbl_structure.php:349 tbl_tracking.php:336 tbl_tracking.php:341 +#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:261 +#: pdf_schema.php:1342 server_privileges.php:1564 server_privileges.php:1575 +#: server_privileges.php:1885 server_privileges.php:1890 +#: server_privileges.php:2183 sql.php:130 sql.php:192 tbl_printview.php:226 +#: tbl_structure.php:347 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "Ні" @@ -175,17 +187,17 @@ msgstr "Ні" #: libraries/mult_submits.inc.php:49 libraries/mult_submits.inc.php:54 #: libraries/mult_submits.inc.php:59 libraries/mult_submits.inc.php:91 #: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:105 -#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:261 -#: libraries/mult_submits.inc.php:272 pdf_schema.php:1343 -#: server_databases.php:63 server_privileges.php:1557 -#: server_privileges.php:1571 server_privileges.php:1881 -#: server_privileges.php:1884 server_privileges.php:2179 sql.php:192 -#: tbl_printview.php:227 tbl_structure.php:39 tbl_structure.php:349 -#: tbl_tracking.php:334 tbl_tracking.php:339 +#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:260 +#: libraries/mult_submits.inc.php:271 pdf_schema.php:1342 +#: server_databases.php:61 server_privileges.php:1561 +#: server_privileges.php:1575 server_privileges.php:1885 +#: server_privileges.php:1888 server_privileges.php:2183 sql.php:191 +#: tbl_printview.php:226 tbl_structure.php:38 tbl_structure.php:347 +#: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" msgstr "Так" -#: db_datadict.php:321 db_printview.php:265 tbl_printview.php:496 +#: db_datadict.php:321 db_printview.php:264 tbl_printview.php:495 msgid "Print" msgstr "Друк" @@ -193,194 +205,154 @@ msgstr "Друк" msgid "View dump (schema) of database" msgstr "Переглянути дамп (схему) БД" -#: db_export.php:32 db_printview.php:95 db_qbe.php:101 db_structure.php:50 -#: db_tracking.php:34 export.php:352 navigation.php:326 +#: db_export.php:32 db_printview.php:94 db_qbe.php:98 db_structure.php:49 +#: db_tracking.php:30 export.php:350 navigation.php:325 msgid "No tables found in database." msgstr "В БД не виявлено таблиць." -#: db_export.php:42 db_search.php:326 server_export.php:26 +#: db_export.php:42 db_search.php:326 server_export.php:24 msgid "Select All" msgstr "Відмітити все" -#: db_export.php:44 db_search.php:329 server_export.php:28 +#: db_export.php:44 db_search.php:329 server_export.php:26 msgid "Unselect All" msgstr "Зняти всі відмітки" -#: db_operations.php:37 tbl_create.php:49 +#: db_operations.php:33 tbl_create.php:47 msgid "The database name is empty!" msgstr "" -#: db_operations.php:235 +#: db_operations.php:231 #, php-format msgid "Database %s has been renamed to %s" msgstr "" -#: db_operations.php:239 +#: db_operations.php:235 #, php-format msgid "Database %s has been copied to %s" msgstr "" -#: db_operations.php:411 +#: db_operations.php:347 msgid "Rename database to" msgstr "" -#: db_operations.php:416 server_processlist.php:56 +#: db_operations.php:352 server_processlist.php:56 msgid "Command" msgstr "Команда" -#: db_operations.php:428 tbl_change.php:1141 +#: db_operations.php:364 tbl_change.php:1039 msgid "and then" msgstr "" -#: db_operations.php:454 +#: db_operations.php:390 msgid "Copy database to" msgstr "" -#: db_operations.php:461 tbl_operations.php:527 tbl_tracking.php:387 +#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Лише структуру" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:389 +#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Структуру і дані" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:388 +#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Лише дані" -#: db_operations.php:471 +#: db_operations.php:407 msgid "CREATE DATABASE before copying" msgstr "" -#: db_operations.php:474 libraries/export/sql.php:51 +#: db_operations.php:410 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 -#: libraries/export/sql.php:81 tbl_operations.php:535 +#: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "" -#: db_operations.php:478 libraries/export/sql.php:77 tbl_operations.php:298 -#: tbl_operations.php:537 +#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "" -#: db_operations.php:482 tbl_operations.php:544 +#: db_operations.php:418 tbl_operations.php:542 msgid "Add constraints" msgstr "" -#: db_operations.php:495 +#: db_operations.php:431 msgid "Switch to copied database" msgstr "" -#: db_operations.php:536 -msgid "BLOB Repository" -msgstr "" - -#: db_operations.php:539 db_tracking.php:75 libraries/common.lib.php:1357 -#: libraries/server_links.inc.php:48 server_processlist.php:58 -#: tbl_tracking.php:595 test/theme.php:100 -msgid "Status" -msgstr "Статус" - -#: db_operations.php:547 -#, fuzzy -#| msgid "Enabled" -msgctxt "BLOB repository" -msgid "Enabled" -msgstr "дозволено" - -#: db_operations.php:551 -msgid "Disable" -msgstr "" - -#: db_operations.php:561 -msgid "Damaged" -msgstr "" - -#: db_operations.php:565 -#, fuzzy -#| msgid "Repair table" -msgctxt "BLOB repository" -msgid "Repair" -msgstr "Ремонтувати таблицю" - -#: db_operations.php:573 -#, fuzzy -#| msgid "Disabled" -msgctxt "BLOB repository" -msgid "Disabled" -msgstr "заблоковано" - -#: db_operations.php:577 -msgid "Enable" -msgstr "" - -#: db_operations.php:601 libraries/Index.class.php:447 +#: db_operations.php:451 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 -#: server_collations.php:53 server_collations.php:65 server_databases.php:110 -#: tbl_operations.php:362 tbl_select.php:135 tbl_structure.php:178 -#: tbl_structure.php:766 tbl_tracking.php:274 tbl_tracking.php:325 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 +#: server_collations.php:53 server_collations.php:65 server_databases.php:108 +#: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:177 +#: tbl_structure.php:764 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "Порівняння" -#: db_operations.php:614 main.php:315 pdf_schema.php:33 -#, php-format +#: db_operations.php:464 pdf_schema.php:32 +#, fuzzy, php-format +#| msgid "" +#| "The additional features for working with linked tables have been " +#| "deactivated. To find out why click %shere%s." msgid "" -"The additional features for working with linked tables have been " -"deactivated. To find out why click %shere%s." +"The phpMyAdmin configuration storage has been deactivated. To find out why " +"click %shere%s." msgstr "" "Додаткова можливість роботи із залінкованими таблицями деактивована. Для " "того, щоб довідатись чому, натисніть %sтут%s." -#: db_operations.php:647 +#: db_operations.php:497 msgid "Edit PDF Pages" msgstr "Редагувати PDF Сторінки" -#: db_printview.php:103 db_tracking.php:71 db_tracking.php:156 +#: db_printview.php:102 db_tracking.php:67 db_tracking.php:152 #: libraries/db_structure.lib.php:37 libraries/export/xml.php:327 -#: libraries/header.inc.php:125 pdf_pages.php:423 server_privileges.php:1657 -#: server_privileges.php:1713 server_privileges.php:1977 -#: server_synchronize.php:422 server_synchronize.php:865 tbl_tracking.php:591 +#: libraries/header.inc.php:125 pdf_pages.php:422 server_privileges.php:1661 +#: server_privileges.php:1717 server_privileges.php:1981 +#: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "таблиця " -#: db_printview.php:104 libraries/db_structure.lib.php:47 +#: db_printview.php:103 libraries/db_structure.lib.php:47 #: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 -#: navigation.php:629 navigation.php:651 server_databases.php:121 -#: tbl_printview.php:392 tbl_structure.php:364 tbl_structure.php:776 +#: navigation.php:628 navigation.php:650 server_databases.php:119 +#: tbl_printview.php:391 tbl_structure.php:362 tbl_structure.php:774 msgid "Rows" msgstr "Рядки" -#: db_printview.php:108 libraries/db_structure.lib.php:58 tbl_indexes.php:189 +#: db_printview.php:107 libraries/db_structure.lib.php:58 tbl_indexes.php:188 msgid "Size" msgstr "Розмір" -#: db_printview.php:161 db_structure.php:456 libraries/export/sql.php:556 +#: db_printview.php:160 db_structure.php:442 libraries/export/sql.php:556 #: libraries/export/sql.php:896 msgid "in use" msgstr "використовується" -#: db_printview.php:186 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:511 pdf_schema.php:1240 tbl_printview.php:432 -#: tbl_structure.php:808 +#: db_printview.php:185 libraries/db_info.inc.php:86 +#: libraries/export/sql.php:511 pdf_schema.php:1239 tbl_printview.php:431 +#: tbl_structure.php:806 msgid "Creation" msgstr "Створено" -#: db_printview.php:195 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:516 pdf_schema.php:1245 tbl_printview.php:442 -#: tbl_structure.php:816 +#: db_printview.php:194 libraries/db_info.inc.php:91 +#: libraries/export/sql.php:516 pdf_schema.php:1244 tbl_printview.php:441 +#: tbl_structure.php:814 msgid "Last update" msgstr "Поновлено" -#: db_printview.php:204 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:521 pdf_schema.php:1250 tbl_printview.php:452 -#: tbl_structure.php:824 +#: db_printview.php:203 libraries/db_info.inc.php:96 +#: libraries/export/sql.php:521 pdf_schema.php:1249 tbl_printview.php:451 +#: tbl_structure.php:822 msgid "Last check" msgstr "Перевірено" -#: db_printview.php:221 db_structure.php:479 +#: db_printview.php:220 db_structure.php:465 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -388,94 +360,94 @@ msgid_plural "%s tables" msgstr[0] "%s таблиц(і)" msgstr[1] "%s таблиц(і)" -#: db_qbe.php:28 import.php:453 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1980 libraries/sql_query_form.lib.php:138 -#: tbl_operations.php:212 tbl_relation.php:291 tbl_row_action.php:130 -#: view_operations.php:61 +#: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 +#: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "Ваш SQL-запит було успішно виконано" -#: db_qbe.php:41 +#: db_qbe.php:38 msgid "You have to choose at least one column to display" msgstr "Необхідно вибрати принаймі один Стовпчик для показу" -#: db_qbe.php:199 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:865 +#: db_qbe.php:196 libraries/db_structure.lib.php:95 +#: libraries/display_tbl.lib.php:864 msgid "Sort" msgstr "Посортувати" -#: db_qbe.php:208 db_qbe.php:242 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:522 libraries/display_tbl.lib.php:827 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:259 -#: tbl_select.php:311 +#: db_qbe.php:205 db_qbe.php:239 libraries/db_structure.lib.php:102 +#: libraries/display_tbl.lib.php:521 libraries/display_tbl.lib.php:826 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:257 +#: tbl_select.php:310 msgid "Ascending" msgstr "Зростаючий" -#: db_qbe.php:209 db_qbe.php:250 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:527 libraries/display_tbl.lib.php:824 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:260 -#: tbl_select.php:312 +#: db_qbe.php:206 db_qbe.php:247 libraries/db_structure.lib.php:110 +#: libraries/display_tbl.lib.php:526 libraries/display_tbl.lib.php:823 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:258 +#: tbl_select.php:311 msgid "Descending" msgstr "Спадаючий" -#: db_qbe.php:263 db_tracking.php:77 libraries/display_tbl.lib.php:307 -#: tbl_change.php:275 tbl_tracking.php:596 +#: db_qbe.php:260 db_tracking.php:73 libraries/display_tbl.lib.php:306 +#: tbl_change.php:270 tbl_tracking.php:591 msgid "Show" msgstr "Показати" -#: db_qbe.php:299 +#: db_qbe.php:296 msgid "Criteria" msgstr "Критерій" -#: db_qbe.php:352 db_qbe.php:434 db_qbe.php:526 db_qbe.php:557 +#: db_qbe.php:349 db_qbe.php:431 db_qbe.php:523 db_qbe.php:554 msgid "Ins" msgstr "Вставити" -#: db_qbe.php:356 db_qbe.php:438 db_qbe.php:523 db_qbe.php:554 +#: db_qbe.php:353 db_qbe.php:435 db_qbe.php:520 db_qbe.php:551 msgid "And" msgstr "І" -#: db_qbe.php:365 db_qbe.php:446 db_qbe.php:528 db_qbe.php:559 +#: db_qbe.php:362 db_qbe.php:443 db_qbe.php:525 db_qbe.php:556 msgid "Del" msgstr "Видалити" -#: db_qbe.php:369 db_qbe.php:450 db_qbe.php:521 db_qbe.php:552 -#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:778 -#: server_privileges.php:297 tbl_change.php:1027 tbl_indexes.php:249 -#: tbl_select.php:285 +#: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 +#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:777 +#: server_privileges.php:296 tbl_change.php:925 tbl_indexes.php:248 +#: tbl_select.php:284 msgid "Or" msgstr "або" -#: db_qbe.php:506 +#: db_qbe.php:503 msgid "Modify" msgstr "Змінити" -#: db_qbe.php:583 +#: db_qbe.php:580 #, fuzzy #| msgid "Add/Delete Criteria Row" msgid "Add/Delete criteria rows" msgstr "Додати/забрати рядок критерію" -#: db_qbe.php:595 +#: db_qbe.php:592 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Add/Delete columns" msgstr "Додати/забрати колонку критерію" -#: db_qbe.php:608 db_qbe.php:633 +#: db_qbe.php:605 db_qbe.php:630 msgid "Update Query" msgstr "Доповнити запит" -#: db_qbe.php:616 +#: db_qbe.php:613 msgid "Use Tables" msgstr "Використовувати таблиці" -#: db_qbe.php:639 +#: db_qbe.php:636 #, php-format msgid "SQL query on database %s:" msgstr "SQL-запит до БД %s:" -#: db_qbe.php:933 libraries/common.lib.php:1222 +#: db_qbe.php:930 libraries/common.lib.php:1215 msgid "Submit Query" msgstr "Виконати запит" @@ -515,17 +487,17 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s співпадіння у таблиці %s" msgstr[1] "%s співпадіння у таблиці %s" -#: db_search.php:249 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2831 -#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:49 -#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:466 +#: db_search.php:249 db_structure.php:75 db_structure.php:76 +#: db_structure.php:88 db_structure.php:90 db_structure.php:101 +#: db_structure.php:103 libraries/common.lib.php:2836 +#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 +#: tbl_structure.php:35 tbl_structure.php:47 tbl_structure.php:464 msgid "Browse" msgstr "Переглянути" -#: db_search.php:254 libraries/display_tbl.lib.php:1164 -#: libraries/display_tbl.lib.php:2055 libraries/sql_query_form.lib.php:453 -#: pdf_pages.php:285 pdf_pages.php:424 pdf_pages.php:460 pdf_pages.php:488 +#: db_search.php:254 libraries/display_tbl.lib.php:1163 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 msgid "Delete" @@ -565,226 +537,232 @@ msgstr "Всередині таблиць:" msgid "Inside column:" msgstr "Всередині таблиць:" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2830 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:75 +#: db_structure.php:79 db_structure.php:80 db_structure.php:92 +#: db_structure.php:93 db_structure.php:105 db_structure.php:106 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 +#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Вставити" -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2827 libraries/common.lib.php:2834 -#: libraries/db_links.inc.php:62 libraries/export/htmlword.php:22 +#: db_structure.php:81 db_structure.php:94 db_structure.php:107 +#: libraries/common.lib.php:2832 libraries/common.lib.php:2839 +#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 -#: libraries/tbl_links.inc.php:55 pmd_general.php:133 -#: server_privileges.php:593 server_replication.php:314 tbl_tracking.php:268 +#: libraries/tbl_links.inc.php:54 pmd_general.php:133 +#: server_privileges.php:592 server_replication.php:313 tbl_tracking.php:263 msgid "Structure" msgstr "Структура" -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:544 db_structure.php:545 db_tracking.php:90 -#: libraries/Index.class.php:482 libraries/common.lib.php:1659 -#: libraries/db_links.inc.php:99 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:126 -#: server_databases.php:351 tbl_structure.php:26 tbl_structure.php:150 -#: tbl_structure.php:151 tbl_structure.php:470 +#: db_structure.php:82 db_structure.php:83 db_structure.php:95 +#: db_structure.php:96 db_structure.php:108 db_structure.php:109 +#: db_structure.php:530 db_structure.php:531 db_tracking.php:86 +#: libraries/Index.class.php:482 libraries/common.lib.php:1663 +#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 +#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 +#: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" msgstr "Знищити" -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:542 db_structure.php:543 libraries/common.lib.php:1658 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:104 +#: db_structure.php:84 db_structure.php:85 db_structure.php:97 +#: db_structure.php:98 db_structure.php:110 db_structure.php:111 +#: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 +#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 msgid "Empty" msgstr "Очистити" -#: db_structure.php:315 libraries/tbl_links.inc.php:99 +#: db_structure.php:301 libraries/tbl_links.inc.php:98 #, php-format msgid "Table %s has been emptied" msgstr "Таблицю %s було очищено" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "View %s has been dropped" msgstr "" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "Table %s has been dropped" msgstr "Таблицю %s було знищено" -#: db_structure.php:332 +#: db_structure.php:318 msgid "Tracking is active." msgstr "" -#: db_structure.php:334 +#: db_structure.php:320 msgid "Tracking is not active." msgstr "" -#: db_structure.php:419 libraries/display_tbl.lib.php:1943 +#: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -#: db_structure.php:433 db_structure.php:447 libraries/header.inc.php:125 -#: libraries/tbl_info.inc.php:65 tbl_structure.php:184 test/theme.php:73 +#: db_structure.php:419 db_structure.php:433 libraries/header.inc.php:125 +#: libraries/tbl_info.inc.php:60 tbl_structure.php:183 test/theme.php:73 msgid "View" msgstr "" -#: db_structure.php:484 libraries/db_structure.lib.php:40 -#: libraries/server_links.inc.php:69 server_replication.php:32 -#: server_replication.php:163 server_status.php:368 +#: db_structure.php:470 libraries/db_structure.lib.php:40 +#: libraries/server_links.inc.php:69 server_replication.php:31 +#: server_replication.php:162 server_status.php:368 msgid "Replication" msgstr "" -#: db_structure.php:488 +#: db_structure.php:474 msgid "Sum" msgstr "Всього" -#: db_structure.php:495 libraries/StorageEngine.class.php:349 +#: db_structure.php:481 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: db_structure.php:523 db_structure.php:540 db_structure.php:541 -#: libraries/display_tbl.lib.php:2080 libraries/display_tbl.lib.php:2085 -#: libraries/mult_submits.inc.php:15 server_databases.php:345 -#: server_databases.php:350 server_privileges.php:1588 tbl_structure.php:454 -#: tbl_structure.php:463 +#: db_structure.php:509 db_structure.php:526 db_structure.php:527 +#: libraries/display_tbl.lib.php:2039 libraries/display_tbl.lib.php:2044 +#: libraries/mult_submits.inc.php:15 server_databases.php:343 +#: server_databases.php:348 server_privileges.php:1592 tbl_structure.php:452 +#: tbl_structure.php:461 msgid "With selected:" msgstr "З відміченими:" -#: db_structure.php:526 libraries/display_tbl.lib.php:2075 -#: server_databases.php:347 server_privileges.php:569 -#: server_privileges.php:1591 tbl_structure.php:457 +#: db_structure.php:512 libraries/display_tbl.lib.php:2034 +#: server_databases.php:345 server_privileges.php:568 +#: server_privileges.php:1595 tbl_structure.php:455 msgid "Check All" msgstr "Відмітити все" -#: db_structure.php:530 libraries/display_tbl.lib.php:2076 -#: libraries/replication_gui.lib.php:35 server_databases.php:349 -#: server_privileges.php:572 server_privileges.php:1595 tbl_structure.php:461 +#: db_structure.php:516 libraries/display_tbl.lib.php:2035 +#: libraries/replication_gui.lib.php:35 server_databases.php:347 +#: server_privileges.php:571 server_privileges.php:1599 tbl_structure.php:459 msgid "Uncheck All" msgstr "Зняти усі відмітки" -#: db_structure.php:535 +#: db_structure.php:521 msgid "Check tables having overhead" msgstr "" -#: db_structure.php:546 db_structure.php:547 db_structure.php:598 -#: libraries/display_tbl.lib.php:2179 libraries/mult_submits.inc.php:27 -#: tbl_structure.php:491 tbl_structure.php:493 +#: db_structure.php:532 db_structure.php:533 db_structure.php:584 +#: libraries/display_tbl.lib.php:2138 libraries/mult_submits.inc.php:27 +#: tbl_structure.php:489 tbl_structure.php:491 msgid "Print view" msgstr "Версія для друку" -#: db_structure.php:548 db_structure.php:549 libraries/mult_submits.inc.php:41 -#: tbl_operations.php:580 +#: db_structure.php:534 db_structure.php:535 libraries/mult_submits.inc.php:41 +#: tbl_operations.php:578 msgid "Check table" msgstr "Перевірити таблицю" -#: db_structure.php:550 db_structure.php:551 libraries/mult_submits.inc.php:46 -#: tbl_operations.php:620 tbl_structure.php:708 tbl_structure.php:710 +#: db_structure.php:536 db_structure.php:537 libraries/mult_submits.inc.php:46 +#: tbl_operations.php:618 tbl_structure.php:706 tbl_structure.php:708 msgid "Optimize table" msgstr "Оптимізувати таблицю" -#: db_structure.php:552 db_structure.php:553 libraries/mult_submits.inc.php:51 -#: tbl_operations.php:610 +#: db_structure.php:538 db_structure.php:539 libraries/mult_submits.inc.php:51 +#: tbl_operations.php:608 msgid "Repair table" msgstr "Ремонтувати таблицю" -#: db_structure.php:554 db_structure.php:555 libraries/mult_submits.inc.php:56 -#: tbl_operations.php:600 +#: db_structure.php:540 db_structure.php:541 libraries/mult_submits.inc.php:56 +#: tbl_operations.php:598 msgid "Analyze table" msgstr "Аналіз таблиці" -#: db_structure.php:556 db_structure.php:557 libraries/db_links.inc.php:70 -#: libraries/display_export.lib.php:82 libraries/display_tbl.lib.php:2093 -#: libraries/display_tbl.lib.php:2224 libraries/mult_submits.inc.php:61 -#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:81 -#: pmd_pdf.php:83 pmd_pdf.php:108 server_privileges.php:1372 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 +#: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 +#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 +#: pmd_pdf.php:81 pmd_pdf.php:106 server_privileges.php:1376 #: setup/frames/menu.inc.php:22 tbl_row_action.php:58 msgid "Export" msgstr "Експорт" -#: db_structure.php:605 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:591 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "Словник даних" -#: db_tracking.php:65 +#: db_tracking.php:61 msgid "Tracked tables" msgstr "" -#: db_tracking.php:70 libraries/export/htmlword.php:85 +#: db_tracking.php:66 libraries/export/htmlword.php:85 #: libraries/export/latex.php:152 libraries/export/odt.php:112 #: libraries/export/sql.php:339 libraries/export/texytext.php:84 #: libraries/export/xml.php:254 libraries/header.inc.php:105 -#: libraries/header_printview.inc.php:57 server_databases.php:168 -#: server_privileges.php:1652 server_privileges.php:1713 -#: server_privileges.php:1971 server_processlist.php:55 -#: server_synchronize.php:1178 server_synchronize.php:1182 -#: tbl_tracking.php:590 test/theme.php:64 +#: libraries/header_printview.inc.php:57 server_databases.php:166 +#: server_privileges.php:1656 server_privileges.php:1717 +#: server_privileges.php:1975 server_processlist.php:55 +#: server_synchronize.php:1177 server_synchronize.php:1181 +#: tbl_tracking.php:585 test/theme.php:64 msgid "Database" msgstr "БД" -#: db_tracking.php:72 +#: db_tracking.php:68 msgid "Last version" msgstr "" -#: db_tracking.php:73 tbl_tracking.php:593 +#: db_tracking.php:69 tbl_tracking.php:588 msgid "Created" msgstr "" -#: db_tracking.php:74 tbl_tracking.php:594 +#: db_tracking.php:70 tbl_tracking.php:589 msgid "Updated" msgstr "" -#: db_tracking.php:76 libraries/Index.class.php:439 -#: libraries/db_structure.lib.php:44 server_databases.php:202 -#: server_privileges.php:1534 server_privileges.php:1717 -#: server_privileges.php:2065 tbl_structure.php:186 +#: db_tracking.php:71 libraries/common.lib.php:1361 +#: libraries/server_links.inc.php:48 server_processlist.php:58 +#: tbl_tracking.php:590 test/theme.php:100 +msgid "Status" +msgstr "Статус" + +#: db_tracking.php:72 libraries/Index.class.php:439 +#: libraries/db_structure.lib.php:44 server_databases.php:200 +#: server_privileges.php:1538 server_privileges.php:1721 +#: server_privileges.php:2069 tbl_structure.php:185 msgid "Action" msgstr "Дія" -#: db_tracking.php:87 db_tracking.php:119 +#: db_tracking.php:83 db_tracking.php:115 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:105 tbl_tracking.php:547 tbl_tracking.php:605 -#: tbl_tracking.php:612 +#: db_tracking.php:101 tbl_tracking.php:542 tbl_tracking.php:600 +#: tbl_tracking.php:607 msgid "active" msgstr "" -#: db_tracking.php:107 tbl_tracking.php:549 tbl_tracking.php:607 -#: tbl_tracking.php:609 +#: db_tracking.php:103 tbl_tracking.php:544 tbl_tracking.php:602 +#: tbl_tracking.php:604 msgid "not active" msgstr "" -#: db_tracking.php:120 +#: db_tracking.php:116 msgid "Versions" msgstr "" -#: db_tracking.php:121 tbl_tracking.php:378 tbl_tracking.php:623 +#: db_tracking.php:117 tbl_tracking.php:373 tbl_tracking.php:618 msgid "Tracking report" msgstr "" -#: db_tracking.php:122 tbl_tracking.php:250 tbl_tracking.php:623 +#: db_tracking.php:118 tbl_tracking.php:245 tbl_tracking.php:618 msgid "Structure snapshot" msgstr "" -#: db_tracking.php:151 +#: db_tracking.php:147 msgid "Untracked tables" msgstr "" -#: db_tracking.php:171 db_tracking.php:173 tbl_structure.php:527 -#: tbl_structure.php:529 +#: db_tracking.php:167 db_tracking.php:169 tbl_structure.php:525 +#: tbl_structure.php:527 msgid "Track table" msgstr "" -#: db_tracking.php:199 +#: db_tracking.php:195 msgid "Database Log" msgstr "" @@ -792,12 +770,12 @@ msgstr "" msgid "Selected export type has to be saved in file!" msgstr "" -#: export.php:153 export.php:178 export.php:620 +#: export.php:152 export.php:177 export.php:615 #, php-format msgid "Insufficient space to save the file %s." msgstr "Бракує місця для збереження файлу %s." -#: export.php:287 +#: export.php:286 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -805,91 +783,91 @@ msgstr "" "Файл %s існує на сервері, прошу змінити назву файлу, або відмітити опцію " "заміни існуючих файлів." -#: export.php:291 export.php:295 +#: export.php:290 export.php:294 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Веб-сервер не має привілеїв для збереження файлу %s." -#: export.php:622 +#: export.php:617 #, php-format msgid "Dump has been saved to file %s." msgstr "Dump збережено у файл %s." -#: import.php:59 +#: 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." msgstr "" -#: import.php:278 import.php:331 libraries/File.class.php:840 -#: libraries/File.class.php:950 +#: import.php:277 import.php:330 libraries/File.class.php:566 +#: libraries/File.class.php:676 msgid "File could not be read" msgstr "Неможливо прочитати файл" -#: import.php:286 import.php:295 import.php:314 import.php:323 -#: libraries/File.class.php:1020 libraries/File.class.php:1028 -#: libraries/File.class.php:1044 libraries/File.class.php:1052 +#: import.php:285 import.php:294 import.php:313 import.php:322 +#: libraries/File.class.php:746 libraries/File.class.php:754 +#: libraries/File.class.php:770 libraries/File.class.php:778 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." msgstr "" -#: import.php:336 +#: import.php:335 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " "[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." msgstr "" -#: import.php:371 libraries/display_import.lib.php:23 +#: import.php:370 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:396 +#: import.php:395 msgid "The bookmark has been deleted." msgstr "Закладку було видалено." -#: import.php:400 +#: import.php:399 msgid "Showing bookmark" msgstr "" -#: import.php:402 sql.php:625 +#: import.php:401 sql.php:618 #, php-format msgid "Bookmark %s created" msgstr "" -#: import.php:408 import.php:414 +#: import.php:407 import.php:413 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" -#: import.php:423 +#: import.php:422 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: import.php:425 +#: import.php:424 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." msgstr "" -#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:240 +#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:239 #: user_password.php:110 msgid "Back" msgstr "Назад" -#: index.php:188 +#: index.php:183 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "Для роботи phpMyAdmin потрібно браузер з підтримкою фреймів." -#: js/messages.php:25 server_synchronize.php:344 server_synchronize.php:356 -#: server_synchronize.php:372 server_synchronize.php:379 -#: server_synchronize.php:738 server_synchronize.php:766 -#: server_synchronize.php:794 server_synchronize.php:806 +#: js/messages.php:25 server_synchronize.php:343 server_synchronize.php:355 +#: server_synchronize.php:371 server_synchronize.php:378 +#: server_synchronize.php:737 server_synchronize.php:765 +#: server_synchronize.php:793 server_synchronize.php:805 msgid "Click to select" msgstr "" @@ -897,15 +875,15 @@ msgstr "" msgid "Click to unselect" msgstr "" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:88 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:87 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Оператори \"DROP DATABASE\" заборонені." -#: js/messages.php:30 libraries/mult_submits.inc.php:257 sql.php:187 +#: js/messages.php:30 libraries/mult_submits.inc.php:256 sql.php:186 msgid "Do you really want to " msgstr "Ви насправді хочете " -#: js/messages.php:31 libraries/mult_submits.inc.php:257 sql.php:171 +#: js/messages.php:31 libraries/mult_submits.inc.php:256 sql.php:170 msgid "You are about to DESTROY a complete database!" msgstr "" @@ -934,11 +912,11 @@ msgstr "Порожнє ім'я хоста!" msgid "The user name is empty!" msgstr "Порожнє і'мя користувача!" -#: js/messages.php:44 server_privileges.php:1228 user_password.php:65 +#: js/messages.php:44 server_privileges.php:1229 user_password.php:65 msgid "The password is empty!" msgstr "Порожній пароль!" -#: js/messages.php:45 server_privileges.php:1226 user_password.php:68 +#: js/messages.php:45 server_privileges.php:1227 user_password.php:68 msgid "The passwords aren't the same!" msgstr "Паролі не однакові!" @@ -946,27 +924,27 @@ msgstr "Паролі не однакові!" msgid "Cancel" msgstr "" -#: js/messages.php:52 pmd_save_pos.php:53 +#: js/messages.php:52 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "Модифікації було збережено" -#: js/messages.php:53 pmd_relation_upd.php:48 +#: js/messages.php:53 pmd_relation_upd.php:47 msgid "Relation deleted" msgstr "" -#: js/messages.php:54 pmd_relation_new.php:63 +#: js/messages.php:54 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:55 pmd_relation_new.php:85 +#: js/messages.php:55 pmd_relation_new.php:84 msgid "Internal relation added" msgstr "" -#: js/messages.php:56 pmd_relation_new.php:62 pmd_relation_new.php:87 +#: js/messages.php:56 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:57 pmd_relation_new.php:30 +#: js/messages.php:57 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "" @@ -974,13 +952,13 @@ msgstr "" msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:59 libraries/relation.lib.php:94 -#: libraries/relation.lib.php:106 +#: js/messages.php:59 libraries/relation.lib.php:89 +#: libraries/relation.lib.php:101 msgid "General relation features" msgstr "Загальні можливості" -#: js/messages.php:59 libraries/relation.lib.php:88 -#: libraries/relation.lib.php:95 +#: js/messages.php:59 libraries/relation.lib.php:83 +#: libraries/relation.lib.php:90 msgid "Disabled" msgstr "заблоковано" @@ -996,7 +974,7 @@ msgstr "" msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:547 +#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" @@ -1027,10 +1005,10 @@ msgid "Prev" msgstr "Назад" #. l10n: Display text for next month link in calendar -#: js/messages.php:81 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:337 -#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:422 -#: tbl_structure.php:800 +#: js/messages.php:81 libraries/common.lib.php:2358 +#: libraries/common.lib.php:2361 libraries/display_tbl.lib.php:336 +#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 +#: tbl_structure.php:798 msgid "Next" msgstr "Дальше" @@ -1104,27 +1082,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1562 +#: js/messages.php:101 libraries/common.lib.php:1566 msgid "Jan" msgstr "Січ" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1564 +#: js/messages.php:103 libraries/common.lib.php:1568 msgid "Feb" msgstr "Лют" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1566 +#: js/messages.php:105 libraries/common.lib.php:1570 msgid "Mar" msgstr "Бер" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1568 +#: js/messages.php:107 libraries/common.lib.php:1572 msgid "Apr" msgstr "Квт" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1570 +#: js/messages.php:109 libraries/common.lib.php:1574 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1132,37 +1110,37 @@ msgid "May" msgstr "Трв" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1572 +#: js/messages.php:111 libraries/common.lib.php:1576 msgid "Jun" msgstr "Чрв" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1574 +#: js/messages.php:113 libraries/common.lib.php:1578 msgid "Jul" msgstr "Лип" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1576 +#: js/messages.php:115 libraries/common.lib.php:1580 msgid "Aug" msgstr "Сер" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1578 +#: js/messages.php:117 libraries/common.lib.php:1582 msgid "Sep" msgstr "Вер" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1580 +#: js/messages.php:119 libraries/common.lib.php:1584 msgid "Oct" msgstr "Жов" #. l10n: Short month name -#: js/messages.php:121 libraries/common.lib.php:1582 +#: js/messages.php:121 libraries/common.lib.php:1586 msgid "Nov" msgstr "Лис" #. l10n: Short month name -#: js/messages.php:123 libraries/common.lib.php:1584 +#: js/messages.php:123 libraries/common.lib.php:1588 msgid "Dec" msgstr "Гру" @@ -1203,37 +1181,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1587 +#: js/messages.php:136 libraries/common.lib.php:1591 msgid "Sun" msgstr "Нд" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1589 +#: js/messages.php:138 libraries/common.lib.php:1593 msgid "Mon" msgstr "Пн" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1591 +#: js/messages.php:140 libraries/common.lib.php:1595 msgid "Tue" msgstr "Вт" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1593 +#: js/messages.php:142 libraries/common.lib.php:1597 msgid "Wed" msgstr "Ср" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1595 +#: js/messages.php:144 libraries/common.lib.php:1599 msgid "Thu" msgstr "Чт" #. l10n: Short week day name -#: js/messages.php:146 libraries/common.lib.php:1597 +#: js/messages.php:146 libraries/common.lib.php:1601 msgid "Fri" msgstr "Пт" #. l10n: Short week day name -#: js/messages.php:148 libraries/common.lib.php:1599 +#: js/messages.php:148 libraries/common.lib.php:1603 msgid "Sat" msgstr "Сб" @@ -1311,74 +1289,73 @@ msgstr "за секунду" msgid "Font size" msgstr "" -#: libraries/File.class.php:336 libraries/File.class.php:424 -#: libraries/File.class.php:561 libraries/File.class.php:700 -msgid "Unknown error in file upload." -msgstr "" - -#: libraries/File.class.php:406 +#: libraries/File.class.php:315 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:409 +#: libraries/File.class.php:318 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:412 +#: libraries/File.class.php:321 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:415 +#: libraries/File.class.php:324 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:418 +#: libraries/File.class.php:327 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:421 +#: libraries/File.class.php:330 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:898 +#: libraries/File.class.php:333 +msgid "Unknown error in file upload." +msgstr "" + +#: libraries/File.class.php:624 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "" -#: libraries/Index.class.php:427 tbl_relation.php:528 +#: libraries/Index.class.php:427 tbl_relation.php:526 msgid "No index defined!" msgstr "Індекс не визначено!" -#: libraries/Index.class.php:432 server_databases.php:131 tbl_tracking.php:315 +#: libraries/Index.class.php:432 server_databases.php:129 tbl_tracking.php:310 msgid "Indexes" msgstr "Індекси" #: libraries/Index.class.php:443 libraries/mult_submits.inc.php:102 -#: libraries/tbl_properties.inc.php:518 tbl_structure.php:32 -#: tbl_structure.php:154 tbl_structure.php:158 tbl_structure.php:473 -#: tbl_tracking.php:321 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:31 +#: tbl_structure.php:153 tbl_structure.php:157 tbl_structure.php:471 +#: tbl_tracking.php:316 msgid "Unique" msgstr "Унікальне" -#: libraries/Index.class.php:444 tbl_tracking.php:322 +#: libraries/Index.class.php:444 tbl_tracking.php:317 msgid "Packed" msgstr "" -#: libraries/Index.class.php:446 tbl_tracking.php:324 +#: libraries/Index.class.php:446 tbl_tracking.php:319 msgid "Cardinality" msgstr "Кількість елементів" -#: libraries/Index.class.php:449 tbl_tracking.php:278 tbl_tracking.php:327 +#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322 msgid "Comment" msgstr "" #: libraries/Index.class.php:465 libraries/common.lib.php:609 -#: libraries/common.lib.php:1198 libraries/display_tbl.lib.php:1116 +#: libraries/common.lib.php:1191 libraries/display_tbl.lib.php:1115 #: libraries/import.lib.php:1119 libraries/import.lib.php:1143 -#: pdf_pages.php:284 setup/frames/index.inc.php:124 +#: pdf_pages.php:283 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:349 tbl_row_action.php:68 msgid "Edit" msgstr "Редагувати" @@ -1400,15 +1377,15 @@ msgid "" msgstr "" #: libraries/List_Database.class.php:430 libraries/server_links.inc.php:40 -#: server_databases.php:87 server_privileges.php:1652 +#: server_databases.php:85 server_privileges.php:1656 #: setup/lib/messages.inc.php:107 test/theme.php:92 msgid "Databases" msgstr "Бази Даних" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:259 libraries/import.lib.php:134 pdf_schema.php:31 -#: pdf_schema.php:231 tbl_change.php:1023 tbl_operations.php:212 -#: tbl_relation.php:289 view_operations.php:61 +#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 +#: tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Помилка" @@ -1433,40 +1410,40 @@ msgid_plural "%1$d rows inserted." msgstr[0] "" msgstr[1] "" -#: libraries/StorageEngine.class.php:196 +#: libraries/StorageEngine.class.php:194 msgid "" "There is no detailed status information available for this storage engine." msgstr "" -#: libraries/StorageEngine.class.php:352 +#: libraries/StorageEngine.class.php:354 #, php-format msgid "%s is available on this MySQL server." msgstr "" -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:357 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "" -#: libraries/StorageEngine.class.php:359 +#: libraries/StorageEngine.class.php:361 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "" -#: libraries/Table.class.php:1018 +#: libraries/Table.class.php:1017 msgid "Invalid database" msgstr "" -#: libraries/Table.class.php:1032 tbl_get_field.php:25 +#: libraries/Table.class.php:1031 tbl_get_field.php:25 msgid "Invalid table name" msgstr "" -#: libraries/Table.class.php:1047 +#: libraries/Table.class.php:1046 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "" -#: libraries/Table.class.php:1131 +#: libraries/Table.class.php:1129 #, php-format msgid "Table %s has been renamed to %s" msgstr "Таблицю %s було перейменовано в %s" @@ -1484,22 +1461,22 @@ msgstr "" msgid "take it" msgstr "" -#: libraries/Theme_Manager.class.php:114 +#: libraries/Theme_Manager.class.php:109 #, php-format msgid "Default theme %s not found!" msgstr "" -#: libraries/Theme_Manager.class.php:152 +#: libraries/Theme_Manager.class.php:147 #, php-format msgid "Theme %s not found!" msgstr "" -#: libraries/Theme_Manager.class.php:220 +#: libraries/Theme_Manager.class.php:215 #, php-format msgid "Theme path not found for theme %s!" msgstr "" -#: libraries/Theme_Manager.class.php:296 test/theme.php:160 themes.php:20 +#: libraries/Theme_Manager.class.php:291 test/theme.php:160 themes.php:20 #: themes.php:40 msgid "Theme / Style" msgstr "" @@ -1610,19 +1587,19 @@ msgstr "" msgid "Authenticating..." msgstr "" -#: libraries/blobstreaming.lib.php:689 +#: libraries/blobstreaming.lib.php:340 msgid "View image" msgstr "" -#: libraries/blobstreaming.lib.php:693 +#: libraries/blobstreaming.lib.php:344 msgid "Play audio" msgstr "" -#: libraries/blobstreaming.lib.php:698 +#: libraries/blobstreaming.lib.php:349 msgid "View video" msgstr "" -#: libraries/blobstreaming.lib.php:702 +#: libraries/blobstreaming.lib.php:353 msgid "Download file" msgstr "" @@ -1676,7 +1653,7 @@ msgstr "Сервер" msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:909 +#: libraries/common.inc.php:908 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" @@ -1701,7 +1678,8 @@ msgstr "" #: libraries/common.lib.php:425 libraries/common.lib.php:427 #: libraries/common.lib.php:429 libraries/common.lib.php:445 #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 -#: libraries/display_export.lib.php:163 libraries/relation.lib.php:84 +#: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 +#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 #: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" @@ -1716,146 +1694,146 @@ msgstr "SQL-запит" msgid "MySQL said: " msgstr "Відповідь MySQL: " -#: libraries/common.lib.php:1136 +#: libraries/common.lib.php:1129 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1174 setup/lib/messages.inc.php:350 +#: libraries/common.lib.php:1167 setup/lib/messages.inc.php:350 msgid "Explain SQL" msgstr "Тлумачити SQL" -#: libraries/common.lib.php:1177 +#: libraries/common.lib.php:1170 msgid "Skip Explain SQL" msgstr "Не тлумачити SQL" -#: libraries/common.lib.php:1211 +#: libraries/common.lib.php:1204 msgid "Without PHP Code" msgstr "без PHP коду" -#: libraries/common.lib.php:1214 setup/lib/messages.inc.php:352 +#: libraries/common.lib.php:1207 setup/lib/messages.inc.php:352 msgid "Create PHP Code" msgstr "Створити PHP код" -#: libraries/common.lib.php:1232 server_status.php:451 +#: libraries/common.lib.php:1225 server_status.php:451 #: setup/lib/messages.inc.php:351 msgid "Refresh" msgstr "" -#: libraries/common.lib.php:1241 +#: libraries/common.lib.php:1234 msgid "Skip Validate SQL" msgstr "Не перевіряти SQL" -#: libraries/common.lib.php:1244 setup/lib/messages.inc.php:353 +#: libraries/common.lib.php:1237 setup/lib/messages.inc.php:353 msgid "Validate SQL" msgstr "Перевірити SQL" -#: libraries/common.lib.php:1283 +#: libraries/common.lib.php:1287 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1285 +#: libraries/common.lib.php:1289 msgid "Inline" msgstr "" -#: libraries/common.lib.php:1339 libraries/common.lib.php:1354 +#: libraries/common.lib.php:1343 libraries/common.lib.php:1358 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1358 libraries/tbl_triggers.lib.php:27 +#: libraries/common.lib.php:1362 libraries/tbl_triggers.lib.php:27 #: server_processlist.php:57 msgid "Time" msgstr "Час" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "B" msgstr "Байт" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "KiB" msgstr "кБ" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "MiB" msgstr "МБ" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "GiB" msgstr "ГБ" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "TiB" msgstr "TB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "PiB" msgstr "PB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "EiB" msgstr "EB" #. l10n: Thousands separator -#: libraries/common.lib.php:1424 +#: libraries/common.lib.php:1428 msgid "," msgstr "," #. l10n: Decimal separator -#: libraries/common.lib.php:1426 +#: libraries/common.lib.php:1430 msgid "." msgstr "." #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1603 +#: libraries/common.lib.php:1607 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d %Y р., %H:%M" -#: libraries/common.lib.php:1909 +#: libraries/common.lib.php:1913 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s днів, %s годин, %s хвилин і %s секунд" -#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 -#: libraries/display_tbl.lib.php:289 server_status.php:718 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 +#: libraries/display_tbl.lib.php:288 server_status.php:718 msgid "Begin" msgstr "Початок" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 -#: libraries/display_tbl.lib.php:290 server_binlog.php:154 +#: libraries/common.lib.php:2328 libraries/common.lib.php:2331 +#: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "Назад" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 -#: libraries/display_tbl.lib.php:352 +#: libraries/common.lib.php:2359 libraries/common.lib.php:2362 +#: libraries/display_tbl.lib.php:351 msgid "End" msgstr "Кінець" -#: libraries/common.lib.php:2429 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "Перейти до бази даних "%s"." -#: libraries/common.lib.php:2448 +#: libraries/common.lib.php:2453 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2828 libraries/common.lib.php:2835 -#: libraries/db_links.inc.php:67 libraries/export/sql.php:24 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 +#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 -#: libraries/tbl_links.inc.php:59 querywindow.php:89 test/theme.php:96 +#: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2837 libraries/db_links.inc.php:103 -#: libraries/tbl_links.inc.php:94 libraries/tbl_links.inc.php:116 -#: view_operations.php:88 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: view_operations.php:87 msgid "Operations" msgstr "Операцій" -#: libraries/core.lib.php:282 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1871,38 +1849,38 @@ msgstr "" msgid "Name" msgstr "Назва" -#: libraries/db_links.inc.php:44 +#: libraries/db_links.inc.php:43 #, php-format msgid "Database %s has been dropped." msgstr "Базу даних %s знищено." -#: libraries/db_links.inc.php:56 libraries/db_links.inc.php:57 -#: libraries/db_links.inc.php:58 +#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 +#: libraries/db_links.inc.php:57 msgid "Database seems to be empty!" msgstr "" -#: libraries/db_links.inc.php:80 libraries/relation.lib.php:142 -#: libraries/tbl_links.inc.php:68 +#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:85 +#: libraries/db_links.inc.php:84 msgid "Query" msgstr "Запит згідно прикладу" -#: libraries/db_links.inc.php:90 libraries/relation.lib.php:138 +#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:97 libraries/server_links.inc.php:87 -#: libraries/tbl_links.inc.php:90 pmd_pdf.php:83 pmd_pdf.php:109 +#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "" -#: libraries/db_links.inc.php:110 libraries/server_links.inc.php:65 -#: server_privileges.php:111 server_privileges.php:1714 -#: server_privileges.php:2063 test/theme.php:116 +#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: server_privileges.php:110 server_privileges.php:1718 +#: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" msgstr "Привілеї" @@ -1914,14 +1892,14 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1847 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1806 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "" -#: libraries/db_structure.lib.php:60 server_databases.php:141 -#: tbl_printview.php:334 tbl_structure.php:681 +#: libraries/db_structure.lib.php:60 server_databases.php:139 +#: tbl_printview.php:333 tbl_structure.php:679 msgid "Overhead" msgstr "Надмірні видатки" @@ -1938,7 +1916,7 @@ msgstr "" msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "" -#: libraries/dbi/mysql.dbi.lib.php:358 tbl_structure.php:607 +#: libraries/dbi/mysql.dbi.lib.php:358 tbl_structure.php:605 msgid "Details..." msgstr "" @@ -1948,22 +1926,22 @@ msgid "Change password" msgstr "Змінити пароль" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:807 +#: libraries/replication_gui.lib.php:347 server_privileges.php:806 msgid "No Password" msgstr "Без паролю" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1530 server_synchronize.php:1174 +#: libraries/replication_gui.lib.php:351 server_privileges.php:795 +#: server_privileges.php:799 server_privileges.php:810 +#: server_privileges.php:1534 server_synchronize.php:1173 msgid "Password" msgstr "Пароль" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:815 server_privileges.php:818 +#: server_privileges.php:814 server_privileges.php:817 msgid "Re-type" msgstr "Підтвердження" @@ -1984,8 +1962,8 @@ msgstr "Створити нову БД" msgid "Create" msgstr "Створити" -#: libraries/display_create_database.lib.php:39 server_privileges.php:113 -#: server_privileges.php:1419 server_replication.php:34 +#: libraries/display_create_database.lib.php:39 server_privileges.php:112 +#: server_privileges.php:1423 server_replication.php:33 msgid "No Privileges" msgstr "Без привілеїв" @@ -2006,50 +1984,50 @@ msgstr "Створити нову таблицю в БД %s" msgid "Number of columns" msgstr "записів на сторінці" -#: libraries/display_export.lib.php:41 +#: libraries/display_export.lib.php:35 msgid "Could not load export plugins, please check your installation!" msgstr "" -#: libraries/display_export.lib.php:106 +#: libraries/display_export.lib.php:100 #, fuzzy, php-format #| msgid "Dump %s row(s) starting at record # %s" msgid "Dump %s row(s) starting at row # %s" msgstr "Зґенерувати дамп %s рядків починаючи з %s -го." -#: libraries/display_export.lib.php:114 +#: libraries/display_export.lib.php:108 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:124 setup/lib/messages.inc.php:79 +#: libraries/display_export.lib.php:118 setup/lib/messages.inc.php:79 msgid "Save as file" msgstr "Відіслати" -#: libraries/display_export.lib.php:133 +#: libraries/display_export.lib.php:127 #, php-format msgid "Save on server in %s directory" msgstr "Зберегти на сервері в каталогу %s " -#: libraries/display_export.lib.php:141 setup/lib/messages.inc.php:87 +#: libraries/display_export.lib.php:135 setup/lib/messages.inc.php:87 msgid "Overwrite existing file(s)" msgstr "Заміняти існуючі файли" -#: libraries/display_export.lib.php:147 +#: libraries/display_export.lib.php:141 msgid "File name template" msgstr "Шаблон назви файлу" -#: libraries/display_export.lib.php:151 +#: libraries/display_export.lib.php:145 msgid "server name" msgstr "" -#: libraries/display_export.lib.php:154 +#: libraries/display_export.lib.php:148 msgid "database name" msgstr "" -#: libraries/display_export.lib.php:157 +#: libraries/display_export.lib.php:151 msgid "table name" msgstr "" -#: libraries/display_export.lib.php:161 +#: libraries/display_export.lib.php:155 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2057,39 +2035,39 @@ msgid "" "%3$s. Other text will be kept as is." msgstr "" -#: libraries/display_export.lib.php:202 +#: libraries/display_export.lib.php:196 msgid "remember template" msgstr "запам'ятати шаблон" -#: libraries/display_export.lib.php:210 libraries/display_import.lib.php:177 +#: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 #: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 msgid "Character set of the file:" msgstr "Кодування файлу:" -#: libraries/display_export.lib.php:235 setup/lib/messages.inc.php:81 +#: libraries/display_export.lib.php:229 setup/lib/messages.inc.php:81 msgid "Compression" msgstr "Стискання" -#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:196 -#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:529 -#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:574 -#: server_privileges.php:1867 server_processlist.php:74 +#: libraries/display_export.lib.php:234 libraries/display_import.lib.php:196 +#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:528 +#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:573 +#: server_privileges.php:1871 server_processlist.php:74 msgid "None" msgstr "Немає" -#: libraries/display_export.lib.php:247 +#: libraries/display_export.lib.php:241 msgid "\"zipped\"" msgstr "запакувати в \"zip\"" -#: libraries/display_export.lib.php:253 +#: libraries/display_export.lib.php:247 msgid "\"gzipped\"" msgstr "запакувати в \"gzip\"" -#: libraries/display_export.lib.php:259 +#: libraries/display_export.lib.php:253 msgid "\"bzipped\"" msgstr "запакувати в \"bzip\"" -#: libraries/display_export.lib.php:274 libraries/export/sql.php:42 +#: libraries/display_export.lib.php:268 libraries/export/sql.php:42 #: libraries/import/sql.php:31 msgid "SQL compatibility mode" msgstr "" @@ -2124,12 +2102,12 @@ msgid "File uploads are not allowed on this server." msgstr "" #: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 -#: tbl_change.php:1024 +#: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "Встановлений Вами каталог для завантаження файлів недоступний" #: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 -#: tbl_change.php:1027 +#: tbl_change.php:925 msgid "web server upload directory" msgstr "каталог веб-сервера для завантаження файлів (upload directory)" @@ -2208,43 +2186,43 @@ msgstr "Формат паперу" msgid "Language" msgstr "" -#: libraries/display_tbl.lib.php:303 +#: libraries/display_tbl.lib.php:302 #, php-format msgid "%d is not valid row number." msgstr "" -#: libraries/display_tbl.lib.php:309 +#: libraries/display_tbl.lib.php:308 #, fuzzy #| msgid "row(s) starting from record #" msgid "row(s) starting from row #" msgstr "рядків з" -#: libraries/display_tbl.lib.php:315 +#: libraries/display_tbl.lib.php:314 msgid "horizontal" msgstr " горизонтально " -#: libraries/display_tbl.lib.php:316 +#: libraries/display_tbl.lib.php:315 msgid "horizontal (rotated headers)" msgstr "горизонтально (rotated headers)" -#: libraries/display_tbl.lib.php:317 +#: libraries/display_tbl.lib.php:316 msgid "vertical" msgstr " вертикально " -#: libraries/display_tbl.lib.php:323 +#: libraries/display_tbl.lib.php:322 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "-го %s і дублювати заголовки через кожні %s рядків " -#: libraries/display_tbl.lib.php:345 +#: libraries/display_tbl.lib.php:344 msgid "This operation could take a long time. Proceed anyway?" msgstr "" -#: libraries/display_tbl.lib.php:511 +#: libraries/display_tbl.lib.php:510 msgid "Sort by key" msgstr "" -#: libraries/display_tbl.lib.php:554 libraries/export/codegen.php:38 +#: libraries/display_tbl.lib.php:553 libraries/export/codegen.php:38 #: libraries/export/csv.php:29 libraries/export/excel.php:34 #: libraries/export/htmlword.php:28 libraries/export/latex.php:32 #: libraries/export/mediawiki.php:21 libraries/export/ods.php:26 @@ -2254,99 +2232,99 @@ msgstr "" #: libraries/export/xlsx.php:26 libraries/export/xml.php:23 #: libraries/export/yaml.php:27 libraries/import.lib.php:1114 #: libraries/import.lib.php:1136 libraries/import/csv.php:31 -#: libraries/import/docsql.php:33 libraries/import/ldi.php:46 +#: libraries/import/docsql.php:32 libraries/import/ldi.php:46 #: libraries/import/ods.php:30 libraries/import/sql.php:19 #: libraries/import/xls.php:25 libraries/import/xlsx.php:25 -#: libraries/import/xml.php:25 tbl_select.php:264 tbl_structure.php:752 +#: libraries/import/xml.php:25 tbl_select.php:263 tbl_structure.php:750 msgid "Options" msgstr "" -#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:569 +#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:568 msgid "Partial Texts" msgstr "Часткові тексти" -#: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:573 +#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:572 msgid "Full Texts" msgstr "Повні тексти" -#: libraries/display_tbl.lib.php:586 +#: libraries/display_tbl.lib.php:585 msgid "Relational key" msgstr "" -#: libraries/display_tbl.lib.php:587 +#: libraries/display_tbl.lib.php:586 #, fuzzy #| msgid "Relational schema" msgid "Relational display column" msgstr "Схема зв'язків" -#: libraries/display_tbl.lib.php:594 +#: libraries/display_tbl.lib.php:593 msgid "Show binary contents" msgstr "" -#: libraries/display_tbl.lib.php:596 +#: libraries/display_tbl.lib.php:595 msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:598 +#: libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "" -#: libraries/display_tbl.lib.php:606 pmd_general.php:140 tbl_change.php:312 -#: tbl_change.php:318 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:307 +#: tbl_change.php:313 msgid "Hide" msgstr "" -#: libraries/display_tbl.lib.php:606 libraries/relation.lib.php:122 -#: libraries/tbl_properties.inc.php:143 transformation_overview.php:46 +#: libraries/display_tbl.lib.php:605 libraries/relation.lib.php:117 +#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46 msgid "Browser transformation" msgstr "Перетворення МІМЕ-типу бровзером" -#: libraries/display_tbl.lib.php:1125 libraries/display_tbl.lib.php:1129 -#: libraries/display_tbl.lib.php:1131 +#: libraries/display_tbl.lib.php:1124 libraries/display_tbl.lib.php:1128 +#: libraries/display_tbl.lib.php:1130 msgid "Execute bookmarked query" msgstr "Виконати збережений запит" -#: libraries/display_tbl.lib.php:1144 libraries/display_tbl.lib.php:1156 +#: libraries/display_tbl.lib.php:1143 libraries/display_tbl.lib.php:1155 msgid "The row has been deleted" msgstr "Рядок видалено" -#: libraries/display_tbl.lib.php:1183 libraries/display_tbl.lib.php:2055 +#: libraries/display_tbl.lib.php:1182 libraries/display_tbl.lib.php:2014 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "Вбити" -#: libraries/display_tbl.lib.php:1933 +#: libraries/display_tbl.lib.php:1892 msgid "in query" msgstr "по запиту" -#: libraries/display_tbl.lib.php:1951 +#: libraries/display_tbl.lib.php:1910 msgid "Showing rows" msgstr "Показано записи " -#: libraries/display_tbl.lib.php:1961 +#: libraries/display_tbl.lib.php:1920 msgid "total" msgstr "всього" -#: libraries/display_tbl.lib.php:1969 sql.php:523 +#: libraries/display_tbl.lib.php:1928 sql.php:522 #, php-format msgid "Query took %01.4f sec" msgstr "Запит виконувався %01.4f сек" -#: libraries/display_tbl.lib.php:2088 libraries/mult_submits.inc.php:112 -#: querywindow.php:115 querywindow.php:119 querywindow.php:122 -#: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:469 +#: libraries/display_tbl.lib.php:2047 libraries/mult_submits.inc.php:112 +#: querywindow.php:114 querywindow.php:118 querywindow.php:121 +#: tbl_structure.php:23 tbl_structure.php:148 tbl_structure.php:467 msgid "Change" msgstr "Змінити" -#: libraries/display_tbl.lib.php:2158 +#: libraries/display_tbl.lib.php:2117 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2186 +#: libraries/display_tbl.lib.php:2145 msgid "Print view (with full texts)" msgstr "" -#: libraries/display_tbl.lib.php:2359 +#: libraries/display_tbl.lib.php:2318 msgid "Link not found" msgstr "Лінк не знайдено" @@ -2398,9 +2376,9 @@ msgstr "Статус InnoDB" msgid "Buffer Pool Usage" msgstr "" -#: libraries/engines/innodb.lib.php:168 server_databases.php:136 -#: server_databases.php:304 server_status.php:524 server_status.php:585 -#: server_status.php:606 tbl_printview.php:349 tbl_structure.php:695 +#: libraries/engines/innodb.lib.php:168 server_databases.php:134 +#: server_databases.php:302 server_status.php:524 server_status.php:585 +#: server_status.php:606 tbl_printview.php:348 tbl_structure.php:693 msgid "Total" msgstr "Разом" @@ -2522,6 +2500,77 @@ msgid "" "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." msgstr "" +#: libraries/engines/pbms.lib.php:31 +msgid "Garbage Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:32 +msgid "The percentage of garbage in a repository file before it is compacted." +msgstr "" + +#: libraries/engines/pbms.lib.php:36 libraries/replication_gui.lib.php:69 +#: server_synchronize.php:1161 +msgid "Port" +msgstr "" + +#: libraries/engines/pbms.lib.php:37 +msgid "" +"The port for the PBMS stream-based communications. Setting this value to 0 " +"will disable HTTP communication with the daemon." +msgstr "" + +#: libraries/engines/pbms.lib.php:41 +msgid "Repository Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:42 +msgid "" +"The maximum size of a BLOB repository file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:46 +msgid "Temp Blob Timeout" +msgstr "" + +#: libraries/engines/pbms.lib.php:47 +msgid "" +"The timeout, in seconds, for temporary BLOBs. Uploaded BLOB data is removed " +"after this time, unless they are referenced by a record in the database." +msgstr "" + +#: libraries/engines/pbms.lib.php:51 +msgid "Temp Log Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:52 +msgid "" +"The maximum size of a temporary BLOB log file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:56 +msgid "Max Keep Alive" +msgstr "" + +#: libraries/engines/pbms.lib.php:57 +msgid "" +"The timeout for inactive connection with the keep-alive flag set. After this " +"time the connection will be closed. The time-out is in milliseconds (1/1000)." +msgstr "" + +#: libraries/engines/pbms.lib.php:61 +msgid "Metadata Headers" +msgstr "" + +#: libraries/engines/pbms.lib.php:62 +msgid "" +"A \":\" delimited list of metadata headers to be used to initialize the " +"pbms_metadata_header table when a database is created." +msgstr "" + #: libraries/engines/pbxt.lib.php:22 msgid "Index cache size" msgstr "" @@ -2645,7 +2694,7 @@ msgid "" msgstr "" #: libraries/export/codegen.php:36 setup/lib/messages.inc.php:85 -#: tbl_printview.php:374 tbl_structure.php:736 +#: tbl_printview.php:373 tbl_structure.php:734 msgid "Format" msgstr "Формат" @@ -2716,9 +2765,9 @@ msgstr "" #: libraries/export/htmlword.php:23 libraries/export/latex.php:59 #: libraries/export/latex.php:205 libraries/export/odt.php:47 #: libraries/export/sql.php:105 libraries/export/sql.php:865 -#: libraries/export/texytext.php:27 server_databases.php:126 -#: server_privileges.php:576 server_replication.php:315 tbl_printview.php:315 -#: tbl_structure.php:664 +#: libraries/export/texytext.php:27 server_databases.php:124 +#: server_privileges.php:575 server_replication.php:314 tbl_printview.php:314 +#: tbl_structure.php:662 msgid "Data" msgstr "Дані" @@ -2767,13 +2816,13 @@ msgid "Label key" msgstr "" #: libraries/export/latex.php:46 libraries/export/odt.php:34 -#: libraries/export/sql.php:90 tbl_relation.php:398 +#: libraries/export/sql.php:90 tbl_relation.php:396 msgid "Relations" msgstr "Зв'язки" #: libraries/export/latex.php:52 libraries/export/odt.php:40 #: libraries/export/odt.php:317 libraries/export/sql.php:94 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "MIME-type" @@ -2781,10 +2830,10 @@ msgstr "MIME-type" #: libraries/export/xml.php:101 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1529 server_privileges.php:2061 -#: server_processlist.php:54 server_synchronize.php:1158 +#: libraries/replication_gui.lib.php:331 server_privileges.php:730 +#: server_privileges.php:733 server_privileges.php:789 +#: server_privileges.php:1533 server_privileges.php:2065 +#: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "Хост" @@ -2973,8 +3022,8 @@ msgstr "" msgid "Export contents" msgstr "" -#: libraries/footer.inc.php:182 libraries/footer.inc.php:193 -#: libraries/footer.inc.php:196 +#: libraries/footer.inc.php:180 libraries/footer.inc.php:191 +#: libraries/footer.inc.php:194 msgid "Open new phpMyAdmin window" msgstr "" @@ -2990,7 +3039,7 @@ msgstr "SQL result" msgid "Generated by" msgstr "Згенеровано" -#: libraries/import.lib.php:151 sql.php:519 tbl_change.php:180 +#: libraries/import.lib.php:151 sql.php:518 tbl_change.php:175 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL повернула пустий результат (тобто нуль рядків)." @@ -3046,7 +3095,7 @@ msgstr "" msgid "Column names in first row" msgstr "" -#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:501 +#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:500 #: view_create.php:147 msgid "Column names" msgstr "Назви колонок" @@ -3072,12 +3121,12 @@ msgstr "" msgid "Invalid column count in CSV input on line %d." msgstr "" -#: libraries/import/docsql.php:28 +#: libraries/import/docsql.php:27 msgid "DocSQL" msgstr "" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 -#: server_synchronize.php:427 server_synchronize.php:870 +#: libraries/import/docsql.php:30 libraries/tbl_properties.inc.php:616 +#: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "" @@ -3133,26 +3182,26 @@ msgstr "Немає" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:512 -#: tbl_structure.php:28 tbl_structure.php:152 tbl_structure.php:156 -#: tbl_structure.php:472 +#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:511 +#: tbl_structure.php:27 tbl_structure.php:151 tbl_structure.php:155 +#: tbl_structure.php:470 msgid "Primary" msgstr "Первинний" #: libraries/mult_submits.inc.php:97 libraries/tbl_properties.inc.php:115 -#: libraries/tbl_properties.inc.php:524 tbl_printview.php:324 -#: tbl_structure.php:30 tbl_structure.php:153 tbl_structure.php:157 -#: tbl_structure.php:474 tbl_structure.php:672 +#: libraries/tbl_properties.inc.php:523 tbl_printview.php:323 +#: tbl_structure.php:29 tbl_structure.php:152 tbl_structure.php:156 +#: tbl_structure.php:472 tbl_structure.php:670 msgid "Index" msgstr "Індекс" -#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:530 -#: tbl_structure.php:34 tbl_structure.php:155 tbl_structure.php:159 -#: tbl_structure.php:477 +#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:529 +#: tbl_structure.php:33 tbl_structure.php:154 tbl_structure.php:158 +#: tbl_structure.php:475 msgid "Fulltext" msgstr "ПовнТекст" -#: libraries/mult_submits.inc.php:434 tbl_replace.php:330 +#: libraries/mult_submits.inc.php:433 tbl_replace.php:330 msgid "No change" msgstr "Змін немає" @@ -3160,190 +3209,190 @@ msgstr "Змін немає" msgid "Charset" msgstr "Набір символів" -#: libraries/mysql_charsets.lib.php:210 libraries/mysql_charsets.lib.php:411 -#: tbl_change.php:515 +#: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 +#: tbl_change.php:510 msgid "Binary" msgstr " Двійковий " -#: libraries/mysql_charsets.lib.php:222 +#: libraries/mysql_charsets.lib.php:214 msgid "Bulgarian" msgstr "Болгарське" -#: libraries/mysql_charsets.lib.php:226 libraries/mysql_charsets.lib.php:351 +#: libraries/mysql_charsets.lib.php:218 libraries/mysql_charsets.lib.php:343 msgid "Simplified Chinese" msgstr "Китайське Спрощене" -#: libraries/mysql_charsets.lib.php:228 libraries/mysql_charsets.lib.php:371 +#: libraries/mysql_charsets.lib.php:220 libraries/mysql_charsets.lib.php:363 msgid "Traditional Chinese" msgstr "Китайське Традиційне" -#: libraries/mysql_charsets.lib.php:232 libraries/mysql_charsets.lib.php:418 +#: libraries/mysql_charsets.lib.php:224 libraries/mysql_charsets.lib.php:410 msgid "case-insensitive" msgstr "case-insensitive" -#: libraries/mysql_charsets.lib.php:235 libraries/mysql_charsets.lib.php:420 +#: libraries/mysql_charsets.lib.php:227 libraries/mysql_charsets.lib.php:412 msgid "case-sensitive" msgstr "case-sensitive" -#: libraries/mysql_charsets.lib.php:238 +#: libraries/mysql_charsets.lib.php:230 msgid "Croatian" msgstr "Кроатське" -#: libraries/mysql_charsets.lib.php:241 +#: libraries/mysql_charsets.lib.php:233 msgid "Czech" msgstr "Чеське" -#: libraries/mysql_charsets.lib.php:244 +#: libraries/mysql_charsets.lib.php:236 msgid "Danish" msgstr "Данське" -#: libraries/mysql_charsets.lib.php:247 +#: libraries/mysql_charsets.lib.php:239 msgid "English" msgstr "Англійське" -#: libraries/mysql_charsets.lib.php:250 +#: libraries/mysql_charsets.lib.php:242 msgid "Esperanto" msgstr "" -#: libraries/mysql_charsets.lib.php:253 +#: libraries/mysql_charsets.lib.php:245 msgid "Estonian" msgstr "Естонське" -#: libraries/mysql_charsets.lib.php:256 libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:248 libraries/mysql_charsets.lib.php:251 msgid "German" msgstr "Німецьке" -#: libraries/mysql_charsets.lib.php:256 +#: libraries/mysql_charsets.lib.php:248 msgid "dictionary" msgstr "словник" -#: libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:251 msgid "phone book" msgstr "телефонна книга" -#: libraries/mysql_charsets.lib.php:262 +#: libraries/mysql_charsets.lib.php:254 msgid "Hungarian" msgstr "Мадярське" -#: libraries/mysql_charsets.lib.php:265 +#: libraries/mysql_charsets.lib.php:257 msgid "Icelandic" msgstr "" -#: libraries/mysql_charsets.lib.php:268 libraries/mysql_charsets.lib.php:358 +#: libraries/mysql_charsets.lib.php:260 libraries/mysql_charsets.lib.php:350 msgid "Japanese" msgstr "Японське" -#: libraries/mysql_charsets.lib.php:271 +#: libraries/mysql_charsets.lib.php:263 msgid "Latvian" msgstr "" -#: libraries/mysql_charsets.lib.php:274 +#: libraries/mysql_charsets.lib.php:266 msgid "Lithuanian" msgstr "Литовське" -#: libraries/mysql_charsets.lib.php:277 libraries/mysql_charsets.lib.php:380 +#: libraries/mysql_charsets.lib.php:269 libraries/mysql_charsets.lib.php:372 msgid "Korean" msgstr "Корейське" -#: libraries/mysql_charsets.lib.php:280 +#: libraries/mysql_charsets.lib.php:272 msgid "Persian" msgstr "" -#: libraries/mysql_charsets.lib.php:283 +#: libraries/mysql_charsets.lib.php:275 msgid "Polish" msgstr "" -#: libraries/mysql_charsets.lib.php:286 libraries/mysql_charsets.lib.php:334 +#: libraries/mysql_charsets.lib.php:278 libraries/mysql_charsets.lib.php:326 msgid "West European" msgstr "Західно Європейське" -#: libraries/mysql_charsets.lib.php:289 +#: libraries/mysql_charsets.lib.php:281 msgid "Romanian" msgstr "" -#: libraries/mysql_charsets.lib.php:292 +#: libraries/mysql_charsets.lib.php:284 msgid "Slovak" msgstr "" -#: libraries/mysql_charsets.lib.php:295 +#: libraries/mysql_charsets.lib.php:287 msgid "Slovenian" msgstr "" -#: libraries/mysql_charsets.lib.php:298 +#: libraries/mysql_charsets.lib.php:290 msgid "Spanish" msgstr "" -#: libraries/mysql_charsets.lib.php:301 +#: libraries/mysql_charsets.lib.php:293 msgid "Traditional Spanish" msgstr "" -#: libraries/mysql_charsets.lib.php:304 libraries/mysql_charsets.lib.php:401 +#: libraries/mysql_charsets.lib.php:296 libraries/mysql_charsets.lib.php:393 msgid "Swedish" msgstr "Шведське" -#: libraries/mysql_charsets.lib.php:307 libraries/mysql_charsets.lib.php:404 +#: libraries/mysql_charsets.lib.php:299 libraries/mysql_charsets.lib.php:396 msgid "Thai" msgstr "Тайське" -#: libraries/mysql_charsets.lib.php:310 libraries/mysql_charsets.lib.php:398 +#: libraries/mysql_charsets.lib.php:302 libraries/mysql_charsets.lib.php:390 msgid "Turkish" msgstr "Турецьке" -#: libraries/mysql_charsets.lib.php:313 libraries/mysql_charsets.lib.php:395 +#: libraries/mysql_charsets.lib.php:305 libraries/mysql_charsets.lib.php:387 msgid "Ukrainian" msgstr "Українське" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 msgid "Unicode" msgstr "Юнікод" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 -#: libraries/mysql_charsets.lib.php:334 libraries/mysql_charsets.lib.php:341 -#: libraries/mysql_charsets.lib.php:363 libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 +#: libraries/mysql_charsets.lib.php:326 libraries/mysql_charsets.lib.php:333 +#: libraries/mysql_charsets.lib.php:355 libraries/mysql_charsets.lib.php:366 msgid "multilingual" msgstr "багатомовні" -#: libraries/mysql_charsets.lib.php:341 +#: libraries/mysql_charsets.lib.php:333 msgid "Central European" msgstr "СхідноЄвропейське" -#: libraries/mysql_charsets.lib.php:346 +#: libraries/mysql_charsets.lib.php:338 msgid "Russian" msgstr "Російське" -#: libraries/mysql_charsets.lib.php:363 +#: libraries/mysql_charsets.lib.php:355 msgid "Baltic" msgstr "Балтійське" -#: libraries/mysql_charsets.lib.php:368 +#: libraries/mysql_charsets.lib.php:360 msgid "Armenian" msgstr "Вірменське" -#: libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:366 msgid "Cyrillic" msgstr "Кириличне" -#: libraries/mysql_charsets.lib.php:377 +#: libraries/mysql_charsets.lib.php:369 msgid "Arabic" msgstr "Арабське" -#: libraries/mysql_charsets.lib.php:383 +#: libraries/mysql_charsets.lib.php:375 msgid "Hebrew" msgstr "Іврит" -#: libraries/mysql_charsets.lib.php:386 +#: libraries/mysql_charsets.lib.php:378 msgid "Georgian" msgstr "" -#: libraries/mysql_charsets.lib.php:389 +#: libraries/mysql_charsets.lib.php:381 msgid "Greek" msgstr "Грецьке" -#: libraries/mysql_charsets.lib.php:392 +#: libraries/mysql_charsets.lib.php:384 msgid "Czech-Slovak" msgstr "" -#: libraries/mysql_charsets.lib.php:407 libraries/mysql_charsets.lib.php:414 +#: libraries/mysql_charsets.lib.php:399 libraries/mysql_charsets.lib.php:406 msgid "unknown" msgstr "невідоме" @@ -3369,69 +3418,69 @@ msgstr "Вікно запиту" msgid "This format has no options" msgstr "Цей формат не має опцій" -#: libraries/relation.lib.php:82 +#: libraries/relation.lib.php:77 msgid "not OK" msgstr "не OK" -#: libraries/relation.lib.php:86 pmd_general.php:339 +#: libraries/relation.lib.php:81 pmd_general.php:339 msgid "OK" msgstr "OK" -#: libraries/relation.lib.php:87 +#: libraries/relation.lib.php:82 msgid "Enabled" msgstr "дозволено" -#: libraries/relation.lib.php:110 +#: libraries/relation.lib.php:105 msgid "Display Features" msgstr "Показати можливості" -#: libraries/relation.lib.php:116 +#: libraries/relation.lib.php:111 msgid "Creation of PDFs" msgstr "Створити PDF-файл" -#: libraries/relation.lib.php:120 +#: libraries/relation.lib.php:115 msgid "Displaying Column Comments" msgstr "Показувати коментарі стовпців" -#: libraries/relation.lib.php:125 +#: libraries/relation.lib.php:120 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "За інформацією як поновити Вашу таблицю Column_comments прошу дивитись у " "Документації" -#: libraries/relation.lib.php:130 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 msgid "Bookmarked SQL query" msgstr "Закладка на SQL-запит" -#: libraries/relation.lib.php:134 querywindow.php:99 querywindow.php:207 +#: libraries/relation.lib.php:129 querywindow.php:98 querywindow.php:205 msgid "SQL history" msgstr "SQL-history" -#: libraries/relation.lib.php:146 +#: libraries/relation.lib.php:141 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:148 +#: libraries/relation.lib.php:143 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" -#: libraries/relation.lib.php:149 +#: libraries/relation.lib.php:144 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:150 +#: libraries/relation.lib.php:145 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:151 +#: libraries/relation.lib.php:146 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1158 +#: libraries/relation.lib.php:1153 msgid "no description" msgstr "без опису" @@ -3439,7 +3488,7 @@ msgstr "без опису" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:53 server_replication.php:346 +#: libraries/replication_gui.lib.php:53 server_replication.php:345 msgid "Change or reconfigure master server" msgstr "" @@ -3451,16 +3500,12 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:711 -#: server_privileges.php:714 server_privileges.php:721 -#: server_synchronize.php:1170 +#: libraries/replication_gui.lib.php:261 server_privileges.php:710 +#: server_privileges.php:713 server_privileges.php:720 +#: server_synchronize.php:1169 msgid "User name" msgstr "Ім'я користувача" -#: libraries/replication_gui.lib.php:69 server_synchronize.php:1162 -msgid "Port" -msgstr "" - #: libraries/replication_gui.lib.php:105 msgid "Master status" msgstr "" @@ -3475,8 +3520,8 @@ msgid "Variable" msgstr "Змінна" #: libraries/replication_gui.lib.php:117 server_status.php:737 -#: tbl_change.php:322 tbl_printview.php:368 tbl_select.php:137 -#: tbl_structure.php:728 +#: tbl_change.php:317 tbl_printview.php:367 tbl_select.php:136 +#: tbl_structure.php:726 msgid "Value" msgstr "Значення" @@ -3490,38 +3535,38 @@ msgid "" "this list." msgstr "" -#: libraries/replication_gui.lib.php:242 server_replication.php:193 +#: libraries/replication_gui.lib.php:242 server_replication.php:192 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:256 server_privileges.php:716 +#: libraries/replication_gui.lib.php:256 server_privileges.php:715 msgid "Any user" msgstr "Довільний користувач" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1920 server_privileges.php:1950 +#: libraries/replication_gui.lib.php:348 server_privileges.php:716 +#: server_privileges.php:783 server_privileges.php:807 +#: server_privileges.php:1924 server_privileges.php:1954 msgid "Use text field" msgstr "Використовувати текстове поле" -#: libraries/replication_gui.lib.php:304 server_privileges.php:764 +#: libraries/replication_gui.lib.php:304 server_privileges.php:763 msgid "Any host" msgstr "Довільний хост" -#: libraries/replication_gui.lib.php:308 server_privileges.php:768 +#: libraries/replication_gui.lib.php:308 server_privileges.php:767 msgid "Local" msgstr "Локальний" -#: libraries/replication_gui.lib.php:314 server_privileges.php:773 +#: libraries/replication_gui.lib.php:314 server_privileges.php:772 msgid "This Host" msgstr "Цей хост" -#: libraries/replication_gui.lib.php:320 server_privileges.php:779 +#: libraries/replication_gui.lib.php:320 server_privileges.php:778 msgid "Use Host Table" msgstr "Використовувати Таблицю Хостів" -#: libraries/replication_gui.lib.php:333 server_privileges.php:792 +#: libraries/replication_gui.lib.php:333 server_privileges.php:791 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3547,8 +3592,8 @@ msgstr "" msgid "Servers" msgstr "" -#: libraries/server_links.inc.php:52 server_engines.php:111 -#: server_engines.php:115 server_status.php:414 test/theme.php:104 +#: libraries/server_links.inc.php:52 server_engines.php:125 +#: server_engines.php:129 server_status.php:414 test/theme.php:104 msgid "Variables" msgstr "Змінні" @@ -3569,12 +3614,12 @@ msgstr "" msgid "Processes" msgstr "Процеси" -#: libraries/server_links.inc.php:91 server_synchronize.php:1091 -#: server_synchronize.php:1099 +#: libraries/server_links.inc.php:91 server_synchronize.php:1090 +#: server_synchronize.php:1098 msgid "Synchronize" msgstr "" -#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1109 +#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1108 msgid "Source database" msgstr "" @@ -3592,7 +3637,7 @@ msgstr "" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1111 +#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1110 msgid "Target database" msgstr "" @@ -3612,11 +3657,11 @@ msgstr "Виконати SQL запит(и) до БД %s" msgid "Columns" msgstr "Назви колонок" -#: libraries/sql_query_form.lib.php:342 sql.php:664 sql.php:665 sql.php:682 +#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "Закладка на даний SQL-запит" -#: libraries/sql_query_form.lib.php:349 sql.php:676 +#: libraries/sql_query_form.lib.php:349 sql.php:669 msgid "Let every user access this bookmark" msgstr "" @@ -3713,12 +3758,12 @@ msgstr "" "Не можу запустити перевірку SQL. Прошу проконтролювати чи заінстальовано " "необхідні php extensions як описано в %sдокументації%s." -#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:139 -#: libraries/tbl_links.inc.php:140 +#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 +#: libraries/tbl_links.inc.php:139 msgid "Table seems to be empty!" msgstr "" -#: libraries/tbl_links.inc.php:148 +#: libraries/tbl_links.inc.php:147 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" @@ -3753,12 +3798,12 @@ msgstr "" "Для значень за замовчуванням, введіть лише значення, без використання " "зворотніх слешів чи лапок, у такому форматі: a" -#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1263 -#: pdf_schema.php:1284 tbl_printview.php:142 tbl_structure.php:179 +#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1262 +#: pdf_schema.php:1283 tbl_printview.php:141 tbl_structure.php:178 msgid "Attributes" msgstr "Атрибути" -#: libraries/tbl_properties.inc.php:136 +#: libraries/tbl_properties.inc.php:135 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -3767,11 +3812,11 @@ msgstr "" "Щоб отримати список можливих опцій і їх MIME-type перетворень, натисніть " "%sописи перетворень%s" -#: libraries/tbl_properties.inc.php:144 +#: libraries/tbl_properties.inc.php:143 msgid "Transformation options" msgstr "Опції перетворення" -#: libraries/tbl_properties.inc.php:145 +#: libraries/tbl_properties.inc.php:144 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
                            If you ever need to put a backslash (\"\\\") or a single " @@ -3783,18 +3828,18 @@ msgstr "" "лапки (\"'\") у цих значеннях, поставте перед ними додатковий зворотній слеш " "(наприклад '\\\\xyz' чи 'a\\'b')." -#: libraries/tbl_properties.inc.php:392 +#: libraries/tbl_properties.inc.php:391 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "Немає" -#: libraries/tbl_properties.inc.php:393 +#: libraries/tbl_properties.inc.php:392 msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:579 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:578 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
                            Please ask the " @@ -3802,29 +3847,29 @@ msgid "" msgstr "" "Немає опису для цього перетворення.
                            Прошу питатися автора, що робить %s." -#: libraries/tbl_properties.inc.php:725 server_engines.php:57 -#: tbl_operations.php:354 +#: libraries/tbl_properties.inc.php:724 server_engines.php:56 +#: tbl_operations.php:352 msgid "Storage Engine" msgstr "" -#: libraries/tbl_properties.inc.php:754 +#: libraries/tbl_properties.inc.php:753 msgid "PARTITION definition" msgstr "" -#: libraries/tbl_properties.inc.php:775 pdf_pages.php:502 +#: libraries/tbl_properties.inc.php:774 pdf_pages.php:501 #: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214 -#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1124 tbl_indexes.php:247 -#: tbl_relation.php:565 +#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1022 tbl_indexes.php:246 +#: tbl_relation.php:563 msgid "Save" msgstr "Зберегти" -#: libraries/tbl_properties.inc.php:779 tbl_structure.php:541 +#: libraries/tbl_properties.inc.php:778 tbl_structure.php:539 #, fuzzy, php-format #| msgid "Add into comments" msgid "Add %s column(s)" msgstr "Додати коментар" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:535 +#: libraries/tbl_properties.inc.php:782 tbl_structure.php:533 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." @@ -3996,8 +4041,8 @@ msgstr "" msgid "Custom color" msgstr "" -#: main.php:162 pdf_pages.php:362 setup/lib/FormDisplay.tpl.php:216 -#: tbl_change.php:1173 +#: main.php:162 pdf_pages.php:361 setup/lib/FormDisplay.tpl.php:216 +#: tbl_change.php:1071 msgid "Reset" msgstr "Перевстановити" @@ -4005,8 +4050,8 @@ msgstr "Перевстановити" msgid "Protocol version" msgstr "" -#: main.php:188 server_privileges.php:1381 server_privileges.php:1528 -#: server_privileges.php:1642 server_privileges.php:2060 +#: main.php:188 server_privileges.php:1385 server_privileges.php:1532 +#: server_privileges.php:1646 server_privileges.php:2064 #: server_processlist.php:53 msgid "User" msgstr "Користувач" @@ -4084,21 +4129,30 @@ msgid "" "has been configured." msgstr "" -#: main.php:330 +#: main.php:314 +#, php-format +msgid "" +"The additional features for working with linked tables have been " +"deactivated. To find out why click %shere%s." +msgstr "" +"Додаткова можливість роботи із залінкованими таблицями деактивована. Для " +"того, щоб довідатись чому, натисніть %sтут%s." + +#: main.php:329 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:345 +#: main.php:344 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: main.php:357 +#: main.php:356 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -4109,68 +4163,68 @@ msgstr "" msgid "Reload navigation frame" msgstr "" -#: navigation.php:204 server_databases.php:370 server_synchronize.php:1190 +#: navigation.php:203 server_databases.php:368 server_synchronize.php:1189 msgid "No databases" msgstr "БД відсутні" -#: navigation.php:298 +#: navigation.php:297 msgid "Filter" msgstr "" -#: navigation.php:299 setup/frames/index.inc.php:218 +#: navigation.php:298 setup/frames/index.inc.php:218 #: setup/lib/messages.inc.php:41 msgid "Clear" msgstr "" -#: navigation.php:330 navigation.php:331 +#: navigation.php:329 navigation.php:330 #, fuzzy #| msgid "Create a page" msgctxt "short form" msgid "Create table" msgstr "Створити нову сторінку" -#: navigation.php:333 navigation.php:495 +#: navigation.php:332 navigation.php:494 msgid "Please select a database" msgstr "Прошу вибрати БД" -#: pdf_pages.php:40 pdf_pages.php:46 pdf_pages.php:52 pdf_pages.php:57 +#: pdf_pages.php:39 pdf_pages.php:45 pdf_pages.php:51 pdf_pages.php:56 #, php-format msgid "%s table not found or not set in %s" msgstr "Таблицю %s не знайдено або не визначено у %s" -#: pdf_pages.php:265 +#: pdf_pages.php:264 msgid "Please choose a page to edit" msgstr "Прошу вибрати сторінку для редагування" -#: pdf_pages.php:303 pmd_pdf.php:113 +#: pdf_pages.php:302 pmd_pdf.php:111 msgid "Create a page" msgstr "Створити нову сторінку" -#: pdf_pages.php:309 +#: pdf_pages.php:308 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Номер сторінки:" -#: pdf_pages.php:313 +#: pdf_pages.php:312 #, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "Автоматичний layout" -#: pdf_pages.php:315 +#: pdf_pages.php:314 msgid "Internal relations" msgstr "" -#: pdf_pages.php:338 +#: pdf_pages.php:337 msgid "Select Tables" msgstr "Вибрати таблиці" -#: pdf_pages.php:361 +#: pdf_pages.php:360 msgid "Toggle scratchboard" msgstr "ввімкнути чорновик (scratchboard)" -#: pdf_pages.php:524 +#: pdf_pages.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -4178,37 +4232,37 @@ msgstr "" "Ця сторінка має посилання на таблицю, якої вже немає. Бажаєте видалити ці " "посилання?" -#: pdf_schema.php:635 +#: pdf_schema.php:634 #, fuzzy, php-format #| msgid "The \"%s\" table doesn't exist!" msgid "The %s table doesn't exist!" msgstr "Таблиці \"%s\" не існує!" -#: pdf_schema.php:671 +#: pdf_schema.php:670 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Прошу сконфіґурувати координати таблиці %s" -#: pdf_schema.php:994 +#: pdf_schema.php:993 #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" msgstr "Схема бази даних \"%s\" - Сторінка %s" -#: pdf_schema.php:1012 +#: pdf_schema.php:1011 msgid "No tables" msgstr "Таблиць немає" -#: pdf_schema.php:1031 pdf_schema.php:1140 +#: pdf_schema.php:1030 pdf_schema.php:1139 msgid "Relational schema" msgstr "Схема зв'язків" -#: pdf_schema.php:1115 +#: pdf_schema.php:1114 msgid "Table of contents" msgstr "Зміст" -#: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:145 -#: tbl_structure.php:182 tbl_tracking.php:277 +#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 +#: tbl_structure.php:181 tbl_tracking.php:272 msgid "Extra" msgstr "Додатково" @@ -4220,7 +4274,7 @@ msgstr "" msgid "Save position" msgstr "" -#: pmd_general.php:70 server_synchronize.php:428 server_synchronize.php:871 +#: pmd_general.php:70 server_synchronize.php:427 server_synchronize.php:870 msgid "Create table" msgstr "" @@ -4291,31 +4345,31 @@ msgid "" "appropriate column name." msgstr "" -#: pmd_pdf.php:62 +#: pmd_pdf.php:60 msgid "Page has been created" msgstr "" -#: pmd_pdf.php:64 +#: pmd_pdf.php:62 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:84 +#: pmd_pdf.php:82 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:88 +#: pmd_pdf.php:86 msgid "recommended" msgstr "" -#: pmd_pdf.php:93 +#: pmd_pdf.php:91 msgid "to/from page" msgstr "" -#: querywindow.php:94 +#: querywindow.php:93 msgid "Import files" msgstr "Імпорт файлів" -#: querywindow.php:105 +#: querywindow.php:104 msgid "All" msgstr "Все" @@ -4361,65 +4415,65 @@ msgstr "" msgid "Character Sets and Collations" msgstr "Набори символів та схеми" -#: server_databases.php:51 +#: server_databases.php:49 msgid "No databases selected." msgstr "Не вибрано бази даних." -#: server_databases.php:62 +#: server_databases.php:60 #, php-format msgid "%s databases have been dropped successfully." msgstr "%s баз(а\\и) даних успішно знищено." -#: server_databases.php:87 +#: server_databases.php:85 msgid "Databases statistics" msgstr "Статистика баз даних" -#: server_databases.php:116 server_status.php:370 +#: server_databases.php:114 server_status.php:370 #: setup/lib/messages.inc.php:114 msgid "Tables" msgstr "Таблиць" -#: server_databases.php:194 server_replication.php:180 -#: server_replication.php:208 +#: server_databases.php:192 server_replication.php:179 +#: server_replication.php:207 msgid "Master replication" msgstr "" -#: server_databases.php:196 server_replication.php:247 +#: server_databases.php:194 server_replication.php:246 msgid "Slave replication" msgstr "" -#: server_databases.php:229 +#: server_databases.php:227 #, fuzzy #| msgid "No databases" msgid "Jump to database" msgstr "БД відсутні" -#: server_databases.php:266 +#: server_databases.php:264 msgid "Not replicated" msgstr "" -#: server_databases.php:272 +#: server_databases.php:270 msgid "Replicated" msgstr "" -#: server_databases.php:288 +#: server_databases.php:286 #, php-format msgid "Check privileges for database "%s"." msgstr "Перевірити права для бази даних "%s"." -#: server_databases.php:292 server_databases.php:293 +#: server_databases.php:290 server_databases.php:291 msgid "Check Privileges" msgstr "Перевірити права" -#: server_databases.php:357 server_databases.php:358 +#: server_databases.php:355 server_databases.php:356 msgid "Enable Statistics" msgstr "Дозволити статистику" -#: server_databases.php:361 server_databases.php:362 +#: server_databases.php:359 server_databases.php:360 msgid "Disable Statistics" msgstr "Заборонити статистику" -#: server_databases.php:365 +#: server_databases.php:363 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -4427,124 +4481,124 @@ msgstr "" "Примітка: Активізація збору статистики бази даних може спричинити значний " "трафік між веб сервером та базою даних MySQL." -#: server_engines.php:48 +#: server_engines.php:47 msgid "Storage Engines" msgstr "" -#: server_export.php:20 +#: server_export.php:18 msgid "View dump (schema) of databases" msgstr "Переглянути dump (схему) баз даних" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:23 server_privileges.php:265 msgid "Includes all privileges except GRANT." msgstr "Дозволити всі права за винятком GRANT." -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:24 server_privileges.php:191 +#: server_privileges.php:514 msgid "Allows altering the structure of existing tables." msgstr "Дозволити змінювати структуру наявних таблиць." -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:25 server_privileges.php:207 +#: server_privileges.php:520 msgid "Allows altering and dropping stored routines." msgstr "" -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:26 server_privileges.php:183 +#: server_privileges.php:513 msgid "Allows creating new databases and tables." msgstr "Дозволити створювати нові бази даних та таблиці." -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:27 server_privileges.php:206 +#: server_privileges.php:519 msgid "Allows creating stored routines." msgstr "" -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:513 msgid "Allows creating new tables." msgstr "Дозволити створювати нові таблиці." -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:29 server_privileges.php:194 +#: server_privileges.php:517 msgid "Allows creating temporary tables." msgstr "Дозволити створювати тимчасові таблиці." -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:30 server_privileges.php:208 +#: server_privileges.php:553 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: server_privileges.php:32 server_privileges.php:199 -#: server_privileges.php:203 server_privileges.php:526 -#: server_privileges.php:530 +#: server_privileges.php:31 server_privileges.php:198 +#: server_privileges.php:202 server_privileges.php:525 +#: server_privileges.php:529 msgid "Allows creating new views." msgstr "" -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:32 server_privileges.php:182 +#: server_privileges.php:505 msgid "Allows deleting data." msgstr "Дозволити знищувати дані з таблиць." -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:33 server_privileges.php:184 +#: server_privileges.php:516 msgid "Allows dropping databases and tables." msgstr "Дозволити знищувати бази даних та таблиці." -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:34 server_privileges.php:516 msgid "Allows dropping tables." msgstr "Дозволити знищувати таблиці." -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:35 server_privileges.php:199 +#: server_privileges.php:533 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:36 server_privileges.php:209 +#: server_privileges.php:521 msgid "Allows executing stored routines." msgstr "" -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:37 server_privileges.php:188 +#: server_privileges.php:508 msgid "Allows importing data from and exporting data into files." msgstr "Дозволити імпорт даних з файлів, та експорт у файли." -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:38 server_privileges.php:539 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Дозволити додавання користувачів та прав без перезавантаження таблиці прав." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:515 msgid "Allows creating and dropping indexes." msgstr "Дозволити створення та знищення індексів." -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:40 server_privileges.php:180 +#: server_privileges.php:441 server_privileges.php:503 msgid "Allows inserting and replacing data." msgstr "Дозволити вставку та заміну даних." -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:41 server_privileges.php:195 +#: server_privileges.php:548 msgid "Allows locking tables for the current thread." msgstr "Дозволити блокування таблиць для біжучих потоків." -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:42 server_privileges.php:645 +#: server_privileges.php:647 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Обмежити кількість нових під'єднань, які користувач може створювати протягом " "години." -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:43 server_privileges.php:633 +#: server_privileges.php:635 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Обмежити кількість запитів, які користувач може надіслати серверу протягом " "години." -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:44 server_privileges.php:639 +#: server_privileges.php:641 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -4552,58 +4606,58 @@ msgstr "" "Обмежити кількість команд, що вносять зміни до будь-якої таблиці чи бази " "даних, які користувач може виконати протягом години." -#: server_privileges.php:46 server_privileges.php:652 -#: server_privileges.php:654 +#: server_privileges.php:45 server_privileges.php:651 +#: server_privileges.php:653 msgid "Limits the number of simultaneous connections the user may have." msgstr "" -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:46 server_privileges.php:187 +#: server_privileges.php:543 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:47 server_privileges.php:189 +#: server_privileges.php:447 server_privileges.php:549 msgid "Has no effect in this MySQL version." msgstr "Неефективно для цієї версії MySQL." -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:48 server_privileges.php:185 +#: server_privileges.php:544 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Дозволити перезавантаження установок та очищення кешу сервера." -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:197 +#: server_privileges.php:551 msgid "Allows the user to ask where the slaves / masters are." msgstr "Надати користувачу право запитувати де є slaves / masters." -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:50 server_privileges.php:196 +#: server_privileges.php:552 msgid "Needed for the replication slaves." msgstr "Необхідно для реплікації slaves." -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:51 server_privileges.php:179 +#: server_privileges.php:438 server_privileges.php:502 msgid "Allows reading data." msgstr "Дозволити читання даних." -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:52 server_privileges.php:192 +#: server_privileges.php:546 msgid "Gives access to the complete list of databases." msgstr "Надати доступ до повного списку баз даних." -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:53 server_privileges.php:203 +#: server_privileges.php:205 server_privileges.php:518 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:54 server_privileges.php:186 +#: server_privileges.php:545 msgid "Allows shutting down the server." msgstr "Дозволити вимкнення сервера." -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:55 server_privileges.php:193 +#: server_privileges.php:542 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -4613,156 +4667,156 @@ msgstr "" "під'єднань; Обов'язково для більшості адміністративних операцій таких як " "встановлення ґлобальних змінних чи припинення процесів інших користувачів." -#: server_privileges.php:57 server_privileges.php:201 -#: server_privileges.php:535 +#: server_privileges.php:56 server_privileges.php:200 +#: server_privileges.php:534 msgid "Allows creating and dropping triggers" msgstr "" -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:57 server_privileges.php:181 +#: server_privileges.php:444 server_privileges.php:504 msgid "Allows changing data." msgstr "Дозволити зміну даних." -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:58 server_privileges.php:259 msgid "No privileges." msgstr "Немає прав." -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:301 server_privileges.php:302 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Немає" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1710 server_privileges.php:1716 +#: server_privileges.php:430 server_privileges.php:565 +#: server_privileges.php:1714 server_privileges.php:1720 msgid "Table-specific privileges" msgstr "Права, які стосуються таблиці" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1532 +#: server_privileges.php:431 server_privileges.php:573 +#: server_privileges.php:1536 msgid " Note: MySQL privilege names are expressed in English " msgstr " Зауваження: привілеї MySQL задаються по-англійськи " -#: server_privileges.php:563 server_privileges.php:1531 +#: server_privileges.php:562 server_privileges.php:1535 msgid "Global privileges" msgstr "Глобальні права" -#: server_privileges.php:565 server_privileges.php:1710 +#: server_privileges.php:564 server_privileges.php:1714 msgid "Database-specific privileges" msgstr "Права, які стосуються бази даних" -#: server_privileges.php:610 +#: server_privileges.php:609 msgid "Administration" msgstr "Адміністратор" -#: server_privileges.php:630 +#: server_privileges.php:629 msgid "Resource limits" msgstr "Обмеження ресурсів" -#: server_privileges.php:631 +#: server_privileges.php:630 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Примітка: Встановлення цієї опції у 0 (нуль) знімає обмеження." -#: server_privileges.php:708 +#: server_privileges.php:707 msgid "Login Information" msgstr "Вхідна інформація (Login)" -#: server_privileges.php:802 +#: server_privileges.php:801 msgid "Do not change the password" msgstr "Не змінювати пароль" -#: server_privileges.php:835 server_privileges.php:2197 +#: server_privileges.php:834 server_privileges.php:2201 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Не знайдено користувача." -#: server_privileges.php:879 +#: server_privileges.php:878 #, php-format msgid "The user %s already exists!" msgstr "Користувач %s вже існує!" -#: server_privileges.php:962 +#: server_privileges.php:961 msgid "You have added a new user." msgstr "Було додано нового користувача." -#: server_privileges.php:1183 +#: server_privileges.php:1184 #, fuzzy, php-format msgid "You have updated the privileges for %s." msgstr "Було змінено привілеї для" -#: server_privileges.php:1207 +#: server_privileges.php:1208 #, php-format msgid "You have revoked the privileges for %s" msgstr "Ви змінили привілеї для %s" -#: server_privileges.php:1243 +#: server_privileges.php:1244 #, php-format msgid "The password for %s was changed successfully." msgstr "Пароль для %s успішно змінено." -#: server_privileges.php:1263 +#: server_privileges.php:1264 #, php-format msgid "Deleting %s" msgstr "Усунути %s" -#: server_privileges.php:1274 +#: server_privileges.php:1275 msgid "No users selected for deleting!" msgstr "" -#: server_privileges.php:1277 +#: server_privileges.php:1278 msgid "Reloading the privileges" msgstr "Перезавантаження прав" -#: server_privileges.php:1292 +#: server_privileges.php:1296 msgid "The selected users have been deleted successfully." msgstr "Відмічених користувачів успішно усунуто." -#: server_privileges.php:1327 +#: server_privileges.php:1331 msgid "The privileges were reloaded successfully." msgstr "Права успішно перезавантажено." -#: server_privileges.php:1355 server_privileges.php:1641 +#: server_privileges.php:1359 server_privileges.php:1645 msgid "Edit Privileges" msgstr "Редагування привілеїв" -#: server_privileges.php:1364 +#: server_privileges.php:1368 msgid "Revoke" msgstr "Відмінити" -#: server_privileges.php:1396 +#: server_privileges.php:1400 msgid "User overview" msgstr "Огляд користувачів" -#: server_privileges.php:1533 server_privileges.php:1715 -#: server_privileges.php:2064 +#: server_privileges.php:1537 server_privileges.php:1719 +#: server_privileges.php:2068 msgid "Grant" msgstr "Grant" -#: server_privileges.php:1552 server_privileges.php:2154 +#: server_privileges.php:1556 server_privileges.php:2158 msgid "Any" msgstr "Довільний" -#: server_privileges.php:1601 server_privileges.php:1625 -#: server_privileges.php:2019 server_privileges.php:2208 +#: server_privileges.php:1605 server_privileges.php:1629 +#: server_privileges.php:2023 server_privileges.php:2212 msgid "Add a new User" msgstr "Додати нового користувача" -#: server_privileges.php:1606 +#: server_privileges.php:1610 msgid "Remove selected users" msgstr "Усунути відмічених користувачів" -#: server_privileges.php:1609 +#: server_privileges.php:1613 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Відмінити всі активні права користувачів та усунути їх після цього." -#: server_privileges.php:1610 server_privileges.php:1611 -#: server_privileges.php:1612 +#: server_privileges.php:1614 server_privileges.php:1615 +#: server_privileges.php:1616 msgid "Drop the databases that have the same names as the users." msgstr "Усунути бази даних, які мають такі ж назви як імена користувачів." -#: server_privileges.php:1628 +#: server_privileges.php:1632 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4775,50 +4829,50 @@ msgstr "" "сервером, якщо в цю таблицю вносилися зміни вручну. У цьому випадку Вам " "необхідно %sперезавантажити права%s перед продовженням." -#: server_privileges.php:1676 +#: server_privileges.php:1680 msgid "The selected user was not found in the privilege table." msgstr "Вказаного користувача не знайдено в таблиці прав." -#: server_privileges.php:1716 +#: server_privileges.php:1720 msgid "Column-specific privileges" msgstr "Права, які стосуються колонок таблиці" -#: server_privileges.php:1917 +#: server_privileges.php:1921 msgid "Add privileges on the following database" msgstr "Додати права для цієї бази даних" -#: server_privileges.php:1935 +#: server_privileges.php:1939 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:1938 +#: server_privileges.php:1942 msgid "Add privileges on the following table" msgstr "Додати права для цієї таблиці" -#: server_privileges.php:1995 +#: server_privileges.php:1999 msgid "Change Login Information / Copy User" msgstr "Змінити реєстраційні дані / Копіювати користувача" -#: server_privileges.php:1998 +#: server_privileges.php:2002 msgid "Create a new user with the same privileges and ..." msgstr "Створити нового користувача з такими ж правами і ..." -#: server_privileges.php:2000 +#: server_privileges.php:2004 msgid "... keep the old one." msgstr "... залишити старого." -#: server_privileges.php:2001 +#: server_privileges.php:2005 msgid " ... delete the old one from the user tables." msgstr " ... знищити старого з таблиці користувачів." -#: server_privileges.php:2002 +#: server_privileges.php:2006 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "" " ... анулювати всі активні права старого користувача, знищивши його після " "того." -#: server_privileges.php:2003 +#: server_privileges.php:2007 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -4826,44 +4880,44 @@ msgstr "" " ... знищити старого з таблиці користувачів та перевантажити права після " "того." -#: server_privileges.php:2025 +#: server_privileges.php:2029 msgid "Database for user" msgstr "" -#: server_privileges.php:2029 +#: server_privileges.php:2033 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Немає" -#: server_privileges.php:2030 +#: server_privileges.php:2034 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2031 +#: server_privileges.php:2035 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2034 +#: server_privileges.php:2038 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: server_privileges.php:2057 +#: server_privileges.php:2061 #, php-format msgid "Users having access to "%s"" msgstr "Користувачі, котрі мають доступ до "%s"" -#: server_privileges.php:2165 +#: server_privileges.php:2169 msgid "global" msgstr "глобальний" -#: server_privileges.php:2167 +#: server_privileges.php:2171 msgid "database-specific" msgstr "специфічний для бази даних" -#: server_privileges.php:2169 +#: server_privileges.php:2173 msgid "wildcard" msgstr "шаблон" @@ -4882,53 +4936,53 @@ msgstr "phpMyAdmin не може припинити процес %s. Він вж msgid "ID" msgstr "ID" -#: server_replication.php:50 +#: server_replication.php:49 msgid "Unknown error" msgstr "" -#: server_replication.php:57 +#: server_replication.php:56 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:64 +#: server_replication.php:63 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:70 +#: server_replication.php:69 msgid "Unable to change master" msgstr "" -#: server_replication.php:73 +#: server_replication.php:72 #, php-format msgid "Master server changed succesfully to %s" msgstr "" -#: server_replication.php:181 +#: server_replication.php:180 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:183 server_status.php:391 +#: server_replication.php:182 server_status.php:391 msgid "Show master status" msgstr "" -#: server_replication.php:186 +#: server_replication.php:185 msgid "Show connected slaves" msgstr "" -#: server_replication.php:209 +#: server_replication.php:208 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:216 +#: server_replication.php:215 msgid "Master configuration" msgstr "" -#: server_replication.php:217 +#: server_replication.php:216 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -4937,107 +4991,107 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:220 +#: server_replication.php:219 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:221 +#: server_replication.php:220 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:224 +#: server_replication.php:223 msgid "Please select databases:" msgstr "" -#: server_replication.php:227 +#: server_replication.php:226 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: server_replication.php:229 +#: server_replication.php:228 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: server_replication.php:292 +#: server_replication.php:291 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:295 +#: server_replication.php:294 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:304 +#: server_replication.php:303 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:307 +#: server_replication.php:306 msgid "See slave status table" msgstr "" -#: server_replication.php:310 +#: server_replication.php:309 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:321 +#: server_replication.php:320 msgid "Control slave:" msgstr "" -#: server_replication.php:324 +#: server_replication.php:323 msgid "Full start" msgstr "" -#: server_replication.php:324 +#: server_replication.php:323 msgid "Full stop" msgstr "" -#: server_replication.php:325 +#: server_replication.php:324 msgid "Reset slave" msgstr "" -#: server_replication.php:326 +#: server_replication.php:325 #, php-format msgid "SQL Thread %s only" msgstr "" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 msgid "Start" msgstr "" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 msgid "Stop" msgstr "" -#: server_replication.php:327 +#: server_replication.php:326 #, php-format msgid "IO Thread %s only" msgstr "" -#: server_replication.php:331 +#: server_replication.php:330 msgid "Error management:" msgstr "" -#: server_replication.php:333 +#: server_replication.php:332 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:335 +#: server_replication.php:334 msgid "Skip current error" msgstr "" -#: server_replication.php:336 +#: server_replication.php:335 msgid "Skip next" msgstr "" -#: server_replication.php:339 +#: server_replication.php:338 msgid "errors." msgstr "" -#: server_replication.php:354 +#: server_replication.php:353 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -5743,112 +5797,112 @@ msgstr "Тип запиту" msgid "Replication status" msgstr "" -#: server_synchronize.php:93 +#: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:96 +#: server_synchronize.php:95 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:121 server_synchronize.php:124 tbl_create.php:77 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:264 +#: server_synchronize.php:263 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:271 +#: server_synchronize.php:270 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:399 server_synchronize.php:838 +#: server_synchronize.php:398 server_synchronize.php:837 msgid "not present" msgstr "" -#: server_synchronize.php:423 server_synchronize.php:866 +#: server_synchronize.php:422 server_synchronize.php:865 msgid "Structure Difference" msgstr "" -#: server_synchronize.php:424 server_synchronize.php:867 +#: server_synchronize.php:423 server_synchronize.php:866 msgid "Data Difference" msgstr "" -#: server_synchronize.php:429 server_synchronize.php:872 +#: server_synchronize.php:428 server_synchronize.php:871 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:430 server_synchronize.php:873 +#: server_synchronize.php:429 server_synchronize.php:872 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:431 server_synchronize.php:874 +#: server_synchronize.php:430 server_synchronize.php:873 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:432 server_synchronize.php:875 +#: server_synchronize.php:431 server_synchronize.php:874 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:433 server_synchronize.php:876 +#: server_synchronize.php:432 server_synchronize.php:875 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:434 server_synchronize.php:877 +#: server_synchronize.php:433 server_synchronize.php:876 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:435 server_synchronize.php:878 +#: server_synchronize.php:434 server_synchronize.php:877 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:445 server_synchronize.php:889 +#: server_synchronize.php:444 server_synchronize.php:888 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:448 server_synchronize.php:893 +#: server_synchronize.php:447 server_synchronize.php:892 msgid "Apply Selected Changes" msgstr "" -#: server_synchronize.php:450 server_synchronize.php:895 +#: server_synchronize.php:449 server_synchronize.php:894 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:463 +#: server_synchronize.php:462 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:941 +#: server_synchronize.php:940 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:1002 +#: server_synchronize.php:1001 msgid "The following queries have been executed:" msgstr "" -#: server_synchronize.php:1121 +#: server_synchronize.php:1120 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1122 +#: server_synchronize.php:1121 #, fuzzy #| msgid "Connections" msgid "Current connection" msgstr "З'єднань" -#: server_synchronize.php:1151 +#: server_synchronize.php:1150 #, php-format msgid "Configuration: %s" msgstr "" -#: server_synchronize.php:1166 +#: server_synchronize.php:1165 msgid "Socket" msgstr "" -#: server_synchronize.php:1212 +#: server_synchronize.php:1211 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -6393,8 +6447,8 @@ msgstr "" #: setup/lib/messages.inc.php:128 msgid "" "Configure phpMyAdmin database to gain access to additional features, see " -"[a@../Documentation.html#linked-tables]linked-tables infrastructure[/a] in " -"documentation" +"[a@../Documentation.html#linked-tables]phpMyAdmin configuration storage[/a] " +"in documentation" msgstr "" #: setup/lib/messages.inc.php:129 setup/lib/messages.inc.php:290 @@ -7433,114 +7487,114 @@ msgstr "" msgid "ZIP" msgstr "" -#: sql.php:495 tbl_replace.php:385 +#: sql.php:494 tbl_replace.php:384 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: sql.php:512 +#: sql.php:511 msgid "Showing as PHP code" msgstr "" -#: sql.php:515 tbl_replace.php:359 +#: sql.php:514 tbl_replace.php:358 msgid "Showing SQL query" msgstr "" -#: sql.php:517 +#: sql.php:516 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Перевірити SQL" -#: sql.php:638 +#: sql.php:631 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:670 +#: sql.php:663 msgid "Label" msgstr "Мітка" -#: tbl_addfield.php:188 tbl_alter.php:102 tbl_indexes.php:97 +#: tbl_addfield.php:185 tbl_alter.php:100 tbl_indexes.php:97 #, php-format msgid "Table %1$s has been altered successfully" msgstr "" -#: tbl_change.php:250 tbl_select.php:26 tbl_select.php:27 tbl_select.php:30 -#: tbl_select.php:33 +#: tbl_change.php:245 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_select.php:32 msgid "Browse foreign values" msgstr "" -#: tbl_change.php:280 tbl_change.php:318 +#: tbl_change.php:275 tbl_change.php:313 msgid "Function" msgstr "Функція" -#: tbl_change.php:300 tbl_indexes.php:199 tbl_indexes.php:224 +#: tbl_change.php:295 tbl_indexes.php:198 tbl_indexes.php:223 msgid "Ignore" msgstr "Ігноруровати" -#: tbl_change.php:725 +#: tbl_change.php:720 #, fuzzy #| msgid " Because of its length,
                            this field might not be editable " msgid " Because of its length,
                            this column might not be editable " msgstr " Через велику довжину,
                            це поле не може бути відредаговано " -#: tbl_change.php:884 +#: tbl_change.php:835 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:890 +#: tbl_change.php:841 msgid "Binary - do not edit" msgstr " Двійкові дані - не редагуються " -#: tbl_change.php:983 +#: tbl_change.php:889 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:1128 +#: tbl_change.php:1026 msgid "Insert as new row" msgstr "Вставити як новий рядок" -#: tbl_change.php:1129 +#: tbl_change.php:1027 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:1130 +#: tbl_change.php:1028 msgid "Show insert query" msgstr "" -#: tbl_change.php:1145 +#: tbl_change.php:1043 msgid "Go back to previous page" msgstr "Повернутись" -#: tbl_change.php:1146 +#: tbl_change.php:1044 msgid "Insert another new row" msgstr "Вставити новий запис" -#: tbl_change.php:1150 +#: tbl_change.php:1048 msgid "Go back to this page" msgstr "" -#: tbl_change.php:1158 +#: tbl_change.php:1056 msgid "Edit next row" msgstr "" -#: tbl_change.php:1169 +#: tbl_change.php:1067 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: tbl_change.php:1207 +#: tbl_change.php:1105 #, php-format msgid "Restart insertion with %s rows" msgstr "" -#: tbl_create.php:57 +#: tbl_create.php:55 #, php-format msgid "Table %s already exists!" msgstr "" -#: tbl_create.php:244 +#: tbl_create.php:241 #, php-format msgid "Table %1$s has been created." msgstr "" @@ -7561,200 +7615,200 @@ msgstr "Неможливо перейменувати індекс в PRIMARY!" msgid "No index parts defined!" msgstr "Не визначено частини індекса!" -#: tbl_indexes.php:159 +#: tbl_indexes.php:158 msgid "Create a new index" msgstr "Створити новий індекс" -#: tbl_indexes.php:161 +#: tbl_indexes.php:160 msgid "Modify an index" msgstr "Змінити індекс" -#: tbl_indexes.php:167 +#: tbl_indexes.php:166 msgid "Index name:" msgstr "Назва індекса :" -#: tbl_indexes.php:173 +#: tbl_indexes.php:172 msgid "Index type:" msgstr "Тип індекса :" -#: tbl_indexes.php:183 +#: tbl_indexes.php:182 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "(\"PRIMARY\" повинно бути іменем лише первинного ключа!)" -#: tbl_indexes.php:250 +#: tbl_indexes.php:249 #, php-format msgid "Add to index  %s column(s)" msgstr "Додати до індексу %s колоноку(и)" -#: tbl_indexes.php:255 tbl_structure.php:588 tbl_structure.php:599 +#: tbl_indexes.php:254 tbl_structure.php:586 tbl_structure.php:597 msgid "Column count has to be larger than zero." msgstr "" -#: tbl_move_copy.php:45 +#: tbl_move_copy.php:44 msgid "Can't move table to same one!" msgstr "Не можу перенести таблицю саму в себе!" -#: tbl_move_copy.php:47 +#: tbl_move_copy.php:46 msgid "Can't copy table to same one!" msgstr "Не можу скопіювати таблицю саму в себе!" -#: tbl_move_copy.php:55 +#: tbl_move_copy.php:54 #, php-format msgid "Table %s has been moved to %s." msgstr "Таблицю %s було перенесено в %s." -#: tbl_move_copy.php:57 +#: tbl_move_copy.php:56 #, php-format msgid "Table %s has been copied to %s." msgstr "Таблицю %s було скопійовано в %s." -#: tbl_move_copy.php:81 +#: tbl_move_copy.php:80 msgid "The table name is empty!" msgstr "Порожня назва таблиці!" -#: tbl_operations.php:248 +#: tbl_operations.php:246 msgid "Alter table order by" msgstr "Змінити порядок таблиці" -#: tbl_operations.php:257 +#: tbl_operations.php:255 msgid "(singly)" msgstr "(окремо)" -#: tbl_operations.php:277 +#: tbl_operations.php:275 msgid "Move table to (database.table):" msgstr "Перенести таблицю в (база даних.таблиця):" -#: tbl_operations.php:335 +#: tbl_operations.php:333 msgid "Table options" msgstr "Налаштування таблиці" -#: tbl_operations.php:339 +#: tbl_operations.php:337 msgid "Rename table to" msgstr "Перейменувати таблицю в" -#: tbl_operations.php:510 +#: tbl_operations.php:508 msgid "Copy table to (database.table):" msgstr "Скопіювати таблицю в (база даних.таблиця):" -#: tbl_operations.php:557 +#: tbl_operations.php:555 msgid "Switch to copied table" msgstr "Перейти до скопійованої таблиці" -#: tbl_operations.php:569 +#: tbl_operations.php:567 msgid "Table maintenance" msgstr "Обслговування таблиці" -#: tbl_operations.php:590 +#: tbl_operations.php:588 msgid "Defragment table" msgstr "" -#: tbl_operations.php:629 +#: tbl_operations.php:627 #, php-format msgid "Table %s has been flushed" msgstr "Було очищено кеш таблиці %s" -#: tbl_operations.php:635 +#: tbl_operations.php:633 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Очистити кеш таблиці (\"FLUSH\")" -#: tbl_operations.php:650 +#: tbl_operations.php:648 msgid "Partition maintenance" msgstr "" -#: tbl_operations.php:658 +#: tbl_operations.php:656 #, php-format msgid "Partition %s" msgstr "" -#: tbl_operations.php:661 +#: tbl_operations.php:659 msgid "Analyze" msgstr "" -#: tbl_operations.php:662 +#: tbl_operations.php:660 msgid "Check" msgstr "" -#: tbl_operations.php:663 +#: tbl_operations.php:661 msgid "Optimize" msgstr "" -#: tbl_operations.php:664 +#: tbl_operations.php:662 msgid "Rebuild" msgstr "" -#: tbl_operations.php:665 +#: tbl_operations.php:663 msgid "Repair" msgstr "" -#: tbl_operations.php:677 +#: tbl_operations.php:675 msgid "Remove partitioning" msgstr "" -#: tbl_operations.php:703 +#: tbl_operations.php:701 msgid "Check referential integrity:" msgstr "Перевір цілісність даних на рівні посилань:" -#: tbl_printview.php:73 +#: tbl_printview.php:72 msgid "Show tables" msgstr "Показати таблиці" -#: tbl_printview.php:308 tbl_structure.php:655 +#: tbl_printview.php:307 tbl_structure.php:653 msgid "Space usage" msgstr "Простір, що використовується" -#: tbl_printview.php:312 tbl_structure.php:659 +#: tbl_printview.php:311 tbl_structure.php:657 msgid "Usage" msgstr "Використання" -#: tbl_printview.php:339 tbl_structure.php:686 +#: tbl_printview.php:338 tbl_structure.php:684 msgid "Effective" msgstr "Ефективність" -#: tbl_printview.php:364 tbl_structure.php:724 +#: tbl_printview.php:363 tbl_structure.php:722 msgid "Row Statistics" msgstr "Статистика рядка" -#: tbl_printview.php:367 tbl_structure.php:727 +#: tbl_printview.php:366 tbl_structure.php:725 msgid "Statements" msgstr "Параметр" -#: tbl_printview.php:378 tbl_structure.php:739 +#: tbl_printview.php:377 tbl_structure.php:737 msgid "static" msgstr "" -#: tbl_printview.php:380 tbl_structure.php:741 +#: tbl_printview.php:379 tbl_structure.php:739 msgid "dynamic" msgstr "динамічний" -#: tbl_printview.php:402 tbl_structure.php:784 +#: tbl_printview.php:401 tbl_structure.php:782 msgid "Row length" msgstr "Довжина рядка" -#: tbl_printview.php:412 tbl_structure.php:792 +#: tbl_printview.php:411 tbl_structure.php:790 msgid " Row size " msgstr " Розмір рядка " -#: tbl_relation.php:278 +#: tbl_relation.php:276 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" -#: tbl_relation.php:404 +#: tbl_relation.php:402 #, fuzzy #| msgid "General relation features" msgid "Internal relation" msgstr "Загальні можливості" -#: tbl_relation.php:406 +#: tbl_relation.php:404 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: tbl_relation.php:412 +#: tbl_relation.php:410 msgid "Foreign key constraint" msgstr "" @@ -7762,229 +7816,229 @@ msgstr "" msgid "No rows selected" msgstr "" -#: tbl_select.php:130 +#: tbl_select.php:129 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Виконати \"запит згідно прикладу\" (символ підставновки: \"%\")" -#: tbl_select.php:136 +#: tbl_select.php:135 msgid "Operator" msgstr "" -#: tbl_select.php:267 +#: tbl_select.php:266 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "Вибрати поля (щонайменше одне):" -#: tbl_select.php:285 +#: tbl_select.php:284 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Додати умови пошуку (тіло для умови \"where\"):" -#: tbl_select.php:292 +#: tbl_select.php:291 msgid "Number of rows per page" msgstr "записів на сторінці" -#: tbl_select.php:298 +#: tbl_select.php:297 msgid "Display order:" msgstr "Порядок перегляду:" -#: tbl_structure.php:160 +#: tbl_structure.php:159 msgid "Browse distinct values" msgstr "" -#: tbl_structure.php:360 +#: tbl_structure.php:358 #, fuzzy #| msgid "None" msgctxt "None for default" msgid "None" msgstr "Немає" -#: tbl_structure.php:373 +#: tbl_structure.php:371 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Column %s has been dropped" msgstr "Таблицю %s було знищено" -#: tbl_structure.php:384 +#: tbl_structure.php:382 #, php-format msgid "A primary key has been added on %s" msgstr "Було додано первинний ключ до %s" -#: tbl_structure.php:399 tbl_structure.php:413 tbl_structure.php:427 +#: tbl_structure.php:397 tbl_structure.php:411 tbl_structure.php:425 #, php-format msgid "An index has been added on %s" msgstr "Було додано індекс для %s" -#: tbl_structure.php:505 tbl_structure.php:507 +#: tbl_structure.php:503 tbl_structure.php:505 msgid "Relation view" msgstr "Перегляд залежностей" -#: tbl_structure.php:514 tbl_structure.php:516 +#: tbl_structure.php:512 tbl_structure.php:514 msgid "Propose table structure" msgstr "Запропонувати структуру таблиці" -#: tbl_structure.php:539 +#: tbl_structure.php:537 #, fuzzy #| msgid "Add into comments" msgid "Add column" msgstr "Додати коментар" -#: tbl_structure.php:553 +#: tbl_structure.php:551 msgid "At End of Table" msgstr "У кінці таблиці" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At Beginning of Table" msgstr "На початку таблиці" -#: tbl_structure.php:555 +#: tbl_structure.php:553 #, php-format msgid "After %s" msgstr "Після %s" -#: tbl_structure.php:593 +#: tbl_structure.php:591 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "Створити індекс на %s колонках" -#: tbl_structure.php:755 +#: tbl_structure.php:753 msgid "partitioned" msgstr "" -#: tbl_tracking.php:113 +#: tbl_tracking.php:109 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:186 +#: tbl_tracking.php:182 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "" -#: tbl_tracking.php:194 +#: tbl_tracking.php:190 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "" -#: tbl_tracking.php:202 +#: tbl_tracking.php:198 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "" -#: tbl_tracking.php:212 +#: tbl_tracking.php:208 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:219 +#: tbl_tracking.php:215 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:220 +#: tbl_tracking.php:216 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:229 +#: tbl_tracking.php:225 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:250 tbl_tracking.php:378 +#: tbl_tracking.php:245 tbl_tracking.php:373 msgid "Close" msgstr "" -#: tbl_tracking.php:261 +#: tbl_tracking.php:256 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:380 +#: tbl_tracking.php:375 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:396 tbl_tracking.php:503 +#: tbl_tracking.php:391 tbl_tracking.php:498 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "" -#: tbl_tracking.php:409 tbl_tracking.php:460 +#: tbl_tracking.php:404 tbl_tracking.php:455 msgid "Date" msgstr "" -#: tbl_tracking.php:410 tbl_tracking.php:461 +#: tbl_tracking.php:405 tbl_tracking.php:456 msgid "Username" msgstr "" -#: tbl_tracking.php:411 +#: tbl_tracking.php:406 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:462 +#: tbl_tracking.php:457 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:506 +#: tbl_tracking.php:501 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:507 +#: tbl_tracking.php:502 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:520 +#: tbl_tracking.php:515 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:560 +#: tbl_tracking.php:555 msgid "Show versions" msgstr "" -#: tbl_tracking.php:592 +#: tbl_tracking.php:587 msgid "Version" msgstr "" -#: tbl_tracking.php:639 +#: tbl_tracking.php:634 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "" -#: tbl_tracking.php:641 +#: tbl_tracking.php:636 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:652 +#: tbl_tracking.php:647 #, php-format msgid "Activate tracking for %s.%s" msgstr "" -#: tbl_tracking.php:654 +#: tbl_tracking.php:649 msgid "Activate now" msgstr "" -#: tbl_tracking.php:667 +#: tbl_tracking.php:662 #, php-format msgid "Create version %s of %s.%s" msgstr "" -#: tbl_tracking.php:671 +#: tbl_tracking.php:666 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:679 +#: tbl_tracking.php:674 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:687 +#: tbl_tracking.php:682 msgid "Create version" msgstr "" @@ -8031,10 +8085,28 @@ msgstr "Профіль було поновлено." msgid "VIEW name" msgstr "" -#: view_operations.php:92 +#: view_operations.php:91 msgid "Rename view to" msgstr "" +#, fuzzy +#~| msgid "Enabled" +#~ msgctxt "BLOB repository" +#~ msgid "Enabled" +#~ msgstr "дозволено" + +#, fuzzy +#~| msgid "Repair table" +#~ msgctxt "BLOB repository" +#~ msgid "Repair" +#~ msgstr "Ремонтувати таблицю" + +#, fuzzy +#~| msgid "Disabled" +#~ msgctxt "BLOB repository" +#~ msgid "Disabled" +#~ msgstr "заблоковано" + #~ msgid "" #~ "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " #~ "extension. Please check your PHP configuration." diff --git a/po/ur.po b/po/ur.po index 2d63c3535..75dfdcd32 100644 --- a/po/ur.po +++ b/po/ur.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-21 13:53+0200\n" +"POT-Creation-Date: 2010-07-26 17:18+0200\n" "PO-Revision-Date: 2010-05-14 12:35+0200\n" "Last-Translator: \n" "Language-Team: Urdu \n" @@ -17,19 +17,19 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.1\n" -#: browse_foreigners.php:37 browse_foreigners.php:58 -#: libraries/display_tbl.lib.php:416 server_privileges.php:1506 +#: browse_foreigners.php:36 browse_foreigners.php:57 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1510 msgid "Show all" msgstr "سبھی دکھاو" -#: browse_foreigners.php:81 libraries/common.lib.php:2313 -#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:393 -#: libraries/export/pdf.php:146 pdf_schema.php:282 pdf_schema.php:1122 -#: pdf_schema.php:1138 +#: browse_foreigners.php:80 libraries/common.lib.php:2318 +#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:392 +#: libraries/export/pdf.php:146 pdf_schema.php:281 pdf_schema.php:1121 +#: pdf_schema.php:1137 msgid "Page number:" msgstr "صفحہ نمبر" -#: browse_foreigners.php:131 +#: browse_foreigners.php:130 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -39,139 +39,151 @@ msgstr "" "parent window, or your browser's security settings are configured to block " "cross-window updates." -#: browse_foreigners.php:149 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2829 -#: libraries/common.lib.php:2836 libraries/db_links.inc.php:74 -#: libraries/tbl_links.inc.php:62 +#: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 +#: db_structure.php:89 db_structure.php:91 db_structure.php:102 +#: db_structure.php:104 libraries/common.lib.php:2834 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "تلاش" -#: browse_foreigners.php:152 db_operations.php:384 db_operations.php:428 -#: db_operations.php:498 db_operations.php:608 db_search.php:344 -#: db_structure.php:566 js/messages.php:48 libraries/Config.class.php:1043 -#: libraries/Theme_Manager.class.php:310 +#: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 +#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 +#: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 -#: libraries/common.lib.php:1340 libraries/common.lib.php:2289 +#: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 -#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:275 -#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:531 -#: libraries/display_tbl.lib.php:613 libraries/replication_gui.lib.php:75 +#: libraries/display_export.lib.php:269 libraries/display_import.lib.php:275 +#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 +#: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 #: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:781 -#: main.php:127 navigation.php:231 pdf_pages.php:291 pdf_pages.php:327 -#: pdf_pages.php:529 pmd_pdf.php:115 server_binlog.php:128 -#: server_privileges.php:664 server_privileges.php:1616 -#: server_privileges.php:1963 server_privileges.php:2010 -#: server_privileges.php:2049 server_replication.php:234 -#: server_replication.php:317 server_replication.php:340 -#: server_synchronize.php:1208 tbl_change.php:328 tbl_change.php:1172 -#: tbl_change.php:1209 tbl_indexes.php:253 tbl_operations.php:264 -#: tbl_operations.php:301 tbl_operations.php:498 tbl_operations.php:560 -#: tbl_operations.php:680 tbl_select.php:324 tbl_structure.php:561 -#: tbl_structure.php:596 tbl_tracking.php:394 tbl_tracking.php:511 -#: view_create.php:181 view_operations.php:100 +#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 +#: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 +#: server_privileges.php:663 server_privileges.php:1620 +#: server_privileges.php:1967 server_privileges.php:2014 +#: server_privileges.php:2053 server_replication.php:233 +#: server_replication.php:316 server_replication.php:339 +#: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 +#: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 +#: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 +#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "جائو" -#: browse_foreigners.php:167 browse_foreigners.php:171 -#: libraries/Index.class.php:441 tbl_tracking.php:319 +#: browse_foreigners.php:166 browse_foreigners.php:170 +#: libraries/Index.class.php:441 tbl_tracking.php:314 msgid "Keyname" msgstr "کی نیم" -#: browse_foreigners.php:168 browse_foreigners.php:170 -#: server_collations.php:54 server_collations.php:66 server_engines.php:58 +#: browse_foreigners.php:167 browse_foreigners.php:169 +#: server_collations.php:54 server_collations.php:66 server_engines.php:57 #: server_status.php:738 msgid "Description" msgstr "وضاحت" -#: browse_foreigners.php:246 browse_foreigners.php:255 -#: browse_foreigners.php:267 browse_foreigners.php:275 +#: browse_foreigners.php:245 browse_foreigners.php:254 +#: browse_foreigners.php:266 browse_foreigners.php:274 msgid "Use this value" msgstr "یہ ویلیو استعمال کریں" -#: db_create.php:45 +#: bs_disp_as_mime_type.php:29 bs_play_media.php:35 +msgid "No blob streaming server configured!" +msgstr "" + +#: bs_disp_as_mime_type.php:35 +msgid "Failed to fetch headers" +msgstr "" + +#: bs_disp_as_mime_type.php:41 +msgid "Failed to open remote URL" +msgstr "" + +#: db_create.php:44 #, php-format msgid "Database %1$s has been created." msgstr "بن گئی ہے %1$s ڈیٹا بیس" -#: db_datadict.php:48 db_operations.php:377 +#: db_datadict.php:48 db_operations.php:313 msgid "Database comment: " msgstr "ڈیٹا بیس رائے" -#: db_datadict.php:164 libraries/tbl_properties.inc.php:723 -#: pdf_schema.php:1235 tbl_operations.php:346 tbl_printview.php:128 +#: db_datadict.php:164 libraries/tbl_properties.inc.php:722 +#: pdf_schema.php:1234 tbl_operations.php:344 tbl_printview.php:127 msgid "Table comments" msgstr "ٹیبل کمنٹس" -#: db_datadict.php:173 db_qbe.php:173 libraries/Index.class.php:445 +#: db_datadict.php:173 db_qbe.php:170 libraries/Index.class.php:445 #: libraries/export/htmlword.php:243 libraries/export/latex.php:364 #: libraries/export/odt.php:293 libraries/export/texytext.php:233 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:274 -#: pdf_schema.php:1261 pdf_schema.php:1282 tbl_change.php:306 -#: tbl_indexes.php:188 tbl_printview.php:140 tbl_relation.php:401 -#: tbl_select.php:133 tbl_structure.php:176 tbl_tracking.php:272 -#: tbl_tracking.php:323 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 +#: pdf_schema.php:1260 pdf_schema.php:1281 tbl_change.php:301 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:132 tbl_structure.php:175 tbl_tracking.php:267 +#: tbl_tracking.php:318 #, fuzzy #| msgid "Command" msgid "Column" msgstr "کمانڈ" -#: db_datadict.php:174 db_printview.php:105 libraries/Index.class.php:442 +#: db_datadict.php:174 db_printview.php:104 libraries/Index.class.php:442 #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 #: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:244 #: libraries/export/latex.php:364 libraries/export/odt.php:296 #: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:99 -#: pdf_schema.php:1262 pdf_schema.php:1283 server_privileges.php:2062 -#: tbl_change.php:285 tbl_change.php:312 tbl_printview.php:141 -#: tbl_printview.php:311 tbl_select.php:134 tbl_structure.php:177 -#: tbl_structure.php:658 tbl_tracking.php:273 tbl_tracking.php:320 +#: pdf_schema.php:1261 pdf_schema.php:1282 server_privileges.php:2066 +#: tbl_change.php:280 tbl_change.php:307 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:133 tbl_structure.php:176 +#: tbl_structure.php:656 tbl_tracking.php:268 tbl_tracking.php:315 msgid "Type" msgstr "قِسم" #: db_datadict.php:176 libraries/Index.class.php:448 #: libraries/export/htmlword.php:245 libraries/export/latex.php:364 #: libraries/export/odt.php:299 libraries/export/texytext.php:235 -#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1264 -#: pdf_schema.php:1285 tbl_change.php:321 tbl_printview.php:143 -#: tbl_structure.php:180 tbl_tracking.php:275 tbl_tracking.php:326 +#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1263 +#: pdf_schema.php:1284 tbl_change.php:316 tbl_printview.php:142 +#: tbl_structure.php:179 tbl_tracking.php:270 tbl_tracking.php:321 msgid "Null" msgstr "منسوخ" -#: db_datadict.php:177 db_structure.php:500 libraries/export/htmlword.php:246 +#: db_datadict.php:177 db_structure.php:486 libraries/export/htmlword.php:246 #: libraries/export/latex.php:364 libraries/export/odt.php:302 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:105 -#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 -#: tbl_structure.php:181 tbl_tracking.php:276 +#: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:143 +#: tbl_structure.php:180 tbl_tracking.php:271 msgid "Default" msgstr "ڈیفالٹ" #: db_datadict.php:181 libraries/export/htmlword.php:248 #: libraries/export/latex.php:366 libraries/export/odt.php:306 -#: libraries/export/texytext.php:238 pdf_schema.php:1267 pdf_schema.php:1288 -#: tbl_printview.php:148 +#: libraries/export/texytext.php:238 pdf_schema.php:1266 pdf_schema.php:1287 +#: tbl_printview.php:147 msgid "Links to" msgstr "لنک ٹو" -#: db_datadict.php:183 db_printview.php:111 libraries/export/htmlword.php:251 +#: db_datadict.php:183 db_printview.php:110 libraries/export/htmlword.php:251 #: libraries/export/latex.php:49 libraries/export/latex.php:369 #: libraries/export/odt.php:37 libraries/export/odt.php:311 #: libraries/export/sql.php:29 libraries/export/texytext.php:241 -#: libraries/tbl_properties.inc.php:129 pdf_schema.php:1278 -#: pdf_schema.php:1289 tbl_printview.php:150 +#: libraries/tbl_properties.inc.php:128 pdf_schema.php:1277 +#: pdf_schema.php:1288 tbl_printview.php:149 msgid "Comments" msgstr "آراء-رائے" #: db_datadict.php:266 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/export/htmlword.php:321 #: libraries/export/latex.php:434 libraries/export/odt.php:367 -#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:262 -#: pdf_schema.php:1343 server_privileges.php:1560 server_privileges.php:1571 -#: server_privileges.php:1881 server_privileges.php:1886 -#: server_privileges.php:2179 sql.php:131 sql.php:193 tbl_printview.php:227 -#: tbl_structure.php:349 tbl_tracking.php:336 tbl_tracking.php:341 +#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:261 +#: pdf_schema.php:1342 server_privileges.php:1564 server_privileges.php:1575 +#: server_privileges.php:1885 server_privileges.php:1890 +#: server_privileges.php:2183 sql.php:130 sql.php:192 tbl_printview.php:226 +#: tbl_structure.php:347 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "نہیں" @@ -182,17 +194,17 @@ msgstr "نہیں" #: libraries/mult_submits.inc.php:49 libraries/mult_submits.inc.php:54 #: libraries/mult_submits.inc.php:59 libraries/mult_submits.inc.php:91 #: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:105 -#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:261 -#: libraries/mult_submits.inc.php:272 pdf_schema.php:1343 -#: server_databases.php:63 server_privileges.php:1557 -#: server_privileges.php:1571 server_privileges.php:1881 -#: server_privileges.php:1884 server_privileges.php:2179 sql.php:192 -#: tbl_printview.php:227 tbl_structure.php:39 tbl_structure.php:349 -#: tbl_tracking.php:334 tbl_tracking.php:339 +#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:260 +#: libraries/mult_submits.inc.php:271 pdf_schema.php:1342 +#: server_databases.php:61 server_privileges.php:1561 +#: server_privileges.php:1575 server_privileges.php:1885 +#: server_privileges.php:1888 server_privileges.php:2183 sql.php:191 +#: tbl_printview.php:226 tbl_structure.php:38 tbl_structure.php:347 +#: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" msgstr "ہاں" -#: db_datadict.php:321 db_printview.php:265 tbl_printview.php:496 +#: db_datadict.php:321 db_printview.php:264 tbl_printview.php:495 msgid "Print" msgstr "پرنٹ" @@ -200,188 +212,154 @@ msgstr "پرنٹ" msgid "View dump (schema) of database" msgstr " ڈیٹا بیس کی ڈمپ (شیما) دیکھیں" -#: db_export.php:32 db_printview.php:95 db_qbe.php:101 db_structure.php:50 -#: db_tracking.php:34 export.php:352 navigation.php:326 +#: db_export.php:32 db_printview.php:94 db_qbe.php:98 db_structure.php:49 +#: db_tracking.php:30 export.php:350 navigation.php:325 msgid "No tables found in database." msgstr "ڈیٹا بیس میں کوئی ٹیبل نہیں مِلا" -#: db_export.php:42 db_search.php:326 server_export.php:26 +#: db_export.php:42 db_search.php:326 server_export.php:24 msgid "Select All" msgstr "سارا منتخب کریں" -#: db_export.php:44 db_search.php:329 server_export.php:28 +#: db_export.php:44 db_search.php:329 server_export.php:26 msgid "Unselect All" msgstr "سارا انتخاب ختم کریں" -#: db_operations.php:37 tbl_create.php:49 +#: db_operations.php:33 tbl_create.php:47 msgid "The database name is empty!" msgstr "ڈیٹا بیس کا نام خالی ہے!" -#: db_operations.php:235 +#: db_operations.php:231 #, php-format msgid "Database %s has been renamed to %s" msgstr "Database %s has been renamed to %s" -#: db_operations.php:239 +#: db_operations.php:235 #, php-format msgid "Database %s has been copied to %s" msgstr "Database %s has been copied to %s" -#: db_operations.php:411 +#: db_operations.php:347 msgid "Rename database to" msgstr "ڈیٹا بیس کا نام بدلیں" -#: db_operations.php:416 server_processlist.php:56 +#: db_operations.php:352 server_processlist.php:56 msgid "Command" msgstr "کمانڈ" -#: db_operations.php:428 tbl_change.php:1141 +#: db_operations.php:364 tbl_change.php:1039 msgid "and then" msgstr "اور پھر" -#: db_operations.php:454 +#: db_operations.php:390 msgid "Copy database to" msgstr "ڈیٹا بیس کاپی کریں" -#: db_operations.php:461 tbl_operations.php:527 tbl_tracking.php:387 +#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "سٹرکچر صرف" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:389 +#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "سٹرکچر اور ڈیٹا" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:388 +#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "صرف ڈیٹا" -#: db_operations.php:471 +#: db_operations.php:407 msgid "CREATE DATABASE before copying" msgstr "کاپی سے پہلے ڈیٹا بیس بنائیں" -#: db_operations.php:474 libraries/export/sql.php:51 +#: db_operations.php:410 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 -#: libraries/export/sql.php:81 tbl_operations.php:535 +#: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "شامل کریں %s" -#: db_operations.php:478 libraries/export/sql.php:77 tbl_operations.php:298 -#: tbl_operations.php:537 +#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "ویلیو شامل کریں AUTO_INCREMENT" -#: db_operations.php:482 tbl_operations.php:544 +#: db_operations.php:418 tbl_operations.php:542 msgid "Add constraints" msgstr "Add constraints" -#: db_operations.php:495 +#: db_operations.php:431 msgid "Switch to copied database" msgstr "Switch to copied database" -#: db_operations.php:536 -msgid "BLOB Repository" -msgstr "BLOB Repository" - -#: db_operations.php:539 db_tracking.php:75 libraries/common.lib.php:1357 -#: libraries/server_links.inc.php:48 server_processlist.php:58 -#: tbl_tracking.php:595 test/theme.php:100 -msgid "Status" -msgstr "حالت" - -#: db_operations.php:547 -msgctxt "BLOB repository" -msgid "Enabled" -msgstr "فعال" - -#: db_operations.php:551 -msgid "Disable" -msgstr "غیر فعال" - -#: db_operations.php:561 -msgid "Damaged" -msgstr "ضرر" - -#: db_operations.php:565 -msgctxt "BLOB repository" -msgid "Repair" -msgstr "مرمت" - -#: db_operations.php:573 -msgctxt "BLOB repository" -msgid "Disabled" -msgstr "غیر فعال" - -#: db_operations.php:577 -msgid "Enable" -msgstr "فعال" - -#: db_operations.php:601 libraries/Index.class.php:447 +#: db_operations.php:451 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 -#: server_collations.php:53 server_collations.php:65 server_databases.php:110 -#: tbl_operations.php:362 tbl_select.php:135 tbl_structure.php:178 -#: tbl_structure.php:766 tbl_tracking.php:274 tbl_tracking.php:325 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 +#: server_collations.php:53 server_collations.php:65 server_databases.php:108 +#: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:177 +#: tbl_structure.php:764 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "کولیکشن" -#: db_operations.php:614 main.php:315 pdf_schema.php:33 -#, php-format +#: db_operations.php:464 pdf_schema.php:32 +#, fuzzy, php-format +#| msgid "" +#| "The additional features for working with linked tables have been " +#| "deactivated. To find out why click %shere%s." msgid "" -"The additional features for working with linked tables have been " -"deactivated. To find out why click %shere%s." +"The phpMyAdmin configuration storage has been deactivated. To find out why " +"click %shere%s." msgstr "" "The additional features for working with linked tables have been " "deactivated. To find out why click %shere%s." -#: db_operations.php:647 +#: db_operations.php:497 msgid "Edit PDF Pages" msgstr "پی ڈی ایف صفحوں کی تدوین کریں" -#: db_printview.php:103 db_tracking.php:71 db_tracking.php:156 +#: db_printview.php:102 db_tracking.php:67 db_tracking.php:152 #: libraries/db_structure.lib.php:37 libraries/export/xml.php:327 -#: libraries/header.inc.php:125 pdf_pages.php:423 server_privileges.php:1657 -#: server_privileges.php:1713 server_privileges.php:1977 -#: server_synchronize.php:422 server_synchronize.php:865 tbl_tracking.php:591 +#: libraries/header.inc.php:125 pdf_pages.php:422 server_privileges.php:1661 +#: server_privileges.php:1717 server_privileges.php:1981 +#: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "ٹیبل" -#: db_printview.php:104 libraries/db_structure.lib.php:47 +#: db_printview.php:103 libraries/db_structure.lib.php:47 #: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 -#: navigation.php:629 navigation.php:651 server_databases.php:121 -#: tbl_printview.php:392 tbl_structure.php:364 tbl_structure.php:776 +#: navigation.php:628 navigation.php:650 server_databases.php:119 +#: tbl_printview.php:391 tbl_structure.php:362 tbl_structure.php:774 msgid "Rows" msgstr "" -#: db_printview.php:108 libraries/db_structure.lib.php:58 tbl_indexes.php:189 +#: db_printview.php:107 libraries/db_structure.lib.php:58 tbl_indexes.php:188 msgid "Size" msgstr "ناپ" -#: db_printview.php:161 db_structure.php:456 libraries/export/sql.php:556 +#: db_printview.php:160 db_structure.php:442 libraries/export/sql.php:556 #: libraries/export/sql.php:896 msgid "in use" msgstr "استعمال میں" -#: db_printview.php:186 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:511 pdf_schema.php:1240 tbl_printview.php:432 -#: tbl_structure.php:808 +#: db_printview.php:185 libraries/db_info.inc.php:86 +#: libraries/export/sql.php:511 pdf_schema.php:1239 tbl_printview.php:431 +#: tbl_structure.php:806 msgid "Creation" msgstr "تخلیق" -#: db_printview.php:195 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:516 pdf_schema.php:1245 tbl_printview.php:442 -#: tbl_structure.php:816 +#: db_printview.php:194 libraries/db_info.inc.php:91 +#: libraries/export/sql.php:516 pdf_schema.php:1244 tbl_printview.php:441 +#: tbl_structure.php:814 msgid "Last update" msgstr "آخری دفعہ اپ ڈیٹ" -#: db_printview.php:204 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:521 pdf_schema.php:1250 tbl_printview.php:452 -#: tbl_structure.php:824 +#: db_printview.php:203 libraries/db_info.inc.php:96 +#: libraries/export/sql.php:521 pdf_schema.php:1249 tbl_printview.php:451 +#: tbl_structure.php:822 msgid "Last check" msgstr "آخری دفعہ چیک" -#: db_printview.php:221 db_structure.php:479 +#: db_printview.php:220 db_structure.php:465 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -389,94 +367,94 @@ msgid_plural "%s tables" msgstr[0] "%s table(s)" msgstr[1] "%s table(s)" -#: db_qbe.php:28 import.php:453 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1980 libraries/sql_query_form.lib.php:138 -#: tbl_operations.php:212 tbl_relation.php:291 tbl_row_action.php:130 -#: view_operations.php:61 +#: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 +#: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "Your SQL query has been executed successfully" -#: db_qbe.php:41 +#: db_qbe.php:38 msgid "You have to choose at least one column to display" msgstr "آپ کو کم از کم ایک کالم چننا ہو گا ڈسپے کیلئے۔" -#: db_qbe.php:199 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:865 +#: db_qbe.php:196 libraries/db_structure.lib.php:95 +#: libraries/display_tbl.lib.php:864 msgid "Sort" msgstr "چھانٹنا" -#: db_qbe.php:208 db_qbe.php:242 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:522 libraries/display_tbl.lib.php:827 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:259 -#: tbl_select.php:311 +#: db_qbe.php:205 db_qbe.php:239 libraries/db_structure.lib.php:102 +#: libraries/display_tbl.lib.php:521 libraries/display_tbl.lib.php:826 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:257 +#: tbl_select.php:310 msgid "Ascending" msgstr "چڑھتا ہوا" -#: db_qbe.php:209 db_qbe.php:250 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:527 libraries/display_tbl.lib.php:824 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:260 -#: tbl_select.php:312 +#: db_qbe.php:206 db_qbe.php:247 libraries/db_structure.lib.php:110 +#: libraries/display_tbl.lib.php:526 libraries/display_tbl.lib.php:823 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:258 +#: tbl_select.php:311 msgid "Descending" msgstr "گرتا ہوا" -#: db_qbe.php:263 db_tracking.php:77 libraries/display_tbl.lib.php:307 -#: tbl_change.php:275 tbl_tracking.php:596 +#: db_qbe.php:260 db_tracking.php:73 libraries/display_tbl.lib.php:306 +#: tbl_change.php:270 tbl_tracking.php:591 msgid "Show" msgstr "دیکھیں" -#: db_qbe.php:299 +#: db_qbe.php:296 msgid "Criteria" msgstr "معیار" -#: db_qbe.php:352 db_qbe.php:434 db_qbe.php:526 db_qbe.php:557 +#: db_qbe.php:349 db_qbe.php:431 db_qbe.php:523 db_qbe.php:554 msgid "Ins" msgstr "Ins" -#: db_qbe.php:356 db_qbe.php:438 db_qbe.php:523 db_qbe.php:554 +#: db_qbe.php:353 db_qbe.php:435 db_qbe.php:520 db_qbe.php:551 msgid "And" msgstr "اور" -#: db_qbe.php:365 db_qbe.php:446 db_qbe.php:528 db_qbe.php:559 +#: db_qbe.php:362 db_qbe.php:443 db_qbe.php:525 db_qbe.php:556 msgid "Del" msgstr "Del" -#: db_qbe.php:369 db_qbe.php:450 db_qbe.php:521 db_qbe.php:552 -#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:778 -#: server_privileges.php:297 tbl_change.php:1027 tbl_indexes.php:249 -#: tbl_select.php:285 +#: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 +#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:777 +#: server_privileges.php:296 tbl_change.php:925 tbl_indexes.php:248 +#: tbl_select.php:284 msgid "Or" msgstr "یا" -#: db_qbe.php:506 +#: db_qbe.php:503 msgid "Modify" msgstr "تبدیلیاں کریں" -#: db_qbe.php:583 +#: db_qbe.php:580 #, fuzzy #| msgid "Add/Delete Criteria Row" msgid "Add/Delete criteria rows" msgstr "شامل یا ختم کریں Criteria Row" -#: db_qbe.php:595 +#: db_qbe.php:592 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Add/Delete columns" msgstr "فیلڈ کالمز شامل یا ختم کریں" -#: db_qbe.php:608 db_qbe.php:633 +#: db_qbe.php:605 db_qbe.php:630 msgid "Update Query" msgstr "اپ ڈیٹ Query" -#: db_qbe.php:616 +#: db_qbe.php:613 msgid "Use Tables" msgstr "ٹیبلز استعمال کریں" -#: db_qbe.php:639 +#: db_qbe.php:636 #, php-format msgid "SQL query on database %s:" msgstr "SQL query on database %s:" -#: db_qbe.php:933 libraries/common.lib.php:1222 +#: db_qbe.php:930 libraries/common.lib.php:1215 msgid "Submit Query" msgstr "Submit Query" @@ -516,17 +494,17 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s match(es) inside table %s" msgstr[1] "%s match(es) inside table %s" -#: db_search.php:249 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2831 -#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:49 -#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:466 +#: db_search.php:249 db_structure.php:75 db_structure.php:76 +#: db_structure.php:88 db_structure.php:90 db_structure.php:101 +#: db_structure.php:103 libraries/common.lib.php:2836 +#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 +#: tbl_structure.php:35 tbl_structure.php:47 tbl_structure.php:464 msgid "Browse" msgstr "Browse" -#: db_search.php:254 libraries/display_tbl.lib.php:1164 -#: libraries/display_tbl.lib.php:2055 libraries/sql_query_form.lib.php:453 -#: pdf_pages.php:285 pdf_pages.php:424 pdf_pages.php:460 pdf_pages.php:488 +#: db_search.php:254 libraries/display_tbl.lib.php:1163 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 msgid "Delete" @@ -566,66 +544,66 @@ msgstr "ٹیبلز کے اندر:" msgid "Inside column:" msgstr "فیلڈ کے اندر:" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2830 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:75 +#: db_structure.php:79 db_structure.php:80 db_structure.php:92 +#: db_structure.php:93 db_structure.php:105 db_structure.php:106 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 +#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "داخل کریں" -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2827 libraries/common.lib.php:2834 -#: libraries/db_links.inc.php:62 libraries/export/htmlword.php:22 +#: db_structure.php:81 db_structure.php:94 db_structure.php:107 +#: libraries/common.lib.php:2832 libraries/common.lib.php:2839 +#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 -#: libraries/tbl_links.inc.php:55 pmd_general.php:133 -#: server_privileges.php:593 server_replication.php:314 tbl_tracking.php:268 +#: libraries/tbl_links.inc.php:54 pmd_general.php:133 +#: server_privileges.php:592 server_replication.php:313 tbl_tracking.php:263 msgid "Structure" msgstr "ساخت" -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:544 db_structure.php:545 db_tracking.php:90 -#: libraries/Index.class.php:482 libraries/common.lib.php:1659 -#: libraries/db_links.inc.php:99 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:126 -#: server_databases.php:351 tbl_structure.php:26 tbl_structure.php:150 -#: tbl_structure.php:151 tbl_structure.php:470 +#: db_structure.php:82 db_structure.php:83 db_structure.php:95 +#: db_structure.php:96 db_structure.php:108 db_structure.php:109 +#: db_structure.php:530 db_structure.php:531 db_tracking.php:86 +#: libraries/Index.class.php:482 libraries/common.lib.php:1663 +#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 +#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 +#: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" msgstr "نکلالنا" -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:542 db_structure.php:543 libraries/common.lib.php:1658 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:104 +#: db_structure.php:84 db_structure.php:85 db_structure.php:97 +#: db_structure.php:98 db_structure.php:110 db_structure.php:111 +#: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 +#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 msgid "Empty" msgstr "خالی" -#: db_structure.php:315 libraries/tbl_links.inc.php:99 +#: db_structure.php:301 libraries/tbl_links.inc.php:98 #, php-format msgid "Table %s has been emptied" msgstr " %s ٹیبل" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "View %s has been dropped" msgstr "View %s has been dropped" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "Table %s has been dropped" msgstr "Table %s has been dropped" -#: db_structure.php:332 +#: db_structure.php:318 msgid "Tracking is active." msgstr "ٹریکنگ ایکٹو ہے" -#: db_structure.php:334 +#: db_structure.php:320 msgid "Tracking is not active." msgstr "ٹریکنگ ایکٹو نہیں ہے" -#: db_structure.php:419 libraries/display_tbl.lib.php:1943 +#: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -634,160 +612,166 @@ msgstr "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." -#: db_structure.php:433 db_structure.php:447 libraries/header.inc.php:125 -#: libraries/tbl_info.inc.php:65 tbl_structure.php:184 test/theme.php:73 +#: db_structure.php:419 db_structure.php:433 libraries/header.inc.php:125 +#: libraries/tbl_info.inc.php:60 tbl_structure.php:183 test/theme.php:73 msgid "View" msgstr "ویو" -#: db_structure.php:484 libraries/db_structure.lib.php:40 -#: libraries/server_links.inc.php:69 server_replication.php:32 -#: server_replication.php:163 server_status.php:368 +#: db_structure.php:470 libraries/db_structure.lib.php:40 +#: libraries/server_links.inc.php:69 server_replication.php:31 +#: server_replication.php:162 server_status.php:368 msgid "Replication" msgstr "لپیٹنا" -#: db_structure.php:488 +#: db_structure.php:474 msgid "Sum" msgstr "مجموعہ" -#: db_structure.php:495 libraries/StorageEngine.class.php:349 +#: db_structure.php:481 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s is the default storage engine on this MySQL server." -#: db_structure.php:523 db_structure.php:540 db_structure.php:541 -#: libraries/display_tbl.lib.php:2080 libraries/display_tbl.lib.php:2085 -#: libraries/mult_submits.inc.php:15 server_databases.php:345 -#: server_databases.php:350 server_privileges.php:1588 tbl_structure.php:454 -#: tbl_structure.php:463 +#: db_structure.php:509 db_structure.php:526 db_structure.php:527 +#: libraries/display_tbl.lib.php:2039 libraries/display_tbl.lib.php:2044 +#: libraries/mult_submits.inc.php:15 server_databases.php:343 +#: server_databases.php:348 server_privileges.php:1592 tbl_structure.php:452 +#: tbl_structure.php:461 msgid "With selected:" msgstr "With selected:" -#: db_structure.php:526 libraries/display_tbl.lib.php:2075 -#: server_databases.php:347 server_privileges.php:569 -#: server_privileges.php:1591 tbl_structure.php:457 +#: db_structure.php:512 libraries/display_tbl.lib.php:2034 +#: server_databases.php:345 server_privileges.php:568 +#: server_privileges.php:1595 tbl_structure.php:455 msgid "Check All" msgstr "چیک آل" -#: db_structure.php:530 libraries/display_tbl.lib.php:2076 -#: libraries/replication_gui.lib.php:35 server_databases.php:349 -#: server_privileges.php:572 server_privileges.php:1595 tbl_structure.php:461 +#: db_structure.php:516 libraries/display_tbl.lib.php:2035 +#: libraries/replication_gui.lib.php:35 server_databases.php:347 +#: server_privileges.php:571 server_privileges.php:1599 tbl_structure.php:459 msgid "Uncheck All" msgstr "ان چیک آل" -#: db_structure.php:535 +#: db_structure.php:521 msgid "Check tables having overhead" msgstr "اوورہیڈ ٹیبلز چیک کریں" -#: db_structure.php:546 db_structure.php:547 db_structure.php:598 -#: libraries/display_tbl.lib.php:2179 libraries/mult_submits.inc.php:27 -#: tbl_structure.php:491 tbl_structure.php:493 +#: db_structure.php:532 db_structure.php:533 db_structure.php:584 +#: libraries/display_tbl.lib.php:2138 libraries/mult_submits.inc.php:27 +#: tbl_structure.php:489 tbl_structure.php:491 msgid "Print view" msgstr "پرنٹ ویو" -#: db_structure.php:548 db_structure.php:549 libraries/mult_submits.inc.php:41 -#: tbl_operations.php:580 +#: db_structure.php:534 db_structure.php:535 libraries/mult_submits.inc.php:41 +#: tbl_operations.php:578 msgid "Check table" msgstr "ٹیبل چیک کریں" -#: db_structure.php:550 db_structure.php:551 libraries/mult_submits.inc.php:46 -#: tbl_operations.php:620 tbl_structure.php:708 tbl_structure.php:710 +#: db_structure.php:536 db_structure.php:537 libraries/mult_submits.inc.php:46 +#: tbl_operations.php:618 tbl_structure.php:706 tbl_structure.php:708 msgid "Optimize table" msgstr "ٹیبلز آپٹی مائز " -#: db_structure.php:552 db_structure.php:553 libraries/mult_submits.inc.php:51 -#: tbl_operations.php:610 +#: db_structure.php:538 db_structure.php:539 libraries/mult_submits.inc.php:51 +#: tbl_operations.php:608 msgid "Repair table" msgstr "ٹیبلز مرمت کریں" -#: db_structure.php:554 db_structure.php:555 libraries/mult_submits.inc.php:56 -#: tbl_operations.php:600 +#: db_structure.php:540 db_structure.php:541 libraries/mult_submits.inc.php:56 +#: tbl_operations.php:598 msgid "Analyze table" msgstr "ٹیبلز کا تجزیہ" -#: db_structure.php:556 db_structure.php:557 libraries/db_links.inc.php:70 -#: libraries/display_export.lib.php:82 libraries/display_tbl.lib.php:2093 -#: libraries/display_tbl.lib.php:2224 libraries/mult_submits.inc.php:61 -#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:81 -#: pmd_pdf.php:83 pmd_pdf.php:108 server_privileges.php:1372 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 +#: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 +#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 +#: pmd_pdf.php:81 pmd_pdf.php:106 server_privileges.php:1376 #: setup/frames/menu.inc.php:22 tbl_row_action.php:58 msgid "Export" msgstr "برآمد" -#: db_structure.php:605 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:591 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "ڈیٹا ڈتشنری" -#: db_tracking.php:65 +#: db_tracking.php:61 msgid "Tracked tables" msgstr "ٹریکڈ ٹیبلز" -#: db_tracking.php:70 libraries/export/htmlword.php:85 +#: db_tracking.php:66 libraries/export/htmlword.php:85 #: libraries/export/latex.php:152 libraries/export/odt.php:112 #: libraries/export/sql.php:339 libraries/export/texytext.php:84 #: libraries/export/xml.php:254 libraries/header.inc.php:105 -#: libraries/header_printview.inc.php:57 server_databases.php:168 -#: server_privileges.php:1652 server_privileges.php:1713 -#: server_privileges.php:1971 server_processlist.php:55 -#: server_synchronize.php:1178 server_synchronize.php:1182 -#: tbl_tracking.php:590 test/theme.php:64 +#: libraries/header_printview.inc.php:57 server_databases.php:166 +#: server_privileges.php:1656 server_privileges.php:1717 +#: server_privileges.php:1975 server_processlist.php:55 +#: server_synchronize.php:1177 server_synchronize.php:1181 +#: tbl_tracking.php:585 test/theme.php:64 msgid "Database" msgstr "ڈیٹا بیس" -#: db_tracking.php:72 +#: db_tracking.php:68 msgid "Last version" msgstr "آخری ورژن" -#: db_tracking.php:73 tbl_tracking.php:593 +#: db_tracking.php:69 tbl_tracking.php:588 msgid "Created" msgstr "تخلیق کیا گیا" -#: db_tracking.php:74 tbl_tracking.php:594 +#: db_tracking.php:70 tbl_tracking.php:589 msgid "Updated" msgstr "اپ ڈیٹ کیا گیا" -#: db_tracking.php:76 libraries/Index.class.php:439 -#: libraries/db_structure.lib.php:44 server_databases.php:202 -#: server_privileges.php:1534 server_privileges.php:1717 -#: server_privileges.php:2065 tbl_structure.php:186 +#: db_tracking.php:71 libraries/common.lib.php:1361 +#: libraries/server_links.inc.php:48 server_processlist.php:58 +#: tbl_tracking.php:590 test/theme.php:100 +msgid "Status" +msgstr "حالت" + +#: db_tracking.php:72 libraries/Index.class.php:439 +#: libraries/db_structure.lib.php:44 server_databases.php:200 +#: server_privileges.php:1538 server_privileges.php:1721 +#: server_privileges.php:2069 tbl_structure.php:185 msgid "Action" msgstr "عمل" -#: db_tracking.php:87 db_tracking.php:119 +#: db_tracking.php:83 db_tracking.php:115 msgid "Delete tracking data for this table" msgstr "اس ٹیبل کیلئے ٹریکنگ ڈیٹا حذف کریں " -#: db_tracking.php:105 tbl_tracking.php:547 tbl_tracking.php:605 -#: tbl_tracking.php:612 +#: db_tracking.php:101 tbl_tracking.php:542 tbl_tracking.php:600 +#: tbl_tracking.php:607 msgid "active" msgstr "ایکٹو" -#: db_tracking.php:107 tbl_tracking.php:549 tbl_tracking.php:607 -#: tbl_tracking.php:609 +#: db_tracking.php:103 tbl_tracking.php:544 tbl_tracking.php:602 +#: tbl_tracking.php:604 msgid "not active" msgstr "ایکٹو نہیں" -#: db_tracking.php:120 +#: db_tracking.php:116 msgid "Versions" msgstr "ورژن" -#: db_tracking.php:121 tbl_tracking.php:378 tbl_tracking.php:623 +#: db_tracking.php:117 tbl_tracking.php:373 tbl_tracking.php:618 msgid "Tracking report" msgstr "ٹریکنگ ریپورٹ" -#: db_tracking.php:122 tbl_tracking.php:250 tbl_tracking.php:623 +#: db_tracking.php:118 tbl_tracking.php:245 tbl_tracking.php:618 msgid "Structure snapshot" msgstr "سٹرکچر کی تصویر" -#: db_tracking.php:151 +#: db_tracking.php:147 msgid "Untracked tables" msgstr "ان ٹریکڈ ٹیبلز" -#: db_tracking.php:171 db_tracking.php:173 tbl_structure.php:527 -#: tbl_structure.php:529 +#: db_tracking.php:167 db_tracking.php:169 tbl_structure.php:525 +#: tbl_structure.php:527 msgid "Track table" msgstr "ٹریک ٹیبل" -#: db_tracking.php:199 +#: db_tracking.php:195 msgid "Database Log" msgstr "ڈیٹا بیس لوگ" @@ -795,29 +779,29 @@ msgstr "ڈیٹا بیس لوگ" msgid "Selected export type has to be saved in file!" msgstr "Selected export type has to be saved in file!" -#: export.php:153 export.php:178 export.php:620 +#: export.php:152 export.php:177 export.php:615 #, php-format msgid "Insufficient space to save the file %s." msgstr "Insufficient space to save the file %s." -#: export.php:287 +#: export.php:286 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "" "File %s already exists on server, change filename or check overwrite option." -#: export.php:291 export.php:295 +#: export.php:290 export.php:294 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "The web server does not have permission to save the file %s." -#: export.php:622 +#: export.php:617 #, php-format msgid "Dump has been saved to file %s." msgstr "Dump has been saved to file %s." -#: import.php:59 +#: import.php:58 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -826,14 +810,14 @@ msgstr "" "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:840 -#: libraries/File.class.php:950 +#: import.php:277 import.php:330 libraries/File.class.php:566 +#: libraries/File.class.php:676 msgid "File could not be read" msgstr "فائل پڑھی نہیں جا سکتی" -#: import.php:286 import.php:295 import.php:314 import.php:323 -#: libraries/File.class.php:1020 libraries/File.class.php:1028 -#: libraries/File.class.php:1044 libraries/File.class.php:1052 +#: import.php:285 import.php:294 import.php:313 import.php:322 +#: libraries/File.class.php:746 libraries/File.class.php:754 +#: libraries/File.class.php:770 libraries/File.class.php:778 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -842,7 +826,7 @@ msgstr "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." -#: import.php:336 +#: import.php:335 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -852,29 +836,29 @@ msgstr "" "file size exceeded the maximum size permitted by your PHP configuration. See " "[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." -#: import.php:371 libraries/display_import.lib.php:23 +#: import.php:370 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "Could not load import plugins, please check your installation!" -#: import.php:396 +#: import.php:395 msgid "The bookmark has been deleted." msgstr "The bookmark has been deleted." -#: import.php:400 +#: import.php:399 msgid "Showing bookmark" msgstr "Showing bookmark" -#: import.php:402 sql.php:625 +#: import.php:401 sql.php:618 #, php-format msgid "Bookmark %s created" msgstr "Bookmark %s created" -#: import.php:408 import.php:414 +#: import.php:407 import.php:413 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Import has been successfully finished, %d queries executed." -#: import.php:423 +#: import.php:422 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -882,25 +866,25 @@ msgstr "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." -#: import.php:425 +#: import.php:424 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." msgstr "" -#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:240 +#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:239 #: user_password.php:110 msgid "Back" msgstr "" -#: index.php:188 +#: index.php:183 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin is more friendly with a frames-capable browser." -#: js/messages.php:25 server_synchronize.php:344 server_synchronize.php:356 -#: server_synchronize.php:372 server_synchronize.php:379 -#: server_synchronize.php:738 server_synchronize.php:766 -#: server_synchronize.php:794 server_synchronize.php:806 +#: js/messages.php:25 server_synchronize.php:343 server_synchronize.php:355 +#: server_synchronize.php:371 server_synchronize.php:378 +#: server_synchronize.php:737 server_synchronize.php:765 +#: server_synchronize.php:793 server_synchronize.php:805 msgid "Click to select" msgstr "منتخب کرنے کیلئے کلک کریں" @@ -908,15 +892,15 @@ msgstr "منتخب کرنے کیلئے کلک کریں" msgid "Click to unselect" msgstr "غیر منتخب کیلئے کلک کریں" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:88 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:87 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" statements are disabled." -#: js/messages.php:30 libraries/mult_submits.inc.php:257 sql.php:187 +#: js/messages.php:30 libraries/mult_submits.inc.php:256 sql.php:186 msgid "Do you really want to " msgstr "کیا آپ یقیناً کرنا چاہتے ہیں" -#: js/messages.php:31 libraries/mult_submits.inc.php:257 sql.php:171 +#: js/messages.php:31 libraries/mult_submits.inc.php:256 sql.php:170 msgid "You are about to DESTROY a complete database!" msgstr "You are about to DESTROY a complete database!" @@ -945,11 +929,11 @@ msgstr "ہوسٹ نام خالی ہے!" msgid "The user name is empty!" msgstr "صارف کا نام خالی ہے" -#: js/messages.php:44 server_privileges.php:1228 user_password.php:65 +#: js/messages.php:44 server_privileges.php:1229 user_password.php:65 msgid "The password is empty!" msgstr "پاس ورڈ خالی ہے" -#: js/messages.php:45 server_privileges.php:1226 user_password.php:68 +#: js/messages.php:45 server_privileges.php:1227 user_password.php:68 msgid "The passwords aren't the same!" msgstr "پاس ورڈ ایک جیسے نہیں ہیں" @@ -957,27 +941,27 @@ msgstr "پاس ورڈ ایک جیسے نہیں ہیں" msgid "Cancel" msgstr "منسوخ" -#: js/messages.php:52 pmd_save_pos.php:53 +#: js/messages.php:52 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "تبدیلیاں محفوظ ہو چکی ہیں" -#: js/messages.php:53 pmd_relation_upd.php:48 +#: js/messages.php:53 pmd_relation_upd.php:47 msgid "Relation deleted" msgstr "ریلیشن حذف ہو گیا" -#: js/messages.php:54 pmd_relation_new.php:63 +#: js/messages.php:54 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "FOREIGN KEY relation added" -#: js/messages.php:55 pmd_relation_new.php:85 +#: js/messages.php:55 pmd_relation_new.php:84 msgid "Internal relation added" msgstr "اندرونی ریلیشن شامل ہو گیا" -#: js/messages.php:56 pmd_relation_new.php:62 pmd_relation_new.php:87 +#: js/messages.php:56 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "غلطی:ریلیشن شامل نہیں ہوا" -#: js/messages.php:57 pmd_relation_new.php:30 +#: js/messages.php:57 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "غلطی : ریلیشن پہلے سے موجود ہے" @@ -985,13 +969,13 @@ msgstr "غلطی : ریلیشن پہلے سے موجود ہے" msgid "Error saving coordinates for Designer." msgstr "Error saving coordinates for Designer." -#: js/messages.php:59 libraries/relation.lib.php:94 -#: libraries/relation.lib.php:106 +#: js/messages.php:59 libraries/relation.lib.php:89 +#: libraries/relation.lib.php:101 msgid "General relation features" msgstr "جنرل ریلیشن فیچرز" -#: js/messages.php:59 libraries/relation.lib.php:88 -#: libraries/relation.lib.php:95 +#: js/messages.php:59 libraries/relation.lib.php:83 +#: libraries/relation.lib.php:90 msgid "Disabled" msgstr "غیر فعال" @@ -1007,7 +991,7 @@ msgstr "" msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:547 +#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:545 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "Choose column to display" @@ -1032,10 +1016,10 @@ msgid "Prev" msgstr "" #. l10n: Display text for next month link in calendar -#: js/messages.php:81 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:337 -#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:422 -#: tbl_structure.php:800 +#: js/messages.php:81 libraries/common.lib.php:2358 +#: libraries/common.lib.php:2361 libraries/display_tbl.lib.php:336 +#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 +#: tbl_structure.php:798 msgid "Next" msgstr "" @@ -1093,63 +1077,63 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1562 +#: js/messages.php:101 libraries/common.lib.php:1566 msgid "Jan" msgstr "" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1564 +#: js/messages.php:103 libraries/common.lib.php:1568 msgid "Feb" msgstr "" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1566 +#: js/messages.php:105 libraries/common.lib.php:1570 msgid "Mar" msgstr "" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1568 +#: js/messages.php:107 libraries/common.lib.php:1572 msgid "Apr" msgstr "" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1570 +#: js/messages.php:109 libraries/common.lib.php:1574 msgctxt "Short month name" msgid "May" msgstr "" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1572 +#: js/messages.php:111 libraries/common.lib.php:1576 msgid "Jun" msgstr "" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1574 +#: js/messages.php:113 libraries/common.lib.php:1578 msgid "Jul" msgstr "" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1576 +#: js/messages.php:115 libraries/common.lib.php:1580 msgid "Aug" msgstr "" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1578 +#: js/messages.php:117 libraries/common.lib.php:1582 msgid "Sep" msgstr "" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1580 +#: js/messages.php:119 libraries/common.lib.php:1584 msgid "Oct" msgstr "" #. l10n: Short month name -#: js/messages.php:121 libraries/common.lib.php:1582 +#: js/messages.php:121 libraries/common.lib.php:1586 msgid "Nov" msgstr "" #. l10n: Short month name -#: js/messages.php:123 libraries/common.lib.php:1584 +#: js/messages.php:123 libraries/common.lib.php:1588 msgid "Dec" msgstr "" @@ -1182,37 +1166,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1587 +#: js/messages.php:136 libraries/common.lib.php:1591 msgid "Sun" msgstr "" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1589 +#: js/messages.php:138 libraries/common.lib.php:1593 msgid "Mon" msgstr "" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1591 +#: js/messages.php:140 libraries/common.lib.php:1595 msgid "Tue" msgstr "" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1593 +#: js/messages.php:142 libraries/common.lib.php:1597 msgid "Wed" msgstr "" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1595 +#: js/messages.php:144 libraries/common.lib.php:1599 msgid "Thu" msgstr "" #. l10n: Short week day name -#: js/messages.php:146 libraries/common.lib.php:1597 +#: js/messages.php:146 libraries/common.lib.php:1601 msgid "Fri" msgstr "" #. l10n: Short week day name -#: js/messages.php:148 libraries/common.lib.php:1599 +#: js/messages.php:148 libraries/common.lib.php:1603 msgid "Sat" msgstr "" @@ -1272,74 +1256,73 @@ msgstr "" msgid "Font size" msgstr "" -#: libraries/File.class.php:336 libraries/File.class.php:424 -#: libraries/File.class.php:561 libraries/File.class.php:700 -msgid "Unknown error in file upload." -msgstr "" - -#: libraries/File.class.php:406 +#: libraries/File.class.php:315 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:409 +#: libraries/File.class.php:318 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:412 +#: libraries/File.class.php:321 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:415 +#: libraries/File.class.php:324 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:418 +#: libraries/File.class.php:327 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:421 +#: libraries/File.class.php:330 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:898 +#: libraries/File.class.php:333 +msgid "Unknown error in file upload." +msgstr "" + +#: libraries/File.class.php:624 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "" -#: libraries/Index.class.php:427 tbl_relation.php:528 +#: libraries/Index.class.php:427 tbl_relation.php:526 msgid "No index defined!" msgstr "" -#: libraries/Index.class.php:432 server_databases.php:131 tbl_tracking.php:315 +#: libraries/Index.class.php:432 server_databases.php:129 tbl_tracking.php:310 msgid "Indexes" msgstr "" #: libraries/Index.class.php:443 libraries/mult_submits.inc.php:102 -#: libraries/tbl_properties.inc.php:518 tbl_structure.php:32 -#: tbl_structure.php:154 tbl_structure.php:158 tbl_structure.php:473 -#: tbl_tracking.php:321 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:31 +#: tbl_structure.php:153 tbl_structure.php:157 tbl_structure.php:471 +#: tbl_tracking.php:316 msgid "Unique" msgstr "" -#: libraries/Index.class.php:444 tbl_tracking.php:322 +#: libraries/Index.class.php:444 tbl_tracking.php:317 msgid "Packed" msgstr "" -#: libraries/Index.class.php:446 tbl_tracking.php:324 +#: libraries/Index.class.php:446 tbl_tracking.php:319 msgid "Cardinality" msgstr "" -#: libraries/Index.class.php:449 tbl_tracking.php:278 tbl_tracking.php:327 +#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322 msgid "Comment" msgstr "" #: libraries/Index.class.php:465 libraries/common.lib.php:609 -#: libraries/common.lib.php:1198 libraries/display_tbl.lib.php:1116 +#: libraries/common.lib.php:1191 libraries/display_tbl.lib.php:1115 #: libraries/import.lib.php:1119 libraries/import.lib.php:1143 -#: pdf_pages.php:284 setup/frames/index.inc.php:124 +#: pdf_pages.php:283 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:349 tbl_row_action.php:68 msgid "Edit" msgstr "" @@ -1361,15 +1344,15 @@ msgid "" msgstr "" #: libraries/List_Database.class.php:430 libraries/server_links.inc.php:40 -#: server_databases.php:87 server_privileges.php:1652 +#: server_databases.php:85 server_privileges.php:1656 #: setup/lib/messages.inc.php:107 test/theme.php:92 msgid "Databases" msgstr "" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:259 libraries/import.lib.php:134 pdf_schema.php:31 -#: pdf_schema.php:231 tbl_change.php:1023 tbl_operations.php:212 -#: tbl_relation.php:289 view_operations.php:61 +#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 +#: tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "" @@ -1394,40 +1377,40 @@ msgid_plural "%1$d rows inserted." msgstr[0] "" msgstr[1] "" -#: libraries/StorageEngine.class.php:196 +#: libraries/StorageEngine.class.php:194 msgid "" "There is no detailed status information available for this storage engine." msgstr "" -#: libraries/StorageEngine.class.php:352 +#: libraries/StorageEngine.class.php:354 #, php-format msgid "%s is available on this MySQL server." msgstr "" -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:357 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "" -#: libraries/StorageEngine.class.php:359 +#: libraries/StorageEngine.class.php:361 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "" -#: libraries/Table.class.php:1018 +#: libraries/Table.class.php:1017 msgid "Invalid database" msgstr "" -#: libraries/Table.class.php:1032 tbl_get_field.php:25 +#: libraries/Table.class.php:1031 tbl_get_field.php:25 msgid "Invalid table name" msgstr "" -#: libraries/Table.class.php:1047 +#: libraries/Table.class.php:1046 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "" -#: libraries/Table.class.php:1131 +#: libraries/Table.class.php:1129 #, php-format msgid "Table %s has been renamed to %s" msgstr "" @@ -1445,22 +1428,22 @@ msgstr "" msgid "take it" msgstr "" -#: libraries/Theme_Manager.class.php:114 +#: libraries/Theme_Manager.class.php:109 #, php-format msgid "Default theme %s not found!" msgstr "" -#: libraries/Theme_Manager.class.php:152 +#: libraries/Theme_Manager.class.php:147 #, php-format msgid "Theme %s not found!" msgstr "" -#: libraries/Theme_Manager.class.php:220 +#: libraries/Theme_Manager.class.php:215 #, php-format msgid "Theme path not found for theme %s!" msgstr "" -#: libraries/Theme_Manager.class.php:296 test/theme.php:160 themes.php:20 +#: libraries/Theme_Manager.class.php:291 test/theme.php:160 themes.php:20 #: themes.php:40 msgid "Theme / Style" msgstr "" @@ -1567,19 +1550,19 @@ msgstr "" msgid "Authenticating..." msgstr "" -#: libraries/blobstreaming.lib.php:689 +#: libraries/blobstreaming.lib.php:340 msgid "View image" msgstr "" -#: libraries/blobstreaming.lib.php:693 +#: libraries/blobstreaming.lib.php:344 msgid "Play audio" msgstr "" -#: libraries/blobstreaming.lib.php:698 +#: libraries/blobstreaming.lib.php:349 msgid "View video" msgstr "" -#: libraries/blobstreaming.lib.php:702 +#: libraries/blobstreaming.lib.php:353 msgid "Download file" msgstr "" @@ -1624,7 +1607,7 @@ msgstr "" msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:909 +#: libraries/common.inc.php:908 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" @@ -1649,7 +1632,8 @@ msgstr "en" #: libraries/common.lib.php:425 libraries/common.lib.php:427 #: libraries/common.lib.php:429 libraries/common.lib.php:445 #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 -#: libraries/display_export.lib.php:163 libraries/relation.lib.php:84 +#: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 +#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 #: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" @@ -1664,146 +1648,146 @@ msgstr "" msgid "MySQL said: " msgstr "" -#: libraries/common.lib.php:1136 +#: libraries/common.lib.php:1129 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1174 setup/lib/messages.inc.php:350 +#: libraries/common.lib.php:1167 setup/lib/messages.inc.php:350 msgid "Explain SQL" msgstr "" -#: libraries/common.lib.php:1177 +#: libraries/common.lib.php:1170 msgid "Skip Explain SQL" msgstr "" -#: libraries/common.lib.php:1211 +#: libraries/common.lib.php:1204 msgid "Without PHP Code" msgstr "" -#: libraries/common.lib.php:1214 setup/lib/messages.inc.php:352 +#: libraries/common.lib.php:1207 setup/lib/messages.inc.php:352 msgid "Create PHP Code" msgstr "" -#: libraries/common.lib.php:1232 server_status.php:451 +#: libraries/common.lib.php:1225 server_status.php:451 #: setup/lib/messages.inc.php:351 msgid "Refresh" msgstr "" -#: libraries/common.lib.php:1241 +#: libraries/common.lib.php:1234 msgid "Skip Validate SQL" msgstr "" -#: libraries/common.lib.php:1244 setup/lib/messages.inc.php:353 +#: libraries/common.lib.php:1237 setup/lib/messages.inc.php:353 msgid "Validate SQL" msgstr "" -#: libraries/common.lib.php:1283 +#: libraries/common.lib.php:1287 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1285 +#: libraries/common.lib.php:1289 msgid "Inline" msgstr "" -#: libraries/common.lib.php:1339 libraries/common.lib.php:1354 +#: libraries/common.lib.php:1343 libraries/common.lib.php:1358 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1358 libraries/tbl_triggers.lib.php:27 +#: libraries/common.lib.php:1362 libraries/tbl_triggers.lib.php:27 #: server_processlist.php:57 msgid "Time" msgstr "" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "B" msgstr "" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "KiB" msgstr "" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "MiB" msgstr "" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "GiB" msgstr "" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "TiB" msgstr "" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "PiB" msgstr "" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "EiB" msgstr "" #. l10n: Thousands separator -#: libraries/common.lib.php:1424 +#: libraries/common.lib.php:1428 msgid "," msgstr "" #. l10n: Decimal separator -#: libraries/common.lib.php:1426 +#: libraries/common.lib.php:1430 msgid "." msgstr "" #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1603 +#: libraries/common.lib.php:1607 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "" -#: libraries/common.lib.php:1909 +#: libraries/common.lib.php:1913 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "" -#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 -#: libraries/display_tbl.lib.php:289 server_status.php:718 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 +#: libraries/display_tbl.lib.php:288 server_status.php:718 msgid "Begin" msgstr "" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 -#: libraries/display_tbl.lib.php:290 server_binlog.php:154 +#: libraries/common.lib.php:2328 libraries/common.lib.php:2331 +#: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 -#: libraries/display_tbl.lib.php:352 +#: libraries/common.lib.php:2359 libraries/common.lib.php:2362 +#: libraries/display_tbl.lib.php:351 msgid "End" msgstr "" -#: libraries/common.lib.php:2429 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "" -#: libraries/common.lib.php:2448 +#: libraries/common.lib.php:2453 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2828 libraries/common.lib.php:2835 -#: libraries/db_links.inc.php:67 libraries/export/sql.php:24 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 +#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 -#: libraries/tbl_links.inc.php:59 querywindow.php:89 test/theme.php:96 +#: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "" -#: libraries/common.lib.php:2837 libraries/db_links.inc.php:103 -#: libraries/tbl_links.inc.php:94 libraries/tbl_links.inc.php:116 -#: view_operations.php:88 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: view_operations.php:87 msgid "Operations" msgstr "" -#: libraries/core.lib.php:282 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1819,38 +1803,38 @@ msgstr "" msgid "Name" msgstr "" -#: libraries/db_links.inc.php:44 +#: libraries/db_links.inc.php:43 #, php-format msgid "Database %s has been dropped." msgstr "" -#: libraries/db_links.inc.php:56 libraries/db_links.inc.php:57 -#: libraries/db_links.inc.php:58 +#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 +#: libraries/db_links.inc.php:57 msgid "Database seems to be empty!" msgstr "" -#: libraries/db_links.inc.php:80 libraries/relation.lib.php:142 -#: libraries/tbl_links.inc.php:68 +#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:85 +#: libraries/db_links.inc.php:84 msgid "Query" msgstr "" -#: libraries/db_links.inc.php:90 libraries/relation.lib.php:138 +#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:97 libraries/server_links.inc.php:87 -#: libraries/tbl_links.inc.php:90 pmd_pdf.php:83 pmd_pdf.php:109 +#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "" -#: libraries/db_links.inc.php:110 libraries/server_links.inc.php:65 -#: server_privileges.php:111 server_privileges.php:1714 -#: server_privileges.php:2063 test/theme.php:116 +#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: server_privileges.php:110 server_privileges.php:1718 +#: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" msgstr "" @@ -1862,14 +1846,14 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1847 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1806 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "" -#: libraries/db_structure.lib.php:60 server_databases.php:141 -#: tbl_printview.php:334 tbl_structure.php:681 +#: libraries/db_structure.lib.php:60 server_databases.php:139 +#: tbl_printview.php:333 tbl_structure.php:679 msgid "Overhead" msgstr "" @@ -1886,7 +1870,7 @@ msgstr "" msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "" -#: libraries/dbi/mysql.dbi.lib.php:358 tbl_structure.php:607 +#: libraries/dbi/mysql.dbi.lib.php:358 tbl_structure.php:605 msgid "Details..." msgstr "" @@ -1896,22 +1880,22 @@ msgid "Change password" msgstr "" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:807 +#: libraries/replication_gui.lib.php:347 server_privileges.php:806 msgid "No Password" msgstr "" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1530 server_synchronize.php:1174 +#: libraries/replication_gui.lib.php:351 server_privileges.php:795 +#: server_privileges.php:799 server_privileges.php:810 +#: server_privileges.php:1534 server_synchronize.php:1173 msgid "Password" msgstr "" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:815 server_privileges.php:818 +#: server_privileges.php:814 server_privileges.php:817 msgid "Re-type" msgstr "" @@ -1932,8 +1916,8 @@ msgstr "" msgid "Create" msgstr "" -#: libraries/display_create_database.lib.php:39 server_privileges.php:113 -#: server_privileges.php:1419 server_replication.php:34 +#: libraries/display_create_database.lib.php:39 server_privileges.php:112 +#: server_privileges.php:1423 server_replication.php:33 msgid "No Privileges" msgstr "" @@ -1952,49 +1936,49 @@ msgstr "" msgid "Number of columns" msgstr "" -#: libraries/display_export.lib.php:41 +#: libraries/display_export.lib.php:35 msgid "Could not load export plugins, please check your installation!" msgstr "" -#: libraries/display_export.lib.php:106 +#: libraries/display_export.lib.php:100 #, php-format msgid "Dump %s row(s) starting at row # %s" msgstr "" -#: libraries/display_export.lib.php:114 +#: libraries/display_export.lib.php:108 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:124 setup/lib/messages.inc.php:79 +#: libraries/display_export.lib.php:118 setup/lib/messages.inc.php:79 msgid "Save as file" msgstr "" -#: libraries/display_export.lib.php:133 +#: libraries/display_export.lib.php:127 #, php-format msgid "Save on server in %s directory" msgstr "" -#: libraries/display_export.lib.php:141 setup/lib/messages.inc.php:87 +#: libraries/display_export.lib.php:135 setup/lib/messages.inc.php:87 msgid "Overwrite existing file(s)" msgstr "" -#: libraries/display_export.lib.php:147 +#: libraries/display_export.lib.php:141 msgid "File name template" msgstr "" -#: libraries/display_export.lib.php:151 +#: libraries/display_export.lib.php:145 msgid "server name" msgstr "" -#: libraries/display_export.lib.php:154 +#: libraries/display_export.lib.php:148 msgid "database name" msgstr "" -#: libraries/display_export.lib.php:157 +#: libraries/display_export.lib.php:151 msgid "table name" msgstr "" -#: libraries/display_export.lib.php:161 +#: libraries/display_export.lib.php:155 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2002,39 +1986,39 @@ msgid "" "%3$s. Other text will be kept as is." msgstr "" -#: libraries/display_export.lib.php:202 +#: libraries/display_export.lib.php:196 msgid "remember template" msgstr "" -#: libraries/display_export.lib.php:210 libraries/display_import.lib.php:177 +#: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 #: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 msgid "Character set of the file:" msgstr "" -#: libraries/display_export.lib.php:235 setup/lib/messages.inc.php:81 +#: libraries/display_export.lib.php:229 setup/lib/messages.inc.php:81 msgid "Compression" msgstr "" -#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:196 -#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:529 -#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:574 -#: server_privileges.php:1867 server_processlist.php:74 +#: libraries/display_export.lib.php:234 libraries/display_import.lib.php:196 +#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:528 +#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:573 +#: server_privileges.php:1871 server_processlist.php:74 msgid "None" msgstr "" -#: libraries/display_export.lib.php:247 +#: libraries/display_export.lib.php:241 msgid "\"zipped\"" msgstr "" -#: libraries/display_export.lib.php:253 +#: libraries/display_export.lib.php:247 msgid "\"gzipped\"" msgstr "" -#: libraries/display_export.lib.php:259 +#: libraries/display_export.lib.php:253 msgid "\"bzipped\"" msgstr "" -#: libraries/display_export.lib.php:274 libraries/export/sql.php:42 +#: libraries/display_export.lib.php:268 libraries/export/sql.php:42 #: libraries/import/sql.php:31 msgid "SQL compatibility mode" msgstr "" @@ -2069,12 +2053,12 @@ msgid "File uploads are not allowed on this server." msgstr "" #: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 -#: tbl_change.php:1024 +#: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "" #: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 -#: tbl_change.php:1027 +#: tbl_change.php:925 msgid "web server upload directory" msgstr "" @@ -2153,41 +2137,41 @@ msgstr "صفحے کا ناپ" msgid "Language" msgstr "" -#: libraries/display_tbl.lib.php:303 +#: libraries/display_tbl.lib.php:302 #, php-format msgid "%d is not valid row number." msgstr "" -#: libraries/display_tbl.lib.php:309 +#: libraries/display_tbl.lib.php:308 msgid "row(s) starting from row #" msgstr "" -#: libraries/display_tbl.lib.php:315 +#: libraries/display_tbl.lib.php:314 msgid "horizontal" msgstr "" -#: libraries/display_tbl.lib.php:316 +#: libraries/display_tbl.lib.php:315 msgid "horizontal (rotated headers)" msgstr "" -#: libraries/display_tbl.lib.php:317 +#: libraries/display_tbl.lib.php:316 msgid "vertical" msgstr "" -#: libraries/display_tbl.lib.php:323 +#: libraries/display_tbl.lib.php:322 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "" -#: libraries/display_tbl.lib.php:345 +#: libraries/display_tbl.lib.php:344 msgid "This operation could take a long time. Proceed anyway?" msgstr "" -#: libraries/display_tbl.lib.php:511 +#: libraries/display_tbl.lib.php:510 msgid "Sort by key" msgstr "" -#: libraries/display_tbl.lib.php:554 libraries/export/codegen.php:38 +#: libraries/display_tbl.lib.php:553 libraries/export/codegen.php:38 #: libraries/export/csv.php:29 libraries/export/excel.php:34 #: libraries/export/htmlword.php:28 libraries/export/latex.php:32 #: libraries/export/mediawiki.php:21 libraries/export/ods.php:26 @@ -2197,97 +2181,97 @@ msgstr "" #: libraries/export/xlsx.php:26 libraries/export/xml.php:23 #: libraries/export/yaml.php:27 libraries/import.lib.php:1114 #: libraries/import.lib.php:1136 libraries/import/csv.php:31 -#: libraries/import/docsql.php:33 libraries/import/ldi.php:46 +#: libraries/import/docsql.php:32 libraries/import/ldi.php:46 #: libraries/import/ods.php:30 libraries/import/sql.php:19 #: libraries/import/xls.php:25 libraries/import/xlsx.php:25 -#: libraries/import/xml.php:25 tbl_select.php:264 tbl_structure.php:752 +#: libraries/import/xml.php:25 tbl_select.php:263 tbl_structure.php:750 msgid "Options" msgstr "" -#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:569 +#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:568 msgid "Partial Texts" msgstr "" -#: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:573 +#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:572 msgid "Full Texts" msgstr "" -#: libraries/display_tbl.lib.php:586 +#: libraries/display_tbl.lib.php:585 msgid "Relational key" msgstr "" -#: libraries/display_tbl.lib.php:587 +#: libraries/display_tbl.lib.php:586 msgid "Relational display column" msgstr "" -#: libraries/display_tbl.lib.php:594 +#: libraries/display_tbl.lib.php:593 msgid "Show binary contents" msgstr "" -#: libraries/display_tbl.lib.php:596 +#: libraries/display_tbl.lib.php:595 msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:598 +#: libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "" -#: libraries/display_tbl.lib.php:606 pmd_general.php:140 tbl_change.php:312 -#: tbl_change.php:318 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:307 +#: tbl_change.php:313 msgid "Hide" msgstr "" -#: libraries/display_tbl.lib.php:606 libraries/relation.lib.php:122 -#: libraries/tbl_properties.inc.php:143 transformation_overview.php:46 +#: libraries/display_tbl.lib.php:605 libraries/relation.lib.php:117 +#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46 msgid "Browser transformation" msgstr "" -#: libraries/display_tbl.lib.php:1125 libraries/display_tbl.lib.php:1129 -#: libraries/display_tbl.lib.php:1131 +#: libraries/display_tbl.lib.php:1124 libraries/display_tbl.lib.php:1128 +#: libraries/display_tbl.lib.php:1130 msgid "Execute bookmarked query" msgstr "" -#: libraries/display_tbl.lib.php:1144 libraries/display_tbl.lib.php:1156 +#: libraries/display_tbl.lib.php:1143 libraries/display_tbl.lib.php:1155 msgid "The row has been deleted" msgstr "" -#: libraries/display_tbl.lib.php:1183 libraries/display_tbl.lib.php:2055 +#: libraries/display_tbl.lib.php:1182 libraries/display_tbl.lib.php:2014 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "" -#: libraries/display_tbl.lib.php:1933 +#: libraries/display_tbl.lib.php:1892 msgid "in query" msgstr "" -#: libraries/display_tbl.lib.php:1951 +#: libraries/display_tbl.lib.php:1910 msgid "Showing rows" msgstr "" -#: libraries/display_tbl.lib.php:1961 +#: libraries/display_tbl.lib.php:1920 msgid "total" msgstr "" -#: libraries/display_tbl.lib.php:1969 sql.php:523 +#: libraries/display_tbl.lib.php:1928 sql.php:522 #, php-format msgid "Query took %01.4f sec" msgstr "" -#: libraries/display_tbl.lib.php:2088 libraries/mult_submits.inc.php:112 -#: querywindow.php:115 querywindow.php:119 querywindow.php:122 -#: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:469 +#: libraries/display_tbl.lib.php:2047 libraries/mult_submits.inc.php:112 +#: querywindow.php:114 querywindow.php:118 querywindow.php:121 +#: tbl_structure.php:23 tbl_structure.php:148 tbl_structure.php:467 msgid "Change" msgstr "" -#: libraries/display_tbl.lib.php:2158 +#: libraries/display_tbl.lib.php:2117 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2186 +#: libraries/display_tbl.lib.php:2145 msgid "Print view (with full texts)" msgstr "" -#: libraries/display_tbl.lib.php:2359 +#: libraries/display_tbl.lib.php:2318 msgid "Link not found" msgstr "" @@ -2339,9 +2323,9 @@ msgstr "" msgid "Buffer Pool Usage" msgstr "" -#: libraries/engines/innodb.lib.php:168 server_databases.php:136 -#: server_databases.php:304 server_status.php:524 server_status.php:585 -#: server_status.php:606 tbl_printview.php:349 tbl_structure.php:695 +#: libraries/engines/innodb.lib.php:168 server_databases.php:134 +#: server_databases.php:302 server_status.php:524 server_status.php:585 +#: server_status.php:606 tbl_printview.php:348 tbl_structure.php:693 msgid "Total" msgstr "" @@ -2463,6 +2447,77 @@ msgid "" "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." msgstr "" +#: libraries/engines/pbms.lib.php:31 +msgid "Garbage Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:32 +msgid "The percentage of garbage in a repository file before it is compacted." +msgstr "" + +#: libraries/engines/pbms.lib.php:36 libraries/replication_gui.lib.php:69 +#: server_synchronize.php:1161 +msgid "Port" +msgstr "" + +#: libraries/engines/pbms.lib.php:37 +msgid "" +"The port for the PBMS stream-based communications. Setting this value to 0 " +"will disable HTTP communication with the daemon." +msgstr "" + +#: libraries/engines/pbms.lib.php:41 +msgid "Repository Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:42 +msgid "" +"The maximum size of a BLOB repository file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:46 +msgid "Temp Blob Timeout" +msgstr "" + +#: libraries/engines/pbms.lib.php:47 +msgid "" +"The timeout, in seconds, for temporary BLOBs. Uploaded BLOB data is removed " +"after this time, unless they are referenced by a record in the database." +msgstr "" + +#: libraries/engines/pbms.lib.php:51 +msgid "Temp Log Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:52 +msgid "" +"The maximum size of a temporary BLOB log file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:56 +msgid "Max Keep Alive" +msgstr "" + +#: libraries/engines/pbms.lib.php:57 +msgid "" +"The timeout for inactive connection with the keep-alive flag set. After this " +"time the connection will be closed. The time-out is in milliseconds (1/1000)." +msgstr "" + +#: libraries/engines/pbms.lib.php:61 +msgid "Metadata Headers" +msgstr "" + +#: libraries/engines/pbms.lib.php:62 +msgid "" +"A \":\" delimited list of metadata headers to be used to initialize the " +"pbms_metadata_header table when a database is created." +msgstr "" + #: libraries/engines/pbxt.lib.php:22 msgid "Index cache size" msgstr "" @@ -2586,7 +2641,7 @@ msgid "" msgstr "" #: libraries/export/codegen.php:36 setup/lib/messages.inc.php:85 -#: tbl_printview.php:374 tbl_structure.php:736 +#: tbl_printview.php:373 tbl_structure.php:734 msgid "Format" msgstr "" @@ -2649,9 +2704,9 @@ msgstr "" #: libraries/export/htmlword.php:23 libraries/export/latex.php:59 #: libraries/export/latex.php:205 libraries/export/odt.php:47 #: libraries/export/sql.php:105 libraries/export/sql.php:865 -#: libraries/export/texytext.php:27 server_databases.php:126 -#: server_privileges.php:576 server_replication.php:315 tbl_printview.php:315 -#: tbl_structure.php:664 +#: libraries/export/texytext.php:27 server_databases.php:124 +#: server_privileges.php:575 server_replication.php:314 tbl_printview.php:314 +#: tbl_structure.php:662 msgid "Data" msgstr "" @@ -2700,13 +2755,13 @@ msgid "Label key" msgstr "" #: libraries/export/latex.php:46 libraries/export/odt.php:34 -#: libraries/export/sql.php:90 tbl_relation.php:398 +#: libraries/export/sql.php:90 tbl_relation.php:396 msgid "Relations" msgstr "" #: libraries/export/latex.php:52 libraries/export/odt.php:40 #: libraries/export/odt.php:317 libraries/export/sql.php:94 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "" @@ -2714,10 +2769,10 @@ msgstr "" #: libraries/export/xml.php:101 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1529 server_privileges.php:2061 -#: server_processlist.php:54 server_synchronize.php:1158 +#: libraries/replication_gui.lib.php:331 server_privileges.php:730 +#: server_privileges.php:733 server_privileges.php:789 +#: server_privileges.php:1533 server_privileges.php:2065 +#: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "" @@ -2904,8 +2959,8 @@ msgstr "" msgid "Export contents" msgstr "" -#: libraries/footer.inc.php:182 libraries/footer.inc.php:193 -#: libraries/footer.inc.php:196 +#: libraries/footer.inc.php:180 libraries/footer.inc.php:191 +#: libraries/footer.inc.php:194 msgid "Open new phpMyAdmin window" msgstr "" @@ -2921,7 +2976,7 @@ msgstr "" msgid "Generated by" msgstr "" -#: libraries/import.lib.php:151 sql.php:519 tbl_change.php:180 +#: libraries/import.lib.php:151 sql.php:518 tbl_change.php:175 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" @@ -2977,7 +3032,7 @@ msgstr "" msgid "Column names in first row" msgstr "" -#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:501 +#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:500 #: view_create.php:147 msgid "Column names" msgstr "" @@ -3003,12 +3058,12 @@ msgstr "" msgid "Invalid column count in CSV input on line %d." msgstr "" -#: libraries/import/docsql.php:28 +#: libraries/import/docsql.php:27 msgid "DocSQL" msgstr "" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 -#: server_synchronize.php:427 server_synchronize.php:870 +#: libraries/import/docsql.php:30 libraries/tbl_properties.inc.php:616 +#: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "" @@ -3062,26 +3117,26 @@ msgstr "" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:512 -#: tbl_structure.php:28 tbl_structure.php:152 tbl_structure.php:156 -#: tbl_structure.php:472 +#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:511 +#: tbl_structure.php:27 tbl_structure.php:151 tbl_structure.php:155 +#: tbl_structure.php:470 msgid "Primary" msgstr "" #: libraries/mult_submits.inc.php:97 libraries/tbl_properties.inc.php:115 -#: libraries/tbl_properties.inc.php:524 tbl_printview.php:324 -#: tbl_structure.php:30 tbl_structure.php:153 tbl_structure.php:157 -#: tbl_structure.php:474 tbl_structure.php:672 +#: libraries/tbl_properties.inc.php:523 tbl_printview.php:323 +#: tbl_structure.php:29 tbl_structure.php:152 tbl_structure.php:156 +#: tbl_structure.php:472 tbl_structure.php:670 msgid "Index" msgstr "" -#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:530 -#: tbl_structure.php:34 tbl_structure.php:155 tbl_structure.php:159 -#: tbl_structure.php:477 +#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:529 +#: tbl_structure.php:33 tbl_structure.php:154 tbl_structure.php:158 +#: tbl_structure.php:475 msgid "Fulltext" msgstr "" -#: libraries/mult_submits.inc.php:434 tbl_replace.php:330 +#: libraries/mult_submits.inc.php:433 tbl_replace.php:330 msgid "No change" msgstr "" @@ -3089,190 +3144,190 @@ msgstr "" msgid "Charset" msgstr "" -#: libraries/mysql_charsets.lib.php:210 libraries/mysql_charsets.lib.php:411 -#: tbl_change.php:515 +#: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 +#: tbl_change.php:510 msgid "Binary" msgstr "" -#: libraries/mysql_charsets.lib.php:222 +#: libraries/mysql_charsets.lib.php:214 msgid "Bulgarian" msgstr "" -#: libraries/mysql_charsets.lib.php:226 libraries/mysql_charsets.lib.php:351 +#: libraries/mysql_charsets.lib.php:218 libraries/mysql_charsets.lib.php:343 msgid "Simplified Chinese" msgstr "" -#: libraries/mysql_charsets.lib.php:228 libraries/mysql_charsets.lib.php:371 +#: libraries/mysql_charsets.lib.php:220 libraries/mysql_charsets.lib.php:363 msgid "Traditional Chinese" msgstr "" -#: libraries/mysql_charsets.lib.php:232 libraries/mysql_charsets.lib.php:418 +#: libraries/mysql_charsets.lib.php:224 libraries/mysql_charsets.lib.php:410 msgid "case-insensitive" msgstr "" -#: libraries/mysql_charsets.lib.php:235 libraries/mysql_charsets.lib.php:420 +#: libraries/mysql_charsets.lib.php:227 libraries/mysql_charsets.lib.php:412 msgid "case-sensitive" msgstr "" -#: libraries/mysql_charsets.lib.php:238 +#: libraries/mysql_charsets.lib.php:230 msgid "Croatian" msgstr "" -#: libraries/mysql_charsets.lib.php:241 +#: libraries/mysql_charsets.lib.php:233 msgid "Czech" msgstr "" -#: libraries/mysql_charsets.lib.php:244 +#: libraries/mysql_charsets.lib.php:236 msgid "Danish" msgstr "" -#: libraries/mysql_charsets.lib.php:247 +#: libraries/mysql_charsets.lib.php:239 msgid "English" msgstr "" -#: libraries/mysql_charsets.lib.php:250 +#: libraries/mysql_charsets.lib.php:242 msgid "Esperanto" msgstr "" -#: libraries/mysql_charsets.lib.php:253 +#: libraries/mysql_charsets.lib.php:245 msgid "Estonian" msgstr "" -#: libraries/mysql_charsets.lib.php:256 libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:248 libraries/mysql_charsets.lib.php:251 msgid "German" msgstr "" -#: libraries/mysql_charsets.lib.php:256 +#: libraries/mysql_charsets.lib.php:248 msgid "dictionary" msgstr "" -#: libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:251 msgid "phone book" msgstr "" -#: libraries/mysql_charsets.lib.php:262 +#: libraries/mysql_charsets.lib.php:254 msgid "Hungarian" msgstr "" -#: libraries/mysql_charsets.lib.php:265 +#: libraries/mysql_charsets.lib.php:257 msgid "Icelandic" msgstr "" -#: libraries/mysql_charsets.lib.php:268 libraries/mysql_charsets.lib.php:358 +#: libraries/mysql_charsets.lib.php:260 libraries/mysql_charsets.lib.php:350 msgid "Japanese" msgstr "" -#: libraries/mysql_charsets.lib.php:271 +#: libraries/mysql_charsets.lib.php:263 msgid "Latvian" msgstr "" -#: libraries/mysql_charsets.lib.php:274 +#: libraries/mysql_charsets.lib.php:266 msgid "Lithuanian" msgstr "" -#: libraries/mysql_charsets.lib.php:277 libraries/mysql_charsets.lib.php:380 +#: libraries/mysql_charsets.lib.php:269 libraries/mysql_charsets.lib.php:372 msgid "Korean" msgstr "" -#: libraries/mysql_charsets.lib.php:280 +#: libraries/mysql_charsets.lib.php:272 msgid "Persian" msgstr "" -#: libraries/mysql_charsets.lib.php:283 +#: libraries/mysql_charsets.lib.php:275 msgid "Polish" msgstr "" -#: libraries/mysql_charsets.lib.php:286 libraries/mysql_charsets.lib.php:334 +#: libraries/mysql_charsets.lib.php:278 libraries/mysql_charsets.lib.php:326 msgid "West European" msgstr "" -#: libraries/mysql_charsets.lib.php:289 +#: libraries/mysql_charsets.lib.php:281 msgid "Romanian" msgstr "" -#: libraries/mysql_charsets.lib.php:292 +#: libraries/mysql_charsets.lib.php:284 msgid "Slovak" msgstr "" -#: libraries/mysql_charsets.lib.php:295 +#: libraries/mysql_charsets.lib.php:287 msgid "Slovenian" msgstr "" -#: libraries/mysql_charsets.lib.php:298 +#: libraries/mysql_charsets.lib.php:290 msgid "Spanish" msgstr "" -#: libraries/mysql_charsets.lib.php:301 +#: libraries/mysql_charsets.lib.php:293 msgid "Traditional Spanish" msgstr "" -#: libraries/mysql_charsets.lib.php:304 libraries/mysql_charsets.lib.php:401 +#: libraries/mysql_charsets.lib.php:296 libraries/mysql_charsets.lib.php:393 msgid "Swedish" msgstr "" -#: libraries/mysql_charsets.lib.php:307 libraries/mysql_charsets.lib.php:404 +#: libraries/mysql_charsets.lib.php:299 libraries/mysql_charsets.lib.php:396 msgid "Thai" msgstr "" -#: libraries/mysql_charsets.lib.php:310 libraries/mysql_charsets.lib.php:398 +#: libraries/mysql_charsets.lib.php:302 libraries/mysql_charsets.lib.php:390 msgid "Turkish" msgstr "" -#: libraries/mysql_charsets.lib.php:313 libraries/mysql_charsets.lib.php:395 +#: libraries/mysql_charsets.lib.php:305 libraries/mysql_charsets.lib.php:387 msgid "Ukrainian" msgstr "" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 msgid "Unicode" msgstr "" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 -#: libraries/mysql_charsets.lib.php:334 libraries/mysql_charsets.lib.php:341 -#: libraries/mysql_charsets.lib.php:363 libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 +#: libraries/mysql_charsets.lib.php:326 libraries/mysql_charsets.lib.php:333 +#: libraries/mysql_charsets.lib.php:355 libraries/mysql_charsets.lib.php:366 msgid "multilingual" msgstr "" -#: libraries/mysql_charsets.lib.php:341 +#: libraries/mysql_charsets.lib.php:333 msgid "Central European" msgstr "" -#: libraries/mysql_charsets.lib.php:346 +#: libraries/mysql_charsets.lib.php:338 msgid "Russian" msgstr "" -#: libraries/mysql_charsets.lib.php:363 +#: libraries/mysql_charsets.lib.php:355 msgid "Baltic" msgstr "" -#: libraries/mysql_charsets.lib.php:368 +#: libraries/mysql_charsets.lib.php:360 msgid "Armenian" msgstr "" -#: libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:366 msgid "Cyrillic" msgstr "" -#: libraries/mysql_charsets.lib.php:377 +#: libraries/mysql_charsets.lib.php:369 msgid "Arabic" msgstr "" -#: libraries/mysql_charsets.lib.php:383 +#: libraries/mysql_charsets.lib.php:375 msgid "Hebrew" msgstr "" -#: libraries/mysql_charsets.lib.php:386 +#: libraries/mysql_charsets.lib.php:378 msgid "Georgian" msgstr "" -#: libraries/mysql_charsets.lib.php:389 +#: libraries/mysql_charsets.lib.php:381 msgid "Greek" msgstr "" -#: libraries/mysql_charsets.lib.php:392 +#: libraries/mysql_charsets.lib.php:384 msgid "Czech-Slovak" msgstr "" -#: libraries/mysql_charsets.lib.php:407 libraries/mysql_charsets.lib.php:414 +#: libraries/mysql_charsets.lib.php:399 libraries/mysql_charsets.lib.php:406 msgid "unknown" msgstr "" @@ -3298,67 +3353,67 @@ msgstr "" msgid "This format has no options" msgstr "" -#: libraries/relation.lib.php:82 +#: libraries/relation.lib.php:77 msgid "not OK" msgstr "" -#: libraries/relation.lib.php:86 pmd_general.php:339 +#: libraries/relation.lib.php:81 pmd_general.php:339 msgid "OK" msgstr "" -#: libraries/relation.lib.php:87 +#: libraries/relation.lib.php:82 msgid "Enabled" msgstr "" -#: libraries/relation.lib.php:110 +#: libraries/relation.lib.php:105 msgid "Display Features" msgstr "" -#: libraries/relation.lib.php:116 +#: libraries/relation.lib.php:111 msgid "Creation of PDFs" msgstr "" -#: libraries/relation.lib.php:120 +#: libraries/relation.lib.php:115 msgid "Displaying Column Comments" msgstr "" -#: libraries/relation.lib.php:125 +#: libraries/relation.lib.php:120 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" -#: libraries/relation.lib.php:130 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 msgid "Bookmarked SQL query" msgstr "" -#: libraries/relation.lib.php:134 querywindow.php:99 querywindow.php:207 +#: libraries/relation.lib.php:129 querywindow.php:98 querywindow.php:205 msgid "SQL history" msgstr "" -#: libraries/relation.lib.php:146 +#: libraries/relation.lib.php:141 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:148 +#: libraries/relation.lib.php:143 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" -#: libraries/relation.lib.php:149 +#: libraries/relation.lib.php:144 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:150 +#: libraries/relation.lib.php:145 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:151 +#: libraries/relation.lib.php:146 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1158 +#: libraries/relation.lib.php:1153 msgid "no description" msgstr "" @@ -3366,7 +3421,7 @@ msgstr "" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:53 server_replication.php:346 +#: libraries/replication_gui.lib.php:53 server_replication.php:345 msgid "Change or reconfigure master server" msgstr "" @@ -3378,16 +3433,12 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:711 -#: server_privileges.php:714 server_privileges.php:721 -#: server_synchronize.php:1170 +#: libraries/replication_gui.lib.php:261 server_privileges.php:710 +#: server_privileges.php:713 server_privileges.php:720 +#: server_synchronize.php:1169 msgid "User name" msgstr "" -#: libraries/replication_gui.lib.php:69 server_synchronize.php:1162 -msgid "Port" -msgstr "" - #: libraries/replication_gui.lib.php:105 msgid "Master status" msgstr "" @@ -3402,8 +3453,8 @@ msgid "Variable" msgstr "" #: libraries/replication_gui.lib.php:117 server_status.php:737 -#: tbl_change.php:322 tbl_printview.php:368 tbl_select.php:137 -#: tbl_structure.php:728 +#: tbl_change.php:317 tbl_printview.php:367 tbl_select.php:136 +#: tbl_structure.php:726 msgid "Value" msgstr "" @@ -3417,38 +3468,38 @@ msgid "" "this list." msgstr "" -#: libraries/replication_gui.lib.php:242 server_replication.php:193 +#: libraries/replication_gui.lib.php:242 server_replication.php:192 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:256 server_privileges.php:716 +#: libraries/replication_gui.lib.php:256 server_privileges.php:715 msgid "Any user" msgstr "" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1920 server_privileges.php:1950 +#: libraries/replication_gui.lib.php:348 server_privileges.php:716 +#: server_privileges.php:783 server_privileges.php:807 +#: server_privileges.php:1924 server_privileges.php:1954 msgid "Use text field" msgstr "" -#: libraries/replication_gui.lib.php:304 server_privileges.php:764 +#: libraries/replication_gui.lib.php:304 server_privileges.php:763 msgid "Any host" msgstr "" -#: libraries/replication_gui.lib.php:308 server_privileges.php:768 +#: libraries/replication_gui.lib.php:308 server_privileges.php:767 msgid "Local" msgstr "" -#: libraries/replication_gui.lib.php:314 server_privileges.php:773 +#: libraries/replication_gui.lib.php:314 server_privileges.php:772 msgid "This Host" msgstr "" -#: libraries/replication_gui.lib.php:320 server_privileges.php:779 +#: libraries/replication_gui.lib.php:320 server_privileges.php:778 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:333 server_privileges.php:792 +#: libraries/replication_gui.lib.php:333 server_privileges.php:791 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3474,8 +3525,8 @@ msgstr "" msgid "Servers" msgstr "" -#: libraries/server_links.inc.php:52 server_engines.php:111 -#: server_engines.php:115 server_status.php:414 test/theme.php:104 +#: libraries/server_links.inc.php:52 server_engines.php:125 +#: server_engines.php:129 server_status.php:414 test/theme.php:104 msgid "Variables" msgstr "" @@ -3496,12 +3547,12 @@ msgstr "" msgid "Processes" msgstr "" -#: libraries/server_links.inc.php:91 server_synchronize.php:1091 -#: server_synchronize.php:1099 +#: libraries/server_links.inc.php:91 server_synchronize.php:1090 +#: server_synchronize.php:1098 msgid "Synchronize" msgstr "" -#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1109 +#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1108 msgid "Source database" msgstr "" @@ -3519,7 +3570,7 @@ msgstr "" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1111 +#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1110 msgid "Target database" msgstr "" @@ -3539,11 +3590,11 @@ msgstr "" msgid "Columns" msgstr "آراء-رائے" -#: libraries/sql_query_form.lib.php:342 sql.php:664 sql.php:665 sql.php:682 +#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql_query_form.lib.php:349 sql.php:676 +#: libraries/sql_query_form.lib.php:349 sql.php:669 msgid "Let every user access this bookmark" msgstr "" @@ -3625,12 +3676,12 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" -#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:139 -#: libraries/tbl_links.inc.php:140 +#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 +#: libraries/tbl_links.inc.php:139 msgid "Table seems to be empty!" msgstr "" -#: libraries/tbl_links.inc.php:148 +#: libraries/tbl_links.inc.php:147 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" @@ -3653,23 +3704,23 @@ msgid "" "escaping or quotes, using this format: a" msgstr "" -#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1263 -#: pdf_schema.php:1284 tbl_printview.php:142 tbl_structure.php:179 +#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1262 +#: pdf_schema.php:1283 tbl_printview.php:141 tbl_structure.php:178 msgid "Attributes" msgstr "" -#: libraries/tbl_properties.inc.php:136 +#: libraries/tbl_properties.inc.php:135 #, php-format msgid "" "For a list of available transformation options and their MIME type " "transformations, click on %stransformation descriptions%s" msgstr "" -#: libraries/tbl_properties.inc.php:144 +#: libraries/tbl_properties.inc.php:143 msgid "Transformation options" msgstr "" -#: libraries/tbl_properties.inc.php:145 +#: libraries/tbl_properties.inc.php:144 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
                            If you ever need to put a backslash (\"\\\") or a single " @@ -3677,44 +3728,44 @@ msgid "" "'\\\\xyz' or 'a\\'b')." msgstr "" -#: libraries/tbl_properties.inc.php:392 +#: libraries/tbl_properties.inc.php:391 msgctxt "for default" msgid "None" msgstr "" -#: libraries/tbl_properties.inc.php:393 +#: libraries/tbl_properties.inc.php:392 msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:579 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:578 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
                            Please ask the " "author what %s does." msgstr "" -#: libraries/tbl_properties.inc.php:725 server_engines.php:57 -#: tbl_operations.php:354 +#: libraries/tbl_properties.inc.php:724 server_engines.php:56 +#: tbl_operations.php:352 msgid "Storage Engine" msgstr "" -#: libraries/tbl_properties.inc.php:754 +#: libraries/tbl_properties.inc.php:753 msgid "PARTITION definition" msgstr "" -#: libraries/tbl_properties.inc.php:775 pdf_pages.php:502 +#: libraries/tbl_properties.inc.php:774 pdf_pages.php:501 #: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214 -#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1124 tbl_indexes.php:247 -#: tbl_relation.php:565 +#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1022 tbl_indexes.php:246 +#: tbl_relation.php:563 msgid "Save" msgstr "" -#: libraries/tbl_properties.inc.php:779 tbl_structure.php:541 +#: libraries/tbl_properties.inc.php:778 tbl_structure.php:539 #, php-format msgid "Add %s column(s)" msgstr "" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:535 +#: libraries/tbl_properties.inc.php:782 tbl_structure.php:533 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." @@ -3839,8 +3890,8 @@ msgstr "" msgid "Custom color" msgstr "" -#: main.php:162 pdf_pages.php:362 setup/lib/FormDisplay.tpl.php:216 -#: tbl_change.php:1173 +#: main.php:162 pdf_pages.php:361 setup/lib/FormDisplay.tpl.php:216 +#: tbl_change.php:1071 msgid "Reset" msgstr "" @@ -3848,8 +3899,8 @@ msgstr "" msgid "Protocol version" msgstr "" -#: main.php:188 server_privileges.php:1381 server_privileges.php:1528 -#: server_privileges.php:1642 server_privileges.php:2060 +#: main.php:188 server_privileges.php:1385 server_privileges.php:1532 +#: server_privileges.php:1646 server_privileges.php:2064 #: server_processlist.php:53 msgid "User" msgstr "" @@ -3923,21 +3974,30 @@ msgid "" "has been configured." msgstr "" -#: main.php:330 +#: main.php:314 +#, php-format +msgid "" +"The additional features for working with linked tables have been " +"deactivated. To find out why click %shere%s." +msgstr "" +"The additional features for working with linked tables have been " +"deactivated. To find out why click %shere%s." + +#: main.php:329 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:345 +#: main.php:344 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: main.php:357 +#: main.php:356 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -3948,98 +4008,98 @@ msgstr "" msgid "Reload navigation frame" msgstr "" -#: navigation.php:204 server_databases.php:370 server_synchronize.php:1190 +#: navigation.php:203 server_databases.php:368 server_synchronize.php:1189 msgid "No databases" msgstr "" -#: navigation.php:298 +#: navigation.php:297 msgid "Filter" msgstr "" -#: navigation.php:299 setup/frames/index.inc.php:218 +#: navigation.php:298 setup/frames/index.inc.php:218 #: setup/lib/messages.inc.php:41 msgid "Clear" msgstr "" -#: navigation.php:330 navigation.php:331 +#: navigation.php:329 navigation.php:330 msgctxt "short form" msgid "Create table" msgstr "" -#: navigation.php:333 navigation.php:495 +#: navigation.php:332 navigation.php:494 msgid "Please select a database" msgstr "" -#: pdf_pages.php:40 pdf_pages.php:46 pdf_pages.php:52 pdf_pages.php:57 +#: pdf_pages.php:39 pdf_pages.php:45 pdf_pages.php:51 pdf_pages.php:56 #, php-format msgid "%s table not found or not set in %s" msgstr "" -#: pdf_pages.php:265 +#: pdf_pages.php:264 msgid "Please choose a page to edit" msgstr "" -#: pdf_pages.php:303 pmd_pdf.php:113 +#: pdf_pages.php:302 pmd_pdf.php:111 msgid "Create a page" msgstr "" -#: pdf_pages.php:309 +#: pdf_pages.php:308 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "صفحہ نمبر" -#: pdf_pages.php:313 +#: pdf_pages.php:312 msgid "Automatic layout based on" msgstr "" -#: pdf_pages.php:315 +#: pdf_pages.php:314 msgid "Internal relations" msgstr "" -#: pdf_pages.php:338 +#: pdf_pages.php:337 msgid "Select Tables" msgstr "" -#: pdf_pages.php:361 +#: pdf_pages.php:360 msgid "Toggle scratchboard" msgstr "" -#: pdf_pages.php:524 +#: pdf_pages.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" msgstr "" -#: pdf_schema.php:635 +#: pdf_schema.php:634 #, php-format msgid "The %s table doesn't exist!" msgstr "" -#: pdf_schema.php:671 +#: pdf_schema.php:670 #, php-format msgid "Please configure the coordinates for table %s" msgstr "" -#: pdf_schema.php:994 +#: pdf_schema.php:993 #, php-format msgid "Schema of the %s database - Page %s" msgstr "" -#: pdf_schema.php:1012 +#: pdf_schema.php:1011 msgid "No tables" msgstr "" -#: pdf_schema.php:1031 pdf_schema.php:1140 +#: pdf_schema.php:1030 pdf_schema.php:1139 msgid "Relational schema" msgstr "" -#: pdf_schema.php:1115 +#: pdf_schema.php:1114 msgid "Table of contents" msgstr "" -#: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:145 -#: tbl_structure.php:182 tbl_tracking.php:277 +#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 +#: tbl_structure.php:181 tbl_tracking.php:272 msgid "Extra" msgstr "" @@ -4051,7 +4111,7 @@ msgstr "" msgid "Save position" msgstr "" -#: pmd_general.php:70 server_synchronize.php:428 server_synchronize.php:871 +#: pmd_general.php:70 server_synchronize.php:427 server_synchronize.php:870 msgid "Create table" msgstr "" @@ -4122,31 +4182,31 @@ msgid "" "appropriate column name." msgstr "" -#: pmd_pdf.php:62 +#: pmd_pdf.php:60 msgid "Page has been created" msgstr "" -#: pmd_pdf.php:64 +#: pmd_pdf.php:62 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:84 +#: pmd_pdf.php:82 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:88 +#: pmd_pdf.php:86 msgid "recommended" msgstr "" -#: pmd_pdf.php:93 +#: pmd_pdf.php:91 msgid "to/from page" msgstr "" -#: querywindow.php:94 +#: querywindow.php:93 msgid "Import files" msgstr "" -#: querywindow.php:105 +#: querywindow.php:104 msgid "All" msgstr "" @@ -4192,392 +4252,392 @@ msgstr "" msgid "Character Sets and Collations" msgstr "" -#: server_databases.php:51 +#: server_databases.php:49 msgid "No databases selected." msgstr "" -#: server_databases.php:62 +#: server_databases.php:60 #, php-format msgid "%s databases have been dropped successfully." msgstr "" -#: server_databases.php:87 +#: server_databases.php:85 msgid "Databases statistics" msgstr "" -#: server_databases.php:116 server_status.php:370 +#: server_databases.php:114 server_status.php:370 #: setup/lib/messages.inc.php:114 msgid "Tables" msgstr "" -#: server_databases.php:194 server_replication.php:180 -#: server_replication.php:208 +#: server_databases.php:192 server_replication.php:179 +#: server_replication.php:207 msgid "Master replication" msgstr "" -#: server_databases.php:196 server_replication.php:247 +#: server_databases.php:194 server_replication.php:246 msgid "Slave replication" msgstr "" -#: server_databases.php:229 +#: server_databases.php:227 msgid "Jump to database" msgstr "" -#: server_databases.php:266 +#: server_databases.php:264 msgid "Not replicated" msgstr "" -#: server_databases.php:272 +#: server_databases.php:270 #, fuzzy #| msgid "Replication" msgid "Replicated" msgstr "لپیٹنا" -#: server_databases.php:288 +#: server_databases.php:286 #, php-format msgid "Check privileges for database "%s"." msgstr "" -#: server_databases.php:292 server_databases.php:293 +#: server_databases.php:290 server_databases.php:291 msgid "Check Privileges" msgstr "" -#: server_databases.php:357 server_databases.php:358 +#: server_databases.php:355 server_databases.php:356 msgid "Enable Statistics" msgstr "" -#: server_databases.php:361 server_databases.php:362 +#: server_databases.php:359 server_databases.php:360 msgid "Disable Statistics" msgstr "" -#: server_databases.php:365 +#: server_databases.php:363 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." msgstr "" -#: server_engines.php:48 +#: server_engines.php:47 msgid "Storage Engines" msgstr "" -#: server_export.php:20 +#: server_export.php:18 msgid "View dump (schema) of databases" msgstr "" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:23 server_privileges.php:265 msgid "Includes all privileges except GRANT." msgstr "" -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:24 server_privileges.php:191 +#: server_privileges.php:514 msgid "Allows altering the structure of existing tables." msgstr "" -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:25 server_privileges.php:207 +#: server_privileges.php:520 msgid "Allows altering and dropping stored routines." msgstr "" -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:26 server_privileges.php:183 +#: server_privileges.php:513 msgid "Allows creating new databases and tables." msgstr "" -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:27 server_privileges.php:206 +#: server_privileges.php:519 msgid "Allows creating stored routines." msgstr "" -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:513 msgid "Allows creating new tables." msgstr "" -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:29 server_privileges.php:194 +#: server_privileges.php:517 msgid "Allows creating temporary tables." msgstr "" -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:30 server_privileges.php:208 +#: server_privileges.php:553 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: server_privileges.php:32 server_privileges.php:199 -#: server_privileges.php:203 server_privileges.php:526 -#: server_privileges.php:530 +#: server_privileges.php:31 server_privileges.php:198 +#: server_privileges.php:202 server_privileges.php:525 +#: server_privileges.php:529 msgid "Allows creating new views." msgstr "" -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:32 server_privileges.php:182 +#: server_privileges.php:505 msgid "Allows deleting data." msgstr "" -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:33 server_privileges.php:184 +#: server_privileges.php:516 msgid "Allows dropping databases and tables." msgstr "" -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:34 server_privileges.php:516 msgid "Allows dropping tables." msgstr "" -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:35 server_privileges.php:199 +#: server_privileges.php:533 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:36 server_privileges.php:209 +#: server_privileges.php:521 msgid "Allows executing stored routines." msgstr "" -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:37 server_privileges.php:188 +#: server_privileges.php:508 msgid "Allows importing data from and exporting data into files." msgstr "" -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:38 server_privileges.php:539 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:515 msgid "Allows creating and dropping indexes." msgstr "" -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:40 server_privileges.php:180 +#: server_privileges.php:441 server_privileges.php:503 msgid "Allows inserting and replacing data." msgstr "" -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:41 server_privileges.php:195 +#: server_privileges.php:548 msgid "Allows locking tables for the current thread." msgstr "" -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:42 server_privileges.php:645 +#: server_privileges.php:647 msgid "Limits the number of new connections the user may open per hour." msgstr "" -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:43 server_privileges.php:633 +#: server_privileges.php:635 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:44 server_privileges.php:639 +#: server_privileges.php:641 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" -#: server_privileges.php:46 server_privileges.php:652 -#: server_privileges.php:654 +#: server_privileges.php:45 server_privileges.php:651 +#: server_privileges.php:653 msgid "Limits the number of simultaneous connections the user may have." msgstr "" -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:46 server_privileges.php:187 +#: server_privileges.php:543 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:47 server_privileges.php:189 +#: server_privileges.php:447 server_privileges.php:549 msgid "Has no effect in this MySQL version." msgstr "" -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:48 server_privileges.php:185 +#: server_privileges.php:544 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:197 +#: server_privileges.php:551 msgid "Allows the user to ask where the slaves / masters are." msgstr "" -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:50 server_privileges.php:196 +#: server_privileges.php:552 msgid "Needed for the replication slaves." msgstr "" -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:51 server_privileges.php:179 +#: server_privileges.php:438 server_privileges.php:502 msgid "Allows reading data." msgstr "" -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:52 server_privileges.php:192 +#: server_privileges.php:546 msgid "Gives access to the complete list of databases." msgstr "" -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:53 server_privileges.php:203 +#: server_privileges.php:205 server_privileges.php:518 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:54 server_privileges.php:186 +#: server_privileges.php:545 msgid "Allows shutting down the server." msgstr "" -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:55 server_privileges.php:193 +#: server_privileges.php:542 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " "killing threads of other users." msgstr "" -#: server_privileges.php:57 server_privileges.php:201 -#: server_privileges.php:535 +#: server_privileges.php:56 server_privileges.php:200 +#: server_privileges.php:534 msgid "Allows creating and dropping triggers" msgstr "" -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:57 server_privileges.php:181 +#: server_privileges.php:444 server_privileges.php:504 msgid "Allows changing data." msgstr "" -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:58 server_privileges.php:259 msgid "No privileges." msgstr "" -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:301 server_privileges.php:302 msgctxt "None privileges" msgid "None" msgstr "" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1710 server_privileges.php:1716 +#: server_privileges.php:430 server_privileges.php:565 +#: server_privileges.php:1714 server_privileges.php:1720 msgid "Table-specific privileges" msgstr "" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1532 +#: server_privileges.php:431 server_privileges.php:573 +#: server_privileges.php:1536 msgid " Note: MySQL privilege names are expressed in English " msgstr "" -#: server_privileges.php:563 server_privileges.php:1531 +#: server_privileges.php:562 server_privileges.php:1535 msgid "Global privileges" msgstr "" -#: server_privileges.php:565 server_privileges.php:1710 +#: server_privileges.php:564 server_privileges.php:1714 msgid "Database-specific privileges" msgstr "" -#: server_privileges.php:610 +#: server_privileges.php:609 msgid "Administration" msgstr "" -#: server_privileges.php:630 +#: server_privileges.php:629 msgid "Resource limits" msgstr "" -#: server_privileges.php:631 +#: server_privileges.php:630 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" -#: server_privileges.php:708 +#: server_privileges.php:707 msgid "Login Information" msgstr "" -#: server_privileges.php:802 +#: server_privileges.php:801 msgid "Do not change the password" msgstr "" -#: server_privileges.php:835 server_privileges.php:2197 +#: server_privileges.php:834 server_privileges.php:2201 msgid "No user found." msgstr "" -#: server_privileges.php:879 +#: server_privileges.php:878 #, php-format msgid "The user %s already exists!" msgstr "" -#: server_privileges.php:962 +#: server_privileges.php:961 msgid "You have added a new user." msgstr "" -#: server_privileges.php:1183 +#: server_privileges.php:1184 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: server_privileges.php:1207 +#: server_privileges.php:1208 #, php-format msgid "You have revoked the privileges for %s" msgstr "" -#: server_privileges.php:1243 +#: server_privileges.php:1244 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: server_privileges.php:1263 +#: server_privileges.php:1264 #, php-format msgid "Deleting %s" msgstr "" -#: server_privileges.php:1274 +#: server_privileges.php:1275 msgid "No users selected for deleting!" msgstr "" -#: server_privileges.php:1277 +#: server_privileges.php:1278 msgid "Reloading the privileges" msgstr "" -#: server_privileges.php:1292 +#: server_privileges.php:1296 msgid "The selected users have been deleted successfully." msgstr "" -#: server_privileges.php:1327 +#: server_privileges.php:1331 msgid "The privileges were reloaded successfully." msgstr "" -#: server_privileges.php:1355 server_privileges.php:1641 +#: server_privileges.php:1359 server_privileges.php:1645 msgid "Edit Privileges" msgstr "" -#: server_privileges.php:1364 +#: server_privileges.php:1368 msgid "Revoke" msgstr "" -#: server_privileges.php:1396 +#: server_privileges.php:1400 msgid "User overview" msgstr "" -#: server_privileges.php:1533 server_privileges.php:1715 -#: server_privileges.php:2064 +#: server_privileges.php:1537 server_privileges.php:1719 +#: server_privileges.php:2068 msgid "Grant" msgstr "" -#: server_privileges.php:1552 server_privileges.php:2154 +#: server_privileges.php:1556 server_privileges.php:2158 msgid "Any" msgstr "" -#: server_privileges.php:1601 server_privileges.php:1625 -#: server_privileges.php:2019 server_privileges.php:2208 +#: server_privileges.php:1605 server_privileges.php:1629 +#: server_privileges.php:2023 server_privileges.php:2212 msgid "Add a new User" msgstr "" -#: server_privileges.php:1606 +#: server_privileges.php:1610 msgid "Remove selected users" msgstr "" -#: server_privileges.php:1609 +#: server_privileges.php:1613 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: server_privileges.php:1610 server_privileges.php:1611 -#: server_privileges.php:1612 +#: server_privileges.php:1614 server_privileges.php:1615 +#: server_privileges.php:1616 msgid "Drop the databases that have the same names as the users." msgstr "" -#: server_privileges.php:1628 +#: server_privileges.php:1632 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4586,89 +4646,89 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: server_privileges.php:1676 +#: server_privileges.php:1680 msgid "The selected user was not found in the privilege table." msgstr "" -#: server_privileges.php:1716 +#: server_privileges.php:1720 msgid "Column-specific privileges" msgstr "" -#: server_privileges.php:1917 +#: server_privileges.php:1921 msgid "Add privileges on the following database" msgstr "" -#: server_privileges.php:1935 +#: server_privileges.php:1939 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:1938 +#: server_privileges.php:1942 msgid "Add privileges on the following table" msgstr "" -#: server_privileges.php:1995 +#: server_privileges.php:1999 msgid "Change Login Information / Copy User" msgstr "" -#: server_privileges.php:1998 +#: server_privileges.php:2002 msgid "Create a new user with the same privileges and ..." msgstr "" -#: server_privileges.php:2000 +#: server_privileges.php:2004 msgid "... keep the old one." msgstr "" -#: server_privileges.php:2001 +#: server_privileges.php:2005 msgid " ... delete the old one from the user tables." msgstr "" -#: server_privileges.php:2002 +#: server_privileges.php:2006 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: server_privileges.php:2003 +#: server_privileges.php:2007 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: server_privileges.php:2025 +#: server_privileges.php:2029 msgid "Database for user" msgstr "" -#: server_privileges.php:2029 +#: server_privileges.php:2033 msgctxt "Create none database for user" msgid "None" msgstr "" -#: server_privileges.php:2030 +#: server_privileges.php:2034 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2031 +#: server_privileges.php:2035 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2034 +#: server_privileges.php:2038 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: server_privileges.php:2057 +#: server_privileges.php:2061 #, php-format msgid "Users having access to "%s"" msgstr "" -#: server_privileges.php:2165 +#: server_privileges.php:2169 msgid "global" msgstr "" -#: server_privileges.php:2167 +#: server_privileges.php:2171 msgid "database-specific" msgstr "" -#: server_privileges.php:2169 +#: server_privileges.php:2173 msgid "wildcard" msgstr "" @@ -4687,53 +4747,53 @@ msgstr "" msgid "ID" msgstr "" -#: server_replication.php:50 +#: server_replication.php:49 msgid "Unknown error" msgstr "" -#: server_replication.php:57 +#: server_replication.php:56 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:64 +#: server_replication.php:63 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:70 +#: server_replication.php:69 msgid "Unable to change master" msgstr "" -#: server_replication.php:73 +#: server_replication.php:72 #, php-format msgid "Master server changed succesfully to %s" msgstr "" -#: server_replication.php:181 +#: server_replication.php:180 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:183 server_status.php:391 +#: server_replication.php:182 server_status.php:391 msgid "Show master status" msgstr "" -#: server_replication.php:186 +#: server_replication.php:185 msgid "Show connected slaves" msgstr "" -#: server_replication.php:209 +#: server_replication.php:208 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:216 +#: server_replication.php:215 msgid "Master configuration" msgstr "" -#: server_replication.php:217 +#: server_replication.php:216 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -4742,107 +4802,107 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:220 +#: server_replication.php:219 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:221 +#: server_replication.php:220 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:224 +#: server_replication.php:223 msgid "Please select databases:" msgstr "" -#: server_replication.php:227 +#: server_replication.php:226 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: server_replication.php:229 +#: server_replication.php:228 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: server_replication.php:292 +#: server_replication.php:291 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:295 +#: server_replication.php:294 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:304 +#: server_replication.php:303 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:307 +#: server_replication.php:306 msgid "See slave status table" msgstr "" -#: server_replication.php:310 +#: server_replication.php:309 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:321 +#: server_replication.php:320 msgid "Control slave:" msgstr "" -#: server_replication.php:324 +#: server_replication.php:323 msgid "Full start" msgstr "" -#: server_replication.php:324 +#: server_replication.php:323 msgid "Full stop" msgstr "" -#: server_replication.php:325 +#: server_replication.php:324 msgid "Reset slave" msgstr "" -#: server_replication.php:326 +#: server_replication.php:325 #, php-format msgid "SQL Thread %s only" msgstr "" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 msgid "Start" msgstr "" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 msgid "Stop" msgstr "" -#: server_replication.php:327 +#: server_replication.php:326 #, php-format msgid "IO Thread %s only" msgstr "" -#: server_replication.php:331 +#: server_replication.php:330 msgid "Error management:" msgstr "" -#: server_replication.php:333 +#: server_replication.php:332 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:335 +#: server_replication.php:334 msgid "Skip current error" msgstr "" -#: server_replication.php:336 +#: server_replication.php:335 msgid "Skip next" msgstr "" -#: server_replication.php:339 +#: server_replication.php:338 msgid "errors." msgstr "" -#: server_replication.php:354 +#: server_replication.php:353 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -5542,110 +5602,110 @@ msgstr "" msgid "Replication status" msgstr "" -#: server_synchronize.php:93 +#: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:96 +#: server_synchronize.php:95 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:121 server_synchronize.php:124 tbl_create.php:77 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:264 +#: server_synchronize.php:263 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:271 +#: server_synchronize.php:270 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:399 server_synchronize.php:838 +#: server_synchronize.php:398 server_synchronize.php:837 msgid "not present" msgstr "" -#: server_synchronize.php:423 server_synchronize.php:866 +#: server_synchronize.php:422 server_synchronize.php:865 msgid "Structure Difference" msgstr "" -#: server_synchronize.php:424 server_synchronize.php:867 +#: server_synchronize.php:423 server_synchronize.php:866 msgid "Data Difference" msgstr "" -#: server_synchronize.php:429 server_synchronize.php:872 +#: server_synchronize.php:428 server_synchronize.php:871 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:430 server_synchronize.php:873 +#: server_synchronize.php:429 server_synchronize.php:872 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:431 server_synchronize.php:874 +#: server_synchronize.php:430 server_synchronize.php:873 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:432 server_synchronize.php:875 +#: server_synchronize.php:431 server_synchronize.php:874 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:433 server_synchronize.php:876 +#: server_synchronize.php:432 server_synchronize.php:875 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:434 server_synchronize.php:877 +#: server_synchronize.php:433 server_synchronize.php:876 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:435 server_synchronize.php:878 +#: server_synchronize.php:434 server_synchronize.php:877 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:445 server_synchronize.php:889 +#: server_synchronize.php:444 server_synchronize.php:888 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:448 server_synchronize.php:893 +#: server_synchronize.php:447 server_synchronize.php:892 msgid "Apply Selected Changes" msgstr "" -#: server_synchronize.php:450 server_synchronize.php:895 +#: server_synchronize.php:449 server_synchronize.php:894 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:463 +#: server_synchronize.php:462 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:941 +#: server_synchronize.php:940 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:1002 +#: server_synchronize.php:1001 msgid "The following queries have been executed:" msgstr "" -#: server_synchronize.php:1121 +#: server_synchronize.php:1120 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1122 +#: server_synchronize.php:1121 msgid "Current connection" msgstr "" -#: server_synchronize.php:1151 +#: server_synchronize.php:1150 #, php-format msgid "Configuration: %s" msgstr "" -#: server_synchronize.php:1166 +#: server_synchronize.php:1165 msgid "Socket" msgstr "" -#: server_synchronize.php:1212 +#: server_synchronize.php:1211 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -6190,8 +6250,8 @@ msgstr "" #: setup/lib/messages.inc.php:128 msgid "" "Configure phpMyAdmin database to gain access to additional features, see " -"[a@../Documentation.html#linked-tables]linked-tables infrastructure[/a] in " -"documentation" +"[a@../Documentation.html#linked-tables]phpMyAdmin configuration storage[/a] " +"in documentation" msgstr "" #: setup/lib/messages.inc.php:129 setup/lib/messages.inc.php:290 @@ -7226,110 +7286,110 @@ msgstr "" msgid "ZIP" msgstr "" -#: sql.php:495 tbl_replace.php:385 +#: sql.php:494 tbl_replace.php:384 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: sql.php:512 +#: sql.php:511 msgid "Showing as PHP code" msgstr "" -#: sql.php:515 tbl_replace.php:359 +#: sql.php:514 tbl_replace.php:358 msgid "Showing SQL query" msgstr "" -#: sql.php:517 +#: sql.php:516 msgid "Validated SQL" msgstr "" -#: sql.php:638 +#: sql.php:631 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:670 +#: sql.php:663 msgid "Label" msgstr "" -#: tbl_addfield.php:188 tbl_alter.php:102 tbl_indexes.php:97 +#: tbl_addfield.php:185 tbl_alter.php:100 tbl_indexes.php:97 #, php-format msgid "Table %1$s has been altered successfully" msgstr "" -#: tbl_change.php:250 tbl_select.php:26 tbl_select.php:27 tbl_select.php:30 -#: tbl_select.php:33 +#: tbl_change.php:245 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_select.php:32 msgid "Browse foreign values" msgstr "" -#: tbl_change.php:280 tbl_change.php:318 +#: tbl_change.php:275 tbl_change.php:313 msgid "Function" msgstr "" -#: tbl_change.php:300 tbl_indexes.php:199 tbl_indexes.php:224 +#: tbl_change.php:295 tbl_indexes.php:198 tbl_indexes.php:223 msgid "Ignore" msgstr "" -#: tbl_change.php:725 +#: tbl_change.php:720 msgid " Because of its length,
                            this column might not be editable " msgstr "" -#: tbl_change.php:884 +#: tbl_change.php:835 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:890 +#: tbl_change.php:841 msgid "Binary - do not edit" msgstr "" -#: tbl_change.php:983 +#: tbl_change.php:889 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:1128 +#: tbl_change.php:1026 msgid "Insert as new row" msgstr "" -#: tbl_change.php:1129 +#: tbl_change.php:1027 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:1130 +#: tbl_change.php:1028 msgid "Show insert query" msgstr "" -#: tbl_change.php:1145 +#: tbl_change.php:1043 msgid "Go back to previous page" msgstr "" -#: tbl_change.php:1146 +#: tbl_change.php:1044 msgid "Insert another new row" msgstr "" -#: tbl_change.php:1150 +#: tbl_change.php:1048 msgid "Go back to this page" msgstr "" -#: tbl_change.php:1158 +#: tbl_change.php:1056 msgid "Edit next row" msgstr "" -#: tbl_change.php:1169 +#: tbl_change.php:1067 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: tbl_change.php:1207 +#: tbl_change.php:1105 #, php-format msgid "Restart insertion with %s rows" msgstr "" -#: tbl_create.php:57 +#: tbl_create.php:55 #, php-format msgid "Table %s already exists!" msgstr "" -#: tbl_create.php:244 +#: tbl_create.php:241 #, php-format msgid "Table %1$s has been created." msgstr "" @@ -7350,196 +7410,196 @@ msgstr "" msgid "No index parts defined!" msgstr "" -#: tbl_indexes.php:159 +#: tbl_indexes.php:158 msgid "Create a new index" msgstr "" -#: tbl_indexes.php:161 +#: tbl_indexes.php:160 msgid "Modify an index" msgstr "" -#: tbl_indexes.php:167 +#: tbl_indexes.php:166 msgid "Index name:" msgstr "" -#: tbl_indexes.php:173 +#: tbl_indexes.php:172 msgid "Index type:" msgstr "" -#: tbl_indexes.php:183 +#: tbl_indexes.php:182 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" -#: tbl_indexes.php:250 +#: tbl_indexes.php:249 #, php-format msgid "Add to index  %s column(s)" msgstr "" -#: tbl_indexes.php:255 tbl_structure.php:588 tbl_structure.php:599 +#: tbl_indexes.php:254 tbl_structure.php:586 tbl_structure.php:597 msgid "Column count has to be larger than zero." msgstr "" -#: tbl_move_copy.php:45 +#: tbl_move_copy.php:44 msgid "Can't move table to same one!" msgstr "" -#: tbl_move_copy.php:47 +#: tbl_move_copy.php:46 msgid "Can't copy table to same one!" msgstr "" -#: tbl_move_copy.php:55 +#: tbl_move_copy.php:54 #, php-format msgid "Table %s has been moved to %s." msgstr "" -#: tbl_move_copy.php:57 +#: tbl_move_copy.php:56 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: tbl_move_copy.php:81 +#: tbl_move_copy.php:80 msgid "The table name is empty!" msgstr "" -#: tbl_operations.php:248 +#: tbl_operations.php:246 msgid "Alter table order by" msgstr "" -#: tbl_operations.php:257 +#: tbl_operations.php:255 msgid "(singly)" msgstr "" -#: tbl_operations.php:277 +#: tbl_operations.php:275 msgid "Move table to (database.table):" msgstr "" -#: tbl_operations.php:335 +#: tbl_operations.php:333 msgid "Table options" msgstr "" -#: tbl_operations.php:339 +#: tbl_operations.php:337 msgid "Rename table to" msgstr "" -#: tbl_operations.php:510 +#: tbl_operations.php:508 msgid "Copy table to (database.table):" msgstr "" -#: tbl_operations.php:557 +#: tbl_operations.php:555 msgid "Switch to copied table" msgstr "" -#: tbl_operations.php:569 +#: tbl_operations.php:567 msgid "Table maintenance" msgstr "" -#: tbl_operations.php:590 +#: tbl_operations.php:588 msgid "Defragment table" msgstr "" -#: tbl_operations.php:629 +#: tbl_operations.php:627 #, php-format msgid "Table %s has been flushed" msgstr "" -#: tbl_operations.php:635 +#: tbl_operations.php:633 msgid "Flush the table (FLUSH)" msgstr "" -#: tbl_operations.php:650 +#: tbl_operations.php:648 msgid "Partition maintenance" msgstr "" -#: tbl_operations.php:658 +#: tbl_operations.php:656 #, php-format msgid "Partition %s" msgstr "" -#: tbl_operations.php:661 +#: tbl_operations.php:659 msgid "Analyze" msgstr "" -#: tbl_operations.php:662 +#: tbl_operations.php:660 msgid "Check" msgstr "" -#: tbl_operations.php:663 +#: tbl_operations.php:661 msgid "Optimize" msgstr "" -#: tbl_operations.php:664 +#: tbl_operations.php:662 msgid "Rebuild" msgstr "" -#: tbl_operations.php:665 +#: tbl_operations.php:663 msgid "Repair" msgstr "" -#: tbl_operations.php:677 +#: tbl_operations.php:675 msgid "Remove partitioning" msgstr "" -#: tbl_operations.php:703 +#: tbl_operations.php:701 msgid "Check referential integrity:" msgstr "" -#: tbl_printview.php:73 +#: tbl_printview.php:72 msgid "Show tables" msgstr "" -#: tbl_printview.php:308 tbl_structure.php:655 +#: tbl_printview.php:307 tbl_structure.php:653 msgid "Space usage" msgstr "" -#: tbl_printview.php:312 tbl_structure.php:659 +#: tbl_printview.php:311 tbl_structure.php:657 msgid "Usage" msgstr "" -#: tbl_printview.php:339 tbl_structure.php:686 +#: tbl_printview.php:338 tbl_structure.php:684 msgid "Effective" msgstr "" -#: tbl_printview.php:364 tbl_structure.php:724 +#: tbl_printview.php:363 tbl_structure.php:722 msgid "Row Statistics" msgstr "" -#: tbl_printview.php:367 tbl_structure.php:727 +#: tbl_printview.php:366 tbl_structure.php:725 msgid "Statements" msgstr "" -#: tbl_printview.php:378 tbl_structure.php:739 +#: tbl_printview.php:377 tbl_structure.php:737 msgid "static" msgstr "" -#: tbl_printview.php:380 tbl_structure.php:741 +#: tbl_printview.php:379 tbl_structure.php:739 msgid "dynamic" msgstr "" -#: tbl_printview.php:402 tbl_structure.php:784 +#: tbl_printview.php:401 tbl_structure.php:782 msgid "Row length" msgstr "" -#: tbl_printview.php:412 tbl_structure.php:792 +#: tbl_printview.php:411 tbl_structure.php:790 msgid " Row size " msgstr "" -#: tbl_relation.php:278 +#: tbl_relation.php:276 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" -#: tbl_relation.php:404 +#: tbl_relation.php:402 msgid "Internal relation" msgstr "" -#: tbl_relation.php:406 +#: tbl_relation.php:404 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: tbl_relation.php:412 +#: tbl_relation.php:410 msgid "Foreign key constraint" msgstr "" @@ -7547,224 +7607,224 @@ msgstr "" msgid "No rows selected" msgstr "" -#: tbl_select.php:130 +#: tbl_select.php:129 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "" -#: tbl_select.php:136 +#: tbl_select.php:135 msgid "Operator" msgstr "" -#: tbl_select.php:267 +#: tbl_select.php:266 msgid "Select columns (at least one):" msgstr "" -#: tbl_select.php:285 +#: tbl_select.php:284 msgid "Add search conditions (body of the \"where\" clause):" msgstr "" -#: tbl_select.php:292 +#: tbl_select.php:291 msgid "Number of rows per page" msgstr "" -#: tbl_select.php:298 +#: tbl_select.php:297 msgid "Display order:" msgstr "" -#: tbl_structure.php:160 +#: tbl_structure.php:159 msgid "Browse distinct values" msgstr "" -#: tbl_structure.php:360 +#: tbl_structure.php:358 msgctxt "None for default" msgid "None" msgstr "" -#: tbl_structure.php:373 +#: tbl_structure.php:371 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Column %s has been dropped" msgstr "Table %s has been dropped" -#: tbl_structure.php:384 +#: tbl_structure.php:382 #, php-format msgid "A primary key has been added on %s" msgstr "" -#: tbl_structure.php:399 tbl_structure.php:413 tbl_structure.php:427 +#: tbl_structure.php:397 tbl_structure.php:411 tbl_structure.php:425 #, php-format msgid "An index has been added on %s" msgstr "" -#: tbl_structure.php:505 tbl_structure.php:507 +#: tbl_structure.php:503 tbl_structure.php:505 msgid "Relation view" msgstr "" -#: tbl_structure.php:514 tbl_structure.php:516 +#: tbl_structure.php:512 tbl_structure.php:514 msgid "Propose table structure" msgstr "" -#: tbl_structure.php:539 +#: tbl_structure.php:537 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Add column" msgstr "فیلڈ کالمز شامل یا ختم کریں" -#: tbl_structure.php:553 +#: tbl_structure.php:551 msgid "At End of Table" msgstr "" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At Beginning of Table" msgstr "" -#: tbl_structure.php:555 +#: tbl_structure.php:553 #, php-format msgid "After %s" msgstr "" -#: tbl_structure.php:593 +#: tbl_structure.php:591 #, php-format msgid "Create an index on  %s columns" msgstr "" -#: tbl_structure.php:755 +#: tbl_structure.php:753 msgid "partitioned" msgstr "" -#: tbl_tracking.php:113 +#: tbl_tracking.php:109 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:186 +#: tbl_tracking.php:182 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "" -#: tbl_tracking.php:194 +#: tbl_tracking.php:190 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "" -#: tbl_tracking.php:202 +#: tbl_tracking.php:198 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "" -#: tbl_tracking.php:212 +#: tbl_tracking.php:208 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:219 +#: tbl_tracking.php:215 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:220 +#: tbl_tracking.php:216 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:229 +#: tbl_tracking.php:225 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:250 tbl_tracking.php:378 +#: tbl_tracking.php:245 tbl_tracking.php:373 msgid "Close" msgstr "" -#: tbl_tracking.php:261 +#: tbl_tracking.php:256 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:380 +#: tbl_tracking.php:375 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:396 tbl_tracking.php:503 +#: tbl_tracking.php:391 tbl_tracking.php:498 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "" -#: tbl_tracking.php:409 tbl_tracking.php:460 +#: tbl_tracking.php:404 tbl_tracking.php:455 msgid "Date" msgstr "" -#: tbl_tracking.php:410 tbl_tracking.php:461 +#: tbl_tracking.php:405 tbl_tracking.php:456 msgid "Username" msgstr "" -#: tbl_tracking.php:411 +#: tbl_tracking.php:406 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:462 +#: tbl_tracking.php:457 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:506 +#: tbl_tracking.php:501 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:507 +#: tbl_tracking.php:502 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:520 +#: tbl_tracking.php:515 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:560 +#: tbl_tracking.php:555 msgid "Show versions" msgstr "" -#: tbl_tracking.php:592 +#: tbl_tracking.php:587 msgid "Version" msgstr "" -#: tbl_tracking.php:639 +#: tbl_tracking.php:634 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "" -#: tbl_tracking.php:641 +#: tbl_tracking.php:636 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:652 +#: tbl_tracking.php:647 #, php-format msgid "Activate tracking for %s.%s" msgstr "" -#: tbl_tracking.php:654 +#: tbl_tracking.php:649 msgid "Activate now" msgstr "" -#: tbl_tracking.php:667 +#: tbl_tracking.php:662 #, php-format msgid "Create version %s of %s.%s" msgstr "" -#: tbl_tracking.php:671 +#: tbl_tracking.php:666 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:679 +#: tbl_tracking.php:674 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:687 +#: tbl_tracking.php:682 msgid "Create version" msgstr "" @@ -7809,10 +7869,34 @@ msgstr "" msgid "VIEW name" msgstr "" -#: view_operations.php:92 +#: view_operations.php:91 msgid "Rename view to" msgstr "" +#~ msgid "BLOB Repository" +#~ msgstr "BLOB Repository" + +#~ msgctxt "BLOB repository" +#~ msgid "Enabled" +#~ msgstr "فعال" + +#~ msgid "Disable" +#~ msgstr "غیر فعال" + +#~ msgid "Damaged" +#~ msgstr "ضرر" + +#~ msgctxt "BLOB repository" +#~ msgid "Repair" +#~ msgstr "مرمت" + +#~ msgctxt "BLOB repository" +#~ msgid "Disabled" +#~ msgstr "غیر فعال" + +#~ msgid "Enable" +#~ msgstr "فعال" + #, fuzzy #~| msgid "Inside field:" #~ msgid "Add field" diff --git a/po/uz.po b/po/uz.po index 7d98ba0d2..2bcb0880f 100644 --- a/po/uz.po +++ b/po/uz.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-21 13:53+0200\n" +"POT-Creation-Date: 2010-07-26 17:18+0200\n" "PO-Revision-Date: 2010-07-22 02:31+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: uzbek_cyrillic \n" @@ -14,19 +14,19 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.1\n" -#: browse_foreigners.php:37 browse_foreigners.php:58 -#: libraries/display_tbl.lib.php:416 server_privileges.php:1506 +#: browse_foreigners.php:36 browse_foreigners.php:57 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1510 msgid "Show all" msgstr "Барчасини кўрсатиш" -#: browse_foreigners.php:81 libraries/common.lib.php:2313 -#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:393 -#: libraries/export/pdf.php:146 pdf_schema.php:282 pdf_schema.php:1122 -#: pdf_schema.php:1138 +#: browse_foreigners.php:80 libraries/common.lib.php:2318 +#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:392 +#: libraries/export/pdf.php:146 pdf_schema.php:281 pdf_schema.php:1121 +#: pdf_schema.php:1137 msgid "Page number:" msgstr "Саҳифа рақами: " -#: browse_foreigners.php:131 +#: browse_foreigners.php:130 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -35,139 +35,153 @@ msgstr "" "Браузернинг нишондаги ойнасини янгилаб бўлмади. Эҳтимол, бош ойна ёпилган " "ёки браузер хавфсизлик юзасидан ойналараро янгилашни блокировка қилмоқда" -#: browse_foreigners.php:149 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2829 -#: libraries/common.lib.php:2836 libraries/db_links.inc.php:74 -#: libraries/tbl_links.inc.php:62 +#: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 +#: db_structure.php:89 db_structure.php:91 db_structure.php:102 +#: db_structure.php:104 libraries/common.lib.php:2834 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Қидириш" -#: browse_foreigners.php:152 db_operations.php:384 db_operations.php:428 -#: db_operations.php:498 db_operations.php:608 db_search.php:344 -#: db_structure.php:566 js/messages.php:48 libraries/Config.class.php:1043 -#: libraries/Theme_Manager.class.php:310 +#: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 +#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 +#: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 -#: libraries/common.lib.php:1340 libraries/common.lib.php:2289 +#: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 -#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:275 -#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:531 -#: libraries/display_tbl.lib.php:613 libraries/replication_gui.lib.php:75 +#: libraries/display_export.lib.php:269 libraries/display_import.lib.php:275 +#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 +#: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 #: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:781 -#: main.php:127 navigation.php:231 pdf_pages.php:291 pdf_pages.php:327 -#: pdf_pages.php:529 pmd_pdf.php:115 server_binlog.php:128 -#: server_privileges.php:664 server_privileges.php:1616 -#: server_privileges.php:1963 server_privileges.php:2010 -#: server_privileges.php:2049 server_replication.php:234 -#: server_replication.php:317 server_replication.php:340 -#: server_synchronize.php:1208 tbl_change.php:328 tbl_change.php:1172 -#: tbl_change.php:1209 tbl_indexes.php:253 tbl_operations.php:264 -#: tbl_operations.php:301 tbl_operations.php:498 tbl_operations.php:560 -#: tbl_operations.php:680 tbl_select.php:324 tbl_structure.php:561 -#: tbl_structure.php:596 tbl_tracking.php:394 tbl_tracking.php:511 -#: view_create.php:181 view_operations.php:100 +#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 +#: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 +#: server_privileges.php:663 server_privileges.php:1620 +#: server_privileges.php:1967 server_privileges.php:2014 +#: server_privileges.php:2053 server_replication.php:233 +#: server_replication.php:316 server_replication.php:339 +#: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 +#: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 +#: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 +#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "OK" -#: browse_foreigners.php:167 browse_foreigners.php:171 -#: libraries/Index.class.php:441 tbl_tracking.php:319 +#: browse_foreigners.php:166 browse_foreigners.php:170 +#: libraries/Index.class.php:441 tbl_tracking.php:314 msgid "Keyname" msgstr "Индекс номи" -#: browse_foreigners.php:168 browse_foreigners.php:170 -#: server_collations.php:54 server_collations.php:66 server_engines.php:58 +#: browse_foreigners.php:167 browse_foreigners.php:169 +#: server_collations.php:54 server_collations.php:66 server_engines.php:57 #: server_status.php:738 msgid "Description" msgstr "Тавсифи" -#: browse_foreigners.php:246 browse_foreigners.php:255 -#: browse_foreigners.php:267 browse_foreigners.php:275 +#: browse_foreigners.php:245 browse_foreigners.php:254 +#: browse_foreigners.php:266 browse_foreigners.php:274 msgid "Use this value" msgstr "Ушбу қийматни ишлатиш" -#: db_create.php:45 +#: bs_disp_as_mime_type.php:29 bs_play_media.php:35 +msgid "No blob streaming server configured!" +msgstr "" + +#: bs_disp_as_mime_type.php:35 +#, fuzzy +#| msgid "Failed to write file to disk." +msgid "Failed to fetch headers" +msgstr "Файлни дискка ёзишдахатолик юз берди." + +#: bs_disp_as_mime_type.php:41 +msgid "Failed to open remote URL" +msgstr "" + +#: db_create.php:44 #, php-format msgid "Database %1$s has been created." msgstr " %1$s маълумотлар базаси тузилди." -#: db_datadict.php:48 db_operations.php:377 +#: db_datadict.php:48 db_operations.php:313 msgid "Database comment: " msgstr "Маълумотлар базасига изоҳ:" -#: db_datadict.php:164 libraries/tbl_properties.inc.php:723 -#: pdf_schema.php:1235 tbl_operations.php:346 tbl_printview.php:128 +#: db_datadict.php:164 libraries/tbl_properties.inc.php:722 +#: pdf_schema.php:1234 tbl_operations.php:344 tbl_printview.php:127 msgid "Table comments" msgstr "Жадвал изоҳи" -#: db_datadict.php:173 db_qbe.php:173 libraries/Index.class.php:445 +#: db_datadict.php:173 db_qbe.php:170 libraries/Index.class.php:445 #: libraries/export/htmlword.php:243 libraries/export/latex.php:364 #: libraries/export/odt.php:293 libraries/export/texytext.php:233 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:274 -#: pdf_schema.php:1261 pdf_schema.php:1282 tbl_change.php:306 -#: tbl_indexes.php:188 tbl_printview.php:140 tbl_relation.php:401 -#: tbl_select.php:133 tbl_structure.php:176 tbl_tracking.php:272 -#: tbl_tracking.php:323 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 +#: pdf_schema.php:1260 pdf_schema.php:1281 tbl_change.php:301 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:132 tbl_structure.php:175 tbl_tracking.php:267 +#: tbl_tracking.php:318 #, fuzzy #| msgid "Column names" msgid "Column" msgstr "Майдон номлари" -#: db_datadict.php:174 db_printview.php:105 libraries/Index.class.php:442 +#: db_datadict.php:174 db_printview.php:104 libraries/Index.class.php:442 #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 #: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:244 #: libraries/export/latex.php:364 libraries/export/odt.php:296 #: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:99 -#: pdf_schema.php:1262 pdf_schema.php:1283 server_privileges.php:2062 -#: tbl_change.php:285 tbl_change.php:312 tbl_printview.php:141 -#: tbl_printview.php:311 tbl_select.php:134 tbl_structure.php:177 -#: tbl_structure.php:658 tbl_tracking.php:273 tbl_tracking.php:320 +#: pdf_schema.php:1261 pdf_schema.php:1282 server_privileges.php:2066 +#: tbl_change.php:280 tbl_change.php:307 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:133 tbl_structure.php:176 +#: tbl_structure.php:656 tbl_tracking.php:268 tbl_tracking.php:315 msgid "Type" msgstr "Тур" #: db_datadict.php:176 libraries/Index.class.php:448 #: libraries/export/htmlword.php:245 libraries/export/latex.php:364 #: libraries/export/odt.php:299 libraries/export/texytext.php:235 -#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1264 -#: pdf_schema.php:1285 tbl_change.php:321 tbl_printview.php:143 -#: tbl_structure.php:180 tbl_tracking.php:275 tbl_tracking.php:326 +#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1263 +#: pdf_schema.php:1284 tbl_change.php:316 tbl_printview.php:142 +#: tbl_structure.php:179 tbl_tracking.php:270 tbl_tracking.php:321 msgid "Null" msgstr "Null" -#: db_datadict.php:177 db_structure.php:500 libraries/export/htmlword.php:246 +#: db_datadict.php:177 db_structure.php:486 libraries/export/htmlword.php:246 #: libraries/export/latex.php:364 libraries/export/odt.php:302 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:105 -#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 -#: tbl_structure.php:181 tbl_tracking.php:276 +#: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:143 +#: tbl_structure.php:180 tbl_tracking.php:271 msgid "Default" msgstr "Андоза" #: db_datadict.php:181 libraries/export/htmlword.php:248 #: libraries/export/latex.php:366 libraries/export/odt.php:306 -#: libraries/export/texytext.php:238 pdf_schema.php:1267 pdf_schema.php:1288 -#: tbl_printview.php:148 +#: libraries/export/texytext.php:238 pdf_schema.php:1266 pdf_schema.php:1287 +#: tbl_printview.php:147 msgid "Links to" msgstr "Алоқалар" -#: db_datadict.php:183 db_printview.php:111 libraries/export/htmlword.php:251 +#: db_datadict.php:183 db_printview.php:110 libraries/export/htmlword.php:251 #: libraries/export/latex.php:49 libraries/export/latex.php:369 #: libraries/export/odt.php:37 libraries/export/odt.php:311 #: libraries/export/sql.php:29 libraries/export/texytext.php:241 -#: libraries/tbl_properties.inc.php:129 pdf_schema.php:1278 -#: pdf_schema.php:1289 tbl_printview.php:150 +#: libraries/tbl_properties.inc.php:128 pdf_schema.php:1277 +#: pdf_schema.php:1288 tbl_printview.php:149 msgid "Comments" msgstr "Изоҳлар" #: db_datadict.php:266 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/export/htmlword.php:321 #: libraries/export/latex.php:434 libraries/export/odt.php:367 -#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:262 -#: pdf_schema.php:1343 server_privileges.php:1560 server_privileges.php:1571 -#: server_privileges.php:1881 server_privileges.php:1886 -#: server_privileges.php:2179 sql.php:131 sql.php:193 tbl_printview.php:227 -#: tbl_structure.php:349 tbl_tracking.php:336 tbl_tracking.php:341 +#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:261 +#: pdf_schema.php:1342 server_privileges.php:1564 server_privileges.php:1575 +#: server_privileges.php:1885 server_privileges.php:1890 +#: server_privileges.php:2183 sql.php:130 sql.php:192 tbl_printview.php:226 +#: tbl_structure.php:347 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "Йўқ" @@ -178,17 +192,17 @@ msgstr "Йўқ" #: libraries/mult_submits.inc.php:49 libraries/mult_submits.inc.php:54 #: libraries/mult_submits.inc.php:59 libraries/mult_submits.inc.php:91 #: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:105 -#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:261 -#: libraries/mult_submits.inc.php:272 pdf_schema.php:1343 -#: server_databases.php:63 server_privileges.php:1557 -#: server_privileges.php:1571 server_privileges.php:1881 -#: server_privileges.php:1884 server_privileges.php:2179 sql.php:192 -#: tbl_printview.php:227 tbl_structure.php:39 tbl_structure.php:349 -#: tbl_tracking.php:334 tbl_tracking.php:339 +#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:260 +#: libraries/mult_submits.inc.php:271 pdf_schema.php:1342 +#: server_databases.php:61 server_privileges.php:1561 +#: server_privileges.php:1575 server_privileges.php:1885 +#: server_privileges.php:1888 server_privileges.php:2183 sql.php:191 +#: tbl_printview.php:226 tbl_structure.php:38 tbl_structure.php:347 +#: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" msgstr "Ҳа" -#: db_datadict.php:321 db_printview.php:265 tbl_printview.php:496 +#: db_datadict.php:321 db_printview.php:264 tbl_printview.php:495 msgid "Print" msgstr "Чоп этиш" @@ -196,194 +210,154 @@ msgstr "Чоп этиш" msgid "View dump (schema) of database" msgstr "Маълумотлар базаси дампини (схемасини) намойиш этиш" -#: db_export.php:32 db_printview.php:95 db_qbe.php:101 db_structure.php:50 -#: db_tracking.php:34 export.php:352 navigation.php:326 +#: db_export.php:32 db_printview.php:94 db_qbe.php:98 db_structure.php:49 +#: db_tracking.php:30 export.php:350 navigation.php:325 msgid "No tables found in database." msgstr "Маълумотлар базасида биронта ҳам жадвал мавжуд эмас." -#: db_export.php:42 db_search.php:326 server_export.php:26 +#: db_export.php:42 db_search.php:326 server_export.php:24 msgid "Select All" msgstr "Барчасини белгилаш" -#: db_export.php:44 db_search.php:329 server_export.php:28 +#: db_export.php:44 db_search.php:329 server_export.php:26 msgid "Unselect All" msgstr "Белгилашни бекор қилиш" -#: db_operations.php:37 tbl_create.php:49 +#: db_operations.php:33 tbl_create.php:47 msgid "The database name is empty!" msgstr "Маълумотлар базаси номи бўш!" -#: db_operations.php:235 +#: db_operations.php:231 #, php-format msgid "Database %s has been renamed to %s" msgstr " `\"%s\"` маълумотлар базасининг номи `\"%s\"` деб ўзгартирилди." -#: db_operations.php:239 +#: db_operations.php:235 #, php-format msgid "Database %s has been copied to %s" msgstr "\"%s\" маълумотлар базасидан \"%s\" га нусха кўчирилди." -#: db_operations.php:411 +#: db_operations.php:347 msgid "Rename database to" msgstr "Маълумотлар базаси номини қуйидагига ўзгартириш" -#: db_operations.php:416 server_processlist.php:56 +#: db_operations.php:352 server_processlist.php:56 msgid "Command" msgstr "Буйруқ" -#: db_operations.php:428 tbl_change.php:1141 +#: db_operations.php:364 tbl_change.php:1039 msgid "and then" msgstr "ва сўнг" -#: db_operations.php:454 +#: db_operations.php:390 msgid "Copy database to" msgstr "Маълумотлар базасидан қуйидагига нусха олиш" -#: db_operations.php:461 tbl_operations.php:527 tbl_tracking.php:387 +#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Фақат тузилиши" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:389 +#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Тузилиши ва маълумотлари" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:388 +#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Фақат маълумотлар" -#: db_operations.php:471 +#: db_operations.php:407 msgid "CREATE DATABASE before copying" msgstr "Нусха кўчиришдан олдин маълумотлар базаси тузинг (CREATE DATABASE)" -#: db_operations.php:474 libraries/export/sql.php:51 +#: db_operations.php:410 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 -#: libraries/export/sql.php:81 tbl_operations.php:535 +#: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "\"%s\" қўшиш" -#: db_operations.php:478 libraries/export/sql.php:77 tbl_operations.php:298 -#: tbl_operations.php:537 +#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT қўшиш" -#: db_operations.php:482 tbl_operations.php:544 +#: db_operations.php:418 tbl_operations.php:542 msgid "Add constraints" msgstr "Чекловлар қўшиш" -#: db_operations.php:495 +#: db_operations.php:431 msgid "Switch to copied database" msgstr "Нусха олинган маълумотлар базасига ўтиш" -#: db_operations.php:536 -msgid "BLOB Repository" -msgstr "BLOB омбори" - -#: db_operations.php:539 db_tracking.php:75 libraries/common.lib.php:1357 -#: libraries/server_links.inc.php:48 server_processlist.php:58 -#: tbl_tracking.php:595 test/theme.php:100 -msgid "Status" -msgstr "Ҳолат" - -#: db_operations.php:547 -#, fuzzy -#| msgid "Enabled" -msgctxt "BLOB repository" -msgid "Enabled" -msgstr "Фаоллаштирилган" - -#: db_operations.php:551 -msgid "Disable" -msgstr "Фаолсизлантириш" - -#: db_operations.php:561 -msgid "Damaged" -msgstr "Шикастланган" - -#: db_operations.php:565 -#, fuzzy -#| msgid "Repair" -msgctxt "BLOB repository" -msgid "Repair" -msgstr "Тиклаш" - -#: db_operations.php:573 -#, fuzzy -#| msgid "Disabled" -msgctxt "BLOB repository" -msgid "Disabled" -msgstr "Фаолсизлантирилган" - -#: db_operations.php:577 -msgid "Enable" -msgstr "Фаоллантириш" - -#: db_operations.php:601 libraries/Index.class.php:447 +#: db_operations.php:451 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 -#: server_collations.php:53 server_collations.php:65 server_databases.php:110 -#: tbl_operations.php:362 tbl_select.php:135 tbl_structure.php:178 -#: tbl_structure.php:766 tbl_tracking.php:274 tbl_tracking.php:325 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 +#: server_collations.php:53 server_collations.php:65 server_databases.php:108 +#: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:177 +#: tbl_structure.php:764 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "Таққослаш" -#: db_operations.php:614 main.php:315 pdf_schema.php:33 -#, php-format +#: db_operations.php:464 pdf_schema.php:32 +#, fuzzy, php-format +#| msgid "" +#| "The additional features for working with linked tables have been " +#| "deactivated. To find out why click %shere%s." msgid "" -"The additional features for working with linked tables have been " -"deactivated. To find out why click %shere%s." +"The phpMyAdmin configuration storage has been deactivated. To find out why " +"click %shere%s." msgstr "" "Алоқадор жадваллар билан ишлаш учун қўшимча имкониятлар мавжуд эмас. " "Сабабларини аниқлаш учун %sбу ерга%s босинг." -#: db_operations.php:647 +#: db_operations.php:497 msgid "Edit PDF Pages" msgstr "PDF-саҳифаларни таҳрирлаш" -#: db_printview.php:103 db_tracking.php:71 db_tracking.php:156 +#: db_printview.php:102 db_tracking.php:67 db_tracking.php:152 #: libraries/db_structure.lib.php:37 libraries/export/xml.php:327 -#: libraries/header.inc.php:125 pdf_pages.php:423 server_privileges.php:1657 -#: server_privileges.php:1713 server_privileges.php:1977 -#: server_synchronize.php:422 server_synchronize.php:865 tbl_tracking.php:591 +#: libraries/header.inc.php:125 pdf_pages.php:422 server_privileges.php:1661 +#: server_privileges.php:1717 server_privileges.php:1981 +#: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "Жадвал " -#: db_printview.php:104 libraries/db_structure.lib.php:47 +#: db_printview.php:103 libraries/db_structure.lib.php:47 #: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 -#: navigation.php:629 navigation.php:651 server_databases.php:121 -#: tbl_printview.php:392 tbl_structure.php:364 tbl_structure.php:776 +#: navigation.php:628 navigation.php:650 server_databases.php:119 +#: tbl_printview.php:391 tbl_structure.php:362 tbl_structure.php:774 msgid "Rows" msgstr "Қаторларсони" -#: db_printview.php:108 libraries/db_structure.lib.php:58 tbl_indexes.php:189 +#: db_printview.php:107 libraries/db_structure.lib.php:58 tbl_indexes.php:188 msgid "Size" msgstr "Ҳажми" -#: db_printview.php:161 db_structure.php:456 libraries/export/sql.php:556 +#: db_printview.php:160 db_structure.php:442 libraries/export/sql.php:556 #: libraries/export/sql.php:896 msgid "in use" msgstr "ишлатилмоқда" -#: db_printview.php:186 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:511 pdf_schema.php:1240 tbl_printview.php:432 -#: tbl_structure.php:808 +#: db_printview.php:185 libraries/db_info.inc.php:86 +#: libraries/export/sql.php:511 pdf_schema.php:1239 tbl_printview.php:431 +#: tbl_structure.php:806 msgid "Creation" msgstr "Тузиш" -#: db_printview.php:195 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:516 pdf_schema.php:1245 tbl_printview.php:442 -#: tbl_structure.php:816 +#: db_printview.php:194 libraries/db_info.inc.php:91 +#: libraries/export/sql.php:516 pdf_schema.php:1244 tbl_printview.php:441 +#: tbl_structure.php:814 msgid "Last update" msgstr "Охирги янгиланиш" -#: db_printview.php:204 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:521 pdf_schema.php:1250 tbl_printview.php:452 -#: tbl_structure.php:824 +#: db_printview.php:203 libraries/db_info.inc.php:96 +#: libraries/export/sql.php:521 pdf_schema.php:1249 tbl_printview.php:451 +#: tbl_structure.php:822 msgid "Last check" msgstr "Охирги текширув" -#: db_printview.php:221 db_structure.php:479 +#: db_printview.php:220 db_structure.php:465 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -391,94 +365,94 @@ msgid_plural "%s tables" msgstr[0] "Жадваллар сони: \"%s\"" msgstr[1] "Жадваллар сони: \"%s\"" -#: db_qbe.php:28 import.php:453 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1980 libraries/sql_query_form.lib.php:138 -#: tbl_operations.php:212 tbl_relation.php:291 tbl_row_action.php:130 -#: view_operations.php:61 +#: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 +#: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "SQL сўрови муваффақиятли бажарилди" -#: db_qbe.php:41 +#: db_qbe.php:38 msgid "You have to choose at least one column to display" msgstr "Сўровни бажариш учун, майдон/майдонлар танланган бўлиши керак." -#: db_qbe.php:199 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:865 +#: db_qbe.php:196 libraries/db_structure.lib.php:95 +#: libraries/display_tbl.lib.php:864 msgid "Sort" msgstr "Сортировка қилиш" -#: db_qbe.php:208 db_qbe.php:242 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:522 libraries/display_tbl.lib.php:827 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:259 -#: tbl_select.php:311 +#: db_qbe.php:205 db_qbe.php:239 libraries/db_structure.lib.php:102 +#: libraries/display_tbl.lib.php:521 libraries/display_tbl.lib.php:826 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:257 +#: tbl_select.php:310 msgid "Ascending" msgstr "Ўсиш тартибида" -#: db_qbe.php:209 db_qbe.php:250 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:527 libraries/display_tbl.lib.php:824 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:260 -#: tbl_select.php:312 +#: db_qbe.php:206 db_qbe.php:247 libraries/db_structure.lib.php:110 +#: libraries/display_tbl.lib.php:526 libraries/display_tbl.lib.php:823 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:258 +#: tbl_select.php:311 msgid "Descending" msgstr "Камайиш тартибида" -#: db_qbe.php:263 db_tracking.php:77 libraries/display_tbl.lib.php:307 -#: tbl_change.php:275 tbl_tracking.php:596 +#: db_qbe.php:260 db_tracking.php:73 libraries/display_tbl.lib.php:306 +#: tbl_change.php:270 tbl_tracking.php:591 msgid "Show" msgstr "Кўрсатиш" -#: db_qbe.php:299 +#: db_qbe.php:296 msgid "Criteria" msgstr "Критерий" -#: db_qbe.php:352 db_qbe.php:434 db_qbe.php:526 db_qbe.php:557 +#: db_qbe.php:349 db_qbe.php:431 db_qbe.php:523 db_qbe.php:554 msgid "Ins" msgstr "Қўйиш" -#: db_qbe.php:356 db_qbe.php:438 db_qbe.php:523 db_qbe.php:554 +#: db_qbe.php:353 db_qbe.php:435 db_qbe.php:520 db_qbe.php:551 msgid "And" msgstr "Ва" -#: db_qbe.php:365 db_qbe.php:446 db_qbe.php:528 db_qbe.php:559 +#: db_qbe.php:362 db_qbe.php:443 db_qbe.php:525 db_qbe.php:556 msgid "Del" msgstr "Ўчириш" -#: db_qbe.php:369 db_qbe.php:450 db_qbe.php:521 db_qbe.php:552 -#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:778 -#: server_privileges.php:297 tbl_change.php:1027 tbl_indexes.php:249 -#: tbl_select.php:285 +#: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 +#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:777 +#: server_privileges.php:296 tbl_change.php:925 tbl_indexes.php:248 +#: tbl_select.php:284 msgid "Or" msgstr "Ёки" -#: db_qbe.php:506 +#: db_qbe.php:503 msgid "Modify" msgstr "Ўзгаририш" -#: db_qbe.php:583 +#: db_qbe.php:580 #, fuzzy #| msgid "Add/Delete Criteria Row" msgid "Add/Delete criteria rows" msgstr "Қатор қўшиш/ўчириш" -#: db_qbe.php:595 +#: db_qbe.php:592 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Add/Delete columns" msgstr "Устун қўшиш/ўчириш" -#: db_qbe.php:608 db_qbe.php:633 +#: db_qbe.php:605 db_qbe.php:630 msgid "Update Query" msgstr "Сўровни янгилаш" -#: db_qbe.php:616 +#: db_qbe.php:613 msgid "Use Tables" msgstr "Жадвалларни ишлатиш" -#: db_qbe.php:639 +#: db_qbe.php:636 #, php-format msgid "SQL query on database %s:" msgstr "\"%s\" маълумотлар базасига SQL-сўров: " -#: db_qbe.php:933 libraries/common.lib.php:1222 +#: db_qbe.php:930 libraries/common.lib.php:1215 msgid "Submit Query" msgstr "сўровни бажариш" @@ -518,17 +492,17 @@ msgid_plural "%s matches inside table %s" msgstr[0] "\"%s\" жадвалида ўхшашликлар сони \"%s\" та" msgstr[1] "\"%s\" жадвалида ўхшашликлар сони \"%s\" та" -#: db_search.php:249 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2831 -#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:49 -#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:466 +#: db_search.php:249 db_structure.php:75 db_structure.php:76 +#: db_structure.php:88 db_structure.php:90 db_structure.php:101 +#: db_structure.php:103 libraries/common.lib.php:2836 +#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 +#: tbl_structure.php:35 tbl_structure.php:47 tbl_structure.php:464 msgid "Browse" msgstr "Кўриб чиқиш" -#: db_search.php:254 libraries/display_tbl.lib.php:1164 -#: libraries/display_tbl.lib.php:2055 libraries/sql_query_form.lib.php:453 -#: pdf_pages.php:285 pdf_pages.php:424 pdf_pages.php:460 pdf_pages.php:488 +#: db_search.php:254 libraries/display_tbl.lib.php:1163 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 msgid "Delete" @@ -568,66 +542,66 @@ msgstr "Қуйидаги жадвал(лар)да қидириш:" msgid "Inside column:" msgstr "Қуйидаги майдон(лар)да қидириш: " -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2830 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:75 +#: db_structure.php:79 db_structure.php:80 db_structure.php:92 +#: db_structure.php:93 db_structure.php:105 db_structure.php:106 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 +#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Қўйиш" -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2827 libraries/common.lib.php:2834 -#: libraries/db_links.inc.php:62 libraries/export/htmlword.php:22 +#: db_structure.php:81 db_structure.php:94 db_structure.php:107 +#: libraries/common.lib.php:2832 libraries/common.lib.php:2839 +#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 -#: libraries/tbl_links.inc.php:55 pmd_general.php:133 -#: server_privileges.php:593 server_replication.php:314 tbl_tracking.php:268 +#: libraries/tbl_links.inc.php:54 pmd_general.php:133 +#: server_privileges.php:592 server_replication.php:313 tbl_tracking.php:263 msgid "Structure" msgstr "Тузилиши" -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:544 db_structure.php:545 db_tracking.php:90 -#: libraries/Index.class.php:482 libraries/common.lib.php:1659 -#: libraries/db_links.inc.php:99 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:126 -#: server_databases.php:351 tbl_structure.php:26 tbl_structure.php:150 -#: tbl_structure.php:151 tbl_structure.php:470 +#: db_structure.php:82 db_structure.php:83 db_structure.php:95 +#: db_structure.php:96 db_structure.php:108 db_structure.php:109 +#: db_structure.php:530 db_structure.php:531 db_tracking.php:86 +#: libraries/Index.class.php:482 libraries/common.lib.php:1663 +#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 +#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 +#: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" msgstr "Ўчириш" -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:542 db_structure.php:543 libraries/common.lib.php:1658 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:104 +#: db_structure.php:84 db_structure.php:85 db_structure.php:97 +#: db_structure.php:98 db_structure.php:110 db_structure.php:111 +#: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 +#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 msgid "Empty" msgstr "Тозалаш" -#: db_structure.php:315 libraries/tbl_links.inc.php:99 +#: db_structure.php:301 libraries/tbl_links.inc.php:98 #, php-format msgid "Table %s has been emptied" msgstr "\"%s\" жадвали тозаланди" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "View %s has been dropped" msgstr " \"%s\" намойиши ўчирилди" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "Table %s has been dropped" msgstr "\"%s\" жадвали ўчирилди" -#: db_structure.php:332 +#: db_structure.php:318 msgid "Tracking is active." msgstr "Кузатиш фаол." -#: db_structure.php:334 +#: db_structure.php:320 msgid "Tracking is not active." msgstr "Кузатиш фаол эмас." -#: db_structure.php:419 libraries/display_tbl.lib.php:1943 +#: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -636,160 +610,166 @@ msgstr "" "Ушбу намойиш камида кўрсатилган миқдорда қаторларга эга. Батафсил маълумот " "учун %sдокументацияга%s қаранг." -#: db_structure.php:433 db_structure.php:447 libraries/header.inc.php:125 -#: libraries/tbl_info.inc.php:65 tbl_structure.php:184 test/theme.php:73 +#: db_structure.php:419 db_structure.php:433 libraries/header.inc.php:125 +#: libraries/tbl_info.inc.php:60 tbl_structure.php:183 test/theme.php:73 msgid "View" msgstr "Намойиш" -#: db_structure.php:484 libraries/db_structure.lib.php:40 -#: libraries/server_links.inc.php:69 server_replication.php:32 -#: server_replication.php:163 server_status.php:368 +#: db_structure.php:470 libraries/db_structure.lib.php:40 +#: libraries/server_links.inc.php:69 server_replication.php:31 +#: server_replication.php:162 server_status.php:368 msgid "Replication" msgstr "Репликация (захира нусха кўчириш)" -#: db_structure.php:488 +#: db_structure.php:474 msgid "Sum" msgstr "Жами" -#: db_structure.php:495 libraries/StorageEngine.class.php:349 +#: db_structure.php:481 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "\"%s\" - MySQL серверидаги андозавий маълумотлар жадвали тури." -#: db_structure.php:523 db_structure.php:540 db_structure.php:541 -#: libraries/display_tbl.lib.php:2080 libraries/display_tbl.lib.php:2085 -#: libraries/mult_submits.inc.php:15 server_databases.php:345 -#: server_databases.php:350 server_privileges.php:1588 tbl_structure.php:454 -#: tbl_structure.php:463 +#: db_structure.php:509 db_structure.php:526 db_structure.php:527 +#: libraries/display_tbl.lib.php:2039 libraries/display_tbl.lib.php:2044 +#: libraries/mult_submits.inc.php:15 server_databases.php:343 +#: server_databases.php:348 server_privileges.php:1592 tbl_structure.php:452 +#: tbl_structure.php:461 msgid "With selected:" msgstr "Белгиланганларни: " -#: db_structure.php:526 libraries/display_tbl.lib.php:2075 -#: server_databases.php:347 server_privileges.php:569 -#: server_privileges.php:1591 tbl_structure.php:457 +#: db_structure.php:512 libraries/display_tbl.lib.php:2034 +#: server_databases.php:345 server_privileges.php:568 +#: server_privileges.php:1595 tbl_structure.php:455 msgid "Check All" msgstr "Барчасини белгилаш" -#: db_structure.php:530 libraries/display_tbl.lib.php:2076 -#: libraries/replication_gui.lib.php:35 server_databases.php:349 -#: server_privileges.php:572 server_privileges.php:1595 tbl_structure.php:461 +#: db_structure.php:516 libraries/display_tbl.lib.php:2035 +#: libraries/replication_gui.lib.php:35 server_databases.php:347 +#: server_privileges.php:571 server_privileges.php:1599 tbl_structure.php:459 msgid "Uncheck All" msgstr "Белгилашни бекор қилиш" -#: db_structure.php:535 +#: db_structure.php:521 msgid "Check tables having overhead" msgstr "Оптималлаштириш лозим бўлгн жадвалларни белгилаш" -#: db_structure.php:546 db_structure.php:547 db_structure.php:598 -#: libraries/display_tbl.lib.php:2179 libraries/mult_submits.inc.php:27 -#: tbl_structure.php:491 tbl_structure.php:493 +#: db_structure.php:532 db_structure.php:533 db_structure.php:584 +#: libraries/display_tbl.lib.php:2138 libraries/mult_submits.inc.php:27 +#: tbl_structure.php:489 tbl_structure.php:491 msgid "Print view" msgstr "Чоп этиш версияси" -#: db_structure.php:548 db_structure.php:549 libraries/mult_submits.inc.php:41 -#: tbl_operations.php:580 +#: db_structure.php:534 db_structure.php:535 libraries/mult_submits.inc.php:41 +#: tbl_operations.php:578 msgid "Check table" msgstr "Жадвални текшириш" -#: db_structure.php:550 db_structure.php:551 libraries/mult_submits.inc.php:46 -#: tbl_operations.php:620 tbl_structure.php:708 tbl_structure.php:710 +#: db_structure.php:536 db_structure.php:537 libraries/mult_submits.inc.php:46 +#: tbl_operations.php:618 tbl_structure.php:706 tbl_structure.php:708 msgid "Optimize table" msgstr "Жадвални оптималлаштириш" -#: db_structure.php:552 db_structure.php:553 libraries/mult_submits.inc.php:51 -#: tbl_operations.php:610 +#: db_structure.php:538 db_structure.php:539 libraries/mult_submits.inc.php:51 +#: tbl_operations.php:608 msgid "Repair table" msgstr "Жадвални тиклаш" -#: db_structure.php:554 db_structure.php:555 libraries/mult_submits.inc.php:56 -#: tbl_operations.php:600 +#: db_structure.php:540 db_structure.php:541 libraries/mult_submits.inc.php:56 +#: tbl_operations.php:598 msgid "Analyze table" msgstr "Жадвал таҳлили" -#: db_structure.php:556 db_structure.php:557 libraries/db_links.inc.php:70 -#: libraries/display_export.lib.php:82 libraries/display_tbl.lib.php:2093 -#: libraries/display_tbl.lib.php:2224 libraries/mult_submits.inc.php:61 -#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:81 -#: pmd_pdf.php:83 pmd_pdf.php:108 server_privileges.php:1372 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 +#: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 +#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 +#: pmd_pdf.php:81 pmd_pdf.php:106 server_privileges.php:1376 #: setup/frames/menu.inc.php:22 tbl_row_action.php:58 msgid "Export" msgstr "Экспорт" -#: db_structure.php:605 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:591 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "Маълумотлар луғати" -#: db_tracking.php:65 +#: db_tracking.php:61 msgid "Tracked tables" msgstr "Кузатилган жадваллар" -#: db_tracking.php:70 libraries/export/htmlword.php:85 +#: db_tracking.php:66 libraries/export/htmlword.php:85 #: libraries/export/latex.php:152 libraries/export/odt.php:112 #: libraries/export/sql.php:339 libraries/export/texytext.php:84 #: libraries/export/xml.php:254 libraries/header.inc.php:105 -#: libraries/header_printview.inc.php:57 server_databases.php:168 -#: server_privileges.php:1652 server_privileges.php:1713 -#: server_privileges.php:1971 server_processlist.php:55 -#: server_synchronize.php:1178 server_synchronize.php:1182 -#: tbl_tracking.php:590 test/theme.php:64 +#: libraries/header_printview.inc.php:57 server_databases.php:166 +#: server_privileges.php:1656 server_privileges.php:1717 +#: server_privileges.php:1975 server_processlist.php:55 +#: server_synchronize.php:1177 server_synchronize.php:1181 +#: tbl_tracking.php:585 test/theme.php:64 msgid "Database" msgstr "Маълумотлар базаси" -#: db_tracking.php:72 +#: db_tracking.php:68 msgid "Last version" msgstr "Охирги версия" -#: db_tracking.php:73 tbl_tracking.php:593 +#: db_tracking.php:69 tbl_tracking.php:588 msgid "Created" msgstr "Тузилди" -#: db_tracking.php:74 tbl_tracking.php:594 +#: db_tracking.php:70 tbl_tracking.php:589 msgid "Updated" msgstr "Янгиланди" -#: db_tracking.php:76 libraries/Index.class.php:439 -#: libraries/db_structure.lib.php:44 server_databases.php:202 -#: server_privileges.php:1534 server_privileges.php:1717 -#: server_privileges.php:2065 tbl_structure.php:186 +#: db_tracking.php:71 libraries/common.lib.php:1361 +#: libraries/server_links.inc.php:48 server_processlist.php:58 +#: tbl_tracking.php:590 test/theme.php:100 +msgid "Status" +msgstr "Ҳолат" + +#: db_tracking.php:72 libraries/Index.class.php:439 +#: libraries/db_structure.lib.php:44 server_databases.php:200 +#: server_privileges.php:1538 server_privileges.php:1721 +#: server_privileges.php:2069 tbl_structure.php:185 msgid "Action" msgstr "Амал" -#: db_tracking.php:87 db_tracking.php:119 +#: db_tracking.php:83 db_tracking.php:115 msgid "Delete tracking data for this table" msgstr "Ушбу жадвал учун кузатув маълумотлари ўчириш" -#: db_tracking.php:105 tbl_tracking.php:547 tbl_tracking.php:605 -#: tbl_tracking.php:612 +#: db_tracking.php:101 tbl_tracking.php:542 tbl_tracking.php:600 +#: tbl_tracking.php:607 msgid "active" msgstr "фаол" -#: db_tracking.php:107 tbl_tracking.php:549 tbl_tracking.php:607 -#: tbl_tracking.php:609 +#: db_tracking.php:103 tbl_tracking.php:544 tbl_tracking.php:602 +#: tbl_tracking.php:604 msgid "not active" msgstr "фаол эмас" -#: db_tracking.php:120 +#: db_tracking.php:116 msgid "Versions" msgstr "Версиялар" -#: db_tracking.php:121 tbl_tracking.php:378 tbl_tracking.php:623 +#: db_tracking.php:117 tbl_tracking.php:373 tbl_tracking.php:618 msgid "Tracking report" msgstr "Кузатиш ҳисоботи" -#: db_tracking.php:122 tbl_tracking.php:250 tbl_tracking.php:623 +#: db_tracking.php:118 tbl_tracking.php:245 tbl_tracking.php:618 msgid "Structure snapshot" msgstr "Тузилма расми" -#: db_tracking.php:151 +#: db_tracking.php:147 msgid "Untracked tables" msgstr "Кузатилмаган жадваллар" -#: db_tracking.php:171 db_tracking.php:173 tbl_structure.php:527 -#: tbl_structure.php:529 +#: db_tracking.php:167 db_tracking.php:169 tbl_structure.php:525 +#: tbl_structure.php:527 msgid "Track table" msgstr "Жадвални кузатиш" -#: db_tracking.php:199 +#: db_tracking.php:195 msgid "Database Log" msgstr "База лог файлини" @@ -797,12 +777,12 @@ msgstr "База лог файлини" msgid "Selected export type has to be saved in file!" msgstr "Белгиланган экспорт тури файлга сақланиши шарт!" -#: export.php:153 export.php:178 export.php:620 +#: export.php:152 export.php:177 export.php:615 #, php-format msgid "Insufficient space to save the file %s." msgstr "\"%s\" файлини сақлаш учун дискда етарли жой мавжуд эмас. " -#: export.php:287 +#: export.php:286 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -810,17 +790,17 @@ msgstr "" "\"%s\" файли серверда мавжуд, унинг номини ўзгартиринг ёки қайта ёзиш " "параметрини ёқинг." -#: export.php:291 export.php:295 +#: export.php:290 export.php:294 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "\"%s\" файлини веб-серверга сақлаш учун ҳуқуқлар етарли эмас." -#: export.php:622 +#: export.php:617 #, php-format msgid "Dump has been saved to file %s." msgstr "Дамп \"%s\" файлида сақланди." -#: import.php:59 +#: import.php:58 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -829,14 +809,14 @@ msgstr "" "Эҳтимол, юкланаётган файл ҳажми жуда катта. Бу муаммони ечишнинг усуллари " "%sдокументацияда%s келтирилган." -#: import.php:278 import.php:331 libraries/File.class.php:840 -#: libraries/File.class.php:950 +#: import.php:277 import.php:330 libraries/File.class.php:566 +#: libraries/File.class.php:676 msgid "File could not be read" msgstr "Файлни ўқиб бўлмади!!" -#: import.php:286 import.php:295 import.php:314 import.php:323 -#: libraries/File.class.php:1020 libraries/File.class.php:1028 -#: libraries/File.class.php:1044 libraries/File.class.php:1052 +#: import.php:285 import.php:294 import.php:313 import.php:322 +#: libraries/File.class.php:746 libraries/File.class.php:754 +#: libraries/File.class.php:770 libraries/File.class.php:778 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -846,7 +826,7 @@ msgstr "" "эмас, шунинг учун ушбу файлни импорт қилиб бўлмайди. Агар дастур мавжуд " "бўлса, демак у конфигурация вақтида ўчириб қўйилган." -#: import.php:336 +#: import.php:335 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -857,31 +837,31 @@ msgstr "" "қийматдан катта. Қаранг: [a@./Documentation.html#faq1_16@Documentation]FAQ " "1.16[/a]." -#: import.php:371 libraries/display_import.lib.php:23 +#: import.php:370 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "" "Импорт модуллари мавжуд эмас! Ўрнатилган phpMyAdmin нусхасининг libraries/" "export каталогини текширинг." -#: import.php:396 +#: import.php:395 msgid "The bookmark has been deleted." msgstr "Хатчўп ўчирилди." -#: import.php:400 +#: import.php:399 msgid "Showing bookmark" msgstr "Хатчўпларни кўрсатиш" -#: import.php:402 sql.php:625 +#: import.php:401 sql.php:618 #, php-format msgid "Bookmark %s created" msgstr "\"%s\" хатчўпи тузилди" -#: import.php:408 import.php:414 +#: import.php:407 import.php:413 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Импорт муваффақиятли тугатилди, бажарилган сўровлар сони: %d." -#: import.php:423 +#: import.php:422 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -890,7 +870,7 @@ msgstr "" "ўша файлни танлаган ҳолда уни қайта ишга туширинг ва жараён узилган жойдан " "бошлаб давом этади." -#: import.php:425 +#: import.php:424 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -899,20 +879,20 @@ msgstr "" "Одатда, бу ҳол, php-сценарийлар учун ажратилган вақт оширилмагунча " "phpMyAdmin дастури импорт жараёнини якунла олмаслигини билдиради." -#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:240 +#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:239 #: user_password.php:110 msgid "Back" msgstr "Орқага" -#: index.php:188 +#: index.php:183 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" "phpMyAdmin ишлаши учун фреймлар билан ишлай оладиган браузер керак." -#: js/messages.php:25 server_synchronize.php:344 server_synchronize.php:356 -#: server_synchronize.php:372 server_synchronize.php:379 -#: server_synchronize.php:738 server_synchronize.php:766 -#: server_synchronize.php:794 server_synchronize.php:806 +#: js/messages.php:25 server_synchronize.php:343 server_synchronize.php:355 +#: server_synchronize.php:371 server_synchronize.php:378 +#: server_synchronize.php:737 server_synchronize.php:765 +#: server_synchronize.php:793 server_synchronize.php:805 msgid "Click to select" msgstr "Танлаш учун сичқонча тугмасини босинг" @@ -920,15 +900,15 @@ msgstr "Танлаш учун сичқонча тугмасини босинг" msgid "Click to unselect" msgstr "Танлашни бекор қилиш учун сичқонча тугмасини босинг" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:88 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:87 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" (маълумотлар базасини ўчириш) буйруғи ўчирилган." -#: js/messages.php:30 libraries/mult_submits.inc.php:257 sql.php:187 +#: js/messages.php:30 libraries/mult_submits.inc.php:256 sql.php:186 msgid "Do you really want to " msgstr "Ҳақиқатан ҳам сўровни бажармоқчимисиз?" -#: js/messages.php:31 libraries/mult_submits.inc.php:257 sql.php:171 +#: js/messages.php:31 libraries/mult_submits.inc.php:256 sql.php:170 msgid "You are about to DESTROY a complete database!" msgstr "Маълумотлар базаси тўлиқ ЎЧИРИЛАДИ!" @@ -959,11 +939,11 @@ msgstr "Хост номи бўш!" msgid "The user name is empty!" msgstr "Фойдаланувчи номи белгиланмаган!" -#: js/messages.php:44 server_privileges.php:1228 user_password.php:65 +#: js/messages.php:44 server_privileges.php:1229 user_password.php:65 msgid "The password is empty!" msgstr "Парол белгиланмаган!" -#: js/messages.php:45 server_privileges.php:1226 user_password.php:68 +#: js/messages.php:45 server_privileges.php:1227 user_password.php:68 msgid "The passwords aren't the same!" msgstr "Киритилган пароллар бир хил эмас!" @@ -971,27 +951,27 @@ msgstr "Киритилган пароллар бир хил эмас!" msgid "Cancel" msgstr "Бекор қилиш" -#: js/messages.php:52 pmd_save_pos.php:53 +#: js/messages.php:52 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "Ўзгариришлар сақланди" -#: js/messages.php:53 pmd_relation_upd.php:48 +#: js/messages.php:53 pmd_relation_upd.php:47 msgid "Relation deleted" msgstr "Алоқа ўчирилди" -#: js/messages.php:54 pmd_relation_new.php:63 +#: js/messages.php:54 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "Ташқи калитга (FOREIGN KEY) алоқа ўрнатилди" -#: js/messages.php:55 pmd_relation_new.php:85 +#: js/messages.php:55 pmd_relation_new.php:84 msgid "Internal relation added" msgstr "Ички алоқа ўрнатилди" -#: js/messages.php:56 pmd_relation_new.php:62 pmd_relation_new.php:87 +#: js/messages.php:56 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "Хатолик: Боғлиқлик ўрнатилмади." -#: js/messages.php:57 pmd_relation_new.php:30 +#: js/messages.php:57 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "Хатолик: Боғлиқлик аллақачон мавжуд." @@ -999,13 +979,13 @@ msgstr "Хатолик: Боғлиқлик аллақачон мавжуд." msgid "Error saving coordinates for Designer." msgstr "Координаталарни сақлашда хатолик." -#: js/messages.php:59 libraries/relation.lib.php:94 -#: libraries/relation.lib.php:106 +#: js/messages.php:59 libraries/relation.lib.php:89 +#: libraries/relation.lib.php:101 msgid "General relation features" msgstr "Алоқаларнинг асосий имкониятлари" -#: js/messages.php:59 libraries/relation.lib.php:88 -#: libraries/relation.lib.php:95 +#: js/messages.php:59 libraries/relation.lib.php:83 +#: libraries/relation.lib.php:90 msgid "Disabled" msgstr "Фаолсизлантирилган" @@ -1021,7 +1001,7 @@ msgstr "Ташқи калитни танланг" msgid "Please select the primary key or a unique key" msgstr "Бирламчи (PRIMARY) ёки уникал (UNIQUE) индекс бўлган майдонни танланг!" -#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:547 +#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" @@ -1052,10 +1032,10 @@ msgid "Prev" msgstr "Орқага" #. l10n: Display text for next month link in calendar -#: js/messages.php:81 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:337 -#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:422 -#: tbl_structure.php:800 +#: js/messages.php:81 libraries/common.lib.php:2358 +#: libraries/common.lib.php:2361 libraries/display_tbl.lib.php:336 +#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 +#: tbl_structure.php:798 msgid "Next" msgstr "Кейинги" @@ -1129,27 +1109,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1562 +#: js/messages.php:101 libraries/common.lib.php:1566 msgid "Jan" msgstr "Янв" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1564 +#: js/messages.php:103 libraries/common.lib.php:1568 msgid "Feb" msgstr "Фев" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1566 +#: js/messages.php:105 libraries/common.lib.php:1570 msgid "Mar" msgstr "Мар" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1568 +#: js/messages.php:107 libraries/common.lib.php:1572 msgid "Apr" msgstr "Апр" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1570 +#: js/messages.php:109 libraries/common.lib.php:1574 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1157,37 +1137,37 @@ msgid "May" msgstr "Май" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1572 +#: js/messages.php:111 libraries/common.lib.php:1576 msgid "Jun" msgstr "Июн" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1574 +#: js/messages.php:113 libraries/common.lib.php:1578 msgid "Jul" msgstr "Июл" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1576 +#: js/messages.php:115 libraries/common.lib.php:1580 msgid "Aug" msgstr "Авг" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1578 +#: js/messages.php:117 libraries/common.lib.php:1582 msgid "Sep" msgstr "Сен" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1580 +#: js/messages.php:119 libraries/common.lib.php:1584 msgid "Oct" msgstr "Окт" #. l10n: Short month name -#: js/messages.php:121 libraries/common.lib.php:1582 +#: js/messages.php:121 libraries/common.lib.php:1586 msgid "Nov" msgstr "Ноя" #. l10n: Short month name -#: js/messages.php:123 libraries/common.lib.php:1584 +#: js/messages.php:123 libraries/common.lib.php:1588 msgid "Dec" msgstr "Дек" @@ -1228,37 +1208,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1587 +#: js/messages.php:136 libraries/common.lib.php:1591 msgid "Sun" msgstr "Якш" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1589 +#: js/messages.php:138 libraries/common.lib.php:1593 msgid "Mon" msgstr "Душ" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1591 +#: js/messages.php:140 libraries/common.lib.php:1595 msgid "Tue" msgstr "Сеш" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1593 +#: js/messages.php:142 libraries/common.lib.php:1597 msgid "Wed" msgstr "Чор" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1595 +#: js/messages.php:144 libraries/common.lib.php:1599 msgid "Thu" msgstr "Пай" #. l10n: Short week day name -#: js/messages.php:146 libraries/common.lib.php:1597 +#: js/messages.php:146 libraries/common.lib.php:1601 msgid "Fri" msgstr "Жум" #. l10n: Short week day name -#: js/messages.php:148 libraries/common.lib.php:1599 +#: js/messages.php:148 libraries/common.lib.php:1603 msgid "Sat" msgstr "Шан" @@ -1338,18 +1318,13 @@ msgstr "секундига" msgid "Font size" msgstr "Шрифт ўлчами" -#: libraries/File.class.php:336 libraries/File.class.php:424 -#: libraries/File.class.php:561 libraries/File.class.php:700 -msgid "Unknown error in file upload." -msgstr "Файл юкланаётган вақтда номаълум хатолик юз берди." - -#: libraries/File.class.php:406 +#: libraries/File.class.php:315 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "Юкланаётган файл ҳажми PHP конфигурацион файлида (php.ini) кўрсатилган " "\"upload_max_filesize\" директиваси қийматидан катта!" -#: libraries/File.class.php:409 +#: libraries/File.class.php:318 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -1357,23 +1332,27 @@ msgstr "" "Юкланаётган файл ҳажми HTML формада кўрсатилган \"MAX_FILE_SIZE\" " "директиваси қийматидан катта!" -#: libraries/File.class.php:412 +#: libraries/File.class.php:321 msgid "The uploaded file was only partially uploaded." msgstr "Юкланаётган файл фақатгина қисман юкланди." -#: libraries/File.class.php:415 +#: libraries/File.class.php:324 msgid "Missing a temporary folder." msgstr "Вақтинчалик файлларни сақлаш учун каталог топилмади." -#: libraries/File.class.php:418 +#: libraries/File.class.php:327 msgid "Failed to write file to disk." msgstr "Файлни дискка ёзишдахатолик юз берди." -#: libraries/File.class.php:421 +#: libraries/File.class.php:330 msgid "File upload stopped by extension." msgstr "Файлнинг юкланиши унинг кенгайтмаси сабали тўхтатилди." -#: libraries/File.class.php:898 +#: libraries/File.class.php:333 +msgid "Unknown error in file upload." +msgstr "Файл юкланаётган вақтда номаълум хатолик юз берди." + +#: libraries/File.class.php:624 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -1381,37 +1360,37 @@ msgstr "" "Юкланган файл жойини ўзгартиришда хатолик, [a@./Documentation." "html#faq1_11@Documentation]\"FAQ 1.11\"[/a]га қаранг" -#: libraries/Index.class.php:427 tbl_relation.php:528 +#: libraries/Index.class.php:427 tbl_relation.php:526 msgid "No index defined!" msgstr "Индекс белгиланмаган!" -#: libraries/Index.class.php:432 server_databases.php:131 tbl_tracking.php:315 +#: libraries/Index.class.php:432 server_databases.php:129 tbl_tracking.php:310 msgid "Indexes" msgstr "Индекслар" #: libraries/Index.class.php:443 libraries/mult_submits.inc.php:102 -#: libraries/tbl_properties.inc.php:518 tbl_structure.php:32 -#: tbl_structure.php:154 tbl_structure.php:158 tbl_structure.php:473 -#: tbl_tracking.php:321 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:31 +#: tbl_structure.php:153 tbl_structure.php:157 tbl_structure.php:471 +#: tbl_tracking.php:316 msgid "Unique" msgstr "Уникал" -#: libraries/Index.class.php:444 tbl_tracking.php:322 +#: libraries/Index.class.php:444 tbl_tracking.php:317 msgid "Packed" msgstr "Қисилган" -#: libraries/Index.class.php:446 tbl_tracking.php:324 +#: libraries/Index.class.php:446 tbl_tracking.php:319 msgid "Cardinality" msgstr "Элементлар сони" -#: libraries/Index.class.php:449 tbl_tracking.php:278 tbl_tracking.php:327 +#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322 msgid "Comment" msgstr "Изоҳ" #: libraries/Index.class.php:465 libraries/common.lib.php:609 -#: libraries/common.lib.php:1198 libraries/display_tbl.lib.php:1116 +#: libraries/common.lib.php:1191 libraries/display_tbl.lib.php:1115 #: libraries/import.lib.php:1119 libraries/import.lib.php:1143 -#: pdf_pages.php:284 setup/frames/index.inc.php:124 +#: pdf_pages.php:283 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:349 tbl_row_action.php:68 msgid "Edit" msgstr "Таҳрирлаш" @@ -1433,15 +1412,15 @@ msgid "" msgstr " %1$s ва %2$s индекслари бир хил, улардан бирини ўчириш мумкин." #: libraries/List_Database.class.php:430 libraries/server_links.inc.php:40 -#: server_databases.php:87 server_privileges.php:1652 +#: server_databases.php:85 server_privileges.php:1656 #: setup/lib/messages.inc.php:107 test/theme.php:92 msgid "Databases" msgstr "Маълумотлар базалари" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:259 libraries/import.lib.php:134 pdf_schema.php:31 -#: pdf_schema.php:231 tbl_change.php:1023 tbl_operations.php:212 -#: tbl_relation.php:289 view_operations.php:61 +#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 +#: tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Хатолик" @@ -1469,40 +1448,40 @@ msgid_plural "%1$d rows inserted." msgstr[0] "%1$d та қаторлар қўйилди." msgstr[1] "%1$d та қаторлар қўйилди." -#: libraries/StorageEngine.class.php:196 +#: libraries/StorageEngine.class.php:194 msgid "" "There is no detailed status information available for this storage engine." msgstr "Ушбу турдаги жадваллар ҳақида қўшимча маълумот мавжуд эмас. " -#: libraries/StorageEngine.class.php:352 +#: libraries/StorageEngine.class.php:354 #, php-format msgid "%s is available on this MySQL server." msgstr "Ушбу MySQL сервери \"%s\" турдаги жадваллар билан ишлай олади." -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:357 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "\"%s\" туридаги жадваллар ушбу MySQL серверда фаолсизлантирилган." -#: libraries/StorageEngine.class.php:359 +#: libraries/StorageEngine.class.php:361 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "Ушбу MySQL сервери \"%s\" турдаги жадваллар билан ишлай олмайди." -#: libraries/Table.class.php:1018 +#: libraries/Table.class.php:1017 msgid "Invalid database" msgstr "Нотўғри маълумотлар базаси" -#: libraries/Table.class.php:1032 tbl_get_field.php:25 +#: libraries/Table.class.php:1031 tbl_get_field.php:25 msgid "Invalid table name" msgstr "Жадвал номи нотўғри" -#: libraries/Table.class.php:1047 +#: libraries/Table.class.php:1046 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "%1$s жадвалини %2$s деб қайта номлашда хатолик" -#: libraries/Table.class.php:1131 +#: libraries/Table.class.php:1129 #, php-format msgid "Table %s has been renamed to %s" msgstr "`\"%s\"` жадвалининг номи `\"%s\"` деб ўзгартирилди." @@ -1520,22 +1499,22 @@ msgstr "Олдиндан кўриш мумкин эмас." msgid "take it" msgstr "Тадбиқ қилиш" -#: libraries/Theme_Manager.class.php:114 +#: libraries/Theme_Manager.class.php:109 #, php-format msgid "Default theme %s not found!" msgstr " \"%s\" асл мавзуси топилмади!" -#: libraries/Theme_Manager.class.php:152 +#: libraries/Theme_Manager.class.php:147 #, php-format msgid "Theme %s not found!" msgstr " \"%s\" мавзуси топилмади!" -#: libraries/Theme_Manager.class.php:220 +#: libraries/Theme_Manager.class.php:215 #, php-format msgid "Theme path not found for theme %s!" msgstr " \"%s\" мавзуси файлларига йўл топилмади!" -#: libraries/Theme_Manager.class.php:296 test/theme.php:160 themes.php:20 +#: libraries/Theme_Manager.class.php:291 test/theme.php:160 themes.php:20 #: themes.php:40 msgid "Theme / Style" msgstr "Мавзу / Услуб" @@ -1651,19 +1630,19 @@ msgstr "Тўғри аутентификация калити уланмаган" msgid "Authenticating..." msgstr "Aутентификация..." -#: libraries/blobstreaming.lib.php:689 +#: libraries/blobstreaming.lib.php:340 msgid "View image" msgstr "Расм кўриниши" -#: libraries/blobstreaming.lib.php:693 +#: libraries/blobstreaming.lib.php:344 msgid "Play audio" msgstr "Аудиофайлни ўқиш" -#: libraries/blobstreaming.lib.php:698 +#: libraries/blobstreaming.lib.php:349 msgid "View video" msgstr "Видео кўриниши" -#: libraries/blobstreaming.lib.php:702 +#: libraries/blobstreaming.lib.php:353 msgid "Download file" msgstr "Файлни юклаб олиш" @@ -1720,7 +1699,7 @@ msgid "Invalid authentication method set in configuration:" msgstr "" "phpMyAdmin конфигурацион файлида нотўғри аутентификация усули белгиланган:" -#: libraries/common.inc.php:909 +#: libraries/common.inc.php:908 #, php-format msgid "You should upgrade to %s %s or later." msgstr " \"%s\" ни \"%s\" версияга ёки каттароқ версияга янгилаш зарур." @@ -1747,7 +1726,8 @@ msgstr "Юборилди" #: libraries/common.lib.php:425 libraries/common.lib.php:427 #: libraries/common.lib.php:429 libraries/common.lib.php:445 #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 -#: libraries/display_export.lib.php:163 libraries/relation.lib.php:84 +#: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 +#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 #: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" @@ -1762,152 +1742,152 @@ msgstr "SQL сўрови" msgid "MySQL said: " msgstr "MySQL жавоби: " -#: libraries/common.lib.php:1136 +#: libraries/common.lib.php:1129 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "Failed to connect to SQL validator!" msgstr "MySQL-серверга уланиб бўлмади" -#: libraries/common.lib.php:1174 setup/lib/messages.inc.php:350 +#: libraries/common.lib.php:1167 setup/lib/messages.inc.php:350 msgid "Explain SQL" msgstr "Сўров таҳлили" -#: libraries/common.lib.php:1177 +#: libraries/common.lib.php:1170 msgid "Skip Explain SQL" msgstr "Таҳлил керак эмас" -#: libraries/common.lib.php:1211 +#: libraries/common.lib.php:1204 msgid "Without PHP Code" msgstr "PHP-код олиб ташлаш" -#: libraries/common.lib.php:1214 setup/lib/messages.inc.php:352 +#: libraries/common.lib.php:1207 setup/lib/messages.inc.php:352 msgid "Create PHP Code" msgstr "PHP-код" -#: libraries/common.lib.php:1232 server_status.php:451 +#: libraries/common.lib.php:1225 server_status.php:451 #: setup/lib/messages.inc.php:351 msgid "Refresh" msgstr "Янгилаш" -#: libraries/common.lib.php:1241 +#: libraries/common.lib.php:1234 msgid "Skip Validate SQL" msgstr "SQL синтаксиси текширувини олиб ташлаш" -#: libraries/common.lib.php:1244 setup/lib/messages.inc.php:353 +#: libraries/common.lib.php:1237 setup/lib/messages.inc.php:353 msgid "Validate SQL" msgstr "SQL тўғрилигини текшириш" -#: libraries/common.lib.php:1283 +#: libraries/common.lib.php:1287 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1285 +#: libraries/common.lib.php:1289 #, fuzzy #| msgid "Engines" msgid "Inline" msgstr "Жадвал турлари" -#: libraries/common.lib.php:1339 libraries/common.lib.php:1354 +#: libraries/common.lib.php:1343 libraries/common.lib.php:1358 msgid "Profiling" msgstr "Профиллаштириш" -#: libraries/common.lib.php:1358 libraries/tbl_triggers.lib.php:27 +#: libraries/common.lib.php:1362 libraries/tbl_triggers.lib.php:27 #: server_processlist.php:57 msgid "Time" msgstr "Вақт" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "B" msgstr "Байт" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "KiB" msgstr "КБ" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "MiB" msgstr "МБ" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "GiB" msgstr "ГБ" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "TiB" msgstr "ТБ" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "PiB" msgstr "ПБ" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "EiB" msgstr "ЭБ" #. l10n: Thousands separator -#: libraries/common.lib.php:1424 +#: libraries/common.lib.php:1428 msgid "," msgstr " " #. l10n: Decimal separator -#: libraries/common.lib.php:1426 +#: libraries/common.lib.php:1430 msgid "." msgstr "," #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1603 +#: libraries/common.lib.php:1607 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y й., %H:%M" -#: libraries/common.lib.php:1909 +#: libraries/common.lib.php:1913 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "\"%s\" кун, \"%s\" соат, \"%s\" минут ва \"%s\" секунд" -#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 -#: libraries/display_tbl.lib.php:289 server_status.php:718 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 +#: libraries/display_tbl.lib.php:288 server_status.php:718 msgid "Begin" msgstr "Боши" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 -#: libraries/display_tbl.lib.php:290 server_binlog.php:154 +#: libraries/common.lib.php:2328 libraries/common.lib.php:2331 +#: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "Орқага" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 -#: libraries/display_tbl.lib.php:352 +#: libraries/common.lib.php:2359 libraries/common.lib.php:2362 +#: libraries/display_tbl.lib.php:351 msgid "End" msgstr "Охири" -#: libraries/common.lib.php:2429 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr " \"%s\" маълумотлар базасига ўтиш" -#: libraries/common.lib.php:2448 +#: libraries/common.lib.php:2453 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" " \"%s\" параметрининг иши маълум хатоликка олиб келиши мумкин, батафсил " "маълумот учун қаранг \"%s\"" -#: libraries/common.lib.php:2828 libraries/common.lib.php:2835 -#: libraries/db_links.inc.php:67 libraries/export/sql.php:24 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 +#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 -#: libraries/tbl_links.inc.php:59 querywindow.php:89 test/theme.php:96 +#: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2837 libraries/db_links.inc.php:103 -#: libraries/tbl_links.inc.php:94 libraries/tbl_links.inc.php:116 -#: view_operations.php:88 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: view_operations.php:87 msgid "Operations" msgstr "Операциялар" -#: libraries/core.lib.php:282 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1923,38 +1903,38 @@ msgstr "Ҳодисалар" msgid "Name" msgstr "Номи" -#: libraries/db_links.inc.php:44 +#: libraries/db_links.inc.php:43 #, php-format msgid "Database %s has been dropped." msgstr " \"%s\" маълумотлар омбори ўчирилди." -#: libraries/db_links.inc.php:56 libraries/db_links.inc.php:57 -#: libraries/db_links.inc.php:58 +#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 +#: libraries/db_links.inc.php:57 msgid "Database seems to be empty!" msgstr "Маълумотлар базаси бўш!" -#: libraries/db_links.inc.php:80 libraries/relation.lib.php:142 -#: libraries/tbl_links.inc.php:68 +#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "Кузатиш" -#: libraries/db_links.inc.php:85 +#: libraries/db_links.inc.php:84 msgid "Query" msgstr "Сўров" -#: libraries/db_links.inc.php:90 libraries/relation.lib.php:138 +#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 msgid "Designer" msgstr "Дизайнер" -#: libraries/db_links.inc.php:97 libraries/server_links.inc.php:87 -#: libraries/tbl_links.inc.php:90 pmd_pdf.php:83 pmd_pdf.php:109 +#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Импорт" -#: libraries/db_links.inc.php:110 libraries/server_links.inc.php:65 -#: server_privileges.php:111 server_privileges.php:1714 -#: server_privileges.php:2063 test/theme.php:116 +#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: server_privileges.php:110 server_privileges.php:1718 +#: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" msgstr "Привилегиялар" @@ -1966,7 +1946,7 @@ msgstr "Муолажалар" msgid "Return type" msgstr "Қайтариладиган тип" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1847 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1806 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -1974,8 +1954,8 @@ msgstr "" "Тахминий бўлиши мумкин. [a@./Documentation.html#faq3_11@Documentation]\"FAQ " "3.11\"[/a]га қаранг" -#: libraries/db_structure.lib.php:60 server_databases.php:141 -#: tbl_printview.php:334 tbl_structure.php:681 +#: libraries/db_structure.lib.php:60 server_databases.php:139 +#: tbl_printview.php:333 tbl_structure.php:679 msgid "Overhead" msgstr "Фрагментланган" @@ -1994,7 +1974,7 @@ msgstr "Сервер жавоб бермаяпти" msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "(ёки локал MySQL сервернинг сокети нотўғри созланган)" -#: libraries/dbi/mysql.dbi.lib.php:358 tbl_structure.php:607 +#: libraries/dbi/mysql.dbi.lib.php:358 tbl_structure.php:605 msgid "Details..." msgstr "Тафсилотлар..." @@ -2004,22 +1984,22 @@ msgid "Change password" msgstr "Паролни ўзгартириш" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:807 +#: libraries/replication_gui.lib.php:347 server_privileges.php:806 msgid "No Password" msgstr "Парол йўқ" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1530 server_synchronize.php:1174 +#: libraries/replication_gui.lib.php:351 server_privileges.php:795 +#: server_privileges.php:799 server_privileges.php:810 +#: server_privileges.php:1534 server_synchronize.php:1173 msgid "Password" msgstr "Парол" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:815 server_privileges.php:818 +#: server_privileges.php:814 server_privileges.php:817 msgid "Re-type" msgstr "Тасдиқлаш" @@ -2042,8 +2022,8 @@ msgstr "Янги маълумотлар базаси тузиш" msgid "Create" msgstr "Тузиш" -#: libraries/display_create_database.lib.php:39 server_privileges.php:113 -#: server_privileges.php:1419 server_replication.php:34 +#: libraries/display_create_database.lib.php:39 server_privileges.php:112 +#: server_privileges.php:1423 server_replication.php:33 msgid "No Privileges" msgstr "Привилегиялар йўқ" @@ -2064,52 +2044,52 @@ msgstr "\"%s\" маълумотлар базасида янги жадвал т msgid "Number of columns" msgstr "Майдонлар сони " -#: libraries/display_export.lib.php:41 +#: libraries/display_export.lib.php:35 msgid "Could not load export plugins, please check your installation!" msgstr "" "Экспорт модуллари мавжуд эмас! Ўрнатилган phpMyAdmin нусхасининг libraries/" "export каталогини текширинг." -#: libraries/display_export.lib.php:106 +#: libraries/display_export.lib.php:100 #, fuzzy, php-format #| msgid "Dump %s row(s) starting at record # %s" msgid "Dump %s row(s) starting at row # %s" msgstr "# %s ёзувидан бошлаб %s сатрни дамп қилиш." -#: libraries/display_export.lib.php:114 +#: libraries/display_export.lib.php:108 msgid "Dump all rows" msgstr "Барча қаторларни дамп қилиш" -#: libraries/display_export.lib.php:124 setup/lib/messages.inc.php:79 +#: libraries/display_export.lib.php:118 setup/lib/messages.inc.php:79 msgid "Save as file" msgstr "Файл каби сақлаш" -#: libraries/display_export.lib.php:133 +#: libraries/display_export.lib.php:127 #, php-format msgid "Save on server in %s directory" msgstr "Сервердаги \"%s\" каталокка сақлаш" -#: libraries/display_export.lib.php:141 setup/lib/messages.inc.php:87 +#: libraries/display_export.lib.php:135 setup/lib/messages.inc.php:87 msgid "Overwrite existing file(s)" msgstr "Мавжуд файл(лар) устидан ёзиш" -#: libraries/display_export.lib.php:147 +#: libraries/display_export.lib.php:141 msgid "File name template" msgstr "Файл номи шаблони" -#: libraries/display_export.lib.php:151 +#: libraries/display_export.lib.php:145 msgid "server name" msgstr "сервер номи" -#: libraries/display_export.lib.php:154 +#: libraries/display_export.lib.php:148 msgid "database name" msgstr "маълумотлар базаси номи" -#: libraries/display_export.lib.php:157 +#: libraries/display_export.lib.php:151 msgid "table name" msgstr "жадвал номи" -#: libraries/display_export.lib.php:161 +#: libraries/display_export.lib.php:155 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2120,39 +2100,39 @@ msgstr "" "вақт ва санани қўйиш мумкин. Қўшимча равишда қуйидагилар ишлатилиши мумкин: " "%3$s. Матннинг бошқа қисмлари ўзгаришсиз қолади." -#: libraries/display_export.lib.php:202 +#: libraries/display_export.lib.php:196 msgid "remember template" msgstr " шаблонни ёдда тутиш" -#: libraries/display_export.lib.php:210 libraries/display_import.lib.php:177 +#: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 #: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 msgid "Character set of the file:" msgstr "Файл кодировкаси: " -#: libraries/display_export.lib.php:235 setup/lib/messages.inc.php:81 +#: libraries/display_export.lib.php:229 setup/lib/messages.inc.php:81 msgid "Compression" msgstr "Сиқиш" -#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:196 -#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:529 -#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:574 -#: server_privileges.php:1867 server_processlist.php:74 +#: libraries/display_export.lib.php:234 libraries/display_import.lib.php:196 +#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:528 +#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:573 +#: server_privileges.php:1871 server_processlist.php:74 msgid "None" msgstr "Йўқ" -#: libraries/display_export.lib.php:247 +#: libraries/display_export.lib.php:241 msgid "\"zipped\"" msgstr "zip" -#: libraries/display_export.lib.php:253 +#: libraries/display_export.lib.php:247 msgid "\"gzipped\"" msgstr "gzip" -#: libraries/display_export.lib.php:259 +#: libraries/display_export.lib.php:253 msgid "\"bzipped\"" msgstr "bzip ёрдамида сиқилган" -#: libraries/display_export.lib.php:274 libraries/export/sql.php:42 +#: libraries/display_export.lib.php:268 libraries/export/sql.php:42 #: libraries/import/sql.php:31 msgid "SQL compatibility mode" msgstr "SQL билан мослик режими" @@ -2192,12 +2172,12 @@ msgid "File uploads are not allowed on this server." msgstr "Файлларни серверга юклаб бўлмади." #: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 -#: tbl_change.php:1024 +#: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "Кўрсатилган каталокка юклаб бўлмади" #: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 -#: tbl_change.php:1027 +#: tbl_change.php:925 msgid "web server upload directory" msgstr "Юклаш каталогидан" @@ -2284,43 +2264,43 @@ msgstr "Қоғоз ўлчами" msgid "Language" msgstr "Тил" -#: libraries/display_tbl.lib.php:303 +#: libraries/display_tbl.lib.php:302 #, php-format msgid "%d is not valid row number." msgstr " %d сони тўғри қатор рақами эмас!" -#: libraries/display_tbl.lib.php:309 +#: libraries/display_tbl.lib.php:308 #, fuzzy #| msgid "row(s) starting from record #" msgid "row(s) starting from row #" msgstr "та қатор қуйидаги қатордан бошлаб " -#: libraries/display_tbl.lib.php:315 +#: libraries/display_tbl.lib.php:314 msgid "horizontal" msgstr "горизонтал" -#: libraries/display_tbl.lib.php:316 +#: libraries/display_tbl.lib.php:315 msgid "horizontal (rotated headers)" msgstr "горизонтал (айлантирилган сарлавҳалар)" -#: libraries/display_tbl.lib.php:317 +#: libraries/display_tbl.lib.php:316 msgid "vertical" msgstr "вертикал" -#: libraries/display_tbl.lib.php:323 +#: libraries/display_tbl.lib.php:322 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "\"%s\" режимида ва сарлавҳаларни ҳар \"%s\" катакчадан кейин такрорлаш" -#: libraries/display_tbl.lib.php:345 +#: libraries/display_tbl.lib.php:344 msgid "This operation could take a long time. Proceed anyway?" msgstr "Ушбу операцияни бажариш узоқ вақт талаб қилиши мумкин. Давом этсинми? " -#: libraries/display_tbl.lib.php:511 +#: libraries/display_tbl.lib.php:510 msgid "Sort by key" msgstr "Индекс бўйича сортировка қилиш" -#: libraries/display_tbl.lib.php:554 libraries/export/codegen.php:38 +#: libraries/display_tbl.lib.php:553 libraries/export/codegen.php:38 #: libraries/export/csv.php:29 libraries/export/excel.php:34 #: libraries/export/htmlword.php:28 libraries/export/latex.php:32 #: libraries/export/mediawiki.php:21 libraries/export/ods.php:26 @@ -2330,99 +2310,99 @@ msgstr "Индекс бўйича сортировка қилиш" #: libraries/export/xlsx.php:26 libraries/export/xml.php:23 #: libraries/export/yaml.php:27 libraries/import.lib.php:1114 #: libraries/import.lib.php:1136 libraries/import/csv.php:31 -#: libraries/import/docsql.php:33 libraries/import/ldi.php:46 +#: libraries/import/docsql.php:32 libraries/import/ldi.php:46 #: libraries/import/ods.php:30 libraries/import/sql.php:19 #: libraries/import/xls.php:25 libraries/import/xlsx.php:25 -#: libraries/import/xml.php:25 tbl_select.php:264 tbl_structure.php:752 +#: libraries/import/xml.php:25 tbl_select.php:263 tbl_structure.php:750 msgid "Options" msgstr "Параметрлар" -#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:569 +#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:568 msgid "Partial Texts" msgstr "Маълумотларни қисқартириб кўрсатиш" -#: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:573 +#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:572 msgid "Full Texts" msgstr "Маълумотларни кенгайтирилган ҳолда кўрсатиш" -#: libraries/display_tbl.lib.php:586 +#: libraries/display_tbl.lib.php:585 msgid "Relational key" msgstr "Алоқадор калит" -#: libraries/display_tbl.lib.php:587 +#: libraries/display_tbl.lib.php:586 #, fuzzy #| msgid "Relational display field" msgid "Relational display column" msgstr "Алоқадор майдон қиймати" -#: libraries/display_tbl.lib.php:594 +#: libraries/display_tbl.lib.php:593 msgid "Show binary contents" msgstr "Иккилик маълумотларни кўрсатиш" -#: libraries/display_tbl.lib.php:596 +#: libraries/display_tbl.lib.php:595 msgid "Show BLOB contents" msgstr "BLOB туридаги маълумотларни кўрсатиш" -#: libraries/display_tbl.lib.php:598 +#: libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "Иккилик маълумотларни ўн олтилик шаклда кўрсатиш" -#: libraries/display_tbl.lib.php:606 pmd_general.php:140 tbl_change.php:312 -#: tbl_change.php:318 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:307 +#: tbl_change.php:313 msgid "Hide" msgstr "Яшириш" -#: libraries/display_tbl.lib.php:606 libraries/relation.lib.php:122 -#: libraries/tbl_properties.inc.php:143 transformation_overview.php:46 +#: libraries/display_tbl.lib.php:605 libraries/relation.lib.php:117 +#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46 msgid "Browser transformation" msgstr "Ўгириш" -#: libraries/display_tbl.lib.php:1125 libraries/display_tbl.lib.php:1129 -#: libraries/display_tbl.lib.php:1131 +#: libraries/display_tbl.lib.php:1124 libraries/display_tbl.lib.php:1128 +#: libraries/display_tbl.lib.php:1130 msgid "Execute bookmarked query" msgstr "Белгиланган сўровни бажариш" -#: libraries/display_tbl.lib.php:1144 libraries/display_tbl.lib.php:1156 +#: libraries/display_tbl.lib.php:1143 libraries/display_tbl.lib.php:1155 msgid "The row has been deleted" msgstr "Ёзув ўчирилди" -#: libraries/display_tbl.lib.php:1183 libraries/display_tbl.lib.php:2055 +#: libraries/display_tbl.lib.php:1182 libraries/display_tbl.lib.php:2014 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "Тугатиш" -#: libraries/display_tbl.lib.php:1933 +#: libraries/display_tbl.lib.php:1892 msgid "in query" msgstr "сўров бўйича" -#: libraries/display_tbl.lib.php:1951 +#: libraries/display_tbl.lib.php:1910 msgid "Showing rows" msgstr "Ёзувларни кўрсатиш" -#: libraries/display_tbl.lib.php:1961 +#: libraries/display_tbl.lib.php:1920 msgid "total" msgstr "жами" -#: libraries/display_tbl.lib.php:1969 sql.php:523 +#: libraries/display_tbl.lib.php:1928 sql.php:522 #, php-format msgid "Query took %01.4f sec" msgstr "Сўров %01.4f секунд вақт олди" -#: libraries/display_tbl.lib.php:2088 libraries/mult_submits.inc.php:112 -#: querywindow.php:115 querywindow.php:119 querywindow.php:122 -#: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:469 +#: libraries/display_tbl.lib.php:2047 libraries/mult_submits.inc.php:112 +#: querywindow.php:114 querywindow.php:118 querywindow.php:121 +#: tbl_structure.php:23 tbl_structure.php:148 tbl_structure.php:467 msgid "Change" msgstr "Ўзгартириш" -#: libraries/display_tbl.lib.php:2158 +#: libraries/display_tbl.lib.php:2117 msgid "Query results operations" msgstr "Сўров натижаларини ишлатиш" -#: libraries/display_tbl.lib.php:2186 +#: libraries/display_tbl.lib.php:2145 msgid "Print view (with full texts)" msgstr "Чоп этиш версияси (тўла)" -#: libraries/display_tbl.lib.php:2359 +#: libraries/display_tbl.lib.php:2318 msgid "Link not found" msgstr "Алоқа топилмади" @@ -2478,9 +2458,9 @@ msgstr "InnoDB аҳволи" msgid "Buffer Pool Usage" msgstr "Ишлатилиш" -#: libraries/engines/innodb.lib.php:168 server_databases.php:136 -#: server_databases.php:304 server_status.php:524 server_status.php:585 -#: server_status.php:606 tbl_printview.php:349 tbl_structure.php:695 +#: libraries/engines/innodb.lib.php:168 server_databases.php:134 +#: server_databases.php:302 server_status.php:524 server_status.php:585 +#: server_status.php:606 tbl_printview.php:348 tbl_structure.php:693 msgid "Total" msgstr "Жами" @@ -2619,6 +2599,87 @@ msgstr "" "ёки ALTER TABLE буйруқлари ёрдамида индекс тузиш учун керак бўлган буфер " "ҳажми." +#: libraries/engines/pbms.lib.php:31 +#, fuzzy +#| msgid "Garbage threshold" +msgid "Garbage Threshold" +msgstr "Ахлатланиш остонаси" + +#: libraries/engines/pbms.lib.php:32 +#, fuzzy +#| msgid "" +#| "The percentage of garbage in a data log file before it is compacted. This " +#| "is a value between 1 and 99. The default is 50." +msgid "The percentage of garbage in a repository file before it is compacted." +msgstr "" +"Ихчамлаштиришдан олдин маълумотлар журнали файли ахлатланишининг фоиз " +"нисбати. Қиймат 1 ва 99 орасидабўлиши шарт. Асл қиймати – 50." + +#: libraries/engines/pbms.lib.php:36 libraries/replication_gui.lib.php:69 +#: server_synchronize.php:1161 +msgid "Port" +msgstr "Порт" + +#: libraries/engines/pbms.lib.php:37 +msgid "" +"The port for the PBMS stream-based communications. Setting this value to 0 " +"will disable HTTP communication with the daemon." +msgstr "" + +#: libraries/engines/pbms.lib.php:41 +msgid "Repository Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:42 +msgid "" +"The maximum size of a BLOB repository file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:46 +msgid "Temp Blob Timeout" +msgstr "" + +#: libraries/engines/pbms.lib.php:47 +msgid "" +"The timeout, in seconds, for temporary BLOBs. Uploaded BLOB data is removed " +"after this time, unless they are referenced by a record in the database." +msgstr "" + +#: libraries/engines/pbms.lib.php:51 +#, fuzzy +#| msgid "Log file threshold" +msgid "Temp Log Threshold" +msgstr "Журнал файли остонаси" + +#: libraries/engines/pbms.lib.php:52 +msgid "" +"The maximum size of a temporary BLOB log file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:56 +msgid "Max Keep Alive" +msgstr "" + +#: libraries/engines/pbms.lib.php:57 +msgid "" +"The timeout for inactive connection with the keep-alive flag set. After this " +"time the connection will be closed. The time-out is in milliseconds (1/1000)." +msgstr "" + +#: libraries/engines/pbms.lib.php:61 +msgid "Metadata Headers" +msgstr "" + +#: libraries/engines/pbms.lib.php:62 +msgid "" +"A \":\" delimited list of metadata headers to be used to initialize the " +"pbms_metadata_header table when a database is created." +msgstr "" + #: libraries/engines/pbxt.lib.php:22 msgid "Index cache size" msgstr "Индекс кеши ҳажми" @@ -2768,7 +2829,7 @@ msgstr "" "рақамланади." #: libraries/export/codegen.php:36 setup/lib/messages.inc.php:85 -#: tbl_printview.php:374 tbl_structure.php:736 +#: tbl_printview.php:373 tbl_structure.php:734 msgid "Format" msgstr "Формат" @@ -2841,9 +2902,9 @@ msgstr "Microsoft Word 2000" #: libraries/export/htmlword.php:23 libraries/export/latex.php:59 #: libraries/export/latex.php:205 libraries/export/odt.php:47 #: libraries/export/sql.php:105 libraries/export/sql.php:865 -#: libraries/export/texytext.php:27 server_databases.php:126 -#: server_privileges.php:576 server_replication.php:315 tbl_printview.php:315 -#: tbl_structure.php:664 +#: libraries/export/texytext.php:27 server_databases.php:124 +#: server_privileges.php:575 server_replication.php:314 tbl_printview.php:314 +#: tbl_structure.php:662 msgid "Data" msgstr "Маълумотлар" @@ -2858,7 +2919,6 @@ msgid "Table structure for table" msgstr "Жадвал тузилиши" #: libraries/export/latex.php:13 -#| msgid "Content of table __TABLE__" msgid "Content of table @TABLE@" msgstr "@TABLE@ жадвалининг мундарижаси" @@ -2867,7 +2927,6 @@ msgid "(continued)" msgstr "(давоми)" #: libraries/export/latex.php:15 -#| msgid "Structure of table __TABLE__" msgid "Structure of table @TABLE@" msgstr " @TABLE@ жадвалининг тузилиши" @@ -2892,13 +2951,13 @@ msgid "Label key" msgstr "Белги идентификатори" #: libraries/export/latex.php:46 libraries/export/odt.php:34 -#: libraries/export/sql.php:90 tbl_relation.php:398 +#: libraries/export/sql.php:90 tbl_relation.php:396 msgid "Relations" msgstr "Алоқалар" #: libraries/export/latex.php:52 libraries/export/odt.php:40 #: libraries/export/odt.php:317 libraries/export/sql.php:94 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "MIME тури" @@ -2906,10 +2965,10 @@ msgstr "MIME тури" #: libraries/export/xml.php:101 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1529 server_privileges.php:2061 -#: server_processlist.php:54 server_synchronize.php:1158 +#: libraries/replication_gui.lib.php:331 server_privileges.php:730 +#: server_privileges.php:733 server_privileges.php:789 +#: server_privileges.php:1533 server_privileges.php:2065 +#: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "Хост" @@ -3098,8 +3157,8 @@ msgstr "Кўринишларни экспорт қилиш" msgid "Export contents" msgstr "Таркибини экспорт қилиш" -#: libraries/footer.inc.php:182 libraries/footer.inc.php:193 -#: libraries/footer.inc.php:196 +#: libraries/footer.inc.php:180 libraries/footer.inc.php:191 +#: libraries/footer.inc.php:194 msgid "Open new phpMyAdmin window" msgstr "phpMyAdmin дастурини янги ойнада очиш" @@ -3115,7 +3174,7 @@ msgstr "SQL сўрови натижаси" msgid "Generated by" msgstr "Тузилган" -#: libraries/import.lib.php:151 sql.php:519 tbl_change.php:180 +#: libraries/import.lib.php:151 sql.php:518 tbl_change.php:175 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL бўш натижа берди (яъни нольта сатр)." @@ -3173,7 +3232,7 @@ msgstr "Такрорий қаторларга эътибор бермаслик" msgid "Column names in first row" msgstr "Биринчи қаторга устун номлари" -#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:501 +#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:500 #: view_create.php:147 msgid "Column names" msgstr "Майдон номлари" @@ -3202,12 +3261,12 @@ msgid "Invalid column count in CSV input on line %d." msgstr "" "Киритилаётган CSV маълумотларнинг %d қаторидаги майдонлар сони нотўғри." -#: libraries/import/docsql.php:28 +#: libraries/import/docsql.php:27 msgid "DocSQL" msgstr "DocSQL" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 -#: server_synchronize.php:427 server_synchronize.php:870 +#: libraries/import/docsql.php:30 libraries/tbl_properties.inc.php:616 +#: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "Жадвал номи" @@ -3268,26 +3327,26 @@ msgstr "Йўқ" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:512 -#: tbl_structure.php:28 tbl_structure.php:152 tbl_structure.php:156 -#: tbl_structure.php:472 +#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:511 +#: tbl_structure.php:27 tbl_structure.php:151 tbl_structure.php:155 +#: tbl_structure.php:470 msgid "Primary" msgstr "Бирламчи" #: libraries/mult_submits.inc.php:97 libraries/tbl_properties.inc.php:115 -#: libraries/tbl_properties.inc.php:524 tbl_printview.php:324 -#: tbl_structure.php:30 tbl_structure.php:153 tbl_structure.php:157 -#: tbl_structure.php:474 tbl_structure.php:672 +#: libraries/tbl_properties.inc.php:523 tbl_printview.php:323 +#: tbl_structure.php:29 tbl_structure.php:152 tbl_structure.php:156 +#: tbl_structure.php:472 tbl_structure.php:670 msgid "Index" msgstr "Индекс" -#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:530 -#: tbl_structure.php:34 tbl_structure.php:155 tbl_structure.php:159 -#: tbl_structure.php:477 +#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:529 +#: tbl_structure.php:33 tbl_structure.php:154 tbl_structure.php:158 +#: tbl_structure.php:475 msgid "Fulltext" msgstr "Матн тўлалигича" -#: libraries/mult_submits.inc.php:434 tbl_replace.php:330 +#: libraries/mult_submits.inc.php:433 tbl_replace.php:330 msgid "No change" msgstr "Ўзгариш йўқ" @@ -3295,190 +3354,190 @@ msgstr "Ўзгариш йўқ" msgid "Charset" msgstr "Кодировка" -#: libraries/mysql_charsets.lib.php:210 libraries/mysql_charsets.lib.php:411 -#: tbl_change.php:515 +#: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 +#: tbl_change.php:510 msgid "Binary" msgstr "Иккилик" -#: libraries/mysql_charsets.lib.php:222 +#: libraries/mysql_charsets.lib.php:214 msgid "Bulgarian" msgstr "Болгарча" -#: libraries/mysql_charsets.lib.php:226 libraries/mysql_charsets.lib.php:351 +#: libraries/mysql_charsets.lib.php:218 libraries/mysql_charsets.lib.php:343 msgid "Simplified Chinese" msgstr "Соддалаштирилган хитойча" -#: libraries/mysql_charsets.lib.php:228 libraries/mysql_charsets.lib.php:371 +#: libraries/mysql_charsets.lib.php:220 libraries/mysql_charsets.lib.php:363 msgid "Traditional Chinese" msgstr "Анъанавий хитойча" -#: libraries/mysql_charsets.lib.php:232 libraries/mysql_charsets.lib.php:418 +#: libraries/mysql_charsets.lib.php:224 libraries/mysql_charsets.lib.php:410 msgid "case-insensitive" msgstr "ҳарфлар катта-кичиклиги фарқланмайди" -#: libraries/mysql_charsets.lib.php:235 libraries/mysql_charsets.lib.php:420 +#: libraries/mysql_charsets.lib.php:227 libraries/mysql_charsets.lib.php:412 msgid "case-sensitive" msgstr "ҳарфлар катта-кичиклиги фарқланади" -#: libraries/mysql_charsets.lib.php:238 +#: libraries/mysql_charsets.lib.php:230 msgid "Croatian" msgstr "Хорватча" -#: libraries/mysql_charsets.lib.php:241 +#: libraries/mysql_charsets.lib.php:233 msgid "Czech" msgstr "Чехча" -#: libraries/mysql_charsets.lib.php:244 +#: libraries/mysql_charsets.lib.php:236 msgid "Danish" msgstr "Данияча" -#: libraries/mysql_charsets.lib.php:247 +#: libraries/mysql_charsets.lib.php:239 msgid "English" msgstr "Инглизча" -#: libraries/mysql_charsets.lib.php:250 +#: libraries/mysql_charsets.lib.php:242 msgid "Esperanto" msgstr "Эсперанто" -#: libraries/mysql_charsets.lib.php:253 +#: libraries/mysql_charsets.lib.php:245 msgid "Estonian" msgstr "Эстонча" -#: libraries/mysql_charsets.lib.php:256 libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:248 libraries/mysql_charsets.lib.php:251 msgid "German" msgstr "Немисча" -#: libraries/mysql_charsets.lib.php:256 +#: libraries/mysql_charsets.lib.php:248 msgid "dictionary" msgstr "луғат" -#: libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:251 msgid "phone book" msgstr "телефонлар китоби" -#: libraries/mysql_charsets.lib.php:262 +#: libraries/mysql_charsets.lib.php:254 msgid "Hungarian" msgstr "Венгерча" -#: libraries/mysql_charsets.lib.php:265 +#: libraries/mysql_charsets.lib.php:257 msgid "Icelandic" msgstr "Исландча" -#: libraries/mysql_charsets.lib.php:268 libraries/mysql_charsets.lib.php:358 +#: libraries/mysql_charsets.lib.php:260 libraries/mysql_charsets.lib.php:350 msgid "Japanese" msgstr "Японча" -#: libraries/mysql_charsets.lib.php:271 +#: libraries/mysql_charsets.lib.php:263 msgid "Latvian" msgstr "Латишча" -#: libraries/mysql_charsets.lib.php:274 +#: libraries/mysql_charsets.lib.php:266 msgid "Lithuanian" msgstr "Литвача" -#: libraries/mysql_charsets.lib.php:277 libraries/mysql_charsets.lib.php:380 +#: libraries/mysql_charsets.lib.php:269 libraries/mysql_charsets.lib.php:372 msgid "Korean" msgstr "Корейсча" -#: libraries/mysql_charsets.lib.php:280 +#: libraries/mysql_charsets.lib.php:272 msgid "Persian" msgstr "Форсча" -#: libraries/mysql_charsets.lib.php:283 +#: libraries/mysql_charsets.lib.php:275 msgid "Polish" msgstr "Полякча" -#: libraries/mysql_charsets.lib.php:286 libraries/mysql_charsets.lib.php:334 +#: libraries/mysql_charsets.lib.php:278 libraries/mysql_charsets.lib.php:326 msgid "West European" msgstr "Ғарбий-Европача" -#: libraries/mysql_charsets.lib.php:289 +#: libraries/mysql_charsets.lib.php:281 msgid "Romanian" msgstr "Руминча" -#: libraries/mysql_charsets.lib.php:292 +#: libraries/mysql_charsets.lib.php:284 msgid "Slovak" msgstr "Словакча" -#: libraries/mysql_charsets.lib.php:295 +#: libraries/mysql_charsets.lib.php:287 msgid "Slovenian" msgstr "Словенча" -#: libraries/mysql_charsets.lib.php:298 +#: libraries/mysql_charsets.lib.php:290 msgid "Spanish" msgstr "Испанча" -#: libraries/mysql_charsets.lib.php:301 +#: libraries/mysql_charsets.lib.php:293 msgid "Traditional Spanish" msgstr "Анъанавий испанча" -#: libraries/mysql_charsets.lib.php:304 libraries/mysql_charsets.lib.php:401 +#: libraries/mysql_charsets.lib.php:296 libraries/mysql_charsets.lib.php:393 msgid "Swedish" msgstr "Шведча" -#: libraries/mysql_charsets.lib.php:307 libraries/mysql_charsets.lib.php:404 +#: libraries/mysql_charsets.lib.php:299 libraries/mysql_charsets.lib.php:396 msgid "Thai" msgstr "Тайча" -#: libraries/mysql_charsets.lib.php:310 libraries/mysql_charsets.lib.php:398 +#: libraries/mysql_charsets.lib.php:302 libraries/mysql_charsets.lib.php:390 msgid "Turkish" msgstr "Туркча" -#: libraries/mysql_charsets.lib.php:313 libraries/mysql_charsets.lib.php:395 +#: libraries/mysql_charsets.lib.php:305 libraries/mysql_charsets.lib.php:387 msgid "Ukrainian" msgstr "Украинча" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 msgid "Unicode" msgstr "Юникод" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 -#: libraries/mysql_charsets.lib.php:334 libraries/mysql_charsets.lib.php:341 -#: libraries/mysql_charsets.lib.php:363 libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 +#: libraries/mysql_charsets.lib.php:326 libraries/mysql_charsets.lib.php:333 +#: libraries/mysql_charsets.lib.php:355 libraries/mysql_charsets.lib.php:366 msgid "multilingual" msgstr "кўп тилдаги" -#: libraries/mysql_charsets.lib.php:341 +#: libraries/mysql_charsets.lib.php:333 msgid "Central European" msgstr "Марказий Европача" -#: libraries/mysql_charsets.lib.php:346 +#: libraries/mysql_charsets.lib.php:338 msgid "Russian" msgstr "Русча" -#: libraries/mysql_charsets.lib.php:363 +#: libraries/mysql_charsets.lib.php:355 msgid "Baltic" msgstr "Балтикача" -#: libraries/mysql_charsets.lib.php:368 +#: libraries/mysql_charsets.lib.php:360 msgid "Armenian" msgstr "Арманча" -#: libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:366 msgid "Cyrillic" msgstr "Кириллча" -#: libraries/mysql_charsets.lib.php:377 +#: libraries/mysql_charsets.lib.php:369 msgid "Arabic" msgstr "Арабча" -#: libraries/mysql_charsets.lib.php:383 +#: libraries/mysql_charsets.lib.php:375 msgid "Hebrew" msgstr "Яҳудийча" -#: libraries/mysql_charsets.lib.php:386 +#: libraries/mysql_charsets.lib.php:378 msgid "Georgian" msgstr "Грузинча" -#: libraries/mysql_charsets.lib.php:389 +#: libraries/mysql_charsets.lib.php:381 msgid "Greek" msgstr "Грекча" -#: libraries/mysql_charsets.lib.php:392 +#: libraries/mysql_charsets.lib.php:384 msgid "Czech-Slovak" msgstr "Чехословакча" -#: libraries/mysql_charsets.lib.php:407 libraries/mysql_charsets.lib.php:414 +#: libraries/mysql_charsets.lib.php:399 libraries/mysql_charsets.lib.php:406 msgid "unknown" msgstr "номаълум" @@ -3504,60 +3563,60 @@ msgstr "Сўровлар ойнаси" msgid "This format has no options" msgstr "Ушбу формат учун созланадиган параметр мавжуд эмас" -#: libraries/relation.lib.php:82 +#: libraries/relation.lib.php:77 msgid "not OK" msgstr "Тайёр эмас" -#: libraries/relation.lib.php:86 pmd_general.php:339 +#: libraries/relation.lib.php:81 pmd_general.php:339 msgid "OK" msgstr "OK" -#: libraries/relation.lib.php:87 +#: libraries/relation.lib.php:82 msgid "Enabled" msgstr "Фаоллаштирилган" -#: libraries/relation.lib.php:110 +#: libraries/relation.lib.php:105 msgid "Display Features" msgstr "Имкониятларни кўрсатиш" -#: libraries/relation.lib.php:116 +#: libraries/relation.lib.php:111 msgid "Creation of PDFs" msgstr "PDF-схема тузиш" -#: libraries/relation.lib.php:120 +#: libraries/relation.lib.php:115 msgid "Displaying Column Comments" msgstr "Майдон изоҳларини кўрсатиш" -#: libraries/relation.lib.php:125 +#: libraries/relation.lib.php:120 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "\"column_comments\" жадвалини янгилаш зарур. Батафсил маълумот учун " "документацияга қаранг." -#: libraries/relation.lib.php:130 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 msgid "Bookmarked SQL query" msgstr "Хатчўп қўйилган SQL сўрови" -#: libraries/relation.lib.php:134 querywindow.php:99 querywindow.php:207 +#: libraries/relation.lib.php:129 querywindow.php:98 querywindow.php:205 msgid "SQL history" msgstr "SQL-сўровлар тарихи" -#: libraries/relation.lib.php:146 +#: libraries/relation.lib.php:141 msgid "Quick steps to setup advanced features:" msgstr "Муфассал танловларни тез созлаш учун қадамларs:" -#: libraries/relation.lib.php:148 +#: libraries/relation.lib.php:143 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" "Керакли жадвалларни script/create_tables.sql код ёрдамида тузиш." -#: libraries/relation.lib.php:149 +#: libraries/relation.lib.php:144 msgid "Create a pma user and give access to these tables." msgstr "phpMyAdmin фойдаланувчиси қўшиш ва ушбу жадвалларга рухсат бериш." -#: libraries/relation.lib.php:150 +#: libraries/relation.lib.php:145 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." @@ -3565,13 +3624,13 @@ msgstr "" "(config.inc.php) файлидаги муфассал танловларни фаоллаштириш, " "масалан, config.sample.inc.php дан бошлаб." -#: libraries/relation.lib.php:151 +#: libraries/relation.lib.php:146 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" "Янгиланган конфигурация файли ишга тушиши учун, phpMyAdmin дастуридан чиқиб, " "қайта киринг." -#: libraries/relation.lib.php:1158 +#: libraries/relation.lib.php:1153 msgid "no description" msgstr "тавсиф мавжуд эмас" @@ -3579,7 +3638,7 @@ msgstr "тавсиф мавжуд эмас" msgid "Slave configuration" msgstr "Тобе сервер конфигурацияси" -#: libraries/replication_gui.lib.php:53 server_replication.php:346 +#: libraries/replication_gui.lib.php:53 server_replication.php:345 msgid "Change or reconfigure master server" msgstr "Бош серверни ўзгартириш ёки қайта конфигурация қилиш" @@ -3594,16 +3653,12 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:711 -#: server_privileges.php:714 server_privileges.php:721 -#: server_synchronize.php:1170 +#: libraries/replication_gui.lib.php:261 server_privileges.php:710 +#: server_privileges.php:713 server_privileges.php:720 +#: server_synchronize.php:1169 msgid "User name" msgstr "Фойдаланувчи номи" -#: libraries/replication_gui.lib.php:69 server_synchronize.php:1162 -msgid "Port" -msgstr "Порт" - #: libraries/replication_gui.lib.php:105 msgid "Master status" msgstr "Бош сервер статуси" @@ -3618,8 +3673,8 @@ msgid "Variable" msgstr "Ўзгарувчи" #: libraries/replication_gui.lib.php:117 server_status.php:737 -#: tbl_change.php:322 tbl_printview.php:368 tbl_select.php:137 -#: tbl_structure.php:728 +#: tbl_change.php:317 tbl_printview.php:367 tbl_select.php:136 +#: tbl_structure.php:726 msgid "Value" msgstr "Қиймати" @@ -3635,38 +3690,38 @@ msgstr "" "Рўйхатда фақат \"--report-host=host_name\" танлови ёрдамда юкланган тобе " "серверлар кўрсатилмоқда." -#: libraries/replication_gui.lib.php:242 server_replication.php:193 +#: libraries/replication_gui.lib.php:242 server_replication.php:192 msgid "Add slave replication user" msgstr "Тобе репликация фойдаланувчисини қўшиш" -#: libraries/replication_gui.lib.php:256 server_privileges.php:716 +#: libraries/replication_gui.lib.php:256 server_privileges.php:715 msgid "Any user" msgstr "Ҳар қайси фойдаланувчи" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1920 server_privileges.php:1950 +#: libraries/replication_gui.lib.php:348 server_privileges.php:716 +#: server_privileges.php:783 server_privileges.php:807 +#: server_privileges.php:1924 server_privileges.php:1954 msgid "Use text field" msgstr "Матнмайдонини ишлатиш" -#: libraries/replication_gui.lib.php:304 server_privileges.php:764 +#: libraries/replication_gui.lib.php:304 server_privileges.php:763 msgid "Any host" msgstr "Ҳар қайси хост" -#: libraries/replication_gui.lib.php:308 server_privileges.php:768 +#: libraries/replication_gui.lib.php:308 server_privileges.php:767 msgid "Local" msgstr "Локал" -#: libraries/replication_gui.lib.php:314 server_privileges.php:773 +#: libraries/replication_gui.lib.php:314 server_privileges.php:772 msgid "This Host" msgstr "Ушбу хост" -#: libraries/replication_gui.lib.php:320 server_privileges.php:779 +#: libraries/replication_gui.lib.php:320 server_privileges.php:778 msgid "Use Host Table" msgstr "Хостлар жадвалидан фойдаланиш" -#: libraries/replication_gui.lib.php:333 server_privileges.php:792 +#: libraries/replication_gui.lib.php:333 server_privileges.php:791 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3694,8 +3749,8 @@ msgstr "Номаълум тил: %1$s." msgid "Servers" msgstr "Серверлар" -#: libraries/server_links.inc.php:52 server_engines.php:111 -#: server_engines.php:115 server_status.php:414 test/theme.php:104 +#: libraries/server_links.inc.php:52 server_engines.php:125 +#: server_engines.php:129 server_status.php:414 test/theme.php:104 msgid "Variables" msgstr "Ўзгарувчилар" @@ -3716,12 +3771,12 @@ msgstr "Иккилик журнал" msgid "Processes" msgstr "Жараёнлар" -#: libraries/server_links.inc.php:91 server_synchronize.php:1091 -#: server_synchronize.php:1099 +#: libraries/server_links.inc.php:91 server_synchronize.php:1090 +#: server_synchronize.php:1098 msgid "Synchronize" msgstr "Синхронизация қилиш" -#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1109 +#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1108 msgid "Source database" msgstr "Манба база" @@ -3739,7 +3794,7 @@ msgstr "Масофадаги сервер" msgid "Difference" msgstr "Фарқ" -#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1111 +#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1110 msgid "Target database" msgstr "Нишон база" @@ -3759,11 +3814,11 @@ msgstr "\"%s\" маълумотлар базасида SQL-сўров(лар)н msgid "Columns" msgstr "Майдон номлари" -#: libraries/sql_query_form.lib.php:342 sql.php:664 sql.php:665 sql.php:682 +#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "Ушбу SQL сўровига хатчўп тузиш" -#: libraries/sql_query_form.lib.php:349 sql.php:676 +#: libraries/sql_query_form.lib.php:349 sql.php:669 msgid "Let every user access this bookmark" msgstr "Барча фойдаланувчиларга рухсат бериш" @@ -3858,12 +3913,12 @@ msgstr "" "SQL синтаксисини текшириб бўлмади. PHP учун зарур кенгайтмалар " "ўрнатилганлигини текширинг, батафсил маълумот учун %sдокументацияга%s қаранг." -#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:139 -#: libraries/tbl_links.inc.php:140 +#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 +#: libraries/tbl_links.inc.php:139 msgid "Table seems to be empty!" msgstr "Жадвал - бўш!" -#: libraries/tbl_links.inc.php:148 +#: libraries/tbl_links.inc.php:147 #, php-format msgid "Tracking of %s.%s is activated." msgstr "\"%s.%s\" жадвалини кузатиш фаоллаштирилди." @@ -3898,12 +3953,12 @@ msgstr "" "\"Андозавий\" майдонлар қийматларида тескари эгри чизиқ ва қўштирноқларни " "ишлатманг." -#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1263 -#: pdf_schema.php:1284 tbl_printview.php:142 tbl_structure.php:179 +#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1262 +#: pdf_schema.php:1283 tbl_printview.php:141 tbl_structure.php:178 msgid "Attributes" msgstr "Атрибутлар" -#: libraries/tbl_properties.inc.php:136 +#: libraries/tbl_properties.inc.php:135 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -3912,11 +3967,11 @@ msgstr "" "Мавжуд MIME турлари ва ўгиришлар параметларини кўриш учун қуйидаги " "боғланишдан фойдаланинг: - \"%s\"ўзгариришлар тавсифи\"%s\"" -#: libraries/tbl_properties.inc.php:144 +#: libraries/tbl_properties.inc.php:143 msgid "Transformation options" msgstr "Ўгиришлар параметрлари" -#: libraries/tbl_properties.inc.php:145 +#: libraries/tbl_properties.inc.php:144 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
                            If you ever need to put a backslash (\"\\\") or a single " @@ -3928,18 +3983,18 @@ msgstr "" "белгилари олдидан тескари эгри чизиқ бўлиши керак, масалан: \"\\\\xyz\" ёки " "\"a\\\"b\"." -#: libraries/tbl_properties.inc.php:392 +#: libraries/tbl_properties.inc.php:391 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "Йўқ" -#: libraries/tbl_properties.inc.php:393 +#: libraries/tbl_properties.inc.php:392 msgid "As defined:" msgstr "Қоидага кўра:" -#: libraries/tbl_properties.inc.php:579 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:578 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
                            Please ask the " @@ -3948,29 +4003,29 @@ msgstr "" "Ҳозирги ватқда тавсиф мавжуд эмас.
                            Ишлатилаётган \"%s\" ўгиришлар " "намойиши функцияларининг иши яқин орада тавсифланади. " -#: libraries/tbl_properties.inc.php:725 server_engines.php:57 -#: tbl_operations.php:354 +#: libraries/tbl_properties.inc.php:724 server_engines.php:56 +#: tbl_operations.php:352 msgid "Storage Engine" msgstr "Жадвал тури" -#: libraries/tbl_properties.inc.php:754 +#: libraries/tbl_properties.inc.php:753 msgid "PARTITION definition" msgstr "Бўлакларни (PARTITIONS) белгилаш" -#: libraries/tbl_properties.inc.php:775 pdf_pages.php:502 +#: libraries/tbl_properties.inc.php:774 pdf_pages.php:501 #: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214 -#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1124 tbl_indexes.php:247 -#: tbl_relation.php:565 +#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1022 tbl_indexes.php:246 +#: tbl_relation.php:563 msgid "Save" msgstr "Сақлаш" -#: libraries/tbl_properties.inc.php:779 tbl_structure.php:541 +#: libraries/tbl_properties.inc.php:778 tbl_structure.php:539 #, fuzzy, php-format #| msgid "Add column(s)" msgid "Add %s column(s)" msgstr "Устун(лар) қўшиш" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:535 +#: libraries/tbl_properties.inc.php:782 tbl_structure.php:533 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -4178,8 +4233,8 @@ msgstr "Интерфейс" msgid "Custom color" msgstr "Рангни танлаш" -#: main.php:162 pdf_pages.php:362 setup/lib/FormDisplay.tpl.php:216 -#: tbl_change.php:1173 +#: main.php:162 pdf_pages.php:361 setup/lib/FormDisplay.tpl.php:216 +#: tbl_change.php:1071 msgid "Reset" msgstr "Тозалаш" @@ -4187,8 +4242,8 @@ msgstr "Тозалаш" msgid "Protocol version" msgstr "Протокол версияси" -#: main.php:188 server_privileges.php:1381 server_privileges.php:1528 -#: server_privileges.php:1642 server_privileges.php:2060 +#: main.php:188 server_privileges.php:1385 server_privileges.php:1532 +#: server_privileges.php:1646 server_privileges.php:2064 #: server_processlist.php:53 msgid "User" msgstr "Фойдаланувчи" @@ -4283,7 +4338,16 @@ msgstr "" "каталоги ҳалиям мавжуд. phpMyAdmin муваффақиятли ўрнатилгандан кейин, уни " "ўчириш тавсия этилади." -#: main.php:330 +#: main.php:314 +#, php-format +msgid "" +"The additional features for working with linked tables have been " +"deactivated. To find out why click %shere%s." +msgstr "" +"Алоқадор жадваллар билан ишлаш учун қўшимча имкониятлар мавжуд эмас. " +"Сабабларини аниқлаш учун %sбу ерга%s босинг." + +#: main.php:329 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " @@ -4293,7 +4357,7 @@ msgstr "" "баъзи функциялари ишламайди. Масалан, навигация ойнаси автоматик тарзда " "янгиланиб турмайди." -#: main.php:345 +#: main.php:344 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -4302,7 +4366,7 @@ msgstr "" "MySQL-клиент версияси (\"%s\") ўрнатилган MySQL-сервер версияси(\"%s\")дан " "фарқ қилмоқда. Бу ҳолат нохуш оқибатларга олиб келиши мумкин." -#: main.php:357 +#: main.php:356 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -4315,68 +4379,68 @@ msgstr "" msgid "Reload navigation frame" msgstr "Навигация ойнасини қайта юклаш" -#: navigation.php:204 server_databases.php:370 server_synchronize.php:1190 +#: navigation.php:203 server_databases.php:368 server_synchronize.php:1189 msgid "No databases" msgstr "Маълумотлар базаси мавжуд эмас" -#: navigation.php:298 +#: navigation.php:297 msgid "Filter" msgstr "Фильтр" -#: navigation.php:299 setup/frames/index.inc.php:218 +#: navigation.php:298 setup/frames/index.inc.php:218 #: setup/lib/messages.inc.php:41 msgid "Clear" msgstr "Тозалаш" -#: navigation.php:330 navigation.php:331 +#: navigation.php:329 navigation.php:330 #, fuzzy #| msgid "Create table" msgctxt "short form" msgid "Create table" msgstr "Жадвал тузиш" -#: navigation.php:333 navigation.php:495 +#: navigation.php:332 navigation.php:494 msgid "Please select a database" msgstr "Маълумотлар базасини танланг" -#: pdf_pages.php:40 pdf_pages.php:46 pdf_pages.php:52 pdf_pages.php:57 +#: pdf_pages.php:39 pdf_pages.php:45 pdf_pages.php:51 pdf_pages.php:56 #, php-format msgid "%s table not found or not set in %s" msgstr " \"%s\" жадвали топилмади ёки \"%s\"да ўрнатилмаган" -#: pdf_pages.php:265 +#: pdf_pages.php:264 msgid "Please choose a page to edit" msgstr "Таҳрирлаш лозим бўлган саҳифани танлаш" -#: pdf_pages.php:303 pmd_pdf.php:113 +#: pdf_pages.php:302 pmd_pdf.php:111 msgid "Create a page" msgstr "Янги саҳифа тузиш" -#: pdf_pages.php:309 +#: pdf_pages.php:308 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Саҳифа рақами: " -#: pdf_pages.php:313 +#: pdf_pages.php:312 #, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "Автоматик раскладка" -#: pdf_pages.php:315 +#: pdf_pages.php:314 msgid "Internal relations" msgstr "Ички алоқалар" -#: pdf_pages.php:338 +#: pdf_pages.php:337 msgid "Select Tables" msgstr "Жадвалларни танланг" -#: pdf_pages.php:361 +#: pdf_pages.php:360 msgid "Toggle scratchboard" msgstr "Кўрсатиш" -#: pdf_pages.php:524 +#: pdf_pages.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -4384,37 +4448,37 @@ msgstr "" "Ушбу саҳифада мавжуд бўлмаган жадваллар учун мурожаатлар мавжуд. Ушбу " "мурожаатларни ўчиришни хоҳлайсизми?" -#: pdf_schema.php:635 +#: pdf_schema.php:634 #, fuzzy, php-format #| msgid "The \"%s\" table doesn't exist!" msgid "The %s table doesn't exist!" msgstr "\"%s\" жадвали мавжуд эмас!" -#: pdf_schema.php:671 +#: pdf_schema.php:670 #, php-format msgid "Please configure the coordinates for table %s" msgstr " \"%s\" жадвалининг координаталарини ўзгартириш" -#: pdf_schema.php:994 +#: pdf_schema.php:993 #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" msgstr "\"%s\" маълумотлар базаси тузилиши - \"%s\" саҳифа" -#: pdf_schema.php:1012 +#: pdf_schema.php:1011 msgid "No tables" msgstr "Жадвал мавжуд эмас" -#: pdf_schema.php:1031 pdf_schema.php:1140 +#: pdf_schema.php:1030 pdf_schema.php:1139 msgid "Relational schema" msgstr "Алоқалар схемаси" -#: pdf_schema.php:1115 +#: pdf_schema.php:1114 msgid "Table of contents" msgstr "Мундарижа" -#: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:145 -#: tbl_structure.php:182 tbl_tracking.php:277 +#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 +#: tbl_structure.php:181 tbl_tracking.php:272 msgid "Extra" msgstr "Қўшимча" @@ -4426,7 +4490,7 @@ msgstr "Чап менюни кўрсатиш/яшириш" msgid "Save position" msgstr "Жадваллар жойлашишини сақлаш" -#: pmd_general.php:70 server_synchronize.php:428 server_synchronize.php:871 +#: pmd_general.php:70 server_synchronize.php:427 server_synchronize.php:870 msgid "Create table" msgstr "Жадвал тузиш" @@ -4504,31 +4568,31 @@ msgstr "" "Кўрсатиладиган майдонлар пушти рангда берилади. Майдонни кўрсатиладиган " "қилиш учун \"Кўрсатиладиган майдонни танлаш\" бўлимидан мос майдонни танланг." -#: pmd_pdf.php:62 +#: pmd_pdf.php:60 msgid "Page has been created" msgstr "Саҳифа тузилди" -#: pmd_pdf.php:64 +#: pmd_pdf.php:62 msgid "Page creation failed" msgstr "Саҳифа тузиб бўлмади" -#: pmd_pdf.php:84 +#: pmd_pdf.php:82 msgid "Export/Import to scale" msgstr "Масштаб" -#: pmd_pdf.php:88 +#: pmd_pdf.php:86 msgid "recommended" msgstr "тавсия этилган" -#: pmd_pdf.php:93 +#: pmd_pdf.php:91 msgid "to/from page" msgstr "Саҳифа" -#: querywindow.php:94 +#: querywindow.php:93 msgid "Import files" msgstr "Файлларни импорт қилиш" -#: querywindow.php:105 +#: querywindow.php:104 msgid "All" msgstr "Барча" @@ -4574,69 +4638,69 @@ msgstr "Маълумот" msgid "Character Sets and Collations" msgstr "Кодировкалар ва таққослашлар" -#: server_databases.php:51 +#: server_databases.php:49 msgid "No databases selected." msgstr "Биронта ҳам маълумотлар базаси танланмаган." -#: server_databases.php:62 +#: server_databases.php:60 #, php-format msgid "%s databases have been dropped successfully." msgstr "\"%s\" маълумотлар базаси муваффақиятли ўчирилди." -#: server_databases.php:87 +#: server_databases.php:85 msgid "Databases statistics" msgstr "Маълумотлар базаси статискаси" -#: server_databases.php:116 server_status.php:370 +#: server_databases.php:114 server_status.php:370 #: setup/lib/messages.inc.php:114 msgid "Tables" msgstr "Жадваллар" -#: server_databases.php:194 server_replication.php:180 -#: server_replication.php:208 +#: server_databases.php:192 server_replication.php:179 +#: server_replication.php:207 msgid "Master replication" msgstr "Бош сервер репликацияси" -#: server_databases.php:196 server_replication.php:247 +#: server_databases.php:194 server_replication.php:246 msgid "Slave replication" msgstr "Тобе сервер репликацияси" -#: server_databases.php:229 +#: server_databases.php:227 #, fuzzy #| msgid "Go to database" msgid "Jump to database" msgstr "Ушбу базага ўтиш" -#: server_databases.php:266 +#: server_databases.php:264 #, fuzzy #| msgid "Master replication" msgid "Not replicated" msgstr "Бош сервер репликацияси" -#: server_databases.php:272 +#: server_databases.php:270 #, fuzzy #| msgid "Replication" msgid "Replicated" msgstr "Репликация (захира нусха кўчириш)" -#: server_databases.php:288 +#: server_databases.php:286 #, php-format msgid "Check privileges for database "%s"." msgstr "\"%s\" маълумотлар базасининг привилегияларни текшириш" -#: server_databases.php:292 server_databases.php:293 +#: server_databases.php:290 server_databases.php:291 msgid "Check Privileges" msgstr "Привилегияларни текшириш" -#: server_databases.php:357 server_databases.php:358 +#: server_databases.php:355 server_databases.php:356 msgid "Enable Statistics" msgstr "Статискани ёқиш" -#: server_databases.php:361 server_databases.php:362 +#: server_databases.php:359 server_databases.php:360 msgid "Disable Statistics" msgstr "Статискани ўчириш" -#: server_databases.php:365 +#: server_databases.php:363 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -4644,122 +4708,122 @@ msgstr "" "ИЗОҲ: Статискани ёқиш веб-сервер ва MySQL сервери ўртасида катта траффикка " "сабаб бўлиши мумкин." -#: server_engines.php:48 +#: server_engines.php:47 msgid "Storage Engines" msgstr "Жадвал турлари" -#: server_export.php:20 +#: server_export.php:18 msgid "View dump (schema) of databases" msgstr "Маълумотлар базалари дампини (схемасини) намойиш этиш" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:23 server_privileges.php:265 msgid "Includes all privileges except GRANT." msgstr "GRANT дан ташқари барча привилегияларни ўз ичига олади" -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:24 server_privileges.php:191 +#: server_privileges.php:514 msgid "Allows altering the structure of existing tables." msgstr "Мавжуд жадвалларнинг тузилишини ўзгартиришга рухсат беради" -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:25 server_privileges.php:207 +#: server_privileges.php:520 msgid "Allows altering and dropping stored routines." msgstr "Сақланадиган муолажаларни ўзгартириш ва ўчиришга рухсат беради" -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:26 server_privileges.php:183 +#: server_privileges.php:513 msgid "Allows creating new databases and tables." msgstr "Янги маълумотлар базалари ва жадваллар тузишга рухсат беради" -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:27 server_privileges.php:206 +#: server_privileges.php:519 msgid "Allows creating stored routines." msgstr "Сақланадиган муолажалар тузишга рухсат беради" -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:513 msgid "Allows creating new tables." msgstr "Янги жадваллар тузишга рухсат беради" -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:29 server_privileges.php:194 +#: server_privileges.php:517 msgid "Allows creating temporary tables." msgstr "Вақтинчалик жадваллар тузишга рухсат беради" -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:30 server_privileges.php:208 +#: server_privileges.php:553 msgid "Allows creating, dropping and renaming user accounts." msgstr "Фойдаланувчилар ҳисобини қўшиш, ўчириш ва ўзгартиришга рухсат беради" -#: server_privileges.php:32 server_privileges.php:199 -#: server_privileges.php:203 server_privileges.php:526 -#: server_privileges.php:530 +#: server_privileges.php:31 server_privileges.php:198 +#: server_privileges.php:202 server_privileges.php:525 +#: server_privileges.php:529 msgid "Allows creating new views." msgstr "Янги намойишлар тузиш(CREATE VIEW)га рухсат беради" -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:32 server_privileges.php:182 +#: server_privileges.php:505 msgid "Allows deleting data." msgstr "Маълумотларни ўчиришга рухсат беради" -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:33 server_privileges.php:184 +#: server_privileges.php:516 msgid "Allows dropping databases and tables." msgstr "Маълумотлар базаларини ва жадвалларни ўчиришга рухсат беради" -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:34 server_privileges.php:516 msgid "Allows dropping tables." msgstr "Жадвалларни ўчиришга рухъсат беради" -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:35 server_privileges.php:199 +#: server_privileges.php:533 msgid "Allows to set up events for the event scheduler" msgstr "Кечиктирилган ҳодисаларни созлашга рухсат беради" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:36 server_privileges.php:209 +#: server_privileges.php:521 msgid "Allows executing stored routines." msgstr "Сақланадиган муолажаларни бажаришга рухсат беради" -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:37 server_privileges.php:188 +#: server_privileges.php:508 msgid "Allows importing data from and exporting data into files." msgstr "Маълумотларни файлдан импорт ва файлга экспорт қилишга рухсат беради" -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:38 server_privileges.php:539 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Фойдаланувчиларни қўшиш ва привилегиялар жадвалини қайта юкламасдан " "привилегиялар қўшишга рухсат беради" -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:515 msgid "Allows creating and dropping indexes." msgstr "Индекслар қўшиш ва уларни ўчиришга рухсат беради" -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:40 server_privileges.php:180 +#: server_privileges.php:441 server_privileges.php:503 msgid "Allows inserting and replacing data." msgstr "Маълумот қўйиш ва ўзгартиришга рухсат беради" -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:41 server_privileges.php:195 +#: server_privileges.php:548 msgid "Allows locking tables for the current thread." msgstr "Жорий оқим учун жадвални блокировку қилишга рухсат беради" -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:42 server_privileges.php:645 +#: server_privileges.php:647 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Фойдаланувчи бир соат давомида ўрнатиши мумкин бўлган янги уланишлар сони" -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:43 server_privileges.php:633 +#: server_privileges.php:635 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Фойдаланувчи бир соат давомида юбориши мумкин бўлган сўровлар сони" -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:44 server_privileges.php:639 +#: server_privileges.php:641 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -4767,64 +4831,64 @@ msgstr "" "Фойдаланувчи бир соат давомида бажариши мумкин бўлган бирон-бир жадвал ёки " "маълумотлар базасини ўзгартирадиган буйруқлар сони" -#: server_privileges.php:46 server_privileges.php:652 -#: server_privileges.php:654 +#: server_privileges.php:45 server_privileges.php:651 +#: server_privileges.php:653 msgid "Limits the number of simultaneous connections the user may have." msgstr "" "Бир фойдаланувчи томонидан бир вақтнинг ўзида ўрнатиши мумкин бўлган " "уланишлар сони" -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:46 server_privileges.php:187 +#: server_privileges.php:543 msgid "Allows viewing processes of all users" msgstr "Барча фойдаланувчиларнинг жараёнларини кўришга рухсат беради" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:47 server_privileges.php:189 +#: server_privileges.php:447 server_privileges.php:549 msgid "Has no effect in this MySQL version." msgstr "MySQL-сервернинг ушбу версияда бундай хусусият мавжуд эмас!" -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:48 server_privileges.php:185 +#: server_privileges.php:544 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Сервер созланишларини қайта юклашга ва унинг кешларини тозалашга рухсат " "беради" -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:197 +#: server_privileges.php:551 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Бош ва тобе серверларнинг жойлашиши ҳақидаги маълумотни талаб қилишга рухсат " "беради" -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:50 server_privileges.php:196 +#: server_privileges.php:552 msgid "Needed for the replication slaves." msgstr "Репликация (захира нусха кўчириш) вақтида тобе серверлар учун керак" -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:51 server_privileges.php:179 +#: server_privileges.php:438 server_privileges.php:502 msgid "Allows reading data." msgstr "Маълумотларни чақиришга рухсат беради" -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:52 server_privileges.php:192 +#: server_privileges.php:546 msgid "Gives access to the complete list of databases." msgstr "Маълумотлар базаларининг тўлиқ рўйхатига рухсат беради" -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:53 server_privileges.php:203 +#: server_privileges.php:205 server_privileges.php:518 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Намойиш тузадиган сўров(SHOW CREATE VIEW)ни бажаришга рухсат беради" -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:54 server_privileges.php:186 +#: server_privileges.php:545 msgid "Allows shutting down the server." msgstr "Сервер ишини якунлашга рухсат беради" -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:55 server_privileges.php:193 +#: server_privileges.php:542 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -4834,162 +4898,162 @@ msgstr "" "(Кўпгина административ вазифаларни бажариш учун керак, масалан, глобал " "ўзгарувчилар ўрнатиш ёки бошқа фойдаланувчи жараёнини ўчириш)" -#: server_privileges.php:57 server_privileges.php:201 -#: server_privileges.php:535 +#: server_privileges.php:56 server_privileges.php:200 +#: server_privileges.php:534 msgid "Allows creating and dropping triggers" msgstr "" "Триггерлар (маълум шартлар бажарилганда автоматик ишга тушадиган жараёнлар) " "тузиш ва уларни ўчиришга рухсат беради" -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:57 server_privileges.php:181 +#: server_privileges.php:444 server_privileges.php:504 msgid "Allows changing data." msgstr "Маълумотларни ўзгартиришга рухсат беради" -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:58 server_privileges.php:259 msgid "No privileges." msgstr "Привилегиялар йўқ" -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:301 server_privileges.php:302 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Йўқ" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1710 server_privileges.php:1716 +#: server_privileges.php:430 server_privileges.php:565 +#: server_privileges.php:1714 server_privileges.php:1720 msgid "Table-specific privileges" msgstr "Жадвал даражасижаги привилегиялар" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1532 +#: server_privileges.php:431 server_privileges.php:573 +#: server_privileges.php:1536 msgid " Note: MySQL privilege names are expressed in English " msgstr "ИЗОҲ: MySQL привилегиялари турлари инглиз тилида кўрсатилади." -#: server_privileges.php:563 server_privileges.php:1531 +#: server_privileges.php:562 server_privileges.php:1535 msgid "Global privileges" msgstr "Глобал привилегиялар" -#: server_privileges.php:565 server_privileges.php:1710 +#: server_privileges.php:564 server_privileges.php:1714 msgid "Database-specific privileges" msgstr "Маълумотлар базаси привилегиялари" -#: server_privileges.php:610 +#: server_privileges.php:609 msgid "Administration" msgstr "Администрация" -#: server_privileges.php:630 +#: server_privileges.php:629 msgid "Resource limits" msgstr "Ресурслардан фойдаланишни чеклаш" -#: server_privileges.php:631 +#: server_privileges.php:630 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" "ИЗОҲ: параметр қийматларини 0 (нол) деб белгилаш мавжуд чеклашларни бекор " "қилади." -#: server_privileges.php:708 +#: server_privileges.php:707 msgid "Login Information" msgstr "Фойдаланувчи ҳисоби ҳақида маълумот" -#: server_privileges.php:802 +#: server_privileges.php:801 msgid "Do not change the password" msgstr "Паролни ўзгартирмаслик" -#: server_privileges.php:835 server_privileges.php:2197 +#: server_privileges.php:834 server_privileges.php:2201 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Биронта ҳам фойдаланувчи топилмади." -#: server_privileges.php:879 +#: server_privileges.php:878 #, php-format msgid "The user %s already exists!" msgstr " \"%s\" номли фойдаланувчи мавжуд!" -#: server_privileges.php:962 +#: server_privileges.php:961 msgid "You have added a new user." msgstr "Сиз янги фойдаланувчи қўшдингиз." -#: server_privileges.php:1183 +#: server_privileges.php:1184 #, php-format msgid "You have updated the privileges for %s." msgstr " \"%s\" учун привилегиялар ўзгартирилди." -#: server_privileges.php:1207 +#: server_privileges.php:1208 #, php-format msgid "You have revoked the privileges for %s" msgstr " \"%s\" фойдаланувчининг привилегиялари бекор қилинди." -#: server_privileges.php:1243 +#: server_privileges.php:1244 #, php-format msgid "The password for %s was changed successfully." msgstr "\"%s\" фойдаланувчининг пароли муваффақиятли ўзгартирилди." -#: server_privileges.php:1263 +#: server_privileges.php:1264 #, php-format msgid "Deleting %s" msgstr "\"%s\" ўчирилмоқда" -#: server_privileges.php:1274 +#: server_privileges.php:1275 msgid "No users selected for deleting!" msgstr "Ўчириш лозим бўлган фойдаланувчилар танланмаган!" -#: server_privileges.php:1277 +#: server_privileges.php:1278 msgid "Reloading the privileges" msgstr "Привилегиялар қайта юкланмоқда" -#: server_privileges.php:1292 +#: server_privileges.php:1296 msgid "The selected users have been deleted successfully." msgstr "Белгиланган фойдаланувчилар муваффақиятли ўчирилди." -#: server_privileges.php:1327 +#: server_privileges.php:1331 msgid "The privileges were reloaded successfully." msgstr "Привилегиялар муваффақиятли қайта юкланди." -#: server_privileges.php:1355 server_privileges.php:1641 +#: server_privileges.php:1359 server_privileges.php:1645 msgid "Edit Privileges" msgstr "Привилегияларни таҳрирлаш" -#: server_privileges.php:1364 +#: server_privileges.php:1368 msgid "Revoke" msgstr "Бекор қилиш" -#: server_privileges.php:1396 +#: server_privileges.php:1400 msgid "User overview" msgstr "Фойдаланувчилар ҳисобини кўриб чиқиш" -#: server_privileges.php:1533 server_privileges.php:1715 -#: server_privileges.php:2064 +#: server_privileges.php:1537 server_privileges.php:1719 +#: server_privileges.php:2068 msgid "Grant" msgstr "GRANT" -#: server_privileges.php:1552 server_privileges.php:2154 +#: server_privileges.php:1556 server_privileges.php:2158 msgid "Any" msgstr "Ҳар қайси" -#: server_privileges.php:1601 server_privileges.php:1625 -#: server_privileges.php:2019 server_privileges.php:2208 +#: server_privileges.php:1605 server_privileges.php:1629 +#: server_privileges.php:2023 server_privileges.php:2212 msgid "Add a new User" msgstr "Янги фойдаланувчи қўшиш" -#: server_privileges.php:1606 +#: server_privileges.php:1610 msgid "Remove selected users" msgstr "Белгиланган фойдаланувчиларни ўчириш" -#: server_privileges.php:1609 +#: server_privileges.php:1613 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Фойдаланувчиларнинг барча фаол привилегияларини бекор қилиш, сўнг уларни " "ўчириш." -#: server_privileges.php:1610 server_privileges.php:1611 -#: server_privileges.php:1612 +#: server_privileges.php:1614 server_privileges.php:1615 +#: server_privileges.php:1616 msgid "Drop the databases that have the same names as the users." msgstr "Фойдаланувчилар номлари билан аталган маълумотлар базаларини ўчириш." -#: server_privileges.php:1628 +#: server_privileges.php:1632 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -5002,98 +5066,98 @@ msgstr "" "маълумотлар сервер томонидан ишлатилаётган привилегиялардан фарқ қилиши " "мумкин. Бу ҳолда %sпривилегияларни қайта юклаш%s керак." -#: server_privileges.php:1676 +#: server_privileges.php:1680 msgid "The selected user was not found in the privilege table." msgstr "Белгиланган фойдаланувчи привилегиялар жадвалида топилмади." -#: server_privileges.php:1716 +#: server_privileges.php:1720 msgid "Column-specific privileges" msgstr "Майдон привилегиялари" -#: server_privileges.php:1917 +#: server_privileges.php:1921 msgid "Add privileges on the following database" msgstr "Қуйидаги маълумотлар омборига привилегия қўшиш" -#: server_privileges.php:1935 +#: server_privileges.php:1939 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "Маълумотлар базалари номларида пастки чизиқ (_) ва фоиз (%) белгилари " "ишлатилганда улар олдига тескари эгри чизиқ (\\) қўйиш керак." -#: server_privileges.php:1938 +#: server_privileges.php:1942 msgid "Add privileges on the following table" msgstr "Қуйидаги жадвалга привилегия қўшиш" -#: server_privileges.php:1995 +#: server_privileges.php:1999 msgid "Change Login Information / Copy User" msgstr "Фойдаланувчининг логинини ўзгартириш / Фойдаланувчидан нусха олиш" -#: server_privileges.php:1998 +#: server_privileges.php:2002 msgid "Create a new user with the same privileges and ..." msgstr "Худди шундай привилегияли янги фойдаланувчи киритиш..." -#: server_privileges.php:2000 +#: server_privileges.php:2004 msgid "... keep the old one." msgstr " ва эскисини сақлаш." -#: server_privileges.php:2001 +#: server_privileges.php:2005 msgid " ... delete the old one from the user tables." msgstr " ва фойдаланувчилар жадвалидан эскисини ўчириш." -#: server_privileges.php:2002 +#: server_privileges.php:2006 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr ", эскисининг барча фаол привилегияларини бекор қилиб ўчириш." -#: server_privileges.php:2003 +#: server_privileges.php:2007 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" ", фойдаланувчилар жадвалидан эскисини ўчириб привилегияларни қайта юклаш." -#: server_privileges.php:2025 +#: server_privileges.php:2029 msgid "Database for user" msgstr "Фойдаланувчи учун маълумотлар базаси" -#: server_privileges.php:2029 +#: server_privileges.php:2033 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Йўқ" -#: server_privileges.php:2030 +#: server_privileges.php:2034 msgid "Create database with same name and grant all privileges" msgstr "" "Фойдаланувчи номи билан аталган маълумотлар базаси тузиш ва унга тўлиқ " "привилегияларни бериш." -#: server_privileges.php:2031 +#: server_privileges.php:2035 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" "(фойдаланувчи\\_%) шаблонига тўғри келадиган барча маълумотлар базаларига " "тўлиқ привилегияларни бериш." -#: server_privileges.php:2034 +#: server_privileges.php:2038 #, php-format msgid "Grant all privileges on database "%s"" msgstr "\"%s\"" маълумотлар базасига барча привилегияларни бериш;" -#: server_privileges.php:2057 +#: server_privileges.php:2061 #, php-format msgid "Users having access to "%s"" msgstr "\"%s\"га рухсати бўлган фойдаланувчилар" -#: server_privileges.php:2165 +#: server_privileges.php:2169 msgid "global" msgstr "Глобал" -#: server_privileges.php:2167 +#: server_privileges.php:2171 msgid "database-specific" msgstr "Маълумотлар базаси даражасида" -#: server_privileges.php:2169 +#: server_privileges.php:2173 msgid "wildcard" msgstr "Гуруҳлаш белгиси" @@ -5112,44 +5176,44 @@ msgstr "phpMyAdmin \"%s\" оқим ишини тугута олмади. Эҳт msgid "ID" msgstr "ID" -#: server_replication.php:50 +#: server_replication.php:49 msgid "Unknown error" msgstr "Номаълум хатолик" -#: server_replication.php:57 +#: server_replication.php:56 #, php-format msgid "Unable to connect to master %s." msgstr "%s бош серверига уланиб бўлмади." -#: server_replication.php:64 +#: server_replication.php:63 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" "Бош сервер позициясини ўқиб бўлмади. Сервердаги привилегиларда муаммо бўлиши " "мумкин." -#: server_replication.php:70 +#: server_replication.php:69 msgid "Unable to change master" msgstr "Бош серверни ўзгартириб бўлмади" -#: server_replication.php:73 +#: server_replication.php:72 #, php-format msgid "Master server changed succesfully to %s" msgstr "Бош репликация сервери қуйидагига ўзгартирилди: %s" -#: server_replication.php:181 +#: server_replication.php:180 msgid "This server is configured as master in a replication process." msgstr "Ушбу сервер репликация жараёнида \"бош\" деб конфигурация қилинган." -#: server_replication.php:183 server_status.php:391 +#: server_replication.php:182 server_status.php:391 msgid "Show master status" msgstr "Уланган бош серверларни кўрсатиш" -#: server_replication.php:186 +#: server_replication.php:185 msgid "Show connected slaves" msgstr "Уланган тобе серверларни кўрсатиш" -#: server_replication.php:209 +#: server_replication.php:208 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -5158,11 +5222,11 @@ msgstr "" "Ушбу сервер репликация жараёнида \"бош сервер\" деб конфигурация қилинмаган. " "Сиз уни конфигурация қилмоқчимисиз?" -#: server_replication.php:216 +#: server_replication.php:215 msgid "Master configuration" msgstr "Бош сервер конфигурацияси" -#: server_replication.php:217 +#: server_replication.php:216 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -5176,19 +5240,19 @@ msgstr "" "бермаслик ва баъзиларини репликация қилишни (бир нечта базаларнигина " "репликация қилишда фойдали) танлашингиз мумкин. Репликация усулини танланг:" -#: server_replication.php:220 +#: server_replication.php:219 msgid "Replicate all databases; Ignore:" msgstr "Барча базаларни репликация қилиш; Қуйидагилардан ташқари:" -#: server_replication.php:221 +#: server_replication.php:220 msgid "Ignore all databases; Replicate:" msgstr "Барча базаларга эътибор бермаслик; Қуйидагилардан ташқари:" -#: server_replication.php:224 +#: server_replication.php:223 msgid "Please select databases:" msgstr "Базаларни танланг:" -#: server_replication.php:227 +#: server_replication.php:226 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -5196,7 +5260,7 @@ msgstr "" "Энди қуйидаги қаторларни \"my.cnf\" файлининг охирига қўшинг ва MySQL " "серверини қайта юкланг." -#: server_replication.php:229 +#: server_replication.php:228 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " @@ -5206,68 +5270,68 @@ msgstr "" "ушбу сервер \"бош сервер\" деб конфигурация қилинганлиги ҳақидаги маълумотни " "кўришингиз керак." -#: server_replication.php:292 +#: server_replication.php:291 msgid "Slave SQL Thread not running!" msgstr "Тобе SQL Оқими ишламаяпти!" -#: server_replication.php:295 +#: server_replication.php:294 msgid "Slave IO Thread not running!" msgstr "Тобе кириш/чиқиш оқими ишламаяпти!" -#: server_replication.php:304 +#: server_replication.php:303 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" "Ушбу сервер репликация жараёнида \"тобе сервер\" деб конфигурация қилинган. " "Қуйидаги амаллардан бирини танланг:" -#: server_replication.php:307 +#: server_replication.php:306 msgid "See slave status table" msgstr "Тобе сервер статуси жадвалини кўриш" -#: server_replication.php:310 +#: server_replication.php:309 msgid "Synchronize databases with master" msgstr "Базаларни бош сервер билан синхронизация қилиш" -#: server_replication.php:321 +#: server_replication.php:320 msgid "Control slave:" msgstr "Тобе серверни назорат қилиш:" -#: server_replication.php:324 +#: server_replication.php:323 msgid "Full start" msgstr "Барчасини бошлаш" -#: server_replication.php:324 +#: server_replication.php:323 msgid "Full stop" msgstr "Барчасини тўхтатиш" -#: server_replication.php:325 +#: server_replication.php:324 msgid "Reset slave" msgstr "Тобе серверни тиклаш" -#: server_replication.php:326 +#: server_replication.php:325 #, php-format msgid "SQL Thread %s only" msgstr "Фақат %s SQL кириш/чиқиш оқимини" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 msgid "Start" msgstr "Бошлаш" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 msgid "Stop" msgstr "Тўхтатиш" -#: server_replication.php:327 +#: server_replication.php:326 #, php-format msgid "IO Thread %s only" msgstr "Фақат %s қириш/чиқиш оқимини" -#: server_replication.php:331 +#: server_replication.php:330 msgid "Error management:" msgstr "Хатоликларни бошқариш:" -#: server_replication.php:333 +#: server_replication.php:332 #, fuzzy #| msgid "Skipping error(s) might lead into unsynchronized master and slave!" msgid "Skipping errors might lead into unsynchronized master and slave!" @@ -5275,19 +5339,19 @@ msgstr "" "Хатолик(лар)ни ташлаб кетиш бош ва тобе серверларнинг тўла синхронизация " "қилинмаганлигига олиб келиши мумкин!" -#: server_replication.php:335 +#: server_replication.php:334 msgid "Skip current error" msgstr "Жорий хатоликларни ташлаб кетиш" -#: server_replication.php:336 +#: server_replication.php:335 msgid "Skip next" msgstr "Кейингисини ташлаб кетиш" -#: server_replication.php:339 +#: server_replication.php:338 msgid "errors." msgstr " хатоликлар." -#: server_replication.php:354 +#: server_replication.php:353 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -6135,113 +6199,113 @@ msgstr "Сўров тури" msgid "Replication status" msgstr "Репликация статуси" -#: server_synchronize.php:93 +#: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "Манбага уланиб бўлмади" -#: server_synchronize.php:96 +#: server_synchronize.php:95 msgid "Could not connect to the target" msgstr "Нишонга уланиб бўлмади" -#: server_synchronize.php:121 server_synchronize.php:124 tbl_create.php:77 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "'%s' номли база мавжуд эмас." -#: server_synchronize.php:264 +#: server_synchronize.php:263 msgid "Structure Synchronization" msgstr "Тузилишни синхронизация қилиш" -#: server_synchronize.php:271 +#: server_synchronize.php:270 msgid "Data Synchronization" msgstr "Маълумотлар синхронизацияси" -#: server_synchronize.php:399 server_synchronize.php:838 +#: server_synchronize.php:398 server_synchronize.php:837 msgid "not present" msgstr "Мавжуд эмас" -#: server_synchronize.php:423 server_synchronize.php:866 +#: server_synchronize.php:422 server_synchronize.php:865 msgid "Structure Difference" msgstr "Тузилишдаги фарқ" -#: server_synchronize.php:424 server_synchronize.php:867 +#: server_synchronize.php:423 server_synchronize.php:866 msgid "Data Difference" msgstr "Маълумотлар фарқи" -#: server_synchronize.php:429 server_synchronize.php:872 +#: server_synchronize.php:428 server_synchronize.php:871 msgid "Add column(s)" msgstr "Устун(лар) қўшиш" -#: server_synchronize.php:430 server_synchronize.php:873 +#: server_synchronize.php:429 server_synchronize.php:872 msgid "Remove column(s)" msgstr "Устун(лар)ни олиб ташлаш" -#: server_synchronize.php:431 server_synchronize.php:874 +#: server_synchronize.php:430 server_synchronize.php:873 msgid "Alter column(s)" msgstr "Устун(лар)ни ўзгартириш" -#: server_synchronize.php:432 server_synchronize.php:875 +#: server_synchronize.php:431 server_synchronize.php:874 msgid "Remove index(s)" msgstr "Индекс(лар)ни олиб ташлаш" -#: server_synchronize.php:433 server_synchronize.php:876 +#: server_synchronize.php:432 server_synchronize.php:875 msgid "Apply index(s)" msgstr "Индекс(лар)ни сақлаш" -#: server_synchronize.php:434 server_synchronize.php:877 +#: server_synchronize.php:433 server_synchronize.php:876 msgid "Update row(s)" msgstr "Қатор(лар)ни янгилаш" -#: server_synchronize.php:435 server_synchronize.php:878 +#: server_synchronize.php:434 server_synchronize.php:877 msgid "Insert row(s)" msgstr "Қатор(лар) қўшиш" -#: server_synchronize.php:445 server_synchronize.php:889 +#: server_synchronize.php:444 server_synchronize.php:888 msgid "Would you like to delete all the previous rows from target tables?" msgstr "Нишон жадвалдаги барча олдинги қаторларни ўчирмоқчимисиз?" -#: server_synchronize.php:448 server_synchronize.php:893 +#: server_synchronize.php:447 server_synchronize.php:892 msgid "Apply Selected Changes" msgstr "Киритилган ўзгаришларни сақлаш" -#: server_synchronize.php:450 server_synchronize.php:895 +#: server_synchronize.php:449 server_synchronize.php:894 msgid "Synchronize Databases" msgstr "Базаларни синхронизация қилиш" -#: server_synchronize.php:463 +#: server_synchronize.php:462 msgid "Selected target tables have been synchronized with source tables." msgstr "Танланган жадваллар манба жадваллар билан синхронизация қилинди." -#: server_synchronize.php:941 +#: server_synchronize.php:940 msgid "Target database has been synchronized with source database" msgstr "Нишон база манба база билан синхронизация қилинди" -#: server_synchronize.php:1002 +#: server_synchronize.php:1001 msgid "The following queries have been executed:" msgstr "Қуйидаги сўровлар бажарилди:" -#: server_synchronize.php:1121 +#: server_synchronize.php:1120 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1122 +#: server_synchronize.php:1121 #, fuzzy #| msgid "Insecure connection" msgid "Current connection" msgstr "Нохавфсиз уланиш" -#: server_synchronize.php:1151 +#: server_synchronize.php:1150 #, fuzzy, php-format #| msgid "Configuration file" msgid "Configuration: %s" msgstr "Конфигурацион файл" -#: server_synchronize.php:1166 +#: server_synchronize.php:1165 msgid "Socket" msgstr "Сокет" -#: server_synchronize.php:1212 +#: server_synchronize.php:1211 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -6854,10 +6918,15 @@ msgid "Signon login options" msgstr "Аутентификация усули танловлари" #: setup/lib/messages.inc.php:128 +#, fuzzy +#| msgid "" +#| "Configure phpMyAdmin database to gain access to additional features, see " +#| "[a@../Documentation.html#linked-tables]linked-tables infrastructure[/a] " +#| "in documentation" msgid "" "Configure phpMyAdmin database to gain access to additional features, see " -"[a@../Documentation.html#linked-tables]linked-tables infrastructure[/a] in " -"documentation" +"[a@../Documentation.html#linked-tables]phpMyAdmin configuration storage[/a] " +"in documentation" msgstr "" "Қўшимча функциялар билан ишлаш имконига эга бўлиш учун, phpMyAdmin " "маълумотлар базасини созланг, маълумот учун документациядан [a@../" @@ -8074,115 +8143,115 @@ msgstr "" msgid "ZIP" msgstr "ZIP" -#: sql.php:495 tbl_replace.php:385 +#: sql.php:494 tbl_replace.php:384 #, php-format msgid "Inserted row id: %1$d" msgstr "Киритилган қатор идентификатори: %1$d" -#: sql.php:512 +#: sql.php:511 msgid "Showing as PHP code" msgstr "PHP-код сифатида кўрсатиш" -#: sql.php:515 tbl_replace.php:359 +#: sql.php:514 tbl_replace.php:358 msgid "Showing SQL query" msgstr "SQL-сўровни кўрсатиш" -#: sql.php:517 +#: sql.php:516 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "SQL тўғрилигини текшириш" -#: sql.php:638 +#: sql.php:631 #, php-format msgid "Problems with indexes of table `%s`" msgstr " `\"%s\"` жадвалидаги индексларда муаммо мавжуд" -#: sql.php:670 +#: sql.php:663 msgid "Label" msgstr "Хатчўп белгиси" -#: tbl_addfield.php:188 tbl_alter.php:102 tbl_indexes.php:97 +#: tbl_addfield.php:185 tbl_alter.php:100 tbl_indexes.php:97 #, php-format msgid "Table %1$s has been altered successfully" msgstr "%1$s жадвали муваффақиятли ўзгартирилди" -#: tbl_change.php:250 tbl_select.php:26 tbl_select.php:27 tbl_select.php:30 -#: tbl_select.php:33 +#: tbl_change.php:245 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_select.php:32 msgid "Browse foreign values" msgstr "Ташқи қийматларни кўриб чиқиш" -#: tbl_change.php:280 tbl_change.php:318 +#: tbl_change.php:275 tbl_change.php:313 msgid "Function" msgstr "Функция" -#: tbl_change.php:300 tbl_indexes.php:199 tbl_indexes.php:224 +#: tbl_change.php:295 tbl_indexes.php:198 tbl_indexes.php:223 msgid "Ignore" msgstr "Эътибор бермаслик" -#: tbl_change.php:725 +#: tbl_change.php:720 #, fuzzy #| msgid " Because of its length,
                            this field might not be editable " msgid " Because of its length,
                            this column might not be editable " msgstr "Маълумотлар кўплиги сабали
                            ўзгартириш қийишлашиши мумкин" -#: tbl_change.php:884 +#: tbl_change.php:835 msgid "Remove BLOB Repository Reference" msgstr "BLOB омбори мурожаатларини ўчириш" -#: tbl_change.php:890 +#: tbl_change.php:841 msgid "Binary - do not edit" msgstr "Иккилик маълумот - таҳрирлаш мумкин эмас" -#: tbl_change.php:983 +#: tbl_change.php:889 msgid "Upload to BLOB repository" msgstr "BLOB омборига юклаш" -#: tbl_change.php:1128 +#: tbl_change.php:1026 msgid "Insert as new row" msgstr "Ёзув киритиш" -#: tbl_change.php:1129 +#: tbl_change.php:1027 msgid "Insert as new row and ignore errors" msgstr "Янги қатор сифатида қўшиш ва хатоликларга эътибор бермаслик" -#: tbl_change.php:1130 +#: tbl_change.php:1028 msgid "Show insert query" msgstr "Киритилган сўровни кўрсатиш" -#: tbl_change.php:1145 +#: tbl_change.php:1043 msgid "Go back to previous page" msgstr "Олдинги саҳифага ўтиш" -#: tbl_change.php:1146 +#: tbl_change.php:1044 msgid "Insert another new row" msgstr "Янги ёзув киритиш" -#: tbl_change.php:1150 +#: tbl_change.php:1048 msgid "Go back to this page" msgstr "Ушбу саҳифага қайтиш" -#: tbl_change.php:1158 +#: tbl_change.php:1056 msgid "Edit next row" msgstr "Кейинги қаторни таҳрирлаш" -#: tbl_change.php:1169 +#: tbl_change.php:1067 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Майдонлараро ўтиш учун TAB тугмаси ёки CTRL+стрелка тугмаларидан фойдаланинг" -#: tbl_change.php:1207 +#: tbl_change.php:1105 #, php-format msgid "Restart insertion with %s rows" msgstr "Қўйилаётган қаторлар сони: \"%s\"" -#: tbl_create.php:57 +#: tbl_create.php:55 #, php-format msgid "Table %s already exists!" msgstr "\"%s\" номли жадвал мавжуд!" -#: tbl_create.php:244 +#: tbl_create.php:241 #, php-format msgid "Table %1$s has been created." msgstr "%1$s жадвали тузилди." @@ -8203,196 +8272,196 @@ msgstr "Индексни \"PRIMARY\"га қайта номлаб бўлмади! msgid "No index parts defined!" msgstr "Индекс қисмлари белгиланмаган!" -#: tbl_indexes.php:159 +#: tbl_indexes.php:158 msgid "Create a new index" msgstr "Янги индекс тузиш" -#: tbl_indexes.php:161 +#: tbl_indexes.php:160 msgid "Modify an index" msgstr "Индексни ўзгаририш" -#: tbl_indexes.php:167 +#: tbl_indexes.php:166 msgid "Index name:" msgstr "Индекс номи: " -#: tbl_indexes.php:173 +#: tbl_indexes.php:172 msgid "Index type:" msgstr "Индекс тури: " -#: tbl_indexes.php:183 +#: tbl_indexes.php:182 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "(\"PRIMARY\" номи фақат бирламчи индексгаэга бўлиши шарт!)" -#: tbl_indexes.php:250 +#: tbl_indexes.php:249 #, php-format msgid "Add to index  %s column(s)" msgstr " \"%s\" майдон(лар)ини индексга қўшиш" -#: tbl_indexes.php:255 tbl_structure.php:588 tbl_structure.php:599 +#: tbl_indexes.php:254 tbl_structure.php:586 tbl_structure.php:597 msgid "Column count has to be larger than zero." msgstr "Устунлар сони нолдан кўп бўлиши шарт." -#: tbl_move_copy.php:45 +#: tbl_move_copy.php:44 msgid "Can't move table to same one!" msgstr "Жадвални ўз-ўзига кўчириб бўлмайди!" -#: tbl_move_copy.php:47 +#: tbl_move_copy.php:46 msgid "Can't copy table to same one!" msgstr "Жадвалнинг ўзидан ўзига нусха кўчириш мумкин эмас!" -#: tbl_move_copy.php:55 +#: tbl_move_copy.php:54 #, php-format msgid "Table %s has been moved to %s." msgstr " \"%s\" жадвали \"%s\" га кўчирилди." -#: tbl_move_copy.php:57 +#: tbl_move_copy.php:56 #, php-format msgid "Table %s has been copied to %s." msgstr "\"%s\" жадвалидан \"%s\" га нусха кўчирилди." -#: tbl_move_copy.php:81 +#: tbl_move_copy.php:80 msgid "The table name is empty!" msgstr "Жадвал номи кўрсатилмаган!" -#: tbl_operations.php:248 +#: tbl_operations.php:246 msgid "Alter table order by" msgstr "Жадвал сортировкасини ўзгартириш" -#: tbl_operations.php:257 +#: tbl_operations.php:255 msgid "(singly)" msgstr "(устун)" -#: tbl_operations.php:277 +#: tbl_operations.php:275 msgid "Move table to (database.table):" msgstr "Жадвални (маълумотлар базаси.жадвал) га кўчириш:" -#: tbl_operations.php:335 +#: tbl_operations.php:333 msgid "Table options" msgstr "Жадвал параметрлари" -#: tbl_operations.php:339 +#: tbl_operations.php:337 msgid "Rename table to" msgstr "Жадвал номини ўзгартириш" -#: tbl_operations.php:510 +#: tbl_operations.php:508 msgid "Copy table to (database.table):" msgstr "Жадвалдан (маълумотлар омбори.жадвал) га нусха кўчириш:" -#: tbl_operations.php:557 +#: tbl_operations.php:555 msgid "Switch to copied table" msgstr "Нусха олинган жадвалга ўтиш" -#: tbl_operations.php:569 +#: tbl_operations.php:567 msgid "Table maintenance" msgstr "Жадвалга хизмат кўрсатиш" -#: tbl_operations.php:590 +#: tbl_operations.php:588 msgid "Defragment table" msgstr "Жадвални дефрагментациялаш" -#: tbl_operations.php:629 +#: tbl_operations.php:627 #, php-format msgid "Table %s has been flushed" msgstr "\"%s\" жадвали кеши янгиланди" -#: tbl_operations.php:635 +#: tbl_operations.php:633 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Жадвал кешини янгилаш (\"FLUSH\")" -#: tbl_operations.php:650 +#: tbl_operations.php:648 msgid "Partition maintenance" msgstr "бўлакларга хизмат кўрсатиш" -#: tbl_operations.php:658 +#: tbl_operations.php:656 #, php-format msgid "Partition %s" msgstr "\"%s\" бўлаги" -#: tbl_operations.php:661 +#: tbl_operations.php:659 msgid "Analyze" msgstr "Таҳлил" -#: tbl_operations.php:662 +#: tbl_operations.php:660 msgid "Check" msgstr "Текшириш" -#: tbl_operations.php:663 +#: tbl_operations.php:661 msgid "Optimize" msgstr "Оптимизация" -#: tbl_operations.php:664 +#: tbl_operations.php:662 msgid "Rebuild" msgstr "Қайта қуриш" -#: tbl_operations.php:665 +#: tbl_operations.php:663 msgid "Repair" msgstr "Тиклаш" -#: tbl_operations.php:677 +#: tbl_operations.php:675 msgid "Remove partitioning" msgstr "Бўлакларни (PARTITIONS) ўчириш" -#: tbl_operations.php:703 +#: tbl_operations.php:701 msgid "Check referential integrity:" msgstr "Маълумотлар яхлитлигини текшириш:" -#: tbl_printview.php:73 +#: tbl_printview.php:72 msgid "Show tables" msgstr "Жадвалларни кўрсатиш" -#: tbl_printview.php:308 tbl_structure.php:655 +#: tbl_printview.php:307 tbl_structure.php:653 msgid "Space usage" msgstr "Фойдаланилаётган жой" -#: tbl_printview.php:312 tbl_structure.php:659 +#: tbl_printview.php:311 tbl_structure.php:657 msgid "Usage" msgstr "Ишлатилиш" -#: tbl_printview.php:339 tbl_structure.php:686 +#: tbl_printview.php:338 tbl_structure.php:684 msgid "Effective" msgstr "Эффективлик" -#: tbl_printview.php:364 tbl_structure.php:724 +#: tbl_printview.php:363 tbl_structure.php:722 msgid "Row Statistics" msgstr "Қаторлар статистикаси" -#: tbl_printview.php:367 tbl_structure.php:727 +#: tbl_printview.php:366 tbl_structure.php:725 msgid "Statements" msgstr "Тавсиф" -#: tbl_printview.php:378 tbl_structure.php:739 +#: tbl_printview.php:377 tbl_structure.php:737 msgid "static" msgstr "статик" -#: tbl_printview.php:380 tbl_structure.php:741 +#: tbl_printview.php:379 tbl_structure.php:739 msgid "dynamic" msgstr "динамик" -#: tbl_printview.php:402 tbl_structure.php:784 +#: tbl_printview.php:401 tbl_structure.php:782 msgid "Row length" msgstr "Қатор узунлиги" -#: tbl_printview.php:412 tbl_structure.php:792 +#: tbl_printview.php:411 tbl_structure.php:790 msgid " Row size " msgstr "Қатор ҳажми" -#: tbl_relation.php:278 +#: tbl_relation.php:276 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" " %1$s да ташқи калит (FOREIGN KEY) тузишда хатолик (маълумот турини " "текширинг)" -#: tbl_relation.php:404 +#: tbl_relation.php:402 #, fuzzy #| msgid "Internal relations" msgid "Internal relation" msgstr "Ички алоқалар" -#: tbl_relation.php:406 +#: tbl_relation.php:404 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -8400,7 +8469,7 @@ msgstr "" "Агар ташқи калит (FOREIGN KEY) орқали алоқа мавжуд бўлса, ички алоқа ўрнатиш " "шарт эмас." -#: tbl_relation.php:412 +#: tbl_relation.php:410 #, fuzzy #| msgid "Foreign key limit" msgid "Foreign key constraint" @@ -8410,121 +8479,121 @@ msgstr "Ташқи калит чегаралари" msgid "No rows selected" msgstr "Амални амалга ошириш учун битта ёки бир нечта қаторни танлаш керак. " -#: tbl_select.php:130 +#: tbl_select.php:129 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "\"Намунадаги сўровни бажариш\" (ўрнига қўйиш белгиси: \"%\")" -#: tbl_select.php:136 +#: tbl_select.php:135 msgid "Operator" msgstr "Оператор" -#: tbl_select.php:267 +#: tbl_select.php:266 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "Майдонни танланг (камида битта):" -#: tbl_select.php:285 +#: tbl_select.php:284 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Қидириш шартини кўшиш (яъни \"where\" жумласи):" -#: tbl_select.php:292 +#: tbl_select.php:291 msgid "Number of rows per page" msgstr "Саҳифадаги қаторлар сони " -#: tbl_select.php:298 +#: tbl_select.php:297 msgid "Display order:" msgstr "Сортировка:" -#: tbl_structure.php:160 +#: tbl_structure.php:159 msgid "Browse distinct values" msgstr "Турли қийматларни кўриб чиқиш" -#: tbl_structure.php:360 +#: tbl_structure.php:358 #, fuzzy #| msgid "None" msgctxt "None for default" msgid "None" msgstr "Йўқ" -#: tbl_structure.php:373 +#: tbl_structure.php:371 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Column %s has been dropped" msgstr "\"%s\" жадвали ўчирилди" -#: tbl_structure.php:384 +#: tbl_structure.php:382 #, php-format msgid "A primary key has been added on %s" msgstr " \"%s\" га бирламчи калит қўшилди" -#: tbl_structure.php:399 tbl_structure.php:413 tbl_structure.php:427 +#: tbl_structure.php:397 tbl_structure.php:411 tbl_structure.php:425 #, php-format msgid "An index has been added on %s" msgstr " \"%s\" учун индекс қўшилди" -#: tbl_structure.php:505 tbl_structure.php:507 +#: tbl_structure.php:503 tbl_structure.php:505 msgid "Relation view" msgstr "Алоқаларни кўриш" -#: tbl_structure.php:514 tbl_structure.php:516 +#: tbl_structure.php:512 tbl_structure.php:514 msgid "Propose table structure" msgstr "Жадвал тузилиши таҳлили" -#: tbl_structure.php:539 +#: tbl_structure.php:537 #, fuzzy #| msgid "Add column(s)" msgid "Add column" msgstr "Устун(лар) қўшиш" -#: tbl_structure.php:553 +#: tbl_structure.php:551 msgid "At End of Table" msgstr "Жадвал охирига" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At Beginning of Table" msgstr "Жадвал бошига" -#: tbl_structure.php:555 +#: tbl_structure.php:553 #, php-format msgid "After %s" msgstr " \"%s\" дан кейин" -#: tbl_structure.php:593 +#: tbl_structure.php:591 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "\"%s\" майдон учун индекс тузиш" -#: tbl_structure.php:755 +#: tbl_structure.php:753 msgid "partitioned" msgstr "бўлакларга бўлинган" -#: tbl_tracking.php:113 +#: tbl_tracking.php:109 #, php-format msgid "Tracking report for table `%s`" msgstr "\"%s\" жадвали учун кузатув ҳисоботи" -#: tbl_tracking.php:186 +#: tbl_tracking.php:182 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "%s версия тузилди, \"%s.%s\" ни кузатишш фаоллаштирилган." -#: tbl_tracking.php:194 +#: tbl_tracking.php:190 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "\"%s.%s\" ни кузатиш, %s версия фаолсизлантирилган." -#: tbl_tracking.php:202 +#: tbl_tracking.php:198 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "\"%s.%s\" ни кузатиш, %s версия фаоллаштирилган." -#: tbl_tracking.php:212 +#: tbl_tracking.php:208 msgid "SQL statements executed." msgstr "SQL сўрови бажарилди." -#: tbl_tracking.php:219 +#: tbl_tracking.php:215 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -8532,109 +8601,109 @@ msgstr "" "Дампни бажариш учун вақтинчалик база тузинг ё борини ишлатинг. Бунинг учун " "етарли привилегияларга эга бўлишингиз керак." -#: tbl_tracking.php:220 +#: tbl_tracking.php:216 msgid "Comment out these two lines if you do not need them." msgstr "Агар керак бўлмаса, ушбу икки қатор олдига шарҳ белгисини қўйинг." -#: tbl_tracking.php:229 +#: tbl_tracking.php:225 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "SQL сўрови экспорт қилинди. Дампдан нусха олинг ёки уни бажаринг." -#: tbl_tracking.php:250 tbl_tracking.php:378 +#: tbl_tracking.php:245 tbl_tracking.php:373 msgid "Close" msgstr "Ёпиш" -#: tbl_tracking.php:261 +#: tbl_tracking.php:256 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "%s версия расми (SQL коди)" -#: tbl_tracking.php:380 +#: tbl_tracking.php:375 msgid "Tracking statements" msgstr "Кузатиш операторлари" -#: tbl_tracking.php:396 tbl_tracking.php:503 +#: tbl_tracking.php:391 tbl_tracking.php:498 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "\"%s\"ни кўрсатиш, %s дан %s санагача, фойдаланувчи %s %s" -#: tbl_tracking.php:409 tbl_tracking.php:460 +#: tbl_tracking.php:404 tbl_tracking.php:455 msgid "Date" msgstr "Санани" -#: tbl_tracking.php:410 tbl_tracking.php:461 +#: tbl_tracking.php:405 tbl_tracking.php:456 msgid "Username" msgstr "Фойдаланувчи" -#: tbl_tracking.php:411 +#: tbl_tracking.php:406 msgid "Data definition statement" msgstr "Маълумотлар таърифи операторини" -#: tbl_tracking.php:462 +#: tbl_tracking.php:457 msgid "Data manipulation statement" msgstr "Маълумотларни бошқариш операторини" -#: tbl_tracking.php:506 +#: tbl_tracking.php:501 msgid "SQL dump (file download)" msgstr "SQL дампи (файлни юклаб олиш)" -#: tbl_tracking.php:507 +#: tbl_tracking.php:502 msgid "SQL dump" msgstr "SQL дамп" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "This option will replace your table and contained data." msgstr "Ушбу танлов жадвал ва унинг таркибини амаштиради." -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "SQL execution" msgstr "SQL бажаруви" -#: tbl_tracking.php:520 +#: tbl_tracking.php:515 #, php-format msgid "Export as %s" msgstr "\"%s\" деб экспорт қилиш" -#: tbl_tracking.php:560 +#: tbl_tracking.php:555 msgid "Show versions" msgstr "Версияларни кўрсатиш" -#: tbl_tracking.php:592 +#: tbl_tracking.php:587 msgid "Version" msgstr "Версия" -#: tbl_tracking.php:639 +#: tbl_tracking.php:634 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "\"%s.%s\" жадвалини кузатишни фаолсизлантириш" -#: tbl_tracking.php:641 +#: tbl_tracking.php:636 msgid "Deactivate now" msgstr "Ҳозир фаолсизлантириш" -#: tbl_tracking.php:652 +#: tbl_tracking.php:647 #, php-format msgid "Activate tracking for %s.%s" msgstr "\"%s.%s\" жадвалини кузатишни фаоллаштириш" -#: tbl_tracking.php:654 +#: tbl_tracking.php:649 msgid "Activate now" msgstr "Ҳозир фаоллаштириш" -#: tbl_tracking.php:667 +#: tbl_tracking.php:662 #, php-format msgid "Create version %s of %s.%s" msgstr "\"%s.%s\" жадвалининг %s рақамли версиясини тузиш" -#: tbl_tracking.php:671 +#: tbl_tracking.php:666 msgid "Track these data definition statements:" msgstr "Ушбу маълумотлар таърифи операторларини кузатиш:" -#: tbl_tracking.php:679 +#: tbl_tracking.php:674 msgid "Track these data manipulation statements:" msgstr "Ушбу маълумотлар бошқаруви операторларини кузатиш:" -#: tbl_tracking.php:687 +#: tbl_tracking.php:682 msgid "Create version" msgstr "Версиясини тузиш" @@ -8684,10 +8753,40 @@ msgstr "Профил янгиланди." msgid "VIEW name" msgstr "Ном кўриниши" -#: view_operations.php:92 +#: view_operations.php:91 msgid "Rename view to" msgstr "Кўриниш номини ўзгартириш" +#~ msgid "BLOB Repository" +#~ msgstr "BLOB омбори" + +#, fuzzy +#~| msgid "Enabled" +#~ msgctxt "BLOB repository" +#~ msgid "Enabled" +#~ msgstr "Фаоллаштирилган" + +#~ msgid "Disable" +#~ msgstr "Фаолсизлантириш" + +#~ msgid "Damaged" +#~ msgstr "Шикастланган" + +#, fuzzy +#~| msgid "Repair" +#~ msgctxt "BLOB repository" +#~ msgid "Repair" +#~ msgstr "Тиклаш" + +#, fuzzy +#~| msgid "Disabled" +#~ msgctxt "BLOB repository" +#~ msgid "Disabled" +#~ msgstr "Фаолсизлантирилган" + +#~ msgid "Enable" +#~ msgstr "Фаоллантириш" + #~ msgid "" #~ "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " #~ "extension. Please check your PHP configuration." diff --git a/po/uz@latin.po b/po/uz@latin.po index 4ca4f102f..c41309027 100644 --- a/po/uz@latin.po +++ b/po/uz@latin.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-21 13:53+0200\n" +"POT-Creation-Date: 2010-07-26 17:18+0200\n" "PO-Revision-Date: 2010-07-22 02:30+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: uzbek_latin \n" @@ -14,19 +14,19 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.1\n" -#: browse_foreigners.php:37 browse_foreigners.php:58 -#: libraries/display_tbl.lib.php:416 server_privileges.php:1506 +#: browse_foreigners.php:36 browse_foreigners.php:57 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1510 msgid "Show all" msgstr "Barchasini ko‘rsatish" -#: browse_foreigners.php:81 libraries/common.lib.php:2313 -#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:393 -#: libraries/export/pdf.php:146 pdf_schema.php:282 pdf_schema.php:1122 -#: pdf_schema.php:1138 +#: browse_foreigners.php:80 libraries/common.lib.php:2318 +#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:392 +#: libraries/export/pdf.php:146 pdf_schema.php:281 pdf_schema.php:1121 +#: pdf_schema.php:1137 msgid "Page number:" msgstr "Sahifa raqami: " -#: browse_foreigners.php:131 +#: browse_foreigners.php:130 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -36,139 +36,153 @@ msgstr "" "yopilgan yoki brauzer xavfsizlik yuzasidan oynalararo yangilashni blokirovka " "qilmoqda" -#: browse_foreigners.php:149 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2829 -#: libraries/common.lib.php:2836 libraries/db_links.inc.php:74 -#: libraries/tbl_links.inc.php:62 +#: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 +#: db_structure.php:89 db_structure.php:91 db_structure.php:102 +#: db_structure.php:104 libraries/common.lib.php:2834 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Qidirish" -#: browse_foreigners.php:152 db_operations.php:384 db_operations.php:428 -#: db_operations.php:498 db_operations.php:608 db_search.php:344 -#: db_structure.php:566 js/messages.php:48 libraries/Config.class.php:1043 -#: libraries/Theme_Manager.class.php:310 +#: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 +#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 +#: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 -#: libraries/common.lib.php:1340 libraries/common.lib.php:2289 +#: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 -#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:275 -#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:531 -#: libraries/display_tbl.lib.php:613 libraries/replication_gui.lib.php:75 +#: libraries/display_export.lib.php:269 libraries/display_import.lib.php:275 +#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 +#: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 #: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:781 -#: main.php:127 navigation.php:231 pdf_pages.php:291 pdf_pages.php:327 -#: pdf_pages.php:529 pmd_pdf.php:115 server_binlog.php:128 -#: server_privileges.php:664 server_privileges.php:1616 -#: server_privileges.php:1963 server_privileges.php:2010 -#: server_privileges.php:2049 server_replication.php:234 -#: server_replication.php:317 server_replication.php:340 -#: server_synchronize.php:1208 tbl_change.php:328 tbl_change.php:1172 -#: tbl_change.php:1209 tbl_indexes.php:253 tbl_operations.php:264 -#: tbl_operations.php:301 tbl_operations.php:498 tbl_operations.php:560 -#: tbl_operations.php:680 tbl_select.php:324 tbl_structure.php:561 -#: tbl_structure.php:596 tbl_tracking.php:394 tbl_tracking.php:511 -#: view_create.php:181 view_operations.php:100 +#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 +#: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 +#: server_privileges.php:663 server_privileges.php:1620 +#: server_privileges.php:1967 server_privileges.php:2014 +#: server_privileges.php:2053 server_replication.php:233 +#: server_replication.php:316 server_replication.php:339 +#: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 +#: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 +#: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 +#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "OK" -#: browse_foreigners.php:167 browse_foreigners.php:171 -#: libraries/Index.class.php:441 tbl_tracking.php:319 +#: browse_foreigners.php:166 browse_foreigners.php:170 +#: libraries/Index.class.php:441 tbl_tracking.php:314 msgid "Keyname" msgstr "Indeks nomi" -#: browse_foreigners.php:168 browse_foreigners.php:170 -#: server_collations.php:54 server_collations.php:66 server_engines.php:58 +#: browse_foreigners.php:167 browse_foreigners.php:169 +#: server_collations.php:54 server_collations.php:66 server_engines.php:57 #: server_status.php:738 msgid "Description" msgstr "Tavsifi" -#: browse_foreigners.php:246 browse_foreigners.php:255 -#: browse_foreigners.php:267 browse_foreigners.php:275 +#: browse_foreigners.php:245 browse_foreigners.php:254 +#: browse_foreigners.php:266 browse_foreigners.php:274 msgid "Use this value" msgstr "Ushbu qiymatni ishlatish" -#: db_create.php:45 +#: bs_disp_as_mime_type.php:29 bs_play_media.php:35 +msgid "No blob streaming server configured!" +msgstr "" + +#: bs_disp_as_mime_type.php:35 +#, fuzzy +#| msgid "Failed to write file to disk." +msgid "Failed to fetch headers" +msgstr "Faylni diskka yozishdaxatolik yuz berdi." + +#: bs_disp_as_mime_type.php:41 +msgid "Failed to open remote URL" +msgstr "" + +#: db_create.php:44 #, php-format msgid "Database %1$s has been created." msgstr " %1$s ma`lumotlar bazasi tuzildi." -#: db_datadict.php:48 db_operations.php:377 +#: db_datadict.php:48 db_operations.php:313 msgid "Database comment: " msgstr "Ma`lumotlar bazasiga izoh:" -#: db_datadict.php:164 libraries/tbl_properties.inc.php:723 -#: pdf_schema.php:1235 tbl_operations.php:346 tbl_printview.php:128 +#: db_datadict.php:164 libraries/tbl_properties.inc.php:722 +#: pdf_schema.php:1234 tbl_operations.php:344 tbl_printview.php:127 msgid "Table comments" msgstr "Jadval izohi" -#: db_datadict.php:173 db_qbe.php:173 libraries/Index.class.php:445 +#: db_datadict.php:173 db_qbe.php:170 libraries/Index.class.php:445 #: libraries/export/htmlword.php:243 libraries/export/latex.php:364 #: libraries/export/odt.php:293 libraries/export/texytext.php:233 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:274 -#: pdf_schema.php:1261 pdf_schema.php:1282 tbl_change.php:306 -#: tbl_indexes.php:188 tbl_printview.php:140 tbl_relation.php:401 -#: tbl_select.php:133 tbl_structure.php:176 tbl_tracking.php:272 -#: tbl_tracking.php:323 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 +#: pdf_schema.php:1260 pdf_schema.php:1281 tbl_change.php:301 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:132 tbl_structure.php:175 tbl_tracking.php:267 +#: tbl_tracking.php:318 #, fuzzy #| msgid "Column names" msgid "Column" msgstr "Maydon nomlari" -#: db_datadict.php:174 db_printview.php:105 libraries/Index.class.php:442 +#: db_datadict.php:174 db_printview.php:104 libraries/Index.class.php:442 #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 #: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:244 #: libraries/export/latex.php:364 libraries/export/odt.php:296 #: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:99 -#: pdf_schema.php:1262 pdf_schema.php:1283 server_privileges.php:2062 -#: tbl_change.php:285 tbl_change.php:312 tbl_printview.php:141 -#: tbl_printview.php:311 tbl_select.php:134 tbl_structure.php:177 -#: tbl_structure.php:658 tbl_tracking.php:273 tbl_tracking.php:320 +#: pdf_schema.php:1261 pdf_schema.php:1282 server_privileges.php:2066 +#: tbl_change.php:280 tbl_change.php:307 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:133 tbl_structure.php:176 +#: tbl_structure.php:656 tbl_tracking.php:268 tbl_tracking.php:315 msgid "Type" msgstr "Tur" #: db_datadict.php:176 libraries/Index.class.php:448 #: libraries/export/htmlword.php:245 libraries/export/latex.php:364 #: libraries/export/odt.php:299 libraries/export/texytext.php:235 -#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1264 -#: pdf_schema.php:1285 tbl_change.php:321 tbl_printview.php:143 -#: tbl_structure.php:180 tbl_tracking.php:275 tbl_tracking.php:326 +#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1263 +#: pdf_schema.php:1284 tbl_change.php:316 tbl_printview.php:142 +#: tbl_structure.php:179 tbl_tracking.php:270 tbl_tracking.php:321 msgid "Null" msgstr "Null" -#: db_datadict.php:177 db_structure.php:500 libraries/export/htmlword.php:246 +#: db_datadict.php:177 db_structure.php:486 libraries/export/htmlword.php:246 #: libraries/export/latex.php:364 libraries/export/odt.php:302 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:105 -#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 -#: tbl_structure.php:181 tbl_tracking.php:276 +#: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:143 +#: tbl_structure.php:180 tbl_tracking.php:271 msgid "Default" msgstr "Andoza" #: db_datadict.php:181 libraries/export/htmlword.php:248 #: libraries/export/latex.php:366 libraries/export/odt.php:306 -#: libraries/export/texytext.php:238 pdf_schema.php:1267 pdf_schema.php:1288 -#: tbl_printview.php:148 +#: libraries/export/texytext.php:238 pdf_schema.php:1266 pdf_schema.php:1287 +#: tbl_printview.php:147 msgid "Links to" msgstr "Aloqalar" -#: db_datadict.php:183 db_printview.php:111 libraries/export/htmlword.php:251 +#: db_datadict.php:183 db_printview.php:110 libraries/export/htmlword.php:251 #: libraries/export/latex.php:49 libraries/export/latex.php:369 #: libraries/export/odt.php:37 libraries/export/odt.php:311 #: libraries/export/sql.php:29 libraries/export/texytext.php:241 -#: libraries/tbl_properties.inc.php:129 pdf_schema.php:1278 -#: pdf_schema.php:1289 tbl_printview.php:150 +#: libraries/tbl_properties.inc.php:128 pdf_schema.php:1277 +#: pdf_schema.php:1288 tbl_printview.php:149 msgid "Comments" msgstr "Izohlar" #: db_datadict.php:266 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/export/htmlword.php:321 #: libraries/export/latex.php:434 libraries/export/odt.php:367 -#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:262 -#: pdf_schema.php:1343 server_privileges.php:1560 server_privileges.php:1571 -#: server_privileges.php:1881 server_privileges.php:1886 -#: server_privileges.php:2179 sql.php:131 sql.php:193 tbl_printview.php:227 -#: tbl_structure.php:349 tbl_tracking.php:336 tbl_tracking.php:341 +#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:261 +#: pdf_schema.php:1342 server_privileges.php:1564 server_privileges.php:1575 +#: server_privileges.php:1885 server_privileges.php:1890 +#: server_privileges.php:2183 sql.php:130 sql.php:192 tbl_printview.php:226 +#: tbl_structure.php:347 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "Yo‘q" @@ -179,17 +193,17 @@ msgstr "Yo‘q" #: libraries/mult_submits.inc.php:49 libraries/mult_submits.inc.php:54 #: libraries/mult_submits.inc.php:59 libraries/mult_submits.inc.php:91 #: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:105 -#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:261 -#: libraries/mult_submits.inc.php:272 pdf_schema.php:1343 -#: server_databases.php:63 server_privileges.php:1557 -#: server_privileges.php:1571 server_privileges.php:1881 -#: server_privileges.php:1884 server_privileges.php:2179 sql.php:192 -#: tbl_printview.php:227 tbl_structure.php:39 tbl_structure.php:349 -#: tbl_tracking.php:334 tbl_tracking.php:339 +#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:260 +#: libraries/mult_submits.inc.php:271 pdf_schema.php:1342 +#: server_databases.php:61 server_privileges.php:1561 +#: server_privileges.php:1575 server_privileges.php:1885 +#: server_privileges.php:1888 server_privileges.php:2183 sql.php:191 +#: tbl_printview.php:226 tbl_structure.php:38 tbl_structure.php:347 +#: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" msgstr "Ha" -#: db_datadict.php:321 db_printview.php:265 tbl_printview.php:496 +#: db_datadict.php:321 db_printview.php:264 tbl_printview.php:495 msgid "Print" msgstr "Chop etish" @@ -197,194 +211,154 @@ msgstr "Chop etish" msgid "View dump (schema) of database" msgstr "Ma`lumotlar bazasi dampini (sxemasini) namoyish etish" -#: db_export.php:32 db_printview.php:95 db_qbe.php:101 db_structure.php:50 -#: db_tracking.php:34 export.php:352 navigation.php:326 +#: db_export.php:32 db_printview.php:94 db_qbe.php:98 db_structure.php:49 +#: db_tracking.php:30 export.php:350 navigation.php:325 msgid "No tables found in database." msgstr "Ma`lumotlar bazasida bironta ham jadval mavjud emas." -#: db_export.php:42 db_search.php:326 server_export.php:26 +#: db_export.php:42 db_search.php:326 server_export.php:24 msgid "Select All" msgstr "Barchasini belgilash" -#: db_export.php:44 db_search.php:329 server_export.php:28 +#: db_export.php:44 db_search.php:329 server_export.php:26 msgid "Unselect All" msgstr "Belgilashni bekor qilish" -#: db_operations.php:37 tbl_create.php:49 +#: db_operations.php:33 tbl_create.php:47 msgid "The database name is empty!" msgstr "Ma`lumotlar bazasi nomi bo‘sh!" -#: db_operations.php:235 +#: db_operations.php:231 #, php-format msgid "Database %s has been renamed to %s" msgstr " `\"%s\"` ma`lumotlar bazasining nomi `\"%s\"` deb o‘zgartirildi." -#: db_operations.php:239 +#: db_operations.php:235 #, php-format msgid "Database %s has been copied to %s" msgstr "\"%s\" ma`lumotlar bazasidan \"%s\" ga nusxa ko‘chirildi." -#: db_operations.php:411 +#: db_operations.php:347 msgid "Rename database to" msgstr "Ma`lumotlar bazasi nomini quyidagiga o‘zgartirish" -#: db_operations.php:416 server_processlist.php:56 +#: db_operations.php:352 server_processlist.php:56 msgid "Command" msgstr "Buyruq" -#: db_operations.php:428 tbl_change.php:1141 +#: db_operations.php:364 tbl_change.php:1039 msgid "and then" msgstr "va so‘ng" -#: db_operations.php:454 +#: db_operations.php:390 msgid "Copy database to" msgstr "Ma`lumotlar bazasidan quyidagiga nusxa olish" -#: db_operations.php:461 tbl_operations.php:527 tbl_tracking.php:387 +#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Faqat tuzilishi" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:389 +#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Tuzilishi va ma`lumotlari" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:388 +#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Faqat ma`lumotlar" -#: db_operations.php:471 +#: db_operations.php:407 msgid "CREATE DATABASE before copying" msgstr "Nusxa ko‘chirishdan oldin ma`lumotlar bazasi tuzing (CREATE DATABASE)" -#: db_operations.php:474 libraries/export/sql.php:51 +#: db_operations.php:410 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 -#: libraries/export/sql.php:81 tbl_operations.php:535 +#: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "\"%s\" qo‘shish" -#: db_operations.php:478 libraries/export/sql.php:77 tbl_operations.php:298 -#: tbl_operations.php:537 +#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT qo‘shish" -#: db_operations.php:482 tbl_operations.php:544 +#: db_operations.php:418 tbl_operations.php:542 msgid "Add constraints" msgstr "Cheklovlar qo‘shish" -#: db_operations.php:495 +#: db_operations.php:431 msgid "Switch to copied database" msgstr "Nusxa olingan ma`lumotlar bazasiga o‘tish" -#: db_operations.php:536 -msgid "BLOB Repository" -msgstr "BLOB ombori" - -#: db_operations.php:539 db_tracking.php:75 libraries/common.lib.php:1357 -#: libraries/server_links.inc.php:48 server_processlist.php:58 -#: tbl_tracking.php:595 test/theme.php:100 -msgid "Status" -msgstr "Holat" - -#: db_operations.php:547 -#, fuzzy -#| msgid "Enabled" -msgctxt "BLOB repository" -msgid "Enabled" -msgstr "Faollashtirilgan" - -#: db_operations.php:551 -msgid "Disable" -msgstr "Faolsizlantirish" - -#: db_operations.php:561 -msgid "Damaged" -msgstr "Shikastlangan" - -#: db_operations.php:565 -#, fuzzy -#| msgid "Repair" -msgctxt "BLOB repository" -msgid "Repair" -msgstr "Tiklash" - -#: db_operations.php:573 -#, fuzzy -#| msgid "Disabled" -msgctxt "BLOB repository" -msgid "Disabled" -msgstr "Faolsizlantirilgan" - -#: db_operations.php:577 -msgid "Enable" -msgstr "Faollantirish" - -#: db_operations.php:601 libraries/Index.class.php:447 +#: db_operations.php:451 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 -#: server_collations.php:53 server_collations.php:65 server_databases.php:110 -#: tbl_operations.php:362 tbl_select.php:135 tbl_structure.php:178 -#: tbl_structure.php:766 tbl_tracking.php:274 tbl_tracking.php:325 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 +#: server_collations.php:53 server_collations.php:65 server_databases.php:108 +#: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:177 +#: tbl_structure.php:764 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "Taqqoslash" -#: db_operations.php:614 main.php:315 pdf_schema.php:33 -#, php-format +#: db_operations.php:464 pdf_schema.php:32 +#, fuzzy, php-format +#| msgid "" +#| "The additional features for working with linked tables have been " +#| "deactivated. To find out why click %shere%s." msgid "" -"The additional features for working with linked tables have been " -"deactivated. To find out why click %shere%s." +"The phpMyAdmin configuration storage has been deactivated. To find out why " +"click %shere%s." msgstr "" "Aloqador jadvallar bilan ishlash uchun qo‘shimcha imkoniyatlar mavjud emas. " "Sabablarini aniqlash uchun %sbu yerga%s bosing." -#: db_operations.php:647 +#: db_operations.php:497 msgid "Edit PDF Pages" msgstr "PDF-sahifalarni tahrirlash" -#: db_printview.php:103 db_tracking.php:71 db_tracking.php:156 +#: db_printview.php:102 db_tracking.php:67 db_tracking.php:152 #: libraries/db_structure.lib.php:37 libraries/export/xml.php:327 -#: libraries/header.inc.php:125 pdf_pages.php:423 server_privileges.php:1657 -#: server_privileges.php:1713 server_privileges.php:1977 -#: server_synchronize.php:422 server_synchronize.php:865 tbl_tracking.php:591 +#: libraries/header.inc.php:125 pdf_pages.php:422 server_privileges.php:1661 +#: server_privileges.php:1717 server_privileges.php:1981 +#: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "Jadval " -#: db_printview.php:104 libraries/db_structure.lib.php:47 +#: db_printview.php:103 libraries/db_structure.lib.php:47 #: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 -#: navigation.php:629 navigation.php:651 server_databases.php:121 -#: tbl_printview.php:392 tbl_structure.php:364 tbl_structure.php:776 +#: navigation.php:628 navigation.php:650 server_databases.php:119 +#: tbl_printview.php:391 tbl_structure.php:362 tbl_structure.php:774 msgid "Rows" msgstr "Qatorlarsoni" -#: db_printview.php:108 libraries/db_structure.lib.php:58 tbl_indexes.php:189 +#: db_printview.php:107 libraries/db_structure.lib.php:58 tbl_indexes.php:188 msgid "Size" msgstr "Hajmi" -#: db_printview.php:161 db_structure.php:456 libraries/export/sql.php:556 +#: db_printview.php:160 db_structure.php:442 libraries/export/sql.php:556 #: libraries/export/sql.php:896 msgid "in use" msgstr "ishlatilmoqda" -#: db_printview.php:186 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:511 pdf_schema.php:1240 tbl_printview.php:432 -#: tbl_structure.php:808 +#: db_printview.php:185 libraries/db_info.inc.php:86 +#: libraries/export/sql.php:511 pdf_schema.php:1239 tbl_printview.php:431 +#: tbl_structure.php:806 msgid "Creation" msgstr "Tuzish" -#: db_printview.php:195 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:516 pdf_schema.php:1245 tbl_printview.php:442 -#: tbl_structure.php:816 +#: db_printview.php:194 libraries/db_info.inc.php:91 +#: libraries/export/sql.php:516 pdf_schema.php:1244 tbl_printview.php:441 +#: tbl_structure.php:814 msgid "Last update" msgstr "Oxirgi yangilanish" -#: db_printview.php:204 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:521 pdf_schema.php:1250 tbl_printview.php:452 -#: tbl_structure.php:824 +#: db_printview.php:203 libraries/db_info.inc.php:96 +#: libraries/export/sql.php:521 pdf_schema.php:1249 tbl_printview.php:451 +#: tbl_structure.php:822 msgid "Last check" msgstr "Oxirgi tekshiruv" -#: db_printview.php:221 db_structure.php:479 +#: db_printview.php:220 db_structure.php:465 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -392,94 +366,94 @@ msgid_plural "%s tables" msgstr[0] "Jadvallar soni: \"%s\"" msgstr[1] "Jadvallar soni: \"%s\"" -#: db_qbe.php:28 import.php:453 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1980 libraries/sql_query_form.lib.php:138 -#: tbl_operations.php:212 tbl_relation.php:291 tbl_row_action.php:130 -#: view_operations.php:61 +#: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 +#: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "SQL so‘rovi muvaffaqiyatli bajarildi" -#: db_qbe.php:41 +#: db_qbe.php:38 msgid "You have to choose at least one column to display" msgstr "So‘rovni bajarish uchun, maydon/maydonlar tanlangan bo‘lishi kerak." -#: db_qbe.php:199 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:865 +#: db_qbe.php:196 libraries/db_structure.lib.php:95 +#: libraries/display_tbl.lib.php:864 msgid "Sort" msgstr "Sortirovka qilish" -#: db_qbe.php:208 db_qbe.php:242 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:522 libraries/display_tbl.lib.php:827 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:259 -#: tbl_select.php:311 +#: db_qbe.php:205 db_qbe.php:239 libraries/db_structure.lib.php:102 +#: libraries/display_tbl.lib.php:521 libraries/display_tbl.lib.php:826 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:257 +#: tbl_select.php:310 msgid "Ascending" msgstr "O‘sish tartibida" -#: db_qbe.php:209 db_qbe.php:250 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:527 libraries/display_tbl.lib.php:824 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:260 -#: tbl_select.php:312 +#: db_qbe.php:206 db_qbe.php:247 libraries/db_structure.lib.php:110 +#: libraries/display_tbl.lib.php:526 libraries/display_tbl.lib.php:823 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:258 +#: tbl_select.php:311 msgid "Descending" msgstr "Kamayish tartibida" -#: db_qbe.php:263 db_tracking.php:77 libraries/display_tbl.lib.php:307 -#: tbl_change.php:275 tbl_tracking.php:596 +#: db_qbe.php:260 db_tracking.php:73 libraries/display_tbl.lib.php:306 +#: tbl_change.php:270 tbl_tracking.php:591 msgid "Show" msgstr "Ko‘rsatish" -#: db_qbe.php:299 +#: db_qbe.php:296 msgid "Criteria" msgstr "Kriteriy" -#: db_qbe.php:352 db_qbe.php:434 db_qbe.php:526 db_qbe.php:557 +#: db_qbe.php:349 db_qbe.php:431 db_qbe.php:523 db_qbe.php:554 msgid "Ins" msgstr "Qo‘yish" -#: db_qbe.php:356 db_qbe.php:438 db_qbe.php:523 db_qbe.php:554 +#: db_qbe.php:353 db_qbe.php:435 db_qbe.php:520 db_qbe.php:551 msgid "And" msgstr "Va" -#: db_qbe.php:365 db_qbe.php:446 db_qbe.php:528 db_qbe.php:559 +#: db_qbe.php:362 db_qbe.php:443 db_qbe.php:525 db_qbe.php:556 msgid "Del" msgstr "O‘chirish" -#: db_qbe.php:369 db_qbe.php:450 db_qbe.php:521 db_qbe.php:552 -#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:778 -#: server_privileges.php:297 tbl_change.php:1027 tbl_indexes.php:249 -#: tbl_select.php:285 +#: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 +#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:777 +#: server_privileges.php:296 tbl_change.php:925 tbl_indexes.php:248 +#: tbl_select.php:284 msgid "Or" msgstr "Yoki" -#: db_qbe.php:506 +#: db_qbe.php:503 msgid "Modify" msgstr "O‘zgarirish" -#: db_qbe.php:583 +#: db_qbe.php:580 #, fuzzy #| msgid "Add/Delete Criteria Row" msgid "Add/Delete criteria rows" msgstr "Qator qo‘shish/o‘chirish" -#: db_qbe.php:595 +#: db_qbe.php:592 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Add/Delete columns" msgstr "Ustun qo‘shish/o‘chirish" -#: db_qbe.php:608 db_qbe.php:633 +#: db_qbe.php:605 db_qbe.php:630 msgid "Update Query" msgstr "So‘rovni yangilash" -#: db_qbe.php:616 +#: db_qbe.php:613 msgid "Use Tables" msgstr "Jadvallarni ishlatish" -#: db_qbe.php:639 +#: db_qbe.php:636 #, php-format msgid "SQL query on database %s:" msgstr "\"%s\" ma`lumotlar bazasiga SQL-so‘rov: " -#: db_qbe.php:933 libraries/common.lib.php:1222 +#: db_qbe.php:930 libraries/common.lib.php:1215 msgid "Submit Query" msgstr "so‘rovni bajarish" @@ -519,17 +493,17 @@ msgid_plural "%s matches inside table %s" msgstr[0] "\"%s\" jadvalida o‘xshashliklar soni \"%s\" ta" msgstr[1] "\"%s\" jadvalida o‘xshashliklar soni \"%s\" ta" -#: db_search.php:249 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2831 -#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:49 -#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:466 +#: db_search.php:249 db_structure.php:75 db_structure.php:76 +#: db_structure.php:88 db_structure.php:90 db_structure.php:101 +#: db_structure.php:103 libraries/common.lib.php:2836 +#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 +#: tbl_structure.php:35 tbl_structure.php:47 tbl_structure.php:464 msgid "Browse" msgstr "Ko‘rib chiqish" -#: db_search.php:254 libraries/display_tbl.lib.php:1164 -#: libraries/display_tbl.lib.php:2055 libraries/sql_query_form.lib.php:453 -#: pdf_pages.php:285 pdf_pages.php:424 pdf_pages.php:460 pdf_pages.php:488 +#: db_search.php:254 libraries/display_tbl.lib.php:1163 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 msgid "Delete" @@ -570,66 +544,66 @@ msgstr "Quyidagi jadval(lar)da qidirish:" msgid "Inside column:" msgstr "Quyidagi maydon(lar)da qidirish: " -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2830 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:75 +#: db_structure.php:79 db_structure.php:80 db_structure.php:92 +#: db_structure.php:93 db_structure.php:105 db_structure.php:106 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 +#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Qo‘yish" -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2827 libraries/common.lib.php:2834 -#: libraries/db_links.inc.php:62 libraries/export/htmlword.php:22 +#: db_structure.php:81 db_structure.php:94 db_structure.php:107 +#: libraries/common.lib.php:2832 libraries/common.lib.php:2839 +#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 -#: libraries/tbl_links.inc.php:55 pmd_general.php:133 -#: server_privileges.php:593 server_replication.php:314 tbl_tracking.php:268 +#: libraries/tbl_links.inc.php:54 pmd_general.php:133 +#: server_privileges.php:592 server_replication.php:313 tbl_tracking.php:263 msgid "Structure" msgstr "Tuzilishi" -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:544 db_structure.php:545 db_tracking.php:90 -#: libraries/Index.class.php:482 libraries/common.lib.php:1659 -#: libraries/db_links.inc.php:99 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:126 -#: server_databases.php:351 tbl_structure.php:26 tbl_structure.php:150 -#: tbl_structure.php:151 tbl_structure.php:470 +#: db_structure.php:82 db_structure.php:83 db_structure.php:95 +#: db_structure.php:96 db_structure.php:108 db_structure.php:109 +#: db_structure.php:530 db_structure.php:531 db_tracking.php:86 +#: libraries/Index.class.php:482 libraries/common.lib.php:1663 +#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 +#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 +#: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" msgstr "O‘chirish" -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:542 db_structure.php:543 libraries/common.lib.php:1658 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:104 +#: db_structure.php:84 db_structure.php:85 db_structure.php:97 +#: db_structure.php:98 db_structure.php:110 db_structure.php:111 +#: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 +#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 msgid "Empty" msgstr "Tozalash" -#: db_structure.php:315 libraries/tbl_links.inc.php:99 +#: db_structure.php:301 libraries/tbl_links.inc.php:98 #, php-format msgid "Table %s has been emptied" msgstr "\"%s\" jadvali tozalandi" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "View %s has been dropped" msgstr " \"%s\" namoyishi o‘chirildi" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "Table %s has been dropped" msgstr "\"%s\" jadvali o‘chirildi" -#: db_structure.php:332 +#: db_structure.php:318 msgid "Tracking is active." msgstr "Kuzatish faol." -#: db_structure.php:334 +#: db_structure.php:320 msgid "Tracking is not active." msgstr "Kuzatish faol emas." -#: db_structure.php:419 libraries/display_tbl.lib.php:1943 +#: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -638,160 +612,166 @@ msgstr "" "Ushbu namoyish kamida ko‘rsatilgan miqdorda qatorlarga ega. Batafsil " "ma`lumot uchun %sdokumentatsiyaga%s qarang." -#: db_structure.php:433 db_structure.php:447 libraries/header.inc.php:125 -#: libraries/tbl_info.inc.php:65 tbl_structure.php:184 test/theme.php:73 +#: db_structure.php:419 db_structure.php:433 libraries/header.inc.php:125 +#: libraries/tbl_info.inc.php:60 tbl_structure.php:183 test/theme.php:73 msgid "View" msgstr "Namoyish" -#: db_structure.php:484 libraries/db_structure.lib.php:40 -#: libraries/server_links.inc.php:69 server_replication.php:32 -#: server_replication.php:163 server_status.php:368 +#: db_structure.php:470 libraries/db_structure.lib.php:40 +#: libraries/server_links.inc.php:69 server_replication.php:31 +#: server_replication.php:162 server_status.php:368 msgid "Replication" msgstr "Replikatsiya (zaxira nusxa ko‘chirish)" -#: db_structure.php:488 +#: db_structure.php:474 msgid "Sum" msgstr "Jami" -#: db_structure.php:495 libraries/StorageEngine.class.php:349 +#: db_structure.php:481 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "\"%s\" - MySQL serveridagi andozaviy ma`lumotlar jadvali turi." -#: db_structure.php:523 db_structure.php:540 db_structure.php:541 -#: libraries/display_tbl.lib.php:2080 libraries/display_tbl.lib.php:2085 -#: libraries/mult_submits.inc.php:15 server_databases.php:345 -#: server_databases.php:350 server_privileges.php:1588 tbl_structure.php:454 -#: tbl_structure.php:463 +#: db_structure.php:509 db_structure.php:526 db_structure.php:527 +#: libraries/display_tbl.lib.php:2039 libraries/display_tbl.lib.php:2044 +#: libraries/mult_submits.inc.php:15 server_databases.php:343 +#: server_databases.php:348 server_privileges.php:1592 tbl_structure.php:452 +#: tbl_structure.php:461 msgid "With selected:" msgstr "Belgilanganlarni: " -#: db_structure.php:526 libraries/display_tbl.lib.php:2075 -#: server_databases.php:347 server_privileges.php:569 -#: server_privileges.php:1591 tbl_structure.php:457 +#: db_structure.php:512 libraries/display_tbl.lib.php:2034 +#: server_databases.php:345 server_privileges.php:568 +#: server_privileges.php:1595 tbl_structure.php:455 msgid "Check All" msgstr "Barchasini belgilash" -#: db_structure.php:530 libraries/display_tbl.lib.php:2076 -#: libraries/replication_gui.lib.php:35 server_databases.php:349 -#: server_privileges.php:572 server_privileges.php:1595 tbl_structure.php:461 +#: db_structure.php:516 libraries/display_tbl.lib.php:2035 +#: libraries/replication_gui.lib.php:35 server_databases.php:347 +#: server_privileges.php:571 server_privileges.php:1599 tbl_structure.php:459 msgid "Uncheck All" msgstr "Belgilashni bekor qilish" -#: db_structure.php:535 +#: db_structure.php:521 msgid "Check tables having overhead" msgstr "Optimallashtirish lozim bo‘lgn jadvallarni belgilash" -#: db_structure.php:546 db_structure.php:547 db_structure.php:598 -#: libraries/display_tbl.lib.php:2179 libraries/mult_submits.inc.php:27 -#: tbl_structure.php:491 tbl_structure.php:493 +#: db_structure.php:532 db_structure.php:533 db_structure.php:584 +#: libraries/display_tbl.lib.php:2138 libraries/mult_submits.inc.php:27 +#: tbl_structure.php:489 tbl_structure.php:491 msgid "Print view" msgstr "Chop etish versiyasi" -#: db_structure.php:548 db_structure.php:549 libraries/mult_submits.inc.php:41 -#: tbl_operations.php:580 +#: db_structure.php:534 db_structure.php:535 libraries/mult_submits.inc.php:41 +#: tbl_operations.php:578 msgid "Check table" msgstr "Jadvalni tekshirish" -#: db_structure.php:550 db_structure.php:551 libraries/mult_submits.inc.php:46 -#: tbl_operations.php:620 tbl_structure.php:708 tbl_structure.php:710 +#: db_structure.php:536 db_structure.php:537 libraries/mult_submits.inc.php:46 +#: tbl_operations.php:618 tbl_structure.php:706 tbl_structure.php:708 msgid "Optimize table" msgstr "Jadvalni optimallashtirish" -#: db_structure.php:552 db_structure.php:553 libraries/mult_submits.inc.php:51 -#: tbl_operations.php:610 +#: db_structure.php:538 db_structure.php:539 libraries/mult_submits.inc.php:51 +#: tbl_operations.php:608 msgid "Repair table" msgstr "Jadvalni tiklash" -#: db_structure.php:554 db_structure.php:555 libraries/mult_submits.inc.php:56 -#: tbl_operations.php:600 +#: db_structure.php:540 db_structure.php:541 libraries/mult_submits.inc.php:56 +#: tbl_operations.php:598 msgid "Analyze table" msgstr "Jadval tahlili" -#: db_structure.php:556 db_structure.php:557 libraries/db_links.inc.php:70 -#: libraries/display_export.lib.php:82 libraries/display_tbl.lib.php:2093 -#: libraries/display_tbl.lib.php:2224 libraries/mult_submits.inc.php:61 -#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:81 -#: pmd_pdf.php:83 pmd_pdf.php:108 server_privileges.php:1372 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 +#: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 +#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 +#: pmd_pdf.php:81 pmd_pdf.php:106 server_privileges.php:1376 #: setup/frames/menu.inc.php:22 tbl_row_action.php:58 msgid "Export" msgstr "Eksport" -#: db_structure.php:605 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:591 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "Ma`lumotlar lug‘ati" -#: db_tracking.php:65 +#: db_tracking.php:61 msgid "Tracked tables" msgstr "Kuzatilgan jadvallar" -#: db_tracking.php:70 libraries/export/htmlword.php:85 +#: db_tracking.php:66 libraries/export/htmlword.php:85 #: libraries/export/latex.php:152 libraries/export/odt.php:112 #: libraries/export/sql.php:339 libraries/export/texytext.php:84 #: libraries/export/xml.php:254 libraries/header.inc.php:105 -#: libraries/header_printview.inc.php:57 server_databases.php:168 -#: server_privileges.php:1652 server_privileges.php:1713 -#: server_privileges.php:1971 server_processlist.php:55 -#: server_synchronize.php:1178 server_synchronize.php:1182 -#: tbl_tracking.php:590 test/theme.php:64 +#: libraries/header_printview.inc.php:57 server_databases.php:166 +#: server_privileges.php:1656 server_privileges.php:1717 +#: server_privileges.php:1975 server_processlist.php:55 +#: server_synchronize.php:1177 server_synchronize.php:1181 +#: tbl_tracking.php:585 test/theme.php:64 msgid "Database" msgstr "Ma`lumotlar bazasi" -#: db_tracking.php:72 +#: db_tracking.php:68 msgid "Last version" msgstr "Oxirgi vеrsiya" -#: db_tracking.php:73 tbl_tracking.php:593 +#: db_tracking.php:69 tbl_tracking.php:588 msgid "Created" msgstr "Tuzildi" -#: db_tracking.php:74 tbl_tracking.php:594 +#: db_tracking.php:70 tbl_tracking.php:589 msgid "Updated" msgstr "Yangilandi" -#: db_tracking.php:76 libraries/Index.class.php:439 -#: libraries/db_structure.lib.php:44 server_databases.php:202 -#: server_privileges.php:1534 server_privileges.php:1717 -#: server_privileges.php:2065 tbl_structure.php:186 +#: db_tracking.php:71 libraries/common.lib.php:1361 +#: libraries/server_links.inc.php:48 server_processlist.php:58 +#: tbl_tracking.php:590 test/theme.php:100 +msgid "Status" +msgstr "Holat" + +#: db_tracking.php:72 libraries/Index.class.php:439 +#: libraries/db_structure.lib.php:44 server_databases.php:200 +#: server_privileges.php:1538 server_privileges.php:1721 +#: server_privileges.php:2069 tbl_structure.php:185 msgid "Action" msgstr "Amal" -#: db_tracking.php:87 db_tracking.php:119 +#: db_tracking.php:83 db_tracking.php:115 msgid "Delete tracking data for this table" msgstr "Ushbu jadval uchun kuzatuv ma’lumotlari o‘chirish" -#: db_tracking.php:105 tbl_tracking.php:547 tbl_tracking.php:605 -#: tbl_tracking.php:612 +#: db_tracking.php:101 tbl_tracking.php:542 tbl_tracking.php:600 +#: tbl_tracking.php:607 msgid "active" msgstr "faol" -#: db_tracking.php:107 tbl_tracking.php:549 tbl_tracking.php:607 -#: tbl_tracking.php:609 +#: db_tracking.php:103 tbl_tracking.php:544 tbl_tracking.php:602 +#: tbl_tracking.php:604 msgid "not active" msgstr "faol emas" -#: db_tracking.php:120 +#: db_tracking.php:116 msgid "Versions" msgstr "Vеrsiyalar" -#: db_tracking.php:121 tbl_tracking.php:378 tbl_tracking.php:623 +#: db_tracking.php:117 tbl_tracking.php:373 tbl_tracking.php:618 msgid "Tracking report" msgstr "Kuzatish hisoboti" -#: db_tracking.php:122 tbl_tracking.php:250 tbl_tracking.php:623 +#: db_tracking.php:118 tbl_tracking.php:245 tbl_tracking.php:618 msgid "Structure snapshot" msgstr "Tuzilma rasmi" -#: db_tracking.php:151 +#: db_tracking.php:147 msgid "Untracked tables" msgstr "Kuzatilmagan jadvallar" -#: db_tracking.php:171 db_tracking.php:173 tbl_structure.php:527 -#: tbl_structure.php:529 +#: db_tracking.php:167 db_tracking.php:169 tbl_structure.php:525 +#: tbl_structure.php:527 msgid "Track table" msgstr "Jadvalni kuzatish" -#: db_tracking.php:199 +#: db_tracking.php:195 msgid "Database Log" msgstr "Baza log faylini" @@ -799,12 +779,12 @@ msgstr "Baza log faylini" msgid "Selected export type has to be saved in file!" msgstr "Belgilangan eksport turi faylga saqlanishi shart!" -#: export.php:153 export.php:178 export.php:620 +#: export.php:152 export.php:177 export.php:615 #, php-format msgid "Insufficient space to save the file %s." msgstr "\"%s\" faylini saqlash uchun diskda yetarli joy mavjud emas. " -#: export.php:287 +#: export.php:286 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -812,17 +792,17 @@ msgstr "" "\"%s\" fayli serverda mavjud, uning nomini o‘zgartiring yoki qayta yozish " "parametrini yoqing." -#: export.php:291 export.php:295 +#: export.php:290 export.php:294 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "\"%s\" faylini veb-serverga saqlash uchun huquqlar yetarli emas." -#: export.php:622 +#: export.php:617 #, php-format msgid "Dump has been saved to file %s." msgstr "Damp \"%s\" faylida saqlandi." -#: import.php:59 +#: import.php:58 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -831,14 +811,14 @@ msgstr "" "Ehtimol, yuklanayotgan fayl hajmi juda katta. Bu muammoni yechishning " "usullari %sdokumentatsiyada%s keltirilgan." -#: import.php:278 import.php:331 libraries/File.class.php:840 -#: libraries/File.class.php:950 +#: import.php:277 import.php:330 libraries/File.class.php:566 +#: libraries/File.class.php:676 msgid "File could not be read" msgstr "Faylni o‘qib bo‘lmadi!!" -#: import.php:286 import.php:295 import.php:314 import.php:323 -#: libraries/File.class.php:1020 libraries/File.class.php:1028 -#: libraries/File.class.php:1044 libraries/File.class.php:1052 +#: import.php:285 import.php:294 import.php:313 import.php:322 +#: libraries/File.class.php:746 libraries/File.class.php:754 +#: libraries/File.class.php:770 libraries/File.class.php:778 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -848,7 +828,7 @@ msgstr "" "mavjud emas, shuning uchun ushbu faylni import qilib bo‘lmaydi. Agar dastur " "mavjud bo‘lsa, demak u konfiguratsiya vaqtida o‘chirib qo‘yilgan." -#: import.php:336 +#: import.php:335 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -859,31 +839,31 @@ msgstr "" "qiymatdan katta. Qarang: [a@./Documentation.html#faq1_16@Documentation]FAQ " "1.16[/a]." -#: import.php:371 libraries/display_import.lib.php:23 +#: import.php:370 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "" "Import modullari mavjud emas! O‘rnatilgan phpMyAdmin nusxasining libraries/" "export katalogini tekshiring." -#: import.php:396 +#: import.php:395 msgid "The bookmark has been deleted." msgstr "Xatcho‘p o‘chirildi." -#: import.php:400 +#: import.php:399 msgid "Showing bookmark" msgstr "Xatcho‘plarni ko‘rsatish" -#: import.php:402 sql.php:625 +#: import.php:401 sql.php:618 #, php-format msgid "Bookmark %s created" msgstr "\"%s\" xatcho‘pi tuzildi" -#: import.php:408 import.php:414 +#: import.php:407 import.php:413 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Import muvaffaqiyatli tugatildi, bajarilgan so‘rovlar soni: %d." -#: import.php:423 +#: import.php:422 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -892,7 +872,7 @@ msgstr "" "unda o‘sha faylni tanlagan holda uni qayta ishga tushiring va jarayon " "uzilgan joydan boshlab davom etadi." -#: import.php:425 +#: import.php:424 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -901,21 +881,21 @@ msgstr "" "Odatda, bu hol, php-ssenariylar uchun ajratilgan vaqt oshirilmaguncha " "phpMyAdmin dasturi import jarayonini yakunla olmasligini bildiradi." -#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:240 +#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:239 #: user_password.php:110 msgid "Back" msgstr "Orqaga" -#: index.php:188 +#: index.php:183 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" "phpMyAdmin ishlashi uchun freymlar bilan ishlay oladigan brauzer " "kerak." -#: js/messages.php:25 server_synchronize.php:344 server_synchronize.php:356 -#: server_synchronize.php:372 server_synchronize.php:379 -#: server_synchronize.php:738 server_synchronize.php:766 -#: server_synchronize.php:794 server_synchronize.php:806 +#: js/messages.php:25 server_synchronize.php:343 server_synchronize.php:355 +#: server_synchronize.php:371 server_synchronize.php:378 +#: server_synchronize.php:737 server_synchronize.php:765 +#: server_synchronize.php:793 server_synchronize.php:805 msgid "Click to select" msgstr "Tanlash uchun sichqoncha tugmasini bosing" @@ -923,16 +903,16 @@ msgstr "Tanlash uchun sichqoncha tugmasini bosing" msgid "Click to unselect" msgstr "Tanlashni bеkor qilish uchun sichqoncha tugmasini bosing" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:88 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:87 msgid "\"DROP DATABASE\" statements are disabled." msgstr "" "\"DROP DATABASE\" (ma`lumotlar bazasini o‘chirish) buyrug‘i o‘chirilgan." -#: js/messages.php:30 libraries/mult_submits.inc.php:257 sql.php:187 +#: js/messages.php:30 libraries/mult_submits.inc.php:256 sql.php:186 msgid "Do you really want to " msgstr "Haqiqatan ham so‘rovni bajarmoqchimisiz?" -#: js/messages.php:31 libraries/mult_submits.inc.php:257 sql.php:171 +#: js/messages.php:31 libraries/mult_submits.inc.php:256 sql.php:170 msgid "You are about to DESTROY a complete database!" msgstr "Ma`lumotlar bazasi to‘liq O‘CHIRILADI!" @@ -963,11 +943,11 @@ msgstr "Xost nomi bo‘sh!" msgid "The user name is empty!" msgstr "Foydalanuvchi nomi belgilanmagan!" -#: js/messages.php:44 server_privileges.php:1228 user_password.php:65 +#: js/messages.php:44 server_privileges.php:1229 user_password.php:65 msgid "The password is empty!" msgstr "Parol belgilanmagan!" -#: js/messages.php:45 server_privileges.php:1226 user_password.php:68 +#: js/messages.php:45 server_privileges.php:1227 user_password.php:68 msgid "The passwords aren't the same!" msgstr "Kiritilgan parollar bir xil emas!" @@ -975,27 +955,27 @@ msgstr "Kiritilgan parollar bir xil emas!" msgid "Cancel" msgstr "Bekor qilish" -#: js/messages.php:52 pmd_save_pos.php:53 +#: js/messages.php:52 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "O‘zgaririshlar saqlandi" -#: js/messages.php:53 pmd_relation_upd.php:48 +#: js/messages.php:53 pmd_relation_upd.php:47 msgid "Relation deleted" msgstr "Aloqa o‘chirildi" -#: js/messages.php:54 pmd_relation_new.php:63 +#: js/messages.php:54 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "Tashqi kalitga (FOREIGN KEY) aloqa o‘rnatildi" -#: js/messages.php:55 pmd_relation_new.php:85 +#: js/messages.php:55 pmd_relation_new.php:84 msgid "Internal relation added" msgstr "Ichki aloqa o‘rnatildi" -#: js/messages.php:56 pmd_relation_new.php:62 pmd_relation_new.php:87 +#: js/messages.php:56 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "Xatolik: Bog‘liqlik o‘rnatilmadi." -#: js/messages.php:57 pmd_relation_new.php:30 +#: js/messages.php:57 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "Xatolik: Bog‘liqlik allaqachon mavjud." @@ -1003,13 +983,13 @@ msgstr "Xatolik: Bog‘liqlik allaqachon mavjud." msgid "Error saving coordinates for Designer." msgstr "Koordinatalarni saqlashda xatolik." -#: js/messages.php:59 libraries/relation.lib.php:94 -#: libraries/relation.lib.php:106 +#: js/messages.php:59 libraries/relation.lib.php:89 +#: libraries/relation.lib.php:101 msgid "General relation features" msgstr "Aloqalarning asosiy imkoniyatlari" -#: js/messages.php:59 libraries/relation.lib.php:88 -#: libraries/relation.lib.php:95 +#: js/messages.php:59 libraries/relation.lib.php:83 +#: libraries/relation.lib.php:90 msgid "Disabled" msgstr "Faolsizlantirilgan" @@ -1026,7 +1006,7 @@ msgid "Please select the primary key or a unique key" msgstr "" "Birlamchi (PRIMARY) yoki unikal (UNIQUE) indeks bo‘lgan maydonni tanlang!" -#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:547 +#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" @@ -1057,10 +1037,10 @@ msgid "Prev" msgstr "Orqaga" #. l10n: Display text for next month link in calendar -#: js/messages.php:81 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:337 -#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:422 -#: tbl_structure.php:800 +#: js/messages.php:81 libraries/common.lib.php:2358 +#: libraries/common.lib.php:2361 libraries/display_tbl.lib.php:336 +#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 +#: tbl_structure.php:798 msgid "Next" msgstr "Keyingi" @@ -1134,27 +1114,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1562 +#: js/messages.php:101 libraries/common.lib.php:1566 msgid "Jan" msgstr "Yanv" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1564 +#: js/messages.php:103 libraries/common.lib.php:1568 msgid "Feb" msgstr "Fev" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1566 +#: js/messages.php:105 libraries/common.lib.php:1570 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1568 +#: js/messages.php:107 libraries/common.lib.php:1572 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1570 +#: js/messages.php:109 libraries/common.lib.php:1574 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1162,37 +1142,37 @@ msgid "May" msgstr "May" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1572 +#: js/messages.php:111 libraries/common.lib.php:1576 msgid "Jun" msgstr "Iyun" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1574 +#: js/messages.php:113 libraries/common.lib.php:1578 msgid "Jul" msgstr "Iyul" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1576 +#: js/messages.php:115 libraries/common.lib.php:1580 msgid "Aug" msgstr "Avg" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1578 +#: js/messages.php:117 libraries/common.lib.php:1582 msgid "Sep" msgstr "Sen" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1580 +#: js/messages.php:119 libraries/common.lib.php:1584 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:121 libraries/common.lib.php:1582 +#: js/messages.php:121 libraries/common.lib.php:1586 msgid "Nov" msgstr "Noya" #. l10n: Short month name -#: js/messages.php:123 libraries/common.lib.php:1584 +#: js/messages.php:123 libraries/common.lib.php:1588 msgid "Dec" msgstr "Dek" @@ -1233,37 +1213,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1587 +#: js/messages.php:136 libraries/common.lib.php:1591 msgid "Sun" msgstr "Yaksh" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1589 +#: js/messages.php:138 libraries/common.lib.php:1593 msgid "Mon" msgstr "Dush" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1591 +#: js/messages.php:140 libraries/common.lib.php:1595 msgid "Tue" msgstr "Sesh" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1593 +#: js/messages.php:142 libraries/common.lib.php:1597 msgid "Wed" msgstr "Chor" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1595 +#: js/messages.php:144 libraries/common.lib.php:1599 msgid "Thu" msgstr "Pay" #. l10n: Short week day name -#: js/messages.php:146 libraries/common.lib.php:1597 +#: js/messages.php:146 libraries/common.lib.php:1601 msgid "Fri" msgstr "Jum" #. l10n: Short week day name -#: js/messages.php:148 libraries/common.lib.php:1599 +#: js/messages.php:148 libraries/common.lib.php:1603 msgid "Sat" msgstr "Shan" @@ -1343,18 +1323,13 @@ msgstr "sekundiga" msgid "Font size" msgstr "Shrift o‘lchami" -#: libraries/File.class.php:336 libraries/File.class.php:424 -#: libraries/File.class.php:561 libraries/File.class.php:700 -msgid "Unknown error in file upload." -msgstr "Fayl yuklanayotgan vaqtda noma`lum xatolik yuz berdi." - -#: libraries/File.class.php:406 +#: libraries/File.class.php:315 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:409 +#: libraries/File.class.php:318 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -1362,23 +1337,27 @@ msgstr "" "Yuklanayotgan fayl hajmi HTML formada ko‘rsatilgan \"MAX_FILE_SIZE\" " "direktivasi qiymatidan katta!" -#: libraries/File.class.php:412 +#: libraries/File.class.php:321 msgid "The uploaded file was only partially uploaded." msgstr "Yuklanayotgan fayl faqatgina qisman yuklandi." -#: libraries/File.class.php:415 +#: libraries/File.class.php:324 msgid "Missing a temporary folder." msgstr "Vaqtinchalik fayllarni saqlash uchun katalog topilmadi." -#: libraries/File.class.php:418 +#: libraries/File.class.php:327 msgid "Failed to write file to disk." msgstr "Faylni diskka yozishdaxatolik yuz berdi." -#: libraries/File.class.php:421 +#: libraries/File.class.php:330 msgid "File upload stopped by extension." msgstr "Faylning yuklanishi uning kengaytmasi sabali to‘xtatildi." -#: libraries/File.class.php:898 +#: libraries/File.class.php:333 +msgid "Unknown error in file upload." +msgstr "Fayl yuklanayotgan vaqtda noma`lum xatolik yuz berdi." + +#: libraries/File.class.php:624 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -1386,37 +1365,37 @@ msgstr "" "Yuklangan fayl joyini o‘zgartirishda xatolik, [a@./Documentation." "html#faq1_11@Documentation]\"FAQ 1.11\"[/a]ga qarang" -#: libraries/Index.class.php:427 tbl_relation.php:528 +#: libraries/Index.class.php:427 tbl_relation.php:526 msgid "No index defined!" msgstr "Indeks belgilanmagan!" -#: libraries/Index.class.php:432 server_databases.php:131 tbl_tracking.php:315 +#: libraries/Index.class.php:432 server_databases.php:129 tbl_tracking.php:310 msgid "Indexes" msgstr "Indekslar" #: libraries/Index.class.php:443 libraries/mult_submits.inc.php:102 -#: libraries/tbl_properties.inc.php:518 tbl_structure.php:32 -#: tbl_structure.php:154 tbl_structure.php:158 tbl_structure.php:473 -#: tbl_tracking.php:321 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:31 +#: tbl_structure.php:153 tbl_structure.php:157 tbl_structure.php:471 +#: tbl_tracking.php:316 msgid "Unique" msgstr "Unikal" -#: libraries/Index.class.php:444 tbl_tracking.php:322 +#: libraries/Index.class.php:444 tbl_tracking.php:317 msgid "Packed" msgstr "Qisilgan" -#: libraries/Index.class.php:446 tbl_tracking.php:324 +#: libraries/Index.class.php:446 tbl_tracking.php:319 msgid "Cardinality" msgstr "Elementlar soni" -#: libraries/Index.class.php:449 tbl_tracking.php:278 tbl_tracking.php:327 +#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322 msgid "Comment" msgstr "Izoh" #: libraries/Index.class.php:465 libraries/common.lib.php:609 -#: libraries/common.lib.php:1198 libraries/display_tbl.lib.php:1116 +#: libraries/common.lib.php:1191 libraries/display_tbl.lib.php:1115 #: libraries/import.lib.php:1119 libraries/import.lib.php:1143 -#: pdf_pages.php:284 setup/frames/index.inc.php:124 +#: pdf_pages.php:283 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:349 tbl_row_action.php:68 msgid "Edit" msgstr "Tahrirlash" @@ -1438,15 +1417,15 @@ msgid "" msgstr " %1$s va %2$s indekslari bir xil, ulardan birini o‘chirish mumkin." #: libraries/List_Database.class.php:430 libraries/server_links.inc.php:40 -#: server_databases.php:87 server_privileges.php:1652 +#: server_databases.php:85 server_privileges.php:1656 #: setup/lib/messages.inc.php:107 test/theme.php:92 msgid "Databases" msgstr "Ma`lumotlar bazalari" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:259 libraries/import.lib.php:134 pdf_schema.php:31 -#: pdf_schema.php:231 tbl_change.php:1023 tbl_operations.php:212 -#: tbl_relation.php:289 view_operations.php:61 +#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 +#: tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Xatolik" @@ -1474,40 +1453,40 @@ msgid_plural "%1$d rows inserted." msgstr[0] "%1$d ta qatorlar qo‘yildi." msgstr[1] "%1$d ta qatorlar qo‘yildi." -#: libraries/StorageEngine.class.php:196 +#: libraries/StorageEngine.class.php:194 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:352 +#: libraries/StorageEngine.class.php:354 #, php-format msgid "%s is available on this MySQL server." msgstr "Ushbu MySQL serveri \"%s\" turdagi jadvallar bilan ishlay oladi." -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:357 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "\"%s\" turidagi jadvallar ushbu MySQL serverda faolsizlantirilgan." -#: libraries/StorageEngine.class.php:359 +#: libraries/StorageEngine.class.php:361 #, 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:1018 +#: libraries/Table.class.php:1017 msgid "Invalid database" msgstr "Noto‘g‘ri ma`lumotlar bazasi" -#: libraries/Table.class.php:1032 tbl_get_field.php:25 +#: libraries/Table.class.php:1031 tbl_get_field.php:25 msgid "Invalid table name" msgstr "Jadval nomi noto‘g‘ri" -#: libraries/Table.class.php:1047 +#: libraries/Table.class.php:1046 #, 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:1131 +#: libraries/Table.class.php:1129 #, php-format msgid "Table %s has been renamed to %s" msgstr "`\"%s\"` jadvalining nomi `\"%s\"` deb o‘zgartirildi." @@ -1525,22 +1504,22 @@ msgstr "Oldindan ko‘rish mumkin emas." msgid "take it" msgstr "Tadbiq qilish" -#: libraries/Theme_Manager.class.php:114 +#: libraries/Theme_Manager.class.php:109 #, php-format msgid "Default theme %s not found!" msgstr " \"%s\" asl mavzusi topilmadi!" -#: libraries/Theme_Manager.class.php:152 +#: libraries/Theme_Manager.class.php:147 #, php-format msgid "Theme %s not found!" msgstr " \"%s\" mavzusi topilmadi!" -#: libraries/Theme_Manager.class.php:220 +#: 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:296 test/theme.php:160 themes.php:20 +#: libraries/Theme_Manager.class.php:291 test/theme.php:160 themes.php:20 #: themes.php:40 msgid "Theme / Style" msgstr "Mavzu / Uslub" @@ -1656,19 +1635,19 @@ msgstr "To‘g‘ri autentifikatsiya kaliti ulanmagan" msgid "Authenticating..." msgstr "Autentifikatsiya..." -#: libraries/blobstreaming.lib.php:689 +#: libraries/blobstreaming.lib.php:340 msgid "View image" msgstr "Rasm ko‘rinishi" -#: libraries/blobstreaming.lib.php:693 +#: libraries/blobstreaming.lib.php:344 msgid "Play audio" msgstr "Audiofaylni o‘qish" -#: libraries/blobstreaming.lib.php:698 +#: libraries/blobstreaming.lib.php:349 msgid "View video" msgstr "Vidеo ko‘rinishi" -#: libraries/blobstreaming.lib.php:702 +#: libraries/blobstreaming.lib.php:353 msgid "Download file" msgstr "Faylni yuklab olish" @@ -1727,7 +1706,7 @@ msgstr "" "phpMyAdmin konfiguratsion faylida noto‘g‘ri autentifikatsiya usuli " "belgilangan:" -#: libraries/common.inc.php:909 +#: libraries/common.inc.php:908 #, php-format msgid "You should upgrade to %s %s or later." msgstr " \"%s\" ni \"%s\" versiyaga yoki kattaroq versiyaga yangilash zarur." @@ -1754,7 +1733,8 @@ msgstr "Yuborildi" #: libraries/common.lib.php:425 libraries/common.lib.php:427 #: libraries/common.lib.php:429 libraries/common.lib.php:445 #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 -#: libraries/display_export.lib.php:163 libraries/relation.lib.php:84 +#: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 +#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 #: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" @@ -1769,152 +1749,152 @@ msgstr "SQL so‘rovi" msgid "MySQL said: " msgstr "MySQL javobi: " -#: libraries/common.lib.php:1136 +#: libraries/common.lib.php:1129 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "Failed to connect to SQL validator!" msgstr "MySQL-serverga ulanib bo‘lmadi" -#: libraries/common.lib.php:1174 setup/lib/messages.inc.php:350 +#: libraries/common.lib.php:1167 setup/lib/messages.inc.php:350 msgid "Explain SQL" msgstr "So‘rov tahlili" -#: libraries/common.lib.php:1177 +#: libraries/common.lib.php:1170 msgid "Skip Explain SQL" msgstr "Tahlil kerak emas" -#: libraries/common.lib.php:1211 +#: libraries/common.lib.php:1204 msgid "Without PHP Code" msgstr "PHP-kod olib tashlash" -#: libraries/common.lib.php:1214 setup/lib/messages.inc.php:352 +#: libraries/common.lib.php:1207 setup/lib/messages.inc.php:352 msgid "Create PHP Code" msgstr "PHP-kod" -#: libraries/common.lib.php:1232 server_status.php:451 +#: libraries/common.lib.php:1225 server_status.php:451 #: setup/lib/messages.inc.php:351 msgid "Refresh" msgstr "Yangilash" -#: libraries/common.lib.php:1241 +#: libraries/common.lib.php:1234 msgid "Skip Validate SQL" msgstr "SQL sintaksisi tekshiruvini olib tashlash" -#: libraries/common.lib.php:1244 setup/lib/messages.inc.php:353 +#: libraries/common.lib.php:1237 setup/lib/messages.inc.php:353 msgid "Validate SQL" msgstr "SQL to‘g‘riligini tekshirish" -#: libraries/common.lib.php:1283 +#: libraries/common.lib.php:1287 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1285 +#: libraries/common.lib.php:1289 #, fuzzy #| msgid "Engines" msgid "Inline" msgstr "Jadval turlari" -#: libraries/common.lib.php:1339 libraries/common.lib.php:1354 +#: libraries/common.lib.php:1343 libraries/common.lib.php:1358 msgid "Profiling" msgstr "Profillashtirish" -#: libraries/common.lib.php:1358 libraries/tbl_triggers.lib.php:27 +#: libraries/common.lib.php:1362 libraries/tbl_triggers.lib.php:27 #: server_processlist.php:57 msgid "Time" msgstr "Vaqt" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "B" msgstr "Bayt" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "KiB" msgstr "KB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "MiB" msgstr "MB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "GiB" msgstr "GB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "TiB" msgstr "TB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "PiB" msgstr "PB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "EiB" msgstr "EB" #. l10n: Thousands separator -#: libraries/common.lib.php:1424 +#: libraries/common.lib.php:1428 msgid "," msgstr " " #. l10n: Decimal separator -#: libraries/common.lib.php:1426 +#: libraries/common.lib.php:1430 msgid "." msgstr "," #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1603 +#: libraries/common.lib.php:1607 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y y., %H:%M" -#: libraries/common.lib.php:1909 +#: libraries/common.lib.php:1913 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "\"%s\" kun, \"%s\" soat, \"%s\" minut va \"%s\" sekund" -#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 -#: libraries/display_tbl.lib.php:289 server_status.php:718 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 +#: libraries/display_tbl.lib.php:288 server_status.php:718 msgid "Begin" msgstr "Boshi" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 -#: libraries/display_tbl.lib.php:290 server_binlog.php:154 +#: libraries/common.lib.php:2328 libraries/common.lib.php:2331 +#: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "Orqaga" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 -#: libraries/display_tbl.lib.php:352 +#: libraries/common.lib.php:2359 libraries/common.lib.php:2362 +#: libraries/display_tbl.lib.php:351 msgid "End" msgstr "Oxiri" -#: libraries/common.lib.php:2429 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr " \"%s\" ma`lumotlar bazasiga o‘tish" -#: libraries/common.lib.php:2448 +#: libraries/common.lib.php:2453 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" " \"%s\" parametrining ishi ma`lum xatolikka olib kelishi mumkin, batafsil " "ma`lumot uchun qarang \"%s\"" -#: libraries/common.lib.php:2828 libraries/common.lib.php:2835 -#: libraries/db_links.inc.php:67 libraries/export/sql.php:24 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 +#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 -#: libraries/tbl_links.inc.php:59 querywindow.php:89 test/theme.php:96 +#: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2837 libraries/db_links.inc.php:103 -#: libraries/tbl_links.inc.php:94 libraries/tbl_links.inc.php:116 -#: view_operations.php:88 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: view_operations.php:87 msgid "Operations" msgstr "Operatsiyalar" -#: libraries/core.lib.php:282 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1930,38 +1910,38 @@ msgstr "Hodisalar" msgid "Name" msgstr "Nomi" -#: libraries/db_links.inc.php:44 +#: libraries/db_links.inc.php:43 #, php-format msgid "Database %s has been dropped." msgstr " \"%s\" ma`lumotlar ombori o‘chirildi." -#: libraries/db_links.inc.php:56 libraries/db_links.inc.php:57 -#: libraries/db_links.inc.php:58 +#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 +#: libraries/db_links.inc.php:57 msgid "Database seems to be empty!" msgstr "Ma`lumotlar bazasi bo‘sh!" -#: libraries/db_links.inc.php:80 libraries/relation.lib.php:142 -#: libraries/tbl_links.inc.php:68 +#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "Kuzatish" -#: libraries/db_links.inc.php:85 +#: libraries/db_links.inc.php:84 msgid "Query" msgstr "So‘rov" -#: libraries/db_links.inc.php:90 libraries/relation.lib.php:138 +#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 msgid "Designer" msgstr "Dizayner" -#: libraries/db_links.inc.php:97 libraries/server_links.inc.php:87 -#: libraries/tbl_links.inc.php:90 pmd_pdf.php:83 pmd_pdf.php:109 +#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Import" -#: libraries/db_links.inc.php:110 libraries/server_links.inc.php:65 -#: server_privileges.php:111 server_privileges.php:1714 -#: server_privileges.php:2063 test/theme.php:116 +#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: server_privileges.php:110 server_privileges.php:1718 +#: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" msgstr "Privilegiyalar" @@ -1973,7 +1953,7 @@ msgstr "Muolajalar" msgid "Return type" msgstr "Qaytariladigan tip" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1847 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1806 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -1981,8 +1961,8 @@ msgstr "" "Taxminiy bo‘lishi mumkin. [a@./Documentation." "html#faq3_11@Documentation]\"FAQ 3.11\"[/a]ga qarang" -#: libraries/db_structure.lib.php:60 server_databases.php:141 -#: tbl_printview.php:334 tbl_structure.php:681 +#: libraries/db_structure.lib.php:60 server_databases.php:139 +#: tbl_printview.php:333 tbl_structure.php:679 msgid "Overhead" msgstr "Fragmentlangan" @@ -2001,7 +1981,7 @@ msgstr "Server javob bermayapti" 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:358 tbl_structure.php:607 +#: libraries/dbi/mysql.dbi.lib.php:358 tbl_structure.php:605 msgid "Details..." msgstr "Tafsilotlar..." @@ -2011,22 +1991,22 @@ msgid "Change password" msgstr "Parolni o‘zgartirish" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:807 +#: libraries/replication_gui.lib.php:347 server_privileges.php:806 msgid "No Password" msgstr "Parol yo‘q" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1530 server_synchronize.php:1174 +#: libraries/replication_gui.lib.php:351 server_privileges.php:795 +#: server_privileges.php:799 server_privileges.php:810 +#: server_privileges.php:1534 server_synchronize.php:1173 msgid "Password" msgstr "Parol" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:815 server_privileges.php:818 +#: server_privileges.php:814 server_privileges.php:817 msgid "Re-type" msgstr "Tasdiqlash" @@ -2049,8 +2029,8 @@ msgstr "Yangi ma`lumotlar bazasi tuzish" msgid "Create" msgstr "Tuzish" -#: libraries/display_create_database.lib.php:39 server_privileges.php:113 -#: server_privileges.php:1419 server_replication.php:34 +#: libraries/display_create_database.lib.php:39 server_privileges.php:112 +#: server_privileges.php:1423 server_replication.php:33 msgid "No Privileges" msgstr "Privilegiyalar yo‘q" @@ -2071,52 +2051,52 @@ msgstr "\"%s\" ma`lumotlar bazasida yangi jadval tuzish" msgid "Number of columns" msgstr "Maydonlar soni " -#: libraries/display_export.lib.php:41 +#: libraries/display_export.lib.php:35 msgid "Could not load export plugins, please check your installation!" msgstr "" "Eksport modullari mavjud emas! O‘rnatilgan phpMyAdmin nusxasining libraries/" "export katalogini tekshiring." -#: libraries/display_export.lib.php:106 +#: libraries/display_export.lib.php:100 #, fuzzy, php-format #| msgid "Dump %s row(s) starting at record # %s" msgid "Dump %s row(s) starting at row # %s" msgstr "# %s yozuvidan boshlab %s satrni damp qilish." -#: libraries/display_export.lib.php:114 +#: libraries/display_export.lib.php:108 msgid "Dump all rows" msgstr "Barcha qatorlarni damp qilish" -#: libraries/display_export.lib.php:124 setup/lib/messages.inc.php:79 +#: libraries/display_export.lib.php:118 setup/lib/messages.inc.php:79 msgid "Save as file" msgstr "Fayl kabi saqlash" -#: libraries/display_export.lib.php:133 +#: libraries/display_export.lib.php:127 #, php-format msgid "Save on server in %s directory" msgstr "Serverdagi \"%s\" katalokka saqlash" -#: libraries/display_export.lib.php:141 setup/lib/messages.inc.php:87 +#: libraries/display_export.lib.php:135 setup/lib/messages.inc.php:87 msgid "Overwrite existing file(s)" msgstr "Mavjud fayl(lar) ustidan yozish" -#: libraries/display_export.lib.php:147 +#: libraries/display_export.lib.php:141 msgid "File name template" msgstr "Fayl nomi shabloni" -#: libraries/display_export.lib.php:151 +#: libraries/display_export.lib.php:145 msgid "server name" msgstr "server nomi" -#: libraries/display_export.lib.php:154 +#: libraries/display_export.lib.php:148 msgid "database name" msgstr "ma`lumotlar bazasi nomi" -#: libraries/display_export.lib.php:157 +#: libraries/display_export.lib.php:151 msgid "table name" msgstr "jadval nomi" -#: libraries/display_export.lib.php:161 +#: libraries/display_export.lib.php:155 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2127,39 +2107,39 @@ msgstr "" "hozirgi vaqt va sanani qo‘yish mumkin. Qo‘shimcha ravishda quyidagilar " "ishlatilishi mumkin: %3$s. Matnning boshqa qismlari o‘zgarishsiz qoladi." -#: libraries/display_export.lib.php:202 +#: libraries/display_export.lib.php:196 msgid "remember template" msgstr " shablonni yodda tutish" -#: libraries/display_export.lib.php:210 libraries/display_import.lib.php:177 +#: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 #: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 msgid "Character set of the file:" msgstr "Fayl kodirovkasi: " -#: libraries/display_export.lib.php:235 setup/lib/messages.inc.php:81 +#: libraries/display_export.lib.php:229 setup/lib/messages.inc.php:81 msgid "Compression" msgstr "Siqish" -#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:196 -#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:529 -#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:574 -#: server_privileges.php:1867 server_processlist.php:74 +#: libraries/display_export.lib.php:234 libraries/display_import.lib.php:196 +#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:528 +#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:573 +#: server_privileges.php:1871 server_processlist.php:74 msgid "None" msgstr "Yo‘q" -#: libraries/display_export.lib.php:247 +#: libraries/display_export.lib.php:241 msgid "\"zipped\"" msgstr "zip" -#: libraries/display_export.lib.php:253 +#: libraries/display_export.lib.php:247 msgid "\"gzipped\"" msgstr "gzip" -#: libraries/display_export.lib.php:259 +#: libraries/display_export.lib.php:253 msgid "\"bzipped\"" msgstr "bzip yordamida siqilgan" -#: libraries/display_export.lib.php:274 libraries/export/sql.php:42 +#: libraries/display_export.lib.php:268 libraries/export/sql.php:42 #: libraries/import/sql.php:31 msgid "SQL compatibility mode" msgstr "SQL bilan moslik rejimi" @@ -2199,12 +2179,12 @@ msgid "File uploads are not allowed on this server." msgstr "Fayllarni serverga yuklab bo‘lmadi." #: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 -#: tbl_change.php:1024 +#: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "Ko‘rsatilgan katalokka yuklab bo‘lmadi" #: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 -#: tbl_change.php:1027 +#: tbl_change.php:925 msgid "web server upload directory" msgstr "Yuklash katalogidan" @@ -2292,45 +2272,45 @@ msgstr "Qog‘oz o‘lchami" msgid "Language" msgstr "Til" -#: libraries/display_tbl.lib.php:303 +#: libraries/display_tbl.lib.php:302 #, php-format msgid "%d is not valid row number." msgstr " %d soni to‘g‘ri qator raqami emas!" -#: libraries/display_tbl.lib.php:309 +#: libraries/display_tbl.lib.php:308 #, fuzzy #| msgid "row(s) starting from record #" msgid "row(s) starting from row #" msgstr "ta qator quyidagi qatordan boshlab " -#: libraries/display_tbl.lib.php:315 +#: libraries/display_tbl.lib.php:314 msgid "horizontal" msgstr "gorizontal" -#: libraries/display_tbl.lib.php:316 +#: libraries/display_tbl.lib.php:315 msgid "horizontal (rotated headers)" msgstr "gorizontal (aylantirilgan sarlavhalar)" -#: libraries/display_tbl.lib.php:317 +#: libraries/display_tbl.lib.php:316 msgid "vertical" msgstr "vertikal" -#: libraries/display_tbl.lib.php:323 +#: libraries/display_tbl.lib.php:322 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "" "\"%s\" rejimida va sarlavhalarni har \"%s\" katakchadan keyin takrorlash" -#: libraries/display_tbl.lib.php:345 +#: libraries/display_tbl.lib.php:344 msgid "This operation could take a long time. Proceed anyway?" msgstr "" "Ushbu operatsiyani bajarish uzoq vaqt talab qilishi mumkin. Davom etsinmi? " -#: libraries/display_tbl.lib.php:511 +#: libraries/display_tbl.lib.php:510 msgid "Sort by key" msgstr "Indeks bo‘yicha sortirovka qilish" -#: libraries/display_tbl.lib.php:554 libraries/export/codegen.php:38 +#: libraries/display_tbl.lib.php:553 libraries/export/codegen.php:38 #: libraries/export/csv.php:29 libraries/export/excel.php:34 #: libraries/export/htmlword.php:28 libraries/export/latex.php:32 #: libraries/export/mediawiki.php:21 libraries/export/ods.php:26 @@ -2340,99 +2320,99 @@ msgstr "Indeks bo‘yicha sortirovka qilish" #: libraries/export/xlsx.php:26 libraries/export/xml.php:23 #: libraries/export/yaml.php:27 libraries/import.lib.php:1114 #: libraries/import.lib.php:1136 libraries/import/csv.php:31 -#: libraries/import/docsql.php:33 libraries/import/ldi.php:46 +#: libraries/import/docsql.php:32 libraries/import/ldi.php:46 #: libraries/import/ods.php:30 libraries/import/sql.php:19 #: libraries/import/xls.php:25 libraries/import/xlsx.php:25 -#: libraries/import/xml.php:25 tbl_select.php:264 tbl_structure.php:752 +#: libraries/import/xml.php:25 tbl_select.php:263 tbl_structure.php:750 msgid "Options" msgstr "Parametrlar" -#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:569 +#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:568 msgid "Partial Texts" msgstr "Ma`lumotlarni qisqartirib ko‘rsatish" -#: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:573 +#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:572 msgid "Full Texts" msgstr "Ma`lumotlarni kengaytirilgan holda ko‘rsatish" -#: libraries/display_tbl.lib.php:586 +#: libraries/display_tbl.lib.php:585 msgid "Relational key" msgstr "Aloqador kalit" -#: libraries/display_tbl.lib.php:587 +#: libraries/display_tbl.lib.php:586 #, fuzzy #| msgid "Relational display field" msgid "Relational display column" msgstr "Aloqador maydon qiymati" -#: libraries/display_tbl.lib.php:594 +#: libraries/display_tbl.lib.php:593 msgid "Show binary contents" msgstr "Ikkilik ma`lumotlarni ko‘rsatish" -#: libraries/display_tbl.lib.php:596 +#: libraries/display_tbl.lib.php:595 msgid "Show BLOB contents" msgstr "BLOB turidagi ma`lumotlarni ko‘rsatish" -#: libraries/display_tbl.lib.php:598 +#: libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "Ikkilik ma’lumotlarni o‘n oltilik shaklda ko‘rsatish" -#: libraries/display_tbl.lib.php:606 pmd_general.php:140 tbl_change.php:312 -#: tbl_change.php:318 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:307 +#: tbl_change.php:313 msgid "Hide" msgstr "Yashirish" -#: libraries/display_tbl.lib.php:606 libraries/relation.lib.php:122 -#: libraries/tbl_properties.inc.php:143 transformation_overview.php:46 +#: libraries/display_tbl.lib.php:605 libraries/relation.lib.php:117 +#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46 msgid "Browser transformation" msgstr "O‘girish" -#: libraries/display_tbl.lib.php:1125 libraries/display_tbl.lib.php:1129 -#: libraries/display_tbl.lib.php:1131 +#: libraries/display_tbl.lib.php:1124 libraries/display_tbl.lib.php:1128 +#: libraries/display_tbl.lib.php:1130 msgid "Execute bookmarked query" msgstr "Belgilangan so‘rovni bajarish" -#: libraries/display_tbl.lib.php:1144 libraries/display_tbl.lib.php:1156 +#: libraries/display_tbl.lib.php:1143 libraries/display_tbl.lib.php:1155 msgid "The row has been deleted" msgstr "Yozuv o‘chirildi" -#: libraries/display_tbl.lib.php:1183 libraries/display_tbl.lib.php:2055 +#: libraries/display_tbl.lib.php:1182 libraries/display_tbl.lib.php:2014 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "Tugatish" -#: libraries/display_tbl.lib.php:1933 +#: libraries/display_tbl.lib.php:1892 msgid "in query" msgstr "so‘rov bo‘yicha" -#: libraries/display_tbl.lib.php:1951 +#: libraries/display_tbl.lib.php:1910 msgid "Showing rows" msgstr "Yozuvlarni ko‘rsatish" -#: libraries/display_tbl.lib.php:1961 +#: libraries/display_tbl.lib.php:1920 msgid "total" msgstr "jami" -#: libraries/display_tbl.lib.php:1969 sql.php:523 +#: libraries/display_tbl.lib.php:1928 sql.php:522 #, php-format msgid "Query took %01.4f sec" msgstr "So‘rov %01.4f sekund vaqt oldi" -#: libraries/display_tbl.lib.php:2088 libraries/mult_submits.inc.php:112 -#: querywindow.php:115 querywindow.php:119 querywindow.php:122 -#: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:469 +#: libraries/display_tbl.lib.php:2047 libraries/mult_submits.inc.php:112 +#: querywindow.php:114 querywindow.php:118 querywindow.php:121 +#: tbl_structure.php:23 tbl_structure.php:148 tbl_structure.php:467 msgid "Change" msgstr "O‘zgartirish" -#: libraries/display_tbl.lib.php:2158 +#: libraries/display_tbl.lib.php:2117 msgid "Query results operations" msgstr "So‘rov natijalarini ishlatish" -#: libraries/display_tbl.lib.php:2186 +#: libraries/display_tbl.lib.php:2145 msgid "Print view (with full texts)" msgstr "Chop etish versiyasi (to‘la)" -#: libraries/display_tbl.lib.php:2359 +#: libraries/display_tbl.lib.php:2318 msgid "Link not found" msgstr "Aloqa topilmadi" @@ -2489,9 +2469,9 @@ msgstr "InnoDB ahvoli" msgid "Buffer Pool Usage" msgstr "Ishlatilish" -#: libraries/engines/innodb.lib.php:168 server_databases.php:136 -#: server_databases.php:304 server_status.php:524 server_status.php:585 -#: server_status.php:606 tbl_printview.php:349 tbl_structure.php:695 +#: libraries/engines/innodb.lib.php:168 server_databases.php:134 +#: server_databases.php:302 server_status.php:524 server_status.php:585 +#: server_status.php:606 tbl_printview.php:348 tbl_structure.php:693 msgid "Total" msgstr "Jami" @@ -2631,6 +2611,87 @@ msgstr "" "INDEX yoki ALTER TABLE buyruqlari yordamida indeks tuzish uchun kerak " "bo‘lgan bufer hajmi." +#: libraries/engines/pbms.lib.php:31 +#, fuzzy +#| msgid "Garbage threshold" +msgid "Garbage Threshold" +msgstr "Axlatlanish ostonasi" + +#: libraries/engines/pbms.lib.php:32 +#, fuzzy +#| msgid "" +#| "The percentage of garbage in a data log file before it is compacted. This " +#| "is a value between 1 and 99. The default is 50." +msgid "The percentage of garbage in a repository file before it is compacted." +msgstr "" +"Ixchamlashtirishdan oldin ma`lumotlar jurnali fayli axlatlanishining foiz " +"nisbati. Qiymat 1 va 99 orasidabo‘lishi shart. Asl qiymati – 50." + +#: libraries/engines/pbms.lib.php:36 libraries/replication_gui.lib.php:69 +#: server_synchronize.php:1161 +msgid "Port" +msgstr "Port" + +#: libraries/engines/pbms.lib.php:37 +msgid "" +"The port for the PBMS stream-based communications. Setting this value to 0 " +"will disable HTTP communication with the daemon." +msgstr "" + +#: libraries/engines/pbms.lib.php:41 +msgid "Repository Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:42 +msgid "" +"The maximum size of a BLOB repository file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:46 +msgid "Temp Blob Timeout" +msgstr "" + +#: libraries/engines/pbms.lib.php:47 +msgid "" +"The timeout, in seconds, for temporary BLOBs. Uploaded BLOB data is removed " +"after this time, unless they are referenced by a record in the database." +msgstr "" + +#: libraries/engines/pbms.lib.php:51 +#, fuzzy +#| msgid "Log file threshold" +msgid "Temp Log Threshold" +msgstr "Jurnal fayli ostonasi" + +#: libraries/engines/pbms.lib.php:52 +msgid "" +"The maximum size of a temporary BLOB log file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:56 +msgid "Max Keep Alive" +msgstr "" + +#: libraries/engines/pbms.lib.php:57 +msgid "" +"The timeout for inactive connection with the keep-alive flag set. After this " +"time the connection will be closed. The time-out is in milliseconds (1/1000)." +msgstr "" + +#: libraries/engines/pbms.lib.php:61 +msgid "Metadata Headers" +msgstr "" + +#: libraries/engines/pbms.lib.php:62 +msgid "" +"A \":\" delimited list of metadata headers to be used to initialize the " +"pbms_metadata_header table when a database is created." +msgstr "" + #: libraries/engines/pbxt.lib.php:22 msgid "Index cache size" msgstr "Indeks keshi hajmi" @@ -2781,7 +2842,7 @@ msgstr "" "tartibda raqamlanadi." #: libraries/export/codegen.php:36 setup/lib/messages.inc.php:85 -#: tbl_printview.php:374 tbl_structure.php:736 +#: tbl_printview.php:373 tbl_structure.php:734 msgid "Format" msgstr "Format" @@ -2854,9 +2915,9 @@ msgstr "Microsoft Word 2000" #: libraries/export/htmlword.php:23 libraries/export/latex.php:59 #: libraries/export/latex.php:205 libraries/export/odt.php:47 #: libraries/export/sql.php:105 libraries/export/sql.php:865 -#: libraries/export/texytext.php:27 server_databases.php:126 -#: server_privileges.php:576 server_replication.php:315 tbl_printview.php:315 -#: tbl_structure.php:664 +#: libraries/export/texytext.php:27 server_databases.php:124 +#: server_privileges.php:575 server_replication.php:314 tbl_printview.php:314 +#: tbl_structure.php:662 msgid "Data" msgstr "Ma`lumotlar" @@ -2871,7 +2932,6 @@ msgid "Table structure for table" msgstr "Jadval tuzilishi" #: libraries/export/latex.php:13 -#| msgid "Content of table __TABLE__" msgid "Content of table @TABLE@" msgstr " @TABLE@ jadvalining mundarijasi" @@ -2880,7 +2940,6 @@ msgid "(continued)" msgstr "(davomi)" #: libraries/export/latex.php:15 -#| msgid "Structure of table __TABLE__" msgid "Structure of table @TABLE@" msgstr " @TABLE@ jadvalining tuzilishi" @@ -2905,13 +2964,13 @@ msgid "Label key" msgstr "Belgi identifikatori" #: libraries/export/latex.php:46 libraries/export/odt.php:34 -#: libraries/export/sql.php:90 tbl_relation.php:398 +#: libraries/export/sql.php:90 tbl_relation.php:396 msgid "Relations" msgstr "Aloqalar" #: libraries/export/latex.php:52 libraries/export/odt.php:40 #: libraries/export/odt.php:317 libraries/export/sql.php:94 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "MIME turi" @@ -2919,10 +2978,10 @@ msgstr "MIME turi" #: libraries/export/xml.php:101 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1529 server_privileges.php:2061 -#: server_processlist.php:54 server_synchronize.php:1158 +#: libraries/replication_gui.lib.php:331 server_privileges.php:730 +#: server_privileges.php:733 server_privileges.php:789 +#: server_privileges.php:1533 server_privileges.php:2065 +#: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "Xost" @@ -3112,8 +3171,8 @@ msgstr "Ko‘rinishlarni eksport qilish" msgid "Export contents" msgstr "Tarkibini eksport qilish" -#: libraries/footer.inc.php:182 libraries/footer.inc.php:193 -#: libraries/footer.inc.php:196 +#: libraries/footer.inc.php:180 libraries/footer.inc.php:191 +#: libraries/footer.inc.php:194 msgid "Open new phpMyAdmin window" msgstr "phpMyAdmin dasturini yangi oynada ochish" @@ -3129,7 +3188,7 @@ msgstr "SQL so‘rovi natijasi" msgid "Generated by" msgstr "Tuzilgan" -#: libraries/import.lib.php:151 sql.php:519 tbl_change.php:180 +#: libraries/import.lib.php:151 sql.php:518 tbl_change.php:175 #: 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)." @@ -3187,7 +3246,7 @@ msgstr "Takroriy qatorlarga e`tibor bermaslik" msgid "Column names in first row" msgstr "Birinchi qatorga ustun nomlari" -#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:501 +#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:500 #: view_create.php:147 msgid "Column names" msgstr "Maydon nomlari" @@ -3217,12 +3276,12 @@ msgid "Invalid column count in CSV input on line %d." msgstr "" "Kiritilayotgan CSV ma`lumotlarning %d qatoridagi maydonlar soni noto‘g‘ri." -#: libraries/import/docsql.php:28 +#: libraries/import/docsql.php:27 msgid "DocSQL" msgstr "DocSQL" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 -#: server_synchronize.php:427 server_synchronize.php:870 +#: libraries/import/docsql.php:30 libraries/tbl_properties.inc.php:616 +#: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "Jadval nomi" @@ -3283,26 +3342,26 @@ msgstr "Yo‘q" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:512 -#: tbl_structure.php:28 tbl_structure.php:152 tbl_structure.php:156 -#: tbl_structure.php:472 +#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:511 +#: tbl_structure.php:27 tbl_structure.php:151 tbl_structure.php:155 +#: tbl_structure.php:470 msgid "Primary" msgstr "Birlamchi" #: libraries/mult_submits.inc.php:97 libraries/tbl_properties.inc.php:115 -#: libraries/tbl_properties.inc.php:524 tbl_printview.php:324 -#: tbl_structure.php:30 tbl_structure.php:153 tbl_structure.php:157 -#: tbl_structure.php:474 tbl_structure.php:672 +#: libraries/tbl_properties.inc.php:523 tbl_printview.php:323 +#: tbl_structure.php:29 tbl_structure.php:152 tbl_structure.php:156 +#: tbl_structure.php:472 tbl_structure.php:670 msgid "Index" msgstr "Indeks" -#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:530 -#: tbl_structure.php:34 tbl_structure.php:155 tbl_structure.php:159 -#: tbl_structure.php:477 +#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:529 +#: tbl_structure.php:33 tbl_structure.php:154 tbl_structure.php:158 +#: tbl_structure.php:475 msgid "Fulltext" msgstr "Matn to‘laligicha" -#: libraries/mult_submits.inc.php:434 tbl_replace.php:330 +#: libraries/mult_submits.inc.php:433 tbl_replace.php:330 msgid "No change" msgstr "O‘zgarish yo‘q" @@ -3310,190 +3369,190 @@ msgstr "O‘zgarish yo‘q" msgid "Charset" msgstr "Kodirovka" -#: libraries/mysql_charsets.lib.php:210 libraries/mysql_charsets.lib.php:411 -#: tbl_change.php:515 +#: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 +#: tbl_change.php:510 msgid "Binary" msgstr "Ikkilik" -#: libraries/mysql_charsets.lib.php:222 +#: libraries/mysql_charsets.lib.php:214 msgid "Bulgarian" msgstr "Bolgarcha" -#: libraries/mysql_charsets.lib.php:226 libraries/mysql_charsets.lib.php:351 +#: libraries/mysql_charsets.lib.php:218 libraries/mysql_charsets.lib.php:343 msgid "Simplified Chinese" msgstr "Soddalashtirilgan xitoycha" -#: libraries/mysql_charsets.lib.php:228 libraries/mysql_charsets.lib.php:371 +#: libraries/mysql_charsets.lib.php:220 libraries/mysql_charsets.lib.php:363 msgid "Traditional Chinese" msgstr "An`anaviy xitoycha" -#: libraries/mysql_charsets.lib.php:232 libraries/mysql_charsets.lib.php:418 +#: libraries/mysql_charsets.lib.php:224 libraries/mysql_charsets.lib.php:410 msgid "case-insensitive" msgstr "harflar katta-kichikligi farqlanmaydi" -#: libraries/mysql_charsets.lib.php:235 libraries/mysql_charsets.lib.php:420 +#: libraries/mysql_charsets.lib.php:227 libraries/mysql_charsets.lib.php:412 msgid "case-sensitive" msgstr "harflar katta-kichikligi farqlanadi" -#: libraries/mysql_charsets.lib.php:238 +#: libraries/mysql_charsets.lib.php:230 msgid "Croatian" msgstr "Xorvatcha" -#: libraries/mysql_charsets.lib.php:241 +#: libraries/mysql_charsets.lib.php:233 msgid "Czech" msgstr "Chexcha" -#: libraries/mysql_charsets.lib.php:244 +#: libraries/mysql_charsets.lib.php:236 msgid "Danish" msgstr "Daniyacha" -#: libraries/mysql_charsets.lib.php:247 +#: libraries/mysql_charsets.lib.php:239 msgid "English" msgstr "Inglizcha" -#: libraries/mysql_charsets.lib.php:250 +#: libraries/mysql_charsets.lib.php:242 msgid "Esperanto" msgstr "Esperanto" -#: libraries/mysql_charsets.lib.php:253 +#: libraries/mysql_charsets.lib.php:245 msgid "Estonian" msgstr "Estoncha" -#: libraries/mysql_charsets.lib.php:256 libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:248 libraries/mysql_charsets.lib.php:251 msgid "German" msgstr "Nemischa" -#: libraries/mysql_charsets.lib.php:256 +#: libraries/mysql_charsets.lib.php:248 msgid "dictionary" msgstr "lug‘at" -#: libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:251 msgid "phone book" msgstr "telefonlar kitobi" -#: libraries/mysql_charsets.lib.php:262 +#: libraries/mysql_charsets.lib.php:254 msgid "Hungarian" msgstr "Vengercha" -#: libraries/mysql_charsets.lib.php:265 +#: libraries/mysql_charsets.lib.php:257 msgid "Icelandic" msgstr "Islandcha" -#: libraries/mysql_charsets.lib.php:268 libraries/mysql_charsets.lib.php:358 +#: libraries/mysql_charsets.lib.php:260 libraries/mysql_charsets.lib.php:350 msgid "Japanese" msgstr "Yaponcha" -#: libraries/mysql_charsets.lib.php:271 +#: libraries/mysql_charsets.lib.php:263 msgid "Latvian" msgstr "Latishcha" -#: libraries/mysql_charsets.lib.php:274 +#: libraries/mysql_charsets.lib.php:266 msgid "Lithuanian" msgstr "Litvacha" -#: libraries/mysql_charsets.lib.php:277 libraries/mysql_charsets.lib.php:380 +#: libraries/mysql_charsets.lib.php:269 libraries/mysql_charsets.lib.php:372 msgid "Korean" msgstr "Koreyscha" -#: libraries/mysql_charsets.lib.php:280 +#: libraries/mysql_charsets.lib.php:272 msgid "Persian" msgstr "Forscha" -#: libraries/mysql_charsets.lib.php:283 +#: libraries/mysql_charsets.lib.php:275 msgid "Polish" msgstr "Polyakcha" -#: libraries/mysql_charsets.lib.php:286 libraries/mysql_charsets.lib.php:334 +#: libraries/mysql_charsets.lib.php:278 libraries/mysql_charsets.lib.php:326 msgid "West European" msgstr "G‘arbiy-Yevropacha" -#: libraries/mysql_charsets.lib.php:289 +#: libraries/mysql_charsets.lib.php:281 msgid "Romanian" msgstr "Rumincha" -#: libraries/mysql_charsets.lib.php:292 +#: libraries/mysql_charsets.lib.php:284 msgid "Slovak" msgstr "Slovakcha" -#: libraries/mysql_charsets.lib.php:295 +#: libraries/mysql_charsets.lib.php:287 msgid "Slovenian" msgstr "Slovencha" -#: libraries/mysql_charsets.lib.php:298 +#: libraries/mysql_charsets.lib.php:290 msgid "Spanish" msgstr "Ispancha" -#: libraries/mysql_charsets.lib.php:301 +#: libraries/mysql_charsets.lib.php:293 msgid "Traditional Spanish" msgstr "An`anaviy ispancha" -#: libraries/mysql_charsets.lib.php:304 libraries/mysql_charsets.lib.php:401 +#: libraries/mysql_charsets.lib.php:296 libraries/mysql_charsets.lib.php:393 msgid "Swedish" msgstr "Shvedcha" -#: libraries/mysql_charsets.lib.php:307 libraries/mysql_charsets.lib.php:404 +#: libraries/mysql_charsets.lib.php:299 libraries/mysql_charsets.lib.php:396 msgid "Thai" msgstr "Taycha" -#: libraries/mysql_charsets.lib.php:310 libraries/mysql_charsets.lib.php:398 +#: libraries/mysql_charsets.lib.php:302 libraries/mysql_charsets.lib.php:390 msgid "Turkish" msgstr "Turkcha" -#: libraries/mysql_charsets.lib.php:313 libraries/mysql_charsets.lib.php:395 +#: libraries/mysql_charsets.lib.php:305 libraries/mysql_charsets.lib.php:387 msgid "Ukrainian" msgstr "Ukraincha" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 msgid "Unicode" msgstr "Yunikod" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 -#: libraries/mysql_charsets.lib.php:334 libraries/mysql_charsets.lib.php:341 -#: libraries/mysql_charsets.lib.php:363 libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 +#: libraries/mysql_charsets.lib.php:326 libraries/mysql_charsets.lib.php:333 +#: libraries/mysql_charsets.lib.php:355 libraries/mysql_charsets.lib.php:366 msgid "multilingual" msgstr "ko‘p tildagi" -#: libraries/mysql_charsets.lib.php:341 +#: libraries/mysql_charsets.lib.php:333 msgid "Central European" msgstr "Markaziy Yevropacha" -#: libraries/mysql_charsets.lib.php:346 +#: libraries/mysql_charsets.lib.php:338 msgid "Russian" msgstr "Ruscha" -#: libraries/mysql_charsets.lib.php:363 +#: libraries/mysql_charsets.lib.php:355 msgid "Baltic" msgstr "Baltikacha" -#: libraries/mysql_charsets.lib.php:368 +#: libraries/mysql_charsets.lib.php:360 msgid "Armenian" msgstr "Armancha" -#: libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:366 msgid "Cyrillic" msgstr "Kirillcha" -#: libraries/mysql_charsets.lib.php:377 +#: libraries/mysql_charsets.lib.php:369 msgid "Arabic" msgstr "Arabcha" -#: libraries/mysql_charsets.lib.php:383 +#: libraries/mysql_charsets.lib.php:375 msgid "Hebrew" msgstr "Yahudiycha" -#: libraries/mysql_charsets.lib.php:386 +#: libraries/mysql_charsets.lib.php:378 msgid "Georgian" msgstr "Gruzincha" -#: libraries/mysql_charsets.lib.php:389 +#: libraries/mysql_charsets.lib.php:381 msgid "Greek" msgstr "Grekcha" -#: libraries/mysql_charsets.lib.php:392 +#: libraries/mysql_charsets.lib.php:384 msgid "Czech-Slovak" msgstr "Chexoslovakcha" -#: libraries/mysql_charsets.lib.php:407 libraries/mysql_charsets.lib.php:414 +#: libraries/mysql_charsets.lib.php:399 libraries/mysql_charsets.lib.php:406 msgid "unknown" msgstr "noma`lum" @@ -3519,62 +3578,62 @@ msgstr "So‘rovlar oynasi" msgid "This format has no options" msgstr "Ushbu format uchun sozlanadigan parametr mavjud emas" -#: libraries/relation.lib.php:82 +#: libraries/relation.lib.php:77 msgid "not OK" msgstr "Tayyor emas" -#: libraries/relation.lib.php:86 pmd_general.php:339 +#: libraries/relation.lib.php:81 pmd_general.php:339 msgid "OK" msgstr "OK" -#: libraries/relation.lib.php:87 +#: libraries/relation.lib.php:82 msgid "Enabled" msgstr "Faollashtirilgan" -#: libraries/relation.lib.php:110 +#: libraries/relation.lib.php:105 msgid "Display Features" msgstr "Imkoniyatlarni ko‘rsatish" -#: libraries/relation.lib.php:116 +#: libraries/relation.lib.php:111 msgid "Creation of PDFs" msgstr "PDF-sxema tuzish" -#: libraries/relation.lib.php:120 +#: libraries/relation.lib.php:115 msgid "Displaying Column Comments" msgstr "Maydon izohlarini ko‘rsatish" -#: libraries/relation.lib.php:125 +#: libraries/relation.lib.php:120 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "\"column_comments\" jadvalini yangilash zarur. Batafsil ma`lumot uchun " "dokumentatsiyaga qarang." -#: libraries/relation.lib.php:130 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 msgid "Bookmarked SQL query" msgstr "Xatcho‘p qo‘yilgan SQL so‘rovi" -#: libraries/relation.lib.php:134 querywindow.php:99 querywindow.php:207 +#: libraries/relation.lib.php:129 querywindow.php:98 querywindow.php:205 msgid "SQL history" msgstr "SQL-so‘rovlar tarixi" -#: libraries/relation.lib.php:146 +#: libraries/relation.lib.php:141 msgid "Quick steps to setup advanced features:" msgstr "Mufassal tanlovlarni tеz sozlash uchun qadamlars:" -#: libraries/relation.lib.php:148 +#: libraries/relation.lib.php:143 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" "Kеrakli jadvallarni script/create_tables.sql kod yordamida " "tuzish." -#: libraries/relation.lib.php:149 +#: libraries/relation.lib.php:144 msgid "Create a pma user and give access to these tables." msgstr "" "phpMyAdmin foydalanuvchisi qo‘shish va ushbu jadvallarga ruxsat bеrish." -#: libraries/relation.lib.php:150 +#: libraries/relation.lib.php:145 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." @@ -3582,13 +3641,13 @@ msgstr "" "(config.inc.php) faylidagi mufassal tanlovlarni faollashtirish, " "masalan, config.sample.inc.php dan boshlab." -#: libraries/relation.lib.php:151 +#: libraries/relation.lib.php:146 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" "Yangilangan konfiguratsiya fayli ishga tushishi uchun, phpMyAdmin dasturidan " "chiqib, qayta kiring." -#: libraries/relation.lib.php:1158 +#: libraries/relation.lib.php:1153 msgid "no description" msgstr "tavsif mavjud emas" @@ -3596,7 +3655,7 @@ msgstr "tavsif mavjud emas" msgid "Slave configuration" msgstr "Tobе sеrvеr konfiguratsiyasi" -#: libraries/replication_gui.lib.php:53 server_replication.php:346 +#: libraries/replication_gui.lib.php:53 server_replication.php:345 msgid "Change or reconfigure master server" msgstr "Bosh sеrvеrni o‘zgartirish yoki qayta konfiguratsiya qilish" @@ -3611,16 +3670,12 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:711 -#: server_privileges.php:714 server_privileges.php:721 -#: server_synchronize.php:1170 +#: libraries/replication_gui.lib.php:261 server_privileges.php:710 +#: server_privileges.php:713 server_privileges.php:720 +#: server_synchronize.php:1169 msgid "User name" msgstr "Foydalanuvchi nomi" -#: libraries/replication_gui.lib.php:69 server_synchronize.php:1162 -msgid "Port" -msgstr "Port" - #: libraries/replication_gui.lib.php:105 msgid "Master status" msgstr "Bosh rеplikatsiya sеrvеri statusi" @@ -3635,8 +3690,8 @@ msgid "Variable" msgstr "O‘zgaruvchi" #: libraries/replication_gui.lib.php:117 server_status.php:737 -#: tbl_change.php:322 tbl_printview.php:368 tbl_select.php:137 -#: tbl_structure.php:728 +#: tbl_change.php:317 tbl_printview.php:367 tbl_select.php:136 +#: tbl_structure.php:726 msgid "Value" msgstr "Qiymati" @@ -3652,38 +3707,38 @@ msgstr "" "Ro‘yxatda faqat \"--report-host=host_name\" tanlovi yordamda yuklangan tobе " "sеrvеrlar ko‘rsatilmoqda." -#: libraries/replication_gui.lib.php:242 server_replication.php:193 +#: libraries/replication_gui.lib.php:242 server_replication.php:192 msgid "Add slave replication user" msgstr "Tobе rеplikatsiya foydalanuvchisini qo‘shish" -#: libraries/replication_gui.lib.php:256 server_privileges.php:716 +#: libraries/replication_gui.lib.php:256 server_privileges.php:715 msgid "Any user" msgstr "Har qaysi foydalanuvchi" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1920 server_privileges.php:1950 +#: libraries/replication_gui.lib.php:348 server_privileges.php:716 +#: server_privileges.php:783 server_privileges.php:807 +#: server_privileges.php:1924 server_privileges.php:1954 msgid "Use text field" msgstr "Matnmaydonini ishlatish" -#: libraries/replication_gui.lib.php:304 server_privileges.php:764 +#: libraries/replication_gui.lib.php:304 server_privileges.php:763 msgid "Any host" msgstr "Har qaysi xost" -#: libraries/replication_gui.lib.php:308 server_privileges.php:768 +#: libraries/replication_gui.lib.php:308 server_privileges.php:767 msgid "Local" msgstr "Lokal" -#: libraries/replication_gui.lib.php:314 server_privileges.php:773 +#: libraries/replication_gui.lib.php:314 server_privileges.php:772 msgid "This Host" msgstr "Ushbu xost" -#: libraries/replication_gui.lib.php:320 server_privileges.php:779 +#: libraries/replication_gui.lib.php:320 server_privileges.php:778 msgid "Use Host Table" msgstr "Xostlar jadvalidan foydalanish" -#: libraries/replication_gui.lib.php:333 server_privileges.php:792 +#: libraries/replication_gui.lib.php:333 server_privileges.php:791 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3711,8 +3766,8 @@ msgstr "Noma`lum til: %1$s." msgid "Servers" msgstr "Serverlar" -#: libraries/server_links.inc.php:52 server_engines.php:111 -#: server_engines.php:115 server_status.php:414 test/theme.php:104 +#: libraries/server_links.inc.php:52 server_engines.php:125 +#: server_engines.php:129 server_status.php:414 test/theme.php:104 msgid "Variables" msgstr "O‘zgaruvchilar" @@ -3733,12 +3788,12 @@ msgstr "Ikkilik jurnal" msgid "Processes" msgstr "Jarayonlar" -#: libraries/server_links.inc.php:91 server_synchronize.php:1091 -#: server_synchronize.php:1099 +#: libraries/server_links.inc.php:91 server_synchronize.php:1090 +#: server_synchronize.php:1098 msgid "Synchronize" msgstr "Sinxronizatsiya qilish" -#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1109 +#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1108 msgid "Source database" msgstr "Manba baza" @@ -3756,7 +3811,7 @@ msgstr "Masofadagi sеrvеr" msgid "Difference" msgstr "Farq" -#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1111 +#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1110 msgid "Target database" msgstr "Nishon baza" @@ -3776,11 +3831,11 @@ msgstr "\"%s\" ma`lumotlar bazasida SQL-so‘rov(lar)ni bajarish" msgid "Columns" msgstr "Maydon nomlari" -#: libraries/sql_query_form.lib.php:342 sql.php:664 sql.php:665 sql.php:682 +#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "Ushbu SQL so‘roviga xatcho‘p tuzish" -#: libraries/sql_query_form.lib.php:349 sql.php:676 +#: libraries/sql_query_form.lib.php:349 sql.php:669 msgid "Let every user access this bookmark" msgstr "Barcha foydalanuvchilarga ruxsat berish" @@ -3877,12 +3932,12 @@ msgstr "" "o‘rnatilganligini tekshiring, batafsil ma`lumot uchun %sdokumentatsiyaga%s " "qarang." -#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:139 -#: libraries/tbl_links.inc.php:140 +#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 +#: libraries/tbl_links.inc.php:139 msgid "Table seems to be empty!" msgstr "Jadval - bo‘sh!" -#: libraries/tbl_links.inc.php:148 +#: libraries/tbl_links.inc.php:147 #, php-format msgid "Tracking of %s.%s is activated." msgstr "\"%s.%s\" jadvalini kuzatish faollashtirildi." @@ -3917,12 +3972,12 @@ msgstr "" "\"Andozaviy\" maydonlar qiymatlarida teskari egri chiziq va qo‘shtirnoqlarni " "ishlatmang." -#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1263 -#: pdf_schema.php:1284 tbl_printview.php:142 tbl_structure.php:179 +#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1262 +#: pdf_schema.php:1283 tbl_printview.php:141 tbl_structure.php:178 msgid "Attributes" msgstr "Atributlar" -#: libraries/tbl_properties.inc.php:136 +#: libraries/tbl_properties.inc.php:135 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -3931,11 +3986,11 @@ msgstr "" "Mavjud MIME turlari va o‘girishlar parametlarini ko‘rish uchun quyidagi " "bog‘lanishdan foydalaning: - \"%s\"o‘zgaririshlar tavsifi\"%s\"" -#: libraries/tbl_properties.inc.php:144 +#: libraries/tbl_properties.inc.php:143 msgid "Transformation options" msgstr "O‘girishlar parametrlari" -#: libraries/tbl_properties.inc.php:145 +#: libraries/tbl_properties.inc.php:144 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
                            If you ever need to put a backslash (\"\\\") or a single " @@ -3947,18 +4002,18 @@ msgstr "" "(\") belgilari oldidan teskari egri chiziq bo‘lishi kerak, masalan: \"\\\\xyz" "\" yoki \"a\\\"b\"." -#: libraries/tbl_properties.inc.php:392 +#: libraries/tbl_properties.inc.php:391 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "Yo‘q" -#: libraries/tbl_properties.inc.php:393 +#: libraries/tbl_properties.inc.php:392 msgid "As defined:" msgstr "Qoidaga ko‘ra:" -#: libraries/tbl_properties.inc.php:579 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:578 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
                            Please ask the " @@ -3967,29 +4022,29 @@ msgstr "" "Hozirgi vatqda tavsif mavjud emas.
                            Ishlatilayotgan \"%s\" o‘girishlar " "namoyishi funksiyalarining ishi yaqin orada tavsiflanadi. " -#: libraries/tbl_properties.inc.php:725 server_engines.php:57 -#: tbl_operations.php:354 +#: libraries/tbl_properties.inc.php:724 server_engines.php:56 +#: tbl_operations.php:352 msgid "Storage Engine" msgstr "Jadval turi" -#: libraries/tbl_properties.inc.php:754 +#: libraries/tbl_properties.inc.php:753 msgid "PARTITION definition" msgstr "Bo‘laklarni (PARTITIONS) belgilash" -#: libraries/tbl_properties.inc.php:775 pdf_pages.php:502 +#: libraries/tbl_properties.inc.php:774 pdf_pages.php:501 #: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214 -#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1124 tbl_indexes.php:247 -#: tbl_relation.php:565 +#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1022 tbl_indexes.php:246 +#: tbl_relation.php:563 msgid "Save" msgstr "Saqlash" -#: libraries/tbl_properties.inc.php:779 tbl_structure.php:541 +#: libraries/tbl_properties.inc.php:778 tbl_structure.php:539 #, fuzzy, php-format #| msgid "Add column(s)" msgid "Add %s column(s)" msgstr "Ustun(lar) qo‘shish" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:535 +#: libraries/tbl_properties.inc.php:782 tbl_structure.php:533 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -4200,8 +4255,8 @@ msgstr "Interfeys" msgid "Custom color" msgstr "Rangni tanlash" -#: main.php:162 pdf_pages.php:362 setup/lib/FormDisplay.tpl.php:216 -#: tbl_change.php:1173 +#: main.php:162 pdf_pages.php:361 setup/lib/FormDisplay.tpl.php:216 +#: tbl_change.php:1071 msgid "Reset" msgstr "Tozalash" @@ -4209,8 +4264,8 @@ msgstr "Tozalash" msgid "Protocol version" msgstr "Protokol versiyasi" -#: main.php:188 server_privileges.php:1381 server_privileges.php:1528 -#: server_privileges.php:1642 server_privileges.php:2060 +#: main.php:188 server_privileges.php:1385 server_privileges.php:1532 +#: server_privileges.php:1646 server_privileges.php:2064 #: server_processlist.php:53 msgid "User" msgstr "Foydalanuvchi" @@ -4306,7 +4361,16 @@ msgstr "" "katalogi haliyam mavjud. phpMyAdmin muvaffaqiyatli o‘rnatilgandan keyin, uni " "o‘chirish tavsiya etiladi." -#: main.php:330 +#: main.php:314 +#, php-format +msgid "" +"The additional features for working with linked tables have been " +"deactivated. To find out why click %shere%s." +msgstr "" +"Aloqador jadvallar bilan ishlash uchun qo‘shimcha imkoniyatlar mavjud emas. " +"Sabablarini aniqlash uchun %sbu yerga%s bosing." + +#: main.php:329 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " @@ -4316,7 +4380,7 @@ msgstr "" "dasturining ba’zi funktsiyalari ishlamaydi. Masalan, navigatsiya oynasi " "avtomatik tarzda yangilanib turmaydi." -#: main.php:345 +#: main.php:344 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -4325,7 +4389,7 @@ msgstr "" "MySQL-kliyent versiyasi (\"%s\") o‘rnatilgan MySQL-server versiyasi(\"%s\")" "dan farq qilmoqda. Bu holat noxush oqibatlarga olib kelishi mumkin." -#: main.php:357 +#: main.php:356 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -4338,68 +4402,68 @@ msgstr "" msgid "Reload navigation frame" msgstr "Navigatsiya oynasini qayta yuklash" -#: navigation.php:204 server_databases.php:370 server_synchronize.php:1190 +#: navigation.php:203 server_databases.php:368 server_synchronize.php:1189 msgid "No databases" msgstr "Ma`lumotlar bazasi mavjud emas" -#: navigation.php:298 +#: navigation.php:297 msgid "Filter" msgstr "Filtr" -#: navigation.php:299 setup/frames/index.inc.php:218 +#: navigation.php:298 setup/frames/index.inc.php:218 #: setup/lib/messages.inc.php:41 msgid "Clear" msgstr "Tozalash" -#: navigation.php:330 navigation.php:331 +#: navigation.php:329 navigation.php:330 #, fuzzy #| msgid "Create table" msgctxt "short form" msgid "Create table" msgstr "Jadval tuzish" -#: navigation.php:333 navigation.php:495 +#: navigation.php:332 navigation.php:494 msgid "Please select a database" msgstr "Ma`lumotlar bazasini tanlang" -#: pdf_pages.php:40 pdf_pages.php:46 pdf_pages.php:52 pdf_pages.php:57 +#: pdf_pages.php:39 pdf_pages.php:45 pdf_pages.php:51 pdf_pages.php:56 #, php-format msgid "%s table not found or not set in %s" msgstr " \"%s\" jadvali topilmadi yoki \"%s\"da o‘rnatilmagan" -#: pdf_pages.php:265 +#: pdf_pages.php:264 msgid "Please choose a page to edit" msgstr "Tahrirlash lozim bo‘lgan sahifani tanlash" -#: pdf_pages.php:303 pmd_pdf.php:113 +#: pdf_pages.php:302 pmd_pdf.php:111 msgid "Create a page" msgstr "Yangi sahifa tuzish" -#: pdf_pages.php:309 +#: pdf_pages.php:308 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Sahifa raqami: " -#: pdf_pages.php:313 +#: pdf_pages.php:312 #, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "Avtomatik raskladka" -#: pdf_pages.php:315 +#: pdf_pages.php:314 msgid "Internal relations" msgstr "Ichki aloqalar" -#: pdf_pages.php:338 +#: pdf_pages.php:337 msgid "Select Tables" msgstr "Jadvallarni tanlang" -#: pdf_pages.php:361 +#: pdf_pages.php:360 msgid "Toggle scratchboard" msgstr "Ko‘rsatish" -#: pdf_pages.php:524 +#: pdf_pages.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -4407,37 +4471,37 @@ msgstr "" "Ushbu sahifada mavjud bo‘lmagan jadvallar uchun murojaatlar mavjud. Ushbu " "murojaatlarni o‘chirishni xohlaysizmi?" -#: pdf_schema.php:635 +#: pdf_schema.php:634 #, fuzzy, php-format #| msgid "The \"%s\" table doesn't exist!" msgid "The %s table doesn't exist!" msgstr "\"%s\" jadvali mavjud emas!" -#: pdf_schema.php:671 +#: pdf_schema.php:670 #, php-format msgid "Please configure the coordinates for table %s" msgstr " \"%s\" jadvalining koordinatalarini o‘zgartirish" -#: pdf_schema.php:994 +#: pdf_schema.php:993 #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" msgstr "\"%s\" ma`lumotlar bazasi tuzilishi - \"%s\" sahifa" -#: pdf_schema.php:1012 +#: pdf_schema.php:1011 msgid "No tables" msgstr "Jadval mavjud emas" -#: pdf_schema.php:1031 pdf_schema.php:1140 +#: pdf_schema.php:1030 pdf_schema.php:1139 msgid "Relational schema" msgstr "Aloqalar sxemasi" -#: pdf_schema.php:1115 +#: pdf_schema.php:1114 msgid "Table of contents" msgstr "Mundarija" -#: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:145 -#: tbl_structure.php:182 tbl_tracking.php:277 +#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 +#: tbl_structure.php:181 tbl_tracking.php:272 msgid "Extra" msgstr "Qo‘shimcha" @@ -4449,7 +4513,7 @@ msgstr "Chap menyuni ko‘rsatish/yashirish" msgid "Save position" msgstr "Jadvallar joylashishini saqlash" -#: pmd_general.php:70 server_synchronize.php:428 server_synchronize.php:871 +#: pmd_general.php:70 server_synchronize.php:427 server_synchronize.php:870 msgid "Create table" msgstr "Jadval tuzish" @@ -4529,31 +4593,31 @@ msgstr "" "qilish uchun \"Ko‘rsatiladigan maydonni tanlash\" bo‘limidan mos maydonni " "tanlang." -#: pmd_pdf.php:62 +#: pmd_pdf.php:60 msgid "Page has been created" msgstr "Sahifa tuzildi" -#: pmd_pdf.php:64 +#: pmd_pdf.php:62 msgid "Page creation failed" msgstr "Sahifa tuzib bo‘lmadi" -#: pmd_pdf.php:84 +#: pmd_pdf.php:82 msgid "Export/Import to scale" msgstr "Masshtab" -#: pmd_pdf.php:88 +#: pmd_pdf.php:86 msgid "recommended" msgstr "tavsiya etilgan" -#: pmd_pdf.php:93 +#: pmd_pdf.php:91 msgid "to/from page" msgstr "Sahifa" -#: querywindow.php:94 +#: querywindow.php:93 msgid "Import files" msgstr "Fayllarni import qilish" -#: querywindow.php:105 +#: querywindow.php:104 msgid "All" msgstr "Barcha" @@ -4599,69 +4663,69 @@ msgstr "Ma`lumot" msgid "Character Sets and Collations" msgstr "Kodirovkalar va taqqoslashlar" -#: server_databases.php:51 +#: server_databases.php:49 msgid "No databases selected." msgstr "Bironta ham ma`lumotlar bazasi tanlanmagan." -#: server_databases.php:62 +#: server_databases.php:60 #, php-format msgid "%s databases have been dropped successfully." msgstr "\"%s\" ma`lumotlar bazasi muvaffaqiyatli o‘chirildi." -#: server_databases.php:87 +#: server_databases.php:85 msgid "Databases statistics" msgstr "Ma`lumotlar bazasi statiskasi" -#: server_databases.php:116 server_status.php:370 +#: server_databases.php:114 server_status.php:370 #: setup/lib/messages.inc.php:114 msgid "Tables" msgstr "Jadvallar" -#: server_databases.php:194 server_replication.php:180 -#: server_replication.php:208 +#: server_databases.php:192 server_replication.php:179 +#: server_replication.php:207 msgid "Master replication" msgstr "Bosh sеrvеr rеplikatsiyasi" -#: server_databases.php:196 server_replication.php:247 +#: server_databases.php:194 server_replication.php:246 msgid "Slave replication" msgstr "Tobе sеrvеr rеplikatsiyasi" -#: server_databases.php:229 +#: server_databases.php:227 #, fuzzy #| msgid "Go to database" msgid "Jump to database" msgstr "Ushbu bazaga o‘tish" -#: server_databases.php:266 +#: server_databases.php:264 #, fuzzy #| msgid "Master replication" msgid "Not replicated" msgstr "Bosh sеrvеr rеplikatsiyasi" -#: server_databases.php:272 +#: server_databases.php:270 #, fuzzy #| msgid "Replication" msgid "Replicated" msgstr "Replikatsiya (zaxira nusxa ko‘chirish)" -#: server_databases.php:288 +#: server_databases.php:286 #, php-format msgid "Check privileges for database "%s"." msgstr "\"%s\" ma`lumotlar bazasining privilegiyalarni tekshirish" -#: server_databases.php:292 server_databases.php:293 +#: server_databases.php:290 server_databases.php:291 msgid "Check Privileges" msgstr "Privilegiyalarni tekshirish" -#: server_databases.php:357 server_databases.php:358 +#: server_databases.php:355 server_databases.php:356 msgid "Enable Statistics" msgstr "Statiskani yoqish" -#: server_databases.php:361 server_databases.php:362 +#: server_databases.php:359 server_databases.php:360 msgid "Disable Statistics" msgstr "Statiskani o‘chirish" -#: server_databases.php:365 +#: server_databases.php:363 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -4669,125 +4733,125 @@ msgstr "" "IZOH: Statiskani yoqish veb-server va MySQL serveri o‘rtasida katta " "traffikka sabab bo‘lishi mumkin." -#: server_engines.php:48 +#: server_engines.php:47 msgid "Storage Engines" msgstr "Jadval turlari" -#: server_export.php:20 +#: server_export.php:18 msgid "View dump (schema) of databases" msgstr "Ma`lumotlar bazalari dampini (sxemasini) namoyish etish" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:23 server_privileges.php:265 msgid "Includes all privileges except GRANT." msgstr "GRANT dan tashqari barcha privilegiyalarni o‘z ichiga oladi" -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:24 server_privileges.php:191 +#: server_privileges.php:514 msgid "Allows altering the structure of existing tables." msgstr "Mavjud jadvallarning tuzilishini o‘zgartirishga ruxsat beradi" -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:25 server_privileges.php:207 +#: server_privileges.php:520 msgid "Allows altering and dropping stored routines." msgstr "Saqlanadigan muolajalarni o‘zgartirish va o‘chirishga ruxsat beradi" -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:26 server_privileges.php:183 +#: server_privileges.php:513 msgid "Allows creating new databases and tables." msgstr "Yangi ma`lumotlar bazalari va jadvallar tuzishga ruxsat beradi" -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:27 server_privileges.php:206 +#: server_privileges.php:519 msgid "Allows creating stored routines." msgstr "Saqlanadigan muolajalar tuzishga ruxsat beradi" -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:513 msgid "Allows creating new tables." msgstr "Yangi jadvallar tuzishga ruxsat beradi" -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:29 server_privileges.php:194 +#: server_privileges.php:517 msgid "Allows creating temporary tables." msgstr "Vaqtinchalik jadvallar tuzishga ruxsat beradi" -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:30 server_privileges.php:208 +#: server_privileges.php:553 msgid "Allows creating, dropping and renaming user accounts." msgstr "" "Foydalanuvchilar hisobini qo‘shish, o‘chirish va o‘zgartirishga ruxsat beradi" -#: server_privileges.php:32 server_privileges.php:199 -#: server_privileges.php:203 server_privileges.php:526 -#: server_privileges.php:530 +#: server_privileges.php:31 server_privileges.php:198 +#: server_privileges.php:202 server_privileges.php:525 +#: server_privileges.php:529 msgid "Allows creating new views." msgstr "Yangi namoyishlar tuzish(CREATE VIEW)ga ruxsat beradi" -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:32 server_privileges.php:182 +#: server_privileges.php:505 msgid "Allows deleting data." msgstr "Ma`lumotlarni o‘chirishga ruxsat beradi" -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:33 server_privileges.php:184 +#: server_privileges.php:516 msgid "Allows dropping databases and tables." msgstr "Ma`lumotlar bazalarini va jadvallarni o‘chirishga ruxsat beradi" -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:34 server_privileges.php:516 msgid "Allows dropping tables." msgstr "Jadvallarni o‘chirishga rux`sat beradi" -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:35 server_privileges.php:199 +#: server_privileges.php:533 msgid "Allows to set up events for the event scheduler" msgstr "Kechiktirilgan hodisalarni sozlashga ruxsat beradi" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:36 server_privileges.php:209 +#: server_privileges.php:521 msgid "Allows executing stored routines." msgstr "Saqlanadigan muolajalarni bajarishga ruxsat beradi" -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:37 server_privileges.php:188 +#: server_privileges.php:508 msgid "Allows importing data from and exporting data into files." msgstr "Ma`lumotlarni fayldan import va faylga eksport qilishga ruxsat beradi" -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:38 server_privileges.php:539 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Foydalanuvchilarni qo‘shish va privilegiyalar jadvalini qayta yuklamasdan " "privilegiyalar qo‘shishga ruxsat beradi" -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:515 msgid "Allows creating and dropping indexes." msgstr "Indekslar qo‘shish va ularni o‘chirishga ruxsat beradi" -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:40 server_privileges.php:180 +#: server_privileges.php:441 server_privileges.php:503 msgid "Allows inserting and replacing data." msgstr "Ma`lumot qo‘yish va o‘zgartirishga ruxsat beradi" -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:41 server_privileges.php:195 +#: server_privileges.php:548 msgid "Allows locking tables for the current thread." msgstr "Joriy oqim uchun jadvalni blokirovku qilishga ruxsat beradi" -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:42 server_privileges.php:645 +#: server_privileges.php:647 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Foydalanuvchi bir soat davomida o‘rnatishi mumkin bo‘lgan yangi ulanishlar " "soni" -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:43 server_privileges.php:633 +#: server_privileges.php:635 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Foydalanuvchi bir soat davomida yuborishi mumkin bo‘lgan so‘rovlar soni" -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:44 server_privileges.php:639 +#: server_privileges.php:641 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -4795,65 +4859,65 @@ msgstr "" "Foydalanuvchi bir soat davomida bajarishi mumkin bo‘lgan biron-bir jadval " "yoki ma`lumotlar bazasini o‘zgartiradigan buyruqlar soni" -#: server_privileges.php:46 server_privileges.php:652 -#: server_privileges.php:654 +#: server_privileges.php:45 server_privileges.php:651 +#: server_privileges.php:653 msgid "Limits the number of simultaneous connections the user may have." msgstr "" "Bir foydalanuvchi tomonidan bir vaqtning o‘zida o‘rnatishi mumkin bo‘lgan " "ulanishlar soni" -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:46 server_privileges.php:187 +#: server_privileges.php:543 msgid "Allows viewing processes of all users" msgstr "Barcha foydalanuvchilarning jarayonlarini ko‘rishga ruxsat beradi" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:47 server_privileges.php:189 +#: server_privileges.php:447 server_privileges.php:549 msgid "Has no effect in this MySQL version." msgstr "MySQL-serverning ushbu versiyada bunday xususiyat mavjud emas!" -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:48 server_privileges.php:185 +#: server_privileges.php:544 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Server sozlanishlarini qayta yuklashga va uning keshlarini tozalashga ruxsat " "beradi" -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:197 +#: server_privileges.php:551 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Bosh va tobe serverlarning joylashishi haqidagi ma`lumotni talab qilishga " "ruxsat beradi" -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:50 server_privileges.php:196 +#: server_privileges.php:552 msgid "Needed for the replication slaves." msgstr "" "Replikatsiya (zaxira nusxa ko‘chirish) vaqtida tobe serverlar uchun kerak" -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:51 server_privileges.php:179 +#: server_privileges.php:438 server_privileges.php:502 msgid "Allows reading data." msgstr "Ma`lumotlarni chaqirishga ruxsat beradi" -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:52 server_privileges.php:192 +#: server_privileges.php:546 msgid "Gives access to the complete list of databases." msgstr "Ma`lumotlar bazalarining to‘liq ro‘yxatiga ruxsat beradi" -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:53 server_privileges.php:203 +#: server_privileges.php:205 server_privileges.php:518 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Namoyish tuzadigan so‘rov(SHOW CREATE VIEW)ni bajarishga ruxsat beradi" -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:54 server_privileges.php:186 +#: server_privileges.php:545 msgid "Allows shutting down the server." msgstr "Server ishini yakunlashga ruxsat beradi" -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:55 server_privileges.php:193 +#: server_privileges.php:542 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -4864,163 +4928,163 @@ msgstr "" "global o‘zgaruvchilar o‘rnatish yoki boshqa foydalanuvchi jarayonini " "o‘chirish)" -#: server_privileges.php:57 server_privileges.php:201 -#: server_privileges.php:535 +#: server_privileges.php:56 server_privileges.php:200 +#: server_privileges.php:534 msgid "Allows creating and dropping triggers" msgstr "" "Triggerlar (ma`lum shartlar bajarilganda avtomatik ishga tushadigan " "jarayonlar) tuzish va ularni o‘chirishga ruxsat beradi" -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:57 server_privileges.php:181 +#: server_privileges.php:444 server_privileges.php:504 msgid "Allows changing data." msgstr "Ma`lumotlarni o‘zgartirishga ruxsat beradi" -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:58 server_privileges.php:259 msgid "No privileges." msgstr "Privilegiyalar yo‘q" -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:301 server_privileges.php:302 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Yo‘q" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1710 server_privileges.php:1716 +#: server_privileges.php:430 server_privileges.php:565 +#: server_privileges.php:1714 server_privileges.php:1720 msgid "Table-specific privileges" msgstr "Jadval darajasijagi privilegiyalar" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1532 +#: server_privileges.php:431 server_privileges.php:573 +#: server_privileges.php:1536 msgid " Note: MySQL privilege names are expressed in English " msgstr "IZOH: MySQL privilegiyalari turlari ingliz tilida ko‘rsatiladi." -#: server_privileges.php:563 server_privileges.php:1531 +#: server_privileges.php:562 server_privileges.php:1535 msgid "Global privileges" msgstr "Global privilegiyalar" -#: server_privileges.php:565 server_privileges.php:1710 +#: server_privileges.php:564 server_privileges.php:1714 msgid "Database-specific privileges" msgstr "Ma`lumotlar bazasi privilegiyalari" -#: server_privileges.php:610 +#: server_privileges.php:609 msgid "Administration" msgstr "Administratsiya" -#: server_privileges.php:630 +#: server_privileges.php:629 msgid "Resource limits" msgstr "Resurslardan foydalanishni cheklash" -#: server_privileges.php:631 +#: server_privileges.php:630 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" "IZOH: parametr qiymatlarini 0 (nol) deb belgilash mavjud cheklashlarni bekor " "qiladi." -#: server_privileges.php:708 +#: server_privileges.php:707 msgid "Login Information" msgstr "Foydalanuvchi hisobi haqida ma`lumot" -#: server_privileges.php:802 +#: server_privileges.php:801 msgid "Do not change the password" msgstr "Parolni o‘zgartirmaslik" -#: server_privileges.php:835 server_privileges.php:2197 +#: server_privileges.php:834 server_privileges.php:2201 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Bironta ham foydalanuvchi topilmadi." -#: server_privileges.php:879 +#: server_privileges.php:878 #, php-format msgid "The user %s already exists!" msgstr " \"%s\" nomli foydalanuvchi mavjud!" -#: server_privileges.php:962 +#: server_privileges.php:961 msgid "You have added a new user." msgstr "Siz yangi foydalanuvchi qo‘shdingiz." -#: server_privileges.php:1183 +#: server_privileges.php:1184 #, php-format msgid "You have updated the privileges for %s." msgstr " \"%s\" uchun privilegiyalar o‘zgartirildi." -#: server_privileges.php:1207 +#: server_privileges.php:1208 #, php-format msgid "You have revoked the privileges for %s" msgstr " \"%s\" foydalanuvchining privilegiyalari bekor qilindi." -#: server_privileges.php:1243 +#: server_privileges.php:1244 #, php-format msgid "The password for %s was changed successfully." msgstr "\"%s\" foydalanuvchining paroli muvaffaqiyatli o‘zgartirildi." -#: server_privileges.php:1263 +#: server_privileges.php:1264 #, php-format msgid "Deleting %s" msgstr "\"%s\" o‘chirilmoqda" -#: server_privileges.php:1274 +#: server_privileges.php:1275 msgid "No users selected for deleting!" msgstr "O‘chirish lozim bo‘lgan foydalanuvchilar tanlanmagan!" -#: server_privileges.php:1277 +#: server_privileges.php:1278 msgid "Reloading the privileges" msgstr "Privilegiyalar qayta yuklanmoqda" -#: server_privileges.php:1292 +#: server_privileges.php:1296 msgid "The selected users have been deleted successfully." msgstr "Belgilangan foydalanuvchilar muvaffaqiyatli o‘chirildi." -#: server_privileges.php:1327 +#: server_privileges.php:1331 msgid "The privileges were reloaded successfully." msgstr "Privilegiyalar muvaffaqiyatli qayta yuklandi." -#: server_privileges.php:1355 server_privileges.php:1641 +#: server_privileges.php:1359 server_privileges.php:1645 msgid "Edit Privileges" msgstr "Privilegiyalarni tahrirlash" -#: server_privileges.php:1364 +#: server_privileges.php:1368 msgid "Revoke" msgstr "Bekor qilish" -#: server_privileges.php:1396 +#: server_privileges.php:1400 msgid "User overview" msgstr "Foydalanuvchilar hisobini ko‘rib chiqish" -#: server_privileges.php:1533 server_privileges.php:1715 -#: server_privileges.php:2064 +#: server_privileges.php:1537 server_privileges.php:1719 +#: server_privileges.php:2068 msgid "Grant" msgstr "GRANT" -#: server_privileges.php:1552 server_privileges.php:2154 +#: server_privileges.php:1556 server_privileges.php:2158 msgid "Any" msgstr "Har qaysi" -#: server_privileges.php:1601 server_privileges.php:1625 -#: server_privileges.php:2019 server_privileges.php:2208 +#: server_privileges.php:1605 server_privileges.php:1629 +#: server_privileges.php:2023 server_privileges.php:2212 msgid "Add a new User" msgstr "Yangi foydalanuvchi qo‘shish" -#: server_privileges.php:1606 +#: server_privileges.php:1610 msgid "Remove selected users" msgstr "Belgilangan foydalanuvchilarni o‘chirish" -#: server_privileges.php:1609 +#: server_privileges.php:1613 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Foydalanuvchilarning barcha faol privilegiyalarini bekor qilish, so‘ng " "ularni o‘chirish." -#: server_privileges.php:1610 server_privileges.php:1611 -#: server_privileges.php:1612 +#: server_privileges.php:1614 server_privileges.php:1615 +#: server_privileges.php:1616 msgid "Drop the databases that have the same names as the users." msgstr "" "Foydalanuvchilar nomlari bilan atalgan ma`lumotlar bazalarini o‘chirish." -#: server_privileges.php:1628 +#: server_privileges.php:1632 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -5033,50 +5097,50 @@ msgstr "" "ma`lumotlar server tomonidan ishlatilayotgan privilegiyalardan farq qilishi " "mumkin. Bu holda %sprivilegiyalarni qayta yuklash%s kerak." -#: server_privileges.php:1676 +#: server_privileges.php:1680 msgid "The selected user was not found in the privilege table." msgstr "Belgilangan foydalanuvchi privilegiyalar jadvalida topilmadi." -#: server_privileges.php:1716 +#: server_privileges.php:1720 msgid "Column-specific privileges" msgstr "Maydon privilegiyalari" -#: server_privileges.php:1917 +#: server_privileges.php:1921 msgid "Add privileges on the following database" msgstr "Quyidagi ma`lumotlar omboriga privilegiya qo‘shish" -#: server_privileges.php:1935 +#: server_privileges.php:1939 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "Ma`lumotlar bazalari nomlarida pastki chiziq (_) va foiz (%) belgilari " "ishlatilganda ular oldiga teskari egri chiziq (\\) qo‘yish kerak." -#: server_privileges.php:1938 +#: server_privileges.php:1942 msgid "Add privileges on the following table" msgstr "Quyidagi jadvalga privilegiya qo‘shish" -#: server_privileges.php:1995 +#: server_privileges.php:1999 msgid "Change Login Information / Copy User" msgstr "Foydalanuvchining loginini o‘zgartirish / Foydalanuvchidan nusxa olish" -#: server_privileges.php:1998 +#: server_privileges.php:2002 msgid "Create a new user with the same privileges and ..." msgstr "Xuddi shunday privilegiyali yangi foydalanuvchi kiritish..." -#: server_privileges.php:2000 +#: server_privileges.php:2004 msgid "... keep the old one." msgstr " va eskisini saqlash." -#: server_privileges.php:2001 +#: server_privileges.php:2005 msgid " ... delete the old one from the user tables." msgstr " va foydalanuvchilar jadvalidan eskisini o‘chirish." -#: server_privileges.php:2002 +#: server_privileges.php:2006 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr ", eskisining barcha faol privilegiyalarini bekor qilib o‘chirish." -#: server_privileges.php:2003 +#: server_privileges.php:2007 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -5084,48 +5148,48 @@ msgstr "" ", foydalanuvchilar jadvalidan eskisini o‘chirib privilegiyalarni qayta " "yuklash." -#: server_privileges.php:2025 +#: server_privileges.php:2029 msgid "Database for user" msgstr "Foydalanuvchi uchun ma`lumotlar bazasi" -#: server_privileges.php:2029 +#: server_privileges.php:2033 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Yo‘q" -#: server_privileges.php:2030 +#: server_privileges.php:2034 msgid "Create database with same name and grant all privileges" msgstr "" "Foydalanuvchi nomi bilan atalgan ma`lumotlar bazasi tuzish va unga to‘liq " "privilegiyalarni berish." -#: server_privileges.php:2031 +#: server_privileges.php:2035 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" "(foydalanuvchi\\_%) shabloniga to‘g‘ri keladigan barcha ma`lumotlar " "bazalariga to‘liq privilegiyalarni berish." -#: server_privileges.php:2034 +#: server_privileges.php:2038 #, php-format msgid "Grant all privileges on database "%s"" msgstr "\"%s\"" ma`lumotlar bazasiga barcha privilegiyalarni berish;" -#: server_privileges.php:2057 +#: server_privileges.php:2061 #, php-format msgid "Users having access to "%s"" msgstr "\"%s\"ga ruxsati bo‘lgan foydalanuvchilar" -#: server_privileges.php:2165 +#: server_privileges.php:2169 msgid "global" msgstr "Global" -#: server_privileges.php:2167 +#: server_privileges.php:2171 msgid "database-specific" msgstr "Ma`lumotlar bazasi darajasida" -#: server_privileges.php:2169 +#: server_privileges.php:2173 msgid "wildcard" msgstr "Guruhlash belgisi" @@ -5145,45 +5209,45 @@ msgstr "" msgid "ID" msgstr "ID" -#: server_replication.php:50 +#: server_replication.php:49 msgid "Unknown error" msgstr "Noma’lum xatolik" -#: server_replication.php:57 +#: server_replication.php:56 #, php-format msgid "Unable to connect to master %s." msgstr "%s bosh sеrvеriga ulanib bo‘lmadi." -#: server_replication.php:64 +#: server_replication.php:63 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" "Bosh sеrvеr pozitsiyasini o‘qib bo‘lmadi. Sеrvеrdagi privilеgilarda muammo " "bo‘lishi mumkin." -#: server_replication.php:70 +#: server_replication.php:69 msgid "Unable to change master" msgstr "Bosh sеrvеrni o‘zgartirib bo‘lmadi" -#: server_replication.php:73 +#: server_replication.php:72 #, php-format msgid "Master server changed succesfully to %s" msgstr "Bosh rеplikatsiya sеrvеri quyidagiga o‘zgartirildi: %s" -#: server_replication.php:181 +#: server_replication.php:180 msgid "This server is configured as master in a replication process." msgstr "" "Ushbu sеrvеr rеplikatsiya jarayonida \"bosh\" dеb konfiguratsiya qilingan." -#: server_replication.php:183 server_status.php:391 +#: server_replication.php:182 server_status.php:391 msgid "Show master status" msgstr "Ulangan bosh sеrvеrlarni ko‘rsatish" -#: server_replication.php:186 +#: server_replication.php:185 msgid "Show connected slaves" msgstr "Ulangan tobе sеrvеrlarni ko‘rsatish" -#: server_replication.php:209 +#: server_replication.php:208 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -5192,11 +5256,11 @@ msgstr "" "Ushbu sеrvеr rеplikatsiya jarayonida \"bosh sеrvеr\" dеb konfiguratsiya " "qilinmagan. Siz uni konfiguratsiya qilmoqchimisiz?" -#: server_replication.php:216 +#: server_replication.php:215 msgid "Master configuration" msgstr "Bosh sеrvеr konfiguratsiyasi" -#: server_replication.php:217 +#: server_replication.php:216 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -5211,19 +5275,19 @@ msgstr "" "bazalarnigina rеplikatsiya qilishda foydali) tanlashingiz mumkin. " "Rеplikatsiya usulini tanlang:" -#: server_replication.php:220 +#: server_replication.php:219 msgid "Replicate all databases; Ignore:" msgstr "Barcha bazalarni rеplikatsiya qilish; Quyidagilardan tashqari:" -#: server_replication.php:221 +#: server_replication.php:220 msgid "Ignore all databases; Replicate:" msgstr "Barcha bazalarga e’tibor bеrmaslik; Quyidagilardan tashqari:" -#: server_replication.php:224 +#: server_replication.php:223 msgid "Please select databases:" msgstr "Bazalarni tanlang:" -#: server_replication.php:227 +#: server_replication.php:226 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -5231,7 +5295,7 @@ msgstr "" "Endi quyidagi qatorlarni \"my.cnf\" faylining oxiriga qo‘shing va MySQL " "sеrvеrini qayta yuklang." -#: server_replication.php:229 +#: server_replication.php:228 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " @@ -5241,68 +5305,68 @@ msgstr "" "So‘ng, ushbu sеrvеr \"bosh sеrvеr\" dеb konfiguratsiya qilinganligi haqidagi " "ma’lumotni ko‘rishingiz kеrak." -#: server_replication.php:292 +#: server_replication.php:291 msgid "Slave SQL Thread not running!" msgstr "Tobе SQL Oqimi ishlamayapti!" -#: server_replication.php:295 +#: server_replication.php:294 msgid "Slave IO Thread not running!" msgstr "Tobе kirish/chiqish oqimi ishlamayapti!" -#: server_replication.php:304 +#: server_replication.php:303 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" "Ushbu sеrvеr rеplikatsiya jarayonida \"tobе sеrvеr\" dеb konfiguratsiya " "qilingan. Quyidagi amallardan birini tanlang:" -#: server_replication.php:307 +#: server_replication.php:306 msgid "See slave status table" msgstr "Tobе sеrvеr statusi jadvalini ko‘rish" -#: server_replication.php:310 +#: server_replication.php:309 msgid "Synchronize databases with master" msgstr "Bazalarni bosh sеrvеr bilan sinxronizatsiya qilish" -#: server_replication.php:321 +#: server_replication.php:320 msgid "Control slave:" msgstr "Tobе sеrvеrni nazorat qilish:" -#: server_replication.php:324 +#: server_replication.php:323 msgid "Full start" msgstr "Barchasini boshlash" -#: server_replication.php:324 +#: server_replication.php:323 msgid "Full stop" msgstr "Barchasini to‘xtatish" -#: server_replication.php:325 +#: server_replication.php:324 msgid "Reset slave" msgstr "Tobе sеrvеrni tiklash" -#: server_replication.php:326 +#: server_replication.php:325 #, php-format msgid "SQL Thread %s only" msgstr "Faqat %s SQL kirish/chiqish oqimini" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 msgid "Start" msgstr "Boshlash" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 msgid "Stop" msgstr "To‘xtatish" -#: server_replication.php:327 +#: server_replication.php:326 #, php-format msgid "IO Thread %s only" msgstr "Faqat %s qirish/chiqish oqimini" -#: server_replication.php:331 +#: server_replication.php:330 msgid "Error management:" msgstr "Xatoliklarni boshqarish:" -#: server_replication.php:333 +#: server_replication.php:332 #, fuzzy #| msgid "Skipping error(s) might lead into unsynchronized master and slave!" msgid "Skipping errors might lead into unsynchronized master and slave!" @@ -5310,19 +5374,19 @@ msgstr "" "Xatolik(lar)ni tashlab kеtish bosh va tobе sеrvеrlarning to‘la " "sinxronizatsiya qilinmaganligiga olib kеlishi mumkin!" -#: server_replication.php:335 +#: server_replication.php:334 msgid "Skip current error" msgstr "Joriy xatoliklarni tashlab kеtish" -#: server_replication.php:336 +#: server_replication.php:335 msgid "Skip next" msgstr "Kеyingisini tashlab kеtish" -#: server_replication.php:339 +#: server_replication.php:338 msgid "errors." msgstr " xatoliklar." -#: server_replication.php:354 +#: server_replication.php:353 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -6182,113 +6246,113 @@ msgstr "So‘rov turi" msgid "Replication status" msgstr "Replikatsiya statusi" -#: server_synchronize.php:93 +#: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "Manbaga ulanib bo‘lmadi" -#: server_synchronize.php:96 +#: server_synchronize.php:95 msgid "Could not connect to the target" msgstr "Nishonga ulanib bo‘lmadi" -#: server_synchronize.php:121 server_synchronize.php:124 tbl_create.php:77 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "'%s' nomli baza mavjud emas." -#: server_synchronize.php:264 +#: server_synchronize.php:263 msgid "Structure Synchronization" msgstr "Tuzilishni sinxronizatsiya qilish" -#: server_synchronize.php:271 +#: server_synchronize.php:270 msgid "Data Synchronization" msgstr "Ma’lumotlar sinxronizatsiyasi" -#: server_synchronize.php:399 server_synchronize.php:838 +#: server_synchronize.php:398 server_synchronize.php:837 msgid "not present" msgstr "Mavjud emas" -#: server_synchronize.php:423 server_synchronize.php:866 +#: server_synchronize.php:422 server_synchronize.php:865 msgid "Structure Difference" msgstr "Tuzilishdagi farq" -#: server_synchronize.php:424 server_synchronize.php:867 +#: server_synchronize.php:423 server_synchronize.php:866 msgid "Data Difference" msgstr "Ma’lumotlar farqi" -#: server_synchronize.php:429 server_synchronize.php:872 +#: server_synchronize.php:428 server_synchronize.php:871 msgid "Add column(s)" msgstr "Ustun(lar) qo‘shish" -#: server_synchronize.php:430 server_synchronize.php:873 +#: server_synchronize.php:429 server_synchronize.php:872 msgid "Remove column(s)" msgstr "Ustun(lar)ni olib tashlash" -#: server_synchronize.php:431 server_synchronize.php:874 +#: server_synchronize.php:430 server_synchronize.php:873 msgid "Alter column(s)" msgstr "Ustun(lar)ni o‘zgartirish" -#: server_synchronize.php:432 server_synchronize.php:875 +#: server_synchronize.php:431 server_synchronize.php:874 msgid "Remove index(s)" msgstr "Indеks(lar)ni olib tashlash" -#: server_synchronize.php:433 server_synchronize.php:876 +#: server_synchronize.php:432 server_synchronize.php:875 msgid "Apply index(s)" msgstr "Indеks(lar)ni saqlash" -#: server_synchronize.php:434 server_synchronize.php:877 +#: server_synchronize.php:433 server_synchronize.php:876 msgid "Update row(s)" msgstr "Qator(lar)ni yangilash" -#: server_synchronize.php:435 server_synchronize.php:878 +#: server_synchronize.php:434 server_synchronize.php:877 msgid "Insert row(s)" msgstr "Qator(lar) qo‘shish" -#: server_synchronize.php:445 server_synchronize.php:889 +#: server_synchronize.php:444 server_synchronize.php:888 msgid "Would you like to delete all the previous rows from target tables?" msgstr "Nishon jadvaldagi barcha oldingi qatorlarni o‘chirmoqchimisiz?" -#: server_synchronize.php:448 server_synchronize.php:893 +#: server_synchronize.php:447 server_synchronize.php:892 msgid "Apply Selected Changes" msgstr "Kiritilgan o‘zgarishlarni saqlash" -#: server_synchronize.php:450 server_synchronize.php:895 +#: server_synchronize.php:449 server_synchronize.php:894 msgid "Synchronize Databases" msgstr "Bazalarni sinxronizatsiya qilish" -#: server_synchronize.php:463 +#: server_synchronize.php:462 msgid "Selected target tables have been synchronized with source tables." msgstr "Tanlangan jadvallar manba jadvallar bilan sinxronizatsiya qilindi." -#: server_synchronize.php:941 +#: server_synchronize.php:940 msgid "Target database has been synchronized with source database" msgstr "Nishon baza manba baza bilan sinxronizatsiya qilindi" -#: server_synchronize.php:1002 +#: server_synchronize.php:1001 msgid "The following queries have been executed:" msgstr "Quyidagi so‘rovlar bajarildi:" -#: server_synchronize.php:1121 +#: server_synchronize.php:1120 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1122 +#: server_synchronize.php:1121 #, fuzzy #| msgid "Insecure connection" msgid "Current connection" msgstr "Noxavfsiz ulanish" -#: server_synchronize.php:1151 +#: server_synchronize.php:1150 #, fuzzy, php-format #| msgid "Configuration file" msgid "Configuration: %s" msgstr "Konfiguratsion fayl" -#: server_synchronize.php:1166 +#: server_synchronize.php:1165 msgid "Socket" msgstr "Sokеt" -#: server_synchronize.php:1212 +#: server_synchronize.php:1211 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -6903,10 +6967,15 @@ msgid "Signon login options" msgstr "Autentifikatsiya usuli tanlovlari" #: setup/lib/messages.inc.php:128 +#, fuzzy +#| msgid "" +#| "Configure phpMyAdmin database to gain access to additional features, see " +#| "[a@../Documentation.html#linked-tables]linked-tables infrastructure[/a] " +#| "in documentation" msgid "" "Configure phpMyAdmin database to gain access to additional features, see " -"[a@../Documentation.html#linked-tables]linked-tables infrastructure[/a] in " -"documentation" +"[a@../Documentation.html#linked-tables]phpMyAdmin configuration storage[/a] " +"in documentation" msgstr "" "Qo‘shimcha funksiyalar bilan ishlash imkoniga ega bo‘lish uchun, phpMyAdmin " "ma`lumotlar bazasini sozlang, ma`lumot uchun dokumentatsiyadan [a@../" @@ -8136,116 +8205,116 @@ msgstr "" msgid "ZIP" msgstr "ZIP" -#: sql.php:495 tbl_replace.php:385 +#: sql.php:494 tbl_replace.php:384 #, php-format msgid "Inserted row id: %1$d" msgstr "Kiritilgan qator identifikatori: %1$d" -#: sql.php:512 +#: sql.php:511 msgid "Showing as PHP code" msgstr "PHP-kod sifatida ko‘rsatish" -#: sql.php:515 tbl_replace.php:359 +#: sql.php:514 tbl_replace.php:358 msgid "Showing SQL query" msgstr "SQL-so‘rovni ko‘rsatish" -#: sql.php:517 +#: sql.php:516 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "SQL to‘g‘riligini tekshirish" -#: sql.php:638 +#: sql.php:631 #, php-format msgid "Problems with indexes of table `%s`" msgstr " `\"%s\"` jadvalidagi indekslarda muammo mavjud" -#: sql.php:670 +#: sql.php:663 msgid "Label" msgstr "Xatcho‘p belgisi" -#: tbl_addfield.php:188 tbl_alter.php:102 tbl_indexes.php:97 +#: tbl_addfield.php:185 tbl_alter.php:100 tbl_indexes.php:97 #, php-format msgid "Table %1$s has been altered successfully" msgstr "%1$s jadvali muvaffaqiyatli o‘zgartirildi" -#: tbl_change.php:250 tbl_select.php:26 tbl_select.php:27 tbl_select.php:30 -#: tbl_select.php:33 +#: tbl_change.php:245 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_select.php:32 msgid "Browse foreign values" msgstr "Tashqi qiymatlarni ko‘rib chiqish" -#: tbl_change.php:280 tbl_change.php:318 +#: tbl_change.php:275 tbl_change.php:313 msgid "Function" msgstr "Funksiya" -#: tbl_change.php:300 tbl_indexes.php:199 tbl_indexes.php:224 +#: tbl_change.php:295 tbl_indexes.php:198 tbl_indexes.php:223 msgid "Ignore" msgstr "E`tibor bermaslik" -#: tbl_change.php:725 +#: tbl_change.php:720 #, fuzzy #| msgid " Because of its length,
                            this field might not be editable " msgid " Because of its length,
                            this column might not be editable " msgstr "Ma`lumotlar ko‘pligi sabali
                            o‘zgartirish qiyishlashishi mumkin" -#: tbl_change.php:884 +#: tbl_change.php:835 msgid "Remove BLOB Repository Reference" msgstr "BLOB ombori murojaatlarini o‘chirish" -#: tbl_change.php:890 +#: tbl_change.php:841 msgid "Binary - do not edit" msgstr "Ikkilik ma`lumot - tahrirlash mumkin emas" -#: tbl_change.php:983 +#: tbl_change.php:889 msgid "Upload to BLOB repository" msgstr "BLOB omboriga yuklash" -#: tbl_change.php:1128 +#: tbl_change.php:1026 msgid "Insert as new row" msgstr "Yozuv kiritish" -#: tbl_change.php:1129 +#: tbl_change.php:1027 msgid "Insert as new row and ignore errors" msgstr "Yangi qator sifatida qo‘shish va xatoliklarga e’tibor bеrmaslik" -#: tbl_change.php:1130 +#: tbl_change.php:1028 msgid "Show insert query" msgstr "Kiritilgan so‘rovni ko‘rsatish" -#: tbl_change.php:1145 +#: tbl_change.php:1043 msgid "Go back to previous page" msgstr "Oldingi sahifaga o‘tish" -#: tbl_change.php:1146 +#: tbl_change.php:1044 msgid "Insert another new row" msgstr "Yangi yozuv kiritish" -#: tbl_change.php:1150 +#: tbl_change.php:1048 msgid "Go back to this page" msgstr "Ushbu sahifaga qaytish" -#: tbl_change.php:1158 +#: tbl_change.php:1056 msgid "Edit next row" msgstr "Keyingi qatorni tahrirlash" -#: tbl_change.php:1169 +#: tbl_change.php:1067 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Maydonlararo o‘tish uchun TAB tugmasi yoki CTRL+strelka tugmalaridan " "foydalaning" -#: tbl_change.php:1207 +#: tbl_change.php:1105 #, php-format msgid "Restart insertion with %s rows" msgstr "Qo‘yilayotgan qatorlar soni: \"%s\"" -#: tbl_create.php:57 +#: tbl_create.php:55 #, php-format msgid "Table %s already exists!" msgstr "\"%s\" nomli jadval mavjud!" -#: tbl_create.php:244 +#: tbl_create.php:241 #, php-format msgid "Table %1$s has been created." msgstr "%1$s jadvali tuzildi." @@ -8266,196 +8335,196 @@ msgstr "Indeksni \"PRIMARY\"ga qayta nomlab bo‘lmadi!" msgid "No index parts defined!" msgstr "Indeks qismlari belgilanmagan!" -#: tbl_indexes.php:159 +#: tbl_indexes.php:158 msgid "Create a new index" msgstr "Yangi indeks tuzish" -#: tbl_indexes.php:161 +#: tbl_indexes.php:160 msgid "Modify an index" msgstr "Indeksni o‘zgarirish" -#: tbl_indexes.php:167 +#: tbl_indexes.php:166 msgid "Index name:" msgstr "Indeks nomi: " -#: tbl_indexes.php:173 +#: tbl_indexes.php:172 msgid "Index type:" msgstr "Indeks turi: " -#: tbl_indexes.php:183 +#: tbl_indexes.php:182 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "(\"PRIMARY\" nomi faqat birlamchi indeksgaega bo‘lishi shart!)" -#: tbl_indexes.php:250 +#: tbl_indexes.php:249 #, php-format msgid "Add to index  %s column(s)" msgstr " \"%s\" maydon(lar)ini indeksga qo‘shish" -#: tbl_indexes.php:255 tbl_structure.php:588 tbl_structure.php:599 +#: tbl_indexes.php:254 tbl_structure.php:586 tbl_structure.php:597 msgid "Column count has to be larger than zero." msgstr "Ustunlar soni noldan ko‘p bo‘lishi shart." -#: tbl_move_copy.php:45 +#: tbl_move_copy.php:44 msgid "Can't move table to same one!" msgstr "Jadvalni o‘z-o‘ziga ko‘chirib bo‘lmaydi!" -#: tbl_move_copy.php:47 +#: tbl_move_copy.php:46 msgid "Can't copy table to same one!" msgstr "Jadvalning o‘zidan o‘ziga nusxa ko‘chirish mumkin emas!" -#: tbl_move_copy.php:55 +#: tbl_move_copy.php:54 #, php-format msgid "Table %s has been moved to %s." msgstr " \"%s\" jadvali \"%s\" ga ko‘chirildi." -#: tbl_move_copy.php:57 +#: tbl_move_copy.php:56 #, php-format msgid "Table %s has been copied to %s." msgstr "\"%s\" jadvalidan \"%s\" ga nusxa ko‘chirildi." -#: tbl_move_copy.php:81 +#: tbl_move_copy.php:80 msgid "The table name is empty!" msgstr "Jadval nomi ko‘rsatilmagan!" -#: tbl_operations.php:248 +#: tbl_operations.php:246 msgid "Alter table order by" msgstr "Jadval sortirovkasini o‘zgartirish" -#: tbl_operations.php:257 +#: tbl_operations.php:255 msgid "(singly)" msgstr "(ustun)" -#: tbl_operations.php:277 +#: tbl_operations.php:275 msgid "Move table to (database.table):" msgstr "Jadvalni (ma`lumotlar bazasi.jadval) ga ko‘chirish:" -#: tbl_operations.php:335 +#: tbl_operations.php:333 msgid "Table options" msgstr "Jadval parametrlari" -#: tbl_operations.php:339 +#: tbl_operations.php:337 msgid "Rename table to" msgstr "Jadval nomini o‘zgartirish" -#: tbl_operations.php:510 +#: tbl_operations.php:508 msgid "Copy table to (database.table):" msgstr "Jadvaldan (ma`lumotlar ombori.jadval) ga nusxa ko‘chirish:" -#: tbl_operations.php:557 +#: tbl_operations.php:555 msgid "Switch to copied table" msgstr "Nusxa olingan jadvalga o‘tish" -#: tbl_operations.php:569 +#: tbl_operations.php:567 msgid "Table maintenance" msgstr "Jadvalga xizmat ko‘rsatish" -#: tbl_operations.php:590 +#: tbl_operations.php:588 msgid "Defragment table" msgstr "Jadvalni defragmentatsiyalash" -#: tbl_operations.php:629 +#: tbl_operations.php:627 #, php-format msgid "Table %s has been flushed" msgstr "\"%s\" jadvali keshi yangilandi" -#: tbl_operations.php:635 +#: tbl_operations.php:633 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Jadval keshini yangilash (\"FLUSH\")" -#: tbl_operations.php:650 +#: tbl_operations.php:648 msgid "Partition maintenance" msgstr "bo‘laklarga xizmat ko‘rsatish" -#: tbl_operations.php:658 +#: tbl_operations.php:656 #, php-format msgid "Partition %s" msgstr "\"%s\" bo‘lagi" -#: tbl_operations.php:661 +#: tbl_operations.php:659 msgid "Analyze" msgstr "Tahlil" -#: tbl_operations.php:662 +#: tbl_operations.php:660 msgid "Check" msgstr "Tekshirish" -#: tbl_operations.php:663 +#: tbl_operations.php:661 msgid "Optimize" msgstr "Optimizatsiya" -#: tbl_operations.php:664 +#: tbl_operations.php:662 msgid "Rebuild" msgstr "Qayta qurish" -#: tbl_operations.php:665 +#: tbl_operations.php:663 msgid "Repair" msgstr "Tiklash" -#: tbl_operations.php:677 +#: tbl_operations.php:675 msgid "Remove partitioning" msgstr "Bo‘laklarni (PARTITIONS) o‘chirish" -#: tbl_operations.php:703 +#: tbl_operations.php:701 msgid "Check referential integrity:" msgstr "Ma`lumotlar yaxlitligini tekshirish:" -#: tbl_printview.php:73 +#: tbl_printview.php:72 msgid "Show tables" msgstr "Jadvallarni ko‘rsatish" -#: tbl_printview.php:308 tbl_structure.php:655 +#: tbl_printview.php:307 tbl_structure.php:653 msgid "Space usage" msgstr "Foydalanilayotgan joy" -#: tbl_printview.php:312 tbl_structure.php:659 +#: tbl_printview.php:311 tbl_structure.php:657 msgid "Usage" msgstr "Ishlatilish" -#: tbl_printview.php:339 tbl_structure.php:686 +#: tbl_printview.php:338 tbl_structure.php:684 msgid "Effective" msgstr "Effektivlik" -#: tbl_printview.php:364 tbl_structure.php:724 +#: tbl_printview.php:363 tbl_structure.php:722 msgid "Row Statistics" msgstr "Qatorlar statistikasi" -#: tbl_printview.php:367 tbl_structure.php:727 +#: tbl_printview.php:366 tbl_structure.php:725 msgid "Statements" msgstr "Tavsif" -#: tbl_printview.php:378 tbl_structure.php:739 +#: tbl_printview.php:377 tbl_structure.php:737 msgid "static" msgstr "statik" -#: tbl_printview.php:380 tbl_structure.php:741 +#: tbl_printview.php:379 tbl_structure.php:739 msgid "dynamic" msgstr "dinamik" -#: tbl_printview.php:402 tbl_structure.php:784 +#: tbl_printview.php:401 tbl_structure.php:782 msgid "Row length" msgstr "Qator uzunligi" -#: tbl_printview.php:412 tbl_structure.php:792 +#: tbl_printview.php:411 tbl_structure.php:790 msgid " Row size " msgstr "Qator hajmi" -#: tbl_relation.php:278 +#: tbl_relation.php:276 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" " %1$s da tashqi kalit (FOREIGN KEY) tuzishda xatolik (ma`lumot turini " "tekshiring)" -#: tbl_relation.php:404 +#: tbl_relation.php:402 #, fuzzy #| msgid "Internal relations" msgid "Internal relation" msgstr "Ichki aloqalar" -#: tbl_relation.php:406 +#: tbl_relation.php:404 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -8463,7 +8532,7 @@ msgstr "" "Agar tashqi kalit (FOREIGN KEY) orqali aloqa mavjud bo‘lsa, ichki aloqa " "o‘rnatish shart emas." -#: tbl_relation.php:412 +#: tbl_relation.php:410 #, fuzzy #| msgid "Foreign key limit" msgid "Foreign key constraint" @@ -8474,121 +8543,121 @@ msgid "No rows selected" msgstr "" "Amalni amalga oshirish uchun bitta yoki bir nechta qatorni tanlash kerak. " -#: tbl_select.php:130 +#: tbl_select.php:129 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "\"Namunadagi so‘rovni bajarish\" (o‘rniga qo‘yish belgisi: \"%\")" -#: tbl_select.php:136 +#: tbl_select.php:135 msgid "Operator" msgstr "Operator" -#: tbl_select.php:267 +#: tbl_select.php:266 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "Maydonni tanlang (kamida bitta):" -#: tbl_select.php:285 +#: tbl_select.php:284 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Qidirish shartini ko‘shish (ya`ni \"where\" jumlasi):" -#: tbl_select.php:292 +#: tbl_select.php:291 msgid "Number of rows per page" msgstr "Sahifadagi qatorlar soni " -#: tbl_select.php:298 +#: tbl_select.php:297 msgid "Display order:" msgstr "Sortirovka:" -#: tbl_structure.php:160 +#: tbl_structure.php:159 msgid "Browse distinct values" msgstr "Turli qiymatlarni ko‘rib chiqish" -#: tbl_structure.php:360 +#: tbl_structure.php:358 #, fuzzy #| msgid "None" msgctxt "None for default" msgid "None" msgstr "Yo‘q" -#: tbl_structure.php:373 +#: tbl_structure.php:371 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Column %s has been dropped" msgstr "\"%s\" jadvali o‘chirildi" -#: tbl_structure.php:384 +#: tbl_structure.php:382 #, php-format msgid "A primary key has been added on %s" msgstr " \"%s\" ga birlamchi kalit qo‘shildi" -#: tbl_structure.php:399 tbl_structure.php:413 tbl_structure.php:427 +#: tbl_structure.php:397 tbl_structure.php:411 tbl_structure.php:425 #, php-format msgid "An index has been added on %s" msgstr " \"%s\" uchun indeks qo‘shildi" -#: tbl_structure.php:505 tbl_structure.php:507 +#: tbl_structure.php:503 tbl_structure.php:505 msgid "Relation view" msgstr "Aloqalarni ko‘rish" -#: tbl_structure.php:514 tbl_structure.php:516 +#: tbl_structure.php:512 tbl_structure.php:514 msgid "Propose table structure" msgstr "Jadval tuzilishi tahlili" -#: tbl_structure.php:539 +#: tbl_structure.php:537 #, fuzzy #| msgid "Add column(s)" msgid "Add column" msgstr "Ustun(lar) qo‘shish" -#: tbl_structure.php:553 +#: tbl_structure.php:551 msgid "At End of Table" msgstr "Jadval oxiriga" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At Beginning of Table" msgstr "Jadval boshiga" -#: tbl_structure.php:555 +#: tbl_structure.php:553 #, php-format msgid "After %s" msgstr " \"%s\" dan keyin" -#: tbl_structure.php:593 +#: tbl_structure.php:591 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "\"%s\" maydon uchun indeks tuzish" -#: tbl_structure.php:755 +#: tbl_structure.php:753 msgid "partitioned" msgstr "bo‘laklarga bo‘lingan" -#: tbl_tracking.php:113 +#: tbl_tracking.php:109 #, php-format msgid "Tracking report for table `%s`" msgstr "\"%s\" jadvali uchun kuzatuv hisoboti" -#: tbl_tracking.php:186 +#: tbl_tracking.php:182 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "%s vеrsiya tuzildi, \"%s.%s\" ni kuzatishsh faollashtirilgan." -#: tbl_tracking.php:194 +#: tbl_tracking.php:190 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "\"%s.%s\" ni kuzatish, %s vеrsiya faolsizlantirilgan." -#: tbl_tracking.php:202 +#: tbl_tracking.php:198 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "\"%s.%s\" ni kuzatish, %s vеrsiya faollashtirilgan." -#: tbl_tracking.php:212 +#: tbl_tracking.php:208 msgid "SQL statements executed." msgstr "SQL so‘rovi bajarildi." -#: tbl_tracking.php:219 +#: tbl_tracking.php:215 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -8596,109 +8665,109 @@ msgstr "" "Dampni bajarish uchun vaqtinchalik baza tuzing yo borini ishlating. Buning " "uchun yetarli privilеgiyalarga ega bo‘lishingiz kеrak." -#: tbl_tracking.php:220 +#: tbl_tracking.php:216 msgid "Comment out these two lines if you do not need them." msgstr "Agar kеrak bo‘lmasa, ushbu ikki qator oldiga sharh bеlgisini qo‘ying." -#: tbl_tracking.php:229 +#: tbl_tracking.php:225 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "SQL so‘rovi eksport qilindi. Dampdan nusxa oling yoki uni bajaring." -#: tbl_tracking.php:250 tbl_tracking.php:378 +#: tbl_tracking.php:245 tbl_tracking.php:373 msgid "Close" msgstr "Yopish" -#: tbl_tracking.php:261 +#: tbl_tracking.php:256 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "%s vеrsiya rasmi (SQL kodi)" -#: tbl_tracking.php:380 +#: tbl_tracking.php:375 msgid "Tracking statements" msgstr "Kuzatish opеratorlari" -#: tbl_tracking.php:396 tbl_tracking.php:503 +#: tbl_tracking.php:391 tbl_tracking.php:498 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "\"%s\"ni ko‘rsatish, %s dan %s sanagacha, foydalanuvchi %s %s" -#: tbl_tracking.php:409 tbl_tracking.php:460 +#: tbl_tracking.php:404 tbl_tracking.php:455 msgid "Date" msgstr "Sanani" -#: tbl_tracking.php:410 tbl_tracking.php:461 +#: tbl_tracking.php:405 tbl_tracking.php:456 msgid "Username" msgstr "Foydalanuvchi" -#: tbl_tracking.php:411 +#: tbl_tracking.php:406 msgid "Data definition statement" msgstr "Ma’lumotlar ta’rifi opеratorini" -#: tbl_tracking.php:462 +#: tbl_tracking.php:457 msgid "Data manipulation statement" msgstr "Ma’lumotlarni boshqarish opеratorini" -#: tbl_tracking.php:506 +#: tbl_tracking.php:501 msgid "SQL dump (file download)" msgstr "SQL dampi (faylni yuklab olish)" -#: tbl_tracking.php:507 +#: tbl_tracking.php:502 msgid "SQL dump" msgstr "SQL damp" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "This option will replace your table and contained data." msgstr "Ushbu tanlov jadval va uning tarkibini amashtiradi." -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "SQL execution" msgstr "SQL bajaruvi" -#: tbl_tracking.php:520 +#: tbl_tracking.php:515 #, php-format msgid "Export as %s" msgstr "\"%s\" dеb eksport qilish" -#: tbl_tracking.php:560 +#: tbl_tracking.php:555 msgid "Show versions" msgstr "Vеrsiyalarni ko‘rsatish" -#: tbl_tracking.php:592 +#: tbl_tracking.php:587 msgid "Version" msgstr "Vеrsiya" -#: tbl_tracking.php:639 +#: tbl_tracking.php:634 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "\"%s.%s\" jadvalini kuzatishni faolsizlantirish" -#: tbl_tracking.php:641 +#: tbl_tracking.php:636 msgid "Deactivate now" msgstr "Hozir faolsizlantirish" -#: tbl_tracking.php:652 +#: tbl_tracking.php:647 #, php-format msgid "Activate tracking for %s.%s" msgstr "\"%s.%s\" jadvalini kuzatishni faollashtirish" -#: tbl_tracking.php:654 +#: tbl_tracking.php:649 msgid "Activate now" msgstr "Hozir faollashtirish" -#: tbl_tracking.php:667 +#: tbl_tracking.php:662 #, php-format msgid "Create version %s of %s.%s" msgstr "\"%s.%s\" jadvalining %s raqamli vеrsiyasini tuzish" -#: tbl_tracking.php:671 +#: tbl_tracking.php:666 msgid "Track these data definition statements:" msgstr "Ushbu ma’lumotlar ta’rifi opеratorlarini kuzatish:" -#: tbl_tracking.php:679 +#: tbl_tracking.php:674 msgid "Track these data manipulation statements:" msgstr "Ushbu ma’lumotlar boshqaruvi opеratorlarini kuzatish:" -#: tbl_tracking.php:687 +#: tbl_tracking.php:682 msgid "Create version" msgstr "Vеrsiyasini tuzish" @@ -8749,10 +8818,40 @@ msgstr "Profil yangilandi." msgid "VIEW name" msgstr "Nom ko‘rinishi" -#: view_operations.php:92 +#: view_operations.php:91 msgid "Rename view to" msgstr "Ko‘rinish nomini o‘zgartirish" +#~ msgid "BLOB Repository" +#~ msgstr "BLOB ombori" + +#, fuzzy +#~| msgid "Enabled" +#~ msgctxt "BLOB repository" +#~ msgid "Enabled" +#~ msgstr "Faollashtirilgan" + +#~ msgid "Disable" +#~ msgstr "Faolsizlantirish" + +#~ msgid "Damaged" +#~ msgstr "Shikastlangan" + +#, fuzzy +#~| msgid "Repair" +#~ msgctxt "BLOB repository" +#~ msgid "Repair" +#~ msgstr "Tiklash" + +#, fuzzy +#~| msgid "Disabled" +#~ msgctxt "BLOB repository" +#~ msgid "Disabled" +#~ msgstr "Faolsizlantirilgan" + +#~ msgid "Enable" +#~ msgstr "Faollantirish" + #~ msgid "" #~ "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " #~ "extension. Please check your PHP configuration." diff --git a/po/zh_CN.po b/po/zh_CN.po index 97d69d593..76ef5b775 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-21 13:53+0200\n" +"POT-Creation-Date: 2010-07-26 17:18+0200\n" "PO-Revision-Date: 2010-06-04 14:09+0200\n" "Last-Translator: shanyan baishui \n" "Language-Team: chinese_simplified \n" @@ -14,19 +14,19 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.1\n" -#: browse_foreigners.php:37 browse_foreigners.php:58 -#: libraries/display_tbl.lib.php:416 server_privileges.php:1506 +#: browse_foreigners.php:36 browse_foreigners.php:57 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1510 msgid "Show all" msgstr "全部显示" -#: browse_foreigners.php:81 libraries/common.lib.php:2313 -#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:393 -#: libraries/export/pdf.php:146 pdf_schema.php:282 pdf_schema.php:1122 -#: pdf_schema.php:1138 +#: browse_foreigners.php:80 libraries/common.lib.php:2318 +#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:392 +#: libraries/export/pdf.php:146 pdf_schema.php:281 pdf_schema.php:1121 +#: pdf_schema.php:1137 msgid "Page number:" msgstr "页码:" -#: browse_foreigners.php:131 +#: browse_foreigners.php:130 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -35,137 +35,151 @@ msgstr "" "无法更新目标浏览窗口。可能你已经关闭了父窗口或您浏览器的安全设置阻止了跨窗口" "更新。" -#: browse_foreigners.php:149 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2829 -#: libraries/common.lib.php:2836 libraries/db_links.inc.php:74 -#: libraries/tbl_links.inc.php:62 +#: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 +#: db_structure.php:89 db_structure.php:91 db_structure.php:102 +#: db_structure.php:104 libraries/common.lib.php:2834 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "搜索" -#: browse_foreigners.php:152 db_operations.php:384 db_operations.php:428 -#: db_operations.php:498 db_operations.php:608 db_search.php:344 -#: db_structure.php:566 js/messages.php:48 libraries/Config.class.php:1043 -#: libraries/Theme_Manager.class.php:310 +#: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 +#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 +#: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 -#: libraries/common.lib.php:1340 libraries/common.lib.php:2289 +#: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 -#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:275 -#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:531 -#: libraries/display_tbl.lib.php:613 libraries/replication_gui.lib.php:75 +#: libraries/display_export.lib.php:269 libraries/display_import.lib.php:275 +#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 +#: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 #: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:781 -#: main.php:127 navigation.php:231 pdf_pages.php:291 pdf_pages.php:327 -#: pdf_pages.php:529 pmd_pdf.php:115 server_binlog.php:128 -#: server_privileges.php:664 server_privileges.php:1616 -#: server_privileges.php:1963 server_privileges.php:2010 -#: server_privileges.php:2049 server_replication.php:234 -#: server_replication.php:317 server_replication.php:340 -#: server_synchronize.php:1208 tbl_change.php:328 tbl_change.php:1172 -#: tbl_change.php:1209 tbl_indexes.php:253 tbl_operations.php:264 -#: tbl_operations.php:301 tbl_operations.php:498 tbl_operations.php:560 -#: tbl_operations.php:680 tbl_select.php:324 tbl_structure.php:561 -#: tbl_structure.php:596 tbl_tracking.php:394 tbl_tracking.php:511 -#: view_create.php:181 view_operations.php:100 +#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 +#: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 +#: server_privileges.php:663 server_privileges.php:1620 +#: server_privileges.php:1967 server_privileges.php:2014 +#: server_privileges.php:2053 server_replication.php:233 +#: server_replication.php:316 server_replication.php:339 +#: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 +#: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 +#: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 +#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "执行" -#: browse_foreigners.php:167 browse_foreigners.php:171 -#: libraries/Index.class.php:441 tbl_tracking.php:319 +#: browse_foreigners.php:166 browse_foreigners.php:170 +#: libraries/Index.class.php:441 tbl_tracking.php:314 msgid "Keyname" msgstr "键名" -#: browse_foreigners.php:168 browse_foreigners.php:170 -#: server_collations.php:54 server_collations.php:66 server_engines.php:58 +#: browse_foreigners.php:167 browse_foreigners.php:169 +#: server_collations.php:54 server_collations.php:66 server_engines.php:57 #: server_status.php:738 msgid "Description" msgstr "说明" -#: browse_foreigners.php:246 browse_foreigners.php:255 -#: browse_foreigners.php:267 browse_foreigners.php:275 +#: browse_foreigners.php:245 browse_foreigners.php:254 +#: browse_foreigners.php:266 browse_foreigners.php:274 msgid "Use this value" msgstr "使用此值" -#: db_create.php:45 +#: bs_disp_as_mime_type.php:29 bs_play_media.php:35 +msgid "No blob streaming server configured!" +msgstr "" + +#: bs_disp_as_mime_type.php:35 +#, fuzzy +#| msgid "Failed to write file to disk." +msgid "Failed to fetch headers" +msgstr "将文件写入磁盘失败。" + +#: bs_disp_as_mime_type.php:41 +msgid "Failed to open remote URL" +msgstr "" + +#: db_create.php:44 #, php-format msgid "Database %1$s has been created." msgstr "创建数据库 %1$s 成功。" -#: db_datadict.php:48 db_operations.php:377 +#: db_datadict.php:48 db_operations.php:313 msgid "Database comment: " msgstr "数据库注释:" -#: db_datadict.php:164 libraries/tbl_properties.inc.php:723 -#: pdf_schema.php:1235 tbl_operations.php:346 tbl_printview.php:128 +#: db_datadict.php:164 libraries/tbl_properties.inc.php:722 +#: pdf_schema.php:1234 tbl_operations.php:344 tbl_printview.php:127 msgid "Table comments" msgstr "表注释" -#: db_datadict.php:173 db_qbe.php:173 libraries/Index.class.php:445 +#: db_datadict.php:173 db_qbe.php:170 libraries/Index.class.php:445 #: libraries/export/htmlword.php:243 libraries/export/latex.php:364 #: libraries/export/odt.php:293 libraries/export/texytext.php:233 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:274 -#: pdf_schema.php:1261 pdf_schema.php:1282 tbl_change.php:306 -#: tbl_indexes.php:188 tbl_printview.php:140 tbl_relation.php:401 -#: tbl_select.php:133 tbl_structure.php:176 tbl_tracking.php:272 -#: tbl_tracking.php:323 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 +#: pdf_schema.php:1260 pdf_schema.php:1281 tbl_change.php:301 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:132 tbl_structure.php:175 tbl_tracking.php:267 +#: tbl_tracking.php:318 msgid "Column" msgstr "字段" -#: db_datadict.php:174 db_printview.php:105 libraries/Index.class.php:442 +#: db_datadict.php:174 db_printview.php:104 libraries/Index.class.php:442 #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 #: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:244 #: libraries/export/latex.php:364 libraries/export/odt.php:296 #: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:99 -#: pdf_schema.php:1262 pdf_schema.php:1283 server_privileges.php:2062 -#: tbl_change.php:285 tbl_change.php:312 tbl_printview.php:141 -#: tbl_printview.php:311 tbl_select.php:134 tbl_structure.php:177 -#: tbl_structure.php:658 tbl_tracking.php:273 tbl_tracking.php:320 +#: pdf_schema.php:1261 pdf_schema.php:1282 server_privileges.php:2066 +#: tbl_change.php:280 tbl_change.php:307 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:133 tbl_structure.php:176 +#: tbl_structure.php:656 tbl_tracking.php:268 tbl_tracking.php:315 msgid "Type" msgstr "类型" #: db_datadict.php:176 libraries/Index.class.php:448 #: libraries/export/htmlword.php:245 libraries/export/latex.php:364 #: libraries/export/odt.php:299 libraries/export/texytext.php:235 -#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1264 -#: pdf_schema.php:1285 tbl_change.php:321 tbl_printview.php:143 -#: tbl_structure.php:180 tbl_tracking.php:275 tbl_tracking.php:326 +#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1263 +#: pdf_schema.php:1284 tbl_change.php:316 tbl_printview.php:142 +#: tbl_structure.php:179 tbl_tracking.php:270 tbl_tracking.php:321 msgid "Null" msgstr "空" -#: db_datadict.php:177 db_structure.php:500 libraries/export/htmlword.php:246 +#: db_datadict.php:177 db_structure.php:486 libraries/export/htmlword.php:246 #: libraries/export/latex.php:364 libraries/export/odt.php:302 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:105 -#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 -#: tbl_structure.php:181 tbl_tracking.php:276 +#: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:143 +#: tbl_structure.php:180 tbl_tracking.php:271 msgid "Default" msgstr "默认" #: db_datadict.php:181 libraries/export/htmlword.php:248 #: libraries/export/latex.php:366 libraries/export/odt.php:306 -#: libraries/export/texytext.php:238 pdf_schema.php:1267 pdf_schema.php:1288 -#: tbl_printview.php:148 +#: libraries/export/texytext.php:238 pdf_schema.php:1266 pdf_schema.php:1287 +#: tbl_printview.php:147 msgid "Links to" msgstr "链接到" -#: db_datadict.php:183 db_printview.php:111 libraries/export/htmlword.php:251 +#: db_datadict.php:183 db_printview.php:110 libraries/export/htmlword.php:251 #: libraries/export/latex.php:49 libraries/export/latex.php:369 #: libraries/export/odt.php:37 libraries/export/odt.php:311 #: libraries/export/sql.php:29 libraries/export/texytext.php:241 -#: libraries/tbl_properties.inc.php:129 pdf_schema.php:1278 -#: pdf_schema.php:1289 tbl_printview.php:150 +#: libraries/tbl_properties.inc.php:128 pdf_schema.php:1277 +#: pdf_schema.php:1288 tbl_printview.php:149 msgid "Comments" msgstr "注释" #: db_datadict.php:266 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/export/htmlword.php:321 #: libraries/export/latex.php:434 libraries/export/odt.php:367 -#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:262 -#: pdf_schema.php:1343 server_privileges.php:1560 server_privileges.php:1571 -#: server_privileges.php:1881 server_privileges.php:1886 -#: server_privileges.php:2179 sql.php:131 sql.php:193 tbl_printview.php:227 -#: tbl_structure.php:349 tbl_tracking.php:336 tbl_tracking.php:341 +#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:261 +#: pdf_schema.php:1342 server_privileges.php:1564 server_privileges.php:1575 +#: server_privileges.php:1885 server_privileges.php:1890 +#: server_privileges.php:2183 sql.php:130 sql.php:192 tbl_printview.php:226 +#: tbl_structure.php:347 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "否" @@ -176,17 +190,17 @@ msgstr "否" #: libraries/mult_submits.inc.php:49 libraries/mult_submits.inc.php:54 #: libraries/mult_submits.inc.php:59 libraries/mult_submits.inc.php:91 #: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:105 -#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:261 -#: libraries/mult_submits.inc.php:272 pdf_schema.php:1343 -#: server_databases.php:63 server_privileges.php:1557 -#: server_privileges.php:1571 server_privileges.php:1881 -#: server_privileges.php:1884 server_privileges.php:2179 sql.php:192 -#: tbl_printview.php:227 tbl_structure.php:39 tbl_structure.php:349 -#: tbl_tracking.php:334 tbl_tracking.php:339 +#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:260 +#: libraries/mult_submits.inc.php:271 pdf_schema.php:1342 +#: server_databases.php:61 server_privileges.php:1561 +#: server_privileges.php:1575 server_privileges.php:1885 +#: server_privileges.php:1888 server_privileges.php:2183 sql.php:191 +#: tbl_printview.php:226 tbl_structure.php:38 tbl_structure.php:347 +#: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" msgstr "是" -#: db_datadict.php:321 db_printview.php:265 tbl_printview.php:496 +#: db_datadict.php:321 db_printview.php:264 tbl_printview.php:495 msgid "Print" msgstr "打印" @@ -194,277 +208,243 @@ msgstr "打印" msgid "View dump (schema) of database" msgstr "查看数据库的转存(大纲)。" -#: db_export.php:32 db_printview.php:95 db_qbe.php:101 db_structure.php:50 -#: db_tracking.php:34 export.php:352 navigation.php:326 +#: db_export.php:32 db_printview.php:94 db_qbe.php:98 db_structure.php:49 +#: db_tracking.php:30 export.php:350 navigation.php:325 msgid "No tables found in database." msgstr "数据库中没有表。" -#: db_export.php:42 db_search.php:326 server_export.php:26 +#: db_export.php:42 db_search.php:326 server_export.php:24 msgid "Select All" msgstr "全选" -#: db_export.php:44 db_search.php:329 server_export.php:28 +#: db_export.php:44 db_search.php:329 server_export.php:26 msgid "Unselect All" msgstr "全不选" -#: db_operations.php:37 tbl_create.php:49 +#: db_operations.php:33 tbl_create.php:47 msgid "The database name is empty!" msgstr "数据库名不能为空!" -#: db_operations.php:235 +#: db_operations.php:231 #, php-format msgid "Database %s has been renamed to %s" msgstr "已将数据库 %s 改名为 %s" -#: db_operations.php:239 +#: db_operations.php:235 #, php-format msgid "Database %s has been copied to %s" msgstr "已将数据库 %s 复制为 %s" -#: db_operations.php:411 +#: db_operations.php:347 msgid "Rename database to" msgstr "将数据库改名为" -#: db_operations.php:416 server_processlist.php:56 +#: db_operations.php:352 server_processlist.php:56 msgid "Command" msgstr "命令" -#: db_operations.php:428 tbl_change.php:1141 +#: db_operations.php:364 tbl_change.php:1039 msgid "and then" msgstr "然后" -#: db_operations.php:454 +#: db_operations.php:390 msgid "Copy database to" msgstr "复制数据库到" -#: db_operations.php:461 tbl_operations.php:527 tbl_tracking.php:387 +#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "仅结构" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:389 +#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "结构和数据" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:388 +#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "仅数据" -#: db_operations.php:471 +#: db_operations.php:407 msgid "CREATE DATABASE before copying" msgstr "复制前创建数据库 (CREATE DATABASE)" -#: db_operations.php:474 libraries/export/sql.php:51 +#: db_operations.php:410 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 -#: libraries/export/sql.php:81 tbl_operations.php:535 +#: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "添加 %s" -#: db_operations.php:478 libraries/export/sql.php:77 tbl_operations.php:298 -#: tbl_operations.php:537 +#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "添加自增 (AUTO_INCREMENT) 值" -#: db_operations.php:482 tbl_operations.php:544 +#: db_operations.php:418 tbl_operations.php:542 msgid "Add constraints" msgstr "强制添加" -#: db_operations.php:495 +#: db_operations.php:431 msgid "Switch to copied database" msgstr "切换到复制的数据库" -#: db_operations.php:536 -msgid "BLOB Repository" -msgstr "BLOB 容器" - -#: db_operations.php:539 db_tracking.php:75 libraries/common.lib.php:1357 -#: libraries/server_links.inc.php:48 server_processlist.php:58 -#: tbl_tracking.php:595 test/theme.php:100 -msgid "Status" -msgstr "状态" - -#: db_operations.php:547 -msgctxt "BLOB repository" -msgid "Enabled" -msgstr "已启用" - -#: db_operations.php:551 -msgid "Disable" -msgstr "禁用" - -#: db_operations.php:561 -msgid "Damaged" -msgstr "已损坏" - -#: db_operations.php:565 -msgctxt "BLOB repository" -msgid "Repair" -msgstr "修复" - -#: db_operations.php:573 -msgctxt "BLOB repository" -msgid "Disabled" -msgstr "已禁用" - -#: db_operations.php:577 -msgid "Enable" -msgstr "启用" - -#: db_operations.php:601 libraries/Index.class.php:447 +#: db_operations.php:451 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 -#: server_collations.php:53 server_collations.php:65 server_databases.php:110 -#: tbl_operations.php:362 tbl_select.php:135 tbl_structure.php:178 -#: tbl_structure.php:766 tbl_tracking.php:274 tbl_tracking.php:325 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 +#: server_collations.php:53 server_collations.php:65 server_databases.php:108 +#: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:177 +#: tbl_structure.php:764 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "整理" -#: db_operations.php:614 main.php:315 pdf_schema.php:33 -#, php-format +#: db_operations.php:464 pdf_schema.php:32 +#, fuzzy, php-format +#| msgid "" +#| "The additional features for working with linked tables have been " +#| "deactivated. To find out why click %shere%s." msgid "" -"The additional features for working with linked tables have been " -"deactivated. To find out why click %shere%s." +"The phpMyAdmin configuration storage has been deactivated. To find out why " +"click %shere%s." msgstr "链接表的附加功能尚未激活。要查出原因,请点击%s此处%s。" -#: db_operations.php:647 +#: db_operations.php:497 msgid "Edit PDF Pages" msgstr "编辑 PDF 页" -#: db_printview.php:103 db_tracking.php:71 db_tracking.php:156 +#: db_printview.php:102 db_tracking.php:67 db_tracking.php:152 #: libraries/db_structure.lib.php:37 libraries/export/xml.php:327 -#: libraries/header.inc.php:125 pdf_pages.php:423 server_privileges.php:1657 -#: server_privileges.php:1713 server_privileges.php:1977 -#: server_synchronize.php:422 server_synchronize.php:865 tbl_tracking.php:591 +#: libraries/header.inc.php:125 pdf_pages.php:422 server_privileges.php:1661 +#: server_privileges.php:1717 server_privileges.php:1981 +#: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "表" -#: db_printview.php:104 libraries/db_structure.lib.php:47 +#: db_printview.php:103 libraries/db_structure.lib.php:47 #: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 -#: navigation.php:629 navigation.php:651 server_databases.php:121 -#: tbl_printview.php:392 tbl_structure.php:364 tbl_structure.php:776 +#: navigation.php:628 navigation.php:650 server_databases.php:119 +#: tbl_printview.php:391 tbl_structure.php:362 tbl_structure.php:774 msgid "Rows" msgstr "行数" -#: db_printview.php:108 libraries/db_structure.lib.php:58 tbl_indexes.php:189 +#: db_printview.php:107 libraries/db_structure.lib.php:58 tbl_indexes.php:188 msgid "Size" msgstr "大小" -#: db_printview.php:161 db_structure.php:456 libraries/export/sql.php:556 +#: db_printview.php:160 db_structure.php:442 libraries/export/sql.php:556 #: libraries/export/sql.php:896 msgid "in use" msgstr "使用中" -#: db_printview.php:186 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:511 pdf_schema.php:1240 tbl_printview.php:432 -#: tbl_structure.php:808 +#: db_printview.php:185 libraries/db_info.inc.php:86 +#: libraries/export/sql.php:511 pdf_schema.php:1239 tbl_printview.php:431 +#: tbl_structure.php:806 msgid "Creation" msgstr "创建时间" -#: db_printview.php:195 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:516 pdf_schema.php:1245 tbl_printview.php:442 -#: tbl_structure.php:816 +#: db_printview.php:194 libraries/db_info.inc.php:91 +#: libraries/export/sql.php:516 pdf_schema.php:1244 tbl_printview.php:441 +#: tbl_structure.php:814 msgid "Last update" msgstr "最后更新" -#: db_printview.php:204 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:521 pdf_schema.php:1250 tbl_printview.php:452 -#: tbl_structure.php:824 +#: db_printview.php:203 libraries/db_info.inc.php:96 +#: libraries/export/sql.php:521 pdf_schema.php:1249 tbl_printview.php:451 +#: tbl_structure.php:822 msgid "Last check" msgstr "最后检查" -#: db_printview.php:221 db_structure.php:479 +#: db_printview.php:220 db_structure.php:465 #, php-format msgid "%s table" msgid_plural "%s tables" msgstr[0] "%s 张表" -#: db_qbe.php:28 import.php:453 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1980 libraries/sql_query_form.lib.php:138 -#: tbl_operations.php:212 tbl_relation.php:291 tbl_row_action.php:130 -#: view_operations.php:61 +#: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 +#: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "您的 SQL 语句已成功运行" -#: db_qbe.php:41 +#: db_qbe.php:38 msgid "You have to choose at least one column to display" msgstr "您最少要选择显示一列" -#: db_qbe.php:199 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:865 +#: db_qbe.php:196 libraries/db_structure.lib.php:95 +#: libraries/display_tbl.lib.php:864 msgid "Sort" msgstr "排序" -#: db_qbe.php:208 db_qbe.php:242 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:522 libraries/display_tbl.lib.php:827 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:259 -#: tbl_select.php:311 +#: db_qbe.php:205 db_qbe.php:239 libraries/db_structure.lib.php:102 +#: libraries/display_tbl.lib.php:521 libraries/display_tbl.lib.php:826 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:257 +#: tbl_select.php:310 msgid "Ascending" msgstr "递增" -#: db_qbe.php:209 db_qbe.php:250 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:527 libraries/display_tbl.lib.php:824 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:260 -#: tbl_select.php:312 +#: db_qbe.php:206 db_qbe.php:247 libraries/db_structure.lib.php:110 +#: libraries/display_tbl.lib.php:526 libraries/display_tbl.lib.php:823 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:258 +#: tbl_select.php:311 msgid "Descending" msgstr "递减" -#: db_qbe.php:263 db_tracking.php:77 libraries/display_tbl.lib.php:307 -#: tbl_change.php:275 tbl_tracking.php:596 +#: db_qbe.php:260 db_tracking.php:73 libraries/display_tbl.lib.php:306 +#: tbl_change.php:270 tbl_tracking.php:591 msgid "Show" msgstr "显示" -#: db_qbe.php:299 +#: db_qbe.php:296 msgid "Criteria" msgstr "条件" -#: db_qbe.php:352 db_qbe.php:434 db_qbe.php:526 db_qbe.php:557 +#: db_qbe.php:349 db_qbe.php:431 db_qbe.php:523 db_qbe.php:554 msgid "Ins" msgstr "插入" -#: db_qbe.php:356 db_qbe.php:438 db_qbe.php:523 db_qbe.php:554 +#: db_qbe.php:353 db_qbe.php:435 db_qbe.php:520 db_qbe.php:551 msgid "And" msgstr "与" -#: db_qbe.php:365 db_qbe.php:446 db_qbe.php:528 db_qbe.php:559 +#: db_qbe.php:362 db_qbe.php:443 db_qbe.php:525 db_qbe.php:556 msgid "Del" msgstr "删除" -#: db_qbe.php:369 db_qbe.php:450 db_qbe.php:521 db_qbe.php:552 -#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:778 -#: server_privileges.php:297 tbl_change.php:1027 tbl_indexes.php:249 -#: tbl_select.php:285 +#: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 +#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:777 +#: server_privileges.php:296 tbl_change.php:925 tbl_indexes.php:248 +#: tbl_select.php:284 msgid "Or" msgstr "或" -#: db_qbe.php:506 +#: db_qbe.php:503 msgid "Modify" msgstr "修改" -#: db_qbe.php:583 +#: db_qbe.php:580 #, fuzzy #| msgid "Add/Delete Criteria Row" msgid "Add/Delete criteria rows" msgstr "添加/删除条件行" -#: db_qbe.php:595 +#: db_qbe.php:592 msgid "Add/Delete columns" msgstr "添加/删除字段" -#: db_qbe.php:608 db_qbe.php:633 +#: db_qbe.php:605 db_qbe.php:630 msgid "Update Query" msgstr "更新查询" -#: db_qbe.php:616 +#: db_qbe.php:613 msgid "Use Tables" msgstr "使用表" -#: db_qbe.php:639 +#: db_qbe.php:636 #, php-format msgid "SQL query on database %s:" msgstr "在数据库 %s 执行 SQL 语句:" -#: db_qbe.php:933 libraries/common.lib.php:1222 +#: db_qbe.php:930 libraries/common.lib.php:1215 msgid "Submit Query" msgstr "提交查询" @@ -503,17 +483,17 @@ msgid "%s match inside table %s" msgid_plural "%s matches inside table %s" msgstr[0] "%s 个匹配 - 于表 %s 中" -#: db_search.php:249 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2831 -#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:49 -#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:466 +#: db_search.php:249 db_structure.php:75 db_structure.php:76 +#: db_structure.php:88 db_structure.php:90 db_structure.php:101 +#: db_structure.php:103 libraries/common.lib.php:2836 +#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 +#: tbl_structure.php:35 tbl_structure.php:47 tbl_structure.php:464 msgid "Browse" msgstr "浏览" -#: db_search.php:254 libraries/display_tbl.lib.php:1164 -#: libraries/display_tbl.lib.php:2055 libraries/sql_query_form.lib.php:453 -#: pdf_pages.php:285 pdf_pages.php:424 pdf_pages.php:460 pdf_pages.php:488 +#: db_search.php:254 libraries/display_tbl.lib.php:1163 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 msgid "Delete" @@ -552,226 +532,232 @@ msgstr "于以下表:" msgid "Inside column:" msgstr "包含字段:" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2830 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:75 +#: db_structure.php:79 db_structure.php:80 db_structure.php:92 +#: db_structure.php:93 db_structure.php:105 db_structure.php:106 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 +#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "插入" -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2827 libraries/common.lib.php:2834 -#: libraries/db_links.inc.php:62 libraries/export/htmlword.php:22 +#: db_structure.php:81 db_structure.php:94 db_structure.php:107 +#: libraries/common.lib.php:2832 libraries/common.lib.php:2839 +#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 -#: libraries/tbl_links.inc.php:55 pmd_general.php:133 -#: server_privileges.php:593 server_replication.php:314 tbl_tracking.php:268 +#: libraries/tbl_links.inc.php:54 pmd_general.php:133 +#: server_privileges.php:592 server_replication.php:313 tbl_tracking.php:263 msgid "Structure" msgstr "结构" -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:544 db_structure.php:545 db_tracking.php:90 -#: libraries/Index.class.php:482 libraries/common.lib.php:1659 -#: libraries/db_links.inc.php:99 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:126 -#: server_databases.php:351 tbl_structure.php:26 tbl_structure.php:150 -#: tbl_structure.php:151 tbl_structure.php:470 +#: db_structure.php:82 db_structure.php:83 db_structure.php:95 +#: db_structure.php:96 db_structure.php:108 db_structure.php:109 +#: db_structure.php:530 db_structure.php:531 db_tracking.php:86 +#: libraries/Index.class.php:482 libraries/common.lib.php:1663 +#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 +#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 +#: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" msgstr "删除" -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:542 db_structure.php:543 libraries/common.lib.php:1658 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:104 +#: db_structure.php:84 db_structure.php:85 db_structure.php:97 +#: db_structure.php:98 db_structure.php:110 db_structure.php:111 +#: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 +#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 msgid "Empty" msgstr "清空" -#: db_structure.php:315 libraries/tbl_links.inc.php:99 +#: db_structure.php:301 libraries/tbl_links.inc.php:98 #, php-format msgid "Table %s has been emptied" msgstr "已清空表 %s " -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "View %s has been dropped" msgstr "已删除视图 %s" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "Table %s has been dropped" msgstr "已删除表 %s " -#: db_structure.php:332 +#: db_structure.php:318 msgid "Tracking is active." msgstr "追踪已启用。" -#: db_structure.php:334 +#: db_structure.php:320 msgid "Tracking is not active." msgstr "追踪已禁用。" -#: db_structure.php:419 libraries/display_tbl.lib.php:1943 +#: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "该视图最少包含的行数,参见%s文档%s。" -#: db_structure.php:433 db_structure.php:447 libraries/header.inc.php:125 -#: libraries/tbl_info.inc.php:65 tbl_structure.php:184 test/theme.php:73 +#: db_structure.php:419 db_structure.php:433 libraries/header.inc.php:125 +#: libraries/tbl_info.inc.php:60 tbl_structure.php:183 test/theme.php:73 msgid "View" msgstr "视图" -#: db_structure.php:484 libraries/db_structure.lib.php:40 -#: libraries/server_links.inc.php:69 server_replication.php:32 -#: server_replication.php:163 server_status.php:368 +#: db_structure.php:470 libraries/db_structure.lib.php:40 +#: libraries/server_links.inc.php:69 server_replication.php:31 +#: server_replication.php:162 server_status.php:368 msgid "Replication" msgstr "复制" -#: db_structure.php:488 +#: db_structure.php:474 msgid "Sum" msgstr "总计" -#: db_structure.php:495 libraries/StorageEngine.class.php:349 +#: db_structure.php:481 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s 是此 MySQL 服务器的默认存储引擎。" -#: db_structure.php:523 db_structure.php:540 db_structure.php:541 -#: libraries/display_tbl.lib.php:2080 libraries/display_tbl.lib.php:2085 -#: libraries/mult_submits.inc.php:15 server_databases.php:345 -#: server_databases.php:350 server_privileges.php:1588 tbl_structure.php:454 -#: tbl_structure.php:463 +#: db_structure.php:509 db_structure.php:526 db_structure.php:527 +#: libraries/display_tbl.lib.php:2039 libraries/display_tbl.lib.php:2044 +#: libraries/mult_submits.inc.php:15 server_databases.php:343 +#: server_databases.php:348 server_privileges.php:1592 tbl_structure.php:452 +#: tbl_structure.php:461 msgid "With selected:" msgstr "选中项:" -#: db_structure.php:526 libraries/display_tbl.lib.php:2075 -#: server_databases.php:347 server_privileges.php:569 -#: server_privileges.php:1591 tbl_structure.php:457 +#: db_structure.php:512 libraries/display_tbl.lib.php:2034 +#: server_databases.php:345 server_privileges.php:568 +#: server_privileges.php:1595 tbl_structure.php:455 msgid "Check All" msgstr "全选" -#: db_structure.php:530 libraries/display_tbl.lib.php:2076 -#: libraries/replication_gui.lib.php:35 server_databases.php:349 -#: server_privileges.php:572 server_privileges.php:1595 tbl_structure.php:461 +#: db_structure.php:516 libraries/display_tbl.lib.php:2035 +#: libraries/replication_gui.lib.php:35 server_databases.php:347 +#: server_privileges.php:571 server_privileges.php:1599 tbl_structure.php:459 msgid "Uncheck All" msgstr "全不选" -#: db_structure.php:535 +#: db_structure.php:521 msgid "Check tables having overhead" msgstr "仅选择多余" -#: db_structure.php:546 db_structure.php:547 db_structure.php:598 -#: libraries/display_tbl.lib.php:2179 libraries/mult_submits.inc.php:27 -#: tbl_structure.php:491 tbl_structure.php:493 +#: db_structure.php:532 db_structure.php:533 db_structure.php:584 +#: libraries/display_tbl.lib.php:2138 libraries/mult_submits.inc.php:27 +#: tbl_structure.php:489 tbl_structure.php:491 msgid "Print view" msgstr "打印预览" -#: db_structure.php:548 db_structure.php:549 libraries/mult_submits.inc.php:41 -#: tbl_operations.php:580 +#: db_structure.php:534 db_structure.php:535 libraries/mult_submits.inc.php:41 +#: tbl_operations.php:578 msgid "Check table" msgstr "检查表" -#: db_structure.php:550 db_structure.php:551 libraries/mult_submits.inc.php:46 -#: tbl_operations.php:620 tbl_structure.php:708 tbl_structure.php:710 +#: db_structure.php:536 db_structure.php:537 libraries/mult_submits.inc.php:46 +#: tbl_operations.php:618 tbl_structure.php:706 tbl_structure.php:708 msgid "Optimize table" msgstr "优化表" -#: db_structure.php:552 db_structure.php:553 libraries/mult_submits.inc.php:51 -#: tbl_operations.php:610 +#: db_structure.php:538 db_structure.php:539 libraries/mult_submits.inc.php:51 +#: tbl_operations.php:608 msgid "Repair table" msgstr "修复表" -#: db_structure.php:554 db_structure.php:555 libraries/mult_submits.inc.php:56 -#: tbl_operations.php:600 +#: db_structure.php:540 db_structure.php:541 libraries/mult_submits.inc.php:56 +#: tbl_operations.php:598 msgid "Analyze table" msgstr "分析表" -#: db_structure.php:556 db_structure.php:557 libraries/db_links.inc.php:70 -#: libraries/display_export.lib.php:82 libraries/display_tbl.lib.php:2093 -#: libraries/display_tbl.lib.php:2224 libraries/mult_submits.inc.php:61 -#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:81 -#: pmd_pdf.php:83 pmd_pdf.php:108 server_privileges.php:1372 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 +#: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 +#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 +#: pmd_pdf.php:81 pmd_pdf.php:106 server_privileges.php:1376 #: setup/frames/menu.inc.php:22 tbl_row_action.php:58 msgid "Export" msgstr "导出" -#: db_structure.php:605 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:591 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "数据字典" -#: db_tracking.php:65 +#: db_tracking.php:61 msgid "Tracked tables" msgstr "已追踪的表" -#: db_tracking.php:70 libraries/export/htmlword.php:85 +#: db_tracking.php:66 libraries/export/htmlword.php:85 #: libraries/export/latex.php:152 libraries/export/odt.php:112 #: libraries/export/sql.php:339 libraries/export/texytext.php:84 #: libraries/export/xml.php:254 libraries/header.inc.php:105 -#: libraries/header_printview.inc.php:57 server_databases.php:168 -#: server_privileges.php:1652 server_privileges.php:1713 -#: server_privileges.php:1971 server_processlist.php:55 -#: server_synchronize.php:1178 server_synchronize.php:1182 -#: tbl_tracking.php:590 test/theme.php:64 +#: libraries/header_printview.inc.php:57 server_databases.php:166 +#: server_privileges.php:1656 server_privileges.php:1717 +#: server_privileges.php:1975 server_processlist.php:55 +#: server_synchronize.php:1177 server_synchronize.php:1181 +#: tbl_tracking.php:585 test/theme.php:64 msgid "Database" msgstr "数据库" -#: db_tracking.php:72 +#: db_tracking.php:68 msgid "Last version" msgstr "最新版本" -#: db_tracking.php:73 tbl_tracking.php:593 +#: db_tracking.php:69 tbl_tracking.php:588 msgid "Created" msgstr "创建" -#: db_tracking.php:74 tbl_tracking.php:594 +#: db_tracking.php:70 tbl_tracking.php:589 msgid "Updated" msgstr "更新" -#: db_tracking.php:76 libraries/Index.class.php:439 -#: libraries/db_structure.lib.php:44 server_databases.php:202 -#: server_privileges.php:1534 server_privileges.php:1717 -#: server_privileges.php:2065 tbl_structure.php:186 +#: db_tracking.php:71 libraries/common.lib.php:1361 +#: libraries/server_links.inc.php:48 server_processlist.php:58 +#: tbl_tracking.php:590 test/theme.php:100 +msgid "Status" +msgstr "状态" + +#: db_tracking.php:72 libraries/Index.class.php:439 +#: libraries/db_structure.lib.php:44 server_databases.php:200 +#: server_privileges.php:1538 server_privileges.php:1721 +#: server_privileges.php:2069 tbl_structure.php:185 msgid "Action" msgstr "操作" -#: db_tracking.php:87 db_tracking.php:119 +#: db_tracking.php:83 db_tracking.php:115 msgid "Delete tracking data for this table" msgstr "删除追踪数据" -#: db_tracking.php:105 tbl_tracking.php:547 tbl_tracking.php:605 -#: tbl_tracking.php:612 +#: db_tracking.php:101 tbl_tracking.php:542 tbl_tracking.php:600 +#: tbl_tracking.php:607 msgid "active" msgstr "启用" -#: db_tracking.php:107 tbl_tracking.php:549 tbl_tracking.php:607 -#: tbl_tracking.php:609 +#: db_tracking.php:103 tbl_tracking.php:544 tbl_tracking.php:602 +#: tbl_tracking.php:604 msgid "not active" msgstr "禁用" -#: db_tracking.php:120 +#: db_tracking.php:116 msgid "Versions" msgstr "版本" -#: db_tracking.php:121 tbl_tracking.php:378 tbl_tracking.php:623 +#: db_tracking.php:117 tbl_tracking.php:373 tbl_tracking.php:618 msgid "Tracking report" msgstr "追踪报告" -#: db_tracking.php:122 tbl_tracking.php:250 tbl_tracking.php:623 +#: db_tracking.php:118 tbl_tracking.php:245 tbl_tracking.php:618 msgid "Structure snapshot" msgstr "结构快照" -#: db_tracking.php:151 +#: db_tracking.php:147 msgid "Untracked tables" msgstr "未追踪的表" -#: db_tracking.php:171 db_tracking.php:173 tbl_structure.php:527 -#: tbl_structure.php:529 +#: db_tracking.php:167 db_tracking.php:169 tbl_structure.php:525 +#: tbl_structure.php:527 msgid "Track table" msgstr "追踪表" -#: db_tracking.php:199 +#: db_tracking.php:195 msgid "Database Log" msgstr "数据库日志" @@ -779,42 +765,42 @@ msgstr "数据库日志" msgid "Selected export type has to be saved in file!" msgstr "选择导出文件的类型!" -#: export.php:153 export.php:178 export.php:620 +#: export.php:152 export.php:177 export.php:615 #, php-format msgid "Insufficient space to save the file %s." msgstr "没有足够的空间保存文件 %s。" -#: export.php:287 +#: export.php:286 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "服务器上已存在文件 %s,请修改文件名或选中覆盖选项。" -#: export.php:291 export.php:295 +#: export.php:290 export.php:294 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "网站服务器没有保存文件 %s 的权限。" -#: export.php:622 +#: export.php:617 #, php-format msgid "Dump has been saved to file %s." msgstr "转存已经保存到文件 %s 中。" -#: import.php:59 +#: 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." msgstr "您可能正在上传很大的文件,请参考%s文档%s来寻找解决方法。" -#: import.php:278 import.php:331 libraries/File.class.php:840 -#: libraries/File.class.php:950 +#: import.php:277 import.php:330 libraries/File.class.php:566 +#: libraries/File.class.php:676 msgid "File could not be read" msgstr "无法读取文件" -#: import.php:286 import.php:295 import.php:314 import.php:323 -#: libraries/File.class.php:1020 libraries/File.class.php:1028 -#: libraries/File.class.php:1044 libraries/File.class.php:1052 +#: import.php:285 import.php:294 import.php:313 import.php:322 +#: libraries/File.class.php:746 libraries/File.class.php:754 +#: libraries/File.class.php:770 libraries/File.class.php:778 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -822,7 +808,7 @@ msgid "" msgstr "" "您正在载入不支持的压缩格式 (%s)。配置文件中没有对应这种格式的配置说明。" -#: import.php:336 +#: import.php:335 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -831,35 +817,35 @@ msgstr "" "没有接收到要导入的数据。可能是文件名没有提交,也可能是文件大小超出 PHP 限制。" "参见 [a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]。" -#: import.php:371 libraries/display_import.lib.php:23 +#: import.php:370 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "无法加载导入插件,请检查你的安装!" -#: import.php:396 +#: import.php:395 msgid "The bookmark has been deleted." msgstr "书签已删除。" -#: import.php:400 +#: import.php:399 msgid "Showing bookmark" msgstr "显示书签" -#: import.php:402 sql.php:625 +#: import.php:401 sql.php:618 #, php-format msgid "Bookmark %s created" msgstr "已创建书签 %s" -#: import.php:408 import.php:414 +#: import.php:407 import.php:413 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "导入成功,执行了 %d 个查询。" -#: import.php:423 +#: import.php:422 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "脚本超时,如果你要完成导入,请重新提交相同的文件,导入将会继续进行。" -#: import.php:425 +#: import.php:424 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -867,19 +853,19 @@ msgstr "" "在最后一次执行时没有数据被解析,建议您增加 PHP 运行时间限制,否则 phpMyAdmin " "将无法完成导入操作。" -#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:240 +#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:239 #: user_password.php:110 msgid "Back" msgstr "返回" -#: index.php:188 +#: index.php:183 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin 更适合在支持框架的浏览器中使用。" -#: js/messages.php:25 server_synchronize.php:344 server_synchronize.php:356 -#: server_synchronize.php:372 server_synchronize.php:379 -#: server_synchronize.php:738 server_synchronize.php:766 -#: server_synchronize.php:794 server_synchronize.php:806 +#: js/messages.php:25 server_synchronize.php:343 server_synchronize.php:355 +#: server_synchronize.php:371 server_synchronize.php:378 +#: server_synchronize.php:737 server_synchronize.php:765 +#: server_synchronize.php:793 server_synchronize.php:805 msgid "Click to select" msgstr "点击选中" @@ -887,15 +873,15 @@ msgstr "点击选中" msgid "Click to unselect" msgstr "点击取消" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:88 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:87 msgid "\"DROP DATABASE\" statements are disabled." msgstr "已经禁用删除数据库 (“DROP DATABASE”) 语句。" -#: js/messages.php:30 libraries/mult_submits.inc.php:257 sql.php:187 +#: js/messages.php:30 libraries/mult_submits.inc.php:256 sql.php:186 msgid "Do you really want to " msgstr "您真的要" -#: js/messages.php:31 libraries/mult_submits.inc.php:257 sql.php:171 +#: js/messages.php:31 libraries/mult_submits.inc.php:256 sql.php:170 msgid "You are about to DESTROY a complete database!" msgstr "您将要删除一个完整的数据库!" @@ -924,11 +910,11 @@ msgstr "主机名不能为空!" msgid "The user name is empty!" msgstr "用户名不能为空!" -#: js/messages.php:44 server_privileges.php:1228 user_password.php:65 +#: js/messages.php:44 server_privileges.php:1229 user_password.php:65 msgid "The password is empty!" msgstr "密码不能为空!" -#: js/messages.php:45 server_privileges.php:1226 user_password.php:68 +#: js/messages.php:45 server_privileges.php:1227 user_password.php:68 msgid "The passwords aren't the same!" msgstr "两次密码不一致!" @@ -936,27 +922,27 @@ msgstr "两次密码不一致!" msgid "Cancel" msgstr "取消" -#: js/messages.php:52 pmd_save_pos.php:53 +#: js/messages.php:52 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "已保存修改。" -#: js/messages.php:53 pmd_relation_upd.php:48 +#: js/messages.php:53 pmd_relation_upd.php:47 msgid "Relation deleted" msgstr "已删除关系" -#: js/messages.php:54 pmd_relation_new.php:63 +#: js/messages.php:54 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "已添加外键关联" -#: js/messages.php:55 pmd_relation_new.php:85 +#: js/messages.php:55 pmd_relation_new.php:84 msgid "Internal relation added" msgstr "已添加内联关系" -#: js/messages.php:56 pmd_relation_new.php:62 pmd_relation_new.php:87 +#: js/messages.php:56 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "错误:关系未添加" -#: js/messages.php:57 pmd_relation_new.php:30 +#: js/messages.php:57 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "错误:关系已存在" @@ -964,13 +950,13 @@ msgstr "错误:关系已存在" msgid "Error saving coordinates for Designer." msgstr "保存设计器坐标时出错。" -#: js/messages.php:59 libraries/relation.lib.php:94 -#: libraries/relation.lib.php:106 +#: js/messages.php:59 libraries/relation.lib.php:89 +#: libraries/relation.lib.php:101 msgid "General relation features" msgstr "基本功能" -#: js/messages.php:59 libraries/relation.lib.php:88 -#: libraries/relation.lib.php:95 +#: js/messages.php:59 libraries/relation.lib.php:83 +#: libraries/relation.lib.php:90 msgid "Disabled" msgstr "已禁用" @@ -986,7 +972,7 @@ msgstr "选择外键" msgid "Please select the primary key or a unique key" msgstr "请选择主键或唯一键" -#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:547 +#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:545 msgid "Choose column to display" msgstr "选择要显示的字段" @@ -1011,10 +997,10 @@ msgid "Prev" msgstr "上个月" #. l10n: Display text for next month link in calendar -#: js/messages.php:81 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:337 -#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:422 -#: tbl_structure.php:800 +#: js/messages.php:81 libraries/common.lib.php:2358 +#: libraries/common.lib.php:2361 libraries/display_tbl.lib.php:336 +#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 +#: tbl_structure.php:798 msgid "Next" msgstr "下个月" @@ -1072,63 +1058,63 @@ msgid "December" msgstr "十二月" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1562 +#: js/messages.php:101 libraries/common.lib.php:1566 msgid "Jan" msgstr "一月" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1564 +#: js/messages.php:103 libraries/common.lib.php:1568 msgid "Feb" msgstr "二月" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1566 +#: js/messages.php:105 libraries/common.lib.php:1570 msgid "Mar" msgstr "三月" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1568 +#: js/messages.php:107 libraries/common.lib.php:1572 msgid "Apr" msgstr "四月" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1570 +#: js/messages.php:109 libraries/common.lib.php:1574 msgctxt "Short month name" msgid "May" msgstr "五月" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1572 +#: js/messages.php:111 libraries/common.lib.php:1576 msgid "Jun" msgstr "六月" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1574 +#: js/messages.php:113 libraries/common.lib.php:1578 msgid "Jul" msgstr "七月" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1576 +#: js/messages.php:115 libraries/common.lib.php:1580 msgid "Aug" msgstr "八月" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1578 +#: js/messages.php:117 libraries/common.lib.php:1582 msgid "Sep" msgstr "九月" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1580 +#: js/messages.php:119 libraries/common.lib.php:1584 msgid "Oct" msgstr "十月" #. l10n: Short month name -#: js/messages.php:121 libraries/common.lib.php:1582 +#: js/messages.php:121 libraries/common.lib.php:1586 msgid "Nov" msgstr "十一月" #. l10n: Short month name -#: js/messages.php:123 libraries/common.lib.php:1584 +#: js/messages.php:123 libraries/common.lib.php:1588 msgid "Dec" msgstr "十二月" @@ -1161,37 +1147,37 @@ msgid "Saturday" msgstr "星期六" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1587 +#: js/messages.php:136 libraries/common.lib.php:1591 msgid "Sun" msgstr "周日" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1589 +#: js/messages.php:138 libraries/common.lib.php:1593 msgid "Mon" msgstr "周一" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1591 +#: js/messages.php:140 libraries/common.lib.php:1595 msgid "Tue" msgstr "周二" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1593 +#: js/messages.php:142 libraries/common.lib.php:1597 msgid "Wed" msgstr "周三" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1595 +#: js/messages.php:144 libraries/common.lib.php:1599 msgid "Thu" msgstr "周四" #. l10n: Short week day name -#: js/messages.php:146 libraries/common.lib.php:1597 +#: js/messages.php:146 libraries/common.lib.php:1601 msgid "Fri" msgstr "周五" #. l10n: Short week day name -#: js/messages.php:148 libraries/common.lib.php:1599 +#: js/messages.php:148 libraries/common.lib.php:1603 msgid "Sat" msgstr "周六" @@ -1251,38 +1237,37 @@ msgstr "秒" msgid "Font size" msgstr "字号" -#: libraries/File.class.php:336 libraries/File.class.php:424 -#: libraries/File.class.php:561 libraries/File.class.php:700 -msgid "Unknown error in file upload." -msgstr "上传文件时发生未知错误。" - -#: libraries/File.class.php:406 +#: libraries/File.class.php:315 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "上传文件的大小超过 php.ini 文件中 upload_max_filesize 的限制。" -#: libraries/File.class.php:409 +#: libraries/File.class.php:318 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:412 +#: libraries/File.class.php:321 msgid "The uploaded file was only partially uploaded." msgstr "仅上传了文件的一部分内容。" -#: libraries/File.class.php:415 +#: libraries/File.class.php:324 msgid "Missing a temporary folder." msgstr "找不到临时文件夹。" -#: libraries/File.class.php:418 +#: libraries/File.class.php:327 msgid "Failed to write file to disk." msgstr "将文件写入磁盘失败。" -#: libraries/File.class.php:421 +#: libraries/File.class.php:330 msgid "File upload stopped by extension." msgstr "因扩展而停止文件上传。" -#: libraries/File.class.php:898 +#: libraries/File.class.php:333 +msgid "Unknown error in file upload." +msgstr "上传文件时发生未知错误。" + +#: libraries/File.class.php:624 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -1290,37 +1275,37 @@ msgstr "" "移动上传文件时发生错误,参见 [a@./Documentation.html#faq1_11@Documentation]" "FAQ 1.11[/a]。" -#: libraries/Index.class.php:427 tbl_relation.php:528 +#: libraries/Index.class.php:427 tbl_relation.php:526 msgid "No index defined!" msgstr "没有已定义的索引!" -#: libraries/Index.class.php:432 server_databases.php:131 tbl_tracking.php:315 +#: libraries/Index.class.php:432 server_databases.php:129 tbl_tracking.php:310 msgid "Indexes" msgstr "索引" #: libraries/Index.class.php:443 libraries/mult_submits.inc.php:102 -#: libraries/tbl_properties.inc.php:518 tbl_structure.php:32 -#: tbl_structure.php:154 tbl_structure.php:158 tbl_structure.php:473 -#: tbl_tracking.php:321 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:31 +#: tbl_structure.php:153 tbl_structure.php:157 tbl_structure.php:471 +#: tbl_tracking.php:316 msgid "Unique" msgstr "唯一" -#: libraries/Index.class.php:444 tbl_tracking.php:322 +#: libraries/Index.class.php:444 tbl_tracking.php:317 msgid "Packed" msgstr "紧凑" -#: libraries/Index.class.php:446 tbl_tracking.php:324 +#: libraries/Index.class.php:446 tbl_tracking.php:319 msgid "Cardinality" msgstr "基数" -#: libraries/Index.class.php:449 tbl_tracking.php:278 tbl_tracking.php:327 +#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322 msgid "Comment" msgstr "注释" #: libraries/Index.class.php:465 libraries/common.lib.php:609 -#: libraries/common.lib.php:1198 libraries/display_tbl.lib.php:1116 +#: libraries/common.lib.php:1191 libraries/display_tbl.lib.php:1115 #: libraries/import.lib.php:1119 libraries/import.lib.php:1143 -#: pdf_pages.php:284 setup/frames/index.inc.php:124 +#: pdf_pages.php:283 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:349 tbl_row_action.php:68 msgid "Edit" msgstr "编辑" @@ -1342,15 +1327,15 @@ msgid "" msgstr "索引 %1$s 和 %2$s 可能是相同的,其中一个将可能被删除" #: libraries/List_Database.class.php:430 libraries/server_links.inc.php:40 -#: server_databases.php:87 server_privileges.php:1652 +#: server_databases.php:85 server_privileges.php:1656 #: setup/lib/messages.inc.php:107 test/theme.php:92 msgid "Databases" msgstr "数据库" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:259 libraries/import.lib.php:134 pdf_schema.php:31 -#: pdf_schema.php:231 tbl_change.php:1023 tbl_operations.php:212 -#: tbl_relation.php:289 view_operations.php:61 +#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 +#: tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "错误" @@ -1372,40 +1357,40 @@ msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." msgstr[0] "插入了 %1$d 行。" -#: libraries/StorageEngine.class.php:196 +#: libraries/StorageEngine.class.php:194 msgid "" "There is no detailed status information available for this storage engine." msgstr "没有该存储引擎的详细信息。" -#: libraries/StorageEngine.class.php:352 +#: libraries/StorageEngine.class.php:354 #, php-format msgid "%s is available on this MySQL server." msgstr "%s 在此 MySQL 服务器上可用。" -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:357 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s 在此 MySQL 服务器上被禁止了。" -#: libraries/StorageEngine.class.php:359 +#: libraries/StorageEngine.class.php:361 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "此 MySQL 服务器不支持 %s 存储引擎。" -#: libraries/Table.class.php:1018 +#: libraries/Table.class.php:1017 msgid "Invalid database" msgstr "无效的数据库" -#: libraries/Table.class.php:1032 tbl_get_field.php:25 +#: libraries/Table.class.php:1031 tbl_get_field.php:25 msgid "Invalid table name" msgstr "无效的数据表名" -#: libraries/Table.class.php:1047 +#: libraries/Table.class.php:1046 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "将表 %1$s 改名为 %2$s 时发生错误" -#: libraries/Table.class.php:1131 +#: libraries/Table.class.php:1129 #, php-format msgid "Table %s has been renamed to %s" msgstr "已将数据表 %s 改名为 %s" @@ -1423,22 +1408,22 @@ msgstr "没有可用的预览。" msgid "take it" msgstr "确定" -#: libraries/Theme_Manager.class.php:114 +#: libraries/Theme_Manager.class.php:109 #, php-format msgid "Default theme %s not found!" msgstr "未找到默认主题 %s !" -#: libraries/Theme_Manager.class.php:152 +#: libraries/Theme_Manager.class.php:147 #, php-format msgid "Theme %s not found!" msgstr "未找到主题 %s !" -#: libraries/Theme_Manager.class.php:220 +#: libraries/Theme_Manager.class.php:215 #, php-format msgid "Theme path not found for theme %s!" msgstr "找不到主题 %s 的路径" -#: libraries/Theme_Manager.class.php:296 test/theme.php:160 themes.php:20 +#: libraries/Theme_Manager.class.php:291 test/theme.php:160 themes.php:20 #: themes.php:40 msgid "Theme / Style" msgstr "主题 / 风格" @@ -1548,19 +1533,19 @@ msgstr "没有可用的密钥插入" msgid "Authenticating..." msgstr "正在认证..." -#: libraries/blobstreaming.lib.php:689 +#: libraries/blobstreaming.lib.php:340 msgid "View image" msgstr "查看图像" -#: libraries/blobstreaming.lib.php:693 +#: libraries/blobstreaming.lib.php:344 msgid "Play audio" msgstr "播放音频" -#: libraries/blobstreaming.lib.php:698 +#: libraries/blobstreaming.lib.php:349 msgid "View video" msgstr "播放视频" -#: libraries/blobstreaming.lib.php:702 +#: libraries/blobstreaming.lib.php:353 msgid "Download file" msgstr "下载文件" @@ -1609,7 +1594,7 @@ msgstr "服务器" msgid "Invalid authentication method set in configuration:" msgstr "配置文件中设置的认证方式无效:" -#: libraries/common.inc.php:909 +#: libraries/common.inc.php:908 #, php-format msgid "You should upgrade to %s %s or later." msgstr "您应升级到 %s %s 或更高版本。" @@ -1634,7 +1619,8 @@ msgstr "zh" #: libraries/common.lib.php:425 libraries/common.lib.php:427 #: libraries/common.lib.php:429 libraries/common.lib.php:445 #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 -#: libraries/display_export.lib.php:163 libraries/relation.lib.php:84 +#: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 +#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 #: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" @@ -1649,148 +1635,148 @@ msgstr "SQL 查询" msgid "MySQL said: " msgstr "MySQL 返回:" -#: libraries/common.lib.php:1136 +#: libraries/common.lib.php:1129 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "Failed to connect to SQL validator!" msgstr "无法连接到 MySQL 服务器" -#: libraries/common.lib.php:1174 setup/lib/messages.inc.php:350 +#: libraries/common.lib.php:1167 setup/lib/messages.inc.php:350 msgid "Explain SQL" msgstr "解释 SQL" -#: libraries/common.lib.php:1177 +#: libraries/common.lib.php:1170 msgid "Skip Explain SQL" msgstr "略过解释 SQL" -#: libraries/common.lib.php:1211 +#: libraries/common.lib.php:1204 msgid "Without PHP Code" msgstr "无 PHP 代码" -#: libraries/common.lib.php:1214 setup/lib/messages.inc.php:352 +#: libraries/common.lib.php:1207 setup/lib/messages.inc.php:352 msgid "Create PHP Code" msgstr "创建 PHP 代码" -#: libraries/common.lib.php:1232 server_status.php:451 +#: libraries/common.lib.php:1225 server_status.php:451 #: setup/lib/messages.inc.php:351 msgid "Refresh" msgstr "刷新" -#: libraries/common.lib.php:1241 +#: libraries/common.lib.php:1234 msgid "Skip Validate SQL" msgstr "略过校验 SQL" -#: libraries/common.lib.php:1244 setup/lib/messages.inc.php:353 +#: libraries/common.lib.php:1237 setup/lib/messages.inc.php:353 msgid "Validate SQL" msgstr "校验 SQL" -#: libraries/common.lib.php:1283 +#: libraries/common.lib.php:1287 msgid "Inline edit of this query" msgstr "在本页面编辑此查询" -#: libraries/common.lib.php:1285 +#: libraries/common.lib.php:1289 msgid "Inline" msgstr "内联" -#: libraries/common.lib.php:1339 libraries/common.lib.php:1354 +#: libraries/common.lib.php:1343 libraries/common.lib.php:1358 msgid "Profiling" msgstr "概要" -#: libraries/common.lib.php:1358 libraries/tbl_triggers.lib.php:27 +#: libraries/common.lib.php:1362 libraries/tbl_triggers.lib.php:27 #: server_processlist.php:57 msgid "Time" msgstr "时间" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "B" msgstr "字节" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "KiB" msgstr "KB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "MiB" msgstr "MB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "GiB" msgstr "GB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "TiB" msgstr "TB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "PiB" msgstr "PB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "EiB" msgstr "EB" #. l10n: Thousands separator -#: libraries/common.lib.php:1424 +#: libraries/common.lib.php:1428 msgid "," msgstr "," #. l10n: Decimal separator -#: libraries/common.lib.php:1426 +#: libraries/common.lib.php:1430 msgid "." msgstr "." #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1603 +#: libraries/common.lib.php:1607 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%Y 年 %m 月 %d 日 %H:%M" -#: libraries/common.lib.php:1909 +#: libraries/common.lib.php:1913 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s 天 %s 小时,%s 分 %s 秒" -#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 -#: libraries/display_tbl.lib.php:289 server_status.php:718 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 +#: libraries/display_tbl.lib.php:288 server_status.php:718 msgid "Begin" msgstr "开始" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 -#: libraries/display_tbl.lib.php:290 server_binlog.php:154 +#: libraries/common.lib.php:2328 libraries/common.lib.php:2331 +#: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "上一个" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 -#: libraries/display_tbl.lib.php:352 +#: libraries/common.lib.php:2359 libraries/common.lib.php:2362 +#: libraries/display_tbl.lib.php:351 msgid "End" msgstr "结束" -#: libraries/common.lib.php:2429 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "跳转到数据库“%s”。" -#: libraries/common.lib.php:2448 +#: libraries/common.lib.php:2453 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "%s 功能受到一个已知的缺陷 (bug) 影响,参见 %s" -#: libraries/common.lib.php:2828 libraries/common.lib.php:2835 -#: libraries/db_links.inc.php:67 libraries/export/sql.php:24 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 +#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 -#: libraries/tbl_links.inc.php:59 querywindow.php:89 test/theme.php:96 +#: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2837 libraries/db_links.inc.php:103 -#: libraries/tbl_links.inc.php:94 libraries/tbl_links.inc.php:116 -#: view_operations.php:88 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: view_operations.php:87 msgid "Operations" msgstr "操作" -#: libraries/core.lib.php:282 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1806,38 +1792,38 @@ msgstr "事件" msgid "Name" msgstr "名字" -#: libraries/db_links.inc.php:44 +#: libraries/db_links.inc.php:43 #, php-format msgid "Database %s has been dropped." msgstr "已被删除数据库 %s 。" -#: libraries/db_links.inc.php:56 libraries/db_links.inc.php:57 -#: libraries/db_links.inc.php:58 +#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 +#: libraries/db_links.inc.php:57 msgid "Database seems to be empty!" msgstr "数据库是空的!" -#: libraries/db_links.inc.php:80 libraries/relation.lib.php:142 -#: libraries/tbl_links.inc.php:68 +#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "追踪" -#: libraries/db_links.inc.php:85 +#: libraries/db_links.inc.php:84 msgid "Query" msgstr "查询" -#: libraries/db_links.inc.php:90 libraries/relation.lib.php:138 +#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 msgid "Designer" msgstr "设计器" -#: libraries/db_links.inc.php:97 libraries/server_links.inc.php:87 -#: libraries/tbl_links.inc.php:90 pmd_pdf.php:83 pmd_pdf.php:109 +#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "导入" -#: libraries/db_links.inc.php:110 libraries/server_links.inc.php:65 -#: server_privileges.php:111 server_privileges.php:1714 -#: server_privileges.php:2063 test/theme.php:116 +#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: server_privileges.php:110 server_privileges.php:1718 +#: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" msgstr "权限" @@ -1849,15 +1835,15 @@ msgstr "常规" msgid "Return type" msgstr "返回类型" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1847 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1806 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "" "可能接近。参见 [a@./Documentation.html#faq3_11@Documentation]FAQ 3.11[/a]" -#: libraries/db_structure.lib.php:60 server_databases.php:141 -#: tbl_printview.php:334 tbl_structure.php:681 +#: libraries/db_structure.lib.php:60 server_databases.php:139 +#: tbl_printview.php:333 tbl_structure.php:679 msgid "Overhead" msgstr "多余" @@ -1874,7 +1860,7 @@ msgstr "服务器没有响应" msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "(或者本地 MySQL 服务器的套接字没有正确配置)" -#: libraries/dbi/mysql.dbi.lib.php:358 tbl_structure.php:607 +#: libraries/dbi/mysql.dbi.lib.php:358 tbl_structure.php:605 msgid "Details..." msgstr "详细..." @@ -1884,22 +1870,22 @@ msgid "Change password" msgstr "修改密码" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:807 +#: libraries/replication_gui.lib.php:347 server_privileges.php:806 msgid "No Password" msgstr "无密码" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1530 server_synchronize.php:1174 +#: libraries/replication_gui.lib.php:351 server_privileges.php:795 +#: server_privileges.php:799 server_privileges.php:810 +#: server_privileges.php:1534 server_synchronize.php:1173 msgid "Password" msgstr "密码" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:815 server_privileges.php:818 +#: server_privileges.php:814 server_privileges.php:817 msgid "Re-type" msgstr "重新输入" @@ -1920,8 +1906,8 @@ msgstr "新建数据库" msgid "Create" msgstr "创建" -#: libraries/display_create_database.lib.php:39 server_privileges.php:113 -#: server_privileges.php:1419 server_replication.php:34 +#: libraries/display_create_database.lib.php:39 server_privileges.php:112 +#: server_privileges.php:1423 server_replication.php:33 msgid "No Privileges" msgstr "无权限" @@ -1938,49 +1924,49 @@ msgstr "在数据库 %s 中新建一张数据表" msgid "Number of columns" msgstr "字段数" -#: libraries/display_export.lib.php:41 +#: libraries/display_export.lib.php:35 msgid "Could not load export plugins, please check your installation!" msgstr "无法加载导出插件,请检查安装!" -#: libraries/display_export.lib.php:106 +#: libraries/display_export.lib.php:100 #, php-format msgid "Dump %s row(s) starting at row # %s" msgstr "从 # %2$s 行开始转储 %1$s 行" -#: libraries/display_export.lib.php:114 +#: libraries/display_export.lib.php:108 msgid "Dump all rows" msgstr "转储所有行" -#: libraries/display_export.lib.php:124 setup/lib/messages.inc.php:79 +#: libraries/display_export.lib.php:118 setup/lib/messages.inc.php:79 msgid "Save as file" msgstr "另存为文件" -#: libraries/display_export.lib.php:133 +#: libraries/display_export.lib.php:127 #, php-format msgid "Save on server in %s directory" msgstr "保存于服务器的 %s 文件夹" -#: libraries/display_export.lib.php:141 setup/lib/messages.inc.php:87 +#: libraries/display_export.lib.php:135 setup/lib/messages.inc.php:87 msgid "Overwrite existing file(s)" msgstr "覆盖已有文件" -#: libraries/display_export.lib.php:147 +#: libraries/display_export.lib.php:141 msgid "File name template" msgstr "文件名模板" -#: libraries/display_export.lib.php:151 +#: libraries/display_export.lib.php:145 msgid "server name" msgstr "服务器名" -#: libraries/display_export.lib.php:154 +#: libraries/display_export.lib.php:148 msgid "database name" msgstr "数据库名" -#: libraries/display_export.lib.php:157 +#: libraries/display_export.lib.php:151 msgid "table name" msgstr "数据表名" -#: libraries/display_export.lib.php:161 +#: libraries/display_export.lib.php:155 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -1990,39 +1976,39 @@ msgstr "" "这个值是使用 %1$sstrftime%2$s 来解析的,所以你能用时间格式的字符串。另外,下" "列内容也将被转换:%3$s。其他文本将保持原样。" -#: libraries/display_export.lib.php:202 +#: libraries/display_export.lib.php:196 msgid "remember template" msgstr "记住模板" -#: libraries/display_export.lib.php:210 libraries/display_import.lib.php:177 +#: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 #: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 msgid "Character set of the file:" msgstr "文件的字符集:" -#: libraries/display_export.lib.php:235 setup/lib/messages.inc.php:81 +#: libraries/display_export.lib.php:229 setup/lib/messages.inc.php:81 msgid "Compression" msgstr "压缩" -#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:196 -#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:529 -#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:574 -#: server_privileges.php:1867 server_processlist.php:74 +#: libraries/display_export.lib.php:234 libraries/display_import.lib.php:196 +#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:528 +#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:573 +#: server_privileges.php:1871 server_processlist.php:74 msgid "None" msgstr "无" -#: libraries/display_export.lib.php:247 +#: libraries/display_export.lib.php:241 msgid "\"zipped\"" msgstr "zip 压缩" -#: libraries/display_export.lib.php:253 +#: libraries/display_export.lib.php:247 msgid "\"gzipped\"" msgstr "gzip 压缩" -#: libraries/display_export.lib.php:259 +#: libraries/display_export.lib.php:253 msgid "\"bzipped\"" msgstr "bzip 压缩" -#: libraries/display_export.lib.php:274 libraries/export/sql.php:42 +#: libraries/display_export.lib.php:268 libraries/export/sql.php:42 #: libraries/import/sql.php:31 msgid "SQL compatibility mode" msgstr "SQL 兼容模式" @@ -2059,12 +2045,12 @@ msgid "File uploads are not allowed on this server." msgstr "此服务器禁止了文件上传。" #: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 -#: tbl_change.php:1024 +#: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "用于上传的文件夹出错,无法使用" #: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 -#: tbl_change.php:1027 +#: tbl_change.php:925 msgid "web server upload directory" msgstr "网站服务器上传文件夹" @@ -2145,41 +2131,41 @@ msgstr "纸张大小" msgid "Language" msgstr "Language" -#: libraries/display_tbl.lib.php:303 +#: libraries/display_tbl.lib.php:302 #, php-format msgid "%d is not valid row number." msgstr "%d 不是有效行数。" -#: libraries/display_tbl.lib.php:309 +#: libraries/display_tbl.lib.php:308 msgid "row(s) starting from row #" msgstr "行,起始行 #" -#: libraries/display_tbl.lib.php:315 +#: libraries/display_tbl.lib.php:314 msgid "horizontal" msgstr "水平" -#: libraries/display_tbl.lib.php:316 +#: libraries/display_tbl.lib.php:315 msgid "horizontal (rotated headers)" msgstr "水平 (旋转标题)" -#: libraries/display_tbl.lib.php:317 +#: libraries/display_tbl.lib.php:316 msgid "vertical" msgstr "垂直" -#: libraries/display_tbl.lib.php:323 +#: libraries/display_tbl.lib.php:322 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "以 %s 模式显示,并且在 %s 行后重复标题" -#: libraries/display_tbl.lib.php:345 +#: libraries/display_tbl.lib.php:344 msgid "This operation could take a long time. Proceed anyway?" msgstr "该操作可能需要执行较长时间,确定执行?" -#: libraries/display_tbl.lib.php:511 +#: libraries/display_tbl.lib.php:510 msgid "Sort by key" msgstr "主键排序" -#: libraries/display_tbl.lib.php:554 libraries/export/codegen.php:38 +#: libraries/display_tbl.lib.php:553 libraries/export/codegen.php:38 #: libraries/export/csv.php:29 libraries/export/excel.php:34 #: libraries/export/htmlword.php:28 libraries/export/latex.php:32 #: libraries/export/mediawiki.php:21 libraries/export/ods.php:26 @@ -2189,97 +2175,97 @@ msgstr "主键排序" #: libraries/export/xlsx.php:26 libraries/export/xml.php:23 #: libraries/export/yaml.php:27 libraries/import.lib.php:1114 #: libraries/import.lib.php:1136 libraries/import/csv.php:31 -#: libraries/import/docsql.php:33 libraries/import/ldi.php:46 +#: libraries/import/docsql.php:32 libraries/import/ldi.php:46 #: libraries/import/ods.php:30 libraries/import/sql.php:19 #: libraries/import/xls.php:25 libraries/import/xlsx.php:25 -#: libraries/import/xml.php:25 tbl_select.php:264 tbl_structure.php:752 +#: libraries/import/xml.php:25 tbl_select.php:263 tbl_structure.php:750 msgid "Options" msgstr "选项" -#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:569 +#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:568 msgid "Partial Texts" msgstr "部分文字" -#: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:573 +#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:572 msgid "Full Texts" msgstr "完整文字" -#: libraries/display_tbl.lib.php:586 +#: libraries/display_tbl.lib.php:585 msgid "Relational key" msgstr "关联键" -#: libraries/display_tbl.lib.php:587 +#: libraries/display_tbl.lib.php:586 msgid "Relational display column" msgstr "关联显示字段" -#: libraries/display_tbl.lib.php:594 +#: libraries/display_tbl.lib.php:593 msgid "Show binary contents" msgstr "显示二进制内容" -#: libraries/display_tbl.lib.php:596 +#: libraries/display_tbl.lib.php:595 msgid "Show BLOB contents" msgstr "显示 BLOB 内容" -#: libraries/display_tbl.lib.php:598 +#: libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "以十六进制显示二进制内容" -#: libraries/display_tbl.lib.php:606 pmd_general.php:140 tbl_change.php:312 -#: tbl_change.php:318 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:307 +#: tbl_change.php:313 msgid "Hide" msgstr "隐藏" -#: libraries/display_tbl.lib.php:606 libraries/relation.lib.php:122 -#: libraries/tbl_properties.inc.php:143 transformation_overview.php:46 +#: libraries/display_tbl.lib.php:605 libraries/relation.lib.php:117 +#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46 msgid "Browser transformation" msgstr "浏览器转换" -#: libraries/display_tbl.lib.php:1125 libraries/display_tbl.lib.php:1129 -#: libraries/display_tbl.lib.php:1131 +#: libraries/display_tbl.lib.php:1124 libraries/display_tbl.lib.php:1128 +#: libraries/display_tbl.lib.php:1130 msgid "Execute bookmarked query" msgstr "执行书签中的查询" -#: libraries/display_tbl.lib.php:1144 libraries/display_tbl.lib.php:1156 +#: libraries/display_tbl.lib.php:1143 libraries/display_tbl.lib.php:1155 msgid "The row has been deleted" msgstr "已删除该行" -#: libraries/display_tbl.lib.php:1183 libraries/display_tbl.lib.php:2055 +#: libraries/display_tbl.lib.php:1182 libraries/display_tbl.lib.php:2014 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "杀死" -#: libraries/display_tbl.lib.php:1933 +#: libraries/display_tbl.lib.php:1892 msgid "in query" msgstr "查询中" -#: libraries/display_tbl.lib.php:1951 +#: libraries/display_tbl.lib.php:1910 msgid "Showing rows" msgstr "显示行" -#: libraries/display_tbl.lib.php:1961 +#: libraries/display_tbl.lib.php:1920 msgid "total" msgstr "总计" -#: libraries/display_tbl.lib.php:1969 sql.php:523 +#: libraries/display_tbl.lib.php:1928 sql.php:522 #, php-format msgid "Query took %01.4f sec" msgstr "查询花费 %01.4f 秒" -#: libraries/display_tbl.lib.php:2088 libraries/mult_submits.inc.php:112 -#: querywindow.php:115 querywindow.php:119 querywindow.php:122 -#: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:469 +#: libraries/display_tbl.lib.php:2047 libraries/mult_submits.inc.php:112 +#: querywindow.php:114 querywindow.php:118 querywindow.php:121 +#: tbl_structure.php:23 tbl_structure.php:148 tbl_structure.php:467 msgid "Change" msgstr "修改" -#: libraries/display_tbl.lib.php:2158 +#: libraries/display_tbl.lib.php:2117 msgid "Query results operations" msgstr "查询结果选项" -#: libraries/display_tbl.lib.php:2186 +#: libraries/display_tbl.lib.php:2145 msgid "Print view (with full texts)" msgstr "打印预览 (全文显示)" -#: libraries/display_tbl.lib.php:2359 +#: libraries/display_tbl.lib.php:2318 msgid "Link not found" msgstr "找不到链接" @@ -2331,9 +2317,9 @@ msgstr "InnoDB 状态" msgid "Buffer Pool Usage" msgstr "缓冲池使用情况" -#: libraries/engines/innodb.lib.php:168 server_databases.php:136 -#: server_databases.php:304 server_status.php:524 server_status.php:585 -#: server_status.php:606 tbl_printview.php:349 tbl_structure.php:695 +#: libraries/engines/innodb.lib.php:168 server_databases.php:134 +#: server_databases.php:302 server_status.php:524 server_status.php:585 +#: server_status.php:606 tbl_printview.php:348 tbl_structure.php:693 msgid "Total" msgstr "总计" @@ -2466,6 +2452,85 @@ msgstr "" "在修复表 (REPAIR TABLE) 的过程中进行排序 MyISAM 的索引或通过创建索引 (CREATE " "INDEX) 和修改表 (ALTER TABLE) 创建索引时所要分配的缓存大小。" +#: libraries/engines/pbms.lib.php:31 +#, fuzzy +#| msgid "Garbage threshold" +msgid "Garbage Threshold" +msgstr "垃圾阈值" + +#: libraries/engines/pbms.lib.php:32 +#, fuzzy +#| msgid "" +#| "The percentage of garbage in a data log file before it is compacted. This " +#| "is a value between 1 and 99. The default is 50." +msgid "The percentage of garbage in a repository file before it is compacted." +msgstr "数据日志文件中压缩前无效数据所占的比率。值域为 1 到 99,默认值为50。" + +#: libraries/engines/pbms.lib.php:36 libraries/replication_gui.lib.php:69 +#: server_synchronize.php:1161 +msgid "Port" +msgstr "端口" + +#: libraries/engines/pbms.lib.php:37 +msgid "" +"The port for the PBMS stream-based communications. Setting this value to 0 " +"will disable HTTP communication with the daemon." +msgstr "" + +#: libraries/engines/pbms.lib.php:41 +msgid "Repository Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:42 +msgid "" +"The maximum size of a BLOB repository file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:46 +msgid "Temp Blob Timeout" +msgstr "" + +#: libraries/engines/pbms.lib.php:47 +msgid "" +"The timeout, in seconds, for temporary BLOBs. Uploaded BLOB data is removed " +"after this time, unless they are referenced by a record in the database." +msgstr "" + +#: libraries/engines/pbms.lib.php:51 +#, fuzzy +#| msgid "Log file threshold" +msgid "Temp Log Threshold" +msgstr "日志文件阈值" + +#: libraries/engines/pbms.lib.php:52 +msgid "" +"The maximum size of a temporary BLOB log file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:56 +msgid "Max Keep Alive" +msgstr "" + +#: libraries/engines/pbms.lib.php:57 +msgid "" +"The timeout for inactive connection with the keep-alive flag set. After this " +"time the connection will be closed. The time-out is in milliseconds (1/1000)." +msgstr "" + +#: libraries/engines/pbms.lib.php:61 +msgid "Metadata Headers" +msgstr "" + +#: libraries/engines/pbms.lib.php:62 +msgid "" +"A \":\" delimited list of metadata headers to be used to initialize the " +"pbms_metadata_header table when a database is created." +msgstr "" + #: libraries/engines/pbxt.lib.php:22 msgid "Index cache size" msgstr "索引缓存大小" @@ -2597,7 +2662,7 @@ msgstr "" "被删除,或者被以升序数字序列重命名。" #: libraries/export/codegen.php:36 setup/lib/messages.inc.php:85 -#: tbl_printview.php:374 tbl_structure.php:736 +#: tbl_printview.php:373 tbl_structure.php:734 msgid "Format" msgstr "格式" @@ -2660,9 +2725,9 @@ msgstr "Microsoft Word 2000" #: libraries/export/htmlword.php:23 libraries/export/latex.php:59 #: libraries/export/latex.php:205 libraries/export/odt.php:47 #: libraries/export/sql.php:105 libraries/export/sql.php:865 -#: libraries/export/texytext.php:27 server_databases.php:126 -#: server_privileges.php:576 server_replication.php:315 tbl_printview.php:315 -#: tbl_structure.php:664 +#: libraries/export/texytext.php:27 server_databases.php:124 +#: server_privileges.php:575 server_replication.php:314 tbl_printview.php:314 +#: tbl_structure.php:662 msgid "Data" msgstr "数据" @@ -2713,13 +2778,13 @@ msgid "Label key" msgstr "关键标签" #: libraries/export/latex.php:46 libraries/export/odt.php:34 -#: libraries/export/sql.php:90 tbl_relation.php:398 +#: libraries/export/sql.php:90 tbl_relation.php:396 msgid "Relations" msgstr "关系" #: libraries/export/latex.php:52 libraries/export/odt.php:40 #: libraries/export/odt.php:317 libraries/export/sql.php:94 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "MIME 类型" @@ -2727,10 +2792,10 @@ msgstr "MIME 类型" #: libraries/export/xml.php:101 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1529 server_privileges.php:2061 -#: server_processlist.php:54 server_synchronize.php:1158 +#: libraries/replication_gui.lib.php:331 server_privileges.php:730 +#: server_privileges.php:733 server_privileges.php:789 +#: server_privileges.php:1533 server_privileges.php:2065 +#: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "主机" @@ -2917,8 +2982,8 @@ msgstr "导出视图" msgid "Export contents" msgstr "导出内容" -#: libraries/footer.inc.php:182 libraries/footer.inc.php:193 -#: libraries/footer.inc.php:196 +#: libraries/footer.inc.php:180 libraries/footer.inc.php:191 +#: libraries/footer.inc.php:194 msgid "Open new phpMyAdmin window" msgstr "打开新 phpMyAdmin 窗口" @@ -2934,7 +2999,7 @@ msgstr "SQL 查询结果" msgid "Generated by" msgstr "生成者" -#: libraries/import.lib.php:151 sql.php:519 tbl_change.php:180 +#: libraries/import.lib.php:151 sql.php:518 tbl_change.php:175 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL 返回的查询结果为空 (即零行)。" @@ -2990,7 +3055,7 @@ msgstr "忽略重复行" msgid "Column names in first row" msgstr "忽略首行 (首行为字段名)" -#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:501 +#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:500 #: view_create.php:147 msgid "Column names" msgstr "字段名" @@ -3016,12 +3081,12 @@ msgstr "CSV 输入的第 %d 行格式有错。" msgid "Invalid column count in CSV input on line %d." msgstr "CSV 输入的第 %d 行字段数有错。" -#: libraries/import/docsql.php:28 +#: libraries/import/docsql.php:27 msgid "DocSQL" msgstr "DocSQL" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 -#: server_synchronize.php:427 server_synchronize.php:870 +#: libraries/import/docsql.php:30 libraries/tbl_properties.inc.php:616 +#: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "数据表名" @@ -3075,26 +3140,26 @@ msgstr "无" msgid "Convert to Kana" msgstr "转换为假名" -#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:512 -#: tbl_structure.php:28 tbl_structure.php:152 tbl_structure.php:156 -#: tbl_structure.php:472 +#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:511 +#: tbl_structure.php:27 tbl_structure.php:151 tbl_structure.php:155 +#: tbl_structure.php:470 msgid "Primary" msgstr "主键" #: libraries/mult_submits.inc.php:97 libraries/tbl_properties.inc.php:115 -#: libraries/tbl_properties.inc.php:524 tbl_printview.php:324 -#: tbl_structure.php:30 tbl_structure.php:153 tbl_structure.php:157 -#: tbl_structure.php:474 tbl_structure.php:672 +#: libraries/tbl_properties.inc.php:523 tbl_printview.php:323 +#: tbl_structure.php:29 tbl_structure.php:152 tbl_structure.php:156 +#: tbl_structure.php:472 tbl_structure.php:670 msgid "Index" msgstr "索引" -#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:530 -#: tbl_structure.php:34 tbl_structure.php:155 tbl_structure.php:159 -#: tbl_structure.php:477 +#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:529 +#: tbl_structure.php:33 tbl_structure.php:154 tbl_structure.php:158 +#: tbl_structure.php:475 msgid "Fulltext" msgstr "全文搜索" -#: libraries/mult_submits.inc.php:434 tbl_replace.php:330 +#: libraries/mult_submits.inc.php:433 tbl_replace.php:330 msgid "No change" msgstr "无更改" @@ -3102,190 +3167,190 @@ msgstr "无更改" msgid "Charset" msgstr "字符集" -#: libraries/mysql_charsets.lib.php:210 libraries/mysql_charsets.lib.php:411 -#: tbl_change.php:515 +#: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 +#: tbl_change.php:510 msgid "Binary" msgstr "二进制" -#: libraries/mysql_charsets.lib.php:222 +#: libraries/mysql_charsets.lib.php:214 msgid "Bulgarian" msgstr "保加利亚语" -#: libraries/mysql_charsets.lib.php:226 libraries/mysql_charsets.lib.php:351 +#: libraries/mysql_charsets.lib.php:218 libraries/mysql_charsets.lib.php:343 msgid "Simplified Chinese" msgstr "简体中文" -#: libraries/mysql_charsets.lib.php:228 libraries/mysql_charsets.lib.php:371 +#: libraries/mysql_charsets.lib.php:220 libraries/mysql_charsets.lib.php:363 msgid "Traditional Chinese" msgstr "正体中文" -#: libraries/mysql_charsets.lib.php:232 libraries/mysql_charsets.lib.php:418 +#: libraries/mysql_charsets.lib.php:224 libraries/mysql_charsets.lib.php:410 msgid "case-insensitive" msgstr "不区分大小写" -#: libraries/mysql_charsets.lib.php:235 libraries/mysql_charsets.lib.php:420 +#: libraries/mysql_charsets.lib.php:227 libraries/mysql_charsets.lib.php:412 msgid "case-sensitive" msgstr "区分大小写" -#: libraries/mysql_charsets.lib.php:238 +#: libraries/mysql_charsets.lib.php:230 msgid "Croatian" msgstr "克罗地亚语" -#: libraries/mysql_charsets.lib.php:241 +#: libraries/mysql_charsets.lib.php:233 msgid "Czech" msgstr "捷克语" -#: libraries/mysql_charsets.lib.php:244 +#: libraries/mysql_charsets.lib.php:236 msgid "Danish" msgstr "丹麦语" -#: libraries/mysql_charsets.lib.php:247 +#: libraries/mysql_charsets.lib.php:239 msgid "English" msgstr "英语" -#: libraries/mysql_charsets.lib.php:250 +#: libraries/mysql_charsets.lib.php:242 msgid "Esperanto" msgstr "世界语" -#: libraries/mysql_charsets.lib.php:253 +#: libraries/mysql_charsets.lib.php:245 msgid "Estonian" msgstr "爱沙尼亚语" -#: libraries/mysql_charsets.lib.php:256 libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:248 libraries/mysql_charsets.lib.php:251 msgid "German" msgstr "德语" -#: libraries/mysql_charsets.lib.php:256 +#: libraries/mysql_charsets.lib.php:248 msgid "dictionary" msgstr "字典" -#: libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:251 msgid "phone book" msgstr "电话本" -#: libraries/mysql_charsets.lib.php:262 +#: libraries/mysql_charsets.lib.php:254 msgid "Hungarian" msgstr "匈牙利语" -#: libraries/mysql_charsets.lib.php:265 +#: libraries/mysql_charsets.lib.php:257 msgid "Icelandic" msgstr "冰岛语" -#: libraries/mysql_charsets.lib.php:268 libraries/mysql_charsets.lib.php:358 +#: libraries/mysql_charsets.lib.php:260 libraries/mysql_charsets.lib.php:350 msgid "Japanese" msgstr "日语" -#: libraries/mysql_charsets.lib.php:271 +#: libraries/mysql_charsets.lib.php:263 msgid "Latvian" msgstr "拉脱维亚语" -#: libraries/mysql_charsets.lib.php:274 +#: libraries/mysql_charsets.lib.php:266 msgid "Lithuanian" msgstr "立陶宛语" -#: libraries/mysql_charsets.lib.php:277 libraries/mysql_charsets.lib.php:380 +#: libraries/mysql_charsets.lib.php:269 libraries/mysql_charsets.lib.php:372 msgid "Korean" msgstr "朝鲜语" -#: libraries/mysql_charsets.lib.php:280 +#: libraries/mysql_charsets.lib.php:272 msgid "Persian" msgstr "波斯语" -#: libraries/mysql_charsets.lib.php:283 +#: libraries/mysql_charsets.lib.php:275 msgid "Polish" msgstr "波兰语" -#: libraries/mysql_charsets.lib.php:286 libraries/mysql_charsets.lib.php:334 +#: libraries/mysql_charsets.lib.php:278 libraries/mysql_charsets.lib.php:326 msgid "West European" msgstr "西欧" -#: libraries/mysql_charsets.lib.php:289 +#: libraries/mysql_charsets.lib.php:281 msgid "Romanian" msgstr "罗马尼亚语" -#: libraries/mysql_charsets.lib.php:292 +#: libraries/mysql_charsets.lib.php:284 msgid "Slovak" msgstr "斯洛伐克语" -#: libraries/mysql_charsets.lib.php:295 +#: libraries/mysql_charsets.lib.php:287 msgid "Slovenian" msgstr "斯洛文尼亚语" -#: libraries/mysql_charsets.lib.php:298 +#: libraries/mysql_charsets.lib.php:290 msgid "Spanish" msgstr "西班牙语" -#: libraries/mysql_charsets.lib.php:301 +#: libraries/mysql_charsets.lib.php:293 msgid "Traditional Spanish" msgstr "传统西班牙语" -#: libraries/mysql_charsets.lib.php:304 libraries/mysql_charsets.lib.php:401 +#: libraries/mysql_charsets.lib.php:296 libraries/mysql_charsets.lib.php:393 msgid "Swedish" msgstr "瑞典语" -#: libraries/mysql_charsets.lib.php:307 libraries/mysql_charsets.lib.php:404 +#: libraries/mysql_charsets.lib.php:299 libraries/mysql_charsets.lib.php:396 msgid "Thai" msgstr "泰语" -#: libraries/mysql_charsets.lib.php:310 libraries/mysql_charsets.lib.php:398 +#: libraries/mysql_charsets.lib.php:302 libraries/mysql_charsets.lib.php:390 msgid "Turkish" msgstr "土耳其语" -#: libraries/mysql_charsets.lib.php:313 libraries/mysql_charsets.lib.php:395 +#: libraries/mysql_charsets.lib.php:305 libraries/mysql_charsets.lib.php:387 msgid "Ukrainian" msgstr "乌克兰语" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 msgid "Unicode" msgstr "Unicode" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 -#: libraries/mysql_charsets.lib.php:334 libraries/mysql_charsets.lib.php:341 -#: libraries/mysql_charsets.lib.php:363 libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 +#: libraries/mysql_charsets.lib.php:326 libraries/mysql_charsets.lib.php:333 +#: libraries/mysql_charsets.lib.php:355 libraries/mysql_charsets.lib.php:366 msgid "multilingual" msgstr "多语言" -#: libraries/mysql_charsets.lib.php:341 +#: libraries/mysql_charsets.lib.php:333 msgid "Central European" msgstr "中欧" -#: libraries/mysql_charsets.lib.php:346 +#: libraries/mysql_charsets.lib.php:338 msgid "Russian" msgstr "俄语" -#: libraries/mysql_charsets.lib.php:363 +#: libraries/mysql_charsets.lib.php:355 msgid "Baltic" msgstr "巴拉克语" -#: libraries/mysql_charsets.lib.php:368 +#: libraries/mysql_charsets.lib.php:360 msgid "Armenian" msgstr "亚美尼亚语" -#: libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:366 msgid "Cyrillic" msgstr "西里尔语" -#: libraries/mysql_charsets.lib.php:377 +#: libraries/mysql_charsets.lib.php:369 msgid "Arabic" msgstr "阿拉伯语" -#: libraries/mysql_charsets.lib.php:383 +#: libraries/mysql_charsets.lib.php:375 msgid "Hebrew" msgstr "希伯来语" -#: libraries/mysql_charsets.lib.php:386 +#: libraries/mysql_charsets.lib.php:378 msgid "Georgian" msgstr "乔治亚语" -#: libraries/mysql_charsets.lib.php:389 +#: libraries/mysql_charsets.lib.php:381 msgid "Greek" msgstr "希腊语" -#: libraries/mysql_charsets.lib.php:392 +#: libraries/mysql_charsets.lib.php:384 msgid "Czech-Slovak" msgstr "捷克斯洛伐克语" -#: libraries/mysql_charsets.lib.php:407 libraries/mysql_charsets.lib.php:414 +#: libraries/mysql_charsets.lib.php:399 libraries/mysql_charsets.lib.php:406 msgid "unknown" msgstr "未知" @@ -3311,57 +3376,57 @@ msgstr "查询窗口" msgid "This format has no options" msgstr "此格式没有选项" -#: libraries/relation.lib.php:82 +#: libraries/relation.lib.php:77 msgid "not OK" msgstr "错误" -#: libraries/relation.lib.php:86 pmd_general.php:339 +#: libraries/relation.lib.php:81 pmd_general.php:339 msgid "OK" msgstr "确定" -#: libraries/relation.lib.php:87 +#: libraries/relation.lib.php:82 msgid "Enabled" msgstr "已启用" -#: libraries/relation.lib.php:110 +#: libraries/relation.lib.php:105 msgid "Display Features" msgstr "显示功能" -#: libraries/relation.lib.php:116 +#: libraries/relation.lib.php:111 msgid "Creation of PDFs" msgstr "创建 PDF" -#: libraries/relation.lib.php:120 +#: libraries/relation.lib.php:115 msgid "Displaying Column Comments" msgstr "显示字段注释" -#: libraries/relation.lib.php:125 +#: libraries/relation.lib.php:120 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "请参见文档中关于如何更新您的 column_comments 表" -#: libraries/relation.lib.php:130 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 msgid "Bookmarked SQL query" msgstr "SQL 查询书签" -#: libraries/relation.lib.php:134 querywindow.php:99 querywindow.php:207 +#: libraries/relation.lib.php:129 querywindow.php:98 querywindow.php:205 msgid "SQL history" msgstr "SQL 历史" -#: libraries/relation.lib.php:146 +#: libraries/relation.lib.php:141 msgid "Quick steps to setup advanced features:" msgstr "快速设置高级功能:" -#: libraries/relation.lib.php:148 +#: libraries/relation.lib.php:143 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "通过 script/create_tables.sql 创建必需的数据表。" -#: libraries/relation.lib.php:149 +#: libraries/relation.lib.php:144 msgid "Create a pma user and give access to these tables." msgstr "创建一个用户并授予其访问上一步操作中创建的数据表的权限。" -#: libraries/relation.lib.php:150 +#: libraries/relation.lib.php:145 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." @@ -3369,11 +3434,11 @@ msgstr "" "在配置文件 (config.inc.php) 中启用高级功能,参见 config." "sample.inc.php 中的范例。" -#: libraries/relation.lib.php:151 +#: libraries/relation.lib.php:146 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "请重新登录 phpMyAdmin 以加载新配置并使其生效。" -#: libraries/relation.lib.php:1158 +#: libraries/relation.lib.php:1153 msgid "no description" msgstr "无说明" @@ -3381,7 +3446,7 @@ msgstr "无说明" msgid "Slave configuration" msgstr "从服务器配置" -#: libraries/replication_gui.lib.php:53 server_replication.php:346 +#: libraries/replication_gui.lib.php:53 server_replication.php:345 msgid "Change or reconfigure master server" msgstr "修改或重新配置主服务器" @@ -3395,16 +3460,12 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:711 -#: server_privileges.php:714 server_privileges.php:721 -#: server_synchronize.php:1170 +#: libraries/replication_gui.lib.php:261 server_privileges.php:710 +#: server_privileges.php:713 server_privileges.php:720 +#: server_synchronize.php:1169 msgid "User name" msgstr "用户名" -#: libraries/replication_gui.lib.php:69 server_synchronize.php:1162 -msgid "Port" -msgstr "端口" - #: libraries/replication_gui.lib.php:105 msgid "Master status" msgstr "主服务器状态" @@ -3419,8 +3480,8 @@ msgid "Variable" msgstr "变量" #: libraries/replication_gui.lib.php:117 server_status.php:737 -#: tbl_change.php:322 tbl_printview.php:368 tbl_select.php:137 -#: tbl_structure.php:728 +#: tbl_change.php:317 tbl_printview.php:367 tbl_select.php:136 +#: tbl_structure.php:726 msgid "Value" msgstr "值" @@ -3434,38 +3495,38 @@ msgid "" "this list." msgstr "仅通过 --report-host=主机名 参数启动的从服务器可见。" -#: libraries/replication_gui.lib.php:242 server_replication.php:193 +#: libraries/replication_gui.lib.php:242 server_replication.php:192 msgid "Add slave replication user" msgstr "添加从复制用户" -#: libraries/replication_gui.lib.php:256 server_privileges.php:716 +#: libraries/replication_gui.lib.php:256 server_privileges.php:715 msgid "Any user" msgstr "任意用户" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1920 server_privileges.php:1950 +#: libraries/replication_gui.lib.php:348 server_privileges.php:716 +#: server_privileges.php:783 server_privileges.php:807 +#: server_privileges.php:1924 server_privileges.php:1954 msgid "Use text field" msgstr "使用文本域" -#: libraries/replication_gui.lib.php:304 server_privileges.php:764 +#: libraries/replication_gui.lib.php:304 server_privileges.php:763 msgid "Any host" msgstr "任意主机" -#: libraries/replication_gui.lib.php:308 server_privileges.php:768 +#: libraries/replication_gui.lib.php:308 server_privileges.php:767 msgid "Local" msgstr "本地" -#: libraries/replication_gui.lib.php:314 server_privileges.php:773 +#: libraries/replication_gui.lib.php:314 server_privileges.php:772 msgid "This Host" msgstr "此主机" -#: libraries/replication_gui.lib.php:320 server_privileges.php:779 +#: libraries/replication_gui.lib.php:320 server_privileges.php:778 msgid "Use Host Table" msgstr "使用主机表" -#: libraries/replication_gui.lib.php:333 server_privileges.php:792 +#: libraries/replication_gui.lib.php:333 server_privileges.php:791 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3491,8 +3552,8 @@ msgstr "未知的语言:%1$s." msgid "Servers" msgstr "服务器" -#: libraries/server_links.inc.php:52 server_engines.php:111 -#: server_engines.php:115 server_status.php:414 test/theme.php:104 +#: libraries/server_links.inc.php:52 server_engines.php:125 +#: server_engines.php:129 server_status.php:414 test/theme.php:104 msgid "Variables" msgstr "变量" @@ -3513,12 +3574,12 @@ msgstr "二进制日志" msgid "Processes" msgstr "进程" -#: libraries/server_links.inc.php:91 server_synchronize.php:1091 -#: server_synchronize.php:1099 +#: libraries/server_links.inc.php:91 server_synchronize.php:1090 +#: server_synchronize.php:1098 msgid "Synchronize" msgstr "同步" -#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1109 +#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1108 msgid "Source database" msgstr "源数据库" @@ -3536,7 +3597,7 @@ msgstr "远程服务器" msgid "Difference" msgstr "差异" -#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1111 +#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1110 msgid "Target database" msgstr "目标数据库" @@ -3554,11 +3615,11 @@ msgstr "在数据库 %s 运行 SQL 查询" msgid "Columns" msgstr "字段" -#: libraries/sql_query_form.lib.php:342 sql.php:664 sql.php:665 sql.php:682 +#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "将此 SQL 查询加为书签" -#: libraries/sql_query_form.lib.php:349 sql.php:676 +#: libraries/sql_query_form.lib.php:349 sql.php:669 msgid "Let every user access this bookmark" msgstr "让所有用户均可访问此书签" @@ -3649,12 +3710,12 @@ msgid "" msgstr "" "SQL 校验程序无法初始化。请检查是否已经安装了%s文档%s内说明的必需 PHP 扩展。" -#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:139 -#: libraries/tbl_links.inc.php:140 +#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 +#: libraries/tbl_links.inc.php:139 msgid "Table seems to be empty!" msgstr "数据表是空的!" -#: libraries/tbl_links.inc.php:148 +#: libraries/tbl_links.inc.php:147 #, php-format msgid "Tracking of %s.%s is activated." msgstr "%s.%s 的追踪已启用。" @@ -3679,23 +3740,23 @@ msgid "" "escaping or quotes, using this format: a" msgstr "对于默认值,请只输入单个值,不要加反斜杠或引号,请用此格式:a" -#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1263 -#: pdf_schema.php:1284 tbl_printview.php:142 tbl_structure.php:179 +#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1262 +#: pdf_schema.php:1283 tbl_printview.php:141 tbl_structure.php:178 msgid "Attributes" msgstr "属性" -#: libraries/tbl_properties.inc.php:136 +#: libraries/tbl_properties.inc.php:135 #, php-format msgid "" "For a list of available transformation options and their MIME type " "transformations, click on %stransformation descriptions%s" msgstr "要获得可用转换选项的列表及对应的 MIME 类型转换,请点击%s转换说明%s" -#: libraries/tbl_properties.inc.php:144 +#: libraries/tbl_properties.inc.php:143 msgid "Transformation options" msgstr "转换选项" -#: libraries/tbl_properties.inc.php:145 +#: libraries/tbl_properties.inc.php:144 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
                            If you ever need to put a backslash (\"\\\") or a single " @@ -3705,44 +3766,44 @@ msgstr "" "请使用此格式输入转换选项的值:'a',100,b,'c'...
                            如果您需要在值中输入反斜" "杠 (“\\”)或单引号(“'”),请在前面加上反斜杠 (如 '\\\\xyz' 或 'a\\'b')。" -#: libraries/tbl_properties.inc.php:392 +#: libraries/tbl_properties.inc.php:391 msgctxt "for default" msgid "None" msgstr "无" -#: libraries/tbl_properties.inc.php:393 +#: libraries/tbl_properties.inc.php:392 msgid "As defined:" msgstr "定义:" -#: libraries/tbl_properties.inc.php:579 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:578 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
                            Please ask the " "author what %s does." msgstr "此转换没有说明。
                            详细功能请询问 %s 的作者。" -#: libraries/tbl_properties.inc.php:725 server_engines.php:57 -#: tbl_operations.php:354 +#: libraries/tbl_properties.inc.php:724 server_engines.php:56 +#: tbl_operations.php:352 msgid "Storage Engine" msgstr "存储引擎" -#: libraries/tbl_properties.inc.php:754 +#: libraries/tbl_properties.inc.php:753 msgid "PARTITION definition" msgstr "分区定义" -#: libraries/tbl_properties.inc.php:775 pdf_pages.php:502 +#: libraries/tbl_properties.inc.php:774 pdf_pages.php:501 #: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214 -#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1124 tbl_indexes.php:247 -#: tbl_relation.php:565 +#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1022 tbl_indexes.php:246 +#: tbl_relation.php:563 msgid "Save" msgstr "保存" -#: libraries/tbl_properties.inc.php:779 tbl_structure.php:541 +#: libraries/tbl_properties.inc.php:778 tbl_structure.php:539 #, php-format msgid "Add %s column(s)" msgstr "添加 %s 个字段" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:535 +#: libraries/tbl_properties.inc.php:782 tbl_structure.php:533 msgid "You have to add at least one column." msgstr "至少要添加一个字段。" @@ -3898,8 +3959,8 @@ msgstr "界面" msgid "Custom color" msgstr "自定义颜色" -#: main.php:162 pdf_pages.php:362 setup/lib/FormDisplay.tpl.php:216 -#: tbl_change.php:1173 +#: main.php:162 pdf_pages.php:361 setup/lib/FormDisplay.tpl.php:216 +#: tbl_change.php:1071 msgid "Reset" msgstr "重置" @@ -3907,8 +3968,8 @@ msgstr "重置" msgid "Protocol version" msgstr "协议版本" -#: main.php:188 server_privileges.php:1381 server_privileges.php:1528 -#: server_privileges.php:1642 server_privileges.php:2060 +#: main.php:188 server_privileges.php:1385 server_privileges.php:1532 +#: server_privileges.php:1646 server_privileges.php:2064 #: server_processlist.php:53 msgid "User" msgstr "用户" @@ -3995,7 +4056,14 @@ msgstr "" "安装时所用的 [code]config[/code] 文件夹尚未删除,如果 phpMyAdmin 已经安装配置" "好,请立即删除该文件夹。" -#: main.php:330 +#: main.php:314 +#, php-format +msgid "" +"The additional features for working with linked tables have been " +"deactivated. To find out why click %shere%s." +msgstr "链接表的附加功能尚未激活。要查出原因,请点击%s此处%s。" + +#: main.php:329 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " @@ -4004,7 +4072,7 @@ msgstr "" "你的浏览器不支持或禁用了 Javascript,部分 phpMyAdmin 功能将不可用。如导航框架" "将不能自动刷新。" -#: main.php:345 +#: main.php:344 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -4013,7 +4081,7 @@ msgstr "" "你的 PHP MySQL 库版本 %s 和你的 MySQL 服务器版本 %s 不同。这可能造成一些未知" "的问题。" -#: main.php:357 +#: main.php:356 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -4024,100 +4092,100 @@ msgstr "服务器上运行了 Suhosin。请先查看%s文档%s中是否有类似 msgid "Reload navigation frame" msgstr "刷新导航框架" -#: navigation.php:204 server_databases.php:370 server_synchronize.php:1190 +#: navigation.php:203 server_databases.php:368 server_synchronize.php:1189 msgid "No databases" msgstr "无数据库" -#: navigation.php:298 +#: navigation.php:297 msgid "Filter" msgstr "快速搜索" -#: navigation.php:299 setup/frames/index.inc.php:218 +#: navigation.php:298 setup/frames/index.inc.php:218 #: setup/lib/messages.inc.php:41 msgid "Clear" msgstr "清除" -#: navigation.php:330 navigation.php:331 +#: navigation.php:329 navigation.php:330 msgctxt "short form" msgid "Create table" msgstr "新建数据表" -#: navigation.php:333 navigation.php:495 +#: navigation.php:332 navigation.php:494 msgid "Please select a database" msgstr "请选择数据库" -#: pdf_pages.php:40 pdf_pages.php:46 pdf_pages.php:52 pdf_pages.php:57 +#: pdf_pages.php:39 pdf_pages.php:45 pdf_pages.php:51 pdf_pages.php:56 #, php-format msgid "%s table not found or not set in %s" msgstr "找不到 %s 表或还未在 %s 设置" -#: pdf_pages.php:265 +#: pdf_pages.php:264 msgid "Please choose a page to edit" msgstr "请选择需要编辑的页" -#: pdf_pages.php:303 pmd_pdf.php:113 +#: pdf_pages.php:302 pmd_pdf.php:111 msgid "Create a page" msgstr "创建新页" -#: pdf_pages.php:309 +#: pdf_pages.php:308 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "页码:" -#: pdf_pages.php:313 +#: pdf_pages.php:312 #, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "自动排版" -#: pdf_pages.php:315 +#: pdf_pages.php:314 msgid "Internal relations" msgstr "内联" -#: pdf_pages.php:338 +#: pdf_pages.php:337 msgid "Select Tables" msgstr "选择表" -#: pdf_pages.php:361 +#: pdf_pages.php:360 msgid "Toggle scratchboard" msgstr "切换刮板" -#: pdf_pages.php:524 +#: pdf_pages.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" msgstr "当前页所引用的表不存在了。您是否想要删除这些引用?" -#: pdf_schema.php:635 +#: pdf_schema.php:634 #, php-format msgid "The %s table doesn't exist!" msgstr "数据表 %s 不存在!" -#: pdf_schema.php:671 +#: pdf_schema.php:670 #, php-format msgid "Please configure the coordinates for table %s" msgstr "请配置表 %s 的并发" -#: pdf_schema.php:994 +#: pdf_schema.php:993 #, php-format msgid "Schema of the %s database - Page %s" msgstr "数据库 %s 的大纲 - 第 %s 页" -#: pdf_schema.php:1012 +#: pdf_schema.php:1011 msgid "No tables" msgstr "没有表" -#: pdf_schema.php:1031 pdf_schema.php:1140 +#: pdf_schema.php:1030 pdf_schema.php:1139 msgid "Relational schema" msgstr "关系大纲" -#: pdf_schema.php:1115 +#: pdf_schema.php:1114 msgid "Table of contents" msgstr "目录" -#: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:145 -#: tbl_structure.php:182 tbl_tracking.php:277 +#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 +#: tbl_structure.php:181 tbl_tracking.php:272 msgid "Extra" msgstr "额外" @@ -4129,7 +4197,7 @@ msgstr "显示/隐藏左侧菜单" msgid "Save position" msgstr "保存位置" -#: pmd_general.php:70 server_synchronize.php:428 server_synchronize.php:871 +#: pmd_general.php:70 server_synchronize.php:427 server_synchronize.php:870 msgid "Create table" msgstr "新建数据表" @@ -4202,31 +4270,31 @@ msgstr "" "显示的字段为粉红色。要设置/取消显示的字段,点击“选择显示字段”图标,然后选择需" "要的字段名。" -#: pmd_pdf.php:62 +#: pmd_pdf.php:60 msgid "Page has been created" msgstr "已创建页面" -#: pmd_pdf.php:64 +#: pmd_pdf.php:62 msgid "Page creation failed" msgstr "页面创建失败" -#: pmd_pdf.php:84 +#: pmd_pdf.php:82 msgid "Export/Import to scale" msgstr "按比例导出/导入" -#: pmd_pdf.php:88 +#: pmd_pdf.php:86 msgid "recommended" msgstr "推荐" -#: pmd_pdf.php:93 +#: pmd_pdf.php:91 msgid "to/from page" msgstr "到/从 页" -#: querywindow.php:94 +#: querywindow.php:93 msgid "Import files" msgstr "导入文件" -#: querywindow.php:105 +#: querywindow.php:104 msgid "All" msgstr "全部" @@ -4272,243 +4340,243 @@ msgstr "信息" msgid "Character Sets and Collations" msgstr "字符集和整理" -#: server_databases.php:51 +#: server_databases.php:49 msgid "No databases selected." msgstr "未选中数据库。" -#: server_databases.php:62 +#: server_databases.php:60 #, php-format msgid "%s databases have been dropped successfully." msgstr "已成功删除 %s 个数据库。" -#: server_databases.php:87 +#: server_databases.php:85 msgid "Databases statistics" msgstr "数据库统计" -#: server_databases.php:116 server_status.php:370 +#: server_databases.php:114 server_status.php:370 #: setup/lib/messages.inc.php:114 msgid "Tables" msgstr "数据表" -#: server_databases.php:194 server_replication.php:180 -#: server_replication.php:208 +#: server_databases.php:192 server_replication.php:179 +#: server_replication.php:207 msgid "Master replication" msgstr "主复制" -#: server_databases.php:196 server_replication.php:247 +#: server_databases.php:194 server_replication.php:246 msgid "Slave replication" msgstr "从复制" -#: server_databases.php:229 +#: server_databases.php:227 msgid "Jump to database" msgstr "转到数据库" -#: server_databases.php:266 +#: server_databases.php:264 #, fuzzy #| msgid "Master replication" msgid "Not replicated" msgstr "主复制" -#: server_databases.php:272 +#: server_databases.php:270 #, fuzzy #| msgid "Replication" msgid "Replicated" msgstr "复制" -#: server_databases.php:288 +#: server_databases.php:286 #, php-format msgid "Check privileges for database "%s"." msgstr "检查数据库“%s”的权限。" -#: server_databases.php:292 server_databases.php:293 +#: server_databases.php:290 server_databases.php:291 msgid "Check Privileges" msgstr "检查权限" -#: server_databases.php:357 server_databases.php:358 +#: server_databases.php:355 server_databases.php:356 msgid "Enable Statistics" msgstr "启用统计" -#: server_databases.php:361 server_databases.php:362 +#: server_databases.php:359 server_databases.php:360 msgid "Disable Statistics" msgstr "禁用统计" -#: server_databases.php:365 +#: server_databases.php:363 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." msgstr "" "注意:在此启用数据库统计可能导致网站服务器和 MySQL 服务器之间的流量骤增。" -#: server_engines.php:48 +#: server_engines.php:47 msgid "Storage Engines" msgstr "存储引擎" -#: server_export.php:20 +#: server_export.php:18 msgid "View dump (schema) of databases" msgstr "查看数据库的转存(大纲)" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:23 server_privileges.php:265 msgid "Includes all privileges except GRANT." msgstr "除了授权 (GRANT) 以外的所有权限。" -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:24 server_privileges.php:191 +#: server_privileges.php:514 msgid "Allows altering the structure of existing tables." msgstr "允许修改现有数据表的结构。" -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:25 server_privileges.php:207 +#: server_privileges.php:520 msgid "Allows altering and dropping stored routines." msgstr "允许修改或删除储存过程。" -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:26 server_privileges.php:183 +#: server_privileges.php:513 msgid "Allows creating new databases and tables." msgstr "允许创建新数据库和数据表。" -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:27 server_privileges.php:206 +#: server_privileges.php:519 msgid "Allows creating stored routines." msgstr "允许创建存储过程。" -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:513 msgid "Allows creating new tables." msgstr "允许创建新数据表。" -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:29 server_privileges.php:194 +#: server_privileges.php:517 msgid "Allows creating temporary tables." msgstr "允许创建临时表。" -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:30 server_privileges.php:208 +#: server_privileges.php:553 msgid "Allows creating, dropping and renaming user accounts." msgstr "允许创建、删除和重命名用户账户。" -#: server_privileges.php:32 server_privileges.php:199 -#: server_privileges.php:203 server_privileges.php:526 -#: server_privileges.php:530 +#: server_privileges.php:31 server_privileges.php:198 +#: server_privileges.php:202 server_privileges.php:525 +#: server_privileges.php:529 msgid "Allows creating new views." msgstr "允许创建视图。" -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:32 server_privileges.php:182 +#: server_privileges.php:505 msgid "Allows deleting data." msgstr "允许删除数据。" -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:33 server_privileges.php:184 +#: server_privileges.php:516 msgid "Allows dropping databases and tables." msgstr "允许删除数据库和数据表。" -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:34 server_privileges.php:516 msgid "Allows dropping tables." msgstr "允许删除数据表。" -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:35 server_privileges.php:199 +#: server_privileges.php:533 msgid "Allows to set up events for the event scheduler" msgstr "允许为事件触发器设置事件" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:36 server_privileges.php:209 +#: server_privileges.php:521 msgid "Allows executing stored routines." msgstr "允许运行存储过程。" -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:37 server_privileges.php:188 +#: server_privileges.php:508 msgid "Allows importing data from and exporting data into files." msgstr "允许从文件中导入数据以及将数据导出至文件。" -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:38 server_privileges.php:539 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "允许添加用户和权限,而不允许重新载入权限表。" -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:515 msgid "Allows creating and dropping indexes." msgstr "允许创建和删除索引。" -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:40 server_privileges.php:180 +#: server_privileges.php:441 server_privileges.php:503 msgid "Allows inserting and replacing data." msgstr "允许插入和替换数据。" -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:41 server_privileges.php:195 +#: server_privileges.php:548 msgid "Allows locking tables for the current thread." msgstr "允许锁定当前线程的表。" -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:42 server_privileges.php:645 +#: server_privileges.php:647 msgid "Limits the number of new connections the user may open per hour." msgstr "限制用户每小时打开的新连接数。" -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:43 server_privileges.php:633 +#: server_privileges.php:635 msgid "Limits the number of queries the user may send to the server per hour." msgstr "限制用户每小时可发送到服务器的查询数。" -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:44 server_privileges.php:639 +#: server_privileges.php:641 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "限制用户每小时可执行的修改任何数据表或数据库的命令数。" -#: server_privileges.php:46 server_privileges.php:652 -#: server_privileges.php:654 +#: server_privileges.php:45 server_privileges.php:651 +#: server_privileges.php:653 msgid "Limits the number of simultaneous connections the user may have." msgstr "限制该用户的并发连接数。" -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:46 server_privileges.php:187 +#: server_privileges.php:543 msgid "Allows viewing processes of all users" msgstr "允许查看所有用户的进程" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:47 server_privileges.php:189 +#: server_privileges.php:447 server_privileges.php:549 msgid "Has no effect in this MySQL version." msgstr "在此版本的 MySQL 中无效。" -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:48 server_privileges.php:185 +#: server_privileges.php:544 msgid "Allows reloading server settings and flushing the server's caches." msgstr "允许重新载入服务器设置并刷新服务器的缓存。" -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:197 +#: server_privileges.php:551 msgid "Allows the user to ask where the slaves / masters are." msgstr "用户有权询问附属者/控制者在哪里。" -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:50 server_privileges.php:196 +#: server_privileges.php:552 msgid "Needed for the replication slaves." msgstr "回复附属者所需。" -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:51 server_privileges.php:179 +#: server_privileges.php:438 server_privileges.php:502 msgid "Allows reading data." msgstr "允许读取数据。" -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:52 server_privileges.php:192 +#: server_privileges.php:546 msgid "Gives access to the complete list of databases." msgstr "允许访问完整的数据库列表。" -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:53 server_privileges.php:203 +#: server_privileges.php:205 server_privileges.php:518 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "允许执行 SHOW CREATE VIEW 查询。" -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:54 server_privileges.php:186 +#: server_privileges.php:545 msgid "Allows shutting down the server." msgstr "允许关闭服务器。" -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:55 server_privileges.php:193 +#: server_privileges.php:542 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -4517,152 +4585,152 @@ msgstr "" "允许在达到最大连接数时连接,对于大多数像设置全局变量或杀死其它用户线程这样的" "管理操作是必需的。" -#: server_privileges.php:57 server_privileges.php:201 -#: server_privileges.php:535 +#: server_privileges.php:56 server_privileges.php:200 +#: server_privileges.php:534 msgid "Allows creating and dropping triggers" msgstr "允许创建和删除触发器" -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:57 server_privileges.php:181 +#: server_privileges.php:444 server_privileges.php:504 msgid "Allows changing data." msgstr "允许修改数据。" -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:58 server_privileges.php:259 msgid "No privileges." msgstr "无权限。" -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:301 server_privileges.php:302 msgctxt "None privileges" msgid "None" msgstr "无" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1710 server_privileges.php:1716 +#: server_privileges.php:430 server_privileges.php:565 +#: server_privileges.php:1714 server_privileges.php:1720 msgid "Table-specific privileges" msgstr "按表指定权限" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1532 +#: server_privileges.php:431 server_privileges.php:573 +#: server_privileges.php:1536 msgid " Note: MySQL privilege names are expressed in English " msgstr " 注意:MySQL 权限名称会以英文显示 " -#: server_privileges.php:563 server_privileges.php:1531 +#: server_privileges.php:562 server_privileges.php:1535 msgid "Global privileges" msgstr "全局权限" -#: server_privileges.php:565 server_privileges.php:1710 +#: server_privileges.php:564 server_privileges.php:1714 msgid "Database-specific privileges" msgstr "按数据库指定权限" -#: server_privileges.php:610 +#: server_privileges.php:609 msgid "Administration" msgstr "管理" -#: server_privileges.php:630 +#: server_privileges.php:629 msgid "Resource limits" msgstr "资源限制" -#: server_privileges.php:631 +#: server_privileges.php:630 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "注意:若将这些选项设为 0(零) 即不限制。" -#: server_privileges.php:708 +#: server_privileges.php:707 msgid "Login Information" msgstr "登录信息" -#: server_privileges.php:802 +#: server_privileges.php:801 msgid "Do not change the password" msgstr "保持原密码" -#: server_privileges.php:835 server_privileges.php:2197 +#: server_privileges.php:834 server_privileges.php:2201 msgid "No user found." msgstr "未找到用户。" -#: server_privileges.php:879 +#: server_privileges.php:878 #, php-format msgid "The user %s already exists!" msgstr "用户 %s 己存在!" -#: server_privileges.php:962 +#: server_privileges.php:961 msgid "You have added a new user." msgstr "您已添加了一个新用户。" -#: server_privileges.php:1183 +#: server_privileges.php:1184 #, php-format msgid "You have updated the privileges for %s." msgstr "您已更新了 %s 的权限。" -#: server_privileges.php:1207 +#: server_privileges.php:1208 #, php-format msgid "You have revoked the privileges for %s" msgstr "您已撤销 %s 的权限" -#: server_privileges.php:1243 +#: server_privileges.php:1244 #, php-format msgid "The password for %s was changed successfully." msgstr "%s 的密码已修改。" -#: server_privileges.php:1263 +#: server_privileges.php:1264 #, php-format msgid "Deleting %s" msgstr "正在删除 %s" -#: server_privileges.php:1274 +#: server_privileges.php:1275 msgid "No users selected for deleting!" msgstr "没有选择要删除的用户!" -#: server_privileges.php:1277 +#: server_privileges.php:1278 msgid "Reloading the privileges" msgstr "重新载入权限" -#: server_privileges.php:1292 +#: server_privileges.php:1296 msgid "The selected users have been deleted successfully." msgstr "已成功删除选中的用户。" -#: server_privileges.php:1327 +#: server_privileges.php:1331 msgid "The privileges were reloaded successfully." msgstr "已成功重新载入权限。" -#: server_privileges.php:1355 server_privileges.php:1641 +#: server_privileges.php:1359 server_privileges.php:1645 msgid "Edit Privileges" msgstr "编辑权限" -#: server_privileges.php:1364 +#: server_privileges.php:1368 msgid "Revoke" msgstr "撤销" -#: server_privileges.php:1396 +#: server_privileges.php:1400 msgid "User overview" msgstr "查看用户" -#: server_privileges.php:1533 server_privileges.php:1715 -#: server_privileges.php:2064 +#: server_privileges.php:1537 server_privileges.php:1719 +#: server_privileges.php:2068 msgid "Grant" msgstr "授权" -#: server_privileges.php:1552 server_privileges.php:2154 +#: server_privileges.php:1556 server_privileges.php:2158 msgid "Any" msgstr "任意" -#: server_privileges.php:1601 server_privileges.php:1625 -#: server_privileges.php:2019 server_privileges.php:2208 +#: server_privileges.php:1605 server_privileges.php:1629 +#: server_privileges.php:2023 server_privileges.php:2212 msgid "Add a new User" msgstr "添加新用户" -#: server_privileges.php:1606 +#: server_privileges.php:1610 msgid "Remove selected users" msgstr "删除选中的用户" -#: server_privileges.php:1609 +#: server_privileges.php:1613 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "撤销用户所有权限,然后删除用户。" -#: server_privileges.php:1610 server_privileges.php:1611 -#: server_privileges.php:1612 +#: server_privileges.php:1614 server_privileges.php:1615 +#: server_privileges.php:1616 msgid "Drop the databases that have the same names as the users." msgstr "删除与用户同名的数据库。" -#: server_privileges.php:1628 +#: server_privileges.php:1632 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4674,89 +4742,89 @@ msgstr "" "将可能与服务器使用的用户权限有异。在这种情况下,您应在继续前%s重新载入权" "限%s。" -#: server_privileges.php:1676 +#: server_privileges.php:1680 msgid "The selected user was not found in the privilege table." msgstr "在权限表内找不到选中的用户。" -#: server_privileges.php:1716 +#: server_privileges.php:1720 msgid "Column-specific privileges" msgstr "按字段指定权限" -#: server_privileges.php:1917 +#: server_privileges.php:1921 msgid "Add privileges on the following database" msgstr "在下列数据库添加权限" -#: server_privileges.php:1935 +#: server_privileges.php:1939 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "要使用通配符 _ 和 % 本身,应使用用 \\ 转义" -#: server_privileges.php:1938 +#: server_privileges.php:1942 msgid "Add privileges on the following table" msgstr "在下列数据表添加权限" -#: server_privileges.php:1995 +#: server_privileges.php:1999 msgid "Change Login Information / Copy User" msgstr "修改登录信息/复制用户" -#: server_privileges.php:1998 +#: server_privileges.php:2002 msgid "Create a new user with the same privileges and ..." msgstr "创建具有相同权限的新用户然后 ..." -#: server_privileges.php:2000 +#: server_privileges.php:2004 msgid "... keep the old one." msgstr "... 保留旧用户。" -#: server_privileges.php:2001 +#: server_privileges.php:2005 msgid " ... delete the old one from the user tables." msgstr " ... 从用户表中删除旧用户。" -#: server_privileges.php:2002 +#: server_privileges.php:2006 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr " ... 撤销旧用户的所有权限,然后删除旧用户。" -#: server_privileges.php:2003 +#: server_privileges.php:2007 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr " ... 从用户表中删除旧用户,然后重新载入权限。" -#: server_privileges.php:2025 +#: server_privileges.php:2029 msgid "Database for user" msgstr "用户数据库" -#: server_privileges.php:2029 +#: server_privileges.php:2033 msgctxt "Create none database for user" msgid "None" msgstr "无" -#: server_privileges.php:2030 +#: server_privileges.php:2034 msgid "Create database with same name and grant all privileges" msgstr "创建与用户同名的数据库并授予所有权限" -#: server_privileges.php:2031 +#: server_privileges.php:2035 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "给以 用户名_ 开头的数据库 (username\\_%) 授予所有权限" -#: server_privileges.php:2034 +#: server_privileges.php:2038 #, php-format msgid "Grant all privileges on database "%s"" msgstr "授予数据库“%s”的所有权限。" -#: server_privileges.php:2057 +#: server_privileges.php:2061 #, php-format msgid "Users having access to "%s"" msgstr "用户可以访问“%s”" -#: server_privileges.php:2165 +#: server_privileges.php:2169 msgid "global" msgstr "全局" -#: server_privileges.php:2167 +#: server_privileges.php:2171 msgid "database-specific" msgstr "按数据库指定" -#: server_privileges.php:2169 +#: server_privileges.php:2173 msgid "wildcard" msgstr "通配符" @@ -4775,42 +4843,42 @@ msgstr "phpMyAdmin 无法杀死线程 %s。该线程可能已经关闭。" msgid "ID" msgstr "ID" -#: server_replication.php:50 +#: server_replication.php:49 msgid "Unknown error" msgstr "未知错误" -#: server_replication.php:57 +#: server_replication.php:56 #, php-format msgid "Unable to connect to master %s." msgstr "无法连接到主服务器 %s 。" -#: server_replication.php:64 +#: server_replication.php:63 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "无法读取主服务器日志。主服务器的权限设置可能有问题。" -#: server_replication.php:70 +#: server_replication.php:69 msgid "Unable to change master" msgstr "无法修改主服务器" -#: server_replication.php:73 +#: server_replication.php:72 #, php-format msgid "Master server changed succesfully to %s" msgstr "成功修改主服务器为 %s" -#: server_replication.php:181 +#: server_replication.php:180 msgid "This server is configured as master in a replication process." msgstr "此服务器已被配置为一个复制进程中的主服务器。" -#: server_replication.php:183 server_status.php:391 +#: server_replication.php:182 server_status.php:391 msgid "Show master status" msgstr "查看主服务器状态" -#: server_replication.php:186 +#: server_replication.php:185 msgid "Show connected slaves" msgstr "查看已连接的从服务器" -#: server_replication.php:209 +#: server_replication.php:208 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -4819,11 +4887,11 @@ msgstr "" "此服务器尚未配置为一个复制进程中的主服务器。你想现在配置" "吗?" -#: server_replication.php:216 +#: server_replication.php:215 msgid "Master configuration" msgstr "主服务器配置" -#: server_replication.php:217 +#: server_replication.php:216 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -4834,25 +4902,25 @@ msgstr "" "此服务器尚未配置为一个复制进程中的主服务器。你可以选择复制所有但忽略某些数据" "库 (当你想复制大多数数据库时很有用) 或者仅复制某些数据库。请选择模式:" -#: server_replication.php:220 +#: server_replication.php:219 msgid "Replicate all databases; Ignore:" msgstr "复制所有数据库,除了:" -#: server_replication.php:221 +#: server_replication.php:220 msgid "Ignore all databases; Replicate:" msgstr "仅复制:" -#: server_replication.php:224 +#: server_replication.php:223 msgid "Please select databases:" msgstr "请选择数据库:" -#: server_replication.php:227 +#: server_replication.php:226 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "现在,将下列行添加到你的 my.cnf 文件最后,然后重新启动 MySQL 服务器。" -#: server_replication.php:229 +#: server_replication.php:228 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " @@ -4861,82 +4929,82 @@ msgstr "" "当 MySQL 服务器重新启动后,请点击 执行 按钮。你应该看见一条提示信息说此服务器" "已经被配置为主服务器" -#: server_replication.php:292 +#: server_replication.php:291 msgid "Slave SQL Thread not running!" msgstr "从 SQL 线程未启动!" -#: server_replication.php:295 +#: server_replication.php:294 msgid "Slave IO Thread not running!" msgstr "从 IO 线程未启动!" -#: server_replication.php:304 +#: server_replication.php:303 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "服务器已被配置为一个复制进程中的从服务器。你是否要:" -#: server_replication.php:307 +#: server_replication.php:306 msgid "See slave status table" msgstr "查看从服务器状态" -#: server_replication.php:310 +#: server_replication.php:309 msgid "Synchronize databases with master" msgstr "根据主服务器同步数据库" -#: server_replication.php:321 +#: server_replication.php:320 msgid "Control slave:" msgstr "控制从服务器:" -#: server_replication.php:324 +#: server_replication.php:323 msgid "Full start" msgstr "全部开始" -#: server_replication.php:324 +#: server_replication.php:323 msgid "Full stop" msgstr "全部停止" -#: server_replication.php:325 +#: server_replication.php:324 msgid "Reset slave" msgstr "重置从服务器" -#: server_replication.php:326 +#: server_replication.php:325 #, php-format msgid "SQL Thread %s only" msgstr "仅%s SQL 线程" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 msgid "Start" msgstr "开始" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 msgid "Stop" msgstr "停止" -#: server_replication.php:327 +#: server_replication.php:326 #, php-format msgid "IO Thread %s only" msgstr "仅%s IO 线程" -#: server_replication.php:331 +#: server_replication.php:330 msgid "Error management:" msgstr "错误管理:" -#: server_replication.php:333 +#: server_replication.php:332 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "忽略错误可能导致主从服务器间不同步!" -#: server_replication.php:335 +#: server_replication.php:334 msgid "Skip current error" msgstr "忽略当前错误" -#: server_replication.php:336 +#: server_replication.php:335 msgid "Skip next" msgstr "忽略下" -#: server_replication.php:339 +#: server_replication.php:338 msgid "errors." msgstr "个错误。" -#: server_replication.php:354 +#: server_replication.php:353 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -5699,110 +5767,110 @@ msgstr "查询方式" msgid "Replication status" msgstr "复制状态" -#: server_synchronize.php:93 +#: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "无法连接到源数据库" -#: server_synchronize.php:96 +#: server_synchronize.php:95 msgid "Could not connect to the target" msgstr "无法连接到目标数据库" -#: server_synchronize.php:121 server_synchronize.php:124 tbl_create.php:77 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "数据库 '%s' 不存在。" -#: server_synchronize.php:264 +#: server_synchronize.php:263 msgid "Structure Synchronization" msgstr "结构同步" -#: server_synchronize.php:271 +#: server_synchronize.php:270 msgid "Data Synchronization" msgstr "数据同步" -#: server_synchronize.php:399 server_synchronize.php:838 +#: server_synchronize.php:398 server_synchronize.php:837 msgid "not present" msgstr "未找到" -#: server_synchronize.php:423 server_synchronize.php:866 +#: server_synchronize.php:422 server_synchronize.php:865 msgid "Structure Difference" msgstr "结构差异" -#: server_synchronize.php:424 server_synchronize.php:867 +#: server_synchronize.php:423 server_synchronize.php:866 msgid "Data Difference" msgstr "数据差异" -#: server_synchronize.php:429 server_synchronize.php:872 +#: server_synchronize.php:428 server_synchronize.php:871 msgid "Add column(s)" msgstr "增加字段" -#: server_synchronize.php:430 server_synchronize.php:873 +#: server_synchronize.php:429 server_synchronize.php:872 msgid "Remove column(s)" msgstr "删除字段" -#: server_synchronize.php:431 server_synchronize.php:874 +#: server_synchronize.php:430 server_synchronize.php:873 msgid "Alter column(s)" msgstr "修改字段" -#: server_synchronize.php:432 server_synchronize.php:875 +#: server_synchronize.php:431 server_synchronize.php:874 msgid "Remove index(s)" msgstr "删除索引" -#: server_synchronize.php:433 server_synchronize.php:876 +#: server_synchronize.php:432 server_synchronize.php:875 msgid "Apply index(s)" msgstr "增加索引" -#: server_synchronize.php:434 server_synchronize.php:877 +#: server_synchronize.php:433 server_synchronize.php:876 msgid "Update row(s)" msgstr "更新行" -#: server_synchronize.php:435 server_synchronize.php:878 +#: server_synchronize.php:434 server_synchronize.php:877 msgid "Insert row(s)" msgstr "增加行" -#: server_synchronize.php:445 server_synchronize.php:889 +#: server_synchronize.php:444 server_synchronize.php:888 msgid "Would you like to delete all the previous rows from target tables?" msgstr "你希望删除当前目标表中的所有数据吗?" -#: server_synchronize.php:448 server_synchronize.php:893 +#: server_synchronize.php:447 server_synchronize.php:892 msgid "Apply Selected Changes" msgstr "应用选中的修改" -#: server_synchronize.php:450 server_synchronize.php:895 +#: server_synchronize.php:449 server_synchronize.php:894 msgid "Synchronize Databases" msgstr "同步数据库" -#: server_synchronize.php:463 +#: server_synchronize.php:462 msgid "Selected target tables have been synchronized with source tables." msgstr "选中的数据表已根据源数据表同步。" -#: server_synchronize.php:941 +#: server_synchronize.php:940 msgid "Target database has been synchronized with source database" msgstr "已根据源数据库同步目标数据库" -#: server_synchronize.php:1002 +#: server_synchronize.php:1001 msgid "The following queries have been executed:" msgstr "下列查询被执行:" -#: server_synchronize.php:1121 +#: server_synchronize.php:1120 msgid "Enter manually" msgstr "手动输入" -#: server_synchronize.php:1122 +#: server_synchronize.php:1121 msgid "Current connection" msgstr "当前连接" -#: server_synchronize.php:1151 +#: server_synchronize.php:1150 #, php-format msgid "Configuration: %s" msgstr "配置: %s" -#: server_synchronize.php:1166 +#: server_synchronize.php:1165 msgid "Socket" msgstr "套接字" -#: server_synchronize.php:1212 +#: server_synchronize.php:1211 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -6367,10 +6435,15 @@ msgid "Signon login options" msgstr "Signon 登录参数" #: setup/lib/messages.inc.php:128 +#, fuzzy +#| msgid "" +#| "Configure phpMyAdmin database to gain access to additional features, see " +#| "[a@../Documentation.html#linked-tables]linked-tables infrastructure[/a] " +#| "in documentation" msgid "" "Configure phpMyAdmin database to gain access to additional features, see " -"[a@../Documentation.html#linked-tables]linked-tables infrastructure[/a] in " -"documentation" +"[a@../Documentation.html#linked-tables]phpMyAdmin configuration storage[/a] " +"in documentation" msgstr "" "配置 phpMyAdmin 数据库获得更多功能,参见文档[a@../Documentation.html#linked-" "tables]链接表的附加功能[/a]。" @@ -7478,112 +7551,112 @@ msgstr "" msgid "ZIP" msgstr "ZIP" -#: sql.php:495 tbl_replace.php:385 +#: sql.php:494 tbl_replace.php:384 #, php-format msgid "Inserted row id: %1$d" msgstr "插入的行 id: %1$d" -#: sql.php:512 +#: sql.php:511 msgid "Showing as PHP code" msgstr "显示为 PHP 代码" -#: sql.php:515 tbl_replace.php:359 +#: sql.php:514 tbl_replace.php:358 msgid "Showing SQL query" msgstr "显示 SQL 查询" -#: sql.php:517 +#: sql.php:516 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "校验 SQL" -#: sql.php:638 +#: sql.php:631 #, php-format msgid "Problems with indexes of table `%s`" msgstr "数据表 `%s` 的索引存在问题" -#: sql.php:670 +#: sql.php:663 msgid "Label" msgstr "标签" -#: tbl_addfield.php:188 tbl_alter.php:102 tbl_indexes.php:97 +#: tbl_addfield.php:185 tbl_alter.php:100 tbl_indexes.php:97 #, php-format msgid "Table %1$s has been altered successfully" msgstr "已成功修改表 %1$s " -#: tbl_change.php:250 tbl_select.php:26 tbl_select.php:27 tbl_select.php:30 -#: tbl_select.php:33 +#: tbl_change.php:245 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_select.php:32 msgid "Browse foreign values" msgstr "浏览不相关的值" -#: tbl_change.php:280 tbl_change.php:318 +#: tbl_change.php:275 tbl_change.php:313 msgid "Function" msgstr "函数" -#: tbl_change.php:300 tbl_indexes.php:199 tbl_indexes.php:224 +#: tbl_change.php:295 tbl_indexes.php:198 tbl_indexes.php:223 msgid "Ignore" msgstr "忽略" -#: tbl_change.php:725 +#: tbl_change.php:720 msgid " Because of its length,
                            this column might not be editable " msgstr " 因长度问题,
                            该字段可能无法编辑 " -#: tbl_change.php:884 +#: tbl_change.php:835 msgid "Remove BLOB Repository Reference" msgstr "删除 BLOB 容器功能" -#: tbl_change.php:890 +#: tbl_change.php:841 msgid "Binary - do not edit" msgstr "二进制 - 无法编辑" -#: tbl_change.php:983 +#: tbl_change.php:889 msgid "Upload to BLOB repository" msgstr "上传到 BLOB 容器" -#: tbl_change.php:1128 +#: tbl_change.php:1026 msgid "Insert as new row" msgstr "以新行插入" -#: tbl_change.php:1129 +#: tbl_change.php:1027 msgid "Insert as new row and ignore errors" msgstr "以新行插入 (忽略错误)" -#: tbl_change.php:1130 +#: tbl_change.php:1028 msgid "Show insert query" msgstr "显示插入语句" -#: tbl_change.php:1145 +#: tbl_change.php:1043 msgid "Go back to previous page" msgstr "返回上一页" -#: tbl_change.php:1146 +#: tbl_change.php:1044 msgid "Insert another new row" msgstr "插入新数据" -#: tbl_change.php:1150 +#: tbl_change.php:1048 msgid "Go back to this page" msgstr "返回到本页" -#: tbl_change.php:1158 +#: tbl_change.php:1056 msgid "Edit next row" msgstr "编辑下一行" -#: tbl_change.php:1169 +#: tbl_change.php:1067 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "按 TAB 键跳到下一个数值,或 CTRL+方向键 作随意移动" -#: tbl_change.php:1207 +#: tbl_change.php:1105 #, php-format msgid "Restart insertion with %s rows" msgstr "重新进行插入操作,共 %s 行" -#: tbl_create.php:57 +#: tbl_create.php:55 #, php-format msgid "Table %s already exists!" msgstr "数据表 %s 已存在!" -#: tbl_create.php:244 +#: tbl_create.php:241 #, php-format msgid "Table %1$s has been created." msgstr "创建数据表 %1$s 成功。" @@ -7604,196 +7677,196 @@ msgstr "无法将索引改为主键 (PRIMARY) !" msgid "No index parts defined!" msgstr "没有定义的索引部分!" -#: tbl_indexes.php:159 +#: tbl_indexes.php:158 msgid "Create a new index" msgstr "新建索引" -#: tbl_indexes.php:161 +#: tbl_indexes.php:160 msgid "Modify an index" msgstr "修改索引" -#: tbl_indexes.php:167 +#: tbl_indexes.php:166 msgid "Index name:" msgstr "索引名称:" -#: tbl_indexes.php:173 +#: tbl_indexes.php:172 msgid "Index type:" msgstr "索引类型:" -#: tbl_indexes.php:183 +#: tbl_indexes.php:182 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "(“PRIMARY”必须而且只能作为主键的名称!)" -#: tbl_indexes.php:250 +#: tbl_indexes.php:249 #, php-format msgid "Add to index  %s column(s)" msgstr "添加 %s 个索引字段" -#: tbl_indexes.php:255 tbl_structure.php:588 tbl_structure.php:599 +#: tbl_indexes.php:254 tbl_structure.php:586 tbl_structure.php:597 msgid "Column count has to be larger than zero." msgstr "至少要有一个字段。" -#: tbl_move_copy.php:45 +#: tbl_move_copy.php:44 msgid "Can't move table to same one!" msgstr "目标数据表不能为源数据表!" -#: tbl_move_copy.php:47 +#: tbl_move_copy.php:46 msgid "Can't copy table to same one!" msgstr "目标数据表不能为源数据表!" -#: tbl_move_copy.php:55 +#: tbl_move_copy.php:54 #, php-format msgid "Table %s has been moved to %s." msgstr "已将数据表 %s 移动到 %s。" -#: tbl_move_copy.php:57 +#: tbl_move_copy.php:56 #, php-format msgid "Table %s has been copied to %s." msgstr "已将数据表 %s 复制为 %s。" -#: tbl_move_copy.php:81 +#: tbl_move_copy.php:80 msgid "The table name is empty!" msgstr "表名不能为空!" -#: tbl_operations.php:248 +#: tbl_operations.php:246 msgid "Alter table order by" msgstr "更改表的排序,根据" -#: tbl_operations.php:257 +#: tbl_operations.php:255 msgid "(singly)" msgstr "(逐一)" -#: tbl_operations.php:277 +#: tbl_operations.php:275 msgid "Move table to (database.table):" msgstr "将数据表移动到(数据库名.数据表名):" -#: tbl_operations.php:335 +#: tbl_operations.php:333 msgid "Table options" msgstr "表选项" -#: tbl_operations.php:339 +#: tbl_operations.php:337 msgid "Rename table to" msgstr "将表改名为" -#: tbl_operations.php:510 +#: tbl_operations.php:508 msgid "Copy table to (database.table):" msgstr "将数据表复制到(数据库名.数据表名):" -#: tbl_operations.php:557 +#: tbl_operations.php:555 msgid "Switch to copied table" msgstr "切换到复制的数据表" -#: tbl_operations.php:569 +#: tbl_operations.php:567 msgid "Table maintenance" msgstr "表维护" -#: tbl_operations.php:590 +#: tbl_operations.php:588 msgid "Defragment table" msgstr "整理表碎片" -#: tbl_operations.php:629 +#: tbl_operations.php:627 #, php-format msgid "Table %s has been flushed" msgstr "已强制更新表 %s " -#: tbl_operations.php:635 +#: tbl_operations.php:633 msgid "Flush the table (FLUSH)" msgstr "刷新表 (FLUSH)" -#: tbl_operations.php:650 +#: tbl_operations.php:648 msgid "Partition maintenance" msgstr "分区维护" -#: tbl_operations.php:658 +#: tbl_operations.php:656 #, php-format msgid "Partition %s" msgstr "分区 %s" -#: tbl_operations.php:661 +#: tbl_operations.php:659 msgid "Analyze" msgstr "分析" -#: tbl_operations.php:662 +#: tbl_operations.php:660 msgid "Check" msgstr "检查" -#: tbl_operations.php:663 +#: tbl_operations.php:661 msgid "Optimize" msgstr "优化" -#: tbl_operations.php:664 +#: tbl_operations.php:662 msgid "Rebuild" msgstr "重建" -#: tbl_operations.php:665 +#: tbl_operations.php:663 msgid "Repair" msgstr "修复" -#: tbl_operations.php:677 +#: tbl_operations.php:675 msgid "Remove partitioning" msgstr "删除分区" -#: tbl_operations.php:703 +#: tbl_operations.php:701 msgid "Check referential integrity:" msgstr "检查引用完整性:" -#: tbl_printview.php:73 +#: tbl_printview.php:72 msgid "Show tables" msgstr "显示表" -#: tbl_printview.php:308 tbl_structure.php:655 +#: tbl_printview.php:307 tbl_structure.php:653 msgid "Space usage" msgstr "已用空间" -#: tbl_printview.php:312 tbl_structure.php:659 +#: tbl_printview.php:311 tbl_structure.php:657 msgid "Usage" msgstr "已用" -#: tbl_printview.php:339 tbl_structure.php:686 +#: tbl_printview.php:338 tbl_structure.php:684 msgid "Effective" msgstr "有效" -#: tbl_printview.php:364 tbl_structure.php:724 +#: tbl_printview.php:363 tbl_structure.php:722 msgid "Row Statistics" msgstr "行统计" -#: tbl_printview.php:367 tbl_structure.php:727 +#: tbl_printview.php:366 tbl_structure.php:725 msgid "Statements" msgstr "说明" -#: tbl_printview.php:378 tbl_structure.php:739 +#: tbl_printview.php:377 tbl_structure.php:737 msgid "static" msgstr "静态" -#: tbl_printview.php:380 tbl_structure.php:741 +#: tbl_printview.php:379 tbl_structure.php:739 msgid "dynamic" msgstr "动态" -#: tbl_printview.php:402 tbl_structure.php:784 +#: tbl_printview.php:401 tbl_structure.php:782 msgid "Row length" msgstr "行长度" -#: tbl_printview.php:412 tbl_structure.php:792 +#: tbl_printview.php:411 tbl_structure.php:790 msgid " Row size " msgstr " 行大小 " -#: tbl_relation.php:278 +#: tbl_relation.php:276 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "在 %1$s 创建外键时发生错误 (检查数据类型)" -#: tbl_relation.php:404 +#: tbl_relation.php:402 msgid "Internal relation" msgstr "内联" -#: tbl_relation.php:406 +#: tbl_relation.php:404 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "不需要一个和外键关系一致的内联关系" -#: tbl_relation.php:412 +#: tbl_relation.php:410 msgid "Foreign key constraint" msgstr "外键约束" @@ -7801,223 +7874,223 @@ msgstr "外键约束" msgid "No rows selected" msgstr "没有选中任何行" -#: tbl_select.php:130 +#: tbl_select.php:129 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "执行“依例查询”(通配符:“%”)" -#: tbl_select.php:136 +#: tbl_select.php:135 msgid "Operator" msgstr "操作符" -#: tbl_select.php:267 +#: tbl_select.php:266 msgid "Select columns (at least one):" msgstr "选择字段 (至少一个):" -#: tbl_select.php:285 +#: tbl_select.php:284 msgid "Add search conditions (body of the \"where\" clause):" msgstr "添加搜索条件 (“where”语句的主体):" -#: tbl_select.php:292 +#: tbl_select.php:291 msgid "Number of rows per page" msgstr "每页行数" -#: tbl_select.php:298 +#: tbl_select.php:297 msgid "Display order:" msgstr "显示顺序:" -#: tbl_structure.php:160 +#: tbl_structure.php:159 msgid "Browse distinct values" msgstr "浏览非重复值 (DISTINCT)" -#: tbl_structure.php:360 +#: tbl_structure.php:358 msgctxt "None for default" msgid "None" msgstr "无" -#: tbl_structure.php:373 +#: tbl_structure.php:371 #, php-format msgid "Column %s has been dropped" msgstr "已删除字段 %s " -#: tbl_structure.php:384 +#: tbl_structure.php:382 #, php-format msgid "A primary key has been added on %s" msgstr "已将 %s 设为主键" -#: tbl_structure.php:399 tbl_structure.php:413 tbl_structure.php:427 +#: tbl_structure.php:397 tbl_structure.php:411 tbl_structure.php:425 #, php-format msgid "An index has been added on %s" msgstr "已将 %s 设为索引" -#: tbl_structure.php:505 tbl_structure.php:507 +#: tbl_structure.php:503 tbl_structure.php:505 msgid "Relation view" msgstr "关系查看" -#: tbl_structure.php:514 tbl_structure.php:516 +#: tbl_structure.php:512 tbl_structure.php:514 msgid "Propose table structure" msgstr "规划表结构" -#: tbl_structure.php:539 +#: tbl_structure.php:537 #, fuzzy #| msgid "Add column(s)" msgid "Add column" msgstr "增加字段" -#: tbl_structure.php:553 +#: tbl_structure.php:551 msgid "At End of Table" msgstr "于表结尾" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At Beginning of Table" msgstr "于表开头" -#: tbl_structure.php:555 +#: tbl_structure.php:553 #, php-format msgid "After %s" msgstr "于 %s 之后" -#: tbl_structure.php:593 +#: tbl_structure.php:591 #, php-format msgid "Create an index on  %s columns" msgstr "在第 %s 个字段创建索引" -#: tbl_structure.php:755 +#: tbl_structure.php:753 msgid "partitioned" msgstr "已分区" -#: tbl_tracking.php:113 +#: tbl_tracking.php:109 #, php-format msgid "Tracking report for table `%s`" msgstr "`%s` 的追踪报告" -#: tbl_tracking.php:186 +#: tbl_tracking.php:182 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "已创建版本 %s,%s.%s 的追踪已启用。" -#: tbl_tracking.php:194 +#: tbl_tracking.php:190 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "%s.%s 的追踪,版本 %s 已禁用。" -#: tbl_tracking.php:202 +#: tbl_tracking.php:198 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "%s.%s 的追踪,版本 %s 已启用。" -#: tbl_tracking.php:212 +#: tbl_tracking.php:208 msgid "SQL statements executed." msgstr "SQL 语句已执行。" -#: tbl_tracking.php:219 +#: tbl_tracking.php:215 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "你可以通过创建一个临时数据库来执行这个转储。请确保你有足够的权限。" -#: tbl_tracking.php:220 +#: tbl_tracking.php:216 msgid "Comment out these two lines if you do not need them." msgstr "如果你不需要,请注释以下两行。" -#: tbl_tracking.php:229 +#: tbl_tracking.php:225 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "SQL 语句已导出。请复制保存或运行它。" -#: tbl_tracking.php:250 tbl_tracking.php:378 +#: tbl_tracking.php:245 tbl_tracking.php:373 msgid "Close" msgstr "关闭" -#: tbl_tracking.php:261 +#: tbl_tracking.php:256 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "版本 %s 的快照 (SQL 代码)" -#: tbl_tracking.php:380 +#: tbl_tracking.php:375 msgid "Tracking statements" msgstr "追踪语句" -#: tbl_tracking.php:396 tbl_tracking.php:503 +#: tbl_tracking.php:391 tbl_tracking.php:498 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "显示自 %2$s 起至 %3$s 用户 %4$s 执行的 %1$s %5$s" -#: tbl_tracking.php:409 tbl_tracking.php:460 +#: tbl_tracking.php:404 tbl_tracking.php:455 msgid "Date" msgstr "日期" -#: tbl_tracking.php:410 tbl_tracking.php:461 +#: tbl_tracking.php:405 tbl_tracking.php:456 msgid "Username" msgstr "用户名" -#: tbl_tracking.php:411 +#: tbl_tracking.php:406 msgid "Data definition statement" msgstr "数据定义语句" -#: tbl_tracking.php:462 +#: tbl_tracking.php:457 msgid "Data manipulation statement" msgstr "数据操作语句" -#: tbl_tracking.php:506 +#: tbl_tracking.php:501 msgid "SQL dump (file download)" msgstr "SQL 转储 (文件下载)" -#: tbl_tracking.php:507 +#: tbl_tracking.php:502 msgid "SQL dump" msgstr "SQL 转储" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "This option will replace your table and contained data." msgstr "该选项将导致当前表的结构和数据被替换。" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "SQL execution" msgstr "执行 SQL 语句" -#: tbl_tracking.php:520 +#: tbl_tracking.php:515 #, php-format msgid "Export as %s" msgstr "导出为 %s" -#: tbl_tracking.php:560 +#: tbl_tracking.php:555 msgid "Show versions" msgstr "查看版本" -#: tbl_tracking.php:592 +#: tbl_tracking.php:587 msgid "Version" msgstr "版本" -#: tbl_tracking.php:639 +#: tbl_tracking.php:634 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "禁用 %s.%s 的追踪" -#: tbl_tracking.php:641 +#: tbl_tracking.php:636 msgid "Deactivate now" msgstr "立即禁用" -#: tbl_tracking.php:652 +#: tbl_tracking.php:647 #, php-format msgid "Activate tracking for %s.%s" msgstr "启用 %s.%s 的追踪" -#: tbl_tracking.php:654 +#: tbl_tracking.php:649 msgid "Activate now" msgstr "立即启用" -#: tbl_tracking.php:667 +#: tbl_tracking.php:662 #, php-format msgid "Create version %s of %s.%s" msgstr "为 %2$s.%3$s 创建版本 %1$s" -#: tbl_tracking.php:671 +#: tbl_tracking.php:666 msgid "Track these data definition statements:" msgstr "追踪下列数据定义语句:" -#: tbl_tracking.php:679 +#: tbl_tracking.php:674 msgid "Track these data manipulation statements:" msgstr "追踪下列数据操作语句:" -#: tbl_tracking.php:687 +#: tbl_tracking.php:682 msgid "Create version" msgstr "创建版本" @@ -8062,10 +8135,34 @@ msgstr "配置文件己更新。" msgid "VIEW name" msgstr "视图名" -#: view_operations.php:92 +#: view_operations.php:91 msgid "Rename view to" msgstr "将视图改名为" +#~ msgid "BLOB Repository" +#~ msgstr "BLOB 容器" + +#~ msgctxt "BLOB repository" +#~ msgid "Enabled" +#~ msgstr "已启用" + +#~ msgid "Disable" +#~ msgstr "禁用" + +#~ msgid "Damaged" +#~ msgstr "已损坏" + +#~ msgctxt "BLOB repository" +#~ msgid "Repair" +#~ msgstr "修复" + +#~ msgctxt "BLOB repository" +#~ msgid "Disabled" +#~ msgstr "已禁用" + +#~ msgid "Enable" +#~ msgstr "启用" + #~ msgid "" #~ "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " #~ "extension. Please check your PHP configuration." diff --git a/po/zh_TW.po b/po/zh_TW.po index c951d0982..593300b2e 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-21 13:53+0200\n" +"POT-Creation-Date: 2010-07-26 17:18+0200\n" "PO-Revision-Date: 2010-03-12 09:15+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: chinese_traditional \n" @@ -13,19 +13,19 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.5.3\n" -#: browse_foreigners.php:37 browse_foreigners.php:58 -#: libraries/display_tbl.lib.php:416 server_privileges.php:1506 +#: browse_foreigners.php:36 browse_foreigners.php:57 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1510 msgid "Show all" msgstr "顯示全部" -#: browse_foreigners.php:81 libraries/common.lib.php:2313 -#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:393 -#: libraries/export/pdf.php:146 pdf_schema.php:282 pdf_schema.php:1122 -#: pdf_schema.php:1138 +#: browse_foreigners.php:80 libraries/common.lib.php:2318 +#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:392 +#: libraries/export/pdf.php:146 pdf_schema.php:281 pdf_schema.php:1121 +#: pdf_schema.php:1137 msgid "Page number:" msgstr "頁碼:" -#: browse_foreigners.php:131 +#: browse_foreigners.php:130 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -34,139 +34,151 @@ msgstr "" "目地的視窗無法更新. 可能你已關閉此視窗或你的瀏覽器於安全設定內啟動了無法跨視" "窗更新" -#: browse_foreigners.php:149 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2829 -#: libraries/common.lib.php:2836 libraries/db_links.inc.php:74 -#: libraries/tbl_links.inc.php:62 +#: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 +#: db_structure.php:89 db_structure.php:91 db_structure.php:102 +#: db_structure.php:104 libraries/common.lib.php:2834 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "搜索" -#: browse_foreigners.php:152 db_operations.php:384 db_operations.php:428 -#: db_operations.php:498 db_operations.php:608 db_search.php:344 -#: db_structure.php:566 js/messages.php:48 libraries/Config.class.php:1043 -#: libraries/Theme_Manager.class.php:310 +#: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 +#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 +#: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 -#: libraries/common.lib.php:1340 libraries/common.lib.php:2289 +#: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 -#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:275 -#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:531 -#: libraries/display_tbl.lib.php:613 libraries/replication_gui.lib.php:75 +#: libraries/display_export.lib.php:269 libraries/display_import.lib.php:275 +#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 +#: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 #: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:781 -#: main.php:127 navigation.php:231 pdf_pages.php:291 pdf_pages.php:327 -#: pdf_pages.php:529 pmd_pdf.php:115 server_binlog.php:128 -#: server_privileges.php:664 server_privileges.php:1616 -#: server_privileges.php:1963 server_privileges.php:2010 -#: server_privileges.php:2049 server_replication.php:234 -#: server_replication.php:317 server_replication.php:340 -#: server_synchronize.php:1208 tbl_change.php:328 tbl_change.php:1172 -#: tbl_change.php:1209 tbl_indexes.php:253 tbl_operations.php:264 -#: tbl_operations.php:301 tbl_operations.php:498 tbl_operations.php:560 -#: tbl_operations.php:680 tbl_select.php:324 tbl_structure.php:561 -#: tbl_structure.php:596 tbl_tracking.php:394 tbl_tracking.php:511 -#: view_create.php:181 view_operations.php:100 +#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 +#: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 +#: server_privileges.php:663 server_privileges.php:1620 +#: server_privileges.php:1967 server_privileges.php:2014 +#: server_privileges.php:2053 server_replication.php:233 +#: server_replication.php:316 server_replication.php:339 +#: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 +#: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 +#: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 +#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 +#: view_create.php:181 view_operations.php:99 msgid "Go" msgstr "執行" -#: browse_foreigners.php:167 browse_foreigners.php:171 -#: libraries/Index.class.php:441 tbl_tracking.php:319 +#: browse_foreigners.php:166 browse_foreigners.php:170 +#: libraries/Index.class.php:441 tbl_tracking.php:314 msgid "Keyname" msgstr "鍵名" -#: browse_foreigners.php:168 browse_foreigners.php:170 -#: server_collations.php:54 server_collations.php:66 server_engines.php:58 +#: browse_foreigners.php:167 browse_foreigners.php:169 +#: server_collations.php:54 server_collations.php:66 server_engines.php:57 #: server_status.php:738 msgid "Description" msgstr "說明" -#: browse_foreigners.php:246 browse_foreigners.php:255 -#: browse_foreigners.php:267 browse_foreigners.php:275 +#: browse_foreigners.php:245 browse_foreigners.php:254 +#: browse_foreigners.php:266 browse_foreigners.php:274 msgid "Use this value" msgstr "使用此值" -#: db_create.php:45 +#: bs_disp_as_mime_type.php:29 bs_play_media.php:35 +msgid "No blob streaming server configured!" +msgstr "" + +#: bs_disp_as_mime_type.php:35 +msgid "Failed to fetch headers" +msgstr "" + +#: bs_disp_as_mime_type.php:41 +msgid "Failed to open remote URL" +msgstr "" + +#: db_create.php:44 #, fuzzy, php-format msgid "Database %1$s has been created." msgstr "資料庫 %s 已被刪除" -#: db_datadict.php:48 db_operations.php:377 +#: db_datadict.php:48 db_operations.php:313 msgid "Database comment: " msgstr "資料庫註解文字: " -#: db_datadict.php:164 libraries/tbl_properties.inc.php:723 -#: pdf_schema.php:1235 tbl_operations.php:346 tbl_printview.php:128 +#: db_datadict.php:164 libraries/tbl_properties.inc.php:722 +#: pdf_schema.php:1234 tbl_operations.php:344 tbl_printview.php:127 msgid "Table comments" msgstr "資料表註解文字" -#: db_datadict.php:173 db_qbe.php:173 libraries/Index.class.php:445 +#: db_datadict.php:173 db_qbe.php:170 libraries/Index.class.php:445 #: libraries/export/htmlword.php:243 libraries/export/latex.php:364 #: libraries/export/odt.php:293 libraries/export/texytext.php:233 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:274 -#: pdf_schema.php:1261 pdf_schema.php:1282 tbl_change.php:306 -#: tbl_indexes.php:188 tbl_printview.php:140 tbl_relation.php:401 -#: tbl_select.php:133 tbl_structure.php:176 tbl_tracking.php:272 -#: tbl_tracking.php:323 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 +#: pdf_schema.php:1260 pdf_schema.php:1281 tbl_change.php:301 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:132 tbl_structure.php:175 tbl_tracking.php:267 +#: tbl_tracking.php:318 #, fuzzy #| msgid "Column names" msgid "Column" msgstr "欄位名稱" -#: db_datadict.php:174 db_printview.php:105 libraries/Index.class.php:442 +#: db_datadict.php:174 db_printview.php:104 libraries/Index.class.php:442 #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 #: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:244 #: libraries/export/latex.php:364 libraries/export/odt.php:296 #: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:99 -#: pdf_schema.php:1262 pdf_schema.php:1283 server_privileges.php:2062 -#: tbl_change.php:285 tbl_change.php:312 tbl_printview.php:141 -#: tbl_printview.php:311 tbl_select.php:134 tbl_structure.php:177 -#: tbl_structure.php:658 tbl_tracking.php:273 tbl_tracking.php:320 +#: pdf_schema.php:1261 pdf_schema.php:1282 server_privileges.php:2066 +#: tbl_change.php:280 tbl_change.php:307 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:133 tbl_structure.php:176 +#: tbl_structure.php:656 tbl_tracking.php:268 tbl_tracking.php:315 msgid "Type" msgstr "型態" #: db_datadict.php:176 libraries/Index.class.php:448 #: libraries/export/htmlword.php:245 libraries/export/latex.php:364 #: libraries/export/odt.php:299 libraries/export/texytext.php:235 -#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1264 -#: pdf_schema.php:1285 tbl_change.php:321 tbl_printview.php:143 -#: tbl_structure.php:180 tbl_tracking.php:275 tbl_tracking.php:326 +#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1263 +#: pdf_schema.php:1284 tbl_change.php:316 tbl_printview.php:142 +#: tbl_structure.php:179 tbl_tracking.php:270 tbl_tracking.php:321 msgid "Null" msgstr "Null" -#: db_datadict.php:177 db_structure.php:500 libraries/export/htmlword.php:246 +#: db_datadict.php:177 db_structure.php:486 libraries/export/htmlword.php:246 #: libraries/export/latex.php:364 libraries/export/odt.php:302 #: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:105 -#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 -#: tbl_structure.php:181 tbl_tracking.php:276 +#: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:143 +#: tbl_structure.php:180 tbl_tracking.php:271 msgid "Default" msgstr "預設值" #: db_datadict.php:181 libraries/export/htmlword.php:248 #: libraries/export/latex.php:366 libraries/export/odt.php:306 -#: libraries/export/texytext.php:238 pdf_schema.php:1267 pdf_schema.php:1288 -#: tbl_printview.php:148 +#: libraries/export/texytext.php:238 pdf_schema.php:1266 pdf_schema.php:1287 +#: tbl_printview.php:147 msgid "Links to" msgstr "連結到" -#: db_datadict.php:183 db_printview.php:111 libraries/export/htmlword.php:251 +#: db_datadict.php:183 db_printview.php:110 libraries/export/htmlword.php:251 #: libraries/export/latex.php:49 libraries/export/latex.php:369 #: libraries/export/odt.php:37 libraries/export/odt.php:311 #: libraries/export/sql.php:29 libraries/export/texytext.php:241 -#: libraries/tbl_properties.inc.php:129 pdf_schema.php:1278 -#: pdf_schema.php:1289 tbl_printview.php:150 +#: libraries/tbl_properties.inc.php:128 pdf_schema.php:1277 +#: pdf_schema.php:1288 tbl_printview.php:149 msgid "Comments" msgstr "註解" #: db_datadict.php:266 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/export/htmlword.php:321 #: libraries/export/latex.php:434 libraries/export/odt.php:367 -#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:262 -#: pdf_schema.php:1343 server_privileges.php:1560 server_privileges.php:1571 -#: server_privileges.php:1881 server_privileges.php:1886 -#: server_privileges.php:2179 sql.php:131 sql.php:193 tbl_printview.php:227 -#: tbl_structure.php:349 tbl_tracking.php:336 tbl_tracking.php:341 +#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:261 +#: pdf_schema.php:1342 server_privileges.php:1564 server_privileges.php:1575 +#: server_privileges.php:1885 server_privileges.php:1890 +#: server_privileges.php:2183 sql.php:130 sql.php:192 tbl_printview.php:226 +#: tbl_structure.php:347 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr " 否 " @@ -177,17 +189,17 @@ msgstr " 否 " #: libraries/mult_submits.inc.php:49 libraries/mult_submits.inc.php:54 #: libraries/mult_submits.inc.php:59 libraries/mult_submits.inc.php:91 #: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:105 -#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:261 -#: libraries/mult_submits.inc.php:272 pdf_schema.php:1343 -#: server_databases.php:63 server_privileges.php:1557 -#: server_privileges.php:1571 server_privileges.php:1881 -#: server_privileges.php:1884 server_privileges.php:2179 sql.php:192 -#: tbl_printview.php:227 tbl_structure.php:39 tbl_structure.php:349 -#: tbl_tracking.php:334 tbl_tracking.php:339 +#: libraries/mult_submits.inc.php:110 libraries/mult_submits.inc.php:260 +#: libraries/mult_submits.inc.php:271 pdf_schema.php:1342 +#: server_databases.php:61 server_privileges.php:1561 +#: server_privileges.php:1575 server_privileges.php:1885 +#: server_privileges.php:1888 server_privileges.php:2183 sql.php:191 +#: tbl_printview.php:226 tbl_structure.php:38 tbl_structure.php:347 +#: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" msgstr " 是 " -#: db_datadict.php:321 db_printview.php:265 tbl_printview.php:496 +#: db_datadict.php:321 db_printview.php:264 tbl_printview.php:495 msgid "Print" msgstr "列印" @@ -195,193 +207,152 @@ msgstr "列印" msgid "View dump (schema) of database" msgstr "檢視資料庫的備份概要 (dump schema)" -#: db_export.php:32 db_printview.php:95 db_qbe.php:101 db_structure.php:50 -#: db_tracking.php:34 export.php:352 navigation.php:326 +#: db_export.php:32 db_printview.php:94 db_qbe.php:98 db_structure.php:49 +#: db_tracking.php:30 export.php:350 navigation.php:325 msgid "No tables found in database." msgstr "資料庫中沒有資料表" -#: db_export.php:42 db_search.php:326 server_export.php:26 +#: db_export.php:42 db_search.php:326 server_export.php:24 msgid "Select All" msgstr "全選" -#: db_export.php:44 db_search.php:329 server_export.php:28 +#: db_export.php:44 db_search.php:329 server_export.php:26 msgid "Unselect All" msgstr "全部取消" -#: db_operations.php:37 tbl_create.php:49 +#: db_operations.php:33 tbl_create.php:47 msgid "The database name is empty!" msgstr "資料庫名稱並未輸入!!" -#: db_operations.php:235 +#: db_operations.php:231 #, php-format msgid "Database %s has been renamed to %s" msgstr "資料庫 %s 已更改名稱為 %s" -#: db_operations.php:239 +#: db_operations.php:235 #, php-format msgid "Database %s has been copied to %s" msgstr "資料庫 %s 已複製到 %s" -#: db_operations.php:411 +#: db_operations.php:347 msgid "Rename database to" msgstr "更改資料庫名稱到" -#: db_operations.php:416 server_processlist.php:56 +#: db_operations.php:352 server_processlist.php:56 msgid "Command" msgstr "指令" -#: db_operations.php:428 tbl_change.php:1141 +#: db_operations.php:364 tbl_change.php:1039 msgid "and then" msgstr "然後" -#: db_operations.php:454 +#: db_operations.php:390 msgid "Copy database to" msgstr "複製資料庫到" -#: db_operations.php:461 tbl_operations.php:527 tbl_tracking.php:387 +#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "只有結構" -#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:389 +#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "結構與資料" -#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:388 +#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "只有資料" -#: db_operations.php:471 +#: db_operations.php:407 msgid "CREATE DATABASE before copying" msgstr "複製前建立資料庫 (CREATE DATABASE)" -#: db_operations.php:474 libraries/export/sql.php:51 +#: db_operations.php:410 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 -#: libraries/export/sql.php:81 tbl_operations.php:535 +#: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "" -#: db_operations.php:478 libraries/export/sql.php:77 tbl_operations.php:298 -#: tbl_operations.php:537 +#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "新增 AUTO_INCREMENT 數值" -#: db_operations.php:482 tbl_operations.php:544 +#: db_operations.php:418 tbl_operations.php:542 msgid "Add constraints" msgstr "加入限制" -#: db_operations.php:495 +#: db_operations.php:431 msgid "Switch to copied database" msgstr "轉移到複製之資料庫" -#: db_operations.php:536 -msgid "BLOB Repository" -msgstr "" - -#: db_operations.php:539 db_tracking.php:75 libraries/common.lib.php:1357 -#: libraries/server_links.inc.php:48 server_processlist.php:58 -#: tbl_tracking.php:595 test/theme.php:100 -msgid "Status" -msgstr "狀態" - -#: db_operations.php:547 -#, fuzzy -#| msgid "Enabled" -msgctxt "BLOB repository" -msgid "Enabled" -msgstr "啟動" - -#: db_operations.php:551 -#, fuzzy -msgid "Disable" -msgstr "未啟動" - -#: db_operations.php:561 -msgid "Damaged" -msgstr "" - -#: db_operations.php:565 -#, fuzzy -msgctxt "BLOB repository" -msgid "Repair" -msgstr "修復資料表" - -#: db_operations.php:573 -#, fuzzy -#| msgid "Disabled" -msgctxt "BLOB repository" -msgid "Disabled" -msgstr "未啟動" - -#: db_operations.php:577 -#, fuzzy -msgid "Enable" -msgstr "啟動" - -#: db_operations.php:601 libraries/Index.class.php:447 +#: db_operations.php:451 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 -#: server_collations.php:53 server_collations.php:65 server_databases.php:110 -#: tbl_operations.php:362 tbl_select.php:135 tbl_structure.php:178 -#: tbl_structure.php:766 tbl_tracking.php:274 tbl_tracking.php:325 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 +#: server_collations.php:53 server_collations.php:65 server_databases.php:108 +#: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:177 +#: tbl_structure.php:764 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "校對" -#: db_operations.php:614 main.php:315 pdf_schema.php:33 -#, php-format +#: db_operations.php:464 pdf_schema.php:32 +#, fuzzy, php-format +#| msgid "" +#| "The additional features for working with linked tables have been " +#| "deactivated. To find out why click %shere%s." msgid "" -"The additional features for working with linked tables have been " -"deactivated. To find out why click %shere%s." +"The phpMyAdmin configuration storage has been deactivated. To find out why " +"click %shere%s." msgstr "關聯資料表的附加功能未能啟動, %s請按此%s 查出問題原因." -#: db_operations.php:647 +#: db_operations.php:497 msgid "Edit PDF Pages" msgstr "編輯 PDF 頁碼" -#: db_printview.php:103 db_tracking.php:71 db_tracking.php:156 +#: db_printview.php:102 db_tracking.php:67 db_tracking.php:152 #: libraries/db_structure.lib.php:37 libraries/export/xml.php:327 -#: libraries/header.inc.php:125 pdf_pages.php:423 server_privileges.php:1657 -#: server_privileges.php:1713 server_privileges.php:1977 -#: server_synchronize.php:422 server_synchronize.php:865 tbl_tracking.php:591 +#: libraries/header.inc.php:125 pdf_pages.php:422 server_privileges.php:1661 +#: server_privileges.php:1717 server_privileges.php:1981 +#: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "資料表" -#: db_printview.php:104 libraries/db_structure.lib.php:47 +#: db_printview.php:103 libraries/db_structure.lib.php:47 #: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 -#: navigation.php:629 navigation.php:651 server_databases.php:121 -#: tbl_printview.php:392 tbl_structure.php:364 tbl_structure.php:776 +#: navigation.php:628 navigation.php:650 server_databases.php:119 +#: tbl_printview.php:391 tbl_structure.php:362 tbl_structure.php:774 msgid "Rows" msgstr "資料列列數" -#: db_printview.php:108 libraries/db_structure.lib.php:58 tbl_indexes.php:189 +#: db_printview.php:107 libraries/db_structure.lib.php:58 tbl_indexes.php:188 msgid "Size" msgstr "大小" -#: db_printview.php:161 db_structure.php:456 libraries/export/sql.php:556 +#: db_printview.php:160 db_structure.php:442 libraries/export/sql.php:556 #: libraries/export/sql.php:896 msgid "in use" msgstr "使用中" -#: db_printview.php:186 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:511 pdf_schema.php:1240 tbl_printview.php:432 -#: tbl_structure.php:808 +#: db_printview.php:185 libraries/db_info.inc.php:86 +#: libraries/export/sql.php:511 pdf_schema.php:1239 tbl_printview.php:431 +#: tbl_structure.php:806 msgid "Creation" msgstr "建立" -#: db_printview.php:195 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:516 pdf_schema.php:1245 tbl_printview.php:442 -#: tbl_structure.php:816 +#: db_printview.php:194 libraries/db_info.inc.php:91 +#: libraries/export/sql.php:516 pdf_schema.php:1244 tbl_printview.php:441 +#: tbl_structure.php:814 msgid "Last update" msgstr "最後更新" -#: db_printview.php:204 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:521 pdf_schema.php:1250 tbl_printview.php:452 -#: tbl_structure.php:824 +#: db_printview.php:203 libraries/db_info.inc.php:96 +#: libraries/export/sql.php:521 pdf_schema.php:1249 tbl_printview.php:451 +#: tbl_structure.php:822 msgid "Last check" msgstr "最後檢查" -#: db_printview.php:221 db_structure.php:479 +#: db_printview.php:220 db_structure.php:465 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -389,94 +360,94 @@ msgid_plural "%s tables" msgstr[0] "%s 資料表" msgstr[1] "%s 資料表" -#: db_qbe.php:28 import.php:453 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1980 libraries/sql_query_form.lib.php:138 -#: tbl_operations.php:212 tbl_relation.php:291 tbl_row_action.php:130 -#: view_operations.php:61 +#: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 +#: view_operations.php:60 msgid "Your SQL query has been executed successfully" msgstr "您的SQL語法已順利執行" -#: db_qbe.php:41 +#: db_qbe.php:38 msgid "You have to choose at least one column to display" msgstr "您需要選擇最少顯示一行欄位" -#: db_qbe.php:199 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:865 +#: db_qbe.php:196 libraries/db_structure.lib.php:95 +#: libraries/display_tbl.lib.php:864 msgid "Sort" msgstr "排序" -#: db_qbe.php:208 db_qbe.php:242 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:522 libraries/display_tbl.lib.php:827 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:259 -#: tbl_select.php:311 +#: db_qbe.php:205 db_qbe.php:239 libraries/db_structure.lib.php:102 +#: libraries/display_tbl.lib.php:521 libraries/display_tbl.lib.php:826 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:257 +#: tbl_select.php:310 msgid "Ascending" msgstr "遞增" -#: db_qbe.php:209 db_qbe.php:250 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:527 libraries/display_tbl.lib.php:824 -#: server_databases.php:169 server_databases.php:186 tbl_operations.php:260 -#: tbl_select.php:312 +#: db_qbe.php:206 db_qbe.php:247 libraries/db_structure.lib.php:110 +#: libraries/display_tbl.lib.php:526 libraries/display_tbl.lib.php:823 +#: server_databases.php:167 server_databases.php:184 tbl_operations.php:258 +#: tbl_select.php:311 msgid "Descending" msgstr "遞減" -#: db_qbe.php:263 db_tracking.php:77 libraries/display_tbl.lib.php:307 -#: tbl_change.php:275 tbl_tracking.php:596 +#: db_qbe.php:260 db_tracking.php:73 libraries/display_tbl.lib.php:306 +#: tbl_change.php:270 tbl_tracking.php:591 msgid "Show" msgstr "顯示" -#: db_qbe.php:299 +#: db_qbe.php:296 msgid "Criteria" msgstr "篩選" -#: db_qbe.php:352 db_qbe.php:434 db_qbe.php:526 db_qbe.php:557 +#: db_qbe.php:349 db_qbe.php:431 db_qbe.php:523 db_qbe.php:554 msgid "Ins" msgstr "新增" -#: db_qbe.php:356 db_qbe.php:438 db_qbe.php:523 db_qbe.php:554 +#: db_qbe.php:353 db_qbe.php:435 db_qbe.php:520 db_qbe.php:551 msgid "And" msgstr "與" -#: db_qbe.php:365 db_qbe.php:446 db_qbe.php:528 db_qbe.php:559 +#: db_qbe.php:362 db_qbe.php:443 db_qbe.php:525 db_qbe.php:556 msgid "Del" msgstr "移除" -#: db_qbe.php:369 db_qbe.php:450 db_qbe.php:521 db_qbe.php:552 -#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:778 -#: server_privileges.php:297 tbl_change.php:1027 tbl_indexes.php:249 -#: tbl_select.php:285 +#: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 +#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:777 +#: server_privileges.php:296 tbl_change.php:925 tbl_indexes.php:248 +#: tbl_select.php:284 msgid "Or" msgstr "或" -#: db_qbe.php:506 +#: db_qbe.php:503 msgid "Modify" msgstr "修改" -#: db_qbe.php:583 +#: db_qbe.php:580 #, fuzzy #| msgid "Add/Delete Criteria Row" msgid "Add/Delete criteria rows" msgstr "新增/減少 篩選列" -#: db_qbe.php:595 +#: db_qbe.php:592 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Add/Delete columns" msgstr "新增/減少 選擇欄" -#: db_qbe.php:608 db_qbe.php:633 +#: db_qbe.php:605 db_qbe.php:630 msgid "Update Query" msgstr "更新語法" -#: db_qbe.php:616 +#: db_qbe.php:613 msgid "Use Tables" msgstr "使用資料表" -#: db_qbe.php:639 +#: db_qbe.php:636 #, php-format msgid "SQL query on database %s:" msgstr "在資料庫 %s 執行 SQL 語法:" -#: db_qbe.php:933 libraries/common.lib.php:1222 +#: db_qbe.php:930 libraries/common.lib.php:1215 msgid "Submit Query" msgstr "執行語法" @@ -516,17 +487,17 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s 項資料符合 - 於資料表 %s" msgstr[1] "%s 項資料符合 - 於資料表 %s" -#: db_search.php:249 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2831 -#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:49 -#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:466 +#: db_search.php:249 db_structure.php:75 db_structure.php:76 +#: db_structure.php:88 db_structure.php:90 db_structure.php:101 +#: db_structure.php:103 libraries/common.lib.php:2836 +#: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 +#: tbl_structure.php:35 tbl_structure.php:47 tbl_structure.php:464 msgid "Browse" msgstr "瀏覽" -#: db_search.php:254 libraries/display_tbl.lib.php:1164 -#: libraries/display_tbl.lib.php:2055 libraries/sql_query_form.lib.php:453 -#: pdf_pages.php:285 pdf_pages.php:424 pdf_pages.php:460 pdf_pages.php:488 +#: db_search.php:254 libraries/display_tbl.lib.php:1163 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 msgid "Delete" @@ -566,230 +537,236 @@ msgstr "於以下資料表:" msgid "Inside column:" msgstr "於以下資料表:" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2830 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:75 +#: db_structure.php:79 db_structure.php:80 db_structure.php:92 +#: db_structure.php:93 db_structure.php:105 db_structure.php:106 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 +#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "新增" -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2827 libraries/common.lib.php:2834 -#: libraries/db_links.inc.php:62 libraries/export/htmlword.php:22 +#: db_structure.php:81 db_structure.php:94 db_structure.php:107 +#: libraries/common.lib.php:2832 libraries/common.lib.php:2839 +#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 -#: libraries/tbl_links.inc.php:55 pmd_general.php:133 -#: server_privileges.php:593 server_replication.php:314 tbl_tracking.php:268 +#: libraries/tbl_links.inc.php:54 pmd_general.php:133 +#: server_privileges.php:592 server_replication.php:313 tbl_tracking.php:263 msgid "Structure" msgstr "結構" -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:544 db_structure.php:545 db_tracking.php:90 -#: libraries/Index.class.php:482 libraries/common.lib.php:1659 -#: libraries/db_links.inc.php:99 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:126 -#: server_databases.php:351 tbl_structure.php:26 tbl_structure.php:150 -#: tbl_structure.php:151 tbl_structure.php:470 +#: db_structure.php:82 db_structure.php:83 db_structure.php:95 +#: db_structure.php:96 db_structure.php:108 db_structure.php:109 +#: db_structure.php:530 db_structure.php:531 db_tracking.php:86 +#: libraries/Index.class.php:482 libraries/common.lib.php:1663 +#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 +#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 +#: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" msgstr "刪除" -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:542 db_structure.php:543 libraries/common.lib.php:1658 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:104 +#: db_structure.php:84 db_structure.php:85 db_structure.php:97 +#: db_structure.php:98 db_structure.php:110 db_structure.php:111 +#: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 +#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 msgid "Empty" msgstr "清空" -#: db_structure.php:315 libraries/tbl_links.inc.php:99 +#: db_structure.php:301 libraries/tbl_links.inc.php:98 #, php-format msgid "Table %s has been emptied" msgstr "資料表 %s 已被清空" -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "View %s has been dropped" msgstr "檢視 %s 己被刪除." -#: db_structure.php:325 libraries/tbl_links.inc.php:132 +#: db_structure.php:311 libraries/tbl_links.inc.php:131 #, php-format msgid "Table %s has been dropped" msgstr "資料表 %s 已被刪除" -#: db_structure.php:332 +#: db_structure.php:318 msgid "Tracking is active." msgstr "" -#: db_structure.php:334 +#: db_structure.php:320 msgid "Tracking is not active." msgstr "" -#: db_structure.php:419 libraries/display_tbl.lib.php:1943 +#: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -#: db_structure.php:433 db_structure.php:447 libraries/header.inc.php:125 -#: libraries/tbl_info.inc.php:65 tbl_structure.php:184 test/theme.php:73 +#: db_structure.php:419 db_structure.php:433 libraries/header.inc.php:125 +#: libraries/tbl_info.inc.php:60 tbl_structure.php:183 test/theme.php:73 msgid "View" msgstr "檢視" -#: db_structure.php:484 libraries/db_structure.lib.php:40 -#: libraries/server_links.inc.php:69 server_replication.php:32 -#: server_replication.php:163 server_status.php:368 +#: db_structure.php:470 libraries/db_structure.lib.php:40 +#: libraries/server_links.inc.php:69 server_replication.php:31 +#: server_replication.php:162 server_status.php:368 msgid "Replication" msgstr "複製" -#: db_structure.php:488 +#: db_structure.php:474 msgid "Sum" msgstr "總計" -#: db_structure.php:495 libraries/StorageEngine.class.php:349 +#: db_structure.php:481 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "這 MySQL 伺服器的預設儲存引擎是 %s " -#: db_structure.php:523 db_structure.php:540 db_structure.php:541 -#: libraries/display_tbl.lib.php:2080 libraries/display_tbl.lib.php:2085 -#: libraries/mult_submits.inc.php:15 server_databases.php:345 -#: server_databases.php:350 server_privileges.php:1588 tbl_structure.php:454 -#: tbl_structure.php:463 +#: db_structure.php:509 db_structure.php:526 db_structure.php:527 +#: libraries/display_tbl.lib.php:2039 libraries/display_tbl.lib.php:2044 +#: libraries/mult_submits.inc.php:15 server_databases.php:343 +#: server_databases.php:348 server_privileges.php:1592 tbl_structure.php:452 +#: tbl_structure.php:461 msgid "With selected:" msgstr "選擇的資料表:" -#: db_structure.php:526 libraries/display_tbl.lib.php:2075 -#: server_databases.php:347 server_privileges.php:569 -#: server_privileges.php:1591 tbl_structure.php:457 +#: db_structure.php:512 libraries/display_tbl.lib.php:2034 +#: server_databases.php:345 server_privileges.php:568 +#: server_privileges.php:1595 tbl_structure.php:455 msgid "Check All" msgstr "全選" -#: db_structure.php:530 libraries/display_tbl.lib.php:2076 -#: libraries/replication_gui.lib.php:35 server_databases.php:349 -#: server_privileges.php:572 server_privileges.php:1595 tbl_structure.php:461 +#: db_structure.php:516 libraries/display_tbl.lib.php:2035 +#: libraries/replication_gui.lib.php:35 server_databases.php:347 +#: server_privileges.php:571 server_privileges.php:1599 tbl_structure.php:459 msgid "Uncheck All" msgstr "全部取消" -#: db_structure.php:535 +#: db_structure.php:521 msgid "Check tables having overhead" msgstr "檢查額外記錄 (overhead)" -#: db_structure.php:546 db_structure.php:547 db_structure.php:598 -#: libraries/display_tbl.lib.php:2179 libraries/mult_submits.inc.php:27 -#: tbl_structure.php:491 tbl_structure.php:493 +#: db_structure.php:532 db_structure.php:533 db_structure.php:584 +#: libraries/display_tbl.lib.php:2138 libraries/mult_submits.inc.php:27 +#: tbl_structure.php:489 tbl_structure.php:491 msgid "Print view" msgstr "列印檢視" -#: db_structure.php:548 db_structure.php:549 libraries/mult_submits.inc.php:41 -#: tbl_operations.php:580 +#: db_structure.php:534 db_structure.php:535 libraries/mult_submits.inc.php:41 +#: tbl_operations.php:578 msgid "Check table" msgstr "檢查資料表" -#: db_structure.php:550 db_structure.php:551 libraries/mult_submits.inc.php:46 -#: tbl_operations.php:620 tbl_structure.php:708 tbl_structure.php:710 +#: db_structure.php:536 db_structure.php:537 libraries/mult_submits.inc.php:46 +#: tbl_operations.php:618 tbl_structure.php:706 tbl_structure.php:708 msgid "Optimize table" msgstr "最佳化資料表" -#: db_structure.php:552 db_structure.php:553 libraries/mult_submits.inc.php:51 -#: tbl_operations.php:610 +#: db_structure.php:538 db_structure.php:539 libraries/mult_submits.inc.php:51 +#: tbl_operations.php:608 msgid "Repair table" msgstr "修復資料表" -#: db_structure.php:554 db_structure.php:555 libraries/mult_submits.inc.php:56 -#: tbl_operations.php:600 +#: db_structure.php:540 db_structure.php:541 libraries/mult_submits.inc.php:56 +#: tbl_operations.php:598 msgid "Analyze table" msgstr "分析資料表" -#: db_structure.php:556 db_structure.php:557 libraries/db_links.inc.php:70 -#: libraries/display_export.lib.php:82 libraries/display_tbl.lib.php:2093 -#: libraries/display_tbl.lib.php:2224 libraries/mult_submits.inc.php:61 -#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:81 -#: pmd_pdf.php:83 pmd_pdf.php:108 server_privileges.php:1372 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 +#: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 +#: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 +#: pmd_pdf.php:81 pmd_pdf.php:106 server_privileges.php:1376 #: setup/frames/menu.inc.php:22 tbl_row_action.php:58 msgid "Export" msgstr "輸出" -#: db_structure.php:605 libraries/display_pdf_schema.lib.php:44 +#: db_structure.php:591 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" msgstr "數據字典" -#: db_tracking.php:65 +#: db_tracking.php:61 msgid "Tracked tables" msgstr "" -#: db_tracking.php:70 libraries/export/htmlword.php:85 +#: db_tracking.php:66 libraries/export/htmlword.php:85 #: libraries/export/latex.php:152 libraries/export/odt.php:112 #: libraries/export/sql.php:339 libraries/export/texytext.php:84 #: libraries/export/xml.php:254 libraries/header.inc.php:105 -#: libraries/header_printview.inc.php:57 server_databases.php:168 -#: server_privileges.php:1652 server_privileges.php:1713 -#: server_privileges.php:1971 server_processlist.php:55 -#: server_synchronize.php:1178 server_synchronize.php:1182 -#: tbl_tracking.php:590 test/theme.php:64 +#: libraries/header_printview.inc.php:57 server_databases.php:166 +#: server_privileges.php:1656 server_privileges.php:1717 +#: server_privileges.php:1975 server_processlist.php:55 +#: server_synchronize.php:1177 server_synchronize.php:1181 +#: tbl_tracking.php:585 test/theme.php:64 msgid "Database" msgstr "資料庫" -#: db_tracking.php:72 +#: db_tracking.php:68 msgid "Last version" msgstr "" -#: db_tracking.php:73 tbl_tracking.php:593 +#: db_tracking.php:69 tbl_tracking.php:588 #, fuzzy msgid "Created" msgstr "建立" -#: db_tracking.php:74 tbl_tracking.php:594 +#: db_tracking.php:70 tbl_tracking.php:589 msgid "Updated" msgstr "" -#: db_tracking.php:76 libraries/Index.class.php:439 -#: libraries/db_structure.lib.php:44 server_databases.php:202 -#: server_privileges.php:1534 server_privileges.php:1717 -#: server_privileges.php:2065 tbl_structure.php:186 +#: db_tracking.php:71 libraries/common.lib.php:1361 +#: libraries/server_links.inc.php:48 server_processlist.php:58 +#: tbl_tracking.php:590 test/theme.php:100 +msgid "Status" +msgstr "狀態" + +#: db_tracking.php:72 libraries/Index.class.php:439 +#: libraries/db_structure.lib.php:44 server_databases.php:200 +#: server_privileges.php:1538 server_privileges.php:1721 +#: server_privileges.php:2069 tbl_structure.php:185 msgid "Action" msgstr "執行" -#: db_tracking.php:87 db_tracking.php:119 +#: db_tracking.php:83 db_tracking.php:115 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:105 tbl_tracking.php:547 tbl_tracking.php:605 -#: tbl_tracking.php:612 +#: db_tracking.php:101 tbl_tracking.php:542 tbl_tracking.php:600 +#: tbl_tracking.php:607 msgid "active" msgstr "" -#: db_tracking.php:107 tbl_tracking.php:549 tbl_tracking.php:607 -#: tbl_tracking.php:609 +#: db_tracking.php:103 tbl_tracking.php:544 tbl_tracking.php:602 +#: tbl_tracking.php:604 msgid "not active" msgstr "" -#: db_tracking.php:120 +#: db_tracking.php:116 #, fuzzy msgid "Versions" msgstr "波斯語" -#: db_tracking.php:121 tbl_tracking.php:378 tbl_tracking.php:623 +#: db_tracking.php:117 tbl_tracking.php:373 tbl_tracking.php:618 msgid "Tracking report" msgstr "" -#: db_tracking.php:122 tbl_tracking.php:250 tbl_tracking.php:623 +#: db_tracking.php:118 tbl_tracking.php:245 tbl_tracking.php:618 #, fuzzy msgid "Structure snapshot" msgstr "只有結構" -#: db_tracking.php:151 +#: db_tracking.php:147 msgid "Untracked tables" msgstr "" -#: db_tracking.php:171 db_tracking.php:173 tbl_structure.php:527 -#: tbl_structure.php:529 +#: db_tracking.php:167 db_tracking.php:169 tbl_structure.php:525 +#: tbl_structure.php:527 #, fuzzy msgid "Track table" msgstr "檢查資料表" -#: db_tracking.php:199 +#: db_tracking.php:195 #, fuzzy msgid "Database Log" msgstr "資料庫" @@ -798,102 +775,102 @@ msgstr "資料庫" msgid "Selected export type has to be saved in file!" msgstr "" -#: export.php:153 export.php:178 export.php:620 +#: export.php:152 export.php:177 export.php:615 #, php-format msgid "Insufficient space to save the file %s." msgstr "空間不足儲存檔案 %s." -#: export.php:287 +#: export.php:286 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "檔案 %s 已存在,請更改檔案名稱或選擇「覆寫己存在檔案」選項." -#: export.php:291 export.php:295 +#: export.php:290 export.php:294 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Web 伺服器沒有權限儲存檔案 %s." -#: export.php:622 +#: export.php:617 #, php-format msgid "Dump has been saved to file %s." msgstr "備份已儲到檔案 %s." -#: import.php:59 +#: 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." msgstr "你正嘗試上載大容量檔案,請查看此 %s文件%s 如何略過此限制." -#: import.php:278 import.php:331 libraries/File.class.php:840 -#: libraries/File.class.php:950 +#: import.php:277 import.php:330 libraries/File.class.php:566 +#: libraries/File.class.php:676 msgid "File could not be read" msgstr "讀案無法讀取" -#: import.php:286 import.php:295 import.php:314 import.php:323 -#: libraries/File.class.php:1020 libraries/File.class.php:1028 -#: libraries/File.class.php:1044 libraries/File.class.php:1052 +#: import.php:285 import.php:294 import.php:313 import.php:322 +#: libraries/File.class.php:746 libraries/File.class.php:754 +#: libraries/File.class.php:770 libraries/File.class.php:778 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." msgstr "" -#: import.php:336 +#: import.php:335 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " "[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." msgstr "" -#: import.php:371 libraries/display_import.lib.php:23 +#: import.php:370 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "無法讀取載入的外掛程式, 請檢查安裝程序!" -#: import.php:396 +#: import.php:395 msgid "The bookmark has been deleted." msgstr "書籤已經刪除." -#: import.php:400 +#: import.php:399 msgid "Showing bookmark" msgstr "顯示書籤" -#: import.php:402 sql.php:625 +#: import.php:401 sql.php:618 #, php-format msgid "Bookmark %s created" msgstr "書籤 %s 已建立" -#: import.php:408 import.php:414 +#: import.php:407 import.php:413 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "載入成功, 共 %d 句語法已執行." -#: import.php:423 +#: import.php:422 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: import.php:425 +#: import.php:424 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." msgstr "" -#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:240 +#: import_status.php:30 libraries/common.lib.php:660 pdf_schema.php:239 #: user_password.php:110 msgid "Back" msgstr "回上一頁" -#: index.php:188 +#: index.php:183 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin 較為適合使用在支援頁框的瀏覽器." -#: js/messages.php:25 server_synchronize.php:344 server_synchronize.php:356 -#: server_synchronize.php:372 server_synchronize.php:379 -#: server_synchronize.php:738 server_synchronize.php:766 -#: server_synchronize.php:794 server_synchronize.php:806 +#: js/messages.php:25 server_synchronize.php:343 server_synchronize.php:355 +#: server_synchronize.php:371 server_synchronize.php:378 +#: server_synchronize.php:737 server_synchronize.php:765 +#: server_synchronize.php:793 server_synchronize.php:805 msgid "Click to select" msgstr "" @@ -901,15 +878,15 @@ msgstr "" msgid "Click to unselect" msgstr "" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:88 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:87 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" 指令已經停用." -#: js/messages.php:30 libraries/mult_submits.inc.php:257 sql.php:187 +#: js/messages.php:30 libraries/mult_submits.inc.php:256 sql.php:186 msgid "Do you really want to " msgstr "您確定要 " -#: js/messages.php:31 libraries/mult_submits.inc.php:257 sql.php:171 +#: js/messages.php:31 libraries/mult_submits.inc.php:256 sql.php:170 msgid "You are about to DESTROY a complete database!" msgstr "您將會刪除整個資料庫!" @@ -938,11 +915,11 @@ msgstr "請輸入主機名稱!" msgid "The user name is empty!" msgstr "請輸入使用者名稱!" -#: js/messages.php:44 server_privileges.php:1228 user_password.php:65 +#: js/messages.php:44 server_privileges.php:1229 user_password.php:65 msgid "The password is empty!" msgstr "請輸入密碼!" -#: js/messages.php:45 server_privileges.php:1226 user_password.php:68 +#: js/messages.php:45 server_privileges.php:1227 user_password.php:68 msgid "The passwords aren't the same!" msgstr "第二次輸入的密碼不同!" @@ -950,29 +927,29 @@ msgstr "第二次輸入的密碼不同!" msgid "Cancel" msgstr "" -#: js/messages.php:52 pmd_save_pos.php:53 +#: js/messages.php:52 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "修改已儲存" -#: js/messages.php:53 pmd_relation_upd.php:48 +#: js/messages.php:53 pmd_relation_upd.php:47 #, fuzzy msgid "Relation deleted" msgstr "關聯檢視" -#: js/messages.php:54 pmd_relation_new.php:63 +#: js/messages.php:54 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:55 pmd_relation_new.php:85 +#: js/messages.php:55 pmd_relation_new.php:84 #, fuzzy msgid "Internal relation added" msgstr "內部關聯" -#: js/messages.php:56 pmd_relation_new.php:62 pmd_relation_new.php:87 +#: js/messages.php:56 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:57 pmd_relation_new.php:30 +#: js/messages.php:57 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "" @@ -980,13 +957,13 @@ msgstr "" msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:59 libraries/relation.lib.php:94 -#: libraries/relation.lib.php:106 +#: js/messages.php:59 libraries/relation.lib.php:89 +#: libraries/relation.lib.php:101 msgid "General relation features" msgstr "一般關聯功能" -#: js/messages.php:59 libraries/relation.lib.php:88 -#: libraries/relation.lib.php:95 +#: js/messages.php:59 libraries/relation.lib.php:83 +#: libraries/relation.lib.php:90 msgid "Disabled" msgstr "未啟動" @@ -1002,7 +979,7 @@ msgstr "" msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:547 +#: js/messages.php:63 pmd_general.php:76 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" @@ -1033,10 +1010,10 @@ msgid "Prev" msgstr "前一頁" #. l10n: Display text for next month link in calendar -#: js/messages.php:81 libraries/common.lib.php:2353 -#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:337 -#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:422 -#: tbl_structure.php:800 +#: js/messages.php:81 libraries/common.lib.php:2358 +#: libraries/common.lib.php:2361 libraries/display_tbl.lib.php:336 +#: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 +#: tbl_structure.php:798 msgid "Next" msgstr "下一個" @@ -1110,27 +1087,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1562 +#: js/messages.php:101 libraries/common.lib.php:1566 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1564 +#: js/messages.php:103 libraries/common.lib.php:1568 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1566 +#: js/messages.php:105 libraries/common.lib.php:1570 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1568 +#: js/messages.php:107 libraries/common.lib.php:1572 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1570 +#: js/messages.php:109 libraries/common.lib.php:1574 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1138,37 +1115,37 @@ msgid "May" msgstr "May" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1572 +#: js/messages.php:111 libraries/common.lib.php:1576 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1574 +#: js/messages.php:113 libraries/common.lib.php:1578 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1576 +#: js/messages.php:115 libraries/common.lib.php:1580 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1578 +#: js/messages.php:117 libraries/common.lib.php:1582 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1580 +#: js/messages.php:119 libraries/common.lib.php:1584 msgid "Oct" msgstr "Oct" #. l10n: Short month name -#: js/messages.php:121 libraries/common.lib.php:1582 +#: js/messages.php:121 libraries/common.lib.php:1586 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:123 libraries/common.lib.php:1584 +#: js/messages.php:123 libraries/common.lib.php:1588 msgid "Dec" msgstr "Dec" @@ -1209,37 +1186,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1587 +#: js/messages.php:136 libraries/common.lib.php:1591 msgid "Sun" msgstr "Sun" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1589 +#: js/messages.php:138 libraries/common.lib.php:1593 msgid "Mon" msgstr "Mon" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1591 +#: js/messages.php:140 libraries/common.lib.php:1595 msgid "Tue" msgstr "Tue" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1593 +#: js/messages.php:142 libraries/common.lib.php:1597 msgid "Wed" msgstr "Wed" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1595 +#: js/messages.php:144 libraries/common.lib.php:1599 msgid "Thu" msgstr "Thu" #. l10n: Short week day name -#: js/messages.php:146 libraries/common.lib.php:1597 +#: js/messages.php:146 libraries/common.lib.php:1601 msgid "Fri" msgstr "Fri" #. l10n: Short week day name -#: js/messages.php:148 libraries/common.lib.php:1599 +#: js/messages.php:148 libraries/common.lib.php:1603 msgid "Sat" msgstr "Sat" @@ -1317,76 +1294,75 @@ msgstr "每秒" msgid "Font size" msgstr "" -#: libraries/File.class.php:336 libraries/File.class.php:424 -#: libraries/File.class.php:561 libraries/File.class.php:700 -msgid "Unknown error in file upload." -msgstr "" - -#: libraries/File.class.php:406 +#: libraries/File.class.php:315 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:409 +#: libraries/File.class.php:318 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:412 +#: libraries/File.class.php:321 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:415 +#: libraries/File.class.php:324 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:418 +#: libraries/File.class.php:327 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:421 +#: libraries/File.class.php:330 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:898 +#: libraries/File.class.php:333 +msgid "Unknown error in file upload." +msgstr "" + +#: libraries/File.class.php:624 #, 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:427 tbl_relation.php:528 +#: libraries/Index.class.php:427 tbl_relation.php:526 msgid "No index defined!" msgstr "沒有已定義的索引!" -#: libraries/Index.class.php:432 server_databases.php:131 tbl_tracking.php:315 +#: libraries/Index.class.php:432 server_databases.php:129 tbl_tracking.php:310 msgid "Indexes" msgstr "索引" #: libraries/Index.class.php:443 libraries/mult_submits.inc.php:102 -#: libraries/tbl_properties.inc.php:518 tbl_structure.php:32 -#: tbl_structure.php:154 tbl_structure.php:158 tbl_structure.php:473 -#: tbl_tracking.php:321 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:31 +#: tbl_structure.php:153 tbl_structure.php:157 tbl_structure.php:471 +#: tbl_tracking.php:316 msgid "Unique" msgstr "唯一鍵 UNIQUE" -#: libraries/Index.class.php:444 tbl_tracking.php:322 +#: libraries/Index.class.php:444 tbl_tracking.php:317 msgid "Packed" msgstr "" -#: libraries/Index.class.php:446 tbl_tracking.php:324 +#: libraries/Index.class.php:446 tbl_tracking.php:319 msgid "Cardinality" msgstr "組別" -#: libraries/Index.class.php:449 tbl_tracking.php:278 tbl_tracking.php:327 +#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322 #, fuzzy msgid "Comment" msgstr "註解" #: libraries/Index.class.php:465 libraries/common.lib.php:609 -#: libraries/common.lib.php:1198 libraries/display_tbl.lib.php:1116 +#: libraries/common.lib.php:1191 libraries/display_tbl.lib.php:1115 #: libraries/import.lib.php:1119 libraries/import.lib.php:1143 -#: pdf_pages.php:284 setup/frames/index.inc.php:124 +#: pdf_pages.php:283 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:349 tbl_row_action.php:68 msgid "Edit" msgstr "編輯" @@ -1408,15 +1384,15 @@ msgid "" msgstr "" #: libraries/List_Database.class.php:430 libraries/server_links.inc.php:40 -#: server_databases.php:87 server_privileges.php:1652 +#: server_databases.php:85 server_privileges.php:1656 #: setup/lib/messages.inc.php:107 test/theme.php:92 msgid "Databases" msgstr "資料庫" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:259 libraries/import.lib.php:134 pdf_schema.php:31 -#: pdf_schema.php:231 tbl_change.php:1023 tbl_operations.php:212 -#: tbl_relation.php:289 view_operations.php:61 +#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 +#: tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "錯誤" @@ -1443,40 +1419,40 @@ msgid_plural "%1$d rows inserted." msgstr[0] "並無資料列已選擇" msgstr[1] "並無資料列已選擇" -#: libraries/StorageEngine.class.php:196 +#: libraries/StorageEngine.class.php:194 msgid "" "There is no detailed status information available for this storage engine." msgstr "這儲存引擎並無詳細的狀態資料." -#: libraries/StorageEngine.class.php:352 +#: libraries/StorageEngine.class.php:354 #, php-format msgid "%s is available on this MySQL server." msgstr "%s 已支援這 MySQL 伺服器." -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:357 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s 己於這個 MySQL 伺服器中停用." -#: libraries/StorageEngine.class.php:359 +#: libraries/StorageEngine.class.php:361 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "這 MySQL 版本並不接受 %s 儲存引擎." -#: libraries/Table.class.php:1018 +#: libraries/Table.class.php:1017 msgid "Invalid database" msgstr "" -#: libraries/Table.class.php:1032 tbl_get_field.php:25 +#: libraries/Table.class.php:1031 tbl_get_field.php:25 msgid "Invalid table name" msgstr "" -#: libraries/Table.class.php:1047 +#: libraries/Table.class.php:1046 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "" -#: libraries/Table.class.php:1131 +#: libraries/Table.class.php:1129 #, php-format msgid "Table %s has been renamed to %s" msgstr "已經將資料表 %s 改名成 %s" @@ -1494,22 +1470,22 @@ msgstr "並無預覽." msgid "take it" msgstr "選用" -#: libraries/Theme_Manager.class.php:114 +#: libraries/Theme_Manager.class.php:109 #, php-format msgid "Default theme %s not found!" msgstr "找不到預設佈景主題 %s !" -#: libraries/Theme_Manager.class.php:152 +#: libraries/Theme_Manager.class.php:147 #, php-format msgid "Theme %s not found!" msgstr "找不到佈景主題 %s !" -#: libraries/Theme_Manager.class.php:220 +#: libraries/Theme_Manager.class.php:215 #, php-format msgid "Theme path not found for theme %s!" msgstr "找不到佈景主題 %s 之設定路徑!" -#: libraries/Theme_Manager.class.php:296 test/theme.php:160 themes.php:20 +#: libraries/Theme_Manager.class.php:291 test/theme.php:160 themes.php:20 #: themes.php:40 msgid "Theme / Style" msgstr "款式" @@ -1619,19 +1595,19 @@ msgstr "" msgid "Authenticating..." msgstr "" -#: libraries/blobstreaming.lib.php:689 +#: libraries/blobstreaming.lib.php:340 msgid "View image" msgstr "" -#: libraries/blobstreaming.lib.php:693 +#: libraries/blobstreaming.lib.php:344 msgid "Play audio" msgstr "" -#: libraries/blobstreaming.lib.php:698 +#: libraries/blobstreaming.lib.php:349 msgid "View video" msgstr "" -#: libraries/blobstreaming.lib.php:702 +#: libraries/blobstreaming.lib.php:353 msgid "Download file" msgstr "" @@ -1682,7 +1658,7 @@ msgstr "伺服器" msgid "Invalid authentication method set in configuration:" msgstr "於設定內設定錯誤認證方式:" -#: libraries/common.inc.php:909 +#: libraries/common.inc.php:908 #, php-format msgid "You should upgrade to %s %s or later." msgstr "您應該更新到 %s %s 或之後." @@ -1709,7 +1685,8 @@ msgstr "zh" #: libraries/common.lib.php:425 libraries/common.lib.php:427 #: libraries/common.lib.php:429 libraries/common.lib.php:445 #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 -#: libraries/display_export.lib.php:163 libraries/relation.lib.php:84 +#: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 +#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 #: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" @@ -1724,148 +1701,148 @@ msgstr "SQL 語法" msgid "MySQL said: " msgstr "MySQL 傳回: " -#: libraries/common.lib.php:1136 +#: libraries/common.lib.php:1129 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1174 setup/lib/messages.inc.php:350 +#: libraries/common.lib.php:1167 setup/lib/messages.inc.php:350 msgid "Explain SQL" msgstr "說明 SQL" -#: libraries/common.lib.php:1177 +#: libraries/common.lib.php:1170 msgid "Skip Explain SQL" msgstr "略過說明 SQL" -#: libraries/common.lib.php:1211 +#: libraries/common.lib.php:1204 msgid "Without PHP Code" msgstr "移除 PHP 程式碼" -#: libraries/common.lib.php:1214 setup/lib/messages.inc.php:352 +#: libraries/common.lib.php:1207 setup/lib/messages.inc.php:352 msgid "Create PHP Code" msgstr "建立 PHP 程式碼" -#: libraries/common.lib.php:1232 server_status.php:451 +#: libraries/common.lib.php:1225 server_status.php:451 #: setup/lib/messages.inc.php:351 msgid "Refresh" msgstr "更新" -#: libraries/common.lib.php:1241 +#: libraries/common.lib.php:1234 msgid "Skip Validate SQL" msgstr "略過檢查 SQL" -#: libraries/common.lib.php:1244 setup/lib/messages.inc.php:353 +#: libraries/common.lib.php:1237 setup/lib/messages.inc.php:353 msgid "Validate SQL" msgstr "檢查 SQL" -#: libraries/common.lib.php:1283 +#: libraries/common.lib.php:1287 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1285 +#: libraries/common.lib.php:1289 #, fuzzy #| msgid "Engines" msgid "Inline" msgstr "引擎" -#: libraries/common.lib.php:1339 libraries/common.lib.php:1354 +#: libraries/common.lib.php:1343 libraries/common.lib.php:1358 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1358 libraries/tbl_triggers.lib.php:27 +#: libraries/common.lib.php:1362 libraries/tbl_triggers.lib.php:27 #: server_processlist.php:57 msgid "Time" msgstr "時間" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "B" msgstr "Bytes" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "KiB" msgstr "KB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "MiB" msgstr "MB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "GiB" msgstr "GB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "TiB" msgstr "TB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "PiB" msgstr "PB" -#: libraries/common.lib.php:1386 +#: libraries/common.lib.php:1390 msgid "EiB" msgstr "EB" #. l10n: Thousands separator -#: libraries/common.lib.php:1424 +#: libraries/common.lib.php:1428 msgid "," msgstr "," #. l10n: Decimal separator -#: libraries/common.lib.php:1426 +#: libraries/common.lib.php:1430 msgid "." msgstr "." #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1603 +#: libraries/common.lib.php:1607 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y, %I:%M %p" -#: libraries/common.lib.php:1909 +#: libraries/common.lib.php:1913 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s 日, %s 小時, %s 分鐘 %s 秒" -#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 -#: libraries/display_tbl.lib.php:289 server_status.php:718 +#: libraries/common.lib.php:2327 libraries/common.lib.php:2330 +#: libraries/display_tbl.lib.php:288 server_status.php:718 msgid "Begin" msgstr "第一頁" -#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 -#: libraries/display_tbl.lib.php:290 server_binlog.php:154 +#: libraries/common.lib.php:2328 libraries/common.lib.php:2331 +#: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "前一頁" -#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 -#: libraries/display_tbl.lib.php:352 +#: libraries/common.lib.php:2359 libraries/common.lib.php:2362 +#: libraries/display_tbl.lib.php:351 msgid "End" msgstr "最後一頁" -#: libraries/common.lib.php:2429 +#: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." msgstr "跳到資料庫 "%s"." -#: libraries/common.lib.php:2448 +#: libraries/common.lib.php:2453 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2828 libraries/common.lib.php:2835 -#: libraries/db_links.inc.php:67 libraries/export/sql.php:24 +#: libraries/common.lib.php:2833 libraries/common.lib.php:2840 +#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 -#: libraries/tbl_links.inc.php:59 querywindow.php:89 test/theme.php:96 +#: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2837 libraries/db_links.inc.php:103 -#: libraries/tbl_links.inc.php:94 libraries/tbl_links.inc.php:116 -#: view_operations.php:88 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: view_operations.php:87 msgid "Operations" msgstr "管理" -#: libraries/core.lib.php:282 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1881,38 +1858,38 @@ msgstr "" msgid "Name" msgstr "名稱" -#: libraries/db_links.inc.php:44 +#: libraries/db_links.inc.php:43 #, php-format msgid "Database %s has been dropped." msgstr "資料庫 %s 已被刪除" -#: libraries/db_links.inc.php:56 libraries/db_links.inc.php:57 -#: libraries/db_links.inc.php:58 +#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 +#: libraries/db_links.inc.php:57 msgid "Database seems to be empty!" msgstr "" -#: libraries/db_links.inc.php:80 libraries/relation.lib.php:142 -#: libraries/tbl_links.inc.php:68 +#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:85 +#: libraries/db_links.inc.php:84 msgid "Query" msgstr "依範例查詢 (QBE)" -#: libraries/db_links.inc.php:90 libraries/relation.lib.php:138 +#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:97 libraries/server_links.inc.php:87 -#: libraries/tbl_links.inc.php:90 pmd_pdf.php:83 pmd_pdf.php:109 +#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "載入" -#: libraries/db_links.inc.php:110 libraries/server_links.inc.php:65 -#: server_privileges.php:111 server_privileges.php:1714 -#: server_privileges.php:2063 test/theme.php:116 +#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: server_privileges.php:110 server_privileges.php:1718 +#: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" msgstr "權限" @@ -1924,14 +1901,14 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1847 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1806 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "可能接近. 請參看 FAQ 3.11" -#: libraries/db_structure.lib.php:60 server_databases.php:141 -#: tbl_printview.php:334 tbl_structure.php:681 +#: libraries/db_structure.lib.php:60 server_databases.php:139 +#: tbl_printview.php:333 tbl_structure.php:679 msgid "Overhead" msgstr "多餘" @@ -1948,7 +1925,7 @@ msgstr "伺服器並無回應" msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "( 或者本機 MySQL 伺服器之 socket 並未正確設定)" -#: libraries/dbi/mysql.dbi.lib.php:358 tbl_structure.php:607 +#: libraries/dbi/mysql.dbi.lib.php:358 tbl_structure.php:605 msgid "Details..." msgstr "" @@ -1958,22 +1935,22 @@ msgid "Change password" msgstr "更改密碼" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:807 +#: libraries/replication_gui.lib.php:347 server_privileges.php:806 msgid "No Password" msgstr "不用密碼" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:796 -#: server_privileges.php:800 server_privileges.php:811 -#: server_privileges.php:1530 server_synchronize.php:1174 +#: libraries/replication_gui.lib.php:351 server_privileges.php:795 +#: server_privileges.php:799 server_privileges.php:810 +#: server_privileges.php:1534 server_synchronize.php:1173 msgid "Password" msgstr "密碼" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:815 server_privileges.php:818 +#: server_privileges.php:814 server_privileges.php:817 msgid "Re-type" msgstr "確認密碼" @@ -1996,8 +1973,8 @@ msgstr "建立新資料庫" msgid "Create" msgstr "建立" -#: libraries/display_create_database.lib.php:39 server_privileges.php:113 -#: server_privileges.php:1419 server_replication.php:34 +#: libraries/display_create_database.lib.php:39 server_privileges.php:112 +#: server_privileges.php:1423 server_replication.php:33 msgid "No Privileges" msgstr "沒有權限" @@ -2018,51 +1995,51 @@ msgstr "建立新資料表於資料庫 %s" msgid "Number of columns" msgstr "欄位數目" -#: libraries/display_export.lib.php:41 +#: libraries/display_export.lib.php:35 #, fuzzy msgid "Could not load export plugins, please check your installation!" msgstr "無法讀取載入的外掛程式, 請檢查安裝程序!" -#: libraries/display_export.lib.php:106 +#: libraries/display_export.lib.php:100 #, fuzzy, php-format #| msgid "Dump %s row(s) starting at record # %s" msgid "Dump %s row(s) starting at row # %s" msgstr "備份 %s 行, 由 %s 行開始." -#: libraries/display_export.lib.php:114 +#: libraries/display_export.lib.php:108 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:124 setup/lib/messages.inc.php:79 +#: libraries/display_export.lib.php:118 setup/lib/messages.inc.php:79 msgid "Save as file" msgstr "下載儲存" -#: libraries/display_export.lib.php:133 +#: libraries/display_export.lib.php:127 #, php-format msgid "Save on server in %s directory" msgstr "儲存到伺服器於 %s 目錄" -#: libraries/display_export.lib.php:141 setup/lib/messages.inc.php:87 +#: libraries/display_export.lib.php:135 setup/lib/messages.inc.php:87 msgid "Overwrite existing file(s)" msgstr "覆寫已存在檔案" -#: libraries/display_export.lib.php:147 +#: libraries/display_export.lib.php:141 msgid "File name template" msgstr "檔案名稱樣式" -#: libraries/display_export.lib.php:151 +#: libraries/display_export.lib.php:145 msgid "server name" msgstr "伺服器名稱" -#: libraries/display_export.lib.php:154 +#: libraries/display_export.lib.php:148 msgid "database name" msgstr "資料庫名稱" -#: libraries/display_export.lib.php:157 +#: libraries/display_export.lib.php:151 msgid "table name" msgstr "資料表名稱" -#: libraries/display_export.lib.php:161 +#: libraries/display_export.lib.php:155 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2070,39 +2047,39 @@ msgid "" "%3$s. Other text will be kept as is." msgstr "" -#: libraries/display_export.lib.php:202 +#: libraries/display_export.lib.php:196 msgid "remember template" msgstr "保留樣式名稱" -#: libraries/display_export.lib.php:210 libraries/display_import.lib.php:177 +#: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 #: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 msgid "Character set of the file:" msgstr "文字編碼檔案:" -#: libraries/display_export.lib.php:235 setup/lib/messages.inc.php:81 +#: libraries/display_export.lib.php:229 setup/lib/messages.inc.php:81 msgid "Compression" msgstr "壓縮" -#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:196 -#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:529 -#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:574 -#: server_privileges.php:1867 server_processlist.php:74 +#: libraries/display_export.lib.php:234 libraries/display_import.lib.php:196 +#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:528 +#: libraries/export/sql.php:865 libraries/tbl_properties.inc.php:573 +#: server_privileges.php:1871 server_processlist.php:74 msgid "None" msgstr "不適用" -#: libraries/display_export.lib.php:247 +#: libraries/display_export.lib.php:241 msgid "\"zipped\"" msgstr "\"zipped\"" -#: libraries/display_export.lib.php:253 +#: libraries/display_export.lib.php:247 msgid "\"gzipped\"" msgstr "\"gzipped\"" -#: libraries/display_export.lib.php:259 +#: libraries/display_export.lib.php:253 msgid "\"bzipped\"" msgstr "\"bzipped\"" -#: libraries/display_export.lib.php:274 libraries/export/sql.php:42 +#: libraries/display_export.lib.php:268 libraries/export/sql.php:42 #: libraries/import/sql.php:31 msgid "SQL compatibility mode" msgstr "SQL 兼容模式" @@ -2137,12 +2114,12 @@ msgid "File uploads are not allowed on this server." msgstr "" #: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 -#: tbl_change.php:1024 +#: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "設定之上載目錄錯誤,未能使用" #: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 -#: tbl_change.php:1027 +#: tbl_change.php:925 msgid "web server upload directory" msgstr "Web 伺服器上載目錄" @@ -2223,43 +2200,43 @@ msgstr "紙張大小" msgid "Language" msgstr "" -#: libraries/display_tbl.lib.php:303 +#: libraries/display_tbl.lib.php:302 #, php-format msgid "%d is not valid row number." msgstr "%d 不是一個有效的列數數目." -#: libraries/display_tbl.lib.php:309 +#: libraries/display_tbl.lib.php:308 #, fuzzy #| msgid "row(s) starting from record #" msgid "row(s) starting from row #" msgstr "筆記錄,開始列數:" -#: libraries/display_tbl.lib.php:315 +#: libraries/display_tbl.lib.php:314 msgid "horizontal" msgstr "水平" -#: libraries/display_tbl.lib.php:316 +#: libraries/display_tbl.lib.php:315 msgid "horizontal (rotated headers)" msgstr "垂直 (旋轉標題)" -#: libraries/display_tbl.lib.php:317 +#: libraries/display_tbl.lib.php:316 msgid "vertical" msgstr "垂直" -#: libraries/display_tbl.lib.php:323 +#: libraries/display_tbl.lib.php:322 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "顯示為 %s 方式 及 每隔 %s 行顯示欄名" -#: libraries/display_tbl.lib.php:345 +#: libraries/display_tbl.lib.php:344 msgid "This operation could take a long time. Proceed anyway?" msgstr "這個作業所用時間會較長, 繼續?" -#: libraries/display_tbl.lib.php:511 +#: libraries/display_tbl.lib.php:510 msgid "Sort by key" msgstr "依鍵名排序" -#: libraries/display_tbl.lib.php:554 libraries/export/codegen.php:38 +#: libraries/display_tbl.lib.php:553 libraries/export/codegen.php:38 #: libraries/export/csv.php:29 libraries/export/excel.php:34 #: libraries/export/htmlword.php:28 libraries/export/latex.php:32 #: libraries/export/mediawiki.php:21 libraries/export/ods.php:26 @@ -2269,101 +2246,101 @@ msgstr "依鍵名排序" #: libraries/export/xlsx.php:26 libraries/export/xml.php:23 #: libraries/export/yaml.php:27 libraries/import.lib.php:1114 #: libraries/import.lib.php:1136 libraries/import/csv.php:31 -#: libraries/import/docsql.php:33 libraries/import/ldi.php:46 +#: libraries/import/docsql.php:32 libraries/import/ldi.php:46 #: libraries/import/ods.php:30 libraries/import/sql.php:19 #: libraries/import/xls.php:25 libraries/import/xlsx.php:25 -#: libraries/import/xml.php:25 tbl_select.php:264 tbl_structure.php:752 +#: libraries/import/xml.php:25 tbl_select.php:263 tbl_structure.php:750 #, fuzzy msgid "Options" msgstr "管理" -#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:569 +#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:568 msgid "Partial Texts" msgstr "顯示部份文字" -#: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:573 +#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:572 msgid "Full Texts" msgstr "顯示完整文字" -#: libraries/display_tbl.lib.php:586 +#: libraries/display_tbl.lib.php:585 #, fuzzy msgid "Relational key" msgstr "關聯概要" -#: libraries/display_tbl.lib.php:587 +#: libraries/display_tbl.lib.php:586 #, fuzzy #| msgid "Relational schema" msgid "Relational display column" msgstr "關聯概要" -#: libraries/display_tbl.lib.php:594 +#: libraries/display_tbl.lib.php:593 msgid "Show binary contents" msgstr "" -#: libraries/display_tbl.lib.php:596 +#: libraries/display_tbl.lib.php:595 msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:598 +#: libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "" -#: libraries/display_tbl.lib.php:606 pmd_general.php:140 tbl_change.php:312 -#: tbl_change.php:318 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:307 +#: tbl_change.php:313 msgid "Hide" msgstr "" -#: libraries/display_tbl.lib.php:606 libraries/relation.lib.php:122 -#: libraries/tbl_properties.inc.php:143 transformation_overview.php:46 +#: libraries/display_tbl.lib.php:605 libraries/relation.lib.php:117 +#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46 msgid "Browser transformation" msgstr "瀏覽器轉換方式" -#: libraries/display_tbl.lib.php:1125 libraries/display_tbl.lib.php:1129 -#: libraries/display_tbl.lib.php:1131 +#: libraries/display_tbl.lib.php:1124 libraries/display_tbl.lib.php:1128 +#: libraries/display_tbl.lib.php:1130 msgid "Execute bookmarked query" msgstr "執行書籤查詢" -#: libraries/display_tbl.lib.php:1144 libraries/display_tbl.lib.php:1156 +#: libraries/display_tbl.lib.php:1143 libraries/display_tbl.lib.php:1155 msgid "The row has been deleted" msgstr "記錄已被刪除" -#: libraries/display_tbl.lib.php:1183 libraries/display_tbl.lib.php:2055 +#: libraries/display_tbl.lib.php:1182 libraries/display_tbl.lib.php:2014 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "Kill" -#: libraries/display_tbl.lib.php:1933 +#: libraries/display_tbl.lib.php:1892 msgid "in query" msgstr "查詢中" -#: libraries/display_tbl.lib.php:1951 +#: libraries/display_tbl.lib.php:1910 msgid "Showing rows" msgstr "顯示記錄" -#: libraries/display_tbl.lib.php:1961 +#: libraries/display_tbl.lib.php:1920 msgid "total" msgstr "總計" -#: libraries/display_tbl.lib.php:1969 sql.php:523 +#: libraries/display_tbl.lib.php:1928 sql.php:522 #, php-format msgid "Query took %01.4f sec" msgstr "查詢需時 %01.4f 秒" -#: libraries/display_tbl.lib.php:2088 libraries/mult_submits.inc.php:112 -#: querywindow.php:115 querywindow.php:119 querywindow.php:122 -#: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:469 +#: libraries/display_tbl.lib.php:2047 libraries/mult_submits.inc.php:112 +#: querywindow.php:114 querywindow.php:118 querywindow.php:121 +#: tbl_structure.php:23 tbl_structure.php:148 tbl_structure.php:467 msgid "Change" msgstr "修改" -#: libraries/display_tbl.lib.php:2158 +#: libraries/display_tbl.lib.php:2117 msgid "Query results operations" msgstr "查詢結果操作" -#: libraries/display_tbl.lib.php:2186 +#: libraries/display_tbl.lib.php:2145 msgid "Print view (with full texts)" msgstr "列印檢視 (顯示完整文字)" -#: libraries/display_tbl.lib.php:2359 +#: libraries/display_tbl.lib.php:2318 msgid "Link not found" msgstr "找不到連結" @@ -2415,9 +2392,9 @@ msgstr "InnoDB 狀態" msgid "Buffer Pool Usage" msgstr "緩衝區使用空間" -#: libraries/engines/innodb.lib.php:168 server_databases.php:136 -#: server_databases.php:304 server_status.php:524 server_status.php:585 -#: server_status.php:606 tbl_printview.php:349 tbl_structure.php:695 +#: libraries/engines/innodb.lib.php:168 server_databases.php:134 +#: server_databases.php:302 server_status.php:524 server_status.php:585 +#: server_status.php:606 tbl_printview.php:348 tbl_structure.php:693 msgid "Total" msgstr "總共" @@ -2548,6 +2525,78 @@ msgstr "" "這個緩衝大小是分配給在執行修復資料表指令 (REPAIR TABLE) 、執行 CREATE INDEX " "或 ALTER TABLE 指令時, 用於排序 MyISAM 索引之用" +#: libraries/engines/pbms.lib.php:31 +msgid "Garbage Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:32 +msgid "The percentage of garbage in a repository file before it is compacted." +msgstr "" + +#: libraries/engines/pbms.lib.php:36 libraries/replication_gui.lib.php:69 +#: server_synchronize.php:1161 +#, fuzzy +msgid "Port" +msgstr "排序" + +#: libraries/engines/pbms.lib.php:37 +msgid "" +"The port for the PBMS stream-based communications. Setting this value to 0 " +"will disable HTTP communication with the daemon." +msgstr "" + +#: libraries/engines/pbms.lib.php:41 +msgid "Repository Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:42 +msgid "" +"The maximum size of a BLOB repository file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:46 +msgid "Temp Blob Timeout" +msgstr "" + +#: libraries/engines/pbms.lib.php:47 +msgid "" +"The timeout, in seconds, for temporary BLOBs. Uploaded BLOB data is removed " +"after this time, unless they are referenced by a record in the database." +msgstr "" + +#: libraries/engines/pbms.lib.php:51 +msgid "Temp Log Threshold" +msgstr "" + +#: libraries/engines/pbms.lib.php:52 +msgid "" +"The maximum size of a temporary BLOB log file. You may use Kb, MB or GB to " +"indicate the unit of the value. A value in bytes is assumed when no unit is " +"specified." +msgstr "" + +#: libraries/engines/pbms.lib.php:56 +msgid "Max Keep Alive" +msgstr "" + +#: libraries/engines/pbms.lib.php:57 +msgid "" +"The timeout for inactive connection with the keep-alive flag set. After this " +"time the connection will be closed. The time-out is in milliseconds (1/1000)." +msgstr "" + +#: libraries/engines/pbms.lib.php:61 +msgid "Metadata Headers" +msgstr "" + +#: libraries/engines/pbms.lib.php:62 +msgid "" +"A \":\" delimited list of metadata headers to be used to initialize the " +"pbms_metadata_header table when a database is created." +msgstr "" + #: libraries/engines/pbxt.lib.php:22 msgid "Index cache size" msgstr "" @@ -2672,7 +2721,7 @@ msgid "" msgstr "" #: libraries/export/codegen.php:36 setup/lib/messages.inc.php:85 -#: tbl_printview.php:374 tbl_structure.php:736 +#: tbl_printview.php:373 tbl_structure.php:734 msgid "Format" msgstr "格式" @@ -2743,9 +2792,9 @@ msgstr "Microsoft Word 2000" #: libraries/export/htmlword.php:23 libraries/export/latex.php:59 #: libraries/export/latex.php:205 libraries/export/odt.php:47 #: libraries/export/sql.php:105 libraries/export/sql.php:865 -#: libraries/export/texytext.php:27 server_databases.php:126 -#: server_privileges.php:576 server_replication.php:315 tbl_printview.php:315 -#: tbl_structure.php:664 +#: libraries/export/texytext.php:27 server_databases.php:124 +#: server_privileges.php:575 server_replication.php:314 tbl_printview.php:314 +#: tbl_structure.php:662 msgid "Data" msgstr "資料" @@ -2796,13 +2845,13 @@ msgid "Label key" msgstr "標記鍵名" #: libraries/export/latex.php:46 libraries/export/odt.php:34 -#: libraries/export/sql.php:90 tbl_relation.php:398 +#: libraries/export/sql.php:90 tbl_relation.php:396 msgid "Relations" msgstr "關聯" #: libraries/export/latex.php:52 libraries/export/odt.php:40 #: libraries/export/odt.php:317 libraries/export/sql.php:94 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "MIME 類型" @@ -2810,10 +2859,10 @@ msgstr "MIME 類型" #: libraries/export/xml.php:101 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:731 -#: server_privileges.php:734 server_privileges.php:790 -#: server_privileges.php:1529 server_privileges.php:2061 -#: server_processlist.php:54 server_synchronize.php:1158 +#: libraries/replication_gui.lib.php:331 server_privileges.php:730 +#: server_privileges.php:733 server_privileges.php:789 +#: server_privileges.php:1533 server_privileges.php:2065 +#: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "主機" @@ -3007,8 +3056,8 @@ msgstr "" msgid "Export contents" msgstr "" -#: libraries/footer.inc.php:182 libraries/footer.inc.php:193 -#: libraries/footer.inc.php:196 +#: libraries/footer.inc.php:180 libraries/footer.inc.php:191 +#: libraries/footer.inc.php:194 msgid "Open new phpMyAdmin window" msgstr "開啟新 phpMyAdmin 視窗" @@ -3025,7 +3074,7 @@ msgstr "SQL 查詢結果" msgid "Generated by" msgstr "建立" -#: libraries/import.lib.php:151 sql.php:519 tbl_change.php:180 +#: libraries/import.lib.php:151 sql.php:518 tbl_change.php:175 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL 傳回的查詢結果為空 (原因可能為:沒有找到符合條件的記錄)" @@ -3083,7 +3132,7 @@ msgstr "略過重覆列" msgid "Column names in first row" msgstr "" -#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:501 +#: libraries/import/csv.php:39 libraries/import/ldi.php:43 pdf_pages.php:500 #: view_create.php:147 msgid "Column names" msgstr "欄位名稱" @@ -3110,12 +3159,12 @@ msgstr "Invalid format of CSV 檔案第 %d 行中之格式錯誤." msgid "Invalid column count in CSV input on line %d." msgstr "CSV 檔案第 %d 行中之欄位總數錯誤." -#: libraries/import/docsql.php:28 +#: libraries/import/docsql.php:27 msgid "DocSQL" msgstr "" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 -#: server_synchronize.php:427 server_synchronize.php:870 +#: libraries/import/docsql.php:30 libraries/tbl_properties.inc.php:616 +#: server_synchronize.php:426 server_synchronize.php:869 #, fuzzy msgid "Table name" msgstr "資料表名稱" @@ -3173,26 +3222,26 @@ msgstr "不適用" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:512 -#: tbl_structure.php:28 tbl_structure.php:152 tbl_structure.php:156 -#: tbl_structure.php:472 +#: libraries/mult_submits.inc.php:75 libraries/tbl_properties.inc.php:511 +#: tbl_structure.php:27 tbl_structure.php:151 tbl_structure.php:155 +#: tbl_structure.php:470 msgid "Primary" msgstr "主鍵 PRIMARY" #: libraries/mult_submits.inc.php:97 libraries/tbl_properties.inc.php:115 -#: libraries/tbl_properties.inc.php:524 tbl_printview.php:324 -#: tbl_structure.php:30 tbl_structure.php:153 tbl_structure.php:157 -#: tbl_structure.php:474 tbl_structure.php:672 +#: libraries/tbl_properties.inc.php:523 tbl_printview.php:323 +#: tbl_structure.php:29 tbl_structure.php:152 tbl_structure.php:156 +#: tbl_structure.php:472 tbl_structure.php:670 msgid "Index" msgstr "索引鍵 INDEX" -#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:530 -#: tbl_structure.php:34 tbl_structure.php:155 tbl_structure.php:159 -#: tbl_structure.php:477 +#: libraries/mult_submits.inc.php:107 libraries/tbl_properties.inc.php:529 +#: tbl_structure.php:33 tbl_structure.php:154 tbl_structure.php:158 +#: tbl_structure.php:475 msgid "Fulltext" msgstr "全文檢索" -#: libraries/mult_submits.inc.php:434 tbl_replace.php:330 +#: libraries/mult_submits.inc.php:433 tbl_replace.php:330 msgid "No change" msgstr "沒有變更" @@ -3200,190 +3249,190 @@ msgstr "沒有變更" msgid "Charset" msgstr "文字編碼 (Charset)" -#: libraries/mysql_charsets.lib.php:210 libraries/mysql_charsets.lib.php:411 -#: tbl_change.php:515 +#: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 +#: tbl_change.php:510 msgid "Binary" msgstr "二進制碼" -#: libraries/mysql_charsets.lib.php:222 +#: libraries/mysql_charsets.lib.php:214 msgid "Bulgarian" msgstr "保加利亞語" -#: libraries/mysql_charsets.lib.php:226 libraries/mysql_charsets.lib.php:351 +#: libraries/mysql_charsets.lib.php:218 libraries/mysql_charsets.lib.php:343 msgid "Simplified Chinese" msgstr "簡體中文" -#: libraries/mysql_charsets.lib.php:228 libraries/mysql_charsets.lib.php:371 +#: libraries/mysql_charsets.lib.php:220 libraries/mysql_charsets.lib.php:363 msgid "Traditional Chinese" msgstr "繁體中文" -#: libraries/mysql_charsets.lib.php:232 libraries/mysql_charsets.lib.php:418 +#: libraries/mysql_charsets.lib.php:224 libraries/mysql_charsets.lib.php:410 msgid "case-insensitive" msgstr "大小寫不相符" -#: libraries/mysql_charsets.lib.php:235 libraries/mysql_charsets.lib.php:420 +#: libraries/mysql_charsets.lib.php:227 libraries/mysql_charsets.lib.php:412 msgid "case-sensitive" msgstr "大小寫相符" -#: libraries/mysql_charsets.lib.php:238 +#: libraries/mysql_charsets.lib.php:230 msgid "Croatian" msgstr "克羅西亞語" -#: libraries/mysql_charsets.lib.php:241 +#: libraries/mysql_charsets.lib.php:233 msgid "Czech" msgstr "捷克語" -#: libraries/mysql_charsets.lib.php:244 +#: libraries/mysql_charsets.lib.php:236 msgid "Danish" msgstr "丹麥語" -#: libraries/mysql_charsets.lib.php:247 +#: libraries/mysql_charsets.lib.php:239 msgid "English" msgstr "英語" -#: libraries/mysql_charsets.lib.php:250 +#: libraries/mysql_charsets.lib.php:242 msgid "Esperanto" msgstr "世界語" -#: libraries/mysql_charsets.lib.php:253 +#: libraries/mysql_charsets.lib.php:245 msgid "Estonian" msgstr "愛沙尼亞語" -#: libraries/mysql_charsets.lib.php:256 libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:248 libraries/mysql_charsets.lib.php:251 msgid "German" msgstr "德語" -#: libraries/mysql_charsets.lib.php:256 +#: libraries/mysql_charsets.lib.php:248 msgid "dictionary" msgstr "字典" -#: libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:251 msgid "phone book" msgstr "電話簿" -#: libraries/mysql_charsets.lib.php:262 +#: libraries/mysql_charsets.lib.php:254 msgid "Hungarian" msgstr "匈牙利語" -#: libraries/mysql_charsets.lib.php:265 +#: libraries/mysql_charsets.lib.php:257 msgid "Icelandic" msgstr "冰島語" -#: libraries/mysql_charsets.lib.php:268 libraries/mysql_charsets.lib.php:358 +#: libraries/mysql_charsets.lib.php:260 libraries/mysql_charsets.lib.php:350 msgid "Japanese" msgstr "日語" -#: libraries/mysql_charsets.lib.php:271 +#: libraries/mysql_charsets.lib.php:263 msgid "Latvian" msgstr "拉脫維亞語" -#: libraries/mysql_charsets.lib.php:274 +#: libraries/mysql_charsets.lib.php:266 msgid "Lithuanian" msgstr "立陶宛語" -#: libraries/mysql_charsets.lib.php:277 libraries/mysql_charsets.lib.php:380 +#: libraries/mysql_charsets.lib.php:269 libraries/mysql_charsets.lib.php:372 msgid "Korean" msgstr "韓語" -#: libraries/mysql_charsets.lib.php:280 +#: libraries/mysql_charsets.lib.php:272 msgid "Persian" msgstr "波斯語" -#: libraries/mysql_charsets.lib.php:283 +#: libraries/mysql_charsets.lib.php:275 msgid "Polish" msgstr "波蘭語" -#: libraries/mysql_charsets.lib.php:286 libraries/mysql_charsets.lib.php:334 +#: libraries/mysql_charsets.lib.php:278 libraries/mysql_charsets.lib.php:326 msgid "West European" msgstr "西歐語文" -#: libraries/mysql_charsets.lib.php:289 +#: libraries/mysql_charsets.lib.php:281 msgid "Romanian" msgstr "羅馬尼亞語" -#: libraries/mysql_charsets.lib.php:292 +#: libraries/mysql_charsets.lib.php:284 msgid "Slovak" msgstr "斯洛伐克語" -#: libraries/mysql_charsets.lib.php:295 +#: libraries/mysql_charsets.lib.php:287 msgid "Slovenian" msgstr "斯洛文尼亞語" -#: libraries/mysql_charsets.lib.php:298 +#: libraries/mysql_charsets.lib.php:290 msgid "Spanish" msgstr "西班牙語" -#: libraries/mysql_charsets.lib.php:301 +#: libraries/mysql_charsets.lib.php:293 msgid "Traditional Spanish" msgstr "傳統西班牙語" -#: libraries/mysql_charsets.lib.php:304 libraries/mysql_charsets.lib.php:401 +#: libraries/mysql_charsets.lib.php:296 libraries/mysql_charsets.lib.php:393 msgid "Swedish" msgstr "瑞典語" -#: libraries/mysql_charsets.lib.php:307 libraries/mysql_charsets.lib.php:404 +#: libraries/mysql_charsets.lib.php:299 libraries/mysql_charsets.lib.php:396 msgid "Thai" msgstr "泰語" -#: libraries/mysql_charsets.lib.php:310 libraries/mysql_charsets.lib.php:398 +#: libraries/mysql_charsets.lib.php:302 libraries/mysql_charsets.lib.php:390 msgid "Turkish" msgstr "土耳其語" -#: libraries/mysql_charsets.lib.php:313 libraries/mysql_charsets.lib.php:395 +#: libraries/mysql_charsets.lib.php:305 libraries/mysql_charsets.lib.php:387 msgid "Ukrainian" msgstr "烏克蘭語" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 msgid "Unicode" msgstr "統一碼 (Unicode)" -#: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 -#: libraries/mysql_charsets.lib.php:334 libraries/mysql_charsets.lib.php:341 -#: libraries/mysql_charsets.lib.php:363 libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:317 +#: libraries/mysql_charsets.lib.php:326 libraries/mysql_charsets.lib.php:333 +#: libraries/mysql_charsets.lib.php:355 libraries/mysql_charsets.lib.php:366 msgid "multilingual" msgstr "多語言" -#: libraries/mysql_charsets.lib.php:341 +#: libraries/mysql_charsets.lib.php:333 msgid "Central European" msgstr "中歐語" -#: libraries/mysql_charsets.lib.php:346 +#: libraries/mysql_charsets.lib.php:338 msgid "Russian" msgstr "俄語" -#: libraries/mysql_charsets.lib.php:363 +#: libraries/mysql_charsets.lib.php:355 msgid "Baltic" msgstr "波羅的海語" -#: libraries/mysql_charsets.lib.php:368 +#: libraries/mysql_charsets.lib.php:360 msgid "Armenian" msgstr "美式英語" -#: libraries/mysql_charsets.lib.php:374 +#: libraries/mysql_charsets.lib.php:366 msgid "Cyrillic" msgstr "西里爾語" -#: libraries/mysql_charsets.lib.php:377 +#: libraries/mysql_charsets.lib.php:369 msgid "Arabic" msgstr "阿拉伯語" -#: libraries/mysql_charsets.lib.php:383 +#: libraries/mysql_charsets.lib.php:375 msgid "Hebrew" msgstr "希伯來語" -#: libraries/mysql_charsets.lib.php:386 +#: libraries/mysql_charsets.lib.php:378 msgid "Georgian" msgstr "格魯吉亞語" -#: libraries/mysql_charsets.lib.php:389 +#: libraries/mysql_charsets.lib.php:381 msgid "Greek" msgstr "希臘語" -#: libraries/mysql_charsets.lib.php:392 +#: libraries/mysql_charsets.lib.php:384 msgid "Czech-Slovak" msgstr "捷克語" -#: libraries/mysql_charsets.lib.php:407 libraries/mysql_charsets.lib.php:414 +#: libraries/mysql_charsets.lib.php:399 libraries/mysql_charsets.lib.php:406 msgid "unknown" msgstr "不詳" @@ -3409,67 +3458,67 @@ msgstr "查詢視窗" msgid "This format has no options" msgstr "這種格式並無選項" -#: libraries/relation.lib.php:82 +#: libraries/relation.lib.php:77 msgid "not OK" msgstr "未能確定" -#: libraries/relation.lib.php:86 pmd_general.php:339 +#: libraries/relation.lib.php:81 pmd_general.php:339 msgid "OK" msgstr "確定" -#: libraries/relation.lib.php:87 +#: libraries/relation.lib.php:82 msgid "Enabled" msgstr "啟動" -#: libraries/relation.lib.php:110 +#: libraries/relation.lib.php:105 msgid "Display Features" msgstr "功能顯示" -#: libraries/relation.lib.php:116 +#: libraries/relation.lib.php:111 msgid "Creation of PDFs" msgstr "建立 PDF" -#: libraries/relation.lib.php:120 +#: libraries/relation.lib.php:115 msgid "Displaying Column Comments" msgstr "顯示欄位註解" -#: libraries/relation.lib.php:125 +#: libraries/relation.lib.php:120 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "請參看說明文件查詢如何更新 Column_comments 資料表" -#: libraries/relation.lib.php:130 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 msgid "Bookmarked SQL query" msgstr "SQL 語法書籤" -#: libraries/relation.lib.php:134 querywindow.php:99 querywindow.php:207 +#: libraries/relation.lib.php:129 querywindow.php:98 querywindow.php:205 msgid "SQL history" msgstr "SQL 歷程" -#: libraries/relation.lib.php:146 +#: libraries/relation.lib.php:141 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:148 +#: libraries/relation.lib.php:143 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" -#: libraries/relation.lib.php:149 +#: libraries/relation.lib.php:144 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:150 +#: libraries/relation.lib.php:145 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:151 +#: libraries/relation.lib.php:146 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1158 +#: libraries/relation.lib.php:1153 msgid "no description" msgstr "沒有說明" @@ -3477,7 +3526,7 @@ msgstr "沒有說明" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:53 server_replication.php:346 +#: libraries/replication_gui.lib.php:53 server_replication.php:345 msgid "Change or reconfigure master server" msgstr "" @@ -3489,17 +3538,12 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:711 -#: server_privileges.php:714 server_privileges.php:721 -#: server_synchronize.php:1170 +#: libraries/replication_gui.lib.php:261 server_privileges.php:710 +#: server_privileges.php:713 server_privileges.php:720 +#: server_synchronize.php:1169 msgid "User name" msgstr "使用者名稱" -#: libraries/replication_gui.lib.php:69 server_synchronize.php:1162 -#, fuzzy -msgid "Port" -msgstr "排序" - #: libraries/replication_gui.lib.php:105 msgid "Master status" msgstr "" @@ -3515,8 +3559,8 @@ msgid "Variable" msgstr "資訊" #: libraries/replication_gui.lib.php:117 server_status.php:737 -#: tbl_change.php:322 tbl_printview.php:368 tbl_select.php:137 -#: tbl_structure.php:728 +#: tbl_change.php:317 tbl_printview.php:367 tbl_select.php:136 +#: tbl_structure.php:726 msgid "Value" msgstr "值" @@ -3530,38 +3574,38 @@ msgid "" "this list." msgstr "" -#: libraries/replication_gui.lib.php:242 server_replication.php:193 +#: libraries/replication_gui.lib.php:242 server_replication.php:192 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:256 server_privileges.php:716 +#: libraries/replication_gui.lib.php:256 server_privileges.php:715 msgid "Any user" msgstr "任何使用者" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:717 -#: server_privileges.php:784 server_privileges.php:808 -#: server_privileges.php:1920 server_privileges.php:1950 +#: libraries/replication_gui.lib.php:348 server_privileges.php:716 +#: server_privileges.php:783 server_privileges.php:807 +#: server_privileges.php:1924 server_privileges.php:1954 msgid "Use text field" msgstr "文字輸入" -#: libraries/replication_gui.lib.php:304 server_privileges.php:764 +#: libraries/replication_gui.lib.php:304 server_privileges.php:763 msgid "Any host" msgstr "任何主機" -#: libraries/replication_gui.lib.php:308 server_privileges.php:768 +#: libraries/replication_gui.lib.php:308 server_privileges.php:767 msgid "Local" msgstr "本地" -#: libraries/replication_gui.lib.php:314 server_privileges.php:773 +#: libraries/replication_gui.lib.php:314 server_privileges.php:772 msgid "This Host" msgstr "指定主機" -#: libraries/replication_gui.lib.php:320 server_privileges.php:779 +#: libraries/replication_gui.lib.php:320 server_privileges.php:778 msgid "Use Host Table" msgstr "使用主機資料表" -#: libraries/replication_gui.lib.php:333 server_privileges.php:792 +#: libraries/replication_gui.lib.php:333 server_privileges.php:791 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -3588,8 +3632,8 @@ msgstr "不知名語言: %1$s." msgid "Servers" msgstr "伺服器" -#: libraries/server_links.inc.php:52 server_engines.php:111 -#: server_engines.php:115 server_status.php:414 test/theme.php:104 +#: libraries/server_links.inc.php:52 server_engines.php:125 +#: server_engines.php:129 server_status.php:414 test/theme.php:104 msgid "Variables" msgstr "資訊" @@ -3610,12 +3654,12 @@ msgstr "二進制記錄" msgid "Processes" msgstr "處理" -#: libraries/server_links.inc.php:91 server_synchronize.php:1091 -#: server_synchronize.php:1099 +#: libraries/server_links.inc.php:91 server_synchronize.php:1090 +#: server_synchronize.php:1098 msgid "Synchronize" msgstr "" -#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1109 +#: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1108 #, fuzzy msgid "Source database" msgstr "搜索資料庫" @@ -3634,7 +3678,7 @@ msgstr "" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1111 +#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1110 #, fuzzy msgid "Target database" msgstr "搜索資料庫" @@ -3655,11 +3699,11 @@ msgstr "在資料庫 %s 執行以下指令" msgid "Columns" msgstr "欄位名稱" -#: libraries/sql_query_form.lib.php:342 sql.php:664 sql.php:665 sql.php:682 +#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "將此 SQL 語法加入書籤" -#: libraries/sql_query_form.lib.php:349 sql.php:676 +#: libraries/sql_query_form.lib.php:349 sql.php:669 msgid "Let every user access this bookmark" msgstr "所有用者可讀取此書籤" @@ -3749,12 +3793,12 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "SQL 分析程式未能啟動,請檢查是否已將 %s文件%s 內的 PHP 檔案安裝。" -#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:139 -#: libraries/tbl_links.inc.php:140 +#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 +#: libraries/tbl_links.inc.php:139 msgid "Table seems to be empty!" msgstr "" -#: libraries/tbl_links.inc.php:148 +#: libraries/tbl_links.inc.php:147 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" @@ -3786,23 +3830,23 @@ msgid "" "escaping or quotes, using this format: a" msgstr "預設值: 請只輸入該預設值, 無需加上任何反斜線或引號" -#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1263 -#: pdf_schema.php:1284 tbl_printview.php:142 tbl_structure.php:179 +#: libraries/tbl_properties.inc.php:107 pdf_schema.php:1262 +#: pdf_schema.php:1283 tbl_printview.php:141 tbl_structure.php:178 msgid "Attributes" msgstr "屬性" -#: libraries/tbl_properties.inc.php:136 +#: libraries/tbl_properties.inc.php:135 #, php-format msgid "" "For a list of available transformation options and their MIME type " "transformations, click on %stransformation descriptions%s" msgstr "有關可使用之轉換方式選項及 MINE 類型轉換選項, 請查看 %s轉換方式說明%s" -#: libraries/tbl_properties.inc.php:144 +#: libraries/tbl_properties.inc.php:143 msgid "Transformation options" msgstr "轉換方式選項" -#: libraries/tbl_properties.inc.php:145 +#: libraries/tbl_properties.inc.php:144 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
                            If you ever need to put a backslash (\"\\\") or a single " @@ -3812,47 +3856,47 @@ msgstr "" "請用以下的格式輸入轉換選項值: 'a', 100, b,'c'...
                            如您需要輸入反斜線 " "(\"\\\") 或單引號 (\"'\") 請再加上反斜線 (例如 '\\\\xyz' or 'a\\'b')." -#: libraries/tbl_properties.inc.php:392 +#: libraries/tbl_properties.inc.php:391 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "不適用" -#: libraries/tbl_properties.inc.php:393 +#: libraries/tbl_properties.inc.php:392 msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:579 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:578 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
                            Please ask the " "author what %s does." msgstr "這個轉換方式沒有說明.
                            請向作者查詢 %s 是甚麼用途." -#: libraries/tbl_properties.inc.php:725 server_engines.php:57 -#: tbl_operations.php:354 +#: libraries/tbl_properties.inc.php:724 server_engines.php:56 +#: tbl_operations.php:352 msgid "Storage Engine" msgstr "儲存引擎" -#: libraries/tbl_properties.inc.php:754 +#: libraries/tbl_properties.inc.php:753 msgid "PARTITION definition" msgstr "" -#: libraries/tbl_properties.inc.php:775 pdf_pages.php:502 +#: libraries/tbl_properties.inc.php:774 pdf_pages.php:501 #: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214 -#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1124 tbl_indexes.php:247 -#: tbl_relation.php:565 +#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1022 tbl_indexes.php:246 +#: tbl_relation.php:563 msgid "Save" msgstr "儲存" -#: libraries/tbl_properties.inc.php:779 tbl_structure.php:541 +#: libraries/tbl_properties.inc.php:778 tbl_structure.php:539 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "新增 %s 個欄位" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:535 +#: libraries/tbl_properties.inc.php:782 tbl_structure.php:533 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -4026,8 +4070,8 @@ msgstr "" msgid "Custom color" msgstr "" -#: main.php:162 pdf_pages.php:362 setup/lib/FormDisplay.tpl.php:216 -#: tbl_change.php:1173 +#: main.php:162 pdf_pages.php:361 setup/lib/FormDisplay.tpl.php:216 +#: tbl_change.php:1071 msgid "Reset" msgstr "重設" @@ -4035,8 +4079,8 @@ msgstr "重設" msgid "Protocol version" msgstr "通訊協定版本" -#: main.php:188 server_privileges.php:1381 server_privileges.php:1528 -#: server_privileges.php:1642 server_privileges.php:2060 +#: main.php:188 server_privileges.php:1385 server_privileges.php:1532 +#: server_privileges.php:1646 server_privileges.php:2064 #: server_processlist.php:53 msgid "User" msgstr "使用者" @@ -4117,21 +4161,28 @@ msgid "" "has been configured." msgstr "" -#: main.php:330 +#: main.php:314 +#, php-format +msgid "" +"The additional features for working with linked tables have been " +"deactivated. To find out why click %shere%s." +msgstr "關聯資料表的附加功能未能啟動, %s請按此%s 查出問題原因." + +#: main.php:329 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:345 +#: main.php:344 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: main.php:357 +#: main.php:356 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -4142,104 +4193,104 @@ msgstr "" msgid "Reload navigation frame" msgstr "" -#: navigation.php:204 server_databases.php:370 server_synchronize.php:1190 +#: navigation.php:203 server_databases.php:368 server_synchronize.php:1189 msgid "No databases" msgstr "沒有資料庫" -#: navigation.php:298 +#: navigation.php:297 msgid "Filter" msgstr "" -#: navigation.php:299 setup/frames/index.inc.php:218 +#: navigation.php:298 setup/frames/index.inc.php:218 #: setup/lib/messages.inc.php:41 #, fuzzy msgid "Clear" msgstr "日曆" -#: navigation.php:330 navigation.php:331 +#: navigation.php:329 navigation.php:330 #, fuzzy msgctxt "short form" msgid "Create table" msgstr "建立新一頁" -#: navigation.php:333 navigation.php:495 +#: navigation.php:332 navigation.php:494 msgid "Please select a database" msgstr "請選擇資料庫" -#: pdf_pages.php:40 pdf_pages.php:46 pdf_pages.php:52 pdf_pages.php:57 +#: pdf_pages.php:39 pdf_pages.php:45 pdf_pages.php:51 pdf_pages.php:56 #, php-format msgid "%s table not found or not set in %s" msgstr "%s 資料表找不到或還未在 %s 設定" -#: pdf_pages.php:265 +#: pdf_pages.php:264 msgid "Please choose a page to edit" msgstr "請選擇需要編輯的頁碼" -#: pdf_pages.php:303 pmd_pdf.php:113 +#: pdf_pages.php:302 pmd_pdf.php:111 msgid "Create a page" msgstr "建立新一頁" -#: pdf_pages.php:309 +#: pdf_pages.php:308 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "頁碼:" -#: pdf_pages.php:313 +#: pdf_pages.php:312 #, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "自動格式" -#: pdf_pages.php:315 +#: pdf_pages.php:314 msgid "Internal relations" msgstr "內部關聯" -#: pdf_pages.php:338 +#: pdf_pages.php:337 msgid "Select Tables" msgstr "選擇資料表" -#: pdf_pages.php:361 +#: pdf_pages.php:360 msgid "Toggle scratchboard" msgstr "轉換便條" -#: pdf_pages.php:524 +#: pdf_pages.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" msgstr "本頁的參考到資料表已不存在. 您希望刪除這些參考嗎?" -#: pdf_schema.php:635 +#: pdf_schema.php:634 #, fuzzy, php-format #| msgid "The \"%s\" table doesn't exist!" msgid "The %s table doesn't exist!" msgstr "資料表 \"%s\" 不存在!" -#: pdf_schema.php:671 +#: pdf_schema.php:670 #, php-format msgid "Please configure the coordinates for table %s" msgstr "請設定表格 %s 內的坐標" -#: pdf_schema.php:994 +#: pdf_schema.php:993 #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" msgstr "\"%s\" 資料庫概要 - 第 %s 頁" -#: pdf_schema.php:1012 +#: pdf_schema.php:1011 msgid "No tables" msgstr "沒有資料表" -#: pdf_schema.php:1031 pdf_schema.php:1140 +#: pdf_schema.php:1030 pdf_schema.php:1139 msgid "Relational schema" msgstr "關聯概要" -#: pdf_schema.php:1115 +#: pdf_schema.php:1114 msgid "Table of contents" msgstr "目錄" -#: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:145 -#: tbl_structure.php:182 tbl_tracking.php:277 +#: pdf_schema.php:1265 pdf_schema.php:1286 tbl_printview.php:144 +#: tbl_structure.php:181 tbl_tracking.php:272 msgid "Extra" msgstr "附加" @@ -4251,7 +4302,7 @@ msgstr "" msgid "Save position" msgstr "" -#: pmd_general.php:70 server_synchronize.php:428 server_synchronize.php:871 +#: pmd_general.php:70 server_synchronize.php:427 server_synchronize.php:870 #, fuzzy msgid "Create table" msgstr "建立新一頁" @@ -4325,32 +4376,32 @@ msgid "" "appropriate column name." msgstr "" -#: pmd_pdf.php:62 +#: pmd_pdf.php:60 #, fuzzy msgid "Page has been created" msgstr "資料表 %s 已被刪除" -#: pmd_pdf.php:64 +#: pmd_pdf.php:62 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:84 +#: pmd_pdf.php:82 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:88 +#: pmd_pdf.php:86 msgid "recommended" msgstr "" -#: pmd_pdf.php:93 +#: pmd_pdf.php:91 msgid "to/from page" msgstr "" -#: querywindow.php:94 +#: querywindow.php:93 msgid "Import files" msgstr "輸入檔案" -#: querywindow.php:105 +#: querywindow.php:104 msgid "All" msgstr "全部" @@ -4397,241 +4448,241 @@ msgstr "資料" msgid "Character Sets and Collations" msgstr "文字編碼及校對" -#: server_databases.php:51 +#: server_databases.php:49 msgid "No databases selected." msgstr "沒有資料庫選擇." -#: server_databases.php:62 +#: server_databases.php:60 #, php-format msgid "%s databases have been dropped successfully." msgstr "%s 個資料庫已成功刪除." -#: server_databases.php:87 +#: server_databases.php:85 msgid "Databases statistics" msgstr "資料庫統計" -#: server_databases.php:116 server_status.php:370 +#: server_databases.php:114 server_status.php:370 #: setup/lib/messages.inc.php:114 msgid "Tables" msgstr "個資料表" -#: server_databases.php:194 server_replication.php:180 -#: server_replication.php:208 +#: server_databases.php:192 server_replication.php:179 +#: server_replication.php:207 msgid "Master replication" msgstr "" -#: server_databases.php:196 server_replication.php:247 +#: server_databases.php:194 server_replication.php:246 msgid "Slave replication" msgstr "" -#: server_databases.php:229 +#: server_databases.php:227 #, fuzzy msgid "Jump to database" msgstr "沒有資料庫" -#: server_databases.php:266 +#: server_databases.php:264 msgid "Not replicated" msgstr "" -#: server_databases.php:272 +#: server_databases.php:270 #, fuzzy #| msgid "Replication" msgid "Replicated" msgstr "複製" -#: server_databases.php:288 +#: server_databases.php:286 #, php-format msgid "Check privileges for database "%s"." msgstr "查詢資料庫 "%s" 之權限." -#: server_databases.php:292 server_databases.php:293 +#: server_databases.php:290 server_databases.php:291 msgid "Check Privileges" msgstr "查詢權限" -#: server_databases.php:357 server_databases.php:358 +#: server_databases.php:355 server_databases.php:356 msgid "Enable Statistics" msgstr "啟動統計數據" -#: server_databases.php:361 server_databases.php:362 +#: server_databases.php:359 server_databases.php:360 msgid "Disable Statistics" msgstr "停止統計數據" -#: server_databases.php:365 +#: server_databases.php:363 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." msgstr "註: 啟動資料庫統計數據可能會產生大量由 Web 伺服器及 MySQL 之間的流量." -#: server_engines.php:48 +#: server_engines.php:47 msgid "Storage Engines" msgstr "儲存引擎" -#: server_export.php:20 +#: server_export.php:18 msgid "View dump (schema) of databases" msgstr "顯示資料庫概要 (schema)" -#: server_privileges.php:24 server_privileges.php:266 +#: server_privileges.php:23 server_privileges.php:265 msgid "Includes all privileges except GRANT." msgstr "包括所有權限除了授權 (GRNANT)." -#: server_privileges.php:25 server_privileges.php:192 -#: server_privileges.php:515 +#: server_privileges.php:24 server_privileges.php:191 +#: server_privileges.php:514 msgid "Allows altering the structure of existing tables." msgstr "容許修改現有資料表的結構." -#: server_privileges.php:26 server_privileges.php:208 -#: server_privileges.php:521 +#: server_privileges.php:25 server_privileges.php:207 +#: server_privileges.php:520 msgid "Allows altering and dropping stored routines." msgstr "容許修改及刪除儲存程序." -#: server_privileges.php:27 server_privileges.php:184 -#: server_privileges.php:514 +#: server_privileges.php:26 server_privileges.php:183 +#: server_privileges.php:513 msgid "Allows creating new databases and tables." msgstr "容許建立新資料庫及資料表." -#: server_privileges.php:28 server_privileges.php:207 -#: server_privileges.php:520 +#: server_privileges.php:27 server_privileges.php:206 +#: server_privileges.php:519 msgid "Allows creating stored routines." msgstr "容許建立儲存程序" -#: server_privileges.php:29 server_privileges.php:514 +#: server_privileges.php:28 server_privileges.php:513 msgid "Allows creating new tables." msgstr "容許建立新資料表." -#: server_privileges.php:30 server_privileges.php:195 -#: server_privileges.php:518 +#: server_privileges.php:29 server_privileges.php:194 +#: server_privileges.php:517 msgid "Allows creating temporary tables." msgstr "容許建立暫時性資料表." -#: server_privileges.php:31 server_privileges.php:209 -#: server_privileges.php:554 +#: server_privileges.php:30 server_privileges.php:208 +#: server_privileges.php:553 msgid "Allows creating, dropping and renaming user accounts." msgstr "容許建立、刪除及重新命名使用者戶口." -#: server_privileges.php:32 server_privileges.php:199 -#: server_privileges.php:203 server_privileges.php:526 -#: server_privileges.php:530 +#: server_privileges.php:31 server_privileges.php:198 +#: server_privileges.php:202 server_privileges.php:525 +#: server_privileges.php:529 msgid "Allows creating new views." msgstr "容許建立新的檢視." -#: server_privileges.php:33 server_privileges.php:183 -#: server_privileges.php:506 +#: server_privileges.php:32 server_privileges.php:182 +#: server_privileges.php:505 msgid "Allows deleting data." msgstr "容許刪除記錄." -#: server_privileges.php:34 server_privileges.php:185 -#: server_privileges.php:517 +#: server_privileges.php:33 server_privileges.php:184 +#: server_privileges.php:516 msgid "Allows dropping databases and tables." msgstr "容許刪除資料庫及資料表." -#: server_privileges.php:35 server_privileges.php:517 +#: server_privileges.php:34 server_privileges.php:516 msgid "Allows dropping tables." msgstr "容許刪除資料表." -#: server_privileges.php:36 server_privileges.php:200 -#: server_privileges.php:534 +#: server_privileges.php:35 server_privileges.php:199 +#: server_privileges.php:533 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:37 server_privileges.php:210 -#: server_privileges.php:522 +#: server_privileges.php:36 server_privileges.php:209 +#: server_privileges.php:521 msgid "Allows executing stored routines." msgstr "容許執行儲存程序." -#: server_privileges.php:38 server_privileges.php:189 -#: server_privileges.php:509 +#: server_privileges.php:37 server_privileges.php:188 +#: server_privileges.php:508 msgid "Allows importing data from and exporting data into files." msgstr "容許輸入及輸出數據到檔案." -#: server_privileges.php:39 server_privileges.php:540 +#: server_privileges.php:38 server_privileges.php:539 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "容許新增使用者及權限而無需重新讀取權限資料表." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:516 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:515 msgid "Allows creating and dropping indexes." msgstr "容許建立及刪除索引." -#: server_privileges.php:41 server_privileges.php:181 -#: server_privileges.php:442 server_privileges.php:504 +#: server_privileges.php:40 server_privileges.php:180 +#: server_privileges.php:441 server_privileges.php:503 msgid "Allows inserting and replacing data." msgstr "容許新增及取代數據." -#: server_privileges.php:42 server_privileges.php:196 -#: server_privileges.php:549 +#: server_privileges.php:41 server_privileges.php:195 +#: server_privileges.php:548 msgid "Allows locking tables for the current thread." msgstr "容許鎖上現時連線之資料表." -#: server_privileges.php:43 server_privileges.php:646 -#: server_privileges.php:648 +#: server_privileges.php:42 server_privileges.php:645 +#: server_privileges.php:647 msgid "Limits the number of new connections the user may open per hour." msgstr "限制每小時使用者開啟新連線的數目." -#: server_privileges.php:44 server_privileges.php:634 -#: server_privileges.php:636 +#: server_privileges.php:43 server_privileges.php:633 +#: server_privileges.php:635 msgid "Limits the number of queries the user may send to the server per hour." msgstr "限制每小時使用者查詢的數目." -#: server_privileges.php:45 server_privileges.php:640 -#: server_privileges.php:642 +#: server_privileges.php:44 server_privileges.php:639 +#: server_privileges.php:641 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "限制每小時使用者更改資料表及數據表之指令的數目." -#: server_privileges.php:46 server_privileges.php:652 -#: server_privileges.php:654 +#: server_privileges.php:45 server_privileges.php:651 +#: server_privileges.php:653 msgid "Limits the number of simultaneous connections the user may have." msgstr "限制每個使用者之同步連線." -#: server_privileges.php:47 server_privileges.php:188 -#: server_privileges.php:544 +#: server_privileges.php:46 server_privileges.php:187 +#: server_privileges.php:543 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:48 server_privileges.php:190 -#: server_privileges.php:448 server_privileges.php:550 +#: server_privileges.php:47 server_privileges.php:189 +#: server_privileges.php:447 server_privileges.php:549 msgid "Has no effect in this MySQL version." msgstr "於本 MySQL 版本無效." -#: server_privileges.php:49 server_privileges.php:186 -#: server_privileges.php:545 +#: server_privileges.php:48 server_privileges.php:185 +#: server_privileges.php:544 msgid "Allows reloading server settings and flushing the server's caches." msgstr "容許重新讀取伺服器設定及強行更新伺服器快取記憶." -#: server_privileges.php:50 server_privileges.php:198 -#: server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:197 +#: server_privileges.php:551 msgid "Allows the user to ask where the slaves / masters are." msgstr "容許用戶查詢 slaves / masters 在何處." -#: server_privileges.php:51 server_privileges.php:197 -#: server_privileges.php:553 +#: server_privileges.php:50 server_privileges.php:196 +#: server_privileges.php:552 msgid "Needed for the replication slaves." msgstr "需要複製的 slaves." -#: server_privileges.php:52 server_privileges.php:180 -#: server_privileges.php:439 server_privileges.php:503 +#: server_privileges.php:51 server_privileges.php:179 +#: server_privileges.php:438 server_privileges.php:502 msgid "Allows reading data." msgstr "容許讀取數據." -#: server_privileges.php:53 server_privileges.php:193 -#: server_privileges.php:547 +#: server_privileges.php:52 server_privileges.php:192 +#: server_privileges.php:546 msgid "Gives access to the complete list of databases." msgstr "可讀取整個資料庫清單." -#: server_privileges.php:54 server_privileges.php:204 -#: server_privileges.php:206 server_privileges.php:519 +#: server_privileges.php:53 server_privileges.php:203 +#: server_privileges.php:205 server_privileges.php:518 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "容許執行 SHOW CREATE VIEW 查詢." -#: server_privileges.php:55 server_privileges.php:187 -#: server_privileges.php:546 +#: server_privileges.php:54 server_privileges.php:186 +#: server_privileges.php:545 msgid "Allows shutting down the server." msgstr "容許停止伺服器." -#: server_privileges.php:56 server_privileges.php:194 -#: server_privileges.php:543 +#: server_privileges.php:55 server_privileges.php:193 +#: server_privileges.php:542 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -4640,157 +4691,157 @@ msgstr "" "容許連線, 就算超過了最大連線限制; 用於最高系統管理如設定整體權限或中止其他使" "用者指令." -#: server_privileges.php:57 server_privileges.php:201 -#: server_privileges.php:535 +#: server_privileges.php:56 server_privileges.php:200 +#: server_privileges.php:534 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "容許建立及刪除索引." -#: server_privileges.php:58 server_privileges.php:182 -#: server_privileges.php:445 server_privileges.php:505 +#: server_privileges.php:57 server_privileges.php:181 +#: server_privileges.php:444 server_privileges.php:504 msgid "Allows changing data." msgstr "容許更新數據." -#: server_privileges.php:59 server_privileges.php:260 +#: server_privileges.php:58 server_privileges.php:259 msgid "No privileges." msgstr "沒有權限." -#: server_privileges.php:302 server_privileges.php:303 +#: server_privileges.php:301 server_privileges.php:302 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "不適用" -#: server_privileges.php:431 server_privileges.php:566 -#: server_privileges.php:1710 server_privileges.php:1716 +#: server_privileges.php:430 server_privileges.php:565 +#: server_privileges.php:1714 server_privileges.php:1720 msgid "Table-specific privileges" msgstr "指定資料表權限" -#: server_privileges.php:432 server_privileges.php:574 -#: server_privileges.php:1532 +#: server_privileges.php:431 server_privileges.php:573 +#: server_privileges.php:1536 msgid " Note: MySQL privilege names are expressed in English " msgstr "注意: MySQL 權限名稱會以英語顯示" -#: server_privileges.php:563 server_privileges.php:1531 +#: server_privileges.php:562 server_privileges.php:1535 msgid "Global privileges" msgstr "整體權限" -#: server_privileges.php:565 server_privileges.php:1710 +#: server_privileges.php:564 server_privileges.php:1714 msgid "Database-specific privileges" msgstr "指定資料庫權限" -#: server_privileges.php:610 +#: server_privileges.php:609 msgid "Administration" msgstr "系統管理" -#: server_privileges.php:630 +#: server_privileges.php:629 msgid "Resource limits" msgstr "資源限制" -#: server_privileges.php:631 +#: server_privileges.php:630 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "註: 設定這些選項為 0 (零) 可解除限制." -#: server_privileges.php:708 +#: server_privileges.php:707 msgid "Login Information" msgstr "登入資訊" -#: server_privileges.php:802 +#: server_privileges.php:801 msgid "Do not change the password" msgstr "請不要更改密碼" -#: server_privileges.php:835 server_privileges.php:2197 +#: server_privileges.php:834 server_privileges.php:2201 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "找不到使用者" -#: server_privileges.php:879 +#: server_privileges.php:878 #, php-format msgid "The user %s already exists!" msgstr "使用者 %s 己存在!" -#: server_privileges.php:962 +#: server_privileges.php:961 msgid "You have added a new user." msgstr "您已新增了一個新使用者." -#: server_privileges.php:1183 +#: server_privileges.php:1184 #, php-format msgid "You have updated the privileges for %s." msgstr "您已經更新了 %s 的權限." -#: server_privileges.php:1207 +#: server_privileges.php:1208 #, php-format msgid "You have revoked the privileges for %s" msgstr "您已移除這位使用者的權限: %s" -#: server_privileges.php:1243 +#: server_privileges.php:1244 #, php-format msgid "The password for %s was changed successfully." msgstr "%s 的密碼已成功更改." -#: server_privileges.php:1263 +#: server_privileges.php:1264 #, php-format msgid "Deleting %s" msgstr "刪除 %s" -#: server_privileges.php:1274 +#: server_privileges.php:1275 msgid "No users selected for deleting!" msgstr "並未選擇需要刪除之使用者!" -#: server_privileges.php:1277 +#: server_privileges.php:1278 msgid "Reloading the privileges" msgstr "重新讀取權限" -#: server_privileges.php:1292 +#: server_privileges.php:1296 msgid "The selected users have been deleted successfully." msgstr "選擇的使用者已成功刪除." -#: server_privileges.php:1327 +#: server_privileges.php:1331 msgid "The privileges were reloaded successfully." msgstr "權限已成功重新讀取." -#: server_privileges.php:1355 server_privileges.php:1641 +#: server_privileges.php:1359 server_privileges.php:1645 msgid "Edit Privileges" msgstr "編輯權限" -#: server_privileges.php:1364 +#: server_privileges.php:1368 msgid "Revoke" msgstr "移除" -#: server_privileges.php:1396 +#: server_privileges.php:1400 msgid "User overview" msgstr "使用者一覽" -#: server_privileges.php:1533 server_privileges.php:1715 -#: server_privileges.php:2064 +#: server_privileges.php:1537 server_privileges.php:1719 +#: server_privileges.php:2068 msgid "Grant" msgstr "授權" -#: server_privileges.php:1552 server_privileges.php:2154 +#: server_privileges.php:1556 server_privileges.php:2158 msgid "Any" msgstr "任何" -#: server_privileges.php:1601 server_privileges.php:1625 -#: server_privileges.php:2019 server_privileges.php:2208 +#: server_privileges.php:1605 server_privileges.php:1629 +#: server_privileges.php:2023 server_privileges.php:2212 msgid "Add a new User" msgstr "新增使用者" -#: server_privileges.php:1606 +#: server_privileges.php:1610 msgid "Remove selected users" msgstr "移除已選擇使用者" -#: server_privileges.php:1609 +#: server_privileges.php:1613 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "廢除使用者所有有效之權限並刪除." -#: server_privileges.php:1610 server_privileges.php:1611 -#: server_privileges.php:1612 +#: server_privileges.php:1614 server_privileges.php:1615 +#: server_privileges.php:1616 msgid "Drop the databases that have the same names as the users." msgstr "刪除與使用者相同名稱之資料庫." -#: server_privileges.php:1628 +#: server_privileges.php:1632 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -4802,91 +4853,91 @@ msgstr "" "表, 資料表內容將可能與實際使用者情況有異. 在這情況下, 您應在繼續前 %s重新載" "入%s 權限資料表." -#: server_privileges.php:1676 +#: server_privileges.php:1680 msgid "The selected user was not found in the privilege table." msgstr "選擇的使用者在權限資料表內找不到." -#: server_privileges.php:1716 +#: server_privileges.php:1720 msgid "Column-specific privileges" msgstr "指定欄位權限" -#: server_privileges.php:1917 +#: server_privileges.php:1921 msgid "Add privileges on the following database" msgstr "於以下資料庫加入權限" -#: server_privileges.php:1935 +#: server_privileges.php:1939 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "萬用符號 _ 及 % 應正確地加入 \\ " -#: server_privileges.php:1938 +#: server_privileges.php:1942 msgid "Add privileges on the following table" msgstr "於以下資料表加入權限" -#: server_privileges.php:1995 +#: server_privileges.php:1999 msgid "Change Login Information / Copy User" msgstr "更改登入資訊 / 複製使用者" -#: server_privileges.php:1998 +#: server_privileges.php:2002 msgid "Create a new user with the same privileges and ..." msgstr "建立新使用者及使用相同之權限, 及 ..." -#: server_privileges.php:2000 +#: server_privileges.php:2004 msgid "... keep the old one." msgstr "... 保留舊使用者." -#: server_privileges.php:2001 +#: server_privileges.php:2005 msgid " ... delete the old one from the user tables." msgstr " ... 刪除舊使用者." -#: server_privileges.php:2002 +#: server_privileges.php:2006 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr " ... 廢除所有舊使用者有效之權限並刪除." -#: server_privileges.php:2003 +#: server_privileges.php:2007 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr " ... 刪除舊使用者及重新讀取權限資料表." -#: server_privileges.php:2025 +#: server_privileges.php:2029 msgid "Database for user" msgstr "" -#: server_privileges.php:2029 +#: server_privileges.php:2033 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "不適用" -#: server_privileges.php:2030 +#: server_privileges.php:2034 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2031 +#: server_privileges.php:2035 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2034 +#: server_privileges.php:2038 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "查詢資料庫 "%s" 之權限." -#: server_privileges.php:2057 +#: server_privileges.php:2061 #, php-format msgid "Users having access to "%s"" msgstr "可讀取 "%s" 之使用者" -#: server_privileges.php:2165 +#: server_privileges.php:2169 msgid "global" msgstr "整體" -#: server_privileges.php:2167 +#: server_privileges.php:2171 msgid "database-specific" msgstr "指定資料庫" -#: server_privileges.php:2169 +#: server_privileges.php:2173 msgid "wildcard" msgstr "萬用字元" @@ -4905,54 +4956,54 @@ msgstr "phpMyAdmin 無法中斷指令 %s. 可能這指令已經結束." msgid "ID" msgstr "ID" -#: server_replication.php:50 +#: server_replication.php:49 msgid "Unknown error" msgstr "" -#: server_replication.php:57 +#: server_replication.php:56 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:64 +#: server_replication.php:63 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:70 +#: server_replication.php:69 msgid "Unable to change master" msgstr "" -#: server_replication.php:73 +#: server_replication.php:72 #, php-format msgid "Master server changed succesfully to %s" msgstr "" -#: server_replication.php:181 +#: server_replication.php:180 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:183 server_status.php:391 +#: server_replication.php:182 server_status.php:391 #, fuzzy msgid "Show master status" msgstr "顯示 slave 狀態" -#: server_replication.php:186 +#: server_replication.php:185 msgid "Show connected slaves" msgstr "" -#: server_replication.php:209 +#: server_replication.php:208 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:216 +#: server_replication.php:215 msgid "Master configuration" msgstr "" -#: server_replication.php:217 +#: server_replication.php:216 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -4961,110 +5012,110 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:220 +#: server_replication.php:219 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:221 +#: server_replication.php:220 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:224 +#: server_replication.php:223 #, fuzzy msgid "Please select databases:" msgstr "請選擇資料庫" -#: server_replication.php:227 +#: server_replication.php:226 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: server_replication.php:229 +#: server_replication.php:228 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: server_replication.php:292 +#: server_replication.php:291 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:295 +#: server_replication.php:294 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:304 +#: server_replication.php:303 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:307 +#: server_replication.php:306 msgid "See slave status table" msgstr "" -#: server_replication.php:310 +#: server_replication.php:309 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:321 +#: server_replication.php:320 msgid "Control slave:" msgstr "" -#: server_replication.php:324 +#: server_replication.php:323 #, fuzzy msgid "Full start" msgstr "全文檢索" -#: server_replication.php:324 +#: server_replication.php:323 msgid "Full stop" msgstr "" -#: server_replication.php:325 +#: server_replication.php:324 msgid "Reset slave" msgstr "" -#: server_replication.php:326 +#: server_replication.php:325 #, php-format msgid "SQL Thread %s only" msgstr "" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 #, fuzzy msgid "Start" msgstr "Sat" -#: server_replication.php:326 server_replication.php:327 +#: server_replication.php:325 server_replication.php:326 msgid "Stop" msgstr "" -#: server_replication.php:327 +#: server_replication.php:326 #, php-format msgid "IO Thread %s only" msgstr "" -#: server_replication.php:331 +#: server_replication.php:330 msgid "Error management:" msgstr "" -#: server_replication.php:333 +#: server_replication.php:332 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:335 +#: server_replication.php:334 msgid "Skip current error" msgstr "" -#: server_replication.php:336 +#: server_replication.php:335 msgid "Skip next" msgstr "" -#: server_replication.php:339 +#: server_replication.php:338 msgid "errors." msgstr "" -#: server_replication.php:354 +#: server_replication.php:353 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -5768,112 +5819,112 @@ msgstr "查詢方式" msgid "Replication status" msgstr "複製" -#: server_synchronize.php:93 +#: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:96 +#: server_synchronize.php:95 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:121 server_synchronize.php:124 tbl_create.php:77 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:264 +#: server_synchronize.php:263 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:271 +#: server_synchronize.php:270 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:399 server_synchronize.php:838 +#: server_synchronize.php:398 server_synchronize.php:837 msgid "not present" msgstr "" -#: server_synchronize.php:423 server_synchronize.php:866 +#: server_synchronize.php:422 server_synchronize.php:865 msgid "Structure Difference" msgstr "" -#: server_synchronize.php:424 server_synchronize.php:867 +#: server_synchronize.php:423 server_synchronize.php:866 msgid "Data Difference" msgstr "" -#: server_synchronize.php:429 server_synchronize.php:872 +#: server_synchronize.php:428 server_synchronize.php:871 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:430 server_synchronize.php:873 +#: server_synchronize.php:429 server_synchronize.php:872 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:431 server_synchronize.php:874 +#: server_synchronize.php:430 server_synchronize.php:873 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:432 server_synchronize.php:875 +#: server_synchronize.php:431 server_synchronize.php:874 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:433 server_synchronize.php:876 +#: server_synchronize.php:432 server_synchronize.php:875 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:434 server_synchronize.php:877 +#: server_synchronize.php:433 server_synchronize.php:876 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:435 server_synchronize.php:878 +#: server_synchronize.php:434 server_synchronize.php:877 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:445 server_synchronize.php:889 +#: server_synchronize.php:444 server_synchronize.php:888 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:448 server_synchronize.php:893 +#: server_synchronize.php:447 server_synchronize.php:892 msgid "Apply Selected Changes" msgstr "" -#: server_synchronize.php:450 server_synchronize.php:895 +#: server_synchronize.php:449 server_synchronize.php:894 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:463 +#: server_synchronize.php:462 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:941 +#: server_synchronize.php:940 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:1002 +#: server_synchronize.php:1001 msgid "The following queries have been executed:" msgstr "" -#: server_synchronize.php:1121 +#: server_synchronize.php:1120 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1122 +#: server_synchronize.php:1121 #, fuzzy #| msgid "max. concurrent connections" msgid "Current connection" msgstr "最大連線數目" -#: server_synchronize.php:1151 +#: server_synchronize.php:1150 #, php-format msgid "Configuration: %s" msgstr "" -#: server_synchronize.php:1166 +#: server_synchronize.php:1165 msgid "Socket" msgstr "" -#: server_synchronize.php:1212 +#: server_synchronize.php:1211 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -6430,8 +6481,8 @@ msgstr "" #: setup/lib/messages.inc.php:128 msgid "" "Configure phpMyAdmin database to gain access to additional features, see " -"[a@../Documentation.html#linked-tables]linked-tables infrastructure[/a] in " -"documentation" +"[a@../Documentation.html#linked-tables]phpMyAdmin configuration storage[/a] " +"in documentation" msgstr "" #: setup/lib/messages.inc.php:129 setup/lib/messages.inc.php:290 @@ -7494,114 +7545,114 @@ msgstr "" msgid "ZIP" msgstr "" -#: sql.php:495 tbl_replace.php:385 +#: sql.php:494 tbl_replace.php:384 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: sql.php:512 +#: sql.php:511 msgid "Showing as PHP code" msgstr "" -#: sql.php:515 tbl_replace.php:359 +#: sql.php:514 tbl_replace.php:358 msgid "Showing SQL query" msgstr "" -#: sql.php:517 +#: sql.php:516 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "檢查 SQL" -#: sql.php:638 +#: sql.php:631 #, php-format msgid "Problems with indexes of table `%s`" msgstr "於資料表 `%s` 中有索引問題" -#: sql.php:670 +#: sql.php:663 msgid "Label" msgstr "書籤名稱" -#: tbl_addfield.php:188 tbl_alter.php:102 tbl_indexes.php:97 +#: tbl_addfield.php:185 tbl_alter.php:100 tbl_indexes.php:97 #, fuzzy, php-format msgid "Table %1$s has been altered successfully" msgstr "選擇的使用者已成功刪除." -#: tbl_change.php:250 tbl_select.php:26 tbl_select.php:27 tbl_select.php:30 -#: tbl_select.php:33 +#: tbl_change.php:245 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_select.php:32 msgid "Browse foreign values" msgstr "瀏覽外來值" -#: tbl_change.php:280 tbl_change.php:318 +#: tbl_change.php:275 tbl_change.php:313 msgid "Function" msgstr "函數" -#: tbl_change.php:300 tbl_indexes.php:199 tbl_indexes.php:224 +#: tbl_change.php:295 tbl_indexes.php:198 tbl_indexes.php:223 msgid "Ignore" msgstr "忽略" -#: tbl_change.php:725 +#: tbl_change.php:720 #, fuzzy #| msgid " Because of its length,
                            this field might not be editable " msgid " Because of its length,
                            this column might not be editable " msgstr " 由於長度限制
                            此欄位不能編輯 " -#: tbl_change.php:884 +#: tbl_change.php:835 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:890 +#: tbl_change.php:841 msgid "Binary - do not edit" msgstr "二進制碼 - 不能編輯" -#: tbl_change.php:983 +#: tbl_change.php:889 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:1128 +#: tbl_change.php:1026 msgid "Insert as new row" msgstr "儲存為新記錄" -#: tbl_change.php:1129 +#: tbl_change.php:1027 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:1130 +#: tbl_change.php:1028 msgid "Show insert query" msgstr "" -#: tbl_change.php:1145 +#: tbl_change.php:1043 msgid "Go back to previous page" msgstr "返回" -#: tbl_change.php:1146 +#: tbl_change.php:1044 msgid "Insert another new row" msgstr "新增一筆記錄" -#: tbl_change.php:1150 +#: tbl_change.php:1048 msgid "Go back to this page" msgstr "返回這頁" -#: tbl_change.php:1158 +#: tbl_change.php:1056 msgid "Edit next row" msgstr "編輯新一列" -#: tbl_change.php:1169 +#: tbl_change.php:1067 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "按 TAB 鍵跳到下一個數值, 或 CTRL+方向鍵 作隨意移動" -#: tbl_change.php:1207 +#: tbl_change.php:1105 #, php-format msgid "Restart insertion with %s rows" msgstr "" -#: tbl_create.php:57 +#: tbl_create.php:55 #, php-format msgid "Table %s already exists!" msgstr "資料表 %s 已存在!" -#: tbl_create.php:244 +#: tbl_create.php:241 #, fuzzy, php-format msgid "Table %1$s has been created." msgstr "資料表 %s 已被刪除" @@ -7622,203 +7673,203 @@ msgstr "無法將索引更名為 PRIMARY!" msgid "No index parts defined!" msgstr "部份索引資料還未定義!" -#: tbl_indexes.php:159 +#: tbl_indexes.php:158 msgid "Create a new index" msgstr "新增一組索引" -#: tbl_indexes.php:161 +#: tbl_indexes.php:160 msgid "Modify an index" msgstr "修改索引" -#: tbl_indexes.php:167 +#: tbl_indexes.php:166 msgid "Index name:" msgstr "索引名稱 :" -#: tbl_indexes.php:173 +#: tbl_indexes.php:172 msgid "Index type:" msgstr "索引類型 :" -#: tbl_indexes.php:183 +#: tbl_indexes.php:182 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "(\"PRIMARY\" 必須是主鍵的名稱以及是唯一一組主鍵!)" -#: tbl_indexes.php:250 +#: tbl_indexes.php:249 #, php-format msgid "Add to index  %s column(s)" msgstr "新增  %s  組索引欄" -#: tbl_indexes.php:255 tbl_structure.php:588 tbl_structure.php:599 +#: tbl_indexes.php:254 tbl_structure.php:586 tbl_structure.php:597 msgid "Column count has to be larger than zero." msgstr "欄位數目需要大於零." -#: tbl_move_copy.php:45 +#: tbl_move_copy.php:44 msgid "Can't move table to same one!" msgstr "無法移動到相同資料表!" -#: tbl_move_copy.php:47 +#: tbl_move_copy.php:46 msgid "Can't copy table to same one!" msgstr "無法複製到相同資料表!" -#: tbl_move_copy.php:55 +#: tbl_move_copy.php:54 #, php-format msgid "Table %s has been moved to %s." msgstr "資料表 %s 已經移動到 %s." -#: tbl_move_copy.php:57 +#: tbl_move_copy.php:56 #, php-format msgid "Table %s has been copied to %s." msgstr "已經將資料表 %s 複製為 %s." -#: tbl_move_copy.php:81 +#: tbl_move_copy.php:80 msgid "The table name is empty!" msgstr "請輸入資料表名稱!" -#: tbl_operations.php:248 +#: tbl_operations.php:246 msgid "Alter table order by" msgstr "根據欄位內容排序記錄" -#: tbl_operations.php:257 +#: tbl_operations.php:255 msgid "(singly)" msgstr "(只會排序現時的記錄)" -#: tbl_operations.php:277 +#: tbl_operations.php:275 msgid "Move table to (database.table):" msgstr "移動資料表到:(格式為 資料庫名稱.資料表名稱)" -#: tbl_operations.php:335 +#: tbl_operations.php:333 msgid "Table options" msgstr "資料表選項" -#: tbl_operations.php:339 +#: tbl_operations.php:337 msgid "Rename table to" msgstr "將資料表改名為" -#: tbl_operations.php:510 +#: tbl_operations.php:508 msgid "Copy table to (database.table):" msgstr "複製資料表到: (格式為 資料庫名稱.資料表名稱):" -#: tbl_operations.php:557 +#: tbl_operations.php:555 msgid "Switch to copied table" msgstr "跳到已複製之資料表" -#: tbl_operations.php:569 +#: tbl_operations.php:567 msgid "Table maintenance" msgstr "資料表維護" -#: tbl_operations.php:590 +#: tbl_operations.php:588 msgid "Defragment table" msgstr "整理資料表" -#: tbl_operations.php:629 +#: tbl_operations.php:627 #, php-format msgid "Table %s has been flushed" msgstr "資料表 %s 已被強迫更新" -#: tbl_operations.php:635 +#: tbl_operations.php:633 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "強迫更新資料表 (\"FLUSH\")" -#: tbl_operations.php:650 +#: tbl_operations.php:648 #, fuzzy msgid "Partition maintenance" msgstr "資料表維護" -#: tbl_operations.php:658 +#: tbl_operations.php:656 #, php-format msgid "Partition %s" msgstr "" -#: tbl_operations.php:661 +#: tbl_operations.php:659 msgid "Analyze" msgstr "" -#: tbl_operations.php:662 +#: tbl_operations.php:660 #, fuzzy msgid "Check" msgstr "捷克語" -#: tbl_operations.php:663 +#: tbl_operations.php:661 msgid "Optimize" msgstr "" -#: tbl_operations.php:664 +#: tbl_operations.php:662 msgid "Rebuild" msgstr "" -#: tbl_operations.php:665 +#: tbl_operations.php:663 #, fuzzy msgid "Repair" msgstr "修復資料表" -#: tbl_operations.php:677 +#: tbl_operations.php:675 msgid "Remove partitioning" msgstr "" -#: tbl_operations.php:703 +#: tbl_operations.php:701 msgid "Check referential integrity:" msgstr "檢查指示完整性:" -#: tbl_printview.php:73 +#: tbl_printview.php:72 msgid "Show tables" msgstr "顯示資料表" -#: tbl_printview.php:308 tbl_structure.php:655 +#: tbl_printview.php:307 tbl_structure.php:653 msgid "Space usage" msgstr "已使用空間" -#: tbl_printview.php:312 tbl_structure.php:659 +#: tbl_printview.php:311 tbl_structure.php:657 msgid "Usage" msgstr "使用" -#: tbl_printview.php:339 tbl_structure.php:686 +#: tbl_printview.php:338 tbl_structure.php:684 msgid "Effective" msgstr "實際" -#: tbl_printview.php:364 tbl_structure.php:724 +#: tbl_printview.php:363 tbl_structure.php:722 msgid "Row Statistics" msgstr "資料列統計數值" -#: tbl_printview.php:367 tbl_structure.php:727 +#: tbl_printview.php:366 tbl_structure.php:725 msgid "Statements" msgstr "敘述" -#: tbl_printview.php:378 tbl_structure.php:739 +#: tbl_printview.php:377 tbl_structure.php:737 msgid "static" msgstr "" -#: tbl_printview.php:380 tbl_structure.php:741 +#: tbl_printview.php:379 tbl_structure.php:739 msgid "dynamic" msgstr "動態" -#: tbl_printview.php:402 tbl_structure.php:784 +#: tbl_printview.php:401 tbl_structure.php:782 msgid "Row length" msgstr "資料列長度" -#: tbl_printview.php:412 tbl_structure.php:792 +#: tbl_printview.php:411 tbl_structure.php:790 msgid " Row size " msgstr "資料列大小" -#: tbl_relation.php:278 +#: tbl_relation.php:276 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" -#: tbl_relation.php:404 +#: tbl_relation.php:402 #, fuzzy #| msgid "Internal relations" msgid "Internal relation" msgstr "內部關聯" -#: tbl_relation.php:406 +#: tbl_relation.php:404 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: tbl_relation.php:412 +#: tbl_relation.php:410 msgid "Foreign key constraint" msgstr "" @@ -7826,232 +7877,232 @@ msgstr "" msgid "No rows selected" msgstr "並無資料列已選擇" -#: tbl_select.php:130 +#: tbl_select.php:129 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "以範例查詢 (萬用字元 : \"%\")" -#: tbl_select.php:136 +#: tbl_select.php:135 msgid "Operator" msgstr "操作員" -#: tbl_select.php:267 +#: tbl_select.php:266 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "選擇欄位 (至少一個)" -#: tbl_select.php:285 +#: tbl_select.php:284 msgid "Add search conditions (body of the \"where\" clause):" msgstr "增加檢索條件 (\"where\" 子句的主體)" -#: tbl_select.php:292 +#: tbl_select.php:291 msgid "Number of rows per page" msgstr "筆記錄/每頁" -#: tbl_select.php:298 +#: tbl_select.php:297 msgid "Display order:" msgstr "顯示次序" -#: tbl_structure.php:160 +#: tbl_structure.php:159 msgid "Browse distinct values" msgstr "瀏覽不同數值" -#: tbl_structure.php:360 +#: tbl_structure.php:358 #, fuzzy #| msgid "None" msgctxt "None for default" msgid "None" msgstr "不適用" -#: tbl_structure.php:373 +#: tbl_structure.php:371 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Column %s has been dropped" msgstr "資料表 %s 已被刪除" -#: tbl_structure.php:384 +#: tbl_structure.php:382 #, php-format msgid "A primary key has been added on %s" msgstr "主鍵已經新增到 %s" -#: tbl_structure.php:399 tbl_structure.php:413 tbl_structure.php:427 +#: tbl_structure.php:397 tbl_structure.php:411 tbl_structure.php:425 #, php-format msgid "An index has been added on %s" msgstr "索引已經新增到 %s" -#: tbl_structure.php:505 tbl_structure.php:507 +#: tbl_structure.php:503 tbl_structure.php:505 msgid "Relation view" msgstr "關聯檢視" -#: tbl_structure.php:514 tbl_structure.php:516 +#: tbl_structure.php:512 tbl_structure.php:514 msgid "Propose table structure" msgstr "分析資料表結構" -#: tbl_structure.php:539 +#: tbl_structure.php:537 #, fuzzy #| msgid "Add %s field(s)" msgid "Add column" msgstr "新增 %s 個欄位" -#: tbl_structure.php:553 +#: tbl_structure.php:551 msgid "At End of Table" msgstr "於資料表尾端" -#: tbl_structure.php:554 +#: tbl_structure.php:552 msgid "At Beginning of Table" msgstr "於資料表開頭" -#: tbl_structure.php:555 +#: tbl_structure.php:553 #, php-format msgid "After %s" msgstr "在 %s 之後" -#: tbl_structure.php:593 +#: tbl_structure.php:591 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "新增  %s  組索引欄" -#: tbl_structure.php:755 +#: tbl_structure.php:753 msgid "partitioned" msgstr "" -#: tbl_tracking.php:113 +#: tbl_tracking.php:109 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:186 +#: tbl_tracking.php:182 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "" -#: tbl_tracking.php:194 +#: tbl_tracking.php:190 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "" -#: tbl_tracking.php:202 +#: tbl_tracking.php:198 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "" -#: tbl_tracking.php:212 +#: tbl_tracking.php:208 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:219 +#: tbl_tracking.php:215 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:220 +#: tbl_tracking.php:216 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:229 +#: tbl_tracking.php:225 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:250 tbl_tracking.php:378 +#: tbl_tracking.php:245 tbl_tracking.php:373 msgid "Close" msgstr "" -#: tbl_tracking.php:261 +#: tbl_tracking.php:256 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:380 +#: tbl_tracking.php:375 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:396 tbl_tracking.php:503 +#: tbl_tracking.php:391 tbl_tracking.php:498 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "" -#: tbl_tracking.php:409 tbl_tracking.php:460 +#: tbl_tracking.php:404 tbl_tracking.php:455 #, fuzzy msgid "Date" msgstr "資料" -#: tbl_tracking.php:410 tbl_tracking.php:461 +#: tbl_tracking.php:405 tbl_tracking.php:456 #, fuzzy msgid "Username" msgstr "登入名稱:" -#: tbl_tracking.php:411 +#: tbl_tracking.php:406 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:462 +#: tbl_tracking.php:457 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:506 +#: tbl_tracking.php:501 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:507 +#: tbl_tracking.php:502 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:508 +#: tbl_tracking.php:503 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:520 +#: tbl_tracking.php:515 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:560 +#: tbl_tracking.php:555 msgid "Show versions" msgstr "" -#: tbl_tracking.php:592 +#: tbl_tracking.php:587 #, fuzzy msgid "Version" msgstr "波斯語" -#: tbl_tracking.php:639 +#: tbl_tracking.php:634 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "" -#: tbl_tracking.php:641 +#: tbl_tracking.php:636 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:652 +#: tbl_tracking.php:647 #, php-format msgid "Activate tracking for %s.%s" msgstr "" -#: tbl_tracking.php:654 +#: tbl_tracking.php:649 msgid "Activate now" msgstr "" -#: tbl_tracking.php:667 +#: tbl_tracking.php:662 #, php-format msgid "Create version %s of %s.%s" msgstr "" -#: tbl_tracking.php:671 +#: tbl_tracking.php:666 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:679 +#: tbl_tracking.php:674 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:687 +#: tbl_tracking.php:682 #, fuzzy msgid "Create version" msgstr "伺服器版本" @@ -8099,11 +8150,36 @@ msgstr "資料己經更新." msgid "VIEW name" msgstr "" -#: view_operations.php:92 +#: view_operations.php:91 #, fuzzy msgid "Rename view to" msgstr "將資料表改名為" +#, fuzzy +#~| msgid "Enabled" +#~ msgctxt "BLOB repository" +#~ msgid "Enabled" +#~ msgstr "啟動" + +#, fuzzy +#~ msgid "Disable" +#~ msgstr "未啟動" + +#, fuzzy +#~ msgctxt "BLOB repository" +#~ msgid "Repair" +#~ msgstr "修復資料表" + +#, fuzzy +#~| msgid "Disabled" +#~ msgctxt "BLOB repository" +#~ msgid "Disabled" +#~ msgstr "未啟動" + +#, fuzzy +#~ msgid "Enable" +#~ msgstr "啟動" + #~ msgid "" #~ "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " #~ "extension. Please check your PHP configuration." From 6c3ad9e942c446abb4473b173bedf6e3d26c8ce2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Mon, 26 Jul 2010 17:31:56 +0200 Subject: [PATCH 070/212] Fix back showing login form in frames. --- libraries/auth/cookie.auth.lib.php | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/libraries/auth/cookie.auth.lib.php b/libraries/auth/cookie.auth.lib.php index a9644557c..870ac56f3 100644 --- a/libraries/auth/cookie.auth.lib.php +++ b/libraries/auth/cookie.auth.lib.php @@ -172,13 +172,14 @@ function PMA_auth() ?> - - - +// +//]]> + From f3f073a0ba8fe8e3857d98a84627bda53d50dc5e Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Mon, 26 Jul 2010 12:26:41 -0400 Subject: [PATCH 071/212] 3.3.5 release --- ChangeLog | 2 +- Documentation.html | 4 ++-- README | 4 ++-- libraries/Config.class.php | 2 +- translators.html | 4 ++-- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/ChangeLog b/ChangeLog index 555c6f219..53adf966d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -5,7 +5,7 @@ phpMyAdmin - ChangeLog $Id$ $HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyAdmin/ChangeLog $ -3.3.5.0 (not yet released) +3.3.5.0 (2010-07-26) - patch #2932113 [information_schema] Slow export when having lots of databases, thanks to Stéphane Pontier - shadow_walker - bug #3022705 [import] Import button does not work in Catalan when there diff --git a/Documentation.html b/Documentation.html index 9053c486c..100b9ae8c 100644 --- a/Documentation.html +++ b/Documentation.html @@ -10,7 +10,7 @@ vim: expandtab ts=4 sw=4 sts=4 tw=78 - phpMyAdmin 3.3.5-rc1 - Documentation + phpMyAdmin 3.3.5 - Documentation @@ -18,7 +18,7 @@ vim: expandtab ts=4 sw=4 sts=4 tw=78 diff --git a/README b/README index 18a6bef3b..279f66f48 100644 --- a/README +++ b/README @@ -5,8 +5,8 @@ phpMyAdmin - Readme A set of PHP-scripts to manage MySQL over the web. - Version 3.3.5-rc1 - ----------------- + Version 3.3.5 + ------------- http://www.phpmyadmin.net/ Copyright (C) 1998-2000 Tobias Ratschiller diff --git a/libraries/Config.class.php b/libraries/Config.class.php index 493185886..e73de8bbf 100644 --- a/libraries/Config.class.php +++ b/libraries/Config.class.php @@ -92,7 +92,7 @@ class PMA_Config */ function checkSystem() { - $this->set('PMA_VERSION', '3.3.5-rc1'); + $this->set('PMA_VERSION', '3.3.5'); /** * @deprecated */ diff --git a/translators.html b/translators.html index 407c759c9..d847a9e53 100644 --- a/translators.html +++ b/translators.html @@ -11,7 +11,7 @@ - phpMyAdmin 3.3.5-rc1 - Official translators + phpMyAdmin 3.3.5 - Official translators @@ -19,7 +19,7 @@ From e43fe5a8f100c772602aae71da9c529a542db493 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Mon, 26 Jul 2010 12:27:30 -0400 Subject: [PATCH 072/212] 3.3.5 release --- ChangeLog | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 748e243d9..455c3900c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -10,7 +10,7 @@ $HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyA - bug #3031705 [core] Fix generating condition for real numbers by comparing them to string. -3.3.5.0 (not yet released) +3.3.5.0 (2010-07-26) - patch #2932113 [information_schema] Slow export when having lots of databases, thanks to Stéphane Pontier - shadow_walker - bug #3022705 [import] Import button does not work in Catalan when there From f9c6df0685c3c2cb70cce0d5ca396f3071edbfc8 Mon Sep 17 00:00:00 2001 From: gheni Date: Tue, 27 Jul 2010 04:30:41 +0200 Subject: [PATCH 073/212] Translation update done using Pootle. --- po/ug.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ug.po b/po/ug.po index 1f876d86a..854c0f134 100644 --- a/po/ug.po +++ b/po/ug.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-26 17:18+0200\n" -"PO-Revision-Date: 2010-07-26 05:01+0200\n" +"PO-Revision-Date: 2010-07-27 04:30+0200\n" "Last-Translator: \n" "Language-Team: Uyghur \n" "Language: ug\n" @@ -93,7 +93,7 @@ msgstr "مۇشۇ قىممەتنى ئىشلىتىش" #: bs_disp_as_mime_type.php:29 bs_play_media.php:35 msgid "No blob streaming server configured!" -msgstr "" +msgstr "No blob streaming server configured!" #: bs_disp_as_mime_type.php:35 #, fuzzy From ca9d6ad1fc108d715891f910881d03cf0a749ed9 Mon Sep 17 00:00:00 2001 From: gheni Date: Tue, 27 Jul 2010 04:31:27 +0200 Subject: [PATCH 074/212] Translation update done using Pootle. --- po/ug.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ug.po b/po/ug.po index 854c0f134..5dcf20798 100644 --- a/po/ug.po +++ b/po/ug.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-26 17:18+0200\n" -"PO-Revision-Date: 2010-07-27 04:30+0200\n" +"PO-Revision-Date: 2010-07-27 04:31+0200\n" "Last-Translator: \n" "Language-Team: Uyghur \n" "Language: ug\n" @@ -103,7 +103,7 @@ msgstr "ھۆججەتنى دېسكىغا يىزىشتا خاتالىق كۆرۈل #: bs_disp_as_mime_type.php:41 msgid "Failed to open remote URL" -msgstr "" +msgstr "URL نى ئېچىش مەغلۇب بولدى." #: db_create.php:44 #, php-format From 7033ecd338d90721951addfd1b1de616b90dd09c Mon Sep 17 00:00:00 2001 From: gheni Date: Tue, 27 Jul 2010 04:31:39 +0200 Subject: [PATCH 075/212] Translation update done using Pootle. --- po/ug.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ug.po b/po/ug.po index 5dcf20798..7158eadbe 100644 --- a/po/ug.po +++ b/po/ug.po @@ -308,8 +308,8 @@ msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." msgstr "" -"ئالاقىدار جەدۋەللەرنىڭ قوشۇمچە ئىقتىدارى پائالسىز. سەۋەبىنى ئېنىقلاش ئۈچۈن " -"%sبۇ يەرنى كۆرۈڭ%s." +"ئالاقىدار جەدۋەللەرنىڭ قوشۇمچە ئىقتىدارى پائالسىز. سەۋەبىنى ئېنىقلاش ئۈچۈن %" +"sبۇ يەرنى كۆرۈڭ%s." #: db_operations.php:497 msgid "Edit PDF Pages" From 9b5c5dc321bf71eb78ef7b1538fe7ffa86f246db Mon Sep 17 00:00:00 2001 From: gheni Date: Tue, 27 Jul 2010 04:34:10 +0200 Subject: [PATCH 076/212] Translation update done using Pootle. --- po/ug.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ug.po b/po/ug.po index 7158eadbe..d185043f1 100644 --- a/po/ug.po +++ b/po/ug.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-26 17:18+0200\n" -"PO-Revision-Date: 2010-07-27 04:31+0200\n" +"PO-Revision-Date: 2010-07-27 04:34+0200\n" "Last-Translator: \n" "Language-Team: Uyghur \n" "Language: ug\n" @@ -1510,7 +1510,7 @@ msgstr "Cookies نى قوزغاتقاندىن كېيىن ئاندىن كېرىڭ #: libraries/auth/signon.auth.lib.php:180 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" -msgstr "" +msgstr "پارولسىز كىرىش چەكلەنگەن (پارولسىز كىرىش ئىقازىتىنى كۆرۈڭ)" #: libraries/auth/cookie.auth.lib.php:642 #: libraries/auth/signon.auth.lib.php:184 From 187474b82901ee240eb4a9fe39226d2fe622efaa Mon Sep 17 00:00:00 2001 From: gheni Date: Tue, 27 Jul 2010 04:48:48 +0200 Subject: [PATCH 077/212] Translation update done using Pootle. --- po/ug.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ug.po b/po/ug.po index d185043f1..2bdef6aa4 100644 --- a/po/ug.po +++ b/po/ug.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-26 17:18+0200\n" -"PO-Revision-Date: 2010-07-27 04:34+0200\n" +"PO-Revision-Date: 2010-07-27 04:48+0200\n" "Last-Translator: \n" "Language-Team: Uyghur \n" "Language: ug\n" @@ -1516,7 +1516,7 @@ msgstr "پارولسىز كىرىش چەكلەنگەن (پارولسىز كىر #: libraries/auth/signon.auth.lib.php:184 #, php-format msgid "No activity within %s seconds; please log in again" -msgstr "" +msgstr "No activity within %s seconds; please log in again" #: libraries/auth/cookie.auth.lib.php:652 #: libraries/auth/cookie.auth.lib.php:654 From f6bba92e3e3a73cf21eb4391f40821f4ce30c44c Mon Sep 17 00:00:00 2001 From: gheni Date: Tue, 27 Jul 2010 04:49:28 +0200 Subject: [PATCH 078/212] Translation update done using Pootle. --- po/ug.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ug.po b/po/ug.po index 2bdef6aa4..6ec7636dd 100644 --- a/po/ug.po +++ b/po/ug.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-26 17:18+0200\n" -"PO-Revision-Date: 2010-07-27 04:48+0200\n" +"PO-Revision-Date: 2010-07-27 04:49+0200\n" "Last-Translator: \n" "Language-Team: Uyghur \n" "Language: ug\n" @@ -1522,7 +1522,7 @@ msgstr "No activity within %s seconds; please log in again" #: libraries/auth/cookie.auth.lib.php:654 #: libraries/auth/signon.auth.lib.php:190 msgid "Cannot log in to the MySQL server" -msgstr "" +msgstr "MySQL مۇلازىمىتېرىغا ئۇلىنالمىدى." #: libraries/auth/http.auth.lib.php:69 msgid "Wrong username/password. Access denied." From 30cc3866e6ad69acd0c5aa8e42d44af218f78b90 Mon Sep 17 00:00:00 2001 From: gheni Date: Tue, 27 Jul 2010 04:51:52 +0200 Subject: [PATCH 079/212] Translation update done using Pootle. --- po/ug.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ug.po b/po/ug.po index 6ec7636dd..8595cec56 100644 --- a/po/ug.po +++ b/po/ug.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-26 17:18+0200\n" -"PO-Revision-Date: 2010-07-27 04:49+0200\n" +"PO-Revision-Date: 2010-07-27 04:51+0200\n" "Last-Translator: \n" "Language-Team: Uyghur \n" "Language: ug\n" @@ -1526,7 +1526,7 @@ msgstr "MySQL مۇلازىمىتېرىغا ئۇلىنالمىدى." #: libraries/auth/http.auth.lib.php:69 msgid "Wrong username/password. Access denied." -msgstr "" +msgstr "كىرگۈزگەن ئىسلەتكۈچى ئىسمى\\پارول خاتا، زايارەت رەت قىلىندى." #: libraries/auth/swekey/swekey.auth.lib.php:118 #, php-format From a47c6e8bea4fa15bf1455e6ac8413ce014a12932 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Tue, 27 Jul 2010 09:11:18 +0200 Subject: [PATCH 080/212] This might be called without initialized gettext. --- libraries/core.lib.php | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/libraries/core.lib.php b/libraries/core.lib.php index c1a0b4be4..d98320fe7 100644 --- a/libraries/core.lib.php +++ b/libraries/core.lib.php @@ -228,12 +228,18 @@ function PMA_fatalError($error_message, $message_args = null) } $error_message = strtr($error_message, array('
                            ' => '[br]')); + if (function_exists('__')) { + $error_header = __('Error'); + } else { + $error_header = 'Error'; + } + // Displays the error message // (do not use & for parameters sent by header) $query_params = array( 'lang' => $GLOBALS['available_languages'][$GLOBALS['lang']][1], 'dir' => $GLOBALS['text_dir'], - 'type' => __('Error'), + 'type' => $error_header, 'error' => $error_message, ); header('Location: ' . (defined('PMA_SETUP') ? '../' : '') . 'error.php?' From 659bd9c8385f24ac9fb26838118acad6e372504e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Tue, 27 Jul 2010 09:31:30 +0200 Subject: [PATCH 081/212] Add trop/empty links to table operations tab. --- tbl_operations.php | 48 +++++++++++++++++++ .../darkblue_orange/css/theme_right.css.php | 7 +++ themes/original/css/theme_right.css.php | 7 +++ 3 files changed, 62 insertions(+) diff --git a/tbl_operations.php b/tbl_operations.php index 493a17ff4..baab85aac 100644 --- a/tbl_operations.php +++ b/tbl_operations.php @@ -636,6 +636,54 @@ $this_url_params = array_merge($url_params,
                          + +
                          +
                          + + +
                            + $this_sql_query, + 'goto' => 'tbl_structure.php', + 'reload' => '1', + 'zero_rows' => sprintf(__('Table %s has been emptied'), htmlspecialchars($table)), + )); + ?> +
                          • + + +
                          • + $this_sql_query, + 'goto' => 'db_operations.php', + 'reload' => '1', + 'purge' => '1', + 'zero_rows' => sprintf(($tbl_is_view ? __('View %s has been dropped') : __('Table %s has been dropped')), htmlspecialchars($table)), + 'table' => NULL, + )); + ?> +
                          • + + +
                          • + +
                          +
                          +
                          + /* active tab */ diff --git a/themes/original/css/theme_right.css.php b/themes/original/css/theme_right.css.php index 53f0f23dd..a8db8260e 100644 --- a/themes/original/css/theme_right.css.php +++ b/themes/original/css/theme_right.css.php @@ -626,6 +626,13 @@ a.tabcaution:hover { color: #FFFFFF; background-color: #FF0000; } +fieldset.caution a { + color: #FF0000; +} +fieldset.caution a:hover { + color: #ffffff; + background-color: #FF0000; +} /* active tab */ From 1c17bfc1210f4c013621aabe832c022143124251 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Tue, 27 Jul 2010 09:39:27 +0200 Subject: [PATCH 082/212] Add drop link to the database operations tab. --- db_operations.php | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/db_operations.php b/db_operations.php index eb8c6a2f2..53a282187 100644 --- a/db_operations.php +++ b/db_operations.php @@ -364,7 +364,41 @@ if (!$is_information_schema) { + +
                          + '; +} +echo __('Remove database'); +?> +
                            + $this_sql_query, + 'back' => 'db_operations.php', + 'goto' => 'main.php', + 'reload' => '1', + 'purge' => '1', + 'zero_rows' => sprintf(__('Database %s has been dropped.'), htmlspecialchars(PMA_backquote($db))), + 'db' => NULL, + ); + ?> +
                          • + + +
                          • +
                          +
                          + Date: Tue, 27 Jul 2010 09:42:08 +0200 Subject: [PATCH 083/212] Remove drop tab from database tabs. --- libraries/db_links.inc.php | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/libraries/db_links.inc.php b/libraries/db_links.inc.php index 860d3d805..0dfa5a8ec 100644 --- a/libraries/db_links.inc.php +++ b/libraries/db_links.inc.php @@ -34,19 +34,6 @@ $is_superuser = PMA_isSuperuser(); /** * Prepares links */ -// Drop link if allowed -// Don't even try to drop information_schema. You won't be able to. Believe me. You won't. -// Don't allow to easilly drop mysql database, RFE #1327514. -if (($is_superuser || $GLOBALS['cfg']['AllowUserDropDatabase']) && ! $db_is_information_schema && ($db != 'mysql')) { - $tab_drop['link'] = 'sql.php'; - $tab_drop['args']['sql_query'] = 'DROP DATABASE ' . PMA_backquote($db); - $tab_drop['args']['zero_rows'] = sprintf(__('Database %s has been dropped.'), htmlspecialchars(PMA_backquote($db))); - $tab_drop['args']['goto'] = 'main.php'; - $tab_drop['args']['back'] = 'db' . $sub_part . '.php'; - $tab_drop['args']['reload'] = 1; - $tab_drop['args']['purge'] = 1; - $tab_drop['attr'] = 'onclick="return confirmLinkDropDB(this, \'DROP DATABASE ' . PMA_jsFormat($db) . '\')"'; -} /** * export, search and qbe links if there is at least one table @@ -95,9 +82,6 @@ if (! $db_is_information_schema) { $tab_import['link'] = 'db_import.php'; $tab_import['text'] = __('Import'); $tab_import['icon'] = 'b_import.png'; - $tab_drop['text'] = __('Drop'); - $tab_drop['icon'] = 'b_deltbl.png'; - $tab_drop['class'] = 'caution'; $tab_operation['link'] = 'db_operations.php'; $tab_operation['text'] = __('Operations'); $tab_operation['icon'] = 'b_tblops.png'; @@ -132,9 +116,6 @@ if (! $db_is_information_schema) { if ($is_superuser) { $tabs[] =& $tab_privileges; } - if ($is_superuser || $GLOBALS['cfg']['AllowUserDropDatabase']) { - $tabs[] =& $tab_drop; - } } $url_params['db'] = $db; From 39e4c95813f0f18e0f58cabfc7495ea6bccb6f87 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Tue, 27 Jul 2010 09:42:46 +0200 Subject: [PATCH 084/212] Remove drop/empty table links from table tabs. --- libraries/tbl_links.inc.php | 34 +--------------------------------- 1 file changed, 1 insertion(+), 33 deletions(-) diff --git a/libraries/tbl_links.inc.php b/libraries/tbl_links.inc.php index ef612933c..445cf660b 100644 --- a/libraries/tbl_links.inc.php +++ b/libraries/tbl_links.inc.php @@ -91,23 +91,10 @@ if (! $tbl_is_view && ! (isset($db_is_information_schema) && $db_is_information_ $tabs['operation']['icon'] = 'b_tblops.png'; $tabs['operation']['link'] = 'tbl_operations.php'; $tabs['operation']['text'] = __('Operations'); - - $tabs['empty']['link'] = 'sql.php'; - $tabs['empty']['args']['reload'] = 1; - $tabs['empty']['args']['sql_query'] = 'TRUNCATE TABLE ' . PMA_backquote($table); - $tabs['empty']['args']['zero_rows'] = sprintf(__('Table %s has been emptied'), htmlspecialchars($table)); - $tabs['empty']['attr'] = 'onclick="return confirmLink(this, \'TRUNCATE TABLE ' . PMA_jsFormat($table) . '\')"'; - $tabs['empty']['args']['goto'] = 'tbl_structure.php'; - $tabs['empty']['class'] = 'caution'; - $tabs['empty']['icon'] = 'b_empty.png'; - $tabs['empty']['text'] = __('Empty'); - if ($table_info_num_rows == 0) { - $tabs['empty']['warning'] = __('Table seems to be empty!'); - } } /** - * Views support a limited number of operations + * Views support a limited number of operations */ if ($tbl_is_view && ! (isset($db_is_information_schema) && $db_is_information_schema)) { $tabs['operation']['icon'] = 'b_tblops.png'; @@ -115,25 +102,6 @@ if ($tbl_is_view && ! (isset($db_is_information_schema) && $db_is_information_sc $tabs['operation']['text'] = __('Operations'); } -/** - * no drop in information_schema - */ -if (! (isset($db_is_information_schema) && $db_is_information_schema)) { - $tabs['drop']['icon'] = 'b_deltbl.png'; - $tabs['drop']['link'] = 'sql.php'; - $tabs['drop']['url_params'] = array('table' => NULL); - $tabs['drop']['text'] = __('Drop'); - $tabs['drop']['args']['reload'] = 1; - $tabs['drop']['args']['purge'] = 1; - $drop_command = 'DROP ' . ($tbl_is_view ? 'VIEW' : 'TABLE'); - $tabs['drop']['args']['sql_query'] = $drop_command . ' ' . PMA_backquote($table); - $tabs['drop']['args']['goto'] = 'db_structure.php'; - $tabs['drop']['args']['zero_rows'] = sprintf(($tbl_is_view ? __('View %s has been dropped') : __('Table %s has been dropped')), htmlspecialchars($table)); - $tabs['drop']['attr'] = 'onclick="return confirmLink(this, \'' . $drop_command . ' ' . PMA_jsFormat($table) . '\')"'; - unset($drop_command); - $tabs['drop']['class'] = 'caution'; -} - if ($table_info_num_rows == 0 && !$tbl_is_view) { $tabs['browse']['warning'] = __('Table seems to be empty!'); $tabs['search']['warning'] = __('Table seems to be empty!'); From 6405357c0fae5b218b05391e7080e1fd3d6e4b82 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Tue, 27 Jul 2010 09:43:39 +0200 Subject: [PATCH 085/212] Changelog entry. --- ChangeLog | 1 + 1 file changed, 1 insertion(+) diff --git a/ChangeLog b/ChangeLog index 6fd14f10e..6930da5f4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -97,6 +97,7 @@ $Id$ - [interface] Better formatting for SQL validator results. - [doc] The linked-tables infrastructure is now called phpMyAdmin configuration storage. +- [interface] Move drop/empty links from being tabs to Operations tab. 3.3.6.0 (not yet released) - bug #3033063 [core] Navi gets wrong db name From 442294fa6070649f920f7c841cf4062a1f7189cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Tue, 27 Jul 2010 09:48:37 +0200 Subject: [PATCH 086/212] [interface] Fixed rendering of error/notice/info titles background. --- ChangeLog | 1 + .../darkblue_orange/css/theme_right.css.php | 32 +++++++++++++++++++ themes/original/css/theme_right.css.php | 32 +++++++++++++++++++ 3 files changed, 65 insertions(+) diff --git a/ChangeLog b/ChangeLog index 6930da5f4..e9f641925 100644 --- a/ChangeLog +++ b/ChangeLog @@ -98,6 +98,7 @@ $Id$ - [doc] The linked-tables infrastructure is now called phpMyAdmin configuration storage. - [interface] Move drop/empty links from being tabs to Operations tab. +- [interface] Fixed rendering of error/notice/info titles background. 3.3.6.0 (not yet released) - bug #3033063 [core] Navi gets wrong db name diff --git a/themes/darkblue_orange/css/theme_right.css.php b/themes/darkblue_orange/css/theme_right.css.php index 75c44f39c..86b21ea1f 100644 --- a/themes/darkblue_orange/css/theme_right.css.php +++ b/themes/darkblue_orange/css/theme_right.css.php @@ -429,6 +429,14 @@ div.success { border-color: #00FF00; background-image: url(getImgPath(); ?>s_success.png); + background-repeat: no-repeat; + + background-position: 5px 50%; + padding: 0.2em 0.2em 0.2em 25px; + + background-position: 97% 50%; + padding: 0.2em 25px 0.2em 0.2em; + } .success h1 { @@ -444,6 +452,14 @@ div.notice { border-color: #FFD700; background-image: url(getImgPath(); ?>s_notice.png); + background-repeat: no-repeat; + + background-position: 5px 50%; + padding: 0.2em 0.2em 0.2em 25px; + + background-position: 97% 50%; + padding: 0.2em 25px 0.2em 0.2em; + } .notice h1 { @@ -460,6 +476,14 @@ div.warning { border-color: #CC0000; background-image: url(getImgPath(); ?>s_warn.png); + background-repeat: no-repeat; + + background-position: 5px 50%; + padding: 0.2em 0.2em 0.2em 25px; + + background-position: 97% 50%; + padding: 0.2em 25px 0.2em 0.2em; + } .warning h1 { @@ -476,6 +500,14 @@ div.error { border-color: #ff0000; background-image: url(getImgPath(); ?>s_error.png); + background-repeat: no-repeat; + + background-position: 5px 50%; + padding: 0.2em 0.2em 0.2em 25px; + + background-position: 97% 50%; + padding: 0.2em 25px 0.2em 0.2em; + } div.error h1 { diff --git a/themes/original/css/theme_right.css.php b/themes/original/css/theme_right.css.php index a8db8260e..b3554ce5e 100644 --- a/themes/original/css/theme_right.css.php +++ b/themes/original/css/theme_right.css.php @@ -405,6 +405,14 @@ div.success { border-color: #00FF00; background-image: url(getImgPath(); ?>s_success.png); + background-repeat: no-repeat; + + background-position: 5px 50%; + padding: 0.2em 0.2em 0.2em 25px; + + background-position: 97% 50%; + padding: 0.2em 25px 0.2em 0.2em; + } .success h1 { @@ -420,6 +428,14 @@ div.notice { border-color: #FFD700; background-image: url(getImgPath(); ?>s_notice.png); + background-repeat: no-repeat; + + background-position: 5px 50%; + padding: 0.2em 0.2em 0.2em 25px; + + background-position: 97% 50%; + padding: 0.2em 25px 0.2em 0.2em; + } .notice h1 { @@ -436,6 +452,14 @@ div.warning { border-color: #CC0000; background-image: url(getImgPath(); ?>s_warn.png); + background-repeat: no-repeat; + + background-position: 5px 50%; + padding: 0.2em 0.2em 0.2em 25px; + + background-position: 97% 50%; + padding: 0.2em 25px 0.2em 0.2em; + } .warning h1 { @@ -452,6 +476,14 @@ div.error { border-color: #ff0000; background-image: url(getImgPath(); ?>s_error.png); + background-repeat: no-repeat; + + background-position: 5px 50%; + padding: 0.2em 0.2em 0.2em 25px; + + background-position: 97% 50%; + padding: 0.2em 25px 0.2em 0.2em; + } div.error h1 { From 01ded03e89e9e92e70c4c29750c34a64e4c2339d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Tue, 27 Jul 2010 09:51:34 +0200 Subject: [PATCH 087/212] Remove duplicate info. --- libraries/sql_query_form.lib.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/libraries/sql_query_form.lib.php b/libraries/sql_query_form.lib.php index faa563a87..e46da3a48 100644 --- a/libraries/sql_query_form.lib.php +++ b/libraries/sql_query_form.lib.php @@ -40,8 +40,6 @@ require_once './libraries/bookmark.lib.php'; // used for file listing * @uses $GLOBALS['cfg']['DefaultQueryDatabase'] * @uses $GLOBALS['cfg']['Servers'] * @uses $GLOBALS['cfg']['DefaultTabDatabase'] - * @uses $GLOBALS['cfg']['DefaultQueryDatabase'] - * @uses $GLOBALS['cfg']['DefaultQueryTable'] * @uses $GLOBALS['cfg']['Bookmark'] * @uses PMA_generate_common_url() * @uses PMA_backquote() From 39aa4355a90055611412d7f5c75458427545aef3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Tue, 27 Jul 2010 10:01:58 +0200 Subject: [PATCH 088/212] Convert default queries to unified expansion. --- ChangeLog | 5 +++-- Documentation.html | 8 +++++--- libraries/common.lib.php | 18 ++++++++++++++++++ libraries/config.default.php | 14 +++----------- libraries/sql_query_form.lib.php | 17 +++-------------- 5 files changed, 32 insertions(+), 30 deletions(-) diff --git a/ChangeLog b/ChangeLog index e9f641925..2acdf45b0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -91,8 +91,9 @@ $Id$ + [core] Dropped AllowAnywhereRecoding configuration variable. - rfe #3016457 [interface] Define tab order in SQL form to allow easier tab navigation. -+ [code] Centralized format string expansion, @VARIABLES@ are recommended way - now. ++ [core] Centralized format string expansion, @VARIABLES@ are recommended way + now, used by file name templates, default queries, export and title + generating. + [validator] SQL validator works also with SOAP PHP extension. - [interface] Better formatting for SQL validator results. - [doc] The linked-tables infrastructure is now called phpMyAdmin diff --git a/Documentation.html b/Documentation.html index d5c5d4516..bf9a05a81 100644 --- a/Documentation.html +++ b/Documentation.html @@ -2182,9 +2182,9 @@ setfacl -d -m "g:www-data:rwx" tmp $cfg['DefaultQueryDatabase'] string
    Default queries that will be displayed in query boxes when user didn't - specify any. Use %d for database name, %t for table name and %f for a - comma separated list of column names. Note that %t and %f are only - applicable to $cfg['DefaultQueryTable'].
    + specify any. You can use standard + format string expansion. +
    $cfg['SQP']['fmtType'] string [html|none]
    @@ -4353,6 +4353,8 @@ chmod o+rwx tmp
    Currently opened database
    @TABLE@
    Currently opened table
    +
    @FIELDS@
    +
    Fields of currently opened table
    @PHPMYADMIN@
    phpMyAdmin with version
    diff --git a/libraries/common.lib.php b/libraries/common.lib.php index c9a0f1153..9c575c988 100644 --- a/libraries/common.lib.php +++ b/libraries/common.lib.php @@ -2891,6 +2891,24 @@ function PMA_expandUserString($string, $escape = NULL, $updates = array()) { } } + /* Fetch fields list if required */ + if (strpos($string, '@FIELDS@') !== FALSE) { + $fields_list = PMA_DBI_fetch_result( + 'SHOW FULL COLUMNS FROM ' . PMA_backquote($GLOBALS['db']) + . '.' . PMA_backquote($GLOBALS['table'])); + + $field_names = array(); + foreach ($fields_list as $field) { + if (!is_null($escape)) { + $field_names[] = $escape($field['Field']); + } else { + $field_names[] = $field['Field']; + } + } + + $replace['@FIELDS@'] = implode(',', $field_names); + } + /* Do the replacement */ return str_replace(array_keys($replace), array_values($replace), strftime($string)); } diff --git a/libraries/config.default.php b/libraries/config.default.php index 4f71e5610..19b0cf033 100644 --- a/libraries/config.default.php +++ b/libraries/config.default.php @@ -2344,22 +2344,14 @@ $cfg['ThemePerServer'] = false; */ /** - * Default queries - * %d will be replaced by the database name. - * %t will be replaced by the table name. - * %f will be replaced by a list of field names. - * (%t and %f only applies to DefaultQueryTable) + * Default query for table * * @global string $cfg['DefaultQueryTable'] */ -$cfg['DefaultQueryTable'] = 'SELECT * FROM %t WHERE 1'; +$cfg['DefaultQueryTable'] = 'SELECT * FROM @TABLE@ WHERE 1'; /** - * Default queries - * %d will be replaced by the database name. - * %t will be replaced by the table name. - * %f will be replaced by a list of field names. - * (%t and %f only applies to DefaultQueryTable) + * Default query for database * * @global string $cfg['DefaultQueryDatabase'] */ diff --git a/libraries/sql_query_form.lib.php b/libraries/sql_query_form.lib.php index e46da3a48..728c12c48 100644 --- a/libraries/sql_query_form.lib.php +++ b/libraries/sql_query_form.lib.php @@ -233,8 +233,7 @@ function PMA_sqlQueryFormInsert($query = '', $is_querywindow = false, $delimiter // $tmp_db_link = htmlspecialchars($db); $legend = sprintf(__('Run SQL query/queries on database %s'), $tmp_db_link); if (empty($query)) { - $query = str_replace('%d', - PMA_backquote($db), $GLOBALS['cfg']['DefaultQueryDatabase']); + $query = PMA_expandUserString($GLOBALS['cfg']['DefaultQueryDatabase'], 'PMA_backquote'); } } else { $table = $GLOBALS['table']; @@ -257,18 +256,8 @@ function PMA_sqlQueryFormInsert($query = '', $is_querywindow = false, $delimiter // else use // $tmp_db_link = htmlspecialchars($db); $legend = sprintf(__('Run SQL query/queries on database %s'), $tmp_db_link); - if (empty($query) && count($fields_list)) { - $field_names = array(); - foreach ($fields_list as $field) { - $field_names[] = PMA_backquote($field['Field']); - } - $query = - str_replace('%d', PMA_backquote($db), - str_replace('%t', PMA_backquote($table), - str_replace('%f', - implode(', ', $field_names), - $GLOBALS['cfg']['DefaultQueryTable']))); - unset($field_names); + if (empty($query)) { + $query = PMA_expandUserString($GLOBALS['cfg']['DefaultQueryTable'], 'PMA_backquote'); } } $legend .= ': ' . PMA_showMySQLDocu('SQL-Syntax', 'SELECT'); From 05160b3e033d7516b71d43b8010a7a098fcfe7e0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Tue, 27 Jul 2010 10:07:55 +0200 Subject: [PATCH 089/212] No need for full columns here. --- libraries/common.lib.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/common.lib.php b/libraries/common.lib.php index 9c575c988..162764bb0 100644 --- a/libraries/common.lib.php +++ b/libraries/common.lib.php @@ -2894,7 +2894,7 @@ function PMA_expandUserString($string, $escape = NULL, $updates = array()) { /* Fetch fields list if required */ if (strpos($string, '@FIELDS@') !== FALSE) { $fields_list = PMA_DBI_fetch_result( - 'SHOW FULL COLUMNS FROM ' . PMA_backquote($GLOBALS['db']) + 'SHOW COLUMNS FROM ' . PMA_backquote($GLOBALS['db']) . '.' . PMA_backquote($GLOBALS['table'])); $field_names = array(); From b19e6194f0970e7f9e361611983e20a6a3b12eb2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Tue, 27 Jul 2010 10:12:23 +0200 Subject: [PATCH 090/212] Update po files. --- po/af.po | 206 ++++++++++++++++++++++++-------------------- po/ar.po | 210 +++++++++++++++++++++++++-------------------- po/az.po | 206 ++++++++++++++++++++++++-------------------- po/be.po | 209 +++++++++++++++++++++++++-------------------- po/be@latin.po | 210 +++++++++++++++++++++++++-------------------- po/bg.po | 208 +++++++++++++++++++++++++-------------------- po/bn.po | 208 +++++++++++++++++++++++++-------------------- po/bs.po | 206 ++++++++++++++++++++++++-------------------- po/ca.po | 210 +++++++++++++++++++++++++-------------------- po/cs.po | 210 +++++++++++++++++++++++++-------------------- po/cy.po | 208 +++++++++++++++++++++++++-------------------- po/da.po | 210 +++++++++++++++++++++++++-------------------- po/de.po | 210 +++++++++++++++++++++++++-------------------- po/el.po | 210 +++++++++++++++++++++++++-------------------- po/en_GB.po | 210 +++++++++++++++++++++++++-------------------- po/es.po | 209 +++++++++++++++++++++++++-------------------- po/et.po | 209 +++++++++++++++++++++++++-------------------- po/eu.po | 206 ++++++++++++++++++++++++-------------------- po/fa.po | 206 ++++++++++++++++++++++++-------------------- po/fi.po | 210 +++++++++++++++++++++++++-------------------- po/fr.po | 210 +++++++++++++++++++++++++-------------------- po/gl.po | 210 +++++++++++++++++++++++++-------------------- po/he.po | 207 ++++++++++++++++++++++++-------------------- po/hi.po | 208 +++++++++++++++++++++++++-------------------- po/hr.po | 209 +++++++++++++++++++++++++-------------------- po/hu.po | 209 +++++++++++++++++++++++++-------------------- po/id.po | 209 +++++++++++++++++++++++++-------------------- po/it.po | 210 +++++++++++++++++++++++++-------------------- po/ja.po | 210 +++++++++++++++++++++++++-------------------- po/ka.po | 209 +++++++++++++++++++++++++-------------------- po/ko.po | 207 ++++++++++++++++++++++++-------------------- po/lt.po | 210 +++++++++++++++++++++++++-------------------- po/lv.po | 207 ++++++++++++++++++++++++-------------------- po/mk.po | 207 ++++++++++++++++++++++++-------------------- po/mn.po | 210 +++++++++++++++++++++++++-------------------- po/ms.po | 206 ++++++++++++++++++++++++-------------------- po/nb.po | 210 +++++++++++++++++++++++++-------------------- po/nl.po | 210 +++++++++++++++++++++++++-------------------- po/phpmyadmin.pot | 204 ++++++++++++++++++++++++-------------------- po/pl.po | 209 +++++++++++++++++++++++++-------------------- po/pt.po | 206 ++++++++++++++++++++++++-------------------- po/pt_BR.po | 209 +++++++++++++++++++++++++-------------------- po/ro.po | 209 +++++++++++++++++++++++++-------------------- po/ru.po | 210 +++++++++++++++++++++++++-------------------- po/si.po | 208 +++++++++++++++++++++++++-------------------- po/sk.po | 210 +++++++++++++++++++++++++-------------------- po/sl.po | 210 +++++++++++++++++++++++++-------------------- po/sq.po | 207 ++++++++++++++++++++++++-------------------- po/sr.po | 209 +++++++++++++++++++++++++-------------------- po/sr@latin.po | 209 +++++++++++++++++++++++++-------------------- po/sv.po | 209 +++++++++++++++++++++++++-------------------- po/ta.po | 204 ++++++++++++++++++++++++-------------------- po/te.po | 207 ++++++++++++++++++++++++-------------------- po/th.po | 207 ++++++++++++++++++++++++-------------------- po/tr.po | 210 +++++++++++++++++++++++++-------------------- po/tt.po | 208 +++++++++++++++++++++++++-------------------- po/ug.po | 212 +++++++++++++++++++++++++--------------------- po/uk.po | 208 +++++++++++++++++++++++++-------------------- po/ur.po | 208 +++++++++++++++++++++++++-------------------- po/uz.po | 210 +++++++++++++++++++++++++-------------------- po/uz@latin.po | 210 +++++++++++++++++++++++++-------------------- po/zh_CN.po | 210 +++++++++++++++++++++++++-------------------- po/zh_TW.po | 208 +++++++++++++++++++++++++-------------------- 63 files changed, 7279 insertions(+), 5861 deletions(-) diff --git a/po/af.po b/po/af.po index 3052f80fc..cf47e2252 100644 --- a/po/af.po +++ b/po/af.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-26 17:18+0200\n" +"POT-Creation-Date: 2010-07-27 10:12+0200\n" "PO-Revision-Date: 2010-03-30 23:04+0200\n" "Last-Translator: Michal \n" "Language-Team: afrikaans \n" @@ -36,16 +36,16 @@ msgstr "" #: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 #: db_structure.php:89 db_structure.php:91 db_structure.php:102 #: db_structure.php:104 libraries/common.lib.php:2834 -#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Soek" #: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 -#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_operations.php:468 db_operations.php:492 db_search.php:344 #: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 #: libraries/Theme_Manager.class.php:305 -#: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 +#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:712 #: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 @@ -53,8 +53,8 @@ msgstr "Soek" #: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 #: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 -#: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: libraries/sql_query_form.lib.php:377 libraries/sql_query_form.lib.php:447 +#: libraries/sql_query_form.lib.php:512 libraries/tbl_properties.inc.php:780 #: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 #: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 #: server_privileges.php:663 server_privileges.php:1620 @@ -64,7 +64,7 @@ msgstr "Soek" #: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 #: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 -#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_operations.php:726 tbl_select.php:323 tbl_structure.php:559 #: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 #: view_create.php:181 view_operations.php:99 msgid "Go" @@ -250,48 +250,63 @@ msgstr "Kommentaar" msgid "and then" msgstr "" -#: db_operations.php:390 +#: db_operations.php:379 +#, fuzzy +msgid "Remove database" +msgstr "Hernoem tabel na" + +#: db_operations.php:391 +#, php-format +msgid "Database %s has been dropped." +msgstr "Databasis %s is verwyder." + +#: db_operations.php:396 +#, fuzzy +msgid "Drop the database (DROP)" +msgstr "Geen databasisse" + +#: db_operations.php:424 #, fuzzy msgid "Copy database to" msgstr "Geen databasisse" -#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:431 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Slegs struktuur" -#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:432 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Struktuur en data" -#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:433 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Slegs Data" -#: db_operations.php:407 +#: db_operations.php:441 msgid "CREATE DATABASE before copying" msgstr "" -#: db_operations.php:410 libraries/export/sql.php:51 +#: db_operations.php:444 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 #: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "" -#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: db_operations.php:448 libraries/export/sql.php:77 tbl_operations.php:296 #: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "" -#: db_operations.php:418 tbl_operations.php:542 +#: db_operations.php:452 tbl_operations.php:542 msgid "Add constraints" msgstr "" -#: db_operations.php:431 +#: db_operations.php:465 msgid "Switch to copied database" msgstr "" -#: db_operations.php:451 libraries/Index.class.php:447 +#: db_operations.php:485 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 #: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 #: server_collations.php:53 server_collations.php:65 server_databases.php:108 @@ -300,7 +315,7 @@ msgstr "" msgid "Collation" msgstr "" -#: db_operations.php:464 pdf_schema.php:32 +#: db_operations.php:498 pdf_schema.php:32 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -312,7 +327,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:497 +#: db_operations.php:531 msgid "Edit PDF Pages" msgstr "Verander PDF Bladsye" @@ -369,7 +384,7 @@ msgstr[0] "%s tabel(le)" msgstr[1] "%s tabel(le)" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -461,7 +476,7 @@ msgstr "Doen Navraag" #: db_search.php:50 libraries/auth/config.auth.lib.php:83 #: libraries/auth/config.auth.lib.php:102 -#: libraries/auth/cookie.auth.lib.php:640 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:182 msgid "Access denied" msgstr "Toegang Geweier" @@ -504,7 +519,7 @@ msgid "Browse" msgstr "Beloer Data" #: db_search.php:254 libraries/display_tbl.lib.php:1163 -#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:440 #: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 @@ -547,14 +562,14 @@ msgstr "Binne tabel(le):" #: db_structure.php:79 db_structure.php:80 db_structure.php:92 #: db_structure.php:93 db_structure.php:105 db_structure.php:106 -#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:311 +#: libraries/sql_query_form.lib.php:314 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Voeg by" #: db_structure.php:81 db_structure.php:94 db_structure.php:107 #: libraries/common.lib.php:2832 libraries/common.lib.php:2839 -#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 +#: libraries/db_links.inc.php:48 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 @@ -567,8 +582,7 @@ msgstr "Struktuur" #: db_structure.php:96 db_structure.php:108 db_structure.php:109 #: db_structure.php:530 db_structure.php:531 db_tracking.php:86 #: libraries/Index.class.php:482 libraries/common.lib.php:1663 -#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 #: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 #: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" @@ -577,21 +591,21 @@ msgstr "Verwyder" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 +#: libraries/mult_submits.inc.php:38 msgid "Empty" msgstr "Maak Leeg" -#: db_structure.php:301 libraries/tbl_links.inc.php:98 +#: db_structure.php:301 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "Tabel %s is leeg gemaak" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, fuzzy, php-format msgid "View %s has been dropped" msgstr "Veld %s is verwyder" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "Tabel %s is verwyder" @@ -681,7 +695,7 @@ msgstr "Herstel tabel" msgid "Analyze table" msgstr "Analiseer tabel" -#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:56 #: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 #: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 #: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 @@ -1397,7 +1411,7 @@ msgid "Databases" msgstr "databasisse" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30 #: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 #: tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -1500,7 +1514,7 @@ msgid "Cannot connect: invalid settings." msgstr "" #: libraries/auth/config.auth.lib.php:91 -#: libraries/auth/cookie.auth.lib.php:205 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:206 libraries/auth/http.auth.lib.php:64 #: test/theme.php:151 #, php-format msgid "Welcome to %s" @@ -1521,56 +1535,56 @@ msgid "" "the administrator of the MySQL server." msgstr "" -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:231 msgid "Log in" msgstr "Teken aan" -#: libraries/auth/cookie.auth.lib.php:232 -#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:233 +#: libraries/auth/cookie.auth.lib.php:235 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:94 msgid "phpMyAdmin documentation" msgstr "phpMyAdmin dokumentasie" -#: libraries/auth/cookie.auth.lib.php:244 #: libraries/auth/cookie.auth.lib.php:245 +#: libraries/auth/cookie.auth.lib.php:246 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:244 +#: libraries/auth/cookie.auth.lib.php:245 msgid "Server:" msgstr "" -#: libraries/auth/cookie.auth.lib.php:249 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Username:" msgstr "Gebruiker Naam:" -#: libraries/auth/cookie.auth.lib.php:253 +#: libraries/auth/cookie.auth.lib.php:254 msgid "Password:" msgstr "Wagwoord:" -#: libraries/auth/cookie.auth.lib.php:260 +#: libraries/auth/cookie.auth.lib.php:261 msgid "Server Choice" msgstr "Bediener Keuse" -#: libraries/auth/cookie.auth.lib.php:306 libraries/header.inc.php:58 +#: libraries/auth/cookie.auth.lib.php:307 libraries/header.inc.php:58 msgid "Cookies must be enabled past this point." msgstr "HTTP Koekies moet van nou af geaktifeer wees." -#: libraries/auth/cookie.auth.lib.php:638 +#: libraries/auth/cookie.auth.lib.php:639 #: libraries/auth/signon.auth.lib.php:180 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" -#: libraries/auth/cookie.auth.lib.php:642 +#: libraries/auth/cookie.auth.lib.php:643 #: libraries/auth/signon.auth.lib.php:184 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" -#: libraries/auth/cookie.auth.lib.php:652 -#: libraries/auth/cookie.auth.lib.php:654 +#: libraries/auth/cookie.auth.lib.php:653 +#: libraries/auth/cookie.auth.lib.php:655 #: libraries/auth/signon.auth.lib.php:190 msgid "Cannot log in to the MySQL server" msgstr "" @@ -1689,7 +1703,7 @@ msgstr "en" #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 #: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 -#: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 +#: libraries/sql_query_form.lib.php:421 libraries/sql_query_form.lib.php:424 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" msgstr "Dokumentasie" @@ -1830,19 +1844,19 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/common.lib.php:2833 libraries/common.lib.php:2840 -#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 +#: libraries/db_links.inc.php:53 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 #: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 -#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:86 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "Operasies" -#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:265 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1858,37 +1872,32 @@ msgstr "" msgid "Name" msgstr "Naam" -#: libraries/db_links.inc.php:43 -#, php-format -msgid "Database %s has been dropped." -msgstr "Databasis %s is verwyder." - -#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 -#: libraries/db_links.inc.php:57 +#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43 +#: libraries/db_links.inc.php:44 msgid "Database seems to be empty!" msgstr "" -#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/db_links.inc.php:66 libraries/relation.lib.php:137 #: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:84 +#: libraries/db_links.inc.php:71 msgid "Query" msgstr "Navraag dmv Voorbeeld" -#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 +#: libraries/db_links.inc.php:76 libraries/relation.lib.php:133 msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:87 #: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 #, fuzzy msgid "Import" msgstr "Export" -#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:65 #: server_privileges.php:110 server_privileges.php:1718 #: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" @@ -2051,7 +2060,7 @@ msgid "remember template" msgstr "" #: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 -#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 +#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:509 msgid "Character set of the file:" msgstr "Karakterstel van die leer:" @@ -2104,7 +2113,7 @@ msgstr "" msgid "File to import" msgstr "" -#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:497 +#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:484 msgid "Location of the text file" msgstr "Soek die teksleer" @@ -2112,12 +2121,12 @@ msgstr "Soek die teksleer" msgid "File uploads are not allowed on this server." msgstr "" -#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 +#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:493 #: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "" -#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 +#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:496 #: tbl_change.php:925 msgid "web server upload directory" msgstr "" @@ -3470,7 +3479,7 @@ msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" -#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:403 msgid "Bookmarked SQL query" msgstr "Geboekmerkde SQL-stelling" @@ -3535,7 +3544,7 @@ msgstr "" msgid "Slave status" msgstr "" -#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:428 +#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:415 #: server_status.php:736 server_variables.php:51 msgid "Variable" msgstr "" @@ -3665,51 +3674,51 @@ msgstr "" msgid "Target database" msgstr "Soek in databasis" -#: libraries/sql_query_form.lib.php:219 +#: libraries/sql_query_form.lib.php:217 #, fuzzy, php-format msgid "Run SQL query/queries on server %s" msgstr "Hardloop SQL stellings op databasis %s" -#: libraries/sql_query_form.lib.php:236 libraries/sql_query_form.lib.php:261 +#: libraries/sql_query_form.lib.php:234 libraries/sql_query_form.lib.php:258 #, php-format msgid "Run SQL query/queries on database %s" msgstr "Hardloop SQL stellings op databasis %s" -#: libraries/sql_query_form.lib.php:307 +#: libraries/sql_query_form.lib.php:294 #, fuzzy #| msgid "Column names" msgid "Columns" msgstr "Kolom name" -#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 +#: libraries/sql_query_form.lib.php:329 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "Boekmerk hierdie SQL-stelling" -#: libraries/sql_query_form.lib.php:349 sql.php:669 +#: libraries/sql_query_form.lib.php:336 sql.php:669 msgid "Let every user access this bookmark" msgstr "" -#: libraries/sql_query_form.lib.php:355 +#: libraries/sql_query_form.lib.php:342 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/sql_query_form.lib.php:371 +#: libraries/sql_query_form.lib.php:358 msgid "Do not overwrite this query from outside the window" msgstr "" -#: libraries/sql_query_form.lib.php:378 +#: libraries/sql_query_form.lib.php:365 msgid "Delimiter" msgstr "" -#: libraries/sql_query_form.lib.php:386 +#: libraries/sql_query_form.lib.php:373 msgid " Show this query here again " msgstr " Wys hierdie navraag weer hier " -#: libraries/sql_query_form.lib.php:445 +#: libraries/sql_query_form.lib.php:432 msgid "Submit" msgstr "Stuur" -#: libraries/sql_query_form.lib.php:449 +#: libraries/sql_query_form.lib.php:436 msgid "View only" msgstr "Kyk slegs" @@ -3781,12 +3790,11 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" -#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 -#: libraries/tbl_links.inc.php:139 +#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107 msgid "Table seems to be empty!" msgstr "" -#: libraries/tbl_links.inc.php:147 +#: libraries/tbl_links.inc.php:115 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" @@ -7701,42 +7709,54 @@ msgstr "Tabel %s is geflush" msgid "Flush the table (FLUSH)" msgstr "Spoel die tabel (\"FLUSH\")" -#: tbl_operations.php:648 +#: tbl_operations.php:642 +msgid "Table removal" +msgstr "" + +#: tbl_operations.php:657 +msgid "Empty the table (TRUNCATE)" +msgstr "" + +#: tbl_operations.php:675 +msgid "Drop the table (DROP)" +msgstr "" + +#: tbl_operations.php:696 #, fuzzy msgid "Partition maintenance" msgstr "Tabel instandhouding" -#: tbl_operations.php:656 +#: tbl_operations.php:704 #, php-format msgid "Partition %s" msgstr "" -#: tbl_operations.php:659 +#: tbl_operations.php:707 msgid "Analyze" msgstr "" -#: tbl_operations.php:660 +#: tbl_operations.php:708 msgid "Check" msgstr "" -#: tbl_operations.php:661 +#: tbl_operations.php:709 msgid "Optimize" msgstr "" -#: tbl_operations.php:662 +#: tbl_operations.php:710 msgid "Rebuild" msgstr "" -#: tbl_operations.php:663 +#: tbl_operations.php:711 #, fuzzy msgid "Repair" msgstr "Herstel tabel" -#: tbl_operations.php:675 +#: tbl_operations.php:723 msgid "Remove partitioning" msgstr "" -#: tbl_operations.php:701 +#: tbl_operations.php:749 msgid "Check referential integrity:" msgstr "Toets referential integrity:" diff --git a/po/ar.po b/po/ar.po index 57930192d..8b8fd0b81 100644 --- a/po/ar.po +++ b/po/ar.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-26 17:18+0200\n" +"POT-Creation-Date: 2010-07-27 10:12+0200\n" "PO-Revision-Date: 2010-05-29 14:16+0200\n" "Last-Translator: Ahmed \n" "Language-Team: arabic \n" @@ -39,16 +39,16 @@ msgstr "" #: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 #: db_structure.php:89 db_structure.php:91 db_structure.php:102 #: db_structure.php:104 libraries/common.lib.php:2834 -#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "ابحث" #: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 -#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_operations.php:468 db_operations.php:492 db_search.php:344 #: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 #: libraries/Theme_Manager.class.php:305 -#: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 +#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:712 #: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 @@ -56,8 +56,8 @@ msgstr "ابحث" #: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 #: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 -#: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: libraries/sql_query_form.lib.php:377 libraries/sql_query_form.lib.php:447 +#: libraries/sql_query_form.lib.php:512 libraries/tbl_properties.inc.php:780 #: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 #: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 #: server_privileges.php:663 server_privileges.php:1620 @@ -67,7 +67,7 @@ msgstr "ابحث" #: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 #: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 -#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_operations.php:726 tbl_select.php:323 tbl_structure.php:559 #: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 #: view_create.php:181 view_operations.php:99 msgid "Go" @@ -248,47 +248,64 @@ msgstr "أمر" msgid "and then" msgstr "وبعدها" -#: db_operations.php:390 +#: db_operations.php:379 +#, fuzzy +#| msgid "Rename database to" +msgid "Remove database" +msgstr "أعد تسمية قاعدة البيانات ﺇﻠﻰ" + +#: db_operations.php:391 +#, php-format +msgid "Database %s has been dropped." +msgstr "قاعدة بيانات %s محذوفه." + +#: db_operations.php:396 +#, fuzzy +#| msgid "Copy database to" +msgid "Drop the database (DROP)" +msgstr "إنسخ قاعدة البيانات إلى" + +#: db_operations.php:424 msgid "Copy database to" msgstr "إنسخ قاعدة البيانات إلى" -#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:431 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "البنية فقط" -#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:432 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "البنية والبيانات" -#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:433 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "بيانات فقط" -#: db_operations.php:407 +#: db_operations.php:441 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE قبل النسخ" -#: db_operations.php:410 libraries/export/sql.php:51 +#: db_operations.php:444 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 #: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "أضف %s" -#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: db_operations.php:448 libraries/export/sql.php:77 tbl_operations.php:296 #: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "أضف قيمة AUTO_INCREMENT" -#: db_operations.php:418 tbl_operations.php:542 +#: db_operations.php:452 tbl_operations.php:542 msgid "Add constraints" msgstr "أضف قيودا" -#: db_operations.php:431 +#: db_operations.php:465 msgid "Switch to copied database" msgstr "" -#: db_operations.php:451 libraries/Index.class.php:447 +#: db_operations.php:485 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 #: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 #: server_collations.php:53 server_collations.php:65 server_databases.php:108 @@ -297,7 +314,7 @@ msgstr "" msgid "Collation" msgstr "Collation" -#: db_operations.php:464 pdf_schema.php:32 +#: db_operations.php:498 pdf_schema.php:32 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -309,7 +326,7 @@ msgstr "" "تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %sهنا" "%s." -#: db_operations.php:497 +#: db_operations.php:531 msgid "Edit PDF Pages" msgstr "عدل صفحات PDF" @@ -365,7 +382,7 @@ msgstr[0] "%s جدول (جداول)" msgstr[1] "%s جدول (جداول)" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -457,7 +474,7 @@ msgstr "إرسال الاستعلام" #: db_search.php:50 libraries/auth/config.auth.lib.php:83 #: libraries/auth/config.auth.lib.php:102 -#: libraries/auth/cookie.auth.lib.php:640 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:182 msgid "Access denied" msgstr "غير مسموح" @@ -504,7 +521,7 @@ msgid "Browse" msgstr "استعراض" #: db_search.php:254 libraries/display_tbl.lib.php:1163 -#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:440 #: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 @@ -551,14 +568,14 @@ msgstr "داخل الجدول)الجداول(:" #: db_structure.php:79 db_structure.php:80 db_structure.php:92 #: db_structure.php:93 db_structure.php:105 db_structure.php:106 -#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:311 +#: libraries/sql_query_form.lib.php:314 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "إدخال" #: db_structure.php:81 db_structure.php:94 db_structure.php:107 #: libraries/common.lib.php:2832 libraries/common.lib.php:2839 -#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 +#: libraries/db_links.inc.php:48 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 @@ -571,8 +588,7 @@ msgstr "بناء" #: db_structure.php:96 db_structure.php:108 db_structure.php:109 #: db_structure.php:530 db_structure.php:531 db_tracking.php:86 #: libraries/Index.class.php:482 libraries/common.lib.php:1663 -#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 #: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 #: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" @@ -581,21 +597,21 @@ msgstr "حذف" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 +#: libraries/mult_submits.inc.php:38 msgid "Empty" msgstr "إفراغ محتوى" -#: db_structure.php:301 libraries/tbl_links.inc.php:98 +#: db_structure.php:301 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "جدول %s أفرغت محتوياتها" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "View %s has been dropped" msgstr "" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "جدول %s حذفت" @@ -685,7 +701,7 @@ msgstr "إصلاح الجدول" msgid "Analyze table" msgstr "تحليل الجدول" -#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:56 #: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 #: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 #: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 @@ -1389,7 +1405,7 @@ msgid "Databases" msgstr "قاعدة بيانات" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30 #: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 #: tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -1492,7 +1508,7 @@ msgid "Cannot connect: invalid settings." msgstr "" #: libraries/auth/config.auth.lib.php:91 -#: libraries/auth/cookie.auth.lib.php:205 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:206 libraries/auth/http.auth.lib.php:64 #: test/theme.php:151 #, php-format msgid "Welcome to %s" @@ -1516,56 +1532,56 @@ msgstr "" "المستضيف، أو اسم المستخدم وكلمة المرور في ملف الإعداد config.inc.php وتتأكد " "أنها مطابقة للمعلومات المعطاة إليك من قبل المسؤول عن خادم MySQL." -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:231 msgid "Log in" msgstr "دخول" -#: libraries/auth/cookie.auth.lib.php:232 -#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:233 +#: libraries/auth/cookie.auth.lib.php:235 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:94 msgid "phpMyAdmin documentation" msgstr "مستندات وثائقية لـ phpMyAdmin (بالإنجليزية)" -#: libraries/auth/cookie.auth.lib.php:244 #: libraries/auth/cookie.auth.lib.php:245 +#: libraries/auth/cookie.auth.lib.php:246 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:244 +#: libraries/auth/cookie.auth.lib.php:245 msgid "Server:" msgstr "الخادم:" -#: libraries/auth/cookie.auth.lib.php:249 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Username:" msgstr "اسم المستخدم:" -#: libraries/auth/cookie.auth.lib.php:253 +#: libraries/auth/cookie.auth.lib.php:254 msgid "Password:" msgstr "كلمة السر:" -#: libraries/auth/cookie.auth.lib.php:260 +#: libraries/auth/cookie.auth.lib.php:261 msgid "Server Choice" msgstr "اختيار الخادم" -#: libraries/auth/cookie.auth.lib.php:306 libraries/header.inc.php:58 +#: libraries/auth/cookie.auth.lib.php:307 libraries/header.inc.php:58 msgid "Cookies must be enabled past this point." msgstr "يجب تفعيل دعم الكوكيز في هذه المرحلة." -#: libraries/auth/cookie.auth.lib.php:638 +#: libraries/auth/cookie.auth.lib.php:639 #: libraries/auth/signon.auth.lib.php:180 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" -#: libraries/auth/cookie.auth.lib.php:642 +#: libraries/auth/cookie.auth.lib.php:643 #: libraries/auth/signon.auth.lib.php:184 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" -#: libraries/auth/cookie.auth.lib.php:652 -#: libraries/auth/cookie.auth.lib.php:654 +#: libraries/auth/cookie.auth.lib.php:653 +#: libraries/auth/cookie.auth.lib.php:655 #: libraries/auth/signon.auth.lib.php:190 msgid "Cannot log in to the MySQL server" msgstr "لا يمكن الدخول إلى خادم MySQL" @@ -1683,7 +1699,7 @@ msgstr "" #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 #: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 -#: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 +#: libraries/sql_query_form.lib.php:421 libraries/sql_query_form.lib.php:424 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" msgstr "مستندات وثائقية" @@ -1824,19 +1840,19 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/common.lib.php:2833 libraries/common.lib.php:2840 -#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 +#: libraries/db_links.inc.php:53 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 #: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 -#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:86 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "عمليات" -#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:265 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1852,36 +1868,31 @@ msgstr "أحداث" msgid "Name" msgstr "الاسم" -#: libraries/db_links.inc.php:43 -#, php-format -msgid "Database %s has been dropped." -msgstr "قاعدة بيانات %s محذوفه." - -#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 -#: libraries/db_links.inc.php:57 +#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43 +#: libraries/db_links.inc.php:44 msgid "Database seems to be empty!" msgstr "قاعدة البيانات فارغة!" -#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/db_links.inc.php:66 libraries/relation.lib.php:137 #: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "تتبع" -#: libraries/db_links.inc.php:84 +#: libraries/db_links.inc.php:71 msgid "Query" msgstr "استعلام بواسطة مثال" -#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 +#: libraries/db_links.inc.php:76 libraries/relation.lib.php:133 msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:87 #: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "استورد" -#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:65 #: server_privileges.php:110 server_privileges.php:1718 #: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" @@ -2043,7 +2054,7 @@ msgid "remember template" msgstr "تذكر القالب" #: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 -#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 +#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:509 msgid "Character set of the file:" msgstr "شيفرة أحرف الملف:" @@ -2096,7 +2107,7 @@ msgstr "" msgid "File to import" msgstr "" -#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:497 +#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:484 msgid "Location of the text file" msgstr "مكان ملف نصي" @@ -2104,12 +2115,12 @@ msgstr "مكان ملف نصي" msgid "File uploads are not allowed on this server." msgstr "" -#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 +#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:493 #: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "الدليل الذي حددته لتحميل عملك لا يمكن الوصول إليه." -#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 +#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:496 #: tbl_change.php:925 msgid "web server upload directory" msgstr "دليل تحميل الملفات على خادم الشبكة" @@ -3452,7 +3463,7 @@ msgid "" "Please see the documentation on how to update your column_comments table" msgstr "رجاء راجع التوثيق لكيفية تحديث جدول Column_comments." -#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:403 msgid "Bookmarked SQL query" msgstr "علامة مرجعية SQL-استعلام" @@ -3517,7 +3528,7 @@ msgstr "" msgid "Slave status" msgstr "" -#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:428 +#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:415 #: server_status.php:736 server_variables.php:51 msgid "Variable" msgstr "متغير" @@ -3644,51 +3655,51 @@ msgstr "فرق" msgid "Target database" msgstr "" -#: libraries/sql_query_form.lib.php:219 +#: libraries/sql_query_form.lib.php:217 #, php-format msgid "Run SQL query/queries on server %s" msgstr "" -#: libraries/sql_query_form.lib.php:236 libraries/sql_query_form.lib.php:261 +#: libraries/sql_query_form.lib.php:234 libraries/sql_query_form.lib.php:258 #, php-format msgid "Run SQL query/queries on database %s" msgstr "تنفيذ استعلام/استعلامات SQL على قاعدة بيانات %s" -#: libraries/sql_query_form.lib.php:307 +#: libraries/sql_query_form.lib.php:294 #, fuzzy #| msgid "Column names" msgid "Columns" msgstr "اسم العمود" -#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 +#: libraries/sql_query_form.lib.php:329 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "اجعل علامة مرجعية SQL-استعلام" -#: libraries/sql_query_form.lib.php:349 sql.php:669 +#: libraries/sql_query_form.lib.php:336 sql.php:669 msgid "Let every user access this bookmark" msgstr "اسمح لكل المستخدمين الوصول إلى هذه العلامة المرجعية" -#: libraries/sql_query_form.lib.php:355 +#: libraries/sql_query_form.lib.php:342 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/sql_query_form.lib.php:371 +#: libraries/sql_query_form.lib.php:358 msgid "Do not overwrite this query from outside the window" msgstr "لا تخزن على هذا الاستعلام من خارج النافذة" -#: libraries/sql_query_form.lib.php:378 +#: libraries/sql_query_form.lib.php:365 msgid "Delimiter" msgstr "" -#: libraries/sql_query_form.lib.php:386 +#: libraries/sql_query_form.lib.php:373 msgid " Show this query here again " msgstr " عرض هذا الاستعلام هنا مرة أخرى " -#: libraries/sql_query_form.lib.php:445 +#: libraries/sql_query_form.lib.php:432 msgid "Submit" msgstr "إرسال" -#: libraries/sql_query_form.lib.php:449 +#: libraries/sql_query_form.lib.php:436 msgid "View only" msgstr "عرض فقط" @@ -3757,12 +3768,11 @@ msgstr "" "لم يمكن تشغيل محقق SQL. الرجاء التأكد مما إذا كنت ثبتت إضافات PHP كما هو " "مشروح في %sالتوثيق%s." -#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 -#: libraries/tbl_links.inc.php:139 +#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107 msgid "Table seems to be empty!" msgstr "" -#: libraries/tbl_links.inc.php:147 +#: libraries/tbl_links.inc.php:115 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" @@ -7697,40 +7707,54 @@ msgstr "لقد تم إعادة تحميل الجدول %s بنجاح" msgid "Flush the table (FLUSH)" msgstr "إعادة تحميل الجدول (\"FLUSH\")" -#: tbl_operations.php:648 +#: tbl_operations.php:642 +#, fuzzy +#| msgid "Table name" +msgid "Table removal" +msgstr "اسم الجدول" + +#: tbl_operations.php:657 +msgid "Empty the table (TRUNCATE)" +msgstr "" + +#: tbl_operations.php:675 +msgid "Drop the table (DROP)" +msgstr "" + +#: tbl_operations.php:696 msgid "Partition maintenance" msgstr "" -#: tbl_operations.php:656 +#: tbl_operations.php:704 #, php-format msgid "Partition %s" msgstr "" -#: tbl_operations.php:659 +#: tbl_operations.php:707 msgid "Analyze" msgstr "حلل" -#: tbl_operations.php:660 +#: tbl_operations.php:708 msgid "Check" msgstr "تحقق" -#: tbl_operations.php:661 +#: tbl_operations.php:709 msgid "Optimize" msgstr "" -#: tbl_operations.php:662 +#: tbl_operations.php:710 msgid "Rebuild" msgstr "" -#: tbl_operations.php:663 +#: tbl_operations.php:711 msgid "Repair" msgstr "صلح" -#: tbl_operations.php:675 +#: tbl_operations.php:723 msgid "Remove partitioning" msgstr "" -#: tbl_operations.php:701 +#: tbl_operations.php:749 msgid "Check referential integrity:" msgstr "تحديد التكامل المرجعي:" diff --git a/po/az.po b/po/az.po index a0226d6d0..b3dda59d8 100644 --- a/po/az.po +++ b/po/az.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-26 17:18+0200\n" +"POT-Creation-Date: 2010-07-27 10:12+0200\n" "PO-Revision-Date: 2010-03-12 09:11+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: azerbaijani \n" @@ -35,16 +35,16 @@ msgstr "" #: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 #: db_structure.php:89 db_structure.php:91 db_structure.php:102 #: db_structure.php:104 libraries/common.lib.php:2834 -#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Axtarış" #: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 -#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_operations.php:468 db_operations.php:492 db_search.php:344 #: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 #: libraries/Theme_Manager.class.php:305 -#: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 +#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:712 #: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 @@ -52,8 +52,8 @@ msgstr "Axtarış" #: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 #: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 -#: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: libraries/sql_query_form.lib.php:377 libraries/sql_query_form.lib.php:447 +#: libraries/sql_query_form.lib.php:512 libraries/tbl_properties.inc.php:780 #: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 #: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 #: server_privileges.php:663 server_privileges.php:1620 @@ -63,7 +63,7 @@ msgstr "Axtarış" #: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 #: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 -#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_operations.php:726 tbl_select.php:323 tbl_structure.php:559 #: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 #: view_create.php:181 view_operations.php:99 msgid "Go" @@ -246,49 +246,64 @@ msgstr "Komanda Tipi" msgid "and then" msgstr "" -#: db_operations.php:390 +#: db_operations.php:379 +#, fuzzy +msgid "Remove database" +msgstr "Cedveli yeniden adlandır" + +#: db_operations.php:391 +#, php-format +msgid "Database %s has been dropped." +msgstr "%s bazası leğv edildi." + +#: db_operations.php:396 +#, fuzzy +msgid "Drop the database (DROP)" +msgstr "Baza seçilmemişdir ve ya mövcud deyildir." + +#: db_operations.php:424 #, fuzzy msgid "Copy database to" msgstr "Baza seçilmemişdir ve ya mövcud deyildir." -#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:431 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Sadece quruluş" -#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:432 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Quruluş ve me'lumat" -#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:433 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Sadece me'lumat" -#: db_operations.php:407 +#: db_operations.php:441 msgid "CREATE DATABASE before copying" msgstr "" -#: db_operations.php:410 libraries/export/sql.php:51 +#: db_operations.php:444 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 #: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "" -#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: db_operations.php:448 libraries/export/sql.php:77 tbl_operations.php:296 #: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT deyeri elave et" -#: db_operations.php:418 tbl_operations.php:542 +#: db_operations.php:452 tbl_operations.php:542 msgid "Add constraints" msgstr "" -#: db_operations.php:431 +#: db_operations.php:465 #, fuzzy msgid "Switch to copied database" msgstr "Kopyalanmış cedvele keç" -#: db_operations.php:451 libraries/Index.class.php:447 +#: db_operations.php:485 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 #: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 #: server_collations.php:53 server_collations.php:65 server_databases.php:108 @@ -298,7 +313,7 @@ msgstr "Kopyalanmış cedvele keç" msgid "Collation" msgstr "Quruluş" -#: db_operations.php:464 pdf_schema.php:32 +#: db_operations.php:498 pdf_schema.php:32 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -310,7 +325,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:497 +#: db_operations.php:531 msgid "Edit PDF Pages" msgstr "PDF Sehifelerini Deyişdir" @@ -366,7 +381,7 @@ msgstr[0] "%s cedvel" msgstr[1] "%s cedvel" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -458,7 +473,7 @@ msgstr "Emri İcra Et" #: db_search.php:50 libraries/auth/config.auth.lib.php:83 #: libraries/auth/config.auth.lib.php:102 -#: libraries/auth/cookie.auth.lib.php:640 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:182 msgid "Access denied" msgstr "Giriş Tesdiq Edilmedi" @@ -501,7 +516,7 @@ msgid "Browse" msgstr "İçindekiler" #: db_search.php:254 libraries/display_tbl.lib.php:1163 -#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:440 #: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 @@ -544,14 +559,14 @@ msgstr "Inside table(s):" #: db_structure.php:79 db_structure.php:80 db_structure.php:92 #: db_structure.php:93 db_structure.php:105 db_structure.php:106 -#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:311 +#: libraries/sql_query_form.lib.php:314 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Elave et" #: db_structure.php:81 db_structure.php:94 db_structure.php:107 #: libraries/common.lib.php:2832 libraries/common.lib.php:2839 -#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 +#: libraries/db_links.inc.php:48 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 @@ -564,8 +579,7 @@ msgstr "Quruluş" #: db_structure.php:96 db_structure.php:108 db_structure.php:109 #: db_structure.php:530 db_structure.php:531 db_tracking.php:86 #: libraries/Index.class.php:482 libraries/common.lib.php:1663 -#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 #: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 #: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" @@ -574,21 +588,21 @@ msgstr "Leğv et" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 +#: libraries/mult_submits.inc.php:38 msgid "Empty" msgstr "Boşalt" -#: db_structure.php:301 libraries/tbl_links.inc.php:98 +#: db_structure.php:301 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "%s cedveli boşaldıldı" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, fuzzy, php-format msgid "View %s has been dropped" msgstr "%s sahesi leğv edildi" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "%s cedveli leğv edildi" @@ -679,7 +693,7 @@ msgstr "Cedveli te'mir et" msgid "Analyze table" msgstr "Cedveli analiz et" -#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:56 #: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 #: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 #: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 @@ -1400,7 +1414,7 @@ msgid "Databases" msgstr "Me'lumat Bazaları" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30 #: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 #: tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -1503,7 +1517,7 @@ msgid "Cannot connect: invalid settings." msgstr "Elaqe qura bilmirem: yalnış quruluş." #: libraries/auth/config.auth.lib.php:91 -#: libraries/auth/cookie.auth.lib.php:205 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:206 libraries/auth/http.auth.lib.php:64 #: test/theme.php:151 #, php-format msgid "Welcome to %s" @@ -1524,57 +1538,57 @@ msgid "" "the administrator of the MySQL server." msgstr "" -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:231 msgid "Log in" msgstr "Sisteme Giriş" -#: libraries/auth/cookie.auth.lib.php:232 -#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:233 +#: libraries/auth/cookie.auth.lib.php:235 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:94 msgid "phpMyAdmin documentation" msgstr "phpMyAdmin dokumentasiyası (etraflı me'lumat üçün)" -#: libraries/auth/cookie.auth.lib.php:244 #: libraries/auth/cookie.auth.lib.php:245 +#: libraries/auth/cookie.auth.lib.php:246 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:244 +#: libraries/auth/cookie.auth.lib.php:245 #, fuzzy msgid "Server:" msgstr "Server" -#: libraries/auth/cookie.auth.lib.php:249 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Username:" msgstr "İstifadeçi Adı:" -#: libraries/auth/cookie.auth.lib.php:253 +#: libraries/auth/cookie.auth.lib.php:254 msgid "Password:" msgstr "Parol:" -#: libraries/auth/cookie.auth.lib.php:260 +#: libraries/auth/cookie.auth.lib.php:261 msgid "Server Choice" msgstr "Quraşdırılmış Serverler" -#: libraries/auth/cookie.auth.lib.php:306 libraries/header.inc.php:58 +#: libraries/auth/cookie.auth.lib.php:307 libraries/header.inc.php:58 msgid "Cookies must be enabled past this point." msgstr "Sisteme girebilmeniz üçün çerez faylları (cookie-ler) aktiv olmalıdır." -#: libraries/auth/cookie.auth.lib.php:638 +#: libraries/auth/cookie.auth.lib.php:639 #: libraries/auth/signon.auth.lib.php:180 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" -#: libraries/auth/cookie.auth.lib.php:642 +#: libraries/auth/cookie.auth.lib.php:643 #: libraries/auth/signon.auth.lib.php:184 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" -#: libraries/auth/cookie.auth.lib.php:652 -#: libraries/auth/cookie.auth.lib.php:654 +#: libraries/auth/cookie.auth.lib.php:653 +#: libraries/auth/cookie.auth.lib.php:655 #: libraries/auth/signon.auth.lib.php:190 msgid "Cannot log in to the MySQL server" msgstr "MySQL server-e gire bilmirem" @@ -1695,7 +1709,7 @@ msgstr "Gönderildi" #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 #: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 -#: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 +#: libraries/sql_query_form.lib.php:421 libraries/sql_query_form.lib.php:424 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" msgstr "Dokumentasiya" @@ -1838,19 +1852,19 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/common.lib.php:2833 libraries/common.lib.php:2840 -#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 +#: libraries/db_links.inc.php:53 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 #: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 -#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:86 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "Emeliyyatlar" -#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:265 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1866,37 +1880,32 @@ msgstr "" msgid "Name" msgstr "Adı" -#: libraries/db_links.inc.php:43 -#, php-format -msgid "Database %s has been dropped." -msgstr "%s bazası leğv edildi." - -#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 -#: libraries/db_links.inc.php:57 +#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43 +#: libraries/db_links.inc.php:44 msgid "Database seems to be empty!" msgstr "" -#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/db_links.inc.php:66 libraries/relation.lib.php:137 #: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:84 +#: libraries/db_links.inc.php:71 msgid "Query" msgstr "Sorğu" -#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 +#: libraries/db_links.inc.php:76 libraries/relation.lib.php:133 msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:87 #: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 #, fuzzy msgid "Import" msgstr "Eksport" -#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:65 #: server_privileges.php:110 server_privileges.php:1718 #: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" @@ -2059,7 +2068,7 @@ msgid "remember template" msgstr "nomenklaturanı unutma" #: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 -#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 +#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:509 msgid "Character set of the file:" msgstr "Faylın Charset-i:" @@ -2112,7 +2121,7 @@ msgstr "" msgid "File to import" msgstr "" -#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:497 +#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:484 msgid "Location of the text file" msgstr "tekst faylından yükleyerek" @@ -2120,12 +2129,12 @@ msgstr "tekst faylından yükleyerek" msgid "File uploads are not allowed on this server." msgstr "" -#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 +#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:493 #: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "Upload işleri üçün te'yin etdiyiniz direktoriya tapılmadı" -#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 +#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:496 #: tbl_change.php:925 msgid "web server upload directory" msgstr "web-server upload direktoriyası" @@ -3486,7 +3495,7 @@ msgid "" "Please see the documentation on how to update your column_comments table" msgstr "Please see Documentation on how to update your Column_comments Table" -#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:403 msgid "Bookmarked SQL query" msgstr "Bookmark-lanmış SQL sorğusu" @@ -3551,7 +3560,7 @@ msgstr "" msgid "Slave status" msgstr "" -#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:428 +#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:415 #: server_status.php:736 server_variables.php:51 msgid "Variable" msgstr "Deyişen" @@ -3684,51 +3693,51 @@ msgstr "" msgid "Target database" msgstr "Search in database" -#: libraries/sql_query_form.lib.php:219 +#: libraries/sql_query_form.lib.php:217 #, 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:236 libraries/sql_query_form.lib.php:261 +#: libraries/sql_query_form.lib.php:234 libraries/sql_query_form.lib.php:258 #, 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:307 +#: libraries/sql_query_form.lib.php:294 #, fuzzy #| msgid "Column names" msgid "Columns" msgstr "Sütun adları" -#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 +#: libraries/sql_query_form.lib.php:329 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "Bu SQL sorğusunu bookmark-la" -#: libraries/sql_query_form.lib.php:349 sql.php:669 +#: libraries/sql_query_form.lib.php:336 sql.php:669 msgid "Let every user access this bookmark" msgstr "" -#: libraries/sql_query_form.lib.php:355 +#: libraries/sql_query_form.lib.php:342 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/sql_query_form.lib.php:371 +#: libraries/sql_query_form.lib.php:358 msgid "Do not overwrite this query from outside the window" msgstr "" -#: libraries/sql_query_form.lib.php:378 +#: libraries/sql_query_form.lib.php:365 msgid "Delimiter" msgstr "" -#: libraries/sql_query_form.lib.php:386 +#: libraries/sql_query_form.lib.php:373 msgid " Show this query here again " msgstr " Bu sorğunu burada yene göster " -#: libraries/sql_query_form.lib.php:445 +#: libraries/sql_query_form.lib.php:432 msgid "Submit" msgstr "Submit" -#: libraries/sql_query_form.lib.php:449 +#: libraries/sql_query_form.lib.php:436 msgid "View only" msgstr "Sadece göster" @@ -3799,12 +3808,11 @@ 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/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 -#: libraries/tbl_links.inc.php:139 +#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107 msgid "Table seems to be empty!" msgstr "" -#: libraries/tbl_links.inc.php:147 +#: libraries/tbl_links.inc.php:115 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" @@ -7806,42 +7814,54 @@ msgstr "%s cedveli flush-landı" msgid "Flush the table (FLUSH)" msgstr "Cedveli flush-la (\"FLUSH\")" -#: tbl_operations.php:648 +#: tbl_operations.php:642 +msgid "Table removal" +msgstr "" + +#: tbl_operations.php:657 +msgid "Empty the table (TRUNCATE)" +msgstr "" + +#: tbl_operations.php:675 +msgid "Drop the table (DROP)" +msgstr "" + +#: tbl_operations.php:696 #, fuzzy msgid "Partition maintenance" msgstr "Cedvel temizliyi" -#: tbl_operations.php:656 +#: tbl_operations.php:704 #, php-format msgid "Partition %s" msgstr "" -#: tbl_operations.php:659 +#: tbl_operations.php:707 msgid "Analyze" msgstr "" -#: tbl_operations.php:660 +#: tbl_operations.php:708 msgid "Check" msgstr "" -#: tbl_operations.php:661 +#: tbl_operations.php:709 msgid "Optimize" msgstr "" -#: tbl_operations.php:662 +#: tbl_operations.php:710 msgid "Rebuild" msgstr "" -#: tbl_operations.php:663 +#: tbl_operations.php:711 #, fuzzy msgid "Repair" msgstr "Cedveli te'mir et" -#: tbl_operations.php:675 +#: tbl_operations.php:723 msgid "Remove partitioning" msgstr "" -#: tbl_operations.php:701 +#: tbl_operations.php:749 msgid "Check referential integrity:" msgstr "Check referential integrity:" diff --git a/po/be.po b/po/be.po index 2040b7f0a..cc18df4df 100644 --- a/po/be.po +++ b/po/be.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-26 17:18+0200\n" +"POT-Creation-Date: 2010-07-27 10:12+0200\n" "PO-Revision-Date: 2010-03-12 09:12+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: belarusian_cyrillic \n" @@ -38,16 +38,16 @@ msgstr "" #: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 #: db_structure.php:89 db_structure.php:91 db_structure.php:102 #: db_structure.php:104 libraries/common.lib.php:2834 -#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Пошук" #: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 -#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_operations.php:468 db_operations.php:492 db_search.php:344 #: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 #: libraries/Theme_Manager.class.php:305 -#: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 +#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:712 #: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 @@ -55,8 +55,8 @@ msgstr "Пошук" #: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 #: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 -#: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: libraries/sql_query_form.lib.php:377 libraries/sql_query_form.lib.php:447 +#: libraries/sql_query_form.lib.php:512 libraries/tbl_properties.inc.php:780 #: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 #: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 #: server_privileges.php:663 server_privileges.php:1620 @@ -66,7 +66,7 @@ msgstr "Пошук" #: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 #: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 -#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_operations.php:726 tbl_select.php:323 tbl_structure.php:559 #: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 #: view_create.php:181 view_operations.php:99 msgid "Go" @@ -249,47 +249,63 @@ msgstr "Каманда" msgid "and then" msgstr "і пасьля" -#: db_operations.php:390 +#: db_operations.php:379 +#, fuzzy +#| msgid "Rename database to" +msgid "Remove database" +msgstr "Перайменаваць базу дадзеных у" + +#: db_operations.php:391 +#, php-format +msgid "Database %s has been dropped." +msgstr "База дадзеных %s была выдаленая." + +#: db_operations.php:396 +#, fuzzy +msgid "Drop the database (DROP)" +msgstr "Базы дадзеных адсутнічаюць" + +#: db_operations.php:424 msgid "Copy database to" msgstr "Капіяваць базу дадзеных у" -#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:431 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Толькі структуру" -#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:432 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Структуру і дадзеныя" -#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:433 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Толькі дадзеныя" -#: db_operations.php:407 +#: db_operations.php:441 msgid "CREATE DATABASE before copying" msgstr "выканаць CREATE DATABASE перад капіяваньнем" -#: db_operations.php:410 libraries/export/sql.php:51 +#: db_operations.php:444 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 #: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "Дадаць %s" -#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: db_operations.php:448 libraries/export/sql.php:77 tbl_operations.php:296 #: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Дадаць значэньне AUTO_INCREMENT" -#: db_operations.php:418 tbl_operations.php:542 +#: db_operations.php:452 tbl_operations.php:542 msgid "Add constraints" msgstr "Дадаць абмежаваньні" -#: db_operations.php:431 +#: db_operations.php:465 msgid "Switch to copied database" msgstr "Перайсьці да скапіяванай базы дадзеных" -#: db_operations.php:451 libraries/Index.class.php:447 +#: db_operations.php:485 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 #: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 #: server_collations.php:53 server_collations.php:65 server_databases.php:108 @@ -298,7 +314,7 @@ msgstr "Перайсьці да скапіяванай базы дадзеных msgid "Collation" msgstr "Супастаўленьне" -#: db_operations.php:464 pdf_schema.php:32 +#: db_operations.php:498 pdf_schema.php:32 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -310,7 +326,7 @@ msgstr "" "Дадатковыя магчымасьці работы з зьвязанымі табліцамі былі адключаныя. Каб " "высьветліць чаму, націсьніце %sтут%s." -#: db_operations.php:497 +#: db_operations.php:531 msgid "Edit PDF Pages" msgstr "Рэдагаваць PDF-старонкі" @@ -366,7 +382,7 @@ msgstr[0] "%s табліц(ы)" msgstr[1] "%s табліц(ы)" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -458,7 +474,7 @@ msgstr "Выканаць запыт" #: db_search.php:50 libraries/auth/config.auth.lib.php:83 #: libraries/auth/config.auth.lib.php:102 -#: libraries/auth/cookie.auth.lib.php:640 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:182 msgid "Access denied" msgstr "У доступе адмоўлена" @@ -501,7 +517,7 @@ msgid "Browse" msgstr "Прагляд" #: db_search.php:254 libraries/display_tbl.lib.php:1163 -#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:440 #: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 @@ -544,14 +560,14 @@ msgstr "Унутры поля:" #: db_structure.php:79 db_structure.php:80 db_structure.php:92 #: db_structure.php:93 db_structure.php:105 db_structure.php:106 -#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:311 +#: libraries/sql_query_form.lib.php:314 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Уставіць" #: db_structure.php:81 db_structure.php:94 db_structure.php:107 #: libraries/common.lib.php:2832 libraries/common.lib.php:2839 -#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 +#: libraries/db_links.inc.php:48 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 @@ -564,8 +580,7 @@ msgstr "Структура" #: db_structure.php:96 db_structure.php:108 db_structure.php:109 #: db_structure.php:530 db_structure.php:531 db_tracking.php:86 #: libraries/Index.class.php:482 libraries/common.lib.php:1663 -#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 #: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 #: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" @@ -574,21 +589,21 @@ msgstr "Выдаліць" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 +#: libraries/mult_submits.inc.php:38 msgid "Empty" msgstr "Ачысьціць" -#: db_structure.php:301 libraries/tbl_links.inc.php:98 +#: db_structure.php:301 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "Табліца %s была ачышчаная" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "View %s has been dropped" msgstr "Выгляд %s быў выдалены" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "Табліца %s была выдаленая" @@ -682,7 +697,7 @@ msgstr "Рамантаваць табліцу" msgid "Analyze table" msgstr "Аналізаваць табліцу" -#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:56 #: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 #: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 #: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 @@ -1422,7 +1437,7 @@ msgid "Databases" msgstr "Базы дадзеных" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30 #: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 #: tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -1529,7 +1544,7 @@ msgid "Cannot connect: invalid settings." msgstr "Немагчыма падлучыцца: няправільныя налады." #: libraries/auth/config.auth.lib.php:91 -#: libraries/auth/cookie.auth.lib.php:205 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:206 libraries/auth/http.auth.lib.php:64 #: test/theme.php:151 #, php-format msgid "Welcome to %s" @@ -1556,49 +1571,49 @@ msgstr "" "ўпэўніцеся, што яны адпавядаюць інфармацыі, якую даў адміністратар MySQL-" "сэрвэра." -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:231 msgid "Log in" msgstr "Уваход у сыстэму" -#: libraries/auth/cookie.auth.lib.php:232 -#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:233 +#: libraries/auth/cookie.auth.lib.php:235 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:94 msgid "phpMyAdmin documentation" msgstr "Дакумэнтацыя па phpMyAdmin" -#: libraries/auth/cookie.auth.lib.php:244 #: libraries/auth/cookie.auth.lib.php:245 +#: libraries/auth/cookie.auth.lib.php:246 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:244 +#: libraries/auth/cookie.auth.lib.php:245 msgid "Server:" msgstr "Сэрвэр" -#: libraries/auth/cookie.auth.lib.php:249 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Username:" msgstr "Імя карыстальніка:" -#: libraries/auth/cookie.auth.lib.php:253 +#: libraries/auth/cookie.auth.lib.php:254 msgid "Password:" msgstr "Пароль:" -#: libraries/auth/cookie.auth.lib.php:260 +#: libraries/auth/cookie.auth.lib.php:261 msgid "Server Choice" msgstr "Выбар сэрвэра" -#: libraries/auth/cookie.auth.lib.php:306 libraries/header.inc.php:58 +#: libraries/auth/cookie.auth.lib.php:307 libraries/header.inc.php:58 msgid "Cookies must be enabled past this point." msgstr "Cookies мусяць быць уключанымі пасьля гэтага месца." -#: libraries/auth/cookie.auth.lib.php:638 +#: libraries/auth/cookie.auth.lib.php:639 #: libraries/auth/signon.auth.lib.php:180 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" -#: libraries/auth/cookie.auth.lib.php:642 +#: libraries/auth/cookie.auth.lib.php:643 #: libraries/auth/signon.auth.lib.php:184 #, php-format msgid "No activity within %s seconds; please log in again" @@ -1606,8 +1621,8 @@ msgstr "" "Не было аніякай актыўнасьці на працягу %s сэкундаў. Калі ласка, увайдзіце " "зноў" -#: libraries/auth/cookie.auth.lib.php:652 -#: libraries/auth/cookie.auth.lib.php:654 +#: libraries/auth/cookie.auth.lib.php:653 +#: libraries/auth/cookie.auth.lib.php:655 #: libraries/auth/signon.auth.lib.php:190 msgid "Cannot log in to the MySQL server" msgstr "Немагчыма залагавацца на сэрвэр MySQL" @@ -1731,7 +1746,7 @@ msgstr "Адпраўлена" #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 #: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 -#: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 +#: libraries/sql_query_form.lib.php:421 libraries/sql_query_form.lib.php:424 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" msgstr "Дакумэнтацыя" @@ -1875,19 +1890,19 @@ msgstr "" "Існуе вядомая памылка з выкарыстаньнем парамэтра %s, глядзіце апісаньне на %s" #: libraries/common.lib.php:2833 libraries/common.lib.php:2840 -#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 +#: libraries/db_links.inc.php:53 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 #: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 -#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:86 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "Апэрацыі" -#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:265 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1903,36 +1918,31 @@ msgstr "Падзеі" msgid "Name" msgstr "Назва" -#: libraries/db_links.inc.php:43 -#, php-format -msgid "Database %s has been dropped." -msgstr "База дадзеных %s была выдаленая." - -#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 -#: libraries/db_links.inc.php:57 +#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43 +#: libraries/db_links.inc.php:44 msgid "Database seems to be empty!" msgstr "База дадзеных — пустая!" -#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/db_links.inc.php:66 libraries/relation.lib.php:137 #: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:84 +#: libraries/db_links.inc.php:71 msgid "Query" msgstr "Запыт згодна прыкладу" -#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 +#: libraries/db_links.inc.php:76 libraries/relation.lib.php:133 msgid "Designer" msgstr "Дызайнэр" -#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:87 #: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Імрарт" -#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:65 #: server_privileges.php:110 server_privileges.php:1718 #: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" @@ -2103,7 +2113,7 @@ msgid "remember template" msgstr "запомніць шаблён" #: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 -#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 +#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:509 msgid "Character set of the file:" msgstr "Кадыроўка файла:" @@ -2156,7 +2166,7 @@ msgstr "" msgid "File to import" msgstr "Імпартаваць файл" -#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:497 +#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:484 msgid "Location of the text file" msgstr "Месцазнаходжаньне тэкставага файла" @@ -2164,12 +2174,12 @@ msgstr "Месцазнаходжаньне тэкставага файла" msgid "File uploads are not allowed on this server." msgstr "Загрузкі файлаў не дазволеныя на гэтым сэрвэры." -#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 +#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:493 #: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "Немагчыма адкрыць пазначаную вамі тэчку для загрузкі файлаў" -#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 +#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:496 #: tbl_change.php:925 msgid "web server upload directory" msgstr "тэчка вэб-сэрвэра для загрузкі файлаў" @@ -3591,7 +3601,7 @@ msgstr "" "За інфармацыяй як абнавіць табліцу column_comments зьвярніцеся, калі ласка, " "да дакумэнтацыі" -#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:403 msgid "Bookmarked SQL query" msgstr "Закладзены SQL-запыт" @@ -3658,7 +3668,7 @@ msgstr "Паказаць стан залежных сэрвэраў" msgid "Slave status" msgstr "Паказаць стан залежных сэрвэраў" -#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:428 +#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:415 #: server_status.php:736 server_variables.php:51 msgid "Variable" msgstr "Зьменная" @@ -3788,51 +3798,51 @@ msgstr "" msgid "Target database" msgstr "Пошук у базе дадзеных" -#: libraries/sql_query_form.lib.php:219 +#: libraries/sql_query_form.lib.php:217 #, php-format msgid "Run SQL query/queries on server %s" msgstr "Выканаць SQL-запыт(ы) на сэрвэры %s" -#: libraries/sql_query_form.lib.php:236 libraries/sql_query_form.lib.php:261 +#: libraries/sql_query_form.lib.php:234 libraries/sql_query_form.lib.php:258 #, php-format msgid "Run SQL query/queries on database %s" msgstr "Выканаць SQL-запыт(ы) на базе дадзеных %s" -#: libraries/sql_query_form.lib.php:307 +#: libraries/sql_query_form.lib.php:294 #, fuzzy #| msgid "Column names" msgid "Columns" msgstr "Назвы калёнак" -#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 +#: libraries/sql_query_form.lib.php:329 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "Дадаць гэты SQL-запыт у закладкі" -#: libraries/sql_query_form.lib.php:349 sql.php:669 +#: libraries/sql_query_form.lib.php:336 sql.php:669 msgid "Let every user access this bookmark" msgstr "Даць кожнаму карыстальніку доступ да гэтай закладкі" -#: libraries/sql_query_form.lib.php:355 +#: libraries/sql_query_form.lib.php:342 msgid "Replace existing bookmark of same name" msgstr "Замяніць існую закладку з такім жа імем" -#: libraries/sql_query_form.lib.php:371 +#: libraries/sql_query_form.lib.php:358 msgid "Do not overwrite this query from outside the window" msgstr "Не перазапісвайце гэты запыт у іншых вокнах" -#: libraries/sql_query_form.lib.php:378 +#: libraries/sql_query_form.lib.php:365 msgid "Delimiter" msgstr "Разьдзяляльнік" -#: libraries/sql_query_form.lib.php:386 +#: libraries/sql_query_form.lib.php:373 msgid " Show this query here again " msgstr " Паказаць гэты запыт зноў " -#: libraries/sql_query_form.lib.php:445 +#: libraries/sql_query_form.lib.php:432 msgid "Submit" msgstr "Адправіць" -#: libraries/sql_query_form.lib.php:449 +#: libraries/sql_query_form.lib.php:436 msgid "View only" msgstr "Толькі прагляд" @@ -3906,12 +3916,11 @@ msgstr "" "ўсталяваныя ў вас неабходныя пашырэньні PHP, як гэта апісана ў %sдакумэнтацыі" "%s." -#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 -#: libraries/tbl_links.inc.php:139 +#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107 msgid "Table seems to be empty!" msgstr "Табліца — пустая!" -#: libraries/tbl_links.inc.php:147 +#: libraries/tbl_links.inc.php:115 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" @@ -8131,40 +8140,54 @@ msgstr "Кэш табліцы %s быў ачышчаны" msgid "Flush the table (FLUSH)" msgstr "Скінуць кэш табліцы (\"FLUSH\")" -#: tbl_operations.php:648 +#: tbl_operations.php:642 +#, fuzzy +#| msgid "Table name" +msgid "Table removal" +msgstr "Імя табліцы" + +#: tbl_operations.php:657 +msgid "Empty the table (TRUNCATE)" +msgstr "" + +#: tbl_operations.php:675 +msgid "Drop the table (DROP)" +msgstr "" + +#: tbl_operations.php:696 msgid "Partition maintenance" msgstr "Падтрымка падзелаў" -#: tbl_operations.php:656 +#: tbl_operations.php:704 #, php-format msgid "Partition %s" msgstr "Падзел %s" -#: tbl_operations.php:659 +#: tbl_operations.php:707 msgid "Analyze" msgstr "Прааналізаваць" -#: tbl_operations.php:660 +#: tbl_operations.php:708 msgid "Check" msgstr "Праверыць" -#: tbl_operations.php:661 +#: tbl_operations.php:709 msgid "Optimize" msgstr "Аптымізаваць" -#: tbl_operations.php:662 +#: tbl_operations.php:710 msgid "Rebuild" msgstr "Перабудаваць" -#: tbl_operations.php:663 +#: tbl_operations.php:711 msgid "Repair" msgstr "Адрамантаваць" -#: tbl_operations.php:675 +#: tbl_operations.php:723 msgid "Remove partitioning" msgstr "Скасаваць падзел на часткі" -#: tbl_operations.php:701 +#: tbl_operations.php:749 msgid "Check referential integrity:" msgstr "Праверыць цэласнасьць дадзеных:" diff --git a/po/be@latin.po b/po/be@latin.po index ae5dd817e..b9a104ef0 100644 --- a/po/be@latin.po +++ b/po/be@latin.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-26 17:18+0200\n" +"POT-Creation-Date: 2010-07-27 10:12+0200\n" "PO-Revision-Date: 2010-03-30 23:09+0200\n" "Last-Translator: Michal \n" "Language-Team: belarusian_latin \n" @@ -40,16 +40,16 @@ msgstr "" #: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 #: db_structure.php:89 db_structure.php:91 db_structure.php:102 #: db_structure.php:104 libraries/common.lib.php:2834 -#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Pošuk" #: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 -#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_operations.php:468 db_operations.php:492 db_search.php:344 #: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 #: libraries/Theme_Manager.class.php:305 -#: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 +#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:712 #: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 @@ -57,8 +57,8 @@ msgstr "Pošuk" #: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 #: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 -#: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: libraries/sql_query_form.lib.php:377 libraries/sql_query_form.lib.php:447 +#: libraries/sql_query_form.lib.php:512 libraries/tbl_properties.inc.php:780 #: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 #: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 #: server_privileges.php:663 server_privileges.php:1620 @@ -68,7 +68,7 @@ msgstr "Pošuk" #: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 #: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 -#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_operations.php:726 tbl_select.php:323 tbl_structure.php:559 #: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 #: view_create.php:181 view_operations.php:99 msgid "Go" @@ -251,47 +251,64 @@ msgstr "Kamanda" msgid "and then" msgstr "i paśla" -#: db_operations.php:390 +#: db_operations.php:379 +#, fuzzy +#| msgid "Rename database to" +msgid "Remove database" +msgstr "Pierajmienavać bazu dadzienych u" + +#: db_operations.php:391 +#, php-format +msgid "Database %s has been dropped." +msgstr "Baza dadzienych %s była vydalenaja." + +#: db_operations.php:396 +#, fuzzy +#| msgid "Copy database to" +msgid "Drop the database (DROP)" +msgstr "Kapijavać bazu dadzienych u" + +#: db_operations.php:424 msgid "Copy database to" msgstr "Kapijavać bazu dadzienych u" -#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:431 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Tolki strukturu" -#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:432 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Strukturu i dadzienyja" -#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:433 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Tolki dadzienyja" -#: db_operations.php:407 +#: db_operations.php:441 msgid "CREATE DATABASE before copying" msgstr "vykanać CREATE DATABASE pierad kapijavańniem" -#: db_operations.php:410 libraries/export/sql.php:51 +#: db_operations.php:444 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 #: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "Dadać %s" -#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: db_operations.php:448 libraries/export/sql.php:77 tbl_operations.php:296 #: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Dadać značeńnie AUTO_INCREMENT" -#: db_operations.php:418 tbl_operations.php:542 +#: db_operations.php:452 tbl_operations.php:542 msgid "Add constraints" msgstr "Dadać abmiežavańni" -#: db_operations.php:431 +#: db_operations.php:465 msgid "Switch to copied database" msgstr "Pierajści da skapijavanaj bazy dadzienych" -#: db_operations.php:451 libraries/Index.class.php:447 +#: db_operations.php:485 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 #: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 #: server_collations.php:53 server_collations.php:65 server_databases.php:108 @@ -300,7 +317,7 @@ msgstr "Pierajści da skapijavanaj bazy dadzienych" msgid "Collation" msgstr "Supastaŭleńnie" -#: db_operations.php:464 pdf_schema.php:32 +#: db_operations.php:498 pdf_schema.php:32 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -312,7 +329,7 @@ msgstr "" "Dadatkovyja mahčymaści raboty z źviazanymi tablicami byli adklučanyja. Kab " "vyśvietlić čamu, naciśnicie %stut%s." -#: db_operations.php:497 +#: db_operations.php:531 msgid "Edit PDF Pages" msgstr "Redagavać PDF-staronki" @@ -369,7 +386,7 @@ msgstr[1] "%s tablic(y)" msgstr[2] "%s tablic(y)" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -461,7 +478,7 @@ msgstr "Vykanać zapyt" #: db_search.php:50 libraries/auth/config.auth.lib.php:83 #: libraries/auth/config.auth.lib.php:102 -#: libraries/auth/cookie.auth.lib.php:640 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:182 msgid "Access denied" msgstr "U dostupie admoŭlena" @@ -505,7 +522,7 @@ msgid "Browse" msgstr "Prahlad" #: db_search.php:254 libraries/display_tbl.lib.php:1163 -#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:440 #: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 @@ -549,14 +566,14 @@ msgstr "Unutry pola:" #: db_structure.php:79 db_structure.php:80 db_structure.php:92 #: db_structure.php:93 db_structure.php:105 db_structure.php:106 -#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:311 +#: libraries/sql_query_form.lib.php:314 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Ustavić" #: db_structure.php:81 db_structure.php:94 db_structure.php:107 #: libraries/common.lib.php:2832 libraries/common.lib.php:2839 -#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 +#: libraries/db_links.inc.php:48 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 @@ -569,8 +586,7 @@ msgstr "Struktura" #: db_structure.php:96 db_structure.php:108 db_structure.php:109 #: db_structure.php:530 db_structure.php:531 db_tracking.php:86 #: libraries/Index.class.php:482 libraries/common.lib.php:1663 -#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 #: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 #: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" @@ -579,21 +595,21 @@ msgstr "Vydalić" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 +#: libraries/mult_submits.inc.php:38 msgid "Empty" msgstr "Ačyścić" -#: db_structure.php:301 libraries/tbl_links.inc.php:98 +#: db_structure.php:301 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "Tablica %s była ačyščanaja" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "View %s has been dropped" msgstr "Vyhlad %s byŭ vydaleny" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "Tablica %s była vydalenaja" @@ -687,7 +703,7 @@ msgstr "Ramantavać tablicu" msgid "Analyze table" msgstr "Analizavać tablicu" -#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:56 #: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 #: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 #: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 @@ -1421,7 +1437,7 @@ msgid "Databases" msgstr "Bazy dadzienych" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30 #: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 #: tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -1528,7 +1544,7 @@ msgid "Cannot connect: invalid settings." msgstr "Niemahčyma padłučycca: niapravilnyja nałady." #: libraries/auth/config.auth.lib.php:91 -#: libraries/auth/cookie.auth.lib.php:205 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:206 libraries/auth/http.auth.lib.php:64 #: test/theme.php:151 #, php-format msgid "Welcome to %s" @@ -1555,49 +1571,49 @@ msgstr "" "ŭpeŭniciesia, što jany adpaviadajuć infarmacyi, jakuju daŭ administratar " "MySQL-servera." -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:231 msgid "Log in" msgstr "Uvachod u systemu" -#: libraries/auth/cookie.auth.lib.php:232 -#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:233 +#: libraries/auth/cookie.auth.lib.php:235 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:94 msgid "phpMyAdmin documentation" msgstr "Dakumentacyja pa phpMyAdmin" -#: libraries/auth/cookie.auth.lib.php:244 #: libraries/auth/cookie.auth.lib.php:245 +#: libraries/auth/cookie.auth.lib.php:246 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:244 +#: libraries/auth/cookie.auth.lib.php:245 msgid "Server:" msgstr "Server" -#: libraries/auth/cookie.auth.lib.php:249 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Username:" msgstr "Imia karystalnika:" -#: libraries/auth/cookie.auth.lib.php:253 +#: libraries/auth/cookie.auth.lib.php:254 msgid "Password:" msgstr "Parol:" -#: libraries/auth/cookie.auth.lib.php:260 +#: libraries/auth/cookie.auth.lib.php:261 msgid "Server Choice" msgstr "Vybar servera" -#: libraries/auth/cookie.auth.lib.php:306 libraries/header.inc.php:58 +#: libraries/auth/cookie.auth.lib.php:307 libraries/header.inc.php:58 msgid "Cookies must be enabled past this point." msgstr "Cookies musiać być uklučanymi paśla hetaha miesca." -#: libraries/auth/cookie.auth.lib.php:638 +#: libraries/auth/cookie.auth.lib.php:639 #: libraries/auth/signon.auth.lib.php:180 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" -#: libraries/auth/cookie.auth.lib.php:642 +#: libraries/auth/cookie.auth.lib.php:643 #: libraries/auth/signon.auth.lib.php:184 #, php-format msgid "No activity within %s seconds; please log in again" @@ -1605,8 +1621,8 @@ msgstr "" "Nie było anijakaj aktyŭnaści na praciahu %s sekundaŭ. Kali łaska, uvajdzicie " "znoŭ" -#: libraries/auth/cookie.auth.lib.php:652 -#: libraries/auth/cookie.auth.lib.php:654 +#: libraries/auth/cookie.auth.lib.php:653 +#: libraries/auth/cookie.auth.lib.php:655 #: libraries/auth/signon.auth.lib.php:190 msgid "Cannot log in to the MySQL server" msgstr "Niemahčyma załahavacca na server MySQL" @@ -1729,7 +1745,7 @@ msgstr "en" #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 #: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 -#: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 +#: libraries/sql_query_form.lib.php:421 libraries/sql_query_form.lib.php:424 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" msgstr "Dakumentacyja" @@ -1874,19 +1890,19 @@ msgstr "" "na %s" #: libraries/common.lib.php:2833 libraries/common.lib.php:2840 -#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 +#: libraries/db_links.inc.php:53 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 #: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 -#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:86 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "Aperacyi" -#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:265 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1902,36 +1918,31 @@ msgstr "Padziei" msgid "Name" msgstr "Nazva" -#: libraries/db_links.inc.php:43 -#, php-format -msgid "Database %s has been dropped." -msgstr "Baza dadzienych %s była vydalenaja." - -#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 -#: libraries/db_links.inc.php:57 +#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43 +#: libraries/db_links.inc.php:44 msgid "Database seems to be empty!" msgstr "Baza dadzienych — pustaja!" -#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/db_links.inc.php:66 libraries/relation.lib.php:137 #: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:84 +#: libraries/db_links.inc.php:71 msgid "Query" msgstr "Zapyt zhodna prykładu" -#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 +#: libraries/db_links.inc.php:76 libraries/relation.lib.php:133 msgid "Designer" msgstr "Dyzajner" -#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:87 #: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Imrart" -#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:65 #: server_privileges.php:110 server_privileges.php:1718 #: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" @@ -2102,7 +2113,7 @@ msgid "remember template" msgstr "zapomnić šablon" #: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 -#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 +#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:509 msgid "Character set of the file:" msgstr "Kadyroŭka fajła:" @@ -2155,7 +2166,7 @@ msgstr "" msgid "File to import" msgstr "Impartavać fajł" -#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:497 +#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:484 msgid "Location of the text file" msgstr "Miescaznachodžańnie tekstavaha fajła" @@ -2163,12 +2174,12 @@ msgstr "Miescaznachodžańnie tekstavaha fajła" msgid "File uploads are not allowed on this server." msgstr "Zahruzki fajłaŭ nie dazvolenyja na hetym servery." -#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 +#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:493 #: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "Niemahčyma adkryć paznačanuju vami tečku dla zahruzki fajłaŭ" -#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 +#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:496 #: tbl_change.php:925 msgid "web server upload directory" msgstr "tečka web-servera dla zahruzki fajłaŭ" @@ -3584,7 +3595,7 @@ msgstr "" "Za infarmacyjaj jak abnavić tablicu column_comments źviarniciesia, kali " "łaska, da dakumentacyi" -#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:403 msgid "Bookmarked SQL query" msgstr "Zakładzieny SQL-zapyt" @@ -3649,7 +3660,7 @@ msgstr "" msgid "Slave status" msgstr "" -#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:428 +#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:415 #: server_status.php:736 server_variables.php:51 msgid "Variable" msgstr "Źmiennaja" @@ -3776,51 +3787,51 @@ msgstr "" msgid "Target database" msgstr "" -#: libraries/sql_query_form.lib.php:219 +#: libraries/sql_query_form.lib.php:217 #, php-format msgid "Run SQL query/queries on server %s" msgstr "Vykanać SQL-zapyt(y) na servery %s" -#: libraries/sql_query_form.lib.php:236 libraries/sql_query_form.lib.php:261 +#: libraries/sql_query_form.lib.php:234 libraries/sql_query_form.lib.php:258 #, 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:307 +#: libraries/sql_query_form.lib.php:294 #, fuzzy #| msgid "Column names" msgid "Columns" msgstr "Nazvy kalonak" -#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 +#: libraries/sql_query_form.lib.php:329 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "Dadać hety SQL-zapyt u zakładki" -#: libraries/sql_query_form.lib.php:349 sql.php:669 +#: libraries/sql_query_form.lib.php:336 sql.php:669 msgid "Let every user access this bookmark" msgstr "Dać kožnamu karystalniku dostup da hetaj zakładki" -#: libraries/sql_query_form.lib.php:355 +#: libraries/sql_query_form.lib.php:342 msgid "Replace existing bookmark of same name" msgstr "Zamianić isnuju zakładku z takim ža imiem" -#: libraries/sql_query_form.lib.php:371 +#: libraries/sql_query_form.lib.php:358 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:378 +#: libraries/sql_query_form.lib.php:365 msgid "Delimiter" msgstr "Raździalalnik" -#: libraries/sql_query_form.lib.php:386 +#: libraries/sql_query_form.lib.php:373 msgid " Show this query here again " msgstr " Pakazać hety zapyt znoŭ " -#: libraries/sql_query_form.lib.php:445 +#: libraries/sql_query_form.lib.php:432 msgid "Submit" msgstr "Adpravić" -#: libraries/sql_query_form.lib.php:449 +#: libraries/sql_query_form.lib.php:436 msgid "View only" msgstr "Tolki prahlad" @@ -3895,12 +3906,11 @@ msgstr "" "ŭstalavanyja ŭ vas nieabchodnyja pašyreńni PHP, jak heta apisana ŭ " "%sdakumentacyi%s." -#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 -#: libraries/tbl_links.inc.php:139 +#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107 msgid "Table seems to be empty!" msgstr "Tablica — pustaja!" -#: libraries/tbl_links.inc.php:147 +#: libraries/tbl_links.inc.php:115 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" @@ -8057,40 +8067,54 @@ msgstr "Keš tablicy %s byŭ ačyščany" msgid "Flush the table (FLUSH)" msgstr "Skinuć keš tablicy (\"FLUSH\")" -#: tbl_operations.php:648 +#: tbl_operations.php:642 +#, fuzzy +#| msgid "Table name" +msgid "Table removal" +msgstr "Imia tablicy" + +#: tbl_operations.php:657 +msgid "Empty the table (TRUNCATE)" +msgstr "" + +#: tbl_operations.php:675 +msgid "Drop the table (DROP)" +msgstr "" + +#: tbl_operations.php:696 msgid "Partition maintenance" msgstr "Padtrymka padziełaŭ" -#: tbl_operations.php:656 +#: tbl_operations.php:704 #, php-format msgid "Partition %s" msgstr "Padzieł %s" -#: tbl_operations.php:659 +#: tbl_operations.php:707 msgid "Analyze" msgstr "Praanalizavać" -#: tbl_operations.php:660 +#: tbl_operations.php:708 msgid "Check" msgstr "Pravieryć" -#: tbl_operations.php:661 +#: tbl_operations.php:709 msgid "Optimize" msgstr "Aptymizavać" -#: tbl_operations.php:662 +#: tbl_operations.php:710 msgid "Rebuild" msgstr "Pierabudavać" -#: tbl_operations.php:663 +#: tbl_operations.php:711 msgid "Repair" msgstr "Adramantavać" -#: tbl_operations.php:675 +#: tbl_operations.php:723 msgid "Remove partitioning" msgstr "Skasavać padzieł na častki" -#: tbl_operations.php:701 +#: tbl_operations.php:749 msgid "Check referential integrity:" msgstr "Pravieryć cełasnaść dadzienych:" diff --git a/po/bg.po b/po/bg.po index 179ef22fa..9f7e751e6 100644 --- a/po/bg.po +++ b/po/bg.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-26 17:18+0200\n" +"POT-Creation-Date: 2010-07-27 10:12+0200\n" "PO-Revision-Date: 2010-06-11 17:28+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" @@ -39,16 +39,16 @@ msgstr "" #: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 #: db_structure.php:89 db_structure.php:91 db_structure.php:102 #: db_structure.php:104 libraries/common.lib.php:2834 -#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Търсене" #: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 -#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_operations.php:468 db_operations.php:492 db_search.php:344 #: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 #: libraries/Theme_Manager.class.php:305 -#: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 +#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:712 #: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 @@ -56,8 +56,8 @@ msgstr "Търсене" #: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 #: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 -#: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: libraries/sql_query_form.lib.php:377 libraries/sql_query_form.lib.php:447 +#: libraries/sql_query_form.lib.php:512 libraries/tbl_properties.inc.php:780 #: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 #: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 #: server_privileges.php:663 server_privileges.php:1620 @@ -67,7 +67,7 @@ msgstr "Търсене" #: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 #: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 -#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_operations.php:726 tbl_select.php:323 tbl_structure.php:559 #: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 #: view_create.php:181 view_operations.php:99 msgid "Go" @@ -248,47 +248,63 @@ msgstr "Команда" msgid "and then" msgstr "и след това" -#: db_operations.php:390 +#: db_operations.php:379 +#, fuzzy +#| msgid "Rename database to" +msgid "Remove database" +msgstr "Преименуване на базата от данни на" + +#: db_operations.php:391 +#, php-format +msgid "Database %s has been dropped." +msgstr "Базата данни %s беше изтрита." + +#: db_operations.php:396 +#, fuzzy +msgid "Drop the database (DROP)" +msgstr "Няма бази от данни" + +#: db_operations.php:424 msgid "Copy database to" msgstr "Копиране на базата от данни в" -#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:431 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Само структурата" -#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:432 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Структурата и данните" -#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:433 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Само данните" -#: db_operations.php:407 +#: db_operations.php:441 msgid "CREATE DATABASE before copying" msgstr "Изпълняване на CREATE DATABASE преди копирането" -#: db_operations.php:410 libraries/export/sql.php:51 +#: db_operations.php:444 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 #: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "Добавяне на %s" -#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: db_operations.php:448 libraries/export/sql.php:77 tbl_operations.php:296 #: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Добавяне на AUTO_INCREMENT" -#: db_operations.php:418 tbl_operations.php:542 +#: db_operations.php:452 tbl_operations.php:542 msgid "Add constraints" msgstr "Добавяне на ограничение" -#: db_operations.php:431 +#: db_operations.php:465 msgid "Switch to copied database" msgstr "Прехвърляна към копираната база от данни" -#: db_operations.php:451 libraries/Index.class.php:447 +#: db_operations.php:485 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 #: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 #: server_collations.php:53 server_collations.php:65 server_databases.php:108 @@ -297,7 +313,7 @@ msgstr "Прехвърляна към копираната база от дан msgid "Collation" msgstr "Колация" -#: db_operations.php:464 pdf_schema.php:32 +#: db_operations.php:498 pdf_schema.php:32 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -309,7 +325,7 @@ msgstr "" "Допълнителните възможности за работа със свързани (linked) таблици са " "деактивирани. За да разберете защо кликнете %sтук%s." -#: db_operations.php:497 +#: db_operations.php:531 msgid "Edit PDF Pages" msgstr "Редактиране на PDF Страници" @@ -365,7 +381,7 @@ msgstr[0] "%s таблица(и)" msgstr[1] "%s таблица(и)" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -457,7 +473,7 @@ msgstr "Изпълни заявката" #: db_search.php:50 libraries/auth/config.auth.lib.php:83 #: libraries/auth/config.auth.lib.php:102 -#: libraries/auth/cookie.auth.lib.php:640 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:182 msgid "Access denied" msgstr "Отказан достъп" @@ -500,7 +516,7 @@ msgid "Browse" msgstr "Прелистване" #: db_search.php:254 libraries/display_tbl.lib.php:1163 -#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:440 #: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 @@ -543,14 +559,14 @@ msgstr "В таблиците:" #: db_structure.php:79 db_structure.php:80 db_structure.php:92 #: db_structure.php:93 db_structure.php:105 db_structure.php:106 -#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:311 +#: libraries/sql_query_form.lib.php:314 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Вмъкване" #: db_structure.php:81 db_structure.php:94 db_structure.php:107 #: libraries/common.lib.php:2832 libraries/common.lib.php:2839 -#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 +#: libraries/db_links.inc.php:48 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 @@ -563,8 +579,7 @@ msgstr "Структура" #: db_structure.php:96 db_structure.php:108 db_structure.php:109 #: db_structure.php:530 db_structure.php:531 db_tracking.php:86 #: libraries/Index.class.php:482 libraries/common.lib.php:1663 -#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 #: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 #: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" @@ -573,21 +588,21 @@ msgstr "Унищожаване" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 +#: libraries/mult_submits.inc.php:38 msgid "Empty" msgstr "Изчистване" -#: db_structure.php:301 libraries/tbl_links.inc.php:98 +#: db_structure.php:301 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "Таблицата %s беше изчистена" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "View %s has been dropped" msgstr "Изглед %s беше изтрит" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "Таблицата %s беше изтрита" @@ -677,7 +692,7 @@ msgstr "Поправяне на таблицата" msgid "Analyze table" msgstr "Анализиране на таблицата" -#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:56 #: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 #: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 #: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 @@ -1402,7 +1417,7 @@ msgid "Databases" msgstr "Бази от данни" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30 #: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 #: tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -1507,7 +1522,7 @@ msgid "Cannot connect: invalid settings." msgstr "Връзката не може да бъде осъществена: невалидни настройки." #: libraries/auth/config.auth.lib.php:91 -#: libraries/auth/cookie.auth.lib.php:205 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:206 libraries/auth/http.auth.lib.php:64 #: test/theme.php:151 #, php-format msgid "Welcome to %s" @@ -1532,56 +1547,56 @@ msgstr "" "config.inc.php файла и да се уверите, че те отговарят на информацията " "предоставена от администратора на MySQL сървъра." -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:231 msgid "Log in" msgstr "Вход" -#: libraries/auth/cookie.auth.lib.php:232 -#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:233 +#: libraries/auth/cookie.auth.lib.php:235 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:94 msgid "phpMyAdmin documentation" msgstr "phpMyAdmin документация" -#: libraries/auth/cookie.auth.lib.php:244 #: libraries/auth/cookie.auth.lib.php:245 +#: libraries/auth/cookie.auth.lib.php:246 msgid "You can enter hostname/IP address and port separated by space." msgstr "Можете да въведете хост/IP адрес и порт, разделени с интервал." -#: libraries/auth/cookie.auth.lib.php:244 +#: libraries/auth/cookie.auth.lib.php:245 msgid "Server:" msgstr "Сървър" -#: libraries/auth/cookie.auth.lib.php:249 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Username:" msgstr "Име:" -#: libraries/auth/cookie.auth.lib.php:253 +#: libraries/auth/cookie.auth.lib.php:254 msgid "Password:" msgstr "Парола:" -#: libraries/auth/cookie.auth.lib.php:260 +#: libraries/auth/cookie.auth.lib.php:261 msgid "Server Choice" msgstr "Избор на сървър" -#: libraries/auth/cookie.auth.lib.php:306 libraries/header.inc.php:58 +#: libraries/auth/cookie.auth.lib.php:307 libraries/header.inc.php:58 msgid "Cookies must be enabled past this point." msgstr "Оттук нататък са необходими \"Cookies\"." -#: libraries/auth/cookie.auth.lib.php:638 +#: libraries/auth/cookie.auth.lib.php:639 #: libraries/auth/signon.auth.lib.php:180 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" -#: libraries/auth/cookie.auth.lib.php:642 +#: libraries/auth/cookie.auth.lib.php:643 #: libraries/auth/signon.auth.lib.php:184 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" -#: libraries/auth/cookie.auth.lib.php:652 -#: libraries/auth/cookie.auth.lib.php:654 +#: libraries/auth/cookie.auth.lib.php:653 +#: libraries/auth/cookie.auth.lib.php:655 #: libraries/auth/signon.auth.lib.php:190 msgid "Cannot log in to the MySQL server" msgstr "Не мога да се логна към MySQL сървъра" @@ -1703,7 +1718,7 @@ msgstr "Изпратени" #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 #: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 -#: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 +#: libraries/sql_query_form.lib.php:421 libraries/sql_query_form.lib.php:424 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" msgstr "Документация" @@ -1846,19 +1861,19 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/common.lib.php:2833 libraries/common.lib.php:2840 -#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 +#: libraries/db_links.inc.php:53 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 #: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 -#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:86 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "Операции" -#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:265 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1874,36 +1889,31 @@ msgstr "" msgid "Name" msgstr "Име" -#: libraries/db_links.inc.php:43 -#, php-format -msgid "Database %s has been dropped." -msgstr "Базата данни %s беше изтрита." - -#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 -#: libraries/db_links.inc.php:57 +#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43 +#: libraries/db_links.inc.php:44 msgid "Database seems to be empty!" msgstr "" -#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/db_links.inc.php:66 libraries/relation.lib.php:137 #: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:84 +#: libraries/db_links.inc.php:71 msgid "Query" msgstr "Запитване по пример" -#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 +#: libraries/db_links.inc.php:76 libraries/relation.lib.php:133 msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:87 #: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Импортиране" -#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:65 #: server_privileges.php:110 server_privileges.php:1718 #: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" @@ -2064,7 +2074,7 @@ msgid "remember template" msgstr "запомняне на шаблона" #: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 -#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 +#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:509 msgid "Character set of the file:" msgstr "Набор от знаци на файла:" @@ -2117,7 +2127,7 @@ msgstr "" msgid "File to import" msgstr "Файл за импортиране" -#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:497 +#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:484 msgid "Location of the text file" msgstr "Местоположение на текстовия файл" @@ -2125,12 +2135,12 @@ msgstr "Местоположение на текстовия файл" msgid "File uploads are not allowed on this server." msgstr "На този сървър не е позволени качване на файлове." -#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 +#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:493 #: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "Директорията която сте указали за upload не може да бъде достигната" -#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 +#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:496 #: tbl_change.php:925 msgid "web server upload directory" msgstr "директорията за upload на уеб сървъра" @@ -3492,7 +3502,7 @@ msgstr "" "Моля прегледайте информацията в Документацията относно това как да обновите " "вашата Column_comments таблица" -#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:403 msgid "Bookmarked SQL query" msgstr "Запазване на SQL заявка" @@ -3557,7 +3567,7 @@ msgstr "" msgid "Slave status" msgstr "" -#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:428 +#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:415 #: server_status.php:736 server_variables.php:51 msgid "Variable" msgstr "Променлива" @@ -3688,51 +3698,51 @@ msgstr "" msgid "Target database" msgstr "Търсене в базата от данни" -#: libraries/sql_query_form.lib.php:219 +#: libraries/sql_query_form.lib.php:217 #, php-format msgid "Run SQL query/queries on server %s" msgstr "Изпълняване на SQL заявка/заявки на сървър %s" -#: libraries/sql_query_form.lib.php:236 libraries/sql_query_form.lib.php:261 +#: libraries/sql_query_form.lib.php:234 libraries/sql_query_form.lib.php:258 #, php-format msgid "Run SQL query/queries on database %s" msgstr "Изпълнение на SQL заявка/заявки към база от данни %s" -#: libraries/sql_query_form.lib.php:307 +#: libraries/sql_query_form.lib.php:294 #, fuzzy #| msgid "Column names" msgid "Columns" msgstr "Име на колона" -#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 +#: libraries/sql_query_form.lib.php:329 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "Запази тази SQL заявка" -#: libraries/sql_query_form.lib.php:349 sql.php:669 +#: libraries/sql_query_form.lib.php:336 sql.php:669 msgid "Let every user access this bookmark" msgstr "Нека всеки потребител има достъп до този показалец" -#: libraries/sql_query_form.lib.php:355 +#: libraries/sql_query_form.lib.php:342 msgid "Replace existing bookmark of same name" msgstr "Препокриване не съществуващия показалец със същото име" -#: libraries/sql_query_form.lib.php:371 +#: libraries/sql_query_form.lib.php:358 msgid "Do not overwrite this query from outside the window" msgstr "Не препокривайте тази заявка извън този прозорец" -#: libraries/sql_query_form.lib.php:378 +#: libraries/sql_query_form.lib.php:365 msgid "Delimiter" msgstr "Разделител" -#: libraries/sql_query_form.lib.php:386 +#: libraries/sql_query_form.lib.php:373 msgid " Show this query here again " msgstr " Показване на заявката отново" -#: libraries/sql_query_form.lib.php:445 +#: libraries/sql_query_form.lib.php:432 msgid "Submit" msgstr "Изпълнение" -#: libraries/sql_query_form.lib.php:449 +#: libraries/sql_query_form.lib.php:436 msgid "View only" msgstr "Само показване" @@ -3805,12 +3815,11 @@ msgstr "" "инсталирали необходимите PHP разширения, така както е описано в " "%sдокументацията%s." -#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 -#: libraries/tbl_links.inc.php:139 +#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107 msgid "Table seems to be empty!" msgstr "" -#: libraries/tbl_links.inc.php:147 +#: libraries/tbl_links.inc.php:115 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" @@ -7851,43 +7860,56 @@ msgstr "Кеша на таблица %s беше изчистен" msgid "Flush the table (FLUSH)" msgstr "Изчистване на кеша на таблицата (\"FLUSH\")" -#: tbl_operations.php:648 +#: tbl_operations.php:642 +#, fuzzy +msgid "Table removal" +msgstr "име на таблицата" + +#: tbl_operations.php:657 +msgid "Empty the table (TRUNCATE)" +msgstr "" + +#: tbl_operations.php:675 +msgid "Drop the table (DROP)" +msgstr "" + +#: tbl_operations.php:696 #, fuzzy msgid "Partition maintenance" msgstr "Поддръжка на таблицата" -#: tbl_operations.php:656 +#: tbl_operations.php:704 #, php-format msgid "Partition %s" msgstr "" -#: tbl_operations.php:659 +#: tbl_operations.php:707 msgid "Analyze" msgstr "" -#: tbl_operations.php:660 +#: tbl_operations.php:708 #, fuzzy msgid "Check" msgstr "Чешки" -#: tbl_operations.php:661 +#: tbl_operations.php:709 msgid "Optimize" msgstr "" -#: tbl_operations.php:662 +#: tbl_operations.php:710 msgid "Rebuild" msgstr "" -#: tbl_operations.php:663 +#: tbl_operations.php:711 #, fuzzy msgid "Repair" msgstr "Поправяне на таблицата" -#: tbl_operations.php:675 +#: tbl_operations.php:723 msgid "Remove partitioning" msgstr "" -#: tbl_operations.php:701 +#: tbl_operations.php:749 msgid "Check referential integrity:" msgstr "Проверка на интегритета на връзките" diff --git a/po/bn.po b/po/bn.po index 7a7e44b80..a0a81ea8f 100644 --- a/po/bn.po +++ b/po/bn.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-26 17:18+0200\n" +"POT-Creation-Date: 2010-07-27 10:12+0200\n" "PO-Revision-Date: 2010-03-12 09:11+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: bangla \n" @@ -38,16 +38,16 @@ msgstr "" #: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 #: db_structure.php:89 db_structure.php:91 db_structure.php:102 #: db_structure.php:104 libraries/common.lib.php:2834 -#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "খুঁজুন" #: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 -#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_operations.php:468 db_operations.php:492 db_search.php:344 #: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 #: libraries/Theme_Manager.class.php:305 -#: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 +#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:712 #: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 @@ -55,8 +55,8 @@ msgstr "খুঁজুন" #: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 #: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 -#: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: libraries/sql_query_form.lib.php:377 libraries/sql_query_form.lib.php:447 +#: libraries/sql_query_form.lib.php:512 libraries/tbl_properties.inc.php:780 #: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 #: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 #: server_privileges.php:663 server_privileges.php:1620 @@ -66,7 +66,7 @@ msgstr "খুঁজুন" #: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 #: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 -#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_operations.php:726 tbl_select.php:323 tbl_structure.php:559 #: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 #: view_create.php:181 view_operations.php:99 msgid "Go" @@ -247,47 +247,63 @@ msgstr "নির্দেশ" msgid "and then" msgstr "এবং তারপর" -#: db_operations.php:390 +#: db_operations.php:379 +#, fuzzy +#| msgid "Rename database to" +msgid "Remove database" +msgstr "ডাটাবেজ রিনেম কর" + +#: db_operations.php:391 +#, php-format +msgid "Database %s has been dropped." +msgstr "%s ডাটাবেজ মুছে ফেলা হয়েছে" + +#: db_operations.php:396 +#, fuzzy +msgid "Drop the database (DROP)" +msgstr "কোন ডাটাবেজ নাই" + +#: db_operations.php:424 msgid "Copy database to" msgstr "ডাটাবেজ কপি করঃ" -#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:431 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Structure only" -#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:432 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Structure and data" -#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:433 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "শুধু ডাটা" -#: db_operations.php:407 +#: db_operations.php:441 msgid "CREATE DATABASE before copying" msgstr "কপি করার আগে ডাটাবেজ় তৈরী কর" -#: db_operations.php:410 libraries/export/sql.php:51 +#: db_operations.php:444 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 #: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "Add %s" -#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: db_operations.php:448 libraries/export/sql.php:77 tbl_operations.php:296 #: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Add AUTO_INCREMENT value" -#: db_operations.php:418 tbl_operations.php:542 +#: db_operations.php:452 tbl_operations.php:542 msgid "Add constraints" msgstr "Add constraints" -#: db_operations.php:431 +#: db_operations.php:465 msgid "Switch to copied database" msgstr "Switch to copied database" -#: db_operations.php:451 libraries/Index.class.php:447 +#: db_operations.php:485 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 #: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 #: server_collations.php:53 server_collations.php:65 server_databases.php:108 @@ -296,7 +312,7 @@ msgstr "Switch to copied database" msgid "Collation" msgstr "Collation" -#: db_operations.php:464 pdf_schema.php:32 +#: db_operations.php:498 pdf_schema.php:32 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -308,7 +324,7 @@ msgstr "" "The additional features for working with linked tables have been " "deactivated. To find out why click %shere%s." -#: db_operations.php:497 +#: db_operations.php:531 msgid "Edit PDF Pages" msgstr "পিডিএফ পাতাগুলো সম্পাদনা কর" @@ -364,7 +380,7 @@ msgstr[0] "%s table(s)" msgstr[1] "%s table(s)" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -456,7 +472,7 @@ msgstr "Submit Query" #: db_search.php:50 libraries/auth/config.auth.lib.php:83 #: libraries/auth/config.auth.lib.php:102 -#: libraries/auth/cookie.auth.lib.php:640 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:182 msgid "Access denied" msgstr "প্রবেশ নিষেধ" @@ -499,7 +515,7 @@ msgid "Browse" msgstr "ব্রাউজ করুন" #: db_search.php:254 libraries/display_tbl.lib.php:1163 -#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:440 #: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 @@ -542,14 +558,14 @@ msgstr "Inside table(s):" #: db_structure.php:79 db_structure.php:80 db_structure.php:92 #: db_structure.php:93 db_structure.php:105 db_structure.php:106 -#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:311 +#: libraries/sql_query_form.lib.php:314 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Insert" #: db_structure.php:81 db_structure.php:94 db_structure.php:107 #: libraries/common.lib.php:2832 libraries/common.lib.php:2839 -#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 +#: libraries/db_links.inc.php:48 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 @@ -562,8 +578,7 @@ msgstr "Structure" #: db_structure.php:96 db_structure.php:108 db_structure.php:109 #: db_structure.php:530 db_structure.php:531 db_tracking.php:86 #: libraries/Index.class.php:482 libraries/common.lib.php:1663 -#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 #: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 #: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" @@ -572,21 +587,21 @@ msgstr "মুছে ফেল" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 +#: libraries/mult_submits.inc.php:38 msgid "Empty" msgstr "খালি" -#: db_structure.php:301 libraries/tbl_links.inc.php:98 +#: db_structure.php:301 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "Table %s has been emptied" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "View %s has been dropped" msgstr "View %s has been dropped" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "Table %s has been dropped" @@ -676,7 +691,7 @@ msgstr "টেবিল রিপেয়ার করুন" msgid "Analyze table" msgstr "টেবিল বিশ্লেষণ কর" -#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:56 #: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 #: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 #: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 @@ -1407,7 +1422,7 @@ msgid "Databases" msgstr "ডাটাবেজসমূহ Databases" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30 #: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 #: tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -1513,7 +1528,7 @@ msgid "Cannot connect: invalid settings." msgstr "সংযোগ স্থাপন করা যায়নিঃ invalid settings." #: libraries/auth/config.auth.lib.php:91 -#: libraries/auth/cookie.auth.lib.php:205 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:206 libraries/auth/http.auth.lib.php:64 #: test/theme.php:151 #, php-format msgid "Welcome to %s" @@ -1540,56 +1555,56 @@ msgstr "" "পরীক্ষা করুন এবং তা আপনার Mysql সার্ভারের অ্যাডমিনিষ্টেট্রররের দেওয়া তথ্যের অনুরুপ " "কিনা তা নিশ্চত করুন।" -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:231 msgid "Log in" msgstr "লগ ইন" -#: libraries/auth/cookie.auth.lib.php:232 -#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:233 +#: libraries/auth/cookie.auth.lib.php:235 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:94 msgid "phpMyAdmin documentation" msgstr "phpMyAdmin documentation" -#: libraries/auth/cookie.auth.lib.php:244 #: libraries/auth/cookie.auth.lib.php:245 +#: libraries/auth/cookie.auth.lib.php:246 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:244 +#: libraries/auth/cookie.auth.lib.php:245 msgid "Server:" msgstr "সার্ভার" -#: libraries/auth/cookie.auth.lib.php:249 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Username:" msgstr "ব্যাবহারকারী" -#: libraries/auth/cookie.auth.lib.php:253 +#: libraries/auth/cookie.auth.lib.php:254 msgid "Password:" msgstr "পাসওয়ার্ড" -#: libraries/auth/cookie.auth.lib.php:260 +#: libraries/auth/cookie.auth.lib.php:261 msgid "Server Choice" msgstr "Server Choice" -#: libraries/auth/cookie.auth.lib.php:306 libraries/header.inc.php:58 +#: libraries/auth/cookie.auth.lib.php:307 libraries/header.inc.php:58 msgid "Cookies must be enabled past this point." msgstr "Cookies must be enabled past this point." -#: libraries/auth/cookie.auth.lib.php:638 +#: libraries/auth/cookie.auth.lib.php:639 #: libraries/auth/signon.auth.lib.php:180 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" -#: libraries/auth/cookie.auth.lib.php:642 +#: libraries/auth/cookie.auth.lib.php:643 #: libraries/auth/signon.auth.lib.php:184 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "No activity within %s seconds; please log in again" -#: libraries/auth/cookie.auth.lib.php:652 -#: libraries/auth/cookie.auth.lib.php:654 +#: libraries/auth/cookie.auth.lib.php:653 +#: libraries/auth/cookie.auth.lib.php:655 #: libraries/auth/signon.auth.lib.php:190 msgid "Cannot log in to the MySQL server" msgstr "MySQL সার্ভার এ লগ ইন করা যায়নি" @@ -1711,7 +1726,7 @@ msgstr "bn" #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 #: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 -#: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 +#: libraries/sql_query_form.lib.php:421 libraries/sql_query_form.lib.php:424 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" msgstr "বর্ণনা" @@ -1854,19 +1869,19 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/common.lib.php:2833 libraries/common.lib.php:2840 -#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 +#: libraries/db_links.inc.php:53 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 #: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 -#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:86 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "Operations" -#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:265 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1883,36 +1898,31 @@ msgstr "Sent" msgid "Name" msgstr "নাম" -#: libraries/db_links.inc.php:43 -#, php-format -msgid "Database %s has been dropped." -msgstr "%s ডাটাবেজ মুছে ফেলা হয়েছে" - -#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 -#: libraries/db_links.inc.php:57 +#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43 +#: libraries/db_links.inc.php:44 msgid "Database seems to be empty!" msgstr "" -#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/db_links.inc.php:66 libraries/relation.lib.php:137 #: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:84 +#: libraries/db_links.inc.php:71 msgid "Query" msgstr "Query" -#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 +#: libraries/db_links.inc.php:76 libraries/relation.lib.php:133 msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:87 #: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "ইম্পোর্ট কর" -#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:65 #: server_privileges.php:110 server_privileges.php:1718 #: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" @@ -2079,7 +2089,7 @@ msgid "remember template" msgstr "টেমপ্লেট মনে রাখ" #: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 -#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 +#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:509 msgid "Character set of the file:" msgstr "ফাইল এর অক্ষরসমূহঃ" @@ -2132,7 +2142,7 @@ msgstr "" msgid "File to import" msgstr "ইম্পোর্ট করার জন্য ফাইল" -#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:497 +#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:484 msgid "Location of the text file" msgstr "Location of the text file" @@ -2140,12 +2150,12 @@ msgstr "Location of the text file" msgid "File uploads are not allowed on this server." msgstr "File uploads are not allowed on this server." -#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 +#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:493 #: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "The directory you set for upload work cannot be reached" -#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 +#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:496 #: tbl_change.php:925 msgid "web server upload directory" msgstr "web server upload directory" @@ -3531,7 +3541,7 @@ msgid "" msgstr "" "Please see the documentation on how to update your column_comments table" -#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:403 msgid "Bookmarked SQL query" msgstr "বুকমার্ক করা SQL query" @@ -3598,7 +3608,7 @@ msgstr "Show slave status" msgid "Slave status" msgstr "Show slave status" -#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:428 +#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:415 #: server_status.php:736 server_variables.php:51 msgid "Variable" msgstr "চলক" @@ -3727,51 +3737,51 @@ msgstr "" msgid "Target database" msgstr "ডাটাবে এ খুজুঁনSearch in database" -#: libraries/sql_query_form.lib.php:219 +#: libraries/sql_query_form.lib.php:217 #, php-format msgid "Run SQL query/queries on server %s" msgstr "Run SQL query/queries on server %s" -#: libraries/sql_query_form.lib.php:236 libraries/sql_query_form.lib.php:261 +#: libraries/sql_query_form.lib.php:234 libraries/sql_query_form.lib.php:258 #, php-format msgid "Run SQL query/queries on database %s" msgstr "Run SQL query/queries on database %s" -#: libraries/sql_query_form.lib.php:307 +#: libraries/sql_query_form.lib.php:294 #, fuzzy #| msgid "Column names" msgid "Columns" msgstr "কলামের নাম" -#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 +#: libraries/sql_query_form.lib.php:329 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "এই SQL query টি বুকমার্ক করুন" -#: libraries/sql_query_form.lib.php:349 sql.php:669 +#: libraries/sql_query_form.lib.php:336 sql.php:669 msgid "Let every user access this bookmark" msgstr "সব ব্যাক্তিকে এই বুকমার্কটি দেখার সুযোগ দিন" -#: libraries/sql_query_form.lib.php:355 +#: libraries/sql_query_form.lib.php:342 msgid "Replace existing bookmark of same name" msgstr "একই নামের বর্তমান বুকমার্ক প্রতিস্থাপন করুন" -#: libraries/sql_query_form.lib.php:371 +#: libraries/sql_query_form.lib.php:358 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:378 +#: libraries/sql_query_form.lib.php:365 msgid "Delimiter" msgstr "Delimiter" -#: libraries/sql_query_form.lib.php:386 +#: libraries/sql_query_form.lib.php:373 msgid " Show this query here again " msgstr " Show this query here again " -#: libraries/sql_query_form.lib.php:445 +#: libraries/sql_query_form.lib.php:432 msgid "Submit" msgstr "Submit" -#: libraries/sql_query_form.lib.php:449 +#: libraries/sql_query_form.lib.php:436 msgid "View only" msgstr "শুধু দেখ" @@ -3842,12 +3852,11 @@ 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/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 -#: libraries/tbl_links.inc.php:139 +#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107 msgid "Table seems to be empty!" msgstr "" -#: libraries/tbl_links.inc.php:147 +#: libraries/tbl_links.inc.php:115 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" @@ -8024,43 +8033,56 @@ msgstr "Table %s has been flushed" msgid "Flush the table (FLUSH)" msgstr "Flush the table (\"FLUSH\")" -#: tbl_operations.php:648 +#: tbl_operations.php:642 +#, fuzzy +msgid "Table removal" +msgstr "টেবিল এর নাম" + +#: tbl_operations.php:657 +msgid "Empty the table (TRUNCATE)" +msgstr "" + +#: tbl_operations.php:675 +msgid "Drop the table (DROP)" +msgstr "" + +#: tbl_operations.php:696 #, fuzzy msgid "Partition maintenance" msgstr "Table maintenance" -#: tbl_operations.php:656 +#: tbl_operations.php:704 #, php-format msgid "Partition %s" msgstr "" -#: tbl_operations.php:659 +#: tbl_operations.php:707 msgid "Analyze" msgstr "" -#: tbl_operations.php:660 +#: tbl_operations.php:708 #, fuzzy msgid "Check" msgstr "চেক" -#: tbl_operations.php:661 +#: tbl_operations.php:709 msgid "Optimize" msgstr "" -#: tbl_operations.php:662 +#: tbl_operations.php:710 msgid "Rebuild" msgstr "" -#: tbl_operations.php:663 +#: tbl_operations.php:711 #, fuzzy msgid "Repair" msgstr "টেবিল রিপেয়ার করুন" -#: tbl_operations.php:675 +#: tbl_operations.php:723 msgid "Remove partitioning" msgstr "" -#: tbl_operations.php:701 +#: tbl_operations.php:749 msgid "Check referential integrity:" msgstr "Check referential integrity:" diff --git a/po/bs.po b/po/bs.po index b54663a3d..f2f369226 100644 --- a/po/bs.po +++ b/po/bs.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-26 17:18+0200\n" +"POT-Creation-Date: 2010-07-27 10:12+0200\n" "PO-Revision-Date: 2010-03-12 09:12+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: bosnian \n" @@ -38,16 +38,16 @@ msgstr "" #: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 #: db_structure.php:89 db_structure.php:91 db_structure.php:102 #: db_structure.php:104 libraries/common.lib.php:2834 -#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Pretraživanje" #: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 -#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_operations.php:468 db_operations.php:492 db_search.php:344 #: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 #: libraries/Theme_Manager.class.php:305 -#: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 +#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:712 #: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 @@ -55,8 +55,8 @@ msgstr "Pretraživanje" #: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 #: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 -#: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: libraries/sql_query_form.lib.php:377 libraries/sql_query_form.lib.php:447 +#: libraries/sql_query_form.lib.php:512 libraries/tbl_properties.inc.php:780 #: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 #: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 #: server_privileges.php:663 server_privileges.php:1620 @@ -66,7 +66,7 @@ msgstr "Pretraživanje" #: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 #: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 -#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_operations.php:726 tbl_select.php:323 tbl_structure.php:559 #: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 #: view_create.php:181 view_operations.php:99 msgid "Go" @@ -249,49 +249,64 @@ msgstr "Naredba" msgid "and then" msgstr "" -#: db_operations.php:390 +#: db_operations.php:379 +#, fuzzy +msgid "Remove database" +msgstr "Promjeni ime tabele u " + +#: db_operations.php:391 +#, php-format +msgid "Database %s has been dropped." +msgstr "Baza %s je odbačena." + +#: db_operations.php:396 +#, fuzzy +msgid "Drop the database (DROP)" +msgstr "Baza ne postoji" + +#: db_operations.php:424 #, fuzzy msgid "Copy database to" msgstr "Baza ne postoji" -#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:431 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Samo struktura" -#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:432 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Struktura i podatci" -#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:433 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Samo podaci" -#: db_operations.php:407 +#: db_operations.php:441 msgid "CREATE DATABASE before copying" msgstr "" -#: db_operations.php:410 libraries/export/sql.php:51 +#: db_operations.php:444 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 #: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "" -#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: db_operations.php:448 libraries/export/sql.php:77 tbl_operations.php:296 #: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Dodaj AUTO_INCREMENT vrijednost" -#: db_operations.php:418 tbl_operations.php:542 +#: db_operations.php:452 tbl_operations.php:542 msgid "Add constraints" msgstr "" -#: db_operations.php:431 +#: db_operations.php:465 #, fuzzy msgid "Switch to copied database" msgstr "Pređi na kopiranu tabelu" -#: db_operations.php:451 libraries/Index.class.php:447 +#: db_operations.php:485 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 #: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 #: server_collations.php:53 server_collations.php:65 server_databases.php:108 @@ -300,7 +315,7 @@ msgstr "Pređi na kopiranu tabelu" msgid "Collation" msgstr "Sortiranje" -#: db_operations.php:464 pdf_schema.php:32 +#: db_operations.php:498 pdf_schema.php:32 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -312,7 +327,7 @@ msgstr "" "Dodatne mogućnosti za rad sa povezanim tabelama su isključene. Da biste " "saznali zašto, kliknite %sovde%s." -#: db_operations.php:497 +#: db_operations.php:531 msgid "Edit PDF Pages" msgstr "Izmena PDF strana" @@ -368,7 +383,7 @@ msgstr[0] "%s tabela" msgstr[1] "%s tabela" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -460,7 +475,7 @@ msgstr "Izvrši SQL upit" #: db_search.php:50 libraries/auth/config.auth.lib.php:83 #: libraries/auth/config.auth.lib.php:102 -#: libraries/auth/cookie.auth.lib.php:640 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:182 msgid "Access denied" msgstr "Ulaz nije dozvoljen" @@ -503,7 +518,7 @@ msgid "Browse" msgstr "Pregled" #: db_search.php:254 libraries/display_tbl.lib.php:1163 -#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:440 #: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 @@ -546,14 +561,14 @@ msgstr "Unutar tabela:" #: db_structure.php:79 db_structure.php:80 db_structure.php:92 #: db_structure.php:93 db_structure.php:105 db_structure.php:106 -#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:311 +#: libraries/sql_query_form.lib.php:314 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Novi zapis" #: db_structure.php:81 db_structure.php:94 db_structure.php:107 #: libraries/common.lib.php:2832 libraries/common.lib.php:2839 -#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 +#: libraries/db_links.inc.php:48 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 @@ -566,8 +581,7 @@ msgstr "Struktura" #: db_structure.php:96 db_structure.php:108 db_structure.php:109 #: db_structure.php:530 db_structure.php:531 db_tracking.php:86 #: libraries/Index.class.php:482 libraries/common.lib.php:1663 -#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 #: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 #: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" @@ -576,21 +590,21 @@ msgstr "Odbaci" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 +#: libraries/mult_submits.inc.php:38 msgid "Empty" msgstr "Isprazni" -#: db_structure.php:301 libraries/tbl_links.inc.php:98 +#: db_structure.php:301 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "Tabela %s je ispražnjena" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, fuzzy, php-format msgid "View %s has been dropped" msgstr "Polje %s je obrisano" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "Tabela %s je odbačena" @@ -681,7 +695,7 @@ msgstr "Popravi tabelu" msgid "Analyze table" msgstr "Analiziraj tabelu" -#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:56 #: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 #: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 #: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 @@ -1400,7 +1414,7 @@ msgid "Databases" msgstr "Baze" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30 #: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 #: tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -1503,7 +1517,7 @@ msgid "Cannot connect: invalid settings." msgstr "" #: libraries/auth/config.auth.lib.php:91 -#: libraries/auth/cookie.auth.lib.php:205 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:206 libraries/auth/http.auth.lib.php:64 #: test/theme.php:151 #, php-format msgid "Welcome to %s" @@ -1528,57 +1542,57 @@ msgstr "" "php i uvjerite se da odgovaraju podacima koje ste dobili od administratora " "MySQL servera." -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:231 msgid "Log in" msgstr "Prijavljivanje" -#: libraries/auth/cookie.auth.lib.php:232 -#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:233 +#: libraries/auth/cookie.auth.lib.php:235 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:94 msgid "phpMyAdmin documentation" msgstr "phpMyAdmin dokumentacija" -#: libraries/auth/cookie.auth.lib.php:244 #: libraries/auth/cookie.auth.lib.php:245 +#: libraries/auth/cookie.auth.lib.php:246 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:244 +#: libraries/auth/cookie.auth.lib.php:245 #, fuzzy msgid "Server:" msgstr "Server" -#: libraries/auth/cookie.auth.lib.php:249 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Username:" msgstr "Korisničko ime:" -#: libraries/auth/cookie.auth.lib.php:253 +#: libraries/auth/cookie.auth.lib.php:254 msgid "Password:" msgstr "Lozinka:" -#: libraries/auth/cookie.auth.lib.php:260 +#: libraries/auth/cookie.auth.lib.php:261 msgid "Server Choice" msgstr "Izbor servera" -#: libraries/auth/cookie.auth.lib.php:306 libraries/header.inc.php:58 +#: libraries/auth/cookie.auth.lib.php:307 libraries/header.inc.php:58 msgid "Cookies must be enabled past this point." msgstr "Kolačići (Cookies) moraju u ovom slučaju biti aktivirani." -#: libraries/auth/cookie.auth.lib.php:638 +#: libraries/auth/cookie.auth.lib.php:639 #: libraries/auth/signon.auth.lib.php:180 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" -#: libraries/auth/cookie.auth.lib.php:642 +#: libraries/auth/cookie.auth.lib.php:643 #: libraries/auth/signon.auth.lib.php:184 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" -#: libraries/auth/cookie.auth.lib.php:652 -#: libraries/auth/cookie.auth.lib.php:654 +#: libraries/auth/cookie.auth.lib.php:653 +#: libraries/auth/cookie.auth.lib.php:655 #: libraries/auth/signon.auth.lib.php:190 msgid "Cannot log in to the MySQL server" msgstr "Ne mogu da se prijavim na MySQL server" @@ -1698,7 +1712,7 @@ msgstr "Poslato" #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 #: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 -#: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 +#: libraries/sql_query_form.lib.php:421 libraries/sql_query_form.lib.php:424 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" msgstr "Dokumentacija" @@ -1839,19 +1853,19 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/common.lib.php:2833 libraries/common.lib.php:2840 -#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 +#: libraries/db_links.inc.php:53 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 #: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 -#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:86 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "Operacije" -#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:265 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1867,37 +1881,32 @@ msgstr "" msgid "Name" msgstr "Ime" -#: libraries/db_links.inc.php:43 -#, php-format -msgid "Database %s has been dropped." -msgstr "Baza %s je odbačena." - -#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 -#: libraries/db_links.inc.php:57 +#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43 +#: libraries/db_links.inc.php:44 msgid "Database seems to be empty!" msgstr "" -#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/db_links.inc.php:66 libraries/relation.lib.php:137 #: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:84 +#: libraries/db_links.inc.php:71 msgid "Query" msgstr "Upit po primeru" -#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 +#: libraries/db_links.inc.php:76 libraries/relation.lib.php:133 msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:87 #: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 #, fuzzy msgid "Import" msgstr "Izvoz" -#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:65 #: server_privileges.php:110 server_privileges.php:1718 #: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" @@ -2060,7 +2069,7 @@ msgid "remember template" msgstr "zapamti šablon" #: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 -#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 +#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:509 msgid "Character set of the file:" msgstr "Karakter set datoteke:" @@ -2113,7 +2122,7 @@ msgstr "" msgid "File to import" msgstr "" -#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:497 +#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:484 msgid "Location of the text file" msgstr "Lokacija tekstualne datoteke" @@ -2121,12 +2130,12 @@ msgstr "Lokacija tekstualne datoteke" msgid "File uploads are not allowed on this server." msgstr "" -#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 +#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:493 #: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "Direkcija koju ste izabrali za slanje nije dostupna" -#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 +#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:496 #: tbl_change.php:925 msgid "web server upload directory" msgstr "direkcija za slanje web servera " @@ -3486,7 +3495,7 @@ msgid "" msgstr "" "Molimo pogledajte u dokumentaciji kako se ažurira tabela Column_comments" -#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:403 msgid "Bookmarked SQL query" msgstr "Obilježen SQL-upit" @@ -3551,7 +3560,7 @@ msgstr "" msgid "Slave status" msgstr "" -#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:428 +#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:415 #: server_status.php:736 server_variables.php:51 msgid "Variable" msgstr "Promjenljiva" @@ -3683,51 +3692,51 @@ msgstr "" msgid "Target database" msgstr "Pretraživanje baze" -#: libraries/sql_query_form.lib.php:219 +#: libraries/sql_query_form.lib.php:217 #, 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:236 libraries/sql_query_form.lib.php:261 +#: libraries/sql_query_form.lib.php:234 libraries/sql_query_form.lib.php:258 #, 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:307 +#: libraries/sql_query_form.lib.php:294 #, fuzzy #| msgid "Column names" msgid "Columns" msgstr "Imena kolona" -#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 +#: libraries/sql_query_form.lib.php:329 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "Obilježi SQL-upit" -#: libraries/sql_query_form.lib.php:349 sql.php:669 +#: libraries/sql_query_form.lib.php:336 sql.php:669 msgid "Let every user access this bookmark" msgstr "" -#: libraries/sql_query_form.lib.php:355 +#: libraries/sql_query_form.lib.php:342 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/sql_query_form.lib.php:371 +#: libraries/sql_query_form.lib.php:358 msgid "Do not overwrite this query from outside the window" msgstr "Ne prepisuj ovaj upit izvan prozora" -#: libraries/sql_query_form.lib.php:378 +#: libraries/sql_query_form.lib.php:365 msgid "Delimiter" msgstr "" -#: libraries/sql_query_form.lib.php:386 +#: libraries/sql_query_form.lib.php:373 msgid " Show this query here again " msgstr "Prikaži ponovo ovaj upit" -#: libraries/sql_query_form.lib.php:445 +#: libraries/sql_query_form.lib.php:432 msgid "Submit" msgstr "Pošalji" -#: libraries/sql_query_form.lib.php:449 +#: libraries/sql_query_form.lib.php:436 msgid "View only" msgstr "Vidi samo" @@ -3798,12 +3807,11 @@ msgstr "" "SQL validator nije mogao da bude pokrenut. Proverite da li su instalirane " "neophodne PHP ekstenzije opisane u %sdokumentaciji%s." -#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 -#: libraries/tbl_links.inc.php:139 +#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107 msgid "Table seems to be empty!" msgstr "" -#: libraries/tbl_links.inc.php:147 +#: libraries/tbl_links.inc.php:115 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" @@ -7800,43 +7808,55 @@ msgstr "Tabela %s je osvežena" msgid "Flush the table (FLUSH)" msgstr "Osvježi tabelu (\"FLUSH\")" -#: tbl_operations.php:648 +#: tbl_operations.php:642 +msgid "Table removal" +msgstr "" + +#: tbl_operations.php:657 +msgid "Empty the table (TRUNCATE)" +msgstr "" + +#: tbl_operations.php:675 +msgid "Drop the table (DROP)" +msgstr "" + +#: tbl_operations.php:696 #, fuzzy msgid "Partition maintenance" msgstr "Radnje na tabeli" -#: tbl_operations.php:656 +#: tbl_operations.php:704 #, php-format msgid "Partition %s" msgstr "" -#: tbl_operations.php:659 +#: tbl_operations.php:707 msgid "Analyze" msgstr "" -#: tbl_operations.php:660 +#: tbl_operations.php:708 #, fuzzy msgid "Check" msgstr "Češki" -#: tbl_operations.php:661 +#: tbl_operations.php:709 msgid "Optimize" msgstr "" -#: tbl_operations.php:662 +#: tbl_operations.php:710 msgid "Rebuild" msgstr "" -#: tbl_operations.php:663 +#: tbl_operations.php:711 #, fuzzy msgid "Repair" msgstr "Popravi tabelu" -#: tbl_operations.php:675 +#: tbl_operations.php:723 msgid "Remove partitioning" msgstr "" -#: tbl_operations.php:701 +#: tbl_operations.php:749 msgid "Check referential integrity:" msgstr "Proveri referencijalni integritet:" diff --git a/po/ca.po b/po/ca.po index 368405217..08ca97065 100644 --- a/po/ca.po +++ b/po/ca.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-26 17:18+0200\n" +"POT-Creation-Date: 2010-07-27 10:12+0200\n" "PO-Revision-Date: 2010-03-12 09:13+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: catalan \n" @@ -38,16 +38,16 @@ msgstr "" #: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 #: db_structure.php:89 db_structure.php:91 db_structure.php:102 #: db_structure.php:104 libraries/common.lib.php:2834 -#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Cerca" #: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 -#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_operations.php:468 db_operations.php:492 db_search.php:344 #: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 #: libraries/Theme_Manager.class.php:305 -#: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 +#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:712 #: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 @@ -55,8 +55,8 @@ msgstr "Cerca" #: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 #: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 -#: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: libraries/sql_query_form.lib.php:377 libraries/sql_query_form.lib.php:447 +#: libraries/sql_query_form.lib.php:512 libraries/tbl_properties.inc.php:780 #: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 #: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 #: server_privileges.php:663 server_privileges.php:1620 @@ -66,7 +66,7 @@ msgstr "Cerca" #: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 #: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 -#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_operations.php:726 tbl_select.php:323 tbl_structure.php:559 #: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 #: view_create.php:181 view_operations.php:99 msgid "Go" @@ -249,47 +249,64 @@ msgstr "Ordre" msgid "and then" msgstr "i llavors" -#: db_operations.php:390 +#: db_operations.php:379 +#, fuzzy +#| msgid "Rename database to" +msgid "Remove database" +msgstr "Reanomena base de dades a" + +#: db_operations.php:391 +#, php-format +msgid "Database %s has been dropped." +msgstr "La Base de Dades %s s'ha eliminat." + +#: db_operations.php:396 +#, fuzzy +#| msgid "Go to database" +msgid "Drop the database (DROP)" +msgstr "Vés a la base de dades" + +#: db_operations.php:424 msgid "Copy database to" msgstr "Còpia base de dades a" -#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:431 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Només l'estructura" -#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:432 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Estructura i dades" -#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:433 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Només dades" -#: db_operations.php:407 +#: db_operations.php:441 msgid "CREATE DATABASE before copying" msgstr "Inclou CREATE DATABASE abans de copiar" -#: db_operations.php:410 libraries/export/sql.php:51 +#: db_operations.php:444 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 #: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "Afegeix %s" -#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: db_operations.php:448 libraries/export/sql.php:77 tbl_operations.php:296 #: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Afegeix valor AUTO_INCREMENT" -#: db_operations.php:418 tbl_operations.php:542 +#: db_operations.php:452 tbl_operations.php:542 msgid "Add constraints" msgstr "Afegeix restriccions" -#: db_operations.php:431 +#: db_operations.php:465 msgid "Switch to copied database" msgstr "Canvia a la base de dades copiada" -#: db_operations.php:451 libraries/Index.class.php:447 +#: db_operations.php:485 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 #: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 #: server_collations.php:53 server_collations.php:65 server_databases.php:108 @@ -298,7 +315,7 @@ msgstr "Canvia a la base de dades copiada" msgid "Collation" msgstr "Ordenació" -#: db_operations.php:464 pdf_schema.php:32 +#: db_operations.php:498 pdf_schema.php:32 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -310,7 +327,7 @@ msgstr "" "Les característiques addicionals per treballar amb taules enllaçades s'han " "desactivat. Per saber perquè prem a %saquí%s." -#: db_operations.php:497 +#: db_operations.php:531 msgid "Edit PDF Pages" msgstr "Edita pàgines PDF" @@ -366,7 +383,7 @@ msgstr[0] "%s taula(es)" msgstr[1] "%s taula(es)" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -458,7 +475,7 @@ msgstr "Executa consulta" #: db_search.php:50 libraries/auth/config.auth.lib.php:83 #: libraries/auth/config.auth.lib.php:102 -#: libraries/auth/cookie.auth.lib.php:640 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:182 msgid "Access denied" msgstr "Accés denegat" @@ -501,7 +518,7 @@ msgid "Browse" msgstr "Navega" #: db_search.php:254 libraries/display_tbl.lib.php:1163 -#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:440 #: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 @@ -544,14 +561,14 @@ msgstr "Camp interior:" #: db_structure.php:79 db_structure.php:80 db_structure.php:92 #: db_structure.php:93 db_structure.php:105 db_structure.php:106 -#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:311 +#: libraries/sql_query_form.lib.php:314 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Insereix" #: db_structure.php:81 db_structure.php:94 db_structure.php:107 #: libraries/common.lib.php:2832 libraries/common.lib.php:2839 -#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 +#: libraries/db_links.inc.php:48 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 @@ -564,8 +581,7 @@ msgstr "Estructura" #: db_structure.php:96 db_structure.php:108 db_structure.php:109 #: db_structure.php:530 db_structure.php:531 db_tracking.php:86 #: libraries/Index.class.php:482 libraries/common.lib.php:1663 -#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 #: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 #: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" @@ -574,21 +590,21 @@ msgstr "Elimina" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 +#: libraries/mult_submits.inc.php:38 msgid "Empty" msgstr "Buida" -#: db_structure.php:301 libraries/tbl_links.inc.php:98 +#: db_structure.php:301 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "S'ha buidat la taula %s" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "View %s has been dropped" msgstr "Vista %s esborrada" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "S'ha esborrat la taula %s" @@ -679,7 +695,7 @@ msgstr "Repara la taula" msgid "Analyze table" msgstr "Analitza la taula" -#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:56 #: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 #: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 #: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 @@ -1412,7 +1428,7 @@ msgid "Databases" msgstr "Bases de dades" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30 #: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 #: tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -1520,7 +1536,7 @@ msgid "Cannot connect: invalid settings." msgstr "No puc connectar: paràmetres incorrectes." #: libraries/auth/config.auth.lib.php:91 -#: libraries/auth/cookie.auth.lib.php:205 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:206 libraries/auth/http.auth.lib.php:64 #: test/theme.php:151 #, php-format msgid "Welcome to %s" @@ -1547,44 +1563,44 @@ msgstr "" "a l'arxiu config.inc.php i mira que es correspongui amb l'informació " "facilitada per l'administrador del servidor de MySQL." -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:231 msgid "Log in" msgstr "Identificació" -#: libraries/auth/cookie.auth.lib.php:232 -#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:233 +#: libraries/auth/cookie.auth.lib.php:235 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:94 msgid "phpMyAdmin documentation" msgstr "Documentació de phpMyAdmin" -#: libraries/auth/cookie.auth.lib.php:244 #: libraries/auth/cookie.auth.lib.php:245 +#: libraries/auth/cookie.auth.lib.php:246 msgid "You can enter hostname/IP address and port separated by space." msgstr "Pots entrar un nom d'amfitrió/adreça IP i port separat per espai." -#: libraries/auth/cookie.auth.lib.php:244 +#: libraries/auth/cookie.auth.lib.php:245 msgid "Server:" msgstr "Servidor" -#: libraries/auth/cookie.auth.lib.php:249 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Username:" msgstr "Nom d'Usuari:" -#: libraries/auth/cookie.auth.lib.php:253 +#: libraries/auth/cookie.auth.lib.php:254 msgid "Password:" msgstr "Contrasenya:" -#: libraries/auth/cookie.auth.lib.php:260 +#: libraries/auth/cookie.auth.lib.php:261 msgid "Server Choice" msgstr "Elecció de Servidor" -#: libraries/auth/cookie.auth.lib.php:306 libraries/header.inc.php:58 +#: libraries/auth/cookie.auth.lib.php:307 libraries/header.inc.php:58 msgid "Cookies must be enabled past this point." msgstr "" "A partir d'aquest punt és necessari tenir les galetes (cookies) activades." -#: libraries/auth/cookie.auth.lib.php:638 +#: libraries/auth/cookie.auth.lib.php:639 #: libraries/auth/signon.auth.lib.php:180 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" @@ -1592,14 +1608,14 @@ msgstr "" "La configuració prohibeix la connexió sense contrasenya (veure " "AllowNoPassword)" -#: libraries/auth/cookie.auth.lib.php:642 +#: libraries/auth/cookie.auth.lib.php:643 #: libraries/auth/signon.auth.lib.php:184 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "Sense activitat des de fa %s segons o més, entra de nou" -#: libraries/auth/cookie.auth.lib.php:652 -#: libraries/auth/cookie.auth.lib.php:654 +#: libraries/auth/cookie.auth.lib.php:653 +#: libraries/auth/cookie.auth.lib.php:655 #: libraries/auth/signon.auth.lib.php:190 msgid "Cannot log in to the MySQL server" msgstr "No podem connectar amb el servidor MySQL" @@ -1723,7 +1739,7 @@ msgstr "Enviat" #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 #: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 -#: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 +#: libraries/sql_query_form.lib.php:421 libraries/sql_query_form.lib.php:424 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" msgstr "Documentació" @@ -1868,19 +1884,19 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "La funcionalitat %s es veu afectada per un error conegut, veieu %s" #: libraries/common.lib.php:2833 libraries/common.lib.php:2840 -#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 +#: libraries/db_links.inc.php:53 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 #: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 -#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:86 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "Operacions" -#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:265 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1896,36 +1912,31 @@ msgstr "Esdeveniments" msgid "Name" msgstr "Nom" -#: libraries/db_links.inc.php:43 -#, php-format -msgid "Database %s has been dropped." -msgstr "La Base de Dades %s s'ha eliminat." - -#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 -#: libraries/db_links.inc.php:57 +#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43 +#: libraries/db_links.inc.php:44 msgid "Database seems to be empty!" msgstr "La base de dades sembla buida!" -#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/db_links.inc.php:66 libraries/relation.lib.php:137 #: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "Seguiment" -#: libraries/db_links.inc.php:84 +#: libraries/db_links.inc.php:71 msgid "Query" msgstr "Consulta segons exemple" -#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 +#: libraries/db_links.inc.php:76 libraries/relation.lib.php:133 msgid "Designer" msgstr "Dissenyador" -#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:87 #: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importa" -#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:65 #: server_privileges.php:110 server_privileges.php:1718 #: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" @@ -2095,7 +2106,7 @@ msgid "remember template" msgstr "Recordar plantilla" #: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 -#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 +#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:509 msgid "Character set of the file:" msgstr "Joc de caràcters de l'arxiu:" @@ -2153,7 +2164,7 @@ msgstr "" msgid "File to import" msgstr "Arxiu a importar" -#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:497 +#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:484 msgid "Location of the text file" msgstr "Ubicació de l'arxiu de text" @@ -2161,12 +2172,12 @@ msgstr "Ubicació de l'arxiu de text" msgid "File uploads are not allowed on this server." msgstr "No es permet pujar arxius en aquest servidor." -#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 +#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:493 #: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "No està disponible el directori indicat per pujar arxius" -#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 +#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:496 #: tbl_change.php:925 msgid "web server upload directory" msgstr "Directori de pujada d'arxius del servidor web" @@ -3588,7 +3599,7 @@ msgstr "" "Mira a la documentació cóm actualitzar la teva Taula de Comentaris de les " "Columnes" -#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:403 msgid "Bookmarked SQL query" msgstr "Consulta SQL desada" @@ -3655,7 +3666,7 @@ msgstr "Estat del mestre" msgid "Slave status" msgstr "Estat de l'esclau" -#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:428 +#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:415 #: server_status.php:736 server_variables.php:51 msgid "Variable" msgstr "Variable" @@ -3786,51 +3797,51 @@ msgstr "Diferència" msgid "Target database" msgstr "Base de dades destinació" -#: libraries/sql_query_form.lib.php:219 +#: libraries/sql_query_form.lib.php:217 #, php-format msgid "Run SQL query/queries on server %s" msgstr "Executar consulta/es SQL al servidor %s" -#: libraries/sql_query_form.lib.php:236 libraries/sql_query_form.lib.php:261 +#: libraries/sql_query_form.lib.php:234 libraries/sql_query_form.lib.php:258 #, 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:307 +#: libraries/sql_query_form.lib.php:294 #, fuzzy #| msgid "Column names" msgid "Columns" msgstr "Nom de les columnes" -#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 +#: libraries/sql_query_form.lib.php:329 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "Desa aquesta consulta SQL" -#: libraries/sql_query_form.lib.php:349 sql.php:669 +#: libraries/sql_query_form.lib.php:336 sql.php:669 msgid "Let every user access this bookmark" msgstr "Deixa accedir a cada usuari a aquesta consulta desada" -#: libraries/sql_query_form.lib.php:355 +#: libraries/sql_query_form.lib.php:342 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:371 +#: libraries/sql_query_form.lib.php:358 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:378 +#: libraries/sql_query_form.lib.php:365 msgid "Delimiter" msgstr "Separador" -#: libraries/sql_query_form.lib.php:386 +#: libraries/sql_query_form.lib.php:373 msgid " Show this query here again " msgstr " Mostra aquesta consulta de nou " -#: libraries/sql_query_form.lib.php:445 +#: libraries/sql_query_form.lib.php:432 msgid "Submit" msgstr "Envia" -#: libraries/sql_query_form.lib.php:449 +#: libraries/sql_query_form.lib.php:436 msgid "View only" msgstr "Només mirar" @@ -3903,12 +3914,11 @@ msgstr "" "instal·lats els mòduls de PHP necessaris tal i com s'indica a la " "%sdocumentació%s." -#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 -#: libraries/tbl_links.inc.php:139 +#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107 msgid "Table seems to be empty!" msgstr "La taula sembla buida!" -#: libraries/tbl_links.inc.php:147 +#: libraries/tbl_links.inc.php:115 #, php-format msgid "Tracking of %s.%s is activated." msgstr "S'ha activat el seguiment de %s.%s." @@ -8329,40 +8339,54 @@ msgstr "S'ha buidat la memòria cau de la taula %s" msgid "Flush the table (FLUSH)" msgstr "Buida la memòria cau de la taula (\"FLUSH\")" -#: tbl_operations.php:648 +#: tbl_operations.php:642 +#, fuzzy +#| msgid "Table name" +msgid "Table removal" +msgstr "Nom de taula" + +#: tbl_operations.php:657 +msgid "Empty the table (TRUNCATE)" +msgstr "" + +#: tbl_operations.php:675 +msgid "Drop the table (DROP)" +msgstr "" + +#: tbl_operations.php:696 msgid "Partition maintenance" msgstr "Manteniment de particions" -#: tbl_operations.php:656 +#: tbl_operations.php:704 #, php-format msgid "Partition %s" msgstr "Partició %s" -#: tbl_operations.php:659 +#: tbl_operations.php:707 msgid "Analyze" msgstr "Analitza" -#: tbl_operations.php:660 +#: tbl_operations.php:708 msgid "Check" msgstr "Comprova" -#: tbl_operations.php:661 +#: tbl_operations.php:709 msgid "Optimize" msgstr "Optimitza" -#: tbl_operations.php:662 +#: tbl_operations.php:710 msgid "Rebuild" msgstr "Reconstrueix" -#: tbl_operations.php:663 +#: tbl_operations.php:711 msgid "Repair" msgstr "Repara" -#: tbl_operations.php:675 +#: tbl_operations.php:723 msgid "Remove partitioning" msgstr "Elimina particionament" -#: tbl_operations.php:701 +#: tbl_operations.php:749 msgid "Check referential integrity:" msgstr "Comprova la integritat referencial:" diff --git a/po/cs.po b/po/cs.po index c3c000466..966f13747 100644 --- a/po/cs.po +++ b/po/cs.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-26 17:18+0200\n" +"POT-Creation-Date: 2010-07-27 10:12+0200\n" "PO-Revision-Date: 2010-07-21 13:55+0200\n" "Last-Translator: Michal \n" "Language-Team: czech \n" @@ -41,16 +41,16 @@ msgstr "" #: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 #: db_structure.php:89 db_structure.php:91 db_structure.php:102 #: db_structure.php:104 libraries/common.lib.php:2834 -#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Vyhledávání" #: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 -#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_operations.php:468 db_operations.php:492 db_search.php:344 #: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 #: libraries/Theme_Manager.class.php:305 -#: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 +#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:712 #: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 @@ -58,8 +58,8 @@ msgstr "Vyhledávání" #: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 #: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 -#: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: libraries/sql_query_form.lib.php:377 libraries/sql_query_form.lib.php:447 +#: libraries/sql_query_form.lib.php:512 libraries/tbl_properties.inc.php:780 #: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 #: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 #: server_privileges.php:663 server_privileges.php:1620 @@ -69,7 +69,7 @@ msgstr "Vyhledávání" #: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 #: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 -#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_operations.php:726 tbl_select.php:323 tbl_structure.php:559 #: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 #: view_create.php:181 view_operations.php:99 msgid "Go" @@ -250,47 +250,64 @@ msgstr "Příkaz" msgid "and then" msgstr "a poté" -#: db_operations.php:390 +#: db_operations.php:379 +#, fuzzy +#| msgid "Rename database to" +msgid "Remove database" +msgstr "Přejmenovat databázi na" + +#: db_operations.php:391 +#, php-format +msgid "Database %s has been dropped." +msgstr "Databáze %s byla zrušena." + +#: db_operations.php:396 +#, fuzzy +#| msgid "Go to database" +msgid "Drop the database (DROP)" +msgstr "Přejít na databázi" + +#: db_operations.php:424 msgid "Copy database to" msgstr "Zkopírovat databázi na" -#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:431 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Pouze strukturu" -#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:432 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Strukturu a data" -#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:433 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Jen data" -#: db_operations.php:407 +#: db_operations.php:441 msgid "CREATE DATABASE before copying" msgstr "Vytvořit databázi před kopírováním (CREATE DATABASE)" -#: db_operations.php:410 libraries/export/sql.php:51 +#: db_operations.php:444 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 #: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "Přidat %s" -#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: db_operations.php:448 libraries/export/sql.php:77 tbl_operations.php:296 #: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Přidat hodnotu AUTO_INCREMENT" -#: db_operations.php:418 tbl_operations.php:542 +#: db_operations.php:452 tbl_operations.php:542 msgid "Add constraints" msgstr "Přidat integritní omezení" -#: db_operations.php:431 +#: db_operations.php:465 msgid "Switch to copied database" msgstr "Přepnout na zkopírovanou databázi" -#: db_operations.php:451 libraries/Index.class.php:447 +#: db_operations.php:485 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 #: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 #: server_collations.php:53 server_collations.php:65 server_databases.php:108 @@ -299,7 +316,7 @@ msgstr "Přepnout na zkopírovanou databázi" msgid "Collation" msgstr "Porovnávání" -#: db_operations.php:464 pdf_schema.php:32 +#: db_operations.php:498 pdf_schema.php:32 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -311,7 +328,7 @@ msgstr "" "Některé z rozšířených funkcí phpMyAdmina nelze používat. %sZde%s zjistíte " "proč." -#: db_operations.php:497 +#: db_operations.php:531 msgid "Edit PDF Pages" msgstr "Upravit PDF stránky" @@ -367,7 +384,7 @@ msgstr[1] "%s tabulky" msgstr[2] "%s tabulek" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -455,7 +472,7 @@ msgstr "Provést dotaz" #: db_search.php:50 libraries/auth/config.auth.lib.php:83 #: libraries/auth/config.auth.lib.php:102 -#: libraries/auth/cookie.auth.lib.php:640 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:182 msgid "Access denied" msgstr "Přístup odepřen" @@ -498,7 +515,7 @@ msgid "Browse" msgstr "Projít" #: db_search.php:254 libraries/display_tbl.lib.php:1163 -#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:440 #: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 @@ -539,14 +556,14 @@ msgstr "Uvnitř pole:" #: db_structure.php:79 db_structure.php:80 db_structure.php:92 #: db_structure.php:93 db_structure.php:105 db_structure.php:106 -#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:311 +#: libraries/sql_query_form.lib.php:314 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Vložit" #: db_structure.php:81 db_structure.php:94 db_structure.php:107 #: libraries/common.lib.php:2832 libraries/common.lib.php:2839 -#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 +#: libraries/db_links.inc.php:48 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 @@ -559,8 +576,7 @@ msgstr "Struktura" #: db_structure.php:96 db_structure.php:108 db_structure.php:109 #: db_structure.php:530 db_structure.php:531 db_tracking.php:86 #: libraries/Index.class.php:482 libraries/common.lib.php:1663 -#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 #: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 #: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" @@ -569,21 +585,21 @@ msgstr "Odstranit" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 +#: libraries/mult_submits.inc.php:38 msgid "Empty" msgstr "Vyprázdnit" -#: db_structure.php:301 libraries/tbl_links.inc.php:98 +#: db_structure.php:301 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "Tabulka %s byla vyprázdněna" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "View %s has been dropped" msgstr "Pohled %s byl odstraněn" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "Tabulka %s byla odstraněna" @@ -674,7 +690,7 @@ msgstr "Opravit tabulku" msgid "Analyze table" msgstr "Analyzovat tabulku" -#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:56 #: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 #: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 #: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 @@ -1352,7 +1368,7 @@ msgid "Databases" msgstr "Databáze" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30 #: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 #: tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -1458,7 +1474,7 @@ msgid "Cannot connect: invalid settings." msgstr "Nepodařilo se připojit: chybné nastavení." #: libraries/auth/config.auth.lib.php:91 -#: libraries/auth/cookie.auth.lib.php:205 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:206 libraries/auth/http.auth.lib.php:64 #: test/theme.php:151 #, php-format msgid "Welcome to %s" @@ -1485,49 +1501,49 @@ msgstr "" "php a ujistěte se, že jsou totožné s těmi, které máte od administrátora " "MySQL serveru." -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:231 msgid "Log in" msgstr "Přihlášení" -#: libraries/auth/cookie.auth.lib.php:232 -#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:233 +#: libraries/auth/cookie.auth.lib.php:235 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:94 msgid "phpMyAdmin documentation" msgstr "Dokumentace phpMyAdmina" -#: libraries/auth/cookie.auth.lib.php:244 #: libraries/auth/cookie.auth.lib.php:245 +#: libraries/auth/cookie.auth.lib.php:246 msgid "You can enter hostname/IP address and port separated by space." msgstr "Můžete zadat jméno počítače (nebo IP adresu) a port oddělené mezerou." -#: libraries/auth/cookie.auth.lib.php:244 +#: libraries/auth/cookie.auth.lib.php:245 msgid "Server:" msgstr "Server:" -#: libraries/auth/cookie.auth.lib.php:249 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Username:" msgstr "Jméno:" -#: libraries/auth/cookie.auth.lib.php:253 +#: libraries/auth/cookie.auth.lib.php:254 msgid "Password:" msgstr "Heslo:" -#: libraries/auth/cookie.auth.lib.php:260 +#: libraries/auth/cookie.auth.lib.php:261 msgid "Server Choice" msgstr "Server" -#: libraries/auth/cookie.auth.lib.php:306 libraries/header.inc.php:58 +#: libraries/auth/cookie.auth.lib.php:307 libraries/header.inc.php:58 msgid "Cookies must be enabled past this point." msgstr "Přihlášení vyžaduje povolené cookies." -#: libraries/auth/cookie.auth.lib.php:638 +#: libraries/auth/cookie.auth.lib.php:639 #: libraries/auth/signon.auth.lib.php:180 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "Přihlášení bez hesla je zakázáno v konfiguraci (viz AllowNoPassword)" -#: libraries/auth/cookie.auth.lib.php:642 +#: libraries/auth/cookie.auth.lib.php:643 #: libraries/auth/signon.auth.lib.php:184 #, php-format msgid "No activity within %s seconds; please log in again" @@ -1535,8 +1551,8 @@ msgstr "" "Byli jste příliš dlouho neaktivní (déle než %s sekund), prosím přihlaste se " "znovu" -#: libraries/auth/cookie.auth.lib.php:652 -#: libraries/auth/cookie.auth.lib.php:654 +#: libraries/auth/cookie.auth.lib.php:653 +#: libraries/auth/cookie.auth.lib.php:655 #: libraries/auth/signon.auth.lib.php:190 msgid "Cannot log in to the MySQL server" msgstr "Nepodařilo se přihlášení k MySQL serveru" @@ -1655,7 +1671,7 @@ msgstr "en" #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 #: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 -#: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 +#: libraries/sql_query_form.lib.php:421 libraries/sql_query_form.lib.php:424 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" msgstr "Dokumentace" @@ -1796,19 +1812,19 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "Funkčnost %s je omezena známou chybou, viz %s" #: libraries/common.lib.php:2833 libraries/common.lib.php:2840 -#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 +#: libraries/db_links.inc.php:53 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 #: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 -#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:86 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "Úpravy" -#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:265 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "Chybí rozšíření %s. Prosím zkontrolujte nastavení PHP." @@ -1824,36 +1840,31 @@ msgstr "Události" msgid "Name" msgstr "Název" -#: libraries/db_links.inc.php:43 -#, php-format -msgid "Database %s has been dropped." -msgstr "Databáze %s byla zrušena." - -#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 -#: libraries/db_links.inc.php:57 +#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43 +#: libraries/db_links.inc.php:44 msgid "Database seems to be empty!" msgstr "Databáze se zdá být prázdná!" -#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/db_links.inc.php:66 libraries/relation.lib.php:137 #: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "Sledování" -#: libraries/db_links.inc.php:84 +#: libraries/db_links.inc.php:71 msgid "Query" msgstr "Dotaz" -#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 +#: libraries/db_links.inc.php:76 libraries/relation.lib.php:133 msgid "Designer" msgstr "Návrhář" -#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:87 #: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Import" -#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:65 #: server_privileges.php:110 server_privileges.php:1718 #: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" @@ -2017,7 +2028,7 @@ msgid "remember template" msgstr "zapamatovat si hodnotu" #: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 -#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 +#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:509 msgid "Character set of the file:" msgstr "Znaková sada souboru:" @@ -2075,7 +2086,7 @@ msgstr "" msgid "File to import" msgstr "Soubor pro importování" -#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:497 +#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:484 msgid "Location of the text file" msgstr "textový soubor" @@ -2083,12 +2094,12 @@ msgstr "textový soubor" msgid "File uploads are not allowed on this server." msgstr "Upload souborů není na tomto serveru povolen." -#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 +#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:493 #: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "Adresář určený pro upload souborů nemohl být otevřen" -#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 +#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:496 #: tbl_change.php:925 msgid "web server upload directory" msgstr "soubor z adresáře pro upload" @@ -3474,7 +3485,7 @@ msgstr "" "Podívejte se prosím do dokumentace, jak aktualizovat tabulku s informacemi " "o polích (tabulka column_comments)" -#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:403 msgid "Bookmarked SQL query" msgstr "Oblíbený SQL dotaz" @@ -3546,7 +3557,7 @@ msgstr "Stav nadřízeného" msgid "Slave status" msgstr "Stav podřízeného" -#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:428 +#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:415 #: server_status.php:736 server_variables.php:51 msgid "Variable" msgstr "Proměnná" @@ -3677,49 +3688,49 @@ msgstr "Rozdíly" msgid "Target database" msgstr "Cílová databáze" -#: libraries/sql_query_form.lib.php:219 +#: libraries/sql_query_form.lib.php:217 #, php-format msgid "Run SQL query/queries on server %s" msgstr "Spustit SQL dotaz(y) na serveru %s" -#: libraries/sql_query_form.lib.php:236 libraries/sql_query_form.lib.php:261 +#: libraries/sql_query_form.lib.php:234 libraries/sql_query_form.lib.php:258 #, 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:307 +#: libraries/sql_query_form.lib.php:294 msgid "Columns" msgstr "Pole" -#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 +#: libraries/sql_query_form.lib.php:329 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "Přidat tento SQL dotaz do oblíbených" -#: libraries/sql_query_form.lib.php:349 sql.php:669 +#: libraries/sql_query_form.lib.php:336 sql.php:669 msgid "Let every user access this bookmark" msgstr "Umožnit všem uživatelům používat tuto položku" -#: libraries/sql_query_form.lib.php:355 +#: libraries/sql_query_form.lib.php:342 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:371 +#: libraries/sql_query_form.lib.php:358 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:378 +#: libraries/sql_query_form.lib.php:365 msgid "Delimiter" msgstr "Oddělovač" -#: libraries/sql_query_form.lib.php:386 +#: libraries/sql_query_form.lib.php:373 msgid " Show this query here again " msgstr " Zobrazit zde tento dotaz znovu " -#: libraries/sql_query_form.lib.php:445 +#: libraries/sql_query_form.lib.php:432 msgid "Submit" msgstr "Provést" -#: libraries/sql_query_form.lib.php:449 +#: libraries/sql_query_form.lib.php:436 msgid "View only" msgstr "Zobrazit" @@ -3790,12 +3801,11 @@ msgstr "" "SQL validátor nemohl být inicializován. Prosím zkontrolujte, jestli máte " "požadovaná rozšíření PHP, která jsou uvedena v %sdokumentaci%s." -#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 -#: libraries/tbl_links.inc.php:139 +#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107 msgid "Table seems to be empty!" msgstr "Tabulka se zdá být prázdná!" -#: libraries/tbl_links.inc.php:147 +#: libraries/tbl_links.inc.php:115 #, php-format msgid "Tracking of %s.%s is activated." msgstr "Sledování pro %s.%s je zapnuté." @@ -8029,40 +8039,54 @@ msgstr "Vyrovnávací paměť pro tabulku %s byla vyprázdněna" msgid "Flush the table (FLUSH)" msgstr "Vyprázdnit vyrovnávací paměť pro tabulku („FLUSH“)" -#: tbl_operations.php:648 +#: tbl_operations.php:642 +#, fuzzy +#| msgid "Table name" +msgid "Table removal" +msgstr "Jméno tabulky" + +#: tbl_operations.php:657 +msgid "Empty the table (TRUNCATE)" +msgstr "" + +#: tbl_operations.php:675 +msgid "Drop the table (DROP)" +msgstr "" + +#: tbl_operations.php:696 msgid "Partition maintenance" msgstr "Údržba oddílů" -#: tbl_operations.php:656 +#: tbl_operations.php:704 #, php-format msgid "Partition %s" msgstr "Oddíl %s" -#: tbl_operations.php:659 +#: tbl_operations.php:707 msgid "Analyze" msgstr "Analyzovat" -#: tbl_operations.php:660 +#: tbl_operations.php:708 msgid "Check" msgstr "Zkontrolovat" -#: tbl_operations.php:661 +#: tbl_operations.php:709 msgid "Optimize" msgstr "Optimalizovat" -#: tbl_operations.php:662 +#: tbl_operations.php:710 msgid "Rebuild" msgstr "Přestavět" -#: tbl_operations.php:663 +#: tbl_operations.php:711 msgid "Repair" msgstr "Opravit" -#: tbl_operations.php:675 +#: tbl_operations.php:723 msgid "Remove partitioning" msgstr "Zrušit oddíly" -#: tbl_operations.php:701 +#: tbl_operations.php:749 msgid "Check referential integrity:" msgstr "Zkontrolovat integritu odkazů:" diff --git a/po/cy.po b/po/cy.po index 4d631562a..44d4bef51 100644 --- a/po/cy.po +++ b/po/cy.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-26 17:18+0200\n" +"POT-Creation-Date: 2010-07-27 10:12+0200\n" "PO-Revision-Date: 2010-06-07 20:23+0200\n" "Last-Translator: \n" "Language-Team: Welsh \n" @@ -42,16 +42,16 @@ msgstr "" #: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 #: db_structure.php:89 db_structure.php:91 db_structure.php:102 #: db_structure.php:104 libraries/common.lib.php:2834 -#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Chwilio" #: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 -#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_operations.php:468 db_operations.php:492 db_search.php:344 #: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 #: libraries/Theme_Manager.class.php:305 -#: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 +#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:712 #: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 @@ -59,8 +59,8 @@ msgstr "Chwilio" #: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 #: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 -#: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: libraries/sql_query_form.lib.php:377 libraries/sql_query_form.lib.php:447 +#: libraries/sql_query_form.lib.php:512 libraries/tbl_properties.inc.php:780 #: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 #: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 #: server_privileges.php:663 server_privileges.php:1620 @@ -70,7 +70,7 @@ msgstr "Chwilio" #: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 #: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 -#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_operations.php:726 tbl_select.php:323 tbl_structure.php:559 #: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 #: view_create.php:181 view_operations.php:99 msgid "Go" @@ -251,47 +251,64 @@ msgstr "Gorchymyn" msgid "and then" msgstr "ac yna" -#: db_operations.php:390 +#: db_operations.php:379 +#, fuzzy +#| msgid "Rename database to" +msgid "Remove database" +msgstr "Ailenwch y gronfa ddata i" + +#: db_operations.php:391 +#, php-format +msgid "Database %s has been dropped." +msgstr "Cafodd cronfa ddata %s ei gollwng." + +#: db_operations.php:396 +#, fuzzy +#| msgid "Copy database to" +msgid "Drop the database (DROP)" +msgstr "Copïwch y gronfa ddata i" + +#: db_operations.php:424 msgid "Copy database to" msgstr "Copïwch y gronfa ddata i" -#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:431 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Strwythur yn unig" -#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:432 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Strwythur a data" -#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:433 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Data yn unig" -#: db_operations.php:407 +#: db_operations.php:441 msgid "CREATE DATABASE before copying" msgstr "Defnyddiwch CREATE DATABASE cyn copïo" -#: db_operations.php:410 libraries/export/sql.php:51 +#: db_operations.php:444 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 #: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "Ychwanegwch %s" -#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: db_operations.php:448 libraries/export/sql.php:77 tbl_operations.php:296 #: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Ychwanegwch werth AUTO_INCREMENT" -#: db_operations.php:418 tbl_operations.php:542 +#: db_operations.php:452 tbl_operations.php:542 msgid "Add constraints" msgstr "Ychwanegwch cyfyngiadau" -#: db_operations.php:431 +#: db_operations.php:465 msgid "Switch to copied database" msgstr "Newidiwch i'r gronfa ddata a gopïwyd" -#: db_operations.php:451 libraries/Index.class.php:447 +#: db_operations.php:485 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 #: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 #: server_collations.php:53 server_collations.php:65 server_databases.php:108 @@ -300,7 +317,7 @@ msgstr "Newidiwch i'r gronfa ddata a gopïwyd" msgid "Collation" msgstr "Coladiad" -#: db_operations.php:464 pdf_schema.php:32 +#: db_operations.php:498 pdf_schema.php:32 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -312,7 +329,7 @@ msgstr "" "Mae'r nodweddion ar gyfer gweithio gyda thablau sydd wedi cysylltu wedi'u " "hanalluogi. Pwyswch %syma%s i ddarganfod pam." -#: db_operations.php:497 +#: db_operations.php:531 msgid "Edit PDF Pages" msgstr "Golygwch Dudalennau PDF" @@ -367,7 +384,7 @@ msgstr[0] "%s tabl" msgstr[1] "%s tabl" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -455,7 +472,7 @@ msgstr "Cyflwynwch yr Ymholiad" #: db_search.php:50 libraries/auth/config.auth.lib.php:83 #: libraries/auth/config.auth.lib.php:102 -#: libraries/auth/cookie.auth.lib.php:640 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:182 msgid "Access denied" msgstr "Mynediad wedi'i wrthod" @@ -498,7 +515,7 @@ msgid "Browse" msgstr "Porwch" #: db_search.php:254 libraries/display_tbl.lib.php:1163 -#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:440 #: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 @@ -539,14 +556,14 @@ msgstr "Tu fewn colofn:" #: db_structure.php:79 db_structure.php:80 db_structure.php:92 #: db_structure.php:93 db_structure.php:105 db_structure.php:106 -#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:311 +#: libraries/sql_query_form.lib.php:314 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Mewnosod" #: db_structure.php:81 db_structure.php:94 db_structure.php:107 #: libraries/common.lib.php:2832 libraries/common.lib.php:2839 -#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 +#: libraries/db_links.inc.php:48 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 @@ -559,8 +576,7 @@ msgstr "Strwythur" #: db_structure.php:96 db_structure.php:108 db_structure.php:109 #: db_structure.php:530 db_structure.php:531 db_tracking.php:86 #: libraries/Index.class.php:482 libraries/common.lib.php:1663 -#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 #: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 #: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" @@ -569,21 +585,21 @@ msgstr "Gollwng" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 +#: libraries/mult_submits.inc.php:38 msgid "Empty" msgstr "Gwagu" -#: db_structure.php:301 libraries/tbl_links.inc.php:98 +#: db_structure.php:301 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "Cafodd tabl %s ei wagu" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "View %s has been dropped" msgstr "Cafodd golwg %s ei ollwng" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "Cafodd tabl %s ei ollwng" @@ -674,7 +690,7 @@ msgstr "Trwsio tabl" msgid "Analyze table" msgstr "Dadansoddi tabl" -#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:56 #: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 #: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 #: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 @@ -1346,7 +1362,7 @@ msgid "Databases" msgstr "Cronfeydd Data" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30 #: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 #: tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -1450,7 +1466,7 @@ msgid "Cannot connect: invalid settings." msgstr "Methu â chysylltu: gosodiadau annilys" #: libraries/auth/config.auth.lib.php:91 -#: libraries/auth/cookie.auth.lib.php:205 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:206 libraries/auth/http.auth.lib.php:64 #: test/theme.php:151 #, php-format msgid "Welcome to %s" @@ -1477,45 +1493,45 @@ msgstr "" "ffurfwedd a scirhau eu bod nhw'n cyfateb i'r wybodaeth a roddwyd gan " "weinyddwr y gweinydd MySQL." -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:231 msgid "Log in" msgstr "Mewngofnodwch" -#: libraries/auth/cookie.auth.lib.php:232 -#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:233 +#: libraries/auth/cookie.auth.lib.php:235 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:94 msgid "phpMyAdmin documentation" msgstr "Dogfennaeth phpMyAdmin" -#: libraries/auth/cookie.auth.lib.php:244 #: libraries/auth/cookie.auth.lib.php:245 +#: libraries/auth/cookie.auth.lib.php:246 msgid "You can enter hostname/IP address and port separated by space." msgstr "" "Gallwch gyflwyno enw'r gwesteiwr / cyfeiriad IP a'r porth gan eu gwahanu gan " "fwlch." -#: libraries/auth/cookie.auth.lib.php:244 +#: libraries/auth/cookie.auth.lib.php:245 msgid "Server:" msgstr "Gweinydd:" -#: libraries/auth/cookie.auth.lib.php:249 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Username:" msgstr "Enw defnyddiwr:" -#: libraries/auth/cookie.auth.lib.php:253 +#: libraries/auth/cookie.auth.lib.php:254 msgid "Password:" msgstr "Cyfrinair:" -#: libraries/auth/cookie.auth.lib.php:260 +#: libraries/auth/cookie.auth.lib.php:261 msgid "Server Choice" msgstr "Dewis Gweinydd" -#: libraries/auth/cookie.auth.lib.php:306 libraries/header.inc.php:58 +#: libraries/auth/cookie.auth.lib.php:307 libraries/header.inc.php:58 msgid "Cookies must be enabled past this point." msgstr "Mae'n rhaid bod cwcis wedi'u galluogi heibio'r pwynt hwn." -#: libraries/auth/cookie.auth.lib.php:638 +#: libraries/auth/cookie.auth.lib.php:639 #: libraries/auth/signon.auth.lib.php:180 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" @@ -1523,14 +1539,14 @@ msgstr "" "Nid oes hawl mewngofnodi heb gyfrinair. Dyma'r gosodiad yn eich ffurfwedd " "(gweler AllowNoPassword)" -#: libraries/auth/cookie.auth.lib.php:642 +#: libraries/auth/cookie.auth.lib.php:643 #: libraries/auth/signon.auth.lib.php:184 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "Dim gweithredoedd o fewn %s eiliad; mewngofnodwch eto." -#: libraries/auth/cookie.auth.lib.php:652 -#: libraries/auth/cookie.auth.lib.php:654 +#: libraries/auth/cookie.auth.lib.php:653 +#: libraries/auth/cookie.auth.lib.php:655 #: libraries/auth/signon.auth.lib.php:190 msgid "Cannot log in to the MySQL server" msgstr "Methu â mewngofnodi i'r gweinydd MySQL" @@ -1642,7 +1658,7 @@ msgstr "en" #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 #: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 -#: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 +#: libraries/sql_query_form.lib.php:421 libraries/sql_query_form.lib.php:424 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" msgstr "Dogfennaeth" @@ -1785,19 +1801,19 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/common.lib.php:2833 libraries/common.lib.php:2840 -#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 +#: libraries/db_links.inc.php:53 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 #: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 -#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:86 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "Gweithrediadau" -#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:265 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1813,36 +1829,31 @@ msgstr "Digwyddiadau" msgid "Name" msgstr "Enw" -#: libraries/db_links.inc.php:43 -#, php-format -msgid "Database %s has been dropped." -msgstr "Cafodd cronfa ddata %s ei gollwng." - -#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 -#: libraries/db_links.inc.php:57 +#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43 +#: libraries/db_links.inc.php:44 msgid "Database seems to be empty!" msgstr "Mae'r gronfa ddata yn ymddangos yn wag!" -#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/db_links.inc.php:66 libraries/relation.lib.php:137 #: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "Tracio" -#: libraries/db_links.inc.php:84 +#: libraries/db_links.inc.php:71 msgid "Query" msgstr "Ymholiad" -#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 +#: libraries/db_links.inc.php:76 libraries/relation.lib.php:133 msgid "Designer" msgstr "Dyluniwr" -#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:87 #: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Mewnforio" -#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:65 #: server_privileges.php:110 server_privileges.php:1718 #: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" @@ -1999,7 +2010,7 @@ msgid "remember template" msgstr "cofio templed" #: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 -#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 +#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:509 msgid "Character set of the file:" msgstr "Set nodau'r ffeil:" @@ -2054,7 +2065,7 @@ msgstr "" msgid "File to import" msgstr "Ffeil i'w mewnforio" -#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:497 +#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:484 msgid "Location of the text file" msgstr "Lleoliad y ffeil destun" @@ -2062,14 +2073,14 @@ msgstr "Lleoliad y ffeil destun" msgid "File uploads are not allowed on this server." msgstr "Dyw lanlwytho ffeiliau ddim yn cael ei ganiatáu ar y gweinydd hwn." -#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 +#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:493 #: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "" "Does dim modd cyrraedd y cyfeiriadur a osodoch chi ar gyfer gwaith a " "lanwlythwyd" -#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 +#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:496 #: tbl_change.php:925 msgid "web server upload directory" msgstr "cyfeiriadur lanlwytho y gweinydd gwe" @@ -3398,7 +3409,7 @@ msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" -#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:403 msgid "Bookmarked SQL query" msgstr "" @@ -3463,7 +3474,7 @@ msgstr "Statws y meistr" msgid "Slave status" msgstr "Statws y caeth" -#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:428 +#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:415 #: server_status.php:736 server_variables.php:51 msgid "Variable" msgstr "Newidyn" @@ -3590,49 +3601,49 @@ msgstr "Gwahaniaeth" msgid "Target database" msgstr "Cronfa ddata targed" -#: libraries/sql_query_form.lib.php:219 +#: libraries/sql_query_form.lib.php:217 #, php-format msgid "Run SQL query/queries on server %s" msgstr "" -#: libraries/sql_query_form.lib.php:236 libraries/sql_query_form.lib.php:261 +#: libraries/sql_query_form.lib.php:234 libraries/sql_query_form.lib.php:258 #, php-format msgid "Run SQL query/queries on database %s" msgstr "" -#: libraries/sql_query_form.lib.php:307 +#: libraries/sql_query_form.lib.php:294 msgid "Columns" msgstr "Colofnau" -#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 +#: libraries/sql_query_form.lib.php:329 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "Clustnodwch yr ymholiad SQL hwn" -#: libraries/sql_query_form.lib.php:349 sql.php:669 +#: libraries/sql_query_form.lib.php:336 sql.php:669 msgid "Let every user access this bookmark" msgstr "" -#: libraries/sql_query_form.lib.php:355 +#: libraries/sql_query_form.lib.php:342 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/sql_query_form.lib.php:371 +#: libraries/sql_query_form.lib.php:358 msgid "Do not overwrite this query from outside the window" msgstr "" -#: libraries/sql_query_form.lib.php:378 +#: libraries/sql_query_form.lib.php:365 msgid "Delimiter" msgstr "Cyfyngydd" -#: libraries/sql_query_form.lib.php:386 +#: libraries/sql_query_form.lib.php:373 msgid " Show this query here again " msgstr " Dangoswch yr ymholiad hwn yma eto" -#: libraries/sql_query_form.lib.php:445 +#: libraries/sql_query_form.lib.php:432 msgid "Submit" msgstr "Gyrru" -#: libraries/sql_query_form.lib.php:449 +#: libraries/sql_query_form.lib.php:436 msgid "View only" msgstr "Dangos yn unig" @@ -3690,12 +3701,11 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" -#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 -#: libraries/tbl_links.inc.php:139 +#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107 msgid "Table seems to be empty!" msgstr "" -#: libraries/tbl_links.inc.php:147 +#: libraries/tbl_links.inc.php:115 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" @@ -7526,40 +7536,52 @@ msgstr "" msgid "Flush the table (FLUSH)" msgstr "" -#: tbl_operations.php:648 +#: tbl_operations.php:642 +msgid "Table removal" +msgstr "" + +#: tbl_operations.php:657 +msgid "Empty the table (TRUNCATE)" +msgstr "" + +#: tbl_operations.php:675 +msgid "Drop the table (DROP)" +msgstr "" + +#: tbl_operations.php:696 msgid "Partition maintenance" msgstr "Cynhaliaeth ymraniadau" -#: tbl_operations.php:656 +#: tbl_operations.php:704 #, php-format msgid "Partition %s" msgstr "Ymraniad %s" -#: tbl_operations.php:659 +#: tbl_operations.php:707 msgid "Analyze" msgstr "Dadansoddi" -#: tbl_operations.php:660 +#: tbl_operations.php:708 msgid "Check" msgstr "Gwirio" -#: tbl_operations.php:661 +#: tbl_operations.php:709 msgid "Optimize" msgstr "Optimeiddio" -#: tbl_operations.php:662 +#: tbl_operations.php:710 msgid "Rebuild" msgstr "Ailadeiladu" -#: tbl_operations.php:663 +#: tbl_operations.php:711 msgid "Repair" msgstr "Trwsio" -#: tbl_operations.php:675 +#: tbl_operations.php:723 msgid "Remove partitioning" msgstr "Tynnu'r ymraniadu" -#: tbl_operations.php:701 +#: tbl_operations.php:749 msgid "Check referential integrity:" msgstr "" diff --git a/po/da.po b/po/da.po index 5ba85ae20..2383a4c4c 100644 --- a/po/da.po +++ b/po/da.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-26 17:18+0200\n" +"POT-Creation-Date: 2010-07-27 10:12+0200\n" "PO-Revision-Date: 2010-07-21 14:55+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: danish \n" @@ -39,16 +39,16 @@ msgstr "" #: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 #: db_structure.php:89 db_structure.php:91 db_structure.php:102 #: db_structure.php:104 libraries/common.lib.php:2834 -#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Søg" #: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 -#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_operations.php:468 db_operations.php:492 db_search.php:344 #: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 #: libraries/Theme_Manager.class.php:305 -#: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 +#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:712 #: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 @@ -56,8 +56,8 @@ msgstr "Søg" #: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 #: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 -#: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: libraries/sql_query_form.lib.php:377 libraries/sql_query_form.lib.php:447 +#: libraries/sql_query_form.lib.php:512 libraries/tbl_properties.inc.php:780 #: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 #: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 #: server_privileges.php:663 server_privileges.php:1620 @@ -67,7 +67,7 @@ msgstr "Søg" #: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 #: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 -#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_operations.php:726 tbl_select.php:323 tbl_structure.php:559 #: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 #: view_create.php:181 view_operations.php:99 msgid "Go" @@ -250,47 +250,64 @@ msgstr "Kommando" msgid "and then" msgstr "og derefter" -#: db_operations.php:390 +#: db_operations.php:379 +#, fuzzy +#| msgid "Rename database to" +msgid "Remove database" +msgstr "Omdøb database til" + +#: db_operations.php:391 +#, php-format +msgid "Database %s has been dropped." +msgstr "Database %s er slettet." + +#: db_operations.php:396 +#, fuzzy +#| msgid "Copy database to" +msgid "Drop the database (DROP)" +msgstr "Kopiér database til" + +#: db_operations.php:424 msgid "Copy database to" msgstr "Kopiér database til" -#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:431 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Kun strukturen" -#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:432 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Struktur og data" -#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:433 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Kun data" -#: db_operations.php:407 +#: db_operations.php:441 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE før kopiering" -#: db_operations.php:410 libraries/export/sql.php:51 +#: db_operations.php:444 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 #: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "Tilføj %s" -#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: db_operations.php:448 libraries/export/sql.php:77 tbl_operations.php:296 #: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Tilføj AUTO_INCREMENT værdi" -#: db_operations.php:418 tbl_operations.php:542 +#: db_operations.php:452 tbl_operations.php:542 msgid "Add constraints" msgstr "Tilføj begrænsninger" -#: db_operations.php:431 +#: db_operations.php:465 msgid "Switch to copied database" msgstr "Skift til den kopierede database" -#: db_operations.php:451 libraries/Index.class.php:447 +#: db_operations.php:485 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 #: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 #: server_collations.php:53 server_collations.php:65 server_databases.php:108 @@ -299,7 +316,7 @@ msgstr "Skift til den kopierede database" msgid "Collation" msgstr "Kollation (Collation)" -#: db_operations.php:464 pdf_schema.php:32 +#: db_operations.php:498 pdf_schema.php:32 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -311,7 +328,7 @@ msgstr "" "De ekstra features for at arbejde med linkede tabeller er deaktiveret. For " "at se hvorfor, klik %sher%s." -#: db_operations.php:497 +#: db_operations.php:531 msgid "Edit PDF Pages" msgstr "Redigér PDF-sider" @@ -367,7 +384,7 @@ msgstr[0] "%s tabel(ler)" msgstr[1] "%s tabel(ler)" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -459,7 +476,7 @@ msgstr "Send forespørgsel" #: db_search.php:50 libraries/auth/config.auth.lib.php:83 #: libraries/auth/config.auth.lib.php:102 -#: libraries/auth/cookie.auth.lib.php:640 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:182 msgid "Access denied" msgstr "Adgang Nægtet" @@ -502,7 +519,7 @@ msgid "Browse" msgstr "Vis" #: db_search.php:254 libraries/display_tbl.lib.php:1163 -#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:440 #: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 @@ -545,14 +562,14 @@ msgstr "Indeni tabel(ler):" #: db_structure.php:79 db_structure.php:80 db_structure.php:92 #: db_structure.php:93 db_structure.php:105 db_structure.php:106 -#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:311 +#: libraries/sql_query_form.lib.php:314 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Indsæt" #: db_structure.php:81 db_structure.php:94 db_structure.php:107 #: libraries/common.lib.php:2832 libraries/common.lib.php:2839 -#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 +#: libraries/db_links.inc.php:48 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 @@ -565,8 +582,7 @@ msgstr "Struktur" #: db_structure.php:96 db_structure.php:108 db_structure.php:109 #: db_structure.php:530 db_structure.php:531 db_tracking.php:86 #: libraries/Index.class.php:482 libraries/common.lib.php:1663 -#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 #: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 #: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" @@ -575,21 +591,21 @@ msgstr "Slet" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 +#: libraries/mult_submits.inc.php:38 msgid "Empty" msgstr "Tøm" -#: db_structure.php:301 libraries/tbl_links.inc.php:98 +#: db_structure.php:301 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "Tabel %s er tømt" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "View %s has been dropped" msgstr "Visning %s er blevet droppet" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "Tabel %s er slettet" @@ -679,7 +695,7 @@ msgstr "Reparer tabel" msgid "Analyze table" msgstr "Analysér tabel" -#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:56 #: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 #: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 #: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 @@ -1406,7 +1422,7 @@ msgid "Databases" msgstr "Databaser" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30 #: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 #: tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -1513,7 +1529,7 @@ msgid "Cannot connect: invalid settings." msgstr "Kan ikke forbinde: ugyldige indstillinger." #: libraries/auth/config.auth.lib.php:91 -#: libraries/auth/cookie.auth.lib.php:205 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:206 libraries/auth/http.auth.lib.php:64 #: test/theme.php:151 #, php-format msgid "Welcome to %s" @@ -1540,57 +1556,57 @@ msgstr "" "sikre dig at de svarer til den information du har fået af administratoren af " "MySQL-serveren." -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:231 msgid "Log in" msgstr "Login" -#: libraries/auth/cookie.auth.lib.php:232 -#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:233 +#: libraries/auth/cookie.auth.lib.php:235 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:94 msgid "phpMyAdmin documentation" msgstr "phpMyAdmin dokumentation" -#: libraries/auth/cookie.auth.lib.php:244 #: libraries/auth/cookie.auth.lib.php:245 +#: libraries/auth/cookie.auth.lib.php:246 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:244 +#: libraries/auth/cookie.auth.lib.php:245 msgid "Server:" msgstr "Server" -#: libraries/auth/cookie.auth.lib.php:249 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Username:" msgstr "Brugernavn:" -#: libraries/auth/cookie.auth.lib.php:253 +#: libraries/auth/cookie.auth.lib.php:254 msgid "Password:" msgstr "Kodeord:" -#: libraries/auth/cookie.auth.lib.php:260 +#: libraries/auth/cookie.auth.lib.php:261 msgid "Server Choice" msgstr "Server valg" -#: libraries/auth/cookie.auth.lib.php:306 libraries/header.inc.php:58 +#: libraries/auth/cookie.auth.lib.php:307 libraries/header.inc.php:58 msgid "Cookies must be enabled past this point." msgstr "Herefter skal cookies være slået til." -#: libraries/auth/cookie.auth.lib.php:638 +#: libraries/auth/cookie.auth.lib.php:639 #: libraries/auth/signon.auth.lib.php:180 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" -#: libraries/auth/cookie.auth.lib.php:642 +#: libraries/auth/cookie.auth.lib.php:643 #: libraries/auth/signon.auth.lib.php:184 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" "Ingen aktivitet i de seneste %s sekunder eller mere, log venligst ind igen" -#: libraries/auth/cookie.auth.lib.php:652 -#: libraries/auth/cookie.auth.lib.php:654 +#: libraries/auth/cookie.auth.lib.php:653 +#: libraries/auth/cookie.auth.lib.php:655 #: libraries/auth/signon.auth.lib.php:190 msgid "Cannot log in to the MySQL server" msgstr "Kan ikke logge ind på MySQL-serveren" @@ -1711,7 +1727,7 @@ msgstr "en" #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 #: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 -#: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 +#: libraries/sql_query_form.lib.php:421 libraries/sql_query_form.lib.php:424 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" msgstr "Dokumentation" @@ -1854,19 +1870,19 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "Funktionaliteten af %s er påvirket af en kendt fejl, se %s" #: libraries/common.lib.php:2833 libraries/common.lib.php:2840 -#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 +#: libraries/db_links.inc.php:53 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 #: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 -#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:86 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "Operationer" -#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:265 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1882,36 +1898,31 @@ msgstr "" msgid "Name" msgstr "Navn" -#: libraries/db_links.inc.php:43 -#, php-format -msgid "Database %s has been dropped." -msgstr "Database %s er slettet." - -#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 -#: libraries/db_links.inc.php:57 +#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43 +#: libraries/db_links.inc.php:44 msgid "Database seems to be empty!" msgstr "Database ser ud til at være tom!" -#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/db_links.inc.php:66 libraries/relation.lib.php:137 #: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:84 +#: libraries/db_links.inc.php:71 msgid "Query" msgstr "Foresp. via eks." -#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 +#: libraries/db_links.inc.php:76 libraries/relation.lib.php:133 msgid "Designer" msgstr "Designer" -#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:87 #: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Import" -#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:65 #: server_privileges.php:110 server_privileges.php:1718 #: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" @@ -2079,7 +2090,7 @@ msgid "remember template" msgstr "husk skabelonen" #: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 -#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 +#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:509 msgid "Character set of the file:" msgstr "Tegnsæt for filen:" @@ -2132,7 +2143,7 @@ msgstr "" msgid "File to import" msgstr "Fil til import" -#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:497 +#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:484 msgid "Location of the text file" msgstr "Tekstfilens placering" @@ -2140,12 +2151,12 @@ msgstr "Tekstfilens placering" msgid "File uploads are not allowed on this server." msgstr "Fil-uploads er ikke tilladte på denne server." -#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 +#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:493 #: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "Mappen du har sat til upload-arbejde kan ikke findes" -#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 +#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:496 #: tbl_change.php:925 msgid "web server upload directory" msgstr "webserver upload-mappe" @@ -3512,7 +3523,7 @@ msgstr "" "Se venligst Dokumentationen for oplysninger om hvordan du opdaterer din " "Column_comments (kolonne-kommentarer) tabel" -#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:403 msgid "Bookmarked SQL query" msgstr "SQL-forespørgsel med bogmærke" @@ -3577,7 +3588,7 @@ msgstr "" msgid "Slave status" msgstr "" -#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:428 +#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:415 #: server_status.php:736 server_variables.php:51 msgid "Variable" msgstr "Variabel" @@ -3704,51 +3715,51 @@ msgstr "" msgid "Target database" msgstr "" -#: libraries/sql_query_form.lib.php:219 +#: libraries/sql_query_form.lib.php:217 #, 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:236 libraries/sql_query_form.lib.php:261 +#: libraries/sql_query_form.lib.php:234 libraries/sql_query_form.lib.php:258 #, 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:307 +#: libraries/sql_query_form.lib.php:294 #, fuzzy #| msgid "Column names" msgid "Columns" msgstr "Kolonnenavne" -#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 +#: libraries/sql_query_form.lib.php:329 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "Lav bogmærke til denne SQL-forespørgsel" -#: libraries/sql_query_form.lib.php:349 sql.php:669 +#: libraries/sql_query_form.lib.php:336 sql.php:669 msgid "Let every user access this bookmark" msgstr "Lad alle brugere bruge dette bogmærke" -#: libraries/sql_query_form.lib.php:355 +#: libraries/sql_query_form.lib.php:342 msgid "Replace existing bookmark of same name" msgstr "Erstat eksisterende bogmærke af samme navn" -#: libraries/sql_query_form.lib.php:371 +#: libraries/sql_query_form.lib.php:358 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:378 +#: libraries/sql_query_form.lib.php:365 msgid "Delimiter" msgstr "Adskiller" -#: libraries/sql_query_form.lib.php:386 +#: libraries/sql_query_form.lib.php:373 msgid " Show this query here again " msgstr " Vis forespørgslen her igen " -#: libraries/sql_query_form.lib.php:445 +#: libraries/sql_query_form.lib.php:432 msgid "Submit" msgstr "Send" -#: libraries/sql_query_form.lib.php:449 +#: libraries/sql_query_form.lib.php:436 msgid "View only" msgstr "Kun oversigt" @@ -3821,12 +3832,11 @@ msgstr "" "SQL-validatoren kunne ikke initialiseres. Check venligst at du har de " "nødvendige PHP-udvidelser installeret som beskrevet i %sdokumentationen%s." -#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 -#: libraries/tbl_links.inc.php:139 +#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107 msgid "Table seems to be empty!" msgstr "Tabel ser ud til at være tom" -#: libraries/tbl_links.inc.php:147 +#: libraries/tbl_links.inc.php:115 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" @@ -7953,40 +7963,54 @@ msgstr "Tabel %s er blevet flushet" msgid "Flush the table (FLUSH)" msgstr "Flush tabellen (\"FLUSH\")" -#: tbl_operations.php:648 +#: tbl_operations.php:642 +#, fuzzy +#| msgid "Table name" +msgid "Table removal" +msgstr "Tabelnavn" + +#: tbl_operations.php:657 +msgid "Empty the table (TRUNCATE)" +msgstr "" + +#: tbl_operations.php:675 +msgid "Drop the table (DROP)" +msgstr "" + +#: tbl_operations.php:696 msgid "Partition maintenance" msgstr "" -#: tbl_operations.php:656 +#: tbl_operations.php:704 #, php-format msgid "Partition %s" msgstr "" -#: tbl_operations.php:659 +#: tbl_operations.php:707 msgid "Analyze" msgstr "" -#: tbl_operations.php:660 +#: tbl_operations.php:708 msgid "Check" msgstr "" -#: tbl_operations.php:661 +#: tbl_operations.php:709 msgid "Optimize" msgstr "" -#: tbl_operations.php:662 +#: tbl_operations.php:710 msgid "Rebuild" msgstr "" -#: tbl_operations.php:663 +#: tbl_operations.php:711 msgid "Repair" msgstr "" -#: tbl_operations.php:675 +#: tbl_operations.php:723 msgid "Remove partitioning" msgstr "" -#: tbl_operations.php:701 +#: tbl_operations.php:749 msgid "Check referential integrity:" msgstr "Check reference-integriteten" diff --git a/po/de.po b/po/de.po index 3cd742234..ed62f040e 100644 --- a/po/de.po +++ b/po/de.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-26 17:18+0200\n" +"POT-Creation-Date: 2010-07-27 10:12+0200\n" "PO-Revision-Date: 2010-07-21 14:45+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: german \n" @@ -39,16 +39,16 @@ msgstr "" #: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 #: db_structure.php:89 db_structure.php:91 db_structure.php:102 #: db_structure.php:104 libraries/common.lib.php:2834 -#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Suche" #: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 -#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_operations.php:468 db_operations.php:492 db_search.php:344 #: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 #: libraries/Theme_Manager.class.php:305 -#: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 +#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:712 #: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 @@ -56,8 +56,8 @@ msgstr "Suche" #: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 #: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 -#: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: libraries/sql_query_form.lib.php:377 libraries/sql_query_form.lib.php:447 +#: libraries/sql_query_form.lib.php:512 libraries/tbl_properties.inc.php:780 #: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 #: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 #: server_privileges.php:663 server_privileges.php:1620 @@ -67,7 +67,7 @@ msgstr "Suche" #: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 #: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 -#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_operations.php:726 tbl_select.php:323 tbl_structure.php:559 #: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 #: view_create.php:181 view_operations.php:99 msgid "Go" @@ -250,47 +250,64 @@ msgstr "Befehl" msgid "and then" msgstr "und dann" -#: db_operations.php:390 +#: db_operations.php:379 +#, fuzzy +#| msgid "Rename database to" +msgid "Remove database" +msgstr "Datenbank umbenennen in" + +#: db_operations.php:391 +#, php-format +msgid "Database %s has been dropped." +msgstr "Datenbank %s wurde gelöscht." + +#: db_operations.php:396 +#, fuzzy +#| msgid "Go to database" +msgid "Drop the database (DROP)" +msgstr "Gehe zur Datenbank" + +#: db_operations.php:424 msgid "Copy database to" msgstr "Datenbank kopieren nach" -#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:431 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Nur Struktur" -#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:432 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Struktur und Daten" -#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:433 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Nur Daten" -#: db_operations.php:407 +#: db_operations.php:441 msgid "CREATE DATABASE before copying" msgstr "Vor dem Kopieren CREATE DATABASE ausführen." -#: db_operations.php:410 libraries/export/sql.php:51 +#: db_operations.php:444 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 #: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "Füge %s hinzu" -#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: db_operations.php:448 libraries/export/sql.php:77 tbl_operations.php:296 #: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT-Wert hinzufügen" -#: db_operations.php:418 tbl_operations.php:542 +#: db_operations.php:452 tbl_operations.php:542 msgid "Add constraints" msgstr "Constraints hinzufügen" -#: db_operations.php:431 +#: db_operations.php:465 msgid "Switch to copied database" msgstr "Zu kopierter Datenbank wechseln" -#: db_operations.php:451 libraries/Index.class.php:447 +#: db_operations.php:485 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 #: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 #: server_collations.php:53 server_collations.php:65 server_databases.php:108 @@ -299,7 +316,7 @@ msgstr "Zu kopierter Datenbank wechseln" msgid "Collation" msgstr "Kollation" -#: db_operations.php:464 pdf_schema.php:32 +#: db_operations.php:498 pdf_schema.php:32 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -311,7 +328,7 @@ msgstr "" "Die zusätzlichen Funktionen für verknüpfte Tabellen wurden automatisch " "deaktiviert. Klicken Sie %shier%s um herauszufinden warum." -#: db_operations.php:497 +#: db_operations.php:531 msgid "Edit PDF Pages" msgstr "PDF-Seiten bearbeiten" @@ -366,7 +383,7 @@ msgstr[0] "%s Tabelle" msgstr[1] "%s Tabellen" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -456,7 +473,7 @@ msgstr "SQL-Befehl ausführen" #: db_search.php:50 libraries/auth/config.auth.lib.php:83 #: libraries/auth/config.auth.lib.php:102 -#: libraries/auth/cookie.auth.lib.php:640 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:182 msgid "Access denied" msgstr "Zugriff verweigert." @@ -499,7 +516,7 @@ msgid "Browse" msgstr "Anzeigen" #: db_search.php:254 libraries/display_tbl.lib.php:1163 -#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:440 #: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 @@ -542,14 +559,14 @@ msgstr "Im Feld:" #: db_structure.php:79 db_structure.php:80 db_structure.php:92 #: db_structure.php:93 db_structure.php:105 db_structure.php:106 -#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:311 +#: libraries/sql_query_form.lib.php:314 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Einfügen" #: db_structure.php:81 db_structure.php:94 db_structure.php:107 #: libraries/common.lib.php:2832 libraries/common.lib.php:2839 -#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 +#: libraries/db_links.inc.php:48 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 @@ -562,8 +579,7 @@ msgstr "Struktur" #: db_structure.php:96 db_structure.php:108 db_structure.php:109 #: db_structure.php:530 db_structure.php:531 db_tracking.php:86 #: libraries/Index.class.php:482 libraries/common.lib.php:1663 -#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 #: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 #: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" @@ -572,21 +588,21 @@ msgstr "Löschen" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 +#: libraries/mult_submits.inc.php:38 msgid "Empty" msgstr "Leeren" -#: db_structure.php:301 libraries/tbl_links.inc.php:98 +#: db_structure.php:301 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "Die Tabelle %s wurde geleert." -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "View %s has been dropped" msgstr "Die Ansicht %s wurde gelöscht" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "Die Tabelle %s wurde gelöscht." @@ -678,7 +694,7 @@ msgstr "Repariere Tabelle" msgid "Analyze table" msgstr "Analysiere Tabelle" -#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:56 #: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 #: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 #: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 @@ -1360,7 +1376,7 @@ msgid "Databases" msgstr "Datenbanken" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30 #: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 #: tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -1466,7 +1482,7 @@ msgstr "" "hergestellt werden." #: libraries/auth/config.auth.lib.php:91 -#: libraries/auth/cookie.auth.lib.php:205 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:206 libraries/auth/http.auth.lib.php:64 #: test/theme.php:151 #, php-format msgid "Welcome to %s" @@ -1495,52 +1511,52 @@ msgstr "" "vergewissern, dass diese den Informationen, welche Sie vom Administrator " "erhalten haben, entsprechen." -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:231 msgid "Log in" msgstr "Anmeldung" -#: libraries/auth/cookie.auth.lib.php:232 -#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:233 +#: libraries/auth/cookie.auth.lib.php:235 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:94 msgid "phpMyAdmin documentation" msgstr "phpMyAdmin-Dokumentation" -#: libraries/auth/cookie.auth.lib.php:244 #: libraries/auth/cookie.auth.lib.php:245 +#: libraries/auth/cookie.auth.lib.php:246 msgid "You can enter hostname/IP address and port separated by space." msgstr "" "Sie können einen Rechnernamen oder eine IP Adresse und einen Port durch " "Leerzeichen getrennt eingeben." -#: libraries/auth/cookie.auth.lib.php:244 +#: libraries/auth/cookie.auth.lib.php:245 msgid "Server:" msgstr "Server" -#: libraries/auth/cookie.auth.lib.php:249 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Username:" msgstr "Benutzername:" -#: libraries/auth/cookie.auth.lib.php:253 +#: libraries/auth/cookie.auth.lib.php:254 msgid "Password:" msgstr "Passwort:" -#: libraries/auth/cookie.auth.lib.php:260 +#: libraries/auth/cookie.auth.lib.php:261 msgid "Server Choice" msgstr "Server Auswählen" -#: libraries/auth/cookie.auth.lib.php:306 libraries/header.inc.php:58 +#: libraries/auth/cookie.auth.lib.php:307 libraries/header.inc.php:58 msgid "Cookies must be enabled past this point." msgstr "Ab diesem Punkt müssen Cookies aktiviert sein." -#: libraries/auth/cookie.auth.lib.php:638 +#: libraries/auth/cookie.auth.lib.php:639 #: libraries/auth/signon.auth.lib.php:180 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" "Login ohne Passwort ist verboten (siehe AllowNoPassword in der Konfiguration)" -#: libraries/auth/cookie.auth.lib.php:642 +#: libraries/auth/cookie.auth.lib.php:643 #: libraries/auth/signon.auth.lib.php:184 #, php-format msgid "No activity within %s seconds; please log in again" @@ -1548,8 +1564,8 @@ msgstr "" "Da Sie seit mindestens %s Sekunden inaktiv waren, wurden Sie automatisch " "abgemeldet. Bitte melden Sie sich erneut an." -#: libraries/auth/cookie.auth.lib.php:652 -#: libraries/auth/cookie.auth.lib.php:654 +#: libraries/auth/cookie.auth.lib.php:653 +#: libraries/auth/cookie.auth.lib.php:655 #: libraries/auth/signon.auth.lib.php:190 msgid "Cannot log in to the MySQL server" msgstr "Die Anmeldung am MySQL-Server ist fehlgeschlagen." @@ -1670,7 +1686,7 @@ msgstr "en" #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 #: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 -#: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 +#: libraries/sql_query_form.lib.php:421 libraries/sql_query_form.lib.php:424 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" msgstr "Dokumentation" @@ -1815,19 +1831,19 @@ msgstr "" "%s" #: libraries/common.lib.php:2833 libraries/common.lib.php:2840 -#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 +#: libraries/db_links.inc.php:53 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 #: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 -#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:86 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "Operationen" -#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:265 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1843,36 +1859,31 @@ msgstr "Ereignisse" msgid "Name" msgstr "Name" -#: libraries/db_links.inc.php:43 -#, php-format -msgid "Database %s has been dropped." -msgstr "Datenbank %s wurde gelöscht." - -#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 -#: libraries/db_links.inc.php:57 +#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43 +#: libraries/db_links.inc.php:44 msgid "Database seems to be empty!" msgstr "Die Datenbank scheint leer zu sein!" -#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/db_links.inc.php:66 libraries/relation.lib.php:137 #: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "Tracking" -#: libraries/db_links.inc.php:84 +#: libraries/db_links.inc.php:71 msgid "Query" msgstr "Abfrageeditor" -#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 +#: libraries/db_links.inc.php:76 libraries/relation.lib.php:133 msgid "Designer" msgstr "Designer" -#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:87 #: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importieren" -#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:65 #: server_privileges.php:110 server_privileges.php:1718 #: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" @@ -2043,7 +2054,7 @@ msgid "remember template" msgstr "Konvention merken" #: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 -#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 +#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:509 msgid "Character set of the file:" msgstr "Zeichencodierung der Datei:" @@ -2102,7 +2113,7 @@ msgstr "" msgid "File to import" msgstr "Zu importierende Datei" -#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:497 +#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:484 msgid "Location of the text file" msgstr "Datei" @@ -2110,12 +2121,12 @@ msgstr "Datei" msgid "File uploads are not allowed on this server." msgstr "Das hochladen von Dateien ist auf diesem Server nicht erlaubt." -#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 +#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:493 #: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "Auf das festgelegte Upload-Verzeichnis kann nicht zugegriffen werden." -#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 +#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:496 #: tbl_change.php:925 msgid "web server upload directory" msgstr "Upload-Verzeichnis auf dem Webserver" @@ -3522,7 +3533,7 @@ msgstr "" "Bitte lesen Sie in der Dokumentation nach, wie Sie die Struktur Ihrer " "Spaltenkommentartabelle aktualisieren können" -#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:403 msgid "Bookmarked SQL query" msgstr "Gespeicherte SQL-Abfrage" @@ -3596,7 +3607,7 @@ msgstr "Master-Status" msgid "Slave status" msgstr "Slave-Status" -#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:428 +#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:415 #: server_status.php:736 server_variables.php:51 msgid "Variable" msgstr "Variable" @@ -3728,51 +3739,51 @@ msgstr "Unterschied" msgid "Target database" msgstr "Ziel-Datenbank" -#: libraries/sql_query_form.lib.php:219 +#: libraries/sql_query_form.lib.php:217 #, 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:236 libraries/sql_query_form.lib.php:261 +#: libraries/sql_query_form.lib.php:234 libraries/sql_query_form.lib.php:258 #, 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:307 +#: libraries/sql_query_form.lib.php:294 #, fuzzy #| msgid "Column names" msgid "Columns" msgstr "Spaltennamen" -#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 +#: libraries/sql_query_form.lib.php:329 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "SQL-Abfrage speichern" -#: libraries/sql_query_form.lib.php:349 sql.php:669 +#: libraries/sql_query_form.lib.php:336 sql.php:669 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:355 +#: libraries/sql_query_form.lib.php:342 msgid "Replace existing bookmark of same name" msgstr "Überschreibe gleichnamiges Bookmark" -#: libraries/sql_query_form.lib.php:371 +#: libraries/sql_query_form.lib.php:358 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:378 +#: libraries/sql_query_form.lib.php:365 msgid "Delimiter" msgstr "Begrenzer" -#: libraries/sql_query_form.lib.php:386 +#: libraries/sql_query_form.lib.php:373 msgid " Show this query here again " msgstr "Diese Abfrage hier wieder anzeigen" -#: libraries/sql_query_form.lib.php:445 +#: libraries/sql_query_form.lib.php:432 msgid "Submit" msgstr "Abschicken" -#: libraries/sql_query_form.lib.php:449 +#: libraries/sql_query_form.lib.php:436 msgid "View only" msgstr "Nur zeigen" @@ -3847,12 +3858,11 @@ msgstr "" "überprüfen Sie, ob Sie die in der %sDokumentation%s beschriebenen php-" "Erweiterungen installiert haben." -#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 -#: libraries/tbl_links.inc.php:139 +#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107 msgid "Table seems to be empty!" msgstr "Die Tabelle scheint leer zu sein!" -#: libraries/tbl_links.inc.php:147 +#: libraries/tbl_links.inc.php:115 #, php-format msgid "Tracking of %s.%s is activated." msgstr "Tracking der Tabelle %s.%s ist aktiviert." @@ -8274,40 +8284,54 @@ msgstr "" msgid "Flush the table (FLUSH)" msgstr "Leeren des Tabellencaches (\"FLUSH\")" -#: tbl_operations.php:648 +#: tbl_operations.php:642 +#, fuzzy +#| msgid "Table name" +msgid "Table removal" +msgstr "Tabellenname" + +#: tbl_operations.php:657 +msgid "Empty the table (TRUNCATE)" +msgstr "" + +#: tbl_operations.php:675 +msgid "Drop the table (DROP)" +msgstr "" + +#: tbl_operations.php:696 msgid "Partition maintenance" msgstr "Partitions-Hilfsmittel" -#: tbl_operations.php:656 +#: tbl_operations.php:704 #, php-format msgid "Partition %s" msgstr "Partition %s" -#: tbl_operations.php:659 +#: tbl_operations.php:707 msgid "Analyze" msgstr "Analysieren" -#: tbl_operations.php:660 +#: tbl_operations.php:708 msgid "Check" msgstr "Überprüfen" -#: tbl_operations.php:661 +#: tbl_operations.php:709 msgid "Optimize" msgstr "Optimieren" -#: tbl_operations.php:662 +#: tbl_operations.php:710 msgid "Rebuild" msgstr "Neuaufbauen" -#: tbl_operations.php:663 +#: tbl_operations.php:711 msgid "Repair" msgstr "Reparieren" -#: tbl_operations.php:675 +#: tbl_operations.php:723 msgid "Remove partitioning" msgstr "Entferne die Partitionierung" -#: tbl_operations.php:701 +#: tbl_operations.php:749 msgid "Check referential integrity:" msgstr "Prüfe referentielle Integrität:" diff --git a/po/el.po b/po/el.po index 7dfa00393..893f011a3 100644 --- a/po/el.po +++ b/po/el.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-26 17:18+0200\n" +"POT-Creation-Date: 2010-07-27 10:12+0200\n" "PO-Revision-Date: 2010-03-30 23:16+0200\n" "Last-Translator: Michal \n" "Language-Team: greek \n" @@ -39,16 +39,16 @@ msgstr "" #: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 #: db_structure.php:89 db_structure.php:91 db_structure.php:102 #: db_structure.php:104 libraries/common.lib.php:2834 -#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Αναζήτηση" #: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 -#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_operations.php:468 db_operations.php:492 db_search.php:344 #: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 #: libraries/Theme_Manager.class.php:305 -#: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 +#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:712 #: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 @@ -56,8 +56,8 @@ msgstr "Αναζήτηση" #: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 #: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 -#: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: libraries/sql_query_form.lib.php:377 libraries/sql_query_form.lib.php:447 +#: libraries/sql_query_form.lib.php:512 libraries/tbl_properties.inc.php:780 #: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 #: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 #: server_privileges.php:663 server_privileges.php:1620 @@ -67,7 +67,7 @@ msgstr "Αναζήτηση" #: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 #: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 -#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_operations.php:726 tbl_select.php:323 tbl_structure.php:559 #: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 #: view_create.php:181 view_operations.php:99 msgid "Go" @@ -250,47 +250,64 @@ msgstr "Εντολή" msgid "and then" msgstr "και μετά" -#: db_operations.php:390 +#: db_operations.php:379 +#, fuzzy +#| msgid "Rename database to" +msgid "Remove database" +msgstr "Μετονομασία βάσης δεδομένων σε" + +#: db_operations.php:391 +#, php-format +msgid "Database %s has been dropped." +msgstr "Η βάση δεδομένων %s διεγράφη." + +#: db_operations.php:396 +#, fuzzy +#| msgid "Go to database" +msgid "Drop the database (DROP)" +msgstr "Μετάβαση στη βάση δεδομένων" + +#: db_operations.php:424 msgid "Copy database to" msgstr "Αντιγραφή βάσης δεδομένων σε" -#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:431 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Μόνο η δομή" -#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:432 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Δομή και δεδομένα" -#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:433 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Μόνο τα δεδομένα" -#: db_operations.php:407 +#: db_operations.php:441 msgid "CREATE DATABASE before copying" msgstr "ΔΗΜΙΟΥΡΓΙΑ ΒΑΣΗΣ ΔΕΔΟΜΕΝΩΝ πριν την αντιγραφή" -#: db_operations.php:410 libraries/export/sql.php:51 +#: db_operations.php:444 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 #: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "Προσθήκη %s" -#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: db_operations.php:448 libraries/export/sql.php:77 tbl_operations.php:296 #: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Προσθήκη τιμής AUTO_INCREMENT" -#: db_operations.php:418 tbl_operations.php:542 +#: db_operations.php:452 tbl_operations.php:542 msgid "Add constraints" msgstr "Προσθήκη περιορισμών" -#: db_operations.php:431 +#: db_operations.php:465 msgid "Switch to copied database" msgstr "Αλλαγή στο αντίγραφο της βάσης δεδομένων" -#: db_operations.php:451 libraries/Index.class.php:447 +#: db_operations.php:485 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 #: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 #: server_collations.php:53 server_collations.php:65 server_databases.php:108 @@ -299,7 +316,7 @@ msgstr "Αλλαγή στο αντίγραφο της βάσης δεδομέν msgid "Collation" msgstr "Σύνθεση" -#: db_operations.php:464 pdf_schema.php:32 +#: db_operations.php:498 pdf_schema.php:32 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -311,7 +328,7 @@ msgstr "" "Οι επιπρόσθετες λειτουργίες για εργασία με συσχετισμένους πίνακες έχουν " "απενεργοποιηθεί. Για να μάθετε γιατί, πατήστε %sεδώ%s." -#: db_operations.php:497 +#: db_operations.php:531 msgid "Edit PDF Pages" msgstr "Αλλαγή σελίδων PDF" @@ -367,7 +384,7 @@ msgstr[0] "%s Πίνακας/Πίνακες" msgstr[1] "%s Πίνακας/Πίνακες" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -459,7 +476,7 @@ msgstr "Υποβολή ερωτήματος" #: db_search.php:50 libraries/auth/config.auth.lib.php:83 #: libraries/auth/config.auth.lib.php:102 -#: libraries/auth/cookie.auth.lib.php:640 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:182 msgid "Access denied" msgstr "Άρνηση Πρόσβασης" @@ -502,7 +519,7 @@ msgid "Browse" msgstr "Περιήγηση" #: db_search.php:254 libraries/display_tbl.lib.php:1163 -#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:440 #: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 @@ -545,14 +562,14 @@ msgstr "Εσωτερικό πεδίο:" #: db_structure.php:79 db_structure.php:80 db_structure.php:92 #: db_structure.php:93 db_structure.php:105 db_structure.php:106 -#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:311 +#: libraries/sql_query_form.lib.php:314 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Προσθήκη" #: db_structure.php:81 db_structure.php:94 db_structure.php:107 #: libraries/common.lib.php:2832 libraries/common.lib.php:2839 -#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 +#: libraries/db_links.inc.php:48 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 @@ -565,8 +582,7 @@ msgstr "Δομή" #: db_structure.php:96 db_structure.php:108 db_structure.php:109 #: db_structure.php:530 db_structure.php:531 db_tracking.php:86 #: libraries/Index.class.php:482 libraries/common.lib.php:1663 -#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 #: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 #: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" @@ -575,21 +591,21 @@ msgstr "Διαγραφή" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 +#: libraries/mult_submits.inc.php:38 msgid "Empty" msgstr "Άδειασμα" -#: db_structure.php:301 libraries/tbl_links.inc.php:98 +#: db_structure.php:301 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "Ο Πίνακας %s άδειασε" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "View %s has been dropped" msgstr "Η προβολή %s διαγράφτηκε" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "Ο Πίνακας %s διεγράφη" @@ -682,7 +698,7 @@ msgstr "Επιδιόρθωση πίνακα" msgid "Analyze table" msgstr "Ανάλυση Πίνακα" -#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:56 #: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 #: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 #: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 @@ -1391,7 +1407,7 @@ msgid "Databases" msgstr "Βάσεις Δεδομένων" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30 #: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 #: tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -1496,7 +1512,7 @@ msgid "Cannot connect: invalid settings." msgstr "Αδύνατη η σύνδεση: άκυρες ρυθμίσεις." #: libraries/auth/config.auth.lib.php:91 -#: libraries/auth/cookie.auth.lib.php:205 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:206 libraries/auth/http.auth.lib.php:64 #: test/theme.php:151 #, php-format msgid "Welcome to %s" @@ -1524,45 +1540,45 @@ msgstr "" "και να βεβαιωθείτε ότι αντιστοιχούν σε αυτά που σας έχει δώσει ο " "διαχειρηστής του διακομιστή MySQL." -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:231 msgid "Log in" msgstr "Σύνδεση" -#: libraries/auth/cookie.auth.lib.php:232 -#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:233 +#: libraries/auth/cookie.auth.lib.php:235 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:94 msgid "phpMyAdmin documentation" msgstr "Τεκμηρίωση phpMyAdmin" -#: libraries/auth/cookie.auth.lib.php:244 #: libraries/auth/cookie.auth.lib.php:245 +#: libraries/auth/cookie.auth.lib.php:246 msgid "You can enter hostname/IP address and port separated by space." msgstr "" "Μπορείτε να εισάγετε όνομα διακομιστή/διεύθυνση ΙΡ και θύρα χωρισμένα με " "κενό." -#: libraries/auth/cookie.auth.lib.php:244 +#: libraries/auth/cookie.auth.lib.php:245 msgid "Server:" msgstr "Διακομιστής" -#: libraries/auth/cookie.auth.lib.php:249 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Username:" msgstr "Όνομα χρήστη:" -#: libraries/auth/cookie.auth.lib.php:253 +#: libraries/auth/cookie.auth.lib.php:254 msgid "Password:" msgstr "Κωδικός πρόσβασης:" -#: libraries/auth/cookie.auth.lib.php:260 +#: libraries/auth/cookie.auth.lib.php:261 msgid "Server Choice" msgstr "Επιλογή Διακομιστή" -#: libraries/auth/cookie.auth.lib.php:306 libraries/header.inc.php:58 +#: libraries/auth/cookie.auth.lib.php:307 libraries/header.inc.php:58 msgid "Cookies must be enabled past this point." msgstr "Από αυτό το σημείο πρέπει να έχετε ενεργοποιημένα cookies." -#: libraries/auth/cookie.auth.lib.php:638 +#: libraries/auth/cookie.auth.lib.php:639 #: libraries/auth/signon.auth.lib.php:180 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" @@ -1570,15 +1586,15 @@ msgstr "" "Η σύνδεση χωρίς κωδικό πρόσβασης απαγορεύεται από τις ρυθμίσεις (δείτε τη " "μεταβλητή AllowNoPassword)" -#: libraries/auth/cookie.auth.lib.php:642 +#: libraries/auth/cookie.auth.lib.php:643 #: libraries/auth/signon.auth.lib.php:184 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" "Καμιά δραστηριότητα εδώ και %s δευτερόλεπτα τουλάχιστον. Ξανασυνδεθείτε" -#: libraries/auth/cookie.auth.lib.php:652 -#: libraries/auth/cookie.auth.lib.php:654 +#: libraries/auth/cookie.auth.lib.php:653 +#: libraries/auth/cookie.auth.lib.php:655 #: libraries/auth/signon.auth.lib.php:190 msgid "Cannot log in to the MySQL server" msgstr "Δεν ήταν δυνατή η σύνδεση με τον διακομιστή MySQL" @@ -1700,7 +1716,7 @@ msgstr "en" #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 #: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 -#: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 +#: libraries/sql_query_form.lib.php:421 libraries/sql_query_form.lib.php:424 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" msgstr "Τεκμηρίωση" @@ -1844,19 +1860,19 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "Η λειτουργία %s έχει επηρρεαστεί από ένα γνωστό σφάλμα. Δείτε %s" #: libraries/common.lib.php:2833 libraries/common.lib.php:2840 -#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 +#: libraries/db_links.inc.php:53 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 #: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "Κώδικας SQL" -#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 -#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:86 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "Λειτουργίες" -#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:265 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1872,36 +1888,31 @@ msgstr "Συμβάντα" msgid "Name" msgstr "Όνομα" -#: libraries/db_links.inc.php:43 -#, php-format -msgid "Database %s has been dropped." -msgstr "Η βάση δεδομένων %s διεγράφη." - -#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 -#: libraries/db_links.inc.php:57 +#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43 +#: libraries/db_links.inc.php:44 msgid "Database seems to be empty!" msgstr "Η βάση δεδομένων φαίνεται να είναι άδεια!" -#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/db_links.inc.php:66 libraries/relation.lib.php:137 #: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "Παρακολούθηση" -#: libraries/db_links.inc.php:84 +#: libraries/db_links.inc.php:71 msgid "Query" msgstr "Επερώτημα κατά παράδειγμα" -#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 +#: libraries/db_links.inc.php:76 libraries/relation.lib.php:133 msgid "Designer" msgstr "Σχεδιαστής" -#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:87 #: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Εισαγωγή" -#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:65 #: server_privileges.php:110 server_privileges.php:1718 #: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" @@ -2068,7 +2079,7 @@ msgid "remember template" msgstr "αποθήκευση μορφής" #: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 -#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 +#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:509 msgid "Character set of the file:" msgstr "Σύνολο χαρακτήρων του αρχείου:" @@ -2126,7 +2137,7 @@ msgstr "" msgid "File to import" msgstr "Αρχείο για εισαγωγή" -#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:497 +#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:484 msgid "Location of the text file" msgstr "Τοποθεσία του αρχείου κειμένου" @@ -2134,13 +2145,13 @@ msgstr "Τοποθεσία του αρχείου κειμένου" msgid "File uploads are not allowed on this server." msgstr "Οι αποστολές αρχείων δεν επιτρέπονται σε αυτό τον διακομιστή." -#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 +#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:493 #: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "" "Ο υποκατάλογος που ορίσατε για την αποθήκευση αρχείων δεν μπόρεσε να βρεθεί" -#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 +#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:496 #: tbl_change.php:925 msgid "web server upload directory" msgstr "Υποκατάλογος αποθήκευσης αρχείων διακομιστή" @@ -3560,7 +3571,7 @@ msgstr "" "Παρακαλώ διαβάστε στην τεκμηρίωση για το πως μπορείτε να ανανεώσετε τον " "πίνακα Column_comments" -#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:403 msgid "Bookmarked SQL query" msgstr "Αποθηκευμένο ερώτημα SQL" @@ -3627,7 +3638,7 @@ msgstr "Κατάσταση πρωτεύοντος" msgid "Slave status" msgstr "Κατάσταση δευτερεύοντος" -#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:428 +#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:415 #: server_status.php:736 server_variables.php:51 msgid "Variable" msgstr "Μεταβλητή" @@ -3758,51 +3769,51 @@ msgstr "Διαφορά" msgid "Target database" msgstr "Βάση δεδομένων προορισμού" -#: libraries/sql_query_form.lib.php:219 +#: libraries/sql_query_form.lib.php:217 #, php-format msgid "Run SQL query/queries on server %s" msgstr "Εκτέλεση ερωτήματος/ερωτημάτων SQL στο διακομιστή «%s»" -#: libraries/sql_query_form.lib.php:236 libraries/sql_query_form.lib.php:261 +#: libraries/sql_query_form.lib.php:234 libraries/sql_query_form.lib.php:258 #, php-format msgid "Run SQL query/queries on database %s" msgstr "Εκτέλεση εντολής/εντολών SQL στη βάση δεδομένων %s" -#: libraries/sql_query_form.lib.php:307 +#: libraries/sql_query_form.lib.php:294 #, fuzzy #| msgid "Column names" msgid "Columns" msgstr "Ονόματα στηλών" -#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 +#: libraries/sql_query_form.lib.php:329 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "Αποθήκευση αυτού του ερωτήματος SQL" -#: libraries/sql_query_form.lib.php:349 sql.php:669 +#: libraries/sql_query_form.lib.php:336 sql.php:669 msgid "Let every user access this bookmark" msgstr "Δικαίωμα πρόσβασης στο σελίδοδείκτη σε κάθε χρήστη" -#: libraries/sql_query_form.lib.php:355 +#: libraries/sql_query_form.lib.php:342 msgid "Replace existing bookmark of same name" msgstr "Αντικατάσταση υπάρχοντος σελιδοδείκτη με το ίδιο όνομα" -#: libraries/sql_query_form.lib.php:371 +#: libraries/sql_query_form.lib.php:358 msgid "Do not overwrite this query from outside the window" msgstr "Να μην αλλάξει το ερώτημα από εξωτερική πηγή" -#: libraries/sql_query_form.lib.php:378 +#: libraries/sql_query_form.lib.php:365 msgid "Delimiter" msgstr "Διαχωριστικό" -#: libraries/sql_query_form.lib.php:386 +#: libraries/sql_query_form.lib.php:373 msgid " Show this query here again " msgstr " Επανεμφάνιση αυτού του ερώτηματος εδώ" -#: libraries/sql_query_form.lib.php:445 +#: libraries/sql_query_form.lib.php:432 msgid "Submit" msgstr "Αποστολή" -#: libraries/sql_query_form.lib.php:449 +#: libraries/sql_query_form.lib.php:436 msgid "View only" msgstr "Μόνο ανάγνωση" @@ -3875,12 +3886,11 @@ msgstr "" "εγκαταστήσει της απαραίτητες επεκτάσεις της php όπως περιγράφεται στην " "%sτεκμηρίωση%s." -#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 -#: libraries/tbl_links.inc.php:139 +#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107 msgid "Table seems to be empty!" msgstr "Ο πίνακας φαίνεται να είναι άδειος!" -#: libraries/tbl_links.inc.php:147 +#: libraries/tbl_links.inc.php:115 #, php-format msgid "Tracking of %s.%s is activated." msgstr "Παρακολούθηση του %s.%s ενεργοποιήθηκε." @@ -8349,40 +8359,54 @@ msgstr "Ο Πίνακας %s εκκαθαρίστηκε («FLUSH»)" msgid "Flush the table (FLUSH)" msgstr "Εκκαθάριση («FLUSH») πίνακα" -#: tbl_operations.php:648 +#: tbl_operations.php:642 +#, fuzzy +#| msgid "Table name" +msgid "Table removal" +msgstr "Ονομασία πίνακας" + +#: tbl_operations.php:657 +msgid "Empty the table (TRUNCATE)" +msgstr "" + +#: tbl_operations.php:675 +msgid "Drop the table (DROP)" +msgstr "" + +#: tbl_operations.php:696 msgid "Partition maintenance" msgstr "Συντήρηση κατάτμησης" -#: tbl_operations.php:656 +#: tbl_operations.php:704 #, php-format msgid "Partition %s" msgstr "Κατάτμηση %s" -#: tbl_operations.php:659 +#: tbl_operations.php:707 msgid "Analyze" msgstr "Ανάλυση" -#: tbl_operations.php:660 +#: tbl_operations.php:708 msgid "Check" msgstr "Έλεγχος" -#: tbl_operations.php:661 +#: tbl_operations.php:709 msgid "Optimize" msgstr "Βελτιστοποίηση" -#: tbl_operations.php:662 +#: tbl_operations.php:710 msgid "Rebuild" msgstr "Επανακατασκευή" -#: tbl_operations.php:663 +#: tbl_operations.php:711 msgid "Repair" msgstr "Επισκευή" -#: tbl_operations.php:675 +#: tbl_operations.php:723 msgid "Remove partitioning" msgstr "Απομάκρυνση κατάτμησης" -#: tbl_operations.php:701 +#: tbl_operations.php:749 msgid "Check referential integrity:" msgstr "Έλεγχος ακεραιότητας συσχετίσεων:" diff --git a/po/en_GB.po b/po/en_GB.po index a62bfc52e..342cb2058 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-26 17:18+0200\n" +"POT-Creation-Date: 2010-07-27 10:12+0200\n" "PO-Revision-Date: 2010-07-26 16:54+0200\n" "Last-Translator: Robert Readman \n" "Language-Team: english-gb \n" @@ -39,16 +39,16 @@ msgstr "" #: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 #: db_structure.php:89 db_structure.php:91 db_structure.php:102 #: db_structure.php:104 libraries/common.lib.php:2834 -#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Search" #: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 -#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_operations.php:468 db_operations.php:492 db_search.php:344 #: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 #: libraries/Theme_Manager.class.php:305 -#: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 +#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:712 #: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 @@ -56,8 +56,8 @@ msgstr "Search" #: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 #: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 -#: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: libraries/sql_query_form.lib.php:377 libraries/sql_query_form.lib.php:447 +#: libraries/sql_query_form.lib.php:512 libraries/tbl_properties.inc.php:780 #: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 #: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 #: server_privileges.php:663 server_privileges.php:1620 @@ -67,7 +67,7 @@ msgstr "Search" #: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 #: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 -#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_operations.php:726 tbl_select.php:323 tbl_structure.php:559 #: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 #: view_create.php:181 view_operations.php:99 msgid "Go" @@ -248,47 +248,64 @@ msgstr "Command" msgid "and then" msgstr "and then" -#: db_operations.php:390 +#: db_operations.php:379 +#, fuzzy +#| msgid "Rename database to" +msgid "Remove database" +msgstr "Rename database to" + +#: db_operations.php:391 +#, php-format +msgid "Database %s has been dropped." +msgstr "Database %s has been dropped." + +#: db_operations.php:396 +#, fuzzy +#| msgid "Go to database" +msgid "Drop the database (DROP)" +msgstr "Go to database" + +#: db_operations.php:424 msgid "Copy database to" msgstr "Copy database to" -#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:431 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Structure only" -#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:432 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Structure and data" -#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:433 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Data only" -#: db_operations.php:407 +#: db_operations.php:441 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE before copying" -#: db_operations.php:410 libraries/export/sql.php:51 +#: db_operations.php:444 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 #: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "Add %s" -#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: db_operations.php:448 libraries/export/sql.php:77 tbl_operations.php:296 #: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Add AUTO_INCREMENT value" -#: db_operations.php:418 tbl_operations.php:542 +#: db_operations.php:452 tbl_operations.php:542 msgid "Add constraints" msgstr "Add constraints" -#: db_operations.php:431 +#: db_operations.php:465 msgid "Switch to copied database" msgstr "Switch to copied database" -#: db_operations.php:451 libraries/Index.class.php:447 +#: db_operations.php:485 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 #: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 #: server_collations.php:53 server_collations.php:65 server_databases.php:108 @@ -297,7 +314,7 @@ msgstr "Switch to copied database" msgid "Collation" msgstr "Collation" -#: db_operations.php:464 pdf_schema.php:32 +#: db_operations.php:498 pdf_schema.php:32 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -309,7 +326,7 @@ msgstr "" "The additional features for working with linked tables have been " "deactivated. To find out why click %shere%s." -#: db_operations.php:497 +#: db_operations.php:531 msgid "Edit PDF Pages" msgstr "Edit PDF Pages" @@ -364,7 +381,7 @@ msgstr[0] "%s table" msgstr[1] "%s tables" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -452,7 +469,7 @@ msgstr "Submit Query" #: db_search.php:50 libraries/auth/config.auth.lib.php:83 #: libraries/auth/config.auth.lib.php:102 -#: libraries/auth/cookie.auth.lib.php:640 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:182 msgid "Access denied" msgstr "Access denied" @@ -494,7 +511,7 @@ msgid "Browse" msgstr "Browse" #: db_search.php:254 libraries/display_tbl.lib.php:1163 -#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:440 #: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 @@ -534,14 +551,14 @@ msgstr "Inside column:" #: db_structure.php:79 db_structure.php:80 db_structure.php:92 #: db_structure.php:93 db_structure.php:105 db_structure.php:106 -#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:311 +#: libraries/sql_query_form.lib.php:314 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Insert" #: db_structure.php:81 db_structure.php:94 db_structure.php:107 #: libraries/common.lib.php:2832 libraries/common.lib.php:2839 -#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 +#: libraries/db_links.inc.php:48 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 @@ -554,8 +571,7 @@ msgstr "Structure" #: db_structure.php:96 db_structure.php:108 db_structure.php:109 #: db_structure.php:530 db_structure.php:531 db_tracking.php:86 #: libraries/Index.class.php:482 libraries/common.lib.php:1663 -#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 #: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 #: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" @@ -564,21 +580,21 @@ msgstr "Drop" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 +#: libraries/mult_submits.inc.php:38 msgid "Empty" msgstr "Empty" -#: db_structure.php:301 libraries/tbl_links.inc.php:98 +#: db_structure.php:301 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "Table %s has been emptied" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "View %s has been dropped" msgstr "View %s has been dropped" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "Table %s has been dropped" @@ -670,7 +686,7 @@ msgstr "Repair table" msgid "Analyze table" msgstr "Analyse table" -#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:56 #: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 #: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 #: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 @@ -1345,7 +1361,7 @@ msgid "Databases" msgstr "Databases" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30 #: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 #: tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -1449,7 +1465,7 @@ msgid "Cannot connect: invalid settings." msgstr "Cannot connect: invalid settings." #: libraries/auth/config.auth.lib.php:91 -#: libraries/auth/cookie.auth.lib.php:205 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:206 libraries/auth/http.auth.lib.php:64 #: test/theme.php:151 #, php-format msgid "Welcome to %s" @@ -1476,57 +1492,57 @@ msgstr "" "configuration and make sure that they correspond to the information given by " "the administrator of the MySQL server." -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:231 msgid "Log in" msgstr "Log in" -#: libraries/auth/cookie.auth.lib.php:232 -#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:233 +#: libraries/auth/cookie.auth.lib.php:235 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:94 msgid "phpMyAdmin documentation" msgstr "phpMyAdmin documentation" -#: libraries/auth/cookie.auth.lib.php:244 #: libraries/auth/cookie.auth.lib.php:245 +#: libraries/auth/cookie.auth.lib.php:246 msgid "You can enter hostname/IP address and port separated by space." msgstr "You can enter hostname/IP address and port separated by space." -#: libraries/auth/cookie.auth.lib.php:244 +#: libraries/auth/cookie.auth.lib.php:245 msgid "Server:" msgstr "Server:" -#: libraries/auth/cookie.auth.lib.php:249 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Username:" msgstr "Username:" -#: libraries/auth/cookie.auth.lib.php:253 +#: libraries/auth/cookie.auth.lib.php:254 msgid "Password:" msgstr "Password:" -#: libraries/auth/cookie.auth.lib.php:260 +#: libraries/auth/cookie.auth.lib.php:261 msgid "Server Choice" msgstr "Server Choice" -#: libraries/auth/cookie.auth.lib.php:306 libraries/header.inc.php:58 +#: libraries/auth/cookie.auth.lib.php:307 libraries/header.inc.php:58 msgid "Cookies must be enabled past this point." msgstr "Cookies must be enabled past this point." -#: libraries/auth/cookie.auth.lib.php:638 +#: libraries/auth/cookie.auth.lib.php:639 #: libraries/auth/signon.auth.lib.php:180 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" "Login without a password is forbidden by configuration (see AllowNoPassword)" -#: libraries/auth/cookie.auth.lib.php:642 +#: libraries/auth/cookie.auth.lib.php:643 #: libraries/auth/signon.auth.lib.php:184 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "No activity within %s seconds; please log in again" -#: libraries/auth/cookie.auth.lib.php:652 -#: libraries/auth/cookie.auth.lib.php:654 +#: libraries/auth/cookie.auth.lib.php:653 +#: libraries/auth/cookie.auth.lib.php:655 #: libraries/auth/signon.auth.lib.php:190 msgid "Cannot log in to the MySQL server" msgstr "Cannot log in to the MySQL server" @@ -1645,7 +1661,7 @@ msgstr "en" #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 #: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 -#: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 +#: libraries/sql_query_form.lib.php:421 libraries/sql_query_form.lib.php:424 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" msgstr "Documentation" @@ -1786,19 +1802,19 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "The %s functionality is affected by a known bug, see %s" #: libraries/common.lib.php:2833 libraries/common.lib.php:2840 -#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 +#: libraries/db_links.inc.php:53 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 #: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 -#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:86 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "Operations" -#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:265 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "The %s extension is missing. Please check your PHP configuration." @@ -1814,36 +1830,31 @@ msgstr "Events" msgid "Name" msgstr "Name" -#: libraries/db_links.inc.php:43 -#, php-format -msgid "Database %s has been dropped." -msgstr "Database %s has been dropped." - -#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 -#: libraries/db_links.inc.php:57 +#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43 +#: libraries/db_links.inc.php:44 msgid "Database seems to be empty!" msgstr "Database seems to be empty!" -#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/db_links.inc.php:66 libraries/relation.lib.php:137 #: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "Tracking" -#: libraries/db_links.inc.php:84 +#: libraries/db_links.inc.php:71 msgid "Query" msgstr "Query" -#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 +#: libraries/db_links.inc.php:76 libraries/relation.lib.php:133 msgid "Designer" msgstr "Designer" -#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:87 #: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Import" -#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:65 #: server_privileges.php:110 server_privileges.php:1718 #: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" @@ -2005,7 +2016,7 @@ msgid "remember template" msgstr "remember template" #: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 -#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 +#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:509 msgid "Character set of the file:" msgstr "Character set of the file:" @@ -2063,7 +2074,7 @@ msgstr "" msgid "File to import" msgstr "File to import" -#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:497 +#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:484 msgid "Location of the text file" msgstr "Location of the text file" @@ -2071,12 +2082,12 @@ msgstr "Location of the text file" msgid "File uploads are not allowed on this server." msgstr "File uploads are not allowed on this server." -#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 +#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:493 #: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "The directory you set for upload work cannot be reached" -#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 +#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:496 #: tbl_change.php:925 msgid "web server upload directory" msgstr "web server upload directory" @@ -3462,7 +3473,7 @@ msgid "" msgstr "" "Please see the documentation on how to update your column_comments table" -#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:403 msgid "Bookmarked SQL query" msgstr "Bookmarked SQL query" @@ -3532,7 +3543,7 @@ msgstr "Master status" msgid "Slave status" msgstr "Slave status" -#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:428 +#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:415 #: server_status.php:736 server_variables.php:51 msgid "Variable" msgstr "Variable" @@ -3663,49 +3674,49 @@ msgstr "Difference" msgid "Target database" msgstr "Target database" -#: libraries/sql_query_form.lib.php:219 +#: libraries/sql_query_form.lib.php:217 #, php-format msgid "Run SQL query/queries on server %s" msgstr "Run SQL query/queries on server %s" -#: libraries/sql_query_form.lib.php:236 libraries/sql_query_form.lib.php:261 +#: libraries/sql_query_form.lib.php:234 libraries/sql_query_form.lib.php:258 #, php-format msgid "Run SQL query/queries on database %s" msgstr "Run SQL query/queries on database %s" -#: libraries/sql_query_form.lib.php:307 +#: libraries/sql_query_form.lib.php:294 msgid "Columns" msgstr "Columns" -#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 +#: libraries/sql_query_form.lib.php:329 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "Bookmark this SQL query" -#: libraries/sql_query_form.lib.php:349 sql.php:669 +#: libraries/sql_query_form.lib.php:336 sql.php:669 msgid "Let every user access this bookmark" msgstr "Let every user access this bookmark" -#: libraries/sql_query_form.lib.php:355 +#: libraries/sql_query_form.lib.php:342 msgid "Replace existing bookmark of same name" msgstr "Replace existing bookmark of same name" -#: libraries/sql_query_form.lib.php:371 +#: libraries/sql_query_form.lib.php:358 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:378 +#: libraries/sql_query_form.lib.php:365 msgid "Delimiter" msgstr "Delimiter" -#: libraries/sql_query_form.lib.php:386 +#: libraries/sql_query_form.lib.php:373 msgid " Show this query here again " msgstr " Show this query here again " -#: libraries/sql_query_form.lib.php:445 +#: libraries/sql_query_form.lib.php:432 msgid "Submit" msgstr "Submit" -#: libraries/sql_query_form.lib.php:449 +#: libraries/sql_query_form.lib.php:436 msgid "View only" msgstr "View only" @@ -3776,12 +3787,11 @@ 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/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 -#: libraries/tbl_links.inc.php:139 +#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107 msgid "Table seems to be empty!" msgstr "Table seems to be empty!" -#: libraries/tbl_links.inc.php:147 +#: libraries/tbl_links.inc.php:115 #, php-format msgid "Tracking of %s.%s is activated." msgstr "Tracking of %s.%s is activated." @@ -8018,40 +8028,54 @@ msgstr "Table %s has been flushed" msgid "Flush the table (FLUSH)" msgstr "Flush the table (FLUSH)" -#: tbl_operations.php:648 +#: tbl_operations.php:642 +#, fuzzy +#| msgid "Table name" +msgid "Table removal" +msgstr "Table name" + +#: tbl_operations.php:657 +msgid "Empty the table (TRUNCATE)" +msgstr "" + +#: tbl_operations.php:675 +msgid "Drop the table (DROP)" +msgstr "" + +#: tbl_operations.php:696 msgid "Partition maintenance" msgstr "Partition maintenance" -#: tbl_operations.php:656 +#: tbl_operations.php:704 #, php-format msgid "Partition %s" msgstr "Partition %s" -#: tbl_operations.php:659 +#: tbl_operations.php:707 msgid "Analyze" msgstr "Analyse" -#: tbl_operations.php:660 +#: tbl_operations.php:708 msgid "Check" msgstr "Check" -#: tbl_operations.php:661 +#: tbl_operations.php:709 msgid "Optimize" msgstr "Optimise" -#: tbl_operations.php:662 +#: tbl_operations.php:710 msgid "Rebuild" msgstr "Rebuild" -#: tbl_operations.php:663 +#: tbl_operations.php:711 msgid "Repair" msgstr "Repair" -#: tbl_operations.php:675 +#: tbl_operations.php:723 msgid "Remove partitioning" msgstr "Remove partitioning" -#: tbl_operations.php:701 +#: tbl_operations.php:749 msgid "Check referential integrity:" msgstr "Check referential integrity:" diff --git a/po/es.po b/po/es.po index 093d82a92..ba4d3e739 100644 --- a/po/es.po +++ b/po/es.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-26 17:18+0200\n" +"POT-Creation-Date: 2010-07-27 10:12+0200\n" "PO-Revision-Date: 2010-03-12 11:23+0200\n" "Last-Translator: Michal \n" "Language-Team: spanish \n" @@ -39,16 +39,16 @@ msgstr "" #: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 #: db_structure.php:89 db_structure.php:91 db_structure.php:102 #: db_structure.php:104 libraries/common.lib.php:2834 -#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Buscar" #: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 -#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_operations.php:468 db_operations.php:492 db_search.php:344 #: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 #: libraries/Theme_Manager.class.php:305 -#: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 +#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:712 #: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 @@ -56,8 +56,8 @@ msgstr "Buscar" #: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 #: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 -#: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: libraries/sql_query_form.lib.php:377 libraries/sql_query_form.lib.php:447 +#: libraries/sql_query_form.lib.php:512 libraries/tbl_properties.inc.php:780 #: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 #: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 #: server_privileges.php:663 server_privileges.php:1620 @@ -67,7 +67,7 @@ msgstr "Buscar" #: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 #: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 -#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_operations.php:726 tbl_select.php:323 tbl_structure.php:559 #: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 #: view_create.php:181 view_operations.php:99 msgid "Go" @@ -250,47 +250,63 @@ msgstr "Comando" msgid "and then" msgstr "y luego" -#: db_operations.php:390 +#: db_operations.php:379 +#, fuzzy +#| msgid "Rename database to" +msgid "Remove database" +msgstr "Cambiar el nombre de la base de datos a" + +#: db_operations.php:391 +#, php-format +msgid "Database %s has been dropped." +msgstr "La base de datos %s ha sido eliminada." + +#: db_operations.php:396 +#, fuzzy +msgid "Drop the database (DROP)" +msgstr "No hay bases de datos" + +#: db_operations.php:424 msgid "Copy database to" msgstr "Copiar la base de datos a" -#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:431 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Únicamente la estructura " -#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:432 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Estructura y datos" -#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:433 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Solamente datos" -#: db_operations.php:407 +#: db_operations.php:441 msgid "CREATE DATABASE before copying" msgstr "CREAR BASE DE DATOS antes de copiar" -#: db_operations.php:410 libraries/export/sql.php:51 +#: db_operations.php:444 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 #: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "Añada %s" -#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: db_operations.php:448 libraries/export/sql.php:77 tbl_operations.php:296 #: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Añadir el valor AUTO_INCREMENT" -#: db_operations.php:418 tbl_operations.php:542 +#: db_operations.php:452 tbl_operations.php:542 msgid "Add constraints" msgstr "Añadir restricciones" -#: db_operations.php:431 +#: db_operations.php:465 msgid "Switch to copied database" msgstr "Seleccionar la base de datos copiada" -#: db_operations.php:451 libraries/Index.class.php:447 +#: db_operations.php:485 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 #: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 #: server_collations.php:53 server_collations.php:65 server_databases.php:108 @@ -299,7 +315,7 @@ msgstr "Seleccionar la base de datos copiada" msgid "Collation" msgstr "Cotejamiento" -#: db_operations.php:464 pdf_schema.php:32 +#: db_operations.php:498 pdf_schema.php:32 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -311,7 +327,7 @@ msgstr "" "Las opciones adicionales para trabajar con tablas vinculadas fueron " "desactivadas. Para saber porqué, dé clic %saquí%s." -#: db_operations.php:497 +#: db_operations.php:531 msgid "Edit PDF Pages" msgstr "Editar las páginas PDF" @@ -367,7 +383,7 @@ msgstr[0] "%s tabla(s)" msgstr[1] "%s tabla(s)" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -459,7 +475,7 @@ msgstr "Ejecutar la consulta" #: db_search.php:50 libraries/auth/config.auth.lib.php:83 #: libraries/auth/config.auth.lib.php:102 -#: libraries/auth/cookie.auth.lib.php:640 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:182 msgid "Access denied" msgstr "Acceso denegado " @@ -502,7 +518,7 @@ msgid "Browse" msgstr "Examinar" #: db_search.php:254 libraries/display_tbl.lib.php:1163 -#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:440 #: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 @@ -545,14 +561,14 @@ msgstr "Dentro del campo:" #: db_structure.php:79 db_structure.php:80 db_structure.php:92 #: db_structure.php:93 db_structure.php:105 db_structure.php:106 -#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:311 +#: libraries/sql_query_form.lib.php:314 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Insertar" #: db_structure.php:81 db_structure.php:94 db_structure.php:107 #: libraries/common.lib.php:2832 libraries/common.lib.php:2839 -#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 +#: libraries/db_links.inc.php:48 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 @@ -565,8 +581,7 @@ msgstr "Estructura" #: db_structure.php:96 db_structure.php:108 db_structure.php:109 #: db_structure.php:530 db_structure.php:531 db_tracking.php:86 #: libraries/Index.class.php:482 libraries/common.lib.php:1663 -#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 #: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 #: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" @@ -575,21 +590,21 @@ msgstr "Eliminar" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 +#: libraries/mult_submits.inc.php:38 msgid "Empty" msgstr "Vaciar" -#: db_structure.php:301 libraries/tbl_links.inc.php:98 +#: db_structure.php:301 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "Se ha vaciado la tabla %s" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "View %s has been dropped" msgstr "Se descartó el modo de visualización %s" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "Se ha eliminado la tabla %s" @@ -682,7 +697,7 @@ msgstr "Reparar la tabla" msgid "Analyze table" msgstr "Analizar la tabla" -#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:56 #: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 #: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 #: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 @@ -1425,7 +1440,7 @@ msgid "Databases" msgstr "Bases de datos" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30 #: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 #: tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -1537,7 +1552,7 @@ msgid "Cannot connect: invalid settings." msgstr "No se estableció la conexión: los parámetros están incorrectos." #: libraries/auth/config.auth.lib.php:91 -#: libraries/auth/cookie.auth.lib.php:205 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:206 libraries/auth/http.auth.lib.php:64 #: test/theme.php:151 #, php-format msgid "Welcome to %s" @@ -1564,51 +1579,51 @@ msgstr "" "config.inc.php y asegurarse que corresponden con la información provista por " "el administrador del servidor MySQL." -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:231 msgid "Log in" msgstr "Iniciar sesión" -#: libraries/auth/cookie.auth.lib.php:232 -#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:233 +#: libraries/auth/cookie.auth.lib.php:235 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:94 msgid "phpMyAdmin documentation" msgstr "Documentación de phpMyAdmin" -#: libraries/auth/cookie.auth.lib.php:244 #: libraries/auth/cookie.auth.lib.php:245 +#: libraries/auth/cookie.auth.lib.php:246 msgid "You can enter hostname/IP address and port separated by space." msgstr "" "Puede escribir el nombre del proveedor de servicios/dirección IP y el " "puerto, separado por un espacio." -#: libraries/auth/cookie.auth.lib.php:244 +#: libraries/auth/cookie.auth.lib.php:245 msgid "Server:" msgstr "Servidor" -#: libraries/auth/cookie.auth.lib.php:249 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Username:" msgstr "Usuario:" -#: libraries/auth/cookie.auth.lib.php:253 +#: libraries/auth/cookie.auth.lib.php:254 msgid "Password:" msgstr "Contraseña:" -#: libraries/auth/cookie.auth.lib.php:260 +#: libraries/auth/cookie.auth.lib.php:261 msgid "Server Choice" msgstr "Elección del servidor" -#: libraries/auth/cookie.auth.lib.php:306 libraries/header.inc.php:58 +#: libraries/auth/cookie.auth.lib.php:307 libraries/header.inc.php:58 msgid "Cookies must be enabled past this point." msgstr "Las \"cookies\" deben estar habilitadas." -#: libraries/auth/cookie.auth.lib.php:638 +#: libraries/auth/cookie.auth.lib.php:639 #: libraries/auth/signon.auth.lib.php:180 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" -#: libraries/auth/cookie.auth.lib.php:642 +#: libraries/auth/cookie.auth.lib.php:643 #: libraries/auth/signon.auth.lib.php:184 #, php-format msgid "No activity within %s seconds; please log in again" @@ -1616,8 +1631,8 @@ msgstr "" "No ha habido actividad desde hace %s o más segundos, por favor reingrese al " "sitio" -#: libraries/auth/cookie.auth.lib.php:652 -#: libraries/auth/cookie.auth.lib.php:654 +#: libraries/auth/cookie.auth.lib.php:653 +#: libraries/auth/cookie.auth.lib.php:655 #: libraries/auth/signon.auth.lib.php:190 msgid "Cannot log in to the MySQL server" msgstr "El servidor MySQL no autorizó su ingreso" @@ -1741,7 +1756,7 @@ msgstr "es" #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 #: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 -#: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 +#: libraries/sql_query_form.lib.php:421 libraries/sql_query_form.lib.php:424 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" msgstr "Documentación" @@ -1886,19 +1901,19 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "La funcionalidad %s está afectada por un fallo conocido, vea %s" #: libraries/common.lib.php:2833 libraries/common.lib.php:2840 -#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 +#: libraries/db_links.inc.php:53 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 #: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 -#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:86 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "Operaciones" -#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:265 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1914,36 +1929,31 @@ msgstr "Eventos" msgid "Name" msgstr "Nombre" -#: libraries/db_links.inc.php:43 -#, php-format -msgid "Database %s has been dropped." -msgstr "La base de datos %s ha sido eliminada." - -#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 -#: libraries/db_links.inc.php:57 +#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43 +#: libraries/db_links.inc.php:44 msgid "Database seems to be empty!" msgstr "La base de datos, ¡parece estar vacía!" -#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/db_links.inc.php:66 libraries/relation.lib.php:137 #: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:84 +#: libraries/db_links.inc.php:71 msgid "Query" msgstr "Generar una consulta" -#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 +#: libraries/db_links.inc.php:76 libraries/relation.lib.php:133 msgid "Designer" msgstr "Diseñador" -#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:87 #: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importar" -#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:65 #: server_privileges.php:110 server_privileges.php:1718 #: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" @@ -2116,7 +2126,7 @@ msgid "remember template" msgstr "recordar la plantilla" #: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 -#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 +#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:509 msgid "Character set of the file:" msgstr "Juego de caracteres del archivo:" @@ -2169,7 +2179,7 @@ msgstr "" msgid "File to import" msgstr "Archivo a importar" -#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:497 +#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:484 msgid "Location of the text file" msgstr "Localización del archivo de texto" @@ -2177,13 +2187,13 @@ msgstr "Localización del archivo de texto" msgid "File uploads are not allowed on this server." msgstr "No está permitido subir archivos a este servidor." -#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 +#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:493 #: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "" "No está disponible el directorio que usted habilitó para subir las tareas" -#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 +#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:496 #: tbl_change.php:925 msgid "web server upload directory" msgstr "directorio en el servidor web para subir los archivos" @@ -3619,7 +3629,7 @@ msgstr "" "Para actualizar su tabla Columna_comentarios (Column_comments), por favor " "revise la documentación" -#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:403 msgid "Bookmarked SQL query" msgstr "Consulta guardada en favoritos" @@ -3687,7 +3697,7 @@ msgstr "Mostrar el estado del esclavo" msgid "Slave status" msgstr "Mostrar el estado del esclavo" -#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:428 +#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:415 #: server_status.php:736 server_variables.php:51 msgid "Variable" msgstr "Variable" @@ -3817,51 +3827,51 @@ msgstr "" msgid "Target database" msgstr "Buscar en la base de datos" -#: libraries/sql_query_form.lib.php:219 +#: libraries/sql_query_form.lib.php:217 #, 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:236 libraries/sql_query_form.lib.php:261 +#: libraries/sql_query_form.lib.php:234 libraries/sql_query_form.lib.php:258 #, 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:307 +#: libraries/sql_query_form.lib.php:294 #, fuzzy #| msgid "Column names" msgid "Columns" msgstr "Nombre de las columnas" -#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 +#: libraries/sql_query_form.lib.php:329 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "Guardar esta consulta en favoritos" -#: libraries/sql_query_form.lib.php:349 sql.php:669 +#: libraries/sql_query_form.lib.php:336 sql.php:669 msgid "Let every user access this bookmark" msgstr "Permitir que todo usuario pueda acceder a este favorito" -#: libraries/sql_query_form.lib.php:355 +#: libraries/sql_query_form.lib.php:342 msgid "Replace existing bookmark of same name" msgstr "Reemplazar el favorito existente que tenga el mismo nombre" -#: libraries/sql_query_form.lib.php:371 +#: libraries/sql_query_form.lib.php:358 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:378 +#: libraries/sql_query_form.lib.php:365 msgid "Delimiter" msgstr "Delimitador" -#: libraries/sql_query_form.lib.php:386 +#: libraries/sql_query_form.lib.php:373 msgid " Show this query here again " msgstr " Mostrar esta consulta otra vez " -#: libraries/sql_query_form.lib.php:445 +#: libraries/sql_query_form.lib.php:432 msgid "Submit" msgstr "Enviar" -#: libraries/sql_query_form.lib.php:449 +#: libraries/sql_query_form.lib.php:436 msgid "View only" msgstr "Solamente ver" @@ -3935,12 +3945,11 @@ 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/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 -#: libraries/tbl_links.inc.php:139 +#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107 msgid "Table seems to be empty!" msgstr "La tabla, ¡parece estar vacía!" -#: libraries/tbl_links.inc.php:147 +#: libraries/tbl_links.inc.php:115 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" @@ -8328,40 +8337,54 @@ msgstr "Se ha vaciado el caché de la tabla %s" msgid "Flush the table (FLUSH)" msgstr "Vaciar el caché de la tabla (\"FLUSH\")" -#: tbl_operations.php:648 +#: tbl_operations.php:642 +#, fuzzy +#| msgid "Table name" +msgid "Table removal" +msgstr "Nombre de la tabla" + +#: tbl_operations.php:657 +msgid "Empty the table (TRUNCATE)" +msgstr "" + +#: tbl_operations.php:675 +msgid "Drop the table (DROP)" +msgstr "" + +#: tbl_operations.php:696 msgid "Partition maintenance" msgstr "Mantenimiento de la partición" -#: tbl_operations.php:656 +#: tbl_operations.php:704 #, php-format msgid "Partition %s" msgstr "Partición %s" -#: tbl_operations.php:659 +#: tbl_operations.php:707 msgid "Analyze" msgstr "Analice" -#: tbl_operations.php:660 +#: tbl_operations.php:708 msgid "Check" msgstr "Revise" -#: tbl_operations.php:661 +#: tbl_operations.php:709 msgid "Optimize" msgstr "Optimice" -#: tbl_operations.php:662 +#: tbl_operations.php:710 msgid "Rebuild" msgstr "Reconstruya" -#: tbl_operations.php:663 +#: tbl_operations.php:711 msgid "Repair" msgstr "Repare" -#: tbl_operations.php:675 +#: tbl_operations.php:723 msgid "Remove partitioning" msgstr "Remueva la partición" -#: tbl_operations.php:701 +#: tbl_operations.php:749 msgid "Check referential integrity:" msgstr "Comprobar la integridad referencial:" diff --git a/po/et.po b/po/et.po index 166762664..58b966645 100644 --- a/po/et.po +++ b/po/et.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-26 17:18+0200\n" +"POT-Creation-Date: 2010-07-27 10:12+0200\n" "PO-Revision-Date: 2010-03-12 09:14+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: estonian \n" @@ -38,16 +38,16 @@ msgstr "" #: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 #: db_structure.php:89 db_structure.php:91 db_structure.php:102 #: db_structure.php:104 libraries/common.lib.php:2834 -#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Otsi" #: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 -#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_operations.php:468 db_operations.php:492 db_search.php:344 #: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 #: libraries/Theme_Manager.class.php:305 -#: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 +#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:712 #: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 @@ -55,8 +55,8 @@ msgstr "Otsi" #: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 #: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 -#: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: libraries/sql_query_form.lib.php:377 libraries/sql_query_form.lib.php:447 +#: libraries/sql_query_form.lib.php:512 libraries/tbl_properties.inc.php:780 #: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 #: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 #: server_privileges.php:663 server_privileges.php:1620 @@ -66,7 +66,7 @@ msgstr "Otsi" #: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 #: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 -#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_operations.php:726 tbl_select.php:323 tbl_structure.php:559 #: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 #: view_create.php:181 view_operations.php:99 msgid "Go" @@ -247,47 +247,63 @@ msgstr "Käsk" msgid "and then" msgstr "ja siis" -#: db_operations.php:390 +#: db_operations.php:379 +#, fuzzy +#| msgid "Rename database to" +msgid "Remove database" +msgstr "Nimeta andmebaas ümber" + +#: db_operations.php:391 +#, php-format +msgid "Database %s has been dropped." +msgstr "Andmebaas %s kustutatud." + +#: db_operations.php:396 +#, fuzzy +msgid "Drop the database (DROP)" +msgstr "Pole andmebaase" + +#: db_operations.php:424 msgid "Copy database to" msgstr "Kopeeri andmebaas" -#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:431 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Ainult struktuur" -#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:432 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Struktuur ja andmed" -#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:433 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Ainult andmed" -#: db_operations.php:407 +#: db_operations.php:441 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE enne kopeerimist" -#: db_operations.php:410 libraries/export/sql.php:51 +#: db_operations.php:444 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 #: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "Lisa %s" -#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: db_operations.php:448 libraries/export/sql.php:77 tbl_operations.php:296 #: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Lisa AUTO_INCREMENT väärtus" -#: db_operations.php:418 tbl_operations.php:542 +#: db_operations.php:452 tbl_operations.php:542 msgid "Add constraints" msgstr "Lisa piirangud" -#: db_operations.php:431 +#: db_operations.php:465 msgid "Switch to copied database" msgstr "Mine kopeeritud andmebaasile" -#: db_operations.php:451 libraries/Index.class.php:447 +#: db_operations.php:485 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 #: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 #: server_collations.php:53 server_collations.php:65 server_databases.php:108 @@ -296,7 +312,7 @@ msgstr "Mine kopeeritud andmebaasile" msgid "Collation" msgstr "Määrang" -#: db_operations.php:464 pdf_schema.php:32 +#: db_operations.php:498 pdf_schema.php:32 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -308,7 +324,7 @@ msgstr "" "Lisavõimalused töötamiseks lingitud tabelitega on deaktiveeritud. Et lugeda " "miks see nii on, vajutage %ssiia%s." -#: db_operations.php:497 +#: db_operations.php:531 msgid "Edit PDF Pages" msgstr "Muuda PDF lehti" @@ -364,7 +380,7 @@ msgstr[0] "%s tabel(it)" msgstr[1] "%s tabel(it)" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -456,7 +472,7 @@ msgstr "Lae päring" #: db_search.php:50 libraries/auth/config.auth.lib.php:83 #: libraries/auth/config.auth.lib.php:102 -#: libraries/auth/cookie.auth.lib.php:640 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:182 msgid "Access denied" msgstr "Ligipääs keelatud" @@ -499,7 +515,7 @@ msgid "Browse" msgstr "Vaata" #: db_search.php:254 libraries/display_tbl.lib.php:1163 -#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:440 #: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 @@ -542,14 +558,14 @@ msgstr "Otsi tabeli(te)st:" #: db_structure.php:79 db_structure.php:80 db_structure.php:92 #: db_structure.php:93 db_structure.php:105 db_structure.php:106 -#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:311 +#: libraries/sql_query_form.lib.php:314 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Lisa" #: db_structure.php:81 db_structure.php:94 db_structure.php:107 #: libraries/common.lib.php:2832 libraries/common.lib.php:2839 -#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 +#: libraries/db_links.inc.php:48 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 @@ -562,8 +578,7 @@ msgstr "Struktuur" #: db_structure.php:96 db_structure.php:108 db_structure.php:109 #: db_structure.php:530 db_structure.php:531 db_tracking.php:86 #: libraries/Index.class.php:482 libraries/common.lib.php:1663 -#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 #: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 #: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" @@ -572,21 +587,21 @@ msgstr "Kustuta" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 +#: libraries/mult_submits.inc.php:38 msgid "Empty" msgstr "Tühjenda" -#: db_structure.php:301 libraries/tbl_links.inc.php:98 +#: db_structure.php:301 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "Tabel %s tühjendatud" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "View %s has been dropped" msgstr "Vaade %s on kustutatud" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "Tabel %s kustutatud" @@ -676,7 +691,7 @@ msgstr "Paranda tabelit" msgid "Analyze table" msgstr "Analüüsi tabelit" -#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:56 #: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 #: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 #: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 @@ -1407,7 +1422,7 @@ msgid "Databases" msgstr "Andmebaasid" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30 #: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 #: tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -1512,7 +1527,7 @@ msgid "Cannot connect: invalid settings." msgstr "Ei saa ühendust: vigased seaded." #: libraries/auth/config.auth.lib.php:91 -#: libraries/auth/cookie.auth.lib.php:205 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:206 libraries/auth/http.auth.lib.php:64 #: test/theme.php:151 #, php-format msgid "Welcome to %s" @@ -1539,56 +1554,56 @@ msgstr "" "php failis ning kontrollima, et need vastaks infole mis te saite oma MySQL " "serveri administraatori käest." -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:231 msgid "Log in" msgstr "Sisselogimine" -#: libraries/auth/cookie.auth.lib.php:232 -#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:233 +#: libraries/auth/cookie.auth.lib.php:235 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:94 msgid "phpMyAdmin documentation" msgstr "phpMyAdmini dokumentatsioon" -#: libraries/auth/cookie.auth.lib.php:244 #: libraries/auth/cookie.auth.lib.php:245 +#: libraries/auth/cookie.auth.lib.php:246 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:244 +#: libraries/auth/cookie.auth.lib.php:245 msgid "Server:" msgstr "Server" -#: libraries/auth/cookie.auth.lib.php:249 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Username:" msgstr "Kasutajanimi:" -#: libraries/auth/cookie.auth.lib.php:253 +#: libraries/auth/cookie.auth.lib.php:254 msgid "Password:" msgstr "Parool:" -#: libraries/auth/cookie.auth.lib.php:260 +#: libraries/auth/cookie.auth.lib.php:261 msgid "Server Choice" msgstr "Serveri valik" -#: libraries/auth/cookie.auth.lib.php:306 libraries/header.inc.php:58 +#: libraries/auth/cookie.auth.lib.php:307 libraries/header.inc.php:58 msgid "Cookies must be enabled past this point." msgstr "Küpsised(cookies) peavad alates sellest momendist lubatud olema." -#: libraries/auth/cookie.auth.lib.php:638 +#: libraries/auth/cookie.auth.lib.php:639 #: libraries/auth/signon.auth.lib.php:180 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" -#: libraries/auth/cookie.auth.lib.php:642 +#: libraries/auth/cookie.auth.lib.php:643 #: libraries/auth/signon.auth.lib.php:184 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "Ebaaktiivne %s sekundit või rohkem, palun sisenege uuesti" -#: libraries/auth/cookie.auth.lib.php:652 -#: libraries/auth/cookie.auth.lib.php:654 +#: libraries/auth/cookie.auth.lib.php:653 +#: libraries/auth/cookie.auth.lib.php:655 #: libraries/auth/signon.auth.lib.php:190 msgid "Cannot log in to the MySQL server" msgstr "Ei suuda MySQL serverisse logida" @@ -1711,7 +1726,7 @@ msgstr "Saadetud" #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 #: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 -#: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 +#: libraries/sql_query_form.lib.php:421 libraries/sql_query_form.lib.php:424 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" msgstr "Dokumentatsioon" @@ -1854,19 +1869,19 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "See %s funktionaalsus on mõjutatud tuntud viga, vaata %s" #: libraries/common.lib.php:2833 libraries/common.lib.php:2840 -#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 +#: libraries/db_links.inc.php:53 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 #: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 -#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:86 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "Tegevused" -#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:265 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1883,36 +1898,31 @@ msgstr "Saadetud" msgid "Name" msgstr "Nimi" -#: libraries/db_links.inc.php:43 -#, php-format -msgid "Database %s has been dropped." -msgstr "Andmebaas %s kustutatud." - -#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 -#: libraries/db_links.inc.php:57 +#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43 +#: libraries/db_links.inc.php:44 msgid "Database seems to be empty!" msgstr "Andmebaas tundub olevat tühi!" -#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/db_links.inc.php:66 libraries/relation.lib.php:137 #: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:84 +#: libraries/db_links.inc.php:71 msgid "Query" msgstr "Päring näite järgi" -#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 +#: libraries/db_links.inc.php:76 libraries/relation.lib.php:133 msgid "Designer" msgstr "Kujundaja" -#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:87 #: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Import" -#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:65 #: server_privileges.php:110 server_privileges.php:1718 #: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" @@ -2079,7 +2089,7 @@ msgid "remember template" msgstr "jäta template meelde" #: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 -#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 +#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:509 msgid "Character set of the file:" msgstr "Faili tähetabel:" @@ -2132,7 +2142,7 @@ msgstr "" msgid "File to import" msgstr "Imporditav Fail" -#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:497 +#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:484 msgid "Location of the text file" msgstr "tekstifaili asukoht" @@ -2140,12 +2150,12 @@ msgstr "tekstifaili asukoht" msgid "File uploads are not allowed on this server." msgstr "Faile pole lubatud laadida sellesse serverisse." -#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 +#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:493 #: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "Kataloog mille Te üleslaadimiseks sättisite ei ole ligipääsetav" -#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 +#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:496 #: tbl_change.php:925 msgid "web server upload directory" msgstr "webiserveri üleslaadimiskataloogi" @@ -3526,7 +3536,7 @@ msgid "" "Please see the documentation on how to update your column_comments table" msgstr "Please see Documentation on how to update your Column_comments Table" -#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:403 msgid "Bookmarked SQL query" msgstr "Järjehodjaga SQL päring" @@ -3593,7 +3603,7 @@ msgstr "Näita alluvate(slave) staatust" msgid "Slave status" msgstr "Näita alluvate(slave) staatust" -#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:428 +#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:415 #: server_status.php:736 server_variables.php:51 msgid "Variable" msgstr "Muutuja" @@ -3722,51 +3732,51 @@ msgstr "" msgid "Target database" msgstr "Otsi andmebaasist" -#: libraries/sql_query_form.lib.php:219 +#: libraries/sql_query_form.lib.php:217 #, 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:236 libraries/sql_query_form.lib.php:261 +#: libraries/sql_query_form.lib.php:234 libraries/sql_query_form.lib.php:258 #, 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:307 +#: libraries/sql_query_form.lib.php:294 #, fuzzy #| msgid "Column names" msgid "Columns" msgstr "Väljade nimed" -#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 +#: libraries/sql_query_form.lib.php:329 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "Lisa see SQL päring järjehoidjasse" -#: libraries/sql_query_form.lib.php:349 sql.php:669 +#: libraries/sql_query_form.lib.php:336 sql.php:669 msgid "Let every user access this bookmark" msgstr "Anna kõikidele kasutajatele juurdepääs sellele järjehodjale" -#: libraries/sql_query_form.lib.php:355 +#: libraries/sql_query_form.lib.php:342 msgid "Replace existing bookmark of same name" msgstr "Kirjuta samanimeline järjehoidja üle" -#: libraries/sql_query_form.lib.php:371 +#: libraries/sql_query_form.lib.php:358 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:378 +#: libraries/sql_query_form.lib.php:365 msgid "Delimiter" msgstr "Eraldaja" -#: libraries/sql_query_form.lib.php:386 +#: libraries/sql_query_form.lib.php:373 msgid " Show this query here again " msgstr " Näita päringut siin uuesti " -#: libraries/sql_query_form.lib.php:445 +#: libraries/sql_query_form.lib.php:432 msgid "Submit" msgstr "Vali" -#: libraries/sql_query_form.lib.php:449 +#: libraries/sql_query_form.lib.php:436 msgid "View only" msgstr "Vaata ainult" @@ -3838,12 +3848,11 @@ msgstr "" "SQL-i valideerijat ei suudetud avada. Palun kontrollige, et te olete " "installinud vastavad php moodulid nagu on kirjeldatud %sdokumentatsioonis%s." -#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 -#: libraries/tbl_links.inc.php:139 +#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107 msgid "Table seems to be empty!" msgstr "Tabel tundub olevat tühi!" -#: libraries/tbl_links.inc.php:147 +#: libraries/tbl_links.inc.php:115 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" @@ -8010,43 +8019,57 @@ msgstr "Tabel %s ühtlustatud" msgid "Flush the table (FLUSH)" msgstr "Ühtlusta tabelid (\"FLUSH\")" -#: tbl_operations.php:648 +#: tbl_operations.php:642 +#, fuzzy +#| msgid "Table name" +msgid "Table removal" +msgstr "Tabeli nimi" + +#: tbl_operations.php:657 +msgid "Empty the table (TRUNCATE)" +msgstr "" + +#: tbl_operations.php:675 +msgid "Drop the table (DROP)" +msgstr "" + +#: tbl_operations.php:696 #, fuzzy msgid "Partition maintenance" msgstr "Tabeli hooldus" -#: tbl_operations.php:656 +#: tbl_operations.php:704 #, php-format msgid "Partition %s" msgstr "" -#: tbl_operations.php:659 +#: tbl_operations.php:707 msgid "Analyze" msgstr "" -#: tbl_operations.php:660 +#: tbl_operations.php:708 #, fuzzy msgid "Check" msgstr "Tsehhi" -#: tbl_operations.php:661 +#: tbl_operations.php:709 msgid "Optimize" msgstr "" -#: tbl_operations.php:662 +#: tbl_operations.php:710 msgid "Rebuild" msgstr "" -#: tbl_operations.php:663 +#: tbl_operations.php:711 #, fuzzy msgid "Repair" msgstr "Paranda tabelit" -#: tbl_operations.php:675 +#: tbl_operations.php:723 msgid "Remove partitioning" msgstr "" -#: tbl_operations.php:701 +#: tbl_operations.php:749 msgid "Check referential integrity:" msgstr "Kontrolli pärinevust:" diff --git a/po/eu.po b/po/eu.po index 72b87f892..2502321d2 100644 --- a/po/eu.po +++ b/po/eu.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-26 17:18+0200\n" +"POT-Creation-Date: 2010-07-27 10:12+0200\n" "PO-Revision-Date: 2010-07-21 14:53+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: basque \n" @@ -39,16 +39,16 @@ msgstr "" #: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 #: db_structure.php:89 db_structure.php:91 db_structure.php:102 #: db_structure.php:104 libraries/common.lib.php:2834 -#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Bilatu" #: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 -#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_operations.php:468 db_operations.php:492 db_search.php:344 #: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 #: libraries/Theme_Manager.class.php:305 -#: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 +#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:712 #: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 @@ -56,8 +56,8 @@ msgstr "Bilatu" #: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 #: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 -#: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: libraries/sql_query_form.lib.php:377 libraries/sql_query_form.lib.php:447 +#: libraries/sql_query_form.lib.php:512 libraries/tbl_properties.inc.php:780 #: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 #: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 #: server_privileges.php:663 server_privileges.php:1620 @@ -67,7 +67,7 @@ msgstr "Bilatu" #: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 #: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 -#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_operations.php:726 tbl_select.php:323 tbl_structure.php:559 #: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 #: view_create.php:181 view_operations.php:99 msgid "Go" @@ -250,49 +250,64 @@ msgstr "Komandoa" msgid "and then" msgstr "eta orduan" -#: db_operations.php:390 +#: db_operations.php:379 +#, fuzzy +msgid "Remove database" +msgstr "Taula berrizendatu izen honetara: " + +#: db_operations.php:391 +#, php-format +msgid "Database %s has been dropped." +msgstr "%s datu-basea ezabatua izan da." + +#: db_operations.php:396 +#, fuzzy +msgid "Drop the database (DROP)" +msgstr "Datu-baserik ez" + +#: db_operations.php:424 #, fuzzy msgid "Copy database to" msgstr "Datu-baserik ez" -#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:431 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Egitura soilik" -#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:432 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Egitura eta datuak" -#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:433 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Datuak soilik" -#: db_operations.php:407 +#: db_operations.php:441 msgid "CREATE DATABASE before copying" msgstr "" -#: db_operations.php:410 libraries/export/sql.php:51 +#: db_operations.php:444 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 #: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "%s gehitu" -#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: db_operations.php:448 libraries/export/sql.php:77 tbl_operations.php:296 #: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Gehitu AUTO_INCREMENT balioa" -#: db_operations.php:418 tbl_operations.php:542 +#: db_operations.php:452 tbl_operations.php:542 msgid "Add constraints" msgstr "Murrizketak gehitu" -#: db_operations.php:431 +#: db_operations.php:465 #, fuzzy msgid "Switch to copied database" msgstr "Kopiatutako taulara aldatu" -#: db_operations.php:451 libraries/Index.class.php:447 +#: db_operations.php:485 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 #: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 #: server_collations.php:53 server_collations.php:65 server_databases.php:108 @@ -301,7 +316,7 @@ msgstr "Kopiatutako taulara aldatu" msgid "Collation" msgstr "Ordenamendua" -#: db_operations.php:464 pdf_schema.php:32 +#: db_operations.php:498 pdf_schema.php:32 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -313,7 +328,7 @@ msgstr "" "Estekatutako taulekin lan egiteko hobespen gehigarriak ezgaitu dira . " "Zergatia jakiteko egizu klik %shemen%s." -#: db_operations.php:497 +#: db_operations.php:531 msgid "Edit PDF Pages" msgstr "Editatu PDF Orriak" @@ -369,7 +384,7 @@ msgstr[0] "%s taula(k)" msgstr[1] "%s taula(k)" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -461,7 +476,7 @@ msgstr "Kontsulta bidali" #: db_search.php:50 libraries/auth/config.auth.lib.php:83 #: libraries/auth/config.auth.lib.php:102 -#: libraries/auth/cookie.auth.lib.php:640 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:182 msgid "Access denied" msgstr "Sarbidea ukatua" @@ -504,7 +519,7 @@ msgid "Browse" msgstr "Arakatu" #: db_search.php:254 libraries/display_tbl.lib.php:1163 -#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:440 #: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 @@ -547,14 +562,14 @@ msgstr "Taul(ar)en barnean:" #: db_structure.php:79 db_structure.php:80 db_structure.php:92 #: db_structure.php:93 db_structure.php:105 db_structure.php:106 -#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:311 +#: libraries/sql_query_form.lib.php:314 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Txertatu" #: db_structure.php:81 db_structure.php:94 db_structure.php:107 #: libraries/common.lib.php:2832 libraries/common.lib.php:2839 -#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 +#: libraries/db_links.inc.php:48 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 @@ -567,8 +582,7 @@ msgstr "Egitura" #: db_structure.php:96 db_structure.php:108 db_structure.php:109 #: db_structure.php:530 db_structure.php:531 db_tracking.php:86 #: libraries/Index.class.php:482 libraries/common.lib.php:1663 -#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 #: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 #: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" @@ -577,21 +591,21 @@ msgstr "Ezabatu" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 +#: libraries/mult_submits.inc.php:38 msgid "Empty" msgstr "Hutsik" -#: db_structure.php:301 libraries/tbl_links.inc.php:98 +#: db_structure.php:301 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "%s taula hustu egin da" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, fuzzy, php-format msgid "View %s has been dropped" msgstr "%s eremua ezabatu da" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "%s taula ezabatu egin da" @@ -682,7 +696,7 @@ msgstr "Taula konpondu" msgid "Analyze table" msgstr "Taula aztertu" -#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:56 #: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 #: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 #: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 @@ -1403,7 +1417,7 @@ msgid "Databases" msgstr "Datu-baseak" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30 #: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 #: tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -1506,7 +1520,7 @@ msgid "Cannot connect: invalid settings." msgstr "" #: libraries/auth/config.auth.lib.php:91 -#: libraries/auth/cookie.auth.lib.php:205 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:206 libraries/auth/http.auth.lib.php:64 #: test/theme.php:151 #, php-format msgid "Welcome to %s" @@ -1531,56 +1545,56 @@ msgstr "" "eta pasahitza berpasatu beharko dituzu eta MySQL zerbitzariaren " "administratzaileak emaniko informazioarekin bat egiten dutela ziurtatu." -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:231 msgid "Log in" msgstr "Hasi saioa" -#: libraries/auth/cookie.auth.lib.php:232 -#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:233 +#: libraries/auth/cookie.auth.lib.php:235 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:94 msgid "phpMyAdmin documentation" msgstr "phpMyAdmin dokumentazioa" -#: libraries/auth/cookie.auth.lib.php:244 #: libraries/auth/cookie.auth.lib.php:245 +#: libraries/auth/cookie.auth.lib.php:246 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:244 +#: libraries/auth/cookie.auth.lib.php:245 msgid "Server:" msgstr "Zerbitzaria" -#: libraries/auth/cookie.auth.lib.php:249 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Username:" msgstr "Erabiltzaile-izena:" -#: libraries/auth/cookie.auth.lib.php:253 +#: libraries/auth/cookie.auth.lib.php:254 msgid "Password:" msgstr "Pasahitza:" -#: libraries/auth/cookie.auth.lib.php:260 +#: libraries/auth/cookie.auth.lib.php:261 msgid "Server Choice" msgstr "Zerbitzariaren hautaketa" -#: libraries/auth/cookie.auth.lib.php:306 libraries/header.inc.php:58 +#: libraries/auth/cookie.auth.lib.php:307 libraries/header.inc.php:58 msgid "Cookies must be enabled past this point." msgstr "Puntu honetarako cookie-ek gaituta egon behar dute." -#: libraries/auth/cookie.auth.lib.php:638 +#: libraries/auth/cookie.auth.lib.php:639 #: libraries/auth/signon.auth.lib.php:180 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" -#: libraries/auth/cookie.auth.lib.php:642 +#: libraries/auth/cookie.auth.lib.php:643 #: libraries/auth/signon.auth.lib.php:184 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" -#: libraries/auth/cookie.auth.lib.php:652 -#: libraries/auth/cookie.auth.lib.php:654 +#: libraries/auth/cookie.auth.lib.php:653 +#: libraries/auth/cookie.auth.lib.php:655 #: libraries/auth/signon.auth.lib.php:190 msgid "Cannot log in to the MySQL server" msgstr "Ezinezkoa MySql zerbitzarian saioa hastea" @@ -1700,7 +1714,7 @@ msgstr "en" #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 #: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 -#: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 +#: libraries/sql_query_form.lib.php:421 libraries/sql_query_form.lib.php:424 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" msgstr "Dokumentazioa" @@ -1841,19 +1855,19 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/common.lib.php:2833 libraries/common.lib.php:2840 -#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 +#: libraries/db_links.inc.php:53 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 #: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 -#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:86 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "Eragiketak" -#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:265 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1869,37 +1883,32 @@ msgstr "" msgid "Name" msgstr "Izena" -#: libraries/db_links.inc.php:43 -#, php-format -msgid "Database %s has been dropped." -msgstr "%s datu-basea ezabatua izan da." - -#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 -#: libraries/db_links.inc.php:57 +#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43 +#: libraries/db_links.inc.php:44 msgid "Database seems to be empty!" msgstr "" -#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/db_links.inc.php:66 libraries/relation.lib.php:137 #: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:84 +#: libraries/db_links.inc.php:71 msgid "Query" msgstr "Kontsulta" -#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 +#: libraries/db_links.inc.php:76 libraries/relation.lib.php:133 msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:87 #: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 #, fuzzy msgid "Import" msgstr "Esportatu" -#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:65 #: server_privileges.php:110 server_privileges.php:1718 #: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" @@ -2062,7 +2071,7 @@ msgid "remember template" msgstr "txantiloia gogoratu" #: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 -#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 +#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:509 msgid "Character set of the file:" msgstr "Fitxategiaren karaktereen kodeketa:" @@ -2115,7 +2124,7 @@ msgstr "" msgid "File to import" msgstr "" -#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:497 +#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:484 msgid "Location of the text file" msgstr "Testu-fitxategiaren kokapena" @@ -2123,12 +2132,12 @@ msgstr "Testu-fitxategiaren kokapena" msgid "File uploads are not allowed on this server." msgstr "" -#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 +#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:493 #: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "Igoerentzat ezarri duzun direktorioa ez dago eskuragarri" -#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 +#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:496 #: tbl_change.php:925 msgid "web server upload directory" msgstr "Fitxategiak igotzeko web-zerbitzariaren direktorioa" @@ -3489,7 +3498,7 @@ msgstr "" "Mesedez, Dokumentazioa begiratu zure zutabeen iruzkinen Taula nola " "eguneratzeko" -#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:403 msgid "Bookmarked SQL query" msgstr "Kontsulta gogokoetan gordea" @@ -3554,7 +3563,7 @@ msgstr "" msgid "Slave status" msgstr "" -#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:428 +#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:415 #: server_status.php:736 server_variables.php:51 msgid "Variable" msgstr "Aldagaia" @@ -3686,51 +3695,51 @@ msgstr "" msgid "Target database" msgstr "Datu-basean bilatu" -#: libraries/sql_query_form.lib.php:219 +#: libraries/sql_query_form.lib.php:217 #, 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:236 libraries/sql_query_form.lib.php:261 +#: libraries/sql_query_form.lib.php:234 libraries/sql_query_form.lib.php:258 #, php-format msgid "Run SQL query/queries on database %s" msgstr "SQL kontsulta(k) exekutatu %s datu-basean" -#: libraries/sql_query_form.lib.php:307 +#: libraries/sql_query_form.lib.php:294 #, fuzzy #| msgid "Column names" msgid "Columns" msgstr "Zutabe izenak" -#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 +#: libraries/sql_query_form.lib.php:329 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "Kontsulta hau gogokoetan gorde" -#: libraries/sql_query_form.lib.php:349 sql.php:669 +#: libraries/sql_query_form.lib.php:336 sql.php:669 msgid "Let every user access this bookmark" msgstr "Gogokoen erregistro hau edozein erabiltzailearentzat erabilgarri " -#: libraries/sql_query_form.lib.php:355 +#: libraries/sql_query_form.lib.php:342 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/sql_query_form.lib.php:371 +#: libraries/sql_query_form.lib.php:358 msgid "Do not overwrite this query from outside the window" msgstr "Kontsulta hau ez idatzi gainean leihotik kanpo" -#: libraries/sql_query_form.lib.php:378 +#: libraries/sql_query_form.lib.php:365 msgid "Delimiter" msgstr "" -#: libraries/sql_query_form.lib.php:386 +#: libraries/sql_query_form.lib.php:373 msgid " Show this query here again " msgstr " Kontsulta hau hemen berriz erakutsi" -#: libraries/sql_query_form.lib.php:445 +#: libraries/sql_query_form.lib.php:432 msgid "Submit" msgstr "Bidali" -#: libraries/sql_query_form.lib.php:449 +#: libraries/sql_query_form.lib.php:436 msgid "View only" msgstr "Soilik ikusi" @@ -3803,12 +3812,11 @@ msgstr "" "beharrezkoak diren php luzapenak instalatu dituzun %sdokumentazioan%s " "azaltzen den moduan." -#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 -#: libraries/tbl_links.inc.php:139 +#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107 msgid "Table seems to be empty!" msgstr "" -#: libraries/tbl_links.inc.php:147 +#: libraries/tbl_links.inc.php:115 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" @@ -7827,43 +7835,55 @@ msgstr "%s taularen cachea hustu egin da" msgid "Flush the table (FLUSH)" msgstr "Taularen cachea hustu (\"FLUSH\")" -#: tbl_operations.php:648 +#: tbl_operations.php:642 +msgid "Table removal" +msgstr "" + +#: tbl_operations.php:657 +msgid "Empty the table (TRUNCATE)" +msgstr "" + +#: tbl_operations.php:675 +msgid "Drop the table (DROP)" +msgstr "" + +#: tbl_operations.php:696 #, fuzzy msgid "Partition maintenance" msgstr "Taularen mantenua" -#: tbl_operations.php:656 +#: tbl_operations.php:704 #, php-format msgid "Partition %s" msgstr "" -#: tbl_operations.php:659 +#: tbl_operations.php:707 msgid "Analyze" msgstr "Aztertu" -#: tbl_operations.php:660 +#: tbl_operations.php:708 #, fuzzy msgid "Check" msgstr "Txekiera" -#: tbl_operations.php:661 +#: tbl_operations.php:709 msgid "Optimize" msgstr "" -#: tbl_operations.php:662 +#: tbl_operations.php:710 msgid "Rebuild" msgstr "" -#: tbl_operations.php:663 +#: tbl_operations.php:711 #, fuzzy msgid "Repair" msgstr "Taula konpondu" -#: tbl_operations.php:675 +#: tbl_operations.php:723 msgid "Remove partitioning" msgstr "" -#: tbl_operations.php:701 +#: tbl_operations.php:749 msgid "Check referential integrity:" msgstr "Erreferentzien integritatea egiaztatu:" diff --git a/po/fa.po b/po/fa.po index 217656161..d4d7332a3 100644 --- a/po/fa.po +++ b/po/fa.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-26 17:18+0200\n" +"POT-Creation-Date: 2010-07-27 10:12+0200\n" "PO-Revision-Date: 2010-05-19 03:54+0200\n" "Last-Translator: \n" "Language-Team: persian \n" @@ -36,16 +36,16 @@ msgstr "" #: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 #: db_structure.php:89 db_structure.php:91 db_structure.php:102 #: db_structure.php:104 libraries/common.lib.php:2834 -#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "جستجو" #: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 -#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_operations.php:468 db_operations.php:492 db_search.php:344 #: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 #: libraries/Theme_Manager.class.php:305 -#: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 +#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:712 #: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 @@ -53,8 +53,8 @@ msgstr "جستجو" #: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 #: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 -#: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: libraries/sql_query_form.lib.php:377 libraries/sql_query_form.lib.php:447 +#: libraries/sql_query_form.lib.php:512 libraries/tbl_properties.inc.php:780 #: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 #: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 #: server_privileges.php:663 server_privileges.php:1620 @@ -64,7 +64,7 @@ msgstr "جستجو" #: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 #: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 -#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_operations.php:726 tbl_select.php:323 tbl_structure.php:559 #: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 #: view_create.php:181 view_operations.php:99 msgid "Go" @@ -248,48 +248,63 @@ msgstr "دستور" msgid "and then" msgstr "و سپس" -#: db_operations.php:390 +#: db_operations.php:379 +#, fuzzy +msgid "Remove database" +msgstr "بازناميدن جدول به" + +#: db_operations.php:391 +#, php-format +msgid "Database %s has been dropped." +msgstr "پايگاه داده %s حذف گرديد." + +#: db_operations.php:396 +#, fuzzy +msgid "Drop the database (DROP)" +msgstr "No databases" + +#: db_operations.php:424 #, fuzzy msgid "Copy database to" msgstr "No databases" -#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:431 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "فقط ساختار" -#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:432 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "ساختار و داده‌ها" -#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:433 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "فقط داده‌ها" -#: db_operations.php:407 +#: db_operations.php:441 msgid "CREATE DATABASE before copying" msgstr "" -#: db_operations.php:410 libraries/export/sql.php:51 +#: db_operations.php:444 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 #: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "افزودن %s" -#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: db_operations.php:448 libraries/export/sql.php:77 tbl_operations.php:296 #: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "" -#: db_operations.php:418 tbl_operations.php:542 +#: db_operations.php:452 tbl_operations.php:542 msgid "Add constraints" msgstr "" -#: db_operations.php:431 +#: db_operations.php:465 msgid "Switch to copied database" msgstr "" -#: db_operations.php:451 libraries/Index.class.php:447 +#: db_operations.php:485 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 #: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 #: server_collations.php:53 server_collations.php:65 server_databases.php:108 @@ -298,7 +313,7 @@ msgstr "" msgid "Collation" msgstr "مقایسه" -#: db_operations.php:464 pdf_schema.php:32 +#: db_operations.php:498 pdf_schema.php:32 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -310,7 +325,7 @@ msgstr "" "امكانات اضافي براي كاركردن با جدولهاي پيوندي غيرفعال شده‌است . براي پيداكردن " "دليل آن %sاينجا%s را بزنيد ." -#: db_operations.php:497 +#: db_operations.php:531 msgid "Edit PDF Pages" msgstr "ويرايش صفحات PDF" @@ -366,7 +381,7 @@ msgid_plural "%s tables" msgstr[0] "%s جدول(ها)" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -458,7 +473,7 @@ msgstr "Submit Query" #: db_search.php:50 libraries/auth/config.auth.lib.php:83 #: libraries/auth/config.auth.lib.php:102 -#: libraries/auth/cookie.auth.lib.php:640 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:182 msgid "Access denied" msgstr "دسترسي مجاز نيست" @@ -499,7 +514,7 @@ msgid "Browse" msgstr "مشاهده" #: db_search.php:254 libraries/display_tbl.lib.php:1163 -#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:440 #: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 @@ -540,14 +555,14 @@ msgstr "در جدول(هاي) :" #: db_structure.php:79 db_structure.php:80 db_structure.php:92 #: db_structure.php:93 db_structure.php:105 db_structure.php:106 -#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:311 +#: libraries/sql_query_form.lib.php:314 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "درج" #: db_structure.php:81 db_structure.php:94 db_structure.php:107 #: libraries/common.lib.php:2832 libraries/common.lib.php:2839 -#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 +#: libraries/db_links.inc.php:48 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 @@ -560,8 +575,7 @@ msgstr "ساختار" #: db_structure.php:96 db_structure.php:108 db_structure.php:109 #: db_structure.php:530 db_structure.php:531 db_tracking.php:86 #: libraries/Index.class.php:482 libraries/common.lib.php:1663 -#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 #: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 #: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" @@ -570,21 +584,21 @@ msgstr "حذف" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 +#: libraries/mult_submits.inc.php:38 msgid "Empty" msgstr "خالي كردن" -#: db_structure.php:301 libraries/tbl_links.inc.php:98 +#: db_structure.php:301 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "جدول %s خالي شد" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, fuzzy, php-format msgid "View %s has been dropped" msgstr "ستون %s حذف گرديد" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "جدول %s حذف گرديد" @@ -674,7 +688,7 @@ msgstr "مرمت جدول" msgid "Analyze table" msgstr "تحليل جدول" -#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:56 #: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 #: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 #: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 @@ -1386,7 +1400,7 @@ msgid "Databases" msgstr "پايگاههاي داده" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30 #: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 #: tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -1489,7 +1503,7 @@ msgid "Cannot connect: invalid settings." msgstr "" #: libraries/auth/config.auth.lib.php:91 -#: libraries/auth/cookie.auth.lib.php:205 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:206 libraries/auth/http.auth.lib.php:64 #: test/theme.php:151 #, php-format msgid "Welcome to %s" @@ -1510,57 +1524,57 @@ msgid "" "the administrator of the MySQL server." msgstr "" -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:231 msgid "Log in" msgstr "ورود" -#: libraries/auth/cookie.auth.lib.php:232 -#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:233 +#: libraries/auth/cookie.auth.lib.php:235 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:94 msgid "phpMyAdmin documentation" msgstr "مستندات phpMyAdmin" -#: libraries/auth/cookie.auth.lib.php:244 #: libraries/auth/cookie.auth.lib.php:245 +#: libraries/auth/cookie.auth.lib.php:246 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:244 +#: libraries/auth/cookie.auth.lib.php:245 #, fuzzy msgid "Server:" msgstr "سرور" -#: libraries/auth/cookie.auth.lib.php:249 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Username:" msgstr "نام كاربر:" -#: libraries/auth/cookie.auth.lib.php:253 +#: libraries/auth/cookie.auth.lib.php:254 msgid "Password:" msgstr "اسم رمز:" -#: libraries/auth/cookie.auth.lib.php:260 +#: libraries/auth/cookie.auth.lib.php:261 msgid "Server Choice" msgstr "" -#: libraries/auth/cookie.auth.lib.php:306 libraries/header.inc.php:58 +#: libraries/auth/cookie.auth.lib.php:307 libraries/header.inc.php:58 msgid "Cookies must be enabled past this point." msgstr "" -#: libraries/auth/cookie.auth.lib.php:638 +#: libraries/auth/cookie.auth.lib.php:639 #: libraries/auth/signon.auth.lib.php:180 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" -#: libraries/auth/cookie.auth.lib.php:642 +#: libraries/auth/cookie.auth.lib.php:643 #: libraries/auth/signon.auth.lib.php:184 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" -#: libraries/auth/cookie.auth.lib.php:652 -#: libraries/auth/cookie.auth.lib.php:654 +#: libraries/auth/cookie.auth.lib.php:653 +#: libraries/auth/cookie.auth.lib.php:655 #: libraries/auth/signon.auth.lib.php:190 msgid "Cannot log in to the MySQL server" msgstr "" @@ -1677,7 +1691,7 @@ msgstr "" #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 #: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 -#: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 +#: libraries/sql_query_form.lib.php:421 libraries/sql_query_form.lib.php:424 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" msgstr "مستندات" @@ -1822,19 +1836,19 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/common.lib.php:2833 libraries/common.lib.php:2840 -#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 +#: libraries/db_links.inc.php:53 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 #: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 -#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:86 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "عمليات" -#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:265 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1850,37 +1864,32 @@ msgstr "" msgid "Name" msgstr "اسم" -#: libraries/db_links.inc.php:43 -#, php-format -msgid "Database %s has been dropped." -msgstr "پايگاه داده %s حذف گرديد." - -#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 -#: libraries/db_links.inc.php:57 +#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43 +#: libraries/db_links.inc.php:44 msgid "Database seems to be empty!" msgstr "" -#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/db_links.inc.php:66 libraries/relation.lib.php:137 #: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:84 +#: libraries/db_links.inc.php:71 msgid "Query" msgstr "پرس و جو" -#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 +#: libraries/db_links.inc.php:76 libraries/relation.lib.php:133 msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:87 #: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 #, fuzzy msgid "Import" msgstr "صدور" -#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:65 #: server_privileges.php:110 server_privileges.php:1718 #: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" @@ -2044,7 +2053,7 @@ msgid "remember template" msgstr "" #: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 -#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 +#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:509 msgid "Character set of the file:" msgstr "مجموعه كاراكترهاي پرونده:" @@ -2097,7 +2106,7 @@ msgstr "" msgid "File to import" msgstr "" -#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:497 +#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:484 msgid "Location of the text file" msgstr "محل پرونده متني" @@ -2105,12 +2114,12 @@ msgstr "محل پرونده متني" msgid "File uploads are not allowed on this server." msgstr "" -#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 +#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:493 #: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "پوشه‌اي را كه براي انتقال فايل انتخاب كرده‌ايد قابل دسترسي نيست." -#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 +#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:496 #: tbl_change.php:925 msgid "web server upload directory" msgstr "" @@ -3464,7 +3473,7 @@ msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" -#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:403 msgid "Bookmarked SQL query" msgstr "" @@ -3529,7 +3538,7 @@ msgstr "" msgid "Slave status" msgstr "" -#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:428 +#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:415 #: server_status.php:736 server_variables.php:51 msgid "Variable" msgstr "متغییر" @@ -3662,51 +3671,51 @@ msgstr "" msgid "Target database" msgstr "جستجو در پايگاه‌داده" -#: libraries/sql_query_form.lib.php:219 +#: libraries/sql_query_form.lib.php:217 #, fuzzy, php-format msgid "Run SQL query/queries on server %s" msgstr "اجراي پرس و جو(ها)ي SQL در پايگاه‌داده %s" -#: libraries/sql_query_form.lib.php:236 libraries/sql_query_form.lib.php:261 +#: libraries/sql_query_form.lib.php:234 libraries/sql_query_form.lib.php:258 #, php-format msgid "Run SQL query/queries on database %s" msgstr "اجراي پرس و جو(ها)ي SQL در پايگاه‌داده %s" -#: libraries/sql_query_form.lib.php:307 +#: libraries/sql_query_form.lib.php:294 #, fuzzy #| msgid "Column names" msgid "Columns" msgstr "نام ستونها" -#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 +#: libraries/sql_query_form.lib.php:329 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql_query_form.lib.php:349 sql.php:669 +#: libraries/sql_query_form.lib.php:336 sql.php:669 msgid "Let every user access this bookmark" msgstr "" -#: libraries/sql_query_form.lib.php:355 +#: libraries/sql_query_form.lib.php:342 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/sql_query_form.lib.php:371 +#: libraries/sql_query_form.lib.php:358 msgid "Do not overwrite this query from outside the window" msgstr "" -#: libraries/sql_query_form.lib.php:378 +#: libraries/sql_query_form.lib.php:365 msgid "Delimiter" msgstr "" -#: libraries/sql_query_form.lib.php:386 +#: libraries/sql_query_form.lib.php:373 msgid " Show this query here again " msgstr " نمايش دوباره اين پرس و جو در اينجا " -#: libraries/sql_query_form.lib.php:445 +#: libraries/sql_query_form.lib.php:432 msgid "Submit" msgstr "ارسال" -#: libraries/sql_query_form.lib.php:449 +#: libraries/sql_query_form.lib.php:436 msgid "View only" msgstr "" @@ -3764,12 +3773,11 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" -#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 -#: libraries/tbl_links.inc.php:139 +#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107 msgid "Table seems to be empty!" msgstr "" -#: libraries/tbl_links.inc.php:147 +#: libraries/tbl_links.inc.php:115 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" @@ -7673,42 +7681,54 @@ msgstr "جدول %s حذف گرديد" msgid "Flush the table (FLUSH)" msgstr "Flush the table (\"FLUSH\")" -#: tbl_operations.php:648 +#: tbl_operations.php:642 +msgid "Table removal" +msgstr "" + +#: tbl_operations.php:657 +msgid "Empty the table (TRUNCATE)" +msgstr "" + +#: tbl_operations.php:675 +msgid "Drop the table (DROP)" +msgstr "" + +#: tbl_operations.php:696 #, fuzzy msgid "Partition maintenance" msgstr "نگهداشت جدول" -#: tbl_operations.php:656 +#: tbl_operations.php:704 #, php-format msgid "Partition %s" msgstr "" -#: tbl_operations.php:659 +#: tbl_operations.php:707 msgid "Analyze" msgstr "" -#: tbl_operations.php:660 +#: tbl_operations.php:708 msgid "Check" msgstr "" -#: tbl_operations.php:661 +#: tbl_operations.php:709 msgid "Optimize" msgstr "" -#: tbl_operations.php:662 +#: tbl_operations.php:710 msgid "Rebuild" msgstr "" -#: tbl_operations.php:663 +#: tbl_operations.php:711 #, fuzzy msgid "Repair" msgstr "مرمت جدول" -#: tbl_operations.php:675 +#: tbl_operations.php:723 msgid "Remove partitioning" msgstr "" -#: tbl_operations.php:701 +#: tbl_operations.php:749 msgid "Check referential integrity:" msgstr "" diff --git a/po/fi.po b/po/fi.po index 20daf458d..865f8937d 100644 --- a/po/fi.po +++ b/po/fi.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-26 17:18+0200\n" +"POT-Creation-Date: 2010-07-27 10:12+0200\n" "PO-Revision-Date: 2010-04-30 18:08+0200\n" "Last-Translator: \n" "Language-Team: finnish \n" @@ -39,16 +39,16 @@ msgstr "" #: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 #: db_structure.php:89 db_structure.php:91 db_structure.php:102 #: db_structure.php:104 libraries/common.lib.php:2834 -#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Etsi" #: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 -#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_operations.php:468 db_operations.php:492 db_search.php:344 #: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 #: libraries/Theme_Manager.class.php:305 -#: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 +#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:712 #: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 @@ -56,8 +56,8 @@ msgstr "Etsi" #: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 #: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 -#: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: libraries/sql_query_form.lib.php:377 libraries/sql_query_form.lib.php:447 +#: libraries/sql_query_form.lib.php:512 libraries/tbl_properties.inc.php:780 #: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 #: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 #: server_privileges.php:663 server_privileges.php:1620 @@ -67,7 +67,7 @@ msgstr "Etsi" #: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 #: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 -#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_operations.php:726 tbl_select.php:323 tbl_structure.php:559 #: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 #: view_create.php:181 view_operations.php:99 msgid "Go" @@ -250,47 +250,64 @@ msgstr "Komento" msgid "and then" msgstr "ja sen jälkeen" -#: db_operations.php:390 +#: db_operations.php:379 +#, fuzzy +#| msgid "Rename database to" +msgid "Remove database" +msgstr "Muuta tietokannan nimi" + +#: db_operations.php:391 +#, php-format +msgid "Database %s has been dropped." +msgstr "Tietokanta %s on poistettu." + +#: db_operations.php:396 +#, fuzzy +#| msgid "Go to database" +msgid "Drop the database (DROP)" +msgstr "Siirry tietokantaan" + +#: db_operations.php:424 msgid "Copy database to" msgstr "Luo tietokannasta toinen tietokanta nimellä" -#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:431 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Vain rakenne" -#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:432 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Rakenne ja tiedot" -#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:433 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Vain tiedot" -#: db_operations.php:407 +#: db_operations.php:441 msgid "CREATE DATABASE before copying" msgstr "Suorita CREATE DATABASE ennen kopioimista" -#: db_operations.php:410 libraries/export/sql.php:51 +#: db_operations.php:444 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 #: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "Lisää %s" -#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: db_operations.php:448 libraries/export/sql.php:77 tbl_operations.php:296 #: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Lisää AUTO_INCREMENT-arvo" -#: db_operations.php:418 tbl_operations.php:542 +#: db_operations.php:452 tbl_operations.php:542 msgid "Add constraints" msgstr "Lisää rajoitteet" -#: db_operations.php:431 +#: db_operations.php:465 msgid "Switch to copied database" msgstr "Siirry kopioituun tietokantaan" -#: db_operations.php:451 libraries/Index.class.php:447 +#: db_operations.php:485 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 #: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 #: server_collations.php:53 server_collations.php:65 server_databases.php:108 @@ -299,7 +316,7 @@ msgstr "Siirry kopioituun tietokantaan" msgid "Collation" msgstr "Aakkosjärjestys" -#: db_operations.php:464 pdf_schema.php:32 +#: db_operations.php:498 pdf_schema.php:32 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -311,7 +328,7 @@ msgstr "" "Linkitettyihin tauluihin liittyvät lisäominaisuudet eivät ole käytössä. " "Katso %slisätietoja%s." -#: db_operations.php:497 +#: db_operations.php:531 msgid "Edit PDF Pages" msgstr "Muokkaa PDF-sivuja" @@ -367,7 +384,7 @@ msgstr[0] "%s taulu(a)" msgstr[1] "%s taulu(a)" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -459,7 +476,7 @@ msgstr "Suorita" #: db_search.php:50 libraries/auth/config.auth.lib.php:83 #: libraries/auth/config.auth.lib.php:102 -#: libraries/auth/cookie.auth.lib.php:640 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:182 msgid "Access denied" msgstr "Käyttö estetty" @@ -502,7 +519,7 @@ msgid "Browse" msgstr "Selaa" #: db_search.php:254 libraries/display_tbl.lib.php:1163 -#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:440 #: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 @@ -545,14 +562,14 @@ msgstr "Kentän sisältä:" #: db_structure.php:79 db_structure.php:80 db_structure.php:92 #: db_structure.php:93 db_structure.php:105 db_structure.php:106 -#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:311 +#: libraries/sql_query_form.lib.php:314 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Lisää rivi" #: db_structure.php:81 db_structure.php:94 db_structure.php:107 #: libraries/common.lib.php:2832 libraries/common.lib.php:2839 -#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 +#: libraries/db_links.inc.php:48 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 @@ -565,8 +582,7 @@ msgstr "Rakenne" #: db_structure.php:96 db_structure.php:108 db_structure.php:109 #: db_structure.php:530 db_structure.php:531 db_tracking.php:86 #: libraries/Index.class.php:482 libraries/common.lib.php:1663 -#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 #: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 #: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" @@ -575,21 +591,21 @@ msgstr "Tuhoa" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 +#: libraries/mult_submits.inc.php:38 msgid "Empty" msgstr "Tyhjennä" -#: db_structure.php:301 libraries/tbl_links.inc.php:98 +#: db_structure.php:301 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "Taulu %s on tyhjennetty" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "View %s has been dropped" msgstr "Näkymä %s on poistettu" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "Taulu %s on poistettu" @@ -681,7 +697,7 @@ msgstr "Korjaa taulu" msgid "Analyze table" msgstr "Analysoi taulu" -#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:56 #: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 #: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 #: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 @@ -1412,7 +1428,7 @@ msgid "Databases" msgstr "Tietokannat" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30 #: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 #: tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -1519,7 +1535,7 @@ msgid "Cannot connect: invalid settings." msgstr "Yhteyttä ei voitu muodostaa: virheelliset asetukset." #: libraries/auth/config.auth.lib.php:91 -#: libraries/auth/cookie.auth.lib.php:205 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:206 libraries/auth/http.auth.lib.php:64 #: test/theme.php:151 #, php-format msgid "Welcome to %s" @@ -1546,44 +1562,44 @@ msgstr "" "php-tiedostosta ja varmista, että ne vastaavat MySQL-palvelimen " "järjestelmänvalvojan antamia tietoja." -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:231 msgid "Log in" msgstr "Kirjaudu sisään" -#: libraries/auth/cookie.auth.lib.php:232 -#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:233 +#: libraries/auth/cookie.auth.lib.php:235 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:94 msgid "phpMyAdmin documentation" msgstr "phpMyAdminin ohjeet" -#: libraries/auth/cookie.auth.lib.php:244 #: libraries/auth/cookie.auth.lib.php:245 +#: libraries/auth/cookie.auth.lib.php:246 msgid "You can enter hostname/IP address and port separated by space." msgstr "" "Voit syöttää verkkotunnuksen/IP-osoitteen ja portin välilyönnillä erotettuna." -#: libraries/auth/cookie.auth.lib.php:244 +#: libraries/auth/cookie.auth.lib.php:245 msgid "Server:" msgstr "Palvelin" -#: libraries/auth/cookie.auth.lib.php:249 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Username:" msgstr "Käyttäjätunnus:" -#: libraries/auth/cookie.auth.lib.php:253 +#: libraries/auth/cookie.auth.lib.php:254 msgid "Password:" msgstr "Salasana:" -#: libraries/auth/cookie.auth.lib.php:260 +#: libraries/auth/cookie.auth.lib.php:261 msgid "Server Choice" msgstr "Valitse palvelin" -#: libraries/auth/cookie.auth.lib.php:306 libraries/header.inc.php:58 +#: libraries/auth/cookie.auth.lib.php:307 libraries/header.inc.php:58 msgid "Cookies must be enabled past this point." msgstr "Selaimessa on oltava evästeet päällä tästä lähtien." -#: libraries/auth/cookie.auth.lib.php:638 +#: libraries/auth/cookie.auth.lib.php:639 #: libraries/auth/signon.auth.lib.php:180 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" @@ -1591,7 +1607,7 @@ msgstr "" "Kirjautuminen ilman salasanaa on kielletty asetuksissa (katso " "AllowNoPassword)" -#: libraries/auth/cookie.auth.lib.php:642 +#: libraries/auth/cookie.auth.lib.php:643 #: libraries/auth/signon.auth.lib.php:184 #, php-format msgid "No activity within %s seconds; please log in again" @@ -1599,8 +1615,8 @@ msgstr "" "Yhteys on ollut toimettomana %s sekuntia tai kauemmin. Kirjaudu sisään " "uudestaan." -#: libraries/auth/cookie.auth.lib.php:652 -#: libraries/auth/cookie.auth.lib.php:654 +#: libraries/auth/cookie.auth.lib.php:653 +#: libraries/auth/cookie.auth.lib.php:655 #: libraries/auth/signon.auth.lib.php:190 msgid "Cannot log in to the MySQL server" msgstr "MySQL-palvelimelle ei voitu kirjautua" @@ -1720,7 +1736,7 @@ msgstr "Lähetetty" #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 #: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 -#: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 +#: libraries/sql_query_form.lib.php:421 libraries/sql_query_form.lib.php:424 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" msgstr "Ohjeet" @@ -1865,19 +1881,19 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "Toimintoon %s vaikuttaa tunnettu vika, katso %s" #: libraries/common.lib.php:2833 libraries/common.lib.php:2840 -#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 +#: libraries/db_links.inc.php:53 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 #: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 -#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:86 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "Toiminnot" -#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:265 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1893,36 +1909,31 @@ msgstr "Tapahtumat" msgid "Name" msgstr "Nimi" -#: libraries/db_links.inc.php:43 -#, php-format -msgid "Database %s has been dropped." -msgstr "Tietokanta %s on poistettu." - -#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 -#: libraries/db_links.inc.php:57 +#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43 +#: libraries/db_links.inc.php:44 msgid "Database seems to be empty!" msgstr "Tietokanta on tyhjä!" -#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/db_links.inc.php:66 libraries/relation.lib.php:137 #: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "Seuranta" -#: libraries/db_links.inc.php:84 +#: libraries/db_links.inc.php:71 msgid "Query" msgstr "Haku" -#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 +#: libraries/db_links.inc.php:76 libraries/relation.lib.php:133 msgid "Designer" msgstr "Suunnittelija" -#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:87 #: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Tuonti" -#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:65 #: server_privileges.php:110 server_privileges.php:1718 #: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" @@ -2092,7 +2103,7 @@ msgid "remember template" msgstr "muista pohja" #: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 -#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 +#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:509 msgid "Character set of the file:" msgstr "Tiedoston merkistö:" @@ -2150,7 +2161,7 @@ msgstr "" msgid "File to import" msgstr "Tuotava tiedosto" -#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:497 +#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:484 msgid "Location of the text file" msgstr "Tiedoston sijainti" @@ -2158,12 +2169,12 @@ msgstr "Tiedoston sijainti" msgid "File uploads are not allowed on this server." msgstr "Tällä palvelimella ei ole sallittu tiedostojen lähetystä." -#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 +#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:493 #: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "Tiedostojen lähetykseen valittua hakemistoa ei voida käyttää" -#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 +#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:496 #: tbl_change.php:925 msgid "web server upload directory" msgstr "palvelimen lähetyshakemisto" @@ -3575,7 +3586,7 @@ msgid "" "Please see the documentation on how to update your column_comments table" msgstr "Tarkista ohjeista, kuinka Column_comments-tauluja voi päivittää." -#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:403 msgid "Bookmarked SQL query" msgstr "Tallennettu SQL-kysely" @@ -3642,7 +3653,7 @@ msgstr "Isännän tila" msgid "Slave status" msgstr "Alipalvelimen tila" -#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:428 +#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:415 #: server_status.php:736 server_variables.php:51 msgid "Variable" msgstr "Muuttuja" @@ -3773,51 +3784,51 @@ msgstr "Ero" msgid "Target database" msgstr "Kohdetietokanta" -#: libraries/sql_query_form.lib.php:219 +#: libraries/sql_query_form.lib.php:217 #, php-format msgid "Run SQL query/queries on server %s" msgstr "Suorita SQL-kysely(jä) palvelimella %s" -#: libraries/sql_query_form.lib.php:236 libraries/sql_query_form.lib.php:261 +#: libraries/sql_query_form.lib.php:234 libraries/sql_query_form.lib.php:258 #, php-format msgid "Run SQL query/queries on database %s" msgstr "Suorita SQL-kyselyjä tietokannassa %s" -#: libraries/sql_query_form.lib.php:307 +#: libraries/sql_query_form.lib.php:294 #, fuzzy #| msgid "Column names" msgid "Columns" msgstr "Sarakkeiden nimet" -#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 +#: libraries/sql_query_form.lib.php:329 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "Tallenna SQL-kysely" -#: libraries/sql_query_form.lib.php:349 sql.php:669 +#: libraries/sql_query_form.lib.php:336 sql.php:669 msgid "Let every user access this bookmark" msgstr "Anna kaikkien käyttäjien käyttää tätä kirjanmerkkiä" -#: libraries/sql_query_form.lib.php:355 +#: libraries/sql_query_form.lib.php:342 msgid "Replace existing bookmark of same name" msgstr "Korvaa samanniminen, olemassa oleva kirjanmerkki" -#: libraries/sql_query_form.lib.php:371 +#: libraries/sql_query_form.lib.php:358 msgid "Do not overwrite this query from outside the window" msgstr "Älä korvaa tätä kyselyä ikkunan ulkopuolelta" -#: libraries/sql_query_form.lib.php:378 +#: libraries/sql_query_form.lib.php:365 msgid "Delimiter" msgstr "Erotinmerkki" -#: libraries/sql_query_form.lib.php:386 +#: libraries/sql_query_form.lib.php:373 msgid " Show this query here again " msgstr " Näytä kyselylause uudelleen " -#: libraries/sql_query_form.lib.php:445 +#: libraries/sql_query_form.lib.php:432 msgid "Submit" msgstr "Lähetä" -#: libraries/sql_query_form.lib.php:449 +#: libraries/sql_query_form.lib.php:436 msgid "View only" msgstr "Näytä" @@ -3887,12 +3898,11 @@ msgstr "" "SQL-tarkistinta ei voitu käynnistää. Tarkista, että tarpeelliset PHP-" "laajennukset on asennettu. Lisätietoa on %sohjeissa%s." -#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 -#: libraries/tbl_links.inc.php:139 +#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107 msgid "Table seems to be empty!" msgstr "Taulu on tyhjä!" -#: libraries/tbl_links.inc.php:147 +#: libraries/tbl_links.inc.php:115 #, php-format msgid "Tracking of %s.%s is activated." msgstr "Kohteen %s.%s seuranta on käytössä." @@ -8308,40 +8318,54 @@ msgstr "Taulun %s välimuisti on tyhjennetty" msgid "Flush the table (FLUSH)" msgstr "Tyhjennä taulun välimuisti (\"FLUSH\")" -#: tbl_operations.php:648 +#: tbl_operations.php:642 +#, fuzzy +#| msgid "Table name" +msgid "Table removal" +msgstr "Taulun nimi" + +#: tbl_operations.php:657 +msgid "Empty the table (TRUNCATE)" +msgstr "" + +#: tbl_operations.php:675 +msgid "Drop the table (DROP)" +msgstr "" + +#: tbl_operations.php:696 msgid "Partition maintenance" msgstr "Osituksen ylläpito" -#: tbl_operations.php:656 +#: tbl_operations.php:704 #, php-format msgid "Partition %s" msgstr "Ositus %s" -#: tbl_operations.php:659 +#: tbl_operations.php:707 msgid "Analyze" msgstr "Analysoi" -#: tbl_operations.php:660 +#: tbl_operations.php:708 msgid "Check" msgstr "Tarkasta" -#: tbl_operations.php:661 +#: tbl_operations.php:709 msgid "Optimize" msgstr "Optimoi" -#: tbl_operations.php:662 +#: tbl_operations.php:710 msgid "Rebuild" msgstr "Rakenna uudestaan" -#: tbl_operations.php:663 +#: tbl_operations.php:711 msgid "Repair" msgstr "Korjaa" -#: tbl_operations.php:675 +#: tbl_operations.php:723 msgid "Remove partitioning" msgstr "Poista ositus" -#: tbl_operations.php:701 +#: tbl_operations.php:749 msgid "Check referential integrity:" msgstr "Tarkista viitteiden eheys:" diff --git a/po/fr.po b/po/fr.po index 2a9685507..9a5ff158d 100644 --- a/po/fr.po +++ b/po/fr.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-26 17:18+0200\n" +"POT-Creation-Date: 2010-07-27 10:12+0200\n" "PO-Revision-Date: 2010-07-21 14:41+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: french \n" @@ -39,16 +39,16 @@ msgstr "" #: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 #: db_structure.php:89 db_structure.php:91 db_structure.php:102 #: db_structure.php:104 libraries/common.lib.php:2834 -#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Rechercher" #: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 -#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_operations.php:468 db_operations.php:492 db_search.php:344 #: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 #: libraries/Theme_Manager.class.php:305 -#: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 +#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:712 #: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 @@ -56,8 +56,8 @@ msgstr "Rechercher" #: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 #: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 -#: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: libraries/sql_query_form.lib.php:377 libraries/sql_query_form.lib.php:447 +#: libraries/sql_query_form.lib.php:512 libraries/tbl_properties.inc.php:780 #: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 #: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 #: server_privileges.php:663 server_privileges.php:1620 @@ -67,7 +67,7 @@ msgstr "Rechercher" #: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 #: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 -#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_operations.php:726 tbl_select.php:323 tbl_structure.php:559 #: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 #: view_create.php:181 view_operations.php:99 msgid "Go" @@ -248,47 +248,64 @@ msgstr "Commande" msgid "and then" msgstr "et ensuite" -#: db_operations.php:390 +#: db_operations.php:379 +#, fuzzy +#| msgid "Rename database to" +msgid "Remove database" +msgstr "Changer le nom de la base de données pour" + +#: db_operations.php:391 +#, php-format +msgid "Database %s has been dropped." +msgstr "La base de données %s a été effacée." + +#: db_operations.php:396 +#, fuzzy +#| msgid "Go to database" +msgid "Drop the database (DROP)" +msgstr "Aller à la base de données" + +#: db_operations.php:424 msgid "Copy database to" msgstr "Copier la base de données vers" -#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:431 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Structure seule" -#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:432 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Structure et données" -#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:433 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Données seulement" -#: db_operations.php:407 +#: db_operations.php:441 msgid "CREATE DATABASE before copying" msgstr "Faire CREATE DATABASE avant la copie" -#: db_operations.php:410 libraries/export/sql.php:51 +#: db_operations.php:444 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 #: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "Ajouter %s" -#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: db_operations.php:448 libraries/export/sql.php:77 tbl_operations.php:296 #: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Inclure la valeur courante de l'AUTO_INCREMENT" -#: db_operations.php:418 tbl_operations.php:542 +#: db_operations.php:452 tbl_operations.php:542 msgid "Add constraints" msgstr "Inclure les contraintes de clés étrangères" -#: db_operations.php:431 +#: db_operations.php:465 msgid "Switch to copied database" msgstr "Aller à la base de données copiée" -#: db_operations.php:451 libraries/Index.class.php:447 +#: db_operations.php:485 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 #: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 #: server_collations.php:53 server_collations.php:65 server_databases.php:108 @@ -297,7 +314,7 @@ msgstr "Aller à la base de données copiée" msgid "Collation" msgstr "Interclassement" -#: db_operations.php:464 pdf_schema.php:32 +#: db_operations.php:498 pdf_schema.php:32 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -309,7 +326,7 @@ msgstr "" "Certaines fonctionnalités ayant trait aux tables reliées sont désactivées. " "Pour une analyse du problème, cliquez %sici%s." -#: db_operations.php:497 +#: db_operations.php:531 msgid "Edit PDF Pages" msgstr "Préparer le schéma en PDF" @@ -364,7 +381,7 @@ msgstr[0] "%s table" msgstr[1] "%s tables" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -452,7 +469,7 @@ msgstr "Exécuter la requête" #: db_search.php:50 libraries/auth/config.auth.lib.php:83 #: libraries/auth/config.auth.lib.php:102 -#: libraries/auth/cookie.auth.lib.php:640 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:182 msgid "Access denied" msgstr "Accès refusé" @@ -494,7 +511,7 @@ msgid "Browse" msgstr "Afficher" #: db_search.php:254 libraries/display_tbl.lib.php:1163 -#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:440 #: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 @@ -534,14 +551,14 @@ msgstr "Dans la colonne: " #: db_structure.php:79 db_structure.php:80 db_structure.php:92 #: db_structure.php:93 db_structure.php:105 db_structure.php:106 -#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:311 +#: libraries/sql_query_form.lib.php:314 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Insérer" #: db_structure.php:81 db_structure.php:94 db_structure.php:107 #: libraries/common.lib.php:2832 libraries/common.lib.php:2839 -#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 +#: libraries/db_links.inc.php:48 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 @@ -554,8 +571,7 @@ msgstr "Structure" #: db_structure.php:96 db_structure.php:108 db_structure.php:109 #: db_structure.php:530 db_structure.php:531 db_tracking.php:86 #: libraries/Index.class.php:482 libraries/common.lib.php:1663 -#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 #: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 #: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" @@ -564,21 +580,21 @@ msgstr "Supprimer" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 +#: libraries/mult_submits.inc.php:38 msgid "Empty" msgstr "Vider" -#: db_structure.php:301 libraries/tbl_links.inc.php:98 +#: db_structure.php:301 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "La table %s a été vidée" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "View %s has been dropped" msgstr "La vue %s a été supprimée" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "La table %s a été effacée" @@ -670,7 +686,7 @@ msgstr "Réparer la table" msgid "Analyze table" msgstr "Analyser la table" -#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:56 #: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 #: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 #: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 @@ -1358,7 +1374,7 @@ msgid "Databases" msgstr "Bases de données" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30 #: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 #: tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -1463,7 +1479,7 @@ msgid "Cannot connect: invalid settings." msgstr "Connexion impossible: réglages incorrects." #: libraries/auth/config.auth.lib.php:91 -#: libraries/auth/cookie.auth.lib.php:205 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:206 libraries/auth/http.auth.lib.php:64 #: test/theme.php:151 #, php-format msgid "Welcome to %s" @@ -1490,45 +1506,45 @@ msgstr "" "dans votre configuration et vous assurer qu'elles correspondent aux " "informations fournies par l'administrateur du serveur MySQL." -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:231 msgid "Log in" msgstr "Connexion" -#: libraries/auth/cookie.auth.lib.php:232 -#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:233 +#: libraries/auth/cookie.auth.lib.php:235 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:94 msgid "phpMyAdmin documentation" msgstr "Documentation de phpMyAdmin" -#: libraries/auth/cookie.auth.lib.php:244 #: libraries/auth/cookie.auth.lib.php:245 +#: libraries/auth/cookie.auth.lib.php:246 msgid "You can enter hostname/IP address and port separated by space." msgstr "" "Vous pouvez entrer le nom du serveur ou son adresse IP, ainsi que le port " "séparé par un espace." -#: libraries/auth/cookie.auth.lib.php:244 +#: libraries/auth/cookie.auth.lib.php:245 msgid "Server:" msgstr "Serveur: " -#: libraries/auth/cookie.auth.lib.php:249 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Username:" msgstr "Utilisateur : " -#: libraries/auth/cookie.auth.lib.php:253 +#: libraries/auth/cookie.auth.lib.php:254 msgid "Password:" msgstr "Mot de passe : " -#: libraries/auth/cookie.auth.lib.php:260 +#: libraries/auth/cookie.auth.lib.php:261 msgid "Server Choice" msgstr "Choix du serveur" -#: libraries/auth/cookie.auth.lib.php:306 libraries/header.inc.php:58 +#: libraries/auth/cookie.auth.lib.php:307 libraries/header.inc.php:58 msgid "Cookies must be enabled past this point." msgstr "Vous devez accepter les cookies pour poursuivre." -#: libraries/auth/cookie.auth.lib.php:638 +#: libraries/auth/cookie.auth.lib.php:639 #: libraries/auth/signon.auth.lib.php:180 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" @@ -1536,14 +1552,14 @@ msgstr "" "La configuration interdit une connexion sans mot de passe (voir " "AllowNoPassword)" -#: libraries/auth/cookie.auth.lib.php:642 +#: libraries/auth/cookie.auth.lib.php:643 #: libraries/auth/signon.auth.lib.php:184 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "Aucune activité depuis %s secondes ou plus, veuillez vous reconnecter" -#: libraries/auth/cookie.auth.lib.php:652 -#: libraries/auth/cookie.auth.lib.php:654 +#: libraries/auth/cookie.auth.lib.php:653 +#: libraries/auth/cookie.auth.lib.php:655 #: libraries/auth/signon.auth.lib.php:190 msgid "Cannot log in to the MySQL server" msgstr "Connexion au serveur MySQL non permise" @@ -1666,7 +1682,7 @@ msgstr "fr" #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 #: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 -#: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 +#: libraries/sql_query_form.lib.php:421 libraries/sql_query_form.lib.php:424 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" msgstr "Documentation" @@ -1809,19 +1825,19 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "La fonctionnalité %s est affectée par une anomalie connue, voir %s" #: libraries/common.lib.php:2833 libraries/common.lib.php:2840 -#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 +#: libraries/db_links.inc.php:53 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 #: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 -#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:86 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "Opérations" -#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:265 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "Il manque l'extension %s. Veuillez vérifier votre configuration PHP." @@ -1837,36 +1853,31 @@ msgstr "Événements" msgid "Name" msgstr "Nom" -#: libraries/db_links.inc.php:43 -#, php-format -msgid "Database %s has been dropped." -msgstr "La base de données %s a été effacée." - -#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 -#: libraries/db_links.inc.php:57 +#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43 +#: libraries/db_links.inc.php:44 msgid "Database seems to be empty!" msgstr "La base de données semble vide !" -#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/db_links.inc.php:66 libraries/relation.lib.php:137 #: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "Suivi" -#: libraries/db_links.inc.php:84 +#: libraries/db_links.inc.php:71 msgid "Query" msgstr "Requête" -#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 +#: libraries/db_links.inc.php:76 libraries/relation.lib.php:133 msgid "Designer" msgstr "Concepteur" -#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:87 #: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importer" -#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:65 #: server_privileges.php:110 server_privileges.php:1718 #: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" @@ -2031,7 +2042,7 @@ msgid "remember template" msgstr "se souvenir du modèle" #: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 -#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 +#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:509 msgid "Character set of the file:" msgstr "Jeu de caractères du fichier: " @@ -2089,7 +2100,7 @@ msgstr "" msgid "File to import" msgstr "Fichier à importer" -#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:497 +#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:484 msgid "Location of the text file" msgstr "Emplacement du fichier texte" @@ -2097,12 +2108,12 @@ msgstr "Emplacement du fichier texte" msgid "File uploads are not allowed on this server." msgstr "Les téléchargements vers ce serveur ne sont pas permis." -#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 +#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:493 #: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "Le répertoire de transfert est inaccessible" -#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 +#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:496 #: tbl_change.php:925 msgid "web server upload directory" msgstr "répertoire de transfert du serveur web" @@ -3498,7 +3509,7 @@ msgid "" msgstr "" "La documentation indique comment mettre à jour votre table column_comments" -#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:403 msgid "Bookmarked SQL query" msgstr "Requêtes en signets" @@ -3572,7 +3583,7 @@ msgstr "État du maître" msgid "Slave status" msgstr "État de l'esclave" -#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:428 +#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:415 #: server_status.php:736 server_variables.php:51 msgid "Variable" msgstr "Variable" @@ -3703,49 +3714,49 @@ msgstr "Différence" msgid "Target database" msgstr "Base de données cible" -#: libraries/sql_query_form.lib.php:219 +#: libraries/sql_query_form.lib.php:217 #, 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:236 libraries/sql_query_form.lib.php:261 +#: libraries/sql_query_form.lib.php:234 libraries/sql_query_form.lib.php:258 #, php-format msgid "Run SQL query/queries on database %s" msgstr "Exécuter une ou des requêtes sur la base %s" -#: libraries/sql_query_form.lib.php:307 +#: libraries/sql_query_form.lib.php:294 msgid "Columns" msgstr "Colonnes" -#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 +#: libraries/sql_query_form.lib.php:329 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "Conserver cette requête dans les signets" -#: libraries/sql_query_form.lib.php:349 sql.php:669 +#: libraries/sql_query_form.lib.php:336 sql.php:669 msgid "Let every user access this bookmark" msgstr "Signet visible pour les autres utilisateurs" -#: libraries/sql_query_form.lib.php:355 +#: libraries/sql_query_form.lib.php:342 msgid "Replace existing bookmark of same name" msgstr "Remplacer un signet existant du même nom" -#: libraries/sql_query_form.lib.php:371 +#: libraries/sql_query_form.lib.php:358 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:378 +#: libraries/sql_query_form.lib.php:365 msgid "Delimiter" msgstr "Délimiteur" -#: libraries/sql_query_form.lib.php:386 +#: libraries/sql_query_form.lib.php:373 msgid " Show this query here again " msgstr "Afficher à nouveau la requête après exécution" -#: libraries/sql_query_form.lib.php:445 +#: libraries/sql_query_form.lib.php:432 msgid "Submit" msgstr "Exécuter" -#: libraries/sql_query_form.lib.php:449 +#: libraries/sql_query_form.lib.php:436 msgid "View only" msgstr "Voir uniquement" @@ -3816,12 +3827,11 @@ msgstr "" "Le validateur SQL n'a pas pu être initialisé. Vérifiez que les extensions " "PHP nécessaires ont bien été installées (voir la %sdocumentation%s)." -#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 -#: libraries/tbl_links.inc.php:139 +#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107 msgid "Table seems to be empty!" msgstr "La table semble vide !" -#: libraries/tbl_links.inc.php:147 +#: libraries/tbl_links.inc.php:115 #, php-format msgid "Tracking of %s.%s is activated." msgstr "Le suivi de %s.%s est activé." @@ -8129,40 +8139,54 @@ msgstr "La table %s a été rechargée" msgid "Flush the table (FLUSH)" msgstr "Recharger la table (FLUSH)" -#: tbl_operations.php:648 +#: tbl_operations.php:642 +#, fuzzy +#| msgid "Table name" +msgid "Table removal" +msgstr "Nom de la table" + +#: tbl_operations.php:657 +msgid "Empty the table (TRUNCATE)" +msgstr "" + +#: tbl_operations.php:675 +msgid "Drop the table (DROP)" +msgstr "" + +#: tbl_operations.php:696 msgid "Partition maintenance" msgstr "Gestion des partitions" -#: tbl_operations.php:656 +#: tbl_operations.php:704 #, php-format msgid "Partition %s" msgstr "Partition %s" -#: tbl_operations.php:659 +#: tbl_operations.php:707 msgid "Analyze" msgstr "Analyser" -#: tbl_operations.php:660 +#: tbl_operations.php:708 msgid "Check" msgstr "Vérifier" -#: tbl_operations.php:661 +#: tbl_operations.php:709 msgid "Optimize" msgstr "Optimiser" -#: tbl_operations.php:662 +#: tbl_operations.php:710 msgid "Rebuild" msgstr "Reconstruire" -#: tbl_operations.php:663 +#: tbl_operations.php:711 msgid "Repair" msgstr "Réparer" -#: tbl_operations.php:675 +#: tbl_operations.php:723 msgid "Remove partitioning" msgstr "Supprimer le partitionnement" -#: tbl_operations.php:701 +#: tbl_operations.php:749 msgid "Check referential integrity:" msgstr "Vérifier l'intégrité référentielle" diff --git a/po/gl.po b/po/gl.po index 3d2ff7ea4..a33f136d7 100644 --- a/po/gl.po +++ b/po/gl.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-26 17:18+0200\n" +"POT-Creation-Date: 2010-07-27 10:12+0200\n" "PO-Revision-Date: 2010-07-21 14:50+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: galician \n" @@ -40,16 +40,16 @@ msgstr "" #: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 #: db_structure.php:89 db_structure.php:91 db_structure.php:102 #: db_structure.php:104 libraries/common.lib.php:2834 -#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Procurar" #: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 -#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_operations.php:468 db_operations.php:492 db_search.php:344 #: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 #: libraries/Theme_Manager.class.php:305 -#: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 +#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:712 #: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 @@ -57,8 +57,8 @@ msgstr "Procurar" #: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 #: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 -#: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: libraries/sql_query_form.lib.php:377 libraries/sql_query_form.lib.php:447 +#: libraries/sql_query_form.lib.php:512 libraries/tbl_properties.inc.php:780 #: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 #: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 #: server_privileges.php:663 server_privileges.php:1620 @@ -68,7 +68,7 @@ msgstr "Procurar" #: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 #: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 -#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_operations.php:726 tbl_select.php:323 tbl_structure.php:559 #: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 #: view_create.php:181 view_operations.php:99 msgid "Go" @@ -251,47 +251,64 @@ msgstr "Orde" msgid "and then" msgstr "e despois" -#: db_operations.php:390 +#: db_operations.php:379 +#, fuzzy +#| msgid "Rename database to" +msgid "Remove database" +msgstr "Mudar o nome da base de datos para" + +#: db_operations.php:391 +#, php-format +msgid "Database %s has been dropped." +msgstr "Eliminouse a base de datos %s." + +#: db_operations.php:396 +#, fuzzy +#| msgid "Go to database" +msgid "Drop the database (DROP)" +msgstr "Ir á base de datos" + +#: db_operations.php:424 msgid "Copy database to" msgstr "Copiar a base de datos para" -#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:431 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Só a estrutura" -#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:432 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Estrutura e datos" -#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:433 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Só os datos" -#: db_operations.php:407 +#: db_operations.php:441 msgid "CREATE DATABASE before copying" msgstr "CREAR UNHA BASE DE DATOS antes de copiar" -#: db_operations.php:410 libraries/export/sql.php:51 +#: db_operations.php:444 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 #: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "Engadir %s" -#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: db_operations.php:448 libraries/export/sql.php:77 tbl_operations.php:296 #: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Engadir o valor incremental (AUTO_INCREMENT)" -#: db_operations.php:418 tbl_operations.php:542 +#: db_operations.php:452 tbl_operations.php:542 msgid "Add constraints" msgstr "Engadir limitacións" -#: db_operations.php:431 +#: db_operations.php:465 msgid "Switch to copied database" msgstr "Pasar á base de datos copiada" -#: db_operations.php:451 libraries/Index.class.php:447 +#: db_operations.php:485 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 #: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 #: server_collations.php:53 server_collations.php:65 server_databases.php:108 @@ -300,7 +317,7 @@ msgstr "Pasar á base de datos copiada" msgid "Collation" msgstr "Orde alfabética" -#: db_operations.php:464 pdf_schema.php:32 +#: db_operations.php:498 pdf_schema.php:32 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -312,7 +329,7 @@ msgstr "" "Desactivouse a funcionalidade adicional para o traballo con táboas " "vinculadas. Para saber o por que, prema %saquí%s." -#: db_operations.php:497 +#: db_operations.php:531 msgid "Edit PDF Pages" msgstr "Editar as páxinas PDF" @@ -368,7 +385,7 @@ msgstr[0] "%s táboa(s)" msgstr[1] "%s táboa(s)" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -460,7 +477,7 @@ msgstr "Enviar esta procura" #: db_search.php:50 libraries/auth/config.auth.lib.php:83 #: libraries/auth/config.auth.lib.php:102 -#: libraries/auth/cookie.auth.lib.php:640 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:182 msgid "Access denied" msgstr "Denegouse o acceso" @@ -503,7 +520,7 @@ msgid "Browse" msgstr "Visualizar" #: db_search.php:254 libraries/display_tbl.lib.php:1163 -#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:440 #: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 @@ -546,14 +563,14 @@ msgstr "No campo:" #: db_structure.php:79 db_structure.php:80 db_structure.php:92 #: db_structure.php:93 db_structure.php:105 db_structure.php:106 -#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:311 +#: libraries/sql_query_form.lib.php:314 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Inserir" #: db_structure.php:81 db_structure.php:94 db_structure.php:107 #: libraries/common.lib.php:2832 libraries/common.lib.php:2839 -#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 +#: libraries/db_links.inc.php:48 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 @@ -566,8 +583,7 @@ msgstr "Estrutura" #: db_structure.php:96 db_structure.php:108 db_structure.php:109 #: db_structure.php:530 db_structure.php:531 db_tracking.php:86 #: libraries/Index.class.php:482 libraries/common.lib.php:1663 -#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 #: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 #: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" @@ -576,21 +592,21 @@ msgstr "Eliminar" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 +#: libraries/mult_submits.inc.php:38 msgid "Empty" msgstr "Borrar" -#: db_structure.php:301 libraries/tbl_links.inc.php:98 +#: db_structure.php:301 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "Vaciouse a táboa %s" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "View %s has been dropped" msgstr "Deixouse a vista %s" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "Eliminouse a táboa %s" @@ -682,7 +698,7 @@ msgstr "Reparar a táboa" msgid "Analyze table" msgstr "Analizar a táboa" -#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:56 #: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 #: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 #: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 @@ -1414,7 +1430,7 @@ msgid "Databases" msgstr "Bases de datos" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30 #: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 #: tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -1522,7 +1538,7 @@ msgid "Cannot connect: invalid settings." msgstr "Non se pode conectar: os axustes non son válidos." #: libraries/auth/config.auth.lib.php:91 -#: libraries/auth/cookie.auth.lib.php:205 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:206 libraries/auth/http.auth.lib.php:64 #: test/theme.php:151 #, php-format msgid "Welcome to %s" @@ -1549,52 +1565,52 @@ msgstr "" "e o contrasinal no ficheiro config.inc.php e asegurarse de que corresponden " "coa información proporcionada polo administrador do servidor do MySQL." -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:231 msgid "Log in" msgstr "Entrada (login)" -#: libraries/auth/cookie.auth.lib.php:232 -#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:233 +#: libraries/auth/cookie.auth.lib.php:235 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:94 msgid "phpMyAdmin documentation" msgstr "Documentación do phpMyAdmin" -#: libraries/auth/cookie.auth.lib.php:244 #: libraries/auth/cookie.auth.lib.php:245 +#: libraries/auth/cookie.auth.lib.php:246 msgid "You can enter hostname/IP address and port separated by space." msgstr "" "Pode escribir o nome de servidor/enderezo IP e o porto separados por un " "espazo." -#: libraries/auth/cookie.auth.lib.php:244 +#: libraries/auth/cookie.auth.lib.php:245 msgid "Server:" msgstr "Servidor" -#: libraries/auth/cookie.auth.lib.php:249 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Username:" msgstr "Nome de usuario:" -#: libraries/auth/cookie.auth.lib.php:253 +#: libraries/auth/cookie.auth.lib.php:254 msgid "Password:" msgstr "Contrasinal:" -#: libraries/auth/cookie.auth.lib.php:260 +#: libraries/auth/cookie.auth.lib.php:261 msgid "Server Choice" msgstr "Escolla de servidor" -#: libraries/auth/cookie.auth.lib.php:306 libraries/header.inc.php:58 +#: libraries/auth/cookie.auth.lib.php:307 libraries/header.inc.php:58 msgid "Cookies must be enabled past this point." msgstr "A partir de aquí debe permitir cookies." -#: libraries/auth/cookie.auth.lib.php:638 +#: libraries/auth/cookie.auth.lib.php:639 #: libraries/auth/signon.auth.lib.php:180 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" "A configuración prohibe rexistrarse sen contrasinal (vexa AllowNoPassword)" -#: libraries/auth/cookie.auth.lib.php:642 +#: libraries/auth/cookie.auth.lib.php:643 #: libraries/auth/signon.auth.lib.php:184 #, php-format msgid "No activity within %s seconds; please log in again" @@ -1602,8 +1618,8 @@ msgstr "" "Non se rexistrou actividade ningunha desde hai %s segundos ou máis. Terá que " "entrar de novo" -#: libraries/auth/cookie.auth.lib.php:652 -#: libraries/auth/cookie.auth.lib.php:654 +#: libraries/auth/cookie.auth.lib.php:653 +#: libraries/auth/cookie.auth.lib.php:655 #: libraries/auth/signon.auth.lib.php:190 msgid "Cannot log in to the MySQL server" msgstr "Non se dá conectado co servidor de MySQL" @@ -1727,7 +1743,7 @@ msgstr "Enviado" #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 #: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 -#: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 +#: libraries/sql_query_form.lib.php:421 libraries/sql_query_form.lib.php:424 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" msgstr "Documentación" @@ -1872,19 +1888,19 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "A función %s vese afectada por un erro descoñecido; consulte %s" #: libraries/common.lib.php:2833 libraries/common.lib.php:2840 -#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 +#: libraries/db_links.inc.php:53 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 #: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 -#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:86 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "Operacións" -#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:265 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1900,36 +1916,31 @@ msgstr "Acontecementos" msgid "Name" msgstr "Nome" -#: libraries/db_links.inc.php:43 -#, php-format -msgid "Database %s has been dropped." -msgstr "Eliminouse a base de datos %s." - -#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 -#: libraries/db_links.inc.php:57 +#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43 +#: libraries/db_links.inc.php:44 msgid "Database seems to be empty!" msgstr "Parece ser que a táboa está baleira!" -#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/db_links.inc.php:66 libraries/relation.lib.php:137 #: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "Seguemento" -#: libraries/db_links.inc.php:84 +#: libraries/db_links.inc.php:71 msgid "Query" msgstr "Procurar cun exemplo" -#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 +#: libraries/db_links.inc.php:76 libraries/relation.lib.php:133 msgid "Designer" msgstr "Deseñador" -#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:87 #: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importar" -#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:65 #: server_privileges.php:110 server_privileges.php:1718 #: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" @@ -2099,7 +2110,7 @@ msgid "remember template" msgstr "lembrar o modelo" #: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 -#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 +#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:509 msgid "Character set of the file:" msgstr "Conxunto de caracteres do ficheiro:" @@ -2157,7 +2168,7 @@ msgstr "" msgid "File to import" msgstr "Ficheiro a importar" -#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:497 +#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:484 msgid "Location of the text file" msgstr "Localización do arquivo de texto" @@ -2165,12 +2176,12 @@ msgstr "Localización do arquivo de texto" msgid "File uploads are not allowed on this server." msgstr "Este servidor non admite a recepción de ficheiros." -#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 +#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:493 #: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "Non se pode acceder ao directorio que designou para os envíos" -#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 +#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:496 #: tbl_change.php:925 msgid "web server upload directory" msgstr "directorio de recepción do servidor web" @@ -3587,7 +3598,7 @@ msgid "" msgstr "" "Consulte a documentación para saber como actualizar a táboa Column_comments" -#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:403 msgid "Bookmarked SQL query" msgstr "Gardouse a procura de SQL" @@ -3655,7 +3666,7 @@ msgstr "Estado do mestre" msgid "Slave status" msgstr "Estado do escravo" -#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:428 +#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:415 #: server_status.php:736 server_variables.php:51 msgid "Variable" msgstr "Variábel" @@ -3786,51 +3797,51 @@ msgstr "Diferenza" msgid "Target database" msgstr "Base de datos de destino" -#: libraries/sql_query_form.lib.php:219 +#: libraries/sql_query_form.lib.php:217 #, php-format msgid "Run SQL query/queries on server %s" msgstr "Executar procura/s SQL no servidor %s" -#: libraries/sql_query_form.lib.php:236 libraries/sql_query_form.lib.php:261 +#: libraries/sql_query_form.lib.php:234 libraries/sql_query_form.lib.php:258 #, 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:307 +#: libraries/sql_query_form.lib.php:294 #, fuzzy #| msgid "Column names" msgid "Columns" msgstr "Nomes das columnas" -#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 +#: libraries/sql_query_form.lib.php:329 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "Gardar esta procura de SQL" -#: libraries/sql_query_form.lib.php:349 sql.php:669 +#: libraries/sql_query_form.lib.php:336 sql.php:669 msgid "Let every user access this bookmark" msgstr "Permitir que calquera usuario poida acceder a este marcador" -#: libraries/sql_query_form.lib.php:355 +#: libraries/sql_query_form.lib.php:342 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:371 +#: libraries/sql_query_form.lib.php:358 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:378 +#: libraries/sql_query_form.lib.php:365 msgid "Delimiter" msgstr "Delimitador" -#: libraries/sql_query_form.lib.php:386 +#: libraries/sql_query_form.lib.php:373 msgid " Show this query here again " msgstr " Mostrar esta procura aquí outra vez " -#: libraries/sql_query_form.lib.php:445 +#: libraries/sql_query_form.lib.php:432 msgid "Submit" msgstr "Enviar" -#: libraries/sql_query_form.lib.php:449 +#: libraries/sql_query_form.lib.php:436 msgid "View only" msgstr "Só visualizar" @@ -3903,12 +3914,11 @@ 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/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 -#: libraries/tbl_links.inc.php:139 +#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107 msgid "Table seems to be empty!" msgstr "Parece ser que a táboa está baleira!" -#: libraries/tbl_links.inc.php:147 +#: libraries/tbl_links.inc.php:115 #, php-format msgid "Tracking of %s.%s is activated." msgstr "Activouse o seguemento de %s.%s." @@ -8355,40 +8365,54 @@ msgstr "Fechouse a táboa %s" msgid "Flush the table (FLUSH)" msgstr "Fechar a táboa (\"FLUSH\")" -#: tbl_operations.php:648 +#: tbl_operations.php:642 +#, fuzzy +#| msgid "Table name" +msgid "Table removal" +msgstr "Nome da táboa" + +#: tbl_operations.php:657 +msgid "Empty the table (TRUNCATE)" +msgstr "" + +#: tbl_operations.php:675 +msgid "Drop the table (DROP)" +msgstr "" + +#: tbl_operations.php:696 msgid "Partition maintenance" msgstr "Mantemento da partición" -#: tbl_operations.php:656 +#: tbl_operations.php:704 #, php-format msgid "Partition %s" msgstr "Partición %s" -#: tbl_operations.php:659 +#: tbl_operations.php:707 msgid "Analyze" msgstr "Analizar" -#: tbl_operations.php:660 +#: tbl_operations.php:708 msgid "Check" msgstr "Comprobar" -#: tbl_operations.php:661 +#: tbl_operations.php:709 msgid "Optimize" msgstr "Optimizar" -#: tbl_operations.php:662 +#: tbl_operations.php:710 msgid "Rebuild" msgstr "Reconstruír" -#: tbl_operations.php:663 +#: tbl_operations.php:711 msgid "Repair" msgstr "Arranxar" -#: tbl_operations.php:675 +#: tbl_operations.php:723 msgid "Remove partitioning" msgstr "Eliminar particións" -#: tbl_operations.php:701 +#: tbl_operations.php:749 msgid "Check referential integrity:" msgstr "Comprobar a integridade das referencias:" diff --git a/po/he.po b/po/he.po index dcb7909a6..a272067d0 100644 --- a/po/he.po +++ b/po/he.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-26 17:18+0200\n" +"POT-Creation-Date: 2010-07-27 10:12+0200\n" "PO-Revision-Date: 2010-03-12 09:15+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: hebrew \n" @@ -35,16 +35,16 @@ msgstr "" #: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 #: db_structure.php:89 db_structure.php:91 db_structure.php:102 #: db_structure.php:104 libraries/common.lib.php:2834 -#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "חיפוש" #: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 -#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_operations.php:468 db_operations.php:492 db_search.php:344 #: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 #: libraries/Theme_Manager.class.php:305 -#: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 +#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:712 #: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 @@ -52,8 +52,8 @@ msgstr "חיפוש" #: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 #: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 -#: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: libraries/sql_query_form.lib.php:377 libraries/sql_query_form.lib.php:447 +#: libraries/sql_query_form.lib.php:512 libraries/tbl_properties.inc.php:780 #: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 #: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 #: server_privileges.php:663 server_privileges.php:1620 @@ -63,7 +63,7 @@ msgstr "חיפוש" #: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 #: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 -#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_operations.php:726 tbl_select.php:323 tbl_structure.php:559 #: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 #: view_create.php:181 view_operations.php:99 msgid "Go" @@ -244,47 +244,63 @@ msgstr "פקודה" msgid "and then" msgstr "ואז" -#: db_operations.php:390 +#: db_operations.php:379 +#, fuzzy +#| msgid "Rename database to" +msgid "Remove database" +msgstr "שינוי שם מאגר נתונים אל" + +#: db_operations.php:391 +#, php-format +msgid "Database %s has been dropped." +msgstr "מסד הנתונים %s נמחק." + +#: db_operations.php:396 +#, fuzzy +msgid "Drop the database (DROP)" +msgstr "אין מאגרי נתונים" + +#: db_operations.php:424 msgid "Copy database to" msgstr "העתקת מאגר נתונים אל" -#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:431 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "מבנה בלבד" -#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:432 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "מבנה ומידע" -#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:433 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "מידע בלבד" -#: db_operations.php:407 +#: db_operations.php:441 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE לפני העתקה" -#: db_operations.php:410 libraries/export/sql.php:51 +#: db_operations.php:444 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 #: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "" -#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: db_operations.php:448 libraries/export/sql.php:77 tbl_operations.php:296 #: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "הוספת ערך AUTO_INCREMENT (מספור אוטומטי)" -#: db_operations.php:418 tbl_operations.php:542 +#: db_operations.php:452 tbl_operations.php:542 msgid "Add constraints" msgstr "הוספת הגבלות" -#: db_operations.php:431 +#: db_operations.php:465 msgid "Switch to copied database" msgstr "מעבר למאגר נתונים שהועתק" -#: db_operations.php:451 libraries/Index.class.php:447 +#: db_operations.php:485 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 #: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 #: server_collations.php:53 server_collations.php:65 server_databases.php:108 @@ -293,7 +309,7 @@ msgstr "מעבר למאגר נתונים שהועתק" msgid "Collation" msgstr "קידוד" -#: db_operations.php:464 pdf_schema.php:32 +#: db_operations.php:498 pdf_schema.php:32 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -304,7 +320,7 @@ msgid "" msgstr "" "תכונות נוספות לעבודה עם טבלאות מקושרות בוטלו. לעוד מידע למה לחץ %sכאן%s." -#: db_operations.php:497 +#: db_operations.php:531 msgid "Edit PDF Pages" msgstr "עריכת דפי PDG" @@ -360,7 +376,7 @@ msgstr[0] "%s טבלאות" msgstr[1] "%s טבלאות" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -452,7 +468,7 @@ msgstr "שליחת שאילתה" #: db_search.php:50 libraries/auth/config.auth.lib.php:83 #: libraries/auth/config.auth.lib.php:102 -#: libraries/auth/cookie.auth.lib.php:640 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:182 msgid "Access denied" msgstr "גישה נדתחה" @@ -494,7 +510,7 @@ msgid "Browse" msgstr "עיון" #: db_search.php:254 libraries/display_tbl.lib.php:1163 -#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:440 #: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 @@ -537,14 +553,14 @@ msgstr "בתוך הטבלה/הטבלאות:" #: db_structure.php:79 db_structure.php:80 db_structure.php:92 #: db_structure.php:93 db_structure.php:105 db_structure.php:106 -#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:311 +#: libraries/sql_query_form.lib.php:314 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "הכנסה" #: db_structure.php:81 db_structure.php:94 db_structure.php:107 #: libraries/common.lib.php:2832 libraries/common.lib.php:2839 -#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 +#: libraries/db_links.inc.php:48 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 @@ -557,8 +573,7 @@ msgstr "מבנה" #: db_structure.php:96 db_structure.php:108 db_structure.php:109 #: db_structure.php:530 db_structure.php:531 db_tracking.php:86 #: libraries/Index.class.php:482 libraries/common.lib.php:1663 -#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 #: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 #: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" @@ -567,21 +582,21 @@ msgstr "הסרה" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 +#: libraries/mult_submits.inc.php:38 msgid "Empty" msgstr "ריקון" -#: db_structure.php:301 libraries/tbl_links.inc.php:98 +#: db_structure.php:301 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "טבלה %s רוקנה" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, fuzzy, php-format msgid "View %s has been dropped" msgstr "שדה %s נמחק" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "טבלה %s נמחקה" @@ -672,7 +687,7 @@ msgstr "תיקון טבלה" msgid "Analyze table" msgstr "ניתוח טבלה" -#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:56 #: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 #: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 #: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 @@ -1389,7 +1404,7 @@ msgid "Databases" msgstr "מאגרי נתונים" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30 #: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 #: tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -1494,7 +1509,7 @@ msgid "Cannot connect: invalid settings." msgstr "חיבור נכשל: הגדרות לא תקינות." #: libraries/auth/config.auth.lib.php:91 -#: libraries/auth/cookie.auth.lib.php:205 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:206 libraries/auth/http.auth.lib.php:64 #: test/theme.php:151 #, php-format msgid "Welcome to %s" @@ -1518,56 +1533,56 @@ msgstr "" "כתובת השרת, שם משתמש והסיסמא בקובץ config.inc.php ולוודא כי הם תואמים למידע " "שקיבלת ע\"י אחראי השרת של MySQL." -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:231 msgid "Log in" msgstr "כניסה" -#: libraries/auth/cookie.auth.lib.php:232 -#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:233 +#: libraries/auth/cookie.auth.lib.php:235 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:94 msgid "phpMyAdmin documentation" msgstr "תיעוד phpMyAdmin" -#: libraries/auth/cookie.auth.lib.php:244 #: libraries/auth/cookie.auth.lib.php:245 +#: libraries/auth/cookie.auth.lib.php:246 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:244 +#: libraries/auth/cookie.auth.lib.php:245 msgid "Server:" msgstr "שרת" -#: libraries/auth/cookie.auth.lib.php:249 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Username:" msgstr "שם משתמש:" -#: libraries/auth/cookie.auth.lib.php:253 +#: libraries/auth/cookie.auth.lib.php:254 msgid "Password:" msgstr "סיסמא:" -#: libraries/auth/cookie.auth.lib.php:260 +#: libraries/auth/cookie.auth.lib.php:261 msgid "Server Choice" msgstr "בחירת שרת" -#: libraries/auth/cookie.auth.lib.php:306 libraries/header.inc.php:58 +#: libraries/auth/cookie.auth.lib.php:307 libraries/header.inc.php:58 msgid "Cookies must be enabled past this point." msgstr "עוגיות (Cookies) חייבות לפעול מנקודה זאת." -#: libraries/auth/cookie.auth.lib.php:638 +#: libraries/auth/cookie.auth.lib.php:639 #: libraries/auth/signon.auth.lib.php:180 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" -#: libraries/auth/cookie.auth.lib.php:642 +#: libraries/auth/cookie.auth.lib.php:643 #: libraries/auth/signon.auth.lib.php:184 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" -#: libraries/auth/cookie.auth.lib.php:652 -#: libraries/auth/cookie.auth.lib.php:654 +#: libraries/auth/cookie.auth.lib.php:653 +#: libraries/auth/cookie.auth.lib.php:655 #: libraries/auth/signon.auth.lib.php:190 msgid "Cannot log in to the MySQL server" msgstr "נכשל בכניסה לשרת MySQL" @@ -1684,7 +1699,7 @@ msgstr "נשלח" #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 #: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 -#: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 +#: libraries/sql_query_form.lib.php:421 libraries/sql_query_form.lib.php:424 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" msgstr "תיעוד" @@ -1828,19 +1843,19 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/common.lib.php:2833 libraries/common.lib.php:2840 -#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 +#: libraries/db_links.inc.php:53 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 #: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 -#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:86 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "פעולות" -#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:265 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1856,37 +1871,32 @@ msgstr "" msgid "Name" msgstr "שם" -#: libraries/db_links.inc.php:43 -#, php-format -msgid "Database %s has been dropped." -msgstr "מסד הנתונים %s נמחק." - -#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 -#: libraries/db_links.inc.php:57 +#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43 +#: libraries/db_links.inc.php:44 msgid "Database seems to be empty!" msgstr "" -#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/db_links.inc.php:66 libraries/relation.lib.php:137 #: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:84 +#: libraries/db_links.inc.php:71 msgid "Query" msgstr "שאילתה" -#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 +#: libraries/db_links.inc.php:76 libraries/relation.lib.php:133 msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:87 #: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 #, fuzzy msgid "Import" msgstr "ייצוא" -#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:65 #: server_privileges.php:110 server_privileges.php:1718 #: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" @@ -2051,7 +2061,7 @@ msgid "remember template" msgstr "זכור תבנית" #: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 -#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 +#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:509 msgid "Character set of the file:" msgstr "חבילת הקידוד של הקובץ:" @@ -2104,7 +2114,7 @@ msgstr "" msgid "File to import" msgstr "" -#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:497 +#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:484 msgid "Location of the text file" msgstr "מיקום של קובץ טקסט" @@ -2112,12 +2122,12 @@ msgstr "מיקום של קובץ טקסט" msgid "File uploads are not allowed on this server." msgstr "" -#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 +#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:493 #: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "" -#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 +#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:496 #: tbl_change.php:925 #, fuzzy msgid "web server upload directory" @@ -3471,7 +3481,7 @@ msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" -#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:403 msgid "Bookmarked SQL query" msgstr "שאילתות SQL מועדפות" @@ -3536,7 +3546,7 @@ msgstr "" msgid "Slave status" msgstr "" -#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:428 +#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:415 #: server_status.php:736 server_variables.php:51 msgid "Variable" msgstr "משתנה" @@ -3666,51 +3676,51 @@ msgstr "" msgid "Target database" msgstr "חפש במסד הנתונים" -#: libraries/sql_query_form.lib.php:219 +#: libraries/sql_query_form.lib.php:217 #, fuzzy, php-format msgid "Run SQL query/queries on server %s" msgstr "הרצת את שאילתה/שאילתות על מסד הנתונים %s" -#: libraries/sql_query_form.lib.php:236 libraries/sql_query_form.lib.php:261 +#: libraries/sql_query_form.lib.php:234 libraries/sql_query_form.lib.php:258 #, php-format msgid "Run SQL query/queries on database %s" msgstr "הרצת את שאילתה/שאילתות על מסד הנתונים %s" -#: libraries/sql_query_form.lib.php:307 +#: libraries/sql_query_form.lib.php:294 #, fuzzy #| msgid "Column names" msgid "Columns" msgstr "שמות עמודה" -#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 +#: libraries/sql_query_form.lib.php:329 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "הכנס שאילתת SQL זאת למועדפים" -#: libraries/sql_query_form.lib.php:349 sql.php:669 +#: libraries/sql_query_form.lib.php:336 sql.php:669 msgid "Let every user access this bookmark" msgstr "אפשר לכל משתמש לגשת לכתובת מועדפת זאת" -#: libraries/sql_query_form.lib.php:355 +#: libraries/sql_query_form.lib.php:342 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/sql_query_form.lib.php:371 +#: libraries/sql_query_form.lib.php:358 msgid "Do not overwrite this query from outside the window" msgstr "אל תכתוב מחדש על שאילתה זאת מחוץ לחלון זה" -#: libraries/sql_query_form.lib.php:378 +#: libraries/sql_query_form.lib.php:365 msgid "Delimiter" msgstr "" -#: libraries/sql_query_form.lib.php:386 +#: libraries/sql_query_form.lib.php:373 msgid " Show this query here again " msgstr " הראה את שאילתה כאן שוב " -#: libraries/sql_query_form.lib.php:445 +#: libraries/sql_query_form.lib.php:432 msgid "Submit" msgstr "שליחה" -#: libraries/sql_query_form.lib.php:449 +#: libraries/sql_query_form.lib.php:436 msgid "View only" msgstr "ראה רק" @@ -3768,12 +3778,11 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" -#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 -#: libraries/tbl_links.inc.php:139 +#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107 msgid "Table seems to be empty!" msgstr "" -#: libraries/tbl_links.inc.php:147 +#: libraries/tbl_links.inc.php:115 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" @@ -7713,43 +7722,55 @@ msgstr "טבלה %s אופסה" msgid "Flush the table (FLUSH)" msgstr "ריקון טבלה (\"FLUSH\")" -#: tbl_operations.php:648 +#: tbl_operations.php:642 +msgid "Table removal" +msgstr "" + +#: tbl_operations.php:657 +msgid "Empty the table (TRUNCATE)" +msgstr "" + +#: tbl_operations.php:675 +msgid "Drop the table (DROP)" +msgstr "" + +#: tbl_operations.php:696 #, fuzzy msgid "Partition maintenance" msgstr "אחזקת טבלה" -#: tbl_operations.php:656 +#: tbl_operations.php:704 #, php-format msgid "Partition %s" msgstr "" -#: tbl_operations.php:659 +#: tbl_operations.php:707 msgid "Analyze" msgstr "" -#: tbl_operations.php:660 +#: tbl_operations.php:708 #, fuzzy msgid "Check" msgstr "צ'יכית" -#: tbl_operations.php:661 +#: tbl_operations.php:709 msgid "Optimize" msgstr "" -#: tbl_operations.php:662 +#: tbl_operations.php:710 msgid "Rebuild" msgstr "" -#: tbl_operations.php:663 +#: tbl_operations.php:711 #, fuzzy msgid "Repair" msgstr "תיקון טבלה" -#: tbl_operations.php:675 +#: tbl_operations.php:723 msgid "Remove partitioning" msgstr "" -#: tbl_operations.php:701 +#: tbl_operations.php:749 msgid "Check referential integrity:" msgstr "" diff --git a/po/hi.po b/po/hi.po index 0b2e7e6e1..b2551c572 100644 --- a/po/hi.po +++ b/po/hi.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-26 17:18+0200\n" +"POT-Creation-Date: 2010-07-27 10:12+0200\n" "PO-Revision-Date: 2010-05-21 05:48+0200\n" "Last-Translator: \n" "Language-Team: hindi \n" @@ -38,16 +38,16 @@ msgstr "" #: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 #: db_structure.php:89 db_structure.php:91 db_structure.php:102 #: db_structure.php:104 libraries/common.lib.php:2834 -#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "खोजें" #: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 -#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_operations.php:468 db_operations.php:492 db_search.php:344 #: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 #: libraries/Theme_Manager.class.php:305 -#: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 +#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:712 #: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 @@ -55,8 +55,8 @@ msgstr "खोजें" #: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 #: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 -#: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: libraries/sql_query_form.lib.php:377 libraries/sql_query_form.lib.php:447 +#: libraries/sql_query_form.lib.php:512 libraries/tbl_properties.inc.php:780 #: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 #: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 #: server_privileges.php:663 server_privileges.php:1620 @@ -66,7 +66,7 @@ msgstr "खोजें" #: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 #: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 -#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_operations.php:726 tbl_select.php:323 tbl_structure.php:559 #: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 #: view_create.php:181 view_operations.php:99 msgid "Go" @@ -249,47 +249,64 @@ msgstr "आदेश" msgid "and then" msgstr "और फिर" -#: db_operations.php:390 +#: db_operations.php:379 +#, fuzzy +#| msgid "Rename database to" +msgid "Remove database" +msgstr "डेटाबेस का नाम बदल कर ____ रखें" + +#: db_operations.php:391 +#, php-format +msgid "Database %s has been dropped." +msgstr "डाटाबेस %s को ड्रोप कर दिया ।" + +#: db_operations.php:396 +#, fuzzy +#| msgid "Copy database to" +msgid "Drop the database (DROP)" +msgstr "डेटाबेस को ______ में कॉपी करें" + +#: db_operations.php:424 msgid "Copy database to" msgstr "डेटाबेस को ______ में कॉपी करें" -#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:431 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "केवल संरचना" -#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:432 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "संरचना और डाटा" -#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:433 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "केवल डाटा" -#: db_operations.php:407 +#: db_operations.php:441 msgid "CREATE DATABASE before copying" msgstr "डेटाबेस कॉपी करने से पहले डेटाबेस का निर्माण करें" -#: db_operations.php:410 libraries/export/sql.php:51 +#: db_operations.php:444 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 #: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "%s जोडें" -#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: db_operations.php:448 libraries/export/sql.php:77 tbl_operations.php:296 #: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT मूल्य जोडें" -#: db_operations.php:418 tbl_operations.php:542 +#: db_operations.php:452 tbl_operations.php:542 msgid "Add constraints" msgstr "शर्तें जोडें" -#: db_operations.php:431 +#: db_operations.php:465 msgid "Switch to copied database" msgstr "नक़ल किये गए डाटाबेस पर जायें" -#: db_operations.php:451 libraries/Index.class.php:447 +#: db_operations.php:485 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 #: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 #: server_collations.php:53 server_collations.php:65 server_databases.php:108 @@ -298,7 +315,7 @@ msgstr "नक़ल किये गए डाटाबेस पर जाय msgid "Collation" msgstr "क्रम में करें" -#: db_operations.php:464 pdf_schema.php:32 +#: db_operations.php:498 pdf_schema.php:32 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -310,7 +327,7 @@ msgstr "" "लिंक्ड तालिकाओं के साथ काम करने के लिए अतिरिक्त सुविधाओं को निष्क्रिय कर दिया गया है. " "क्यों ये किया गया है, जानने के लिए %shere%s पर क्लिक करें." -#: db_operations.php:497 +#: db_operations.php:531 msgid "Edit PDF Pages" msgstr "पीडीएफ पृष्ठों को संपादित करें" @@ -366,7 +383,7 @@ msgstr[0] " %s टेबल(s)" msgstr[1] " %s टेबल(s)" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -458,7 +475,7 @@ msgstr "प्रश्न प्रस्तुत करें" #: db_search.php:50 libraries/auth/config.auth.lib.php:83 #: libraries/auth/config.auth.lib.php:102 -#: libraries/auth/cookie.auth.lib.php:640 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:182 msgid "Access denied" msgstr "प्रवेश निषेध" @@ -501,7 +518,7 @@ msgid "Browse" msgstr "ब्राउज़" #: db_search.php:254 libraries/display_tbl.lib.php:1163 -#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:440 #: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 @@ -544,14 +561,14 @@ msgstr "क्षेत्र के अंदर:" #: db_structure.php:79 db_structure.php:80 db_structure.php:92 #: db_structure.php:93 db_structure.php:105 db_structure.php:106 -#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:311 +#: libraries/sql_query_form.lib.php:314 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "इनसर्ट" #: db_structure.php:81 db_structure.php:94 db_structure.php:107 #: libraries/common.lib.php:2832 libraries/common.lib.php:2839 -#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 +#: libraries/db_links.inc.php:48 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 @@ -564,8 +581,7 @@ msgstr "संरचना" #: db_structure.php:96 db_structure.php:108 db_structure.php:109 #: db_structure.php:530 db_structure.php:531 db_tracking.php:86 #: libraries/Index.class.php:482 libraries/common.lib.php:1663 -#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 #: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 #: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" @@ -574,21 +590,21 @@ msgstr "छोड़ें" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 +#: libraries/mult_submits.inc.php:38 msgid "Empty" msgstr "खाली करें" -#: db_structure.php:301 libraries/tbl_links.inc.php:98 +#: db_structure.php:301 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr " टेबल %s को खाली किया गया है." -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "View %s has been dropped" msgstr "द्रश्य %s रद्द दिया गया है." -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr " टेबल %s को रद्द किया गया है." @@ -678,7 +694,7 @@ msgstr " टेबल को टीक करें" msgid "Analyze table" msgstr "टेबल का विश्लेषण करें" -#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:56 #: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 #: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 #: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 @@ -1351,7 +1367,7 @@ msgid "Databases" msgstr " डाटाबेस" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30 #: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 #: tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -1454,7 +1470,7 @@ msgid "Cannot connect: invalid settings." msgstr "अमान्य सेटिंग्स: कनेक्ट नहीं कर सकते हैं" #: libraries/auth/config.auth.lib.php:91 -#: libraries/auth/cookie.auth.lib.php:205 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:206 libraries/auth/http.auth.lib.php:64 #: test/theme.php:151 #, php-format msgid "Welcome to %s" @@ -1480,56 +1496,56 @@ msgstr "" "अपने मेजबान विन्यास में, उपयोगकर्ता नाम और पासवर्ड की जाँच करें और इत्मीनान कर ले की ये " "उपयोगकरता नाम और पासवर्ड MySQL सर्वर के व्यवस्थापक द्वारा दी गई जानकारी के अनुरूप हैं." -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:231 msgid "Log in" msgstr "लोगिन" -#: libraries/auth/cookie.auth.lib.php:232 -#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:233 +#: libraries/auth/cookie.auth.lib.php:235 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:94 msgid "phpMyAdmin documentation" msgstr "phpMyAdmin दस्तावेज़ीकरण" -#: libraries/auth/cookie.auth.lib.php:244 #: libraries/auth/cookie.auth.lib.php:245 +#: libraries/auth/cookie.auth.lib.php:246 msgid "You can enter hostname/IP address and port separated by space." msgstr "आप होस्टनाम / आईपी पता और पोर्ट स्पचे से अलग कर के दाल सकते हैं." -#: libraries/auth/cookie.auth.lib.php:244 +#: libraries/auth/cookie.auth.lib.php:245 msgid "Server:" msgstr "सर्वर:" -#: libraries/auth/cookie.auth.lib.php:249 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Username:" msgstr "उपयोक्तानाम:" -#: libraries/auth/cookie.auth.lib.php:253 +#: libraries/auth/cookie.auth.lib.php:254 msgid "Password:" msgstr "पासव्रड:" -#: libraries/auth/cookie.auth.lib.php:260 +#: libraries/auth/cookie.auth.lib.php:261 msgid "Server Choice" msgstr "सर्वर चुनिये" -#: libraries/auth/cookie.auth.lib.php:306 libraries/header.inc.php:58 +#: libraries/auth/cookie.auth.lib.php:307 libraries/header.inc.php:58 msgid "Cookies must be enabled past this point." msgstr "कुकीज़ इस बिंदु अतीत सक्षम होना चाहिए." -#: libraries/auth/cookie.auth.lib.php:638 +#: libraries/auth/cookie.auth.lib.php:639 #: libraries/auth/signon.auth.lib.php:180 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "पासवर्ड के बिना लॉग इन विन्यास से मना किया गया है (AllowNoPassword देखें)." -#: libraries/auth/cookie.auth.lib.php:642 +#: libraries/auth/cookie.auth.lib.php:643 #: libraries/auth/signon.auth.lib.php:184 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "%s सेकंड के भीतर कोई गतिविधि नहीं है. कृपया फिर से लोगिन करें." -#: libraries/auth/cookie.auth.lib.php:652 -#: libraries/auth/cookie.auth.lib.php:654 +#: libraries/auth/cookie.auth.lib.php:653 +#: libraries/auth/cookie.auth.lib.php:655 #: libraries/auth/signon.auth.lib.php:190 msgid "Cannot log in to the MySQL server" msgstr "MySQL सर्वर में प्रवेश नहीं कर सकते" @@ -1640,7 +1656,7 @@ msgstr "इंग्लिश" #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 #: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 -#: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 +#: libraries/sql_query_form.lib.php:421 libraries/sql_query_form.lib.php:424 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" msgstr "डोक्युमेंटेशन" @@ -1781,19 +1797,19 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/common.lib.php:2833 libraries/common.lib.php:2840 -#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 +#: libraries/db_links.inc.php:53 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 #: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "" -#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 -#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:86 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "कार्रवाई" -#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:265 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1809,36 +1825,31 @@ msgstr "" msgid "Name" msgstr "नाम" -#: libraries/db_links.inc.php:43 -#, php-format -msgid "Database %s has been dropped." -msgstr "डाटाबेस %s को ड्रोप कर दिया ।" - -#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 -#: libraries/db_links.inc.php:57 +#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43 +#: libraries/db_links.inc.php:44 msgid "Database seems to be empty!" msgstr "" -#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/db_links.inc.php:66 libraries/relation.lib.php:137 #: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:84 +#: libraries/db_links.inc.php:71 msgid "Query" msgstr "क्वरी" -#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 +#: libraries/db_links.inc.php:76 libraries/relation.lib.php:133 msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:87 #: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "" -#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:65 #: server_privileges.php:110 server_privileges.php:1718 #: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" @@ -2001,7 +2012,7 @@ msgid "remember template" msgstr "" #: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 -#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 +#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:509 msgid "Character set of the file:" msgstr "" @@ -2054,7 +2065,7 @@ msgstr "" msgid "File to import" msgstr "" -#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:497 +#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:484 msgid "Location of the text file" msgstr "" @@ -2062,12 +2073,12 @@ msgstr "" msgid "File uploads are not allowed on this server." msgstr "" -#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 +#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:493 #: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "" -#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 +#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:496 #: tbl_change.php:925 msgid "web server upload directory" msgstr "" @@ -3406,7 +3417,7 @@ msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" -#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:403 msgid "Bookmarked SQL query" msgstr "बुकमार्क किया हुआ SQL-क्वरी" @@ -3471,7 +3482,7 @@ msgstr "" msgid "Slave status" msgstr "" -#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:428 +#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:415 #: server_status.php:736 server_variables.php:51 msgid "Variable" msgstr "" @@ -3598,51 +3609,51 @@ msgstr "" msgid "Target database" msgstr "" -#: libraries/sql_query_form.lib.php:219 +#: libraries/sql_query_form.lib.php:217 #, php-format msgid "Run SQL query/queries on server %s" msgstr "" -#: libraries/sql_query_form.lib.php:236 libraries/sql_query_form.lib.php:261 +#: libraries/sql_query_form.lib.php:234 libraries/sql_query_form.lib.php:258 #, php-format msgid "Run SQL query/queries on database %s" msgstr "डाटाबेस %s में SQL query/queries चलाइये " -#: libraries/sql_query_form.lib.php:307 +#: libraries/sql_query_form.lib.php:294 #, fuzzy #| msgid "Column names" msgid "Columns" msgstr "कोलम के नाम" -#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 +#: libraries/sql_query_form.lib.php:329 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "इस SQL-क्वरी को बुकमार्क कीजिये " -#: libraries/sql_query_form.lib.php:349 sql.php:669 +#: libraries/sql_query_form.lib.php:336 sql.php:669 msgid "Let every user access this bookmark" msgstr "हर उपयोकर्ता को अनुमति दें इस बुकमार्क का उपयोग करने के लिए" -#: libraries/sql_query_form.lib.php:355 +#: libraries/sql_query_form.lib.php:342 msgid "Replace existing bookmark of same name" msgstr "एक ही नाम के सभी बुकमार्क्स बदल दें" -#: libraries/sql_query_form.lib.php:371 +#: libraries/sql_query_form.lib.php:358 msgid "Do not overwrite this query from outside the window" msgstr "" -#: libraries/sql_query_form.lib.php:378 +#: libraries/sql_query_form.lib.php:365 msgid "Delimiter" msgstr "" -#: libraries/sql_query_form.lib.php:386 +#: libraries/sql_query_form.lib.php:373 msgid " Show this query here again " msgstr " यह query वापस यहीं दिखायें " -#: libraries/sql_query_form.lib.php:445 +#: libraries/sql_query_form.lib.php:432 msgid "Submit" msgstr "" -#: libraries/sql_query_form.lib.php:449 +#: libraries/sql_query_form.lib.php:436 msgid "View only" msgstr "केवल देखिये" @@ -3700,12 +3711,11 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" -#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 -#: libraries/tbl_links.inc.php:139 +#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107 msgid "Table seems to be empty!" msgstr "" -#: libraries/tbl_links.inc.php:147 +#: libraries/tbl_links.inc.php:115 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" @@ -7557,40 +7567,52 @@ msgstr " टेबल %s को flush किया" msgid "Flush the table (FLUSH)" msgstr " टेबल को Flush करें (\"FLUSH\")" -#: tbl_operations.php:648 +#: tbl_operations.php:642 +msgid "Table removal" +msgstr "" + +#: tbl_operations.php:657 +msgid "Empty the table (TRUNCATE)" +msgstr "" + +#: tbl_operations.php:675 +msgid "Drop the table (DROP)" +msgstr "" + +#: tbl_operations.php:696 msgid "Partition maintenance" msgstr "" -#: tbl_operations.php:656 +#: tbl_operations.php:704 #, php-format msgid "Partition %s" msgstr "" -#: tbl_operations.php:659 +#: tbl_operations.php:707 msgid "Analyze" msgstr "विश्लेषण" -#: tbl_operations.php:660 +#: tbl_operations.php:708 msgid "Check" msgstr "" -#: tbl_operations.php:661 +#: tbl_operations.php:709 msgid "Optimize" msgstr "" -#: tbl_operations.php:662 +#: tbl_operations.php:710 msgid "Rebuild" msgstr "" -#: tbl_operations.php:663 +#: tbl_operations.php:711 msgid "Repair" msgstr "" -#: tbl_operations.php:675 +#: tbl_operations.php:723 msgid "Remove partitioning" msgstr "" -#: tbl_operations.php:701 +#: tbl_operations.php:749 msgid "Check referential integrity:" msgstr "" diff --git a/po/hr.po b/po/hr.po index 6fbec3868..80a48a3d0 100644 --- a/po/hr.po +++ b/po/hr.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-26 17:18+0200\n" +"POT-Creation-Date: 2010-07-27 10:12+0200\n" "PO-Revision-Date: 2010-07-21 14:54+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: croatian \n" @@ -40,16 +40,16 @@ msgstr "" #: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 #: db_structure.php:89 db_structure.php:91 db_structure.php:102 #: db_structure.php:104 libraries/common.lib.php:2834 -#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Traži" #: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 -#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_operations.php:468 db_operations.php:492 db_search.php:344 #: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 #: libraries/Theme_Manager.class.php:305 -#: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 +#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:712 #: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 @@ -57,8 +57,8 @@ msgstr "Traži" #: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 #: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 -#: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: libraries/sql_query_form.lib.php:377 libraries/sql_query_form.lib.php:447 +#: libraries/sql_query_form.lib.php:512 libraries/tbl_properties.inc.php:780 #: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 #: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 #: server_privileges.php:663 server_privileges.php:1620 @@ -68,7 +68,7 @@ msgstr "Traži" #: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 #: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 -#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_operations.php:726 tbl_select.php:323 tbl_structure.php:559 #: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 #: view_create.php:181 view_operations.php:99 msgid "Go" @@ -251,47 +251,63 @@ msgstr "Naredba" msgid "and then" msgstr "i potom" -#: db_operations.php:390 +#: db_operations.php:379 +#, fuzzy +#| msgid "Rename database to" +msgid "Remove database" +msgstr "Preimenuj bazu podataka u" + +#: db_operations.php:391 +#, php-format +msgid "Database %s has been dropped." +msgstr "Baza podataka %s je odbačena." + +#: db_operations.php:396 +#, fuzzy +msgid "Drop the database (DROP)" +msgstr "Nema baza podataka" + +#: db_operations.php:424 msgid "Copy database to" msgstr "Kopiraj bazu podataka u" -#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:431 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Samo strukturu" -#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:432 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Strukturu i podatke" -#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:433 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Samo podatke" -#: db_operations.php:407 +#: db_operations.php:441 msgid "CREATE DATABASE before copying" msgstr "Prije kopiranja izradi bazu podataka (CREATE DATABASE)" -#: db_operations.php:410 libraries/export/sql.php:51 +#: db_operations.php:444 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 #: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "Dodaj %s" -#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: db_operations.php:448 libraries/export/sql.php:77 tbl_operations.php:296 #: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Dodaj vrijednost AUTO_INCREMENT" -#: db_operations.php:418 tbl_operations.php:542 +#: db_operations.php:452 tbl_operations.php:542 msgid "Add constraints" msgstr "Dodaj prisile" -#: db_operations.php:431 +#: db_operations.php:465 msgid "Switch to copied database" msgstr "Prebaci se na kopiranu bazu podataka" -#: db_operations.php:451 libraries/Index.class.php:447 +#: db_operations.php:485 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 #: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 #: server_collations.php:53 server_collations.php:65 server_databases.php:108 @@ -300,7 +316,7 @@ msgstr "Prebaci se na kopiranu bazu podataka" msgid "Collation" msgstr "Uspoređivanje" -#: db_operations.php:464 pdf_schema.php:32 +#: db_operations.php:498 pdf_schema.php:32 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -312,7 +328,7 @@ msgstr "" "Dodatne osobine za rad s relacijski tablicama su isključene. Kako biste " "saznali razloge, pritisnite %sovdje%s." -#: db_operations.php:497 +#: db_operations.php:531 msgid "Edit PDF Pages" msgstr "Uredi PDF stranice" @@ -368,7 +384,7 @@ msgstr[0] "%s tablica" msgstr[1] "%s tablica" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -460,7 +476,7 @@ msgstr "Podnesi upit" #: db_search.php:50 libraries/auth/config.auth.lib.php:83 #: libraries/auth/config.auth.lib.php:102 -#: libraries/auth/cookie.auth.lib.php:640 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:182 msgid "Access denied" msgstr "Pristup odbijen" @@ -503,7 +519,7 @@ msgid "Browse" msgstr "Pretraživanje" #: db_search.php:254 libraries/display_tbl.lib.php:1163 -#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:440 #: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 @@ -546,14 +562,14 @@ msgstr "Unutar polja:" #: db_structure.php:79 db_structure.php:80 db_structure.php:92 #: db_structure.php:93 db_structure.php:105 db_structure.php:106 -#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:311 +#: libraries/sql_query_form.lib.php:314 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Umetni" #: db_structure.php:81 db_structure.php:94 db_structure.php:107 #: libraries/common.lib.php:2832 libraries/common.lib.php:2839 -#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 +#: libraries/db_links.inc.php:48 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 @@ -566,8 +582,7 @@ msgstr "Strukturu" #: db_structure.php:96 db_structure.php:108 db_structure.php:109 #: db_structure.php:530 db_structure.php:531 db_tracking.php:86 #: libraries/Index.class.php:482 libraries/common.lib.php:1663 -#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 #: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 #: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" @@ -576,21 +591,21 @@ msgstr "Ispusti" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 +#: libraries/mult_submits.inc.php:38 msgid "Empty" msgstr "Isprazni" -#: db_structure.php:301 libraries/tbl_links.inc.php:98 +#: db_structure.php:301 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "Tablica %s je očišćena" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "View %s has been dropped" msgstr "Index %s je ispušten" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "Tablica %s je odbačen" @@ -681,7 +696,7 @@ msgstr "Popravi tablicu" msgid "Analyze table" msgstr "Analiziraj tablicu" -#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:56 #: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 #: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 #: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 @@ -1420,7 +1435,7 @@ msgid "Databases" msgstr "Baze podataka" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30 #: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 #: tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -1526,7 +1541,7 @@ msgid "Cannot connect: invalid settings." msgstr "Povezivanje nije moguće: neispravna postavka." #: libraries/auth/config.auth.lib.php:91 -#: libraries/auth/cookie.auth.lib.php:205 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:206 libraries/auth/http.auth.lib.php:64 #: test/theme.php:151 #, php-format msgid "Welcome to %s" @@ -1553,56 +1568,56 @@ msgstr "" "računala, korisničko ime i lozinku, te provjerite da se odgovaraju podacima " "koje vam je dao administrator MySQL poslužitelja." -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:231 msgid "Log in" msgstr "Prijava" -#: libraries/auth/cookie.auth.lib.php:232 -#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:233 +#: libraries/auth/cookie.auth.lib.php:235 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:94 msgid "phpMyAdmin documentation" msgstr "phpMyAdmin dokumentacija" -#: libraries/auth/cookie.auth.lib.php:244 #: libraries/auth/cookie.auth.lib.php:245 +#: libraries/auth/cookie.auth.lib.php:246 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:244 +#: libraries/auth/cookie.auth.lib.php:245 msgid "Server:" msgstr "Poslužitelj" -#: libraries/auth/cookie.auth.lib.php:249 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Username:" msgstr "Korisničko ime:" -#: libraries/auth/cookie.auth.lib.php:253 +#: libraries/auth/cookie.auth.lib.php:254 msgid "Password:" msgstr "Lozinka:" -#: libraries/auth/cookie.auth.lib.php:260 +#: libraries/auth/cookie.auth.lib.php:261 msgid "Server Choice" msgstr "Odabir poslužitelja" -#: libraries/auth/cookie.auth.lib.php:306 libraries/header.inc.php:58 +#: libraries/auth/cookie.auth.lib.php:307 libraries/header.inc.php:58 msgid "Cookies must be enabled past this point." msgstr "Od ovog mjesta potrebno je omogućiti kolačiće." -#: libraries/auth/cookie.auth.lib.php:638 +#: libraries/auth/cookie.auth.lib.php:639 #: libraries/auth/signon.auth.lib.php:180 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" -#: libraries/auth/cookie.auth.lib.php:642 +#: libraries/auth/cookie.auth.lib.php:643 #: libraries/auth/signon.auth.lib.php:184 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "Nije bilo nikakvih aktivnosti tijekom %s sekunda. Prijavite se ponovo." -#: libraries/auth/cookie.auth.lib.php:652 -#: libraries/auth/cookie.auth.lib.php:654 +#: libraries/auth/cookie.auth.lib.php:653 +#: libraries/auth/cookie.auth.lib.php:655 #: libraries/auth/signon.auth.lib.php:190 msgid "Cannot log in to the MySQL server" msgstr "Prijavljivanje na MySQL poslužitelj nije moguće" @@ -1727,7 +1742,7 @@ msgstr "Poslano" #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 #: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 -#: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 +#: libraries/sql_query_form.lib.php:421 libraries/sql_query_form.lib.php:424 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" msgstr "Dokumentacija" @@ -1870,19 +1885,19 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "Na funkcionalnost %s utječe poznati nedostatak. Pogledajte %s" #: libraries/common.lib.php:2833 libraries/common.lib.php:2840 -#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 +#: libraries/db_links.inc.php:53 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 #: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 -#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:86 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "Operacije" -#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:265 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1898,36 +1913,31 @@ msgstr "Događaji" msgid "Name" msgstr "Naziv" -#: libraries/db_links.inc.php:43 -#, php-format -msgid "Database %s has been dropped." -msgstr "Baza podataka %s je odbačena." - -#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 -#: libraries/db_links.inc.php:57 +#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43 +#: libraries/db_links.inc.php:44 msgid "Database seems to be empty!" msgstr "Baza podataka izgleda praznom!" -#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/db_links.inc.php:66 libraries/relation.lib.php:137 #: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:84 +#: libraries/db_links.inc.php:71 msgid "Query" msgstr "Upit" -#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 +#: libraries/db_links.inc.php:76 libraries/relation.lib.php:133 msgid "Designer" msgstr "Kreator" -#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:87 #: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Uvoz" -#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:65 #: server_privileges.php:110 server_privileges.php:1718 #: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" @@ -2097,7 +2107,7 @@ msgid "remember template" msgstr "zapamti predložak" #: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 -#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 +#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:509 msgid "Character set of the file:" msgstr "Tablica znakova za datoteku:" @@ -2150,7 +2160,7 @@ msgstr "" msgid "File to import" msgstr "Datoteka za uvoz" -#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:497 +#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:484 msgid "Location of the text file" msgstr "Lokacija tekstualne datoteke" @@ -2158,12 +2168,12 @@ msgstr "Lokacija tekstualne datoteke" msgid "File uploads are not allowed on this server." msgstr "Učitavanje datoteka nije dopušteno na ovom poslužitelju." -#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 +#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:493 #: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "Mapu koju ste odabrali za potrebe učitavanja nije moguće dohvatiti" -#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 +#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:496 #: tbl_change.php:925 msgid "web server upload directory" msgstr "mapa učitavanja web poslužitelja" @@ -3579,7 +3589,7 @@ msgid "" msgstr "" "Pogledajte dokumentaciju radi uputa o ažuriranju tablice column_comments." -#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:403 msgid "Bookmarked SQL query" msgstr "Favorizirani SQL upit" @@ -3646,7 +3656,7 @@ msgstr "Prikaži stanje potčinjenog" msgid "Slave status" msgstr "Prikaži stanje potčinjenog" -#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:428 +#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:415 #: server_status.php:736 server_variables.php:51 msgid "Variable" msgstr "Varijabla" @@ -3776,51 +3786,51 @@ msgstr "" msgid "Target database" msgstr "Traži u bazi podataka" -#: libraries/sql_query_form.lib.php:219 +#: libraries/sql_query_form.lib.php:217 #, php-format msgid "Run SQL query/queries on server %s" msgstr "Pokreni SQL upit na poslužitelju %s" -#: libraries/sql_query_form.lib.php:236 libraries/sql_query_form.lib.php:261 +#: libraries/sql_query_form.lib.php:234 libraries/sql_query_form.lib.php:258 #, php-format msgid "Run SQL query/queries on database %s" msgstr "Pokreni SQL upit na bazi podataka %s" -#: libraries/sql_query_form.lib.php:307 +#: libraries/sql_query_form.lib.php:294 #, fuzzy #| msgid "Column names" msgid "Columns" msgstr "Nazivi stupaca" -#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 +#: libraries/sql_query_form.lib.php:329 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "Favoriziraj ovaj SQL upit" -#: libraries/sql_query_form.lib.php:349 sql.php:669 +#: libraries/sql_query_form.lib.php:336 sql.php:669 msgid "Let every user access this bookmark" msgstr "Neka svi korisnici imaju pristup ovom favoritu" -#: libraries/sql_query_form.lib.php:355 +#: libraries/sql_query_form.lib.php:342 msgid "Replace existing bookmark of same name" msgstr "Zamijeni postojećim favoritom istog naziva" -#: libraries/sql_query_form.lib.php:371 +#: libraries/sql_query_form.lib.php:358 msgid "Do not overwrite this query from outside the window" msgstr "Ne prepisuj ovaj upit iz vanjskog prozora" -#: libraries/sql_query_form.lib.php:378 +#: libraries/sql_query_form.lib.php:365 msgid "Delimiter" msgstr "Razgraničavanje" -#: libraries/sql_query_form.lib.php:386 +#: libraries/sql_query_form.lib.php:373 msgid " Show this query here again " msgstr "Ovaj upit ponovno prikaži ovdje" -#: libraries/sql_query_form.lib.php:445 +#: libraries/sql_query_form.lib.php:432 msgid "Submit" msgstr "Podnesi" -#: libraries/sql_query_form.lib.php:449 +#: libraries/sql_query_form.lib.php:436 msgid "View only" msgstr "Samo prikaz" @@ -3891,12 +3901,11 @@ msgstr "" "SQL validator nije bilo moguće pokrenuti. Provjerite jeste li instalirali " "potrebna PHP proširenja, na način opisan u %sdokumentaciji%s." -#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 -#: libraries/tbl_links.inc.php:139 +#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107 msgid "Table seems to be empty!" msgstr "Tablica izgleda praznom!" -#: libraries/tbl_links.inc.php:147 +#: libraries/tbl_links.inc.php:115 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" @@ -8098,40 +8107,54 @@ msgstr "Tablica %s je ispražnjena" msgid "Flush the table (FLUSH)" msgstr "Isprazni tablicu (\"FLUSH\")" -#: tbl_operations.php:648 +#: tbl_operations.php:642 +#, fuzzy +#| msgid "Table name" +msgid "Table removal" +msgstr "Naziv tablice" + +#: tbl_operations.php:657 +msgid "Empty the table (TRUNCATE)" +msgstr "" + +#: tbl_operations.php:675 +msgid "Drop the table (DROP)" +msgstr "" + +#: tbl_operations.php:696 msgid "Partition maintenance" msgstr "Održavanje particije" -#: tbl_operations.php:656 +#: tbl_operations.php:704 #, php-format msgid "Partition %s" msgstr "Particija %s" -#: tbl_operations.php:659 +#: tbl_operations.php:707 msgid "Analyze" msgstr "Analiziraj" -#: tbl_operations.php:660 +#: tbl_operations.php:708 msgid "Check" msgstr "Provjeri" -#: tbl_operations.php:661 +#: tbl_operations.php:709 msgid "Optimize" msgstr "Optimiziraj" -#: tbl_operations.php:662 +#: tbl_operations.php:710 msgid "Rebuild" msgstr "Ponovno izgradi" -#: tbl_operations.php:663 +#: tbl_operations.php:711 msgid "Repair" msgstr "Popravi" -#: tbl_operations.php:675 +#: tbl_operations.php:723 msgid "Remove partitioning" msgstr "Ukloni particioniranje" -#: tbl_operations.php:701 +#: tbl_operations.php:749 msgid "Check referential integrity:" msgstr "Provjeri referencijalan integritet:" diff --git a/po/hu.po b/po/hu.po index 12ec2d76e..f9b5e1b56 100644 --- a/po/hu.po +++ b/po/hu.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-26 17:18+0200\n" +"POT-Creation-Date: 2010-07-27 10:12+0200\n" "PO-Revision-Date: 2010-07-22 02:22+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: hungarian \n" @@ -39,16 +39,16 @@ msgstr "" #: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 #: db_structure.php:89 db_structure.php:91 db_structure.php:102 #: db_structure.php:104 libraries/common.lib.php:2834 -#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Keresés" #: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 -#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_operations.php:468 db_operations.php:492 db_search.php:344 #: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 #: libraries/Theme_Manager.class.php:305 -#: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 +#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:712 #: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 @@ -56,8 +56,8 @@ msgstr "Keresés" #: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 #: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 -#: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: libraries/sql_query_form.lib.php:377 libraries/sql_query_form.lib.php:447 +#: libraries/sql_query_form.lib.php:512 libraries/tbl_properties.inc.php:780 #: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 #: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 #: server_privileges.php:663 server_privileges.php:1620 @@ -67,7 +67,7 @@ msgstr "Keresés" #: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 #: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 -#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_operations.php:726 tbl_select.php:323 tbl_structure.php:559 #: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 #: view_create.php:181 view_operations.php:99 msgid "Go" @@ -250,47 +250,63 @@ msgstr "Parancs" msgid "and then" msgstr "és utána" -#: db_operations.php:390 +#: db_operations.php:379 +#, fuzzy +#| msgid "Rename database to" +msgid "Remove database" +msgstr "Adatbázis átnevezése" + +#: db_operations.php:391 +#, php-format +msgid "Database %s has been dropped." +msgstr "A(z) %s adatbázis eldobása megtörtént." + +#: db_operations.php:396 +#, fuzzy +msgid "Drop the database (DROP)" +msgstr "Nincs adatbázis" + +#: db_operations.php:424 msgid "Copy database to" msgstr "Adatbázis másolása" -#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:431 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Csak a szerkezet" -#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:432 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Szerkezet és adatok" -#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:433 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Csak az adatok" -#: db_operations.php:407 +#: db_operations.php:441 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE másolás előtt" -#: db_operations.php:410 libraries/export/sql.php:51 +#: db_operations.php:444 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 #: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "%s hozzáadása" -#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: db_operations.php:448 libraries/export/sql.php:77 tbl_operations.php:296 #: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT érték hozzáadása" -#: db_operations.php:418 tbl_operations.php:542 +#: db_operations.php:452 tbl_operations.php:542 msgid "Add constraints" msgstr "Megszorítás hozzáadása" -#: db_operations.php:431 +#: db_operations.php:465 msgid "Switch to copied database" msgstr "A másolt adatbázisra váltás" -#: db_operations.php:451 libraries/Index.class.php:447 +#: db_operations.php:485 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 #: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 #: server_collations.php:53 server_collations.php:65 server_databases.php:108 @@ -299,7 +315,7 @@ msgstr "A másolt adatbázisra váltás" msgid "Collation" msgstr "Illesztés" -#: db_operations.php:464 pdf_schema.php:32 +#: db_operations.php:498 pdf_schema.php:32 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -311,7 +327,7 @@ msgstr "" "A hivatkozott táblákkal történő munka kiegészítő funkciói inaktiválásra " "kerültek. Ha szeretné megtudni, hogy miért, kattintson %side%s." -#: db_operations.php:497 +#: db_operations.php:531 msgid "Edit PDF Pages" msgstr "PDF oldalak szerkesztése" @@ -367,7 +383,7 @@ msgstr[0] "%s tábla" msgstr[1] "%s tábla" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -459,7 +475,7 @@ msgstr "Lekérdezés indítása" #: db_search.php:50 libraries/auth/config.auth.lib.php:83 #: libraries/auth/config.auth.lib.php:102 -#: libraries/auth/cookie.auth.lib.php:640 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:182 msgid "Access denied" msgstr "A hozzáférés megtagadva" @@ -502,7 +518,7 @@ msgid "Browse" msgstr "Tartalom" #: db_search.php:254 libraries/display_tbl.lib.php:1163 -#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:440 #: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 @@ -545,14 +561,14 @@ msgstr "Mezőben:" #: db_structure.php:79 db_structure.php:80 db_structure.php:92 #: db_structure.php:93 db_structure.php:105 db_structure.php:106 -#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:311 +#: libraries/sql_query_form.lib.php:314 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Beszúrás" #: db_structure.php:81 db_structure.php:94 db_structure.php:107 #: libraries/common.lib.php:2832 libraries/common.lib.php:2839 -#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 +#: libraries/db_links.inc.php:48 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 @@ -565,8 +581,7 @@ msgstr "Szerkezet" #: db_structure.php:96 db_structure.php:108 db_structure.php:109 #: db_structure.php:530 db_structure.php:531 db_tracking.php:86 #: libraries/Index.class.php:482 libraries/common.lib.php:1663 -#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 #: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 #: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" @@ -575,21 +590,21 @@ msgstr "Eldobás" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 +#: libraries/mult_submits.inc.php:38 msgid "Empty" msgstr "Kiürítés" -#: db_structure.php:301 libraries/tbl_links.inc.php:98 +#: db_structure.php:301 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "A(z) %s tábla kiürítése megtörtént" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "View %s has been dropped" msgstr "A(z) %s nézet eldobása kész" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "A(z) %s tábla eldobása megtörtént" @@ -681,7 +696,7 @@ msgstr "Tábla javítása" msgid "Analyze table" msgstr "Tábla elemzése" -#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:56 #: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 #: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 #: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 @@ -1421,7 +1436,7 @@ msgid "Databases" msgstr "Adatbázisok" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30 #: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 #: tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -1528,7 +1543,7 @@ msgid "Cannot connect: invalid settings." msgstr "Nem lehet csatlakozni: érvénytelenek a beállítások." #: libraries/auth/config.auth.lib.php:91 -#: libraries/auth/cookie.auth.lib.php:205 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:206 libraries/auth/http.auth.lib.php:64 #: test/theme.php:151 #, php-format msgid "Welcome to %s" @@ -1555,58 +1570,58 @@ msgstr "" "a config.inc.php fájlban, s győződjön meg róla, hogy ezek megfelelnek-e a " "MySQL szerver adminisztrátorától kapott információknak." -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:231 msgid "Log in" msgstr "Belépés" -#: libraries/auth/cookie.auth.lib.php:232 -#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:233 +#: libraries/auth/cookie.auth.lib.php:235 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:94 msgid "phpMyAdmin documentation" msgstr "phpMyAdmin dokumentáció" -#: libraries/auth/cookie.auth.lib.php:244 #: libraries/auth/cookie.auth.lib.php:245 +#: libraries/auth/cookie.auth.lib.php:246 msgid "You can enter hostname/IP address and port separated by space." msgstr "" "Az állomásnevet/IP-címet és a port számát szóközzel elválasztva írhatja be." -#: libraries/auth/cookie.auth.lib.php:244 +#: libraries/auth/cookie.auth.lib.php:245 msgid "Server:" msgstr "Szerver" -#: libraries/auth/cookie.auth.lib.php:249 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Username:" msgstr "Felhasználónév:" -#: libraries/auth/cookie.auth.lib.php:253 +#: libraries/auth/cookie.auth.lib.php:254 msgid "Password:" msgstr "Jelszó:" -#: libraries/auth/cookie.auth.lib.php:260 +#: libraries/auth/cookie.auth.lib.php:261 msgid "Server Choice" msgstr "Szerver választása" -#: libraries/auth/cookie.auth.lib.php:306 libraries/header.inc.php:58 +#: libraries/auth/cookie.auth.lib.php:307 libraries/header.inc.php:58 msgid "Cookies must be enabled past this point." msgstr "Ettől a ponttól engedélyeznie kell a cookie-k fogadását." -#: libraries/auth/cookie.auth.lib.php:638 +#: libraries/auth/cookie.auth.lib.php:639 #: libraries/auth/signon.auth.lib.php:180 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" "A konfiguráció tiltja a jelszó nélküli bejelentkezést (lásd AllowNoPassword)" -#: libraries/auth/cookie.auth.lib.php:642 +#: libraries/auth/cookie.auth.lib.php:643 #: libraries/auth/signon.auth.lib.php:184 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "Nem volt tevékenység %s másodperce; jelentkezzen be újra" -#: libraries/auth/cookie.auth.lib.php:652 -#: libraries/auth/cookie.auth.lib.php:654 +#: libraries/auth/cookie.auth.lib.php:653 +#: libraries/auth/cookie.auth.lib.php:655 #: libraries/auth/signon.auth.lib.php:190 msgid "Cannot log in to the MySQL server" msgstr "Nem lehet bejelentkezni a MySQL szerverre" @@ -1729,7 +1744,7 @@ msgstr "en" #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 #: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 -#: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 +#: libraries/sql_query_form.lib.php:421 libraries/sql_query_form.lib.php:424 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" msgstr "Dokumentáció" @@ -1874,19 +1889,19 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "A(z) %s funkcióra egy ismert hiba van hatással, lásd itt: %s" #: libraries/common.lib.php:2833 libraries/common.lib.php:2840 -#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 +#: libraries/db_links.inc.php:53 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 #: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 -#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:86 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "Műveletek" -#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:265 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1902,36 +1917,31 @@ msgstr "Események" msgid "Name" msgstr "Név" -#: libraries/db_links.inc.php:43 -#, php-format -msgid "Database %s has been dropped." -msgstr "A(z) %s adatbázis eldobása megtörtént." - -#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 -#: libraries/db_links.inc.php:57 +#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43 +#: libraries/db_links.inc.php:44 msgid "Database seems to be empty!" msgstr "Üresnek tűnik az adatbázis!" -#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/db_links.inc.php:66 libraries/relation.lib.php:137 #: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:84 +#: libraries/db_links.inc.php:71 msgid "Query" msgstr "Lekérdezés" -#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 +#: libraries/db_links.inc.php:76 libraries/relation.lib.php:133 msgid "Designer" msgstr "Tervező" -#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:87 #: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importálás" -#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:65 #: server_privileges.php:110 server_privileges.php:1718 #: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" @@ -2104,7 +2114,7 @@ msgid "remember template" msgstr "a sablon megjegyzése" #: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 -#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 +#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:509 msgid "Character set of the file:" msgstr "A fájl karakterkészlete:" @@ -2157,7 +2167,7 @@ msgstr "" msgid "File to import" msgstr "Importálandó fájl" -#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:497 +#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:484 msgid "Location of the text file" msgstr "A szövegfájl helye" @@ -2165,12 +2175,12 @@ msgstr "A szövegfájl helye" msgid "File uploads are not allowed on this server." msgstr "Ezen a szerveren a fájlfeltöltések nem engedélyezettek." -#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 +#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:493 #: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "Nem elérhető a feltöltésekhez megadott könyvtár" -#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 +#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:496 #: tbl_change.php:925 msgid "web server upload directory" msgstr "webszerver feltöltési könyvtár" @@ -3590,7 +3600,7 @@ msgstr "" "Kérjük, olvassa el a dokumentációban a column_comments tábla frissítéséről " "szóló fejezetet" -#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:403 msgid "Bookmarked SQL query" msgstr "Könyvjelzőkhöz hozzáadott SQL-lekérdezés" @@ -3656,7 +3666,7 @@ msgstr "Mester állapot" msgid "Slave status" msgstr "Másodlagos állapot" -#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:428 +#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:415 #: server_status.php:736 server_variables.php:51 msgid "Variable" msgstr "Változó" @@ -3788,53 +3798,53 @@ msgstr "" msgid "Target database" msgstr "Keresés az adatbázisban" -#: libraries/sql_query_form.lib.php:219 +#: libraries/sql_query_form.lib.php:217 #, 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:236 libraries/sql_query_form.lib.php:261 +#: libraries/sql_query_form.lib.php:234 libraries/sql_query_form.lib.php:258 #, 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:307 +#: libraries/sql_query_form.lib.php:294 #, fuzzy #| msgid "Column names" msgid "Columns" msgstr "Oszlopnevek" -#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 +#: libraries/sql_query_form.lib.php:329 sql.php:657 sql.php:658 sql.php:675 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:349 sql.php:669 +#: libraries/sql_query_form.lib.php:336 sql.php:669 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:355 +#: libraries/sql_query_form.lib.php:342 msgid "Replace existing bookmark of same name" msgstr "Az ugyanazon nevű könyvjelző kicserélése" -#: libraries/sql_query_form.lib.php:371 +#: libraries/sql_query_form.lib.php:358 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:378 +#: libraries/sql_query_form.lib.php:365 msgid "Delimiter" msgstr "Elválasztó" -#: libraries/sql_query_form.lib.php:386 +#: libraries/sql_query_form.lib.php:373 msgid " Show this query here again " msgstr " A fenti lekérdezés megjelenítése itt újra " -#: libraries/sql_query_form.lib.php:445 +#: libraries/sql_query_form.lib.php:432 msgid "Submit" msgstr "Indítás" -#: libraries/sql_query_form.lib.php:449 +#: libraries/sql_query_form.lib.php:436 msgid "View only" msgstr "Csak megtekinthető" @@ -3908,12 +3918,11 @@ msgstr "" "%sdokumentációban%s leírtak szerint telepítette-e a szükséges PHP-" "kiterjesztést." -#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 -#: libraries/tbl_links.inc.php:139 +#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107 msgid "Table seems to be empty!" msgstr "Üresnek tűnik a tábla!" -#: libraries/tbl_links.inc.php:147 +#: libraries/tbl_links.inc.php:115 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" @@ -8338,40 +8347,54 @@ msgstr "A(z) %s tábla kiírása megtörtént" msgid "Flush the table (FLUSH)" msgstr "Tábla kiírása (\"FLUSH\")" -#: tbl_operations.php:648 +#: tbl_operations.php:642 +#, fuzzy +#| msgid "Table name" +msgid "Table removal" +msgstr "Tábla neve" + +#: tbl_operations.php:657 +msgid "Empty the table (TRUNCATE)" +msgstr "" + +#: tbl_operations.php:675 +msgid "Drop the table (DROP)" +msgstr "" + +#: tbl_operations.php:696 msgid "Partition maintenance" msgstr "Partíció karbantartása" -#: tbl_operations.php:656 +#: tbl_operations.php:704 #, php-format msgid "Partition %s" msgstr "%s partíció" -#: tbl_operations.php:659 +#: tbl_operations.php:707 msgid "Analyze" msgstr "Elemzés" -#: tbl_operations.php:660 +#: tbl_operations.php:708 msgid "Check" msgstr "Ellenőrzés" -#: tbl_operations.php:661 +#: tbl_operations.php:709 msgid "Optimize" msgstr "Optimalizálás" -#: tbl_operations.php:662 +#: tbl_operations.php:710 msgid "Rebuild" msgstr "Újraépítés" -#: tbl_operations.php:663 +#: tbl_operations.php:711 msgid "Repair" msgstr "Javítás" -#: tbl_operations.php:675 +#: tbl_operations.php:723 msgid "Remove partitioning" msgstr "Particionálás eltávolítása" -#: tbl_operations.php:701 +#: tbl_operations.php:749 msgid "Check referential integrity:" msgstr "Hivatkozási sértetlenség ellenőrzése:" diff --git a/po/id.po b/po/id.po index 9af81bf5e..2128c6092 100644 --- a/po/id.po +++ b/po/id.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-26 17:18+0200\n" +"POT-Creation-Date: 2010-07-27 10:12+0200\n" "PO-Revision-Date: 2010-06-16 01:45+0200\n" "Last-Translator: \n" "Language-Team: indonesian \n" @@ -39,16 +39,16 @@ msgstr "" #: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 #: db_structure.php:89 db_structure.php:91 db_structure.php:102 #: db_structure.php:104 libraries/common.lib.php:2834 -#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Cari" #: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 -#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_operations.php:468 db_operations.php:492 db_search.php:344 #: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 #: libraries/Theme_Manager.class.php:305 -#: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 +#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:712 #: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 @@ -56,8 +56,8 @@ msgstr "Cari" #: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 #: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 -#: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: libraries/sql_query_form.lib.php:377 libraries/sql_query_form.lib.php:447 +#: libraries/sql_query_form.lib.php:512 libraries/tbl_properties.inc.php:780 #: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 #: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 #: server_privileges.php:663 server_privileges.php:1620 @@ -67,7 +67,7 @@ msgstr "Cari" #: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 #: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 -#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_operations.php:726 tbl_select.php:323 tbl_structure.php:559 #: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 #: view_create.php:181 view_operations.php:99 msgid "Go" @@ -248,47 +248,63 @@ msgstr "Perintah" msgid "and then" msgstr "selanjutnya" -#: db_operations.php:390 +#: db_operations.php:379 +#, fuzzy +#| msgid "Rename database to" +msgid "Remove database" +msgstr "Ubah nama database menjadi" + +#: db_operations.php:391 +#, php-format +msgid "Database %s has been dropped." +msgstr "Database %s telah dihapus." + +#: db_operations.php:396 +#, fuzzy +msgid "Drop the database (DROP)" +msgstr "Database tidak ditemukan" + +#: db_operations.php:424 msgid "Copy database to" msgstr "Salin database ke" -#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:431 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Struktur saja" -#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:432 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Struktur dan data" -#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:433 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Data saja" -#: db_operations.php:407 +#: db_operations.php:441 msgid "CREATE DATABASE before copying" msgstr "CIPTAKAN DATABASE sebelum menyalin" -#: db_operations.php:410 libraries/export/sql.php:51 +#: db_operations.php:444 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 #: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "Tambah %s" -#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: db_operations.php:448 libraries/export/sql.php:77 tbl_operations.php:296 #: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Menambahkan nilai AUTO_INCREMENT" -#: db_operations.php:418 tbl_operations.php:542 +#: db_operations.php:452 tbl_operations.php:542 msgid "Add constraints" msgstr "Menambahkan pembatas" -#: db_operations.php:431 +#: db_operations.php:465 msgid "Switch to copied database" msgstr "Pindah ke database yang disalin" -#: db_operations.php:451 libraries/Index.class.php:447 +#: db_operations.php:485 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 #: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 #: server_collations.php:53 server_collations.php:65 server_databases.php:108 @@ -297,7 +313,7 @@ msgstr "Pindah ke database yang disalin" msgid "Collation" msgstr "Penyortiran" -#: db_operations.php:464 pdf_schema.php:32 +#: db_operations.php:498 pdf_schema.php:32 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -309,7 +325,7 @@ msgstr "" "Fasilitas penambahan untuk bekerja dengan tabel yang di-link di nonaktifkan. " "Untuk mengetahui sebabnya silakan klik %sdisini%s." -#: db_operations.php:497 +#: db_operations.php:531 msgid "Edit PDF Pages" msgstr "Ubah halaman PDF" @@ -364,7 +380,7 @@ msgid_plural "%s tables" msgstr[0] "tabel %s" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -452,7 +468,7 @@ msgstr "Jalankan pencarian SQL" #: db_search.php:50 libraries/auth/config.auth.lib.php:83 #: libraries/auth/config.auth.lib.php:102 -#: libraries/auth/cookie.auth.lib.php:640 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:182 msgid "Access denied" msgstr "Akses ditolak" @@ -494,7 +510,7 @@ msgid "Browse" msgstr "Browse" #: db_search.php:254 libraries/display_tbl.lib.php:1163 -#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:440 #: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 @@ -534,14 +550,14 @@ msgstr "Di dalam kolom:" #: db_structure.php:79 db_structure.php:80 db_structure.php:92 #: db_structure.php:93 db_structure.php:105 db_structure.php:106 -#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:311 +#: libraries/sql_query_form.lib.php:314 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Sisipkan" #: db_structure.php:81 db_structure.php:94 db_structure.php:107 #: libraries/common.lib.php:2832 libraries/common.lib.php:2839 -#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 +#: libraries/db_links.inc.php:48 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 @@ -554,8 +570,7 @@ msgstr "Struktur" #: db_structure.php:96 db_structure.php:108 db_structure.php:109 #: db_structure.php:530 db_structure.php:531 db_tracking.php:86 #: libraries/Index.class.php:482 libraries/common.lib.php:1663 -#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 #: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 #: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" @@ -564,21 +579,21 @@ msgstr "Hapus" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 +#: libraries/mult_submits.inc.php:38 msgid "Empty" msgstr "Mengosongkan" -#: db_structure.php:301 libraries/tbl_links.inc.php:98 +#: db_structure.php:301 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "Tabel %s telah dikosongkan" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "View %s has been dropped" msgstr "Pandangan %s telah dibubarkan" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "Tabel %s telah dihapus" @@ -670,7 +685,7 @@ msgstr "Perbaiki tabel" msgid "Analyze table" msgstr "Analisa tabel" -#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:56 #: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 #: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 #: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 @@ -1393,7 +1408,7 @@ msgid "Databases" msgstr "Database" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30 #: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 #: tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -1496,7 +1511,7 @@ msgid "Cannot connect: invalid settings." msgstr "Koneksi gagal: Stelan tidak berlaku." #: libraries/auth/config.auth.lib.php:91 -#: libraries/auth/cookie.auth.lib.php:205 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:206 libraries/auth/http.auth.lib.php:64 #: test/theme.php:151 #, php-format msgid "Welcome to %s" @@ -1522,56 +1537,56 @@ msgstr "" "kecocokannya dengan informasi yang telah diberikan oleh administrator server " "MySQL." -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:231 msgid "Log in" msgstr "Login" -#: libraries/auth/cookie.auth.lib.php:232 -#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:233 +#: libraries/auth/cookie.auth.lib.php:235 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:94 msgid "phpMyAdmin documentation" msgstr "Dokumentasi phpMyAdmin" -#: libraries/auth/cookie.auth.lib.php:244 #: libraries/auth/cookie.auth.lib.php:245 +#: libraries/auth/cookie.auth.lib.php:246 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:244 +#: libraries/auth/cookie.auth.lib.php:245 msgid "Server:" msgstr "Server" -#: libraries/auth/cookie.auth.lib.php:249 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Username:" msgstr "Nama Pengguna:" -#: libraries/auth/cookie.auth.lib.php:253 +#: libraries/auth/cookie.auth.lib.php:254 msgid "Password:" msgstr "Kata Sandi:" -#: libraries/auth/cookie.auth.lib.php:260 +#: libraries/auth/cookie.auth.lib.php:261 msgid "Server Choice" msgstr "Pilihan Server" -#: libraries/auth/cookie.auth.lib.php:306 libraries/header.inc.php:58 +#: libraries/auth/cookie.auth.lib.php:307 libraries/header.inc.php:58 msgid "Cookies must be enabled past this point." msgstr "Mulai dari sini Cookies harus diaktifkan." -#: libraries/auth/cookie.auth.lib.php:638 +#: libraries/auth/cookie.auth.lib.php:639 #: libraries/auth/signon.auth.lib.php:180 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" -#: libraries/auth/cookie.auth.lib.php:642 +#: libraries/auth/cookie.auth.lib.php:643 #: libraries/auth/signon.auth.lib.php:184 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "Tidak ada aktifitas selama %s detik atau lebih. Silakan login kembali" -#: libraries/auth/cookie.auth.lib.php:652 -#: libraries/auth/cookie.auth.lib.php:654 +#: libraries/auth/cookie.auth.lib.php:653 +#: libraries/auth/cookie.auth.lib.php:655 #: libraries/auth/signon.auth.lib.php:190 msgid "Cannot log in to the MySQL server" msgstr "Gagal login ke MySQL server" @@ -1690,7 +1705,7 @@ msgstr "id" #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 #: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 -#: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 +#: libraries/sql_query_form.lib.php:421 libraries/sql_query_form.lib.php:424 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" msgstr "Dokumentasi" @@ -1833,19 +1848,19 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/common.lib.php:2833 libraries/common.lib.php:2840 -#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 +#: libraries/db_links.inc.php:53 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 #: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 -#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:86 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "Operasi" -#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:265 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1861,37 +1876,32 @@ msgstr "Kejadian" msgid "Name" msgstr "Nama" -#: libraries/db_links.inc.php:43 -#, php-format -msgid "Database %s has been dropped." -msgstr "Database %s telah dihapus." - -#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 -#: libraries/db_links.inc.php:57 +#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43 +#: libraries/db_links.inc.php:44 msgid "Database seems to be empty!" msgstr "Database kelihatannya kosong" -#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/db_links.inc.php:66 libraries/relation.lib.php:137 #: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "Pelacakan" -#: libraries/db_links.inc.php:84 +#: libraries/db_links.inc.php:71 msgid "Query" msgstr "Cari berdasarkan data contoh" -#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 +#: libraries/db_links.inc.php:76 libraries/relation.lib.php:133 msgid "Designer" msgstr "Perancang" -#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:87 #: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 #, fuzzy msgid "Import" msgstr "Ekspor" -#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:65 #: server_privileges.php:110 server_privileges.php:1718 #: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" @@ -2059,7 +2069,7 @@ msgid "remember template" msgstr "ingat konvensi" #: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 -#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 +#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:509 msgid "Character set of the file:" msgstr "Penyusunan karakter dalam file:" @@ -2112,7 +2122,7 @@ msgstr "" msgid "File to import" msgstr "" -#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:497 +#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:484 msgid "Location of the text file" msgstr "dari File" @@ -2120,13 +2130,13 @@ msgstr "dari File" msgid "File uploads are not allowed on this server." msgstr "Upload file tidak diizinkan di server ini." -#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 +#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:493 #: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "" "Direktori yang telah ditetapkan untuk meng-upload tidak dapat dihubungi" -#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 +#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:496 #: tbl_change.php:925 msgid "web server upload directory" msgstr "direktori upload pada web-server" @@ -3502,7 +3512,7 @@ msgstr "" "Mohon belajari dokumentasi untuk mengetahui cara meng-update tabel " "Column_comments Anda" -#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:403 msgid "Bookmarked SQL query" msgstr "Ingat pada pencarian SQL " @@ -3567,7 +3577,7 @@ msgstr "" msgid "Slave status" msgstr "" -#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:428 +#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:415 #: server_status.php:736 server_variables.php:51 msgid "Variable" msgstr "Variabel" @@ -3695,51 +3705,51 @@ msgstr "Perbedaan" msgid "Target database" msgstr "Database target" -#: libraries/sql_query_form.lib.php:219 +#: libraries/sql_query_form.lib.php:217 #, fuzzy, php-format msgid "Run SQL query/queries on server %s" msgstr "Melaksanakan perintah SQL pada database %s" -#: libraries/sql_query_form.lib.php:236 libraries/sql_query_form.lib.php:261 +#: libraries/sql_query_form.lib.php:234 libraries/sql_query_form.lib.php:258 #, php-format msgid "Run SQL query/queries on database %s" msgstr "Melaksanakan perintah SQL pada database %s" -#: libraries/sql_query_form.lib.php:307 +#: libraries/sql_query_form.lib.php:294 #, fuzzy #| msgid "Column names" msgid "Columns" msgstr "Nama kolom" -#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 +#: libraries/sql_query_form.lib.php:329 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "Simpan pencarian SQL ini" -#: libraries/sql_query_form.lib.php:349 sql.php:669 +#: libraries/sql_query_form.lib.php:336 sql.php:669 msgid "Let every user access this bookmark" msgstr "Izinkan semua pengguna untuk mengakses simpanan ini" -#: libraries/sql_query_form.lib.php:355 +#: libraries/sql_query_form.lib.php:342 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/sql_query_form.lib.php:371 +#: libraries/sql_query_form.lib.php:358 msgid "Do not overwrite this query from outside the window" msgstr "Jangan timpahkan pencarian ini dari jendela luar" -#: libraries/sql_query_form.lib.php:378 +#: libraries/sql_query_form.lib.php:365 msgid "Delimiter" msgstr "Pembatas" -#: libraries/sql_query_form.lib.php:386 +#: libraries/sql_query_form.lib.php:373 msgid " Show this query here again " msgstr " Tampilkan ulang perintah SQL " -#: libraries/sql_query_form.lib.php:445 +#: libraries/sql_query_form.lib.php:432 msgid "Submit" msgstr "Kirim" -#: libraries/sql_query_form.lib.php:449 +#: libraries/sql_query_form.lib.php:436 msgid "View only" msgstr "Hanya melihat" @@ -3813,12 +3823,11 @@ msgstr "" "Pengesahan SQL tidak dapat disahkan. Mohon periksa kembali ekstension PHP " "yang diperlukan seperti yang tercatat dalam %sdokumentasi%s." -#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 -#: libraries/tbl_links.inc.php:139 +#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107 msgid "Table seems to be empty!" msgstr "" -#: libraries/tbl_links.inc.php:147 +#: libraries/tbl_links.inc.php:115 #, php-format msgid "Tracking of %s.%s is activated." msgstr "Pelacakan dari %s.%s diaktifkan" @@ -7865,42 +7874,56 @@ msgstr "Tabel %s telah dibuang" msgid "Flush the table (FLUSH)" msgstr "Tutup tabel (\"FLUSH\")" -#: tbl_operations.php:648 +#: tbl_operations.php:642 +#, fuzzy +#| msgid "Table name" +msgid "Table removal" +msgstr "Nama tabel" + +#: tbl_operations.php:657 +msgid "Empty the table (TRUNCATE)" +msgstr "" + +#: tbl_operations.php:675 +msgid "Drop the table (DROP)" +msgstr "" + +#: tbl_operations.php:696 #, fuzzy msgid "Partition maintenance" msgstr "Pemeliharaan tabel" -#: tbl_operations.php:656 +#: tbl_operations.php:704 #, php-format msgid "Partition %s" msgstr "" -#: tbl_operations.php:659 +#: tbl_operations.php:707 msgid "Analyze" msgstr "Analisa" -#: tbl_operations.php:660 +#: tbl_operations.php:708 msgid "Check" msgstr "Tandai" -#: tbl_operations.php:661 +#: tbl_operations.php:709 msgid "Optimize" msgstr "" -#: tbl_operations.php:662 +#: tbl_operations.php:710 msgid "Rebuild" msgstr "" -#: tbl_operations.php:663 +#: tbl_operations.php:711 #, fuzzy msgid "Repair" msgstr "Perbaiki tabel" -#: tbl_operations.php:675 +#: tbl_operations.php:723 msgid "Remove partitioning" msgstr "" -#: tbl_operations.php:701 +#: tbl_operations.php:749 msgid "Check referential integrity:" msgstr "Cek integriti referensial:" diff --git a/po/it.po b/po/it.po index 808a1c3d7..68d570858 100644 --- a/po/it.po +++ b/po/it.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-26 17:18+0200\n" +"POT-Creation-Date: 2010-07-27 10:12+0200\n" "PO-Revision-Date: 2010-05-24 21:25+0200\n" "Last-Translator: Fabio \n" "Language-Team: italian \n" @@ -40,16 +40,16 @@ msgstr "" #: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 #: db_structure.php:89 db_structure.php:91 db_structure.php:102 #: db_structure.php:104 libraries/common.lib.php:2834 -#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Cerca" #: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 -#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_operations.php:468 db_operations.php:492 db_search.php:344 #: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 #: libraries/Theme_Manager.class.php:305 -#: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 +#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:712 #: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 @@ -57,8 +57,8 @@ msgstr "Cerca" #: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 #: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 -#: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: libraries/sql_query_form.lib.php:377 libraries/sql_query_form.lib.php:447 +#: libraries/sql_query_form.lib.php:512 libraries/tbl_properties.inc.php:780 #: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 #: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 #: server_privileges.php:663 server_privileges.php:1620 @@ -68,7 +68,7 @@ msgstr "Cerca" #: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 #: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 -#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_operations.php:726 tbl_select.php:323 tbl_structure.php:559 #: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 #: view_create.php:181 view_operations.php:99 msgid "Go" @@ -251,47 +251,64 @@ msgstr "Comando" msgid "and then" msgstr "e quindi" -#: db_operations.php:390 +#: db_operations.php:379 +#, fuzzy +#| msgid "Rename database to" +msgid "Remove database" +msgstr "Rinomina il DataBase in" + +#: db_operations.php:391 +#, php-format +msgid "Database %s has been dropped." +msgstr "Il Database %s è stato eliminato." + +#: db_operations.php:396 +#, fuzzy +#| msgid "Go to database" +msgid "Drop the database (DROP)" +msgstr "Vai al database" + +#: db_operations.php:424 msgid "Copy database to" msgstr "Copia il Database in" -#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:431 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Solo struttura" -#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:432 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Struttura e dati" -#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:433 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Solo dati" -#: db_operations.php:407 +#: db_operations.php:441 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE prima di copiare" -#: db_operations.php:410 libraries/export/sql.php:51 +#: db_operations.php:444 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 #: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "Aggiungi %s" -#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: db_operations.php:448 libraries/export/sql.php:77 tbl_operations.php:296 #: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Aggiungi valore AUTO_INCREMENT" -#: db_operations.php:418 tbl_operations.php:542 +#: db_operations.php:452 tbl_operations.php:542 msgid "Add constraints" msgstr "Aggiungi vincoli" -#: db_operations.php:431 +#: db_operations.php:465 msgid "Switch to copied database" msgstr "Passare al Database copiato" -#: db_operations.php:451 libraries/Index.class.php:447 +#: db_operations.php:485 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 #: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 #: server_collations.php:53 server_collations.php:65 server_databases.php:108 @@ -300,7 +317,7 @@ msgstr "Passare al Database copiato" msgid "Collation" msgstr "Collation" -#: db_operations.php:464 pdf_schema.php:32 +#: db_operations.php:498 pdf_schema.php:32 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -312,7 +329,7 @@ msgstr "" "Le caratteristiche aggiuntive sono state disattivate per funzionare con le " "tabelle linkate. Per scoprire perché clicca %squi%s." -#: db_operations.php:497 +#: db_operations.php:531 msgid "Edit PDF Pages" msgstr "Modifica pagine PDF" @@ -368,7 +385,7 @@ msgstr[0] "%s tabella(e)" msgstr[1] "%s tabella(e)" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -460,7 +477,7 @@ msgstr "Invia Query" #: db_search.php:50 libraries/auth/config.auth.lib.php:83 #: libraries/auth/config.auth.lib.php:102 -#: libraries/auth/cookie.auth.lib.php:640 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:182 msgid "Access denied" msgstr "Accesso negato" @@ -503,7 +520,7 @@ msgid "Browse" msgstr "Mostra" #: db_search.php:254 libraries/display_tbl.lib.php:1163 -#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:440 #: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 @@ -546,14 +563,14 @@ msgstr "Campi contenuti:" #: db_structure.php:79 db_structure.php:80 db_structure.php:92 #: db_structure.php:93 db_structure.php:105 db_structure.php:106 -#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:311 +#: libraries/sql_query_form.lib.php:314 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Inserisci" #: db_structure.php:81 db_structure.php:94 db_structure.php:107 #: libraries/common.lib.php:2832 libraries/common.lib.php:2839 -#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 +#: libraries/db_links.inc.php:48 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 @@ -566,8 +583,7 @@ msgstr "Struttura" #: db_structure.php:96 db_structure.php:108 db_structure.php:109 #: db_structure.php:530 db_structure.php:531 db_tracking.php:86 #: libraries/Index.class.php:482 libraries/common.lib.php:1663 -#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 #: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 #: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" @@ -576,21 +592,21 @@ msgstr "Elimina" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 +#: libraries/mult_submits.inc.php:38 msgid "Empty" msgstr "Svuota" -#: db_structure.php:301 libraries/tbl_links.inc.php:98 +#: db_structure.php:301 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "La tabella %s è stata svuotata" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "View %s has been dropped" msgstr "La vista %s è stata eliminata" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "La tabella %s è stata eliminata" @@ -682,7 +698,7 @@ msgstr "Ripara tabella" msgid "Analyze table" msgstr "Analizza tabella" -#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:56 #: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 #: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 #: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 @@ -1369,7 +1385,7 @@ msgid "Databases" msgstr "Database" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30 #: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 #: tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -1474,7 +1490,7 @@ msgid "Cannot connect: invalid settings." msgstr "Impossibile connettersi: impostazioni non valide." #: libraries/auth/config.auth.lib.php:91 -#: libraries/auth/cookie.auth.lib.php:205 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:206 libraries/auth/http.auth.lib.php:64 #: test/theme.php:151 #, php-format msgid "Welcome to %s" @@ -1501,58 +1517,58 @@ msgstr "" "l'username e la password nel file config.inc.php ed assicurarsi che " "corrispondano alle informazioni fornite dall'amministratore del server MySQL." -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:231 msgid "Log in" msgstr "Connetti" -#: libraries/auth/cookie.auth.lib.php:232 -#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:233 +#: libraries/auth/cookie.auth.lib.php:235 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:94 msgid "phpMyAdmin documentation" msgstr "Documentazione di phpMyAdmin" -#: libraries/auth/cookie.auth.lib.php:244 #: libraries/auth/cookie.auth.lib.php:245 +#: libraries/auth/cookie.auth.lib.php:246 msgid "You can enter hostname/IP address and port separated by space." msgstr "Puoi inserire Indirizzo IP/hostname a porta separati dallo spazio." -#: libraries/auth/cookie.auth.lib.php:244 +#: libraries/auth/cookie.auth.lib.php:245 msgid "Server:" msgstr "Server" -#: libraries/auth/cookie.auth.lib.php:249 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Username:" msgstr "Nome utente:" -#: libraries/auth/cookie.auth.lib.php:253 +#: libraries/auth/cookie.auth.lib.php:254 msgid "Password:" msgstr "Password:" -#: libraries/auth/cookie.auth.lib.php:260 +#: libraries/auth/cookie.auth.lib.php:261 msgid "Server Choice" msgstr "Scelta del server" -#: libraries/auth/cookie.auth.lib.php:306 libraries/header.inc.php:58 +#: libraries/auth/cookie.auth.lib.php:307 libraries/header.inc.php:58 msgid "Cookies must be enabled past this point." msgstr "Da questo punto in poi, i cookie devono essere abilitati." -#: libraries/auth/cookie.auth.lib.php:638 +#: libraries/auth/cookie.auth.lib.php:639 #: libraries/auth/signon.auth.lib.php:180 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" "Login senza password è vietato dalla configurazione (vedi AllowNoPassword)" -#: libraries/auth/cookie.auth.lib.php:642 +#: libraries/auth/cookie.auth.lib.php:643 #: libraries/auth/signon.auth.lib.php:184 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" "Nessuna attività da %s secondi o più, si prega di autenticarsi nuovamente" -#: libraries/auth/cookie.auth.lib.php:652 -#: libraries/auth/cookie.auth.lib.php:654 +#: libraries/auth/cookie.auth.lib.php:653 +#: libraries/auth/cookie.auth.lib.php:655 #: libraries/auth/signon.auth.lib.php:190 msgid "Cannot log in to the MySQL server" msgstr "Impossibile eseguire il login nel server MySQL" @@ -1672,7 +1688,7 @@ msgstr "en" #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 #: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 -#: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 +#: libraries/sql_query_form.lib.php:421 libraries/sql_query_form.lib.php:424 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" msgstr "Documentazione" @@ -1815,19 +1831,19 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "La %s funzionalità è affetta da un bug noto, vedi %s" #: libraries/common.lib.php:2833 libraries/common.lib.php:2840 -#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 +#: libraries/db_links.inc.php:53 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 #: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 -#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:86 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "Operazioni" -#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:265 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1843,36 +1859,31 @@ msgstr "Eventi" msgid "Name" msgstr "Nome" -#: libraries/db_links.inc.php:43 -#, php-format -msgid "Database %s has been dropped." -msgstr "Il Database %s è stato eliminato." - -#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 -#: libraries/db_links.inc.php:57 +#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43 +#: libraries/db_links.inc.php:44 msgid "Database seems to be empty!" msgstr "Il databse sembra essere vuoto!" -#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/db_links.inc.php:66 libraries/relation.lib.php:137 #: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:84 +#: libraries/db_links.inc.php:71 msgid "Query" msgstr "Query da esempio" -#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 +#: libraries/db_links.inc.php:76 libraries/relation.lib.php:133 msgid "Designer" msgstr "Designer" -#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:87 #: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importa" -#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:65 #: server_privileges.php:110 server_privileges.php:1718 #: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" @@ -2039,7 +2050,7 @@ msgid "remember template" msgstr "ricorda il template" #: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 -#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 +#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:509 msgid "Character set of the file:" msgstr "Set di caratteri del file:" @@ -2097,7 +2108,7 @@ msgstr "" msgid "File to import" msgstr "File importato" -#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:497 +#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:484 msgid "Location of the text file" msgstr "Percorso del file" @@ -2105,12 +2116,12 @@ msgstr "Percorso del file" msgid "File uploads are not allowed on this server." msgstr "Non è permesso l'upload dei file su questo server." -#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 +#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:493 #: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "La directory impostata per l'upload non può essere trovata" -#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 +#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:496 #: tbl_change.php:925 msgid "web server upload directory" msgstr "directory di upload del web-server" @@ -3529,7 +3540,7 @@ msgstr "" "Prego leggere la documentazione su come aggiornare la vostra tabella " "Column_comments" -#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:403 msgid "Bookmarked SQL query" msgstr "Query SQL aggiunte ai preferiti" @@ -3599,7 +3610,7 @@ msgstr "Mostra lo stato degli slave" msgid "Slave status" msgstr "Mostra lo stato degli slave" -#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:428 +#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:415 #: server_status.php:736 server_variables.php:51 msgid "Variable" msgstr "Variabile" @@ -3728,51 +3739,51 @@ msgstr "Differenza" msgid "Target database" msgstr "Database di destinazione" -#: libraries/sql_query_form.lib.php:219 +#: libraries/sql_query_form.lib.php:217 #, php-format msgid "Run SQL query/queries on server %s" msgstr "Eseguendo query SQL sul server %s" -#: libraries/sql_query_form.lib.php:236 libraries/sql_query_form.lib.php:261 +#: libraries/sql_query_form.lib.php:234 libraries/sql_query_form.lib.php:258 #, 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:307 +#: libraries/sql_query_form.lib.php:294 #, fuzzy #| msgid "Column names" msgid "Columns" msgstr "Nomi delle colonne" -#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 +#: libraries/sql_query_form.lib.php:329 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "Aggiungi ai preferiti questa query SQL" -#: libraries/sql_query_form.lib.php:349 sql.php:669 +#: libraries/sql_query_form.lib.php:336 sql.php:669 msgid "Let every user access this bookmark" msgstr "Permetti ad ogni utente di accedere a questo bookmark" -#: libraries/sql_query_form.lib.php:355 +#: libraries/sql_query_form.lib.php:342 msgid "Replace existing bookmark of same name" msgstr "Sostituisci segnalibro esistente se con lo stesso nome" -#: libraries/sql_query_form.lib.php:371 +#: libraries/sql_query_form.lib.php:358 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:378 +#: libraries/sql_query_form.lib.php:365 msgid "Delimiter" msgstr "Delimitatori" -#: libraries/sql_query_form.lib.php:386 +#: libraries/sql_query_form.lib.php:373 msgid " Show this query here again " msgstr "Mostra di nuovo questa query" -#: libraries/sql_query_form.lib.php:445 +#: libraries/sql_query_form.lib.php:432 msgid "Submit" msgstr "Invia" -#: libraries/sql_query_form.lib.php:449 +#: libraries/sql_query_form.lib.php:436 msgid "View only" msgstr "Visualizza solo" @@ -3846,12 +3857,11 @@ msgstr "" "installato le estensioni php necessarie come descritto nella %sdocumentazione" "%s." -#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 -#: libraries/tbl_links.inc.php:139 +#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107 msgid "Table seems to be empty!" msgstr "La tabella sembra essere vuota!" -#: libraries/tbl_links.inc.php:147 +#: libraries/tbl_links.inc.php:115 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" @@ -8084,40 +8094,54 @@ msgstr "La tabella %s è stata inizializzata" msgid "Flush the table (FLUSH)" msgstr "Inizializza (\"FLUSH\") la tabella" -#: tbl_operations.php:648 +#: tbl_operations.php:642 +#, fuzzy +#| msgid "Table name" +msgid "Table removal" +msgstr "Nome tabella" + +#: tbl_operations.php:657 +msgid "Empty the table (TRUNCATE)" +msgstr "" + +#: tbl_operations.php:675 +msgid "Drop the table (DROP)" +msgstr "" + +#: tbl_operations.php:696 msgid "Partition maintenance" msgstr "Manutenzione partizione" -#: tbl_operations.php:656 +#: tbl_operations.php:704 #, php-format msgid "Partition %s" msgstr "Partizione %s" -#: tbl_operations.php:659 +#: tbl_operations.php:707 msgid "Analyze" msgstr "Analizza" -#: tbl_operations.php:660 +#: tbl_operations.php:708 msgid "Check" msgstr "Controlla" -#: tbl_operations.php:661 +#: tbl_operations.php:709 msgid "Optimize" msgstr "Ottimizza" -#: tbl_operations.php:662 +#: tbl_operations.php:710 msgid "Rebuild" msgstr "Ricrea" -#: tbl_operations.php:663 +#: tbl_operations.php:711 msgid "Repair" msgstr "Ripara" -#: tbl_operations.php:675 +#: tbl_operations.php:723 msgid "Remove partitioning" msgstr "Rimuove partizionamento" -#: tbl_operations.php:701 +#: tbl_operations.php:749 msgid "Check referential integrity:" msgstr "Controlla l'integrità delle referenze:" diff --git a/po/ja.po b/po/ja.po index 30df2220c..c37193159 100644 --- a/po/ja.po +++ b/po/ja.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-26 17:18+0200\n" +"POT-Creation-Date: 2010-07-27 10:12+0200\n" "PO-Revision-Date: 2010-03-12 11:22+0200\n" "Last-Translator: Michal \n" "Language-Team: japanese \n" @@ -39,16 +39,16 @@ msgstr "" #: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 #: db_structure.php:89 db_structure.php:91 db_structure.php:102 #: db_structure.php:104 libraries/common.lib.php:2834 -#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "検索" #: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 -#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_operations.php:468 db_operations.php:492 db_search.php:344 #: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 #: libraries/Theme_Manager.class.php:305 -#: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 +#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:712 #: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 @@ -56,8 +56,8 @@ msgstr "検索" #: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 #: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 -#: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: libraries/sql_query_form.lib.php:377 libraries/sql_query_form.lib.php:447 +#: libraries/sql_query_form.lib.php:512 libraries/tbl_properties.inc.php:780 #: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 #: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 #: server_privileges.php:663 server_privileges.php:1620 @@ -67,7 +67,7 @@ msgstr "検索" #: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 #: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 -#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_operations.php:726 tbl_select.php:323 tbl_structure.php:559 #: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 #: view_create.php:181 view_operations.php:99 msgid "Go" @@ -250,47 +250,64 @@ msgstr "コマンド" msgid "and then" msgstr "続いて" -#: db_operations.php:390 +#: db_operations.php:379 +#, fuzzy +#| msgid "Rename database to" +msgid "Remove database" +msgstr "新しいデータベース名" + +#: db_operations.php:391 +#, php-format +msgid "Database %s has been dropped." +msgstr "データベース %s を削除しました" + +#: db_operations.php:396 +#, fuzzy +#| msgid "Copy database to" +msgid "Drop the database (DROP)" +msgstr "データベースのコピー先" + +#: db_operations.php:424 msgid "Copy database to" msgstr "データベースのコピー先" -#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:431 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "構造のみ" -#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:432 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "構造とデータ" -#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:433 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "データのみ" -#: db_operations.php:407 +#: db_operations.php:441 msgid "CREATE DATABASE before copying" msgstr "コピーの前に CREATE DATABASE する" -#: db_operations.php:410 libraries/export/sql.php:51 +#: db_operations.php:444 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 #: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "%s を追加" -#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: db_operations.php:448 libraries/export/sql.php:77 tbl_operations.php:296 #: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT 値を追加する" -#: db_operations.php:418 tbl_operations.php:542 +#: db_operations.php:452 tbl_operations.php:542 msgid "Add constraints" msgstr "制約を追加する" -#: db_operations.php:431 +#: db_operations.php:465 msgid "Switch to copied database" msgstr "コピーしたデータベースに切り替える" -#: db_operations.php:451 libraries/Index.class.php:447 +#: db_operations.php:485 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 #: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 #: server_collations.php:53 server_collations.php:65 server_databases.php:108 @@ -299,7 +316,7 @@ msgstr "コピーしたデータベースに切り替える" msgid "Collation" msgstr "照合順序" -#: db_operations.php:464 pdf_schema.php:32 +#: db_operations.php:498 pdf_schema.php:32 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -311,7 +328,7 @@ msgstr "" "リンクテーブルを処理するための追加機能が無効になっています。理由については%s" "こちら%sをご覧ください" -#: db_operations.php:497 +#: db_operations.php:531 msgid "Edit PDF Pages" msgstr "PDF ページを編集する" @@ -366,7 +383,7 @@ msgid_plural "%s tables" msgstr[0] "%s テーブル" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -458,7 +475,7 @@ msgstr "クエリを実行する" #: db_search.php:50 libraries/auth/config.auth.lib.php:83 #: libraries/auth/config.auth.lib.php:102 -#: libraries/auth/cookie.auth.lib.php:640 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:182 msgid "Access denied" msgstr "アクセスは拒否されました" @@ -500,7 +517,7 @@ msgid "Browse" msgstr "表示" #: db_search.php:254 libraries/display_tbl.lib.php:1163 -#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:440 #: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 @@ -542,14 +559,14 @@ msgstr "検索するフィールド:" #: db_structure.php:79 db_structure.php:80 db_structure.php:92 #: db_structure.php:93 db_structure.php:105 db_structure.php:106 -#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:311 +#: libraries/sql_query_form.lib.php:314 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "挿入" #: db_structure.php:81 db_structure.php:94 db_structure.php:107 #: libraries/common.lib.php:2832 libraries/common.lib.php:2839 -#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 +#: libraries/db_links.inc.php:48 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 @@ -562,8 +579,7 @@ msgstr "構造" #: db_structure.php:96 db_structure.php:108 db_structure.php:109 #: db_structure.php:530 db_structure.php:531 db_tracking.php:86 #: libraries/Index.class.php:482 libraries/common.lib.php:1663 -#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 #: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 #: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" @@ -572,21 +588,21 @@ msgstr "削除" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 +#: libraries/mult_submits.inc.php:38 msgid "Empty" msgstr "空にする" -#: db_structure.php:301 libraries/tbl_links.inc.php:98 +#: db_structure.php:301 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "テーブル %s を空にしました" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "View %s has been dropped" msgstr "ビュー %s を破棄しました" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "テーブル %s を削除しました" @@ -676,7 +692,7 @@ msgstr "テーブルを修復する" msgid "Analyze table" msgstr "テーブルを分析する" -#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:56 #: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 #: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 #: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 @@ -1404,7 +1420,7 @@ msgid "Databases" msgstr "データベース" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30 #: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 #: tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -1507,7 +1523,7 @@ msgid "Cannot connect: invalid settings." msgstr "接続できません: 設定が無効です" #: libraries/auth/config.auth.lib.php:91 -#: libraries/auth/cookie.auth.lib.php:205 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:206 libraries/auth/http.auth.lib.php:64 #: test/theme.php:151 #, php-format msgid "Welcome to %s" @@ -1533,56 +1549,56 @@ msgstr "" "ユーザ名、パスワードが MySQL サーバの管理者から与えられた情報と一致するか確認" "してください" -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:231 msgid "Log in" msgstr "ログイン" -#: libraries/auth/cookie.auth.lib.php:232 -#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:233 +#: libraries/auth/cookie.auth.lib.php:235 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:94 msgid "phpMyAdmin documentation" msgstr "phpMyAdmin のドキュメント" -#: libraries/auth/cookie.auth.lib.php:244 #: libraries/auth/cookie.auth.lib.php:245 +#: libraries/auth/cookie.auth.lib.php:246 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:244 +#: libraries/auth/cookie.auth.lib.php:245 msgid "Server:" msgstr "サーバ" -#: libraries/auth/cookie.auth.lib.php:249 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Username:" msgstr "ユーザ名:" -#: libraries/auth/cookie.auth.lib.php:253 +#: libraries/auth/cookie.auth.lib.php:254 msgid "Password:" msgstr "パスワード:" -#: libraries/auth/cookie.auth.lib.php:260 +#: libraries/auth/cookie.auth.lib.php:261 msgid "Server Choice" msgstr "サーバの選択" -#: libraries/auth/cookie.auth.lib.php:306 libraries/header.inc.php:58 +#: libraries/auth/cookie.auth.lib.php:307 libraries/header.inc.php:58 msgid "Cookies must be enabled past this point." msgstr "クッキーを有効にしてください" -#: libraries/auth/cookie.auth.lib.php:638 +#: libraries/auth/cookie.auth.lib.php:639 #: libraries/auth/signon.auth.lib.php:180 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" -#: libraries/auth/cookie.auth.lib.php:642 +#: libraries/auth/cookie.auth.lib.php:643 #: libraries/auth/signon.auth.lib.php:184 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "%s 秒以上操作をしませんでした。ログインしなおしてください" -#: libraries/auth/cookie.auth.lib.php:652 -#: libraries/auth/cookie.auth.lib.php:654 +#: libraries/auth/cookie.auth.lib.php:653 +#: libraries/auth/cookie.auth.lib.php:655 #: libraries/auth/signon.auth.lib.php:190 msgid "Cannot log in to the MySQL server" msgstr "MySQL サーバにログインできません" @@ -1702,7 +1718,7 @@ msgstr "en" #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 #: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 -#: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 +#: libraries/sql_query_form.lib.php:421 libraries/sql_query_form.lib.php:424 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" msgstr "ドキュメント" @@ -1845,19 +1861,19 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "%s の機能には既知のバグがあります。%s をご覧ください" #: libraries/common.lib.php:2833 libraries/common.lib.php:2840 -#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 +#: libraries/db_links.inc.php:53 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 #: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 -#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:86 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "操作" -#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:265 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1873,36 +1889,31 @@ msgstr "イベント" msgid "Name" msgstr "名前" -#: libraries/db_links.inc.php:43 -#, php-format -msgid "Database %s has been dropped." -msgstr "データベース %s を削除しました" - -#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 -#: libraries/db_links.inc.php:57 +#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43 +#: libraries/db_links.inc.php:44 msgid "Database seems to be empty!" msgstr "データベースが空のようです!" -#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/db_links.inc.php:66 libraries/relation.lib.php:137 #: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:84 +#: libraries/db_links.inc.php:71 msgid "Query" msgstr "クエリ" -#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 +#: libraries/db_links.inc.php:76 libraries/relation.lib.php:133 msgid "Designer" msgstr "デザイナ" -#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:87 #: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "インポート" -#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:65 #: server_privileges.php:110 server_privileges.php:1718 #: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" @@ -2072,7 +2083,7 @@ msgid "remember template" msgstr "テンプレートを記憶させる" #: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 -#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 +#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:509 msgid "Character set of the file:" msgstr "ファイルの文字セット:" @@ -2125,7 +2136,7 @@ msgstr "" msgid "File to import" msgstr "インポートするファイル" -#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:497 +#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:484 msgid "Location of the text file" msgstr "テキストファイルの位置" @@ -2133,12 +2144,12 @@ msgstr "テキストファイルの位置" msgid "File uploads are not allowed on this server." msgstr "このサーバではファイルのアップロードはできません" -#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 +#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:493 #: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "指定したアップロードディレクトリが利用できません" -#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 +#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:496 #: tbl_change.php:925 msgid "web server upload directory" msgstr "ウェブサーバ上のアップロードディレクトリ" @@ -3542,7 +3553,7 @@ msgid "" "Please see the documentation on how to update your column_comments table" msgstr "column_comments テーブルの更新方法についてはドキュメントをご覧ください" -#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:403 msgid "Bookmarked SQL query" msgstr "ブックマークされている SQL" @@ -3607,7 +3618,7 @@ msgstr "" msgid "Slave status" msgstr "" -#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:428 +#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:415 #: server_status.php:736 server_variables.php:51 msgid "Variable" msgstr "変数" @@ -3734,51 +3745,51 @@ msgstr "" msgid "Target database" msgstr "" -#: libraries/sql_query_form.lib.php:219 +#: libraries/sql_query_form.lib.php:217 #, php-format msgid "Run SQL query/queries on server %s" msgstr "サーバ %s 上でクエリを実行する" -#: libraries/sql_query_form.lib.php:236 libraries/sql_query_form.lib.php:261 +#: libraries/sql_query_form.lib.php:234 libraries/sql_query_form.lib.php:258 #, php-format msgid "Run SQL query/queries on database %s" msgstr "データベース %s 上でクエリを実行する" -#: libraries/sql_query_form.lib.php:307 +#: libraries/sql_query_form.lib.php:294 #, fuzzy #| msgid "Column names" msgid "Columns" msgstr "カラム名" -#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 +#: libraries/sql_query_form.lib.php:329 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "この SQL をブックマークする" -#: libraries/sql_query_form.lib.php:349 sql.php:669 +#: libraries/sql_query_form.lib.php:336 sql.php:669 msgid "Let every user access this bookmark" msgstr "すべてのユーザがこのブックマークを利用できるようにする" -#: libraries/sql_query_form.lib.php:355 +#: libraries/sql_query_form.lib.php:342 msgid "Replace existing bookmark of same name" msgstr "同名のブックマークは差し替える" -#: libraries/sql_query_form.lib.php:371 +#: libraries/sql_query_form.lib.php:358 msgid "Do not overwrite this query from outside the window" msgstr "他のウィンドウからクエリを上書きすることはできません" -#: libraries/sql_query_form.lib.php:378 +#: libraries/sql_query_form.lib.php:365 msgid "Delimiter" msgstr "デリミタ" -#: libraries/sql_query_form.lib.php:386 +#: libraries/sql_query_form.lib.php:373 msgid " Show this query here again " msgstr " 実行したクエリをここに表示する" -#: libraries/sql_query_form.lib.php:445 +#: libraries/sql_query_form.lib.php:432 msgid "Submit" msgstr "実行する" -#: libraries/sql_query_form.lib.php:449 +#: libraries/sql_query_form.lib.php:436 msgid "View only" msgstr "表示のみ" @@ -3849,12 +3860,11 @@ msgstr "" "SQL の検証機能を初期化できません。%sドキュメント%s の記載通りに必要な PHP 拡" "張がインストールされているか確認してください" -#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 -#: libraries/tbl_links.inc.php:139 +#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107 msgid "Table seems to be empty!" msgstr "テーブルが空のようです!" -#: libraries/tbl_links.inc.php:147 +#: libraries/tbl_links.inc.php:115 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" @@ -7950,40 +7960,54 @@ msgstr "テーブル %s をフラッシュしました" msgid "Flush the table (FLUSH)" msgstr "テーブルをフラッシュする(\"FLUSH\")" -#: tbl_operations.php:648 +#: tbl_operations.php:642 +#, fuzzy +#| msgid "Table name" +msgid "Table removal" +msgstr "テーブル名" + +#: tbl_operations.php:657 +msgid "Empty the table (TRUNCATE)" +msgstr "" + +#: tbl_operations.php:675 +msgid "Drop the table (DROP)" +msgstr "" + +#: tbl_operations.php:696 msgid "Partition maintenance" msgstr "パーティション管理" -#: tbl_operations.php:656 +#: tbl_operations.php:704 #, php-format msgid "Partition %s" msgstr "パーティション %s" -#: tbl_operations.php:659 +#: tbl_operations.php:707 msgid "Analyze" msgstr "分析" -#: tbl_operations.php:660 +#: tbl_operations.php:708 msgid "Check" msgstr "確認" -#: tbl_operations.php:661 +#: tbl_operations.php:709 msgid "Optimize" msgstr "最適化" -#: tbl_operations.php:662 +#: tbl_operations.php:710 msgid "Rebuild" msgstr "再構築" -#: tbl_operations.php:663 +#: tbl_operations.php:711 msgid "Repair" msgstr "修復" -#: tbl_operations.php:675 +#: tbl_operations.php:723 msgid "Remove partitioning" msgstr "パーティションを削除" -#: tbl_operations.php:701 +#: tbl_operations.php:749 msgid "Check referential integrity:" msgstr "参照整合性の確認:" diff --git a/po/ka.po b/po/ka.po index 3667ea8a1..9ac914744 100644 --- a/po/ka.po +++ b/po/ka.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-26 17:18+0200\n" +"POT-Creation-Date: 2010-07-27 10:12+0200\n" "PO-Revision-Date: 2010-03-12 09:14+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: georgian \n" @@ -38,16 +38,16 @@ msgstr "" #: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 #: db_structure.php:89 db_structure.php:91 db_structure.php:102 #: db_structure.php:104 libraries/common.lib.php:2834 -#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "ძებნა" #: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 -#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_operations.php:468 db_operations.php:492 db_search.php:344 #: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 #: libraries/Theme_Manager.class.php:305 -#: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 +#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:712 #: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 @@ -55,8 +55,8 @@ msgstr "ძებნა" #: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 #: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 -#: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: libraries/sql_query_form.lib.php:377 libraries/sql_query_form.lib.php:447 +#: libraries/sql_query_form.lib.php:512 libraries/tbl_properties.inc.php:780 #: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 #: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 #: server_privileges.php:663 server_privileges.php:1620 @@ -66,7 +66,7 @@ msgstr "ძებნა" #: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 #: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 -#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_operations.php:726 tbl_select.php:323 tbl_structure.php:559 #: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 #: view_create.php:181 view_operations.php:99 msgid "Go" @@ -249,47 +249,63 @@ msgstr "ბრძანება" msgid "and then" msgstr "და შემდეგ" -#: db_operations.php:390 +#: db_operations.php:379 +#, fuzzy +#| msgid "Rename database to" +msgid "Remove database" +msgstr "Rename database to" + +#: db_operations.php:391 +#, php-format +msgid "Database %s has been dropped." +msgstr "Database %s has been dropped." + +#: db_operations.php:396 +#, fuzzy +msgid "Drop the database (DROP)" +msgstr "მონაცემთა ბაზები არაა" + +#: db_operations.php:424 msgid "Copy database to" msgstr "Copy database to" -#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:431 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "მხოლოდ სტრუქტურა" -#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:432 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "სტრუქტურა და მონაცემები" -#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:433 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "მხოლოდ მონაცემები" -#: db_operations.php:407 +#: db_operations.php:441 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE before copying" -#: db_operations.php:410 libraries/export/sql.php:51 +#: db_operations.php:444 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 #: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "Add %s" -#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: db_operations.php:448 libraries/export/sql.php:77 tbl_operations.php:296 #: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Add AUTO_INCREMENT value" -#: db_operations.php:418 tbl_operations.php:542 +#: db_operations.php:452 tbl_operations.php:542 msgid "Add constraints" msgstr "Add constraints" -#: db_operations.php:431 +#: db_operations.php:465 msgid "Switch to copied database" msgstr "Switch to copied database" -#: db_operations.php:451 libraries/Index.class.php:447 +#: db_operations.php:485 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 #: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 #: server_collations.php:53 server_collations.php:65 server_databases.php:108 @@ -298,7 +314,7 @@ msgstr "Switch to copied database" msgid "Collation" msgstr "კოლაცია" -#: db_operations.php:464 pdf_schema.php:32 +#: db_operations.php:498 pdf_schema.php:32 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -310,7 +326,7 @@ msgstr "" "The additional features for working with linked tables have been " "deactivated. To find out why click %shere%s." -#: db_operations.php:497 +#: db_operations.php:531 msgid "Edit PDF Pages" msgstr "PDF გვერდების რედაქტირება" @@ -366,7 +382,7 @@ msgstr[0] "%s table(s)" msgstr[1] "%s table(s)" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -458,7 +474,7 @@ msgstr "მოთხოვნის გაგზავნა" #: db_search.php:50 libraries/auth/config.auth.lib.php:83 #: libraries/auth/config.auth.lib.php:102 -#: libraries/auth/cookie.auth.lib.php:640 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:182 msgid "Access denied" msgstr "წვდომა აკრძალულია" @@ -501,7 +517,7 @@ msgid "Browse" msgstr "არჩევა" #: db_search.php:254 libraries/display_tbl.lib.php:1163 -#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:440 #: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 @@ -544,14 +560,14 @@ msgstr "ველში:" #: db_structure.php:79 db_structure.php:80 db_structure.php:92 #: db_structure.php:93 db_structure.php:105 db_structure.php:106 -#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:311 +#: libraries/sql_query_form.lib.php:314 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "ჩასმა" #: db_structure.php:81 db_structure.php:94 db_structure.php:107 #: libraries/common.lib.php:2832 libraries/common.lib.php:2839 -#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 +#: libraries/db_links.inc.php:48 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 @@ -564,8 +580,7 @@ msgstr "სტრუქტურა" #: db_structure.php:96 db_structure.php:108 db_structure.php:109 #: db_structure.php:530 db_structure.php:531 db_tracking.php:86 #: libraries/Index.class.php:482 libraries/common.lib.php:1663 -#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 #: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 #: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" @@ -574,21 +589,21 @@ msgstr "Drop" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 +#: libraries/mult_submits.inc.php:38 msgid "Empty" msgstr "ცარიელი" -#: db_structure.php:301 libraries/tbl_links.inc.php:98 +#: db_structure.php:301 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "Table %s has been emptied" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "View %s has been dropped" msgstr "View %s has been dropped" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "Table %s has been dropped" @@ -680,7 +695,7 @@ msgstr "ცხრილის აღდგენა" msgid "Analyze table" msgstr "Analyze table" -#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:56 #: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 #: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 #: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 @@ -1417,7 +1432,7 @@ msgid "Databases" msgstr "მონაცემთა ბაზები" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30 #: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 #: tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -1524,7 +1539,7 @@ msgid "Cannot connect: invalid settings." msgstr "დაკავშირება შეუძლებელია: პარამეტრები არასწორია." #: libraries/auth/config.auth.lib.php:91 -#: libraries/auth/cookie.auth.lib.php:205 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:206 libraries/auth/http.auth.lib.php:64 #: test/theme.php:151 #, php-format msgid "Welcome to %s" @@ -1551,56 +1566,56 @@ msgstr "" "configuration and make sure that they correspond to the information given by " "the administrator of the MySQL server." -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:231 msgid "Log in" msgstr "შესვლა" -#: libraries/auth/cookie.auth.lib.php:232 -#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:233 +#: libraries/auth/cookie.auth.lib.php:235 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:94 msgid "phpMyAdmin documentation" msgstr "phpMyAdmin-ის დოკუმენტაცია" -#: libraries/auth/cookie.auth.lib.php:244 #: libraries/auth/cookie.auth.lib.php:245 +#: libraries/auth/cookie.auth.lib.php:246 msgid "You can enter hostname/IP address and port separated by space." msgstr "You can enter hostname/IP address and port separated by space." -#: libraries/auth/cookie.auth.lib.php:244 +#: libraries/auth/cookie.auth.lib.php:245 msgid "Server:" msgstr "სერვერი:" -#: libraries/auth/cookie.auth.lib.php:249 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Username:" msgstr "მომხმარებელი:" -#: libraries/auth/cookie.auth.lib.php:253 +#: libraries/auth/cookie.auth.lib.php:254 msgid "Password:" msgstr "პაროლი:" -#: libraries/auth/cookie.auth.lib.php:260 +#: libraries/auth/cookie.auth.lib.php:261 msgid "Server Choice" msgstr "სერვერის არჩევა" -#: libraries/auth/cookie.auth.lib.php:306 libraries/header.inc.php:58 +#: libraries/auth/cookie.auth.lib.php:307 libraries/header.inc.php:58 msgid "Cookies must be enabled past this point." msgstr "Cookies must be enabled past this point." -#: libraries/auth/cookie.auth.lib.php:638 +#: libraries/auth/cookie.auth.lib.php:639 #: libraries/auth/signon.auth.lib.php:180 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" -#: libraries/auth/cookie.auth.lib.php:642 +#: libraries/auth/cookie.auth.lib.php:643 #: libraries/auth/signon.auth.lib.php:184 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "No activity within %s seconds; please log in again" -#: libraries/auth/cookie.auth.lib.php:652 -#: libraries/auth/cookie.auth.lib.php:654 +#: libraries/auth/cookie.auth.lib.php:653 +#: libraries/auth/cookie.auth.lib.php:655 #: libraries/auth/signon.auth.lib.php:190 msgid "Cannot log in to the MySQL server" msgstr "MySQL სერვერზე შესვლა შეუძლებელია" @@ -1722,7 +1737,7 @@ msgstr "ka" #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 #: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 -#: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 +#: libraries/sql_query_form.lib.php:421 libraries/sql_query_form.lib.php:424 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" msgstr "დოკუმენტაცია" @@ -1867,19 +1882,19 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "The %s functionality is affected by a known bug, see %s" #: libraries/common.lib.php:2833 libraries/common.lib.php:2840 -#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 +#: libraries/db_links.inc.php:53 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 #: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 -#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:86 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "მოქმედებები" -#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:265 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1895,36 +1910,31 @@ msgstr "მოვლენები" msgid "Name" msgstr "სახელი" -#: libraries/db_links.inc.php:43 -#, php-format -msgid "Database %s has been dropped." -msgstr "Database %s has been dropped." - -#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 -#: libraries/db_links.inc.php:57 +#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43 +#: libraries/db_links.inc.php:44 msgid "Database seems to be empty!" msgstr "Database seems to be empty!" -#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/db_links.inc.php:66 libraries/relation.lib.php:137 #: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:84 +#: libraries/db_links.inc.php:71 msgid "Query" msgstr "მოთხოვნა" -#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 +#: libraries/db_links.inc.php:76 libraries/relation.lib.php:133 msgid "Designer" msgstr "შემქნელი" -#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:87 #: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "შემოტანა" -#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:65 #: server_privileges.php:110 server_privileges.php:1718 #: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" @@ -2093,7 +2103,7 @@ msgid "remember template" msgstr "remember template" #: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 -#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 +#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:509 msgid "Character set of the file:" msgstr "სიმბოლოთა ნაკრები ფაილისთვის:" @@ -2146,7 +2156,7 @@ msgstr "" msgid "File to import" msgstr "შემოსატანი ფაილი" -#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:497 +#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:484 msgid "Location of the text file" msgstr "Location of the text file" @@ -2154,12 +2164,12 @@ msgstr "Location of the text file" msgid "File uploads are not allowed on this server." msgstr "File uploads are not allowed on this server." -#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 +#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:493 #: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "The directory you set for upload work cannot be reached" -#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 +#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:496 #: tbl_change.php:925 msgid "web server upload directory" msgstr "web server upload directory" @@ -3577,7 +3587,7 @@ msgid "" msgstr "" "Please see the documentation on how to update your column_comments table" -#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:403 msgid "Bookmarked SQL query" msgstr "Bookmarked SQL query" @@ -3645,7 +3655,7 @@ msgstr "Show slave status" msgid "Slave status" msgstr "Show slave status" -#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:428 +#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:415 #: server_status.php:736 server_variables.php:51 msgid "Variable" msgstr "ცვლადი" @@ -3775,51 +3785,51 @@ msgstr "" msgid "Target database" msgstr "მონაცემთა ბაზაში ძებნა" -#: libraries/sql_query_form.lib.php:219 +#: libraries/sql_query_form.lib.php:217 #, php-format msgid "Run SQL query/queries on server %s" msgstr "Run SQL query/queries on server %s" -#: libraries/sql_query_form.lib.php:236 libraries/sql_query_form.lib.php:261 +#: libraries/sql_query_form.lib.php:234 libraries/sql_query_form.lib.php:258 #, php-format msgid "Run SQL query/queries on database %s" msgstr "Run SQL query/queries on database %s" -#: libraries/sql_query_form.lib.php:307 +#: libraries/sql_query_form.lib.php:294 #, fuzzy #| msgid "Column names" msgid "Columns" msgstr "სვეტების სახელები" -#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 +#: libraries/sql_query_form.lib.php:329 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "Bookmark this SQL query" -#: libraries/sql_query_form.lib.php:349 sql.php:669 +#: libraries/sql_query_form.lib.php:336 sql.php:669 msgid "Let every user access this bookmark" msgstr "Let every user access this bookmark" -#: libraries/sql_query_form.lib.php:355 +#: libraries/sql_query_form.lib.php:342 msgid "Replace existing bookmark of same name" msgstr "Replace existing bookmark of same name" -#: libraries/sql_query_form.lib.php:371 +#: libraries/sql_query_form.lib.php:358 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:378 +#: libraries/sql_query_form.lib.php:365 msgid "Delimiter" msgstr "გამყოფი" -#: libraries/sql_query_form.lib.php:386 +#: libraries/sql_query_form.lib.php:373 msgid " Show this query here again " msgstr " Show this query here again " -#: libraries/sql_query_form.lib.php:445 +#: libraries/sql_query_form.lib.php:432 msgid "Submit" msgstr "Submit" -#: libraries/sql_query_form.lib.php:449 +#: libraries/sql_query_form.lib.php:436 msgid "View only" msgstr "View only" @@ -3890,12 +3900,11 @@ 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/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 -#: libraries/tbl_links.inc.php:139 +#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107 msgid "Table seems to be empty!" msgstr "როგორც ჩანს ცხრილი ცარიელია!" -#: libraries/tbl_links.inc.php:147 +#: libraries/tbl_links.inc.php:115 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" @@ -8236,40 +8245,54 @@ msgstr "Table %s has been flushed" msgid "Flush the table (FLUSH)" msgstr "Flush the table (\"FLUSH\")" -#: tbl_operations.php:648 +#: tbl_operations.php:642 +#, fuzzy +#| msgid "Table name" +msgid "Table removal" +msgstr "ცხრილის სახელი" + +#: tbl_operations.php:657 +msgid "Empty the table (TRUNCATE)" +msgstr "" + +#: tbl_operations.php:675 +msgid "Drop the table (DROP)" +msgstr "" + +#: tbl_operations.php:696 msgid "Partition maintenance" msgstr "Partition maintenance" -#: tbl_operations.php:656 +#: tbl_operations.php:704 #, php-format msgid "Partition %s" msgstr "დანაყოფი %s" -#: tbl_operations.php:659 +#: tbl_operations.php:707 msgid "Analyze" msgstr "Analyze" -#: tbl_operations.php:660 +#: tbl_operations.php:708 msgid "Check" msgstr "შემოწმება" -#: tbl_operations.php:661 +#: tbl_operations.php:709 msgid "Optimize" msgstr "ოპტიმიზება" -#: tbl_operations.php:662 +#: tbl_operations.php:710 msgid "Rebuild" msgstr "Rebuild" -#: tbl_operations.php:663 +#: tbl_operations.php:711 msgid "Repair" msgstr "აღდგენა" -#: tbl_operations.php:675 +#: tbl_operations.php:723 msgid "Remove partitioning" msgstr "Remove partitioning" -#: tbl_operations.php:701 +#: tbl_operations.php:749 msgid "Check referential integrity:" msgstr "Check referential integrity:" diff --git a/po/ko.po b/po/ko.po index 8dbbf9198..b8489007f 100644 --- a/po/ko.po +++ b/po/ko.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-26 17:18+0200\n" +"POT-Creation-Date: 2010-07-27 10:12+0200\n" "PO-Revision-Date: 2010-06-16 18:18+0200\n" "Last-Translator: \n" "Language-Team: korean \n" @@ -38,16 +38,16 @@ msgstr "" #: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 #: db_structure.php:89 db_structure.php:91 db_structure.php:102 #: db_structure.php:104 libraries/common.lib.php:2834 -#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "검색" #: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 -#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_operations.php:468 db_operations.php:492 db_search.php:344 #: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 #: libraries/Theme_Manager.class.php:305 -#: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 +#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:712 #: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 @@ -55,8 +55,8 @@ msgstr "검색" #: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 #: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 -#: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: libraries/sql_query_form.lib.php:377 libraries/sql_query_form.lib.php:447 +#: libraries/sql_query_form.lib.php:512 libraries/tbl_properties.inc.php:780 #: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 #: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 #: server_privileges.php:663 server_privileges.php:1620 @@ -66,7 +66,7 @@ msgstr "검색" #: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 #: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 -#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_operations.php:726 tbl_select.php:323 tbl_structure.php:559 #: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 #: view_create.php:181 view_operations.php:99 msgid "Go" @@ -247,47 +247,63 @@ msgstr "커맨드" msgid "and then" msgstr "이어서" -#: db_operations.php:390 +#: db_operations.php:379 +#, fuzzy +#| msgid "Rename database to" +msgid "Remove database" +msgstr "데이터베이스 이름 변경" + +#: db_operations.php:391 +#, php-format +msgid "Database %s has been dropped." +msgstr "데이터베이스 %s 를 제거했습니다." + +#: db_operations.php:396 +#, fuzzy +msgid "Drop the database (DROP)" +msgstr "데이터베이스가 없습니다" + +#: db_operations.php:424 msgid "Copy database to" msgstr "데이터베이스 복사" -#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:431 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "구조만" -#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:432 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "구조와 데이터 모두" -#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:433 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "데이터만" -#: db_operations.php:407 +#: db_operations.php:441 msgid "CREATE DATABASE before copying" msgstr "복사 전에 CREATE DATABASE 실행" -#: db_operations.php:410 libraries/export/sql.php:51 +#: db_operations.php:444 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 #: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "%s 추가" -#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: db_operations.php:448 libraries/export/sql.php:77 tbl_operations.php:296 #: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT 값 추가" -#: db_operations.php:418 tbl_operations.php:542 +#: db_operations.php:452 tbl_operations.php:542 msgid "Add constraints" msgstr "제약조건 추가" -#: db_operations.php:431 +#: db_operations.php:465 msgid "Switch to copied database" msgstr "복사한 테이블로 옮겨감" -#: db_operations.php:451 libraries/Index.class.php:447 +#: db_operations.php:485 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 #: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 #: server_collations.php:53 server_collations.php:65 server_databases.php:108 @@ -296,7 +312,7 @@ msgstr "복사한 테이블로 옮겨감" msgid "Collation" msgstr "데이터정렬방식" -#: db_operations.php:464 pdf_schema.php:32 +#: db_operations.php:498 pdf_schema.php:32 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -308,7 +324,7 @@ msgstr "" "링크 테이블을 처리하는 추가 기능이 비활성화되어 있습니다. 원인을 확인하려면 " "%s여기를 클릭%s하십시오." -#: db_operations.php:497 +#: db_operations.php:531 msgid "Edit PDF Pages" msgstr "PDF 페이지 편집" @@ -362,7 +378,7 @@ msgid_plural "%s tables" msgstr[0] "%s개 테이블 " #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -450,7 +466,7 @@ msgstr "질의 실행" #: db_search.php:50 libraries/auth/config.auth.lib.php:83 #: libraries/auth/config.auth.lib.php:102 -#: libraries/auth/cookie.auth.lib.php:640 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:182 msgid "Access denied" msgstr "접근이 거부되었습니다." @@ -492,7 +508,7 @@ msgid "Browse" msgstr "보기" #: db_search.php:254 libraries/display_tbl.lib.php:1163 -#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:440 #: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 @@ -532,14 +548,14 @@ msgstr "검색할 컬럼:" #: db_structure.php:79 db_structure.php:80 db_structure.php:92 #: db_structure.php:93 db_structure.php:105 db_structure.php:106 -#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:311 +#: libraries/sql_query_form.lib.php:314 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "삽입" #: db_structure.php:81 db_structure.php:94 db_structure.php:107 #: libraries/common.lib.php:2832 libraries/common.lib.php:2839 -#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 +#: libraries/db_links.inc.php:48 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 @@ -552,8 +568,7 @@ msgstr "구조" #: db_structure.php:96 db_structure.php:108 db_structure.php:109 #: db_structure.php:530 db_structure.php:531 db_tracking.php:86 #: libraries/Index.class.php:482 libraries/common.lib.php:1663 -#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 #: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 #: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" @@ -562,21 +577,21 @@ msgstr "삭제" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 +#: libraries/mult_submits.inc.php:38 msgid "Empty" msgstr "비우기" -#: db_structure.php:301 libraries/tbl_links.inc.php:98 +#: db_structure.php:301 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "테이블 %s 을 비웠습니다" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "View %s has been dropped" msgstr "뷰 %s가 제거되었습니다." -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "테이블 %s 을 제거했습니다." @@ -666,7 +681,7 @@ msgstr "테이블 복구" msgid "Analyze table" msgstr "테이블 분석" -#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:56 #: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 #: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 #: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 @@ -1344,7 +1359,7 @@ msgid "Databases" msgstr "데이터베이스 " #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30 #: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 #: tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -1447,7 +1462,7 @@ msgid "Cannot connect: invalid settings." msgstr "연결할 수 없습니다: 잘못된 설정." #: libraries/auth/config.auth.lib.php:91 -#: libraries/auth/cookie.auth.lib.php:205 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:206 libraries/auth/http.auth.lib.php:64 #: test/theme.php:151 #, php-format msgid "Welcome to %s" @@ -1470,57 +1485,57 @@ msgid "" "the administrator of the MySQL server." msgstr "" -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:231 msgid "Log in" msgstr "로그인" -#: libraries/auth/cookie.auth.lib.php:232 -#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:233 +#: libraries/auth/cookie.auth.lib.php:235 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:94 msgid "phpMyAdmin documentation" msgstr "phpMyAdmin 설명서" -#: libraries/auth/cookie.auth.lib.php:244 #: libraries/auth/cookie.auth.lib.php:245 +#: libraries/auth/cookie.auth.lib.php:246 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:244 +#: libraries/auth/cookie.auth.lib.php:245 msgid "Server:" msgstr "서버:" -#: libraries/auth/cookie.auth.lib.php:249 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Username:" msgstr "사용자명:" -#: libraries/auth/cookie.auth.lib.php:253 +#: libraries/auth/cookie.auth.lib.php:254 msgid "Password:" msgstr "암호:" -#: libraries/auth/cookie.auth.lib.php:260 +#: libraries/auth/cookie.auth.lib.php:261 msgid "Server Choice" msgstr "서버 선택" -#: libraries/auth/cookie.auth.lib.php:306 libraries/header.inc.php:58 +#: libraries/auth/cookie.auth.lib.php:307 libraries/header.inc.php:58 msgid "Cookies must be enabled past this point." msgstr "이 페이지를 넘기려면 쿠키 사용을 허용해야 합니다." -#: libraries/auth/cookie.auth.lib.php:638 +#: libraries/auth/cookie.auth.lib.php:639 #: libraries/auth/signon.auth.lib.php:180 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" -#: libraries/auth/cookie.auth.lib.php:642 +#: libraries/auth/cookie.auth.lib.php:643 #: libraries/auth/signon.auth.lib.php:184 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" "최근 %s초 동안 아무 동작이 없어 로그아웃 되었습니다. 다시 로그인해주세요." -#: libraries/auth/cookie.auth.lib.php:652 -#: libraries/auth/cookie.auth.lib.php:654 +#: libraries/auth/cookie.auth.lib.php:653 +#: libraries/auth/cookie.auth.lib.php:655 #: libraries/auth/signon.auth.lib.php:190 msgid "Cannot log in to the MySQL server" msgstr "MySQL 서버에 로그인할 수 없습니다" @@ -1636,7 +1651,7 @@ msgstr "ko" #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 #: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 -#: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 +#: libraries/sql_query_form.lib.php:421 libraries/sql_query_form.lib.php:424 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" msgstr "문서" @@ -1777,19 +1792,19 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/common.lib.php:2833 libraries/common.lib.php:2840 -#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 +#: libraries/db_links.inc.php:53 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 #: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 -#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:86 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "테이블 작업" -#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:265 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1805,37 +1820,32 @@ msgstr "" msgid "Name" msgstr "이름" -#: libraries/db_links.inc.php:43 -#, php-format -msgid "Database %s has been dropped." -msgstr "데이터베이스 %s 를 제거했습니다." - -#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 -#: libraries/db_links.inc.php:57 +#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43 +#: libraries/db_links.inc.php:44 msgid "Database seems to be empty!" msgstr "" -#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/db_links.inc.php:66 libraries/relation.lib.php:137 #: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:84 +#: libraries/db_links.inc.php:71 msgid "Query" msgstr "질의 마법사" -#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 +#: libraries/db_links.inc.php:76 libraries/relation.lib.php:133 msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:87 #: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 #, fuzzy msgid "Import" msgstr "내보내기" -#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:65 #: server_privileges.php:110 server_privileges.php:1718 #: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" @@ -1994,7 +2004,7 @@ msgid "remember template" msgstr "템플릿 기억" #: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 -#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 +#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:509 msgid "Character set of the file:" msgstr "파일 문자셋:" @@ -2047,7 +2057,7 @@ msgstr "" msgid "File to import" msgstr "" -#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:497 +#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:484 msgid "Location of the text file" msgstr "SQL 텍스트파일의 위치" @@ -2055,12 +2065,12 @@ msgstr "SQL 텍스트파일의 위치" msgid "File uploads are not allowed on this server." msgstr "" -#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 +#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:493 #: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "업로드 디렉토리에 접근할 수 없습니다" -#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 +#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:496 #: tbl_change.php:925 msgid "web server upload directory" msgstr "웹서버 업로드 디렉토리" @@ -3415,7 +3425,7 @@ msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" -#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:403 msgid "Bookmarked SQL query" msgstr "북마크된 SQL 질의" @@ -3480,7 +3490,7 @@ msgstr "" msgid "Slave status" msgstr "" -#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:428 +#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:415 #: server_status.php:736 server_variables.php:51 msgid "Variable" msgstr "변수" @@ -3612,51 +3622,51 @@ msgstr "" msgid "Target database" msgstr "데이터베이스 검색" -#: libraries/sql_query_form.lib.php:219 +#: libraries/sql_query_form.lib.php:217 #, fuzzy, php-format msgid "Run SQL query/queries on server %s" msgstr "데이터베이스 %s에 SQL 질의를 실행" -#: libraries/sql_query_form.lib.php:236 libraries/sql_query_form.lib.php:261 +#: libraries/sql_query_form.lib.php:234 libraries/sql_query_form.lib.php:258 #, php-format msgid "Run SQL query/queries on database %s" msgstr "데이터베이스 %s에 SQL 질의를 실행" -#: libraries/sql_query_form.lib.php:307 +#: libraries/sql_query_form.lib.php:294 #, fuzzy #| msgid "Column names" msgid "Columns" msgstr "열(칼럼) 이름" -#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 +#: libraries/sql_query_form.lib.php:329 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "이 SQL 질의를 북마크함" -#: libraries/sql_query_form.lib.php:349 sql.php:669 +#: libraries/sql_query_form.lib.php:336 sql.php:669 msgid "Let every user access this bookmark" msgstr "" -#: libraries/sql_query_form.lib.php:355 +#: libraries/sql_query_form.lib.php:342 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/sql_query_form.lib.php:371 +#: libraries/sql_query_form.lib.php:358 msgid "Do not overwrite this query from outside the window" msgstr "" -#: libraries/sql_query_form.lib.php:378 +#: libraries/sql_query_form.lib.php:365 msgid "Delimiter" msgstr "" -#: libraries/sql_query_form.lib.php:386 +#: libraries/sql_query_form.lib.php:373 msgid " Show this query here again " msgstr " 이 질의를 다시 보여줌 " -#: libraries/sql_query_form.lib.php:445 +#: libraries/sql_query_form.lib.php:432 msgid "Submit" msgstr "확인" -#: libraries/sql_query_form.lib.php:449 +#: libraries/sql_query_form.lib.php:436 msgid "View only" msgstr "View only" @@ -3718,12 +3728,11 @@ msgstr "" "SQL 검사기가 초기화되지 않았습니다. %s문서%s에서 설명한 php 확장모듈을 설치했" "는지 확인해보십시오." -#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 -#: libraries/tbl_links.inc.php:139 +#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107 msgid "Table seems to be empty!" msgstr "" -#: libraries/tbl_links.inc.php:147 +#: libraries/tbl_links.inc.php:115 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" @@ -7653,42 +7662,54 @@ msgstr "테이블 %s 을 닫았습니다(캐시 삭제)" msgid "Flush the table (FLUSH)" msgstr "테이블 닫기(캐시 삭제)" -#: tbl_operations.php:648 +#: tbl_operations.php:642 +msgid "Table removal" +msgstr "" + +#: tbl_operations.php:657 +msgid "Empty the table (TRUNCATE)" +msgstr "" + +#: tbl_operations.php:675 +msgid "Drop the table (DROP)" +msgstr "" + +#: tbl_operations.php:696 #, fuzzy msgid "Partition maintenance" msgstr "테이블 유지보수" -#: tbl_operations.php:656 +#: tbl_operations.php:704 #, php-format msgid "Partition %s" msgstr "" -#: tbl_operations.php:659 +#: tbl_operations.php:707 msgid "Analyze" msgstr "" -#: tbl_operations.php:660 +#: tbl_operations.php:708 msgid "Check" msgstr "" -#: tbl_operations.php:661 +#: tbl_operations.php:709 msgid "Optimize" msgstr "" -#: tbl_operations.php:662 +#: tbl_operations.php:710 msgid "Rebuild" msgstr "" -#: tbl_operations.php:663 +#: tbl_operations.php:711 #, fuzzy msgid "Repair" msgstr "테이블 복구" -#: tbl_operations.php:675 +#: tbl_operations.php:723 msgid "Remove partitioning" msgstr "" -#: tbl_operations.php:701 +#: tbl_operations.php:749 msgid "Check referential integrity:" msgstr "referential 무결성 검사:" diff --git a/po/lt.po b/po/lt.po index 3884cd010..60121d686 100644 --- a/po/lt.po +++ b/po/lt.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-26 17:18+0200\n" +"POT-Creation-Date: 2010-07-27 10:12+0200\n" "PO-Revision-Date: 2010-04-16 19:52+0200\n" "Last-Translator: Rytis \n" "Language-Team: lithuanian \n" @@ -39,16 +39,16 @@ msgstr "" #: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 #: db_structure.php:89 db_structure.php:91 db_structure.php:102 #: db_structure.php:104 libraries/common.lib.php:2834 -#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Paieška" #: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 -#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_operations.php:468 db_operations.php:492 db_search.php:344 #: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 #: libraries/Theme_Manager.class.php:305 -#: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 +#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:712 #: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 @@ -56,8 +56,8 @@ msgstr "Paieška" #: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 #: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 -#: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: libraries/sql_query_form.lib.php:377 libraries/sql_query_form.lib.php:447 +#: libraries/sql_query_form.lib.php:512 libraries/tbl_properties.inc.php:780 #: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 #: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 #: server_privileges.php:663 server_privileges.php:1620 @@ -67,7 +67,7 @@ msgstr "Paieška" #: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 #: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 -#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_operations.php:726 tbl_select.php:323 tbl_structure.php:559 #: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 #: view_create.php:181 view_operations.php:99 msgid "Go" @@ -248,47 +248,64 @@ msgstr "Komanda" msgid "and then" msgstr "ir tada" -#: db_operations.php:390 +#: db_operations.php:379 +#, fuzzy +#| msgid "Rename database to" +msgid "Remove database" +msgstr "Pervadinti duombazę į" + +#: db_operations.php:391 +#, php-format +msgid "Database %s has been dropped." +msgstr "Duombazė %s ištrinta." + +#: db_operations.php:396 +#, fuzzy +#| msgid "Go to database" +msgid "Drop the database (DROP)" +msgstr "Eiti į duomenų bazę" + +#: db_operations.php:424 msgid "Copy database to" msgstr "Kopijuoti duombazę į" -#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:431 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Tik struktūra" -#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:432 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Struktūra ir duomenys" -#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:433 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Tik duomenys" -#: db_operations.php:407 +#: db_operations.php:441 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE prieš kopijuojant" -#: db_operations.php:410 libraries/export/sql.php:51 +#: db_operations.php:444 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 #: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "Pridėti %s" -#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: db_operations.php:448 libraries/export/sql.php:77 tbl_operations.php:296 #: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Pridėti AUTO_INCREMENT reikšmę" -#: db_operations.php:418 tbl_operations.php:542 +#: db_operations.php:452 tbl_operations.php:542 msgid "Add constraints" msgstr "Pridėti apribojimą" -#: db_operations.php:431 +#: db_operations.php:465 msgid "Switch to copied database" msgstr "Pereiti į nukopijuotą duombazę" -#: db_operations.php:451 libraries/Index.class.php:447 +#: db_operations.php:485 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 #: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 #: server_collations.php:53 server_collations.php:65 server_databases.php:108 @@ -297,7 +314,7 @@ msgstr "Pereiti į nukopijuotą duombazę" msgid "Collation" msgstr "Palyginimas" -#: db_operations.php:464 pdf_schema.php:32 +#: db_operations.php:498 pdf_schema.php:32 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -309,7 +326,7 @@ msgstr "" "Nėra PMA lentelių, kurios leidžia dirbti su jungtinėmis MySQL lentelėmis. " "%sPaaiškinimas%s." -#: db_operations.php:497 +#: db_operations.php:531 msgid "Edit PDF Pages" msgstr "Redaguoti PDF puslapius" @@ -366,7 +383,7 @@ msgstr[1] "%s lentelė(s)" msgstr[2] "%s lentelė(s)" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -458,7 +475,7 @@ msgstr "Vykdyti užklausą" #: db_search.php:50 libraries/auth/config.auth.lib.php:83 #: libraries/auth/config.auth.lib.php:102 -#: libraries/auth/cookie.auth.lib.php:640 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:182 msgid "Access denied" msgstr "Priėjimas uždraustas" @@ -502,7 +519,7 @@ msgid "Browse" msgstr "Peržiūrėti" #: db_search.php:254 libraries/display_tbl.lib.php:1163 -#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:440 #: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 @@ -546,14 +563,14 @@ msgstr "Lentelės(ių) viduje:" #: db_structure.php:79 db_structure.php:80 db_structure.php:92 #: db_structure.php:93 db_structure.php:105 db_structure.php:106 -#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:311 +#: libraries/sql_query_form.lib.php:314 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Įterpti" #: db_structure.php:81 db_structure.php:94 db_structure.php:107 #: libraries/common.lib.php:2832 libraries/common.lib.php:2839 -#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 +#: libraries/db_links.inc.php:48 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 @@ -566,8 +583,7 @@ msgstr "Struktūra" #: db_structure.php:96 db_structure.php:108 db_structure.php:109 #: db_structure.php:530 db_structure.php:531 db_tracking.php:86 #: libraries/Index.class.php:482 libraries/common.lib.php:1663 -#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 #: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 #: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" @@ -576,21 +592,21 @@ msgstr "Šalinti" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 +#: libraries/mult_submits.inc.php:38 msgid "Empty" msgstr "Išvalyti" -#: db_structure.php:301 libraries/tbl_links.inc.php:98 +#: db_structure.php:301 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "Lentelės reikšmės %s ištuštintos" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "View %s has been dropped" msgstr "View'as %s buvo panaikintas" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "Lentelė %s panaikinta" @@ -680,7 +696,7 @@ msgstr "Redaguoti" msgid "Analyze table" msgstr "Analizuoti lentelę" -#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:56 #: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 #: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 #: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 @@ -1401,7 +1417,7 @@ msgid "Databases" msgstr "Duombazės" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30 #: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 #: tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -1508,7 +1524,7 @@ msgid "Cannot connect: invalid settings." msgstr "Neįmanoma prisijungti: neteisingi duomenys." #: libraries/auth/config.auth.lib.php:91 -#: libraries/auth/cookie.auth.lib.php:205 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:206 libraries/auth/http.auth.lib.php:64 #: test/theme.php:151 #, php-format msgid "Welcome to %s" @@ -1535,49 +1551,49 @@ msgstr "" "stoties adresą, prisijungimo vardą ir slaptažodį) ir įsitikinkite ar jie " "sutampa su duomenimis gautais iš darbinės stoties administratoriaus." -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:231 msgid "Log in" msgstr "Prisijungti" -#: libraries/auth/cookie.auth.lib.php:232 -#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:233 +#: libraries/auth/cookie.auth.lib.php:235 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:94 msgid "phpMyAdmin documentation" msgstr "phpMyAdmin'o dokumentacija" -#: libraries/auth/cookie.auth.lib.php:244 #: libraries/auth/cookie.auth.lib.php:245 +#: libraries/auth/cookie.auth.lib.php:246 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:244 +#: libraries/auth/cookie.auth.lib.php:245 msgid "Server:" msgstr "Darbinė stotis" -#: libraries/auth/cookie.auth.lib.php:249 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Username:" msgstr "Vartotojo vardas:" -#: libraries/auth/cookie.auth.lib.php:253 +#: libraries/auth/cookie.auth.lib.php:254 msgid "Password:" msgstr "Slaptažodis:" -#: libraries/auth/cookie.auth.lib.php:260 +#: libraries/auth/cookie.auth.lib.php:261 msgid "Server Choice" msgstr "Pasirinkti serverį" -#: libraries/auth/cookie.auth.lib.php:306 libraries/header.inc.php:58 +#: libraries/auth/cookie.auth.lib.php:307 libraries/header.inc.php:58 msgid "Cookies must be enabled past this point." msgstr "Sausainėliai(Cookies) turi būti priimami." -#: libraries/auth/cookie.auth.lib.php:638 +#: libraries/auth/cookie.auth.lib.php:639 #: libraries/auth/signon.auth.lib.php:180 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" -#: libraries/auth/cookie.auth.lib.php:642 +#: libraries/auth/cookie.auth.lib.php:643 #: libraries/auth/signon.auth.lib.php:184 #, php-format msgid "No activity within %s seconds; please log in again" @@ -1585,8 +1601,8 @@ msgstr "" "Daugiau nei %s sekundžių nebuvo atlikta jokių veiksmų. Prašau prisijungti iš " "naujo." -#: libraries/auth/cookie.auth.lib.php:652 -#: libraries/auth/cookie.auth.lib.php:654 +#: libraries/auth/cookie.auth.lib.php:653 +#: libraries/auth/cookie.auth.lib.php:655 #: libraries/auth/signon.auth.lib.php:190 msgid "Cannot log in to the MySQL server" msgstr "Nepavyksta prisijungti prie MySQL darbinės stoties" @@ -1705,7 +1721,7 @@ msgstr "en" #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 #: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 -#: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 +#: libraries/sql_query_form.lib.php:421 libraries/sql_query_form.lib.php:424 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" msgstr "?" @@ -1848,19 +1864,19 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/common.lib.php:2833 libraries/common.lib.php:2840 -#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 +#: libraries/db_links.inc.php:53 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 #: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 -#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:86 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "Veiksmai" -#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:265 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1876,37 +1892,32 @@ msgstr "Įvykiai" msgid "Name" msgstr "Pavadinimas" -#: libraries/db_links.inc.php:43 -#, php-format -msgid "Database %s has been dropped." -msgstr "Duombazė %s ištrinta." - -#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 -#: libraries/db_links.inc.php:57 +#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43 +#: libraries/db_links.inc.php:44 #, fuzzy msgid "Database seems to be empty!" msgstr "Lentelė atrodo tuščia!" -#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/db_links.inc.php:66 libraries/relation.lib.php:137 #: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:84 +#: libraries/db_links.inc.php:71 msgid "Query" msgstr "SQL užklausa" -#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 +#: libraries/db_links.inc.php:76 libraries/relation.lib.php:133 msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:87 #: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importuoti" -#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:65 #: server_privileges.php:110 server_privileges.php:1718 #: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" @@ -2073,7 +2084,7 @@ msgid "remember template" msgstr "atsiminti šabloną" #: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 -#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 +#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:509 msgid "Character set of the file:" msgstr "Simbolių koduotė faile:" @@ -2126,7 +2137,7 @@ msgstr "" msgid "File to import" msgstr "Failas importavimui" -#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:497 +#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:484 msgid "Location of the text file" msgstr "Tekstiniai SQL užklausų failai" @@ -2134,12 +2145,12 @@ msgstr "Tekstiniai SQL užklausų failai" msgid "File uploads are not allowed on this server." msgstr "" -#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 +#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:493 #: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "Nepasiekimas nurodytas www-serverio katalogas atsiuntimams." -#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 +#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:496 #: tbl_change.php:925 msgid "web server upload directory" msgstr "web serverio katalogas atsiuntimams" @@ -3510,7 +3521,7 @@ msgstr "" "Informaciją, kaip atnaujinti Column_comments lentelę, galite rasti " "dokumentacijoje." -#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:403 msgid "Bookmarked SQL query" msgstr "Sukurti nuoroda SQL-užklausai" @@ -3576,7 +3587,7 @@ msgstr "" msgid "Slave status" msgstr "" -#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:428 +#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:415 #: server_status.php:736 server_variables.php:51 msgid "Variable" msgstr "Kintamasis" @@ -3705,51 +3716,51 @@ msgstr "Skirtumas" msgid "Target database" msgstr "Paieška duombazėje" -#: libraries/sql_query_form.lib.php:219 +#: libraries/sql_query_form.lib.php:217 #, fuzzy, php-format msgid "Run SQL query/queries on server %s" msgstr "Vykdyti SQL sakinius duombazėje %s" -#: libraries/sql_query_form.lib.php:236 libraries/sql_query_form.lib.php:261 +#: libraries/sql_query_form.lib.php:234 libraries/sql_query_form.lib.php:258 #, php-format msgid "Run SQL query/queries on database %s" msgstr "Vykdyti SQL sakinius duombazėje %s" -#: libraries/sql_query_form.lib.php:307 +#: libraries/sql_query_form.lib.php:294 #, fuzzy #| msgid "Column names" msgid "Columns" msgstr "Stulpelių vardai" -#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 +#: libraries/sql_query_form.lib.php:329 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "Sukurti nuorodą" -#: libraries/sql_query_form.lib.php:349 sql.php:669 +#: libraries/sql_query_form.lib.php:336 sql.php:669 msgid "Let every user access this bookmark" msgstr "Leisti kitiems vartotojams naudotis šia žyme" -#: libraries/sql_query_form.lib.php:355 +#: libraries/sql_query_form.lib.php:342 msgid "Replace existing bookmark of same name" msgstr "Pakeisti jau egzistuojančią žymę tuo pačiu vardu" -#: libraries/sql_query_form.lib.php:371 +#: libraries/sql_query_form.lib.php:358 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:378 +#: libraries/sql_query_form.lib.php:365 msgid "Delimiter" msgstr "Skyriklis" -#: libraries/sql_query_form.lib.php:386 +#: libraries/sql_query_form.lib.php:373 msgid " Show this query here again " msgstr " Rodyti šią užklausą vėl " -#: libraries/sql_query_form.lib.php:445 +#: libraries/sql_query_form.lib.php:432 msgid "Submit" msgstr "Siųsti" -#: libraries/sql_query_form.lib.php:449 +#: libraries/sql_query_form.lib.php:436 msgid "View only" msgstr "Peržiūra" @@ -3820,12 +3831,11 @@ msgstr "" "Neveikia SQL interpretatorius. Prašome patikrinkite ar yra suinstaliuoti " "visi privalomi php moduliai, nurodyti %sdokumentacijoje%s." -#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 -#: libraries/tbl_links.inc.php:139 +#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107 msgid "Table seems to be empty!" msgstr "Lentelė atrodo tuščia!" -#: libraries/tbl_links.inc.php:147 +#: libraries/tbl_links.inc.php:115 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" @@ -7889,42 +7899,56 @@ msgstr "Lentelės buferis %s išvalytas" msgid "Flush the table (FLUSH)" msgstr "Išvalyti lentelę (\"FLUSH\")" -#: tbl_operations.php:648 +#: tbl_operations.php:642 +#, fuzzy +#| msgid "Table name" +msgid "Table removal" +msgstr "Lentelės vardas" + +#: tbl_operations.php:657 +msgid "Empty the table (TRUNCATE)" +msgstr "" + +#: tbl_operations.php:675 +msgid "Drop the table (DROP)" +msgstr "" + +#: tbl_operations.php:696 #, fuzzy msgid "Partition maintenance" msgstr "Lentelės diagnostika" -#: tbl_operations.php:656 +#: tbl_operations.php:704 #, php-format msgid "Partition %s" msgstr "" -#: tbl_operations.php:659 +#: tbl_operations.php:707 msgid "Analyze" msgstr "Analizuoti" -#: tbl_operations.php:660 +#: tbl_operations.php:708 #, fuzzy msgid "Check" msgstr "Pažymėti" -#: tbl_operations.php:661 +#: tbl_operations.php:709 msgid "Optimize" msgstr "Optimizuoti" -#: tbl_operations.php:662 +#: tbl_operations.php:710 msgid "Rebuild" msgstr "" -#: tbl_operations.php:663 +#: tbl_operations.php:711 msgid "Repair" msgstr "Taisyti" -#: tbl_operations.php:675 +#: tbl_operations.php:723 msgid "Remove partitioning" msgstr "" -#: tbl_operations.php:701 +#: tbl_operations.php:749 msgid "Check referential integrity:" msgstr "Patikrinti sąryšių vientisumą:" diff --git a/po/lv.po b/po/lv.po index 741e161e1..50eb43aa9 100644 --- a/po/lv.po +++ b/po/lv.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-26 17:18+0200\n" +"POT-Creation-Date: 2010-07-27 10:12+0200\n" "PO-Revision-Date: 2010-03-12 09:16+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: latvian \n" @@ -38,16 +38,16 @@ msgstr "" #: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 #: db_structure.php:89 db_structure.php:91 db_structure.php:102 #: db_structure.php:104 libraries/common.lib.php:2834 -#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Meklēt" #: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 -#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_operations.php:468 db_operations.php:492 db_search.php:344 #: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 #: libraries/Theme_Manager.class.php:305 -#: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 +#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:712 #: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 @@ -55,8 +55,8 @@ msgstr "Meklēt" #: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 #: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 -#: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: libraries/sql_query_form.lib.php:377 libraries/sql_query_form.lib.php:447 +#: libraries/sql_query_form.lib.php:512 libraries/tbl_properties.inc.php:780 #: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 #: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 #: server_privileges.php:663 server_privileges.php:1620 @@ -66,7 +66,7 @@ msgstr "Meklēt" #: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 #: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 -#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_operations.php:726 tbl_select.php:323 tbl_structure.php:559 #: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 #: view_create.php:181 view_operations.php:99 msgid "Go" @@ -247,47 +247,63 @@ msgstr "Komanda" msgid "and then" msgstr "" -#: db_operations.php:390 +#: db_operations.php:379 +#, fuzzy +#| msgid "Rename database to" +msgid "Remove database" +msgstr "Pārsaukt datubāzi par" + +#: db_operations.php:391 +#, php-format +msgid "Database %s has been dropped." +msgstr "Datubāze %s tika izdzēsta." + +#: db_operations.php:396 +#, fuzzy +msgid "Drop the database (DROP)" +msgstr "Nav datubāzu" + +#: db_operations.php:424 msgid "Copy database to" msgstr "Kopēt datubāzi uz" -#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:431 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Tikai struktūra" -#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:432 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Struktūra un dati" -#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:433 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Tikai dati" -#: db_operations.php:407 +#: db_operations.php:441 msgid "CREATE DATABASE before copying" msgstr "" -#: db_operations.php:410 libraries/export/sql.php:51 +#: db_operations.php:444 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 #: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "" -#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: db_operations.php:448 libraries/export/sql.php:77 tbl_operations.php:296 #: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Pievienot AUTO_INCREMENT vērtību" -#: db_operations.php:418 tbl_operations.php:542 +#: db_operations.php:452 tbl_operations.php:542 msgid "Add constraints" msgstr "Pievienot ierobežojumus" -#: db_operations.php:431 +#: db_operations.php:465 msgid "Switch to copied database" msgstr "Pārslēgties uz nokopēto datubāzi" -#: db_operations.php:451 libraries/Index.class.php:447 +#: db_operations.php:485 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 #: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 #: server_collations.php:53 server_collations.php:65 server_databases.php:108 @@ -296,7 +312,7 @@ msgstr "Pārslēgties uz nokopēto datubāzi" msgid "Collation" msgstr "Izkārtojumi" -#: db_operations.php:464 pdf_schema.php:32 +#: db_operations.php:498 pdf_schema.php:32 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -308,7 +324,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:497 +#: db_operations.php:531 msgid "Edit PDF Pages" msgstr "Labot PDF lapas" @@ -364,7 +380,7 @@ msgstr[0] "%s tabula(s)" msgstr[1] "%s tabula(s)" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -456,7 +472,7 @@ msgstr "Izpildīt vaicājumu" #: db_search.php:50 libraries/auth/config.auth.lib.php:83 #: libraries/auth/config.auth.lib.php:102 -#: libraries/auth/cookie.auth.lib.php:640 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:182 msgid "Access denied" msgstr "Pieeja aizliegta" @@ -499,7 +515,7 @@ msgid "Browse" msgstr "Apskatīt" #: db_search.php:254 libraries/display_tbl.lib.php:1163 -#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:440 #: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 @@ -542,14 +558,14 @@ msgstr "Tabulā(s):" #: db_structure.php:79 db_structure.php:80 db_structure.php:92 #: db_structure.php:93 db_structure.php:105 db_structure.php:106 -#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:311 +#: libraries/sql_query_form.lib.php:314 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Pievienot" #: db_structure.php:81 db_structure.php:94 db_structure.php:107 #: libraries/common.lib.php:2832 libraries/common.lib.php:2839 -#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 +#: libraries/db_links.inc.php:48 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 @@ -562,8 +578,7 @@ msgstr "Struktūra" #: db_structure.php:96 db_structure.php:108 db_structure.php:109 #: db_structure.php:530 db_structure.php:531 db_tracking.php:86 #: libraries/Index.class.php:482 libraries/common.lib.php:1663 -#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 #: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 #: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" @@ -572,21 +587,21 @@ msgstr "Likvidēt" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 +#: libraries/mult_submits.inc.php:38 msgid "Empty" msgstr "Iztukšot" -#: db_structure.php:301 libraries/tbl_links.inc.php:98 +#: db_structure.php:301 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "Tabula %s tika iztukšota" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, fuzzy, php-format msgid "View %s has been dropped" msgstr "Lauks %s tika izdzēsts" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "Tabula %s tika izdzēsta" @@ -677,7 +692,7 @@ msgstr "Restaurēt tabulu" msgid "Analyze table" msgstr "Analizēt tabulu" -#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:56 #: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 #: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 #: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 @@ -1398,7 +1413,7 @@ msgid "Databases" msgstr "Datubāzes" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30 #: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 #: tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -1503,7 +1518,7 @@ msgid "Cannot connect: invalid settings." msgstr "Nevar pieslēgties: kļūda konfigurācijā." #: libraries/auth/config.auth.lib.php:91 -#: libraries/auth/cookie.auth.lib.php:205 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:206 libraries/auth/http.auth.lib.php:64 #: test/theme.php:151 #, php-format msgid "Welcome to %s" @@ -1528,57 +1543,57 @@ msgstr "" "failā, un pārliecinieties, ka tie atbilst informācijai, ko Jums deva MySQL " "servera administrators." -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:231 msgid "Log in" msgstr "Ieiet" -#: libraries/auth/cookie.auth.lib.php:232 -#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:233 +#: libraries/auth/cookie.auth.lib.php:235 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:94 msgid "phpMyAdmin documentation" msgstr "phpMyAdmin dokumentācija" -#: libraries/auth/cookie.auth.lib.php:244 #: libraries/auth/cookie.auth.lib.php:245 +#: libraries/auth/cookie.auth.lib.php:246 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:244 +#: libraries/auth/cookie.auth.lib.php:245 msgid "Server:" msgstr "Serveris" -#: libraries/auth/cookie.auth.lib.php:249 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Username:" msgstr "Lietotājvārds:" -#: libraries/auth/cookie.auth.lib.php:253 +#: libraries/auth/cookie.auth.lib.php:254 msgid "Password:" msgstr "Parole:" -#: libraries/auth/cookie.auth.lib.php:260 +#: libraries/auth/cookie.auth.lib.php:261 msgid "Server Choice" msgstr "Servera izvēle" -#: libraries/auth/cookie.auth.lib.php:306 libraries/header.inc.php:58 +#: libraries/auth/cookie.auth.lib.php:307 libraries/header.inc.php:58 msgid "Cookies must be enabled past this point." msgstr "\"Cookies\" ir jābūt atļautiem aiz šī punkta." -#: libraries/auth/cookie.auth.lib.php:638 +#: libraries/auth/cookie.auth.lib.php:639 #: libraries/auth/signon.auth.lib.php:180 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" -#: libraries/auth/cookie.auth.lib.php:642 +#: libraries/auth/cookie.auth.lib.php:643 #: libraries/auth/signon.auth.lib.php:184 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" "Nebija aktivitātes vairāk kā %s sekunžu laikā, lūdzu autorizējieties vēlreiz" -#: libraries/auth/cookie.auth.lib.php:652 -#: libraries/auth/cookie.auth.lib.php:654 +#: libraries/auth/cookie.auth.lib.php:653 +#: libraries/auth/cookie.auth.lib.php:655 #: libraries/auth/signon.auth.lib.php:190 msgid "Cannot log in to the MySQL server" msgstr "Nevar pieslēgties MySQL serverim" @@ -1698,7 +1713,7 @@ msgstr "Nosūtīts" #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 #: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 -#: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 +#: libraries/sql_query_form.lib.php:421 libraries/sql_query_form.lib.php:424 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" msgstr "Dokumentācija" @@ -1839,19 +1854,19 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/common.lib.php:2833 libraries/common.lib.php:2840 -#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 +#: libraries/db_links.inc.php:53 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 #: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 -#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:86 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "Darbības" -#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:265 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1867,37 +1882,32 @@ msgstr "" msgid "Name" msgstr "Nosaukums" -#: libraries/db_links.inc.php:43 -#, php-format -msgid "Database %s has been dropped." -msgstr "Datubāze %s tika izdzēsta." - -#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 -#: libraries/db_links.inc.php:57 +#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43 +#: libraries/db_links.inc.php:44 msgid "Database seems to be empty!" msgstr "" -#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/db_links.inc.php:66 libraries/relation.lib.php:137 #: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:84 +#: libraries/db_links.inc.php:71 msgid "Query" msgstr "Vaicājums pēc parauga" -#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 +#: libraries/db_links.inc.php:76 libraries/relation.lib.php:133 msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:87 #: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 #, fuzzy msgid "Import" msgstr "Eksports" -#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:65 #: server_privileges.php:110 server_privileges.php:1718 #: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" @@ -2062,7 +2072,7 @@ msgid "remember template" msgstr "atcerēties šablonu" #: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 -#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 +#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:509 msgid "Character set of the file:" msgstr "Tabulas kodējums:" @@ -2115,7 +2125,7 @@ msgstr "" msgid "File to import" msgstr "" -#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:497 +#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:484 msgid "Location of the text file" msgstr "Teksta faila atrašanās vieta" @@ -2123,12 +2133,12 @@ msgstr "Teksta faila atrašanās vieta" msgid "File uploads are not allowed on this server." msgstr "" -#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 +#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:493 #: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "Direktoija, kuru norādijāt augšupielādei, nav pieejama" -#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 +#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:496 #: tbl_change.php:925 msgid "web server upload directory" msgstr "web servera augšupielādes direktorija" @@ -3486,7 +3496,7 @@ msgid "" msgstr "" "Lūdzu skatieties dokumentāciju par to, kā atjaunot 'Column_comments' tabulu" -#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:403 msgid "Bookmarked SQL query" msgstr "Saglabātie SQL vaicājumi" @@ -3551,7 +3561,7 @@ msgstr "" msgid "Slave status" msgstr "" -#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:428 +#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:415 #: server_status.php:736 server_variables.php:51 msgid "Variable" msgstr "Mainīgais" @@ -3681,51 +3691,51 @@ msgstr "" msgid "Target database" msgstr "Meklēt datubāzē" -#: libraries/sql_query_form.lib.php:219 +#: libraries/sql_query_form.lib.php:217 #, 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:236 libraries/sql_query_form.lib.php:261 +#: libraries/sql_query_form.lib.php:234 libraries/sql_query_form.lib.php:258 #, 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:307 +#: libraries/sql_query_form.lib.php:294 #, fuzzy #| msgid "Column names" msgid "Columns" msgstr "Kolonnu nosaukumi" -#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 +#: libraries/sql_query_form.lib.php:329 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "Saglabāt šo SQL vaicājumu" -#: libraries/sql_query_form.lib.php:349 sql.php:669 +#: libraries/sql_query_form.lib.php:336 sql.php:669 msgid "Let every user access this bookmark" msgstr "Dot ikvienam lietotājam pieeju šai grāmatzīmei" -#: libraries/sql_query_form.lib.php:355 +#: libraries/sql_query_form.lib.php:342 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/sql_query_form.lib.php:371 +#: libraries/sql_query_form.lib.php:358 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:378 +#: libraries/sql_query_form.lib.php:365 msgid "Delimiter" msgstr "" -#: libraries/sql_query_form.lib.php:386 +#: libraries/sql_query_form.lib.php:373 msgid " Show this query here again " msgstr " Rādīt šo vaicājumu šeit atkal " -#: libraries/sql_query_form.lib.php:445 +#: libraries/sql_query_form.lib.php:432 msgid "Submit" msgstr "Nosūtīt" -#: libraries/sql_query_form.lib.php:449 +#: libraries/sql_query_form.lib.php:436 msgid "View only" msgstr "Tikai apskatīt" @@ -3797,12 +3807,11 @@ 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/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 -#: libraries/tbl_links.inc.php:139 +#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107 msgid "Table seems to be empty!" msgstr "" -#: libraries/tbl_links.inc.php:147 +#: libraries/tbl_links.inc.php:115 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" @@ -7821,43 +7830,55 @@ msgstr "Tabula %s tika atsvaidzināta" msgid "Flush the table (FLUSH)" msgstr "Atsvaidzināt tabulu (\"FLUSH\")" -#: tbl_operations.php:648 +#: tbl_operations.php:642 +msgid "Table removal" +msgstr "" + +#: tbl_operations.php:657 +msgid "Empty the table (TRUNCATE)" +msgstr "" + +#: tbl_operations.php:675 +msgid "Drop the table (DROP)" +msgstr "" + +#: tbl_operations.php:696 #, fuzzy msgid "Partition maintenance" msgstr "Tabulas apkalpošana" -#: tbl_operations.php:656 +#: tbl_operations.php:704 #, php-format msgid "Partition %s" msgstr "" -#: tbl_operations.php:659 +#: tbl_operations.php:707 msgid "Analyze" msgstr "" -#: tbl_operations.php:660 +#: tbl_operations.php:708 #, fuzzy msgid "Check" msgstr "Čehu" -#: tbl_operations.php:661 +#: tbl_operations.php:709 msgid "Optimize" msgstr "" -#: tbl_operations.php:662 +#: tbl_operations.php:710 msgid "Rebuild" msgstr "" -#: tbl_operations.php:663 +#: tbl_operations.php:711 #, fuzzy msgid "Repair" msgstr "Restaurēt tabulu" -#: tbl_operations.php:675 +#: tbl_operations.php:723 msgid "Remove partitioning" msgstr "" -#: tbl_operations.php:701 +#: tbl_operations.php:749 msgid "Check referential integrity:" msgstr "Pārbaudīt referenciālo integritāti:" diff --git a/po/mk.po b/po/mk.po index 55ad006e8..5cee28808 100644 --- a/po/mk.po +++ b/po/mk.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-26 17:18+0200\n" +"POT-Creation-Date: 2010-07-27 10:12+0200\n" "PO-Revision-Date: 2010-03-12 09:16+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: macedonian_cyrillic \n" @@ -38,16 +38,16 @@ msgstr "" #: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 #: db_structure.php:89 db_structure.php:91 db_structure.php:102 #: db_structure.php:104 libraries/common.lib.php:2834 -#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Пребарување" #: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 -#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_operations.php:468 db_operations.php:492 db_search.php:344 #: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 #: libraries/Theme_Manager.class.php:305 -#: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 +#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:712 #: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 @@ -55,8 +55,8 @@ msgstr "Пребарување" #: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 #: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 -#: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: libraries/sql_query_form.lib.php:377 libraries/sql_query_form.lib.php:447 +#: libraries/sql_query_form.lib.php:512 libraries/tbl_properties.inc.php:780 #: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 #: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 #: server_privileges.php:663 server_privileges.php:1620 @@ -66,7 +66,7 @@ msgstr "Пребарување" #: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 #: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 -#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_operations.php:726 tbl_select.php:323 tbl_structure.php:559 #: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 #: view_create.php:181 view_operations.php:99 msgid "Go" @@ -247,47 +247,63 @@ msgstr "Наредба" msgid "and then" msgstr "" -#: db_operations.php:390 +#: db_operations.php:379 +#, fuzzy +#| msgid "Rename database to" +msgid "Remove database" +msgstr "Преименувај ја базата на податоци во" + +#: db_operations.php:391 +#, php-format +msgid "Database %s has been dropped." +msgstr "Базата на податоци %s не е прифатена" + +#: db_operations.php:396 +#, fuzzy +msgid "Drop the database (DROP)" +msgstr "Базата на податоци не постои" + +#: db_operations.php:424 msgid "Copy database to" msgstr "Копирај ја базата на податоци во" -#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:431 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Само структура" -#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:432 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Структура и податоци" -#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:433 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Само податоци" -#: db_operations.php:407 +#: db_operations.php:441 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE пред копирање" -#: db_operations.php:410 libraries/export/sql.php:51 +#: db_operations.php:444 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 #: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "" -#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: db_operations.php:448 libraries/export/sql.php:77 tbl_operations.php:296 #: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Додади AUTO_INCREMENT вредност" -#: db_operations.php:418 tbl_operations.php:542 +#: db_operations.php:452 tbl_operations.php:542 msgid "Add constraints" msgstr "Додади ограничувања" -#: db_operations.php:431 +#: db_operations.php:465 msgid "Switch to copied database" msgstr "Префрли се на копираната база на податоци" -#: db_operations.php:451 libraries/Index.class.php:447 +#: db_operations.php:485 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 #: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 #: server_collations.php:53 server_collations.php:65 server_databases.php:108 @@ -296,7 +312,7 @@ msgstr "Префрли се на копираната база на подато msgid "Collation" msgstr "Подредување" -#: db_operations.php:464 pdf_schema.php:32 +#: db_operations.php:498 pdf_schema.php:32 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -308,7 +324,7 @@ msgstr "" "Дополнителните можности за работа со поврзаните табели се исклучени. За да " "дознаете зошто, кликнете %sовде%s." -#: db_operations.php:497 +#: db_operations.php:531 msgid "Edit PDF Pages" msgstr "Уредување на PDF страница" @@ -364,7 +380,7 @@ msgstr[0] "%s табела" msgstr[1] "%s табела" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -456,7 +472,7 @@ msgstr "Изврши SQL" #: db_search.php:50 libraries/auth/config.auth.lib.php:83 #: libraries/auth/config.auth.lib.php:102 -#: libraries/auth/cookie.auth.lib.php:640 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:182 msgid "Access denied" msgstr "Пристапот не е допуштен" @@ -499,7 +515,7 @@ msgid "Browse" msgstr "Преглед" #: db_search.php:254 libraries/display_tbl.lib.php:1163 -#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:440 #: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 @@ -542,14 +558,14 @@ msgstr "во табела(и):" #: db_structure.php:79 db_structure.php:80 db_structure.php:92 #: db_structure.php:93 db_structure.php:105 db_structure.php:106 -#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:311 +#: libraries/sql_query_form.lib.php:314 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Нов запис" #: db_structure.php:81 db_structure.php:94 db_structure.php:107 #: libraries/common.lib.php:2832 libraries/common.lib.php:2839 -#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 +#: libraries/db_links.inc.php:48 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 @@ -562,8 +578,7 @@ msgstr "Структура" #: db_structure.php:96 db_structure.php:108 db_structure.php:109 #: db_structure.php:530 db_structure.php:531 db_tracking.php:86 #: libraries/Index.class.php:482 libraries/common.lib.php:1663 -#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 #: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 #: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" @@ -572,21 +587,21 @@ msgstr "Бриши" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 +#: libraries/mult_submits.inc.php:38 msgid "Empty" msgstr "Испразни" -#: db_structure.php:301 libraries/tbl_links.inc.php:98 +#: db_structure.php:301 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "Табелата %s е испразнета" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "View %s has been dropped" msgstr "Прегледот %s е избришан" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "Табелата %s е избришана" @@ -677,7 +692,7 @@ msgstr "Поправка на табелата" msgid "Analyze table" msgstr "Анализа на табелата" -#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:56 #: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 #: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 #: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 @@ -1398,7 +1413,7 @@ msgid "Databases" msgstr "База на податоци" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30 #: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 #: tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -1503,7 +1518,7 @@ msgid "Cannot connect: invalid settings." msgstr "Не може да се поврзам: лоши подесувања." #: libraries/auth/config.auth.lib.php:91 -#: libraries/auth/cookie.auth.lib.php:205 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:206 libraries/auth/http.auth.lib.php:64 #: test/theme.php:151 #, php-format msgid "Welcome to %s" @@ -1528,49 +1543,49 @@ msgstr "" "config.inc.php и уверите се дека одговараат на податоците кои сте ги добили " "од администраторот на MySQL серверот." -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:231 msgid "Log in" msgstr "Најави се" -#: libraries/auth/cookie.auth.lib.php:232 -#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:233 +#: libraries/auth/cookie.auth.lib.php:235 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:94 msgid "phpMyAdmin documentation" msgstr "phpMyAdmin документација" -#: libraries/auth/cookie.auth.lib.php:244 #: libraries/auth/cookie.auth.lib.php:245 +#: libraries/auth/cookie.auth.lib.php:246 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:244 +#: libraries/auth/cookie.auth.lib.php:245 msgid "Server:" msgstr "Сервер" -#: libraries/auth/cookie.auth.lib.php:249 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Username:" msgstr "Корисничко име:" -#: libraries/auth/cookie.auth.lib.php:253 +#: libraries/auth/cookie.auth.lib.php:254 msgid "Password:" msgstr "Лозинка:" -#: libraries/auth/cookie.auth.lib.php:260 +#: libraries/auth/cookie.auth.lib.php:261 msgid "Server Choice" msgstr "Избор на сервер" -#: libraries/auth/cookie.auth.lib.php:306 libraries/header.inc.php:58 +#: libraries/auth/cookie.auth.lib.php:307 libraries/header.inc.php:58 msgid "Cookies must be enabled past this point." msgstr "вашиот веб прелистувач треба да допушти cookies" -#: libraries/auth/cookie.auth.lib.php:638 +#: libraries/auth/cookie.auth.lib.php:639 #: libraries/auth/signon.auth.lib.php:180 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" -#: libraries/auth/cookie.auth.lib.php:642 +#: libraries/auth/cookie.auth.lib.php:643 #: libraries/auth/signon.auth.lib.php:184 #, php-format msgid "No activity within %s seconds; please log in again" @@ -1578,8 +1593,8 @@ msgstr "" "Немаше никаква активност %s или повеќе секунди, ве молиме најавете се " "повторно" -#: libraries/auth/cookie.auth.lib.php:652 -#: libraries/auth/cookie.auth.lib.php:654 +#: libraries/auth/cookie.auth.lib.php:653 +#: libraries/auth/cookie.auth.lib.php:655 #: libraries/auth/signon.auth.lib.php:190 msgid "Cannot log in to the MySQL server" msgstr "Не можам да се пријавам на MySQL серверот" @@ -1701,7 +1716,7 @@ msgstr "Пратено" #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 #: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 -#: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 +#: libraries/sql_query_form.lib.php:421 libraries/sql_query_form.lib.php:424 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" msgstr "Документација" @@ -1844,19 +1859,19 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/common.lib.php:2833 libraries/common.lib.php:2840 -#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 +#: libraries/db_links.inc.php:53 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 #: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 -#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:86 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "Операции" -#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:265 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1872,37 +1887,32 @@ msgstr "" msgid "Name" msgstr "Име" -#: libraries/db_links.inc.php:43 -#, php-format -msgid "Database %s has been dropped." -msgstr "Базата на податоци %s не е прифатена" - -#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 -#: libraries/db_links.inc.php:57 +#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43 +#: libraries/db_links.inc.php:44 msgid "Database seems to be empty!" msgstr "" -#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/db_links.inc.php:66 libraries/relation.lib.php:137 #: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:84 +#: libraries/db_links.inc.php:71 msgid "Query" msgstr "Упит по пример" -#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 +#: libraries/db_links.inc.php:76 libraries/relation.lib.php:133 msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:87 #: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 #, fuzzy msgid "Import" msgstr "Извоз" -#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:65 #: server_privileges.php:110 server_privileges.php:1718 #: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" @@ -2069,7 +2079,7 @@ msgid "remember template" msgstr "запамти го шаблонот" #: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 -#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 +#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:509 msgid "Character set of the file:" msgstr "Кодна страна на податотеката:" @@ -2122,7 +2132,7 @@ msgstr "" msgid "File to import" msgstr "" -#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:497 +#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:484 msgid "Location of the text file" msgstr "Локација на текстуалната податотека" @@ -2130,12 +2140,12 @@ msgstr "Локација на текстуалната податотека" msgid "File uploads are not allowed on this server." msgstr "" -#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 +#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:493 #: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "Директориумот кој го избравте за праќање не е достапен" -#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 +#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:496 #: tbl_change.php:925 msgid "web server upload directory" msgstr "директориум за праќање на веб серверот " @@ -3513,7 +3523,7 @@ msgstr "" "Ве молиме погледнете во документацијата за тоа како се ажурира табелата " "Column_comments" -#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:403 msgid "Bookmarked SQL query" msgstr "Запамтен SQL упит" @@ -3578,7 +3588,7 @@ msgstr "" msgid "Slave status" msgstr "" -#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:428 +#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:415 #: server_status.php:736 server_variables.php:51 msgid "Variable" msgstr "Променлива" @@ -3709,51 +3719,51 @@ msgstr "" msgid "Target database" msgstr "Пребарување низ базата на податоци" -#: libraries/sql_query_form.lib.php:219 +#: libraries/sql_query_form.lib.php:217 #, fuzzy, php-format msgid "Run SQL query/queries on server %s" msgstr "Изврши SQL упит(и) на базата %s" -#: libraries/sql_query_form.lib.php:236 libraries/sql_query_form.lib.php:261 +#: libraries/sql_query_form.lib.php:234 libraries/sql_query_form.lib.php:258 #, php-format msgid "Run SQL query/queries on database %s" msgstr "Изврши SQL упит(и) на базата %s" -#: libraries/sql_query_form.lib.php:307 +#: libraries/sql_query_form.lib.php:294 #, fuzzy #| msgid "Column names" msgid "Columns" msgstr "Имиња на колони" -#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 +#: libraries/sql_query_form.lib.php:329 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "Запамти SQL упит" -#: libraries/sql_query_form.lib.php:349 sql.php:669 +#: libraries/sql_query_form.lib.php:336 sql.php:669 msgid "Let every user access this bookmark" msgstr "дади дозвола на секој корисник да пристапува на овој упит." -#: libraries/sql_query_form.lib.php:355 +#: libraries/sql_query_form.lib.php:342 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/sql_query_form.lib.php:371 +#: libraries/sql_query_form.lib.php:358 msgid "Do not overwrite this query from outside the window" msgstr "Не го препишувај овој упит надвор од овој прозорец" -#: libraries/sql_query_form.lib.php:378 +#: libraries/sql_query_form.lib.php:365 msgid "Delimiter" msgstr "" -#: libraries/sql_query_form.lib.php:386 +#: libraries/sql_query_form.lib.php:373 msgid " Show this query here again " msgstr "Прикажи го повторно овој упит" -#: libraries/sql_query_form.lib.php:445 +#: libraries/sql_query_form.lib.php:432 msgid "Submit" msgstr "Испрати" -#: libraries/sql_query_form.lib.php:449 +#: libraries/sql_query_form.lib.php:436 msgid "View only" msgstr "Види само" @@ -3824,12 +3834,11 @@ msgstr "" "SQL валидаторот не можеше да биде стартуван. Проверете да ли се инсталирани " "неопходните PHP екстензии опишане во %sдокументацијата%s." -#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 -#: libraries/tbl_links.inc.php:139 +#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107 msgid "Table seems to be empty!" msgstr "" -#: libraries/tbl_links.inc.php:147 +#: libraries/tbl_links.inc.php:115 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" @@ -7876,43 +7885,55 @@ msgstr "Табелата %s е освежена" msgid "Flush the table (FLUSH)" msgstr "Освежување на табелата (\"FLUSH\")" -#: tbl_operations.php:648 +#: tbl_operations.php:642 +msgid "Table removal" +msgstr "" + +#: tbl_operations.php:657 +msgid "Empty the table (TRUNCATE)" +msgstr "" + +#: tbl_operations.php:675 +msgid "Drop the table (DROP)" +msgstr "" + +#: tbl_operations.php:696 #, fuzzy msgid "Partition maintenance" msgstr "Можете да извршите:" -#: tbl_operations.php:656 +#: tbl_operations.php:704 #, php-format msgid "Partition %s" msgstr "" -#: tbl_operations.php:659 +#: tbl_operations.php:707 msgid "Analyze" msgstr "" -#: tbl_operations.php:660 +#: tbl_operations.php:708 #, fuzzy msgid "Check" msgstr "Чешки" -#: tbl_operations.php:661 +#: tbl_operations.php:709 msgid "Optimize" msgstr "" -#: tbl_operations.php:662 +#: tbl_operations.php:710 msgid "Rebuild" msgstr "" -#: tbl_operations.php:663 +#: tbl_operations.php:711 #, fuzzy msgid "Repair" msgstr "Поправка на табелата" -#: tbl_operations.php:675 +#: tbl_operations.php:723 msgid "Remove partitioning" msgstr "" -#: tbl_operations.php:701 +#: tbl_operations.php:749 msgid "Check referential integrity:" msgstr "Провери го референцијалниот интегритет:" diff --git a/po/mn.po b/po/mn.po index 0a3f39598..5d27753cd 100644 --- a/po/mn.po +++ b/po/mn.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-26 17:18+0200\n" +"POT-Creation-Date: 2010-07-27 10:12+0200\n" "PO-Revision-Date: 2010-03-12 09:17+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: mongolian \n" @@ -37,16 +37,16 @@ msgstr "" #: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 #: db_structure.php:89 db_structure.php:91 db_structure.php:102 #: db_structure.php:104 libraries/common.lib.php:2834 -#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Хайх" #: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 -#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_operations.php:468 db_operations.php:492 db_search.php:344 #: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 #: libraries/Theme_Manager.class.php:305 -#: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 +#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:712 #: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 @@ -54,8 +54,8 @@ msgstr "Хайх" #: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 #: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 -#: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: libraries/sql_query_form.lib.php:377 libraries/sql_query_form.lib.php:447 +#: libraries/sql_query_form.lib.php:512 libraries/tbl_properties.inc.php:780 #: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 #: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 #: server_privileges.php:663 server_privileges.php:1620 @@ -65,7 +65,7 @@ msgstr "Хайх" #: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 #: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 -#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_operations.php:726 tbl_select.php:323 tbl_structure.php:559 #: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 #: view_create.php:181 view_operations.php:99 msgid "Go" @@ -246,47 +246,64 @@ msgstr "Команд" msgid "and then" msgstr "ба тэгээд" -#: db_operations.php:390 +#: db_operations.php:379 +#, fuzzy +#| msgid "Rename database to" +msgid "Remove database" +msgstr "Өгөгдлийн санг д.нэрлэх нь" + +#: db_operations.php:391 +#, php-format +msgid "Database %s has been dropped." +msgstr "%s өгөгдлийн сан устгагдсан." + +#: db_operations.php:396 +#, fuzzy +#| msgid "Copy database to" +msgid "Drop the database (DROP)" +msgstr "Өгөгдлийн сан хуулах нь" + +#: db_operations.php:424 msgid "Copy database to" msgstr "Өгөгдлийн сан хуулах нь" -#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:431 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Зөвхөн бүтэц" -#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:432 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Бүтэц ба өгөгдөл" -#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:433 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Зөвхөн өгөгдөл" -#: db_operations.php:407 +#: db_operations.php:441 msgid "CREATE DATABASE before copying" msgstr "хуулахын өмнө CREATE DATABASE" -#: db_operations.php:410 libraries/export/sql.php:51 +#: db_operations.php:444 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 #: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "Нэмэх %s" -#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: db_operations.php:448 libraries/export/sql.php:77 tbl_operations.php:296 #: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT утга нэмэх" -#: db_operations.php:418 tbl_operations.php:542 +#: db_operations.php:452 tbl_operations.php:542 msgid "Add constraints" msgstr "Тогтмол нэмэх" -#: db_operations.php:431 +#: db_operations.php:465 msgid "Switch to copied database" msgstr "Хуулагдсан ӨС руу шилжих" -#: db_operations.php:451 libraries/Index.class.php:447 +#: db_operations.php:485 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 #: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 #: server_collations.php:53 server_collations.php:65 server_databases.php:108 @@ -295,7 +312,7 @@ msgstr "Хуулагдсан ӨС руу шилжих" msgid "Collation" msgstr "Жишилт" -#: db_operations.php:464 pdf_schema.php:32 +#: db_operations.php:498 pdf_schema.php:32 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -307,7 +324,7 @@ msgstr "" "Холбогдсон хүснэгтүүдтэй ажиллах нэмэлт онцлогууд идэвхгүй болжээ. %sЭнд%s " "дарж шалгах." -#: db_operations.php:497 +#: db_operations.php:531 msgid "Edit PDF Pages" msgstr "PDF-хуудаснуудыг засах" @@ -363,7 +380,7 @@ msgstr[0] "%s хүснэгт(үүд)" msgstr[1] "%s хүснэгт(үүд)" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -455,7 +472,7 @@ msgstr "Асуултыг илгээх" #: db_search.php:50 libraries/auth/config.auth.lib.php:83 #: libraries/auth/config.auth.lib.php:102 -#: libraries/auth/cookie.auth.lib.php:640 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:182 msgid "Access denied" msgstr "Хандах эрхгүй" @@ -498,7 +515,7 @@ msgid "Browse" msgstr "Хөтлөх" #: db_search.php:254 libraries/display_tbl.lib.php:1163 -#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:440 #: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 @@ -541,14 +558,14 @@ msgstr "Хүснэгт(үүд) дотор:" #: db_structure.php:79 db_structure.php:80 db_structure.php:92 #: db_structure.php:93 db_structure.php:105 db_structure.php:106 -#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:311 +#: libraries/sql_query_form.lib.php:314 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Оруулах" #: db_structure.php:81 db_structure.php:94 db_structure.php:107 #: libraries/common.lib.php:2832 libraries/common.lib.php:2839 -#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 +#: libraries/db_links.inc.php:48 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 @@ -561,8 +578,7 @@ msgstr "Бүтэц" #: db_structure.php:96 db_structure.php:108 db_structure.php:109 #: db_structure.php:530 db_structure.php:531 db_tracking.php:86 #: libraries/Index.class.php:482 libraries/common.lib.php:1663 -#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 #: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 #: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" @@ -571,21 +587,21 @@ msgstr "Устгах" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 +#: libraries/mult_submits.inc.php:38 msgid "Empty" msgstr "Хоосон" -#: db_structure.php:301 libraries/tbl_links.inc.php:98 +#: db_structure.php:301 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "Хүснэгт %s нь хоослогдлоо" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "View %s has been dropped" msgstr "Харц %s нь устгагдсан" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "Хүснэгт %s нь устгагдлаа" @@ -675,7 +691,7 @@ msgstr "Хүснэгт засах" msgid "Analyze table" msgstr "Хүснэгтийг задлах" -#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:56 #: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 #: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 #: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 @@ -1384,7 +1400,7 @@ msgid "Databases" msgstr "Өгөгдлийн сангууд" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30 #: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 #: tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -1489,7 +1505,7 @@ msgid "Cannot connect: invalid settings." msgstr "Холбогдсонгүй: тохируулга буруу." #: libraries/auth/config.auth.lib.php:91 -#: libraries/auth/cookie.auth.lib.php:205 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:206 libraries/auth/http.auth.lib.php:64 #: test/theme.php:151 #, php-format msgid "Welcome to %s" @@ -1514,56 +1530,56 @@ msgstr "" "phpMyAdmin нь MySQL сервэр лүү холбогдох гэсэн ч, сервэр хүлээн авсангүй. " "config.inc.php дэх сервэр, хэрэглэгчийн нэр болон нууц үгээ шалга." -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:231 msgid "Log in" msgstr "Нэвтрэх" -#: libraries/auth/cookie.auth.lib.php:232 -#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:233 +#: libraries/auth/cookie.auth.lib.php:235 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:94 msgid "phpMyAdmin documentation" msgstr "phpMyAdmin баримтжилт" -#: libraries/auth/cookie.auth.lib.php:244 #: libraries/auth/cookie.auth.lib.php:245 +#: libraries/auth/cookie.auth.lib.php:246 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:244 +#: libraries/auth/cookie.auth.lib.php:245 msgid "Server:" msgstr "Сервэр" -#: libraries/auth/cookie.auth.lib.php:249 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Username:" msgstr "Нэвтрэгч:" -#: libraries/auth/cookie.auth.lib.php:253 +#: libraries/auth/cookie.auth.lib.php:254 msgid "Password:" msgstr "Нууц үг:" -#: libraries/auth/cookie.auth.lib.php:260 +#: libraries/auth/cookie.auth.lib.php:261 msgid "Server Choice" msgstr "Сервэр сонго" -#: libraries/auth/cookie.auth.lib.php:306 libraries/header.inc.php:58 +#: libraries/auth/cookie.auth.lib.php:307 libraries/header.inc.php:58 msgid "Cookies must be enabled past this point." msgstr "Энэ газарт Cookies нээлттэй байх ёстой." -#: libraries/auth/cookie.auth.lib.php:638 +#: libraries/auth/cookie.auth.lib.php:639 #: libraries/auth/signon.auth.lib.php:180 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" -#: libraries/auth/cookie.auth.lib.php:642 +#: libraries/auth/cookie.auth.lib.php:643 #: libraries/auth/signon.auth.lib.php:184 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "%s секунд ба түүнээс их идэвхгүй байжээ, дахин нэвтэрнэ үү" -#: libraries/auth/cookie.auth.lib.php:652 -#: libraries/auth/cookie.auth.lib.php:654 +#: libraries/auth/cookie.auth.lib.php:653 +#: libraries/auth/cookie.auth.lib.php:655 #: libraries/auth/signon.auth.lib.php:190 msgid "Cannot log in to the MySQL server" msgstr "MySQL руу нэвтэрч чадсангүй" @@ -1682,7 +1698,7 @@ msgstr "" #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 #: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 -#: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 +#: libraries/sql_query_form.lib.php:421 libraries/sql_query_form.lib.php:424 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" msgstr "Баримт" @@ -1825,19 +1841,19 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/common.lib.php:2833 libraries/common.lib.php:2840 -#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 +#: libraries/db_links.inc.php:53 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 #: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 -#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:86 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "Үйлдлүүд" -#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:265 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1853,36 +1869,31 @@ msgstr "" msgid "Name" msgstr "Нэр" -#: libraries/db_links.inc.php:43 -#, php-format -msgid "Database %s has been dropped." -msgstr "%s өгөгдлийн сан устгагдсан." - -#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 -#: libraries/db_links.inc.php:57 +#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43 +#: libraries/db_links.inc.php:44 msgid "Database seems to be empty!" msgstr "Өгөгдлийн сан хоосон санагдаж байна!" -#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/db_links.inc.php:66 libraries/relation.lib.php:137 #: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:84 +#: libraries/db_links.inc.php:71 msgid "Query" msgstr "Асуулт (Query)" -#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 +#: libraries/db_links.inc.php:76 libraries/relation.lib.php:133 msgid "Designer" msgstr "Дизайнч" -#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:87 #: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Оруулах" -#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:65 #: server_privileges.php:110 server_privileges.php:1718 #: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" @@ -2049,7 +2060,7 @@ msgid "remember template" msgstr "загварыг санах" #: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 -#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 +#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:509 msgid "Character set of the file:" msgstr "Файлын кодлол:" @@ -2102,7 +2113,7 @@ msgstr "" msgid "File to import" msgstr "Оруулах файл" -#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:497 +#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:484 msgid "Location of the text file" msgstr "Бичвэрфайлын байрлал" @@ -2110,12 +2121,12 @@ msgstr "Бичвэрфайлын байрлал" msgid "File uploads are not allowed on this server." msgstr "" -#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 +#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:493 #: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "Таны сонгосон хавтас \"upload\" хийгдэхгүй байна" -#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 +#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:496 #: tbl_change.php:925 msgid "web server upload directory" msgstr "web-сервэр түлхэх хавтас" @@ -3480,7 +3491,7 @@ msgid "" msgstr "" "Column_comments Хүснэгтийн хэрхэн шинэчлэх талаар баримтжууллаас харна уу" -#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:403 msgid "Bookmarked SQL query" msgstr "Тэмдэглэгдсэн SQL-асуулт" @@ -3545,7 +3556,7 @@ msgstr "" msgid "Slave status" msgstr "" -#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:428 +#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:415 #: server_status.php:736 server_variables.php:51 msgid "Variable" msgstr "Хувьсагч" @@ -3672,51 +3683,51 @@ msgstr "" msgid "Target database" msgstr "" -#: libraries/sql_query_form.lib.php:219 +#: libraries/sql_query_form.lib.php:217 #, php-format msgid "Run SQL query/queries on server %s" msgstr "%s сервэр дээр SQL асуудал/асуудлууд ажиллуулах" -#: libraries/sql_query_form.lib.php:236 libraries/sql_query_form.lib.php:261 +#: libraries/sql_query_form.lib.php:234 libraries/sql_query_form.lib.php:258 #, php-format msgid "Run SQL query/queries on database %s" msgstr "Өгөгдлийн сан %s дээрх SQL асуултыг ажиллуулах" -#: libraries/sql_query_form.lib.php:307 +#: libraries/sql_query_form.lib.php:294 #, fuzzy #| msgid "Column names" msgid "Columns" msgstr "Баганын нэрс" -#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 +#: libraries/sql_query_form.lib.php:329 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "Энэ SQL-асуулт-ыг тэмдэглэх" -#: libraries/sql_query_form.lib.php:349 sql.php:669 +#: libraries/sql_query_form.lib.php:336 sql.php:669 msgid "Let every user access this bookmark" msgstr "Энэ тэмдэглэгээг бүх хэрэглэгчид хандахыг зөвшөөрөх" -#: libraries/sql_query_form.lib.php:355 +#: libraries/sql_query_form.lib.php:342 msgid "Replace existing bookmark of same name" msgstr "Өмнөх адил нэртэй тэмдэглэлийг солих" -#: libraries/sql_query_form.lib.php:371 +#: libraries/sql_query_form.lib.php:358 msgid "Do not overwrite this query from outside the window" msgstr "Цонхны гаднаас энэ асуултыг давхарлахгүй байх" -#: libraries/sql_query_form.lib.php:378 +#: libraries/sql_query_form.lib.php:365 msgid "Delimiter" msgstr "Зааглагч" -#: libraries/sql_query_form.lib.php:386 +#: libraries/sql_query_form.lib.php:373 msgid " Show this query here again " msgstr " Уг асуултыг энд дахин харуулах " -#: libraries/sql_query_form.lib.php:445 +#: libraries/sql_query_form.lib.php:432 msgid "Submit" msgstr "Илгээ" -#: libraries/sql_query_form.lib.php:449 +#: libraries/sql_query_form.lib.php:436 msgid "View only" msgstr "Зөвхөн харах" @@ -3787,12 +3798,11 @@ msgstr "" "SQL баталгаажуулагч эхлэгдсэнгүй. Хэрэв PHP өргөтгөл суугдсан бол шалгана " "уу, %sбаримтжуулалд%s тодорхойлогдсон." -#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 -#: libraries/tbl_links.inc.php:139 +#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107 msgid "Table seems to be empty!" msgstr "Хүснэг хоосон үзэгдэж байна!" -#: libraries/tbl_links.inc.php:147 +#: libraries/tbl_links.inc.php:115 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" @@ -7807,40 +7817,54 @@ msgstr "Хүснэгт %s нь flushed боллоо" msgid "Flush the table (FLUSH)" msgstr "Flush the table (\"FLUSH\")" -#: tbl_operations.php:648 +#: tbl_operations.php:642 +#, fuzzy +#| msgid "Table name" +msgid "Table removal" +msgstr "Хүснэгтийн нэр" + +#: tbl_operations.php:657 +msgid "Empty the table (TRUNCATE)" +msgstr "" + +#: tbl_operations.php:675 +msgid "Drop the table (DROP)" +msgstr "" + +#: tbl_operations.php:696 msgid "Partition maintenance" msgstr "" -#: tbl_operations.php:656 +#: tbl_operations.php:704 #, php-format msgid "Partition %s" msgstr "" -#: tbl_operations.php:659 +#: tbl_operations.php:707 msgid "Analyze" msgstr "" -#: tbl_operations.php:660 +#: tbl_operations.php:708 msgid "Check" msgstr "" -#: tbl_operations.php:661 +#: tbl_operations.php:709 msgid "Optimize" msgstr "" -#: tbl_operations.php:662 +#: tbl_operations.php:710 msgid "Rebuild" msgstr "" -#: tbl_operations.php:663 +#: tbl_operations.php:711 msgid "Repair" msgstr "" -#: tbl_operations.php:675 +#: tbl_operations.php:723 msgid "Remove partitioning" msgstr "" -#: tbl_operations.php:701 +#: tbl_operations.php:749 msgid "Check referential integrity:" msgstr "Үнэн зөв өгөгдлийг шалгах:" diff --git a/po/ms.po b/po/ms.po index 01166f186..095761c0e 100644 --- a/po/ms.po +++ b/po/ms.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-26 17:18+0200\n" +"POT-Creation-Date: 2010-07-27 10:12+0200\n" "PO-Revision-Date: 2010-03-12 09:17+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: malay \n" @@ -35,16 +35,16 @@ msgstr "" #: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 #: db_structure.php:89 db_structure.php:91 db_structure.php:102 #: db_structure.php:104 libraries/common.lib.php:2834 -#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Cari" #: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 -#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_operations.php:468 db_operations.php:492 db_search.php:344 #: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 #: libraries/Theme_Manager.class.php:305 -#: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 +#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:712 #: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 @@ -52,8 +52,8 @@ msgstr "Cari" #: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 #: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 -#: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: libraries/sql_query_form.lib.php:377 libraries/sql_query_form.lib.php:447 +#: libraries/sql_query_form.lib.php:512 libraries/tbl_properties.inc.php:780 #: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 #: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 #: server_privileges.php:663 server_privileges.php:1620 @@ -63,7 +63,7 @@ msgstr "Cari" #: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 #: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 -#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_operations.php:726 tbl_select.php:323 tbl_structure.php:559 #: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 #: view_create.php:181 view_operations.php:99 msgid "Go" @@ -248,48 +248,63 @@ msgstr "Arahan" msgid "and then" msgstr "" -#: db_operations.php:390 +#: db_operations.php:379 +#, fuzzy +msgid "Remove database" +msgstr "Tukarnama jadual ke" + +#: db_operations.php:391 +#, php-format +msgid "Database %s has been dropped." +msgstr "angkalan data %s telah digugurkan." + +#: db_operations.php:396 +#, fuzzy +msgid "Drop the database (DROP)" +msgstr "Tiada pangkalan data" + +#: db_operations.php:424 #, fuzzy msgid "Copy database to" msgstr "Tiada pangkalan data" -#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:431 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Struktur sahaja" -#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:432 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Struktur dan data" -#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:433 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Data sahaja" -#: db_operations.php:407 +#: db_operations.php:441 msgid "CREATE DATABASE before copying" msgstr "" -#: db_operations.php:410 libraries/export/sql.php:51 +#: db_operations.php:444 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 #: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "" -#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: db_operations.php:448 libraries/export/sql.php:77 tbl_operations.php:296 #: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "" -#: db_operations.php:418 tbl_operations.php:542 +#: db_operations.php:452 tbl_operations.php:542 msgid "Add constraints" msgstr "" -#: db_operations.php:431 +#: db_operations.php:465 msgid "Switch to copied database" msgstr "" -#: db_operations.php:451 libraries/Index.class.php:447 +#: db_operations.php:485 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 #: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 #: server_collations.php:53 server_collations.php:65 server_databases.php:108 @@ -298,7 +313,7 @@ msgstr "" msgid "Collation" msgstr "" -#: db_operations.php:464 pdf_schema.php:32 +#: db_operations.php:498 pdf_schema.php:32 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -310,7 +325,7 @@ msgstr "" "Ciri-ciri tambahan ini adalah untuk bekerja dengan pautan jadual yang telah " "tidak diaktifkan. Untuk mengetahuinya klik %shere%s." -#: db_operations.php:497 +#: db_operations.php:531 msgid "Edit PDF Pages" msgstr "Ubah Halaman PDF" @@ -367,7 +382,7 @@ msgstr[0] "%s jadual" msgstr[1] "%s jadual" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -459,7 +474,7 @@ msgstr "Hantar Kueri" #: db_search.php:50 libraries/auth/config.auth.lib.php:83 #: libraries/auth/config.auth.lib.php:102 -#: libraries/auth/cookie.auth.lib.php:640 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:182 msgid "Access denied" msgstr "Akses dinafikan" @@ -502,7 +517,7 @@ msgid "Browse" msgstr "Lungsur" #: db_search.php:254 libraries/display_tbl.lib.php:1163 -#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:440 #: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 @@ -545,14 +560,14 @@ msgstr "Di dalam jadual:" #: db_structure.php:79 db_structure.php:80 db_structure.php:92 #: db_structure.php:93 db_structure.php:105 db_structure.php:106 -#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:311 +#: libraries/sql_query_form.lib.php:314 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Selit" #: db_structure.php:81 db_structure.php:94 db_structure.php:107 #: libraries/common.lib.php:2832 libraries/common.lib.php:2839 -#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 +#: libraries/db_links.inc.php:48 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 @@ -565,8 +580,7 @@ msgstr "Struktur" #: db_structure.php:96 db_structure.php:108 db_structure.php:109 #: db_structure.php:530 db_structure.php:531 db_tracking.php:86 #: libraries/Index.class.php:482 libraries/common.lib.php:1663 -#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 #: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 #: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" @@ -575,21 +589,21 @@ msgstr "Gugur" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 +#: libraries/mult_submits.inc.php:38 msgid "Empty" msgstr "Kosong" -#: db_structure.php:301 libraries/tbl_links.inc.php:98 +#: db_structure.php:301 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "Jadual %s telah dikosongkan" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, fuzzy, php-format msgid "View %s has been dropped" msgstr "Medan %s telah digugurkan" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "Jadual %s telah digugurkan" @@ -679,7 +693,7 @@ msgstr "Baiki jadual" msgid "Analyze table" msgstr "Analyze table" -#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:56 #: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 #: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 #: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 @@ -1398,7 +1412,7 @@ msgid "Databases" msgstr "pangkalan data" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30 #: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 #: tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -1501,7 +1515,7 @@ msgid "Cannot connect: invalid settings." msgstr "" #: libraries/auth/config.auth.lib.php:91 -#: libraries/auth/cookie.auth.lib.php:205 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:206 libraries/auth/http.auth.lib.php:64 #: test/theme.php:151 #, php-format msgid "Welcome to %s" @@ -1522,57 +1536,57 @@ msgid "" "the administrator of the MySQL server." msgstr "" -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:231 msgid "Log in" msgstr "Logmasuk" -#: libraries/auth/cookie.auth.lib.php:232 -#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:233 +#: libraries/auth/cookie.auth.lib.php:235 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:94 msgid "phpMyAdmin documentation" msgstr "Dokumentasi phpMyAdmin" -#: libraries/auth/cookie.auth.lib.php:244 #: libraries/auth/cookie.auth.lib.php:245 +#: libraries/auth/cookie.auth.lib.php:246 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:244 +#: libraries/auth/cookie.auth.lib.php:245 #, fuzzy msgid "Server:" msgstr "Pelayan" -#: libraries/auth/cookie.auth.lib.php:249 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Username:" msgstr "Namapengguna:" -#: libraries/auth/cookie.auth.lib.php:253 +#: libraries/auth/cookie.auth.lib.php:254 msgid "Password:" msgstr "Katalaluan:" -#: libraries/auth/cookie.auth.lib.php:260 +#: libraries/auth/cookie.auth.lib.php:261 msgid "Server Choice" msgstr "Pilihan Pelayan" -#: libraries/auth/cookie.auth.lib.php:306 libraries/header.inc.php:58 +#: libraries/auth/cookie.auth.lib.php:307 libraries/header.inc.php:58 msgid "Cookies must be enabled past this point." msgstr "Cecikut mestilah dihidupkan ketika ini." -#: libraries/auth/cookie.auth.lib.php:638 +#: libraries/auth/cookie.auth.lib.php:639 #: libraries/auth/signon.auth.lib.php:180 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" -#: libraries/auth/cookie.auth.lib.php:642 +#: libraries/auth/cookie.auth.lib.php:643 #: libraries/auth/signon.auth.lib.php:184 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" -#: libraries/auth/cookie.auth.lib.php:652 -#: libraries/auth/cookie.auth.lib.php:654 +#: libraries/auth/cookie.auth.lib.php:653 +#: libraries/auth/cookie.auth.lib.php:655 #: libraries/auth/signon.auth.lib.php:190 msgid "Cannot log in to the MySQL server" msgstr "Tidak boleh log-masuk ke server MySQL" @@ -1691,7 +1705,7 @@ msgstr "Hantar" #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 #: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 -#: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 +#: libraries/sql_query_form.lib.php:421 libraries/sql_query_form.lib.php:424 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" msgstr "Dokumentasi" @@ -1832,19 +1846,19 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/common.lib.php:2833 libraries/common.lib.php:2840 -#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 +#: libraries/db_links.inc.php:53 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 #: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 -#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:86 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "Operasi" -#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:265 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1860,37 +1874,32 @@ msgstr "" msgid "Name" msgstr "Nama" -#: libraries/db_links.inc.php:43 -#, php-format -msgid "Database %s has been dropped." -msgstr "angkalan data %s telah digugurkan." - -#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 -#: libraries/db_links.inc.php:57 +#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43 +#: libraries/db_links.inc.php:44 msgid "Database seems to be empty!" msgstr "" -#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/db_links.inc.php:66 libraries/relation.lib.php:137 #: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:84 +#: libraries/db_links.inc.php:71 msgid "Query" msgstr "Kueri" -#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 +#: libraries/db_links.inc.php:76 libraries/relation.lib.php:133 msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:87 #: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 #, fuzzy msgid "Import" msgstr "Eksport" -#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:65 #: server_privileges.php:110 server_privileges.php:1718 #: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" @@ -2053,7 +2062,7 @@ msgid "remember template" msgstr "" #: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 -#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 +#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:509 msgid "Character set of the file:" msgstr "Fail bagi set Aksara:" @@ -2106,7 +2115,7 @@ msgstr "" msgid "File to import" msgstr "" -#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:497 +#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:484 msgid "Location of the text file" msgstr "Lokasi bagi fail teks" @@ -2114,12 +2123,12 @@ msgstr "Lokasi bagi fail teks" msgid "File uploads are not allowed on this server." msgstr "" -#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 +#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:493 #: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "Direktori muatnaik yang telah ditetapkan tidak dapat dicapai" -#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 +#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:496 #: tbl_change.php:925 msgid "web server upload directory" msgstr "direktori muatnaik pelayan-web" @@ -3475,7 +3484,7 @@ msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" -#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:403 msgid "Bookmarked SQL query" msgstr "Tandabuku kueri-SQL" @@ -3540,7 +3549,7 @@ msgstr "" msgid "Slave status" msgstr "" -#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:428 +#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:415 #: server_status.php:736 server_variables.php:51 msgid "Variable" msgstr "Pembolehubah" @@ -3672,51 +3681,51 @@ msgstr "" msgid "Target database" msgstr "Cari di pangkalan data" -#: libraries/sql_query_form.lib.php:219 +#: libraries/sql_query_form.lib.php:217 #, 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:236 libraries/sql_query_form.lib.php:261 +#: libraries/sql_query_form.lib.php:234 libraries/sql_query_form.lib.php:258 #, php-format msgid "Run SQL query/queries on database %s" msgstr "Laksana kueri SQL pada pangkalan data %s" -#: libraries/sql_query_form.lib.php:307 +#: libraries/sql_query_form.lib.php:294 #, fuzzy #| msgid "Column names" msgid "Columns" msgstr "Nama Kolum" -#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 +#: libraries/sql_query_form.lib.php:329 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "andabuku kueri-SQL ini" -#: libraries/sql_query_form.lib.php:349 sql.php:669 +#: libraries/sql_query_form.lib.php:336 sql.php:669 msgid "Let every user access this bookmark" msgstr "" -#: libraries/sql_query_form.lib.php:355 +#: libraries/sql_query_form.lib.php:342 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/sql_query_form.lib.php:371 +#: libraries/sql_query_form.lib.php:358 msgid "Do not overwrite this query from outside the window" msgstr "" -#: libraries/sql_query_form.lib.php:378 +#: libraries/sql_query_form.lib.php:365 msgid "Delimiter" msgstr "" -#: libraries/sql_query_form.lib.php:386 +#: libraries/sql_query_form.lib.php:373 msgid " Show this query here again " msgstr " Papar kueri ini di sini lagi " -#: libraries/sql_query_form.lib.php:445 +#: libraries/sql_query_form.lib.php:432 msgid "Submit" msgstr "Hantar" -#: libraries/sql_query_form.lib.php:449 +#: libraries/sql_query_form.lib.php:436 msgid "View only" msgstr "Paparan sahaja" @@ -3788,12 +3797,11 @@ msgstr "" "Pengesahan SQL tidak dapat disahkan. Sila semak sama ada anda telah memasang " "sambungan php seperti yang tercatit di %sdocumentation%s." -#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 -#: libraries/tbl_links.inc.php:139 +#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107 msgid "Table seems to be empty!" msgstr "" -#: libraries/tbl_links.inc.php:147 +#: libraries/tbl_links.inc.php:115 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" @@ -7717,42 +7725,54 @@ msgstr "Jadual %s telah dibuangkan" msgid "Flush the table (FLUSH)" msgstr "Buang jadual (\"FLUSH\")" -#: tbl_operations.php:648 +#: tbl_operations.php:642 +msgid "Table removal" +msgstr "" + +#: tbl_operations.php:657 +msgid "Empty the table (TRUNCATE)" +msgstr "" + +#: tbl_operations.php:675 +msgid "Drop the table (DROP)" +msgstr "" + +#: tbl_operations.php:696 #, fuzzy msgid "Partition maintenance" msgstr "Penyenggaraan Jadual" -#: tbl_operations.php:656 +#: tbl_operations.php:704 #, php-format msgid "Partition %s" msgstr "" -#: tbl_operations.php:659 +#: tbl_operations.php:707 msgid "Analyze" msgstr "" -#: tbl_operations.php:660 +#: tbl_operations.php:708 msgid "Check" msgstr "" -#: tbl_operations.php:661 +#: tbl_operations.php:709 msgid "Optimize" msgstr "" -#: tbl_operations.php:662 +#: tbl_operations.php:710 msgid "Rebuild" msgstr "" -#: tbl_operations.php:663 +#: tbl_operations.php:711 #, fuzzy msgid "Repair" msgstr "Baiki jadual" -#: tbl_operations.php:675 +#: tbl_operations.php:723 msgid "Remove partitioning" msgstr "" -#: tbl_operations.php:701 +#: tbl_operations.php:749 msgid "Check referential integrity:" msgstr "Semak integriti rujukan:" diff --git a/po/nb.po b/po/nb.po index dcce807cc..71438c993 100644 --- a/po/nb.po +++ b/po/nb.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-26 17:18+0200\n" +"POT-Creation-Date: 2010-07-27 10:12+0200\n" "PO-Revision-Date: 2010-07-22 08:43+0200\n" "Last-Translator: \n" "Language-Team: norwegian \n" @@ -38,16 +38,16 @@ msgstr "" #: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 #: db_structure.php:89 db_structure.php:91 db_structure.php:102 #: db_structure.php:104 libraries/common.lib.php:2834 -#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Søk" #: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 -#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_operations.php:468 db_operations.php:492 db_search.php:344 #: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 #: libraries/Theme_Manager.class.php:305 -#: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 +#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:712 #: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 @@ -55,8 +55,8 @@ msgstr "Søk" #: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 #: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 -#: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: libraries/sql_query_form.lib.php:377 libraries/sql_query_form.lib.php:447 +#: libraries/sql_query_form.lib.php:512 libraries/tbl_properties.inc.php:780 #: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 #: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 #: server_privileges.php:663 server_privileges.php:1620 @@ -66,7 +66,7 @@ msgstr "Søk" #: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 #: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 -#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_operations.php:726 tbl_select.php:323 tbl_structure.php:559 #: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 #: view_create.php:181 view_operations.php:99 msgid "Go" @@ -247,47 +247,64 @@ msgstr "Kommando" msgid "and then" msgstr "og så" -#: db_operations.php:390 +#: db_operations.php:379 +#, fuzzy +#| msgid "Rename database to" +msgid "Remove database" +msgstr "Endre databasens navn til" + +#: db_operations.php:391 +#, php-format +msgid "Database %s has been dropped." +msgstr "Databasen %s har blitt slettet" + +#: db_operations.php:396 +#, fuzzy +#| msgid "Go to database" +msgid "Drop the database (DROP)" +msgstr "Gå til database" + +#: db_operations.php:424 msgid "Copy database to" msgstr "Kopier databasen til" -#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:431 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Kun struktur" -#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:432 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Struktur og data" -#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:433 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Bare data" -#: db_operations.php:407 +#: db_operations.php:441 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE før kopiering" -#: db_operations.php:410 libraries/export/sql.php:51 +#: db_operations.php:444 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 #: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "Legg til %s" -#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: db_operations.php:448 libraries/export/sql.php:77 tbl_operations.php:296 #: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Legg til AUTO_INCREMENT verdi" -#: db_operations.php:418 tbl_operations.php:542 +#: db_operations.php:452 tbl_operations.php:542 msgid "Add constraints" msgstr "Legg til begrensninger" -#: db_operations.php:431 +#: db_operations.php:465 msgid "Switch to copied database" msgstr "Bytt til kopiert database" -#: db_operations.php:451 libraries/Index.class.php:447 +#: db_operations.php:485 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 #: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 #: server_collations.php:53 server_collations.php:65 server_databases.php:108 @@ -296,7 +313,7 @@ msgstr "Bytt til kopiert database" msgid "Collation" msgstr "Sammenligning" -#: db_operations.php:464 pdf_schema.php:32 +#: db_operations.php:498 pdf_schema.php:32 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -308,7 +325,7 @@ msgstr "" "Tilleggsfunksjonene for å kunne jobbe med koblede tabeller er deaktivert. " "For å finne ut hvorfor, klikk %sher%s." -#: db_operations.php:497 +#: db_operations.php:531 msgid "Edit PDF Pages" msgstr "Rediger PDF-sider" @@ -363,7 +380,7 @@ msgstr[0] "%s tabell" msgstr[1] "%s tabeller" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -451,7 +468,7 @@ msgstr "Kjør spørring" #: db_search.php:50 libraries/auth/config.auth.lib.php:83 #: libraries/auth/config.auth.lib.php:102 -#: libraries/auth/cookie.auth.lib.php:640 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:182 msgid "Access denied" msgstr "Ingen tilgang" @@ -493,7 +510,7 @@ msgid "Browse" msgstr "Se på" #: db_search.php:254 libraries/display_tbl.lib.php:1163 -#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:440 #: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 @@ -533,14 +550,14 @@ msgstr "I kolonne:" #: db_structure.php:79 db_structure.php:80 db_structure.php:92 #: db_structure.php:93 db_structure.php:105 db_structure.php:106 -#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:311 +#: libraries/sql_query_form.lib.php:314 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Sett inn" #: db_structure.php:81 db_structure.php:94 db_structure.php:107 #: libraries/common.lib.php:2832 libraries/common.lib.php:2839 -#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 +#: libraries/db_links.inc.php:48 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 @@ -553,8 +570,7 @@ msgstr "Struktur" #: db_structure.php:96 db_structure.php:108 db_structure.php:109 #: db_structure.php:530 db_structure.php:531 db_tracking.php:86 #: libraries/Index.class.php:482 libraries/common.lib.php:1663 -#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 #: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 #: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" @@ -563,21 +579,21 @@ msgstr "Slett" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 +#: libraries/mult_submits.inc.php:38 msgid "Empty" msgstr "Tøm" -#: db_structure.php:301 libraries/tbl_links.inc.php:98 +#: db_structure.php:301 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "Tabellen %s har blitt tømt" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "View %s has been dropped" msgstr "Visningen %s har blitt slettet" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "Tabellen %s har blitt slettet" @@ -667,7 +683,7 @@ msgstr "Reparer tabell" msgid "Analyze table" msgstr "Analyser tabell" -#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:56 #: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 #: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 #: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 @@ -1346,7 +1362,7 @@ msgid "Databases" msgstr "Databaser" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30 #: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 #: tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -1450,7 +1466,7 @@ msgid "Cannot connect: invalid settings." msgstr "Kan ikke koble til: ugyldige innstillinger." #: libraries/auth/config.auth.lib.php:91 -#: libraries/auth/cookie.auth.lib.php:205 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:206 libraries/auth/http.auth.lib.php:64 #: test/theme.php:151 #, php-format msgid "Welcome to %s" @@ -1477,57 +1493,57 @@ msgstr "" "passord (password) i config.inc.php og sjekke at de tilsvarer den " "informasjonen du fikk fra MySQL-server administratoren." -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:231 msgid "Log in" msgstr "Logg inn" -#: libraries/auth/cookie.auth.lib.php:232 -#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:233 +#: libraries/auth/cookie.auth.lib.php:235 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:94 msgid "phpMyAdmin documentation" msgstr "phpMyAdmin-Dokumentasjon" -#: libraries/auth/cookie.auth.lib.php:244 #: libraries/auth/cookie.auth.lib.php:245 +#: libraries/auth/cookie.auth.lib.php:246 msgid "You can enter hostname/IP address and port separated by space." msgstr "Du kan skrive vertsnavn/IP adresse og port separert med mellomrom." -#: libraries/auth/cookie.auth.lib.php:244 +#: libraries/auth/cookie.auth.lib.php:245 msgid "Server:" msgstr "Tjener" -#: libraries/auth/cookie.auth.lib.php:249 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Username:" msgstr "Brukernavn:" -#: libraries/auth/cookie.auth.lib.php:253 +#: libraries/auth/cookie.auth.lib.php:254 msgid "Password:" msgstr "Passord:" -#: libraries/auth/cookie.auth.lib.php:260 +#: libraries/auth/cookie.auth.lib.php:261 msgid "Server Choice" msgstr "Tjenervalg" -#: libraries/auth/cookie.auth.lib.php:306 libraries/header.inc.php:58 +#: libraries/auth/cookie.auth.lib.php:307 libraries/header.inc.php:58 msgid "Cookies must be enabled past this point." msgstr "Cookies må være slått på forbi dette punkt." -#: libraries/auth/cookie.auth.lib.php:638 +#: libraries/auth/cookie.auth.lib.php:639 #: libraries/auth/signon.auth.lib.php:180 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" "Innlogging uten passord er forbudt av konfigurasjonen (see AllowNoPassword)" -#: libraries/auth/cookie.auth.lib.php:642 +#: libraries/auth/cookie.auth.lib.php:643 #: libraries/auth/signon.auth.lib.php:184 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "Ingen aktivitet på %s sekunder eller mer, du må logge inn på nytt" -#: libraries/auth/cookie.auth.lib.php:652 -#: libraries/auth/cookie.auth.lib.php:654 +#: libraries/auth/cookie.auth.lib.php:653 +#: libraries/auth/cookie.auth.lib.php:655 #: libraries/auth/signon.auth.lib.php:190 msgid "Cannot log in to the MySQL server" msgstr "Kan ikke logge inn til MySQL tjeneren" @@ -1645,7 +1661,7 @@ msgstr "en" #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 #: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 -#: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 +#: libraries/sql_query_form.lib.php:421 libraries/sql_query_form.lib.php:424 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" msgstr "Dokumentasjon" @@ -1786,19 +1802,19 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "Funksjonaliteten %s er påvirket av en kjent feil, se %s" #: libraries/common.lib.php:2833 libraries/common.lib.php:2840 -#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 +#: libraries/db_links.inc.php:53 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 #: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 -#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:86 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "Operasjoner" -#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:265 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "%s tillegget mangler. Kontroller din PHP konfigurasjon." @@ -1814,36 +1830,31 @@ msgstr "Hendelser" msgid "Name" msgstr "Navn" -#: libraries/db_links.inc.php:43 -#, php-format -msgid "Database %s has been dropped." -msgstr "Databasen %s har blitt slettet" - -#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 -#: libraries/db_links.inc.php:57 +#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43 +#: libraries/db_links.inc.php:44 msgid "Database seems to be empty!" msgstr "Databasen ser ut til å være tom!" -#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/db_links.inc.php:66 libraries/relation.lib.php:137 #: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "Overvåkning" -#: libraries/db_links.inc.php:84 +#: libraries/db_links.inc.php:71 msgid "Query" msgstr "Spørring ved eksempel (Query by Example)" -#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 +#: libraries/db_links.inc.php:76 libraries/relation.lib.php:133 msgid "Designer" msgstr "Designer" -#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:87 #: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importer" -#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:65 #: server_privileges.php:110 server_privileges.php:1718 #: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" @@ -2004,7 +2015,7 @@ msgid "remember template" msgstr "husk malen" #: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 -#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 +#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:509 msgid "Character set of the file:" msgstr "Filens tegnsett:" @@ -2061,7 +2072,7 @@ msgstr "" msgid "File to import" msgstr "Fil for importering" -#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:497 +#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:484 msgid "Location of the text file" msgstr "Plassering av filen" @@ -2069,12 +2080,12 @@ msgstr "Plassering av filen" msgid "File uploads are not allowed on this server." msgstr "Filopplastinger er ikke tillatt på denne tjeneren." -#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 +#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:493 #: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "Katalogen du anga for opplasting kan ikke nåes" -#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 +#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:496 #: tbl_change.php:925 msgid "web server upload directory" msgstr "webtjener opplastingskatalog" @@ -3461,7 +3472,7 @@ msgid "" "Please see the documentation on how to update your column_comments table" msgstr "Les i dokumentasjonen hvordan du oppdaterer din Column_comments tabell" -#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:403 msgid "Bookmarked SQL query" msgstr "Lagret SQL-spørring" @@ -3531,7 +3542,7 @@ msgstr "Masterstatus" msgid "Slave status" msgstr "Slavestatus" -#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:428 +#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:415 #: server_status.php:736 server_variables.php:51 msgid "Variable" msgstr "Variabler" @@ -3662,49 +3673,49 @@ msgstr "Differanse" msgid "Target database" msgstr "Måldatabase" -#: libraries/sql_query_form.lib.php:219 +#: libraries/sql_query_form.lib.php:217 #, 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:236 libraries/sql_query_form.lib.php:261 +#: libraries/sql_query_form.lib.php:234 libraries/sql_query_form.lib.php:258 #, 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:307 +#: libraries/sql_query_form.lib.php:294 msgid "Columns" msgstr "Kolonner" -#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 +#: libraries/sql_query_form.lib.php:329 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "Lagre denne SQL-spørringen" -#: libraries/sql_query_form.lib.php:349 sql.php:669 +#: libraries/sql_query_form.lib.php:336 sql.php:669 msgid "Let every user access this bookmark" msgstr "La alle brukere ha adgang til dette bokmerket" -#: libraries/sql_query_form.lib.php:355 +#: libraries/sql_query_form.lib.php:342 msgid "Replace existing bookmark of same name" msgstr "Erstatt eksisterende bokmerke med samme navn" -#: libraries/sql_query_form.lib.php:371 +#: libraries/sql_query_form.lib.php:358 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:378 +#: libraries/sql_query_form.lib.php:365 msgid "Delimiter" msgstr "Skilletegn" -#: libraries/sql_query_form.lib.php:386 +#: libraries/sql_query_form.lib.php:373 msgid " Show this query here again " msgstr " Vis denne spørring her igjen " -#: libraries/sql_query_form.lib.php:445 +#: libraries/sql_query_form.lib.php:432 msgid "Submit" msgstr "Send" -#: libraries/sql_query_form.lib.php:449 +#: libraries/sql_query_form.lib.php:436 msgid "View only" msgstr "Bare se" @@ -3777,12 +3788,11 @@ msgstr "" "SQL-kontrolleren kunne ikke startes. Vennligst sjekk at du har installert de " "nødvendige php-tilleggene som beskrevet i %sdokumentasjonen%s." -#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 -#: libraries/tbl_links.inc.php:139 +#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107 msgid "Table seems to be empty!" msgstr "Tabellen ser ut til å være tom!" -#: libraries/tbl_links.inc.php:147 +#: libraries/tbl_links.inc.php:115 #, php-format msgid "Tracking of %s.%s is activated." msgstr "Overvåkning av %s.%s er aktivert." @@ -8035,40 +8045,54 @@ msgstr "Tabelen %s har blitt oppfrisket" msgid "Flush the table (FLUSH)" msgstr "Oppfrisk tabellen (\"FLUSH\")" -#: tbl_operations.php:648 +#: tbl_operations.php:642 +#, fuzzy +#| msgid "Table name" +msgid "Table removal" +msgstr "Tabellnavn" + +#: tbl_operations.php:657 +msgid "Empty the table (TRUNCATE)" +msgstr "" + +#: tbl_operations.php:675 +msgid "Drop the table (DROP)" +msgstr "" + +#: tbl_operations.php:696 msgid "Partition maintenance" msgstr "Partisjonsvedlikehold" -#: tbl_operations.php:656 +#: tbl_operations.php:704 #, php-format msgid "Partition %s" msgstr "Partisjon %s" -#: tbl_operations.php:659 +#: tbl_operations.php:707 msgid "Analyze" msgstr "Analyser" -#: tbl_operations.php:660 +#: tbl_operations.php:708 msgid "Check" msgstr "Kontroller" -#: tbl_operations.php:661 +#: tbl_operations.php:709 msgid "Optimize" msgstr "Optimaliser" -#: tbl_operations.php:662 +#: tbl_operations.php:710 msgid "Rebuild" msgstr "Gjenoppbygg" -#: tbl_operations.php:663 +#: tbl_operations.php:711 msgid "Repair" msgstr "Reparer" -#: tbl_operations.php:675 +#: tbl_operations.php:723 msgid "Remove partitioning" msgstr "Fjern partisjonering" -#: tbl_operations.php:701 +#: tbl_operations.php:749 msgid "Check referential integrity:" msgstr "Sjekk referanseintegritet:" diff --git a/po/nl.po b/po/nl.po index 0c9d84411..5eca2bf7a 100644 --- a/po/nl.po +++ b/po/nl.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-26 17:18+0200\n" +"POT-Creation-Date: 2010-07-27 10:12+0200\n" "PO-Revision-Date: 2010-05-31 01:06+0200\n" "Last-Translator: Bjorn \n" "Language-Team: dutch \n" @@ -38,16 +38,16 @@ msgstr "" #: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 #: db_structure.php:89 db_structure.php:91 db_structure.php:102 #: db_structure.php:104 libraries/common.lib.php:2834 -#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Zoeken" #: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 -#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_operations.php:468 db_operations.php:492 db_search.php:344 #: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 #: libraries/Theme_Manager.class.php:305 -#: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 +#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:712 #: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 @@ -55,8 +55,8 @@ msgstr "Zoeken" #: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 #: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 -#: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: libraries/sql_query_form.lib.php:377 libraries/sql_query_form.lib.php:447 +#: libraries/sql_query_form.lib.php:512 libraries/tbl_properties.inc.php:780 #: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 #: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 #: server_privileges.php:663 server_privileges.php:1620 @@ -66,7 +66,7 @@ msgstr "Zoeken" #: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 #: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 -#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_operations.php:726 tbl_select.php:323 tbl_structure.php:559 #: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 #: view_create.php:181 view_operations.php:99 msgid "Go" @@ -249,47 +249,64 @@ msgstr "Commando" msgid "and then" msgstr "en dan" -#: db_operations.php:390 +#: db_operations.php:379 +#, fuzzy +#| msgid "Rename database to" +msgid "Remove database" +msgstr "Hernoem database naar" + +#: db_operations.php:391 +#, php-format +msgid "Database %s has been dropped." +msgstr "Database %s is vervallen." + +#: db_operations.php:396 +#, fuzzy +#| msgid "Go to database" +msgid "Drop the database (DROP)" +msgstr "Ga naar database" + +#: db_operations.php:424 msgid "Copy database to" msgstr "Kopieer database naar" -#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:431 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Alleen structuur" -#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:432 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Structuur en gegevens" -#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:433 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Alleen data" -#: db_operations.php:407 +#: db_operations.php:441 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE voor het kopiëren" -#: db_operations.php:410 libraries/export/sql.php:51 +#: db_operations.php:444 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 #: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "Voeg %s toe" -#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: db_operations.php:448 libraries/export/sql.php:77 tbl_operations.php:296 #: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Voeg AUTO_INCREMENT waarde toe" -#: db_operations.php:418 tbl_operations.php:542 +#: db_operations.php:452 tbl_operations.php:542 msgid "Add constraints" msgstr "Voeg beperkingen toe" -#: db_operations.php:431 +#: db_operations.php:465 msgid "Switch to copied database" msgstr "Schakel naar de gekopieerde database" -#: db_operations.php:451 libraries/Index.class.php:447 +#: db_operations.php:485 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 #: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 #: server_collations.php:53 server_collations.php:65 server_databases.php:108 @@ -298,7 +315,7 @@ msgstr "Schakel naar de gekopieerde database" msgid "Collation" msgstr "Collatie" -#: db_operations.php:464 pdf_schema.php:32 +#: db_operations.php:498 pdf_schema.php:32 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -310,7 +327,7 @@ msgstr "" "Extra opties om met tabellen te werken, die gelinkt zijn, zijn " "uitgeschakeld. Om te weten te komen waarom klik %shier%s." -#: db_operations.php:497 +#: db_operations.php:531 msgid "Edit PDF Pages" msgstr "PDF Pagina's aanpassen" @@ -366,7 +383,7 @@ msgstr[0] "%s tabel(len)" msgstr[1] "%s tabel(len)" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -458,7 +475,7 @@ msgstr "Query uitvoeren" #: db_search.php:50 libraries/auth/config.auth.lib.php:83 #: libraries/auth/config.auth.lib.php:102 -#: libraries/auth/cookie.auth.lib.php:640 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:182 msgid "Access denied" msgstr "Toegang geweigerd " @@ -501,7 +518,7 @@ msgid "Browse" msgstr "Verkennen" #: db_search.php:254 libraries/display_tbl.lib.php:1163 -#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:440 #: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 @@ -544,14 +561,14 @@ msgstr "In het veld:" #: db_structure.php:79 db_structure.php:80 db_structure.php:92 #: db_structure.php:93 db_structure.php:105 db_structure.php:106 -#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:311 +#: libraries/sql_query_form.lib.php:314 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Invoegen" #: db_structure.php:81 db_structure.php:94 db_structure.php:107 #: libraries/common.lib.php:2832 libraries/common.lib.php:2839 -#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 +#: libraries/db_links.inc.php:48 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 @@ -564,8 +581,7 @@ msgstr "Structuur" #: db_structure.php:96 db_structure.php:108 db_structure.php:109 #: db_structure.php:530 db_structure.php:531 db_tracking.php:86 #: libraries/Index.class.php:482 libraries/common.lib.php:1663 -#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 #: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 #: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" @@ -574,21 +590,21 @@ msgstr "Verwijderen" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 +#: libraries/mult_submits.inc.php:38 msgid "Empty" msgstr "Legen" -#: db_structure.php:301 libraries/tbl_links.inc.php:98 +#: db_structure.php:301 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "Tabel %s is leeg gemaakt" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "View %s has been dropped" msgstr "View %s is verwijderd" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "Tabel %s is vervallen" @@ -679,7 +695,7 @@ msgstr "Repareer tabel" msgid "Analyze table" msgstr "Analyseer tabel" -#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:56 #: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 #: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 #: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 @@ -1384,7 +1400,7 @@ msgid "Databases" msgstr "Databases" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30 #: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 #: tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -1492,7 +1508,7 @@ msgid "Cannot connect: invalid settings." msgstr "Kan niet verbinden: ongeldige instellingen." #: libraries/auth/config.auth.lib.php:91 -#: libraries/auth/cookie.auth.lib.php:205 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:206 libraries/auth/http.auth.lib.php:64 #: test/theme.php:151 #, php-format msgid "Welcome to %s" @@ -1519,45 +1535,45 @@ msgstr "" "wachtwoord in config.inc.php en zorg er voor dat deze overeenkomen met de " "informatie die u van de Beheerder van de MySQL-server kreeg." -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:231 msgid "Log in" msgstr "Inloggen" -#: libraries/auth/cookie.auth.lib.php:232 -#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:233 +#: libraries/auth/cookie.auth.lib.php:235 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:94 msgid "phpMyAdmin documentation" msgstr "phpMyAdmin Documentatie" -#: libraries/auth/cookie.auth.lib.php:244 #: libraries/auth/cookie.auth.lib.php:245 +#: libraries/auth/cookie.auth.lib.php:246 msgid "You can enter hostname/IP address and port separated by space." msgstr "" "U kunt een machinenaam/IP adres en poortnummer gescheiden door een spatie " "opgeven." -#: libraries/auth/cookie.auth.lib.php:244 +#: libraries/auth/cookie.auth.lib.php:245 msgid "Server:" msgstr "Server" -#: libraries/auth/cookie.auth.lib.php:249 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Username:" msgstr "Gebruikersnaam:" -#: libraries/auth/cookie.auth.lib.php:253 +#: libraries/auth/cookie.auth.lib.php:254 msgid "Password:" msgstr "Wachtwoord:" -#: libraries/auth/cookie.auth.lib.php:260 +#: libraries/auth/cookie.auth.lib.php:261 msgid "Server Choice" msgstr "Serverkeuze" -#: libraries/auth/cookie.auth.lib.php:306 libraries/header.inc.php:58 +#: libraries/auth/cookie.auth.lib.php:307 libraries/header.inc.php:58 msgid "Cookies must be enabled past this point." msgstr "Cookies moeten aan staan voorbij dit punt." -#: libraries/auth/cookie.auth.lib.php:638 +#: libraries/auth/cookie.auth.lib.php:639 #: libraries/auth/signon.auth.lib.php:180 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" @@ -1565,14 +1581,14 @@ msgstr "" "Inloggen zonder wachtwoord is niet toegestaan vanuit de instellingen (zie " "AllowNoPassword)" -#: libraries/auth/cookie.auth.lib.php:642 +#: libraries/auth/cookie.auth.lib.php:643 #: libraries/auth/signon.auth.lib.php:184 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "Geen activiteit voor %s seconden of meer, log a.u.b. opnieuw in" -#: libraries/auth/cookie.auth.lib.php:652 -#: libraries/auth/cookie.auth.lib.php:654 +#: libraries/auth/cookie.auth.lib.php:653 +#: libraries/auth/cookie.auth.lib.php:655 #: libraries/auth/signon.auth.lib.php:190 msgid "Cannot log in to the MySQL server" msgstr "Kan niet inloggen op de MySQL-server" @@ -1693,7 +1709,7 @@ msgstr "en" #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 #: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 -#: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 +#: libraries/sql_query_form.lib.php:421 libraries/sql_query_form.lib.php:424 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" msgstr "Documentatie" @@ -1837,19 +1853,19 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "De %s functionaliteit heeft last van een bekend probleem, zie %s" #: libraries/common.lib.php:2833 libraries/common.lib.php:2840 -#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 +#: libraries/db_links.inc.php:53 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 #: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 -#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:86 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "Handelingen" -#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:265 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1865,36 +1881,31 @@ msgstr "Gebeurtenissen" msgid "Name" msgstr "Naam" -#: libraries/db_links.inc.php:43 -#, php-format -msgid "Database %s has been dropped." -msgstr "Database %s is vervallen." - -#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 -#: libraries/db_links.inc.php:57 +#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43 +#: libraries/db_links.inc.php:44 msgid "Database seems to be empty!" msgstr "Database lijkt leeg!" -#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/db_links.inc.php:66 libraries/relation.lib.php:137 #: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "Tracking" -#: libraries/db_links.inc.php:84 +#: libraries/db_links.inc.php:71 msgid "Query" msgstr "Query opbouwen" -#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 +#: libraries/db_links.inc.php:76 libraries/relation.lib.php:133 msgid "Designer" msgstr "Designer" -#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:87 #: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importeer" -#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:65 #: server_privileges.php:110 server_privileges.php:1718 #: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" @@ -2066,7 +2077,7 @@ msgid "remember template" msgstr "Onthoud template" #: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 -#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 +#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:509 msgid "Character set of the file:" msgstr "Karakter set van het bestand:" @@ -2124,7 +2135,7 @@ msgstr "" msgid "File to import" msgstr "Te importeren bestand" -#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:497 +#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:484 msgid "Location of the text file" msgstr "Locatie van het tekstbestand" @@ -2132,13 +2143,13 @@ msgstr "Locatie van het tekstbestand" msgid "File uploads are not allowed on this server." msgstr "Het uploaden van bestanden is niet toegestaan op deze server." -#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 +#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:493 #: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "" "De directory die u heeft ingesteld om te uploaden kan niet worden bereikt." -#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 +#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:496 #: tbl_change.php:925 msgid "web server upload directory" msgstr "web-server upload directory" @@ -3558,7 +3569,7 @@ msgid "" msgstr "" "Raadpleeg de Documentatie over hoe u uw Column_comments tabel bijwerkt." -#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:403 msgid "Bookmarked SQL query" msgstr "Opgeslagen SQL-query" @@ -3632,7 +3643,7 @@ msgstr "Master status" msgid "Slave status" msgstr "Slave status" -#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:428 +#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:415 #: server_status.php:736 server_variables.php:51 msgid "Variable" msgstr "Variabelen" @@ -3763,51 +3774,51 @@ msgstr "Verschil" msgid "Target database" msgstr "Doel database" -#: libraries/sql_query_form.lib.php:219 +#: libraries/sql_query_form.lib.php:217 #, 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:236 libraries/sql_query_form.lib.php:261 +#: libraries/sql_query_form.lib.php:234 libraries/sql_query_form.lib.php:258 #, php-format msgid "Run SQL query/queries on database %s" msgstr "Draai SQL query/queries op database %s" -#: libraries/sql_query_form.lib.php:307 +#: libraries/sql_query_form.lib.php:294 #, fuzzy #| msgid "Column names" msgid "Columns" msgstr "Kolom namen" -#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 +#: libraries/sql_query_form.lib.php:329 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "Sla deze SQL-query op" -#: libraries/sql_query_form.lib.php:349 sql.php:669 +#: libraries/sql_query_form.lib.php:336 sql.php:669 msgid "Let every user access this bookmark" msgstr "Geef elke gebruiker toegang tot deze bookmark" -#: libraries/sql_query_form.lib.php:355 +#: libraries/sql_query_form.lib.php:342 msgid "Replace existing bookmark of same name" msgstr "Bookmark met dezelfde naam overschrijven" -#: libraries/sql_query_form.lib.php:371 +#: libraries/sql_query_form.lib.php:358 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:378 +#: libraries/sql_query_form.lib.php:365 msgid "Delimiter" msgstr "Scheidingsteken" -#: libraries/sql_query_form.lib.php:386 +#: libraries/sql_query_form.lib.php:373 msgid " Show this query here again " msgstr " Laat deze query hier zien " -#: libraries/sql_query_form.lib.php:445 +#: libraries/sql_query_form.lib.php:432 msgid "Submit" msgstr "Verzenden" -#: libraries/sql_query_form.lib.php:449 +#: libraries/sql_query_form.lib.php:436 msgid "View only" msgstr "Alleen bekijken" @@ -3879,12 +3890,11 @@ 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/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 -#: libraries/tbl_links.inc.php:139 +#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107 msgid "Table seems to be empty!" msgstr "Tabel lijkt leeg!" -#: libraries/tbl_links.inc.php:147 +#: libraries/tbl_links.inc.php:115 #, php-format msgid "Tracking of %s.%s is activated." msgstr "Tracking is ingeschakeld voor %s.%s." @@ -8331,40 +8341,54 @@ msgstr "Tabel %s is geschoond" msgid "Flush the table (FLUSH)" msgstr "Schoon de tabel (\"FLUSH\")" -#: tbl_operations.php:648 +#: tbl_operations.php:642 +#, fuzzy +#| msgid "Table name" +msgid "Table removal" +msgstr "Tabelnaam" + +#: tbl_operations.php:657 +msgid "Empty the table (TRUNCATE)" +msgstr "" + +#: tbl_operations.php:675 +msgid "Drop the table (DROP)" +msgstr "" + +#: tbl_operations.php:696 msgid "Partition maintenance" msgstr "Partitie onderhoud" -#: tbl_operations.php:656 +#: tbl_operations.php:704 #, php-format msgid "Partition %s" msgstr "Partitie %s" -#: tbl_operations.php:659 +#: tbl_operations.php:707 msgid "Analyze" msgstr "Analyseer" -#: tbl_operations.php:660 +#: tbl_operations.php:708 msgid "Check" msgstr "Controleer" -#: tbl_operations.php:661 +#: tbl_operations.php:709 msgid "Optimize" msgstr "Optimaliseer" -#: tbl_operations.php:662 +#: tbl_operations.php:710 msgid "Rebuild" msgstr "Regenereer" -#: tbl_operations.php:663 +#: tbl_operations.php:711 msgid "Repair" msgstr "Repareer" -#: tbl_operations.php:675 +#: tbl_operations.php:723 msgid "Remove partitioning" msgstr "Verwijder partitionering" -#: tbl_operations.php:701 +#: tbl_operations.php:749 msgid "Check referential integrity:" msgstr "Controleer referentiële integriteit" diff --git a/po/phpmyadmin.pot b/po/phpmyadmin.pot index 8bc815564..337c639e8 100644 --- a/po/phpmyadmin.pot +++ b/po/phpmyadmin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-26 17:18+0200\n" +"POT-Creation-Date: 2010-07-27 10:12+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -40,16 +40,16 @@ msgstr "" #: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 #: db_structure.php:89 db_structure.php:91 db_structure.php:102 #: db_structure.php:104 libraries/common.lib.php:2834 -#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "" #: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 -#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_operations.php:468 db_operations.php:492 db_search.php:344 #: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 #: libraries/Theme_Manager.class.php:305 -#: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 +#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:712 #: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 @@ -57,8 +57,8 @@ msgstr "" #: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 #: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 -#: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: libraries/sql_query_form.lib.php:377 libraries/sql_query_form.lib.php:447 +#: libraries/sql_query_form.lib.php:512 libraries/tbl_properties.inc.php:780 #: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 #: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 #: server_privileges.php:663 server_privileges.php:1620 @@ -68,7 +68,7 @@ msgstr "" #: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 #: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 -#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_operations.php:726 tbl_select.php:323 tbl_structure.php:559 #: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 #: view_create.php:181 view_operations.php:99 msgid "Go" @@ -247,47 +247,60 @@ msgstr "" msgid "and then" msgstr "" -#: db_operations.php:390 +#: db_operations.php:379 +msgid "Remove database" +msgstr "" + +#: db_operations.php:391 +#, possible-php-format +msgid "Database %s has been dropped." +msgstr "" + +#: db_operations.php:396 +msgid "Drop the database (DROP)" +msgstr "" + +#: db_operations.php:424 msgid "Copy database to" msgstr "" -#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:431 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "" -#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:432 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "" -#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:433 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "" -#: db_operations.php:407 +#: db_operations.php:441 msgid "CREATE DATABASE before copying" msgstr "" -#: db_operations.php:410 libraries/export/sql.php:51 +#: db_operations.php:444 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 #: libraries/export/sql.php:81 tbl_operations.php:533 #, possible-php-format msgid "Add %s" msgstr "" -#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: db_operations.php:448 libraries/export/sql.php:77 tbl_operations.php:296 #: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "" -#: db_operations.php:418 tbl_operations.php:542 +#: db_operations.php:452 tbl_operations.php:542 msgid "Add constraints" msgstr "" -#: db_operations.php:431 +#: db_operations.php:465 msgid "Switch to copied database" msgstr "" -#: db_operations.php:451 libraries/Index.class.php:447 +#: db_operations.php:485 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 #: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 #: server_collations.php:53 server_collations.php:65 server_databases.php:108 @@ -296,14 +309,14 @@ msgstr "" msgid "Collation" msgstr "" -#: db_operations.php:464 pdf_schema.php:32 +#: db_operations.php:498 pdf_schema.php:32 #, possible-php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." msgstr "" -#: db_operations.php:497 +#: db_operations.php:531 msgid "Edit PDF Pages" msgstr "" @@ -358,7 +371,7 @@ msgstr[0] "" msgstr[1] "" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -446,7 +459,7 @@ msgstr "" #: db_search.php:50 libraries/auth/config.auth.lib.php:83 #: libraries/auth/config.auth.lib.php:102 -#: libraries/auth/cookie.auth.lib.php:640 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:182 msgid "Access denied" msgstr "" @@ -488,7 +501,7 @@ msgid "Browse" msgstr "" #: db_search.php:254 libraries/display_tbl.lib.php:1163 -#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:440 #: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 @@ -528,14 +541,14 @@ msgstr "" #: db_structure.php:79 db_structure.php:80 db_structure.php:92 #: db_structure.php:93 db_structure.php:105 db_structure.php:106 -#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:311 +#: libraries/sql_query_form.lib.php:314 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "" #: db_structure.php:81 db_structure.php:94 db_structure.php:107 #: libraries/common.lib.php:2832 libraries/common.lib.php:2839 -#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 +#: libraries/db_links.inc.php:48 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 @@ -548,8 +561,7 @@ msgstr "" #: db_structure.php:96 db_structure.php:108 db_structure.php:109 #: db_structure.php:530 db_structure.php:531 db_tracking.php:86 #: libraries/Index.class.php:482 libraries/common.lib.php:1663 -#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 #: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 #: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" @@ -558,21 +570,21 @@ msgstr "" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 +#: libraries/mult_submits.inc.php:38 msgid "Empty" msgstr "" -#: db_structure.php:301 libraries/tbl_links.inc.php:98 +#: db_structure.php:301 tbl_operations.php:653 #, possible-php-format msgid "Table %s has been emptied" msgstr "" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, possible-php-format msgid "View %s has been dropped" msgstr "" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, possible-php-format msgid "Table %s has been dropped" msgstr "" @@ -662,7 +674,7 @@ msgstr "" msgid "Analyze table" msgstr "" -#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:56 #: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 #: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 #: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 @@ -1318,7 +1330,7 @@ msgid "Databases" msgstr "" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30 #: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 #: tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -1421,7 +1433,7 @@ msgid "Cannot connect: invalid settings." msgstr "" #: libraries/auth/config.auth.lib.php:91 -#: libraries/auth/cookie.auth.lib.php:205 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:206 libraries/auth/http.auth.lib.php:64 #: test/theme.php:151 #, possible-php-format msgid "Welcome to %s" @@ -1442,56 +1454,56 @@ msgid "" "the administrator of the MySQL server." msgstr "" -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:231 msgid "Log in" msgstr "" -#: libraries/auth/cookie.auth.lib.php:232 -#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:233 +#: libraries/auth/cookie.auth.lib.php:235 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:94 msgid "phpMyAdmin documentation" msgstr "" -#: libraries/auth/cookie.auth.lib.php:244 #: libraries/auth/cookie.auth.lib.php:245 +#: libraries/auth/cookie.auth.lib.php:246 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:244 +#: libraries/auth/cookie.auth.lib.php:245 msgid "Server:" msgstr "" -#: libraries/auth/cookie.auth.lib.php:249 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Username:" msgstr "" -#: libraries/auth/cookie.auth.lib.php:253 +#: libraries/auth/cookie.auth.lib.php:254 msgid "Password:" msgstr "" -#: libraries/auth/cookie.auth.lib.php:260 +#: libraries/auth/cookie.auth.lib.php:261 msgid "Server Choice" msgstr "" -#: libraries/auth/cookie.auth.lib.php:306 libraries/header.inc.php:58 +#: libraries/auth/cookie.auth.lib.php:307 libraries/header.inc.php:58 msgid "Cookies must be enabled past this point." msgstr "" -#: libraries/auth/cookie.auth.lib.php:638 +#: libraries/auth/cookie.auth.lib.php:639 #: libraries/auth/signon.auth.lib.php:180 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" -#: libraries/auth/cookie.auth.lib.php:642 +#: libraries/auth/cookie.auth.lib.php:643 #: libraries/auth/signon.auth.lib.php:184 #, possible-php-format msgid "No activity within %s seconds; please log in again" msgstr "" -#: libraries/auth/cookie.auth.lib.php:652 -#: libraries/auth/cookie.auth.lib.php:654 +#: libraries/auth/cookie.auth.lib.php:653 +#: libraries/auth/cookie.auth.lib.php:655 #: libraries/auth/signon.auth.lib.php:190 msgid "Cannot log in to the MySQL server" msgstr "" @@ -1602,7 +1614,7 @@ msgstr "" #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 #: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 -#: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 +#: libraries/sql_query_form.lib.php:421 libraries/sql_query_form.lib.php:424 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" msgstr "" @@ -1743,19 +1755,19 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/common.lib.php:2833 libraries/common.lib.php:2840 -#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 +#: libraries/db_links.inc.php:53 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 #: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "" -#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 -#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:86 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "" -#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:265 libraries/dbg/setup.php:21 #, possible-php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1771,36 +1783,31 @@ msgstr "" msgid "Name" msgstr "" -#: libraries/db_links.inc.php:43 -#, possible-php-format -msgid "Database %s has been dropped." -msgstr "" - -#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 -#: libraries/db_links.inc.php:57 +#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43 +#: libraries/db_links.inc.php:44 msgid "Database seems to be empty!" msgstr "" -#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/db_links.inc.php:66 libraries/relation.lib.php:137 #: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:84 +#: libraries/db_links.inc.php:71 msgid "Query" msgstr "" -#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 +#: libraries/db_links.inc.php:76 libraries/relation.lib.php:133 msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:87 #: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "" -#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:65 #: server_privileges.php:110 server_privileges.php:1718 #: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" @@ -1957,7 +1964,7 @@ msgid "remember template" msgstr "" #: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 -#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 +#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:509 msgid "Character set of the file:" msgstr "" @@ -2010,7 +2017,7 @@ msgstr "" msgid "File to import" msgstr "" -#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:497 +#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:484 msgid "Location of the text file" msgstr "" @@ -2018,12 +2025,12 @@ msgstr "" msgid "File uploads are not allowed on this server." msgstr "" -#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 +#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:493 #: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "" -#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 +#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:496 #: tbl_change.php:925 msgid "web server upload directory" msgstr "" @@ -3346,7 +3353,7 @@ msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" -#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:403 msgid "Bookmarked SQL query" msgstr "" @@ -3411,7 +3418,7 @@ msgstr "" msgid "Slave status" msgstr "" -#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:428 +#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:415 #: server_status.php:736 server_variables.php:51 msgid "Variable" msgstr "" @@ -3538,49 +3545,49 @@ msgstr "" msgid "Target database" msgstr "" -#: libraries/sql_query_form.lib.php:219 +#: libraries/sql_query_form.lib.php:217 #, possible-php-format msgid "Run SQL query/queries on server %s" msgstr "" -#: libraries/sql_query_form.lib.php:236 libraries/sql_query_form.lib.php:261 +#: libraries/sql_query_form.lib.php:234 libraries/sql_query_form.lib.php:258 #, possible-php-format msgid "Run SQL query/queries on database %s" msgstr "" -#: libraries/sql_query_form.lib.php:307 +#: libraries/sql_query_form.lib.php:294 msgid "Columns" msgstr "" -#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 +#: libraries/sql_query_form.lib.php:329 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql_query_form.lib.php:349 sql.php:669 +#: libraries/sql_query_form.lib.php:336 sql.php:669 msgid "Let every user access this bookmark" msgstr "" -#: libraries/sql_query_form.lib.php:355 +#: libraries/sql_query_form.lib.php:342 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/sql_query_form.lib.php:371 +#: libraries/sql_query_form.lib.php:358 msgid "Do not overwrite this query from outside the window" msgstr "" -#: libraries/sql_query_form.lib.php:378 +#: libraries/sql_query_form.lib.php:365 msgid "Delimiter" msgstr "" -#: libraries/sql_query_form.lib.php:386 +#: libraries/sql_query_form.lib.php:373 msgid " Show this query here again " msgstr "" -#: libraries/sql_query_form.lib.php:445 +#: libraries/sql_query_form.lib.php:432 msgid "Submit" msgstr "" -#: libraries/sql_query_form.lib.php:449 +#: libraries/sql_query_form.lib.php:436 msgid "View only" msgstr "" @@ -3638,12 +3645,11 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" -#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 -#: libraries/tbl_links.inc.php:139 +#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107 msgid "Table seems to be empty!" msgstr "" -#: libraries/tbl_links.inc.php:147 +#: libraries/tbl_links.inc.php:115 #, possible-php-format msgid "Tracking of %s.%s is activated." msgstr "" @@ -7461,40 +7467,52 @@ msgstr "" msgid "Flush the table (FLUSH)" msgstr "" -#: tbl_operations.php:648 +#: tbl_operations.php:642 +msgid "Table removal" +msgstr "" + +#: tbl_operations.php:657 +msgid "Empty the table (TRUNCATE)" +msgstr "" + +#: tbl_operations.php:675 +msgid "Drop the table (DROP)" +msgstr "" + +#: tbl_operations.php:696 msgid "Partition maintenance" msgstr "" -#: tbl_operations.php:656 +#: tbl_operations.php:704 #, possible-php-format msgid "Partition %s" msgstr "" -#: tbl_operations.php:659 +#: tbl_operations.php:707 msgid "Analyze" msgstr "" -#: tbl_operations.php:660 +#: tbl_operations.php:708 msgid "Check" msgstr "" -#: tbl_operations.php:661 +#: tbl_operations.php:709 msgid "Optimize" msgstr "" -#: tbl_operations.php:662 +#: tbl_operations.php:710 msgid "Rebuild" msgstr "" -#: tbl_operations.php:663 +#: tbl_operations.php:711 msgid "Repair" msgstr "" -#: tbl_operations.php:675 +#: tbl_operations.php:723 msgid "Remove partitioning" msgstr "" -#: tbl_operations.php:701 +#: tbl_operations.php:749 msgid "Check referential integrity:" msgstr "" diff --git a/po/pl.po b/po/pl.po index ae9e25901..a1ac7e4a0 100644 --- a/po/pl.po +++ b/po/pl.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-26 17:18+0200\n" +"POT-Creation-Date: 2010-07-27 10:12+0200\n" "PO-Revision-Date: 2010-07-22 02:29+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: polish \n" @@ -40,16 +40,16 @@ msgstr "" #: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 #: db_structure.php:89 db_structure.php:91 db_structure.php:102 #: db_structure.php:104 libraries/common.lib.php:2834 -#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Szukaj" #: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 -#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_operations.php:468 db_operations.php:492 db_search.php:344 #: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 #: libraries/Theme_Manager.class.php:305 -#: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 +#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:712 #: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 @@ -57,8 +57,8 @@ msgstr "Szukaj" #: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 #: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 -#: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: libraries/sql_query_form.lib.php:377 libraries/sql_query_form.lib.php:447 +#: libraries/sql_query_form.lib.php:512 libraries/tbl_properties.inc.php:780 #: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 #: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 #: server_privileges.php:663 server_privileges.php:1620 @@ -68,7 +68,7 @@ msgstr "Szukaj" #: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 #: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 -#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_operations.php:726 tbl_select.php:323 tbl_structure.php:559 #: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 #: view_create.php:181 view_operations.php:99 msgid "Go" @@ -251,47 +251,63 @@ msgstr "Polecenie" msgid "and then" msgstr "a następnie" -#: db_operations.php:390 +#: db_operations.php:379 +#, fuzzy +#| msgid "Rename database to" +msgid "Remove database" +msgstr "Zmień nazwę bazy danych na" + +#: db_operations.php:391 +#, php-format +msgid "Database %s has been dropped." +msgstr "Baza danych %s została usunięta." + +#: db_operations.php:396 +#, fuzzy +msgid "Drop the database (DROP)" +msgstr "Brak baz danych" + +#: db_operations.php:424 msgid "Copy database to" msgstr "Kopiuj bazę danych do" -#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:431 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Tylko struktura" -#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:432 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Struktura i dane" -#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:433 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Tylko dane" -#: db_operations.php:407 +#: db_operations.php:441 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE przed skopiowaniem" -#: db_operations.php:410 libraries/export/sql.php:51 +#: db_operations.php:444 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 #: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "Dodaj %s" -#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: db_operations.php:448 libraries/export/sql.php:77 tbl_operations.php:296 #: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Dodaj wartości AUTO_INCREMENT" -#: db_operations.php:418 tbl_operations.php:542 +#: db_operations.php:452 tbl_operations.php:542 msgid "Add constraints" msgstr "Dodaj ograniczenia" -#: db_operations.php:431 +#: db_operations.php:465 msgid "Switch to copied database" msgstr "Przełącz do skopiowanej bazy danych" -#: db_operations.php:451 libraries/Index.class.php:447 +#: db_operations.php:485 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 #: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 #: server_collations.php:53 server_collations.php:65 server_databases.php:108 @@ -300,7 +316,7 @@ msgstr "Przełącz do skopiowanej bazy danych" msgid "Collation" msgstr "Metoda porównywania napisów" -#: db_operations.php:464 pdf_schema.php:32 +#: db_operations.php:498 pdf_schema.php:32 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -312,7 +328,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:497 +#: db_operations.php:531 msgid "Edit PDF Pages" msgstr "Edytuj strony PDF" @@ -368,7 +384,7 @@ msgstr[0] "%s tabel(a)" msgstr[1] "%s tabel(a)" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -460,7 +476,7 @@ msgstr "Wykonaj zapytania" #: db_search.php:50 libraries/auth/config.auth.lib.php:83 #: libraries/auth/config.auth.lib.php:102 -#: libraries/auth/cookie.auth.lib.php:640 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:182 msgid "Access denied" msgstr "Brak dostępu" @@ -503,7 +519,7 @@ msgid "Browse" msgstr "Przeglądaj" #: db_search.php:254 libraries/display_tbl.lib.php:1163 -#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:440 #: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 @@ -546,14 +562,14 @@ msgstr "Wewnątrz pola:" #: db_structure.php:79 db_structure.php:80 db_structure.php:92 #: db_structure.php:93 db_structure.php:105 db_structure.php:106 -#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:311 +#: libraries/sql_query_form.lib.php:314 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Dodaj" #: db_structure.php:81 db_structure.php:94 db_structure.php:107 #: libraries/common.lib.php:2832 libraries/common.lib.php:2839 -#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 +#: libraries/db_links.inc.php:48 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 @@ -566,8 +582,7 @@ msgstr "Struktura" #: db_structure.php:96 db_structure.php:108 db_structure.php:109 #: db_structure.php:530 db_structure.php:531 db_tracking.php:86 #: libraries/Index.class.php:482 libraries/common.lib.php:1663 -#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 #: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 #: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" @@ -576,21 +591,21 @@ msgstr "Usuń" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 +#: libraries/mult_submits.inc.php:38 msgid "Empty" msgstr "Wyczyść" -#: db_structure.php:301 libraries/tbl_links.inc.php:98 +#: db_structure.php:301 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "Tabela %s została opróżniona" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "View %s has been dropped" msgstr "Perspektywa %s została usunięta" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "Tabela %s została usunięta" @@ -682,7 +697,7 @@ msgstr "Napraw tabelę" msgid "Analyze table" msgstr "Analizuj tabelę" -#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:56 #: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 #: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 #: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 @@ -1422,7 +1437,7 @@ msgid "Databases" msgstr "Bazy danych" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30 #: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 #: tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -1529,7 +1544,7 @@ msgid "Cannot connect: invalid settings." msgstr "Nie udało się nawiązać połączenia: błędne ustawienia." #: libraries/auth/config.auth.lib.php:91 -#: libraries/auth/cookie.auth.lib.php:205 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:206 libraries/auth/http.auth.lib.php:64 #: test/theme.php:151 #, php-format msgid "Welcome to %s" @@ -1556,57 +1571,57 @@ msgstr "" "pliku config.inc.php i upewnić się, że odpowiadają one informacjom danym " "przez administratora serwera MySQL." -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:231 msgid "Log in" msgstr "Login" -#: libraries/auth/cookie.auth.lib.php:232 -#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:233 +#: libraries/auth/cookie.auth.lib.php:235 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:94 msgid "phpMyAdmin documentation" msgstr "Dokumentacja phpMyAdmina" -#: libraries/auth/cookie.auth.lib.php:244 #: libraries/auth/cookie.auth.lib.php:245 +#: libraries/auth/cookie.auth.lib.php:246 msgid "You can enter hostname/IP address and port separated by space." msgstr "Można podać nawę hosta/adres IP i port oddzielone spacją." -#: libraries/auth/cookie.auth.lib.php:244 +#: libraries/auth/cookie.auth.lib.php:245 msgid "Server:" msgstr "Serwer" -#: libraries/auth/cookie.auth.lib.php:249 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Username:" msgstr "Użytkownik:" -#: libraries/auth/cookie.auth.lib.php:253 +#: libraries/auth/cookie.auth.lib.php:254 msgid "Password:" msgstr "Hasło:" -#: libraries/auth/cookie.auth.lib.php:260 +#: libraries/auth/cookie.auth.lib.php:261 msgid "Server Choice" msgstr "Wybór serwera" -#: libraries/auth/cookie.auth.lib.php:306 libraries/header.inc.php:58 +#: libraries/auth/cookie.auth.lib.php:307 libraries/header.inc.php:58 msgid "Cookies must be enabled past this point." msgstr "Odtąd musi być włączona obsługa ciasteczek." -#: libraries/auth/cookie.auth.lib.php:638 +#: libraries/auth/cookie.auth.lib.php:639 #: libraries/auth/signon.auth.lib.php:180 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "Konfiguracja zabrania logowania bez hasła (zobacz AllowNoPassword)" -#: libraries/auth/cookie.auth.lib.php:642 +#: libraries/auth/cookie.auth.lib.php:643 #: libraries/auth/signon.auth.lib.php:184 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" "Brak aktywności przez co najmniej %s sekund, proszę zalogować się jeszcze raz" -#: libraries/auth/cookie.auth.lib.php:652 -#: libraries/auth/cookie.auth.lib.php:654 +#: libraries/auth/cookie.auth.lib.php:653 +#: libraries/auth/cookie.auth.lib.php:655 #: libraries/auth/signon.auth.lib.php:190 msgid "Cannot log in to the MySQL server" msgstr "Nie udało się zalogować na serwer MySQL" @@ -1730,7 +1745,7 @@ msgstr "Wysłane" #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 #: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 -#: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 +#: libraries/sql_query_form.lib.php:421 libraries/sql_query_form.lib.php:424 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" msgstr "Dokumentacja" @@ -1875,19 +1890,19 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "Funkcja %s jest dotknięta przez znany błąd, zobacz %s" #: libraries/common.lib.php:2833 libraries/common.lib.php:2840 -#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 +#: libraries/db_links.inc.php:53 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 #: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 -#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:86 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "Operacje" -#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:265 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1903,36 +1918,31 @@ msgstr "Zdarzenia" msgid "Name" msgstr "Nazwa" -#: libraries/db_links.inc.php:43 -#, php-format -msgid "Database %s has been dropped." -msgstr "Baza danych %s została usunięta." - -#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 -#: libraries/db_links.inc.php:57 +#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43 +#: libraries/db_links.inc.php:44 msgid "Database seems to be empty!" msgstr "Baza danych wydaje się pusta!" -#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/db_links.inc.php:66 libraries/relation.lib.php:137 #: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:84 +#: libraries/db_links.inc.php:71 msgid "Query" msgstr "Zapytanie przez przykład" -#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 +#: libraries/db_links.inc.php:76 libraries/relation.lib.php:133 msgid "Designer" msgstr "Projektant" -#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:87 #: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Import" -#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:65 #: server_privileges.php:110 server_privileges.php:1718 #: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" @@ -2102,7 +2112,7 @@ msgid "remember template" msgstr "pamiętaj szablon" #: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 -#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 +#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:509 msgid "Character set of the file:" msgstr "Kodowanie pliku:" @@ -2155,7 +2165,7 @@ msgstr "" msgid "File to import" msgstr "Plik do importu" -#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:497 +#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:484 msgid "Location of the text file" msgstr "Lokalizacja pliku tekstowego" @@ -2163,12 +2173,12 @@ msgstr "Lokalizacja pliku tekstowego" msgid "File uploads are not allowed on this server." msgstr "Serwer nie pozwala na upload plików." -#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 +#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:493 #: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "Katalog ustalony dla uploadu jest nieosiągalny" -#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 +#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:496 #: tbl_change.php:925 msgid "web server upload directory" msgstr "katalog serwera WWW dla uploadu" @@ -3580,7 +3590,7 @@ msgstr "" "Informacje o tym, jak zaktualizować tabelę Column_comments znajdują się w " "dokumentacji" -#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:403 msgid "Bookmarked SQL query" msgstr "Zapamiętane zapytanie SQL" @@ -3648,7 +3658,7 @@ msgstr "Status serwera podrzędnego" msgid "Slave status" msgstr "Status serwera podrzędnego" -#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:428 +#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:415 #: server_status.php:736 server_variables.php:51 msgid "Variable" msgstr "Zmienna" @@ -3778,51 +3788,51 @@ msgstr "" msgid "Target database" msgstr "Szukaj w bazie danych" -#: libraries/sql_query_form.lib.php:219 +#: libraries/sql_query_form.lib.php:217 #, php-format msgid "Run SQL query/queries on server %s" msgstr "Uruchom zapytanie/zapytania SQL na serwerze %s" -#: libraries/sql_query_form.lib.php:236 libraries/sql_query_form.lib.php:261 +#: libraries/sql_query_form.lib.php:234 libraries/sql_query_form.lib.php:258 #, 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:307 +#: libraries/sql_query_form.lib.php:294 #, fuzzy #| msgid "Column names" msgid "Columns" msgstr "Nazwy kolumn" -#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 +#: libraries/sql_query_form.lib.php:329 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "Pamiętaj zapytanie SQL" -#: libraries/sql_query_form.lib.php:349 sql.php:669 +#: libraries/sql_query_form.lib.php:336 sql.php:669 msgid "Let every user access this bookmark" msgstr "Pozwól na dostęp wszystkim użytkownikom" -#: libraries/sql_query_form.lib.php:355 +#: libraries/sql_query_form.lib.php:342 msgid "Replace existing bookmark of same name" msgstr "Zamień istniejące zapamiętane zapytanie o tej samej nazwie" -#: libraries/sql_query_form.lib.php:371 +#: libraries/sql_query_form.lib.php:358 msgid "Do not overwrite this query from outside the window" msgstr "Nie nadpisuj tego zapytania spoza okna" -#: libraries/sql_query_form.lib.php:378 +#: libraries/sql_query_form.lib.php:365 msgid "Delimiter" msgstr "Separator" -#: libraries/sql_query_form.lib.php:386 +#: libraries/sql_query_form.lib.php:373 msgid " Show this query here again " msgstr " Wywołaj ponownie zapytanie " -#: libraries/sql_query_form.lib.php:445 +#: libraries/sql_query_form.lib.php:432 msgid "Submit" msgstr "Wyślij" -#: libraries/sql_query_form.lib.php:449 +#: libraries/sql_query_form.lib.php:436 msgid "View only" msgstr "Tylko pokaż" @@ -3896,12 +3906,11 @@ msgstr "" "zainstalowane są niezbędne rozszerzenia PHP, tak jak zostało to opisane w " "%sdokumentacji%s." -#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 -#: libraries/tbl_links.inc.php:139 +#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107 msgid "Table seems to be empty!" msgstr "Tabela wydaje się pusta!" -#: libraries/tbl_links.inc.php:147 +#: libraries/tbl_links.inc.php:115 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" @@ -8180,40 +8189,54 @@ msgstr "Tabela %s została przeładowana" msgid "Flush the table (FLUSH)" msgstr "Przeładuj tabelę (\"FLUSH\")" -#: tbl_operations.php:648 +#: tbl_operations.php:642 +#, fuzzy +#| msgid "Table name" +msgid "Table removal" +msgstr "Nazwa tabeli" + +#: tbl_operations.php:657 +msgid "Empty the table (TRUNCATE)" +msgstr "" + +#: tbl_operations.php:675 +msgid "Drop the table (DROP)" +msgstr "" + +#: tbl_operations.php:696 msgid "Partition maintenance" msgstr "Zarządzanie partycjami" -#: tbl_operations.php:656 +#: tbl_operations.php:704 #, php-format msgid "Partition %s" msgstr "Partycja %s" -#: tbl_operations.php:659 +#: tbl_operations.php:707 msgid "Analyze" msgstr "Analizuj" -#: tbl_operations.php:660 +#: tbl_operations.php:708 msgid "Check" msgstr "Sprawdź" -#: tbl_operations.php:661 +#: tbl_operations.php:709 msgid "Optimize" msgstr "Optymalizuj" -#: tbl_operations.php:662 +#: tbl_operations.php:710 msgid "Rebuild" msgstr "Przebuduj" -#: tbl_operations.php:663 +#: tbl_operations.php:711 msgid "Repair" msgstr "Napraw" -#: tbl_operations.php:675 +#: tbl_operations.php:723 msgid "Remove partitioning" msgstr "Usuń partycjonowanie" -#: tbl_operations.php:701 +#: tbl_operations.php:749 msgid "Check referential integrity:" msgstr "Sprawdź spójność powiązań:" diff --git a/po/pt.po b/po/pt.po index d7a1c9d64..e32727293 100644 --- a/po/pt.po +++ b/po/pt.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-26 17:18+0200\n" +"POT-Creation-Date: 2010-07-27 10:12+0200\n" "PO-Revision-Date: 2010-07-22 02:23+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: portuguese \n" @@ -36,16 +36,16 @@ msgstr "" #: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 #: db_structure.php:89 db_structure.php:91 db_structure.php:102 #: db_structure.php:104 libraries/common.lib.php:2834 -#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Pesquisar" #: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 -#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_operations.php:468 db_operations.php:492 db_search.php:344 #: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 #: libraries/Theme_Manager.class.php:305 -#: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 +#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:712 #: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 @@ -53,8 +53,8 @@ msgstr "Pesquisar" #: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 #: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 -#: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: libraries/sql_query_form.lib.php:377 libraries/sql_query_form.lib.php:447 +#: libraries/sql_query_form.lib.php:512 libraries/tbl_properties.inc.php:780 #: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 #: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 #: server_privileges.php:663 server_privileges.php:1620 @@ -64,7 +64,7 @@ msgstr "Pesquisar" #: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 #: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 -#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_operations.php:726 tbl_select.php:323 tbl_structure.php:559 #: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 #: view_create.php:181 view_operations.php:99 msgid "Go" @@ -247,49 +247,64 @@ msgstr "Comando" msgid "and then" msgstr "" -#: db_operations.php:390 +#: db_operations.php:379 +#, fuzzy +msgid "Remove database" +msgstr "Renomeia a tabela para " + +#: db_operations.php:391 +#, php-format +msgid "Database %s has been dropped." +msgstr "A base de dados %s foi eliminada." + +#: db_operations.php:396 +#, fuzzy +msgid "Drop the database (DROP)" +msgstr "Sem bases de dados" + +#: db_operations.php:424 #, fuzzy msgid "Copy database to" msgstr "Sem bases de dados" -#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:431 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Somente estrutura" -#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:432 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Estrutura e dados" -#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:433 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Apenas dados" -#: db_operations.php:407 +#: db_operations.php:441 msgid "CREATE DATABASE before copying" msgstr "" -#: db_operations.php:410 libraries/export/sql.php:51 +#: db_operations.php:444 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 #: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "" -#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: db_operations.php:448 libraries/export/sql.php:77 tbl_operations.php:296 #: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Adicionar valor AUTO_INCREMENT" -#: db_operations.php:418 tbl_operations.php:542 +#: db_operations.php:452 tbl_operations.php:542 msgid "Add constraints" msgstr "Adicionar limitadores" -#: db_operations.php:431 +#: db_operations.php:465 #, fuzzy msgid "Switch to copied database" msgstr "Mudar para a tabela copiada" -#: db_operations.php:451 libraries/Index.class.php:447 +#: db_operations.php:485 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 #: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 #: server_collations.php:53 server_collations.php:65 server_databases.php:108 @@ -299,7 +314,7 @@ msgstr "Mudar para a tabela copiada" msgid "Collation" msgstr "Criação" -#: db_operations.php:464 pdf_schema.php:32 +#: db_operations.php:498 pdf_schema.php:32 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -311,7 +326,7 @@ msgstr "" "As Características adicionais para trabalhar com ligações entre Tabelas " "foram desactivadas. Para saber porquê carregue %saqui%s." -#: db_operations.php:497 +#: db_operations.php:531 msgid "Edit PDF Pages" msgstr "Editar páginas PDF" @@ -367,7 +382,7 @@ msgstr[0] "%s tabela(s)" msgstr[1] "%s tabela(s)" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -459,7 +474,7 @@ msgstr "Executa Comando SQL" #: db_search.php:50 libraries/auth/config.auth.lib.php:83 #: libraries/auth/config.auth.lib.php:102 -#: libraries/auth/cookie.auth.lib.php:640 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:182 msgid "Access denied" msgstr "Acesso Negado" @@ -502,7 +517,7 @@ msgid "Browse" msgstr "Visualiza" #: db_search.php:254 libraries/display_tbl.lib.php:1163 -#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:440 #: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 @@ -545,14 +560,14 @@ msgstr "Dentro de Tabela(s):" #: db_structure.php:79 db_structure.php:80 db_structure.php:92 #: db_structure.php:93 db_structure.php:105 db_structure.php:106 -#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:311 +#: libraries/sql_query_form.lib.php:314 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Insere" #: db_structure.php:81 db_structure.php:94 db_structure.php:107 #: libraries/common.lib.php:2832 libraries/common.lib.php:2839 -#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 +#: libraries/db_links.inc.php:48 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 @@ -565,8 +580,7 @@ msgstr "Estrutura" #: db_structure.php:96 db_structure.php:108 db_structure.php:109 #: db_structure.php:530 db_structure.php:531 db_tracking.php:86 #: libraries/Index.class.php:482 libraries/common.lib.php:1663 -#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 #: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 #: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" @@ -575,21 +589,21 @@ msgstr "Elimina" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 +#: libraries/mult_submits.inc.php:38 msgid "Empty" msgstr "Limpa" -#: db_structure.php:301 libraries/tbl_links.inc.php:98 +#: db_structure.php:301 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "A tabela %s foi limpa" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, fuzzy, php-format msgid "View %s has been dropped" msgstr "O campo %s foi eliminado" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "A tabela %s foi eliminada" @@ -680,7 +694,7 @@ msgstr "Reparar tabela" msgid "Analyze table" msgstr "Analizar tabela" -#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:56 #: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 #: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 #: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 @@ -1404,7 +1418,7 @@ msgid "Databases" msgstr "Base de Dados" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30 #: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 #: tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -1507,7 +1521,7 @@ msgid "Cannot connect: invalid settings." msgstr "" #: libraries/auth/config.auth.lib.php:91 -#: libraries/auth/cookie.auth.lib.php:205 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:206 libraries/auth/http.auth.lib.php:64 #: test/theme.php:151 #, php-format msgid "Welcome to %s" @@ -1532,56 +1546,56 @@ msgstr "" "inc.php e assegure-se que correspondem à informação fornecida pelo " "administrador do MySQL." -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:231 msgid "Log in" msgstr "Entrada" -#: libraries/auth/cookie.auth.lib.php:232 -#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:233 +#: libraries/auth/cookie.auth.lib.php:235 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:94 msgid "phpMyAdmin documentation" msgstr "Documentação do phpMyAdmin" -#: libraries/auth/cookie.auth.lib.php:244 #: libraries/auth/cookie.auth.lib.php:245 +#: libraries/auth/cookie.auth.lib.php:246 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:244 +#: libraries/auth/cookie.auth.lib.php:245 msgid "Server:" msgstr "Servidor" -#: libraries/auth/cookie.auth.lib.php:249 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Username:" msgstr "Utilizador :" -#: libraries/auth/cookie.auth.lib.php:253 +#: libraries/auth/cookie.auth.lib.php:254 msgid "Password:" msgstr "Palavra-passe :" -#: libraries/auth/cookie.auth.lib.php:260 +#: libraries/auth/cookie.auth.lib.php:261 msgid "Server Choice" msgstr "Escolha do Servidor" -#: libraries/auth/cookie.auth.lib.php:306 libraries/header.inc.php:58 +#: libraries/auth/cookie.auth.lib.php:307 libraries/header.inc.php:58 msgid "Cookies must be enabled past this point." msgstr "O mecanismo de \"Cookies\" tem de estar ligado a partir deste ponto." -#: libraries/auth/cookie.auth.lib.php:638 +#: libraries/auth/cookie.auth.lib.php:639 #: libraries/auth/signon.auth.lib.php:180 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" -#: libraries/auth/cookie.auth.lib.php:642 +#: libraries/auth/cookie.auth.lib.php:643 #: libraries/auth/signon.auth.lib.php:184 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" -#: libraries/auth/cookie.auth.lib.php:652 -#: libraries/auth/cookie.auth.lib.php:654 +#: libraries/auth/cookie.auth.lib.php:653 +#: libraries/auth/cookie.auth.lib.php:655 #: libraries/auth/signon.auth.lib.php:190 msgid "Cannot log in to the MySQL server" msgstr "Não é possível fazer login no servidor MySQL" @@ -1702,7 +1716,7 @@ msgstr "pt" #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 #: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 -#: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 +#: libraries/sql_query_form.lib.php:421 libraries/sql_query_form.lib.php:424 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" msgstr "Documentação" @@ -1843,19 +1857,19 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/common.lib.php:2833 libraries/common.lib.php:2840 -#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 +#: libraries/db_links.inc.php:53 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 #: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 -#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:86 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "Operações" -#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:265 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1872,37 +1886,32 @@ msgstr "Enviado" msgid "Name" msgstr "Nome" -#: libraries/db_links.inc.php:43 -#, php-format -msgid "Database %s has been dropped." -msgstr "A base de dados %s foi eliminada." - -#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 -#: libraries/db_links.inc.php:57 +#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43 +#: libraries/db_links.inc.php:44 msgid "Database seems to be empty!" msgstr "" -#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/db_links.inc.php:66 libraries/relation.lib.php:137 #: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:84 +#: libraries/db_links.inc.php:71 msgid "Query" msgstr "Pesquisa por formulário" -#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 +#: libraries/db_links.inc.php:76 libraries/relation.lib.php:133 msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:87 #: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 #, fuzzy msgid "Import" msgstr "Exportar" -#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:65 #: server_privileges.php:110 server_privileges.php:1718 #: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" @@ -2066,7 +2075,7 @@ msgid "remember template" msgstr "Lembrar-se do modelo" #: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 -#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 +#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:509 msgid "Character set of the file:" msgstr "Configurar o Mapa de Caracteres do ficheiro:" @@ -2119,7 +2128,7 @@ msgstr "" msgid "File to import" msgstr "" -#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:497 +#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:484 msgid "Location of the text file" msgstr "Localização do arquivo de texto" @@ -2127,12 +2136,12 @@ msgstr "Localização do arquivo de texto" msgid "File uploads are not allowed on this server." msgstr "" -#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 +#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:493 #: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "Não é possivel alcançar a directoria que configurou para fazer upload" -#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 +#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:496 #: tbl_change.php:925 msgid "web server upload directory" msgstr "Directoria no servidor web para fazer upload" @@ -3497,7 +3506,7 @@ msgid "" msgstr "" "Consulte a Documentação sobre como actualizar a Tabela Column_comments Table" -#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:403 msgid "Bookmarked SQL query" msgstr "Comandos SQL marcados" @@ -3562,7 +3571,7 @@ msgstr "" msgid "Slave status" msgstr "" -#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:428 +#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:415 #: server_status.php:736 server_variables.php:51 msgid "Variable" msgstr "Variável" @@ -3694,51 +3703,51 @@ msgstr "" msgid "Target database" msgstr "Pesquisar na Base de Dados" -#: libraries/sql_query_form.lib.php:219 +#: libraries/sql_query_form.lib.php:217 #, 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:236 libraries/sql_query_form.lib.php:261 +#: libraries/sql_query_form.lib.php:234 libraries/sql_query_form.lib.php:258 #, 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:307 +#: libraries/sql_query_form.lib.php:294 #, fuzzy #| msgid "Column names" msgid "Columns" msgstr "Nome dos Campos" -#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 +#: libraries/sql_query_form.lib.php:329 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "Marcar este comando SQL" -#: libraries/sql_query_form.lib.php:349 sql.php:669 +#: libraries/sql_query_form.lib.php:336 sql.php:669 msgid "Let every user access this bookmark" msgstr "Deixar todos os utilizadores acederem a este marcador" -#: libraries/sql_query_form.lib.php:355 +#: libraries/sql_query_form.lib.php:342 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/sql_query_form.lib.php:371 +#: libraries/sql_query_form.lib.php:358 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:378 +#: libraries/sql_query_form.lib.php:365 msgid "Delimiter" msgstr "" -#: libraries/sql_query_form.lib.php:386 +#: libraries/sql_query_form.lib.php:373 msgid " Show this query here again " msgstr " Mostrar de novo aqui este comando " -#: libraries/sql_query_form.lib.php:445 +#: libraries/sql_query_form.lib.php:432 msgid "Submit" msgstr "Submete" -#: libraries/sql_query_form.lib.php:449 +#: libraries/sql_query_form.lib.php:436 msgid "View only" msgstr "Ver apenas" @@ -3809,12 +3818,11 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" -#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 -#: libraries/tbl_links.inc.php:139 +#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107 msgid "Table seems to be empty!" msgstr "" -#: libraries/tbl_links.inc.php:147 +#: libraries/tbl_links.inc.php:115 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" @@ -7790,43 +7798,55 @@ msgstr "A tabela %s foi fechada" msgid "Flush the table (FLUSH)" msgstr "Fecha a tabela (\"FLUSH\")" -#: tbl_operations.php:648 +#: tbl_operations.php:642 +msgid "Table removal" +msgstr "" + +#: tbl_operations.php:657 +msgid "Empty the table (TRUNCATE)" +msgstr "" + +#: tbl_operations.php:675 +msgid "Drop the table (DROP)" +msgstr "" + +#: tbl_operations.php:696 #, fuzzy msgid "Partition maintenance" msgstr "Manutenção da tabela" -#: tbl_operations.php:656 +#: tbl_operations.php:704 #, php-format msgid "Partition %s" msgstr "" -#: tbl_operations.php:659 +#: tbl_operations.php:707 msgid "Analyze" msgstr "" -#: tbl_operations.php:660 +#: tbl_operations.php:708 #, fuzzy msgid "Check" msgstr "Checo" -#: tbl_operations.php:661 +#: tbl_operations.php:709 msgid "Optimize" msgstr "" -#: tbl_operations.php:662 +#: tbl_operations.php:710 msgid "Rebuild" msgstr "" -#: tbl_operations.php:663 +#: tbl_operations.php:711 #, fuzzy msgid "Repair" msgstr "Reparar tabela" -#: tbl_operations.php:675 +#: tbl_operations.php:723 msgid "Remove partitioning" msgstr "" -#: tbl_operations.php:701 +#: tbl_operations.php:749 msgid "Check referential integrity:" msgstr "Verificar Integridade referencial:" diff --git a/po/pt_BR.po b/po/pt_BR.po index b319ad1aa..f899d0ae7 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-26 17:18+0200\n" +"POT-Creation-Date: 2010-07-27 10:12+0200\n" "PO-Revision-Date: 2010-07-13 23:58+0200\n" "Last-Translator: William Bachion \n" "Language-Team: brazilian_portuguese \n" @@ -39,16 +39,16 @@ msgstr "" #: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 #: db_structure.php:89 db_structure.php:91 db_structure.php:102 #: db_structure.php:104 libraries/common.lib.php:2834 -#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Procurar" #: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 -#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_operations.php:468 db_operations.php:492 db_search.php:344 #: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 #: libraries/Theme_Manager.class.php:305 -#: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 +#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:712 #: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 @@ -56,8 +56,8 @@ msgstr "Procurar" #: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 #: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 -#: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: libraries/sql_query_form.lib.php:377 libraries/sql_query_form.lib.php:447 +#: libraries/sql_query_form.lib.php:512 libraries/tbl_properties.inc.php:780 #: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 #: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 #: server_privileges.php:663 server_privileges.php:1620 @@ -67,7 +67,7 @@ msgstr "Procurar" #: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 #: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 -#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_operations.php:726 tbl_select.php:323 tbl_structure.php:559 #: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 #: view_create.php:181 view_operations.php:99 msgid "Go" @@ -250,47 +250,63 @@ msgstr "Comando" msgid "and then" msgstr "e então" -#: db_operations.php:390 +#: db_operations.php:379 +#, fuzzy +#| msgid "Rename database to" +msgid "Remove database" +msgstr "Renomear Banco de Dados para" + +#: db_operations.php:391 +#, php-format +msgid "Database %s has been dropped." +msgstr "Banco de Dados %s foi eliminado." + +#: db_operations.php:396 +#, fuzzy +msgid "Drop the database (DROP)" +msgstr "Sem bases" + +#: db_operations.php:424 msgid "Copy database to" msgstr "Copiar Banco de Dados para" -#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:431 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Somente estrutura" -#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:432 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Estrutura e dados" -#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:433 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Dados apenas" -#: db_operations.php:407 +#: db_operations.php:441 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE antes de copiar" -#: db_operations.php:410 libraries/export/sql.php:51 +#: db_operations.php:444 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 #: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "Adicionar %s" -#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: db_operations.php:448 libraries/export/sql.php:77 tbl_operations.php:296 #: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Adicionar valor AUTO_INCREMENT" -#: db_operations.php:418 tbl_operations.php:542 +#: db_operations.php:452 tbl_operations.php:542 msgid "Add constraints" msgstr "Adicionar restrições" -#: db_operations.php:431 +#: db_operations.php:465 msgid "Switch to copied database" msgstr "Mudar para o Banco de Dados copiado" -#: db_operations.php:451 libraries/Index.class.php:447 +#: db_operations.php:485 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 #: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 #: server_collations.php:53 server_collations.php:65 server_databases.php:108 @@ -299,7 +315,7 @@ msgstr "Mudar para o Banco de Dados copiado" msgid "Collation" msgstr "Collation" -#: db_operations.php:464 pdf_schema.php:32 +#: db_operations.php:498 pdf_schema.php:32 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -311,7 +327,7 @@ msgstr "" "Os recursos adicionais para trabalhar com tabelas linkadas foram " "desativadas. Para descobrir o motivo clique %saqui%s." -#: db_operations.php:497 +#: db_operations.php:531 msgid "Edit PDF Pages" msgstr "Editar Páginas PDF" @@ -367,7 +383,7 @@ msgstr[0] "%s tabela(s)" msgstr[1] "%s tabela(s)" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -459,7 +475,7 @@ msgstr "Enviar consulta SQL" #: db_search.php:50 libraries/auth/config.auth.lib.php:83 #: libraries/auth/config.auth.lib.php:102 -#: libraries/auth/cookie.auth.lib.php:640 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:182 msgid "Access denied" msgstr "Acesso negado" @@ -502,7 +518,7 @@ msgid "Browse" msgstr "Visualizar" #: db_search.php:254 libraries/display_tbl.lib.php:1163 -#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:440 #: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 @@ -545,14 +561,14 @@ msgstr "Dentro do campo:" #: db_structure.php:79 db_structure.php:80 db_structure.php:92 #: db_structure.php:93 db_structure.php:105 db_structure.php:106 -#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:311 +#: libraries/sql_query_form.lib.php:314 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Inserir" #: db_structure.php:81 db_structure.php:94 db_structure.php:107 #: libraries/common.lib.php:2832 libraries/common.lib.php:2839 -#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 +#: libraries/db_links.inc.php:48 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 @@ -565,8 +581,7 @@ msgstr "Estrutura" #: db_structure.php:96 db_structure.php:108 db_structure.php:109 #: db_structure.php:530 db_structure.php:531 db_tracking.php:86 #: libraries/Index.class.php:482 libraries/common.lib.php:1663 -#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 #: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 #: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" @@ -575,21 +590,21 @@ msgstr "Eliminar" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 +#: libraries/mult_submits.inc.php:38 msgid "Empty" msgstr "Limpar" -#: db_structure.php:301 libraries/tbl_links.inc.php:98 +#: db_structure.php:301 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "Tabela %s foi esvaziada" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "View %s has been dropped" msgstr "Visão %s foi apagada" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "Tabela %s foi eliminada" @@ -679,7 +694,7 @@ msgstr "Reparar tabela" msgid "Analyze table" msgstr "Analizar tabela" -#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:56 #: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 #: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 #: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 @@ -1416,7 +1431,7 @@ msgid "Databases" msgstr "Banco de Dados" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30 #: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 #: tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -1524,7 +1539,7 @@ msgid "Cannot connect: invalid settings." msgstr "Não pode conectar: configurações inválidas." #: libraries/auth/config.auth.lib.php:91 -#: libraries/auth/cookie.auth.lib.php:205 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:206 libraries/auth/http.auth.lib.php:64 #: test/theme.php:151 #, php-format msgid "Welcome to %s" @@ -1551,56 +1566,56 @@ msgstr "" "certificar que correspondam com as informações fornecidas pelo administrador " "do servidor MySQL." -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:231 msgid "Log in" msgstr "Autenticação" -#: libraries/auth/cookie.auth.lib.php:232 -#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:233 +#: libraries/auth/cookie.auth.lib.php:235 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:94 msgid "phpMyAdmin documentation" msgstr "Documentação do phpMyAdmin " -#: libraries/auth/cookie.auth.lib.php:244 #: libraries/auth/cookie.auth.lib.php:245 +#: libraries/auth/cookie.auth.lib.php:246 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:244 +#: libraries/auth/cookie.auth.lib.php:245 msgid "Server:" msgstr "Servidor" -#: libraries/auth/cookie.auth.lib.php:249 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Username:" msgstr "Usuário:" -#: libraries/auth/cookie.auth.lib.php:253 +#: libraries/auth/cookie.auth.lib.php:254 msgid "Password:" msgstr "Senha:" -#: libraries/auth/cookie.auth.lib.php:260 +#: libraries/auth/cookie.auth.lib.php:261 msgid "Server Choice" msgstr "Seleção do Servidor" -#: libraries/auth/cookie.auth.lib.php:306 libraries/header.inc.php:58 +#: libraries/auth/cookie.auth.lib.php:307 libraries/header.inc.php:58 msgid "Cookies must be enabled past this point." msgstr "Cookies devem estar ativos após este ponto." -#: libraries/auth/cookie.auth.lib.php:638 +#: libraries/auth/cookie.auth.lib.php:639 #: libraries/auth/signon.auth.lib.php:180 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" -#: libraries/auth/cookie.auth.lib.php:642 +#: libraries/auth/cookie.auth.lib.php:643 #: libraries/auth/signon.auth.lib.php:184 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "Sem atividade por %s segundos ou mais, faça o login novamente" -#: libraries/auth/cookie.auth.lib.php:652 -#: libraries/auth/cookie.auth.lib.php:654 +#: libraries/auth/cookie.auth.lib.php:653 +#: libraries/auth/cookie.auth.lib.php:655 #: libraries/auth/signon.auth.lib.php:190 msgid "Cannot log in to the MySQL server" msgstr "Não foi possível se logar no servidor MySQL" @@ -1720,7 +1735,7 @@ msgstr "en" #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 #: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 -#: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 +#: libraries/sql_query_form.lib.php:421 libraries/sql_query_form.lib.php:424 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" msgstr "Documentação" @@ -1863,19 +1878,19 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "A funcionalidade %s é afetada por um bug conhecido, veja %s" #: libraries/common.lib.php:2833 libraries/common.lib.php:2840 -#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 +#: libraries/db_links.inc.php:53 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 #: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 -#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:86 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "Operações" -#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:265 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1891,36 +1906,31 @@ msgstr "Eventos" msgid "Name" msgstr "Nome" -#: libraries/db_links.inc.php:43 -#, php-format -msgid "Database %s has been dropped." -msgstr "Banco de Dados %s foi eliminado." - -#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 -#: libraries/db_links.inc.php:57 +#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43 +#: libraries/db_links.inc.php:44 msgid "Database seems to be empty!" msgstr "Banco de Dados parece estar vazio!" -#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/db_links.inc.php:66 libraries/relation.lib.php:137 #: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:84 +#: libraries/db_links.inc.php:71 msgid "Query" msgstr "Procurar por exemplo" -#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 +#: libraries/db_links.inc.php:76 libraries/relation.lib.php:133 msgid "Designer" msgstr "Designer" -#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:87 #: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importar" -#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:65 #: server_privileges.php:110 server_privileges.php:1718 #: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" @@ -2089,7 +2099,7 @@ msgid "remember template" msgstr "lembrar modelo" #: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 -#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 +#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:509 msgid "Character set of the file:" msgstr "Conjunto de caracteres do arquivo" @@ -2142,7 +2152,7 @@ msgstr "" msgid "File to import" msgstr "Arquivo para importar" -#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:497 +#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:484 msgid "Location of the text file" msgstr "Localização do arquivo texto" @@ -2150,13 +2160,13 @@ msgstr "Localização do arquivo texto" msgid "File uploads are not allowed on this server." msgstr "Não é permitido subir arquivos neste servidor." -#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 +#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:493 #: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "" "O diretório que você especificou para subir arquivos não foi encontrado." -#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 +#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:496 #: tbl_change.php:925 msgid "web server upload directory" msgstr "Servidor web subiu o diretório" @@ -3539,7 +3549,7 @@ msgid "" msgstr "" "Consulte a documentação sobre como atualizar sua tabela Column_comments" -#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:403 msgid "Bookmarked SQL query" msgstr "Consulta SQL gravada" @@ -3606,7 +3616,7 @@ msgstr "Exibir status dos escravos" msgid "Slave status" msgstr "Exibir status dos escravos" -#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:428 +#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:415 #: server_status.php:736 server_variables.php:51 msgid "Variable" msgstr "Variáveis" @@ -3735,51 +3745,51 @@ msgstr "" msgid "Target database" msgstr "Procurar no Banco de Dados" -#: libraries/sql_query_form.lib.php:219 +#: libraries/sql_query_form.lib.php:217 #, php-format msgid "Run SQL query/queries on server %s" msgstr "Rodar consulta(s) SQL no servidor %s" -#: libraries/sql_query_form.lib.php:236 libraries/sql_query_form.lib.php:261 +#: libraries/sql_query_form.lib.php:234 libraries/sql_query_form.lib.php:258 #, 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:307 +#: libraries/sql_query_form.lib.php:294 #, fuzzy #| msgid "Column names" msgid "Columns" msgstr "Nome das colunas" -#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 +#: libraries/sql_query_form.lib.php:329 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "Gravar essa consulta SQL" -#: libraries/sql_query_form.lib.php:349 sql.php:669 +#: libraries/sql_query_form.lib.php:336 sql.php:669 msgid "Let every user access this bookmark" msgstr "Deixar qualquer usuário acessar esse marcador" -#: libraries/sql_query_form.lib.php:355 +#: libraries/sql_query_form.lib.php:342 msgid "Replace existing bookmark of same name" msgstr "Substituir marcador de mesmo nome existente" -#: libraries/sql_query_form.lib.php:371 +#: libraries/sql_query_form.lib.php:358 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:378 +#: libraries/sql_query_form.lib.php:365 msgid "Delimiter" msgstr "Delimitadores" -#: libraries/sql_query_form.lib.php:386 +#: libraries/sql_query_form.lib.php:373 msgid " Show this query here again " msgstr " Mostrar esta consulta SQL novamente " -#: libraries/sql_query_form.lib.php:445 +#: libraries/sql_query_form.lib.php:432 msgid "Submit" msgstr "Submeter" -#: libraries/sql_query_form.lib.php:449 +#: libraries/sql_query_form.lib.php:436 msgid "View only" msgstr "Apenas visualizar" @@ -3851,12 +3861,11 @@ 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/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 -#: libraries/tbl_links.inc.php:139 +#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107 msgid "Table seems to be empty!" msgstr "Tabela para estar vazia!" -#: libraries/tbl_links.inc.php:147 +#: libraries/tbl_links.inc.php:115 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" @@ -8058,40 +8067,54 @@ msgstr "Tabela %s foi limpa" msgid "Flush the table (FLUSH)" msgstr "Limpar a tabela (\"LIMPAR\")" -#: tbl_operations.php:648 +#: tbl_operations.php:642 +#, fuzzy +#| msgid "Table name" +msgid "Table removal" +msgstr "Nome da Tabela" + +#: tbl_operations.php:657 +msgid "Empty the table (TRUNCATE)" +msgstr "" + +#: tbl_operations.php:675 +msgid "Drop the table (DROP)" +msgstr "" + +#: tbl_operations.php:696 msgid "Partition maintenance" msgstr "Manutenção da partição" -#: tbl_operations.php:656 +#: tbl_operations.php:704 #, php-format msgid "Partition %s" msgstr "Partição %s" -#: tbl_operations.php:659 +#: tbl_operations.php:707 msgid "Analyze" msgstr "Analizar" -#: tbl_operations.php:660 +#: tbl_operations.php:708 msgid "Check" msgstr "Checar" -#: tbl_operations.php:661 +#: tbl_operations.php:709 msgid "Optimize" msgstr "Otimizar" -#: tbl_operations.php:662 +#: tbl_operations.php:710 msgid "Rebuild" msgstr "Reconstruir" -#: tbl_operations.php:663 +#: tbl_operations.php:711 msgid "Repair" msgstr "Reparar" -#: tbl_operations.php:675 +#: tbl_operations.php:723 msgid "Remove partitioning" msgstr "Remover partição" -#: tbl_operations.php:701 +#: tbl_operations.php:749 msgid "Check referential integrity:" msgstr "Verificar integridade referencial:" diff --git a/po/ro.po b/po/ro.po index a275df29b..ca8b0fe3b 100644 --- a/po/ro.po +++ b/po/ro.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-26 17:18+0200\n" +"POT-Creation-Date: 2010-07-27 10:12+0200\n" "PO-Revision-Date: 2010-07-22 02:28+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: romanian \n" @@ -40,16 +40,16 @@ msgstr "" #: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 #: db_structure.php:89 db_structure.php:91 db_structure.php:102 #: db_structure.php:104 libraries/common.lib.php:2834 -#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Caută" #: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 -#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_operations.php:468 db_operations.php:492 db_search.php:344 #: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 #: libraries/Theme_Manager.class.php:305 -#: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 +#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:712 #: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 @@ -57,8 +57,8 @@ msgstr "Caută" #: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 #: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 -#: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: libraries/sql_query_form.lib.php:377 libraries/sql_query_form.lib.php:447 +#: libraries/sql_query_form.lib.php:512 libraries/tbl_properties.inc.php:780 #: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 #: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 #: server_privileges.php:663 server_privileges.php:1620 @@ -68,7 +68,7 @@ msgstr "Caută" #: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 #: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 -#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_operations.php:726 tbl_select.php:323 tbl_structure.php:559 #: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 #: view_create.php:181 view_operations.php:99 msgid "Go" @@ -251,47 +251,63 @@ msgstr "Comanda" msgid "and then" msgstr "și apoi" -#: db_operations.php:390 +#: db_operations.php:379 +#, fuzzy +#| msgid "Rename database to" +msgid "Remove database" +msgstr "Redenumire bază de date în" + +#: db_operations.php:391 +#, php-format +msgid "Database %s has been dropped." +msgstr "Baza de date %s a fost aruncată." + +#: db_operations.php:396 +#, fuzzy +msgid "Drop the database (DROP)" +msgstr "Nu sînt baze de date" + +#: db_operations.php:424 msgid "Copy database to" msgstr "Copiază baza de date" -#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:431 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Numai structura" -#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:432 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Structura și date" -#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:433 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Numai date" -#: db_operations.php:407 +#: db_operations.php:441 msgid "CREATE DATABASE before copying" msgstr "CREEAZĂ BAZA DE DATE înainte de copiere" -#: db_operations.php:410 libraries/export/sql.php:51 +#: db_operations.php:444 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 #: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "Adăugare %s" -#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: db_operations.php:448 libraries/export/sql.php:77 tbl_operations.php:296 #: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Adaugă valoare pentru AUTO_INCREMENT" -#: db_operations.php:418 tbl_operations.php:542 +#: db_operations.php:452 tbl_operations.php:542 msgid "Add constraints" msgstr "Adaugă constrângeri" -#: db_operations.php:431 +#: db_operations.php:465 msgid "Switch to copied database" msgstr "Schimbă la tabela copiată" -#: db_operations.php:451 libraries/Index.class.php:447 +#: db_operations.php:485 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 #: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 #: server_collations.php:53 server_collations.php:65 server_databases.php:108 @@ -300,7 +316,7 @@ msgstr "Schimbă la tabela copiată" msgid "Collation" msgstr "Interclasare" -#: db_operations.php:464 pdf_schema.php:32 +#: db_operations.php:498 pdf_schema.php:32 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -312,7 +328,7 @@ msgstr "" "Opțiunile adiționale pentru folosirea tabelelor intercalate au fost " "dezactivate. Pentru a afla de ce ... %shere%s." -#: db_operations.php:497 +#: db_operations.php:531 msgid "Edit PDF Pages" msgstr "Editează paginile PDF" @@ -369,7 +385,7 @@ msgstr[1] "%s tabele" msgstr[2] "%s tabele" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -461,7 +477,7 @@ msgstr "Trimite comanda" #: db_search.php:50 libraries/auth/config.auth.lib.php:83 #: libraries/auth/config.auth.lib.php:102 -#: libraries/auth/cookie.auth.lib.php:640 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:182 msgid "Access denied" msgstr "Acces interzis" @@ -505,7 +521,7 @@ msgid "Browse" msgstr "Navigare" #: db_search.php:254 libraries/display_tbl.lib.php:1163 -#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:440 #: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 @@ -549,14 +565,14 @@ msgstr "În cîmpul:" #: db_structure.php:79 db_structure.php:80 db_structure.php:92 #: db_structure.php:93 db_structure.php:105 db_structure.php:106 -#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:311 +#: libraries/sql_query_form.lib.php:314 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Inserare" #: db_structure.php:81 db_structure.php:94 db_structure.php:107 #: libraries/common.lib.php:2832 libraries/common.lib.php:2839 -#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 +#: libraries/db_links.inc.php:48 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 @@ -569,8 +585,7 @@ msgstr "Structură" #: db_structure.php:96 db_structure.php:108 db_structure.php:109 #: db_structure.php:530 db_structure.php:531 db_tracking.php:86 #: libraries/Index.class.php:482 libraries/common.lib.php:1663 -#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 #: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 #: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" @@ -579,21 +594,21 @@ msgstr "Aruncă" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 +#: libraries/mult_submits.inc.php:38 msgid "Empty" msgstr "Golește" -#: db_structure.php:301 libraries/tbl_links.inc.php:98 +#: db_structure.php:301 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "Tabelul %s a fost golit" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "View %s has been dropped" msgstr "Vizualizarea %s a fost eliminată" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "Tabelul %s a fost aruncat" @@ -684,7 +699,7 @@ msgstr "Reparare tabel" msgid "Analyze table" msgstr "Analizare tabel" -#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:56 #: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 #: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 #: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 @@ -1421,7 +1436,7 @@ msgid "Databases" msgstr "Baze de date" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30 #: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 #: tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -1532,7 +1547,7 @@ msgid "Cannot connect: invalid settings." msgstr "Conexiune esuata: setari invalide." #: libraries/auth/config.auth.lib.php:91 -#: libraries/auth/cookie.auth.lib.php:205 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:206 libraries/auth/http.auth.lib.php:64 #: test/theme.php:151 #, php-format msgid "Welcome to %s" @@ -1560,49 +1575,49 @@ msgstr "" "fișierul de configurare și asigurați-vă că ele corespund informațiilor " "furnizate de administratorul serverului MySQL." -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:231 msgid "Log in" msgstr "Autentificare" -#: libraries/auth/cookie.auth.lib.php:232 -#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:233 +#: libraries/auth/cookie.auth.lib.php:235 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:94 msgid "phpMyAdmin documentation" msgstr "Documentație phpMyAdmin" -#: libraries/auth/cookie.auth.lib.php:244 #: libraries/auth/cookie.auth.lib.php:245 +#: libraries/auth/cookie.auth.lib.php:246 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:244 +#: libraries/auth/cookie.auth.lib.php:245 msgid "Server:" msgstr "Server" -#: libraries/auth/cookie.auth.lib.php:249 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Username:" msgstr "Nume utilizator:" -#: libraries/auth/cookie.auth.lib.php:253 +#: libraries/auth/cookie.auth.lib.php:254 msgid "Password:" msgstr "Parolă:" -#: libraries/auth/cookie.auth.lib.php:260 +#: libraries/auth/cookie.auth.lib.php:261 msgid "Server Choice" msgstr "Alegerea serverului" -#: libraries/auth/cookie.auth.lib.php:306 libraries/header.inc.php:58 +#: libraries/auth/cookie.auth.lib.php:307 libraries/header.inc.php:58 msgid "Cookies must be enabled past this point." msgstr "Trebuie sa aveti activat \"cookies\"." -#: libraries/auth/cookie.auth.lib.php:638 +#: libraries/auth/cookie.auth.lib.php:639 #: libraries/auth/signon.auth.lib.php:180 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" -#: libraries/auth/cookie.auth.lib.php:642 +#: libraries/auth/cookie.auth.lib.php:643 #: libraries/auth/signon.auth.lib.php:184 #, php-format msgid "No activity within %s seconds; please log in again" @@ -1610,8 +1625,8 @@ msgstr "" "Nu ați avut activitate de mai mult de %s secunde, vă rugăm să vă " "autentificați din nou" -#: libraries/auth/cookie.auth.lib.php:652 -#: libraries/auth/cookie.auth.lib.php:654 +#: libraries/auth/cookie.auth.lib.php:653 +#: libraries/auth/cookie.auth.lib.php:655 #: libraries/auth/signon.auth.lib.php:190 msgid "Cannot log in to the MySQL server" msgstr "Nu pot face conexiunea catre serverul MySQL" @@ -1735,7 +1750,7 @@ msgstr "en" #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 #: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 -#: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 +#: libraries/sql_query_form.lib.php:421 libraries/sql_query_form.lib.php:424 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" msgstr "Documentație" @@ -1879,19 +1894,19 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "Funcționalitatea %s este afectată de o eroare cunoscută, vedeți %s" #: libraries/common.lib.php:2833 libraries/common.lib.php:2840 -#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 +#: libraries/db_links.inc.php:53 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 #: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 -#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:86 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "Operații" -#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:265 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1907,36 +1922,31 @@ msgstr "Evenimente" msgid "Name" msgstr "Nume" -#: libraries/db_links.inc.php:43 -#, php-format -msgid "Database %s has been dropped." -msgstr "Baza de date %s a fost aruncată." - -#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 -#: libraries/db_links.inc.php:57 +#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43 +#: libraries/db_links.inc.php:44 msgid "Database seems to be empty!" msgstr "Baza de date pare a fi goală!" -#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/db_links.inc.php:66 libraries/relation.lib.php:137 #: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:84 +#: libraries/db_links.inc.php:71 msgid "Query" msgstr "Interogare prin exemplu" -#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 +#: libraries/db_links.inc.php:76 libraries/relation.lib.php:133 msgid "Designer" msgstr "Designer" -#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:87 #: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importă" -#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:65 #: server_privileges.php:110 server_privileges.php:1718 #: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" @@ -2105,7 +2115,7 @@ msgid "remember template" msgstr "ține minte șablonul" #: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 -#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 +#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:509 msgid "Character set of the file:" msgstr "Setul de caractere al fișierului:" @@ -2158,7 +2168,7 @@ msgstr "" msgid "File to import" msgstr "Fișier de importat" -#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:497 +#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:484 msgid "Location of the text file" msgstr "Locația fișierului textual" @@ -2166,12 +2176,12 @@ msgstr "Locația fișierului textual" msgid "File uploads are not allowed on this server." msgstr "Încărcările de fișiere nu sînt permise pe acest server." -#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 +#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:493 #: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "Directorul stabilit pentru încărcare nu poate fi găsit" -#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 +#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:496 #: tbl_change.php:925 msgid "web server upload directory" msgstr "director de încărcare al serverului Web" @@ -3584,7 +3594,7 @@ msgid "" msgstr "" "Parcurgeti documentatia pentru modul de updatare a Column_comments Table" -#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:403 msgid "Bookmarked SQL query" msgstr "Comandă SQL salvată" @@ -3651,7 +3661,7 @@ msgstr "Afișează stare sclav" msgid "Slave status" msgstr "Afișează stare sclav" -#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:428 +#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:415 #: server_status.php:736 server_variables.php:51 msgid "Variable" msgstr "Variabil" @@ -3781,51 +3791,51 @@ msgstr "" msgid "Target database" msgstr "Caută în baza de date" -#: libraries/sql_query_form.lib.php:219 +#: libraries/sql_query_form.lib.php:217 #, 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:236 libraries/sql_query_form.lib.php:261 +#: libraries/sql_query_form.lib.php:234 libraries/sql_query_form.lib.php:258 #, 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:307 +#: libraries/sql_query_form.lib.php:294 #, fuzzy #| msgid "Column names" msgid "Columns" msgstr "Denumirile coloanelor" -#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 +#: libraries/sql_query_form.lib.php:329 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "Pune semn de carte la această comandă SQL" -#: libraries/sql_query_form.lib.php:349 sql.php:669 +#: libraries/sql_query_form.lib.php:336 sql.php:669 msgid "Let every user access this bookmark" msgstr "Permite tuturor utilizatorilor să acceseze acest semn de carte" -#: libraries/sql_query_form.lib.php:355 +#: libraries/sql_query_form.lib.php:342 msgid "Replace existing bookmark of same name" msgstr "Înlocuiește semnul de carte cu același nume" -#: libraries/sql_query_form.lib.php:371 +#: libraries/sql_query_form.lib.php:358 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:378 +#: libraries/sql_query_form.lib.php:365 msgid "Delimiter" msgstr "Delimitator" -#: libraries/sql_query_form.lib.php:386 +#: libraries/sql_query_form.lib.php:373 msgid " Show this query here again " msgstr " Afișează această comandă din nou aici " -#: libraries/sql_query_form.lib.php:445 +#: libraries/sql_query_form.lib.php:432 msgid "Submit" msgstr "Trimite" -#: libraries/sql_query_form.lib.php:449 +#: libraries/sql_query_form.lib.php:436 msgid "View only" msgstr "Numai vizualizare" @@ -3895,12 +3905,11 @@ 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/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 -#: libraries/tbl_links.inc.php:139 +#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107 msgid "Table seems to be empty!" msgstr "Tabelul pare a fi gol!" -#: libraries/tbl_links.inc.php:147 +#: libraries/tbl_links.inc.php:115 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" @@ -8097,40 +8106,54 @@ msgstr "Tabelul %s a fost curățat" msgid "Flush the table (FLUSH)" msgstr "Curățarea tabelului (\"FLUSH\")" -#: tbl_operations.php:648 +#: tbl_operations.php:642 +#, fuzzy +#| msgid "Table name" +msgid "Table removal" +msgstr "Denumire tabel" + +#: tbl_operations.php:657 +msgid "Empty the table (TRUNCATE)" +msgstr "" + +#: tbl_operations.php:675 +msgid "Drop the table (DROP)" +msgstr "" + +#: tbl_operations.php:696 msgid "Partition maintenance" msgstr "Întreținerea partiției" -#: tbl_operations.php:656 +#: tbl_operations.php:704 #, php-format msgid "Partition %s" msgstr "Partiția %s" -#: tbl_operations.php:659 +#: tbl_operations.php:707 msgid "Analyze" msgstr "Analizează" -#: tbl_operations.php:660 +#: tbl_operations.php:708 msgid "Check" msgstr "Verifică" -#: tbl_operations.php:661 +#: tbl_operations.php:709 msgid "Optimize" msgstr "Optimizează" -#: tbl_operations.php:662 +#: tbl_operations.php:710 msgid "Rebuild" msgstr "Reconstruiește" -#: tbl_operations.php:663 +#: tbl_operations.php:711 msgid "Repair" msgstr "Repară" -#: tbl_operations.php:675 +#: tbl_operations.php:723 msgid "Remove partitioning" msgstr "Elimină partiționarea" -#: tbl_operations.php:701 +#: tbl_operations.php:749 msgid "Check referential integrity:" msgstr "Verificarea integrității referinței:" diff --git a/po/ru.po b/po/ru.po index 7bdfafb8b..174137453 100644 --- a/po/ru.po +++ b/po/ru.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-26 17:18+0200\n" +"POT-Creation-Date: 2010-07-27 10:12+0200\n" "PO-Revision-Date: 2010-07-22 02:27+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: russian \n" @@ -40,16 +40,16 @@ msgstr "" #: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 #: db_structure.php:89 db_structure.php:91 db_structure.php:102 #: db_structure.php:104 libraries/common.lib.php:2834 -#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Поиск" #: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 -#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_operations.php:468 db_operations.php:492 db_search.php:344 #: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 #: libraries/Theme_Manager.class.php:305 -#: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 +#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:712 #: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 @@ -57,8 +57,8 @@ msgstr "Поиск" #: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 #: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 -#: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: libraries/sql_query_form.lib.php:377 libraries/sql_query_form.lib.php:447 +#: libraries/sql_query_form.lib.php:512 libraries/tbl_properties.inc.php:780 #: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 #: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 #: server_privileges.php:663 server_privileges.php:1620 @@ -68,7 +68,7 @@ msgstr "Поиск" #: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 #: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 -#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_operations.php:726 tbl_select.php:323 tbl_structure.php:559 #: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 #: view_create.php:181 view_operations.php:99 msgid "Go" @@ -251,47 +251,64 @@ msgstr "Команда" msgid "and then" msgstr "и затем" -#: db_operations.php:390 +#: db_operations.php:379 +#, fuzzy +#| msgid "Rename database to" +msgid "Remove database" +msgstr "Переименовать базу данных в" + +#: db_operations.php:391 +#, php-format +msgid "Database %s has been dropped." +msgstr "База данных %s была удалена." + +#: db_operations.php:396 +#, fuzzy +#| msgid "Go to database" +msgid "Drop the database (DROP)" +msgstr "Перейти к базе данных" + +#: db_operations.php:424 msgid "Copy database to" msgstr "Скопировать базу данных в" -#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:431 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Только структура" -#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:432 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Структура и данные" -#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:433 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Только данные" -#: db_operations.php:407 +#: db_operations.php:441 msgid "CREATE DATABASE before copying" msgstr "Перед копированием создать базу данных (CREATE DATABASE)" -#: db_operations.php:410 libraries/export/sql.php:51 +#: db_operations.php:444 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 #: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "Добавить %s" -#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: db_operations.php:448 libraries/export/sql.php:77 tbl_operations.php:296 #: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Добавить AUTO_INCREMENT" -#: db_operations.php:418 tbl_operations.php:542 +#: db_operations.php:452 tbl_operations.php:542 msgid "Add constraints" msgstr "Добавить ограничения" -#: db_operations.php:431 +#: db_operations.php:465 msgid "Switch to copied database" msgstr "Переключиться на скопированную базу данных" -#: db_operations.php:451 libraries/Index.class.php:447 +#: db_operations.php:485 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 #: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 #: server_collations.php:53 server_collations.php:65 server_databases.php:108 @@ -300,7 +317,7 @@ msgstr "Переключиться на скопированную базу да msgid "Collation" msgstr "Сравнение" -#: db_operations.php:464 pdf_schema.php:32 +#: db_operations.php:498 pdf_schema.php:32 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -312,7 +329,7 @@ msgstr "" "Дополнительные возможности для работы со связанными таблицами недоступны. " "Для определения причины нажмите %sздесь%s." -#: db_operations.php:497 +#: db_operations.php:531 msgid "Edit PDF Pages" msgstr "Редактирование PDF-страниц" @@ -369,7 +386,7 @@ msgstr[1] "Таблиц: %s" msgstr[2] "Таблиц: %s" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -462,7 +479,7 @@ msgstr "Выполнить запрос" #: db_search.php:50 libraries/auth/config.auth.lib.php:83 #: libraries/auth/config.auth.lib.php:102 -#: libraries/auth/cookie.auth.lib.php:640 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:182 msgid "Access denied" msgstr "В доступе отказано" @@ -506,7 +523,7 @@ msgid "Browse" msgstr "Обзор" #: db_search.php:254 libraries/display_tbl.lib.php:1163 -#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:440 #: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 @@ -550,14 +567,14 @@ msgstr "Внутри поля:" #: db_structure.php:79 db_structure.php:80 db_structure.php:92 #: db_structure.php:93 db_structure.php:105 db_structure.php:106 -#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:311 +#: libraries/sql_query_form.lib.php:314 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Вставить" #: db_structure.php:81 db_structure.php:94 db_structure.php:107 #: libraries/common.lib.php:2832 libraries/common.lib.php:2839 -#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 +#: libraries/db_links.inc.php:48 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 @@ -570,8 +587,7 @@ msgstr "Структура" #: db_structure.php:96 db_structure.php:108 db_structure.php:109 #: db_structure.php:530 db_structure.php:531 db_tracking.php:86 #: libraries/Index.class.php:482 libraries/common.lib.php:1663 -#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 #: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 #: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" @@ -580,21 +596,21 @@ msgstr "Удалить" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 +#: libraries/mult_submits.inc.php:38 msgid "Empty" msgstr "Очистить" -#: db_structure.php:301 libraries/tbl_links.inc.php:98 +#: db_structure.php:301 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "Таблица %s была очищена" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "View %s has been dropped" msgstr "Представление %s было удалено" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "Таблица %s была удалена" @@ -686,7 +702,7 @@ msgstr "Восстановить таблицу" msgid "Analyze table" msgstr "Анализ таблицы" -#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:56 #: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 #: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 #: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 @@ -1420,7 +1436,7 @@ msgid "Databases" msgstr "Базы данных" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30 #: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 #: tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -1527,7 +1543,7 @@ msgid "Cannot connect: invalid settings." msgstr "Соединение невозможно! Неверные настройки." #: libraries/auth/config.auth.lib.php:91 -#: libraries/auth/cookie.auth.lib.php:205 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:206 libraries/auth/http.auth.lib.php:64 #: test/theme.php:151 #, php-format msgid "Welcome to %s" @@ -1554,57 +1570,57 @@ msgstr "" "php и удостоверьтесь, что они соответствуют данным полученным от " "администратора сервера MySQL." -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:231 msgid "Log in" msgstr "Авторизация" -#: libraries/auth/cookie.auth.lib.php:232 -#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:233 +#: libraries/auth/cookie.auth.lib.php:235 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:94 msgid "phpMyAdmin documentation" msgstr "Документация phpMyAdmin" -#: libraries/auth/cookie.auth.lib.php:244 #: libraries/auth/cookie.auth.lib.php:245 +#: libraries/auth/cookie.auth.lib.php:246 msgid "You can enter hostname/IP address and port separated by space." msgstr "Вы можете ввести хост/IP адрес и порт разделенные пробелом." -#: libraries/auth/cookie.auth.lib.php:244 +#: libraries/auth/cookie.auth.lib.php:245 msgid "Server:" msgstr "Сервер" -#: libraries/auth/cookie.auth.lib.php:249 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Username:" msgstr "Пользователь:" -#: libraries/auth/cookie.auth.lib.php:253 +#: libraries/auth/cookie.auth.lib.php:254 msgid "Password:" msgstr "Пароль:" -#: libraries/auth/cookie.auth.lib.php:260 +#: libraries/auth/cookie.auth.lib.php:261 msgid "Server Choice" msgstr "Выбор сервера" -#: libraries/auth/cookie.auth.lib.php:306 libraries/header.inc.php:58 +#: libraries/auth/cookie.auth.lib.php:307 libraries/header.inc.php:58 msgid "Cookies must be enabled past this point." msgstr "Для полноценной работы необходима поддержка cookies браузером." -#: libraries/auth/cookie.auth.lib.php:638 +#: libraries/auth/cookie.auth.lib.php:639 #: libraries/auth/signon.auth.lib.php:180 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "Вход без пароля запрещен при конфигурации (смотрите AllowNoPassword)" -#: libraries/auth/cookie.auth.lib.php:642 +#: libraries/auth/cookie.auth.lib.php:643 #: libraries/auth/signon.auth.lib.php:184 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" "Отсутствие активности более %s секунд, пожалуйста, авторизуйтесь заново" -#: libraries/auth/cookie.auth.lib.php:652 -#: libraries/auth/cookie.auth.lib.php:654 +#: libraries/auth/cookie.auth.lib.php:653 +#: libraries/auth/cookie.auth.lib.php:655 #: libraries/auth/signon.auth.lib.php:190 msgid "Cannot log in to the MySQL server" msgstr "Невозможно подключиться к серверу MySQL" @@ -1728,7 +1744,7 @@ msgstr "en" #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 #: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 -#: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 +#: libraries/sql_query_form.lib.php:421 libraries/sql_query_form.lib.php:424 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" msgstr "Документация" @@ -1874,19 +1890,19 @@ msgstr "" "Работа параметра "%s" подвержена ошибке, описание смотрите на %s" #: libraries/common.lib.php:2833 libraries/common.lib.php:2840 -#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 +#: libraries/db_links.inc.php:53 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 #: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 -#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:86 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "Операции" -#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:265 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1902,36 +1918,31 @@ msgstr "События" msgid "Name" msgstr "Имя" -#: libraries/db_links.inc.php:43 -#, php-format -msgid "Database %s has been dropped." -msgstr "База данных %s была удалена." - -#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 -#: libraries/db_links.inc.php:57 +#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43 +#: libraries/db_links.inc.php:44 msgid "Database seems to be empty!" msgstr "База данных - пуста!" -#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/db_links.inc.php:66 libraries/relation.lib.php:137 #: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "Слежение" -#: libraries/db_links.inc.php:84 +#: libraries/db_links.inc.php:71 msgid "Query" msgstr "Запрос по шаблону" -#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 +#: libraries/db_links.inc.php:76 libraries/relation.lib.php:133 msgid "Designer" msgstr "Дизайнер" -#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:87 #: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Импорт" -#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:65 #: server_privileges.php:110 server_privileges.php:1718 #: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" @@ -2103,7 +2114,7 @@ msgid "remember template" msgstr "запомнить шаблон" #: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 -#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 +#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:509 msgid "Character set of the file:" msgstr "Кодировка файла:" @@ -2159,7 +2170,7 @@ msgstr "Пожалуйста, подождите, файл был загруже msgid "File to import" msgstr "Импортируемый файл" -#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:497 +#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:484 msgid "Location of the text file" msgstr "Выбор файла" @@ -2167,12 +2178,12 @@ msgstr "Выбор файла" msgid "File uploads are not allowed on this server." msgstr "Загрузка файлов на сервер, невозможна." -#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 +#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:493 #: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "Установленный каталог загрузки не доступен" -#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 +#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:496 #: tbl_change.php:925 msgid "web server upload directory" msgstr "Из каталога загрузки" @@ -3587,7 +3598,7 @@ msgid "" msgstr "" "Необходимо обновить таблицу column_comments. Детали смотрите в документации." -#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:403 msgid "Bookmarked SQL query" msgstr "Созданные закладки" @@ -3654,7 +3665,7 @@ msgstr "Статус Master" msgid "Slave status" msgstr "Статус Slave" -#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:428 +#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:415 #: server_status.php:736 server_variables.php:51 msgid "Variable" msgstr "Переменная" @@ -3785,51 +3796,51 @@ msgstr "Различие" msgid "Target database" msgstr "Целевая база данных" -#: libraries/sql_query_form.lib.php:219 +#: libraries/sql_query_form.lib.php:217 #, php-format msgid "Run SQL query/queries on server %s" msgstr "Выполнить SQL-запрос(ы) на сервере %s" -#: libraries/sql_query_form.lib.php:236 libraries/sql_query_form.lib.php:261 +#: libraries/sql_query_form.lib.php:234 libraries/sql_query_form.lib.php:258 #, php-format msgid "Run SQL query/queries on database %s" msgstr "Выполнить SQL-запрос(ы) к базе данных %s" -#: libraries/sql_query_form.lib.php:307 +#: libraries/sql_query_form.lib.php:294 #, fuzzy #| msgid "Column names" msgid "Columns" msgstr "Названия столбцов" -#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 +#: libraries/sql_query_form.lib.php:329 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "Создание закладки" -#: libraries/sql_query_form.lib.php:349 sql.php:669 +#: libraries/sql_query_form.lib.php:336 sql.php:669 msgid "Let every user access this bookmark" msgstr "Доступна для всех пользователей" -#: libraries/sql_query_form.lib.php:355 +#: libraries/sql_query_form.lib.php:342 msgid "Replace existing bookmark of same name" msgstr "Заменить существующую с таким же именем" -#: libraries/sql_query_form.lib.php:371 +#: libraries/sql_query_form.lib.php:358 msgid "Do not overwrite this query from outside the window" msgstr "Заблокировать содержимое окна запросов" -#: libraries/sql_query_form.lib.php:378 +#: libraries/sql_query_form.lib.php:365 msgid "Delimiter" msgstr "Разделитель" -#: libraries/sql_query_form.lib.php:386 +#: libraries/sql_query_form.lib.php:373 msgid " Show this query here again " msgstr "Показать данный запрос снова" -#: libraries/sql_query_form.lib.php:445 +#: libraries/sql_query_form.lib.php:432 msgid "Submit" msgstr "Выполнить" -#: libraries/sql_query_form.lib.php:449 +#: libraries/sql_query_form.lib.php:436 msgid "View only" msgstr "Просмотр" @@ -3900,12 +3911,11 @@ msgstr "" "Проверка синтаксиса SQL не осуществима. Проверьте, установлены ли " "необходимые модули расширений для PHP, описанные в %sдокументации%s." -#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 -#: libraries/tbl_links.inc.php:139 +#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107 msgid "Table seems to be empty!" msgstr "Таблица - пуста!" -#: libraries/tbl_links.inc.php:147 +#: libraries/tbl_links.inc.php:115 #, php-format msgid "Tracking of %s.%s is activated." msgstr "Слежение за %s.%s включено." @@ -8372,40 +8382,54 @@ msgstr "Обновлен кеш таблицы %s" msgid "Flush the table (FLUSH)" msgstr "Обновить кеш таблицы ("FLUSH")" -#: tbl_operations.php:648 +#: tbl_operations.php:642 +#, fuzzy +#| msgid "Table name" +msgid "Table removal" +msgstr "Имя таблицы" + +#: tbl_operations.php:657 +msgid "Empty the table (TRUNCATE)" +msgstr "" + +#: tbl_operations.php:675 +msgid "Drop the table (DROP)" +msgstr "" + +#: tbl_operations.php:696 msgid "Partition maintenance" msgstr "Обслуживание разделов" -#: tbl_operations.php:656 +#: tbl_operations.php:704 #, php-format msgid "Partition %s" msgstr "Раздел %s" -#: tbl_operations.php:659 +#: tbl_operations.php:707 msgid "Analyze" msgstr "Анализ" -#: tbl_operations.php:660 +#: tbl_operations.php:708 msgid "Check" msgstr "Проверка" -#: tbl_operations.php:661 +#: tbl_operations.php:709 msgid "Optimize" msgstr "Оптимизация" -#: tbl_operations.php:662 +#: tbl_operations.php:710 msgid "Rebuild" msgstr "Перестройка" -#: tbl_operations.php:663 +#: tbl_operations.php:711 msgid "Repair" msgstr "Исправление" -#: tbl_operations.php:675 +#: tbl_operations.php:723 msgid "Remove partitioning" msgstr "Удалить разделение" -#: tbl_operations.php:701 +#: tbl_operations.php:749 msgid "Check referential integrity:" msgstr "Проверить целостность данных:" diff --git a/po/si.po b/po/si.po index 4268eba6c..157bca6f5 100644 --- a/po/si.po +++ b/po/si.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-26 17:18+0200\n" +"POT-Creation-Date: 2010-07-27 10:12+0200\n" "PO-Revision-Date: 2010-07-22 02:26+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: sinhala \n" @@ -39,16 +39,16 @@ msgstr "" #: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 #: db_structure.php:89 db_structure.php:91 db_structure.php:102 #: db_structure.php:104 libraries/common.lib.php:2834 -#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "සෙවීම" #: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 -#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_operations.php:468 db_operations.php:492 db_search.php:344 #: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 #: libraries/Theme_Manager.class.php:305 -#: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 +#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:712 #: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 @@ -56,8 +56,8 @@ msgstr "සෙවීම" #: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 #: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 -#: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: libraries/sql_query_form.lib.php:377 libraries/sql_query_form.lib.php:447 +#: libraries/sql_query_form.lib.php:512 libraries/tbl_properties.inc.php:780 #: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 #: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 #: server_privileges.php:663 server_privileges.php:1620 @@ -67,7 +67,7 @@ msgstr "සෙවීම" #: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 #: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 -#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_operations.php:726 tbl_select.php:323 tbl_structure.php:559 #: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 #: view_create.php:181 view_operations.php:99 msgid "Go" @@ -248,47 +248,63 @@ msgstr "විධානය" msgid "and then" msgstr "සහ එවිට" -#: db_operations.php:390 +#: db_operations.php:379 +#, fuzzy +#| msgid "Rename database to" +msgid "Remove database" +msgstr "බවට දත්තගබඩාවේ නම වෙනස් කරන්න" + +#: db_operations.php:391 +#, php-format +msgid "Database %s has been dropped." +msgstr "%s දත්තගබඩාව හලන ලදි." + +#: db_operations.php:396 +#, fuzzy +msgid "Drop the database (DROP)" +msgstr "දත්තගබඩා නොමැත" + +#: db_operations.php:424 msgid "Copy database to" msgstr "වෙත දත්තගබඩාව පිටවත් කරන්න" -#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:431 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Structure only" -#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:432 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "සැකිල්ල සහ දත්ත" -#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:433 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "දත්ත පමණයි" -#: db_operations.php:407 +#: db_operations.php:441 msgid "CREATE DATABASE before copying" msgstr "පිටපත් කිරීමට ප්‍රථම දත්තගබඩාවක් සාදන්න" -#: db_operations.php:410 libraries/export/sql.php:51 +#: db_operations.php:444 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 #: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "%s එක් කරන්න" -#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: db_operations.php:448 libraries/export/sql.php:77 tbl_operations.php:296 #: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT අගයක් එක් කරන්න" -#: db_operations.php:418 tbl_operations.php:542 +#: db_operations.php:452 tbl_operations.php:542 msgid "Add constraints" msgstr "සීමා බාධවන් එක් කරන්න" -#: db_operations.php:431 +#: db_operations.php:465 msgid "Switch to copied database" msgstr "Switch to copied database" -#: db_operations.php:451 libraries/Index.class.php:447 +#: db_operations.php:485 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 #: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 #: server_collations.php:53 server_collations.php:65 server_databases.php:108 @@ -297,7 +313,7 @@ msgstr "Switch to copied database" msgid "Collation" msgstr "Collation" -#: db_operations.php:464 pdf_schema.php:32 +#: db_operations.php:498 pdf_schema.php:32 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -309,7 +325,7 @@ msgstr "" "The additional features for working with linked tables have been " "deactivated. To find out why click %shere%s." -#: db_operations.php:497 +#: db_operations.php:531 msgid "Edit PDF Pages" msgstr "PDF පිටු සංස්කරණය කරන්න" @@ -365,7 +381,7 @@ msgstr[0] "%s table(s)" msgstr[1] "%s table(s)" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -457,7 +473,7 @@ msgstr "විමසුම ඉදිරිපත් කරන්න" #: db_search.php:50 libraries/auth/config.auth.lib.php:83 #: libraries/auth/config.auth.lib.php:102 -#: libraries/auth/cookie.auth.lib.php:640 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:182 msgid "Access denied" msgstr "පිවිසුම වලක්වා ඇත" @@ -500,7 +516,7 @@ msgid "Browse" msgstr "බ්‍රවුස් කරන්න" #: db_search.php:254 libraries/display_tbl.lib.php:1163 -#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:440 #: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 @@ -543,14 +559,14 @@ msgstr "වගු(ව) තුල:" #: db_structure.php:79 db_structure.php:80 db_structure.php:92 #: db_structure.php:93 db_structure.php:105 db_structure.php:106 -#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:311 +#: libraries/sql_query_form.lib.php:314 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "ඇතුල් කරන්න" #: db_structure.php:81 db_structure.php:94 db_structure.php:107 #: libraries/common.lib.php:2832 libraries/common.lib.php:2839 -#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 +#: libraries/db_links.inc.php:48 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 @@ -563,8 +579,7 @@ msgstr "සැකිල්ල" #: db_structure.php:96 db_structure.php:108 db_structure.php:109 #: db_structure.php:530 db_structure.php:531 db_tracking.php:86 #: libraries/Index.class.php:482 libraries/common.lib.php:1663 -#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 #: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 #: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" @@ -573,21 +588,21 @@ msgstr "හලන්න" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 +#: libraries/mult_submits.inc.php:38 msgid "Empty" msgstr "හිස්" -#: db_structure.php:301 libraries/tbl_links.inc.php:98 +#: db_structure.php:301 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "%s වගුව හිස් කරන ලදි" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "View %s has been dropped" msgstr "View %s has been dropped" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "%s වගුව හලන ලදි" @@ -677,7 +692,7 @@ msgstr "වගුව ප්‍රතිසංස්කරණය කරන්න" msgid "Analyze table" msgstr "වගුව විශ්ලේෂණය කරන්න" -#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:56 #: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 #: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 #: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 @@ -1408,7 +1423,7 @@ msgid "Databases" msgstr "දත්තගබඩා" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30 #: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 #: tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -1514,7 +1529,7 @@ msgid "Cannot connect: invalid settings." msgstr "සම්බන්ධ විය නොහැක : වලංගු නොවන සැකසුමකි." #: libraries/auth/config.auth.lib.php:91 -#: libraries/auth/cookie.auth.lib.php:205 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:206 libraries/auth/http.auth.lib.php:64 #: test/theme.php:151 #, php-format msgid "Welcome to %s" @@ -1541,56 +1556,56 @@ msgstr "" "configuration and make sure that they correspond to the information given by " "the administrator of the MySQL server." -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:231 msgid "Log in" msgstr "ලොගින් වන්න" -#: libraries/auth/cookie.auth.lib.php:232 -#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:233 +#: libraries/auth/cookie.auth.lib.php:235 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:94 msgid "phpMyAdmin documentation" msgstr "phpMyAdmin ලියකියවිලි" -#: libraries/auth/cookie.auth.lib.php:244 #: libraries/auth/cookie.auth.lib.php:245 +#: libraries/auth/cookie.auth.lib.php:246 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:244 +#: libraries/auth/cookie.auth.lib.php:245 msgid "Server:" msgstr "සර්වරය" -#: libraries/auth/cookie.auth.lib.php:249 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Username:" msgstr "භාවිත නාමය:" -#: libraries/auth/cookie.auth.lib.php:253 +#: libraries/auth/cookie.auth.lib.php:254 msgid "Password:" msgstr "මුරපදය:" -#: libraries/auth/cookie.auth.lib.php:260 +#: libraries/auth/cookie.auth.lib.php:261 msgid "Server Choice" msgstr "සර්වරයේ තේරීම" -#: libraries/auth/cookie.auth.lib.php:306 libraries/header.inc.php:58 +#: libraries/auth/cookie.auth.lib.php:307 libraries/header.inc.php:58 msgid "Cookies must be enabled past this point." msgstr "මෙම ස්ථානය පසු කිරීම සඳහා කුකීස් - Cookies සක්‍රිය කල යුතුයි." -#: libraries/auth/cookie.auth.lib.php:638 +#: libraries/auth/cookie.auth.lib.php:639 #: libraries/auth/signon.auth.lib.php:180 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" -#: libraries/auth/cookie.auth.lib.php:642 +#: libraries/auth/cookie.auth.lib.php:643 #: libraries/auth/signon.auth.lib.php:184 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "No activity within %s seconds; please log in again" -#: libraries/auth/cookie.auth.lib.php:652 -#: libraries/auth/cookie.auth.lib.php:654 +#: libraries/auth/cookie.auth.lib.php:653 +#: libraries/auth/cookie.auth.lib.php:655 #: libraries/auth/signon.auth.lib.php:190 msgid "Cannot log in to the MySQL server" msgstr "MySQL සර්වරයට ලොග් විය නොහැක" @@ -1711,7 +1726,7 @@ msgstr "en" #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 #: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 -#: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 +#: libraries/sql_query_form.lib.php:421 libraries/sql_query_form.lib.php:424 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" msgstr "ලියකියවිලි" @@ -1854,19 +1869,19 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/common.lib.php:2833 libraries/common.lib.php:2840 -#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 +#: libraries/db_links.inc.php:53 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 #: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 -#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:86 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "මෙහෙයුම්" -#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:265 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1883,36 +1898,31 @@ msgstr "යවන ලද" msgid "Name" msgstr "නම" -#: libraries/db_links.inc.php:43 -#, php-format -msgid "Database %s has been dropped." -msgstr "%s දත්තගබඩාව හලන ලදි." - -#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 -#: libraries/db_links.inc.php:57 +#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43 +#: libraries/db_links.inc.php:44 msgid "Database seems to be empty!" msgstr "" -#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/db_links.inc.php:66 libraries/relation.lib.php:137 #: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:84 +#: libraries/db_links.inc.php:71 msgid "Query" msgstr "විමසුම" -#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 +#: libraries/db_links.inc.php:76 libraries/relation.lib.php:133 msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:87 #: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "ආනයනය" -#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:65 #: server_privileges.php:110 server_privileges.php:1718 #: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" @@ -2079,7 +2089,7 @@ msgid "remember template" msgstr "ටෙම්ප්ලේටය මතක තබා ගන්න" #: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 -#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 +#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:509 msgid "Character set of the file:" msgstr "ගොනුවේ අක්ෂර කට්ටලය:" @@ -2132,7 +2142,7 @@ msgstr "" msgid "File to import" msgstr "ආනයනය සඳහා වූ ගොනුව" -#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:497 +#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:484 msgid "Location of the text file" msgstr "පාඨ ගොනුවෙහි පිහිටුම" @@ -2140,12 +2150,12 @@ msgstr "පාඨ ගොනුවෙහි පිහිටුම" msgid "File uploads are not allowed on this server." msgstr "File uploads are not allowed on this server." -#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 +#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:493 #: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "අප්ලෝඩ් කිරීම් සඳහා සැකසූ ඩිරෙක්ටරිය වෙත පිවිසිය නොහැක" -#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 +#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:496 #: tbl_change.php:925 msgid "web server upload directory" msgstr "අන්තර්ජාල සර්වරයේ අප්ලෝඩ් ඩිරෙක්ටරිය" @@ -3527,7 +3537,7 @@ msgid "" msgstr "" "Please see the documentation on how to update your column_comments table" -#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:403 msgid "Bookmarked SQL query" msgstr "පොත් සලකුණු කරන ලද SQL විමසුම" @@ -3594,7 +3604,7 @@ msgstr "උපතත්වයන් පෙන්වන්න" msgid "Slave status" msgstr "උපතත්වයන් පෙන්වන්න" -#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:428 +#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:415 #: server_status.php:736 server_variables.php:51 msgid "Variable" msgstr "Variable" @@ -3723,51 +3733,51 @@ msgstr "" msgid "Target database" msgstr "දත්තගබඩාවේ සොයන්න" -#: libraries/sql_query_form.lib.php:219 +#: libraries/sql_query_form.lib.php:217 #, php-format msgid "Run SQL query/queries on server %s" msgstr "Run SQL query/queries on server %s" -#: libraries/sql_query_form.lib.php:236 libraries/sql_query_form.lib.php:261 +#: libraries/sql_query_form.lib.php:234 libraries/sql_query_form.lib.php:258 #, php-format msgid "Run SQL query/queries on database %s" msgstr "Run SQL query/queries on database %s" -#: libraries/sql_query_form.lib.php:307 +#: libraries/sql_query_form.lib.php:294 #, fuzzy #| msgid "Column names" msgid "Columns" msgstr "තීර නම්" -#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 +#: libraries/sql_query_form.lib.php:329 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "මෙම SQL විමසුම පොත් සලකුණුගත කරන්න" -#: libraries/sql_query_form.lib.php:349 sql.php:669 +#: libraries/sql_query_form.lib.php:336 sql.php:669 msgid "Let every user access this bookmark" msgstr "සියලු භාවිතා කරන්නනට මෙම පොත් සලකුණට පිවිසීමට ඉඩ දෙන්න" -#: libraries/sql_query_form.lib.php:355 +#: libraries/sql_query_form.lib.php:342 msgid "Replace existing bookmark of same name" msgstr "එකම නම ඇති පොත් සලකුණ ප්‍රතිස්ථාපනය කරන්න" -#: libraries/sql_query_form.lib.php:371 +#: libraries/sql_query_form.lib.php:358 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:378 +#: libraries/sql_query_form.lib.php:365 msgid "Delimiter" msgstr "පරිසීමකය" -#: libraries/sql_query_form.lib.php:386 +#: libraries/sql_query_form.lib.php:373 msgid " Show this query here again " msgstr "මෙම විමසුම මෙහි නැවත පෙන්වන්න " -#: libraries/sql_query_form.lib.php:445 +#: libraries/sql_query_form.lib.php:432 msgid "Submit" msgstr "ඉදිරිපත් කරන්න" -#: libraries/sql_query_form.lib.php:449 +#: libraries/sql_query_form.lib.php:436 msgid "View only" msgstr "දර්ශනය කිරීම පමණි" @@ -3838,12 +3848,11 @@ 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/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 -#: libraries/tbl_links.inc.php:139 +#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107 msgid "Table seems to be empty!" msgstr "" -#: libraries/tbl_links.inc.php:147 +#: libraries/tbl_links.inc.php:115 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" @@ -7998,43 +8007,56 @@ msgstr "Table %s has been flushed" msgid "Flush the table (FLUSH)" msgstr "Flush the table (\"FLUSH\")" -#: tbl_operations.php:648 +#: tbl_operations.php:642 +#, fuzzy +msgid "Table removal" +msgstr "වගුවේ නම" + +#: tbl_operations.php:657 +msgid "Empty the table (TRUNCATE)" +msgstr "" + +#: tbl_operations.php:675 +msgid "Drop the table (DROP)" +msgstr "" + +#: tbl_operations.php:696 #, fuzzy msgid "Partition maintenance" msgstr "වගු නඩත්තුව" -#: tbl_operations.php:656 +#: tbl_operations.php:704 #, php-format msgid "Partition %s" msgstr "" -#: tbl_operations.php:659 +#: tbl_operations.php:707 msgid "Analyze" msgstr "" -#: tbl_operations.php:660 +#: tbl_operations.php:708 #, fuzzy msgid "Check" msgstr "චෙකොස්ලෝවැකියානු" -#: tbl_operations.php:661 +#: tbl_operations.php:709 msgid "Optimize" msgstr "" -#: tbl_operations.php:662 +#: tbl_operations.php:710 msgid "Rebuild" msgstr "" -#: tbl_operations.php:663 +#: tbl_operations.php:711 #, fuzzy msgid "Repair" msgstr "වගුව ප්‍රතිසංස්කරණය කරන්න" -#: tbl_operations.php:675 +#: tbl_operations.php:723 msgid "Remove partitioning" msgstr "" -#: tbl_operations.php:701 +#: tbl_operations.php:749 msgid "Check referential integrity:" msgstr "Check referential integrity:" diff --git a/po/sk.po b/po/sk.po index 12031e6ab..f0dc854c0 100644 --- a/po/sk.po +++ b/po/sk.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-26 17:18+0200\n" +"POT-Creation-Date: 2010-07-27 10:12+0200\n" "PO-Revision-Date: 2010-07-22 02:26+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: slovak \n" @@ -39,16 +39,16 @@ msgstr "" #: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 #: db_structure.php:89 db_structure.php:91 db_structure.php:102 #: db_structure.php:104 libraries/common.lib.php:2834 -#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Hľadať" #: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 -#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_operations.php:468 db_operations.php:492 db_search.php:344 #: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 #: libraries/Theme_Manager.class.php:305 -#: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 +#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:712 #: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 @@ -56,8 +56,8 @@ msgstr "Hľadať" #: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 #: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 -#: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: libraries/sql_query_form.lib.php:377 libraries/sql_query_form.lib.php:447 +#: libraries/sql_query_form.lib.php:512 libraries/tbl_properties.inc.php:780 #: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 #: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 #: server_privileges.php:663 server_privileges.php:1620 @@ -67,7 +67,7 @@ msgstr "Hľadať" #: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 #: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 -#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_operations.php:726 tbl_select.php:323 tbl_structure.php:559 #: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 #: view_create.php:181 view_operations.php:99 msgid "Go" @@ -248,47 +248,64 @@ msgstr "Príkaz" msgid "and then" msgstr "a potom" -#: db_operations.php:390 +#: db_operations.php:379 +#, fuzzy +#| msgid "Rename database to" +msgid "Remove database" +msgstr "Premenovať databázu na" + +#: db_operations.php:391 +#, php-format +msgid "Database %s has been dropped." +msgstr "Databáza %s bola zmazaná." + +#: db_operations.php:396 +#, fuzzy +#| msgid "Go to database" +msgid "Drop the database (DROP)" +msgstr "Prejsť do databázy" + +#: db_operations.php:424 msgid "Copy database to" msgstr "Skopírovať databázu na" -#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:431 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Iba štruktúru" -#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:432 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Štruktúru a dáta" -#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:433 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Iba dáta" -#: db_operations.php:407 +#: db_operations.php:441 msgid "CREATE DATABASE before copying" msgstr "Vytvoriť databázu (CREATE DATABASE) pred kopírovaním" -#: db_operations.php:410 libraries/export/sql.php:51 +#: db_operations.php:444 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 #: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "Pridať %s" -#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: db_operations.php:448 libraries/export/sql.php:77 tbl_operations.php:296 #: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Pridať hodnotu AUTO_INCREMENT" -#: db_operations.php:418 tbl_operations.php:542 +#: db_operations.php:452 tbl_operations.php:542 msgid "Add constraints" msgstr "Pridať obmedzenia" -#: db_operations.php:431 +#: db_operations.php:465 msgid "Switch to copied database" msgstr "Prepnúť na skopírovanú databázu" -#: db_operations.php:451 libraries/Index.class.php:447 +#: db_operations.php:485 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 #: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 #: server_collations.php:53 server_collations.php:65 server_databases.php:108 @@ -297,7 +314,7 @@ msgstr "Prepnúť na skopírovanú databázu" msgid "Collation" msgstr "Zotriedenie" -#: db_operations.php:464 pdf_schema.php:32 +#: db_operations.php:498 pdf_schema.php:32 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -309,7 +326,7 @@ msgstr "" "Prídavné vlastnosti pre prácu s prepojenými tabuľkami boli deaktivované. Ak " "chcete zistiť prečo, kliknite %ssem%s." -#: db_operations.php:497 +#: db_operations.php:531 msgid "Edit PDF Pages" msgstr "Upraviť PDF Stránky" @@ -366,7 +383,7 @@ msgstr[1] "%s tabuľka(y)" msgstr[2] "%s tabuľka(y)" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -458,7 +475,7 @@ msgstr "Odošli dopyt" #: db_search.php:50 libraries/auth/config.auth.lib.php:83 #: libraries/auth/config.auth.lib.php:102 -#: libraries/auth/cookie.auth.lib.php:640 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:182 msgid "Access denied" msgstr "Prístup zamietnutý" @@ -502,7 +519,7 @@ msgid "Browse" msgstr "Prechádzať" #: db_search.php:254 libraries/display_tbl.lib.php:1163 -#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:440 #: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 @@ -547,14 +564,14 @@ msgstr "V tabuľke(ách):" #: db_structure.php:79 db_structure.php:80 db_structure.php:92 #: db_structure.php:93 db_structure.php:105 db_structure.php:106 -#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:311 +#: libraries/sql_query_form.lib.php:314 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Vložiť" #: db_structure.php:81 db_structure.php:94 db_structure.php:107 #: libraries/common.lib.php:2832 libraries/common.lib.php:2839 -#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 +#: libraries/db_links.inc.php:48 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 @@ -567,8 +584,7 @@ msgstr "Štruktúra" #: db_structure.php:96 db_structure.php:108 db_structure.php:109 #: db_structure.php:530 db_structure.php:531 db_tracking.php:86 #: libraries/Index.class.php:482 libraries/common.lib.php:1663 -#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 #: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 #: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" @@ -577,21 +593,21 @@ msgstr "Odstrániť" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 +#: libraries/mult_submits.inc.php:38 msgid "Empty" msgstr "Vyprázdniť" -#: db_structure.php:301 libraries/tbl_links.inc.php:98 +#: db_structure.php:301 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "Tabuľka %s bola vyprázdená" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "View %s has been dropped" msgstr "Pohľad %s bol odstránený" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "Tabuľka %s bola odstránená" @@ -681,7 +697,7 @@ msgstr "Opraviť tabuľku" msgid "Analyze table" msgstr "Analyzovať tabuľku" -#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:56 #: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 #: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 #: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 @@ -1413,7 +1429,7 @@ msgid "Databases" msgstr "Databázy" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30 #: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 #: tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -1520,7 +1536,7 @@ msgid "Cannot connect: invalid settings." msgstr "Nepodarilo sa pripojiť: chybné nastavenia." #: libraries/auth/config.auth.lib.php:91 -#: libraries/auth/cookie.auth.lib.php:205 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:206 libraries/auth/http.auth.lib.php:64 #: test/theme.php:151 #, php-format msgid "Welcome to %s" @@ -1546,57 +1562,57 @@ msgstr "" "Skontrolujte prosím meno serveru, používateľské meno a heslo v súbore config." "inc.php a s tým, ktoré ste dostali o administrátora MySQL servera." -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:231 msgid "Log in" msgstr "Login" -#: libraries/auth/cookie.auth.lib.php:232 -#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:233 +#: libraries/auth/cookie.auth.lib.php:235 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:94 msgid "phpMyAdmin documentation" msgstr "phpMyAdmin Dokumentácia" -#: libraries/auth/cookie.auth.lib.php:244 #: libraries/auth/cookie.auth.lib.php:245 +#: libraries/auth/cookie.auth.lib.php:246 msgid "You can enter hostname/IP address and port separated by space." msgstr "Možete zadať medzerou oddelený hostname/IP adresu a port." -#: libraries/auth/cookie.auth.lib.php:244 +#: libraries/auth/cookie.auth.lib.php:245 msgid "Server:" msgstr "Server" -#: libraries/auth/cookie.auth.lib.php:249 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Username:" msgstr "Používateľ:" -#: libraries/auth/cookie.auth.lib.php:253 +#: libraries/auth/cookie.auth.lib.php:254 msgid "Password:" msgstr "Heslo:" -#: libraries/auth/cookie.auth.lib.php:260 +#: libraries/auth/cookie.auth.lib.php:261 msgid "Server Choice" msgstr "Voľba serveru" -#: libraries/auth/cookie.auth.lib.php:306 libraries/header.inc.php:58 +#: libraries/auth/cookie.auth.lib.php:307 libraries/header.inc.php:58 msgid "Cookies must be enabled past this point." msgstr "Cookies musia byť povolené, pokiaľ chcete pokračovať." -#: libraries/auth/cookie.auth.lib.php:638 +#: libraries/auth/cookie.auth.lib.php:639 #: libraries/auth/signon.auth.lib.php:180 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" "Prihlásenie bez hesla je zakázané v konfigurácií (pozri AllowNoPassword)" -#: libraries/auth/cookie.auth.lib.php:642 +#: libraries/auth/cookie.auth.lib.php:643 #: libraries/auth/signon.auth.lib.php:184 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "Boli ste neaktívni viac ako %s sekúnd, prihláste sa prosím znovu" -#: libraries/auth/cookie.auth.lib.php:652 -#: libraries/auth/cookie.auth.lib.php:654 +#: libraries/auth/cookie.auth.lib.php:653 +#: libraries/auth/cookie.auth.lib.php:655 #: libraries/auth/signon.auth.lib.php:190 msgid "Cannot log in to the MySQL server" msgstr "Nedá sa prihlásiť k MySQL serveru" @@ -1717,7 +1733,7 @@ msgstr "en" #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 #: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 -#: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 +#: libraries/sql_query_form.lib.php:421 libraries/sql_query_form.lib.php:424 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" msgstr "Dokumentácia" @@ -1861,19 +1877,19 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "Funkčnosť %s je ovplyvnená známou chybou, pozri %s" #: libraries/common.lib.php:2833 libraries/common.lib.php:2840 -#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 +#: libraries/db_links.inc.php:53 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 #: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 -#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:86 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "Operácie" -#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:265 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1889,36 +1905,31 @@ msgstr "Udalosti" msgid "Name" msgstr "Názov" -#: libraries/db_links.inc.php:43 -#, php-format -msgid "Database %s has been dropped." -msgstr "Databáza %s bola zmazaná." - -#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 -#: libraries/db_links.inc.php:57 +#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43 +#: libraries/db_links.inc.php:44 msgid "Database seems to be empty!" msgstr "Databáza vyzerá prázdna!" -#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/db_links.inc.php:66 libraries/relation.lib.php:137 #: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:84 +#: libraries/db_links.inc.php:71 msgid "Query" msgstr "Dopyt podľa príkladu" -#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 +#: libraries/db_links.inc.php:76 libraries/relation.lib.php:133 msgid "Designer" msgstr "Dizajnér" -#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:87 #: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Import" -#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:65 #: server_privileges.php:110 server_privileges.php:1718 #: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" @@ -2086,7 +2097,7 @@ msgid "remember template" msgstr "zapamätať si vzor" #: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 -#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 +#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:509 msgid "Character set of the file:" msgstr "Znaková sada súboru:" @@ -2142,7 +2153,7 @@ msgstr "" msgid "File to import" msgstr "Súbor na importovanie" -#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:497 +#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:484 msgid "Location of the text file" msgstr "Lokácia textového súboru" @@ -2150,12 +2161,12 @@ msgstr "Lokácia textového súboru" msgid "File uploads are not allowed on this server." msgstr "Ukladanie súborov na server nie je povolené." -#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 +#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:493 #: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "Adresár určený pre upload súborov sa nedá otvoriť" -#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 +#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:496 #: tbl_change.php:925 msgid "web server upload directory" msgstr "upload adresár web serveru" @@ -3532,7 +3543,7 @@ msgstr "" "Prosím prečítajte si dokumentáciu ako aktualizovať tabuľku s informáciami o " "stĺpcoch (Column_comments Table)" -#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:403 msgid "Bookmarked SQL query" msgstr "Obľúbený SQL dopyt" @@ -3600,7 +3611,7 @@ msgstr "Zobraziť stav master replikácie" msgid "Slave status" msgstr "Zobraziť stav podriadených hostov" -#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:428 +#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:415 #: server_status.php:736 server_variables.php:51 msgid "Variable" msgstr "Premenná" @@ -3729,51 +3740,51 @@ msgstr "" msgid "Target database" msgstr "Cieľová databáza" -#: libraries/sql_query_form.lib.php:219 +#: libraries/sql_query_form.lib.php:217 #, php-format msgid "Run SQL query/queries on server %s" msgstr "Spustiť SQL príkaz(y) na servri %s" -#: libraries/sql_query_form.lib.php:236 libraries/sql_query_form.lib.php:261 +#: libraries/sql_query_form.lib.php:234 libraries/sql_query_form.lib.php:258 #, 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:307 +#: libraries/sql_query_form.lib.php:294 #, fuzzy #| msgid "Column names" msgid "Columns" msgstr "Názvy stĺpcov" -#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 +#: libraries/sql_query_form.lib.php:329 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "Pridať tento SQL dopyt do obľúbených" -#: libraries/sql_query_form.lib.php:349 sql.php:669 +#: libraries/sql_query_form.lib.php:336 sql.php:669 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:355 +#: libraries/sql_query_form.lib.php:342 msgid "Replace existing bookmark of same name" msgstr "Prepísať existujúci príkaz s rovnakým menom" -#: libraries/sql_query_form.lib.php:371 +#: libraries/sql_query_form.lib.php:358 msgid "Do not overwrite this query from outside the window" msgstr "Neprepisovať tento dopyt z hlavného okna" -#: libraries/sql_query_form.lib.php:378 +#: libraries/sql_query_form.lib.php:365 msgid "Delimiter" msgstr "Oddeľovač" -#: libraries/sql_query_form.lib.php:386 +#: libraries/sql_query_form.lib.php:373 msgid " Show this query here again " msgstr " Zobraziť tento dopyt znovu " -#: libraries/sql_query_form.lib.php:445 +#: libraries/sql_query_form.lib.php:432 msgid "Submit" msgstr "Odošli" -#: libraries/sql_query_form.lib.php:449 +#: libraries/sql_query_form.lib.php:436 msgid "View only" msgstr "Iba prezrieť" @@ -3845,12 +3856,11 @@ msgstr "" "nainštalované všetky potrebné rozšírenia php, tak ako sú popísané v " "%sdocumentation%s." -#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 -#: libraries/tbl_links.inc.php:139 +#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107 msgid "Table seems to be empty!" msgstr "Tabuľka vyzerá prázdna!" -#: libraries/tbl_links.inc.php:147 +#: libraries/tbl_links.inc.php:115 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" @@ -8030,41 +8040,55 @@ msgstr "Tabuľka %s bola vyprázdnená" msgid "Flush the table (FLUSH)" msgstr "Vyprázdniť tabuľku (\"FLUSH\")" -#: tbl_operations.php:648 +#: tbl_operations.php:642 +#, fuzzy +#| msgid "Table name" +msgid "Table removal" +msgstr "Názov tabuľky" + +#: tbl_operations.php:657 +msgid "Empty the table (TRUNCATE)" +msgstr "" + +#: tbl_operations.php:675 +msgid "Drop the table (DROP)" +msgstr "" + +#: tbl_operations.php:696 #, fuzzy msgid "Partition maintenance" msgstr "Údržba tabuľky" -#: tbl_operations.php:656 +#: tbl_operations.php:704 #, php-format msgid "Partition %s" msgstr "" -#: tbl_operations.php:659 +#: tbl_operations.php:707 msgid "Analyze" msgstr "Analyzovať" -#: tbl_operations.php:660 +#: tbl_operations.php:708 msgid "Check" msgstr "Skontrolovať" -#: tbl_operations.php:661 +#: tbl_operations.php:709 msgid "Optimize" msgstr "Optimalizovať" -#: tbl_operations.php:662 +#: tbl_operations.php:710 msgid "Rebuild" msgstr "" -#: tbl_operations.php:663 +#: tbl_operations.php:711 msgid "Repair" msgstr "Opraviť" -#: tbl_operations.php:675 +#: tbl_operations.php:723 msgid "Remove partitioning" msgstr "" -#: tbl_operations.php:701 +#: tbl_operations.php:749 msgid "Check referential integrity:" msgstr "Skontrolovať referenčnú integritu:" diff --git a/po/sl.po b/po/sl.po index 56f94d596..a87dfa1e9 100644 --- a/po/sl.po +++ b/po/sl.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-26 17:18+0200\n" +"POT-Creation-Date: 2010-07-27 10:12+0200\n" "PO-Revision-Date: 2010-07-16 17:14+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" @@ -39,16 +39,16 @@ msgstr "" #: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 #: db_structure.php:89 db_structure.php:91 db_structure.php:102 #: db_structure.php:104 libraries/common.lib.php:2834 -#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Iskanje" #: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 -#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_operations.php:468 db_operations.php:492 db_search.php:344 #: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 #: libraries/Theme_Manager.class.php:305 -#: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 +#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:712 #: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 @@ -56,8 +56,8 @@ msgstr "Iskanje" #: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 #: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 -#: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: libraries/sql_query_form.lib.php:377 libraries/sql_query_form.lib.php:447 +#: libraries/sql_query_form.lib.php:512 libraries/tbl_properties.inc.php:780 #: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 #: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 #: server_privileges.php:663 server_privileges.php:1620 @@ -67,7 +67,7 @@ msgstr "Iskanje" #: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 #: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 -#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_operations.php:726 tbl_select.php:323 tbl_structure.php:559 #: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 #: view_create.php:181 view_operations.php:99 msgid "Go" @@ -248,47 +248,64 @@ msgstr "Ukaz" msgid "and then" msgstr "in potem" -#: db_operations.php:390 +#: db_operations.php:379 +#, fuzzy +#| msgid "Rename database to" +msgid "Remove database" +msgstr "Preimenuj zbirko podatkov v" + +#: db_operations.php:391 +#, php-format +msgid "Database %s has been dropped." +msgstr "Podatkovna zbirka %s je zavržena." + +#: db_operations.php:396 +#, fuzzy +#| msgid "Go to database" +msgid "Drop the database (DROP)" +msgstr "Pojdi v zbirko podatkov" + +#: db_operations.php:424 msgid "Copy database to" msgstr "Kopiraj zbirko podatkov v" -#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:431 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Samo struktura" -#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:432 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Struktura in podatki" -#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:433 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Samo podatki" -#: db_operations.php:407 +#: db_operations.php:441 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE pred kopiranjem" -#: db_operations.php:410 libraries/export/sql.php:51 +#: db_operations.php:444 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 #: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "Dodaj %s" -#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: db_operations.php:448 libraries/export/sql.php:77 tbl_operations.php:296 #: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Dodaj vrednost AUTO_INCREMENT" -#: db_operations.php:418 tbl_operations.php:542 +#: db_operations.php:452 tbl_operations.php:542 msgid "Add constraints" msgstr "Dodaj omejitve" -#: db_operations.php:431 +#: db_operations.php:465 msgid "Switch to copied database" msgstr "Preklopi na kopirano podatkovno zbirko" -#: db_operations.php:451 libraries/Index.class.php:447 +#: db_operations.php:485 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 #: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 #: server_collations.php:53 server_collations.php:65 server_databases.php:108 @@ -297,7 +314,7 @@ msgstr "Preklopi na kopirano podatkovno zbirko" msgid "Collation" msgstr "Pravilo za razvrščanje znakov" -#: db_operations.php:464 pdf_schema.php:32 +#: db_operations.php:498 pdf_schema.php:32 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -309,7 +326,7 @@ msgstr "" "Dodatne funkcije za delo s povezanimi tabelami so bile izkjučene. Če želite " "izvedeti zakaj, kliknite %stukaj%s." -#: db_operations.php:497 +#: db_operations.php:531 msgid "Edit PDF Pages" msgstr "Uredi PDF strani" @@ -366,7 +383,7 @@ msgstr[2] "%s tabele" msgstr[3] "%s tabel" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -454,7 +471,7 @@ msgstr "Izvedi poizvedbo" #: db_search.php:50 libraries/auth/config.auth.lib.php:83 #: libraries/auth/config.auth.lib.php:102 -#: libraries/auth/cookie.auth.lib.php:640 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:182 msgid "Access denied" msgstr "Dostop zavrnjen" @@ -499,7 +516,7 @@ msgid "Browse" msgstr "Prebrskaj" #: db_search.php:254 libraries/display_tbl.lib.php:1163 -#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:440 #: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 @@ -542,14 +559,14 @@ msgstr "V stolpcu:" #: db_structure.php:79 db_structure.php:80 db_structure.php:92 #: db_structure.php:93 db_structure.php:105 db_structure.php:106 -#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:311 +#: libraries/sql_query_form.lib.php:314 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Vstavi" #: db_structure.php:81 db_structure.php:94 db_structure.php:107 #: libraries/common.lib.php:2832 libraries/common.lib.php:2839 -#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 +#: libraries/db_links.inc.php:48 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 @@ -562,8 +579,7 @@ msgstr "Struktura" #: db_structure.php:96 db_structure.php:108 db_structure.php:109 #: db_structure.php:530 db_structure.php:531 db_tracking.php:86 #: libraries/Index.class.php:482 libraries/common.lib.php:1663 -#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 #: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 #: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" @@ -572,21 +588,21 @@ msgstr "Zavrzi" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 +#: libraries/mult_submits.inc.php:38 msgid "Empty" msgstr "Izprazni" -#: db_structure.php:301 libraries/tbl_links.inc.php:98 +#: db_structure.php:301 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "Tabela %s je izpraznjena" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "View %s has been dropped" msgstr "Pogled %s je zavržen" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "Tabela %s je zavržena" @@ -676,7 +692,7 @@ msgstr "Popravi tabelo" msgid "Analyze table" msgstr "Analiziraj tabelo" -#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:56 #: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 #: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 #: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 @@ -1357,7 +1373,7 @@ msgid "Databases" msgstr "Podatkovne zbirke" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30 #: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 #: tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -1467,7 +1483,7 @@ msgid "Cannot connect: invalid settings." msgstr "Povezava ni mogoča: neveljavne nastavitve." #: libraries/auth/config.auth.lib.php:91 -#: libraries/auth/cookie.auth.lib.php:205 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:206 libraries/auth/http.auth.lib.php:64 #: test/theme.php:151 #, php-format msgid "Welcome to %s" @@ -1493,57 +1509,57 @@ msgstr "" "povezavo. Preverite, ali gostitelj, uporabniško ime in geslo v datoteki " "config.inc.php ustrezajo podatkom administratorja strežnika MySQL." -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:231 msgid "Log in" msgstr "Prijava" -#: libraries/auth/cookie.auth.lib.php:232 -#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:233 +#: libraries/auth/cookie.auth.lib.php:235 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:94 msgid "phpMyAdmin documentation" msgstr "Dokumentacija phpMyAdmin" -#: libraries/auth/cookie.auth.lib.php:244 #: libraries/auth/cookie.auth.lib.php:245 +#: libraries/auth/cookie.auth.lib.php:246 msgid "You can enter hostname/IP address and port separated by space." msgstr "Vnesete lahko ime gostitelja/IP-naslov in vrata ločena s presledkom." -#: libraries/auth/cookie.auth.lib.php:244 +#: libraries/auth/cookie.auth.lib.php:245 msgid "Server:" msgstr "Strežnik:" -#: libraries/auth/cookie.auth.lib.php:249 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Username:" msgstr "Uporabniško ime:" -#: libraries/auth/cookie.auth.lib.php:253 +#: libraries/auth/cookie.auth.lib.php:254 msgid "Password:" msgstr "Geslo:" -#: libraries/auth/cookie.auth.lib.php:260 +#: libraries/auth/cookie.auth.lib.php:261 msgid "Server Choice" msgstr "Izbira strežnika" -#: libraries/auth/cookie.auth.lib.php:306 libraries/header.inc.php:58 +#: libraries/auth/cookie.auth.lib.php:307 libraries/header.inc.php:58 msgid "Cookies must be enabled past this point." msgstr "Če želite še dalje uporabljati program, morate omogočiti piškotke." -#: libraries/auth/cookie.auth.lib.php:638 +#: libraries/auth/cookie.auth.lib.php:639 #: libraries/auth/signon.auth.lib.php:180 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" "Prijava brez gesla je prepovedana s konfiguracijo (glej AllowNoPassword)" -#: libraries/auth/cookie.auth.lib.php:642 +#: libraries/auth/cookie.auth.lib.php:643 #: libraries/auth/signon.auth.lib.php:184 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "Brez aktivnosti v zadnjih %s sekundah; prosimo, prijavite se znova" -#: libraries/auth/cookie.auth.lib.php:652 -#: libraries/auth/cookie.auth.lib.php:654 +#: libraries/auth/cookie.auth.lib.php:653 +#: libraries/auth/cookie.auth.lib.php:655 #: libraries/auth/signon.auth.lib.php:190 msgid "Cannot log in to the MySQL server" msgstr "Ne morem se prijaviti v strežnik MySQL" @@ -1664,7 +1680,7 @@ msgstr "en" #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 #: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 -#: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 +#: libraries/sql_query_form.lib.php:421 libraries/sql_query_form.lib.php:424 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" msgstr "Dokumentacija" @@ -1807,19 +1823,19 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "Na funkcionalnost %s vpliva znan hrošč, glej %s" #: libraries/common.lib.php:2833 libraries/common.lib.php:2840 -#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 +#: libraries/db_links.inc.php:53 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 #: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 -#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:86 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "Operacije" -#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:265 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1835,36 +1851,31 @@ msgstr "Dogodki" msgid "Name" msgstr "Ime" -#: libraries/db_links.inc.php:43 -#, php-format -msgid "Database %s has been dropped." -msgstr "Podatkovna zbirka %s je zavržena." - -#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 -#: libraries/db_links.inc.php:57 +#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43 +#: libraries/db_links.inc.php:44 msgid "Database seems to be empty!" msgstr "Zbirka podatkov se zdi prazna!" -#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/db_links.inc.php:66 libraries/relation.lib.php:137 #: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "Sledenje" -#: libraries/db_links.inc.php:84 +#: libraries/db_links.inc.php:71 msgid "Query" msgstr "Poizvedba" -#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 +#: libraries/db_links.inc.php:76 libraries/relation.lib.php:133 msgid "Designer" msgstr "Oblikovalnik" -#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:87 #: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Uvozi" -#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:65 #: server_privileges.php:110 server_privileges.php:1718 #: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" @@ -2029,7 +2040,7 @@ msgid "remember template" msgstr "shrani predlogo" #: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 -#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 +#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:509 msgid "Character set of the file:" msgstr "Nabor znakov datoteke:" @@ -2087,7 +2098,7 @@ msgstr "" msgid "File to import" msgstr "Datoteka za uvoz" -#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:497 +#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:484 msgid "Location of the text file" msgstr "Mesto datoteke z besedilom" @@ -2095,12 +2106,12 @@ msgstr "Mesto datoteke z besedilom" msgid "File uploads are not allowed on this server." msgstr "Nalaganje datotek na tem strežniku ni dovoljeno." -#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 +#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:493 #: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "Imenik, ki ste ga določili za nalaganje, je nedosegljiv" -#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 +#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:496 #: tbl_change.php:925 msgid "web server upload directory" msgstr "imenik za nalaganje datotek" @@ -3493,7 +3504,7 @@ msgid "" "Please see the documentation on how to update your column_comments table" msgstr "Navodila za posodobitev tabele column_comments najdete v dokumentaciji" -#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:403 msgid "Bookmarked SQL query" msgstr "Označena poizvedba SQL" @@ -3565,7 +3576,7 @@ msgstr "Stanje glavnega strežnika" msgid "Slave status" msgstr "Stanje podrejenca" -#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:428 +#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:415 #: server_status.php:736 server_variables.php:51 msgid "Variable" msgstr "Spremenljivka" @@ -3696,49 +3707,49 @@ msgstr "Razlika" msgid "Target database" msgstr "Ciljna zbirka podatkov" -#: libraries/sql_query_form.lib.php:219 +#: libraries/sql_query_form.lib.php:217 #, 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:236 libraries/sql_query_form.lib.php:261 +#: libraries/sql_query_form.lib.php:234 libraries/sql_query_form.lib.php:258 #, 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:307 +#: libraries/sql_query_form.lib.php:294 msgid "Columns" msgstr "Stolpci" -#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 +#: libraries/sql_query_form.lib.php:329 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "Označi to poizvedbo SQL" -#: libraries/sql_query_form.lib.php:349 sql.php:669 +#: libraries/sql_query_form.lib.php:336 sql.php:669 msgid "Let every user access this bookmark" msgstr "Dovoli dostop do zaznamka vsem uporabnikom" -#: libraries/sql_query_form.lib.php:355 +#: libraries/sql_query_form.lib.php:342 msgid "Replace existing bookmark of same name" msgstr "Zamenjaj obstoječ zaznamek z istim imenom" -#: libraries/sql_query_form.lib.php:371 +#: libraries/sql_query_form.lib.php:358 msgid "Do not overwrite this query from outside the window" msgstr "Ne prepiši te poizvedbe od zunaj" -#: libraries/sql_query_form.lib.php:378 +#: libraries/sql_query_form.lib.php:365 msgid "Delimiter" msgstr "Ločilo" -#: libraries/sql_query_form.lib.php:386 +#: libraries/sql_query_form.lib.php:373 msgid " Show this query here again " msgstr " Ponovno pokaži poizvedbo v tem oknu " -#: libraries/sql_query_form.lib.php:445 +#: libraries/sql_query_form.lib.php:432 msgid "Submit" msgstr "Pošlji" -#: libraries/sql_query_form.lib.php:449 +#: libraries/sql_query_form.lib.php:436 msgid "View only" msgstr "Samo pogled" @@ -3809,12 +3820,11 @@ msgstr "" "Ne morem inicializirati preverjevalnika SQL. Prosimo, preverite, če so " "nameščene vse razširitve PHP, kot je navedeno v %sdokumenaciji%s." -#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 -#: libraries/tbl_links.inc.php:139 +#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107 msgid "Table seems to be empty!" msgstr "Tabela je prazna!" -#: libraries/tbl_links.inc.php:147 +#: libraries/tbl_links.inc.php:115 #, php-format msgid "Tracking of %s.%s is activated." msgstr "Sledenje %s.%s je aktivirano." @@ -8082,40 +8092,54 @@ msgstr "Tabela %s je osvežena" msgid "Flush the table (FLUSH)" msgstr "Počisti tabelo (FLUSH)" -#: tbl_operations.php:648 +#: tbl_operations.php:642 +#, fuzzy +#| msgid "Table name" +msgid "Table removal" +msgstr "Ime tabele" + +#: tbl_operations.php:657 +msgid "Empty the table (TRUNCATE)" +msgstr "" + +#: tbl_operations.php:675 +msgid "Drop the table (DROP)" +msgstr "" + +#: tbl_operations.php:696 msgid "Partition maintenance" msgstr "Vzdrževanje particij" -#: tbl_operations.php:656 +#: tbl_operations.php:704 #, php-format msgid "Partition %s" msgstr "Particija %s" -#: tbl_operations.php:659 +#: tbl_operations.php:707 msgid "Analyze" msgstr "Analiziraj" -#: tbl_operations.php:660 +#: tbl_operations.php:708 msgid "Check" msgstr "Označi" -#: tbl_operations.php:661 +#: tbl_operations.php:709 msgid "Optimize" msgstr "Optimiraj" -#: tbl_operations.php:662 +#: tbl_operations.php:710 msgid "Rebuild" msgstr "Ponovno sestavi" -#: tbl_operations.php:663 +#: tbl_operations.php:711 msgid "Repair" msgstr "Popravi" -#: tbl_operations.php:675 +#: tbl_operations.php:723 msgid "Remove partitioning" msgstr "Odstrani particioniranje" -#: tbl_operations.php:701 +#: tbl_operations.php:749 msgid "Check referential integrity:" msgstr "Preveri referenčno integriteto:" diff --git a/po/sq.po b/po/sq.po index c0f539183..59f032fab 100644 --- a/po/sq.po +++ b/po/sq.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-26 17:18+0200\n" +"POT-Creation-Date: 2010-07-27 10:12+0200\n" "PO-Revision-Date: 2010-07-21 14:51+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: albanian \n" @@ -39,16 +39,16 @@ msgstr "" #: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 #: db_structure.php:89 db_structure.php:91 db_structure.php:102 #: db_structure.php:104 libraries/common.lib.php:2834 -#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Kërko" #: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 -#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_operations.php:468 db_operations.php:492 db_search.php:344 #: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 #: libraries/Theme_Manager.class.php:305 -#: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 +#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:712 #: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 @@ -56,8 +56,8 @@ msgstr "Kërko" #: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 #: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 -#: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: libraries/sql_query_form.lib.php:377 libraries/sql_query_form.lib.php:447 +#: libraries/sql_query_form.lib.php:512 libraries/tbl_properties.inc.php:780 #: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 #: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 #: server_privileges.php:663 server_privileges.php:1620 @@ -67,7 +67,7 @@ msgstr "Kërko" #: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 #: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 -#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_operations.php:726 tbl_select.php:323 tbl_structure.php:559 #: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 #: view_create.php:181 view_operations.php:99 msgid "Go" @@ -248,47 +248,63 @@ msgstr "Komanda" msgid "and then" msgstr "" -#: db_operations.php:390 +#: db_operations.php:379 +#, fuzzy +#| msgid "Rename database to" +msgid "Remove database" +msgstr "Ndysho emrin e databazës në" + +#: db_operations.php:391 +#, php-format +msgid "Database %s has been dropped." +msgstr "Databaza %s u eleminua." + +#: db_operations.php:396 +#, fuzzy +msgid "Drop the database (DROP)" +msgstr "Asnjë databazë" + +#: db_operations.php:424 msgid "Copy database to" msgstr "Kopjo databazën në" -#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:431 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Vetëm struktura" -#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:432 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Struktura dhe të dhënat" -#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:433 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Vetëm të dhënat" -#: db_operations.php:407 +#: db_operations.php:441 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE para se të kopjohet" -#: db_operations.php:410 libraries/export/sql.php:51 +#: db_operations.php:444 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 #: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "Shto %s" -#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: db_operations.php:448 libraries/export/sql.php:77 tbl_operations.php:296 #: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Shto vlerë AUTO_INCREMENT" -#: db_operations.php:418 tbl_operations.php:542 +#: db_operations.php:452 tbl_operations.php:542 msgid "Add constraints" msgstr "Shto kushte" -#: db_operations.php:431 +#: db_operations.php:465 msgid "Switch to copied database" msgstr "Kalo tek databaza e kopjuar" -#: db_operations.php:451 libraries/Index.class.php:447 +#: db_operations.php:485 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 #: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 #: server_collations.php:53 server_collations.php:65 server_databases.php:108 @@ -297,7 +313,7 @@ msgstr "Kalo tek databaza e kopjuar" msgid "Collation" msgstr "Collation" -#: db_operations.php:464 pdf_schema.php:32 +#: db_operations.php:498 pdf_schema.php:32 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -309,7 +325,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:497 +#: db_operations.php:531 msgid "Edit PDF Pages" msgstr "Ndrysho faqet PDF" @@ -365,7 +381,7 @@ msgstr[0] "%s tabela(at)" msgstr[1] "%s tabela(at)" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -457,7 +473,7 @@ msgstr "Dërgo Query" #: db_search.php:50 libraries/auth/config.auth.lib.php:83 #: libraries/auth/config.auth.lib.php:102 -#: libraries/auth/cookie.auth.lib.php:640 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:182 msgid "Access denied" msgstr "Ndalohet hyrja" @@ -500,7 +516,7 @@ msgid "Browse" msgstr "Shfleto" #: db_search.php:254 libraries/display_tbl.lib.php:1163 -#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:440 #: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 @@ -543,14 +559,14 @@ msgstr "Tek fusha:" #: db_structure.php:79 db_structure.php:80 db_structure.php:92 #: db_structure.php:93 db_structure.php:105 db_structure.php:106 -#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:311 +#: libraries/sql_query_form.lib.php:314 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Shto" #: db_structure.php:81 db_structure.php:94 db_structure.php:107 #: libraries/common.lib.php:2832 libraries/common.lib.php:2839 -#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 +#: libraries/db_links.inc.php:48 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 @@ -563,8 +579,7 @@ msgstr "Struktura" #: db_structure.php:96 db_structure.php:108 db_structure.php:109 #: db_structure.php:530 db_structure.php:531 db_tracking.php:86 #: libraries/Index.class.php:482 libraries/common.lib.php:1663 -#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 #: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 #: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" @@ -573,21 +588,21 @@ msgstr "Elemino" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 +#: libraries/mult_submits.inc.php:38 msgid "Empty" msgstr "Zbraz" -#: db_structure.php:301 libraries/tbl_links.inc.php:98 +#: db_structure.php:301 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "Tabela %s u zbraz" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "View %s has been dropped" msgstr "Paraqitja %s u eleminua" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "Tabela %s u eleminua" @@ -678,7 +693,7 @@ msgstr "Riparo tabelën" msgid "Analyze table" msgstr "Analizo tabelën" -#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:56 #: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 #: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 #: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 @@ -1398,7 +1413,7 @@ msgid "Databases" msgstr "Databazat" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30 #: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 #: tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -1503,7 +1518,7 @@ msgid "Cannot connect: invalid settings." msgstr "E pamundur lidhja: rregullime të pavlefshme." #: libraries/auth/config.auth.lib.php:91 -#: libraries/auth/cookie.auth.lib.php:205 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:206 libraries/auth/http.auth.lib.php:64 #: test/theme.php:151 #, php-format msgid "Welcome to %s" @@ -1528,56 +1543,56 @@ msgstr "" "config.inc.php dhe sigurohu që korrispondojnë me informacionet që ju ka " "dhënë administratori i serverit MySQL." -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:231 msgid "Log in" msgstr "Hyrja" -#: libraries/auth/cookie.auth.lib.php:232 -#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:233 +#: libraries/auth/cookie.auth.lib.php:235 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:94 msgid "phpMyAdmin documentation" msgstr "Dokumente të phpMyAdmin" -#: libraries/auth/cookie.auth.lib.php:244 #: libraries/auth/cookie.auth.lib.php:245 +#: libraries/auth/cookie.auth.lib.php:246 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:244 +#: libraries/auth/cookie.auth.lib.php:245 msgid "Server:" msgstr "Serveri" -#: libraries/auth/cookie.auth.lib.php:249 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Username:" msgstr "Emri i përdoruesit:" -#: libraries/auth/cookie.auth.lib.php:253 +#: libraries/auth/cookie.auth.lib.php:254 msgid "Password:" msgstr "Fjalëkalimi:" -#: libraries/auth/cookie.auth.lib.php:260 +#: libraries/auth/cookie.auth.lib.php:261 msgid "Server Choice" msgstr "Zgjedhja e serverit" -#: libraries/auth/cookie.auth.lib.php:306 libraries/header.inc.php:58 +#: libraries/auth/cookie.auth.lib.php:307 libraries/header.inc.php:58 msgid "Cookies must be enabled past this point." msgstr "Nga kjo pikë e tutje, cookies duhet të jenë të aktivuara." -#: libraries/auth/cookie.auth.lib.php:638 +#: libraries/auth/cookie.auth.lib.php:639 #: libraries/auth/signon.auth.lib.php:180 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" -#: libraries/auth/cookie.auth.lib.php:642 +#: libraries/auth/cookie.auth.lib.php:643 #: libraries/auth/signon.auth.lib.php:184 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" -#: libraries/auth/cookie.auth.lib.php:652 -#: libraries/auth/cookie.auth.lib.php:654 +#: libraries/auth/cookie.auth.lib.php:653 +#: libraries/auth/cookie.auth.lib.php:655 #: libraries/auth/signon.auth.lib.php:190 msgid "Cannot log in to the MySQL server" msgstr "E pamundur kryerja e login tek server-i MySQL" @@ -1696,7 +1711,7 @@ msgstr "en" #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 #: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 -#: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 +#: libraries/sql_query_form.lib.php:421 libraries/sql_query_form.lib.php:424 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" msgstr "Dokumentet" @@ -1837,19 +1852,19 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/common.lib.php:2833 libraries/common.lib.php:2840 -#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 +#: libraries/db_links.inc.php:53 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 #: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 -#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:86 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "Operacione" -#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:265 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1865,37 +1880,32 @@ msgstr "" msgid "Name" msgstr "Emri" -#: libraries/db_links.inc.php:43 -#, php-format -msgid "Database %s has been dropped." -msgstr "Databaza %s u eleminua." - -#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 -#: libraries/db_links.inc.php:57 +#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43 +#: libraries/db_links.inc.php:44 msgid "Database seems to be empty!" msgstr "" -#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/db_links.inc.php:66 libraries/relation.lib.php:137 #: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:84 +#: libraries/db_links.inc.php:71 msgid "Query" msgstr "Query nga shembull" -#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 +#: libraries/db_links.inc.php:76 libraries/relation.lib.php:133 msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:87 #: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 #, fuzzy msgid "Import" msgstr "Eksporto" -#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:65 #: server_privileges.php:110 server_privileges.php:1718 #: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" @@ -2058,7 +2068,7 @@ msgid "remember template" msgstr "kujto template" #: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 -#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 +#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:509 msgid "Character set of the file:" msgstr "Familja gërmave të file:" @@ -2111,7 +2121,7 @@ msgstr "" msgid "File to import" msgstr "" -#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:497 +#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:484 msgid "Location of the text file" msgstr "Pozicioni i file" @@ -2119,12 +2129,12 @@ msgstr "Pozicioni i file" msgid "File uploads are not allowed on this server." msgstr "" -#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 +#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:493 #: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "Directory që keni zgjedhur për upload nuk arrin të gjehet" -#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 +#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:496 #: tbl_change.php:925 msgid "web server upload directory" msgstr "directory e upload të server-it web" @@ -3479,7 +3489,7 @@ msgid "" msgstr "" "Ju lutem lexoni dokumentet mbi rifreskimin e tabelës suaj Column_comments" -#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:403 msgid "Bookmarked SQL query" msgstr "Query SQL shtuar të preferuarve" @@ -3544,7 +3554,7 @@ msgstr "" msgid "Slave status" msgstr "" -#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:428 +#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:415 #: server_status.php:736 server_variables.php:51 msgid "Variable" msgstr "E ndryshueshme" @@ -3676,51 +3686,51 @@ msgstr "" msgid "Target database" msgstr "Kërko në databazë" -#: libraries/sql_query_form.lib.php:219 +#: libraries/sql_query_form.lib.php:217 #, fuzzy, php-format msgid "Run SQL query/queries on server %s" msgstr "Zbato query SQL tek databaza %s" -#: libraries/sql_query_form.lib.php:236 libraries/sql_query_form.lib.php:261 +#: libraries/sql_query_form.lib.php:234 libraries/sql_query_form.lib.php:258 #, php-format msgid "Run SQL query/queries on database %s" msgstr "Zbato query SQL tek databaza %s" -#: libraries/sql_query_form.lib.php:307 +#: libraries/sql_query_form.lib.php:294 #, fuzzy #| msgid "Column names" msgid "Columns" msgstr "Emrat e kollonave" -#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 +#: libraries/sql_query_form.lib.php:329 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "Shtoja të preferuarve këtë query SQL" -#: libraries/sql_query_form.lib.php:349 sql.php:669 +#: libraries/sql_query_form.lib.php:336 sql.php:669 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:355 +#: libraries/sql_query_form.lib.php:342 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/sql_query_form.lib.php:371 +#: libraries/sql_query_form.lib.php:358 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:378 +#: libraries/sql_query_form.lib.php:365 msgid "Delimiter" msgstr "" -#: libraries/sql_query_form.lib.php:386 +#: libraries/sql_query_form.lib.php:373 msgid " Show this query here again " msgstr "Tregoje përsëri këtë query" -#: libraries/sql_query_form.lib.php:445 +#: libraries/sql_query_form.lib.php:432 msgid "Submit" msgstr "Dërgoje" -#: libraries/sql_query_form.lib.php:449 +#: libraries/sql_query_form.lib.php:436 msgid "View only" msgstr "Shfaq vetëm" @@ -3794,12 +3804,11 @@ msgstr "" "Miratuesi SQL nuk arrin të niset. Ju lutem kontrolloni instalimin e " "prapashtesave të duhura php ashtu si përshkruhet tek %sdokumentimi%s." -#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 -#: libraries/tbl_links.inc.php:139 +#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107 msgid "Table seems to be empty!" msgstr "" -#: libraries/tbl_links.inc.php:147 +#: libraries/tbl_links.inc.php:115 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" @@ -7824,43 +7833,55 @@ msgstr "Tabela %s u rifreskua" msgid "Flush the table (FLUSH)" msgstr "Rifillo (\"FLUSH\") tabelën" -#: tbl_operations.php:648 +#: tbl_operations.php:642 +msgid "Table removal" +msgstr "" + +#: tbl_operations.php:657 +msgid "Empty the table (TRUNCATE)" +msgstr "" + +#: tbl_operations.php:675 +msgid "Drop the table (DROP)" +msgstr "" + +#: tbl_operations.php:696 #, fuzzy msgid "Partition maintenance" msgstr "Administrimi i tabelës" -#: tbl_operations.php:656 +#: tbl_operations.php:704 #, php-format msgid "Partition %s" msgstr "" -#: tbl_operations.php:659 +#: tbl_operations.php:707 msgid "Analyze" msgstr "" -#: tbl_operations.php:660 +#: tbl_operations.php:708 #, fuzzy msgid "Check" msgstr "Çekisht" -#: tbl_operations.php:661 +#: tbl_operations.php:709 msgid "Optimize" msgstr "" -#: tbl_operations.php:662 +#: tbl_operations.php:710 msgid "Rebuild" msgstr "" -#: tbl_operations.php:663 +#: tbl_operations.php:711 #, fuzzy msgid "Repair" msgstr "Riparo tabelën" -#: tbl_operations.php:675 +#: tbl_operations.php:723 msgid "Remove partitioning" msgstr "" -#: tbl_operations.php:701 +#: tbl_operations.php:749 msgid "Check referential integrity:" msgstr "Kontrollo integritetin e informacioneve:" diff --git a/po/sr.po b/po/sr.po index 048184bf1..579db1afd 100644 --- a/po/sr.po +++ b/po/sr.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-26 17:18+0200\n" +"POT-Creation-Date: 2010-07-27 10:12+0200\n" "PO-Revision-Date: 2010-03-30 23:47+0200\n" "Last-Translator: Michal \n" "Language-Team: serbian_cyrillic \n" @@ -40,16 +40,16 @@ msgstr "" #: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 #: db_structure.php:89 db_structure.php:91 db_structure.php:102 #: db_structure.php:104 libraries/common.lib.php:2834 -#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Претраживање" #: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 -#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_operations.php:468 db_operations.php:492 db_search.php:344 #: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 #: libraries/Theme_Manager.class.php:305 -#: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 +#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:712 #: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 @@ -57,8 +57,8 @@ msgstr "Претраживање" #: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 #: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 -#: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: libraries/sql_query_form.lib.php:377 libraries/sql_query_form.lib.php:447 +#: libraries/sql_query_form.lib.php:512 libraries/tbl_properties.inc.php:780 #: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 #: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 #: server_privileges.php:663 server_privileges.php:1620 @@ -68,7 +68,7 @@ msgstr "Претраживање" #: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 #: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 -#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_operations.php:726 tbl_select.php:323 tbl_structure.php:559 #: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 #: view_create.php:181 view_operations.php:99 msgid "Go" @@ -251,47 +251,63 @@ msgstr "Наредба" msgid "and then" msgstr "и онда" -#: db_operations.php:390 +#: db_operations.php:379 +#, fuzzy +#| msgid "Rename database to" +msgid "Remove database" +msgstr "Преименуј базу у" + +#: db_operations.php:391 +#, php-format +msgid "Database %s has been dropped." +msgstr "База %s је одбачена." + +#: db_operations.php:396 +#, fuzzy +msgid "Drop the database (DROP)" +msgstr "База не постоји" + +#: db_operations.php:424 msgid "Copy database to" msgstr "Копирај базу у" -#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:431 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Само структура" -#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:432 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Структура и подаци" -#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:433 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Само подаци" -#: db_operations.php:407 +#: db_operations.php:441 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE пре копирања" -#: db_operations.php:410 libraries/export/sql.php:51 +#: db_operations.php:444 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 #: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "Додај %s" -#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: db_operations.php:448 libraries/export/sql.php:77 tbl_operations.php:296 #: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Додај AUTO_INCREMENT вредност" -#: db_operations.php:418 tbl_operations.php:542 +#: db_operations.php:452 tbl_operations.php:542 msgid "Add constraints" msgstr "Додај ограничења" -#: db_operations.php:431 +#: db_operations.php:465 msgid "Switch to copied database" msgstr "Пребаци се на копирану базу" -#: db_operations.php:451 libraries/Index.class.php:447 +#: db_operations.php:485 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 #: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 #: server_collations.php:53 server_collations.php:65 server_databases.php:108 @@ -300,7 +316,7 @@ msgstr "Пребаци се на копирану базу" msgid "Collation" msgstr "Сортирање" -#: db_operations.php:464 pdf_schema.php:32 +#: db_operations.php:498 pdf_schema.php:32 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -312,7 +328,7 @@ msgstr "" "Додатне могућности за рад са повезаним табелама су искључене. Да бисте " "сазнали зашто, кликните %sовде%s." -#: db_operations.php:497 +#: db_operations.php:531 msgid "Edit PDF Pages" msgstr "Уређивање PDF страна" @@ -369,7 +385,7 @@ msgstr[1] "%s табела" msgstr[2] "%s табела" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -461,7 +477,7 @@ msgstr "Изврши SQL упит" #: db_search.php:50 libraries/auth/config.auth.lib.php:83 #: libraries/auth/config.auth.lib.php:102 -#: libraries/auth/cookie.auth.lib.php:640 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:182 msgid "Access denied" msgstr "Приступ одбијен" @@ -505,7 +521,7 @@ msgid "Browse" msgstr "Преглед" #: db_search.php:254 libraries/display_tbl.lib.php:1163 -#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:440 #: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 @@ -549,14 +565,14 @@ msgstr "Унутар табела:" #: db_structure.php:79 db_structure.php:80 db_structure.php:92 #: db_structure.php:93 db_structure.php:105 db_structure.php:106 -#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:311 +#: libraries/sql_query_form.lib.php:314 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Нови запис" #: db_structure.php:81 db_structure.php:94 db_structure.php:107 #: libraries/common.lib.php:2832 libraries/common.lib.php:2839 -#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 +#: libraries/db_links.inc.php:48 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 @@ -569,8 +585,7 @@ msgstr "Структура" #: db_structure.php:96 db_structure.php:108 db_structure.php:109 #: db_structure.php:530 db_structure.php:531 db_tracking.php:86 #: libraries/Index.class.php:482 libraries/common.lib.php:1663 -#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 #: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 #: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" @@ -579,21 +594,21 @@ msgstr "Одбаци" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 +#: libraries/mult_submits.inc.php:38 msgid "Empty" msgstr "Испразни" -#: db_structure.php:301 libraries/tbl_links.inc.php:98 +#: db_structure.php:301 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "Табела %s је испражњена" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "View %s has been dropped" msgstr "Поглед %s је одбачен" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "Табела %s је одбачена" @@ -683,7 +698,7 @@ msgstr "Поправи табелу" msgid "Analyze table" msgstr "Анализирај табелу" -#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:56 #: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 #: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 #: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 @@ -1417,7 +1432,7 @@ msgid "Databases" msgstr "Базе" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30 #: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 #: tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -1522,7 +1537,7 @@ msgid "Cannot connect: invalid settings." msgstr "Не могу да се повежем: неисправна подешавања." #: libraries/auth/config.auth.lib.php:91 -#: libraries/auth/cookie.auth.lib.php:205 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:206 libraries/auth/http.auth.lib.php:64 #: test/theme.php:151 #, php-format msgid "Welcome to %s" @@ -1549,56 +1564,56 @@ msgstr "" "php и уверите се да одговарају подацима које сте добили од администратора " "MySQL сервера." -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:231 msgid "Log in" msgstr "Пријављивање" -#: libraries/auth/cookie.auth.lib.php:232 -#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:233 +#: libraries/auth/cookie.auth.lib.php:235 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:94 msgid "phpMyAdmin documentation" msgstr "phpMyAdmin документација" -#: libraries/auth/cookie.auth.lib.php:244 #: libraries/auth/cookie.auth.lib.php:245 +#: libraries/auth/cookie.auth.lib.php:246 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:244 +#: libraries/auth/cookie.auth.lib.php:245 msgid "Server:" msgstr "Сервер" -#: libraries/auth/cookie.auth.lib.php:249 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Username:" msgstr "Корисничко име:" -#: libraries/auth/cookie.auth.lib.php:253 +#: libraries/auth/cookie.auth.lib.php:254 msgid "Password:" msgstr "Лозинка:" -#: libraries/auth/cookie.auth.lib.php:260 +#: libraries/auth/cookie.auth.lib.php:261 msgid "Server Choice" msgstr "Избор сервера" -#: libraries/auth/cookie.auth.lib.php:306 libraries/header.inc.php:58 +#: libraries/auth/cookie.auth.lib.php:307 libraries/header.inc.php:58 msgid "Cookies must be enabled past this point." msgstr "Колачићи (Cookies) морају у овом случају бити активни." -#: libraries/auth/cookie.auth.lib.php:638 +#: libraries/auth/cookie.auth.lib.php:639 #: libraries/auth/signon.auth.lib.php:180 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" -#: libraries/auth/cookie.auth.lib.php:642 +#: libraries/auth/cookie.auth.lib.php:643 #: libraries/auth/signon.auth.lib.php:184 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "Није било активности %s или више секунди, молимо пријавите се поново" -#: libraries/auth/cookie.auth.lib.php:652 -#: libraries/auth/cookie.auth.lib.php:654 +#: libraries/auth/cookie.auth.lib.php:653 +#: libraries/auth/cookie.auth.lib.php:655 #: libraries/auth/signon.auth.lib.php:190 msgid "Cannot log in to the MySQL server" msgstr "Не могу да се пријавим на MySQL сервер" @@ -1719,7 +1734,7 @@ msgstr "en" #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 #: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 -#: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 +#: libraries/sql_query_form.lib.php:421 libraries/sql_query_form.lib.php:424 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" msgstr "Документација" @@ -1862,19 +1877,19 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "Ова функционалност %s је погођена познатом грешком, видите %s" #: libraries/common.lib.php:2833 libraries/common.lib.php:2840 -#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 +#: libraries/db_links.inc.php:53 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 #: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 -#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:86 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "Операције" -#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:265 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1891,36 +1906,31 @@ msgstr "Догађаји" msgid "Name" msgstr "Име" -#: libraries/db_links.inc.php:43 -#, php-format -msgid "Database %s has been dropped." -msgstr "База %s је одбачена." - -#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 -#: libraries/db_links.inc.php:57 +#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43 +#: libraries/db_links.inc.php:44 msgid "Database seems to be empty!" msgstr "База је изгледа празна!" -#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/db_links.inc.php:66 libraries/relation.lib.php:137 #: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:84 +#: libraries/db_links.inc.php:71 msgid "Query" msgstr "Упит по примеру" -#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 +#: libraries/db_links.inc.php:76 libraries/relation.lib.php:133 msgid "Designer" msgstr "Дизајнер" -#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:87 #: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Увоз" -#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:65 #: server_privileges.php:110 server_privileges.php:1718 #: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" @@ -2090,7 +2100,7 @@ msgid "remember template" msgstr "запамти шаблон" #: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 -#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 +#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:509 msgid "Character set of the file:" msgstr "Карактер сет датотеке:" @@ -2143,7 +2153,7 @@ msgstr "" msgid "File to import" msgstr "Датотека за увоз" -#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:497 +#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:484 msgid "Location of the text file" msgstr "Локација текстуалне датотеке" @@ -2151,12 +2161,12 @@ msgstr "Локација текстуалне датотеке" msgid "File uploads are not allowed on this server." msgstr "Слање датотека на овај сервер није дозвољено." -#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 +#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:493 #: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "Директоријум који сте изабрали за слање није доступан" -#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 +#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:496 #: tbl_change.php:925 msgid "web server upload directory" msgstr "директоријум за слање веб сервера " @@ -3540,7 +3550,7 @@ msgid "" msgstr "" "Молимо погледајте у документацији како се ажурира табела Column_comments" -#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:403 msgid "Bookmarked SQL query" msgstr "Запамћен SQL-упит" @@ -3607,7 +3617,7 @@ msgstr "Прикажи статус подређених сервера" msgid "Slave status" msgstr "Прикажи статус подређених сервера" -#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:428 +#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:415 #: server_status.php:736 server_variables.php:51 msgid "Variable" msgstr "Променљива" @@ -3736,51 +3746,51 @@ msgstr "" msgid "Target database" msgstr "Претраживање базе" -#: libraries/sql_query_form.lib.php:219 +#: libraries/sql_query_form.lib.php:217 #, php-format msgid "Run SQL query/queries on server %s" msgstr "Изврши SQL упит(е) на серверу %s" -#: libraries/sql_query_form.lib.php:236 libraries/sql_query_form.lib.php:261 +#: libraries/sql_query_form.lib.php:234 libraries/sql_query_form.lib.php:258 #, php-format msgid "Run SQL query/queries on database %s" msgstr "Изврши SQL упит(е) на бази %s" -#: libraries/sql_query_form.lib.php:307 +#: libraries/sql_query_form.lib.php:294 #, fuzzy #| msgid "Column names" msgid "Columns" msgstr "Имена колона" -#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 +#: libraries/sql_query_form.lib.php:329 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "Запамти SQL-упит" -#: libraries/sql_query_form.lib.php:349 sql.php:669 +#: libraries/sql_query_form.lib.php:336 sql.php:669 msgid "Let every user access this bookmark" msgstr "Дозволи сваком кориснику да приступа овом упамћеном упиту" -#: libraries/sql_query_form.lib.php:355 +#: libraries/sql_query_form.lib.php:342 msgid "Replace existing bookmark of same name" msgstr "Замени постојеће запамћене упите истог имена" -#: libraries/sql_query_form.lib.php:371 +#: libraries/sql_query_form.lib.php:358 msgid "Do not overwrite this query from outside the window" msgstr "Не преписуј овај упит изван прозора" -#: libraries/sql_query_form.lib.php:378 +#: libraries/sql_query_form.lib.php:365 msgid "Delimiter" msgstr "Граничник" -#: libraries/sql_query_form.lib.php:386 +#: libraries/sql_query_form.lib.php:373 msgid " Show this query here again " msgstr "Прикажи поново овај упит" -#: libraries/sql_query_form.lib.php:445 +#: libraries/sql_query_form.lib.php:432 msgid "Submit" msgstr "Пошаљи" -#: libraries/sql_query_form.lib.php:449 +#: libraries/sql_query_form.lib.php:436 msgid "View only" msgstr "Види само" @@ -3851,12 +3861,11 @@ msgstr "" "SQL валидатор није могао да буде покренут. Проверите да ли су инсталиране " "неопходне PHP екстензије описане у %sдокументацији%s." -#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 -#: libraries/tbl_links.inc.php:139 +#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107 msgid "Table seems to be empty!" msgstr "Табела је изгледа празна!" -#: libraries/tbl_links.inc.php:147 +#: libraries/tbl_links.inc.php:115 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" @@ -8026,43 +8035,57 @@ msgstr "Табела %s је освежена" msgid "Flush the table (FLUSH)" msgstr "Освежи табелу (\"FLUSH\")" -#: tbl_operations.php:648 +#: tbl_operations.php:642 +#, fuzzy +#| msgid "Table name" +msgid "Table removal" +msgstr "Назив табеле" + +#: tbl_operations.php:657 +msgid "Empty the table (TRUNCATE)" +msgstr "" + +#: tbl_operations.php:675 +msgid "Drop the table (DROP)" +msgstr "" + +#: tbl_operations.php:696 #, fuzzy msgid "Partition maintenance" msgstr "Радње на табели" -#: tbl_operations.php:656 +#: tbl_operations.php:704 #, php-format msgid "Partition %s" msgstr "" -#: tbl_operations.php:659 +#: tbl_operations.php:707 msgid "Analyze" msgstr "" -#: tbl_operations.php:660 +#: tbl_operations.php:708 #, fuzzy msgid "Check" msgstr "Чешки" -#: tbl_operations.php:661 +#: tbl_operations.php:709 msgid "Optimize" msgstr "" -#: tbl_operations.php:662 +#: tbl_operations.php:710 msgid "Rebuild" msgstr "" -#: tbl_operations.php:663 +#: tbl_operations.php:711 #, fuzzy msgid "Repair" msgstr "Поправи табелу" -#: tbl_operations.php:675 +#: tbl_operations.php:723 msgid "Remove partitioning" msgstr "" -#: tbl_operations.php:701 +#: tbl_operations.php:749 msgid "Check referential integrity:" msgstr "Провери референцијални интегритет:" diff --git a/po/sr@latin.po b/po/sr@latin.po index 7bfc12a3e..2e30ea691 100644 --- a/po/sr@latin.po +++ b/po/sr@latin.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-26 17:18+0200\n" +"POT-Creation-Date: 2010-07-27 10:12+0200\n" "PO-Revision-Date: 2010-07-22 02:27+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: serbian_latin \n" @@ -40,16 +40,16 @@ msgstr "" #: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 #: db_structure.php:89 db_structure.php:91 db_structure.php:102 #: db_structure.php:104 libraries/common.lib.php:2834 -#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Pretraživanje" #: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 -#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_operations.php:468 db_operations.php:492 db_search.php:344 #: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 #: libraries/Theme_Manager.class.php:305 -#: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 +#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:712 #: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 @@ -57,8 +57,8 @@ msgstr "Pretraživanje" #: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 #: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 -#: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: libraries/sql_query_form.lib.php:377 libraries/sql_query_form.lib.php:447 +#: libraries/sql_query_form.lib.php:512 libraries/tbl_properties.inc.php:780 #: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 #: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 #: server_privileges.php:663 server_privileges.php:1620 @@ -68,7 +68,7 @@ msgstr "Pretraživanje" #: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 #: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 -#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_operations.php:726 tbl_select.php:323 tbl_structure.php:559 #: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 #: view_create.php:181 view_operations.php:99 msgid "Go" @@ -251,47 +251,63 @@ msgstr "Naredba" msgid "and then" msgstr "i onda" -#: db_operations.php:390 +#: db_operations.php:379 +#, fuzzy +#| msgid "Rename database to" +msgid "Remove database" +msgstr "Preimenuj bazu u" + +#: db_operations.php:391 +#, php-format +msgid "Database %s has been dropped." +msgstr "Baza %s je odbačena." + +#: db_operations.php:396 +#, fuzzy +msgid "Drop the database (DROP)" +msgstr "Baza ne postoji" + +#: db_operations.php:424 msgid "Copy database to" msgstr "Kopiraj bazu u" -#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:431 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Samo struktura" -#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:432 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Struktura i podaci" -#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:433 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Samo podaci" -#: db_operations.php:407 +#: db_operations.php:441 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE pre kopiranja" -#: db_operations.php:410 libraries/export/sql.php:51 +#: db_operations.php:444 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 #: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "Dodaj %s" -#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: db_operations.php:448 libraries/export/sql.php:77 tbl_operations.php:296 #: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Dodaj AUTO_INCREMENT vrednost" -#: db_operations.php:418 tbl_operations.php:542 +#: db_operations.php:452 tbl_operations.php:542 msgid "Add constraints" msgstr "Dodaj ograničenja" -#: db_operations.php:431 +#: db_operations.php:465 msgid "Switch to copied database" msgstr "Prebaci se na kopiranu bazu" -#: db_operations.php:451 libraries/Index.class.php:447 +#: db_operations.php:485 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 #: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 #: server_collations.php:53 server_collations.php:65 server_databases.php:108 @@ -300,7 +316,7 @@ msgstr "Prebaci se na kopiranu bazu" msgid "Collation" msgstr "Sortiranje" -#: db_operations.php:464 pdf_schema.php:32 +#: db_operations.php:498 pdf_schema.php:32 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -312,7 +328,7 @@ msgstr "" "Dodatne mogućnosti za rad sa povezanim tabelama su isključene. Da biste " "saznali zašto, kliknite %sovde%s." -#: db_operations.php:497 +#: db_operations.php:531 msgid "Edit PDF Pages" msgstr "Uređivanje PDF strana" @@ -369,7 +385,7 @@ msgstr[1] "%s tabela" msgstr[2] "%s tabela" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -461,7 +477,7 @@ msgstr "Izvrši SQL upit" #: db_search.php:50 libraries/auth/config.auth.lib.php:83 #: libraries/auth/config.auth.lib.php:102 -#: libraries/auth/cookie.auth.lib.php:640 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:182 msgid "Access denied" msgstr "Pristup odbijen" @@ -505,7 +521,7 @@ msgid "Browse" msgstr "Pregled" #: db_search.php:254 libraries/display_tbl.lib.php:1163 -#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:440 #: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 @@ -549,14 +565,14 @@ msgstr "Unutar tabela:" #: db_structure.php:79 db_structure.php:80 db_structure.php:92 #: db_structure.php:93 db_structure.php:105 db_structure.php:106 -#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:311 +#: libraries/sql_query_form.lib.php:314 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Novi zapis" #: db_structure.php:81 db_structure.php:94 db_structure.php:107 #: libraries/common.lib.php:2832 libraries/common.lib.php:2839 -#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 +#: libraries/db_links.inc.php:48 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 @@ -569,8 +585,7 @@ msgstr "Struktura" #: db_structure.php:96 db_structure.php:108 db_structure.php:109 #: db_structure.php:530 db_structure.php:531 db_tracking.php:86 #: libraries/Index.class.php:482 libraries/common.lib.php:1663 -#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 #: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 #: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" @@ -579,21 +594,21 @@ msgstr "Odbaci" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 +#: libraries/mult_submits.inc.php:38 msgid "Empty" msgstr "Isprazni" -#: db_structure.php:301 libraries/tbl_links.inc.php:98 +#: db_structure.php:301 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "Tabela %s je ispražnjena" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "View %s has been dropped" msgstr "Pogled %s je odbačen" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "Tabela %s je odbačena" @@ -683,7 +698,7 @@ msgstr "Popravi tabelu" msgid "Analyze table" msgstr "Analiziraj tabelu" -#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:56 #: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 #: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 #: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 @@ -1417,7 +1432,7 @@ msgid "Databases" msgstr "Baze" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30 #: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 #: tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -1522,7 +1537,7 @@ msgid "Cannot connect: invalid settings." msgstr "Ne mogu da se povežem: neispravna podešavanja." #: libraries/auth/config.auth.lib.php:91 -#: libraries/auth/cookie.auth.lib.php:205 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:206 libraries/auth/http.auth.lib.php:64 #: test/theme.php:151 #, php-format msgid "Welcome to %s" @@ -1549,56 +1564,56 @@ msgstr "" "php i uverite se da odgovaraju podacima koje ste dobili od administratora " "MySQL servera." -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:231 msgid "Log in" msgstr "Prijavljivanje" -#: libraries/auth/cookie.auth.lib.php:232 -#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:233 +#: libraries/auth/cookie.auth.lib.php:235 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:94 msgid "phpMyAdmin documentation" msgstr "phpMyAdmin dokumentacija" -#: libraries/auth/cookie.auth.lib.php:244 #: libraries/auth/cookie.auth.lib.php:245 +#: libraries/auth/cookie.auth.lib.php:246 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:244 +#: libraries/auth/cookie.auth.lib.php:245 msgid "Server:" msgstr "Server" -#: libraries/auth/cookie.auth.lib.php:249 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Username:" msgstr "Korisničko ime:" -#: libraries/auth/cookie.auth.lib.php:253 +#: libraries/auth/cookie.auth.lib.php:254 msgid "Password:" msgstr "Lozinka:" -#: libraries/auth/cookie.auth.lib.php:260 +#: libraries/auth/cookie.auth.lib.php:261 msgid "Server Choice" msgstr "Izbor servera" -#: libraries/auth/cookie.auth.lib.php:306 libraries/header.inc.php:58 +#: libraries/auth/cookie.auth.lib.php:307 libraries/header.inc.php:58 msgid "Cookies must be enabled past this point." msgstr "Kolačići (Cookies) moraju u ovom slučaju biti aktivni." -#: libraries/auth/cookie.auth.lib.php:638 +#: libraries/auth/cookie.auth.lib.php:639 #: libraries/auth/signon.auth.lib.php:180 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" -#: libraries/auth/cookie.auth.lib.php:642 +#: libraries/auth/cookie.auth.lib.php:643 #: libraries/auth/signon.auth.lib.php:184 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "Nije bilo aktivnosti %s ili više sekundi, molimo prijavite se ponovo" -#: libraries/auth/cookie.auth.lib.php:652 -#: libraries/auth/cookie.auth.lib.php:654 +#: libraries/auth/cookie.auth.lib.php:653 +#: libraries/auth/cookie.auth.lib.php:655 #: libraries/auth/signon.auth.lib.php:190 msgid "Cannot log in to the MySQL server" msgstr "Ne mogu da se prijavim na MySQL server" @@ -1719,7 +1734,7 @@ msgstr "en" #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 #: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 -#: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 +#: libraries/sql_query_form.lib.php:421 libraries/sql_query_form.lib.php:424 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" msgstr "Dokumentacija" @@ -1862,19 +1877,19 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "Ova funkcionalnost %s je pogođena poznatom greškom, vidite %s" #: libraries/common.lib.php:2833 libraries/common.lib.php:2840 -#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 +#: libraries/db_links.inc.php:53 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 #: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 -#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:86 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "Operacije" -#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:265 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1891,36 +1906,31 @@ msgstr "Događaji" msgid "Name" msgstr "Ime" -#: libraries/db_links.inc.php:43 -#, php-format -msgid "Database %s has been dropped." -msgstr "Baza %s je odbačena." - -#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 -#: libraries/db_links.inc.php:57 +#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43 +#: libraries/db_links.inc.php:44 msgid "Database seems to be empty!" msgstr "Baza je izgleda prazna!" -#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/db_links.inc.php:66 libraries/relation.lib.php:137 #: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:84 +#: libraries/db_links.inc.php:71 msgid "Query" msgstr "Upit po primeru" -#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 +#: libraries/db_links.inc.php:76 libraries/relation.lib.php:133 msgid "Designer" msgstr "Dizajner" -#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:87 #: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Uvoz" -#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:65 #: server_privileges.php:110 server_privileges.php:1718 #: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" @@ -2090,7 +2100,7 @@ msgid "remember template" msgstr "zapamti šablon" #: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 -#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 +#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:509 msgid "Character set of the file:" msgstr "Karakter set datoteke:" @@ -2143,7 +2153,7 @@ msgstr "" msgid "File to import" msgstr "Datoteka za uvoz" -#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:497 +#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:484 msgid "Location of the text file" msgstr "Lokacija tekstualne datoteke" @@ -2151,12 +2161,12 @@ msgstr "Lokacija tekstualne datoteke" msgid "File uploads are not allowed on this server." msgstr "Slanje datoteka na ovaj server nije dozvoljeno." -#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 +#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:493 #: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "Direktorijum koji ste izabrali za slanje nije dostupan" -#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 +#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:496 #: tbl_change.php:925 msgid "web server upload directory" msgstr "direktorijum za slanje veb servera " @@ -3536,7 +3546,7 @@ msgid "" msgstr "" "Molimo pogledajte u dokumentaciji kako se ažurira tabela Column_comments" -#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:403 msgid "Bookmarked SQL query" msgstr "Zapamćen SQL-upit" @@ -3603,7 +3613,7 @@ msgstr "Prikaži status podređenih servera" msgid "Slave status" msgstr "Prikaži status podređenih servera" -#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:428 +#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:415 #: server_status.php:736 server_variables.php:51 msgid "Variable" msgstr "Promenljiva" @@ -3732,51 +3742,51 @@ msgstr "" msgid "Target database" msgstr "Pretraživanje baze" -#: libraries/sql_query_form.lib.php:219 +#: libraries/sql_query_form.lib.php:217 #, 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:236 libraries/sql_query_form.lib.php:261 +#: libraries/sql_query_form.lib.php:234 libraries/sql_query_form.lib.php:258 #, 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:307 +#: libraries/sql_query_form.lib.php:294 #, fuzzy #| msgid "Column names" msgid "Columns" msgstr "Imena kolona" -#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 +#: libraries/sql_query_form.lib.php:329 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "Zapamti SQL-upit" -#: libraries/sql_query_form.lib.php:349 sql.php:669 +#: libraries/sql_query_form.lib.php:336 sql.php:669 msgid "Let every user access this bookmark" msgstr "Dozvoli svakom korisniku da pristupa ovom upamćenom upitu" -#: libraries/sql_query_form.lib.php:355 +#: libraries/sql_query_form.lib.php:342 msgid "Replace existing bookmark of same name" msgstr "Zameni postojeće zapamćene upite istog imena" -#: libraries/sql_query_form.lib.php:371 +#: libraries/sql_query_form.lib.php:358 msgid "Do not overwrite this query from outside the window" msgstr "Ne prepisuj ovaj upit izvan prozora" -#: libraries/sql_query_form.lib.php:378 +#: libraries/sql_query_form.lib.php:365 msgid "Delimiter" msgstr "Graničnik" -#: libraries/sql_query_form.lib.php:386 +#: libraries/sql_query_form.lib.php:373 msgid " Show this query here again " msgstr "Prikaži ponovo ovaj upit" -#: libraries/sql_query_form.lib.php:445 +#: libraries/sql_query_form.lib.php:432 msgid "Submit" msgstr "Pošalji" -#: libraries/sql_query_form.lib.php:449 +#: libraries/sql_query_form.lib.php:436 msgid "View only" msgstr "Vidi samo" @@ -3847,12 +3857,11 @@ msgstr "" "SQL validator nije mogao da bude pokrenut. Proverite da li su instalirane " "neophodne PHP ekstenzije opisane u %sdokumentaciji%s." -#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 -#: libraries/tbl_links.inc.php:139 +#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107 msgid "Table seems to be empty!" msgstr "Tabela je izgleda prazna!" -#: libraries/tbl_links.inc.php:147 +#: libraries/tbl_links.inc.php:115 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" @@ -8027,43 +8036,57 @@ msgstr "Tabela %s je osvežena" msgid "Flush the table (FLUSH)" msgstr "Osveži tabelu (\"FLUSH\")" -#: tbl_operations.php:648 +#: tbl_operations.php:642 +#, fuzzy +#| msgid "Table name" +msgid "Table removal" +msgstr "Naziv tabele" + +#: tbl_operations.php:657 +msgid "Empty the table (TRUNCATE)" +msgstr "" + +#: tbl_operations.php:675 +msgid "Drop the table (DROP)" +msgstr "" + +#: tbl_operations.php:696 #, fuzzy msgid "Partition maintenance" msgstr "Radnje na tabeli" -#: tbl_operations.php:656 +#: tbl_operations.php:704 #, php-format msgid "Partition %s" msgstr "" -#: tbl_operations.php:659 +#: tbl_operations.php:707 msgid "Analyze" msgstr "" -#: tbl_operations.php:660 +#: tbl_operations.php:708 #, fuzzy msgid "Check" msgstr "Češki" -#: tbl_operations.php:661 +#: tbl_operations.php:709 msgid "Optimize" msgstr "" -#: tbl_operations.php:662 +#: tbl_operations.php:710 msgid "Rebuild" msgstr "" -#: tbl_operations.php:663 +#: tbl_operations.php:711 #, fuzzy msgid "Repair" msgstr "Popravi tabelu" -#: tbl_operations.php:675 +#: tbl_operations.php:723 msgid "Remove partitioning" msgstr "" -#: tbl_operations.php:701 +#: tbl_operations.php:749 msgid "Check referential integrity:" msgstr "Proveri referencijalni integritet:" diff --git a/po/sv.po b/po/sv.po index 0f3cb0345..450120f95 100644 --- a/po/sv.po +++ b/po/sv.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-26 17:18+0200\n" +"POT-Creation-Date: 2010-07-27 10:12+0200\n" "PO-Revision-Date: 2010-07-21 14:48+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: swedish \n" @@ -39,16 +39,16 @@ msgstr "" #: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 #: db_structure.php:89 db_structure.php:91 db_structure.php:102 #: db_structure.php:104 libraries/common.lib.php:2834 -#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Sök" #: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 -#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_operations.php:468 db_operations.php:492 db_search.php:344 #: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 #: libraries/Theme_Manager.class.php:305 -#: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 +#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:712 #: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 @@ -56,8 +56,8 @@ msgstr "Sök" #: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 #: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 -#: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: libraries/sql_query_form.lib.php:377 libraries/sql_query_form.lib.php:447 +#: libraries/sql_query_form.lib.php:512 libraries/tbl_properties.inc.php:780 #: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 #: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 #: server_privileges.php:663 server_privileges.php:1620 @@ -67,7 +67,7 @@ msgstr "Sök" #: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 #: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 -#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_operations.php:726 tbl_select.php:323 tbl_structure.php:559 #: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 #: view_create.php:181 view_operations.php:99 msgid "Go" @@ -250,47 +250,63 @@ msgstr "Kommando" msgid "and then" msgstr "och sedan" -#: db_operations.php:390 +#: db_operations.php:379 +#, fuzzy +#| msgid "Rename database to" +msgid "Remove database" +msgstr "Döp om databasen till" + +#: db_operations.php:391 +#, php-format +msgid "Database %s has been dropped." +msgstr "Databasen %s har tagits bort." + +#: db_operations.php:396 +#, fuzzy +msgid "Drop the database (DROP)" +msgstr "Inga databaser" + +#: db_operations.php:424 msgid "Copy database to" msgstr "Kopiera databas till" -#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:431 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Enbart struktur" -#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:432 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Struktur och data" -#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:433 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Enbart data" -#: db_operations.php:407 +#: db_operations.php:441 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE före kopiering" -#: db_operations.php:410 libraries/export/sql.php:51 +#: db_operations.php:444 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 #: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "Lägg till %s" -#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: db_operations.php:448 libraries/export/sql.php:77 tbl_operations.php:296 #: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Lägg till AUTO_INCREMENT-värde" -#: db_operations.php:418 tbl_operations.php:542 +#: db_operations.php:452 tbl_operations.php:542 msgid "Add constraints" msgstr "Lägg till restriktioner" -#: db_operations.php:431 +#: db_operations.php:465 msgid "Switch to copied database" msgstr "Byt till kopierad databas" -#: db_operations.php:451 libraries/Index.class.php:447 +#: db_operations.php:485 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 #: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 #: server_collations.php:53 server_collations.php:65 server_databases.php:108 @@ -299,7 +315,7 @@ msgstr "Byt till kopierad databas" msgid "Collation" msgstr "Kollationering" -#: db_operations.php:464 pdf_schema.php:32 +#: db_operations.php:498 pdf_schema.php:32 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -311,7 +327,7 @@ msgstr "" "Den extra funktionaliteten för att hantera länkade tabeller har " "inaktiverats. %sVisa orsaken%s." -#: db_operations.php:497 +#: db_operations.php:531 msgid "Edit PDF Pages" msgstr "Redigera PDF-sidor" @@ -367,7 +383,7 @@ msgstr[0] "%s tabell(er)" msgstr[1] "%s tabell(er)" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -459,7 +475,7 @@ msgstr "Kör fråga" #: db_search.php:50 libraries/auth/config.auth.lib.php:83 #: libraries/auth/config.auth.lib.php:102 -#: libraries/auth/cookie.auth.lib.php:640 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:182 msgid "Access denied" msgstr "Åtkomst nekad" @@ -502,7 +518,7 @@ msgid "Browse" msgstr "Visa" #: db_search.php:254 libraries/display_tbl.lib.php:1163 -#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:440 #: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 @@ -545,14 +561,14 @@ msgstr "I fält:" #: db_structure.php:79 db_structure.php:80 db_structure.php:92 #: db_structure.php:93 db_structure.php:105 db_structure.php:106 -#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:311 +#: libraries/sql_query_form.lib.php:314 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Lägg till" #: db_structure.php:81 db_structure.php:94 db_structure.php:107 #: libraries/common.lib.php:2832 libraries/common.lib.php:2839 -#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 +#: libraries/db_links.inc.php:48 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 @@ -565,8 +581,7 @@ msgstr "Struktur" #: db_structure.php:96 db_structure.php:108 db_structure.php:109 #: db_structure.php:530 db_structure.php:531 db_tracking.php:86 #: libraries/Index.class.php:482 libraries/common.lib.php:1663 -#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 #: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 #: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" @@ -575,21 +590,21 @@ msgstr "Radera" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 +#: libraries/mult_submits.inc.php:38 msgid "Empty" msgstr "Töm" -#: db_structure.php:301 libraries/tbl_links.inc.php:98 +#: db_structure.php:301 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "Tabellen %s har tömts" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "View %s has been dropped" msgstr "Vyn %s har tagits bort" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "Tabellen %s har tagits bort" @@ -679,7 +694,7 @@ msgstr "Reparera tabell" msgid "Analyze table" msgstr "Analysera tabell" -#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:56 #: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 #: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 #: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 @@ -1416,7 +1431,7 @@ msgid "Databases" msgstr "Databaser" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30 #: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 #: tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -1524,7 +1539,7 @@ msgid "Cannot connect: invalid settings." msgstr "Kan ej skapa förbindelse: ogiltiga inställningar." #: libraries/auth/config.auth.lib.php:91 -#: libraries/auth/cookie.auth.lib.php:205 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:206 libraries/auth/http.auth.lib.php:64 #: test/theme.php:151 #, php-format msgid "Welcome to %s" @@ -1551,43 +1566,43 @@ msgstr "" "inc.php och förvissa dig om att de stämmer överens med informationen från " "administratören av MySQL-servern." -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:231 msgid "Log in" msgstr "Logga in" -#: libraries/auth/cookie.auth.lib.php:232 -#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:233 +#: libraries/auth/cookie.auth.lib.php:235 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:94 msgid "phpMyAdmin documentation" msgstr "phpMyAdmin dokumentation" -#: libraries/auth/cookie.auth.lib.php:244 #: libraries/auth/cookie.auth.lib.php:245 +#: libraries/auth/cookie.auth.lib.php:246 msgid "You can enter hostname/IP address and port separated by space." msgstr "Du kan ange värdnamn/IP-adress och port separerade med mellanslag." -#: libraries/auth/cookie.auth.lib.php:244 +#: libraries/auth/cookie.auth.lib.php:245 msgid "Server:" msgstr "Server" -#: libraries/auth/cookie.auth.lib.php:249 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Username:" msgstr "Användarnamn:" -#: libraries/auth/cookie.auth.lib.php:253 +#: libraries/auth/cookie.auth.lib.php:254 msgid "Password:" msgstr "Lösenord:" -#: libraries/auth/cookie.auth.lib.php:260 +#: libraries/auth/cookie.auth.lib.php:261 msgid "Server Choice" msgstr "Serverval" -#: libraries/auth/cookie.auth.lib.php:306 libraries/header.inc.php:58 +#: libraries/auth/cookie.auth.lib.php:307 libraries/header.inc.php:58 msgid "Cookies must be enabled past this point." msgstr "Kakor (cookies) måste tillåtas för att gå vidare." -#: libraries/auth/cookie.auth.lib.php:638 +#: libraries/auth/cookie.auth.lib.php:639 #: libraries/auth/signon.auth.lib.php:180 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" @@ -1595,14 +1610,14 @@ msgstr "" "Inloggning utan lösenord är inte tillåtet enligt konfiguration (se " "AllowNoPassword)" -#: libraries/auth/cookie.auth.lib.php:642 +#: libraries/auth/cookie.auth.lib.php:643 #: libraries/auth/signon.auth.lib.php:184 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "Ingen aktivitet sedan %s sekunder eller mer. Var god logga in igen" -#: libraries/auth/cookie.auth.lib.php:652 -#: libraries/auth/cookie.auth.lib.php:654 +#: libraries/auth/cookie.auth.lib.php:653 +#: libraries/auth/cookie.auth.lib.php:655 #: libraries/auth/signon.auth.lib.php:190 msgid "Cannot log in to the MySQL server" msgstr "Kan ej logga in på MySQL-server" @@ -1724,7 +1739,7 @@ msgstr "Skickade" #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 #: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 -#: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 +#: libraries/sql_query_form.lib.php:421 libraries/sql_query_form.lib.php:424 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" msgstr "Dokumentation" @@ -1869,19 +1884,19 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "Funktionaliteten för %s påverkas av en känd bugg, se %s" #: libraries/common.lib.php:2833 libraries/common.lib.php:2840 -#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 +#: libraries/db_links.inc.php:53 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 #: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 -#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:86 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "Operationer" -#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:265 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1897,36 +1912,31 @@ msgstr "Händelser" msgid "Name" msgstr "Namn" -#: libraries/db_links.inc.php:43 -#, php-format -msgid "Database %s has been dropped." -msgstr "Databasen %s har tagits bort." - -#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 -#: libraries/db_links.inc.php:57 +#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43 +#: libraries/db_links.inc.php:44 msgid "Database seems to be empty!" msgstr "Databasen verkar vara tom!" -#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/db_links.inc.php:66 libraries/relation.lib.php:137 #: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:84 +#: libraries/db_links.inc.php:71 msgid "Query" msgstr "Skapa fråga" -#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 +#: libraries/db_links.inc.php:76 libraries/relation.lib.php:133 msgid "Designer" msgstr "Designer" -#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:87 #: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importera" -#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:65 #: server_privileges.php:110 server_privileges.php:1718 #: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" @@ -2093,7 +2103,7 @@ msgid "remember template" msgstr "kom ihåg mall" #: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 -#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 +#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:509 msgid "Character set of the file:" msgstr "Filens teckenuppsättning:" @@ -2151,7 +2161,7 @@ msgstr "" msgid "File to import" msgstr "Fil att importera" -#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:497 +#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:484 msgid "Location of the text file" msgstr "Textfilens plats" @@ -2159,12 +2169,12 @@ msgstr "Textfilens plats" msgid "File uploads are not allowed on this server." msgstr "Filuppladdningar är inte tillåtna på denna server." -#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 +#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:493 #: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "Katalogen som du konfigurerat för uppladdning kan inte nås" -#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 +#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:496 #: tbl_change.php:925 msgid "web server upload directory" msgstr "Uppladdningskatalog på webbserver" @@ -3579,7 +3589,7 @@ msgid "" "Please see the documentation on how to update your column_comments table" msgstr "Se dokumentationen för uppdatering av din tabell column_comments" -#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:403 msgid "Bookmarked SQL query" msgstr "Bokmärkt SQL-fråga" @@ -3645,7 +3655,7 @@ msgstr "Master-status" msgid "Slave status" msgstr "Slave-status" -#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:428 +#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:415 #: server_status.php:736 server_variables.php:51 msgid "Variable" msgstr "Variabel" @@ -3777,51 +3787,51 @@ msgstr "" msgid "Target database" msgstr "Sök i databas" -#: libraries/sql_query_form.lib.php:219 +#: libraries/sql_query_form.lib.php:217 #, 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:236 libraries/sql_query_form.lib.php:261 +#: libraries/sql_query_form.lib.php:234 libraries/sql_query_form.lib.php:258 #, 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:307 +#: libraries/sql_query_form.lib.php:294 #, fuzzy #| msgid "Column names" msgid "Columns" msgstr "Kolumn-namn" -#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 +#: libraries/sql_query_form.lib.php:329 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "Skapa bokmärke för den här SQL-frågan" -#: libraries/sql_query_form.lib.php:349 sql.php:669 +#: libraries/sql_query_form.lib.php:336 sql.php:669 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:355 +#: libraries/sql_query_form.lib.php:342 msgid "Replace existing bookmark of same name" msgstr "Ersätt befintligt bokmärke med samma namn" -#: libraries/sql_query_form.lib.php:371 +#: libraries/sql_query_form.lib.php:358 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:378 +#: libraries/sql_query_form.lib.php:365 msgid "Delimiter" msgstr "Avgränsare" -#: libraries/sql_query_form.lib.php:386 +#: libraries/sql_query_form.lib.php:373 msgid " Show this query here again " msgstr " Visa frågan här igen " -#: libraries/sql_query_form.lib.php:445 +#: libraries/sql_query_form.lib.php:432 msgid "Submit" msgstr "Sänd" -#: libraries/sql_query_form.lib.php:449 +#: libraries/sql_query_form.lib.php:436 msgid "View only" msgstr "Visa endast" @@ -3893,12 +3903,11 @@ msgstr "" "SQL-validatorn kunde inte initieras. Kontrollera om du har installerat de " "nödvändiga PHP-tilläggen enligt %sdokumentationen%s." -#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 -#: libraries/tbl_links.inc.php:139 +#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107 msgid "Table seems to be empty!" msgstr "Tabellen verkar vara tom!" -#: libraries/tbl_links.inc.php:147 +#: libraries/tbl_links.inc.php:115 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" @@ -8264,40 +8273,54 @@ msgstr "Tabellen %s har rensats" msgid "Flush the table (FLUSH)" msgstr "Rensa tabell" -#: tbl_operations.php:648 +#: tbl_operations.php:642 +#, fuzzy +#| msgid "Table name" +msgid "Table removal" +msgstr "Tabellnamn" + +#: tbl_operations.php:657 +msgid "Empty the table (TRUNCATE)" +msgstr "" + +#: tbl_operations.php:675 +msgid "Drop the table (DROP)" +msgstr "" + +#: tbl_operations.php:696 msgid "Partition maintenance" msgstr "Partitionsunderhåll" -#: tbl_operations.php:656 +#: tbl_operations.php:704 #, php-format msgid "Partition %s" msgstr "Partition %s" -#: tbl_operations.php:659 +#: tbl_operations.php:707 msgid "Analyze" msgstr "Analysera" -#: tbl_operations.php:660 +#: tbl_operations.php:708 msgid "Check" msgstr "Kontrollera" -#: tbl_operations.php:661 +#: tbl_operations.php:709 msgid "Optimize" msgstr "Optimera" -#: tbl_operations.php:662 +#: tbl_operations.php:710 msgid "Rebuild" msgstr "Omskapa" -#: tbl_operations.php:663 +#: tbl_operations.php:711 msgid "Repair" msgstr "Reparera" -#: tbl_operations.php:675 +#: tbl_operations.php:723 msgid "Remove partitioning" msgstr "Ta bort partitionering" -#: tbl_operations.php:701 +#: tbl_operations.php:749 msgid "Check referential integrity:" msgstr "Kontrollera referensintegritet:" diff --git a/po/ta.po b/po/ta.po index 293666b0e..ddd2a6404 100644 --- a/po/ta.po +++ b/po/ta.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-26 17:18+0200\n" +"POT-Creation-Date: 2010-07-27 10:12+0200\n" "PO-Revision-Date: 2010-04-16 10:43+0200\n" "Last-Translator: Sutharshan \n" "Language-Team: Tamil \n" @@ -39,16 +39,16 @@ msgstr "" #: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 #: db_structure.php:89 db_structure.php:91 db_structure.php:102 #: db_structure.php:104 libraries/common.lib.php:2834 -#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "" #: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 -#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_operations.php:468 db_operations.php:492 db_search.php:344 #: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 #: libraries/Theme_Manager.class.php:305 -#: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 +#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:712 #: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 @@ -56,8 +56,8 @@ msgstr "" #: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 #: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 -#: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: libraries/sql_query_form.lib.php:377 libraries/sql_query_form.lib.php:447 +#: libraries/sql_query_form.lib.php:512 libraries/tbl_properties.inc.php:780 #: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 #: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 #: server_privileges.php:663 server_privileges.php:1620 @@ -67,7 +67,7 @@ msgstr "" #: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 #: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 -#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_operations.php:726 tbl_select.php:323 tbl_structure.php:559 #: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 #: view_create.php:181 view_operations.php:99 msgid "Go" @@ -246,47 +246,60 @@ msgstr "" msgid "and then" msgstr "" -#: db_operations.php:390 +#: db_operations.php:379 +msgid "Remove database" +msgstr "" + +#: db_operations.php:391 +#, php-format +msgid "Database %s has been dropped." +msgstr "" + +#: db_operations.php:396 +msgid "Drop the database (DROP)" +msgstr "" + +#: db_operations.php:424 msgid "Copy database to" msgstr "" -#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:431 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "" -#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:432 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "" -#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:433 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "" -#: db_operations.php:407 +#: db_operations.php:441 msgid "CREATE DATABASE before copying" msgstr "" -#: db_operations.php:410 libraries/export/sql.php:51 +#: db_operations.php:444 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 #: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "%sஐ சேர்க்க" -#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: db_operations.php:448 libraries/export/sql.php:77 tbl_operations.php:296 #: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "தானாக அதிகரிக்கும் பெறுமதியை சேர்க்க" -#: db_operations.php:418 tbl_operations.php:542 +#: db_operations.php:452 tbl_operations.php:542 msgid "Add constraints" msgstr "தடைகளை சேர்க்க" -#: db_operations.php:431 +#: db_operations.php:465 msgid "Switch to copied database" msgstr "" -#: db_operations.php:451 libraries/Index.class.php:447 +#: db_operations.php:485 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 #: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 #: server_collations.php:53 server_collations.php:65 server_databases.php:108 @@ -295,14 +308,14 @@ msgstr "" msgid "Collation" msgstr "" -#: db_operations.php:464 pdf_schema.php:32 +#: db_operations.php:498 pdf_schema.php:32 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." msgstr "" -#: db_operations.php:497 +#: db_operations.php:531 msgid "Edit PDF Pages" msgstr "" @@ -357,7 +370,7 @@ msgstr[0] "" msgstr[1] "" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -449,7 +462,7 @@ msgstr "" #: db_search.php:50 libraries/auth/config.auth.lib.php:83 #: libraries/auth/config.auth.lib.php:102 -#: libraries/auth/cookie.auth.lib.php:640 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:182 msgid "Access denied" msgstr "அனுமதி நிராகரிக்கப்பட்டுள்ளது" @@ -491,7 +504,7 @@ msgid "Browse" msgstr "" #: db_search.php:254 libraries/display_tbl.lib.php:1163 -#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:440 #: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 @@ -531,14 +544,14 @@ msgstr "" #: db_structure.php:79 db_structure.php:80 db_structure.php:92 #: db_structure.php:93 db_structure.php:105 db_structure.php:106 -#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:311 +#: libraries/sql_query_form.lib.php:314 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "" #: db_structure.php:81 db_structure.php:94 db_structure.php:107 #: libraries/common.lib.php:2832 libraries/common.lib.php:2839 -#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 +#: libraries/db_links.inc.php:48 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 @@ -551,8 +564,7 @@ msgstr "" #: db_structure.php:96 db_structure.php:108 db_structure.php:109 #: db_structure.php:530 db_structure.php:531 db_tracking.php:86 #: libraries/Index.class.php:482 libraries/common.lib.php:1663 -#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 #: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 #: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" @@ -561,21 +573,21 @@ msgstr "" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 +#: libraries/mult_submits.inc.php:38 msgid "Empty" msgstr "" -#: db_structure.php:301 libraries/tbl_links.inc.php:98 +#: db_structure.php:301 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "View %s has been dropped" msgstr "" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "" @@ -665,7 +677,7 @@ msgstr "" msgid "Analyze table" msgstr "" -#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:56 #: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 #: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 #: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 @@ -1359,7 +1371,7 @@ msgid "Databases" msgstr "" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30 #: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 #: tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -1462,7 +1474,7 @@ msgid "Cannot connect: invalid settings." msgstr "" #: libraries/auth/config.auth.lib.php:91 -#: libraries/auth/cookie.auth.lib.php:205 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:206 libraries/auth/http.auth.lib.php:64 #: test/theme.php:151 #, php-format msgid "Welcome to %s" @@ -1488,56 +1500,56 @@ msgstr "" "சேவர், பயனாளர் பெயர், கடவுச் சொல் என்பவை MySql நிர்வாகியால் வழங்கப்பட்ட தரவுகளுடன் " "பொருந்துகின்றதா என சரி பாருங்கள்." -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:231 msgid "Log in" msgstr "" -#: libraries/auth/cookie.auth.lib.php:232 -#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:233 +#: libraries/auth/cookie.auth.lib.php:235 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:94 msgid "phpMyAdmin documentation" msgstr "" -#: libraries/auth/cookie.auth.lib.php:244 #: libraries/auth/cookie.auth.lib.php:245 +#: libraries/auth/cookie.auth.lib.php:246 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:244 +#: libraries/auth/cookie.auth.lib.php:245 msgid "Server:" msgstr "" -#: libraries/auth/cookie.auth.lib.php:249 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Username:" msgstr "" -#: libraries/auth/cookie.auth.lib.php:253 +#: libraries/auth/cookie.auth.lib.php:254 msgid "Password:" msgstr "" -#: libraries/auth/cookie.auth.lib.php:260 +#: libraries/auth/cookie.auth.lib.php:261 msgid "Server Choice" msgstr "" -#: libraries/auth/cookie.auth.lib.php:306 libraries/header.inc.php:58 +#: libraries/auth/cookie.auth.lib.php:307 libraries/header.inc.php:58 msgid "Cookies must be enabled past this point." msgstr "" -#: libraries/auth/cookie.auth.lib.php:638 +#: libraries/auth/cookie.auth.lib.php:639 #: libraries/auth/signon.auth.lib.php:180 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" -#: libraries/auth/cookie.auth.lib.php:642 +#: libraries/auth/cookie.auth.lib.php:643 #: libraries/auth/signon.auth.lib.php:184 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" -#: libraries/auth/cookie.auth.lib.php:652 -#: libraries/auth/cookie.auth.lib.php:654 +#: libraries/auth/cookie.auth.lib.php:653 +#: libraries/auth/cookie.auth.lib.php:655 #: libraries/auth/signon.auth.lib.php:190 msgid "Cannot log in to the MySQL server" msgstr "" @@ -1648,7 +1660,7 @@ msgstr "en" #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 #: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 -#: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 +#: libraries/sql_query_form.lib.php:421 libraries/sql_query_form.lib.php:424 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" msgstr "" @@ -1789,19 +1801,19 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/common.lib.php:2833 libraries/common.lib.php:2840 -#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 +#: libraries/db_links.inc.php:53 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 #: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "" -#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 -#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:86 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "" -#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:265 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1817,36 +1829,31 @@ msgstr "" msgid "Name" msgstr "" -#: libraries/db_links.inc.php:43 -#, php-format -msgid "Database %s has been dropped." -msgstr "" - -#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 -#: libraries/db_links.inc.php:57 +#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43 +#: libraries/db_links.inc.php:44 msgid "Database seems to be empty!" msgstr "" -#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/db_links.inc.php:66 libraries/relation.lib.php:137 #: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:84 +#: libraries/db_links.inc.php:71 msgid "Query" msgstr "" -#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 +#: libraries/db_links.inc.php:76 libraries/relation.lib.php:133 msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:87 #: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "" -#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:65 #: server_privileges.php:110 server_privileges.php:1718 #: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" @@ -2003,7 +2010,7 @@ msgid "remember template" msgstr "" #: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 -#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 +#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:509 msgid "Character set of the file:" msgstr "" @@ -2056,7 +2063,7 @@ msgstr "" msgid "File to import" msgstr "" -#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:497 +#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:484 msgid "Location of the text file" msgstr "" @@ -2064,12 +2071,12 @@ msgstr "" msgid "File uploads are not allowed on this server." msgstr "" -#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 +#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:493 #: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "" -#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 +#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:496 #: tbl_change.php:925 msgid "web server upload directory" msgstr "" @@ -3392,7 +3399,7 @@ msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" -#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:403 msgid "Bookmarked SQL query" msgstr "" @@ -3457,7 +3464,7 @@ msgstr "" msgid "Slave status" msgstr "" -#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:428 +#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:415 #: server_status.php:736 server_variables.php:51 msgid "Variable" msgstr "" @@ -3584,49 +3591,49 @@ msgstr "" msgid "Target database" msgstr "" -#: libraries/sql_query_form.lib.php:219 +#: libraries/sql_query_form.lib.php:217 #, php-format msgid "Run SQL query/queries on server %s" msgstr "" -#: libraries/sql_query_form.lib.php:236 libraries/sql_query_form.lib.php:261 +#: libraries/sql_query_form.lib.php:234 libraries/sql_query_form.lib.php:258 #, php-format msgid "Run SQL query/queries on database %s" msgstr "" -#: libraries/sql_query_form.lib.php:307 +#: libraries/sql_query_form.lib.php:294 msgid "Columns" msgstr "" -#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 +#: libraries/sql_query_form.lib.php:329 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql_query_form.lib.php:349 sql.php:669 +#: libraries/sql_query_form.lib.php:336 sql.php:669 msgid "Let every user access this bookmark" msgstr "" -#: libraries/sql_query_form.lib.php:355 +#: libraries/sql_query_form.lib.php:342 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/sql_query_form.lib.php:371 +#: libraries/sql_query_form.lib.php:358 msgid "Do not overwrite this query from outside the window" msgstr "" -#: libraries/sql_query_form.lib.php:378 +#: libraries/sql_query_form.lib.php:365 msgid "Delimiter" msgstr "" -#: libraries/sql_query_form.lib.php:386 +#: libraries/sql_query_form.lib.php:373 msgid " Show this query here again " msgstr "" -#: libraries/sql_query_form.lib.php:445 +#: libraries/sql_query_form.lib.php:432 msgid "Submit" msgstr "" -#: libraries/sql_query_form.lib.php:449 +#: libraries/sql_query_form.lib.php:436 msgid "View only" msgstr "" @@ -3684,12 +3691,11 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" -#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 -#: libraries/tbl_links.inc.php:139 +#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107 msgid "Table seems to be empty!" msgstr "" -#: libraries/tbl_links.inc.php:147 +#: libraries/tbl_links.inc.php:115 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" @@ -7510,40 +7516,52 @@ msgstr "" msgid "Flush the table (FLUSH)" msgstr "" -#: tbl_operations.php:648 +#: tbl_operations.php:642 +msgid "Table removal" +msgstr "" + +#: tbl_operations.php:657 +msgid "Empty the table (TRUNCATE)" +msgstr "" + +#: tbl_operations.php:675 +msgid "Drop the table (DROP)" +msgstr "" + +#: tbl_operations.php:696 msgid "Partition maintenance" msgstr "" -#: tbl_operations.php:656 +#: tbl_operations.php:704 #, php-format msgid "Partition %s" msgstr "" -#: tbl_operations.php:659 +#: tbl_operations.php:707 msgid "Analyze" msgstr "" -#: tbl_operations.php:660 +#: tbl_operations.php:708 msgid "Check" msgstr "" -#: tbl_operations.php:661 +#: tbl_operations.php:709 msgid "Optimize" msgstr "" -#: tbl_operations.php:662 +#: tbl_operations.php:710 msgid "Rebuild" msgstr "" -#: tbl_operations.php:663 +#: tbl_operations.php:711 msgid "Repair" msgstr "" -#: tbl_operations.php:675 +#: tbl_operations.php:723 msgid "Remove partitioning" msgstr "" -#: tbl_operations.php:701 +#: tbl_operations.php:749 msgid "Check referential integrity:" msgstr "" diff --git a/po/te.po b/po/te.po index a8df35bef..06ee665bf 100644 --- a/po/te.po +++ b/po/te.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-26 17:18+0200\n" +"POT-Creation-Date: 2010-07-27 10:12+0200\n" "PO-Revision-Date: 2010-05-26 14:20+0200\n" "Last-Translator: \n" "Language-Team: Telugu \n" @@ -40,16 +40,16 @@ msgstr "" #: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 #: db_structure.php:89 db_structure.php:91 db_structure.php:102 #: db_structure.php:104 libraries/common.lib.php:2834 -#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "శోధించు" #: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 -#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_operations.php:468 db_operations.php:492 db_search.php:344 #: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 #: libraries/Theme_Manager.class.php:305 -#: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 +#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:712 #: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 @@ -57,8 +57,8 @@ msgstr "శోధించు" #: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 #: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 -#: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: libraries/sql_query_form.lib.php:377 libraries/sql_query_form.lib.php:447 +#: libraries/sql_query_form.lib.php:512 libraries/tbl_properties.inc.php:780 #: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 #: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 #: server_privileges.php:663 server_privileges.php:1620 @@ -68,7 +68,7 @@ msgstr "శోధించు" #: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 #: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 -#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_operations.php:726 tbl_select.php:323 tbl_structure.php:559 #: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 #: view_create.php:181 view_operations.php:99 msgid "Go" @@ -253,47 +253,63 @@ msgstr "ఆజ్ఞ" msgid "and then" msgstr "మరియు తరువాత" -#: db_operations.php:390 +# మొదటి అనువాదము +#: db_operations.php:379 +#, fuzzy +#| msgid "Database" +msgid "Remove database" +msgstr "డేటాబేస్" + +#: db_operations.php:391 +#, php-format +msgid "Database %s has been dropped." +msgstr "" + +#: db_operations.php:396 +msgid "Drop the database (DROP)" +msgstr "" + +#: db_operations.php:424 msgid "Copy database to" msgstr "" -#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:431 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "" -#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:432 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "" -#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:433 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "" -#: db_operations.php:407 +#: db_operations.php:441 msgid "CREATE DATABASE before copying" msgstr "" -#: db_operations.php:410 libraries/export/sql.php:51 +#: db_operations.php:444 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 #: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "" -#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: db_operations.php:448 libraries/export/sql.php:77 tbl_operations.php:296 #: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "" -#: db_operations.php:418 tbl_operations.php:542 +#: db_operations.php:452 tbl_operations.php:542 msgid "Add constraints" msgstr "" -#: db_operations.php:431 +#: db_operations.php:465 msgid "Switch to copied database" msgstr "" -#: db_operations.php:451 libraries/Index.class.php:447 +#: db_operations.php:485 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 #: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 #: server_collations.php:53 server_collations.php:65 server_databases.php:108 @@ -302,14 +318,14 @@ msgstr "" msgid "Collation" msgstr "" -#: db_operations.php:464 pdf_schema.php:32 +#: db_operations.php:498 pdf_schema.php:32 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." msgstr "" -#: db_operations.php:497 +#: db_operations.php:531 msgid "Edit PDF Pages" msgstr "" @@ -365,7 +381,7 @@ msgstr[0] "" msgstr[1] "" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -456,7 +472,7 @@ msgstr "" #: db_search.php:50 libraries/auth/config.auth.lib.php:83 #: libraries/auth/config.auth.lib.php:102 -#: libraries/auth/cookie.auth.lib.php:640 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:182 msgid "Access denied" msgstr "" @@ -498,7 +514,7 @@ msgid "Browse" msgstr "" #: db_search.php:254 libraries/display_tbl.lib.php:1163 -#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:440 #: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 @@ -540,14 +556,14 @@ msgstr "" #: db_structure.php:79 db_structure.php:80 db_structure.php:92 #: db_structure.php:93 db_structure.php:105 db_structure.php:106 -#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:311 +#: libraries/sql_query_form.lib.php:314 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "" #: db_structure.php:81 db_structure.php:94 db_structure.php:107 #: libraries/common.lib.php:2832 libraries/common.lib.php:2839 -#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 +#: libraries/db_links.inc.php:48 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 @@ -560,8 +576,7 @@ msgstr "" #: db_structure.php:96 db_structure.php:108 db_structure.php:109 #: db_structure.php:530 db_structure.php:531 db_tracking.php:86 #: libraries/Index.class.php:482 libraries/common.lib.php:1663 -#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 #: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 #: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" @@ -571,21 +586,21 @@ msgstr "" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 +#: libraries/mult_submits.inc.php:38 msgid "Empty" msgstr "ఖాళీ" -#: db_structure.php:301 libraries/tbl_links.inc.php:98 +#: db_structure.php:301 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "View %s has been dropped" msgstr "" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "" @@ -677,7 +692,7 @@ msgstr "" msgid "Analyze table" msgstr "" -#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:56 #: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 #: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 #: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 @@ -1386,7 +1401,7 @@ msgid "Databases" msgstr "" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30 #: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 #: tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -1490,7 +1505,7 @@ msgid "Cannot connect: invalid settings." msgstr "" #: libraries/auth/config.auth.lib.php:91 -#: libraries/auth/cookie.auth.lib.php:205 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:206 libraries/auth/http.auth.lib.php:64 #: test/theme.php:151 #, php-format msgid "Welcome to %s" @@ -1511,57 +1526,57 @@ msgid "" "the administrator of the MySQL server." msgstr "" -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:231 msgid "Log in" msgstr "ప్రవేశించు" -#: libraries/auth/cookie.auth.lib.php:232 -#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:233 +#: libraries/auth/cookie.auth.lib.php:235 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:94 msgid "phpMyAdmin documentation" msgstr "" -#: libraries/auth/cookie.auth.lib.php:244 #: libraries/auth/cookie.auth.lib.php:245 +#: libraries/auth/cookie.auth.lib.php:246 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:244 +#: libraries/auth/cookie.auth.lib.php:245 msgid "Server:" msgstr "" # మొదటి అనువాదము -#: libraries/auth/cookie.auth.lib.php:249 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Username:" msgstr "వాడుకరి పేరు" -#: libraries/auth/cookie.auth.lib.php:253 +#: libraries/auth/cookie.auth.lib.php:254 msgid "Password:" msgstr "సంకేతపదం:" -#: libraries/auth/cookie.auth.lib.php:260 +#: libraries/auth/cookie.auth.lib.php:261 msgid "Server Choice" msgstr "" -#: libraries/auth/cookie.auth.lib.php:306 libraries/header.inc.php:58 +#: libraries/auth/cookie.auth.lib.php:307 libraries/header.inc.php:58 msgid "Cookies must be enabled past this point." msgstr "" -#: libraries/auth/cookie.auth.lib.php:638 +#: libraries/auth/cookie.auth.lib.php:639 #: libraries/auth/signon.auth.lib.php:180 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" -#: libraries/auth/cookie.auth.lib.php:642 +#: libraries/auth/cookie.auth.lib.php:643 #: libraries/auth/signon.auth.lib.php:184 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" -#: libraries/auth/cookie.auth.lib.php:652 -#: libraries/auth/cookie.auth.lib.php:654 +#: libraries/auth/cookie.auth.lib.php:653 +#: libraries/auth/cookie.auth.lib.php:655 #: libraries/auth/signon.auth.lib.php:190 msgid "Cannot log in to the MySQL server" msgstr "" @@ -1674,7 +1689,7 @@ msgstr "" #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 #: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 -#: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 +#: libraries/sql_query_form.lib.php:421 libraries/sql_query_form.lib.php:424 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" msgstr "" @@ -1817,19 +1832,19 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/common.lib.php:2833 libraries/common.lib.php:2840 -#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 +#: libraries/db_links.inc.php:53 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 #: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "" -#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 -#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:86 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "" -#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:265 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1845,36 +1860,31 @@ msgstr "" msgid "Name" msgstr "పేరు" -#: libraries/db_links.inc.php:43 -#, php-format -msgid "Database %s has been dropped." -msgstr "" - -#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 -#: libraries/db_links.inc.php:57 +#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43 +#: libraries/db_links.inc.php:44 msgid "Database seems to be empty!" msgstr "" -#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/db_links.inc.php:66 libraries/relation.lib.php:137 #: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:84 +#: libraries/db_links.inc.php:71 msgid "Query" msgstr "" -#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 +#: libraries/db_links.inc.php:76 libraries/relation.lib.php:133 msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:87 #: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "" -#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:65 #: server_privileges.php:110 server_privileges.php:1718 #: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" @@ -2032,7 +2042,7 @@ msgid "remember template" msgstr "" #: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 -#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 +#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:509 msgid "Character set of the file:" msgstr "" @@ -2085,7 +2095,7 @@ msgstr "" msgid "File to import" msgstr "" -#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:497 +#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:484 msgid "Location of the text file" msgstr "పాఠ్యపు దస్త్రం యొక్క ప్రాంతం" @@ -2093,12 +2103,12 @@ msgstr "పాఠ్యపు దస్త్రం యొక్క ప్రా msgid "File uploads are not allowed on this server." msgstr "" -#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 +#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:493 #: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "" -#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 +#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:496 #: tbl_change.php:925 msgid "web server upload directory" msgstr "" @@ -3440,7 +3450,7 @@ msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" -#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:403 msgid "Bookmarked SQL query" msgstr "" @@ -3505,7 +3515,7 @@ msgstr "" msgid "Slave status" msgstr "" -#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:428 +#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:415 #: server_status.php:736 server_variables.php:51 msgid "Variable" msgstr "" @@ -3633,51 +3643,51 @@ msgstr "తేడా" msgid "Target database" msgstr "" -#: libraries/sql_query_form.lib.php:219 +#: libraries/sql_query_form.lib.php:217 #, php-format msgid "Run SQL query/queries on server %s" msgstr "" -#: libraries/sql_query_form.lib.php:236 libraries/sql_query_form.lib.php:261 +#: libraries/sql_query_form.lib.php:234 libraries/sql_query_form.lib.php:258 #, php-format msgid "Run SQL query/queries on database %s" msgstr "" -#: libraries/sql_query_form.lib.php:307 +#: libraries/sql_query_form.lib.php:294 #, fuzzy #| msgid "Comments" msgid "Columns" msgstr "వ్యాఖ్యలు" -#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 +#: libraries/sql_query_form.lib.php:329 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql_query_form.lib.php:349 sql.php:669 +#: libraries/sql_query_form.lib.php:336 sql.php:669 msgid "Let every user access this bookmark" msgstr "" -#: libraries/sql_query_form.lib.php:355 +#: libraries/sql_query_form.lib.php:342 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/sql_query_form.lib.php:371 +#: libraries/sql_query_form.lib.php:358 msgid "Do not overwrite this query from outside the window" msgstr "" -#: libraries/sql_query_form.lib.php:378 +#: libraries/sql_query_form.lib.php:365 msgid "Delimiter" msgstr "" -#: libraries/sql_query_form.lib.php:386 +#: libraries/sql_query_form.lib.php:373 msgid " Show this query here again " msgstr "" -#: libraries/sql_query_form.lib.php:445 +#: libraries/sql_query_form.lib.php:432 msgid "Submit" msgstr "దాఖలుచేయి" -#: libraries/sql_query_form.lib.php:449 +#: libraries/sql_query_form.lib.php:436 msgid "View only" msgstr "" @@ -3735,12 +3745,11 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" -#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 -#: libraries/tbl_links.inc.php:139 +#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107 msgid "Table seems to be empty!" msgstr "" -#: libraries/tbl_links.inc.php:147 +#: libraries/tbl_links.inc.php:115 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" @@ -7599,41 +7608,53 @@ msgstr "" msgid "Flush the table (FLUSH)" msgstr "" -#: tbl_operations.php:648 +#: tbl_operations.php:642 +msgid "Table removal" +msgstr "" + +#: tbl_operations.php:657 +msgid "Empty the table (TRUNCATE)" +msgstr "" + +#: tbl_operations.php:675 +msgid "Drop the table (DROP)" +msgstr "" + +#: tbl_operations.php:696 msgid "Partition maintenance" msgstr "" -#: tbl_operations.php:656 +#: tbl_operations.php:704 #, php-format msgid "Partition %s" msgstr "" # మొదటి అనువాదము -#: tbl_operations.php:659 +#: tbl_operations.php:707 msgid "Analyze" msgstr "విశదీకరించు" -#: tbl_operations.php:660 +#: tbl_operations.php:708 msgid "Check" msgstr "" -#: tbl_operations.php:661 +#: tbl_operations.php:709 msgid "Optimize" msgstr "" -#: tbl_operations.php:662 +#: tbl_operations.php:710 msgid "Rebuild" msgstr "" -#: tbl_operations.php:663 +#: tbl_operations.php:711 msgid "Repair" msgstr "" -#: tbl_operations.php:675 +#: tbl_operations.php:723 msgid "Remove partitioning" msgstr "" -#: tbl_operations.php:701 +#: tbl_operations.php:749 msgid "Check referential integrity:" msgstr "" diff --git a/po/th.po b/po/th.po index 73e6c15d9..2d57890bb 100644 --- a/po/th.po +++ b/po/th.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-26 17:18+0200\n" +"POT-Creation-Date: 2010-07-27 10:12+0200\n" "PO-Revision-Date: 2010-03-12 09:19+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: thai \n" @@ -35,16 +35,16 @@ msgstr "" #: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 #: db_structure.php:89 db_structure.php:91 db_structure.php:102 #: db_structure.php:104 libraries/common.lib.php:2834 -#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "ค้นหา" #: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 -#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_operations.php:468 db_operations.php:492 db_search.php:344 #: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 #: libraries/Theme_Manager.class.php:305 -#: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 +#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:712 #: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 @@ -52,8 +52,8 @@ msgstr "ค้นหา" #: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 #: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 -#: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: libraries/sql_query_form.lib.php:377 libraries/sql_query_form.lib.php:447 +#: libraries/sql_query_form.lib.php:512 libraries/tbl_properties.inc.php:780 #: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 #: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 #: server_privileges.php:663 server_privileges.php:1620 @@ -63,7 +63,7 @@ msgstr "ค้นหา" #: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 #: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 -#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_operations.php:726 tbl_select.php:323 tbl_structure.php:559 #: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 #: view_create.php:181 view_operations.php:99 msgid "Go" @@ -245,49 +245,65 @@ msgstr "คำสั่ง" msgid "and then" msgstr "" -#: db_operations.php:390 +#: db_operations.php:379 +#, fuzzy +#| msgid "Rename database to" +msgid "Remove database" +msgstr "เปลี่ยนชื่อฐานข้อมูลเป็น" + +#: db_operations.php:391 +#, php-format +msgid "Database %s has been dropped." +msgstr "โยนฐานข้อมูล %s ทิ้งไปเรียบร้อยแล้ว" + +#: db_operations.php:396 +#, fuzzy +msgid "Drop the database (DROP)" +msgstr "ไม่มีฐานข้อมูล" + +#: db_operations.php:424 #, fuzzy msgid "Copy database to" msgstr "เปลี่ยนชื่อฐานข้อมูลเป็น" -#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:431 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "เฉพาะโครงสร้าง" -#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:432 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "ทั้งโครงสร้างและข้อมูล" -#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:433 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "เฉพาะข้อมูล" -#: db_operations.php:407 +#: db_operations.php:441 msgid "CREATE DATABASE before copying" msgstr "" -#: db_operations.php:410 libraries/export/sql.php:51 +#: db_operations.php:444 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 #: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "" -#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: db_operations.php:448 libraries/export/sql.php:77 tbl_operations.php:296 #: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "เพิ่มค่า AUTO_INCREMENT" -#: db_operations.php:418 tbl_operations.php:542 +#: db_operations.php:452 tbl_operations.php:542 msgid "Add constraints" msgstr "" -#: db_operations.php:431 +#: db_operations.php:465 #, fuzzy msgid "Switch to copied database" msgstr "สลับไปที่ตารางที่ถูกทำสำเนาไว้" -#: db_operations.php:451 libraries/Index.class.php:447 +#: db_operations.php:485 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 #: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 #: server_collations.php:53 server_collations.php:65 server_databases.php:108 @@ -296,7 +312,7 @@ msgstr "สลับไปที่ตารางที่ถูกทำสำ msgid "Collation" msgstr "การเรียงลำดับ" -#: db_operations.php:464 pdf_schema.php:32 +#: db_operations.php:498 pdf_schema.php:32 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -307,7 +323,7 @@ msgid "" msgstr "" "ความสามารถเพิ่มเติมสำหรับ linked Tables ได้ถูกระงับเอาไว้ ตามเหตุผลที่แจ้งไว้ใน %shere%s" -#: db_operations.php:497 +#: db_operations.php:531 msgid "Edit PDF Pages" msgstr "แก้ไขหน้า PDF" @@ -363,7 +379,7 @@ msgstr[0] "%s ตาราง" msgstr[1] "%s ตาราง" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -455,7 +471,7 @@ msgstr "ประมวลผลคำค้น" #: db_search.php:50 libraries/auth/config.auth.lib.php:83 #: libraries/auth/config.auth.lib.php:102 -#: libraries/auth/cookie.auth.lib.php:640 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:182 msgid "Access denied" msgstr "ไม่อนุญาตให้ใช้งาน" @@ -498,7 +514,7 @@ msgid "Browse" msgstr "เปิดดู" #: db_search.php:254 libraries/display_tbl.lib.php:1163 -#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:440 #: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 @@ -541,14 +557,14 @@ msgstr "ในตาราง:" #: db_structure.php:79 db_structure.php:80 db_structure.php:92 #: db_structure.php:93 db_structure.php:105 db_structure.php:106 -#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:311 +#: libraries/sql_query_form.lib.php:314 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "แทรก" #: db_structure.php:81 db_structure.php:94 db_structure.php:107 #: libraries/common.lib.php:2832 libraries/common.lib.php:2839 -#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 +#: libraries/db_links.inc.php:48 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 @@ -561,8 +577,7 @@ msgstr "โครงสร้าง" #: db_structure.php:96 db_structure.php:108 db_structure.php:109 #: db_structure.php:530 db_structure.php:531 db_tracking.php:86 #: libraries/Index.class.php:482 libraries/common.lib.php:1663 -#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 #: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 #: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" @@ -571,21 +586,21 @@ msgstr "โยนทิ้ง" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 +#: libraries/mult_submits.inc.php:38 msgid "Empty" msgstr "ลบข้อมูล" -#: db_structure.php:301 libraries/tbl_links.inc.php:98 +#: db_structure.php:301 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "ลบข้อมูลในตาราง %s เรียบร้อยแล้ว" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, fuzzy, php-format msgid "View %s has been dropped" msgstr "โยนฟิลด์ %s ทิ้งไปเรียบร้อยแล้ว" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "โยนตาราง %s ทิ้งไปเรียบร้อยแล้ว" @@ -676,7 +691,7 @@ msgstr "ซ่อมแซมตาราง" msgid "Analyze table" msgstr "วิเคราะห์ตาราง" -#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:56 #: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 #: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 #: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 @@ -1393,7 +1408,7 @@ msgid "Databases" msgstr "ฐานข้อมูล" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30 #: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 #: tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -1498,7 +1513,7 @@ msgid "Cannot connect: invalid settings." msgstr "" #: libraries/auth/config.auth.lib.php:91 -#: libraries/auth/cookie.auth.lib.php:205 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:206 libraries/auth/http.auth.lib.php:64 #: test/theme.php:151 #, php-format msgid "Welcome to %s" @@ -1519,56 +1534,56 @@ msgid "" "the administrator of the MySQL server." msgstr "" -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:231 msgid "Log in" msgstr "เข้าสู่ระบบ" -#: libraries/auth/cookie.auth.lib.php:232 -#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:233 +#: libraries/auth/cookie.auth.lib.php:235 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:94 msgid "phpMyAdmin documentation" msgstr "เอกสารการใช้ phpMyAdmin" -#: libraries/auth/cookie.auth.lib.php:244 #: libraries/auth/cookie.auth.lib.php:245 +#: libraries/auth/cookie.auth.lib.php:246 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:244 +#: libraries/auth/cookie.auth.lib.php:245 msgid "Server:" msgstr "เซิร์ฟเวอร์" -#: libraries/auth/cookie.auth.lib.php:249 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Username:" msgstr "ชื่อผู้ใช้:" -#: libraries/auth/cookie.auth.lib.php:253 +#: libraries/auth/cookie.auth.lib.php:254 msgid "Password:" msgstr "รหัสผ่าน:" -#: libraries/auth/cookie.auth.lib.php:260 +#: libraries/auth/cookie.auth.lib.php:261 msgid "Server Choice" msgstr "ตัวเลือกเซิร์ฟเวอร์" -#: libraries/auth/cookie.auth.lib.php:306 libraries/header.inc.php:58 +#: libraries/auth/cookie.auth.lib.php:307 libraries/header.inc.php:58 msgid "Cookies must be enabled past this point." msgstr "ต้องอนุญาตใช้ใช้ 'คุ๊กกี้' (cookie) เสียก่อน จึงจะผ่านจุดนี้ไปได้" -#: libraries/auth/cookie.auth.lib.php:638 +#: libraries/auth/cookie.auth.lib.php:639 #: libraries/auth/signon.auth.lib.php:180 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" -#: libraries/auth/cookie.auth.lib.php:642 +#: libraries/auth/cookie.auth.lib.php:643 #: libraries/auth/signon.auth.lib.php:184 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" -#: libraries/auth/cookie.auth.lib.php:652 -#: libraries/auth/cookie.auth.lib.php:654 +#: libraries/auth/cookie.auth.lib.php:653 +#: libraries/auth/cookie.auth.lib.php:655 #: libraries/auth/signon.auth.lib.php:190 msgid "Cannot log in to the MySQL server" msgstr "ไม่สามารถล็อกอินเข้าเซิร์ฟเวอร์ MySQL ได้" @@ -1686,7 +1701,7 @@ msgstr "ถูกส่ง" #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 #: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 -#: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 +#: libraries/sql_query_form.lib.php:421 libraries/sql_query_form.lib.php:424 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" msgstr "เอกสารอ้างอิง" @@ -1827,19 +1842,19 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/common.lib.php:2833 libraries/common.lib.php:2840 -#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 +#: libraries/db_links.inc.php:53 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 #: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 -#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:86 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "กระบวนการ" -#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:265 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1855,37 +1870,32 @@ msgstr "" msgid "Name" msgstr "ชื่อ" -#: libraries/db_links.inc.php:43 -#, php-format -msgid "Database %s has been dropped." -msgstr "โยนฐานข้อมูล %s ทิ้งไปเรียบร้อยแล้ว" - -#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 -#: libraries/db_links.inc.php:57 +#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43 +#: libraries/db_links.inc.php:44 msgid "Database seems to be empty!" msgstr "" -#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/db_links.inc.php:66 libraries/relation.lib.php:137 #: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:84 +#: libraries/db_links.inc.php:71 msgid "Query" msgstr "คำค้นจากตัวอย่าง" -#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 +#: libraries/db_links.inc.php:76 libraries/relation.lib.php:133 msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:87 #: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 #, fuzzy msgid "Import" msgstr "ส่งออก" -#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:65 #: server_privileges.php:110 server_privileges.php:1718 #: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" @@ -2048,7 +2058,7 @@ msgid "remember template" msgstr "จำรูปแบบ" #: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 -#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 +#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:509 msgid "Character set of the file:" msgstr "ชุดอักขระของไฟล์ (character set):" @@ -2101,7 +2111,7 @@ msgstr "" msgid "File to import" msgstr "" -#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:497 +#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:484 msgid "Location of the text file" msgstr "เลือกไฟล์ข้อความจาก" @@ -2109,12 +2119,12 @@ msgstr "เลือกไฟล์ข้อความจาก" msgid "File uploads are not allowed on this server." msgstr "" -#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 +#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:493 #: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "ไม่สามารถใช้งาน ไดเรกทอรีที่ตั้งไว้สำหรับอัพโหลดได้" -#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 +#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:496 #: tbl_change.php:925 msgid "web server upload directory" msgstr "ไดเรกทอรีสำหรับอัพโหลด ที่เว็บเซิร์ฟเวอร์" @@ -3472,7 +3482,7 @@ msgstr "" "โปรดอ่านเอกสารเกี่ยวกับ วิธีการปรับปรุงตาราง Column_comments (เก็บหมายเหตุของคอลัมน์) " "ของคุณ" -#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:403 msgid "Bookmarked SQL query" msgstr "คำค้นนี้ถูกจดไว้แล้ว" @@ -3537,7 +3547,7 @@ msgstr "" msgid "Slave status" msgstr "" -#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:428 +#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:415 #: server_status.php:736 server_variables.php:51 msgid "Variable" msgstr "ตัวแปร" @@ -3669,51 +3679,51 @@ msgstr "" msgid "Target database" msgstr "ค้นหาในฐานข้อมูล" -#: libraries/sql_query_form.lib.php:219 +#: libraries/sql_query_form.lib.php:217 #, fuzzy, php-format msgid "Run SQL query/queries on server %s" msgstr "ประมวลผลคำค้นบนฐานข้อมูล %s" -#: libraries/sql_query_form.lib.php:236 libraries/sql_query_form.lib.php:261 +#: libraries/sql_query_form.lib.php:234 libraries/sql_query_form.lib.php:258 #, php-format msgid "Run SQL query/queries on database %s" msgstr "ประมวลผลคำค้นบนฐานข้อมูล %s" -#: libraries/sql_query_form.lib.php:307 +#: libraries/sql_query_form.lib.php:294 #, fuzzy #| msgid "Column names" msgid "Columns" msgstr "ชื่อคอลัมน์" -#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 +#: libraries/sql_query_form.lib.php:329 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "จดคำค้นนี้ไว้" -#: libraries/sql_query_form.lib.php:349 sql.php:669 +#: libraries/sql_query_form.lib.php:336 sql.php:669 msgid "Let every user access this bookmark" msgstr "" -#: libraries/sql_query_form.lib.php:355 +#: libraries/sql_query_form.lib.php:342 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/sql_query_form.lib.php:371 +#: libraries/sql_query_form.lib.php:358 msgid "Do not overwrite this query from outside the window" msgstr "" -#: libraries/sql_query_form.lib.php:378 +#: libraries/sql_query_form.lib.php:365 msgid "Delimiter" msgstr "" -#: libraries/sql_query_form.lib.php:386 +#: libraries/sql_query_form.lib.php:373 msgid " Show this query here again " msgstr " แสดงคำค้นนี้อีกที " -#: libraries/sql_query_form.lib.php:445 +#: libraries/sql_query_form.lib.php:432 msgid "Submit" msgstr "ส่ง" -#: libraries/sql_query_form.lib.php:449 +#: libraries/sql_query_form.lib.php:436 msgid "View only" msgstr "ดูอย่างเดียว" @@ -3783,12 +3793,11 @@ msgstr "" "ไม่สามารถเริ่มตัวตรวจสอบ SQL ได้. กรุณาตรวจสอบว่า คุณได้ติดตั้ง php extensions ที่จำเป็น " "ดังที่อธิบายไว้ใน %sdocumentation%s เรียบร้อยแล้ว" -#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 -#: libraries/tbl_links.inc.php:139 +#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107 msgid "Table seems to be empty!" msgstr "" -#: libraries/tbl_links.inc.php:147 +#: libraries/tbl_links.inc.php:115 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" @@ -7722,43 +7731,55 @@ msgstr "ล้างตาราง %s เรียบร้อยแล้ว" msgid "Flush the table (FLUSH)" msgstr "ล้างตาราง (flush)" -#: tbl_operations.php:648 +#: tbl_operations.php:642 +msgid "Table removal" +msgstr "" + +#: tbl_operations.php:657 +msgid "Empty the table (TRUNCATE)" +msgstr "" + +#: tbl_operations.php:675 +msgid "Drop the table (DROP)" +msgstr "" + +#: tbl_operations.php:696 #, fuzzy msgid "Partition maintenance" msgstr "การดูแลรักษาตาราง" -#: tbl_operations.php:656 +#: tbl_operations.php:704 #, php-format msgid "Partition %s" msgstr "" -#: tbl_operations.php:659 +#: tbl_operations.php:707 msgid "Analyze" msgstr "" -#: tbl_operations.php:660 +#: tbl_operations.php:708 #, fuzzy msgid "Check" msgstr "เช็ค" -#: tbl_operations.php:661 +#: tbl_operations.php:709 msgid "Optimize" msgstr "" -#: tbl_operations.php:662 +#: tbl_operations.php:710 msgid "Rebuild" msgstr "" -#: tbl_operations.php:663 +#: tbl_operations.php:711 #, fuzzy msgid "Repair" msgstr "ซ่อมแซมตาราง" -#: tbl_operations.php:675 +#: tbl_operations.php:723 msgid "Remove partitioning" msgstr "" -#: tbl_operations.php:701 +#: tbl_operations.php:749 msgid "Check referential integrity:" msgstr "ตรวจสอบความสมบูรณ์ของการอ้างถึง:" diff --git a/po/tr.po b/po/tr.po index 77fefee8a..b0fb36157 100644 --- a/po/tr.po +++ b/po/tr.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-26 17:18+0200\n" +"POT-Creation-Date: 2010-07-27 10:12+0200\n" "PO-Revision-Date: 2010-06-21 19:58+0200\n" "Last-Translator: Burak \n" "Language-Team: turkish \n" @@ -39,16 +39,16 @@ msgstr "" #: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 #: db_structure.php:89 db_structure.php:91 db_structure.php:102 #: db_structure.php:104 libraries/common.lib.php:2834 -#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Ara" #: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 -#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_operations.php:468 db_operations.php:492 db_search.php:344 #: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 #: libraries/Theme_Manager.class.php:305 -#: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 +#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:712 #: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 @@ -56,8 +56,8 @@ msgstr "Ara" #: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 #: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 -#: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: libraries/sql_query_form.lib.php:377 libraries/sql_query_form.lib.php:447 +#: libraries/sql_query_form.lib.php:512 libraries/tbl_properties.inc.php:780 #: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 #: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 #: server_privileges.php:663 server_privileges.php:1620 @@ -67,7 +67,7 @@ msgstr "Ara" #: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 #: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 -#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_operations.php:726 tbl_select.php:323 tbl_structure.php:559 #: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 #: view_create.php:181 view_operations.php:99 msgid "Go" @@ -248,47 +248,64 @@ msgstr "Komut" msgid "and then" msgstr "ve sonra" -#: db_operations.php:390 +#: db_operations.php:379 +#, fuzzy +#| msgid "Rename database to" +msgid "Remove database" +msgstr "Veritabanını şuna yeniden adlandır" + +#: db_operations.php:391 +#, php-format +msgid "Database %s has been dropped." +msgstr "%s veritabanı kaldırıldı." + +#: db_operations.php:396 +#, fuzzy +#| msgid "Go to database" +msgid "Drop the database (DROP)" +msgstr "Veritabanına git" + +#: db_operations.php:424 msgid "Copy database to" msgstr "Veritabanını şuraya kopyala:" -#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:431 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Sadece yapı" -#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:432 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Yapı ve veri" -#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:433 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Sadece veri" -#: db_operations.php:407 +#: db_operations.php:441 msgid "CREATE DATABASE before copying" msgstr "Kopyalamadan önce VERİTABANI OLUŞTUR" -#: db_operations.php:410 libraries/export/sql.php:51 +#: db_operations.php:444 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 #: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "%s komutu ekle" -#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: db_operations.php:448 libraries/export/sql.php:77 tbl_operations.php:296 #: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT değeri ekle" -#: db_operations.php:418 tbl_operations.php:542 +#: db_operations.php:452 tbl_operations.php:542 msgid "Add constraints" msgstr "Kısıtlamaları ekle" -#: db_operations.php:431 +#: db_operations.php:465 msgid "Switch to copied database" msgstr "Kopyalanmış veritabanına geç" -#: db_operations.php:451 libraries/Index.class.php:447 +#: db_operations.php:485 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 #: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 #: server_collations.php:53 server_collations.php:65 server_databases.php:108 @@ -297,7 +314,7 @@ msgstr "Kopyalanmış veritabanına geç" msgid "Collation" msgstr "Karşılaştırma" -#: db_operations.php:464 pdf_schema.php:32 +#: db_operations.php:498 pdf_schema.php:32 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -309,7 +326,7 @@ msgstr "" "Bağlı tablolar ile çalışan ilave özellikler etkisizleştirildi. Nedenini " "öğrenmek için %sburaya%s tıklayın." -#: db_operations.php:497 +#: db_operations.php:531 msgid "Edit PDF Pages" msgstr "PDF Sayfalarını düzenle" @@ -363,7 +380,7 @@ msgid_plural "%s tables" msgstr[0] "%s tablo" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -451,7 +468,7 @@ msgstr "Sorguyu Gönder" #: db_search.php:50 libraries/auth/config.auth.lib.php:83 #: libraries/auth/config.auth.lib.php:102 -#: libraries/auth/cookie.auth.lib.php:640 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:182 msgid "Access denied" msgstr "Erişim engellendi" @@ -493,7 +510,7 @@ msgid "Browse" msgstr "Gözat" #: db_search.php:254 libraries/display_tbl.lib.php:1163 -#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:440 #: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 @@ -533,14 +550,14 @@ msgstr "İç sütun:" #: db_structure.php:79 db_structure.php:80 db_structure.php:92 #: db_structure.php:93 db_structure.php:105 db_structure.php:106 -#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:311 +#: libraries/sql_query_form.lib.php:314 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Ekle" #: db_structure.php:81 db_structure.php:94 db_structure.php:107 #: libraries/common.lib.php:2832 libraries/common.lib.php:2839 -#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 +#: libraries/db_links.inc.php:48 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 @@ -553,8 +570,7 @@ msgstr "Yapı" #: db_structure.php:96 db_structure.php:108 db_structure.php:109 #: db_structure.php:530 db_structure.php:531 db_tracking.php:86 #: libraries/Index.class.php:482 libraries/common.lib.php:1663 -#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 #: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 #: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" @@ -563,21 +579,21 @@ msgstr "Kaldır" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 +#: libraries/mult_submits.inc.php:38 msgid "Empty" msgstr "Boşalt" -#: db_structure.php:301 libraries/tbl_links.inc.php:98 +#: db_structure.php:301 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "%s tablosu boşaltıldı" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "View %s has been dropped" msgstr "%s görünümü kaldırıldı" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "%s tablosu kaldırıldı" @@ -669,7 +685,7 @@ msgstr "Tabloyu onar" msgid "Analyze table" msgstr "Tabloyu incele" -#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:56 #: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 #: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 #: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 @@ -1352,7 +1368,7 @@ msgid "Databases" msgstr "Veritabanları" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30 #: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 #: tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -1452,7 +1468,7 @@ msgid "Cannot connect: invalid settings." msgstr "Bağlanamıyor: geçersiz ayarlar." #: libraries/auth/config.auth.lib.php:91 -#: libraries/auth/cookie.auth.lib.php:205 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:206 libraries/auth/http.auth.lib.php:64 #: test/theme.php:151 #, php-format msgid "Welcome to %s" @@ -1479,45 +1495,45 @@ msgstr "" "parolayı kontrol edin ve MySQL sunucusu yöneticisi tarafından verilen " "bilgiyle uyuştuğundan emin olun." -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:231 msgid "Log in" msgstr "Oturum aç" -#: libraries/auth/cookie.auth.lib.php:232 -#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:233 +#: libraries/auth/cookie.auth.lib.php:235 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:94 msgid "phpMyAdmin documentation" msgstr "phpMyAdmin belgeleri" -#: libraries/auth/cookie.auth.lib.php:244 #: libraries/auth/cookie.auth.lib.php:245 +#: libraries/auth/cookie.auth.lib.php:246 msgid "You can enter hostname/IP address and port separated by space." msgstr "" "Anamakine adı/IP adresi ve bağlantı noktasını boşluk bırakarak ayrı " "girebilirsiniz." -#: libraries/auth/cookie.auth.lib.php:244 +#: libraries/auth/cookie.auth.lib.php:245 msgid "Server:" msgstr "Sunucu:" -#: libraries/auth/cookie.auth.lib.php:249 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Username:" msgstr "Kullanıcı Adı:" -#: libraries/auth/cookie.auth.lib.php:253 +#: libraries/auth/cookie.auth.lib.php:254 msgid "Password:" msgstr "Parola:" -#: libraries/auth/cookie.auth.lib.php:260 +#: libraries/auth/cookie.auth.lib.php:261 msgid "Server Choice" msgstr "Sunucu Seçimi" -#: libraries/auth/cookie.auth.lib.php:306 libraries/header.inc.php:58 +#: libraries/auth/cookie.auth.lib.php:307 libraries/header.inc.php:58 msgid "Cookies must be enabled past this point." msgstr "Bu kısmı geçmek için tanımlama bilgileri (cookies) açık olmalı." -#: libraries/auth/cookie.auth.lib.php:638 +#: libraries/auth/cookie.auth.lib.php:639 #: libraries/auth/signon.auth.lib.php:180 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" @@ -1525,14 +1541,14 @@ msgstr "" "Yapılandırma tarafından parolasız oturum açma yasaktır (AllowNoPassword'a " "bakın)" -#: libraries/auth/cookie.auth.lib.php:642 +#: libraries/auth/cookie.auth.lib.php:643 #: libraries/auth/signon.auth.lib.php:184 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "%s saniye içinde hiçbir işlem yapılmadı, lütfen yeniden oturum açın" -#: libraries/auth/cookie.auth.lib.php:652 -#: libraries/auth/cookie.auth.lib.php:654 +#: libraries/auth/cookie.auth.lib.php:653 +#: libraries/auth/cookie.auth.lib.php:655 #: libraries/auth/signon.auth.lib.php:190 msgid "Cannot log in to the MySQL server" msgstr "MySQL sunucusuna oturum açılamıyor" @@ -1653,7 +1669,7 @@ msgstr "en" #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 #: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 -#: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 +#: libraries/sql_query_form.lib.php:421 libraries/sql_query_form.lib.php:424 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" msgstr "Belgeler" @@ -1796,19 +1812,19 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "%s işlevselliği bilinen bir hata tarafından zarar görmüş, bakınız %s" #: libraries/common.lib.php:2833 libraries/common.lib.php:2840 -#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 +#: libraries/db_links.inc.php:53 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 #: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 -#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:86 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "İşlemler" -#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:265 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1824,36 +1840,31 @@ msgstr "Olaylar" msgid "Name" msgstr "İsim" -#: libraries/db_links.inc.php:43 -#, php-format -msgid "Database %s has been dropped." -msgstr "%s veritabanı kaldırıldı." - -#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 -#: libraries/db_links.inc.php:57 +#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43 +#: libraries/db_links.inc.php:44 msgid "Database seems to be empty!" msgstr "Veritabanı boş olarak görünüyor!" -#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/db_links.inc.php:66 libraries/relation.lib.php:137 #: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "İzleme" -#: libraries/db_links.inc.php:84 +#: libraries/db_links.inc.php:71 msgid "Query" msgstr "Sorgu" -#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 +#: libraries/db_links.inc.php:76 libraries/relation.lib.php:133 msgid "Designer" msgstr "Tasarımcı" -#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:87 #: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "İçeri Aktar" -#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:65 #: server_privileges.php:110 server_privileges.php:1718 #: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" @@ -2018,7 +2029,7 @@ msgid "remember template" msgstr "şablonu hatırla" #: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 -#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 +#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:509 msgid "Character set of the file:" msgstr "Dosyanın karakter grubu:" @@ -2076,7 +2087,7 @@ msgstr "" msgid "File to import" msgstr "İçeri aktarmak için dosya" -#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:497 +#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:484 msgid "Location of the text file" msgstr "Metin dosyasının yeri" @@ -2084,12 +2095,12 @@ msgstr "Metin dosyasının yeri" msgid "File uploads are not allowed on this server." msgstr "Bu sunucuda dosya gönderimlerine izin verilmez." -#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 +#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:493 #: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "Gönderme işi için ayarladığınız dizine ulaşılamıyor" -#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 +#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:496 #: tbl_change.php:925 msgid "web server upload directory" msgstr "web sunucusu gönderme dizini" @@ -3486,7 +3497,7 @@ msgstr "" "Sütun_Yorumları tablonuzun nasıl güncelleneceğini öğrenmek için lütfen " "belgelere bakın" -#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:403 msgid "Bookmarked SQL query" msgstr "SQL sorgusu işaretlendi" @@ -3557,7 +3568,7 @@ msgstr "Master durumu" msgid "Slave status" msgstr "Slave durumu" -#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:428 +#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:415 #: server_status.php:736 server_variables.php:51 msgid "Variable" msgstr "Değişken" @@ -3688,49 +3699,49 @@ msgstr "Farkı" msgid "Target database" msgstr "Hedef veritabanı" -#: libraries/sql_query_form.lib.php:219 +#: libraries/sql_query_form.lib.php:217 #, 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:236 libraries/sql_query_form.lib.php:261 +#: libraries/sql_query_form.lib.php:234 libraries/sql_query_form.lib.php:258 #, 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:307 +#: libraries/sql_query_form.lib.php:294 msgid "Columns" msgstr "Sütun" -#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 +#: libraries/sql_query_form.lib.php:329 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "Bu SQL sorgusunu işaretle" -#: libraries/sql_query_form.lib.php:349 sql.php:669 +#: libraries/sql_query_form.lib.php:336 sql.php:669 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:355 +#: libraries/sql_query_form.lib.php:342 msgid "Replace existing bookmark of same name" msgstr "Mevcut aynı ismin işaretlemesini değiştir" -#: libraries/sql_query_form.lib.php:371 +#: libraries/sql_query_form.lib.php:358 msgid "Do not overwrite this query from outside the window" msgstr "Pencere dışından bu sorgunun üzerine yazma" -#: libraries/sql_query_form.lib.php:378 +#: libraries/sql_query_form.lib.php:365 msgid "Delimiter" msgstr "Sınırlayıcı" -#: libraries/sql_query_form.lib.php:386 +#: libraries/sql_query_form.lib.php:373 msgid " Show this query here again " msgstr " Bu sorguyu burada tekrar göster " -#: libraries/sql_query_form.lib.php:445 +#: libraries/sql_query_form.lib.php:432 msgid "Submit" msgstr "Gönder" -#: libraries/sql_query_form.lib.php:449 +#: libraries/sql_query_form.lib.php:436 msgid "View only" msgstr "Sadece göster" @@ -3802,12 +3813,11 @@ msgstr "" "SQL onaylayıcısı başlatılamadı. %sBelgelerde%s anlatıldığı gibi lütfen " "gerekli PHP uzantılarının kurulu olduğunu kontrol edin." -#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 -#: libraries/tbl_links.inc.php:139 +#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107 msgid "Table seems to be empty!" msgstr "Tablo boş olarak görünüyor!" -#: libraries/tbl_links.inc.php:147 +#: libraries/tbl_links.inc.php:115 #, php-format msgid "Tracking of %s.%s is activated." msgstr "%s.%s izleme aktif." @@ -8098,40 +8108,54 @@ msgstr "%s tablosu temizlendi" msgid "Flush the table (FLUSH)" msgstr "Tabloyu temizle (FLUSH)" -#: tbl_operations.php:648 +#: tbl_operations.php:642 +#, fuzzy +#| msgid "Table name" +msgid "Table removal" +msgstr "Tablo adı" + +#: tbl_operations.php:657 +msgid "Empty the table (TRUNCATE)" +msgstr "" + +#: tbl_operations.php:675 +msgid "Drop the table (DROP)" +msgstr "" + +#: tbl_operations.php:696 msgid "Partition maintenance" msgstr "Bölüm bakımı" -#: tbl_operations.php:656 +#: tbl_operations.php:704 #, php-format msgid "Partition %s" msgstr "Bölüm %s" -#: tbl_operations.php:659 +#: tbl_operations.php:707 msgid "Analyze" msgstr "İncele" -#: tbl_operations.php:660 +#: tbl_operations.php:708 msgid "Check" msgstr "Seç" -#: tbl_operations.php:661 +#: tbl_operations.php:709 msgid "Optimize" msgstr "Uyarla" -#: tbl_operations.php:662 +#: tbl_operations.php:710 msgid "Rebuild" msgstr "Yeniden Oluştur" -#: tbl_operations.php:663 +#: tbl_operations.php:711 msgid "Repair" msgstr "Onar" -#: tbl_operations.php:675 +#: tbl_operations.php:723 msgid "Remove partitioning" msgstr "Bölümlendirmeyi kaldır" -#: tbl_operations.php:701 +#: tbl_operations.php:749 msgid "Check referential integrity:" msgstr "İlgili bütünlük kontrolü:" diff --git a/po/tt.po b/po/tt.po index 629acfd32..53239f094 100644 --- a/po/tt.po +++ b/po/tt.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-26 17:18+0200\n" +"POT-Creation-Date: 2010-07-27 10:12+0200\n" "PO-Revision-Date: 2010-07-22 02:25+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: tatarish \n" @@ -39,16 +39,16 @@ msgstr "" #: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 #: db_structure.php:89 db_structure.php:91 db_structure.php:102 #: db_structure.php:104 libraries/common.lib.php:2834 -#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Ezläw" #: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 -#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_operations.php:468 db_operations.php:492 db_search.php:344 #: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 #: libraries/Theme_Manager.class.php:305 -#: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 +#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:712 #: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 @@ -56,8 +56,8 @@ msgstr "Ezläw" #: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 #: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 -#: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: libraries/sql_query_form.lib.php:377 libraries/sql_query_form.lib.php:447 +#: libraries/sql_query_form.lib.php:512 libraries/tbl_properties.inc.php:780 #: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 #: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 #: server_privileges.php:663 server_privileges.php:1620 @@ -67,7 +67,7 @@ msgstr "Ezläw" #: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 #: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 -#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_operations.php:726 tbl_select.php:323 tbl_structure.php:559 #: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 #: view_create.php:181 view_operations.php:99 msgid "Go" @@ -248,47 +248,63 @@ msgstr "Ämer" msgid "and then" msgstr ", şunnan soñ" -#: db_operations.php:390 +#: db_operations.php:379 +#, fuzzy +#| msgid "Rename database to" +msgid "Remove database" +msgstr "Biremlekne bolay atap quy" + +#: db_operations.php:391 +#, php-format +msgid "Database %s has been dropped." +msgstr "%s biremlege beterelde." + +#: db_operations.php:396 +#, fuzzy +msgid "Drop the database (DROP)" +msgstr "Biremleklär yuq" + +#: db_operations.php:424 msgid "Copy database to" msgstr "Biremlekne boña kübäyt" -#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:431 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Tözeleşen genä" -#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:432 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Tözeleşen dä, eçtälegen dä" -#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:433 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Eçtälegen genä" -#: db_operations.php:407 +#: db_operations.php:441 msgid "CREATE DATABASE before copying" msgstr "Kübäytü aldınnan CREATE DATABASE östise" -#: db_operations.php:410 libraries/export/sql.php:51 +#: db_operations.php:444 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 #: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "%s östäw" -#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: db_operations.php:448 libraries/export/sql.php:77 tbl_operations.php:296 #: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "\"AUTO_INCREMENT\" bäyäsen östise" -#: db_operations.php:418 tbl_operations.php:542 +#: db_operations.php:452 tbl_operations.php:542 msgid "Add constraints" msgstr "Çikläwlär östise" -#: db_operations.php:431 +#: db_operations.php:465 msgid "Switch to copied database" msgstr "Kübäytelgän biremlekkä küçäse" -#: db_operations.php:451 libraries/Index.class.php:447 +#: db_operations.php:485 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 #: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 #: server_collations.php:53 server_collations.php:65 server_databases.php:108 @@ -297,7 +313,7 @@ msgstr "Kübäytelgän biremlekkä küçäse" msgid "Collation" msgstr "Tezü cayı" -#: db_operations.php:464 pdf_schema.php:32 +#: db_operations.php:498 pdf_schema.php:32 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -309,7 +325,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:497 +#: db_operations.php:531 msgid "Edit PDF Pages" msgstr "PDF-Bitlär Üzgärtü" @@ -364,7 +380,7 @@ msgid_plural "%s tables" msgstr[0] "%s tüşämä" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -456,7 +472,7 @@ msgstr "Sorawnı Yulla" #: db_search.php:50 libraries/auth/config.auth.lib.php:83 #: libraries/auth/config.auth.lib.php:102 -#: libraries/auth/cookie.auth.lib.php:640 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:182 msgid "Access denied" msgstr "İreşep Bulmadı" @@ -498,7 +514,7 @@ msgid "Browse" msgstr "Küzätü" #: db_search.php:254 libraries/display_tbl.lib.php:1163 -#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:440 #: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 @@ -540,14 +556,14 @@ msgstr "Kiläse tüşämä eçendä:" #: db_structure.php:79 db_structure.php:80 db_structure.php:92 #: db_structure.php:93 db_structure.php:105 db_structure.php:106 -#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:311 +#: libraries/sql_query_form.lib.php:314 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Östäw" #: db_structure.php:81 db_structure.php:94 db_structure.php:107 #: libraries/common.lib.php:2832 libraries/common.lib.php:2839 -#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 +#: libraries/db_links.inc.php:48 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 @@ -560,8 +576,7 @@ msgstr "Tözeleş" #: db_structure.php:96 db_structure.php:108 db_structure.php:109 #: db_structure.php:530 db_structure.php:531 db_tracking.php:86 #: libraries/Index.class.php:482 libraries/common.lib.php:1663 -#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 #: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 #: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" @@ -570,21 +585,21 @@ msgstr "Beter" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 +#: libraries/mult_submits.inc.php:38 msgid "Empty" msgstr "Buşat" -#: db_structure.php:301 libraries/tbl_links.inc.php:98 +#: db_structure.php:301 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "\"%s\" atlı tüşämä buşatıldı" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "View %s has been dropped" msgstr "\"%s\" atlı Qaraş beterelgän buldı" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "\"%s\" atlı tüşämä beterelde" @@ -675,7 +690,7 @@ msgstr "Tüşämä tözätü" msgid "Analyze table" msgstr "Tüşämä centekläw" -#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:56 #: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 #: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 #: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 @@ -1396,7 +1411,7 @@ msgid "Databases" msgstr "Biremleklär" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30 #: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 #: tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -1501,7 +1516,7 @@ msgid "Cannot connect: invalid settings." msgstr "Totaşa almím: yaraqsız köyläwlär." #: libraries/auth/config.auth.lib.php:91 -#: libraries/auth/cookie.auth.lib.php:205 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:206 libraries/auth/http.auth.lib.php:64 #: test/theme.php:151 #, php-format msgid "Welcome to %s" @@ -1526,56 +1541,56 @@ msgstr "" "sersüzlär tikäserep, alarnı MySQL idäräçese birgän mäğlümät belän çağıştırıp " "qarísı qala." -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:231 msgid "Log in" msgstr "Kereş" -#: libraries/auth/cookie.auth.lib.php:232 -#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:233 +#: libraries/auth/cookie.auth.lib.php:235 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:94 msgid "phpMyAdmin documentation" msgstr "phpMyAdmin qullanması" -#: libraries/auth/cookie.auth.lib.php:244 #: libraries/auth/cookie.auth.lib.php:245 +#: libraries/auth/cookie.auth.lib.php:246 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:244 +#: libraries/auth/cookie.auth.lib.php:245 msgid "Server:" msgstr "Server" -#: libraries/auth/cookie.auth.lib.php:249 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Username:" msgstr "Atama:" -#: libraries/auth/cookie.auth.lib.php:253 +#: libraries/auth/cookie.auth.lib.php:254 msgid "Password:" msgstr "Sersüz:" -#: libraries/auth/cookie.auth.lib.php:260 +#: libraries/auth/cookie.auth.lib.php:261 msgid "Server Choice" msgstr "Server Saylaw" -#: libraries/auth/cookie.auth.lib.php:306 libraries/header.inc.php:58 +#: libraries/auth/cookie.auth.lib.php:307 libraries/header.inc.php:58 msgid "Cookies must be enabled past this point." msgstr "Cookies must be enabled past this point." -#: libraries/auth/cookie.auth.lib.php:638 +#: libraries/auth/cookie.auth.lib.php:639 #: libraries/auth/signon.auth.lib.php:180 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" -#: libraries/auth/cookie.auth.lib.php:642 +#: libraries/auth/cookie.auth.lib.php:643 #: libraries/auth/signon.auth.lib.php:184 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "Kimendä %s sekund eşlämi tordıq, şuña kürä yañadan keräse" -#: libraries/auth/cookie.auth.lib.php:652 -#: libraries/auth/cookie.auth.lib.php:654 +#: libraries/auth/cookie.auth.lib.php:653 +#: libraries/auth/cookie.auth.lib.php:655 #: libraries/auth/signon.auth.lib.php:190 msgid "Cannot log in to the MySQL server" msgstr "MySQL servergä totaşılıp bulmadı" @@ -1696,7 +1711,7 @@ msgstr "en" #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 #: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 -#: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 +#: libraries/sql_query_form.lib.php:421 libraries/sql_query_form.lib.php:424 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" msgstr "Qullanma" @@ -1839,19 +1854,19 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/common.lib.php:2833 libraries/common.lib.php:2840 -#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 +#: libraries/db_links.inc.php:53 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 #: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 -#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:86 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "Eşkärtü" -#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:265 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1868,36 +1883,31 @@ msgstr "Cibärelde" msgid "Name" msgstr "Adı" -#: libraries/db_links.inc.php:43 -#, php-format -msgid "Database %s has been dropped." -msgstr "%s biremlege beterelde." - -#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 -#: libraries/db_links.inc.php:57 +#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43 +#: libraries/db_links.inc.php:44 msgid "Database seems to be empty!" msgstr "" -#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/db_links.inc.php:66 libraries/relation.lib.php:137 #: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:84 +#: libraries/db_links.inc.php:71 msgid "Query" msgstr "Soraw" -#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 +#: libraries/db_links.inc.php:76 libraries/relation.lib.php:133 msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:87 #: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Yökläw" -#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:65 #: server_privileges.php:110 server_privileges.php:1718 #: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" @@ -2062,7 +2072,7 @@ msgid "remember template" msgstr "tözeleşen yatla" #: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 -#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 +#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:509 msgid "Character set of the file:" msgstr "Şul biremneñ bilgelämäse:" @@ -2115,7 +2125,7 @@ msgstr "" msgid "File to import" msgstr "Yöklise birem" -#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:497 +#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:484 msgid "Location of the text file" msgstr "SQL-ämerlege belän birem yökläw" @@ -2123,12 +2133,12 @@ msgstr "SQL-ämerlege belän birem yökläw" msgid "File uploads are not allowed on this server." msgstr "" -#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 +#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:493 #: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "Yökläw öçen bigelängän törgäkne uqıp bulmí" -#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 +#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:496 #: tbl_change.php:925 msgid "web server upload directory" msgstr "web-server'neñ yökläw törgäge" @@ -3503,7 +3513,7 @@ msgid "" "Please see the documentation on how to update your column_comments table" msgstr "Sineñ Column_comments Tüşämä yañartu eşe turında Qullanmada qarísı" -#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:403 msgid "Bookmarked SQL query" msgstr "Tamğalanğan SQL-soraw" @@ -3568,7 +3578,7 @@ msgstr "" msgid "Slave status" msgstr "" -#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:428 +#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:415 #: server_status.php:736 server_variables.php:51 msgid "Variable" msgstr "Üzgärmä" @@ -3697,51 +3707,51 @@ msgstr "" msgid "Target database" msgstr "Biremlektä ezläw: " -#: libraries/sql_query_form.lib.php:219 +#: libraries/sql_query_form.lib.php:217 #, 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:236 libraries/sql_query_form.lib.php:261 +#: libraries/sql_query_form.lib.php:234 libraries/sql_query_form.lib.php:258 #, 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:307 +#: libraries/sql_query_form.lib.php:294 #, fuzzy #| msgid "Column names" msgid "Columns" msgstr "Alan iseme" -#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 +#: libraries/sql_query_form.lib.php:329 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "Bu SQL-sorawğa tamğa quy" -#: libraries/sql_query_form.lib.php:349 sql.php:669 +#: libraries/sql_query_form.lib.php:336 sql.php:669 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:355 +#: libraries/sql_query_form.lib.php:342 msgid "Replace existing bookmark of same name" msgstr "Şulay uq atalğan bitbilgelärne almaştırası" -#: libraries/sql_query_form.lib.php:371 +#: libraries/sql_query_form.lib.php:358 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:378 +#: libraries/sql_query_form.lib.php:365 msgid "Delimiter" msgstr "" -#: libraries/sql_query_form.lib.php:386 +#: libraries/sql_query_form.lib.php:373 msgid " Show this query here again " msgstr " Bu sorawnı qabat kürsätäse" -#: libraries/sql_query_form.lib.php:445 +#: libraries/sql_query_form.lib.php:432 msgid "Submit" msgstr "Künder" -#: libraries/sql_query_form.lib.php:449 +#: libraries/sql_query_form.lib.php:436 msgid "View only" msgstr "Kürep kenä" @@ -3812,12 +3822,11 @@ 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:105 libraries/tbl_links.inc.php:138 -#: libraries/tbl_links.inc.php:139 +#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107 msgid "Table seems to be empty!" msgstr "" -#: libraries/tbl_links.inc.php:147 +#: libraries/tbl_links.inc.php:115 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" @@ -7863,43 +7872,56 @@ msgstr "\"%s\" atlı tüşämä awdarıldı" msgid "Flush the table (FLUSH)" msgstr "Tüşäwne awdar (\"FLUSH\")" -#: tbl_operations.php:648 +#: tbl_operations.php:642 +#, fuzzy +msgid "Table removal" +msgstr "tüşämä adı" + +#: tbl_operations.php:657 +msgid "Empty the table (TRUNCATE)" +msgstr "" + +#: tbl_operations.php:675 +msgid "Drop the table (DROP)" +msgstr "" + +#: tbl_operations.php:696 #, fuzzy msgid "Partition maintenance" msgstr "Tüşämä eşkärtü" -#: tbl_operations.php:656 +#: tbl_operations.php:704 #, php-format msgid "Partition %s" msgstr "" -#: tbl_operations.php:659 +#: tbl_operations.php:707 msgid "Analyze" msgstr "" -#: tbl_operations.php:660 +#: tbl_operations.php:708 #, fuzzy msgid "Check" msgstr "Çexçä" -#: tbl_operations.php:661 +#: tbl_operations.php:709 msgid "Optimize" msgstr "" -#: tbl_operations.php:662 +#: tbl_operations.php:710 msgid "Rebuild" msgstr "" -#: tbl_operations.php:663 +#: tbl_operations.php:711 #, fuzzy msgid "Repair" msgstr "Tüşämä tözätü" -#: tbl_operations.php:675 +#: tbl_operations.php:723 msgid "Remove partitioning" msgstr "" -#: tbl_operations.php:701 +#: tbl_operations.php:749 msgid "Check referential integrity:" msgstr "Bäyläneşlärne döreslekkä tikşerü:" diff --git a/po/ug.po b/po/ug.po index 8595cec56..0591e8f1f 100644 --- a/po/ug.po +++ b/po/ug.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-26 17:18+0200\n" +"POT-Creation-Date: 2010-07-27 10:12+0200\n" "PO-Revision-Date: 2010-07-27 04:51+0200\n" "Last-Translator: \n" "Language-Team: Uyghur \n" @@ -41,16 +41,16 @@ msgstr "" #: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 #: db_structure.php:89 db_structure.php:91 db_structure.php:102 #: db_structure.php:104 libraries/common.lib.php:2834 -#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "ئىزدەش" #: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 -#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_operations.php:468 db_operations.php:492 db_search.php:344 #: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 #: libraries/Theme_Manager.class.php:305 -#: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 +#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:712 #: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 @@ -58,8 +58,8 @@ msgstr "ئىزدەش" #: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 #: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 -#: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: libraries/sql_query_form.lib.php:377 libraries/sql_query_form.lib.php:447 +#: libraries/sql_query_form.lib.php:512 libraries/tbl_properties.inc.php:780 #: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 #: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 #: server_privileges.php:663 server_privileges.php:1620 @@ -69,7 +69,7 @@ msgstr "ئىزدەش" #: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 #: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 -#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_operations.php:726 tbl_select.php:323 tbl_structure.php:559 #: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 #: view_create.php:181 view_operations.php:99 msgid "Go" @@ -250,47 +250,64 @@ msgstr "بۇيرۇق" msgid "and then" msgstr "كېيىن" -#: db_operations.php:390 +#: db_operations.php:379 +#, fuzzy +#| msgid "Rename database to" +msgid "Remove database" +msgstr "ئۆزگەرتىلگەن ساندان ئىسمى" + +#: db_operations.php:391 +#, php-format +msgid "Database %s has been dropped." +msgstr "" + +#: db_operations.php:396 +#, fuzzy +#| msgid "Copy database to" +msgid "Drop the database (DROP)" +msgstr "كۆچۈرۈلگەن ساندان" + +#: db_operations.php:424 msgid "Copy database to" msgstr "كۆچۈرۈلگەن ساندان" -#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:431 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "تۈزىلىشىنىلا" -#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:432 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "تۈزۈلىشى ۋە ئۇچۇر" -#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:433 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "ئۇچۇرنىلا" -#: db_operations.php:407 +#: db_operations.php:441 msgid "CREATE DATABASE before copying" msgstr "ئاندىنقى سانداننى كۆپەيتىپ ساندان قۇرۇش" -#: db_operations.php:410 libraries/export/sql.php:51 +#: db_operations.php:444 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 #: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "قوشۇلغىنى %s" -#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: db_operations.php:448 libraries/export/sql.php:77 tbl_operations.php:296 #: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT قوشۇش" -#: db_operations.php:418 tbl_operations.php:542 +#: db_operations.php:452 tbl_operations.php:542 msgid "Add constraints" msgstr "مەجبۇرى قوشۇش" -#: db_operations.php:431 +#: db_operations.php:465 msgid "Switch to copied database" msgstr "كۆپەيتىلگەن ساندانغا كۆچۈش" -#: db_operations.php:451 libraries/Index.class.php:447 +#: db_operations.php:485 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 #: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 #: server_collations.php:53 server_collations.php:65 server_databases.php:108 @@ -299,7 +316,7 @@ msgstr "كۆپەيتىلگەن ساندانغا كۆچۈش" msgid "Collation" msgstr "تاسقاش" -#: db_operations.php:464 pdf_schema.php:32 +#: db_operations.php:498 pdf_schema.php:32 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -308,10 +325,10 @@ msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." msgstr "" -"ئالاقىدار جەدۋەللەرنىڭ قوشۇمچە ئىقتىدارى پائالسىز. سەۋەبىنى ئېنىقلاش ئۈچۈن %" -"sبۇ يەرنى كۆرۈڭ%s." +"ئالاقىدار جەدۋەللەرنىڭ قوشۇمچە ئىقتىدارى پائالسىز. سەۋەبىنى ئېنىقلاش ئۈچۈن " +"%sبۇ يەرنى كۆرۈڭ%s." -#: db_operations.php:497 +#: db_operations.php:531 msgid "Edit PDF Pages" msgstr "PDF بېتىنى تەھرىرلەش" @@ -365,7 +382,7 @@ msgid_plural "%s tables" msgstr[0] "%s جەدۋەل" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -453,7 +470,7 @@ msgstr "تاپشۇرۇش" #: db_search.php:50 libraries/auth/config.auth.lib.php:83 #: libraries/auth/config.auth.lib.php:102 -#: libraries/auth/cookie.auth.lib.php:640 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:182 msgid "Access denied" msgstr "رەت قىلىندى" @@ -494,7 +511,7 @@ msgid "Browse" msgstr "كۆزەت" #: db_search.php:254 libraries/display_tbl.lib.php:1163 -#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:440 #: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 @@ -533,14 +550,14 @@ msgstr "ئىچىدىكى سۆزلەم:" #: db_structure.php:79 db_structure.php:80 db_structure.php:92 #: db_structure.php:93 db_structure.php:105 db_structure.php:106 -#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:311 +#: libraries/sql_query_form.lib.php:314 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "قىستۇرۇش" #: db_structure.php:81 db_structure.php:94 db_structure.php:107 #: libraries/common.lib.php:2832 libraries/common.lib.php:2839 -#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 +#: libraries/db_links.inc.php:48 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 @@ -553,8 +570,7 @@ msgstr "تۈزۈلىشى" #: db_structure.php:96 db_structure.php:108 db_structure.php:109 #: db_structure.php:530 db_structure.php:531 db_tracking.php:86 #: libraries/Index.class.php:482 libraries/common.lib.php:1663 -#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 #: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 #: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" @@ -563,21 +579,21 @@ msgstr "ئۆچۈرۈش" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 +#: libraries/mult_submits.inc.php:38 msgid "Empty" msgstr "تازىلاش" -#: db_structure.php:301 libraries/tbl_links.inc.php:98 +#: db_structure.php:301 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr " %s جەدۋەل تازىلاندى" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "View %s has been dropped" msgstr "%s كۆرۈنمە ئۆچۈرۈلدى" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "%s جەدىۋەل ئۆچۈرۈلدى" @@ -667,7 +683,7 @@ msgstr "جەدۋەلنى ئوڭشاش" msgid "Analyze table" msgstr "جەدۋەل تەھلىلى" -#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:56 #: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 #: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 #: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 @@ -1343,7 +1359,7 @@ msgid "Databases" msgstr "ساندان" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30 #: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 #: tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -1443,7 +1459,7 @@ msgid "Cannot connect: invalid settings." msgstr "ئۇلىنالمىدى: ئۈنۈمسىز تەڭشەك." #: libraries/auth/config.auth.lib.php:91 -#: libraries/auth/cookie.auth.lib.php:205 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:206 libraries/auth/http.auth.lib.php:64 #: test/theme.php:151 #, php-format msgid "Welcome to %s" @@ -1470,56 +1486,56 @@ msgstr "" "configuration and make sure that they correspond to the information given by " "the administrator of the MySQL server." -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:231 msgid "Log in" msgstr "كىرىش" -#: libraries/auth/cookie.auth.lib.php:232 -#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:233 +#: libraries/auth/cookie.auth.lib.php:235 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:94 msgid "phpMyAdmin documentation" msgstr "phpMyAdmin ھۆججىتى" -#: libraries/auth/cookie.auth.lib.php:244 #: libraries/auth/cookie.auth.lib.php:245 +#: libraries/auth/cookie.auth.lib.php:246 msgid "You can enter hostname/IP address and port separated by space." msgstr "You can enter hostname/IP address and port separated by space." -#: libraries/auth/cookie.auth.lib.php:244 +#: libraries/auth/cookie.auth.lib.php:245 msgid "Server:" msgstr "مۇلازىمىتېر:" -#: libraries/auth/cookie.auth.lib.php:249 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Username:" msgstr "ئابۇنىت ئىسمى:" -#: libraries/auth/cookie.auth.lib.php:253 +#: libraries/auth/cookie.auth.lib.php:254 msgid "Password:" msgstr "شىفىر" -#: libraries/auth/cookie.auth.lib.php:260 +#: libraries/auth/cookie.auth.lib.php:261 msgid "Server Choice" msgstr "مۇلازىمىتېر تاللاش" -#: libraries/auth/cookie.auth.lib.php:306 libraries/header.inc.php:58 +#: libraries/auth/cookie.auth.lib.php:307 libraries/header.inc.php:58 msgid "Cookies must be enabled past this point." msgstr "Cookies نى قوزغاتقاندىن كېيىن ئاندىن كېرىڭ." -#: libraries/auth/cookie.auth.lib.php:638 +#: libraries/auth/cookie.auth.lib.php:639 #: libraries/auth/signon.auth.lib.php:180 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "پارولسىز كىرىش چەكلەنگەن (پارولسىز كىرىش ئىقازىتىنى كۆرۈڭ)" -#: libraries/auth/cookie.auth.lib.php:642 +#: libraries/auth/cookie.auth.lib.php:643 #: libraries/auth/signon.auth.lib.php:184 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "No activity within %s seconds; please log in again" -#: libraries/auth/cookie.auth.lib.php:652 -#: libraries/auth/cookie.auth.lib.php:654 +#: libraries/auth/cookie.auth.lib.php:653 +#: libraries/auth/cookie.auth.lib.php:655 #: libraries/auth/signon.auth.lib.php:190 msgid "Cannot log in to the MySQL server" msgstr "MySQL مۇلازىمىتېرىغا ئۇلىنالمىدى." @@ -1630,7 +1646,7 @@ msgstr "" #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 #: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 -#: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 +#: libraries/sql_query_form.lib.php:421 libraries/sql_query_form.lib.php:424 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" msgstr "" @@ -1771,19 +1787,19 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/common.lib.php:2833 libraries/common.lib.php:2840 -#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 +#: libraries/db_links.inc.php:53 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 #: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "" -#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 -#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:86 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "" -#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:265 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1799,36 +1815,31 @@ msgstr "" msgid "Name" msgstr "" -#: libraries/db_links.inc.php:43 -#, php-format -msgid "Database %s has been dropped." -msgstr "" - -#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 -#: libraries/db_links.inc.php:57 +#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43 +#: libraries/db_links.inc.php:44 msgid "Database seems to be empty!" msgstr "" -#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/db_links.inc.php:66 libraries/relation.lib.php:137 #: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:84 +#: libraries/db_links.inc.php:71 msgid "Query" msgstr "" -#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 +#: libraries/db_links.inc.php:76 libraries/relation.lib.php:133 msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:87 #: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "" -#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:65 #: server_privileges.php:110 server_privileges.php:1718 #: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" @@ -1985,7 +1996,7 @@ msgid "remember template" msgstr "" #: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 -#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 +#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:509 msgid "Character set of the file:" msgstr "" @@ -2038,7 +2049,7 @@ msgstr "" msgid "File to import" msgstr "" -#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:497 +#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:484 msgid "Location of the text file" msgstr "" @@ -2046,12 +2057,12 @@ msgstr "" msgid "File uploads are not allowed on this server." msgstr "" -#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 +#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:493 #: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "" -#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 +#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:496 #: tbl_change.php:925 msgid "web server upload directory" msgstr "" @@ -3376,7 +3387,7 @@ msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" -#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:403 msgid "Bookmarked SQL query" msgstr "" @@ -3441,7 +3452,7 @@ msgstr "" msgid "Slave status" msgstr "" -#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:428 +#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:415 #: server_status.php:736 server_variables.php:51 msgid "Variable" msgstr "" @@ -3568,49 +3579,49 @@ msgstr "" msgid "Target database" msgstr "" -#: libraries/sql_query_form.lib.php:219 +#: libraries/sql_query_form.lib.php:217 #, php-format msgid "Run SQL query/queries on server %s" msgstr "" -#: libraries/sql_query_form.lib.php:236 libraries/sql_query_form.lib.php:261 +#: libraries/sql_query_form.lib.php:234 libraries/sql_query_form.lib.php:258 #, php-format msgid "Run SQL query/queries on database %s" msgstr "" -#: libraries/sql_query_form.lib.php:307 +#: libraries/sql_query_form.lib.php:294 msgid "Columns" msgstr "" -#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 +#: libraries/sql_query_form.lib.php:329 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql_query_form.lib.php:349 sql.php:669 +#: libraries/sql_query_form.lib.php:336 sql.php:669 msgid "Let every user access this bookmark" msgstr "" -#: libraries/sql_query_form.lib.php:355 +#: libraries/sql_query_form.lib.php:342 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/sql_query_form.lib.php:371 +#: libraries/sql_query_form.lib.php:358 msgid "Do not overwrite this query from outside the window" msgstr "" -#: libraries/sql_query_form.lib.php:378 +#: libraries/sql_query_form.lib.php:365 msgid "Delimiter" msgstr "" -#: libraries/sql_query_form.lib.php:386 +#: libraries/sql_query_form.lib.php:373 msgid " Show this query here again " msgstr "" -#: libraries/sql_query_form.lib.php:445 +#: libraries/sql_query_form.lib.php:432 msgid "Submit" msgstr "" -#: libraries/sql_query_form.lib.php:449 +#: libraries/sql_query_form.lib.php:436 msgid "View only" msgstr "" @@ -3668,12 +3679,11 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" -#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 -#: libraries/tbl_links.inc.php:139 +#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107 msgid "Table seems to be empty!" msgstr "" -#: libraries/tbl_links.inc.php:147 +#: libraries/tbl_links.inc.php:115 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" @@ -7493,40 +7503,52 @@ msgstr "" msgid "Flush the table (FLUSH)" msgstr "" -#: tbl_operations.php:648 +#: tbl_operations.php:642 +msgid "Table removal" +msgstr "" + +#: tbl_operations.php:657 +msgid "Empty the table (TRUNCATE)" +msgstr "" + +#: tbl_operations.php:675 +msgid "Drop the table (DROP)" +msgstr "" + +#: tbl_operations.php:696 msgid "Partition maintenance" msgstr "" -#: tbl_operations.php:656 +#: tbl_operations.php:704 #, php-format msgid "Partition %s" msgstr "" -#: tbl_operations.php:659 +#: tbl_operations.php:707 msgid "Analyze" msgstr "" -#: tbl_operations.php:660 +#: tbl_operations.php:708 msgid "Check" msgstr "" -#: tbl_operations.php:661 +#: tbl_operations.php:709 msgid "Optimize" msgstr "" -#: tbl_operations.php:662 +#: tbl_operations.php:710 msgid "Rebuild" msgstr "" -#: tbl_operations.php:663 +#: tbl_operations.php:711 msgid "Repair" msgstr "" -#: tbl_operations.php:675 +#: tbl_operations.php:723 msgid "Remove partitioning" msgstr "" -#: tbl_operations.php:701 +#: tbl_operations.php:749 msgid "Check referential integrity:" msgstr "" diff --git a/po/uk.po b/po/uk.po index 857cc0db9..5899bbc83 100644 --- a/po/uk.po +++ b/po/uk.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-26 17:18+0200\n" +"POT-Creation-Date: 2010-07-27 10:12+0200\n" "PO-Revision-Date: 2010-03-12 09:19+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: ukrainian \n" @@ -35,16 +35,16 @@ msgstr "" #: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 #: db_structure.php:89 db_structure.php:91 db_structure.php:102 #: db_structure.php:104 libraries/common.lib.php:2834 -#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Шукати" #: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 -#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_operations.php:468 db_operations.php:492 db_search.php:344 #: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 #: libraries/Theme_Manager.class.php:305 -#: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 +#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:712 #: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 @@ -52,8 +52,8 @@ msgstr "Шукати" #: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 #: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 -#: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: libraries/sql_query_form.lib.php:377 libraries/sql_query_form.lib.php:447 +#: libraries/sql_query_form.lib.php:512 libraries/tbl_properties.inc.php:780 #: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 #: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 #: server_privileges.php:663 server_privileges.php:1620 @@ -63,7 +63,7 @@ msgstr "Шукати" #: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 #: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 -#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_operations.php:726 tbl_select.php:323 tbl_structure.php:559 #: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 #: view_create.php:181 view_operations.php:99 msgid "Go" @@ -244,47 +244,64 @@ msgstr "Команда" msgid "and then" msgstr "" -#: db_operations.php:390 +#: db_operations.php:379 +#, fuzzy +#| msgid "No databases" +msgid "Remove database" +msgstr "БД відсутні" + +#: db_operations.php:391 +#, php-format +msgid "Database %s has been dropped." +msgstr "Базу даних %s знищено." + +#: db_operations.php:396 +#, fuzzy +#| msgid "No databases" +msgid "Drop the database (DROP)" +msgstr "БД відсутні" + +#: db_operations.php:424 msgid "Copy database to" msgstr "" -#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:431 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Лише структуру" -#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:432 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Структуру і дані" -#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:433 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Лише дані" -#: db_operations.php:407 +#: db_operations.php:441 msgid "CREATE DATABASE before copying" msgstr "" -#: db_operations.php:410 libraries/export/sql.php:51 +#: db_operations.php:444 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 #: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "" -#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: db_operations.php:448 libraries/export/sql.php:77 tbl_operations.php:296 #: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "" -#: db_operations.php:418 tbl_operations.php:542 +#: db_operations.php:452 tbl_operations.php:542 msgid "Add constraints" msgstr "" -#: db_operations.php:431 +#: db_operations.php:465 msgid "Switch to copied database" msgstr "" -#: db_operations.php:451 libraries/Index.class.php:447 +#: db_operations.php:485 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 #: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 #: server_collations.php:53 server_collations.php:65 server_databases.php:108 @@ -293,7 +310,7 @@ msgstr "" msgid "Collation" msgstr "Порівняння" -#: db_operations.php:464 pdf_schema.php:32 +#: db_operations.php:498 pdf_schema.php:32 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -305,7 +322,7 @@ msgstr "" "Додаткова можливість роботи із залінкованими таблицями деактивована. Для " "того, щоб довідатись чому, натисніть %sтут%s." -#: db_operations.php:497 +#: db_operations.php:531 msgid "Edit PDF Pages" msgstr "Редагувати PDF Сторінки" @@ -361,7 +378,7 @@ msgstr[0] "%s таблиц(і)" msgstr[1] "%s таблиц(і)" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -453,7 +470,7 @@ msgstr "Виконати запит" #: db_search.php:50 libraries/auth/config.auth.lib.php:83 #: libraries/auth/config.auth.lib.php:102 -#: libraries/auth/cookie.auth.lib.php:640 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:182 msgid "Access denied" msgstr "Доступ заборонено" @@ -496,7 +513,7 @@ msgid "Browse" msgstr "Переглянути" #: db_search.php:254 libraries/display_tbl.lib.php:1163 -#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:440 #: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 @@ -539,14 +556,14 @@ msgstr "Всередині таблиць:" #: db_structure.php:79 db_structure.php:80 db_structure.php:92 #: db_structure.php:93 db_structure.php:105 db_structure.php:106 -#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:311 +#: libraries/sql_query_form.lib.php:314 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Вставити" #: db_structure.php:81 db_structure.php:94 db_structure.php:107 #: libraries/common.lib.php:2832 libraries/common.lib.php:2839 -#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 +#: libraries/db_links.inc.php:48 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 @@ -559,8 +576,7 @@ msgstr "Структура" #: db_structure.php:96 db_structure.php:108 db_structure.php:109 #: db_structure.php:530 db_structure.php:531 db_tracking.php:86 #: libraries/Index.class.php:482 libraries/common.lib.php:1663 -#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 #: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 #: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" @@ -569,21 +585,21 @@ msgstr "Знищити" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 +#: libraries/mult_submits.inc.php:38 msgid "Empty" msgstr "Очистити" -#: db_structure.php:301 libraries/tbl_links.inc.php:98 +#: db_structure.php:301 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "Таблицю %s було очищено" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "View %s has been dropped" msgstr "" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "Таблицю %s було знищено" @@ -673,7 +689,7 @@ msgstr "Ремонтувати таблицю" msgid "Analyze table" msgstr "Аналіз таблиці" -#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:56 #: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 #: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 #: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 @@ -1383,7 +1399,7 @@ msgid "Databases" msgstr "Бази Даних" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30 #: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 #: tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -1486,7 +1502,7 @@ msgid "Cannot connect: invalid settings." msgstr "" #: libraries/auth/config.auth.lib.php:91 -#: libraries/auth/cookie.auth.lib.php:205 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:206 libraries/auth/http.auth.lib.php:64 #: test/theme.php:151 #, php-format msgid "Welcome to %s" @@ -1511,56 +1527,56 @@ msgstr "" "config.inc.php та впевнитися, що вони відповідають даним отриманим Вами від " "адміністратора MySQL сервера." -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:231 msgid "Log in" msgstr "Вхід в систему" -#: libraries/auth/cookie.auth.lib.php:232 -#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:233 +#: libraries/auth/cookie.auth.lib.php:235 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:94 msgid "phpMyAdmin documentation" msgstr "Документація по phpMyAdmin" -#: libraries/auth/cookie.auth.lib.php:244 #: libraries/auth/cookie.auth.lib.php:245 +#: libraries/auth/cookie.auth.lib.php:246 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:244 +#: libraries/auth/cookie.auth.lib.php:245 msgid "Server:" msgstr "" -#: libraries/auth/cookie.auth.lib.php:249 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Username:" msgstr "Ім'я користувача:" -#: libraries/auth/cookie.auth.lib.php:253 +#: libraries/auth/cookie.auth.lib.php:254 msgid "Password:" msgstr "Пароль:" -#: libraries/auth/cookie.auth.lib.php:260 +#: libraries/auth/cookie.auth.lib.php:261 msgid "Server Choice" msgstr "Вибір сервера" -#: libraries/auth/cookie.auth.lib.php:306 libraries/header.inc.php:58 +#: libraries/auth/cookie.auth.lib.php:307 libraries/header.inc.php:58 msgid "Cookies must be enabled past this point." msgstr "З цього моменту Cookies повинні бути дозволені." -#: libraries/auth/cookie.auth.lib.php:638 +#: libraries/auth/cookie.auth.lib.php:639 #: libraries/auth/signon.auth.lib.php:180 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" -#: libraries/auth/cookie.auth.lib.php:642 +#: libraries/auth/cookie.auth.lib.php:643 #: libraries/auth/signon.auth.lib.php:184 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" -#: libraries/auth/cookie.auth.lib.php:652 -#: libraries/auth/cookie.auth.lib.php:654 +#: libraries/auth/cookie.auth.lib.php:653 +#: libraries/auth/cookie.auth.lib.php:655 #: libraries/auth/signon.auth.lib.php:190 msgid "Cannot log in to the MySQL server" msgstr "Не можу зареєструватися на MySQL сервері" @@ -1680,7 +1696,7 @@ msgstr "" #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 #: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 -#: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 +#: libraries/sql_query_form.lib.php:421 libraries/sql_query_form.lib.php:424 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" msgstr "Документація" @@ -1821,19 +1837,19 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/common.lib.php:2833 libraries/common.lib.php:2840 -#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 +#: libraries/db_links.inc.php:53 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 #: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 -#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:86 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "Операцій" -#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:265 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1849,36 +1865,31 @@ msgstr "" msgid "Name" msgstr "Назва" -#: libraries/db_links.inc.php:43 -#, php-format -msgid "Database %s has been dropped." -msgstr "Базу даних %s знищено." - -#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 -#: libraries/db_links.inc.php:57 +#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43 +#: libraries/db_links.inc.php:44 msgid "Database seems to be empty!" msgstr "" -#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/db_links.inc.php:66 libraries/relation.lib.php:137 #: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:84 +#: libraries/db_links.inc.php:71 msgid "Query" msgstr "Запит згідно прикладу" -#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 +#: libraries/db_links.inc.php:76 libraries/relation.lib.php:133 msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:87 #: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "" -#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:65 #: server_privileges.php:110 server_privileges.php:1718 #: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" @@ -2040,7 +2051,7 @@ msgid "remember template" msgstr "запам'ятати шаблон" #: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 -#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 +#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:509 msgid "Character set of the file:" msgstr "Кодування файлу:" @@ -2093,7 +2104,7 @@ msgstr "" msgid "File to import" msgstr "" -#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:497 +#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:484 msgid "Location of the text file" msgstr "вкажіть розташування текстового файлу" @@ -2101,12 +2112,12 @@ msgstr "вкажіть розташування текстового файлу" msgid "File uploads are not allowed on this server." msgstr "" -#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 +#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:493 #: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "Встановлений Вами каталог для завантаження файлів недоступний" -#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 +#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:496 #: tbl_change.php:925 msgid "web server upload directory" msgstr "каталог веб-сервера для завантаження файлів (upload directory)" @@ -3449,7 +3460,7 @@ msgstr "" "За інформацією як поновити Вашу таблицю Column_comments прошу дивитись у " "Документації" -#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:403 msgid "Bookmarked SQL query" msgstr "Закладка на SQL-запит" @@ -3514,7 +3525,7 @@ msgstr "" msgid "Slave status" msgstr "" -#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:428 +#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:415 #: server_status.php:736 server_variables.php:51 msgid "Variable" msgstr "Змінна" @@ -3641,51 +3652,51 @@ msgstr "" msgid "Target database" msgstr "" -#: libraries/sql_query_form.lib.php:219 +#: libraries/sql_query_form.lib.php:217 #, php-format msgid "Run SQL query/queries on server %s" msgstr "" -#: libraries/sql_query_form.lib.php:236 libraries/sql_query_form.lib.php:261 +#: libraries/sql_query_form.lib.php:234 libraries/sql_query_form.lib.php:258 #, php-format msgid "Run SQL query/queries on database %s" msgstr "Виконати SQL запит(и) до БД %s" -#: libraries/sql_query_form.lib.php:307 +#: libraries/sql_query_form.lib.php:294 #, fuzzy #| msgid "Column names" msgid "Columns" msgstr "Назви колонок" -#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 +#: libraries/sql_query_form.lib.php:329 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "Закладка на даний SQL-запит" -#: libraries/sql_query_form.lib.php:349 sql.php:669 +#: libraries/sql_query_form.lib.php:336 sql.php:669 msgid "Let every user access this bookmark" msgstr "" -#: libraries/sql_query_form.lib.php:355 +#: libraries/sql_query_form.lib.php:342 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/sql_query_form.lib.php:371 +#: libraries/sql_query_form.lib.php:358 msgid "Do not overwrite this query from outside the window" msgstr "Не перекривати цей запит в інших вікнах" -#: libraries/sql_query_form.lib.php:378 +#: libraries/sql_query_form.lib.php:365 msgid "Delimiter" msgstr "" -#: libraries/sql_query_form.lib.php:386 +#: libraries/sql_query_form.lib.php:373 msgid " Show this query here again " msgstr " Показати даний запит знову " -#: libraries/sql_query_form.lib.php:445 +#: libraries/sql_query_form.lib.php:432 msgid "Submit" msgstr "Виконати" -#: libraries/sql_query_form.lib.php:449 +#: libraries/sql_query_form.lib.php:436 msgid "View only" msgstr "Лише перегляд" @@ -3758,12 +3769,11 @@ msgstr "" "Не можу запустити перевірку SQL. Прошу проконтролювати чи заінстальовано " "необхідні php extensions як описано в %sдокументації%s." -#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 -#: libraries/tbl_links.inc.php:139 +#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107 msgid "Table seems to be empty!" msgstr "" -#: libraries/tbl_links.inc.php:147 +#: libraries/tbl_links.inc.php:115 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" @@ -7714,40 +7724,52 @@ msgstr "Було очищено кеш таблиці %s" msgid "Flush the table (FLUSH)" msgstr "Очистити кеш таблиці (\"FLUSH\")" -#: tbl_operations.php:648 +#: tbl_operations.php:642 +msgid "Table removal" +msgstr "" + +#: tbl_operations.php:657 +msgid "Empty the table (TRUNCATE)" +msgstr "" + +#: tbl_operations.php:675 +msgid "Drop the table (DROP)" +msgstr "" + +#: tbl_operations.php:696 msgid "Partition maintenance" msgstr "" -#: tbl_operations.php:656 +#: tbl_operations.php:704 #, php-format msgid "Partition %s" msgstr "" -#: tbl_operations.php:659 +#: tbl_operations.php:707 msgid "Analyze" msgstr "" -#: tbl_operations.php:660 +#: tbl_operations.php:708 msgid "Check" msgstr "" -#: tbl_operations.php:661 +#: tbl_operations.php:709 msgid "Optimize" msgstr "" -#: tbl_operations.php:662 +#: tbl_operations.php:710 msgid "Rebuild" msgstr "" -#: tbl_operations.php:663 +#: tbl_operations.php:711 msgid "Repair" msgstr "" -#: tbl_operations.php:675 +#: tbl_operations.php:723 msgid "Remove partitioning" msgstr "" -#: tbl_operations.php:701 +#: tbl_operations.php:749 msgid "Check referential integrity:" msgstr "Перевір цілісність даних на рівні посилань:" diff --git a/po/ur.po b/po/ur.po index 75dfdcd32..e1a172e91 100644 --- a/po/ur.po +++ b/po/ur.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-26 17:18+0200\n" +"POT-Creation-Date: 2010-07-27 10:12+0200\n" "PO-Revision-Date: 2010-05-14 12:35+0200\n" "Last-Translator: \n" "Language-Team: Urdu \n" @@ -42,16 +42,16 @@ msgstr "" #: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 #: db_structure.php:89 db_structure.php:91 db_structure.php:102 #: db_structure.php:104 libraries/common.lib.php:2834 -#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "تلاش" #: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 -#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_operations.php:468 db_operations.php:492 db_search.php:344 #: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 #: libraries/Theme_Manager.class.php:305 -#: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 +#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:712 #: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 @@ -59,8 +59,8 @@ msgstr "تلاش" #: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 #: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 -#: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: libraries/sql_query_form.lib.php:377 libraries/sql_query_form.lib.php:447 +#: libraries/sql_query_form.lib.php:512 libraries/tbl_properties.inc.php:780 #: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 #: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 #: server_privileges.php:663 server_privileges.php:1620 @@ -70,7 +70,7 @@ msgstr "تلاش" #: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 #: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 -#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_operations.php:726 tbl_select.php:323 tbl_structure.php:559 #: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 #: view_create.php:181 view_operations.php:99 msgid "Go" @@ -251,47 +251,64 @@ msgstr "کمانڈ" msgid "and then" msgstr "اور پھر" -#: db_operations.php:390 +#: db_operations.php:379 +#, fuzzy +#| msgid "Rename database to" +msgid "Remove database" +msgstr "ڈیٹا بیس کا نام بدلیں" + +#: db_operations.php:391 +#, php-format +msgid "Database %s has been dropped." +msgstr "" + +#: db_operations.php:396 +#, fuzzy +#| msgid "Copy database to" +msgid "Drop the database (DROP)" +msgstr "ڈیٹا بیس کاپی کریں" + +#: db_operations.php:424 msgid "Copy database to" msgstr "ڈیٹا بیس کاپی کریں" -#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:431 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "سٹرکچر صرف" -#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:432 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "سٹرکچر اور ڈیٹا" -#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:433 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "صرف ڈیٹا" -#: db_operations.php:407 +#: db_operations.php:441 msgid "CREATE DATABASE before copying" msgstr "کاپی سے پہلے ڈیٹا بیس بنائیں" -#: db_operations.php:410 libraries/export/sql.php:51 +#: db_operations.php:444 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 #: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "شامل کریں %s" -#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: db_operations.php:448 libraries/export/sql.php:77 tbl_operations.php:296 #: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "ویلیو شامل کریں AUTO_INCREMENT" -#: db_operations.php:418 tbl_operations.php:542 +#: db_operations.php:452 tbl_operations.php:542 msgid "Add constraints" msgstr "Add constraints" -#: db_operations.php:431 +#: db_operations.php:465 msgid "Switch to copied database" msgstr "Switch to copied database" -#: db_operations.php:451 libraries/Index.class.php:447 +#: db_operations.php:485 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 #: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 #: server_collations.php:53 server_collations.php:65 server_databases.php:108 @@ -300,7 +317,7 @@ msgstr "Switch to copied database" msgid "Collation" msgstr "کولیکشن" -#: db_operations.php:464 pdf_schema.php:32 +#: db_operations.php:498 pdf_schema.php:32 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -312,7 +329,7 @@ msgstr "" "The additional features for working with linked tables have been " "deactivated. To find out why click %shere%s." -#: db_operations.php:497 +#: db_operations.php:531 msgid "Edit PDF Pages" msgstr "پی ڈی ایف صفحوں کی تدوین کریں" @@ -368,7 +385,7 @@ msgstr[0] "%s table(s)" msgstr[1] "%s table(s)" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -460,7 +477,7 @@ msgstr "Submit Query" #: db_search.php:50 libraries/auth/config.auth.lib.php:83 #: libraries/auth/config.auth.lib.php:102 -#: libraries/auth/cookie.auth.lib.php:640 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:182 msgid "Access denied" msgstr "رسائی سے انکار" @@ -503,7 +520,7 @@ msgid "Browse" msgstr "Browse" #: db_search.php:254 libraries/display_tbl.lib.php:1163 -#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:440 #: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 @@ -546,14 +563,14 @@ msgstr "فیلڈ کے اندر:" #: db_structure.php:79 db_structure.php:80 db_structure.php:92 #: db_structure.php:93 db_structure.php:105 db_structure.php:106 -#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:311 +#: libraries/sql_query_form.lib.php:314 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "داخل کریں" #: db_structure.php:81 db_structure.php:94 db_structure.php:107 #: libraries/common.lib.php:2832 libraries/common.lib.php:2839 -#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 +#: libraries/db_links.inc.php:48 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 @@ -566,8 +583,7 @@ msgstr "ساخت" #: db_structure.php:96 db_structure.php:108 db_structure.php:109 #: db_structure.php:530 db_structure.php:531 db_tracking.php:86 #: libraries/Index.class.php:482 libraries/common.lib.php:1663 -#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 #: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 #: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" @@ -576,21 +592,21 @@ msgstr "نکلالنا" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 +#: libraries/mult_submits.inc.php:38 msgid "Empty" msgstr "خالی" -#: db_structure.php:301 libraries/tbl_links.inc.php:98 +#: db_structure.php:301 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr " %s ٹیبل" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "View %s has been dropped" msgstr "View %s has been dropped" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "Table %s has been dropped" @@ -682,7 +698,7 @@ msgstr "ٹیبلز مرمت کریں" msgid "Analyze table" msgstr "ٹیبلز کا تجزیہ" -#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:56 #: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 #: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 #: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 @@ -1350,7 +1366,7 @@ msgid "Databases" msgstr "" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30 #: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 #: tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -1453,7 +1469,7 @@ msgid "Cannot connect: invalid settings." msgstr "" #: libraries/auth/config.auth.lib.php:91 -#: libraries/auth/cookie.auth.lib.php:205 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:206 libraries/auth/http.auth.lib.php:64 #: test/theme.php:151 #, php-format msgid "Welcome to %s" @@ -1474,56 +1490,56 @@ msgid "" "the administrator of the MySQL server." msgstr "" -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:231 msgid "Log in" msgstr "" -#: libraries/auth/cookie.auth.lib.php:232 -#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:233 +#: libraries/auth/cookie.auth.lib.php:235 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:94 msgid "phpMyAdmin documentation" msgstr "" -#: libraries/auth/cookie.auth.lib.php:244 #: libraries/auth/cookie.auth.lib.php:245 +#: libraries/auth/cookie.auth.lib.php:246 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:244 +#: libraries/auth/cookie.auth.lib.php:245 msgid "Server:" msgstr "" -#: libraries/auth/cookie.auth.lib.php:249 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Username:" msgstr "" -#: libraries/auth/cookie.auth.lib.php:253 +#: libraries/auth/cookie.auth.lib.php:254 msgid "Password:" msgstr "" -#: libraries/auth/cookie.auth.lib.php:260 +#: libraries/auth/cookie.auth.lib.php:261 msgid "Server Choice" msgstr "" -#: libraries/auth/cookie.auth.lib.php:306 libraries/header.inc.php:58 +#: libraries/auth/cookie.auth.lib.php:307 libraries/header.inc.php:58 msgid "Cookies must be enabled past this point." msgstr "" -#: libraries/auth/cookie.auth.lib.php:638 +#: libraries/auth/cookie.auth.lib.php:639 #: libraries/auth/signon.auth.lib.php:180 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" -#: libraries/auth/cookie.auth.lib.php:642 +#: libraries/auth/cookie.auth.lib.php:643 #: libraries/auth/signon.auth.lib.php:184 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" -#: libraries/auth/cookie.auth.lib.php:652 -#: libraries/auth/cookie.auth.lib.php:654 +#: libraries/auth/cookie.auth.lib.php:653 +#: libraries/auth/cookie.auth.lib.php:655 #: libraries/auth/signon.auth.lib.php:190 msgid "Cannot log in to the MySQL server" msgstr "" @@ -1634,7 +1650,7 @@ msgstr "en" #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 #: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 -#: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 +#: libraries/sql_query_form.lib.php:421 libraries/sql_query_form.lib.php:424 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" msgstr "" @@ -1775,19 +1791,19 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/common.lib.php:2833 libraries/common.lib.php:2840 -#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 +#: libraries/db_links.inc.php:53 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 #: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "" -#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 -#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:86 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "" -#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:265 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1803,36 +1819,31 @@ msgstr "" msgid "Name" msgstr "" -#: libraries/db_links.inc.php:43 -#, php-format -msgid "Database %s has been dropped." -msgstr "" - -#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 -#: libraries/db_links.inc.php:57 +#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43 +#: libraries/db_links.inc.php:44 msgid "Database seems to be empty!" msgstr "" -#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/db_links.inc.php:66 libraries/relation.lib.php:137 #: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:84 +#: libraries/db_links.inc.php:71 msgid "Query" msgstr "" -#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 +#: libraries/db_links.inc.php:76 libraries/relation.lib.php:133 msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:87 #: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "" -#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:65 #: server_privileges.php:110 server_privileges.php:1718 #: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" @@ -1991,7 +2002,7 @@ msgid "remember template" msgstr "" #: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 -#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 +#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:509 msgid "Character set of the file:" msgstr "" @@ -2044,7 +2055,7 @@ msgstr "" msgid "File to import" msgstr "" -#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:497 +#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:484 msgid "Location of the text file" msgstr "" @@ -2052,12 +2063,12 @@ msgstr "" msgid "File uploads are not allowed on this server." msgstr "" -#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 +#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:493 #: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "" -#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 +#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:496 #: tbl_change.php:925 msgid "web server upload directory" msgstr "" @@ -3382,7 +3393,7 @@ msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" -#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:403 msgid "Bookmarked SQL query" msgstr "" @@ -3447,7 +3458,7 @@ msgstr "" msgid "Slave status" msgstr "" -#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:428 +#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:415 #: server_status.php:736 server_variables.php:51 msgid "Variable" msgstr "" @@ -3574,51 +3585,51 @@ msgstr "" msgid "Target database" msgstr "" -#: libraries/sql_query_form.lib.php:219 +#: libraries/sql_query_form.lib.php:217 #, php-format msgid "Run SQL query/queries on server %s" msgstr "" -#: libraries/sql_query_form.lib.php:236 libraries/sql_query_form.lib.php:261 +#: libraries/sql_query_form.lib.php:234 libraries/sql_query_form.lib.php:258 #, php-format msgid "Run SQL query/queries on database %s" msgstr "" -#: libraries/sql_query_form.lib.php:307 +#: libraries/sql_query_form.lib.php:294 #, fuzzy #| msgid "Comments" msgid "Columns" msgstr "آراء-رائے" -#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 +#: libraries/sql_query_form.lib.php:329 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql_query_form.lib.php:349 sql.php:669 +#: libraries/sql_query_form.lib.php:336 sql.php:669 msgid "Let every user access this bookmark" msgstr "" -#: libraries/sql_query_form.lib.php:355 +#: libraries/sql_query_form.lib.php:342 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/sql_query_form.lib.php:371 +#: libraries/sql_query_form.lib.php:358 msgid "Do not overwrite this query from outside the window" msgstr "" -#: libraries/sql_query_form.lib.php:378 +#: libraries/sql_query_form.lib.php:365 msgid "Delimiter" msgstr "" -#: libraries/sql_query_form.lib.php:386 +#: libraries/sql_query_form.lib.php:373 msgid " Show this query here again " msgstr "" -#: libraries/sql_query_form.lib.php:445 +#: libraries/sql_query_form.lib.php:432 msgid "Submit" msgstr "" -#: libraries/sql_query_form.lib.php:449 +#: libraries/sql_query_form.lib.php:436 msgid "View only" msgstr "" @@ -3676,12 +3687,11 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" -#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 -#: libraries/tbl_links.inc.php:139 +#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107 msgid "Table seems to be empty!" msgstr "" -#: libraries/tbl_links.inc.php:147 +#: libraries/tbl_links.inc.php:115 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" @@ -7507,40 +7517,52 @@ msgstr "" msgid "Flush the table (FLUSH)" msgstr "" -#: tbl_operations.php:648 +#: tbl_operations.php:642 +msgid "Table removal" +msgstr "" + +#: tbl_operations.php:657 +msgid "Empty the table (TRUNCATE)" +msgstr "" + +#: tbl_operations.php:675 +msgid "Drop the table (DROP)" +msgstr "" + +#: tbl_operations.php:696 msgid "Partition maintenance" msgstr "" -#: tbl_operations.php:656 +#: tbl_operations.php:704 #, php-format msgid "Partition %s" msgstr "" -#: tbl_operations.php:659 +#: tbl_operations.php:707 msgid "Analyze" msgstr "" -#: tbl_operations.php:660 +#: tbl_operations.php:708 msgid "Check" msgstr "" -#: tbl_operations.php:661 +#: tbl_operations.php:709 msgid "Optimize" msgstr "" -#: tbl_operations.php:662 +#: tbl_operations.php:710 msgid "Rebuild" msgstr "" -#: tbl_operations.php:663 +#: tbl_operations.php:711 msgid "Repair" msgstr "" -#: tbl_operations.php:675 +#: tbl_operations.php:723 msgid "Remove partitioning" msgstr "" -#: tbl_operations.php:701 +#: tbl_operations.php:749 msgid "Check referential integrity:" msgstr "" diff --git a/po/uz.po b/po/uz.po index 2bcb0880f..bdb63c65b 100644 --- a/po/uz.po +++ b/po/uz.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-26 17:18+0200\n" +"POT-Creation-Date: 2010-07-27 10:12+0200\n" "PO-Revision-Date: 2010-07-22 02:31+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: uzbek_cyrillic \n" @@ -38,16 +38,16 @@ msgstr "" #: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 #: db_structure.php:89 db_structure.php:91 db_structure.php:102 #: db_structure.php:104 libraries/common.lib.php:2834 -#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Қидириш" #: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 -#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_operations.php:468 db_operations.php:492 db_search.php:344 #: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 #: libraries/Theme_Manager.class.php:305 -#: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 +#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:712 #: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 @@ -55,8 +55,8 @@ msgstr "Қидириш" #: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 #: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 -#: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: libraries/sql_query_form.lib.php:377 libraries/sql_query_form.lib.php:447 +#: libraries/sql_query_form.lib.php:512 libraries/tbl_properties.inc.php:780 #: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 #: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 #: server_privileges.php:663 server_privileges.php:1620 @@ -66,7 +66,7 @@ msgstr "Қидириш" #: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 #: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 -#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_operations.php:726 tbl_select.php:323 tbl_structure.php:559 #: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 #: view_create.php:181 view_operations.php:99 msgid "Go" @@ -249,47 +249,64 @@ msgstr "Буйруқ" msgid "and then" msgstr "ва сўнг" -#: db_operations.php:390 +#: db_operations.php:379 +#, fuzzy +#| msgid "Rename database to" +msgid "Remove database" +msgstr "Маълумотлар базаси номини қуйидагига ўзгартириш" + +#: db_operations.php:391 +#, php-format +msgid "Database %s has been dropped." +msgstr " \"%s\" маълумотлар омбори ўчирилди." + +#: db_operations.php:396 +#, fuzzy +#| msgid "Go to database" +msgid "Drop the database (DROP)" +msgstr "Ушбу базага ўтиш" + +#: db_operations.php:424 msgid "Copy database to" msgstr "Маълумотлар базасидан қуйидагига нусха олиш" -#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:431 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Фақат тузилиши" -#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:432 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Тузилиши ва маълумотлари" -#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:433 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Фақат маълумотлар" -#: db_operations.php:407 +#: db_operations.php:441 msgid "CREATE DATABASE before copying" msgstr "Нусха кўчиришдан олдин маълумотлар базаси тузинг (CREATE DATABASE)" -#: db_operations.php:410 libraries/export/sql.php:51 +#: db_operations.php:444 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 #: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "\"%s\" қўшиш" -#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: db_operations.php:448 libraries/export/sql.php:77 tbl_operations.php:296 #: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT қўшиш" -#: db_operations.php:418 tbl_operations.php:542 +#: db_operations.php:452 tbl_operations.php:542 msgid "Add constraints" msgstr "Чекловлар қўшиш" -#: db_operations.php:431 +#: db_operations.php:465 msgid "Switch to copied database" msgstr "Нусха олинган маълумотлар базасига ўтиш" -#: db_operations.php:451 libraries/Index.class.php:447 +#: db_operations.php:485 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 #: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 #: server_collations.php:53 server_collations.php:65 server_databases.php:108 @@ -298,7 +315,7 @@ msgstr "Нусха олинган маълумотлар базасига ўти msgid "Collation" msgstr "Таққослаш" -#: db_operations.php:464 pdf_schema.php:32 +#: db_operations.php:498 pdf_schema.php:32 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -310,7 +327,7 @@ msgstr "" "Алоқадор жадваллар билан ишлаш учун қўшимча имкониятлар мавжуд эмас. " "Сабабларини аниқлаш учун %sбу ерга%s босинг." -#: db_operations.php:497 +#: db_operations.php:531 msgid "Edit PDF Pages" msgstr "PDF-саҳифаларни таҳрирлаш" @@ -366,7 +383,7 @@ msgstr[0] "Жадваллар сони: \"%s\"" msgstr[1] "Жадваллар сони: \"%s\"" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -458,7 +475,7 @@ msgstr "сўровни бажариш" #: db_search.php:50 libraries/auth/config.auth.lib.php:83 #: libraries/auth/config.auth.lib.php:102 -#: libraries/auth/cookie.auth.lib.php:640 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:182 msgid "Access denied" msgstr "Рухсат берилмади" @@ -501,7 +518,7 @@ msgid "Browse" msgstr "Кўриб чиқиш" #: db_search.php:254 libraries/display_tbl.lib.php:1163 -#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:440 #: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 @@ -544,14 +561,14 @@ msgstr "Қуйидаги майдон(лар)да қидириш: " #: db_structure.php:79 db_structure.php:80 db_structure.php:92 #: db_structure.php:93 db_structure.php:105 db_structure.php:106 -#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:311 +#: libraries/sql_query_form.lib.php:314 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Қўйиш" #: db_structure.php:81 db_structure.php:94 db_structure.php:107 #: libraries/common.lib.php:2832 libraries/common.lib.php:2839 -#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 +#: libraries/db_links.inc.php:48 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 @@ -564,8 +581,7 @@ msgstr "Тузилиши" #: db_structure.php:96 db_structure.php:108 db_structure.php:109 #: db_structure.php:530 db_structure.php:531 db_tracking.php:86 #: libraries/Index.class.php:482 libraries/common.lib.php:1663 -#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 #: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 #: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" @@ -574,21 +590,21 @@ msgstr "Ўчириш" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 +#: libraries/mult_submits.inc.php:38 msgid "Empty" msgstr "Тозалаш" -#: db_structure.php:301 libraries/tbl_links.inc.php:98 +#: db_structure.php:301 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "\"%s\" жадвали тозаланди" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "View %s has been dropped" msgstr " \"%s\" намойиши ўчирилди" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "\"%s\" жадвали ўчирилди" @@ -680,7 +696,7 @@ msgstr "Жадвални тиклаш" msgid "Analyze table" msgstr "Жадвал таҳлили" -#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:56 #: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 #: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 #: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 @@ -1418,7 +1434,7 @@ msgid "Databases" msgstr "Маълумотлар базалари" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30 #: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 #: tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -1524,7 +1540,7 @@ msgid "Cannot connect: invalid settings." msgstr "Уланиб бўлмади: нотўғри созланган." #: libraries/auth/config.auth.lib.php:91 -#: libraries/auth/cookie.auth.lib.php:205 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:206 libraries/auth/http.auth.lib.php:64 #: test/theme.php:151 #, php-format msgid "Welcome to %s" @@ -1550,43 +1566,43 @@ msgstr "" "файлидаги хост, фойдаланувчи ва паролни текширинг ва улар MySQL сервери " "администраторидан олинган маълумотларга мос келишига ишонч ҳосил қилинг." -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:231 msgid "Log in" msgstr "Авторизация" -#: libraries/auth/cookie.auth.lib.php:232 -#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:233 +#: libraries/auth/cookie.auth.lib.php:235 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:94 msgid "phpMyAdmin documentation" msgstr "phpMyAdmin документацияси" -#: libraries/auth/cookie.auth.lib.php:244 #: libraries/auth/cookie.auth.lib.php:245 +#: libraries/auth/cookie.auth.lib.php:246 msgid "You can enter hostname/IP address and port separated by space." msgstr "Сиз хост/IP адрес ва бўш жой қолдириб портни киритишингиз мумкин." -#: libraries/auth/cookie.auth.lib.php:244 +#: libraries/auth/cookie.auth.lib.php:245 msgid "Server:" msgstr "Сервер" -#: libraries/auth/cookie.auth.lib.php:249 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Username:" msgstr "Фойдаланувчи:" -#: libraries/auth/cookie.auth.lib.php:253 +#: libraries/auth/cookie.auth.lib.php:254 msgid "Password:" msgstr "Парол:" -#: libraries/auth/cookie.auth.lib.php:260 +#: libraries/auth/cookie.auth.lib.php:261 msgid "Server Choice" msgstr "Серверни танланг" -#: libraries/auth/cookie.auth.lib.php:306 libraries/header.inc.php:58 +#: libraries/auth/cookie.auth.lib.php:307 libraries/header.inc.php:58 msgid "Cookies must be enabled past this point." msgstr "Браузерда \"cookies\" фаоллаштирилган бўлиши шарт." -#: libraries/auth/cookie.auth.lib.php:638 +#: libraries/auth/cookie.auth.lib.php:639 #: libraries/auth/signon.auth.lib.php:180 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" @@ -1594,7 +1610,7 @@ msgstr "" "Паролсиз аутентификация конфигурация томонидан ўчирилган (қаранг " "AllowNoPassword)" -#: libraries/auth/cookie.auth.lib.php:642 +#: libraries/auth/cookie.auth.lib.php:643 #: libraries/auth/signon.auth.lib.php:184 #, php-format msgid "No activity within %s seconds; please log in again" @@ -1602,8 +1618,8 @@ msgstr "" "\"%s\" сония давомида фаоллик кузатилмади, илтимос, қайта авторизациядан " "ўтинг. " -#: libraries/auth/cookie.auth.lib.php:652 -#: libraries/auth/cookie.auth.lib.php:654 +#: libraries/auth/cookie.auth.lib.php:653 +#: libraries/auth/cookie.auth.lib.php:655 #: libraries/auth/signon.auth.lib.php:190 msgid "Cannot log in to the MySQL server" msgstr "MySQL серверига уланиб бўлмади" @@ -1728,7 +1744,7 @@ msgstr "Юборилди" #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 #: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 -#: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 +#: libraries/sql_query_form.lib.php:421 libraries/sql_query_form.lib.php:424 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" msgstr "Документация" @@ -1875,19 +1891,19 @@ msgstr "" "маълумот учун қаранг \"%s\"" #: libraries/common.lib.php:2833 libraries/common.lib.php:2840 -#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 +#: libraries/db_links.inc.php:53 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 #: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 -#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:86 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "Операциялар" -#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:265 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1903,36 +1919,31 @@ msgstr "Ҳодисалар" msgid "Name" msgstr "Номи" -#: libraries/db_links.inc.php:43 -#, php-format -msgid "Database %s has been dropped." -msgstr " \"%s\" маълумотлар омбори ўчирилди." - -#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 -#: libraries/db_links.inc.php:57 +#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43 +#: libraries/db_links.inc.php:44 msgid "Database seems to be empty!" msgstr "Маълумотлар базаси бўш!" -#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/db_links.inc.php:66 libraries/relation.lib.php:137 #: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "Кузатиш" -#: libraries/db_links.inc.php:84 +#: libraries/db_links.inc.php:71 msgid "Query" msgstr "Сўров" -#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 +#: libraries/db_links.inc.php:76 libraries/relation.lib.php:133 msgid "Designer" msgstr "Дизайнер" -#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:87 #: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Импорт" -#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:65 #: server_privileges.php:110 server_privileges.php:1718 #: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" @@ -2105,7 +2116,7 @@ msgid "remember template" msgstr " шаблонни ёдда тутиш" #: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 -#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 +#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:509 msgid "Character set of the file:" msgstr "Файл кодировкаси: " @@ -2163,7 +2174,7 @@ msgstr "" msgid "File to import" msgstr "Импорт қилинаётган файл " -#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:497 +#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:484 msgid "Location of the text file" msgstr "Файлни танлаш" @@ -2171,12 +2182,12 @@ msgstr "Файлни танлаш" msgid "File uploads are not allowed on this server." msgstr "Файлларни серверга юклаб бўлмади." -#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 +#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:493 #: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "Кўрсатилган каталокка юклаб бўлмади" -#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 +#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:496 #: tbl_change.php:925 msgid "web server upload directory" msgstr "Юклаш каталогидан" @@ -3594,7 +3605,7 @@ msgstr "" "\"column_comments\" жадвалини янгилаш зарур. Батафсил маълумот учун " "документацияга қаранг." -#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:403 msgid "Bookmarked SQL query" msgstr "Хатчўп қўйилган SQL сўрови" @@ -3667,7 +3678,7 @@ msgstr "Бош сервер статуси" msgid "Slave status" msgstr "Тобе сервер статуси" -#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:428 +#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:415 #: server_status.php:736 server_variables.php:51 msgid "Variable" msgstr "Ўзгарувчи" @@ -3798,51 +3809,51 @@ msgstr "Фарқ" msgid "Target database" msgstr "Нишон база" -#: libraries/sql_query_form.lib.php:219 +#: libraries/sql_query_form.lib.php:217 #, php-format msgid "Run SQL query/queries on server %s" msgstr "\"%s\" серверида SQL-сўров(лар)ни бажариш " -#: libraries/sql_query_form.lib.php:236 libraries/sql_query_form.lib.php:261 +#: libraries/sql_query_form.lib.php:234 libraries/sql_query_form.lib.php:258 #, php-format msgid "Run SQL query/queries on database %s" msgstr "\"%s\" маълумотлар базасида SQL-сўров(лар)ни бажариш" -#: libraries/sql_query_form.lib.php:307 +#: libraries/sql_query_form.lib.php:294 #, fuzzy #| msgid "Column names" msgid "Columns" msgstr "Майдон номлари" -#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 +#: libraries/sql_query_form.lib.php:329 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "Ушбу SQL сўровига хатчўп тузиш" -#: libraries/sql_query_form.lib.php:349 sql.php:669 +#: libraries/sql_query_form.lib.php:336 sql.php:669 msgid "Let every user access this bookmark" msgstr "Барча фойдаланувчиларга рухсат бериш" -#: libraries/sql_query_form.lib.php:355 +#: libraries/sql_query_form.lib.php:342 msgid "Replace existing bookmark of same name" msgstr "Шу номли хатчўпни алмаштириш" -#: libraries/sql_query_form.lib.php:371 +#: libraries/sql_query_form.lib.php:358 msgid "Do not overwrite this query from outside the window" msgstr "Сўровлар ойнаси ичидаги маълумотларни блокировка қилиш" -#: libraries/sql_query_form.lib.php:378 +#: libraries/sql_query_form.lib.php:365 msgid "Delimiter" msgstr "Тақсимловчи" -#: libraries/sql_query_form.lib.php:386 +#: libraries/sql_query_form.lib.php:373 msgid " Show this query here again " msgstr "Ушбу сўровни қайта кўрсатиш" -#: libraries/sql_query_form.lib.php:445 +#: libraries/sql_query_form.lib.php:432 msgid "Submit" msgstr "Бажариш" -#: libraries/sql_query_form.lib.php:449 +#: libraries/sql_query_form.lib.php:436 msgid "View only" msgstr "Фақат кўриш" @@ -3913,12 +3924,11 @@ msgstr "" "SQL синтаксисини текшириб бўлмади. PHP учун зарур кенгайтмалар " "ўрнатилганлигини текширинг, батафсил маълумот учун %sдокументацияга%s қаранг." -#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 -#: libraries/tbl_links.inc.php:139 +#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107 msgid "Table seems to be empty!" msgstr "Жадвал - бўш!" -#: libraries/tbl_links.inc.php:147 +#: libraries/tbl_links.inc.php:115 #, php-format msgid "Tracking of %s.%s is activated." msgstr "\"%s.%s\" жадвалини кузатиш фаоллаштирилди." @@ -8371,40 +8381,54 @@ msgstr "\"%s\" жадвали кеши янгиланди" msgid "Flush the table (FLUSH)" msgstr "Жадвал кешини янгилаш (\"FLUSH\")" -#: tbl_operations.php:648 +#: tbl_operations.php:642 +#, fuzzy +#| msgid "Table name" +msgid "Table removal" +msgstr "Жадвал номи" + +#: tbl_operations.php:657 +msgid "Empty the table (TRUNCATE)" +msgstr "" + +#: tbl_operations.php:675 +msgid "Drop the table (DROP)" +msgstr "" + +#: tbl_operations.php:696 msgid "Partition maintenance" msgstr "бўлакларга хизмат кўрсатиш" -#: tbl_operations.php:656 +#: tbl_operations.php:704 #, php-format msgid "Partition %s" msgstr "\"%s\" бўлаги" -#: tbl_operations.php:659 +#: tbl_operations.php:707 msgid "Analyze" msgstr "Таҳлил" -#: tbl_operations.php:660 +#: tbl_operations.php:708 msgid "Check" msgstr "Текшириш" -#: tbl_operations.php:661 +#: tbl_operations.php:709 msgid "Optimize" msgstr "Оптимизация" -#: tbl_operations.php:662 +#: tbl_operations.php:710 msgid "Rebuild" msgstr "Қайта қуриш" -#: tbl_operations.php:663 +#: tbl_operations.php:711 msgid "Repair" msgstr "Тиклаш" -#: tbl_operations.php:675 +#: tbl_operations.php:723 msgid "Remove partitioning" msgstr "Бўлакларни (PARTITIONS) ўчириш" -#: tbl_operations.php:701 +#: tbl_operations.php:749 msgid "Check referential integrity:" msgstr "Маълумотлар яхлитлигини текшириш:" diff --git a/po/uz@latin.po b/po/uz@latin.po index c41309027..4eae94ca3 100644 --- a/po/uz@latin.po +++ b/po/uz@latin.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-26 17:18+0200\n" +"POT-Creation-Date: 2010-07-27 10:12+0200\n" "PO-Revision-Date: 2010-07-22 02:30+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: uzbek_latin \n" @@ -39,16 +39,16 @@ msgstr "" #: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 #: db_structure.php:89 db_structure.php:91 db_structure.php:102 #: db_structure.php:104 libraries/common.lib.php:2834 -#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Qidirish" #: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 -#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_operations.php:468 db_operations.php:492 db_search.php:344 #: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 #: libraries/Theme_Manager.class.php:305 -#: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 +#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:712 #: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 @@ -56,8 +56,8 @@ msgstr "Qidirish" #: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 #: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 -#: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: libraries/sql_query_form.lib.php:377 libraries/sql_query_form.lib.php:447 +#: libraries/sql_query_form.lib.php:512 libraries/tbl_properties.inc.php:780 #: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 #: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 #: server_privileges.php:663 server_privileges.php:1620 @@ -67,7 +67,7 @@ msgstr "Qidirish" #: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 #: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 -#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_operations.php:726 tbl_select.php:323 tbl_structure.php:559 #: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 #: view_create.php:181 view_operations.php:99 msgid "Go" @@ -250,47 +250,64 @@ msgstr "Buyruq" msgid "and then" msgstr "va so‘ng" -#: db_operations.php:390 +#: db_operations.php:379 +#, fuzzy +#| msgid "Rename database to" +msgid "Remove database" +msgstr "Ma`lumotlar bazasi nomini quyidagiga o‘zgartirish" + +#: db_operations.php:391 +#, php-format +msgid "Database %s has been dropped." +msgstr " \"%s\" ma`lumotlar ombori o‘chirildi." + +#: db_operations.php:396 +#, fuzzy +#| msgid "Go to database" +msgid "Drop the database (DROP)" +msgstr "Ushbu bazaga o‘tish" + +#: db_operations.php:424 msgid "Copy database to" msgstr "Ma`lumotlar bazasidan quyidagiga nusxa olish" -#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:431 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Faqat tuzilishi" -#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:432 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Tuzilishi va ma`lumotlari" -#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:433 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Faqat ma`lumotlar" -#: db_operations.php:407 +#: db_operations.php:441 msgid "CREATE DATABASE before copying" msgstr "Nusxa ko‘chirishdan oldin ma`lumotlar bazasi tuzing (CREATE DATABASE)" -#: db_operations.php:410 libraries/export/sql.php:51 +#: db_operations.php:444 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 #: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "\"%s\" qo‘shish" -#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: db_operations.php:448 libraries/export/sql.php:77 tbl_operations.php:296 #: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT qo‘shish" -#: db_operations.php:418 tbl_operations.php:542 +#: db_operations.php:452 tbl_operations.php:542 msgid "Add constraints" msgstr "Cheklovlar qo‘shish" -#: db_operations.php:431 +#: db_operations.php:465 msgid "Switch to copied database" msgstr "Nusxa olingan ma`lumotlar bazasiga o‘tish" -#: db_operations.php:451 libraries/Index.class.php:447 +#: db_operations.php:485 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 #: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 #: server_collations.php:53 server_collations.php:65 server_databases.php:108 @@ -299,7 +316,7 @@ msgstr "Nusxa olingan ma`lumotlar bazasiga o‘tish" msgid "Collation" msgstr "Taqqoslash" -#: db_operations.php:464 pdf_schema.php:32 +#: db_operations.php:498 pdf_schema.php:32 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -311,7 +328,7 @@ msgstr "" "Aloqador jadvallar bilan ishlash uchun qo‘shimcha imkoniyatlar mavjud emas. " "Sabablarini aniqlash uchun %sbu yerga%s bosing." -#: db_operations.php:497 +#: db_operations.php:531 msgid "Edit PDF Pages" msgstr "PDF-sahifalarni tahrirlash" @@ -367,7 +384,7 @@ msgstr[0] "Jadvallar soni: \"%s\"" msgstr[1] "Jadvallar soni: \"%s\"" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -459,7 +476,7 @@ msgstr "so‘rovni bajarish" #: db_search.php:50 libraries/auth/config.auth.lib.php:83 #: libraries/auth/config.auth.lib.php:102 -#: libraries/auth/cookie.auth.lib.php:640 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:182 msgid "Access denied" msgstr "Ruxsat berilmadi" @@ -502,7 +519,7 @@ msgid "Browse" msgstr "Ko‘rib chiqish" #: db_search.php:254 libraries/display_tbl.lib.php:1163 -#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:440 #: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 @@ -546,14 +563,14 @@ msgstr "Quyidagi maydon(lar)da qidirish: " #: db_structure.php:79 db_structure.php:80 db_structure.php:92 #: db_structure.php:93 db_structure.php:105 db_structure.php:106 -#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:311 +#: libraries/sql_query_form.lib.php:314 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Qo‘yish" #: db_structure.php:81 db_structure.php:94 db_structure.php:107 #: libraries/common.lib.php:2832 libraries/common.lib.php:2839 -#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 +#: libraries/db_links.inc.php:48 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 @@ -566,8 +583,7 @@ msgstr "Tuzilishi" #: db_structure.php:96 db_structure.php:108 db_structure.php:109 #: db_structure.php:530 db_structure.php:531 db_tracking.php:86 #: libraries/Index.class.php:482 libraries/common.lib.php:1663 -#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 #: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 #: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" @@ -576,21 +592,21 @@ msgstr "O‘chirish" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 +#: libraries/mult_submits.inc.php:38 msgid "Empty" msgstr "Tozalash" -#: db_structure.php:301 libraries/tbl_links.inc.php:98 +#: db_structure.php:301 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "\"%s\" jadvali tozalandi" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "View %s has been dropped" msgstr " \"%s\" namoyishi o‘chirildi" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "\"%s\" jadvali o‘chirildi" @@ -682,7 +698,7 @@ msgstr "Jadvalni tiklash" msgid "Analyze table" msgstr "Jadval tahlili" -#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:56 #: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 #: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 #: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 @@ -1423,7 +1439,7 @@ msgid "Databases" msgstr "Ma`lumotlar bazalari" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30 #: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 #: tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -1529,7 +1545,7 @@ msgid "Cannot connect: invalid settings." msgstr "Ulanib bo‘lmadi: noto‘g‘ri sozlangan." #: libraries/auth/config.auth.lib.php:91 -#: libraries/auth/cookie.auth.lib.php:205 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:206 libraries/auth/http.auth.lib.php:64 #: test/theme.php:151 #, php-format msgid "Welcome to %s" @@ -1555,43 +1571,43 @@ msgstr "" "faylidagi xost, foydalanuvchi va parolni tekshiring va ular MySQL serveri " "administratoridan olingan ma`lumotlarga mos kelishiga ishonch hosil qiling." -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:231 msgid "Log in" msgstr "Avtorizatsiya" -#: libraries/auth/cookie.auth.lib.php:232 -#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:233 +#: libraries/auth/cookie.auth.lib.php:235 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:94 msgid "phpMyAdmin documentation" msgstr "phpMyAdmin dokumentatsiyasi" -#: libraries/auth/cookie.auth.lib.php:244 #: libraries/auth/cookie.auth.lib.php:245 +#: libraries/auth/cookie.auth.lib.php:246 msgid "You can enter hostname/IP address and port separated by space." msgstr "Siz xost/IP adres va bo‘sh joy qoldirib portni kiritishingiz mumkin." -#: libraries/auth/cookie.auth.lib.php:244 +#: libraries/auth/cookie.auth.lib.php:245 msgid "Server:" msgstr "Server" -#: libraries/auth/cookie.auth.lib.php:249 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Username:" msgstr "Foydalanuvchi:" -#: libraries/auth/cookie.auth.lib.php:253 +#: libraries/auth/cookie.auth.lib.php:254 msgid "Password:" msgstr "Parol:" -#: libraries/auth/cookie.auth.lib.php:260 +#: libraries/auth/cookie.auth.lib.php:261 msgid "Server Choice" msgstr "Serverni tanlang" -#: libraries/auth/cookie.auth.lib.php:306 libraries/header.inc.php:58 +#: libraries/auth/cookie.auth.lib.php:307 libraries/header.inc.php:58 msgid "Cookies must be enabled past this point." msgstr "Brauzerda \"cookies\" faollashtirilgan bo‘lishi shart." -#: libraries/auth/cookie.auth.lib.php:638 +#: libraries/auth/cookie.auth.lib.php:639 #: libraries/auth/signon.auth.lib.php:180 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" @@ -1599,7 +1615,7 @@ msgstr "" "Parolsiz autentifikatsiya konfiguratsiya tomonidan o‘chirilgan (qarang " "AllowNoPassword)" -#: libraries/auth/cookie.auth.lib.php:642 +#: libraries/auth/cookie.auth.lib.php:643 #: libraries/auth/signon.auth.lib.php:184 #, php-format msgid "No activity within %s seconds; please log in again" @@ -1607,8 +1623,8 @@ msgstr "" "\"%s\" soniya davomida faollik kuzatilmadi, iltimos, qayta avtorizatsiyadan " "o‘ting. " -#: libraries/auth/cookie.auth.lib.php:652 -#: libraries/auth/cookie.auth.lib.php:654 +#: libraries/auth/cookie.auth.lib.php:653 +#: libraries/auth/cookie.auth.lib.php:655 #: libraries/auth/signon.auth.lib.php:190 msgid "Cannot log in to the MySQL server" msgstr "MySQL serveriga ulanib bo‘lmadi" @@ -1735,7 +1751,7 @@ msgstr "Yuborildi" #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 #: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 -#: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 +#: libraries/sql_query_form.lib.php:421 libraries/sql_query_form.lib.php:424 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" msgstr "Dokumentatsiya" @@ -1882,19 +1898,19 @@ msgstr "" "ma`lumot uchun qarang \"%s\"" #: libraries/common.lib.php:2833 libraries/common.lib.php:2840 -#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 +#: libraries/db_links.inc.php:53 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 #: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 -#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:86 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "Operatsiyalar" -#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:265 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1910,36 +1926,31 @@ msgstr "Hodisalar" msgid "Name" msgstr "Nomi" -#: libraries/db_links.inc.php:43 -#, php-format -msgid "Database %s has been dropped." -msgstr " \"%s\" ma`lumotlar ombori o‘chirildi." - -#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 -#: libraries/db_links.inc.php:57 +#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43 +#: libraries/db_links.inc.php:44 msgid "Database seems to be empty!" msgstr "Ma`lumotlar bazasi bo‘sh!" -#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/db_links.inc.php:66 libraries/relation.lib.php:137 #: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "Kuzatish" -#: libraries/db_links.inc.php:84 +#: libraries/db_links.inc.php:71 msgid "Query" msgstr "So‘rov" -#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 +#: libraries/db_links.inc.php:76 libraries/relation.lib.php:133 msgid "Designer" msgstr "Dizayner" -#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:87 #: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Import" -#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:65 #: server_privileges.php:110 server_privileges.php:1718 #: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" @@ -2112,7 +2123,7 @@ msgid "remember template" msgstr " shablonni yodda tutish" #: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 -#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 +#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:509 msgid "Character set of the file:" msgstr "Fayl kodirovkasi: " @@ -2170,7 +2181,7 @@ msgstr "" msgid "File to import" msgstr "Import qilinayotgan fayl " -#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:497 +#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:484 msgid "Location of the text file" msgstr "Faylni tanlash" @@ -2178,12 +2189,12 @@ msgstr "Faylni tanlash" msgid "File uploads are not allowed on this server." msgstr "Fayllarni serverga yuklab bo‘lmadi." -#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 +#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:493 #: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "Ko‘rsatilgan katalokka yuklab bo‘lmadi" -#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 +#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:496 #: tbl_change.php:925 msgid "web server upload directory" msgstr "Yuklash katalogidan" @@ -3609,7 +3620,7 @@ msgstr "" "\"column_comments\" jadvalini yangilash zarur. Batafsil ma`lumot uchun " "dokumentatsiyaga qarang." -#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:403 msgid "Bookmarked SQL query" msgstr "Xatcho‘p qo‘yilgan SQL so‘rovi" @@ -3684,7 +3695,7 @@ msgstr "Bosh rеplikatsiya sеrvеri statusi" msgid "Slave status" msgstr "Tobе rеplikatsiya sеrvеri statusi" -#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:428 +#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:415 #: server_status.php:736 server_variables.php:51 msgid "Variable" msgstr "O‘zgaruvchi" @@ -3815,51 +3826,51 @@ msgstr "Farq" msgid "Target database" msgstr "Nishon baza" -#: libraries/sql_query_form.lib.php:219 +#: libraries/sql_query_form.lib.php:217 #, 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:236 libraries/sql_query_form.lib.php:261 +#: libraries/sql_query_form.lib.php:234 libraries/sql_query_form.lib.php:258 #, 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:307 +#: libraries/sql_query_form.lib.php:294 #, fuzzy #| msgid "Column names" msgid "Columns" msgstr "Maydon nomlari" -#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 +#: libraries/sql_query_form.lib.php:329 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "Ushbu SQL so‘roviga xatcho‘p tuzish" -#: libraries/sql_query_form.lib.php:349 sql.php:669 +#: libraries/sql_query_form.lib.php:336 sql.php:669 msgid "Let every user access this bookmark" msgstr "Barcha foydalanuvchilarga ruxsat berish" -#: libraries/sql_query_form.lib.php:355 +#: libraries/sql_query_form.lib.php:342 msgid "Replace existing bookmark of same name" msgstr "Shu nomli xatcho‘pni almashtirish" -#: libraries/sql_query_form.lib.php:371 +#: libraries/sql_query_form.lib.php:358 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:378 +#: libraries/sql_query_form.lib.php:365 msgid "Delimiter" msgstr "Taqsimlovchi" -#: libraries/sql_query_form.lib.php:386 +#: libraries/sql_query_form.lib.php:373 msgid " Show this query here again " msgstr "Ushbu so‘rovni qayta ko‘rsatish" -#: libraries/sql_query_form.lib.php:445 +#: libraries/sql_query_form.lib.php:432 msgid "Submit" msgstr "Bajarish" -#: libraries/sql_query_form.lib.php:449 +#: libraries/sql_query_form.lib.php:436 msgid "View only" msgstr "Faqat ko‘rish" @@ -3932,12 +3943,11 @@ msgstr "" "o‘rnatilganligini tekshiring, batafsil ma`lumot uchun %sdokumentatsiyaga%s " "qarang." -#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 -#: libraries/tbl_links.inc.php:139 +#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107 msgid "Table seems to be empty!" msgstr "Jadval - bo‘sh!" -#: libraries/tbl_links.inc.php:147 +#: libraries/tbl_links.inc.php:115 #, php-format msgid "Tracking of %s.%s is activated." msgstr "\"%s.%s\" jadvalini kuzatish faollashtirildi." @@ -8434,40 +8444,54 @@ msgstr "\"%s\" jadvali keshi yangilandi" msgid "Flush the table (FLUSH)" msgstr "Jadval keshini yangilash (\"FLUSH\")" -#: tbl_operations.php:648 +#: tbl_operations.php:642 +#, fuzzy +#| msgid "Table name" +msgid "Table removal" +msgstr "Jadval nomi" + +#: tbl_operations.php:657 +msgid "Empty the table (TRUNCATE)" +msgstr "" + +#: tbl_operations.php:675 +msgid "Drop the table (DROP)" +msgstr "" + +#: tbl_operations.php:696 msgid "Partition maintenance" msgstr "bo‘laklarga xizmat ko‘rsatish" -#: tbl_operations.php:656 +#: tbl_operations.php:704 #, php-format msgid "Partition %s" msgstr "\"%s\" bo‘lagi" -#: tbl_operations.php:659 +#: tbl_operations.php:707 msgid "Analyze" msgstr "Tahlil" -#: tbl_operations.php:660 +#: tbl_operations.php:708 msgid "Check" msgstr "Tekshirish" -#: tbl_operations.php:661 +#: tbl_operations.php:709 msgid "Optimize" msgstr "Optimizatsiya" -#: tbl_operations.php:662 +#: tbl_operations.php:710 msgid "Rebuild" msgstr "Qayta qurish" -#: tbl_operations.php:663 +#: tbl_operations.php:711 msgid "Repair" msgstr "Tiklash" -#: tbl_operations.php:675 +#: tbl_operations.php:723 msgid "Remove partitioning" msgstr "Bo‘laklarni (PARTITIONS) o‘chirish" -#: tbl_operations.php:701 +#: tbl_operations.php:749 msgid "Check referential integrity:" msgstr "Ma`lumotlar yaxlitligini tekshirish:" diff --git a/po/zh_CN.po b/po/zh_CN.po index 76ef5b775..6d027fcf9 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-26 17:18+0200\n" +"POT-Creation-Date: 2010-07-27 10:12+0200\n" "PO-Revision-Date: 2010-06-04 14:09+0200\n" "Last-Translator: shanyan baishui \n" "Language-Team: chinese_simplified \n" @@ -38,16 +38,16 @@ msgstr "" #: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 #: db_structure.php:89 db_structure.php:91 db_structure.php:102 #: db_structure.php:104 libraries/common.lib.php:2834 -#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "搜索" #: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 -#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_operations.php:468 db_operations.php:492 db_search.php:344 #: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 #: libraries/Theme_Manager.class.php:305 -#: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 +#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:712 #: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 @@ -55,8 +55,8 @@ msgstr "搜索" #: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 #: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 -#: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: libraries/sql_query_form.lib.php:377 libraries/sql_query_form.lib.php:447 +#: libraries/sql_query_form.lib.php:512 libraries/tbl_properties.inc.php:780 #: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 #: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 #: server_privileges.php:663 server_privileges.php:1620 @@ -66,7 +66,7 @@ msgstr "搜索" #: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 #: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 -#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_operations.php:726 tbl_select.php:323 tbl_structure.php:559 #: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 #: view_create.php:181 view_operations.php:99 msgid "Go" @@ -247,47 +247,64 @@ msgstr "命令" msgid "and then" msgstr "然后" -#: db_operations.php:390 +#: db_operations.php:379 +#, fuzzy +#| msgid "Rename database to" +msgid "Remove database" +msgstr "将数据库改名为" + +#: db_operations.php:391 +#, php-format +msgid "Database %s has been dropped." +msgstr "已被删除数据库 %s 。" + +#: db_operations.php:396 +#, fuzzy +#| msgid "Go to database" +msgid "Drop the database (DROP)" +msgstr "转到数据库" + +#: db_operations.php:424 msgid "Copy database to" msgstr "复制数据库到" -#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:431 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "仅结构" -#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:432 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "结构和数据" -#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:433 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "仅数据" -#: db_operations.php:407 +#: db_operations.php:441 msgid "CREATE DATABASE before copying" msgstr "复制前创建数据库 (CREATE DATABASE)" -#: db_operations.php:410 libraries/export/sql.php:51 +#: db_operations.php:444 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 #: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "添加 %s" -#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: db_operations.php:448 libraries/export/sql.php:77 tbl_operations.php:296 #: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "添加自增 (AUTO_INCREMENT) 值" -#: db_operations.php:418 tbl_operations.php:542 +#: db_operations.php:452 tbl_operations.php:542 msgid "Add constraints" msgstr "强制添加" -#: db_operations.php:431 +#: db_operations.php:465 msgid "Switch to copied database" msgstr "切换到复制的数据库" -#: db_operations.php:451 libraries/Index.class.php:447 +#: db_operations.php:485 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 #: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 #: server_collations.php:53 server_collations.php:65 server_databases.php:108 @@ -296,7 +313,7 @@ msgstr "切换到复制的数据库" msgid "Collation" msgstr "整理" -#: db_operations.php:464 pdf_schema.php:32 +#: db_operations.php:498 pdf_schema.php:32 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -306,7 +323,7 @@ msgid "" "click %shere%s." msgstr "链接表的附加功能尚未激活。要查出原因,请点击%s此处%s。" -#: db_operations.php:497 +#: db_operations.php:531 msgid "Edit PDF Pages" msgstr "编辑 PDF 页" @@ -360,7 +377,7 @@ msgid_plural "%s tables" msgstr[0] "%s 张表" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -450,7 +467,7 @@ msgstr "提交查询" #: db_search.php:50 libraries/auth/config.auth.lib.php:83 #: libraries/auth/config.auth.lib.php:102 -#: libraries/auth/cookie.auth.lib.php:640 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:182 msgid "Access denied" msgstr "拒绝访问" @@ -492,7 +509,7 @@ msgid "Browse" msgstr "浏览" #: db_search.php:254 libraries/display_tbl.lib.php:1163 -#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:440 #: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 @@ -534,14 +551,14 @@ msgstr "包含字段:" #: db_structure.php:79 db_structure.php:80 db_structure.php:92 #: db_structure.php:93 db_structure.php:105 db_structure.php:106 -#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:311 +#: libraries/sql_query_form.lib.php:314 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "插入" #: db_structure.php:81 db_structure.php:94 db_structure.php:107 #: libraries/common.lib.php:2832 libraries/common.lib.php:2839 -#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 +#: libraries/db_links.inc.php:48 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 @@ -554,8 +571,7 @@ msgstr "结构" #: db_structure.php:96 db_structure.php:108 db_structure.php:109 #: db_structure.php:530 db_structure.php:531 db_tracking.php:86 #: libraries/Index.class.php:482 libraries/common.lib.php:1663 -#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 #: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 #: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" @@ -564,21 +580,21 @@ msgstr "删除" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 +#: libraries/mult_submits.inc.php:38 msgid "Empty" msgstr "清空" -#: db_structure.php:301 libraries/tbl_links.inc.php:98 +#: db_structure.php:301 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "已清空表 %s " -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "View %s has been dropped" msgstr "已删除视图 %s" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "已删除表 %s " @@ -668,7 +684,7 @@ msgstr "修复表" msgid "Analyze table" msgstr "分析表" -#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:56 #: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 #: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 #: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 @@ -1333,7 +1349,7 @@ msgid "Databases" msgstr "数据库" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30 #: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 #: tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -1433,7 +1449,7 @@ msgid "Cannot connect: invalid settings." msgstr "无法连接:无效的设置。" #: libraries/auth/config.auth.lib.php:91 -#: libraries/auth/cookie.auth.lib.php:205 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:206 libraries/auth/http.auth.lib.php:64 #: test/theme.php:151 #, php-format msgid "Welcome to %s" @@ -1457,56 +1473,56 @@ msgstr "" "phpMyAdmin 尝试连接到 MySQL 服务器,但服务器拒绝连接。您应该检查配置文件中的" "主机、用户名和密码,并确认这些信息与 MySQL 服务器管理员所给出的信息一致。" -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:231 msgid "Log in" msgstr "登录" -#: libraries/auth/cookie.auth.lib.php:232 -#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:233 +#: libraries/auth/cookie.auth.lib.php:235 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:94 msgid "phpMyAdmin documentation" msgstr "phpMyAdmin 文档" -#: libraries/auth/cookie.auth.lib.php:244 #: libraries/auth/cookie.auth.lib.php:245 +#: libraries/auth/cookie.auth.lib.php:246 msgid "You can enter hostname/IP address and port separated by space." msgstr "您可以输入以空格分隔的主机名/IP地址和端口号。" -#: libraries/auth/cookie.auth.lib.php:244 +#: libraries/auth/cookie.auth.lib.php:245 msgid "Server:" msgstr "服务器:" -#: libraries/auth/cookie.auth.lib.php:249 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Username:" msgstr "用户名:" -#: libraries/auth/cookie.auth.lib.php:253 +#: libraries/auth/cookie.auth.lib.php:254 msgid "Password:" msgstr "密码:" -#: libraries/auth/cookie.auth.lib.php:260 +#: libraries/auth/cookie.auth.lib.php:261 msgid "Server Choice" msgstr "选择服务器" -#: libraries/auth/cookie.auth.lib.php:306 libraries/header.inc.php:58 +#: libraries/auth/cookie.auth.lib.php:307 libraries/header.inc.php:58 msgid "Cookies must be enabled past this point." msgstr "必须启用 Cookies 才能登录。" -#: libraries/auth/cookie.auth.lib.php:638 +#: libraries/auth/cookie.auth.lib.php:639 #: libraries/auth/signon.auth.lib.php:180 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "空密码登录被禁止 (参见 允许空密码)" -#: libraries/auth/cookie.auth.lib.php:642 +#: libraries/auth/cookie.auth.lib.php:643 #: libraries/auth/signon.auth.lib.php:184 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "登录超时 (%s 秒未活动),请重新登录" -#: libraries/auth/cookie.auth.lib.php:652 -#: libraries/auth/cookie.auth.lib.php:654 +#: libraries/auth/cookie.auth.lib.php:653 +#: libraries/auth/cookie.auth.lib.php:655 #: libraries/auth/signon.auth.lib.php:190 msgid "Cannot log in to the MySQL server" msgstr "无法登录 MySQL 服务器" @@ -1621,7 +1637,7 @@ msgstr "zh" #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 #: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 -#: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 +#: libraries/sql_query_form.lib.php:421 libraries/sql_query_form.lib.php:424 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" msgstr "文档" @@ -1764,19 +1780,19 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "%s 功能受到一个已知的缺陷 (bug) 影响,参见 %s" #: libraries/common.lib.php:2833 libraries/common.lib.php:2840 -#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 +#: libraries/db_links.inc.php:53 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 #: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 -#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:86 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "操作" -#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:265 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1792,36 +1808,31 @@ msgstr "事件" msgid "Name" msgstr "名字" -#: libraries/db_links.inc.php:43 -#, php-format -msgid "Database %s has been dropped." -msgstr "已被删除数据库 %s 。" - -#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 -#: libraries/db_links.inc.php:57 +#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43 +#: libraries/db_links.inc.php:44 msgid "Database seems to be empty!" msgstr "数据库是空的!" -#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/db_links.inc.php:66 libraries/relation.lib.php:137 #: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "追踪" -#: libraries/db_links.inc.php:84 +#: libraries/db_links.inc.php:71 msgid "Query" msgstr "查询" -#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 +#: libraries/db_links.inc.php:76 libraries/relation.lib.php:133 msgid "Designer" msgstr "设计器" -#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:87 #: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "导入" -#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:65 #: server_privileges.php:110 server_privileges.php:1718 #: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" @@ -1981,7 +1992,7 @@ msgid "remember template" msgstr "记住模板" #: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 -#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 +#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:509 msgid "Character set of the file:" msgstr "文件的字符集:" @@ -2036,7 +2047,7 @@ msgstr "正在上传,没有详细信息,请稍候。" msgid "File to import" msgstr "要导入的文件" -#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:497 +#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:484 msgid "Location of the text file" msgstr "文本文件的位置" @@ -2044,12 +2055,12 @@ msgstr "文本文件的位置" msgid "File uploads are not allowed on this server." msgstr "此服务器禁止了文件上传。" -#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 +#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:493 #: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "用于上传的文件夹出错,无法使用" -#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 +#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:496 #: tbl_change.php:925 msgid "web server upload directory" msgstr "网站服务器上传文件夹" @@ -3405,7 +3416,7 @@ msgid "" "Please see the documentation on how to update your column_comments table" msgstr "请参见文档中关于如何更新您的 column_comments 表" -#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:403 msgid "Bookmarked SQL query" msgstr "SQL 查询书签" @@ -3474,7 +3485,7 @@ msgstr "主服务器状态" msgid "Slave status" msgstr "从服务器状态" -#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:428 +#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:415 #: server_status.php:736 server_variables.php:51 msgid "Variable" msgstr "变量" @@ -3601,49 +3612,49 @@ msgstr "差异" msgid "Target database" msgstr "目标数据库" -#: libraries/sql_query_form.lib.php:219 +#: libraries/sql_query_form.lib.php:217 #, php-format msgid "Run SQL query/queries on server %s" msgstr "在服务器 %s 运行 SQL 查询" -#: libraries/sql_query_form.lib.php:236 libraries/sql_query_form.lib.php:261 +#: libraries/sql_query_form.lib.php:234 libraries/sql_query_form.lib.php:258 #, php-format msgid "Run SQL query/queries on database %s" msgstr "在数据库 %s 运行 SQL 查询" -#: libraries/sql_query_form.lib.php:307 +#: libraries/sql_query_form.lib.php:294 msgid "Columns" msgstr "字段" -#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 +#: libraries/sql_query_form.lib.php:329 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "将此 SQL 查询加为书签" -#: libraries/sql_query_form.lib.php:349 sql.php:669 +#: libraries/sql_query_form.lib.php:336 sql.php:669 msgid "Let every user access this bookmark" msgstr "让所有用户均可访问此书签" -#: libraries/sql_query_form.lib.php:355 +#: libraries/sql_query_form.lib.php:342 msgid "Replace existing bookmark of same name" msgstr "替换现有的同名书签" -#: libraries/sql_query_form.lib.php:371 +#: libraries/sql_query_form.lib.php:358 msgid "Do not overwrite this query from outside the window" msgstr "不从窗口外覆盖此查询" -#: libraries/sql_query_form.lib.php:378 +#: libraries/sql_query_form.lib.php:365 msgid "Delimiter" msgstr "语句定界符" -#: libraries/sql_query_form.lib.php:386 +#: libraries/sql_query_form.lib.php:373 msgid " Show this query here again " msgstr " 在此再次显示此查询 " -#: libraries/sql_query_form.lib.php:445 +#: libraries/sql_query_form.lib.php:432 msgid "Submit" msgstr "提交" -#: libraries/sql_query_form.lib.php:449 +#: libraries/sql_query_form.lib.php:436 msgid "View only" msgstr "仅查看" @@ -3710,12 +3721,11 @@ msgid "" msgstr "" "SQL 校验程序无法初始化。请检查是否已经安装了%s文档%s内说明的必需 PHP 扩展。" -#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 -#: libraries/tbl_links.inc.php:139 +#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107 msgid "Table seems to be empty!" msgstr "数据表是空的!" -#: libraries/tbl_links.inc.php:147 +#: libraries/tbl_links.inc.php:115 #, php-format msgid "Tracking of %s.%s is activated." msgstr "%s.%s 的追踪已启用。" @@ -7774,40 +7784,54 @@ msgstr "已强制更新表 %s " msgid "Flush the table (FLUSH)" msgstr "刷新表 (FLUSH)" -#: tbl_operations.php:648 +#: tbl_operations.php:642 +#, fuzzy +#| msgid "Table name" +msgid "Table removal" +msgstr "数据表名" + +#: tbl_operations.php:657 +msgid "Empty the table (TRUNCATE)" +msgstr "" + +#: tbl_operations.php:675 +msgid "Drop the table (DROP)" +msgstr "" + +#: tbl_operations.php:696 msgid "Partition maintenance" msgstr "分区维护" -#: tbl_operations.php:656 +#: tbl_operations.php:704 #, php-format msgid "Partition %s" msgstr "分区 %s" -#: tbl_operations.php:659 +#: tbl_operations.php:707 msgid "Analyze" msgstr "分析" -#: tbl_operations.php:660 +#: tbl_operations.php:708 msgid "Check" msgstr "检查" -#: tbl_operations.php:661 +#: tbl_operations.php:709 msgid "Optimize" msgstr "优化" -#: tbl_operations.php:662 +#: tbl_operations.php:710 msgid "Rebuild" msgstr "重建" -#: tbl_operations.php:663 +#: tbl_operations.php:711 msgid "Repair" msgstr "修复" -#: tbl_operations.php:675 +#: tbl_operations.php:723 msgid "Remove partitioning" msgstr "删除分区" -#: tbl_operations.php:701 +#: tbl_operations.php:749 msgid "Check referential integrity:" msgstr "检查引用完整性:" diff --git a/po/zh_TW.po b/po/zh_TW.po index 593300b2e..39e1975be 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-26 17:18+0200\n" +"POT-Creation-Date: 2010-07-27 10:12+0200\n" "PO-Revision-Date: 2010-03-12 09:15+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: chinese_traditional \n" @@ -37,16 +37,16 @@ msgstr "" #: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 #: db_structure.php:89 db_structure.php:91 db_structure.php:102 #: db_structure.php:104 libraries/common.lib.php:2834 -#: libraries/common.lib.php:2841 libraries/db_links.inc.php:73 +#: libraries/common.lib.php:2841 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "搜索" #: browse_foreigners.php:151 db_operations.php:320 db_operations.php:364 -#: db_operations.php:434 db_operations.php:458 db_search.php:344 +#: db_operations.php:468 db_operations.php:492 db_search.php:344 #: db_structure.php:552 js/messages.php:48 libraries/Config.class.php:1043 #: libraries/Theme_Manager.class.php:305 -#: libraries/auth/cookie.auth.lib.php:278 libraries/common.lib.php:712 +#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:712 #: libraries/common.lib.php:1344 libraries/common.lib.php:2294 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:62 @@ -54,8 +54,8 @@ msgstr "搜索" #: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:530 #: libraries/display_tbl.lib.php:612 libraries/replication_gui.lib.php:75 #: libraries/replication_gui.lib.php:371 libraries/select_server.lib.php:101 -#: libraries/sql_query_form.lib.php:390 libraries/sql_query_form.lib.php:460 -#: libraries/sql_query_form.lib.php:525 libraries/tbl_properties.inc.php:780 +#: libraries/sql_query_form.lib.php:377 libraries/sql_query_form.lib.php:447 +#: libraries/sql_query_form.lib.php:512 libraries/tbl_properties.inc.php:780 #: main.php:127 navigation.php:230 pdf_pages.php:290 pdf_pages.php:326 #: pdf_pages.php:528 pmd_pdf.php:113 server_binlog.php:128 #: server_privileges.php:663 server_privileges.php:1620 @@ -65,7 +65,7 @@ msgstr "搜索" #: server_synchronize.php:1207 tbl_change.php:323 tbl_change.php:1070 #: tbl_change.php:1107 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 -#: tbl_operations.php:678 tbl_select.php:323 tbl_structure.php:559 +#: tbl_operations.php:726 tbl_select.php:323 tbl_structure.php:559 #: tbl_structure.php:594 tbl_tracking.php:389 tbl_tracking.php:506 #: view_create.php:181 view_operations.php:99 msgid "Go" @@ -246,47 +246,63 @@ msgstr "指令" msgid "and then" msgstr "然後" -#: db_operations.php:390 +#: db_operations.php:379 +#, fuzzy +#| msgid "Rename database to" +msgid "Remove database" +msgstr "更改資料庫名稱到" + +#: db_operations.php:391 +#, php-format +msgid "Database %s has been dropped." +msgstr "資料庫 %s 已被刪除" + +#: db_operations.php:396 +#, fuzzy +msgid "Drop the database (DROP)" +msgstr "沒有資料庫" + +#: db_operations.php:424 msgid "Copy database to" msgstr "複製資料庫到" -#: db_operations.php:397 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:431 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "只有結構" -#: db_operations.php:398 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:432 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "結構與資料" -#: db_operations.php:399 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:433 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "只有資料" -#: db_operations.php:407 +#: db_operations.php:441 msgid "CREATE DATABASE before copying" msgstr "複製前建立資料庫 (CREATE DATABASE)" -#: db_operations.php:410 libraries/export/sql.php:51 +#: db_operations.php:444 libraries/export/sql.php:51 #: libraries/export/sql.php:73 libraries/export/sql.php:75 #: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "" -#: db_operations.php:414 libraries/export/sql.php:77 tbl_operations.php:296 +#: db_operations.php:448 libraries/export/sql.php:77 tbl_operations.php:296 #: tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "新增 AUTO_INCREMENT 數值" -#: db_operations.php:418 tbl_operations.php:542 +#: db_operations.php:452 tbl_operations.php:542 msgid "Add constraints" msgstr "加入限制" -#: db_operations.php:431 +#: db_operations.php:465 msgid "Switch to copied database" msgstr "轉移到複製之資料庫" -#: db_operations.php:451 libraries/Index.class.php:447 +#: db_operations.php:485 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 #: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:728 #: server_collations.php:53 server_collations.php:65 server_databases.php:108 @@ -295,7 +311,7 @@ msgstr "轉移到複製之資料庫" msgid "Collation" msgstr "校對" -#: db_operations.php:464 pdf_schema.php:32 +#: db_operations.php:498 pdf_schema.php:32 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -305,7 +321,7 @@ msgid "" "click %shere%s." msgstr "關聯資料表的附加功能未能啟動, %s請按此%s 查出問題原因." -#: db_operations.php:497 +#: db_operations.php:531 msgid "Edit PDF Pages" msgstr "編輯 PDF 頁碼" @@ -361,7 +377,7 @@ msgstr[0] "%s 資料表" msgstr[1] "%s 資料表" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:138 +#: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -453,7 +469,7 @@ msgstr "執行語法" #: db_search.php:50 libraries/auth/config.auth.lib.php:83 #: libraries/auth/config.auth.lib.php:102 -#: libraries/auth/cookie.auth.lib.php:640 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:641 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:182 msgid "Access denied" msgstr "拒絕存取" @@ -496,7 +512,7 @@ msgid "Browse" msgstr "瀏覽" #: db_search.php:254 libraries/display_tbl.lib.php:1163 -#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:453 +#: libraries/display_tbl.lib.php:2014 libraries/sql_query_form.lib.php:440 #: pdf_pages.php:284 pdf_pages.php:423 pdf_pages.php:459 pdf_pages.php:487 #: pmd_general.php:376 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:62 @@ -539,14 +555,14 @@ msgstr "於以下資料表:" #: db_structure.php:79 db_structure.php:80 db_structure.php:92 #: db_structure.php:93 db_structure.php:105 db_structure.php:106 -#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:324 -#: libraries/sql_query_form.lib.php:327 libraries/tbl_links.inc.php:74 +#: libraries/common.lib.php:2835 libraries/sql_query_form.lib.php:311 +#: libraries/sql_query_form.lib.php:314 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "新增" #: db_structure.php:81 db_structure.php:94 db_structure.php:107 #: libraries/common.lib.php:2832 libraries/common.lib.php:2839 -#: libraries/db_links.inc.php:61 libraries/export/htmlword.php:22 +#: libraries/db_links.inc.php:48 libraries/export/htmlword.php:22 #: libraries/export/latex.php:37 libraries/export/latex.php:341 #: libraries/export/odt.php:31 libraries/export/sql.php:59 #: libraries/export/texytext.php:23 libraries/import.lib.php:1136 @@ -559,8 +575,7 @@ msgstr "結構" #: db_structure.php:96 db_structure.php:108 db_structure.php:109 #: db_structure.php:530 db_structure.php:531 db_tracking.php:86 #: libraries/Index.class.php:482 libraries/common.lib.php:1663 -#: libraries/db_links.inc.php:98 libraries/mult_submits.inc.php:35 -#: libraries/mult_submits.inc.php:72 libraries/tbl_links.inc.php:125 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 #: server_databases.php:349 tbl_structure.php:25 tbl_structure.php:149 #: tbl_structure.php:150 tbl_structure.php:468 msgid "Drop" @@ -569,21 +584,21 @@ msgstr "刪除" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:528 db_structure.php:529 libraries/common.lib.php:1662 -#: libraries/mult_submits.inc.php:38 libraries/tbl_links.inc.php:103 +#: libraries/mult_submits.inc.php:38 msgid "Empty" msgstr "清空" -#: db_structure.php:301 libraries/tbl_links.inc.php:98 +#: db_structure.php:301 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "資料表 %s 已被清空" -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "View %s has been dropped" msgstr "檢視 %s 己被刪除." -#: db_structure.php:311 libraries/tbl_links.inc.php:131 +#: db_structure.php:311 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "資料表 %s 已被刪除" @@ -673,7 +688,7 @@ msgstr "修復資料表" msgid "Analyze table" msgstr "分析資料表" -#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:69 +#: db_structure.php:542 db_structure.php:543 libraries/db_links.inc.php:56 #: libraries/display_export.lib.php:76 libraries/display_tbl.lib.php:2052 #: libraries/display_tbl.lib.php:2183 libraries/mult_submits.inc.php:61 #: libraries/server_links.inc.php:83 libraries/tbl_links.inc.php:80 @@ -1390,7 +1405,7 @@ msgid "Databases" msgstr "資料庫" #: libraries/Message.class.php:210 libraries/common.lib.php:574 -#: libraries/core.lib.php:236 libraries/import.lib.php:134 pdf_schema.php:30 +#: libraries/core.lib.php:232 libraries/import.lib.php:134 pdf_schema.php:30 #: pdf_schema.php:230 tbl_change.php:921 tbl_operations.php:210 #: tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -1495,7 +1510,7 @@ msgid "Cannot connect: invalid settings." msgstr "無法連線: 錯誤設定." #: libraries/auth/config.auth.lib.php:91 -#: libraries/auth/cookie.auth.lib.php:205 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:206 libraries/auth/http.auth.lib.php:64 #: test/theme.php:151 #, php-format msgid "Welcome to %s" @@ -1519,56 +1534,56 @@ msgstr "" "php 內檢查主機名稱, 登入名稱及密碼及確保這些資料是與系統管理人員所提供的 " "MySQL 伺服器資料相同" -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:231 msgid "Log in" msgstr "登入" -#: libraries/auth/cookie.auth.lib.php:232 -#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:233 +#: libraries/auth/cookie.auth.lib.php:235 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:94 msgid "phpMyAdmin documentation" msgstr "phpMyAdmin 說明文件" -#: libraries/auth/cookie.auth.lib.php:244 #: libraries/auth/cookie.auth.lib.php:245 +#: libraries/auth/cookie.auth.lib.php:246 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:244 +#: libraries/auth/cookie.auth.lib.php:245 msgid "Server:" msgstr "伺服器" -#: libraries/auth/cookie.auth.lib.php:249 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Username:" msgstr "登入名稱:" -#: libraries/auth/cookie.auth.lib.php:253 +#: libraries/auth/cookie.auth.lib.php:254 msgid "Password:" msgstr "密碼:" -#: libraries/auth/cookie.auth.lib.php:260 +#: libraries/auth/cookie.auth.lib.php:261 msgid "Server Choice" msgstr "選擇伺服器" -#: libraries/auth/cookie.auth.lib.php:306 libraries/header.inc.php:58 +#: libraries/auth/cookie.auth.lib.php:307 libraries/header.inc.php:58 msgid "Cookies must be enabled past this point." msgstr "Cookies 必須啟動才能登入." -#: libraries/auth/cookie.auth.lib.php:638 +#: libraries/auth/cookie.auth.lib.php:639 #: libraries/auth/signon.auth.lib.php:180 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" -#: libraries/auth/cookie.auth.lib.php:642 +#: libraries/auth/cookie.auth.lib.php:643 #: libraries/auth/signon.auth.lib.php:184 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "由於已閒置了達 %s 秒, 請重新登入" -#: libraries/auth/cookie.auth.lib.php:652 -#: libraries/auth/cookie.auth.lib.php:654 +#: libraries/auth/cookie.auth.lib.php:653 +#: libraries/auth/cookie.auth.lib.php:655 #: libraries/auth/signon.auth.lib.php:190 msgid "Cannot log in to the MySQL server" msgstr "無法登入 MySQL 伺服器" @@ -1687,7 +1702,7 @@ msgstr "zh" #: libraries/common.lib.php:447 libraries/dbg/setup.php:24 #: libraries/display_export.lib.php:157 libraries/engines/pbms.lib.php:72 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:79 -#: libraries/sql_query_form.lib.php:434 libraries/sql_query_form.lib.php:437 +#: libraries/sql_query_form.lib.php:421 libraries/sql_query_form.lib.php:424 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" msgstr "說明文件" @@ -1830,19 +1845,19 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/common.lib.php:2833 libraries/common.lib.php:2840 -#: libraries/db_links.inc.php:66 libraries/export/sql.php:24 +#: libraries/db_links.inc.php:53 libraries/export/sql.php:24 #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 #: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2842 libraries/db_links.inc.php:102 -#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:115 +#: libraries/common.lib.php:2842 libraries/db_links.inc.php:86 +#: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "管理" -#: libraries/core.lib.php:259 libraries/dbg/setup.php:21 +#: libraries/core.lib.php:265 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" @@ -1858,36 +1873,31 @@ msgstr "" msgid "Name" msgstr "名稱" -#: libraries/db_links.inc.php:43 -#, php-format -msgid "Database %s has been dropped." -msgstr "資料庫 %s 已被刪除" - -#: libraries/db_links.inc.php:55 libraries/db_links.inc.php:56 -#: libraries/db_links.inc.php:57 +#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43 +#: libraries/db_links.inc.php:44 msgid "Database seems to be empty!" msgstr "" -#: libraries/db_links.inc.php:79 libraries/relation.lib.php:137 +#: libraries/db_links.inc.php:66 libraries/relation.lib.php:137 #: libraries/tbl_links.inc.php:67 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:84 +#: libraries/db_links.inc.php:71 msgid "Query" msgstr "依範例查詢 (QBE)" -#: libraries/db_links.inc.php:89 libraries/relation.lib.php:133 +#: libraries/db_links.inc.php:76 libraries/relation.lib.php:133 msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:96 libraries/server_links.inc.php:87 +#: libraries/db_links.inc.php:83 libraries/server_links.inc.php:87 #: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "載入" -#: libraries/db_links.inc.php:109 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:65 #: server_privileges.php:110 server_privileges.php:1718 #: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" @@ -2052,7 +2062,7 @@ msgid "remember template" msgstr "保留樣式名稱" #: libraries/display_export.lib.php:204 libraries/display_import.lib.php:177 -#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:522 +#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:509 msgid "Character set of the file:" msgstr "文字編碼檔案:" @@ -2105,7 +2115,7 @@ msgstr "" msgid "File to import" msgstr "載入檔案" -#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:497 +#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:484 msgid "Location of the text file" msgstr "文字檔案的位置" @@ -2113,12 +2123,12 @@ msgstr "文字檔案的位置" msgid "File uploads are not allowed on this server." msgstr "" -#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:506 +#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:493 #: tbl_change.php:922 msgid "The directory you set for upload work cannot be reached" msgstr "設定之上載目錄錯誤,未能使用" -#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:509 +#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:496 #: tbl_change.php:925 msgid "web server upload directory" msgstr "Web 伺服器上載目錄" @@ -3487,7 +3497,7 @@ msgid "" "Please see the documentation on how to update your column_comments table" msgstr "請參看說明文件查詢如何更新 Column_comments 資料表" -#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:416 +#: libraries/relation.lib.php:125 libraries/sql_query_form.lib.php:403 msgid "Bookmarked SQL query" msgstr "SQL 語法書籤" @@ -3553,7 +3563,7 @@ msgstr "" msgid "Slave status" msgstr "顯示 slave 狀態" -#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:428 +#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:415 #: server_status.php:736 server_variables.php:51 msgid "Variable" msgstr "資訊" @@ -3683,51 +3693,51 @@ msgstr "" msgid "Target database" msgstr "搜索資料庫" -#: libraries/sql_query_form.lib.php:219 +#: libraries/sql_query_form.lib.php:217 #, php-format msgid "Run SQL query/queries on server %s" msgstr "於伺服器 %s 執行 SQL 語法" -#: libraries/sql_query_form.lib.php:236 libraries/sql_query_form.lib.php:261 +#: libraries/sql_query_form.lib.php:234 libraries/sql_query_form.lib.php:258 #, php-format msgid "Run SQL query/queries on database %s" msgstr "在資料庫 %s 執行以下指令" -#: libraries/sql_query_form.lib.php:307 +#: libraries/sql_query_form.lib.php:294 #, fuzzy #| msgid "Column names" msgid "Columns" msgstr "欄位名稱" -#: libraries/sql_query_form.lib.php:342 sql.php:657 sql.php:658 sql.php:675 +#: libraries/sql_query_form.lib.php:329 sql.php:657 sql.php:658 sql.php:675 msgid "Bookmark this SQL query" msgstr "將此 SQL 語法加入書籤" -#: libraries/sql_query_form.lib.php:349 sql.php:669 +#: libraries/sql_query_form.lib.php:336 sql.php:669 msgid "Let every user access this bookmark" msgstr "所有用者可讀取此書籤" -#: libraries/sql_query_form.lib.php:355 +#: libraries/sql_query_form.lib.php:342 msgid "Replace existing bookmark of same name" msgstr "取代相同名稱之書籤" -#: libraries/sql_query_form.lib.php:371 +#: libraries/sql_query_form.lib.php:358 msgid "Do not overwrite this query from outside the window" msgstr "不要將這語法覆蓋到本視窗外的SQL語法" -#: libraries/sql_query_form.lib.php:378 +#: libraries/sql_query_form.lib.php:365 msgid "Delimiter" msgstr "" -#: libraries/sql_query_form.lib.php:386 +#: libraries/sql_query_form.lib.php:373 msgid " Show this query here again " msgstr "重新顯示 SQL 語法 " -#: libraries/sql_query_form.lib.php:445 +#: libraries/sql_query_form.lib.php:432 msgid "Submit" msgstr "送出" -#: libraries/sql_query_form.lib.php:449 +#: libraries/sql_query_form.lib.php:436 msgid "View only" msgstr "查看" @@ -3793,12 +3803,11 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "SQL 分析程式未能啟動,請檢查是否已將 %s文件%s 內的 PHP 檔案安裝。" -#: libraries/tbl_links.inc.php:105 libraries/tbl_links.inc.php:138 -#: libraries/tbl_links.inc.php:139 +#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107 msgid "Table seems to be empty!" msgstr "" -#: libraries/tbl_links.inc.php:147 +#: libraries/tbl_links.inc.php:115 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" @@ -7772,43 +7781,56 @@ msgstr "資料表 %s 已被強迫更新" msgid "Flush the table (FLUSH)" msgstr "強迫更新資料表 (\"FLUSH\")" -#: tbl_operations.php:648 +#: tbl_operations.php:642 +#, fuzzy +msgid "Table removal" +msgstr "資料表名稱" + +#: tbl_operations.php:657 +msgid "Empty the table (TRUNCATE)" +msgstr "" + +#: tbl_operations.php:675 +msgid "Drop the table (DROP)" +msgstr "" + +#: tbl_operations.php:696 #, fuzzy msgid "Partition maintenance" msgstr "資料表維護" -#: tbl_operations.php:656 +#: tbl_operations.php:704 #, php-format msgid "Partition %s" msgstr "" -#: tbl_operations.php:659 +#: tbl_operations.php:707 msgid "Analyze" msgstr "" -#: tbl_operations.php:660 +#: tbl_operations.php:708 #, fuzzy msgid "Check" msgstr "捷克語" -#: tbl_operations.php:661 +#: tbl_operations.php:709 msgid "Optimize" msgstr "" -#: tbl_operations.php:662 +#: tbl_operations.php:710 msgid "Rebuild" msgstr "" -#: tbl_operations.php:663 +#: tbl_operations.php:711 #, fuzzy msgid "Repair" msgstr "修復資料表" -#: tbl_operations.php:675 +#: tbl_operations.php:723 msgid "Remove partitioning" msgstr "" -#: tbl_operations.php:701 +#: tbl_operations.php:749 msgid "Check referential integrity:" msgstr "檢查指示完整性:" From a7e7e91ef056ec92ac3a0f7f6607f95353f580c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Tue, 27 Jul 2010 10:22:25 +0200 Subject: [PATCH 091/212] Update Czech translation. --- po/cs.po | 60 ++++++++++++++++++++++++++++++-------------------------- 1 file changed, 32 insertions(+), 28 deletions(-) diff --git a/po/cs.po b/po/cs.po index 966f13747..59a560d2a 100644 --- a/po/cs.po +++ b/po/cs.po @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-27 10:12+0200\n" -"PO-Revision-Date: 2010-07-21 13:55+0200\n" +"PO-Revision-Date: 2010-07-27 10:22+0200\n" "Last-Translator: Michal \n" "Language-Team: czech \n" "Language: cs\n" @@ -93,17 +93,16 @@ msgstr "Použít tuto hodnotu" #: bs_disp_as_mime_type.php:29 bs_play_media.php:35 msgid "No blob streaming server configured!" -msgstr "" +msgstr "Není nastaven žádný streamovací server!" #: bs_disp_as_mime_type.php:35 -#, fuzzy #| msgid "Failed to write file to disk." msgid "Failed to fetch headers" -msgstr "Chyba při zapisování souboru na disk." +msgstr "Chyba při čtení hlaviček" #: bs_disp_as_mime_type.php:41 msgid "Failed to open remote URL" -msgstr "" +msgstr "Nepodařilo se otevřít vzdálené URL" #: db_create.php:44 #, php-format @@ -251,10 +250,9 @@ msgid "and then" msgstr "a poté" #: db_operations.php:379 -#, fuzzy #| msgid "Rename database to" msgid "Remove database" -msgstr "Přejmenovat databázi na" +msgstr "Odstranit databázi" #: db_operations.php:391 #, php-format @@ -262,10 +260,9 @@ msgid "Database %s has been dropped." msgstr "Databáze %s byla zrušena." #: db_operations.php:396 -#, fuzzy #| msgid "Go to database" msgid "Drop the database (DROP)" -msgstr "Přejít na databázi" +msgstr "Odstranit databázi (DROP)" #: db_operations.php:424 msgid "Copy database to" @@ -317,7 +314,7 @@ msgid "Collation" msgstr "Porovnávání" #: db_operations.php:498 pdf_schema.php:32 -#, fuzzy, php-format +#, php-format #| msgid "" #| "The additional features for working with linked tables have been " #| "deactivated. To find out why click %shere%s." @@ -2511,21 +2508,18 @@ msgstr "" "příkazem CREATE INDEX nebo opravování příkazem ALTER TABLE." #: libraries/engines/pbms.lib.php:31 -#, fuzzy #| msgid "Garbage threshold" msgid "Garbage Threshold" -msgstr "Největší velikost odpadu (garbage)" +msgstr "Práh velikosti odpadu (garbage)" #: libraries/engines/pbms.lib.php:32 -#, fuzzy #| msgid "" #| "The percentage of garbage in a data log file before it is compacted. This " #| "is a value between 1 and 99. The default is 50." msgid "The percentage of garbage in a repository file before it is compacted." msgstr "" "Procentuální podíl odpadu (garbage) v souboru datového logu předtím, než je " -"soubor stlačen. Tato hodnota se může pohybovat mezi 1 a 99. Výchozí hodnota " -"je 50." +"soubor stlačen." #: libraries/engines/pbms.lib.php:36 libraries/replication_gui.lib.php:69 #: server_synchronize.php:1161 @@ -2537,10 +2531,12 @@ msgid "" "The port for the PBMS stream-based communications. Setting this value to 0 " "will disable HTTP communication with the daemon." msgstr "" +"Port pro PBMS streamovou komunikaci. Nastavení na 0 vypne HTTP komunikaci s " +"démonem." #: libraries/engines/pbms.lib.php:41 msgid "Repository Threshold" -msgstr "" +msgstr "Práh velikosti skladiště" #: libraries/engines/pbms.lib.php:42 msgid "" @@ -2548,22 +2544,25 @@ msgid "" "indicate the unit of the value. A value in bytes is assumed when no unit is " "specified." msgstr "" +"Maximální velikost souboru ve skladišti BLOBů. Můžete použít Kb, MB nebo GB " +"pro určení jednotek. Bez uvedení jednotek se předpokládá hodnota v bajtech." #: libraries/engines/pbms.lib.php:46 msgid "Temp Blob Timeout" -msgstr "" +msgstr "Ponechaní dočasného BLOBu" #: libraries/engines/pbms.lib.php:47 msgid "" "The timeout, in seconds, for temporary BLOBs. Uploaded BLOB data is removed " "after this time, unless they are referenced by a record in the database." msgstr "" +"Doba v sekundách po kterou bude ponechán dočasný BLOB. Nahraná BLOB data " +"jsou po této době odstraněna, pokud nejsou odkazována záznamem v databázi." #: libraries/engines/pbms.lib.php:51 -#, fuzzy #| msgid "Log file threshold" msgid "Temp Log Threshold" -msgstr "Prahová hodnota logového souboru" +msgstr "Práh velikosti dočasného logového souboru" #: libraries/engines/pbms.lib.php:52 msgid "" @@ -2571,26 +2570,33 @@ msgid "" "indicate the unit of the value. A value in bytes is assumed when no unit is " "specified." msgstr "" +"Maximální velikost dočasného logovacího BLOB souboru. Můžete použít Kb, MB " +"nebo GB pro určení jednotek. Bez uvedení jednotek se předpokládá hodnota v " +"bajtech." #: libraries/engines/pbms.lib.php:56 msgid "Max Keep Alive" -msgstr "" +msgstr "Doba držení spojení" #: libraries/engines/pbms.lib.php:57 msgid "" "The timeout for inactive connection with the keep-alive flag set. After this " "time the connection will be closed. The time-out is in milliseconds (1/1000)." msgstr "" +"Doba po kterou bude držena neaktivní spojení. Po této době budou uzavřena. " +"Doba se udává v milisekundách (1/1000)." #: libraries/engines/pbms.lib.php:61 msgid "Metadata Headers" -msgstr "" +msgstr "Hlavičky metadat" #: libraries/engines/pbms.lib.php:62 msgid "" "A \":\" delimited list of metadata headers to be used to initialize the " "pbms_metadata_header table when a database is created." msgstr "" +"Dvojtečkou (\":\") oddělený seznam hlaviček metadat, který bude použit pro " +"inicializaci tabulky pbms_metadata_header při vytváření databáze." #: libraries/engines/pbxt.lib.php:22 msgid "Index cache size" @@ -6632,7 +6638,6 @@ msgid "Signon login options" msgstr "Volby přihlašování pomocí Signon" #: setup/lib/messages.inc.php:128 -#, fuzzy #| msgid "" #| "Configure phpMyAdmin database to gain access to additional features, see " #| "[a@../Documentation.html#linked-tables]linked-tables infrastructure[/a] " @@ -6643,8 +6648,8 @@ msgid "" "in documentation" msgstr "" "Nastavení databáze phpMyAdmina tak, aby získal přístup k dodatečným funkcím, " -"viz [a@../Documentation.html#linked-tables]infrastruktura propojených tabulek" -"[/a] v dokumentaci" +"viz sekce [a@../Documentation.html#linked-tables]úložiště nastavení " +"phpMyAdmina[/a] v dokumentaci" #: setup/lib/messages.inc.php:129 setup/lib/messages.inc.php:290 msgid "PMA database" @@ -8040,18 +8045,17 @@ msgid "Flush the table (FLUSH)" msgstr "Vyprázdnit vyrovnávací paměť pro tabulku („FLUSH“)" #: tbl_operations.php:642 -#, fuzzy #| msgid "Table name" msgid "Table removal" -msgstr "Jméno tabulky" +msgstr "Odstranění tabulky" #: tbl_operations.php:657 msgid "Empty the table (TRUNCATE)" -msgstr "" +msgstr "Vyprázdnit tabulku (TRUNCATE)" #: tbl_operations.php:675 msgid "Drop the table (DROP)" -msgstr "" +msgstr "Odstranit tabulku (DROP)" #: tbl_operations.php:696 msgid "Partition maintenance" From 1d05f3860469ee66722d2f0fc8bd35f9d278f296 Mon Sep 17 00:00:00 2001 From: gheni Date: Tue, 27 Jul 2010 11:46:47 +0200 Subject: [PATCH 092/212] Translation update done using Pootle. --- po/ug.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/ug.po b/po/ug.po index 0591e8f1f..5c0e4b969 100644 --- a/po/ug.po +++ b/po/ug.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-27 10:12+0200\n" -"PO-Revision-Date: 2010-07-27 04:51+0200\n" +"PO-Revision-Date: 2010-07-27 11:46+0200\n" "Last-Translator: \n" "Language-Team: Uyghur \n" "Language: ug\n" @@ -96,7 +96,6 @@ msgid "No blob streaming server configured!" msgstr "No blob streaming server configured!" #: bs_disp_as_mime_type.php:35 -#, fuzzy #| msgid "Failed to write file to disk." msgid "Failed to fetch headers" msgstr "ھۆججەتنى دېسكىغا يىزىشتا خاتالىق كۆرۈلدى." From cc0f112b6e24c5ab7e09644bae695f53c5abe4d7 Mon Sep 17 00:00:00 2001 From: gheni Date: Tue, 27 Jul 2010 11:46:51 +0200 Subject: [PATCH 093/212] Translation update done using Pootle. --- po/ug.po | 1 - 1 file changed, 1 deletion(-) diff --git a/po/ug.po b/po/ug.po index 5c0e4b969..e017bf925 100644 --- a/po/ug.po +++ b/po/ug.po @@ -250,7 +250,6 @@ msgid "and then" msgstr "كېيىن" #: db_operations.php:379 -#, fuzzy #| msgid "Rename database to" msgid "Remove database" msgstr "ئۆزگەرتىلگەن ساندان ئىسمى" From e78800eda0e9fbc7317c6522617b1e7a252e2f7f Mon Sep 17 00:00:00 2001 From: gheni Date: Tue, 27 Jul 2010 11:47:26 +0200 Subject: [PATCH 094/212] Translation update done using Pootle. --- po/ug.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ug.po b/po/ug.po index e017bf925..01dfe2b59 100644 --- a/po/ug.po +++ b/po/ug.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-27 10:12+0200\n" -"PO-Revision-Date: 2010-07-27 11:46+0200\n" +"PO-Revision-Date: 2010-07-27 11:47+0200\n" "Last-Translator: \n" "Language-Team: Uyghur \n" "Language: ug\n" @@ -257,7 +257,7 @@ msgstr "ئۆزگەرتىلگەن ساندان ئىسمى" #: db_operations.php:391 #, php-format msgid "Database %s has been dropped." -msgstr "" +msgstr "ساندان %s ئۆچۈرۈلدى." #: db_operations.php:396 #, fuzzy From 57ca4634518e723695476db52945b5c11a7f1b63 Mon Sep 17 00:00:00 2001 From: gheni Date: Tue, 27 Jul 2010 11:48:26 +0200 Subject: [PATCH 095/212] Translation update done using Pootle. --- po/ug.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/ug.po b/po/ug.po index 01dfe2b59..24077d3bf 100644 --- a/po/ug.po +++ b/po/ug.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-27 10:12+0200\n" -"PO-Revision-Date: 2010-07-27 11:47+0200\n" +"PO-Revision-Date: 2010-07-27 11:48+0200\n" "Last-Translator: \n" "Language-Team: Uyghur \n" "Language: ug\n" @@ -260,7 +260,6 @@ msgid "Database %s has been dropped." msgstr "ساندان %s ئۆچۈرۈلدى." #: db_operations.php:396 -#, fuzzy #| msgid "Copy database to" msgid "Drop the database (DROP)" msgstr "كۆچۈرۈلگەن ساندان" From 3c30e6108740b0365b3ce2103efef2f578d4f192 Mon Sep 17 00:00:00 2001 From: gheni Date: Tue, 27 Jul 2010 11:48:30 +0200 Subject: [PATCH 096/212] Translation update done using Pootle. --- po/ug.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/ug.po b/po/ug.po index 24077d3bf..c805d04d1 100644 --- a/po/ug.po +++ b/po/ug.po @@ -314,7 +314,7 @@ msgid "Collation" msgstr "تاسقاش" #: db_operations.php:498 pdf_schema.php:32 -#, fuzzy, php-format +#, php-format #| msgid "" #| "The additional features for working with linked tables have been " #| "deactivated. To find out why click %shere%s." @@ -322,8 +322,8 @@ msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." msgstr "" -"ئالاقىدار جەدۋەللەرنىڭ قوشۇمچە ئىقتىدارى پائالسىز. سەۋەبىنى ئېنىقلاش ئۈچۈن " -"%sبۇ يەرنى كۆرۈڭ%s." +"ئالاقىدار جەدۋەللەرنىڭ قوشۇمچە ئىقتىدارى پائالسىز. سەۋەبىنى ئېنىقلاش ئۈچۈن %" +"sبۇ يەرنى كۆرۈڭ%s." #: db_operations.php:531 msgid "Edit PDF Pages" From 592bc1158dce09b19a92da417d4df7cd46e0ab15 Mon Sep 17 00:00:00 2001 From: gheni Date: Tue, 27 Jul 2010 11:48:49 +0200 Subject: [PATCH 097/212] Translation update done using Pootle. --- po/ug.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/ug.po b/po/ug.po index c805d04d1..3294404bb 100644 --- a/po/ug.po +++ b/po/ug.po @@ -1544,7 +1544,7 @@ msgstr "كىرگۈزگەن ئىسلەتكۈچى ئىسمى\\پارول خاتا #: libraries/auth/swekey/swekey.auth.lib.php:118 #, php-format msgid "File %s does not contain any key id" -msgstr "" +msgstr "File %s does not contain any key id" #: libraries/auth/swekey/swekey.auth.lib.php:157 #: libraries/auth/swekey/swekey.auth.lib.php:180 From 167e5b9dcdcad254c1bcd9f52b9778e5ada853be Mon Sep 17 00:00:00 2001 From: gheni Date: Tue, 27 Jul 2010 11:49:37 +0200 Subject: [PATCH 098/212] Translation update done using Pootle. --- po/ug.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ug.po b/po/ug.po index 3294404bb..d6dbf83b1 100644 --- a/po/ug.po +++ b/po/ug.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-27 10:12+0200\n" -"PO-Revision-Date: 2010-07-27 11:48+0200\n" +"PO-Revision-Date: 2010-07-27 11:49+0200\n" "Last-Translator: \n" "Language-Team: Uyghur \n" "Language: ug\n" @@ -1549,7 +1549,7 @@ msgstr "File %s does not contain any key id" #: libraries/auth/swekey/swekey.auth.lib.php:157 #: libraries/auth/swekey/swekey.auth.lib.php:180 msgid "Hardware authentication failed" -msgstr "" +msgstr "قاتتىق دېتال تەكشۈرۈشتىن ئۆتمىدى." #: libraries/auth/swekey/swekey.auth.lib.php:166 msgid "No valid authentication key plugged" From 84c47c42dbb016168f1e2b304cb0f6aafa72540c Mon Sep 17 00:00:00 2001 From: gheni Date: Tue, 27 Jul 2010 11:51:53 +0200 Subject: [PATCH 099/212] Translation update done using Pootle. --- po/ug.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ug.po b/po/ug.po index d6dbf83b1..956355f8f 100644 --- a/po/ug.po +++ b/po/ug.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-27 10:12+0200\n" -"PO-Revision-Date: 2010-07-27 11:49+0200\n" +"PO-Revision-Date: 2010-07-27 11:51+0200\n" "Last-Translator: \n" "Language-Team: Uyghur \n" "Language: ug\n" @@ -1553,7 +1553,7 @@ msgstr "قاتتىق دېتال تەكشۈرۈشتىن ئۆتمىدى." #: libraries/auth/swekey/swekey.auth.lib.php:166 msgid "No valid authentication key plugged" -msgstr "" +msgstr "No valid authentication key plugged" #: libraries/auth/swekey/swekey.auth.lib.php:202 msgid "Authenticating..." From 480645a7fd25f2ca5c57aceaec55e886e0605533 Mon Sep 17 00:00:00 2001 From: gheni Date: Tue, 27 Jul 2010 11:54:44 +0200 Subject: [PATCH 100/212] Translation update done using Pootle. --- po/ug.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ug.po b/po/ug.po index 956355f8f..7f0f68161 100644 --- a/po/ug.po +++ b/po/ug.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-27 10:12+0200\n" -"PO-Revision-Date: 2010-07-27 11:51+0200\n" +"PO-Revision-Date: 2010-07-27 11:54+0200\n" "Last-Translator: \n" "Language-Team: Uyghur \n" "Language: ug\n" @@ -1557,7 +1557,7 @@ msgstr "No valid authentication key plugged" #: libraries/auth/swekey/swekey.auth.lib.php:202 msgid "Authenticating..." -msgstr "" +msgstr "تەكشۈرۈشتىن ئۆزكۈزىۋاتىدۇ..." #: libraries/blobstreaming.lib.php:340 msgid "View image" From ec247096d713de3fd0b7bea1eb210a9693427dd4 Mon Sep 17 00:00:00 2001 From: gheni Date: Tue, 27 Jul 2010 11:54:55 +0200 Subject: [PATCH 101/212] Translation update done using Pootle. --- po/ug.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/ug.po b/po/ug.po index 7f0f68161..8cea9d400 100644 --- a/po/ug.po +++ b/po/ug.po @@ -1561,7 +1561,7 @@ msgstr "تەكشۈرۈشتىن ئۆزكۈزىۋاتىدۇ..." #: libraries/blobstreaming.lib.php:340 msgid "View image" -msgstr "" +msgstr "رەسىمنى كۆرۈش" #: libraries/blobstreaming.lib.php:344 msgid "Play audio" From 11fa28660255fcb0cd9f0853d70301becbf8831f Mon Sep 17 00:00:00 2001 From: gheni Date: Tue, 27 Jul 2010 12:20:00 +0200 Subject: [PATCH 102/212] Translation update done using Pootle. --- po/ug.po | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/po/ug.po b/po/ug.po index 8cea9d400..4608f6f77 100644 --- a/po/ug.po +++ b/po/ug.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-27 10:12+0200\n" -"PO-Revision-Date: 2010-07-27 11:54+0200\n" +"PO-Revision-Date: 2010-07-27 12:20+0200\n" "Last-Translator: \n" "Language-Team: Uyghur \n" "Language: ug\n" @@ -1584,6 +1584,11 @@ msgid "" "semicolon is missing somewhere.
    If you receive a blank page, everything " "is fine." msgstr "" +"phpMyAdmin تەڭشەك ھۆجقىتىنى ئوقۇيالمىدى!
    ھۆججەت يوق ياكى، بۇزۇق " +"بولۇشى مۇمكىن.
    تۆۋەندىكى ئۇلىنىشتىن تەڭشەك ھۆجقىتنى ئېچىپ كۆرۈڭ، " +"ئاندىن ئكزىڭىزنىڭ PHP تەڭشەكلىرىنى كۆرۈڭ.كۆپ ھاللاردا قوش چىكىت ياكى " +"چىكىتلىك بەش لەردىن خاتالىق كۆرۈلىدۇ.
    ئەگەر سىز بىر ئاق بەت كۆرسىڭىز " +"مەسىلە يوقلىقىنى بىلدۈرىدۇ." #: libraries/common.inc.php:578 #, php-format From cc333ecc27c6e773597ae37220175f4a376e14c9 Mon Sep 17 00:00:00 2001 From: gheni Date: Tue, 27 Jul 2010 12:21:36 +0200 Subject: [PATCH 103/212] Translation update done using Pootle. --- po/ug.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ug.po b/po/ug.po index 4608f6f77..31667ccf4 100644 --- a/po/ug.po +++ b/po/ug.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-27 10:12+0200\n" -"PO-Revision-Date: 2010-07-27 12:20+0200\n" +"PO-Revision-Date: 2010-07-27 12:21+0200\n" "Last-Translator: \n" "Language-Team: Uyghur \n" "Language: ug\n" @@ -1593,7 +1593,7 @@ msgstr "" #: libraries/common.inc.php:578 #, php-format msgid "Could not load default configuration from: %1$s" -msgstr "" +msgstr "تەڭشەك ئەندىزى %1$s كىرگۈزىلمىدى." #: libraries/common.inc.php:583 msgid "" From 34ee82ad98c7c52d015147a81b5f292da2423768 Mon Sep 17 00:00:00 2001 From: gheni Date: Tue, 27 Jul 2010 12:23:35 +0200 Subject: [PATCH 104/212] Translation update done using Pootle. --- po/ug.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ug.po b/po/ug.po index 31667ccf4..97e6b1144 100644 --- a/po/ug.po +++ b/po/ug.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-27 10:12+0200\n" -"PO-Revision-Date: 2010-07-27 12:21+0200\n" +"PO-Revision-Date: 2010-07-27 12:23+0200\n" "Last-Translator: \n" "Language-Team: Uyghur \n" "Language: ug\n" @@ -1599,7 +1599,7 @@ msgstr "تەڭشەك ئەندىزى %1$s كىرگۈزىلمىدى." msgid "" "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " "configuration file!" -msgstr "" +msgstr " $cfg['PmaAbsoluteUri'] نى تەڭشەڭ !تەڭشەك ھۆججىتى ئىچىدىكى" #: libraries/common.inc.php:613 #, php-format From 9e99c7ecd54cc0fec5bc08b08f0d9338672c1de7 Mon Sep 17 00:00:00 2001 From: gheni Date: Tue, 27 Jul 2010 12:25:19 +0200 Subject: [PATCH 105/212] Translation update done using Pootle. --- po/ug.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ug.po b/po/ug.po index 97e6b1144..c90901958 100644 --- a/po/ug.po +++ b/po/ug.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-27 10:12+0200\n" -"PO-Revision-Date: 2010-07-27 12:23+0200\n" +"PO-Revision-Date: 2010-07-27 12:25+0200\n" "Last-Translator: \n" "Language-Team: Uyghur \n" "Language: ug\n" @@ -1604,7 +1604,7 @@ msgstr " $cfg['PmaAbsoluteUri'] نى تەڭشەڭ !تەڭشەك ھۆج #: libraries/common.inc.php:613 #, php-format msgid "Invalid server index: %s" -msgstr "" +msgstr "ئۈنۈمسىز مۇلازىمىتېر :%s" #: libraries/common.inc.php:620 #, php-format From f97786a4e952e2f7264da4003cb157614f923528 Mon Sep 17 00:00:00 2001 From: gheni Date: Tue, 27 Jul 2010 12:26:19 +0200 Subject: [PATCH 106/212] Translation update done using Pootle. --- po/ug.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ug.po b/po/ug.po index c90901958..ad8cec334 100644 --- a/po/ug.po +++ b/po/ug.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-27 10:12+0200\n" -"PO-Revision-Date: 2010-07-27 12:25+0200\n" +"PO-Revision-Date: 2010-07-27 12:26+0200\n" "Last-Translator: \n" "Language-Team: Uyghur \n" "Language: ug\n" @@ -1609,7 +1609,7 @@ msgstr "ئۈنۈمسىز مۇلازىمىتېر :%s" #: libraries/common.inc.php:620 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." -msgstr "" +msgstr "مۇلازىمىتېر %1$s ئۈنۈمسىز. تەڭشەك ھۆجقىتىنى تەشۈرۈڭ." #: libraries/common.inc.php:629 libraries/header.inc.php:95 #: libraries/select_server.lib.php:38 libraries/select_server.lib.php:44 From b42064d476ebeb7054ba3c70af4c1d0feac98e8f Mon Sep 17 00:00:00 2001 From: gheni Date: Tue, 27 Jul 2010 12:26:50 +0200 Subject: [PATCH 107/212] Translation update done using Pootle. --- po/ug.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/ug.po b/po/ug.po index ad8cec334..74526ea49 100644 --- a/po/ug.po +++ b/po/ug.po @@ -1615,7 +1615,7 @@ msgstr "مۇلازىمىتېر %1$s ئۈنۈمسىز. تەڭشەك ھۆجقىت #: libraries/select_server.lib.php:38 libraries/select_server.lib.php:44 #: main.php:184 test/theme.php:56 msgid "Server" -msgstr "" +msgstr "مۇلازىمىتېر" #: libraries/common.inc.php:806 msgid "Invalid authentication method set in configuration:" From 1c66f6520e4062f5ef7c95e75d59250d35f30264 Mon Sep 17 00:00:00 2001 From: gheni Date: Tue, 27 Jul 2010 12:28:41 +0200 Subject: [PATCH 108/212] Translation update done using Pootle. --- po/ug.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ug.po b/po/ug.po index 74526ea49..25f1e6b11 100644 --- a/po/ug.po +++ b/po/ug.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-27 10:12+0200\n" -"PO-Revision-Date: 2010-07-27 12:26+0200\n" +"PO-Revision-Date: 2010-07-27 12:28+0200\n" "Last-Translator: \n" "Language-Team: Uyghur \n" "Language: ug\n" @@ -1619,7 +1619,7 @@ msgstr "مۇلازىمىتېر" #: libraries/common.inc.php:806 msgid "Invalid authentication method set in configuration:" -msgstr "" +msgstr "تەڭشەك ھۆجىتى ئىچىدىكى دەلىللەش ئۇسۇلى ئۈنۈمسىز:" #: libraries/common.inc.php:908 #, php-format From 9ac4ee94bb77ef5145eda0791b06a649957d1729 Mon Sep 17 00:00:00 2001 From: gheni Date: Tue, 27 Jul 2010 12:29:58 +0200 Subject: [PATCH 109/212] Translation update done using Pootle. --- po/ug.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ug.po b/po/ug.po index 25f1e6b11..1574ab6d9 100644 --- a/po/ug.po +++ b/po/ug.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-27 10:12+0200\n" -"PO-Revision-Date: 2010-07-27 12:28+0200\n" +"PO-Revision-Date: 2010-07-27 12:29+0200\n" "Last-Translator: \n" "Language-Team: Uyghur \n" "Language: ug\n" @@ -1624,7 +1624,7 @@ msgstr "تەڭشەك ھۆجىتى ئىچىدىكى دەلىللەش ئۇسۇلى #: libraries/common.inc.php:908 #, php-format msgid "You should upgrade to %s %s or later." -msgstr "" +msgstr "%s %s ياكى ئۇنىڭدىنمۇ يۇقىرى نەشىرگە كۆتۈتىڭ." #: libraries/common.lib.php:145 #, php-format From 8cfdbcd4985448c13c54d5abfa62f04bf87d585c Mon Sep 17 00:00:00 2001 From: gheni Date: Tue, 27 Jul 2010 12:30:30 +0200 Subject: [PATCH 110/212] Translation update done using Pootle. --- po/ug.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ug.po b/po/ug.po index 1574ab6d9..4cb4c41a5 100644 --- a/po/ug.po +++ b/po/ug.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-27 10:12+0200\n" -"PO-Revision-Date: 2010-07-27 12:29+0200\n" +"PO-Revision-Date: 2010-07-27 12:30+0200\n" "Last-Translator: \n" "Language-Team: Uyghur \n" "Language: ug\n" @@ -1629,7 +1629,7 @@ msgstr "%s %s ياكى ئۇنىڭدىنمۇ يۇقىرى نەشىرگە كۆتۈ #: libraries/common.lib.php:145 #, php-format msgid "Max: %s%s" -msgstr "" +msgstr "ئەڭ چوڭ:%s%s" #. l10n: Language to use for MySQL 5.1 documentation, please use only languages which do exist in official documentation. #: libraries/common.lib.php:408 From e5d2e2cf9756f603a6394e8f4d6498a73144cce0 Mon Sep 17 00:00:00 2001 From: gheni Date: Tue, 27 Jul 2010 12:30:55 +0200 Subject: [PATCH 111/212] Translation update done using Pootle. --- po/ug.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/ug.po b/po/ug.po index 4cb4c41a5..f72ca0339 100644 --- a/po/ug.po +++ b/po/ug.po @@ -1635,7 +1635,7 @@ msgstr "ئەڭ چوڭ:%s%s" #: libraries/common.lib.php:408 msgctxt "$mysql_5_1_doc_lang" msgid "en" -msgstr "" +msgstr "en" #. l10n: Language to use for MySQL 5.0 documentation, please use only languages which do exist in official documentation. #: libraries/common.lib.php:412 From 453657fea5eaa263b96651806e294ed5b97eff30 Mon Sep 17 00:00:00 2001 From: gheni Date: Tue, 27 Jul 2010 12:31:59 +0200 Subject: [PATCH 112/212] Translation update done using Pootle. --- po/ug.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ug.po b/po/ug.po index f72ca0339..db3aebbcf 100644 --- a/po/ug.po +++ b/po/ug.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-27 10:12+0200\n" -"PO-Revision-Date: 2010-07-27 12:30+0200\n" +"PO-Revision-Date: 2010-07-27 12:31+0200\n" "Last-Translator: \n" "Language-Team: Uyghur \n" "Language: ug\n" @@ -1641,7 +1641,7 @@ msgstr "en" #: libraries/common.lib.php:412 msgctxt "$mysql_5_0_doc_lang" msgid "en" -msgstr "" +msgstr "en" #: libraries/common.lib.php:425 libraries/common.lib.php:427 #: libraries/common.lib.php:429 libraries/common.lib.php:445 From 09865edd4ddf7ff4393fbeef88cf905b23bbaf46 Mon Sep 17 00:00:00 2001 From: gheni Date: Tue, 27 Jul 2010 12:32:29 +0200 Subject: [PATCH 113/212] Translation update done using Pootle. --- po/ug.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ug.po b/po/ug.po index db3aebbcf..ee5a8fe36 100644 --- a/po/ug.po +++ b/po/ug.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-27 10:12+0200\n" -"PO-Revision-Date: 2010-07-27 12:31+0200\n" +"PO-Revision-Date: 2010-07-27 12:32+0200\n" "Last-Translator: \n" "Language-Team: Uyghur \n" "Language: ug\n" @@ -1651,7 +1651,7 @@ msgstr "en" #: libraries/sql_query_form.lib.php:421 libraries/sql_query_form.lib.php:424 #: main.php:228 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" -msgstr "" +msgstr "قوللانما" #: libraries/common.lib.php:588 libraries/header_printview.inc.php:60 #: server_processlist.php:59 server_status.php:357 From b9afc49923193465275ba3747d7cb916b6c90f07 Mon Sep 17 00:00:00 2001 From: gheni Date: Tue, 27 Jul 2010 12:34:02 +0200 Subject: [PATCH 114/212] Translation update done using Pootle. --- po/ug.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ug.po b/po/ug.po index ee5a8fe36..cb5fac704 100644 --- a/po/ug.po +++ b/po/ug.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-27 10:12+0200\n" -"PO-Revision-Date: 2010-07-27 12:32+0200\n" +"PO-Revision-Date: 2010-07-27 12:34+0200\n" "Last-Translator: \n" "Language-Team: Uyghur \n" "Language: ug\n" @@ -1656,7 +1656,7 @@ msgstr "قوللانما" #: libraries/common.lib.php:588 libraries/header_printview.inc.php:60 #: server_processlist.php:59 server_status.php:357 msgid "SQL query" -msgstr "" +msgstr "SQL سورىقى" #: libraries/common.lib.php:627 msgid "MySQL said: " From ab09717fa4dd03a2dc43d4cb0b2b03b2bc4c2b6c Mon Sep 17 00:00:00 2001 From: gheni Date: Tue, 27 Jul 2010 12:35:52 +0200 Subject: [PATCH 115/212] Translation update done using Pootle. --- po/ug.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ug.po b/po/ug.po index cb5fac704..488e2d530 100644 --- a/po/ug.po +++ b/po/ug.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-27 10:12+0200\n" -"PO-Revision-Date: 2010-07-27 12:34+0200\n" +"PO-Revision-Date: 2010-07-27 12:35+0200\n" "Last-Translator: \n" "Language-Team: Uyghur \n" "Language: ug\n" @@ -1660,7 +1660,7 @@ msgstr "SQL سورىقى" #: libraries/common.lib.php:627 msgid "MySQL said: " -msgstr "" +msgstr "MySQL جاۋابى:" #: libraries/common.lib.php:1129 msgid "Failed to connect to SQL validator!" From e3eb708d756f56959ccfe94a914be89b25ff76c8 Mon Sep 17 00:00:00 2001 From: gheni Date: Tue, 27 Jul 2010 12:36:03 +0200 Subject: [PATCH 116/212] Translation update done using Pootle. --- po/ug.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ug.po b/po/ug.po index 488e2d530..b263f3335 100644 --- a/po/ug.po +++ b/po/ug.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-27 10:12+0200\n" -"PO-Revision-Date: 2010-07-27 12:35+0200\n" +"PO-Revision-Date: 2010-07-27 12:36+0200\n" "Last-Translator: \n" "Language-Team: Uyghur \n" "Language: ug\n" @@ -1664,7 +1664,7 @@ msgstr "MySQL جاۋابى:" #: libraries/common.lib.php:1129 msgid "Failed to connect to SQL validator!" -msgstr "" +msgstr "Failed to connect to SQL validator!" #: libraries/common.lib.php:1167 setup/lib/messages.inc.php:350 msgid "Explain SQL" From 55e2bd6962edb1479cc312683b2826d4bac11997 Mon Sep 17 00:00:00 2001 From: gheni Date: Tue, 27 Jul 2010 12:36:49 +0200 Subject: [PATCH 117/212] Translation update done using Pootle. --- po/ug.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/ug.po b/po/ug.po index b263f3335..b789615b6 100644 --- a/po/ug.po +++ b/po/ug.po @@ -1668,7 +1668,7 @@ msgstr "Failed to connect to SQL validator!" #: libraries/common.lib.php:1167 setup/lib/messages.inc.php:350 msgid "Explain SQL" -msgstr "" +msgstr "SQL ئىزاھى" #: libraries/common.lib.php:1170 msgid "Skip Explain SQL" From c8132326226c39a53d82993b8bd5818bd0a69aae Mon Sep 17 00:00:00 2001 From: gheni Date: Tue, 27 Jul 2010 12:37:52 +0200 Subject: [PATCH 118/212] Translation update done using Pootle. --- po/ug.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ug.po b/po/ug.po index b789615b6..3a6a6e543 100644 --- a/po/ug.po +++ b/po/ug.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-27 10:12+0200\n" -"PO-Revision-Date: 2010-07-27 12:36+0200\n" +"PO-Revision-Date: 2010-07-27 12:37+0200\n" "Last-Translator: \n" "Language-Team: Uyghur \n" "Language: ug\n" @@ -1672,7 +1672,7 @@ msgstr "SQL ئىزاھى" #: libraries/common.lib.php:1170 msgid "Skip Explain SQL" -msgstr "" +msgstr "SQL ئىزاھىىدىن ئاتلاش" #: libraries/common.lib.php:1204 msgid "Without PHP Code" From 4b040712e2a23f0c4eb1b793fd41e84eb233f5f0 Mon Sep 17 00:00:00 2001 From: gheni Date: Tue, 27 Jul 2010 12:38:56 +0200 Subject: [PATCH 119/212] Translation update done using Pootle. --- po/ug.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ug.po b/po/ug.po index 3a6a6e543..dec59c540 100644 --- a/po/ug.po +++ b/po/ug.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-27 10:12+0200\n" -"PO-Revision-Date: 2010-07-27 12:37+0200\n" +"PO-Revision-Date: 2010-07-27 12:38+0200\n" "Last-Translator: \n" "Language-Team: Uyghur \n" "Language: ug\n" @@ -1676,7 +1676,7 @@ msgstr "SQL ئىزاھىىدىن ئاتلاش" #: libraries/common.lib.php:1204 msgid "Without PHP Code" -msgstr "" +msgstr "PHP كودى يوق" #: libraries/common.lib.php:1207 setup/lib/messages.inc.php:352 msgid "Create PHP Code" From e050f51d1a5a81907cbf68d4aa9ab98f602d9481 Mon Sep 17 00:00:00 2001 From: gheni Date: Tue, 27 Jul 2010 12:40:39 +0200 Subject: [PATCH 120/212] Translation update done using Pootle. --- po/ug.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ug.po b/po/ug.po index dec59c540..dd339c433 100644 --- a/po/ug.po +++ b/po/ug.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-27 10:12+0200\n" -"PO-Revision-Date: 2010-07-27 12:38+0200\n" +"PO-Revision-Date: 2010-07-27 12:40+0200\n" "Last-Translator: \n" "Language-Team: Uyghur \n" "Language: ug\n" @@ -1680,7 +1680,7 @@ msgstr "PHP كودى يوق" #: libraries/common.lib.php:1207 setup/lib/messages.inc.php:352 msgid "Create PHP Code" -msgstr "" +msgstr "PHP كودى قۇرۇش" #: libraries/common.lib.php:1225 server_status.php:451 #: setup/lib/messages.inc.php:351 From acdff48d4a1fb6e5fa697eaaa77de9d1da79eed6 Mon Sep 17 00:00:00 2001 From: gheni Date: Tue, 27 Jul 2010 12:40:56 +0200 Subject: [PATCH 121/212] Translation update done using Pootle. --- po/ug.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/ug.po b/po/ug.po index dd339c433..4e59ccdba 100644 --- a/po/ug.po +++ b/po/ug.po @@ -1685,7 +1685,7 @@ msgstr "PHP كودى قۇرۇش" #: libraries/common.lib.php:1225 server_status.php:451 #: setup/lib/messages.inc.php:351 msgid "Refresh" -msgstr "" +msgstr "يېڭلاش" #: libraries/common.lib.php:1234 msgid "Skip Validate SQL" From a06f0664e1f79eea82a623b208441b4c794b4184 Mon Sep 17 00:00:00 2001 From: gheni Date: Tue, 27 Jul 2010 12:41:32 +0200 Subject: [PATCH 122/212] Translation update done using Pootle. --- po/ug.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ug.po b/po/ug.po index 4e59ccdba..499c0bf8d 100644 --- a/po/ug.po +++ b/po/ug.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-27 10:12+0200\n" -"PO-Revision-Date: 2010-07-27 12:40+0200\n" +"PO-Revision-Date: 2010-07-27 12:41+0200\n" "Last-Translator: \n" "Language-Team: Uyghur \n" "Language: ug\n" @@ -1689,7 +1689,7 @@ msgstr "يېڭلاش" #: libraries/common.lib.php:1234 msgid "Skip Validate SQL" -msgstr "" +msgstr "SQL دەلىللەشتىن ئاتلاش" #: libraries/common.lib.php:1237 setup/lib/messages.inc.php:353 msgid "Validate SQL" From 810ccfd03bedf79c05d64d3dde37a0af7db0002a Mon Sep 17 00:00:00 2001 From: gheni Date: Tue, 27 Jul 2010 12:41:49 +0200 Subject: [PATCH 123/212] Translation update done using Pootle. --- po/ug.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/ug.po b/po/ug.po index 499c0bf8d..88b5b85a2 100644 --- a/po/ug.po +++ b/po/ug.po @@ -1693,7 +1693,7 @@ msgstr "SQL دەلىللەشتىن ئاتلاش" #: libraries/common.lib.php:1237 setup/lib/messages.inc.php:353 msgid "Validate SQL" -msgstr "" +msgstr "SQL دەلىللەش" #: libraries/common.lib.php:1287 msgid "Inline edit of this query" From aa706ac1d5dee60c4a1357918341810a288faa38 Mon Sep 17 00:00:00 2001 From: gheni Date: Tue, 27 Jul 2010 12:42:27 +0200 Subject: [PATCH 124/212] Translation update done using Pootle. --- po/ug.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ug.po b/po/ug.po index 88b5b85a2..56d9407bb 100644 --- a/po/ug.po +++ b/po/ug.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-27 10:12+0200\n" -"PO-Revision-Date: 2010-07-27 12:41+0200\n" +"PO-Revision-Date: 2010-07-27 12:42+0200\n" "Last-Translator: \n" "Language-Team: Uyghur \n" "Language: ug\n" @@ -1697,7 +1697,7 @@ msgstr "SQL دەلىللەش" #: libraries/common.lib.php:1287 msgid "Inline edit of this query" -msgstr "" +msgstr "Inline edit of this query" #: libraries/common.lib.php:1289 msgid "Inline" From ee3c74b4f0ea301bee7e6c0bc1680948990f42c4 Mon Sep 17 00:00:00 2001 From: gheni Date: Tue, 27 Jul 2010 12:43:00 +0200 Subject: [PATCH 125/212] Translation update done using Pootle. --- po/ug.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ug.po b/po/ug.po index 56d9407bb..52c66bc5a 100644 --- a/po/ug.po +++ b/po/ug.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-27 10:12+0200\n" -"PO-Revision-Date: 2010-07-27 12:42+0200\n" +"PO-Revision-Date: 2010-07-27 12:43+0200\n" "Last-Translator: \n" "Language-Team: Uyghur \n" "Language: ug\n" @@ -1701,7 +1701,7 @@ msgstr "Inline edit of this query" #: libraries/common.lib.php:1289 msgid "Inline" -msgstr "" +msgstr " ئىچكى بىرلىشىش" #: libraries/common.lib.php:1343 libraries/common.lib.php:1358 msgid "Profiling" From 8e546260b24ed2c27d42eda70de4fbf92284f883 Mon Sep 17 00:00:00 2001 From: gheni Date: Tue, 27 Jul 2010 12:44:59 +0200 Subject: [PATCH 126/212] Translation update done using Pootle. --- po/ug.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ug.po b/po/ug.po index 52c66bc5a..93dc98f55 100644 --- a/po/ug.po +++ b/po/ug.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-27 10:12+0200\n" -"PO-Revision-Date: 2010-07-27 12:43+0200\n" +"PO-Revision-Date: 2010-07-27 12:44+0200\n" "Last-Translator: \n" "Language-Team: Uyghur \n" "Language: ug\n" @@ -1710,7 +1710,7 @@ msgstr "" #: libraries/common.lib.php:1362 libraries/tbl_triggers.lib.php:27 #: server_processlist.php:57 msgid "Time" -msgstr "" +msgstr "ۋاقىت" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ #: libraries/common.lib.php:1390 From 6b9d8d7114492739382dd634dc8234ce47db98a7 Mon Sep 17 00:00:00 2001 From: gheni Date: Tue, 27 Jul 2010 12:45:15 +0200 Subject: [PATCH 127/212] Translation update done using Pootle. --- po/ug.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ug.po b/po/ug.po index 93dc98f55..547aeed9d 100644 --- a/po/ug.po +++ b/po/ug.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-27 10:12+0200\n" -"PO-Revision-Date: 2010-07-27 12:44+0200\n" +"PO-Revision-Date: 2010-07-27 12:45+0200\n" "Last-Translator: \n" "Language-Team: Uyghur \n" "Language: ug\n" @@ -1715,7 +1715,7 @@ msgstr "ۋاقىت" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ #: libraries/common.lib.php:1390 msgid "B" -msgstr "" +msgstr "بايت" #: libraries/common.lib.php:1390 msgid "KiB" From d3de765d39fc1992ec0edd566e9726314211e83a Mon Sep 17 00:00:00 2001 From: gheni Date: Tue, 27 Jul 2010 12:45:23 +0200 Subject: [PATCH 128/212] Translation update done using Pootle. --- po/ug.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/ug.po b/po/ug.po index 547aeed9d..5458d41b8 100644 --- a/po/ug.po +++ b/po/ug.po @@ -1719,7 +1719,7 @@ msgstr "بايت" #: libraries/common.lib.php:1390 msgid "KiB" -msgstr "" +msgstr "KiB" #: libraries/common.lib.php:1390 msgid "MiB" From 2047ae28a5044d2b6f80090dc4bb2636e27fe71d Mon Sep 17 00:00:00 2001 From: gheni Date: Tue, 27 Jul 2010 12:45:36 +0200 Subject: [PATCH 129/212] Translation update done using Pootle. --- po/ug.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/ug.po b/po/ug.po index 5458d41b8..6cdc2c3b5 100644 --- a/po/ug.po +++ b/po/ug.po @@ -1723,7 +1723,7 @@ msgstr "KiB" #: libraries/common.lib.php:1390 msgid "MiB" -msgstr "" +msgstr "MB" #: libraries/common.lib.php:1390 msgid "GiB" From 77da95d40030e263bcb8e2ccb242a1ee8aaa5d18 Mon Sep 17 00:00:00 2001 From: zalex_ua Date: Tue, 27 Jul 2010 22:11:54 +0200 Subject: [PATCH 130/212] Translation update done using Pootle. --- po/uk.po | 250 ++----------------------------------------------------- 1 file changed, 7 insertions(+), 243 deletions(-) diff --git a/po/uk.po b/po/uk.po index 5899bbc83..4ee0ad591 100644 --- a/po/uk.po +++ b/po/uk.po @@ -4,14 +4,16 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-27 10:12+0200\n" -"PO-Revision-Date: 2010-03-12 09:19+0100\n" -"Last-Translator: Automatically generated\n" +"PO-Revision-Date: 2010-07-27 22:11+0200\n" +"Last-Translator: \n" "Language-Team: ukrainian \n" -"Language: \n" +"Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.5.3\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:36 browse_foreigners.php:57 #: libraries/display_tbl.lib.php:415 server_privileges.php:1510 @@ -256,10 +258,9 @@ msgid "Database %s has been dropped." msgstr "Базу даних %s знищено." #: db_operations.php:396 -#, fuzzy #| msgid "No databases" msgid "Drop the database (DROP)" -msgstr "БД відсутні" +msgstr "Знищити базу даних (DROP)" #: db_operations.php:424 msgid "Copy database to" @@ -8110,240 +8111,3 @@ msgstr "" #: view_operations.php:91 msgid "Rename view to" msgstr "" - -#, fuzzy -#~| msgid "Enabled" -#~ msgctxt "BLOB repository" -#~ msgid "Enabled" -#~ msgstr "дозволено" - -#, fuzzy -#~| msgid "Repair table" -#~ msgctxt "BLOB repository" -#~ msgid "Repair" -#~ msgstr "Ремонтувати таблицю" - -#, fuzzy -#~| msgid "Disabled" -#~ msgctxt "BLOB repository" -#~ msgid "Disabled" -#~ msgstr "заблоковано" - -#~ msgid "" -#~ "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " -#~ "extension. Please check your PHP configuration." -#~ msgstr "не можу завантажити %s,
    прошу перевірити конфігурацію PHP." - -#~ msgid "" -#~ "Couldn't load the iconv or recode extension needed for charset " -#~ "conversion. Either configure PHP to enable these extensions or disable " -#~ "charset conversion in phpMyAdmin." -#~ msgstr "" -#~ "Не можу завантажити iconv чи recode extension необхідні для зміни charset-" -#~ "у, сконфігуруйте php так, щоб можна було використовувати ці extensions, " -#~ "або забороніть зміну charset-у у phpMyAdmin." - -#~ msgid "" -#~ "Couldn't use the iconv, libiconv, or recode_string functions, although " -#~ "the necessary extensions appear to be loaded. Check your PHP " -#~ "configuration." -#~ msgstr "" -#~ "Не можу використати ні/або iconv, ні/або libiconv, ні/або функцію " -#~ "recode_string поки буде завантажено extension reports. Перевірте Вашу php " -#~ "конфігурацію." - -#, fuzzy -#~| msgid "Add new field" -#~ msgid "Add field" -#~ msgstr "Додати нове поле" - -#~ msgid "Field" -#~ msgstr "Поле" - -#~ msgid "Records" -#~ msgstr "Записи" - -#~ msgid "Fields terminated by" -#~ msgstr "Поля розділені" - -#~ msgid "Fields" -#~ msgstr "Поля" - -#~ msgid "Field %s has been dropped" -#~ msgstr "Поле %s було видалено" - -#~ msgid "See image/jpeg: inline" -#~ msgstr "Див. image/jpeg: inline" - -#, fuzzy -#~| msgid "\"zipped\"" -#~ msgid "zipped" -#~ msgstr "запакувати в \"zip\"" - -#, fuzzy -#~| msgid "\"gzipped\"" -#~ msgid "gzipped" -#~ msgstr "запакувати в \"gzip\"" - -#, fuzzy -#~| msgid "\"bzipped\"" -#~ msgid "bzipped" -#~ msgstr "запакувати в \"bzip\"" - -#~ msgid "Create an index on %s columns" -#~ msgstr "Створити індекс на %s колонках" - -#~ msgid "Flush the table (\"FLUSH\")" -#~ msgstr "Очистити кеш таблиці (\"FLUSH\")" - -#~ msgctxt "$strMIME_description" -#~ msgid "Description" -#~ msgstr "Опис" - -#~ msgid "Schema of the \"%s\" database - Page %s" -#~ msgstr "Схема бази даних \"%s\" - Сторінка %s" - -#~ msgid "The \"%s\" table doesn't exist!" -#~ msgstr "Таблиці \"%s\" не існує!" - -#~ msgid "running on %s" -#~ msgstr "на %s" - -#~ msgid "The scale factor is too small to fit the schema on one page" -#~ msgstr "Занадто малий масштаб щоб схема займала цілу сторінку" - -#, fuzzy -#~| msgid "None" -#~ msgctxt "None action" -#~ msgid "None" -#~ msgstr "Немає" - -#, fuzzy -#~| msgid "None" -#~ msgctxt "" -#~ msgid "None" -#~ msgstr "Немає" - -#, fuzzy -#~| msgid "The \"%s\" table doesn't exist!" -#~ msgid "The %s table doesn" -#~ msgstr "Таблиці \"%s\" не існує!" - -#, fuzzy -#~| msgid "" -#~| "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " -#~| "extension. Please check your PHP configuration." -#~ msgid "" -#~ "Cannot load [a@http://php.net/%1@Documentation][em]%1[/em][/a] extension. " -#~ "Please check your PHP configuration." -#~ msgstr "не можу завантажити %s,
    прошу перевірити конфігурацію PHP." - -#, fuzzy -#~| msgid "Cannot log in to the MySQL server" -#~ msgid "(or the local MySQL server" -#~ msgstr "Не можу зареєструватися на MySQL сервері" - -#, fuzzy -#~| 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:" -#~ 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 " -#~ "be . " -#~ msgstr "" -#~ "Можливо Ви знайшли помилку в парсері SQL. Прошу детальніше перевірити чи " -#~ "коректно вжиті і не пропущені лапки у Вашому запиті. Іншою можливою " -#~ "причиною помилки може бути те що Ви завантажили файл з двійковими даними " -#~ "розміщеними поза взятим в лапки текстом. Спробуйте виконати Ваш запит за " -#~ "допомогою оболонки MySQL з командної стрічки. Повідомлення MySQL сервера " -#~ "про помилку подане нижче (якщо є таке) також може допомогти Вам у " -#~ "визначенні проблеми. Якщо у Вас все ще виникають проблеми чи парсер видає " -#~ "помилку, а з командної стрічки запити виконуються, прошу скоротити Ваш " -#~ "ввідний SQL запит до одного запиту, який власне і викликає проблеми, і " -#~ "відішліть повідомлення про помилку з порцією даних у розділі CUT нижче:" - -#~ msgctxt "$strStrucCSV" -#~ msgid "CSV" -#~ msgstr "CSV дані" - -#~ msgid "Delete the users and reload the privileges afterwards." -#~ msgstr "Усунути користувачів і перезавантажити права після цього." - -#~ msgid "" -#~ "This is the cleanest way, but reloading the privileges may take a while." -#~ msgstr "" -#~ "Це кращий спосіб, проте перезавантаження прав може потривати певний час." - -#~ msgid "has been altered." -#~ msgstr "була змінена." - -#~ msgid "" -#~ "The "deleted" users will still be able to access the server as " -#~ "usual until the privileges are reloaded." -#~ msgstr "" -#~ ""Усунуті" користувачі все ще матимуть доступ до сервера до тих " -#~ "пір, поки не будуть перезавантажені права." - -#~ msgid "Just delete the users from the privilege tables." -#~ msgstr "Щойно усунуто користувачів з таблиці прав." - -#~ msgid "" -#~ "Allows running stored procedures; has no effect in this MySQL version." -#~ msgstr "" -#~ "Дозволити виконання збережених процедур; Неефективно для цієї версії " -#~ "MySQL." - -#~ msgid "Process list" -#~ msgstr "Список процесів" - -#~ msgid "" -#~ "The users will still have the USAGE privilege until the privileges are " -#~ "reloaded." -#~ msgstr "" -#~ "Користувачі все ще будуть мати право КОРИСТУВАННЯ (USAGE) до тих пір, " -#~ "поки не будуть перезавантажені права." - -#, fuzzy -#~| msgid "Select All" -#~ msgctxt "Create SELECT * query" -#~ msgid "Select all" -#~ msgstr "Відмітити все" - -#, fuzzy -#~| msgid "Select All" -#~ msgctxt "Create SELECT ... query" -#~ msgid "Select" -#~ msgstr "Відмітити все" - -#, fuzzy -#~| msgid "Insert" -#~ msgctxt "Create INSERT query" -#~ msgid "Insert" -#~ msgstr "Вставити" - -#, fuzzy -#~| msgid "Update Query" -#~ msgctxt "Create UPDATE query" -#~ msgid "Update" -#~ msgstr "Доповнити запит" - -#, fuzzy -#~| msgid "Delete" -#~ msgctxt "Create DELETE query" -#~ msgid "Delete" -#~ msgstr "Видалити" - -#~ msgid "utf-8" -#~ msgstr "utf-8" From f5f49bab3b10042c4ef04746faec010cbc2260d1 Mon Sep 17 00:00:00 2001 From: zalex_ua Date: Tue, 27 Jul 2010 23:03:42 +0200 Subject: [PATCH 131/212] Translation update done using Pootle. --- po/uk.po | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/po/uk.po b/po/uk.po index 4ee0ad591..1e31ac70c 100644 --- a/po/uk.po +++ b/po/uk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-27 10:12+0200\n" -"PO-Revision-Date: 2010-07-27 22:11+0200\n" +"PO-Revision-Date: 2010-07-27 23:03+0200\n" "Last-Translator: \n" "Language-Team: ukrainian \n" "Language: uk\n" @@ -3784,7 +3784,6 @@ msgid "Length/Values" msgstr "Довжини/Значення*" #: libraries/tbl_properties.inc.php:104 -#, fuzzy #| msgid "" #| "If field type is \"enum\" or \"set\", please enter the values using this " #| "format: 'a','b','c'...
    If you ever need to put a backslash (\"\\\") " @@ -3796,10 +3795,10 @@ msgid "" "a single quote (\"'\") amongst those values, precede it with a backslash " "(for example '\\\\xyz' or 'a\\'b')." msgstr "" -"Для типів поля \"enum\" та \"set\", введіть значення згідно такого формату: " -"'a','b','c'...
    Якщо вам буде потрібно ввести зворотню косу риску (\"\\" -"\"\") або поодинокі лапки (\"'\") посеред цих значень, поставте перед ними " -"зворотню косу риску (наприклад, '\\\\xyz' чи 'a\\'b')." +"Для типів поля \"enum\" або \"set\", введіть значення в такому форматі: " +"'a','b','c'...
    Якщо вам буде потрібно ввести зворотню косу риску (\"\\\") " +"або поодинокі лапки (\"'\") посеред цих значень, поставте перед ними зворотню " +"косу риску (наприклад, '\\\\xyz' чи 'a\\'b')." #: libraries/tbl_properties.inc.php:105 msgid "" From 0bd52fbf3fb7164f8f0f5796c775ab7ccf6d556f Mon Sep 17 00:00:00 2001 From: zalex_ua Date: Tue, 27 Jul 2010 23:05:09 +0200 Subject: [PATCH 132/212] Translation update done using Pootle. --- po/uk.po | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/po/uk.po b/po/uk.po index 1e31ac70c..b4ceb1b20 100644 --- a/po/uk.po +++ b/po/uk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-27 10:12+0200\n" -"PO-Revision-Date: 2010-07-27 23:03+0200\n" +"PO-Revision-Date: 2010-07-27 23:05+0200\n" "Last-Translator: \n" "Language-Team: ukrainian \n" "Language: uk\n" @@ -3833,10 +3833,10 @@ msgid "" "quote (\"'\") amongst those values, precede it with a backslash (for example " "'\\\\xyz' or 'a\\'b')." msgstr "" -"Прошу вписати значення опцій перетворення у такому форматі: 'a', 100, " -"b,'c'...
    Якщо необхідно подати зворотній слеш (\"\\\") чи поодинокі " -"лапки (\"'\") у цих значеннях, поставте перед ними додатковий зворотній слеш " -"(наприклад '\\\\xyz' чи 'a\\'b')." +"Введіть значення опцій перетворення у такому форматі: 'a', 100, b,'c'...
    Якщо необхідно ввести зворотній слеш (\"\\\") чи поодинокі лапки (\"'\") у цих " +"значеннях, поставте перед ними додатковий зворотній слеш (наприклад '\\\\xyz' " +"чи 'a\\'b')." #: libraries/tbl_properties.inc.php:391 #, fuzzy From ed45c52cd25a552c1296e9c1296fbdbc50e482c4 Mon Sep 17 00:00:00 2001 From: zalex_ua Date: Tue, 27 Jul 2010 23:05:39 +0200 Subject: [PATCH 133/212] Translation update done using Pootle. --- po/uk.po | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/po/uk.po b/po/uk.po index b4ceb1b20..d74dbf237 100644 --- a/po/uk.po +++ b/po/uk.po @@ -3855,7 +3855,8 @@ msgid "" "No description is available for this transformation.
    Please ask the " "author what %s does." msgstr "" -"Немає опису для цього перетворення.
    Прошу питатися автора, що робить %s." +"Немає опису для цього перетворення.
    Прошу питатися автора, що робить %" +"s." #: libraries/tbl_properties.inc.php:724 server_engines.php:56 #: tbl_operations.php:352 From bbf2c8a9048a7f8e678986480cd116ddfad28e0b Mon Sep 17 00:00:00 2001 From: zalex_ua Date: Tue, 27 Jul 2010 23:07:14 +0200 Subject: [PATCH 134/212] Translation update done using Pootle. --- po/uk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/uk.po b/po/uk.po index d74dbf237..5278203a4 100644 --- a/po/uk.po +++ b/po/uk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-27 10:12+0200\n" -"PO-Revision-Date: 2010-07-27 23:05+0200\n" +"PO-Revision-Date: 2010-07-27 23:07+0200\n" "Last-Translator: \n" "Language-Team: ukrainian \n" "Language: uk\n" @@ -4433,7 +4433,7 @@ msgstr "Не вибрано бази даних." #: server_databases.php:60 #, php-format msgid "%s databases have been dropped successfully." -msgstr "%s баз(а\\и) даних успішно знищено." +msgstr "%s база(и) даних успішно знищено." #: server_databases.php:85 msgid "Databases statistics" From d0daef36815815f059e20f545d5d251d268c489a Mon Sep 17 00:00:00 2001 From: zalex_ua Date: Tue, 27 Jul 2010 23:12:26 +0200 Subject: [PATCH 135/212] Translation update done using Pootle. --- po/uk.po | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/po/uk.po b/po/uk.po index 5278203a4..54e577df7 100644 --- a/po/uk.po +++ b/po/uk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-27 10:12+0200\n" -"PO-Revision-Date: 2010-07-27 23:07+0200\n" +"PO-Revision-Date: 2010-07-27 23:12+0200\n" "Last-Translator: \n" "Language-Team: ukrainian \n" "Language: uk\n" @@ -3966,14 +3966,15 @@ msgstr "" "показано без переформатування (за замовчуванням: 1)" #: libraries/transformations/text_plain__formatted.inc.php:9 -#, fuzzy #| msgid "" #| "Displays the contents of the field as-is, without running it through " #| "htmlspecialchars(). That is, the field is assumed to contain valid HTML." msgid "" "Displays the contents of the column as-is, without running it through " "htmlspecialchars(). That is, the column is assumed to contain valid HTML." -msgstr "Зберігає початкове форматування поля. Не вносяться модифікації." +msgstr "" +"Відображує вміст поля як воно є, не пропускаючи його через функцію " +"htmlspecialchars(). Це значить що поле передбачає містити справжній HTML." #: libraries/transformations/text_plain__imagelink.inc.php:9 #, fuzzy From a8651417cedbf72e0b966c89a61bc9d87c95a153 Mon Sep 17 00:00:00 2001 From: zalex_ua Date: Tue, 27 Jul 2010 23:13:00 +0200 Subject: [PATCH 136/212] Translation update done using Pootle. --- po/uk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/uk.po b/po/uk.po index 54e577df7..3ee07122e 100644 --- a/po/uk.po +++ b/po/uk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-27 10:12+0200\n" -"PO-Revision-Date: 2010-07-27 23:12+0200\n" +"PO-Revision-Date: 2010-07-27 23:13+0200\n" "Last-Translator: \n" "Language-Team: ukrainian \n" "Language: uk\n" From d58ef3465b96c51eeeb172ec972eec45fc301704 Mon Sep 17 00:00:00 2001 From: zalex_ua Date: Tue, 27 Jul 2010 23:14:26 +0200 Subject: [PATCH 137/212] Translation update done using Pootle. --- po/uk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/uk.po b/po/uk.po index 3ee07122e..053097336 100644 --- a/po/uk.po +++ b/po/uk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-27 10:12+0200\n" -"PO-Revision-Date: 2010-07-27 23:13+0200\n" +"PO-Revision-Date: 2010-07-27 23:14+0200\n" "Last-Translator: \n" "Language-Team: ukrainian \n" "Language: uk\n" @@ -227,7 +227,7 @@ msgstr "" #: db_operations.php:231 #, php-format msgid "Database %s has been renamed to %s" -msgstr "" +msgstr "Базу даних %s перейменовано в %s" #: db_operations.php:235 #, php-format From ea47fdeb2cab95d4a872e38d6966d763b6917125 Mon Sep 17 00:00:00 2001 From: zalex_ua Date: Tue, 27 Jul 2010 23:14:37 +0200 Subject: [PATCH 138/212] Translation update done using Pootle. --- po/uk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/uk.po b/po/uk.po index 053097336..e77a1e04a 100644 --- a/po/uk.po +++ b/po/uk.po @@ -232,7 +232,7 @@ msgstr "Базу даних %s перейменовано в %s" #: db_operations.php:235 #, php-format msgid "Database %s has been copied to %s" -msgstr "" +msgstr "Базу даних %s скопійовано в %s" #: db_operations.php:347 msgid "Rename database to" From 601f7a1dbf7861d9c67191284cdb1765a89e9014 Mon Sep 17 00:00:00 2001 From: zalex_ua Date: Tue, 27 Jul 2010 23:14:46 +0200 Subject: [PATCH 139/212] Translation update done using Pootle. --- po/uk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/uk.po b/po/uk.po index e77a1e04a..b20a005d8 100644 --- a/po/uk.po +++ b/po/uk.po @@ -236,7 +236,7 @@ msgstr "Базу даних %s скопійовано в %s" #: db_operations.php:347 msgid "Rename database to" -msgstr "" +msgstr "Перейменувати базу даних в" #: db_operations.php:352 server_processlist.php:56 msgid "Command" From cbd4e4ae13109176046c1c9f552de065967a5c13 Mon Sep 17 00:00:00 2001 From: zalex_ua Date: Tue, 27 Jul 2010 23:14:53 +0200 Subject: [PATCH 140/212] Translation update done using Pootle. --- po/uk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/uk.po b/po/uk.po index b20a005d8..8bc40a9b7 100644 --- a/po/uk.po +++ b/po/uk.po @@ -244,7 +244,7 @@ msgstr "Команда" #: db_operations.php:364 tbl_change.php:1039 msgid "and then" -msgstr "" +msgstr "і потім" #: db_operations.php:379 #, fuzzy From 6108813d11689cdab05d73a53f774fcbc4574cea Mon Sep 17 00:00:00 2001 From: zalex_ua Date: Tue, 27 Jul 2010 23:15:01 +0200 Subject: [PATCH 141/212] Translation update done using Pootle. --- po/uk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/uk.po b/po/uk.po index 8bc40a9b7..67ddbd96e 100644 --- a/po/uk.po +++ b/po/uk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-27 10:12+0200\n" -"PO-Revision-Date: 2010-07-27 23:14+0200\n" +"PO-Revision-Date: 2010-07-27 23:15+0200\n" "Last-Translator: \n" "Language-Team: ukrainian \n" "Language: uk\n" @@ -264,7 +264,7 @@ msgstr "Знищити базу даних (DROP)" #: db_operations.php:424 msgid "Copy database to" -msgstr "" +msgstr "Копіювати базу даних в" #: db_operations.php:431 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" From ee9edb358c261d0ef017a595a1044d04bb07197f Mon Sep 17 00:00:00 2001 From: zalex_ua Date: Tue, 27 Jul 2010 23:15:41 +0200 Subject: [PATCH 142/212] Translation update done using Pootle. --- po/uk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/uk.po b/po/uk.po index 67ddbd96e..5d0dea52d 100644 --- a/po/uk.po +++ b/po/uk.po @@ -287,7 +287,7 @@ msgstr "" #: libraries/export/sql.php:81 tbl_operations.php:533 #, php-format msgid "Add %s" -msgstr "" +msgstr "Додати %s" #: db_operations.php:448 libraries/export/sql.php:77 tbl_operations.php:296 #: tbl_operations.php:535 From 669fe95226b1c3e6c841ef2bbfd881c4d81e325e Mon Sep 17 00:00:00 2001 From: zalex_ua Date: Tue, 27 Jul 2010 23:15:54 +0200 Subject: [PATCH 143/212] Translation update done using Pootle. --- po/uk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/uk.po b/po/uk.po index 5d0dea52d..8f955fef0 100644 --- a/po/uk.po +++ b/po/uk.po @@ -93,7 +93,7 @@ msgstr "" #: bs_disp_as_mime_type.php:35 msgid "Failed to fetch headers" -msgstr "" +msgstr "Отримання заголовків невдале" #: bs_disp_as_mime_type.php:41 msgid "Failed to open remote URL" From 8b6addb55db803febbcfe4bfc1ffe7030e3944e2 Mon Sep 17 00:00:00 2001 From: zalex_ua Date: Tue, 27 Jul 2010 23:16:02 +0200 Subject: [PATCH 144/212] Translation update done using Pootle. --- po/uk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/uk.po b/po/uk.po index 8f955fef0..9fb35192c 100644 --- a/po/uk.po +++ b/po/uk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-27 10:12+0200\n" -"PO-Revision-Date: 2010-07-27 23:15+0200\n" +"PO-Revision-Date: 2010-07-27 23:16+0200\n" "Last-Translator: \n" "Language-Team: ukrainian \n" "Language: uk\n" @@ -222,7 +222,7 @@ msgstr "Зняти всі відмітки" #: db_operations.php:33 tbl_create.php:47 msgid "The database name is empty!" -msgstr "" +msgstr "Ім'я бази даних порожнє!" #: db_operations.php:231 #, php-format From dcf1ef14dc13c8895d5b6409639eeb1cb80ee57e Mon Sep 17 00:00:00 2001 From: zalex_ua Date: Tue, 27 Jul 2010 23:19:48 +0200 Subject: [PATCH 145/212] Translation update done using Pootle. --- po/uk.po | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/po/uk.po b/po/uk.po index 9fb35192c..9ff56e359 100644 --- a/po/uk.po +++ b/po/uk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-27 10:12+0200\n" -"PO-Revision-Date: 2010-07-27 23:16+0200\n" +"PO-Revision-Date: 2010-07-27 23:19+0200\n" "Last-Translator: \n" "Language-Team: ukrainian \n" "Language: uk\n" @@ -33,6 +33,9 @@ msgid "" "parent window, or your browser's security settings are configured to block " "cross-window updates." msgstr "" +"Активне вікно оглядача неможливо оновити. Можливо ви закрили батьківське " +"вікно, або налаштування безпеки Вашого оглядача блокують між-віконні " +"оновлення." #: browse_foreigners.php:148 db_structure.php:77 db_structure.php:78 #: db_structure.php:89 db_structure.php:91 db_structure.php:102 From e9675ea959025c40456b68f0a820ef393f2d1bd7 Mon Sep 17 00:00:00 2001 From: zalex_ua Date: Tue, 27 Jul 2010 23:20:13 +0200 Subject: [PATCH 146/212] Translation update done using Pootle. --- po/uk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/uk.po b/po/uk.po index 9ff56e359..db0416bd1 100644 --- a/po/uk.po +++ b/po/uk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-27 10:12+0200\n" -"PO-Revision-Date: 2010-07-27 23:19+0200\n" +"PO-Revision-Date: 2010-07-27 23:20+0200\n" "Last-Translator: \n" "Language-Team: ukrainian \n" "Language: uk\n" @@ -88,7 +88,7 @@ msgstr "Опис" #: browse_foreigners.php:245 browse_foreigners.php:254 #: browse_foreigners.php:266 browse_foreigners.php:274 msgid "Use this value" -msgstr "" +msgstr "Використовувати це значення" #: bs_disp_as_mime_type.php:29 bs_play_media.php:35 msgid "No blob streaming server configured!" From ba27b52e6c267b577d6d88559c839592c075a4bd Mon Sep 17 00:00:00 2001 From: zalex_ua Date: Tue, 27 Jul 2010 23:21:18 +0200 Subject: [PATCH 147/212] Translation update done using Pootle. --- po/uk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/uk.po b/po/uk.po index db0416bd1..99fbbe80b 100644 --- a/po/uk.po +++ b/po/uk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-27 10:12+0200\n" -"PO-Revision-Date: 2010-07-27 23:20+0200\n" +"PO-Revision-Date: 2010-07-27 23:21+0200\n" "Last-Translator: \n" "Language-Team: ukrainian \n" "Language: uk\n" @@ -100,7 +100,7 @@ msgstr "Отримання заголовків невдале" #: bs_disp_as_mime_type.php:41 msgid "Failed to open remote URL" -msgstr "" +msgstr "Відкривання зовнішнього посилання URL невдале" #: db_create.php:44 #, php-format From bc0c71e57b5c1fac170d7e38709876631bb5bfdd Mon Sep 17 00:00:00 2001 From: zalex_ua Date: Tue, 27 Jul 2010 23:22:36 +0200 Subject: [PATCH 148/212] Translation update done using Pootle. --- po/uk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/uk.po b/po/uk.po index 99fbbe80b..073218f67 100644 --- a/po/uk.po +++ b/po/uk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-27 10:12+0200\n" -"PO-Revision-Date: 2010-07-27 23:21+0200\n" +"PO-Revision-Date: 2010-07-27 23:22+0200\n" "Last-Translator: \n" "Language-Team: ukrainian \n" "Language: uk\n" @@ -105,7 +105,7 @@ msgstr "Відкривання зовнішнього посилання URL н #: db_create.php:44 #, php-format msgid "Database %1$s has been created." -msgstr "" +msgstr "Базу даних %1$ створено." #: db_datadict.php:48 db_operations.php:313 msgid "Database comment: " From f254a8ab6382e01be105fc628b9d59dbe13b330c Mon Sep 17 00:00:00 2001 From: zalex_ua Date: Tue, 27 Jul 2010 23:28:24 +0200 Subject: [PATCH 149/212] Translation update done using Pootle. --- po/uk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/uk.po b/po/uk.po index 073218f67..0636fcf70 100644 --- a/po/uk.po +++ b/po/uk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-27 10:12+0200\n" -"PO-Revision-Date: 2010-07-27 23:22+0200\n" +"PO-Revision-Date: 2010-07-27 23:28+0200\n" "Last-Translator: \n" "Language-Team: ukrainian \n" "Language: uk\n" @@ -303,7 +303,7 @@ msgstr "" #: db_operations.php:465 msgid "Switch to copied database" -msgstr "" +msgstr "Перейти до скопійованої бази даних" #: db_operations.php:485 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 From 8f9ce1ee2bf83cca140dd9c63cf3335b61613760 Mon Sep 17 00:00:00 2001 From: zalex_ua Date: Tue, 27 Jul 2010 23:32:08 +0200 Subject: [PATCH 150/212] Translation update done using Pootle. --- po/uk.po | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/po/uk.po b/po/uk.po index 0636fcf70..e71d701f8 100644 --- a/po/uk.po +++ b/po/uk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-27 10:12+0200\n" -"PO-Revision-Date: 2010-07-27 23:28+0200\n" +"PO-Revision-Date: 2010-07-27 23:32+0200\n" "Last-Translator: \n" "Language-Team: ukrainian \n" "Language: uk\n" @@ -374,12 +374,13 @@ msgid "Last check" msgstr "Перевірено" #: db_printview.php:220 db_structure.php:465 -#, fuzzy, php-format +#, php-format #| msgid "%s table(s)" msgid "%s table" msgid_plural "%s tables" -msgstr[0] "%s таблиц(і)" -msgstr[1] "%s таблиц(і)" +msgstr[0] "%s таблиця" +msgstr[1] "%s таблиці" +msgstr[2] "%s таблиць" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 #: libraries/display_tbl.lib.php:1939 libraries/sql_query_form.lib.php:136 From cc0c59edb91ffba18b484ba8104d12fed09f624a Mon Sep 17 00:00:00 2001 From: zalex_ua Date: Tue, 27 Jul 2010 23:32:44 +0200 Subject: [PATCH 151/212] Translation update done using Pootle. --- po/uk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/uk.po b/po/uk.po index e71d701f8..a28d03bd4 100644 --- a/po/uk.po +++ b/po/uk.po @@ -445,10 +445,9 @@ msgid "Modify" msgstr "Змінити" #: db_qbe.php:580 -#, fuzzy #| msgid "Add/Delete Criteria Row" msgid "Add/Delete criteria rows" -msgstr "Додати/забрати рядок критерію" +msgstr "Додати/Прибрати рядки критеріїв" #: db_qbe.php:592 #, fuzzy From 5aaebfbd5bd41528bd45e90badce44e9f89d8424 Mon Sep 17 00:00:00 2001 From: zalex_ua Date: Tue, 27 Jul 2010 23:33:07 +0200 Subject: [PATCH 152/212] Translation update done using Pootle. --- po/uk.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/uk.po b/po/uk.po index a28d03bd4..bb9d55f96 100644 --- a/po/uk.po +++ b/po/uk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-27 10:12+0200\n" -"PO-Revision-Date: 2010-07-27 23:32+0200\n" +"PO-Revision-Date: 2010-07-27 23:33+0200\n" "Last-Translator: \n" "Language-Team: ukrainian \n" "Language: uk\n" @@ -450,10 +450,9 @@ msgid "Add/Delete criteria rows" msgstr "Додати/Прибрати рядки критеріїв" #: db_qbe.php:592 -#, fuzzy #| msgid "Add/Delete Field Columns" msgid "Add/Delete columns" -msgstr "Додати/забрати колонку критерію" +msgstr "Додати/Прибрати колонки" #: db_qbe.php:605 db_qbe.php:630 msgid "Update Query" From b345741bc3751e799be8acdb5e689a543113eaef Mon Sep 17 00:00:00 2001 From: zalex_ua Date: Tue, 27 Jul 2010 23:34:04 +0200 Subject: [PATCH 153/212] Translation update done using Pootle. --- po/uk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/uk.po b/po/uk.po index bb9d55f96..035e6045d 100644 --- a/po/uk.po +++ b/po/uk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-27 10:12+0200\n" -"PO-Revision-Date: 2010-07-27 23:33+0200\n" +"PO-Revision-Date: 2010-07-27 23:34+0200\n" "Last-Translator: \n" "Language-Team: ukrainian \n" "Language: uk\n" From 6ed502f3ae5fcb6445fc82cb595ee781ac43ae70 Mon Sep 17 00:00:00 2001 From: zalex_ua Date: Tue, 27 Jul 2010 23:35:16 +0200 Subject: [PATCH 154/212] Translation update done using Pootle. --- po/uk.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/uk.po b/po/uk.po index 035e6045d..f1c4140dc 100644 --- a/po/uk.po +++ b/po/uk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-27 10:12+0200\n" -"PO-Revision-Date: 2010-07-27 23:34+0200\n" +"PO-Revision-Date: 2010-07-27 23:35+0200\n" "Last-Translator: \n" "Language-Team: ukrainian \n" "Language: uk\n" @@ -3877,10 +3877,10 @@ msgid "Save" msgstr "Зберегти" #: libraries/tbl_properties.inc.php:778 tbl_structure.php:539 -#, fuzzy, php-format +#, php-format #| msgid "Add into comments" msgid "Add %s column(s)" -msgstr "Додати коментар" +msgstr "Додати %s стовпчик(ів)" #: libraries/tbl_properties.inc.php:782 tbl_structure.php:533 #, fuzzy From 616799c2afb7b8bac3a734816f898fc7324540ec Mon Sep 17 00:00:00 2001 From: zalex_ua Date: Tue, 27 Jul 2010 23:35:52 +0200 Subject: [PATCH 155/212] Translation update done using Pootle. --- po/uk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/uk.po b/po/uk.po index f1c4140dc..35147c9f0 100644 --- a/po/uk.po +++ b/po/uk.po @@ -4756,9 +4756,9 @@ msgid "You have added a new user." msgstr "Було додано нового користувача." #: server_privileges.php:1184 -#, fuzzy, php-format +#, php-format msgid "You have updated the privileges for %s." -msgstr "Було змінено привілеї для" +msgstr "Ви оновили привілеї для %s." #: server_privileges.php:1208 #, php-format From 807144f2fec3de1cbe1618565544748c8772f5f0 Mon Sep 17 00:00:00 2001 From: zalex_ua Date: Tue, 27 Jul 2010 23:36:21 +0200 Subject: [PATCH 156/212] Translation update done using Pootle. --- po/uk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/uk.po b/po/uk.po index 35147c9f0..b7e3b5747 100644 --- a/po/uk.po +++ b/po/uk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-27 10:12+0200\n" -"PO-Revision-Date: 2010-07-27 23:35+0200\n" +"PO-Revision-Date: 2010-07-27 23:36+0200\n" "Last-Translator: \n" "Language-Team: ukrainian \n" "Language: uk\n" From ddafb2ce847415ba4fcf960ac6b788ea608dd626 Mon Sep 17 00:00:00 2001 From: zalex_ua Date: Tue, 27 Jul 2010 23:37:12 +0200 Subject: [PATCH 157/212] Translation update done using Pootle. --- po/uk.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/uk.po b/po/uk.po index b7e3b5747..73d64bbcf 100644 --- a/po/uk.po +++ b/po/uk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-27 10:12+0200\n" -"PO-Revision-Date: 2010-07-27 23:36+0200\n" +"PO-Revision-Date: 2010-07-27 23:37+0200\n" "Last-Translator: \n" "Language-Team: ukrainian \n" "Language: uk\n" @@ -124,10 +124,9 @@ msgstr "Коментар до таблиці" #: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 #: tbl_select.php:132 tbl_structure.php:175 tbl_tracking.php:267 #: tbl_tracking.php:318 -#, fuzzy #| msgid "Column names" msgid "Column" -msgstr "Назви колонок" +msgstr "Стовпчик" #: db_datadict.php:174 db_printview.php:104 libraries/Index.class.php:442 #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 From 6c971364d829a5da05a17b54c6198f78381e6c34 Mon Sep 17 00:00:00 2001 From: zalex_ua Date: Tue, 27 Jul 2010 23:37:36 +0200 Subject: [PATCH 158/212] Translation update done using Pootle. --- po/uk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/uk.po b/po/uk.po index 73d64bbcf..a2d19f5d6 100644 --- a/po/uk.po +++ b/po/uk.po @@ -249,10 +249,9 @@ msgid "and then" msgstr "і потім" #: db_operations.php:379 -#, fuzzy #| msgid "No databases" msgid "Remove database" -msgstr "БД відсутні" +msgstr "Видалити базу даних" #: db_operations.php:391 #, php-format From 2e412dd61c6eba0cc1ca9b80096c960a9b70ca6e Mon Sep 17 00:00:00 2001 From: Olexiy Zagorskyi Date: Tue, 27 Jul 2010 23:40:52 +0200 Subject: [PATCH 159/212] Translation update done using Pootle. --- po/uk.po | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/po/uk.po b/po/uk.po index a2d19f5d6..fffa1005f 100644 --- a/po/uk.po +++ b/po/uk.po @@ -4,8 +4,8 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-27 10:12+0200\n" -"PO-Revision-Date: 2010-07-27 23:37+0200\n" -"Last-Translator: \n" +"PO-Revision-Date: 2010-07-27 23:40+0200\n" +"Last-Translator: Olexiy Zagorskyi \n" "Language-Team: ukrainian \n" "Language: uk\n" "MIME-Version: 1.0\n" @@ -522,12 +522,13 @@ msgid "Delete" msgstr "Видалити" #: db_search.php:267 -#, fuzzy, php-format +#, php-format #| msgid "Total: %s match(es)" msgid "Total: %s match" msgid_plural "Total: %s matches" -msgstr[0] "Разом: %s співпадіння" -msgstr[1] "Разом: %s співпадіння" +msgstr[0] "Всього: %s співпадіння" +msgstr[1] "Всього: %s співпадінь" +msgstr[2] "Всього: %s співпадінь" #: db_search.php:281 msgid "Search in database" From 39532222ae80908dcbdc9d4425c0f503d3ee99a5 Mon Sep 17 00:00:00 2001 From: Olexiy Zagorskyi Date: Tue, 27 Jul 2010 23:41:03 +0200 Subject: [PATCH 160/212] Translation update done using Pootle. --- po/uk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/uk.po b/po/uk.po index fffa1005f..8eef79dcf 100644 --- a/po/uk.po +++ b/po/uk.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-27 10:12+0200\n" -"PO-Revision-Date: 2010-07-27 23:40+0200\n" +"PO-Revision-Date: 2010-07-27 23:41+0200\n" "Last-Translator: Olexiy Zagorskyi \n" "Language-Team: ukrainian \n" "Language: uk\n" From 262dcd53e81a35b5bd76fb6e429aa1fdd2baae79 Mon Sep 17 00:00:00 2001 From: Olexiy Zagorskyi Date: Tue, 27 Jul 2010 23:41:35 +0200 Subject: [PATCH 161/212] Translation update done using Pootle. --- po/uk.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/uk.po b/po/uk.po index 8eef79dcf..8847afe99 100644 --- a/po/uk.po +++ b/po/uk.po @@ -551,10 +551,9 @@ msgid "Inside table(s):" msgstr "Всередині таблиць:" #: db_search.php:337 -#, fuzzy #| msgid "Inside table(s):" msgid "Inside column:" -msgstr "Всередині таблиць:" +msgstr "Всередині стовпчика:" #: db_structure.php:79 db_structure.php:80 db_structure.php:92 #: db_structure.php:93 db_structure.php:105 db_structure.php:106 From 4fd989bb5979147b01529ec6c9da11726c7b15a3 Mon Sep 17 00:00:00 2001 From: ablat7ihlim Date: Wed, 28 Jul 2010 04:09:44 +0200 Subject: [PATCH 162/212] Translation update done using Pootle. --- po/ug.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/ug.po b/po/ug.po index 6cdc2c3b5..dfc64c4e7 100644 --- a/po/ug.po +++ b/po/ug.po @@ -7,8 +7,8 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-27 10:12+0200\n" -"PO-Revision-Date: 2010-07-27 12:45+0200\n" -"Last-Translator: \n" +"PO-Revision-Date: 2010-07-28 04:09+0200\n" +"Last-Translator: \n" "Language-Team: Uyghur \n" "Language: ug\n" "MIME-Version: 1.0\n" @@ -1705,7 +1705,7 @@ msgstr " ئىچكى بىرلىشىش" #: libraries/common.lib.php:1343 libraries/common.lib.php:1358 msgid "Profiling" -msgstr "" +msgstr "ئاساسىي مەزمۇن" #: libraries/common.lib.php:1362 libraries/tbl_triggers.lib.php:27 #: server_processlist.php:57 From 7993b773427b9ef4a686fd7c03d375eaf313fb97 Mon Sep 17 00:00:00 2001 From: ablat7ihlim Date: Wed, 28 Jul 2010 04:10:06 +0200 Subject: [PATCH 163/212] Translation update done using Pootle. --- po/ug.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ug.po b/po/ug.po index dfc64c4e7..0c7424d24 100644 --- a/po/ug.po +++ b/po/ug.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-27 10:12+0200\n" -"PO-Revision-Date: 2010-07-28 04:09+0200\n" +"PO-Revision-Date: 2010-07-28 04:10+0200\n" "Last-Translator: \n" "Language-Team: Uyghur \n" "Language: ug\n" @@ -1727,7 +1727,7 @@ msgstr "MB" #: libraries/common.lib.php:1390 msgid "GiB" -msgstr "" +msgstr "GB" #: libraries/common.lib.php:1390 msgid "TiB" From d8a64708863881e346c10502a9da92b861404d08 Mon Sep 17 00:00:00 2001 From: ablat7ihlim Date: Wed, 28 Jul 2010 04:10:19 +0200 Subject: [PATCH 164/212] Translation update done using Pootle. --- po/ug.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/ug.po b/po/ug.po index 0c7424d24..6f3fee4d7 100644 --- a/po/ug.po +++ b/po/ug.po @@ -1731,7 +1731,7 @@ msgstr "GB" #: libraries/common.lib.php:1390 msgid "TiB" -msgstr "" +msgstr "TB" #: libraries/common.lib.php:1390 msgid "PiB" From e01c6e16c385610307763560f6aeaef9fe6506a4 Mon Sep 17 00:00:00 2001 From: gheni Date: Wed, 28 Jul 2010 04:15:20 +0200 Subject: [PATCH 165/212] Translation update done using Pootle. --- po/ug.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/ug.po b/po/ug.po index 6f3fee4d7..d92a3a369 100644 --- a/po/ug.po +++ b/po/ug.po @@ -7,8 +7,8 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-27 10:12+0200\n" -"PO-Revision-Date: 2010-07-28 04:10+0200\n" -"Last-Translator: \n" +"PO-Revision-Date: 2010-07-28 04:15+0200\n" +"Last-Translator: \n" "Language-Team: Uyghur \n" "Language: ug\n" "MIME-Version: 1.0\n" @@ -1735,7 +1735,7 @@ msgstr "TB" #: libraries/common.lib.php:1390 msgid "PiB" -msgstr "" +msgstr "PB" #: libraries/common.lib.php:1390 msgid "EiB" From d974fb93c52bf77c1a1dc81d9bbcba765200db3c Mon Sep 17 00:00:00 2001 From: gheni Date: Wed, 28 Jul 2010 04:15:31 +0200 Subject: [PATCH 166/212] Translation update done using Pootle. --- po/ug.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/ug.po b/po/ug.po index d92a3a369..50a39c9fe 100644 --- a/po/ug.po +++ b/po/ug.po @@ -1739,7 +1739,7 @@ msgstr "PB" #: libraries/common.lib.php:1390 msgid "EiB" -msgstr "" +msgstr "EB" #. l10n: Thousands separator #: libraries/common.lib.php:1428 From a51d6b4d05f8e18a7b4d3c26b92ae32c5c88559a Mon Sep 17 00:00:00 2001 From: gheni Date: Wed, 28 Jul 2010 04:15:43 +0200 Subject: [PATCH 167/212] Translation update done using Pootle. --- po/ug.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/ug.po b/po/ug.po index 50a39c9fe..ff1d80b12 100644 --- a/po/ug.po +++ b/po/ug.po @@ -1744,7 +1744,7 @@ msgstr "EB" #. l10n: Thousands separator #: libraries/common.lib.php:1428 msgid "," -msgstr "" +msgstr "," #. l10n: Decimal separator #: libraries/common.lib.php:1430 From 3fb28dcaa1101e11a46aa0c4b2ccf90c9a3f9fa4 Mon Sep 17 00:00:00 2001 From: gheni Date: Wed, 28 Jul 2010 04:15:52 +0200 Subject: [PATCH 168/212] Translation update done using Pootle. --- po/ug.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/ug.po b/po/ug.po index ff1d80b12..049577936 100644 --- a/po/ug.po +++ b/po/ug.po @@ -1749,7 +1749,7 @@ msgstr "," #. l10n: Decimal separator #: libraries/common.lib.php:1430 msgid "." -msgstr "" +msgstr "." #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string #: libraries/common.lib.php:1607 From cf85ae9333796990dd8485da44e33bb5dd82681d Mon Sep 17 00:00:00 2001 From: ablat7ihlim Date: Wed, 28 Jul 2010 04:16:19 +0200 Subject: [PATCH 169/212] Translation update done using Pootle. --- po/ug.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/ug.po b/po/ug.po index 049577936..82587d50c 100644 --- a/po/ug.po +++ b/po/ug.po @@ -7,8 +7,8 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-27 10:12+0200\n" -"PO-Revision-Date: 2010-07-28 04:15+0200\n" -"Last-Translator: \n" +"PO-Revision-Date: 2010-07-28 04:16+0200\n" +"Last-Translator: \n" "Language-Team: Uyghur \n" "Language: ug\n" "MIME-Version: 1.0\n" @@ -1735,7 +1735,7 @@ msgstr "TB" #: libraries/common.lib.php:1390 msgid "PiB" -msgstr "PB" +msgstr "PiB" #: libraries/common.lib.php:1390 msgid "EiB" From abadf5d2158f5bea8e44d3687020ae66c2b7b107 Mon Sep 17 00:00:00 2001 From: gheni Date: Wed, 28 Jul 2010 04:17:12 +0200 Subject: [PATCH 170/212] Translation update done using Pootle. --- po/ug.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/ug.po b/po/ug.po index 82587d50c..951051cc1 100644 --- a/po/ug.po +++ b/po/ug.po @@ -7,8 +7,8 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-27 10:12+0200\n" -"PO-Revision-Date: 2010-07-28 04:16+0200\n" -"Last-Translator: \n" +"PO-Revision-Date: 2010-07-28 04:17+0200\n" +"Last-Translator: \n" "Language-Team: Uyghur \n" "Language: ug\n" "MIME-Version: 1.0\n" @@ -1755,7 +1755,7 @@ msgstr "." #: libraries/common.lib.php:1607 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" -msgstr "" +msgstr "%d %B %Y, %H:%M:%S" #: libraries/common.lib.php:1913 #, php-format From 51291d7a11018b65f9181465152e0aef07a6c828 Mon Sep 17 00:00:00 2001 From: gheni Date: Wed, 28 Jul 2010 04:18:32 +0200 Subject: [PATCH 171/212] Translation update done using Pootle. --- po/ug.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ug.po b/po/ug.po index 951051cc1..a41bc7c40 100644 --- a/po/ug.po +++ b/po/ug.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-27 10:12+0200\n" -"PO-Revision-Date: 2010-07-28 04:17+0200\n" +"PO-Revision-Date: 2010-07-28 04:18+0200\n" "Last-Translator: \n" "Language-Team: Uyghur \n" "Language: ug\n" @@ -1760,7 +1760,7 @@ msgstr "%d %B %Y, %H:%M:%S" #: libraries/common.lib.php:1913 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" -msgstr "" +msgstr "%s كۈن, %s سائەت, %s مىنىۇ ۋە %s سېكوند" #: libraries/common.lib.php:2327 libraries/common.lib.php:2330 #: libraries/display_tbl.lib.php:288 server_status.php:718 From 9cdb7d97887cb6f255431843393c1e2710f6550f Mon Sep 17 00:00:00 2001 From: gheni Date: Wed, 28 Jul 2010 04:18:59 +0200 Subject: [PATCH 172/212] Translation update done using Pootle. --- po/ug.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/ug.po b/po/ug.po index a41bc7c40..eabc2d769 100644 --- a/po/ug.po +++ b/po/ug.po @@ -1765,7 +1765,7 @@ msgstr "%s كۈن, %s سائەت, %s مىنىۇ ۋە %s سېكوند" #: libraries/common.lib.php:2327 libraries/common.lib.php:2330 #: libraries/display_tbl.lib.php:288 server_status.php:718 msgid "Begin" -msgstr "" +msgstr "باشلا" #: libraries/common.lib.php:2328 libraries/common.lib.php:2331 #: libraries/display_tbl.lib.php:289 server_binlog.php:154 From ad6414660b1bb59b8e7b22aeb4b0fc881ade327f Mon Sep 17 00:00:00 2001 From: gheni Date: Wed, 28 Jul 2010 04:19:21 +0200 Subject: [PATCH 173/212] Translation update done using Pootle. --- po/ug.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ug.po b/po/ug.po index eabc2d769..788c0d499 100644 --- a/po/ug.po +++ b/po/ug.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-27 10:12+0200\n" -"PO-Revision-Date: 2010-07-28 04:18+0200\n" +"PO-Revision-Date: 2010-07-28 04:19+0200\n" "Last-Translator: \n" "Language-Team: Uyghur \n" "Language: ug\n" @@ -1771,7 +1771,7 @@ msgstr "باشلا" #: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" -msgstr "" +msgstr "ئالدىنقىسى" #: libraries/common.lib.php:2359 libraries/common.lib.php:2362 #: libraries/display_tbl.lib.php:351 From b7f1ea088610211afd22ef6142fa6637ca7a84a6 Mon Sep 17 00:00:00 2001 From: ablat7ihlim Date: Wed, 28 Jul 2010 04:19:35 +0200 Subject: [PATCH 174/212] Translation update done using Pootle. --- po/ug.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ug.po b/po/ug.po index 788c0d499..301a7abb6 100644 --- a/po/ug.po +++ b/po/ug.po @@ -8,7 +8,7 @@ msgstr "" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-27 10:12+0200\n" "PO-Revision-Date: 2010-07-28 04:19+0200\n" -"Last-Translator: \n" +"Last-Translator: \n" "Language-Team: Uyghur \n" "Language: ug\n" "MIME-Version: 1.0\n" @@ -1755,7 +1755,7 @@ msgstr "." #: libraries/common.lib.php:1607 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" -msgstr "%d %B %Y, %H:%M:%S" +msgstr "%يىل %ئاي %كۈن %سائەت:%مىنۇت" #: libraries/common.lib.php:1913 #, php-format From 8ceeb462c3cfaff9d08f9c30f601e48f614427d0 Mon Sep 17 00:00:00 2001 From: gheni Date: Wed, 28 Jul 2010 04:19:55 +0200 Subject: [PATCH 175/212] Translation update done using Pootle. --- po/ug.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ug.po b/po/ug.po index 301a7abb6..da02c76a5 100644 --- a/po/ug.po +++ b/po/ug.po @@ -8,7 +8,7 @@ msgstr "" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-27 10:12+0200\n" "PO-Revision-Date: 2010-07-28 04:19+0200\n" -"Last-Translator: \n" +"Last-Translator: \n" "Language-Team: Uyghur \n" "Language: ug\n" "MIME-Version: 1.0\n" @@ -1776,7 +1776,7 @@ msgstr "ئالدىنقىسى" #: libraries/common.lib.php:2359 libraries/common.lib.php:2362 #: libraries/display_tbl.lib.php:351 msgid "End" -msgstr "" +msgstr "تۈگدى" #: libraries/common.lib.php:2434 #, php-format From e7aa82520f0143a8b27b74d774bd308dd0f2c2eb Mon Sep 17 00:00:00 2001 From: ablat7ihlim Date: Wed, 28 Jul 2010 04:20:20 +0200 Subject: [PATCH 176/212] Translation update done using Pootle. --- po/ug.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/ug.po b/po/ug.po index da02c76a5..1659c4cc8 100644 --- a/po/ug.po +++ b/po/ug.po @@ -7,8 +7,8 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-27 10:12+0200\n" -"PO-Revision-Date: 2010-07-28 04:19+0200\n" -"Last-Translator: \n" +"PO-Revision-Date: 2010-07-28 04:20+0200\n" +"Last-Translator: \n" "Language-Team: Uyghur \n" "Language: ug\n" "MIME-Version: 1.0\n" @@ -1776,7 +1776,7 @@ msgstr "ئالدىنقىسى" #: libraries/common.lib.php:2359 libraries/common.lib.php:2362 #: libraries/display_tbl.lib.php:351 msgid "End" -msgstr "تۈگدى" +msgstr "ئاخىرقىسى" #: libraries/common.lib.php:2434 #, php-format From bcdd4a89bb1fb491cef66b18a585995650bd5e3b Mon Sep 17 00:00:00 2001 From: gheni Date: Wed, 28 Jul 2010 04:21:24 +0200 Subject: [PATCH 177/212] Translation update done using Pootle. --- po/ug.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/ug.po b/po/ug.po index 1659c4cc8..9c45d2383 100644 --- a/po/ug.po +++ b/po/ug.po @@ -7,8 +7,8 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-27 10:12+0200\n" -"PO-Revision-Date: 2010-07-28 04:20+0200\n" -"Last-Translator: \n" +"PO-Revision-Date: 2010-07-28 04:21+0200\n" +"Last-Translator: \n" "Language-Team: Uyghur \n" "Language: ug\n" "MIME-Version: 1.0\n" @@ -1781,7 +1781,7 @@ msgstr "ئاخىرقىسى" #: libraries/common.lib.php:2434 #, php-format msgid "Jump to database "%s"." -msgstr "" +msgstr "ساندان "%s" .غا ئۆتۈش" #: libraries/common.lib.php:2453 #, php-format From 82dbf5d91a921f02b26eae14106925782b2e9ad7 Mon Sep 17 00:00:00 2001 From: ablat7ihlim Date: Wed, 28 Jul 2010 04:22:23 +0200 Subject: [PATCH 178/212] Translation update done using Pootle. --- po/ug.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/ug.po b/po/ug.po index 9c45d2383..a4e00dd90 100644 --- a/po/ug.po +++ b/po/ug.po @@ -7,8 +7,8 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-27 10:12+0200\n" -"PO-Revision-Date: 2010-07-28 04:21+0200\n" -"Last-Translator: \n" +"PO-Revision-Date: 2010-07-28 04:22+0200\n" +"Last-Translator: \n" "Language-Team: Uyghur \n" "Language: ug\n" "MIME-Version: 1.0\n" @@ -1815,7 +1815,7 @@ msgstr "" #: libraries/display_create_table.lib.php:52 libraries/tbl_triggers.lib.php:26 #: setup/frames/index.inc.php:112 msgid "Name" -msgstr "" +msgstr "ئىسمى" #: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43 #: libraries/db_links.inc.php:44 From ed60b55c822b4b9236bb4402597641d05f3a62c1 Mon Sep 17 00:00:00 2001 From: gheni Date: Wed, 28 Jul 2010 04:22:28 +0200 Subject: [PATCH 179/212] Translation update done using Pootle. --- po/ug.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ug.po b/po/ug.po index a4e00dd90..3531db66e 100644 --- a/po/ug.po +++ b/po/ug.po @@ -8,7 +8,7 @@ msgstr "" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-27 10:12+0200\n" "PO-Revision-Date: 2010-07-28 04:22+0200\n" -"Last-Translator: \n" +"Last-Translator: \n" "Language-Team: Uyghur \n" "Language: ug\n" "MIME-Version: 1.0\n" @@ -1793,7 +1793,7 @@ msgstr "" #: libraries/import/sql.php:17 libraries/server_links.inc.php:44 #: libraries/tbl_links.inc.php:58 querywindow.php:88 test/theme.php:96 msgid "SQL" -msgstr "" +msgstr "SQL" #: libraries/common.lib.php:2842 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:102 From 1deadf1c0ef9cec26e870290a8ff078c424dd613 Mon Sep 17 00:00:00 2001 From: ablat7ihlim Date: Wed, 28 Jul 2010 04:23:01 +0200 Subject: [PATCH 180/212] Translation update done using Pootle. --- po/ug.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/ug.po b/po/ug.po index 3531db66e..051c5eb99 100644 --- a/po/ug.po +++ b/po/ug.po @@ -7,8 +7,8 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-27 10:12+0200\n" -"PO-Revision-Date: 2010-07-28 04:22+0200\n" -"Last-Translator: \n" +"PO-Revision-Date: 2010-07-28 04:23+0200\n" +"Last-Translator: \n" "Language-Team: Uyghur \n" "Language: ug\n" "MIME-Version: 1.0\n" @@ -1809,7 +1809,7 @@ msgstr "" #: libraries/db_events.inc.php:19 libraries/db_events.inc.php:21 #: libraries/export/sql.php:412 msgid "Events" -msgstr "" +msgstr "ھادىسە" #: libraries/db_events.inc.php:29 libraries/db_routines.inc.php:40 #: libraries/display_create_table.lib.php:52 libraries/tbl_triggers.lib.php:26 From 833202cc44053299fc2826b4647447f87fddeff7 Mon Sep 17 00:00:00 2001 From: gheni Date: Wed, 28 Jul 2010 04:23:01 +0200 Subject: [PATCH 181/212] Translation update done using Pootle. --- po/ug.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ug.po b/po/ug.po index 051c5eb99..03a8e4f31 100644 --- a/po/ug.po +++ b/po/ug.po @@ -8,7 +8,7 @@ msgstr "" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-27 10:12+0200\n" "PO-Revision-Date: 2010-07-28 04:23+0200\n" -"Last-Translator: \n" +"Last-Translator: \n" "Language-Team: Uyghur \n" "Language: ug\n" "MIME-Version: 1.0\n" @@ -1799,7 +1799,7 @@ msgstr "SQL" #: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" -msgstr "" +msgstr "ئىشلەملەر" #: libraries/core.lib.php:265 libraries/dbg/setup.php:21 #, php-format From e37e7036874435d6db5df85de235e473236944e5 Mon Sep 17 00:00:00 2001 From: ablat7ihlim Date: Wed, 28 Jul 2010 04:23:31 +0200 Subject: [PATCH 182/212] Translation update done using Pootle. --- po/ug.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ug.po b/po/ug.po index 03a8e4f31..a10ac4748 100644 --- a/po/ug.po +++ b/po/ug.po @@ -8,7 +8,7 @@ msgstr "" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-27 10:12+0200\n" "PO-Revision-Date: 2010-07-28 04:23+0200\n" -"Last-Translator: \n" +"Last-Translator: \n" "Language-Team: Uyghur \n" "Language: ug\n" "MIME-Version: 1.0\n" @@ -1820,7 +1820,7 @@ 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!" -msgstr "" +msgstr "سانلىق مەلۇمات ئامبىرى قۇرۇق" #: libraries/db_links.inc.php:66 libraries/relation.lib.php:137 #: libraries/tbl_links.inc.php:67 From 4251ee1a979855775f1f3c8ffb2c79f6d56960ed Mon Sep 17 00:00:00 2001 From: ablat7ihlim Date: Wed, 28 Jul 2010 04:23:43 +0200 Subject: [PATCH 183/212] Translation update done using Pootle. --- po/ug.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/ug.po b/po/ug.po index a10ac4748..b304cb39d 100644 --- a/po/ug.po +++ b/po/ug.po @@ -1825,7 +1825,7 @@ msgstr "سانلىق مەلۇمات ئامبىرى قۇرۇق" #: libraries/db_links.inc.php:66 libraries/relation.lib.php:137 #: libraries/tbl_links.inc.php:67 msgid "Tracking" -msgstr "" +msgstr "ئىز قۇغلاش" #: libraries/db_links.inc.php:71 msgid "Query" From 393280a8bb2ae849576423c67465bb4f29c8f444 Mon Sep 17 00:00:00 2001 From: ablat7ihlim Date: Wed, 28 Jul 2010 04:23:56 +0200 Subject: [PATCH 184/212] Translation update done using Pootle. --- po/ug.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/ug.po b/po/ug.po index b304cb39d..cb663bd73 100644 --- a/po/ug.po +++ b/po/ug.po @@ -1829,7 +1829,7 @@ msgstr "ئىز قۇغلاش" #: libraries/db_links.inc.php:71 msgid "Query" -msgstr "" +msgstr "تەكشۈرۈش" #: libraries/db_links.inc.php:76 libraries/relation.lib.php:133 msgid "Designer" From 753397061d1bb860664571100723eecb8f978aed Mon Sep 17 00:00:00 2001 From: ablat7ihlim Date: Wed, 28 Jul 2010 04:24:20 +0200 Subject: [PATCH 185/212] Translation update done using Pootle. --- po/ug.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ug.po b/po/ug.po index cb663bd73..aac3650b0 100644 --- a/po/ug.po +++ b/po/ug.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-27 10:12+0200\n" -"PO-Revision-Date: 2010-07-28 04:23+0200\n" +"PO-Revision-Date: 2010-07-28 04:24+0200\n" "Last-Translator: \n" "Language-Team: Uyghur \n" "Language: ug\n" @@ -1839,7 +1839,7 @@ msgstr "" #: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 #: setup/frames/menu.inc.php:21 msgid "Import" -msgstr "" +msgstr "كىرگۈزۈش" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:65 #: server_privileges.php:110 server_privileges.php:1718 From cf26fe7ec3b1be5974b85ebf7c2202614cb87122 Mon Sep 17 00:00:00 2001 From: ablat7ihlim Date: Wed, 28 Jul 2010 04:24:32 +0200 Subject: [PATCH 186/212] Translation update done using Pootle. --- po/ug.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/ug.po b/po/ug.po index aac3650b0..e4686a939 100644 --- a/po/ug.po +++ b/po/ug.po @@ -1845,7 +1845,7 @@ msgstr "كىرگۈزۈش" #: server_privileges.php:110 server_privileges.php:1718 #: server_privileges.php:2067 test/theme.php:116 msgid "Privileges" -msgstr "" +msgstr "ھۇقۇقى" #: libraries/db_routines.inc.php:29 libraries/db_routines.inc.php:31 msgid "Routines" From 150fb98b71c3b5f5130f4c64db7c996bb54ee23c Mon Sep 17 00:00:00 2001 From: ablat7ihlim Date: Wed, 28 Jul 2010 04:24:49 +0200 Subject: [PATCH 187/212] Translation update done using Pootle. --- po/ug.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/ug.po b/po/ug.po index e4686a939..b23a40b98 100644 --- a/po/ug.po +++ b/po/ug.po @@ -1849,7 +1849,7 @@ msgstr "ھۇقۇقى" #: libraries/db_routines.inc.php:29 libraries/db_routines.inc.php:31 msgid "Routines" -msgstr "" +msgstr "دائىملىق" #: libraries/db_routines.inc.php:42 msgid "Return type" From d2310bc20fa030d2955160715c38d50971831e60 Mon Sep 17 00:00:00 2001 From: gheni Date: Wed, 28 Jul 2010 04:24:56 +0200 Subject: [PATCH 188/212] Translation update done using Pootle. --- po/ug.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ug.po b/po/ug.po index b23a40b98..ca3a08f85 100644 --- a/po/ug.po +++ b/po/ug.po @@ -8,7 +8,7 @@ msgstr "" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-27 10:12+0200\n" "PO-Revision-Date: 2010-07-28 04:24+0200\n" -"Last-Translator: \n" +"Last-Translator: \n" "Language-Team: Uyghur \n" "Language: ug\n" "MIME-Version: 1.0\n" @@ -1804,7 +1804,7 @@ msgstr "ئىشلەملەر" #: libraries/core.lib.php:265 libraries/dbg/setup.php:21 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." -msgstr "" +msgstr "%s كېڭەيتىلمە كەمكەن، PHP تەڭشەك ھۆججىتىنى تەكشۈرۈپ چىقىڭ." #: libraries/db_events.inc.php:19 libraries/db_events.inc.php:21 #: libraries/export/sql.php:412 From bac369879ad29b769596996d2687fe15ebe39912 Mon Sep 17 00:00:00 2001 From: ablat7ihlim Date: Wed, 28 Jul 2010 04:25:06 +0200 Subject: [PATCH 189/212] Translation update done using Pootle. --- po/ug.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/ug.po b/po/ug.po index ca3a08f85..cf177656e 100644 --- a/po/ug.po +++ b/po/ug.po @@ -7,8 +7,8 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-27 10:12+0200\n" -"PO-Revision-Date: 2010-07-28 04:24+0200\n" -"Last-Translator: \n" +"PO-Revision-Date: 2010-07-28 04:25+0200\n" +"Last-Translator: \n" "Language-Team: Uyghur \n" "Language: ug\n" "MIME-Version: 1.0\n" @@ -1853,7 +1853,7 @@ msgstr "دائىملىق" #: libraries/db_routines.inc.php:42 msgid "Return type" -msgstr "" +msgstr "تۈرگە قايتىش" #: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1806 msgid "" From 68948115f98278c3935042869cba8b43d676c1d6 Mon Sep 17 00:00:00 2001 From: gheni Date: Wed, 28 Jul 2010 04:26:27 +0200 Subject: [PATCH 190/212] Translation update done using Pootle. --- po/ug.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/ug.po b/po/ug.po index cf177656e..1325138fd 100644 --- a/po/ug.po +++ b/po/ug.po @@ -7,8 +7,8 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-27 10:12+0200\n" -"PO-Revision-Date: 2010-07-28 04:25+0200\n" -"Last-Translator: \n" +"PO-Revision-Date: 2010-07-28 04:26+0200\n" +"Last-Translator: \n" "Language-Team: Uyghur \n" "Language: ug\n" "MIME-Version: 1.0\n" @@ -1833,7 +1833,7 @@ msgstr "تەكشۈرۈش" #: libraries/db_links.inc.php:76 libraries/relation.lib.php:133 msgid "Designer" -msgstr "" +msgstr "لايىھەلىگۈچ" #: libraries/db_links.inc.php:83 libraries/server_links.inc.php:87 #: libraries/tbl_links.inc.php:89 pmd_pdf.php:81 pmd_pdf.php:107 From 84e9804f6c53416fcc8c8ea3a7e38cd1f1491069 Mon Sep 17 00:00:00 2001 From: gheni Date: Wed, 28 Jul 2010 04:28:17 +0200 Subject: [PATCH 191/212] Translation update done using Pootle. --- po/ug.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/ug.po b/po/ug.po index 1325138fd..02d802982 100644 --- a/po/ug.po +++ b/po/ug.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-27 10:12+0200\n" -"PO-Revision-Date: 2010-07-28 04:26+0200\n" +"PO-Revision-Date: 2010-07-28 04:28+0200\n" "Last-Translator: \n" "Language-Team: Uyghur \n" "Language: ug\n" @@ -1860,6 +1860,8 @@ msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "" +"ئېنىقسىزلىك بولۇشى مۇمكىن. [a@./Documentation.html#faq3_11@Documentation]FAQ " +"3.11[/a] غا قاراڭ." #: libraries/db_structure.lib.php:60 server_databases.php:139 #: tbl_printview.php:333 tbl_structure.php:679 From 7c57a7af578ab99fdd0ddd24e8c5d8b1883c6774 Mon Sep 17 00:00:00 2001 From: gheni Date: Wed, 28 Jul 2010 04:31:31 +0200 Subject: [PATCH 192/212] Translation update done using Pootle. --- po/ug.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ug.po b/po/ug.po index 02d802982..ed50d2dc9 100644 --- a/po/ug.po +++ b/po/ug.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-27 10:12+0200\n" -"PO-Revision-Date: 2010-07-28 04:28+0200\n" +"PO-Revision-Date: 2010-07-28 04:31+0200\n" "Last-Translator: \n" "Language-Team: Uyghur \n" "Language: ug\n" @@ -1866,7 +1866,7 @@ msgstr "" #: libraries/db_structure.lib.php:60 server_databases.php:139 #: tbl_printview.php:333 tbl_structure.php:679 msgid "Overhead" -msgstr "" +msgstr "ئېغىر يۈك" #: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:123 msgid "Connection for controluser as defined in your configuration failed." From 37aca20c097b0ee5c3c05510063021ff7c28e330 Mon Sep 17 00:00:00 2001 From: gheni Date: Wed, 28 Jul 2010 04:33:13 +0200 Subject: [PATCH 193/212] Translation update done using Pootle. --- po/ug.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ug.po b/po/ug.po index ed50d2dc9..2a20eb87e 100644 --- a/po/ug.po +++ b/po/ug.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-27 10:12+0200\n" -"PO-Revision-Date: 2010-07-28 04:31+0200\n" +"PO-Revision-Date: 2010-07-28 04:33+0200\n" "Last-Translator: \n" "Language-Team: Uyghur \n" "Language: ug\n" @@ -1870,7 +1870,7 @@ msgstr "ئېغىر يۈك" #: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:123 msgid "Connection for controluser as defined in your configuration failed." -msgstr "" +msgstr "تەڭشەك ھۆججىتى ئىچىدىكى ئىشلەنكۈچى ئۇلۈنما كونتىرولى مەغلۇب بولدى." #: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysql.dbi.lib.php:351 #: libraries/dbi/mysqli.dbi.lib.php:405 From b1cc1454a45a3b3fe1e0f3333db0daf77d4a4b73 Mon Sep 17 00:00:00 2001 From: gheni Date: Wed, 28 Jul 2010 04:33:51 +0200 Subject: [PATCH 194/212] Translation update done using Pootle. --- po/ug.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/ug.po b/po/ug.po index 2a20eb87e..d452a3fc9 100644 --- a/po/ug.po +++ b/po/ug.po @@ -1875,7 +1875,7 @@ msgstr "تەڭشەك ھۆججىتى ئىچىدىكى ئىشلەنكۈچى ئۇل #: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysql.dbi.lib.php:351 #: libraries/dbi/mysqli.dbi.lib.php:405 msgid "The server is not responding" -msgstr "" +msgstr "مۇلازىمىتېردا ئىنكاس يوق" #: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:405 msgid "(or the local MySQL server's socket is not correctly configured)" From c46fc82971a6512b45d5f9c727448f49817ff8a6 Mon Sep 17 00:00:00 2001 From: gheni Date: Wed, 28 Jul 2010 04:37:15 +0200 Subject: [PATCH 195/212] Translation update done using Pootle. --- po/ug.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ug.po b/po/ug.po index d452a3fc9..3a1740259 100644 --- a/po/ug.po +++ b/po/ug.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-27 10:12+0200\n" -"PO-Revision-Date: 2010-07-28 04:33+0200\n" +"PO-Revision-Date: 2010-07-28 04:37+0200\n" "Last-Translator: \n" "Language-Team: Uyghur \n" "Language: ug\n" @@ -1879,7 +1879,7 @@ msgstr "مۇلازىمىتېردا ئىنكاس يوق" #: libraries/dbi/mysql.dbi.lib.php:349 libraries/dbi/mysqli.dbi.lib.php:405 msgid "(or the local MySQL server's socket is not correctly configured)" -msgstr "" +msgstr "(يەرلىك MySQL مۇلازىمىتېرى توغرا تەڭشەلمىگەن)" #: libraries/dbi/mysql.dbi.lib.php:358 tbl_structure.php:605 msgid "Details..." From 5b67f24ac29838dbbf64a519e4a0d9f1d78e6cfd Mon Sep 17 00:00:00 2001 From: gheni Date: Wed, 28 Jul 2010 04:37:50 +0200 Subject: [PATCH 196/212] Translation update done using Pootle. --- po/ug.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/ug.po b/po/ug.po index 3a1740259..53d886c3c 100644 --- a/po/ug.po +++ b/po/ug.po @@ -1883,7 +1883,7 @@ msgstr "(يەرلىك MySQL مۇلازىمىتېرى توغرا تەڭشەلمى #: libraries/dbi/mysql.dbi.lib.php:358 tbl_structure.php:605 msgid "Details..." -msgstr "" +msgstr "تەپسىلاتلار..." #: libraries/display_change_password.lib.php:29 main.php:90 #: user_password.php:106 user_password.php:124 From f73767abd673b86df0c106a2831080cec9f534de Mon Sep 17 00:00:00 2001 From: gheni Date: Wed, 28 Jul 2010 04:38:44 +0200 Subject: [PATCH 197/212] Translation update done using Pootle. --- po/ug.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ug.po b/po/ug.po index 53d886c3c..ed17e6ecf 100644 --- a/po/ug.po +++ b/po/ug.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-27 10:12+0200\n" -"PO-Revision-Date: 2010-07-28 04:37+0200\n" +"PO-Revision-Date: 2010-07-28 04:38+0200\n" "Last-Translator: \n" "Language-Team: Uyghur \n" "Language: ug\n" @@ -1888,7 +1888,7 @@ msgstr "تەپسىلاتلار..." #: libraries/display_change_password.lib.php:29 main.php:90 #: user_password.php:106 user_password.php:124 msgid "Change password" -msgstr "" +msgstr "پارولنى ئۆزگەرتىش" #: libraries/display_change_password.lib.php:34 #: libraries/replication_gui.lib.php:347 server_privileges.php:806 From 6765b2c3485f3ba86ff7503005b91e549fa706fd Mon Sep 17 00:00:00 2001 From: gheni Date: Wed, 28 Jul 2010 04:39:08 +0200 Subject: [PATCH 198/212] Translation update done using Pootle. --- po/ug.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ug.po b/po/ug.po index ed17e6ecf..0e7bd6ca3 100644 --- a/po/ug.po +++ b/po/ug.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-27 10:12+0200\n" -"PO-Revision-Date: 2010-07-28 04:38+0200\n" +"PO-Revision-Date: 2010-07-28 04:39+0200\n" "Last-Translator: \n" "Language-Team: Uyghur \n" "Language: ug\n" @@ -1893,7 +1893,7 @@ msgstr "پارولنى ئۆزگەرتىش" #: libraries/display_change_password.lib.php:34 #: libraries/replication_gui.lib.php:347 server_privileges.php:806 msgid "No Password" -msgstr "" +msgstr "پارول يوق" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 From 3e733d10812214f5bb474fe0e3c433515b432c8b Mon Sep 17 00:00:00 2001 From: gheni Date: Wed, 28 Jul 2010 04:40:16 +0200 Subject: [PATCH 199/212] Translation update done using Pootle. --- po/ug.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ug.po b/po/ug.po index 0e7bd6ca3..290ac0151 100644 --- a/po/ug.po +++ b/po/ug.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-27 10:12+0200\n" -"PO-Revision-Date: 2010-07-28 04:39+0200\n" +"PO-Revision-Date: 2010-07-28 04:40+0200\n" "Last-Translator: \n" "Language-Team: Uyghur \n" "Language: ug\n" @@ -1902,7 +1902,7 @@ msgstr "پارول يوق" #: server_privileges.php:799 server_privileges.php:810 #: server_privileges.php:1534 server_synchronize.php:1173 msgid "Password" -msgstr "" +msgstr "پارول" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 From 0e03d11023b94eced18951c90fb9c67b1ce24e16 Mon Sep 17 00:00:00 2001 From: gheni Date: Wed, 28 Jul 2010 04:42:21 +0200 Subject: [PATCH 200/212] Translation update done using Pootle. --- po/ug.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ug.po b/po/ug.po index 290ac0151..5cd041e11 100644 --- a/po/ug.po +++ b/po/ug.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-27 10:12+0200\n" -"PO-Revision-Date: 2010-07-28 04:40+0200\n" +"PO-Revision-Date: 2010-07-28 04:42+0200\n" "Last-Translator: \n" "Language-Team: Uyghur \n" "Language: ug\n" @@ -1908,7 +1908,7 @@ msgstr "پارول" #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 #: server_privileges.php:814 server_privileges.php:817 msgid "Re-type" -msgstr "" +msgstr "قايتا كىرگۈزىش" #: libraries/display_change_password.lib.php:51 msgid "Password Hashing" From 4177ce369df1a4b98479be6b594e2d7419c2b059 Mon Sep 17 00:00:00 2001 From: gheni Date: Wed, 28 Jul 2010 04:43:39 +0200 Subject: [PATCH 201/212] Translation update done using Pootle. --- po/ug.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ug.po b/po/ug.po index 5cd041e11..1ab416f15 100644 --- a/po/ug.po +++ b/po/ug.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-27 10:12+0200\n" -"PO-Revision-Date: 2010-07-28 04:42+0200\n" +"PO-Revision-Date: 2010-07-28 04:43+0200\n" "Last-Translator: \n" "Language-Team: Uyghur \n" "Language: ug\n" @@ -1912,7 +1912,7 @@ msgstr "قايتا كىرگۈزىش" #: libraries/display_change_password.lib.php:51 msgid "Password Hashing" -msgstr "" +msgstr "پارول ھېسابلاش" #: libraries/display_change_password.lib.php:65 msgid "MySQL 4.0 compatible" From 2436d4ab746432066bcfa10d6c938cadd19ed4f0 Mon Sep 17 00:00:00 2001 From: gheni Date: Wed, 28 Jul 2010 04:47:05 +0200 Subject: [PATCH 202/212] Translation update done using Pootle. --- po/ug.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ug.po b/po/ug.po index 1ab416f15..0f171dba7 100644 --- a/po/ug.po +++ b/po/ug.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-27 10:12+0200\n" -"PO-Revision-Date: 2010-07-28 04:43+0200\n" +"PO-Revision-Date: 2010-07-28 04:47+0200\n" "Last-Translator: \n" "Language-Team: Uyghur \n" "Language: ug\n" @@ -1916,7 +1916,7 @@ msgstr "پارول ھېسابلاش" #: libraries/display_change_password.lib.php:65 msgid "MySQL 4.0 compatible" -msgstr "" +msgstr "MySQL 4.0 بىلەن سەپلەش" #: libraries/display_create_database.lib.php:21 #: libraries/display_create_database.lib.php:35 From 2af02cc78d28b43d89f98587bcb9de12ecf8365b Mon Sep 17 00:00:00 2001 From: gheni Date: Wed, 28 Jul 2010 04:48:18 +0200 Subject: [PATCH 203/212] Translation update done using Pootle. --- po/ug.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ug.po b/po/ug.po index 0f171dba7..b06f19775 100644 --- a/po/ug.po +++ b/po/ug.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-27 10:12+0200\n" -"PO-Revision-Date: 2010-07-28 04:47+0200\n" +"PO-Revision-Date: 2010-07-28 04:48+0200\n" "Last-Translator: \n" "Language-Team: Uyghur \n" "Language: ug\n" @@ -1921,7 +1921,7 @@ msgstr "MySQL 4.0 بىلەن سەپلەش" #: libraries/display_create_database.lib.php:21 #: libraries/display_create_database.lib.php:35 msgid "Create new database" -msgstr "" +msgstr "ساندان قۇرۇش" #: libraries/display_create_database.lib.php:29 msgid "Create" From 74973bbff101c8db93c3b10d31db9cf565bcd93a Mon Sep 17 00:00:00 2001 From: gheni Date: Wed, 28 Jul 2010 04:48:50 +0200 Subject: [PATCH 204/212] Translation update done using Pootle. --- po/ug.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/ug.po b/po/ug.po index b06f19775..45ae90805 100644 --- a/po/ug.po +++ b/po/ug.po @@ -1925,7 +1925,7 @@ msgstr "ساندان قۇرۇش" #: libraries/display_create_database.lib.php:29 msgid "Create" -msgstr "" +msgstr "قۇرۇش" #: libraries/display_create_database.lib.php:39 server_privileges.php:112 #: server_privileges.php:1423 server_replication.php:33 From a705b8c2369c56e6148ba23c73161fdfd945c9c1 Mon Sep 17 00:00:00 2001 From: gheni Date: Wed, 28 Jul 2010 04:49:14 +0200 Subject: [PATCH 205/212] Translation update done using Pootle. --- po/ug.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ug.po b/po/ug.po index 45ae90805..48f0b87ac 100644 --- a/po/ug.po +++ b/po/ug.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-27 10:12+0200\n" -"PO-Revision-Date: 2010-07-28 04:48+0200\n" +"PO-Revision-Date: 2010-07-28 04:49+0200\n" "Last-Translator: \n" "Language-Team: Uyghur \n" "Language: ug\n" @@ -1930,7 +1930,7 @@ msgstr "قۇرۇش" #: libraries/display_create_database.lib.php:39 server_privileges.php:112 #: server_privileges.php:1423 server_replication.php:33 msgid "No Privileges" -msgstr "" +msgstr "ھوقۇقسىز" #: libraries/display_create_table.lib.php:40 msgid "Table must have at least one column." From 5648c55054b87a4744b404703334950abb7aeb1c Mon Sep 17 00:00:00 2001 From: gheni Date: Wed, 28 Jul 2010 04:50:41 +0200 Subject: [PATCH 206/212] Translation update done using Pootle. --- po/ug.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ug.po b/po/ug.po index 48f0b87ac..c542123c3 100644 --- a/po/ug.po +++ b/po/ug.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-27 10:12+0200\n" -"PO-Revision-Date: 2010-07-28 04:49+0200\n" +"PO-Revision-Date: 2010-07-28 04:50+0200\n" "Last-Translator: \n" "Language-Team: Uyghur \n" "Language: ug\n" @@ -1939,7 +1939,7 @@ msgstr "" #: libraries/display_create_table.lib.php:47 #, php-format msgid "Create table on database %s" -msgstr "" +msgstr "ساندان %s غا جەدىۋەل قۇرۇش" #: libraries/display_create_table.lib.php:56 msgid "Number of columns" From 5b3be48a474ad31a3d9c8582046f1c619cb09176 Mon Sep 17 00:00:00 2001 From: gheni Date: Wed, 28 Jul 2010 04:52:01 +0200 Subject: [PATCH 207/212] Translation update done using Pootle. --- po/ug.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ug.po b/po/ug.po index c542123c3..1846a60b6 100644 --- a/po/ug.po +++ b/po/ug.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-27 10:12+0200\n" -"PO-Revision-Date: 2010-07-28 04:50+0200\n" +"PO-Revision-Date: 2010-07-28 04:52+0200\n" "Last-Translator: \n" "Language-Team: Uyghur \n" "Language: ug\n" @@ -1943,7 +1943,7 @@ msgstr "ساندان %s غا جەدىۋەل قۇرۇش" #: libraries/display_create_table.lib.php:56 msgid "Number of columns" -msgstr "" +msgstr "سۆزلەم سانى" #: libraries/display_export.lib.php:35 msgid "Could not load export plugins, please check your installation!" From 2816b870c3126a0d176aefd39d7c4a87a18f7a95 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Wed, 28 Jul 2010 05:44:03 -0400 Subject: [PATCH 208/212] new labels for table operations; fix CSS --- tbl_operations.php | 4 ++-- themes/darkblue_orange/css/theme_right.css.php | 2 +- themes/original/css/theme_right.css.php | 1 + 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/tbl_operations.php b/tbl_operations.php index baab85aac..e2de481cb 100644 --- a/tbl_operations.php +++ b/tbl_operations.php @@ -639,7 +639,7 @@ $this_url_params = array_merge($url_params,
    - +
    • - +
    • ; } -#div_table_copy, #div_partition_maintenance, #div_referential_integrity, #div_table_maintenance { +#div_table_copy, #div_partition_maintenance, #div_referential_integrity, #div_table_removal, #div_table_maintenance { min-width: 48%; float: ; } diff --git a/themes/original/css/theme_right.css.php b/themes/original/css/theme_right.css.php index b3554ce5e..5583fa8b6 100644 --- a/themes/original/css/theme_right.css.php +++ b/themes/original/css/theme_right.css.php @@ -1167,6 +1167,7 @@ li#li_flush_privileges { #div_table_copy, #div_partition_maintenance, #div_referential_integrity, +#div_table_removal, #div_table_maintenance { min-width: 48%; float: ; From e5ec539868244262ef8a40e774732206f72b4d21 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Wed, 28 Jul 2010 05:46:49 -0400 Subject: [PATCH 209/212] regenerate .po files --- po/af.po | 35 ++++++++++++---------- po/ar.po | 49 ++++++++++++++++++------------- po/az.po | 35 ++++++++++++---------- po/be.po | 48 +++++++++++++++++------------- po/be@latin.po | 61 +++++++++++++++++++++----------------- po/bg.po | 42 ++++++++++++++------------ po/bn.po | 50 +++++++++++++++++-------------- po/bs.po | 35 ++++++++++++---------- po/ca.po | 53 ++++++++++++++++++--------------- po/cs.po | 67 ++++++++++++++++++------------------------ po/cy.po | 40 +++++++++++++------------ po/da.po | 49 ++++++++++++++++++------------- po/de.po | 53 ++++++++++++++++++--------------- po/el.po | 75 +++++++++++++++++++++++++---------------------- po/en_GB.po | 61 +++++++++++++++++++++----------------- po/es.po | 52 +++++++++++++++++--------------- po/et.po | 40 ++++++++++++++----------- po/eu.po | 35 ++++++++++++---------- po/fa.po | 51 +++++++++++++++++--------------- po/fi.po | 49 ++++++++++++++++++------------- po/fr.po | 55 +++++++++++++++++++--------------- po/gl.po | 53 ++++++++++++++++++--------------- po/he.po | 35 ++++++++++++---------- po/hi.po | 40 +++++++++++++------------ po/hr.po | 52 +++++++++++++++++--------------- po/hu.po | 60 ++++++++++++++++++++----------------- po/id.po | 48 +++++++++++++++++------------- po/it.po | 45 ++++++++++++++++------------ po/ja.po | 45 ++++++++++++++++------------ po/ka.po | 60 ++++++++++++++++++++----------------- po/ko.po | 43 ++++++++++++++------------- po/lt.po | 53 ++++++++++++++++++--------------- po/lv.po | 39 ++++++++++++------------ po/mk.po | 35 ++++++++++++---------- po/mn.po | 49 ++++++++++++++++++------------- po/ms.po | 35 ++++++++++++---------- po/nb.po | 49 ++++++++++++++++++------------- po/nl.po | 45 ++++++++++++++++------------ po/phpmyadmin.pot | 27 ++++++++--------- po/pl.po | 60 ++++++++++++++++++++----------------- po/pt.po | 35 ++++++++++++---------- po/pt_BR.po | 40 ++++++++++++++----------- po/ro.po | 47 ++++++++++++++++------------- po/ru.po | 62 +++++++++++++++++++++------------------ po/si.po | 50 +++++++++++++++++-------------- po/sk.po | 49 ++++++++++++++++++------------- po/sl.po | 41 +++++++++++++++----------- po/sq.po | 35 ++++++++++++---------- po/sr.po | 48 +++++++++++++++++------------- po/sr@latin.po | 48 +++++++++++++++++------------- po/sv.po | 48 +++++++++++++++++------------- po/ta.po | 28 +++++++++--------- po/te.po | 28 +++++++++--------- po/th.po | 35 ++++++++++++---------- po/tr.po | 45 ++++++++++++++++------------ po/tt.po | 42 ++++++++++++++------------ po/ug.po | 50 +++++++++++++++---------------- po/uk.po | 40 +++++++++++++------------ po/ur.po | 44 ++++++++++++++------------- po/uz.po | 61 +++++++++++++++++++++----------------- po/uz@latin.po | 69 +++++++++++++++++++++++-------------------- po/zh_CN.po | 51 ++++++++++++++++++-------------- po/zh_TW.po | 38 ++++++++++++++---------- 63 files changed, 1625 insertions(+), 1317 deletions(-) diff --git a/po/af.po b/po/af.po index cf47e2252..33b773716 100644 --- a/po/af.po +++ b/po/af.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-27 10:12+0200\n" +"POT-Creation-Date: 2010-07-28 05:45-0400\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" @@ -621,8 +621,8 @@ msgstr "" #: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, 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:419 db_structure.php:433 libraries/header.inc.php:125 @@ -821,8 +821,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:277 import.php:330 libraries/File.class.php:566 @@ -1523,8 +1523,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 @@ -2051,8 +2051,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." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is." msgstr "" #: libraries/display_export.lib.php:196 @@ -4797,8 +4797,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:1680 @@ -7710,16 +7710,19 @@ msgid "Flush the table (FLUSH)" msgstr "Spoel die tabel (\"FLUSH\")" #: tbl_operations.php:642 -msgid "Table removal" -msgstr "" +#, fuzzy +#| msgid "Dumping data for table" +msgid "Delete data or table" +msgstr "Stort data vir tabel" #: tbl_operations.php:657 msgid "Empty the table (TRUNCATE)" msgstr "" #: tbl_operations.php:675 -msgid "Drop the table (DROP)" -msgstr "" +#, fuzzy +msgid "Delete the table (DROP)" +msgstr "Geen databasisse" #: tbl_operations.php:696 #, fuzzy diff --git a/po/ar.po b/po/ar.po index 8b8fd0b81..8f523d771 100644 --- a/po/ar.po +++ b/po/ar.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-27 10:12+0200\n" +"POT-Creation-Date: 2010-07-28 05:45-0400\n" "PO-Revision-Date: 2010-05-29 14:16+0200\n" "Last-Translator: Ahmed \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.1\n" @@ -323,8 +323,8 @@ msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." msgstr "" -"تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %sهنا" -"%s." +"تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %sهنا%" +"s." #: db_operations.php:531 msgid "Edit PDF Pages" @@ -627,8 +627,8 @@ msgstr "" #: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, 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:419 db_structure.php:433 libraries/header.inc.php:125 @@ -824,8 +824,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:277 import.php:330 libraries/File.class.php:566 @@ -1517,8 +1517,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 @@ -2045,8 +2045,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." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is." msgstr "" #: libraries/display_export.lib.php:196 @@ -4140,8 +4140,8 @@ msgid "" "The additional features for working with linked tables have been " "deactivated. To find out why click %shere%s." msgstr "" -"تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %sهنا" -"%s." +"تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %sهنا%" +"s." #: main.php:329 msgid "" @@ -4819,8 +4819,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 " "مباشرة. محتويات هذه الجداول قد تختلف عن الصلاحيات التي يستخدمها الخادم إذا " @@ -7709,17 +7709,19 @@ msgstr "إعادة تحميل الجدول (\"FLUSH\")" #: tbl_operations.php:642 #, fuzzy -#| msgid "Table name" -msgid "Table removal" -msgstr "اسم الجدول" +#| msgid "Dumping data for table" +msgid "Delete data or table" +msgstr "إرجاع أو استيراد بيانات الجدول" #: tbl_operations.php:657 msgid "Empty the table (TRUNCATE)" msgstr "" #: tbl_operations.php:675 -msgid "Drop the table (DROP)" -msgstr "" +#, fuzzy +#| msgid "Copy database to" +msgid "Delete the table (DROP)" +msgstr "إنسخ قاعدة البيانات إلى" #: tbl_operations.php:696 msgid "Partition maintenance" @@ -8096,6 +8098,11 @@ msgstr "" msgid "Rename view to" msgstr "" +#, fuzzy +#~| msgid "Table name" +#~ msgid "Table removal" +#~ msgstr "اسم الجدول" + #, fuzzy #~| msgid "Enabled" #~ msgctxt "BLOB repository" diff --git a/po/az.po b/po/az.po index b3dda59d8..d5b0b6811 100644 --- a/po/az.po +++ b/po/az.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-27 10:12+0200\n" +"POT-Creation-Date: 2010-07-28 05:45-0400\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:36 browse_foreigners.php:57 @@ -618,8 +618,8 @@ msgstr "" #: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, 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:419 db_structure.php:433 libraries/header.inc.php:125 @@ -821,8 +821,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:277 import.php:330 libraries/File.class.php:566 @@ -1526,8 +1526,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 @@ -2059,8 +2059,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." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is." msgstr "" #: libraries/display_export.lib.php:196 @@ -4881,8 +4881,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 " @@ -7815,16 +7815,19 @@ msgid "Flush the table (FLUSH)" msgstr "Cedveli flush-la (\"FLUSH\")" #: tbl_operations.php:642 -msgid "Table removal" -msgstr "" +#, fuzzy +#| msgid "Dumping data for table" +msgid "Delete data or table" +msgstr "Sxemi çıxarılan cedvel" #: tbl_operations.php:657 msgid "Empty the table (TRUNCATE)" msgstr "" #: tbl_operations.php:675 -msgid "Drop the table (DROP)" -msgstr "" +#, fuzzy +msgid "Delete the table (DROP)" +msgstr "Baza seçilmemişdir ve ya mövcud deyildir." #: tbl_operations.php:696 #, fuzzy diff --git a/po/be.po b/po/be.po index cc18df4df..20e36ad37 100644 --- a/po/be.po +++ b/po/be.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-27 10:12+0200\n" +"POT-Creation-Date: 2010-07-28 05:45-0400\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:36 browse_foreigners.php:57 @@ -619,11 +619,11 @@ msgstr "" #: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, 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:419 db_structure.php:433 libraries/header.inc.php:125 #: libraries/tbl_info.inc.php:60 tbl_structure.php:183 test/theme.php:73 @@ -828,8 +828,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 для высьвятленьня спосабаў абыйсьці гэтае " @@ -848,8 +848,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:335 @@ -1553,8 +1553,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." @@ -2101,8 +2101,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." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is." msgstr "" "Гэтае значэньне інтэрпрэтуецца з выкарыстаньнем %1$sstrftime%2$s, таму можна " "выкарыстоўваць радкі фарматаваньня часу. Апроч гэтага, будуць праведзеныя " @@ -5042,8 +5042,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. Зьмесьціва гэтых табліц можа адрозьнівацца ад прывілеяў, " @@ -8142,17 +8142,18 @@ msgstr "Скінуць кэш табліцы (\"FLUSH\")" #: tbl_operations.php:642 #, fuzzy -#| msgid "Table name" -msgid "Table removal" -msgstr "Імя табліцы" +#| msgid "Dumping data for table" +msgid "Delete data or table" +msgstr "Дамп дадзеных табліцы" #: tbl_operations.php:657 msgid "Empty the table (TRUNCATE)" msgstr "" #: tbl_operations.php:675 -msgid "Drop the table (DROP)" -msgstr "" +#, fuzzy +msgid "Delete the table (DROP)" +msgstr "Базы дадзеных адсутнічаюць" #: tbl_operations.php:696 msgid "Partition maintenance" @@ -8538,6 +8539,11 @@ msgstr "Назва прагляду" msgid "Rename view to" msgstr "Перайменаваць табліцу ў" +#, fuzzy +#~| msgid "Table name" +#~ msgid "Table removal" +#~ msgstr "Імя табліцы" + #, fuzzy #~| msgid "Enabled" #~ msgctxt "BLOB repository" diff --git a/po/be@latin.po b/po/be@latin.po index b9a104ef0..6ae167d49 100644 --- a/po/be@latin.po +++ b/po/be@latin.po @@ -3,16 +3,16 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-27 10:12+0200\n" +"POT-Creation-Date: 2010-07-28 05:45-0400\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" -"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" +"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" "X-Generator: Pootle 2.0.1\n" #: browse_foreigners.php:36 browse_foreigners.php:57 @@ -625,11 +625,11 @@ msgstr "" #: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, 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:419 db_structure.php:433 libraries/header.inc.php:125 #: libraries/tbl_info.inc.php:60 tbl_structure.php:183 test/theme.php:73 @@ -826,8 +826,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 " @@ -846,8 +846,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:335 @@ -1553,8 +1553,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." @@ -2101,8 +2101,8 @@ msgstr "imia tablicy" #, 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." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is." 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ć " @@ -3903,8 +3903,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." +"ŭstalavanyja ŭ vas nieabchodnyja pašyreńni PHP, jak heta apisana ŭ %" +"sdakumentacyi%s." #: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107 msgid "Table seems to be empty!" @@ -4094,8 +4094,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()." @@ -5034,8 +5034,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ŭ, " @@ -8069,17 +8069,19 @@ msgstr "Skinuć keš tablicy (\"FLUSH\")" #: tbl_operations.php:642 #, fuzzy -#| msgid "Table name" -msgid "Table removal" -msgstr "Imia tablicy" +#| msgid "Dumping data for table" +msgid "Delete data or table" +msgstr "Damp dadzienych tablicy" #: tbl_operations.php:657 msgid "Empty the table (TRUNCATE)" msgstr "" #: tbl_operations.php:675 -msgid "Drop the table (DROP)" -msgstr "" +#, fuzzy +#| msgid "Copy database to" +msgid "Delete the table (DROP)" +msgstr "Kapijavać bazu dadzienych u" #: tbl_operations.php:696 msgid "Partition maintenance" @@ -8461,6 +8463,11 @@ msgstr "Nazva prahladu" msgid "Rename view to" msgstr "" +#, fuzzy +#~| msgid "Table name" +#~ msgid "Table removal" +#~ msgstr "Imia tablicy" + #, fuzzy #~| msgid "Enabled" #~ msgctxt "BLOB repository" diff --git a/po/bg.po b/po/bg.po index 9f7e751e6..10a02b8ad 100644 --- a/po/bg.po +++ b/po/bg.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-27 10:12+0200\n" +"POT-Creation-Date: 2010-07-28 05:45-0400\n" "PO-Revision-Date: 2010-06-11 17:28+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.1\n" @@ -618,8 +618,8 @@ msgstr "" #: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, 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:419 db_structure.php:433 libraries/header.inc.php:125 @@ -820,8 +820,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 "" "Вероятно сте направили опит да качите твърде голям файл. Моля, обърнете се " "към %sdдокументацията%s за да намерите начин да избегнете това ограничение." @@ -1531,8 +1531,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 @@ -2065,8 +2065,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." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is." msgstr "" #: libraries/display_export.lib.php:196 @@ -3812,8 +3812,8 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" "SQL валидатора не може да бъде инициализиран. Моля проверете дали сте " -"инсталирали необходимите PHP разширения, така както е описано в " -"%sдокументацията%s." +"инсталирали необходимите PHP разширения, така както е описано в %" +"sдокументацията%s." #: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107 msgid "Table seems to be empty!" @@ -4909,8 +4909,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. Съдържанието на тази таблица може да се различава " @@ -7862,16 +7862,18 @@ msgstr "Изчистване на кеша на таблицата (\"FLUSH\")" #: tbl_operations.php:642 #, fuzzy -msgid "Table removal" -msgstr "име на таблицата" +#| msgid "Dumping data for table" +msgid "Delete data or table" +msgstr "Дъмп (схема) на данните в таблицата" #: tbl_operations.php:657 msgid "Empty the table (TRUNCATE)" msgstr "" #: tbl_operations.php:675 -msgid "Drop the table (DROP)" -msgstr "" +#, fuzzy +msgid "Delete the table (DROP)" +msgstr "Няма бази от данни" #: tbl_operations.php:696 #, fuzzy @@ -8259,6 +8261,10 @@ msgstr "Име на ИЗГЛЕД-а" msgid "Rename view to" msgstr "Преименуване на изгледа на" +#, fuzzy +#~ msgid "Table removal" +#~ msgstr "име на таблицата" + #~ msgid "BLOB Repository" #~ msgstr "BLOB хранилище" diff --git a/po/bn.po b/po/bn.po index a0a81ea8f..3c6a5aa2f 100644 --- a/po/bn.po +++ b/po/bn.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-27 10:12+0200\n" +"POT-Creation-Date: 2010-07-28 05:45-0400\n" "PO-Revision-Date: 2010-03-12 09:11+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: bangla \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:36 browse_foreigners.php:57 @@ -617,8 +617,8 @@ msgstr "" #: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, 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:419 db_structure.php:433 libraries/header.inc.php:125 @@ -821,11 +821,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:277 import.php:330 libraries/File.class.php:566 #: libraries/File.class.php:676 @@ -1537,8 +1537,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 ব্যাবহার " "করে একটি তৈরী করতে পারেন " @@ -2077,12 +2077,12 @@ 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." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is." 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:196 msgid "remember template" @@ -4964,13 +4964,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:1680 msgid "The selected user was not found in the privilege table." @@ -8035,16 +8035,18 @@ msgstr "Flush the table (\"FLUSH\")" #: tbl_operations.php:642 #, fuzzy -msgid "Table removal" -msgstr "টেবিল এর নাম" +#| msgid "Dumping data for table" +msgid "Delete data or table" +msgstr "টেবিল এর জন্য ডাটা ডাম্পিং করুন" #: tbl_operations.php:657 msgid "Empty the table (TRUNCATE)" msgstr "" #: tbl_operations.php:675 -msgid "Drop the table (DROP)" -msgstr "" +#, fuzzy +msgid "Delete the table (DROP)" +msgstr "কোন ডাটাবেজ নাই" #: tbl_operations.php:696 #, fuzzy @@ -8432,6 +8434,10 @@ msgstr "" msgid "Rename view to" msgstr "টেবিল রিনেম করুন" +#, fuzzy +#~ msgid "Table removal" +#~ msgstr "টেবিল এর নাম" + #, fuzzy #~| msgid "Enabled" #~ msgctxt "BLOB repository" diff --git a/po/bs.po b/po/bs.po index f2f369226..11a3e5527 100644 --- a/po/bs.po +++ b/po/bs.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-27 10:12+0200\n" +"POT-Creation-Date: 2010-07-28 05:45-0400\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:36 browse_foreigners.php:57 @@ -620,8 +620,8 @@ msgstr "" #: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, 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:419 db_structure.php:433 libraries/header.inc.php:125 @@ -823,8 +823,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:277 import.php:330 libraries/File.class.php:566 @@ -1526,8 +1526,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 @@ -2060,8 +2060,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." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is." msgstr "" #: libraries/display_export.lib.php:196 @@ -4879,8 +4879,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 " @@ -7809,16 +7809,19 @@ msgid "Flush the table (FLUSH)" msgstr "Osvježi tabelu (\"FLUSH\")" #: tbl_operations.php:642 -msgid "Table removal" -msgstr "" +#, fuzzy +#| msgid "Dumping data for table" +msgid "Delete data or table" +msgstr "Prikaz podataka tabele" #: tbl_operations.php:657 msgid "Empty the table (TRUNCATE)" msgstr "" #: tbl_operations.php:675 -msgid "Drop the table (DROP)" -msgstr "" +#, fuzzy +msgid "Delete the table (DROP)" +msgstr "Baza ne postoji" #: tbl_operations.php:696 #, fuzzy diff --git a/po/ca.po b/po/ca.po index 08ca97065..97ed97365 100644 --- a/po/ca.po +++ b/po/ca.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-27 10:12+0200\n" +"POT-Creation-Date: 2010-07-28 05:45-0400\n" "PO-Revision-Date: 2010-03-12 09:13+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: catalan \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:36 browse_foreigners.php:57 @@ -620,8 +620,8 @@ msgstr "El seguiment no està actiu." #: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, 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." @@ -818,11 +818,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:277 import.php:330 libraries/File.class.php:566 #: libraries/File.class.php:676 @@ -1545,8 +1545,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ó. " "Podriau voler utilitzar %1$ssetup script%2$s per crear-ne un." @@ -2094,12 +2094,12 @@ msgstr "nom de 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." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is." msgstr "" "Aquest valor s'interpreta usant %1$sstrftime%2$s, pel que podeu usar les " -"cadenes de formateig de temps. A més, es faràn aquestes transformacions: " -"%3$s. Altre text es deixarà sense variació." +"cadenes de formateig de temps. A més, es faràn aquestes transformacions: %3" +"$s. Altre text es deixarà sense variació." #: libraries/display_export.lib.php:196 msgid "remember template" @@ -3911,8 +3911,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." +"instal·lats els mòduls de PHP necessaris tal i com s'indica a la %" +"sdocumentació%s." #: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107 msgid "Table seems to be empty!" @@ -5044,8 +5044,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 " @@ -8341,17 +8341,19 @@ msgstr "Buida la memòria cau de la taula (\"FLUSH\")" #: tbl_operations.php:642 #, fuzzy -#| msgid "Table name" -msgid "Table removal" -msgstr "Nom de taula" +#| msgid "Delete tracking data for this table" +msgid "Delete data or table" +msgstr "Esborra les dades de seguiment per aquesta taula" #: tbl_operations.php:657 msgid "Empty the table (TRUNCATE)" msgstr "" #: tbl_operations.php:675 -msgid "Drop the table (DROP)" -msgstr "" +#, fuzzy +#| msgid "Go to database" +msgid "Delete the table (DROP)" +msgstr "Vés a la base de dades" #: tbl_operations.php:696 msgid "Partition maintenance" @@ -8738,6 +8740,11 @@ msgstr "Nom de VISTA" msgid "Rename view to" msgstr "Reanomena les taules a" +#, fuzzy +#~| msgid "Table name" +#~ msgid "Table removal" +#~ msgstr "Nom de taula" + #~ msgid "BLOB Repository" #~ msgstr "Repositori BLOB" diff --git a/po/cs.po b/po/cs.po index 59a560d2a..752fd3170 100644 --- a/po/cs.po +++ b/po/cs.po @@ -5,14 +5,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-27 10:12+0200\n" +"POT-Creation-Date: 2010-07-28 05:45-0400\n" "PO-Revision-Date: 2010-07-27 10:22+0200\n" "Last-Translator: Michal \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.1\n" @@ -96,7 +96,6 @@ msgid "No blob streaming server configured!" msgstr "Není nastaven žádný streamovací server!" #: bs_disp_as_mime_type.php:35 -#| msgid "Failed to write file to disk." msgid "Failed to fetch headers" msgstr "Chyba při čtení hlaviček" @@ -250,7 +249,6 @@ msgid "and then" msgstr "a poté" #: db_operations.php:379 -#| msgid "Rename database to" msgid "Remove database" msgstr "Odstranit databázi" @@ -260,7 +258,6 @@ msgid "Database %s has been dropped." msgstr "Databáze %s byla zrušena." #: db_operations.php:396 -#| msgid "Go to database" msgid "Drop the database (DROP)" msgstr "Odstranit databázi (DROP)" @@ -315,9 +312,6 @@ msgstr "Porovnávání" #: db_operations.php:498 pdf_schema.php:32 #, php-format -#| msgid "" -#| "The additional features for working with linked tables have been " -#| "deactivated. To find out why click %shere%s." msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." @@ -612,8 +606,8 @@ msgstr "Sledování není zapnuté." #: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, 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." @@ -810,8 +804,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." @@ -1480,8 +1474,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." @@ -2013,8 +2007,8 @@ msgstr "jméno 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." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is." 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 " @@ -2508,14 +2502,10 @@ msgstr "" "příkazem CREATE INDEX nebo opravování příkazem ALTER TABLE." #: libraries/engines/pbms.lib.php:31 -#| msgid "Garbage threshold" msgid "Garbage Threshold" msgstr "Práh velikosti odpadu (garbage)" #: libraries/engines/pbms.lib.php:32 -#| msgid "" -#| "The percentage of garbage in a data log file before it is compacted. This " -#| "is a value between 1 and 99. The default is 50." msgid "The percentage of garbage in a repository file before it is compacted." msgstr "" "Procentuální podíl odpadu (garbage) v souboru datového logu předtím, než je " @@ -2560,7 +2550,6 @@ msgstr "" "jsou po této době odstraněna, pokud nejsou odkazována záznamem v databázi." #: libraries/engines/pbms.lib.php:51 -#| msgid "Log file threshold" msgid "Temp Log Threshold" msgstr "Práh velikosti dočasného logového souboru" @@ -3851,8 +3840,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:143 msgid "Transformation options" @@ -3885,8 +3874,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:724 server_engines.php:56 #: tbl_operations.php:352 @@ -4856,8 +4845,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 " @@ -6638,10 +6627,6 @@ msgid "Signon login options" msgstr "Volby přihlašování pomocí Signon" #: setup/lib/messages.inc.php:128 -#| msgid "" -#| "Configure phpMyAdmin database to gain access to additional features, see " -#| "[a@../Documentation.html#linked-tables]linked-tables infrastructure[/a] " -#| "in documentation" msgid "" "Configure phpMyAdmin database to gain access to additional features, see " "[a@../Documentation.html#linked-tables]phpMyAdmin configuration storage[/a] " @@ -7123,9 +7108,8 @@ msgstr "" "Nastavil jste typ autentizace [kbd]config[/kbd] a zadal jste uživatelské " "jméno a heslo pro automatické přihlášení, což není doporučená volba pro " "produkční servery. Kdokoli kdo zná URL phpMyAdminu může přímo přistoupit k " -"Vašemu phpMyAdmin panelu. Nastavte [a@?page=servers&mode=edit&id=" -"%1$d#tab_Server]typ autentizace[/a] na [kbd]cookie[/kbd] nebo [kbd]http[/" -"kbd]." +"Vašemu phpMyAdmin panelu. Nastavte [a@?page=servers&mode=edit&id=%1" +"$d#tab_Server]typ autentizace[/a] na [kbd]cookie[/kbd] nebo [kbd]http[/kbd]." #: setup/lib/messages.inc.php:236 msgid "You should use mysqli for performance reasons" @@ -8045,16 +8029,19 @@ msgid "Flush the table (FLUSH)" msgstr "Vyprázdnit vyrovnávací paměť pro tabulku („FLUSH“)" #: tbl_operations.php:642 -#| msgid "Table name" -msgid "Table removal" -msgstr "Odstranění tabulky" +#, fuzzy +#| msgid "Delete tracking data for this table" +msgid "Delete data or table" +msgstr "Odstranit všechny informace o sledování této tabulky" #: tbl_operations.php:657 msgid "Empty the table (TRUNCATE)" msgstr "Vyprázdnit tabulku (TRUNCATE)" #: tbl_operations.php:675 -msgid "Drop the table (DROP)" +#, fuzzy +#| msgid "Drop the table (DROP)" +msgid "Delete the table (DROP)" msgstr "Odstranit tabulku (DROP)" #: tbl_operations.php:696 @@ -8425,6 +8412,10 @@ msgstr "Jméno pohledu" msgid "Rename view to" msgstr "Přejmenovat pohled na" +#~| msgid "Table name" +#~ msgid "Table removal" +#~ msgstr "Odstranění tabulky" + #~ msgid "BLOB Repository" #~ msgstr "Skladiště BLOBů" diff --git a/po/cy.po b/po/cy.po index 44d4bef51..aeb4c8a53 100644 --- a/po/cy.po +++ b/po/cy.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-27 10:12+0200\n" +"POT-Creation-Date: 2010-07-28 05:45-0400\n" "PO-Revision-Date: 2010-06-07 20:23+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.1\n" @@ -615,8 +615,8 @@ msgstr "Nid yw tracio'n weithredol" #: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, 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." @@ -813,8 +813,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." @@ -1475,11 +1475,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 "" @@ -2001,8 +2001,8 @@ msgstr "enw tabl" #, 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." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is." msgstr "" #: libraries/display_export.lib.php:196 @@ -4662,8 +4662,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:1680 @@ -7537,16 +7537,20 @@ msgid "Flush the table (FLUSH)" msgstr "" #: tbl_operations.php:642 -msgid "Table removal" -msgstr "" +#, fuzzy +#| msgid "Delete tracking data for this table" +msgid "Delete data or table" +msgstr "Dilëwch data tracio ar gyfer y tabl hwn" #: tbl_operations.php:657 msgid "Empty the table (TRUNCATE)" msgstr "" #: tbl_operations.php:675 -msgid "Drop the table (DROP)" -msgstr "" +#, fuzzy +#| msgid "Copy database to" +msgid "Delete the table (DROP)" +msgstr "Copïwch y gronfa ddata i" #: tbl_operations.php:696 msgid "Partition maintenance" diff --git a/po/da.po b/po/da.po index 2383a4c4c..0f519ae54 100644 --- a/po/da.po +++ b/po/da.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-27 10:12+0200\n" +"POT-Creation-Date: 2010-07-28 05:45-0400\n" "PO-Revision-Date: 2010-07-21 14:55+0200\n" "Last-Translator: Marc Delisle \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.1\n" @@ -621,8 +621,8 @@ msgstr "" #: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, 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:419 db_structure.php:433 libraries/header.inc.php:125 @@ -818,11 +818,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:277 import.php:330 libraries/File.class.php:566 @@ -1538,8 +1538,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." @@ -2078,8 +2078,8 @@ msgstr "tabelnavn" #, 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." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is." 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 " @@ -4946,14 +4946,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:1680 msgid "The selected user was not found in the privilege table." @@ -7965,17 +7965,19 @@ msgstr "Flush tabellen (\"FLUSH\")" #: tbl_operations.php:642 #, fuzzy -#| msgid "Table name" -msgid "Table removal" -msgstr "Tabelnavn" +#| msgid "Dumping data for table" +msgid "Delete data or table" +msgstr "Data dump for tabellen" #: tbl_operations.php:657 msgid "Empty the table (TRUNCATE)" msgstr "" #: tbl_operations.php:675 -msgid "Drop the table (DROP)" -msgstr "" +#, fuzzy +#| msgid "Copy database to" +msgid "Delete the table (DROP)" +msgstr "Kopiér database til" #: tbl_operations.php:696 msgid "Partition maintenance" @@ -8355,6 +8357,11 @@ msgstr "VIEW navn" msgid "Rename view to" msgstr "" +#, fuzzy +#~| msgid "Table name" +#~ msgid "Table removal" +#~ msgstr "Tabelnavn" + #, fuzzy #~| msgid "Enabled" #~ msgctxt "BLOB repository" diff --git a/po/de.po b/po/de.po index ed62f040e..06dd13fff 100644 --- a/po/de.po +++ b/po/de.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-27 10:12+0200\n" +"POT-Creation-Date: 2010-07-28 05:45-0400\n" "PO-Revision-Date: 2010-07-21 14:45+0200\n" "Last-Translator: Marc Delisle \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.1\n" @@ -618,11 +618,11 @@ msgstr "Tracking ist nicht aktiviert." #: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, 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:419 db_structure.php:433 libraries/header.inc.php:125 #: libraries/tbl_info.inc.php:60 tbl_structure.php:183 test/theme.php:73 @@ -817,11 +817,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:277 import.php:330 libraries/File.class.php:566 #: libraries/File.class.php:676 @@ -1491,8 +1491,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 " @@ -2042,8 +2042,8 @@ msgstr "Tabellen-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." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is." 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 " @@ -3943,8 +3943,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:724 server_engines.php:56 #: tbl_operations.php:352 @@ -4998,8 +4998,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, " @@ -8286,17 +8286,19 @@ msgstr "Leeren des Tabellencaches (\"FLUSH\")" #: tbl_operations.php:642 #, fuzzy -#| msgid "Table name" -msgid "Table removal" -msgstr "Tabellenname" +#| msgid "Delete tracking data for this table" +msgid "Delete data or table" +msgstr "Lösche die Verlaufsdaten für diese Tabelle" #: tbl_operations.php:657 msgid "Empty the table (TRUNCATE)" msgstr "" #: tbl_operations.php:675 -msgid "Drop the table (DROP)" -msgstr "" +#, fuzzy +#| msgid "Go to database" +msgid "Delete the table (DROP)" +msgstr "Gehe zur Datenbank" #: tbl_operations.php:696 msgid "Partition maintenance" @@ -8677,6 +8679,11 @@ msgstr "VIEW Name" msgid "Rename view to" msgstr "View umbenennen in" +#, fuzzy +#~| msgid "Table name" +#~ msgid "Table removal" +#~ msgstr "Tabellenname" + #~ msgid "BLOB Repository" #~ msgstr "BLOB-Repository" diff --git a/po/el.po b/po/el.po index 893f011a3..84e99a0ba 100644 --- a/po/el.po +++ b/po/el.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-27 10:12+0200\n" +"POT-Creation-Date: 2010-07-28 05:45-0400\n" "PO-Revision-Date: 2010-03-30 23:16+0200\n" "Last-Translator: Michal \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.1\n" @@ -621,11 +621,11 @@ msgstr "Η παρακολούθηση δεν έιναι ενεργοποιημέ #: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, 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:419 db_structure.php:433 libraries/header.inc.php:125 #: libraries/tbl_info.inc.php:60 tbl_structure.php:183 test/theme.php:73 @@ -821,11 +821,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:277 import.php:330 libraries/File.class.php:566 #: libraries/File.class.php:676 @@ -1521,8 +1521,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 για να δημιουργήσετε ένα." @@ -2066,8 +2066,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." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is." msgstr "" "Αυτή η τιμή μετατρέπεται με χρήση της συνάρτησης %1$sstrftime%2$s, έτσι " "μπορείτε να χρησιμοποιήσετε φράσεις μορφής χρόνου. Επιπρόσθετα, θα γίνουν " @@ -3883,8 +3883,8 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" "Ο επικυρωτής SQL δεν μπόρεσε να ενεργοποιηθεί. Παρακαλώ ελέγξτε ότι έχετε " -"εγκαταστήσει της απαραίτητες επεκτάσεις της php όπως περιγράφεται στην " -"%sτεκμηρίωση%s." +"εγκαταστήσει της απαραίτητες επεκτάσεις της php όπως περιγράφεται στην %" +"sτεκμηρίωση%s." #: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107 msgid "Table seems to be empty!" @@ -5026,8 +5026,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. Το περιεχόμενο αυτών των πινάκων μπορεί " @@ -7408,8 +7408,8 @@ msgstr "" "Ορίζετε τον τύπο επικύρωσης [kbd]ρύθμισης[/kbd] και περιλαμβάνει όνομα " "χρήστη και κωδικό πρόσβασης για αυτόματη σύνδεση, αν και δεν προτείνεται. " "Όποιος γνωρίζει ή υποθέτει τη διεύθυνση URL του phpMyAdmin μπορεί να έχει " -"άμεση πρόσβαση. Ορίστε τον [a@?page=servers&mode=edit&id=" -"%1$d#tab_Server]τύπο επικύρωσης[/a] σε [kbd]cookie[/kbd] ή [kbd]http[/kbd]." +"άμεση πρόσβαση. Ορίστε τον [a@?page=servers&mode=edit&id=%1" +"$d#tab_Server]τύπο επικύρωσης[/a] σε [kbd]cookie[/kbd] ή [kbd]http[/kbd]." #: setup/lib/messages.inc.php:236 msgid "You should use mysqli for performance reasons" @@ -7575,8 +7575,8 @@ msgid "" "to." msgstr "" "Αν νομίζετε ότι είναι απαραίτητο, χρησιμοποιήστε πρόσθετες ρυθμίσεις " -"προστασίας - ρυθμίσεις [a@?page=servers&mode=edit&id=" -"%1$d#tab_Server_config]επικύρωση διακομιστή[/a] και [a@?page=form&" +"προστασίας - ρυθμίσεις [a@?page=servers&mode=edit&id=%1" +"$d#tab_Server_config]επικύρωση διακομιστή[/a] και [a@?page=form&" "formset=features#tab_Security]λίστα αξιόπιστων διακομιστών[/a]. Ωστόσο, η " "βασισμένη στις ΙΡ προστασία δεν είναι αξιόπιστη αν ο πάροχός έχει χιλιάδες " "χρήστες που συνδέονται." @@ -8361,17 +8361,19 @@ msgstr "Εκκαθάριση («FLUSH») πίνακα" #: tbl_operations.php:642 #, fuzzy -#| msgid "Table name" -msgid "Table removal" -msgstr "Ονομασία πίνακας" +#| msgid "Delete tracking data for this table" +msgid "Delete data or table" +msgstr "Διαγραφή δεδομένων παρακολούθησης για αυτόν τον πίνακα" #: tbl_operations.php:657 msgid "Empty the table (TRUNCATE)" msgstr "" #: tbl_operations.php:675 -msgid "Drop the table (DROP)" -msgstr "" +#, fuzzy +#| msgid "Go to database" +msgid "Delete the table (DROP)" +msgstr "Μετάβαση στη βάση δεδομένων" #: tbl_operations.php:696 msgid "Partition maintenance" @@ -8757,6 +8759,11 @@ msgstr "ΠΡΟΒΟΛΗ ονόματος" msgid "Rename view to" msgstr "Μετονομασία πίνακα σε" +#, fuzzy +#~| msgid "Table name" +#~ msgid "Table removal" +#~ msgstr "Ονομασία πίνακας" + #~ msgid "BLOB Repository" #~ msgstr "Αποθήκη BLOB" @@ -8788,9 +8795,8 @@ msgstr "Μετονομασία πίνακα σε" #~ "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " #~ "extension. Please check your PHP configuration." #~ msgstr "" -#~ "δεν ήταν δυνατή η φόρτωση της επέκτασης [a@http://php.net/" -#~ "%1$s@Documentation][em]%1$s[/em][/a], παρακαλώ ελέγξτε τις ρυθμίσεις της " -#~ "PHP" +#~ "δεν ήταν δυνατή η φόρτωση της επέκτασης [a@http://php.net/%1" +#~ "$s@Documentation][em]%1$s[/em][/a], παρακαλώ ελέγξτε τις ρυθμίσεις της PHP" #~ msgid "" #~ "Couldn't load the iconv or recode extension needed for charset " @@ -8986,9 +8992,8 @@ msgstr "Μετονομασία πίνακα σε" #~ "Cannot load [a@http://php.net/%1@Documentation][em]%1[/em][/a] extension. " #~ "Please check your PHP configuration." #~ msgstr "" -#~ "δεν ήταν δυνατή η φόρτωση της επέκτασης [a@http://php.net/" -#~ "%1$s@Documentation][em]%1$s[/em][/a], παρακαλώ ελέγξτε τις ρυθμίσεις της " -#~ "PHP" +#~ "δεν ήταν δυνατή η φόρτωση της επέκτασης [a@http://php.net/%1" +#~ "$s@Documentation][em]%1$s[/em][/a], παρακαλώ ελέγξτε τις ρυθμίσεις της PHP" #~ msgid "" #~ "This server is not configured as master in a replication process. Would " @@ -9054,8 +9059,8 @@ msgstr "Μετονομασία πίνακα σε" #~ "The "deleted" users will still be able to access the server as " #~ "usual until the privileges are reloaded." #~ msgstr "" -#~ "Οι «διεγραφθέντες» χρήστες θα συνεχίσουν να έχουν πρόσβαση στον " -#~ "διακομιστή μέχρις ότου να επαναφορτωθούν οι πίνακες δικαιωμάτων." +#~ "Οι «διεγραφθέντες» χρήστες θα συνεχίσουν να έχουν πρόσβαση στον διακομιστή " +#~ "μέχρις ότου να επαναφορτωθούν οι πίνακες δικαιωμάτων." #~ msgid "Just delete the users from the privilege tables." #~ msgstr "Απλή διαγραφή των χρηστών από τους πίνακες δικαιωμάτων." diff --git a/po/en_GB.po b/po/en_GB.po index 342cb2058..a5d94b40f 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-27 10:12+0200\n" +"POT-Creation-Date: 2010-07-28 05:45-0400\n" "PO-Revision-Date: 2010-07-26 16:54+0200\n" "Last-Translator: Robert Readman \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.1\n" @@ -610,11 +610,11 @@ msgstr "Tracking is not active." #: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, 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:419 db_structure.php:433 libraries/header.inc.php:125 #: libraries/tbl_info.inc.php:60 tbl_structure.php:183 test/theme.php:73 @@ -808,11 +808,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:277 import.php:330 libraries/File.class.php:566 #: libraries/File.class.php:676 @@ -1474,11 +1474,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 "" @@ -2004,12 +2004,12 @@ msgstr "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." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is." 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:196 msgid "remember template" @@ -4840,13 +4840,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:1680 msgid "The selected user was not found in the privilege table." @@ -8030,17 +8030,19 @@ msgstr "Flush the table (FLUSH)" #: tbl_operations.php:642 #, fuzzy -#| msgid "Table name" -msgid "Table removal" -msgstr "Table name" +#| msgid "Delete tracking data for this table" +msgid "Delete data or table" +msgstr "Delete tracking data for this table" #: tbl_operations.php:657 msgid "Empty the table (TRUNCATE)" msgstr "" #: tbl_operations.php:675 -msgid "Drop the table (DROP)" -msgstr "" +#, fuzzy +#| msgid "Go to database" +msgid "Delete the table (DROP)" +msgstr "Go to database" #: tbl_operations.php:696 msgid "Partition maintenance" @@ -8412,6 +8414,11 @@ msgstr "VIEW name" msgid "Rename view to" msgstr "Rename view to" +#, fuzzy +#~| msgid "Table name" +#~ msgid "Table removal" +#~ msgstr "Table name" + #~ msgid "BLOB Repository" #~ msgstr "BLOB Repository" diff --git a/po/es.po b/po/es.po index ba4d3e739..3476f4ddb 100644 --- a/po/es.po +++ b/po/es.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-27 10:12+0200\n" +"POT-Creation-Date: 2010-07-28 05:45-0400\n" "PO-Revision-Date: 2010-03-12 11:23+0200\n" "Last-Translator: Michal \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.1\n" @@ -620,11 +620,11 @@ msgstr "" #: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, 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:419 db_structure.php:433 libraries/header.inc.php:125 #: libraries/tbl_info.inc.php:60 tbl_structure.php:183 test/theme.php:73 @@ -828,8 +828,8 @@ msgstr "Su archivo (MySQL dump) ha sido guardado con el nombre %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 %sdocumentation%s para hallar modos de superar esta limitante." @@ -1539,8 +1539,8 @@ msgstr "¡No se halló la plantilla de interfaz (theme) %s!" #, php-format msgid "Theme path not found for theme %s!" msgstr "" -"¡No se halló la ruta de la plantilla de interfaz (theme) para la plantilla " -"%s!" +"¡No se halló la ruta de la plantilla de interfaz (theme) para la plantilla %" +"s!" #: libraries/Theme_Manager.class.php:291 test/theme.php:160 themes.php:20 #: themes.php:40 @@ -1561,8 +1561,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 creó un archivo de configuración. " "Utilice %1$ssetup script%2$s para crear una." @@ -2113,8 +2113,8 @@ msgstr "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." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is." msgstr "" "Este valor es interpretado usando %1$sstrftime%2$s; así, usted puede usar " "cadenas de caracteres para formatear el tiempo. De manera adicional, " @@ -4395,8 +4395,8 @@ msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " "issues." msgstr "" -"El servidor está utilizando Suhosin. Por favor, refiérase a %sdocumentation" -"%s para posibles ajustes." +"El servidor está utilizando Suhosin. Por favor, refiérase a %sdocumentation%" +"s para posibles ajustes." #: navigation.php:60 navigation.php:61 navigation.php:64 #, fuzzy @@ -5086,8 +5086,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 " @@ -8339,17 +8339,18 @@ msgstr "Vaciar el caché de la tabla (\"FLUSH\")" #: tbl_operations.php:642 #, fuzzy -#| msgid "Table name" -msgid "Table removal" -msgstr "Nombre de la tabla" +#| msgid "Dumping data for table" +msgid "Delete data or table" +msgstr "Volcar la base de datos para la tabla" #: tbl_operations.php:657 msgid "Empty the table (TRUNCATE)" msgstr "" #: tbl_operations.php:675 -msgid "Drop the table (DROP)" -msgstr "" +#, fuzzy +msgid "Delete the table (DROP)" +msgstr "No hay bases de datos" #: tbl_operations.php:696 msgid "Partition maintenance" @@ -8741,6 +8742,11 @@ msgstr "(VIEW) VER nombre" msgid "Rename view to" msgstr "Cambiar el nombre de la tabla a" +#, fuzzy +#~| msgid "Table name" +#~ msgid "Table removal" +#~ msgstr "Nombre de la tabla" + #~ msgid "BLOB Repository" #~ msgstr "Repositorio BLOB" diff --git a/po/et.po b/po/et.po index 58b966645..aa0a54283 100644 --- a/po/et.po +++ b/po/et.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-27 10:12+0200\n" +"POT-Creation-Date: 2010-07-28 05:45-0400\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:36 browse_foreigners.php:57 @@ -617,8 +617,8 @@ msgstr "" #: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, 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:419 db_structure.php:433 libraries/header.inc.php:125 @@ -822,8 +822,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." @@ -1536,8 +1536,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." @@ -2077,8 +2077,8 @@ msgstr "tabeli nimi" #, 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." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is." 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. " @@ -4955,8 +4955,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 " @@ -8021,17 +8021,18 @@ msgstr "Ühtlusta tabelid (\"FLUSH\")" #: tbl_operations.php:642 #, fuzzy -#| msgid "Table name" -msgid "Table removal" -msgstr "Tabeli nimi" +#| msgid "Dumping data for table" +msgid "Delete data or table" +msgstr "Tabeli andmete salvestamine" #: tbl_operations.php:657 msgid "Empty the table (TRUNCATE)" msgstr "" #: tbl_operations.php:675 -msgid "Drop the table (DROP)" -msgstr "" +#, fuzzy +msgid "Delete the table (DROP)" +msgstr "Pole andmebaase" #: tbl_operations.php:696 #, fuzzy @@ -8418,6 +8419,11 @@ msgstr "" msgid "Rename view to" msgstr "Nimeta tabel ümber" +#, fuzzy +#~| msgid "Table name" +#~ msgid "Table removal" +#~ msgstr "Tabeli nimi" + #, fuzzy #~| msgid "Enabled" #~ msgctxt "BLOB repository" diff --git a/po/eu.po b/po/eu.po index 2502321d2..f579edeca 100644 --- a/po/eu.po +++ b/po/eu.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-27 10:12+0200\n" +"POT-Creation-Date: 2010-07-28 05:45-0400\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" @@ -621,8 +621,8 @@ msgstr "" #: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, 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:419 db_structure.php:433 libraries/header.inc.php:125 @@ -824,8 +824,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:277 import.php:330 libraries/File.class.php:566 @@ -1529,8 +1529,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 @@ -2062,8 +2062,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." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is." msgstr "" #: libraries/display_export.lib.php:196 @@ -4900,8 +4900,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 " @@ -7836,16 +7836,19 @@ msgid "Flush the table (FLUSH)" msgstr "Taularen cachea hustu (\"FLUSH\")" #: tbl_operations.php:642 -msgid "Table removal" -msgstr "" +#, fuzzy +#| msgid "Dumping data for table" +msgid "Delete data or table" +msgstr "Taula honen datuak irauli" #: tbl_operations.php:657 msgid "Empty the table (TRUNCATE)" msgstr "" #: tbl_operations.php:675 -msgid "Drop the table (DROP)" -msgstr "" +#, fuzzy +msgid "Delete the table (DROP)" +msgstr "Datu-baserik ez" #: tbl_operations.php:696 #, fuzzy diff --git a/po/fa.po b/po/fa.po index d4d7332a3..1e17d7f38 100644 --- a/po/fa.po +++ b/po/fa.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-27 10:12+0200\n" +"POT-Creation-Date: 2010-07-28 05:45-0400\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" @@ -614,8 +614,8 @@ msgstr "" #: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, 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:419 db_structure.php:433 libraries/header.inc.php:125 @@ -814,8 +814,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:277 import.php:330 libraries/File.class.php:566 @@ -1512,8 +1512,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 @@ -2044,8 +2044,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." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is." msgstr "" #: libraries/display_export.lib.php:196 @@ -3801,9 +3801,9 @@ msgid "" msgstr "" "اگر نوع ستون \"enum\" يا \"set\" مي‌باشد ، لطفا براي ورود مقادير از اين قالب " "استفاده نماييد : 'a','b','c'...
      اگر احتياج داشتيد كه از علامت مميز " -"برعكس(بك‌اسلش) (\" \\ \") يا نقل‌قول تكي (\" ' \") در آن مقادير استفاده " -"نماييد ، قبل از آنها علامت (\" \\ \") را بگذاريد
      (براي مثال'\\\\xyz' " -"يا 'a\\'b')" +"برعكس(بك‌اسلش) (\" \\ \") يا نقل‌قول تكي (\" ' \") در آن مقادير استفاده نماييد " +"، قبل از آنها علامت (\" \\ \") را بگذاريد
      (براي مثال'\\\\xyz' يا 'a" +"\\'b')" #: libraries/tbl_properties.inc.php:105 msgid "" @@ -3837,9 +3837,9 @@ msgid "" msgstr "" "اگر نوع ستون \"enum\" يا \"set\" مي‌باشد ، لطفا براي ورود مقادير از اين قالب " "استفاده نماييد : 'a','b','c'...
      اگر احتياج داشتيد كه از علامت مميز " -"برعكس(بك‌اسلش) (\" \\ \") يا نقل‌قول تكي (\" ' \") در آن مقادير استفاده " -"نماييد ، قبل از آنها علامت (\" \\ \") را بگذاريد
      (براي مثال'\\\\xyz' " -"يا 'a\\'b')" +"برعكس(بك‌اسلش) (\" \\ \") يا نقل‌قول تكي (\" ' \") در آن مقادير استفاده نماييد " +"، قبل از آنها علامت (\" \\ \") را بگذاريد
      (براي مثال'\\\\xyz' يا 'a" +"\\'b')" #: libraries/tbl_properties.inc.php:391 #, fuzzy @@ -4058,8 +4058,8 @@ msgid "" "this security hole by setting a password for user 'root'." msgstr "" "پرونده پيكربندي شما حاوي تنظيماتي است (كاربر root بدون اسم رمز) كه مرتبط با " -"حساب پيش‌فرض MySQL مي‌باشد. اجراي MySQL با اين پيش‌فرض باعث ورود غيرمجاز " -"مي‌شود ، و شما بايد اين حفره امنيتي را ذرست كنيد." +"حساب پيش‌فرض MySQL مي‌باشد. اجراي MySQL با اين پيش‌فرض باعث ورود غيرمجاز مي‌شود " +"، و شما بايد اين حفره امنيتي را ذرست كنيد." #: main.php:273 msgid "" @@ -4780,8 +4780,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:1680 @@ -7682,16 +7682,19 @@ msgid "Flush the table (FLUSH)" msgstr "Flush the table (\"FLUSH\")" #: tbl_operations.php:642 -msgid "Table removal" -msgstr "" +#, fuzzy +#| msgid "Dumping data for table" +msgid "Delete data or table" +msgstr "حذف داده‌هاي جدول" #: tbl_operations.php:657 msgid "Empty the table (TRUNCATE)" msgstr "" #: tbl_operations.php:675 -msgid "Drop the table (DROP)" -msgstr "" +#, fuzzy +msgid "Delete the table (DROP)" +msgstr "No databases" #: tbl_operations.php:696 #, fuzzy diff --git a/po/fi.po b/po/fi.po index 865f8937d..4df68e241 100644 --- a/po/fi.po +++ b/po/fi.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-27 10:12+0200\n" +"POT-Creation-Date: 2010-07-28 05:45-0400\n" "PO-Revision-Date: 2010-04-30 18:08+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.1\n" @@ -621,11 +621,11 @@ msgstr "Seuranta ei ole käytössä." #: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, 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:419 db_structure.php:433 libraries/header.inc.php:125 #: libraries/tbl_info.inc.php:60 tbl_structure.php:183 test/theme.php:73 @@ -820,8 +820,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." @@ -1544,11 +1544,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 "" @@ -2091,8 +2091,8 @@ msgstr "taulun nimi" #, 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." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is." msgstr "" "Tämä arvo on %1$sstrftime%2$s-funktion mukainen, joten " "ajanmuodostostusmerkkijonoja voi käyttää. Lisäksi tapahtuu seuraavat " @@ -5027,8 +5027,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 " @@ -8320,17 +8320,19 @@ msgstr "Tyhjennä taulun välimuisti (\"FLUSH\")" #: tbl_operations.php:642 #, fuzzy -#| msgid "Table name" -msgid "Table removal" -msgstr "Taulun nimi" +#| msgid "Delete tracking data for this table" +msgid "Delete data or table" +msgstr "Poista tämän taulun seurantatiedot" #: tbl_operations.php:657 msgid "Empty the table (TRUNCATE)" msgstr "" #: tbl_operations.php:675 -msgid "Drop the table (DROP)" -msgstr "" +#, fuzzy +#| msgid "Go to database" +msgid "Delete the table (DROP)" +msgstr "Siirry tietokantaan" #: tbl_operations.php:696 msgid "Partition maintenance" @@ -8715,6 +8717,11 @@ msgstr "VIEW-arvon nimi" msgid "Rename view to" msgstr "Nimeä taulu uudelleen" +#, fuzzy +#~| msgid "Table name" +#~ msgid "Table removal" +#~ msgstr "Taulun nimi" + #~ msgid "BLOB Repository" #~ msgstr "BLOB-tietokanta" diff --git a/po/fr.po b/po/fr.po index 9a5ff158d..dd929e136 100644 --- a/po/fr.po +++ b/po/fr.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-27 10:12+0200\n" +"POT-Creation-Date: 2010-07-28 05:45-0400\n" "PO-Revision-Date: 2010-07-21 14:41+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.1\n" @@ -610,11 +610,11 @@ msgstr "Le suivi n'est pas activé." #: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, 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 d'enregistrements. Veuillez référer à " -"%sdocumentation%s." +"Cette vue contient au moins ce nombre d'enregistrements. Veuillez référer à %" +"sdocumentation%s." #: db_structure.php:419 db_structure.php:433 libraries/header.inc.php:125 #: libraries/tbl_info.inc.php:60 tbl_structure.php:183 test/theme.php:73 @@ -811,8 +811,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 " @@ -1488,8 +1488,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." @@ -2030,8 +2030,8 @@ msgstr "nom de 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." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is." 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 " @@ -4902,8 +4902,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 " @@ -7212,9 +7212,9 @@ msgstr "" "La méthode d'authentification [kbd]config[/kbd] permet une connexion " "automatique, ce qui n'est pas souhaitable dans un environnement réel. Toute " "personne qui connaît l'URL d'accès peut entrer dans votre phpMyAdmin. Il est " -"suggéré de régler votre [a@?page=servers&mode=edit&id=" -"%1$d#tab_Server]type d'authentification[/a] à [kbd]cookie[/kbd] ou [kbd]http" -"[/kbd]." +"suggéré de régler votre [a@?page=servers&mode=edit&id=%1" +"$d#tab_Server]type d'authentification[/a] à [kbd]cookie[/kbd] ou [kbd]http[/" +"kbd]." #: setup/lib/messages.inc.php:236 msgid "You should use mysqli for performance reasons" @@ -8141,17 +8141,19 @@ msgstr "Recharger la table (FLUSH)" #: tbl_operations.php:642 #, fuzzy -#| msgid "Table name" -msgid "Table removal" -msgstr "Nom de la table" +#| msgid "Delete tracking data for this table" +msgid "Delete data or table" +msgstr "Supprimer les données de suivi de cette table" #: tbl_operations.php:657 msgid "Empty the table (TRUNCATE)" msgstr "" #: tbl_operations.php:675 -msgid "Drop the table (DROP)" -msgstr "" +#, fuzzy +#| msgid "Go to database" +msgid "Delete the table (DROP)" +msgstr "Aller à la base de données" #: tbl_operations.php:696 msgid "Partition maintenance" @@ -8527,6 +8529,11 @@ msgstr "Nom de la vue" msgid "Rename view to" msgstr "Changer le nom de la vue pour" +#, fuzzy +#~| msgid "Table name" +#~ msgid "Table removal" +#~ msgstr "Nom de la table" + #~ msgid "BLOB Repository" #~ msgstr "Dépôt BLOB" @@ -8555,8 +8562,8 @@ msgstr "Changer le nom de la vue pour" #~ "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " #~ "extension. Please check your PHP configuration." #~ msgstr "" -#~ "PHP ne peut charger l'extension [a@http://php.net/%1$s@Documentation]" -#~ "[em]%1$s[/em][/a]. Veuillez vérifier votre configuration de PHP." +#~ "PHP ne peut charger l'extension [a@http://php.net/%1$s@Documentation][em]%" +#~ "1$s[/em][/a]. Veuillez vérifier votre configuration de PHP." #~ msgid "" #~ "Couldn't load the iconv or recode extension needed for charset " diff --git a/po/gl.po b/po/gl.po index a33f136d7..64bbf93d2 100644 --- a/po/gl.po +++ b/po/gl.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-27 10:12+0200\n" +"POT-Creation-Date: 2010-07-28 05:45-0400\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" @@ -622,11 +622,11 @@ msgstr "O seguemento non está activado." #: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, 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:419 db_structure.php:433 libraries/header.inc.php:125 #: libraries/tbl_info.inc.php:60 tbl_structure.php:183 test/theme.php:73 @@ -821,11 +821,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:277 import.php:330 libraries/File.class.php:566 #: libraries/File.class.php:676 @@ -1547,8 +1547,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." @@ -2098,8 +2098,8 @@ msgstr "nome da táboa" #, 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." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is." msgstr "" "Este valor interprétase utilizando %1$sstrftime%2$s, de maneira que pode " "utilizar cadeas de formato de hora. Produciranse transformacións en " @@ -4364,8 +4364,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:60 navigation.php:61 navigation.php:64 #, fuzzy @@ -5041,8 +5041,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 " @@ -8367,17 +8367,19 @@ msgstr "Fechar a táboa (\"FLUSH\")" #: tbl_operations.php:642 #, fuzzy -#| msgid "Table name" -msgid "Table removal" -msgstr "Nome da táboa" +#| msgid "Dumping data for table" +msgid "Delete data or table" +msgstr "A extraer datos da táboa" #: tbl_operations.php:657 msgid "Empty the table (TRUNCATE)" msgstr "" #: tbl_operations.php:675 -msgid "Drop the table (DROP)" -msgstr "" +#, fuzzy +#| msgid "Go to database" +msgid "Delete the table (DROP)" +msgstr "Ir á base de datos" #: tbl_operations.php:696 msgid "Partition maintenance" @@ -8763,6 +8765,11 @@ msgstr "Nome da VISTA" msgid "Rename view to" msgstr "Mudar o nome da táboa para" +#, fuzzy +#~| msgid "Table name" +#~ msgid "Table removal" +#~ msgstr "Nome da táboa" + #~ msgid "BLOB Repository" #~ msgstr "Repositorio de BLOB" diff --git a/po/he.po b/po/he.po index a272067d0..18f3805e6 100644 --- a/po/he.po +++ b/po/he.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-27 10:12+0200\n" +"POT-Creation-Date: 2010-07-28 05:45-0400\n" "PO-Revision-Date: 2010-03-12 09:15+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: hebrew \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:36 browse_foreigners.php:57 @@ -612,8 +612,8 @@ msgstr "" #: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, 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:419 db_structure.php:433 libraries/header.inc.php:125 @@ -813,8 +813,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:277 import.php:330 libraries/File.class.php:566 @@ -1518,8 +1518,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 @@ -2052,8 +2052,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." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is." msgstr "" #: libraries/display_export.lib.php:196 @@ -4797,8 +4797,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. התוכן של " "הטבלאות האלו יכול להיות שונה מההרשאות שהשרת משתמש בהן, אם הן שונו באופן " @@ -7723,16 +7723,19 @@ msgid "Flush the table (FLUSH)" msgstr "ריקון טבלה (\"FLUSH\")" #: tbl_operations.php:642 -msgid "Table removal" -msgstr "" +#, fuzzy +#| msgid "Dumping data for table" +msgid "Delete data or table" +msgstr "הוצאת מידע עבור טבלה" #: tbl_operations.php:657 msgid "Empty the table (TRUNCATE)" msgstr "" #: tbl_operations.php:675 -msgid "Drop the table (DROP)" -msgstr "" +#, fuzzy +msgid "Delete the table (DROP)" +msgstr "אין מאגרי נתונים" #: tbl_operations.php:696 #, fuzzy diff --git a/po/hi.po b/po/hi.po index b2551c572..3ba811bbf 100644 --- a/po/hi.po +++ b/po/hi.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-27 10:12+0200\n" +"POT-Creation-Date: 2010-07-28 05:45-0400\n" "PO-Revision-Date: 2010-05-21 05:48+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.1\n" @@ -620,8 +620,8 @@ msgstr "ट्रैकिंग सक्रिय नहीं है." #: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, 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:419 db_structure.php:433 libraries/header.inc.php:125 @@ -816,8 +816,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 पढ़ें." @@ -1479,11 +1479,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 "" @@ -2003,8 +2003,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." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is." msgstr "" #: libraries/display_export.lib.php:196 @@ -4694,8 +4694,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:1680 @@ -7568,16 +7568,20 @@ msgid "Flush the table (FLUSH)" msgstr " टेबल को Flush करें (\"FLUSH\")" #: tbl_operations.php:642 -msgid "Table removal" -msgstr "" +#, fuzzy +#| msgid "Delete tracking data for this table" +msgid "Delete data or table" +msgstr "इस तालिका के लिए ट्रैकिंग डेटा हटाएँ" #: tbl_operations.php:657 msgid "Empty the table (TRUNCATE)" msgstr "" #: tbl_operations.php:675 -msgid "Drop the table (DROP)" -msgstr "" +#, fuzzy +#| msgid "Copy database to" +msgid "Delete the table (DROP)" +msgstr "डेटाबेस को ______ में कॉपी करें" #: tbl_operations.php:696 msgid "Partition maintenance" diff --git a/po/hr.po b/po/hr.po index 80a48a3d0..e2023abf0 100644 --- a/po/hr.po +++ b/po/hr.po @@ -3,16 +3,16 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-27 10:12+0200\n" +"POT-Creation-Date: 2010-07-28 05:45-0400\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" -"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" +"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" "X-Generator: Pootle 2.0.1\n" #: browse_foreigners.php:36 browse_foreigners.php:57 @@ -621,8 +621,8 @@ msgstr "" #: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, 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." @@ -827,11 +827,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:277 import.php:330 libraries/File.class.php:566 #: libraries/File.class.php:676 @@ -1550,8 +1550,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" @@ -2095,8 +2095,8 @@ msgstr "naziv tablice" #, 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." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is." msgstr "" "Vrijednost se interpretira pomoću %1$sstrftime%2$s, pa možete upotrijebiti " "naredbe oblikovanja vremena. Dodatno se mogu dogoditi sljedeća " @@ -5024,8 +5024,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 " @@ -8109,17 +8109,18 @@ msgstr "Isprazni tablicu (\"FLUSH\")" #: tbl_operations.php:642 #, fuzzy -#| msgid "Table name" -msgid "Table removal" -msgstr "Naziv tablice" +#| msgid "Dumping data for table" +msgid "Delete data or table" +msgstr "Izbacivanje podataka za tablicu" #: tbl_operations.php:657 msgid "Empty the table (TRUNCATE)" msgstr "" #: tbl_operations.php:675 -msgid "Drop the table (DROP)" -msgstr "" +#, fuzzy +msgid "Delete the table (DROP)" +msgstr "Nema baza podataka" #: tbl_operations.php:696 msgid "Partition maintenance" @@ -8505,6 +8506,11 @@ msgstr "Naziv prikaza" msgid "Rename view to" msgstr "Preimenuj tablicu u" +#, fuzzy +#~| msgid "Table name" +#~ msgid "Table removal" +#~ msgstr "Naziv tablice" + #, fuzzy #~| msgid "Enabled" #~ msgctxt "BLOB repository" @@ -8535,8 +8541,8 @@ msgstr "Preimenuj tablicu 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 f9b5e1b56..58c70494d 100644 --- a/po/hu.po +++ b/po/hu.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-27 10:12+0200\n" +"POT-Creation-Date: 2010-07-28 05:45-0400\n" "PO-Revision-Date: 2010-07-22 02:22+0200\n" "Last-Translator: Marc Delisle \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.1\n" @@ -620,11 +620,11 @@ msgstr "" #: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, 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:419 db_structure.php:433 libraries/header.inc.php:125 #: libraries/tbl_info.inc.php:60 tbl_structure.php:183 test/theme.php:73 @@ -826,11 +826,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ásának." +"Ö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ásának." #: import.php:277 import.php:330 libraries/File.class.php:566 #: libraries/File.class.php:676 @@ -1552,11 +1552,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 "" @@ -2102,8 +2102,8 @@ msgstr "tábla neve" #, 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." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is." 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 " @@ -3914,8 +3914,8 @@ 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/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107 @@ -5059,13 +5059,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:1680 msgid "The selected user was not found in the privilege table." @@ -8349,17 +8349,18 @@ msgstr "Tábla kiírása (\"FLUSH\")" #: tbl_operations.php:642 #, fuzzy -#| msgid "Table name" -msgid "Table removal" -msgstr "Tábla neve" +#| msgid "Dumping data for table" +msgid "Delete data or table" +msgstr "A tábla adatainak kiíratása" #: tbl_operations.php:657 msgid "Empty the table (TRUNCATE)" msgstr "" #: tbl_operations.php:675 -msgid "Drop the table (DROP)" -msgstr "" +#, fuzzy +msgid "Delete the table (DROP)" +msgstr "Nincs adatbázis" #: tbl_operations.php:696 msgid "Partition maintenance" @@ -8749,6 +8750,11 @@ msgstr "NÉZET neve" msgid "Rename view to" msgstr "Tábla átnevezése" +#, fuzzy +#~| msgid "Table name" +#~ msgid "Table removal" +#~ msgstr "Tábla neve" + #~ msgid "BLOB Repository" #~ msgstr "BLOB-ratár" diff --git a/po/id.po b/po/id.po index 2128c6092..2fdd2c315 100644 --- a/po/id.po +++ b/po/id.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-27 10:12+0200\n" +"POT-Creation-Date: 2010-07-28 05:45-0400\n" "PO-Revision-Date: 2010-06-16 01:45+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.1\n" @@ -609,11 +609,11 @@ msgstr "Pelacakan tidak aktif." #: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, 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:419 db_structure.php:433 libraries/header.inc.php:125 #: libraries/tbl_info.inc.php:60 tbl_structure.php:183 test/theme.php:73 @@ -808,11 +808,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:277 import.php:330 libraries/File.class.php:566 #: libraries/File.class.php:676 @@ -1520,8 +1520,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 "" #: libraries/auth/config.auth.lib.php:115 @@ -2060,8 +2060,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." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is." msgstr "" #: libraries/display_export.lib.php:196 @@ -4931,8 +4931,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 " @@ -7876,17 +7876,18 @@ msgstr "Tutup tabel (\"FLUSH\")" #: tbl_operations.php:642 #, fuzzy -#| msgid "Table name" -msgid "Table removal" -msgstr "Nama tabel" +#| msgid "Delete tracking data for this table" +msgid "Delete data or table" +msgstr "Hapus pelacakan data untuk tabel ini" #: tbl_operations.php:657 msgid "Empty the table (TRUNCATE)" msgstr "" #: tbl_operations.php:675 -msgid "Drop the table (DROP)" -msgstr "" +#, fuzzy +msgid "Delete the table (DROP)" +msgstr "Database tidak ditemukan" #: tbl_operations.php:696 #, fuzzy @@ -8272,6 +8273,11 @@ msgstr "Nama VIEW" msgid "Rename view to" msgstr "Ubah nama tabel menjadi " +#, fuzzy +#~| msgid "Table name" +#~ msgid "Table removal" +#~ msgstr "Nama tabel" + #~ msgid "BLOB Repository" #~ msgstr "Repositori BLOB" diff --git a/po/it.po b/po/it.po index 68d570858..ab8452731 100644 --- a/po/it.po +++ b/po/it.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-27 10:12+0200\n" +"POT-Creation-Date: 2010-07-28 05:45-0400\n" "PO-Revision-Date: 2010-05-24 21:25+0200\n" "Last-Translator: Fabio \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.1\n" @@ -622,8 +622,8 @@ msgstr "Il tracking non è attivo." #: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, 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 visuale ha, come minimo, questo numero di righe. Per informazioni " "controlla la %sdocumentazione%s." @@ -824,8 +824,8 @@ msgstr "Il dump è stato salvato sul 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 grosso. " "Fai riferimento alla documentazione %sdocumentation%s Per i modi di aggirare " @@ -1499,8 +1499,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." @@ -2038,8 +2038,8 @@ msgstr "nome tabella" #, 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." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is." msgstr "" "Questo valore è interpretato usando %1$sstrftime%2$s: in questo modo puoi " "usare stringhe di formattazione per le date/tempi. Verranno anche aggiunte " @@ -4311,8 +4311,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:60 navigation.php:61 navigation.php:64 #, fuzzy @@ -4995,8 +4995,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 " @@ -8096,17 +8096,19 @@ msgstr "Inizializza (\"FLUSH\") la tabella" #: tbl_operations.php:642 #, fuzzy -#| msgid "Table name" -msgid "Table removal" -msgstr "Nome tabella" +#| msgid "Delete tracking data for this table" +msgid "Delete data or table" +msgstr "Cancella dati di tracciamento per questa tabella" #: tbl_operations.php:657 msgid "Empty the table (TRUNCATE)" msgstr "" #: tbl_operations.php:675 -msgid "Drop the table (DROP)" -msgstr "" +#, fuzzy +#| msgid "Go to database" +msgid "Delete the table (DROP)" +msgstr "Vai al database" #: tbl_operations.php:696 msgid "Partition maintenance" @@ -8495,6 +8497,11 @@ msgstr "Nome VISTA" msgid "Rename view to" msgstr "Rinomina la tabella in" +#, fuzzy +#~| msgid "Table name" +#~ msgid "Table removal" +#~ msgstr "Nome tabella" + #~ msgid "BLOB Repository" #~ msgstr "Repository BLOB" diff --git a/po/ja.po b/po/ja.po index c37193159..2d0afbd27 100644 --- a/po/ja.po +++ b/po/ja.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-27 10:12+0200\n" +"POT-Creation-Date: 2010-07-28 05:45-0400\n" "PO-Revision-Date: 2010-03-12 11:22+0200\n" "Last-Translator: Michal \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.1\n" @@ -618,8 +618,8 @@ msgstr "" #: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, 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:419 db_structure.php:433 libraries/header.inc.php:125 @@ -815,8 +815,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 をご覧ください" @@ -1532,11 +1532,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 "" @@ -2071,8 +2071,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." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is." msgstr "" "このテンプレートは %1$sstrftime%2$s を使って解釈されます。そのため、時間の書" "式文字列を利用できます。また、次の変換も行われます。%3$s それ以外のテキストは" @@ -4968,8 +4968,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 が利用しているテーブルの内容とサーバの" @@ -7962,17 +7962,19 @@ msgstr "テーブルをフラッシュする(\"FLUSH\")" #: tbl_operations.php:642 #, fuzzy -#| msgid "Table name" -msgid "Table removal" -msgstr "テーブル名" +#| msgid "Dumping data for table" +msgid "Delete data or table" +msgstr "テーブルのデータをダンプしています" #: tbl_operations.php:657 msgid "Empty the table (TRUNCATE)" msgstr "" #: tbl_operations.php:675 -msgid "Drop the table (DROP)" -msgstr "" +#, fuzzy +#| msgid "Copy database to" +msgid "Delete the table (DROP)" +msgstr "データベースのコピー先" #: tbl_operations.php:696 msgid "Partition maintenance" @@ -8352,6 +8354,11 @@ msgstr "VIEW の名前" msgid "Rename view to" msgstr "" +#, fuzzy +#~| msgid "Table name" +#~ msgid "Table removal" +#~ msgstr "テーブル名" + #, fuzzy #~| msgid "Enabled" #~ msgctxt "BLOB repository" diff --git a/po/ka.po b/po/ka.po index 9ac914744..9b70c90db 100644 --- a/po/ka.po +++ b/po/ka.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-27 10:12+0200\n" +"POT-Creation-Date: 2010-07-28 05:45-0400\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:36 browse_foreigners.php:57 @@ -619,11 +619,11 @@ msgstr "" #: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, 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:419 db_structure.php:433 libraries/header.inc.php:125 #: libraries/tbl_info.inc.php:60 tbl_structure.php:183 test/theme.php:73 @@ -825,11 +825,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:277 import.php:330 libraries/File.class.php:566 #: libraries/File.class.php:676 @@ -1548,11 +1548,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 "" @@ -2091,12 +2091,12 @@ 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." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is." 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:196 msgid "remember template" @@ -5025,13 +5025,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:1680 msgid "The selected user was not found in the privilege table." @@ -8247,17 +8247,18 @@ msgstr "Flush the table (\"FLUSH\")" #: tbl_operations.php:642 #, fuzzy -#| msgid "Table name" -msgid "Table removal" -msgstr "ცხრილის სახელი" +#| msgid "Dumping data for table" +msgid "Delete data or table" +msgstr "Dumping data for table" #: tbl_operations.php:657 msgid "Empty the table (TRUNCATE)" msgstr "" #: tbl_operations.php:675 -msgid "Drop the table (DROP)" -msgstr "" +#, fuzzy +msgid "Delete the table (DROP)" +msgstr "მონაცემთა ბაზები არაა" #: tbl_operations.php:696 msgid "Partition maintenance" @@ -8646,6 +8647,11 @@ msgstr "VIEW name" msgid "Rename view to" msgstr "Rename table to" +#, fuzzy +#~| msgid "Table name" +#~ msgid "Table removal" +#~ msgstr "ცხრილის სახელი" + #~ msgid "BLOB Repository" #~ msgstr "BLOB რეპოზიტორია" diff --git a/po/ko.po b/po/ko.po index b8489007f..fc45cbb63 100644 --- a/po/ko.po +++ b/po/ko.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-27 10:12+0200\n" +"POT-Creation-Date: 2010-07-28 05:45-0400\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" @@ -321,8 +321,8 @@ msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." msgstr "" -"링크 테이블을 처리하는 추가 기능이 비활성화되어 있습니다. 원인을 확인하려면 " -"%s여기를 클릭%s하십시오." +"링크 테이블을 처리하는 추가 기능이 비활성화되어 있습니다. 원인을 확인하려면 %" +"s여기를 클릭%s하십시오." #: db_operations.php:531 msgid "Edit PDF Pages" @@ -607,8 +607,8 @@ msgstr "트래킹이 활성화되어 있지 않습니다." #: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, 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:419 db_structure.php:433 libraries/header.inc.php:125 @@ -809,8 +809,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:277 import.php:330 libraries/File.class.php:566 @@ -1471,8 +1471,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 를 사용해 설정 파" "일을 생성할 수 있습니다." @@ -1995,8 +1995,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." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is." msgstr "" #: libraries/display_export.lib.php:196 @@ -4052,8 +4052,8 @@ msgid "" "The additional features for working with linked tables have been " "deactivated. To find out why click %shere%s." msgstr "" -"링크 테이블을 처리하는 추가 기능이 비활성화되어 있습니다. 원인을 확인하려면 " -"%s여기를 클릭%s하십시오." +"링크 테이블을 처리하는 추가 기능이 비활성화되어 있습니다. 원인을 확인하려면 %" +"s여기를 클릭%s하십시오." #: main.php:329 msgid "" @@ -4739,8 +4739,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:1680 @@ -7663,16 +7663,19 @@ msgid "Flush the table (FLUSH)" msgstr "테이블 닫기(캐시 삭제)" #: tbl_operations.php:642 -msgid "Table removal" -msgstr "" +#, fuzzy +#| msgid "Dumping data for table" +msgid "Delete data or table" +msgstr "테이블의 덤프 데이터" #: tbl_operations.php:657 msgid "Empty the table (TRUNCATE)" msgstr "" #: tbl_operations.php:675 -msgid "Drop the table (DROP)" -msgstr "" +#, fuzzy +msgid "Delete the table (DROP)" +msgstr "데이터베이스가 없습니다" #: tbl_operations.php:696 #, fuzzy diff --git a/po/lt.po b/po/lt.po index 60121d686..de3005849 100644 --- a/po/lt.po +++ b/po/lt.po @@ -3,16 +3,16 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-27 10:12+0200\n" +"POT-Creation-Date: 2010-07-28 05:45-0400\n" "PO-Revision-Date: 2010-04-16 19:52+0200\n" "Last-Translator: Rytis \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" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n" -"%100<10 || n%100>=20) ? 1 : 2);\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" "X-Generator: Pootle 2.0.1\n" #: browse_foreigners.php:36 browse_foreigners.php:57 @@ -323,8 +323,8 @@ msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." msgstr "" -"Nėra PMA lentelių, kurios leidžia dirbti su jungtinėmis MySQL lentelėmis. " -"%sPaaiškinimas%s." +"Nėra PMA lentelių, kurios leidžia dirbti su jungtinėmis MySQL lentelėmis. %" +"sPaaiškinimas%s." #: db_operations.php:531 msgid "Edit PDF Pages" @@ -622,8 +622,8 @@ msgstr "" #: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, 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:419 db_structure.php:433 libraries/header.inc.php:125 @@ -824,8 +824,8 @@ msgstr "Duombazės atvaizdis išsaugotas 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 "" #: import.php:277 import.php:330 libraries/File.class.php:566 @@ -1533,8 +1533,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 "" "Turbūt dar nesukūrėte nustatymų failo. Galite pasinaudoti %1$snustatymų " "skriptu%2$s, kad sukurtumėte failą." @@ -2072,8 +2072,8 @@ msgstr "lentelės vardas" #, 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." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is." msgstr "" "Ši reikšmė interpretuojama naudojant %1$sstrftime%2$s, taigi, galite naudoti " "laiko formatavimo eilutes. Taip pat pakeičiamos šios eilutės: %3$s. Kitas " @@ -4227,8 +4227,8 @@ msgid "" "The additional features for working with linked tables have been " "deactivated. To find out why click %shere%s." msgstr "" -"Nėra PMA lentelių, kurios leidžia dirbti su jungtinėmis MySQL lentelėmis. " -"%sPaaiškinimas%s." +"Nėra PMA lentelių, kurios leidžia dirbti su jungtinėmis MySQL lentelėmis. %" +"sPaaiškinimas%s." #: main.php:329 msgid "" @@ -4926,8 +4926,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ų " @@ -7901,17 +7901,19 @@ msgstr "Išvalyti lentelę (\"FLUSH\")" #: tbl_operations.php:642 #, fuzzy -#| msgid "Table name" -msgid "Table removal" -msgstr "Lentelės vardas" +#| msgid "Dumping data for table" +msgid "Delete data or table" +msgstr "Sukurta duomenų kopija lentelei" #: tbl_operations.php:657 msgid "Empty the table (TRUNCATE)" msgstr "" #: tbl_operations.php:675 -msgid "Drop the table (DROP)" -msgstr "" +#, fuzzy +#| msgid "Go to database" +msgid "Delete the table (DROP)" +msgstr "Eiti į duomenų bazę" #: tbl_operations.php:696 #, fuzzy @@ -8297,6 +8299,11 @@ msgstr "" msgid "Rename view to" msgstr "Pervadinti lentelę į" +#, fuzzy +#~| msgid "Table name" +#~ msgid "Table removal" +#~ msgstr "Lentelės vardas" + #~ msgid "BLOB Repository" #~ msgstr "BLOB saugykla" diff --git a/po/lv.po b/po/lv.po index 50eb43aa9..f57e9069a 100644 --- a/po/lv.po +++ b/po/lv.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-27 10:12+0200\n" +"POT-Creation-Date: 2010-07-28 05:45-0400\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:36 browse_foreigners.php:57 @@ -617,8 +617,8 @@ msgstr "" #: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, 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:419 db_structure.php:433 libraries/header.inc.php:125 @@ -820,8 +820,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:277 import.php:330 libraries/File.class.php:566 @@ -1527,8 +1527,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 @@ -2063,8 +2063,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." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is." msgstr "" #: libraries/display_export.lib.php:196 @@ -4891,13 +4891,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:1680 msgid "The selected user was not found in the privilege table." @@ -7831,16 +7831,19 @@ msgid "Flush the table (FLUSH)" msgstr "Atsvaidzināt tabulu (\"FLUSH\")" #: tbl_operations.php:642 -msgid "Table removal" -msgstr "" +#, fuzzy +#| msgid "Dumping data for table" +msgid "Delete data or table" +msgstr "Dati tabulai" #: tbl_operations.php:657 msgid "Empty the table (TRUNCATE)" msgstr "" #: tbl_operations.php:675 -msgid "Drop the table (DROP)" -msgstr "" +#, fuzzy +msgid "Delete the table (DROP)" +msgstr "Nav datubāzu" #: tbl_operations.php:696 #, fuzzy diff --git a/po/mk.po b/po/mk.po index 5cee28808..5fec77834 100644 --- a/po/mk.po +++ b/po/mk.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-27 10:12+0200\n" +"POT-Creation-Date: 2010-07-28 05:45-0400\n" "PO-Revision-Date: 2010-03-12 09:16+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: macedonian_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:36 browse_foreigners.php:57 @@ -617,8 +617,8 @@ msgstr "" #: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, 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:419 db_structure.php:433 libraries/header.inc.php:125 @@ -820,8 +820,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:277 import.php:330 libraries/File.class.php:566 @@ -1527,8 +1527,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 @@ -2070,8 +2070,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." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is." msgstr "" #: libraries/display_export.lib.php:196 @@ -4946,8 +4946,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 " "табелата на привилегии. Содржината на оваа табела табела може да се " @@ -7886,16 +7886,19 @@ msgid "Flush the table (FLUSH)" msgstr "Освежување на табелата (\"FLUSH\")" #: tbl_operations.php:642 -msgid "Table removal" -msgstr "" +#, fuzzy +#| msgid "Dumping data for table" +msgid "Delete data or table" +msgstr "Приказ на податоци од табелата" #: tbl_operations.php:657 msgid "Empty the table (TRUNCATE)" msgstr "" #: tbl_operations.php:675 -msgid "Drop the table (DROP)" -msgstr "" +#, fuzzy +msgid "Delete the table (DROP)" +msgstr "Базата на податоци не постои" #: tbl_operations.php:696 #, fuzzy diff --git a/po/mn.po b/po/mn.po index 5d27753cd..8600335e6 100644 --- a/po/mn.po +++ b/po/mn.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-27 10:12+0200\n" +"POT-Creation-Date: 2010-07-28 05:45-0400\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:36 browse_foreigners.php:57 @@ -617,8 +617,8 @@ msgstr "" #: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, 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:419 db_structure.php:433 libraries/header.inc.php:125 @@ -813,8 +813,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:277 import.php:330 libraries/File.class.php:566 @@ -1514,11 +1514,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 "" @@ -2048,12 +2048,12 @@ 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." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is." msgstr "" "Энэ утга нь %1$sstrftime%2$s -ийг хэрэглэж үүссэн, тиймээс та хугацааны " -"тогтнолын тэмдэгтийг хэрэглэж болно. Нэмэлтээр дараах хувиргалт байх болно: " -"%3$s. Бусад бичвэрүүд үүн шиг хадгалагдана." +"тогтнолын тэмдэгтийг хэрэглэж болно. Нэмэлтээр дараах хувиргалт байх болно: %" +"3$s. Бусад бичвэрүүд үүн шиг хадгалагдана." #: libraries/display_export.lib.php:196 msgid "remember template" @@ -4874,8 +4874,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-ийн онцгой эрхийн хүснэгтээс хэрэглэгчдийн " "онцгой эрхийг авна. Хэрэв тэд гараар өөрчлөгдсөн бол эдгээр хүснэгтийн " @@ -7819,17 +7819,19 @@ msgstr "Flush the table (\"FLUSH\")" #: tbl_operations.php:642 #, fuzzy -#| msgid "Table name" -msgid "Table removal" -msgstr "Хүснэгтийн нэр" +#| msgid "Dumping data for table" +msgid "Delete data or table" +msgstr "Хүснэгтийн өгөгдлийг устгах" #: tbl_operations.php:657 msgid "Empty the table (TRUNCATE)" msgstr "" #: tbl_operations.php:675 -msgid "Drop the table (DROP)" -msgstr "" +#, fuzzy +#| msgid "Copy database to" +msgid "Delete the table (DROP)" +msgstr "Өгөгдлийн сан хуулах нь" #: tbl_operations.php:696 msgid "Partition maintenance" @@ -8209,6 +8211,11 @@ msgstr "" msgid "Rename view to" msgstr "" +#, fuzzy +#~| msgid "Table name" +#~ msgid "Table removal" +#~ msgstr "Хүснэгтийн нэр" + #, fuzzy #~| msgid "Enabled" #~ msgctxt "BLOB repository" diff --git a/po/ms.po b/po/ms.po index 095761c0e..0fa3d75bf 100644 --- a/po/ms.po +++ b/po/ms.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-27 10:12+0200\n" +"POT-Creation-Date: 2010-07-28 05:45-0400\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:36 browse_foreigners.php:57 @@ -619,8 +619,8 @@ msgstr "" #: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, 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:419 db_structure.php:433 libraries/header.inc.php:125 @@ -819,8 +819,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:277 import.php:330 libraries/File.class.php:566 @@ -1524,8 +1524,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 @@ -2053,8 +2053,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." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is." msgstr "" #: libraries/display_export.lib.php:196 @@ -4809,8 +4809,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:1680 @@ -7726,16 +7726,19 @@ msgid "Flush the table (FLUSH)" msgstr "Buang jadual (\"FLUSH\")" #: tbl_operations.php:642 -msgid "Table removal" -msgstr "" +#, fuzzy +#| msgid "Dumping data for table" +msgid "Delete data or table" +msgstr "Melonggok data bagi jadual" #: tbl_operations.php:657 msgid "Empty the table (TRUNCATE)" msgstr "" #: tbl_operations.php:675 -msgid "Drop the table (DROP)" -msgstr "" +#, fuzzy +msgid "Delete the table (DROP)" +msgstr "Tiada pangkalan data" #: tbl_operations.php:696 #, fuzzy diff --git a/po/nb.po b/po/nb.po index 71438c993..37d6941e0 100644 --- a/po/nb.po +++ b/po/nb.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-27 10:12+0200\n" +"POT-Creation-Date: 2010-07-28 05:45-0400\n" "PO-Revision-Date: 2010-07-22 08:43+0200\n" "Last-Translator: \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.1\n" @@ -609,8 +609,8 @@ msgstr "Overvåkning er ikke aktiv." #: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, 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:419 db_structure.php:433 libraries/header.inc.php:125 @@ -806,8 +806,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." @@ -1475,8 +1475,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." @@ -2003,8 +2003,8 @@ msgstr "tabellnavn" #, 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." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is." 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. " @@ -3832,8 +3832,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:143 msgid "Transformation options" @@ -4842,8 +4842,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 " @@ -7291,8 +7291,8 @@ msgid "" "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." @@ -8047,17 +8047,19 @@ msgstr "Oppfrisk tabellen (\"FLUSH\")" #: tbl_operations.php:642 #, fuzzy -#| msgid "Table name" -msgid "Table removal" -msgstr "Tabellnavn" +#| msgid "Delete tracking data for this table" +msgid "Delete data or table" +msgstr "Slett overvåkningsdata for denne tabellen" #: tbl_operations.php:657 msgid "Empty the table (TRUNCATE)" msgstr "" #: tbl_operations.php:675 -msgid "Drop the table (DROP)" -msgstr "" +#, fuzzy +#| msgid "Go to database" +msgid "Delete the table (DROP)" +msgstr "Gå til database" #: tbl_operations.php:696 msgid "Partition maintenance" @@ -8431,6 +8433,11 @@ msgstr "VIEW navn" msgid "Rename view to" msgstr "Endre tabellens navn" +#, fuzzy +#~| msgid "Table name" +#~ msgid "Table removal" +#~ msgstr "Tabellnavn" + #~ msgid "BLOB Repository" #~ msgstr "BLOB lager" diff --git a/po/nl.po b/po/nl.po index 5eca2bf7a..45111ff67 100644 --- a/po/nl.po +++ b/po/nl.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-27 10:12+0200\n" +"POT-Creation-Date: 2010-07-28 05:45-0400\n" "PO-Revision-Date: 2010-05-31 01:06+0200\n" "Last-Translator: Bjorn \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.1\n" @@ -620,8 +620,8 @@ msgstr "Tracking is niet actief." #: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, 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." @@ -819,11 +819,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:277 import.php:330 libraries/File.class.php:566 #: libraries/File.class.php:676 @@ -1517,8 +1517,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." @@ -2065,8 +2065,8 @@ msgstr "tabelnaam" #, 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." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is." 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 " @@ -5031,8 +5031,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 " @@ -8343,17 +8343,19 @@ msgstr "Schoon de tabel (\"FLUSH\")" #: tbl_operations.php:642 #, fuzzy -#| msgid "Table name" -msgid "Table removal" -msgstr "Tabelnaam" +#| msgid "Delete tracking data for this table" +msgid "Delete data or table" +msgstr "Verwijder tracking data voor deze tabel" #: tbl_operations.php:657 msgid "Empty the table (TRUNCATE)" msgstr "" #: tbl_operations.php:675 -msgid "Drop the table (DROP)" -msgstr "" +#, fuzzy +#| msgid "Go to database" +msgid "Delete the table (DROP)" +msgstr "Ga naar database" #: tbl_operations.php:696 msgid "Partition maintenance" @@ -8744,6 +8746,11 @@ msgstr "VIEW-naam" msgid "Rename view to" msgstr "Tabel hernoemen naar" +#, fuzzy +#~| msgid "Table name" +#~ msgid "Table removal" +#~ msgstr "Tabelnaam" + #~ msgid "BLOB Repository" #~ msgstr "BLOB Bewaarplaats" diff --git a/po/phpmyadmin.pot b/po/phpmyadmin.pot index 337c639e8..73d8a4392 100644 --- a/po/phpmyadmin.pot +++ b/po/phpmyadmin.pot @@ -8,11 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-27 10:12+0200\n" +"POT-Creation-Date: 2010-07-28 05:45-0400\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" @@ -600,8 +599,8 @@ msgstr "" #: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, 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:419 db_structure.php:433 libraries/header.inc.php:125 @@ -795,8 +794,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:277 import.php:330 libraries/File.class.php:566 @@ -1442,8 +1441,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 @@ -1955,8 +1954,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." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is." msgstr "" #: libraries/display_export.lib.php:196 @@ -4602,8 +4601,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:1680 @@ -7468,7 +7467,7 @@ msgid "Flush the table (FLUSH)" msgstr "" #: tbl_operations.php:642 -msgid "Table removal" +msgid "Delete data or table" msgstr "" #: tbl_operations.php:657 @@ -7476,7 +7475,7 @@ msgid "Empty the table (TRUNCATE)" msgstr "" #: tbl_operations.php:675 -msgid "Drop the table (DROP)" +msgid "Delete the table (DROP)" msgstr "" #: tbl_operations.php:696 diff --git a/po/pl.po b/po/pl.po index a1ac7e4a0..383a5b774 100644 --- a/po/pl.po +++ b/po/pl.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-27 10:12+0200\n" +"POT-Creation-Date: 2010-07-28 05:45-0400\n" "PO-Revision-Date: 2010-07-22 02:29+0200\n" "Last-Translator: Marc Delisle \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.1\n" @@ -621,11 +621,11 @@ msgstr "" #: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, 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:419 db_structure.php:433 libraries/header.inc.php:125 #: libraries/tbl_info.inc.php:60 tbl_structure.php:183 test/theme.php:73 @@ -828,8 +828,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." @@ -1553,8 +1553,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." @@ -2100,8 +2100,8 @@ msgstr "nazwa tabeli" #, 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." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is." 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 " @@ -3903,8 +3903,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." +"zainstalowane są niezbędne rozszerzenia PHP, tak jak zostało to opisane w %" +"sdokumentacji%s." #: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107 msgid "Table seems to be empty!" @@ -3957,8 +3957,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:143 msgid "Transformation options" @@ -4346,8 +4346,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:60 navigation.php:61 navigation.php:64 #, fuzzy @@ -5020,8 +5020,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, " @@ -7453,8 +7453,8 @@ msgid "" "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." @@ -8191,17 +8191,18 @@ msgstr "Przeładuj tabelę (\"FLUSH\")" #: tbl_operations.php:642 #, fuzzy -#| msgid "Table name" -msgid "Table removal" -msgstr "Nazwa tabeli" +#| msgid "Dumping data for table" +msgid "Delete data or table" +msgstr "Zrzut danych tabeli" #: tbl_operations.php:657 msgid "Empty the table (TRUNCATE)" msgstr "" #: tbl_operations.php:675 -msgid "Drop the table (DROP)" -msgstr "" +#, fuzzy +msgid "Delete the table (DROP)" +msgstr "Brak baz danych" #: tbl_operations.php:696 msgid "Partition maintenance" @@ -8589,6 +8590,11 @@ msgstr "Nazwa perspektywy" msgid "Rename view to" msgstr "Zmień nazwę tabeli na" +#, fuzzy +#~| msgid "Table name" +#~ msgid "Table removal" +#~ msgstr "Nazwa tabeli" + #~ msgid "BLOB Repository" #~ msgstr "Repozytorium BLOBów" diff --git a/po/pt.po b/po/pt.po index e32727293..1d4b194bf 100644 --- a/po/pt.po +++ b/po/pt.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-27 10:12+0200\n" +"POT-Creation-Date: 2010-07-28 05:45-0400\n" "PO-Revision-Date: 2010-07-22 02:23+0200\n" "Last-Translator: Marc Delisle \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.1\n" @@ -619,8 +619,8 @@ msgstr "" #: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, 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:419 db_structure.php:433 libraries/header.inc.php:125 @@ -825,8 +825,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 "" #: import.php:277 import.php:330 libraries/File.class.php:566 @@ -1530,8 +1530,8 @@ 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 "" #: libraries/auth/config.auth.lib.php:115 @@ -2066,8 +2066,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." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is." msgstr "" #: libraries/display_export.lib.php:196 @@ -4849,8 +4849,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 " @@ -7799,16 +7799,19 @@ msgid "Flush the table (FLUSH)" msgstr "Fecha a tabela (\"FLUSH\")" #: tbl_operations.php:642 -msgid "Table removal" -msgstr "" +#, fuzzy +#| msgid "Dumping data for table" +msgid "Delete data or table" +msgstr "Extraindo dados da tabela" #: tbl_operations.php:657 msgid "Empty the table (TRUNCATE)" msgstr "" #: tbl_operations.php:675 -msgid "Drop the table (DROP)" -msgstr "" +#, fuzzy +msgid "Delete the table (DROP)" +msgstr "Sem bases de dados" #: tbl_operations.php:696 #, fuzzy diff --git a/po/pt_BR.po b/po/pt_BR.po index f899d0ae7..324c11ae5 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-27 10:12+0200\n" +"POT-Creation-Date: 2010-07-28 05:45-0400\n" "PO-Revision-Date: 2010-07-13 23:58+0200\n" "Last-Translator: William Bachion \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.1\n" @@ -620,8 +620,8 @@ msgstr "" #: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, 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:419 db_structure.php:433 libraries/header.inc.php:125 @@ -825,8 +825,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." @@ -1548,8 +1548,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." @@ -2087,8 +2087,8 @@ msgstr "nome da tabela" #, 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." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is." 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 " @@ -4977,8 +4977,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 " @@ -8069,17 +8069,18 @@ msgstr "Limpar a tabela (\"LIMPAR\")" #: tbl_operations.php:642 #, fuzzy -#| msgid "Table name" -msgid "Table removal" -msgstr "Nome da Tabela" +#| msgid "Dumping data for table" +msgid "Delete data or table" +msgstr "Extraindo dados da tabela" #: tbl_operations.php:657 msgid "Empty the table (TRUNCATE)" msgstr "" #: tbl_operations.php:675 -msgid "Drop the table (DROP)" -msgstr "" +#, fuzzy +msgid "Delete the table (DROP)" +msgstr "Sem bases" #: tbl_operations.php:696 msgid "Partition maintenance" @@ -8463,6 +8464,11 @@ msgstr "Nome da VISÃO" msgid "Rename view to" msgstr "Renomear a tabela para " +#, fuzzy +#~| msgid "Table name" +#~ msgid "Table removal" +#~ msgstr "Nome da Tabela" + #, fuzzy #~| msgid "Enabled" #~ msgctxt "BLOB repository" diff --git a/po/ro.po b/po/ro.po index ca8b0fe3b..8aae33637 100644 --- a/po/ro.po +++ b/po/ro.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-27 10:12+0200\n" +"POT-Creation-Date: 2010-07-28 05:45-0400\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" @@ -624,8 +624,8 @@ msgstr "Monitorizarea nu este activată" #: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, 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." @@ -830,11 +830,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:277 import.php:330 libraries/File.class.php:566 #: libraries/File.class.php:676 @@ -1556,8 +1556,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 " @@ -2103,12 +2103,12 @@ msgstr "nume tabel" #, 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." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is." 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:196 msgid "remember template" @@ -5034,8 +5034,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. " @@ -8108,17 +8108,17 @@ msgstr "Curățarea tabelului (\"FLUSH\")" #: tbl_operations.php:642 #, fuzzy -#| msgid "Table name" -msgid "Table removal" -msgstr "Denumire tabel" +msgid "Delete data or table" +msgstr "Șterge datele urmărite din acest tabel" #: tbl_operations.php:657 msgid "Empty the table (TRUNCATE)" msgstr "" #: tbl_operations.php:675 -msgid "Drop the table (DROP)" -msgstr "" +#, fuzzy +msgid "Delete the table (DROP)" +msgstr "Nu sînt baze de date" #: tbl_operations.php:696 msgid "Partition maintenance" @@ -8504,6 +8504,11 @@ msgstr "Denumire VIZIUNE" msgid "Rename view to" msgstr "Redenumire tabel la" +#, fuzzy +#~| msgid "Table name" +#~ msgid "Table removal" +#~ msgstr "Denumire tabel" + #~ msgid "BLOB Repository" #~ msgstr "BLOB Repository" diff --git a/po/ru.po b/po/ru.po index 174137453..6519ba374 100644 --- a/po/ru.po +++ b/po/ru.po @@ -3,16 +3,16 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-27 10:12+0200\n" +"POT-Creation-Date: 2010-07-28 05:45-0400\n" "PO-Revision-Date: 2010-07-22 02:27+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: russian \n" -"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"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" "X-Generator: Pootle 2.0.1\n" #: browse_foreigners.php:36 browse_foreigners.php:57 @@ -626,8 +626,8 @@ msgstr "Слежение выключено." #: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, 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." @@ -825,8 +825,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." @@ -1552,8 +1552,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." @@ -2102,8 +2102,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." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is." msgstr "" "Значение обрабатывается функцией %1$sstrftime%2$s, благодаря чему возможна " "вставка текущей даты и времени. Дополнительно могут быть использованы " @@ -5049,8 +5049,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. Содержимое этих таблиц может " @@ -6183,8 +6183,8 @@ msgid "" "Query statistics: Since its startup, %s queries have been sent to the " "server." msgstr "" -"Статистика запросов: со времени запуска, на сервер было отослано запросов - " -"%s." +"Статистика запросов: со времени запуска, на сервер было отослано запросов - %" +"s." #: server_status.php:608 msgid "per minute" @@ -7424,9 +7424,8 @@ msgstr "" "Вы установили [kbd]config[/kbd] идентификацию и ввели имя полльзователя с " "паролем для автоматического входа, что крайне не рекомендуется для рабочего " "хоста. Любой, кто сможет узнать ссылку к phpMyAdmin сможет напрямую попасть " -"в панель управления. Установите [a@?page=servers&mode=edit&id=" -"%1$d#tab_Server]тип идентификации[/a] в [kbd]cookie[/kbd] или [kbd]http[/" -"kbd]." +"в панель управления. Установите [a@?page=servers&mode=edit&id=%1" +"$d#tab_Server]тип идентификации[/a] в [kbd]cookie[/kbd] или [kbd]http[/kbd]." #: setup/lib/messages.inc.php:236 msgid "You should use mysqli for performance reasons" @@ -8384,17 +8383,19 @@ msgstr "Обновить кеш таблицы ("FLUSH")" #: tbl_operations.php:642 #, fuzzy -#| msgid "Table name" -msgid "Table removal" -msgstr "Имя таблицы" +#| msgid "Delete tracking data for this table" +msgid "Delete data or table" +msgstr "Удалить данные слежения за таблицей" #: tbl_operations.php:657 msgid "Empty the table (TRUNCATE)" msgstr "" #: tbl_operations.php:675 -msgid "Drop the table (DROP)" -msgstr "" +#, fuzzy +#| msgid "Go to database" +msgid "Delete the table (DROP)" +msgstr "Перейти к базе данных" #: tbl_operations.php:696 msgid "Partition maintenance" @@ -8737,8 +8738,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!" @@ -8782,6 +8783,11 @@ msgstr "VIEW название" msgid "Rename view to" msgstr "Переименовать таблицу в" +#, fuzzy +#~| msgid "Table name" +#~ msgid "Table removal" +#~ msgstr "Имя таблицы" + #~ msgid "BLOB Repository" #~ msgstr "Хранилище данных типа BLOB" @@ -8816,8 +8822,8 @@ msgstr "Переименовать таблицу в" #~ "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " #~ "extension. Please check your PHP configuration." #~ msgstr "" -#~ "Невозможно загрузить расширение [a@http://php.net/%1$s@Documentation]" -#~ "[em]%1$s[/em][/a]! Проверьте настройки PHP." +#~ "Невозможно загрузить расширение [a@http://php.net/%1$s@Documentation][em]%" +#~ "1$s[/em][/a]! Проверьте настройки PHP." #~ msgid "" #~ "Couldn't load the iconv or recode extension needed for charset " diff --git a/po/si.po b/po/si.po index 157bca6f5..6b7067f4d 100644 --- a/po/si.po +++ b/po/si.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-27 10:12+0200\n" +"POT-Creation-Date: 2010-07-28 05:45-0400\n" "PO-Revision-Date: 2010-07-22 02:26+0200\n" "Last-Translator: Marc Delisle \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.1\n" @@ -618,8 +618,8 @@ msgstr "" #: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, 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:419 db_structure.php:433 libraries/header.inc.php:125 @@ -822,11 +822,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:277 import.php:330 libraries/File.class.php:566 #: libraries/File.class.php:676 @@ -1538,8 +1538,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." @@ -2077,12 +2077,12 @@ 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." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is." 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:196 msgid "remember template" @@ -4943,13 +4943,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:1680 msgid "The selected user was not found in the privilege table." @@ -8009,16 +8009,18 @@ msgstr "Flush the table (\"FLUSH\")" #: tbl_operations.php:642 #, fuzzy -msgid "Table removal" -msgstr "වගුවේ නම" +#| msgid "Dumping data for table" +msgid "Delete data or table" +msgstr "වගු සඳහා නික්ෂේප දත්ත" #: tbl_operations.php:657 msgid "Empty the table (TRUNCATE)" msgstr "" #: tbl_operations.php:675 -msgid "Drop the table (DROP)" -msgstr "" +#, fuzzy +msgid "Delete the table (DROP)" +msgstr "දත්තගබඩා නොමැත" #: tbl_operations.php:696 #, fuzzy @@ -8406,6 +8408,10 @@ msgstr "" msgid "Rename view to" msgstr "වගුව බවට නම වෙනස් කරන්න" +#, fuzzy +#~ msgid "Table removal" +#~ msgstr "වගුවේ නම" + #, fuzzy #~| msgid "Enabled" #~ msgctxt "BLOB repository" diff --git a/po/sk.po b/po/sk.po index f0dc854c0..b1d352f6b 100644 --- a/po/sk.po +++ b/po/sk.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-27 10:12+0200\n" +"POT-Creation-Date: 2010-07-28 05:45-0400\n" "PO-Revision-Date: 2010-07-22 02:26+0200\n" "Last-Translator: Marc Delisle \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.1\n" @@ -623,8 +623,8 @@ msgstr "" #: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, 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:419 db_structure.php:433 libraries/header.inc.php:125 @@ -825,8 +825,8 @@ msgstr "Dump (schéma) 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ť." @@ -1545,8 +1545,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." @@ -2085,8 +2085,8 @@ msgstr "meno tabuľky" #, 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." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is." 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 " @@ -3853,8 +3853,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." +"nainštalované všetky potrebné rozšírenia php, tak ako sú popísané v %" +"sdocumentation%s." #: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107 msgid "Table seems to be empty!" @@ -4952,13 +4952,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:1680 msgid "The selected user was not found in the privilege table." @@ -8042,17 +8042,19 @@ msgstr "Vyprázdniť tabuľku (\"FLUSH\")" #: tbl_operations.php:642 #, fuzzy -#| msgid "Table name" -msgid "Table removal" -msgstr "Názov tabuľky" +#| msgid "Dumping data for table" +msgid "Delete data or table" +msgstr "Sťahujem dáta pre tabuľku" #: tbl_operations.php:657 msgid "Empty the table (TRUNCATE)" msgstr "" #: tbl_operations.php:675 -msgid "Drop the table (DROP)" -msgstr "" +#, fuzzy +#| msgid "Go to database" +msgid "Delete the table (DROP)" +msgstr "Prejsť do databázy" #: tbl_operations.php:696 #, fuzzy @@ -8437,6 +8439,11 @@ msgstr "" msgid "Rename view to" msgstr "Premenovať tabuľku na" +#, fuzzy +#~| msgid "Table name" +#~ msgid "Table removal" +#~ msgstr "Názov tabuľky" + #, fuzzy #~| msgid "Enabled" #~ msgctxt "BLOB repository" diff --git a/po/sl.po b/po/sl.po index a87dfa1e9..c77f0486c 100644 --- a/po/sl.po +++ b/po/sl.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-27 10:12+0200\n" +"POT-Creation-Date: 2010-07-28 05:45-0400\n" "PO-Revision-Date: 2010-07-16 17:14+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.1\n" @@ -618,8 +618,8 @@ msgstr "Sledenje ni aktivno." #: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, 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:419 db_structure.php:433 libraries/header.inc.php:125 @@ -815,8 +815,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." @@ -1492,8 +1492,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." @@ -2028,8 +2028,8 @@ msgstr "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." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is." 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. " @@ -4875,8 +4875,8 @@ msgstr "Izbriši podatkovne zbirke, 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 " @@ -8094,17 +8094,19 @@ msgstr "Počisti tabelo (FLUSH)" #: tbl_operations.php:642 #, fuzzy -#| msgid "Table name" -msgid "Table removal" -msgstr "Ime tabele" +#| msgid "Delete tracking data for this table" +msgid "Delete data or table" +msgstr "Izbriši podatke sledenja te tabele" #: tbl_operations.php:657 msgid "Empty the table (TRUNCATE)" msgstr "" #: tbl_operations.php:675 -msgid "Drop the table (DROP)" -msgstr "" +#, fuzzy +#| msgid "Go to database" +msgid "Delete the table (DROP)" +msgstr "Pojdi v zbirko podatkov" #: tbl_operations.php:696 msgid "Partition maintenance" @@ -8476,6 +8478,11 @@ msgstr "Ime VIEW" msgid "Rename view to" msgstr "Preimenuj pogled v" +#, fuzzy +#~| msgid "Table name" +#~ msgid "Table removal" +#~ msgstr "Ime tabele" + #~ msgid "BLOB Repository" #~ msgstr "Shramba BLOB" diff --git a/po/sq.po b/po/sq.po index 59f032fab..f22cf9e1a 100644 --- a/po/sq.po +++ b/po/sq.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-27 10:12+0200\n" +"POT-Creation-Date: 2010-07-28 05:45-0400\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" @@ -618,8 +618,8 @@ msgstr "Gjurmimi nuk është aktiv." #: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, 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:419 db_structure.php:433 libraries/header.inc.php:125 @@ -822,8 +822,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:277 import.php:330 libraries/File.class.php:566 @@ -1527,8 +1527,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 @@ -2059,8 +2059,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." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is." msgstr "" #: libraries/display_export.lib.php:196 @@ -4900,8 +4900,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ë " @@ -7834,16 +7834,19 @@ msgid "Flush the table (FLUSH)" msgstr "Rifillo (\"FLUSH\") tabelën" #: tbl_operations.php:642 -msgid "Table removal" -msgstr "" +#, fuzzy +#| msgid "Dumping data for table" +msgid "Delete data or table" +msgstr "Dump i të dhënave për tabelën" #: tbl_operations.php:657 msgid "Empty the table (TRUNCATE)" msgstr "" #: tbl_operations.php:675 -msgid "Drop the table (DROP)" -msgstr "" +#, fuzzy +msgid "Delete the table (DROP)" +msgstr "Asnjë databazë" #: tbl_operations.php:696 #, fuzzy diff --git a/po/sr.po b/po/sr.po index 579db1afd..712fc4c52 100644 --- a/po/sr.po +++ b/po/sr.po @@ -3,16 +3,16 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-27 10:12+0200\n" +"POT-Creation-Date: 2010-07-28 05:45-0400\n" "PO-Revision-Date: 2010-03-30 23:47+0200\n" "Last-Translator: Michal \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" -"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" +"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" "X-Generator: Pootle 2.0.1\n" #: browse_foreigners.php:36 browse_foreigners.php:57 @@ -624,8 +624,8 @@ msgstr "" #: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, 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:419 db_structure.php:433 libraries/header.inc.php:125 @@ -829,11 +829,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:277 import.php:330 libraries/File.class.php:566 #: libraries/File.class.php:676 @@ -1546,8 +1546,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 да бисте је направили." @@ -2088,8 +2088,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." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is." msgstr "" "Ова вредност се тумачи коришћењем %1$sstrftime%2$s, тако да можете да " "користите стрингове за форматирање времена. Такође ће се десити и следеће " @@ -4972,8 +4972,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 табела " "привилегија. Садржај ове табеле може се разликовати од привилегија које " @@ -8037,17 +8037,18 @@ msgstr "Освежи табелу (\"FLUSH\")" #: tbl_operations.php:642 #, fuzzy -#| msgid "Table name" -msgid "Table removal" -msgstr "Назив табеле" +#| msgid "Dumping data for table" +msgid "Delete data or table" +msgstr "Приказ података табеле" #: tbl_operations.php:657 msgid "Empty the table (TRUNCATE)" msgstr "" #: tbl_operations.php:675 -msgid "Drop the table (DROP)" -msgstr "" +#, fuzzy +msgid "Delete the table (DROP)" +msgstr "База не постоји" #: tbl_operations.php:696 #, fuzzy @@ -8435,6 +8436,11 @@ msgstr "назив за VIEW" msgid "Rename view to" msgstr "Промени име табеле у " +#, fuzzy +#~| msgid "Table name" +#~ msgid "Table removal" +#~ msgstr "Назив табеле" + #, fuzzy #~| msgid "Enabled" #~ msgctxt "BLOB repository" diff --git a/po/sr@latin.po b/po/sr@latin.po index 2e30ea691..197dee8b6 100644 --- a/po/sr@latin.po +++ b/po/sr@latin.po @@ -3,16 +3,16 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-27 10:12+0200\n" +"POT-Creation-Date: 2010-07-28 05:45-0400\n" "PO-Revision-Date: 2010-07-22 02:27+0200\n" "Last-Translator: Marc Delisle \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" -"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" +"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" "X-Generator: Pootle 2.0.1\n" #: browse_foreigners.php:36 browse_foreigners.php:57 @@ -624,8 +624,8 @@ msgstr "" #: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, 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:419 db_structure.php:433 libraries/header.inc.php:125 @@ -829,11 +829,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:277 import.php:330 libraries/File.class.php:566 #: libraries/File.class.php:676 @@ -1546,8 +1546,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." @@ -2088,8 +2088,8 @@ msgstr "naziv 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." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is." 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 " @@ -4970,8 +4970,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 " @@ -8038,17 +8038,18 @@ msgstr "Osveži tabelu (\"FLUSH\")" #: tbl_operations.php:642 #, fuzzy -#| msgid "Table name" -msgid "Table removal" -msgstr "Naziv tabele" +#| msgid "Dumping data for table" +msgid "Delete data or table" +msgstr "Prikaz podataka tabele" #: tbl_operations.php:657 msgid "Empty the table (TRUNCATE)" msgstr "" #: tbl_operations.php:675 -msgid "Drop the table (DROP)" -msgstr "" +#, fuzzy +msgid "Delete the table (DROP)" +msgstr "Baza ne postoji" #: tbl_operations.php:696 #, fuzzy @@ -8436,6 +8437,11 @@ msgstr "naziv za VIEW" msgid "Rename view to" msgstr "Promeni ime tabele u " +#, fuzzy +#~| msgid "Table name" +#~ msgid "Table removal" +#~ msgstr "Naziv tabele" + #, fuzzy #~| msgid "Enabled" #~ msgctxt "BLOB repository" diff --git a/po/sv.po b/po/sv.po index 450120f95..6dbcf4631 100644 --- a/po/sv.po +++ b/po/sv.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-27 10:12+0200\n" +"POT-Creation-Date: 2010-07-28 05:45-0400\n" "PO-Revision-Date: 2010-07-21 14:48+0200\n" "Last-Translator: Marc Delisle \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.1\n" @@ -620,8 +620,8 @@ msgstr "" #: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, 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 %sdokumentation%s." #: db_structure.php:419 db_structure.php:433 libraries/header.inc.php:125 @@ -825,8 +825,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 metoder att gå runt denna begränsning." @@ -1548,8 +1548,8 @@ 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 "" "Trolig orsak till detta är att du inte skapade en konfigurationsfil. Du vill " "kanske använda %1$suppsättningsskript%2$s för att skapa en." @@ -2091,8 +2091,8 @@ msgstr "tabellnamn" #, 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." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is." msgstr "" "Detta värde tolkas mha %1$sstrftime%2$s, så du kan använda strängar med " "tidsformatering. Dessutom kommer följande omvandlingar att ske: %3$s. Övrig " @@ -4342,8 +4342,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 serverversion " -"%s. Detta kan orsaka oförutsägbara beteenden." +"Din PHP MySQL bibliotekversion %s skiljer sig från din MySQL serverversion %" +"s. Detta kan orsaka oförutsägbara beteenden." #: main.php:356 #, php-format @@ -5027,8 +5027,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 " @@ -7494,8 +7494,8 @@ msgid "" "to." msgstr "" "Om du känner att detta är nödvändigt, använd ytterligare " -"säkerhetsinställningar - [a@?page=servers&mode=edit&id=" -"%1$d#tab_Server_config]värdautentisering[/a] och [a@?page=form&" +"säkerhetsinställningar - [a@?page=servers&mode=edit&id=%1" +"$d#tab_Server_config]värdautentisering[/a] och [a@?page=form&" "formset=features#tab_Security]betrodd proxyserverlista[/a]. Dock är kanske " "IP-baserat skydd inte pålitligt om din IP-adress hör till en ISP som " "tusentals användare, inklusive du, är ansluten till." @@ -8275,17 +8275,18 @@ msgstr "Rensa tabell" #: tbl_operations.php:642 #, fuzzy -#| msgid "Table name" -msgid "Table removal" -msgstr "Tabellnamn" +#| msgid "Dumping data for table" +msgid "Delete data or table" +msgstr "Data i tabell" #: tbl_operations.php:657 msgid "Empty the table (TRUNCATE)" msgstr "" #: tbl_operations.php:675 -msgid "Drop the table (DROP)" -msgstr "" +#, fuzzy +msgid "Delete the table (DROP)" +msgstr "Inga databaser" #: tbl_operations.php:696 msgid "Partition maintenance" @@ -8673,6 +8674,11 @@ msgstr "Namn på vy" msgid "Rename view to" msgstr "Döp om tabellen till" +#, fuzzy +#~| msgid "Table name" +#~ msgid "Table removal" +#~ msgstr "Tabellnamn" + #~ msgid "BLOB Repository" #~ msgstr "BLOB-förvaringsplats" diff --git a/po/ta.po b/po/ta.po index ddd2a6404..f35073462 100644 --- a/po/ta.po +++ b/po/ta.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-27 10:12+0200\n" +"POT-Creation-Date: 2010-07-28 05:45-0400\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" @@ -603,8 +603,8 @@ msgstr "" #: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, 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:419 db_structure.php:433 libraries/header.inc.php:125 @@ -798,8 +798,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:277 import.php:330 libraries/File.class.php:566 @@ -1483,8 +1483,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 " "பயன்படுத்தலாம்" @@ -2001,8 +2001,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." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is." msgstr "" #: libraries/display_export.lib.php:196 @@ -4651,8 +4651,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:1680 @@ -7517,7 +7517,7 @@ msgid "Flush the table (FLUSH)" msgstr "" #: tbl_operations.php:642 -msgid "Table removal" +msgid "Delete data or table" msgstr "" #: tbl_operations.php:657 @@ -7525,7 +7525,7 @@ msgid "Empty the table (TRUNCATE)" msgstr "" #: tbl_operations.php:675 -msgid "Drop the table (DROP)" +msgid "Delete the table (DROP)" msgstr "" #: tbl_operations.php:696 diff --git a/po/te.po b/po/te.po index 06ee665bf..5908e5cfc 100644 --- a/po/te.po +++ b/po/te.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-27 10:12+0200\n" +"POT-Creation-Date: 2010-07-28 05:45-0400\n" "PO-Revision-Date: 2010-05-26 14:20+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.1\n" @@ -616,8 +616,8 @@ msgstr "" #: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, 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 "" # మొదటి అనువాదము @@ -814,8 +814,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:277 import.php:330 libraries/File.class.php:566 @@ -1514,8 +1514,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 @@ -2033,8 +2033,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." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is." msgstr "" #: libraries/display_export.lib.php:196 @@ -4726,8 +4726,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:1680 @@ -7609,7 +7609,7 @@ msgid "Flush the table (FLUSH)" msgstr "" #: tbl_operations.php:642 -msgid "Table removal" +msgid "Delete data or table" msgstr "" #: tbl_operations.php:657 @@ -7617,7 +7617,7 @@ msgid "Empty the table (TRUNCATE)" msgstr "" #: tbl_operations.php:675 -msgid "Drop the table (DROP)" +msgid "Delete the table (DROP)" msgstr "" #: tbl_operations.php:696 diff --git a/po/th.po b/po/th.po index 2d57890bb..92f6bc1a4 100644 --- a/po/th.po +++ b/po/th.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-27 10:12+0200\n" +"POT-Creation-Date: 2010-07-28 05:45-0400\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:36 browse_foreigners.php:57 @@ -616,8 +616,8 @@ msgstr "" #: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, 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:419 db_structure.php:433 libraries/header.inc.php:125 @@ -817,8 +817,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:277 import.php:330 libraries/File.class.php:566 @@ -1522,8 +1522,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 @@ -2049,8 +2049,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." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is." msgstr "" #: libraries/display_export.lib.php:196 @@ -4809,8 +4809,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:1680 @@ -7732,16 +7732,19 @@ msgid "Flush the table (FLUSH)" msgstr "ล้างตาราง (flush)" #: tbl_operations.php:642 -msgid "Table removal" -msgstr "" +#, fuzzy +#| msgid "Dumping data for table" +msgid "Delete data or table" +msgstr "dump ตาราง" #: tbl_operations.php:657 msgid "Empty the table (TRUNCATE)" msgstr "" #: tbl_operations.php:675 -msgid "Drop the table (DROP)" -msgstr "" +#, fuzzy +msgid "Delete the table (DROP)" +msgstr "ไม่มีฐานข้อมูล" #: tbl_operations.php:696 #, fuzzy diff --git a/po/tr.po b/po/tr.po index b0fb36157..d0d1a4015 100644 --- a/po/tr.po +++ b/po/tr.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-27 10:12+0200\n" +"POT-Creation-Date: 2010-07-28 05:45-0400\n" "PO-Revision-Date: 2010-06-21 19:58+0200\n" "Last-Translator: Burak \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.1\n" @@ -609,8 +609,8 @@ msgstr "İzleme aktif değil." #: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, 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 %sdocumentation%s " "belgesinden yararlanın." @@ -808,8 +808,8 @@ msgstr "Döküm dosyası %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 %sbelgelere%s başvurun." @@ -1477,8 +1477,8 @@ msgstr "%s sürümüne 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$skurulum programcığı%2$s kullanmak isteyebilirsiniz." @@ -2017,8 +2017,8 @@ msgstr "tablo adı" #, 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." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is." msgstr "" "Bu değer %1$sstrftime%2$s kullanılarak yorumlanır, bu yüzden zaman " "biçimlendirme dizgisi kullanabilirsiniz. İlave olarak yandaki dönüşümler " @@ -4874,8 +4874,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 " @@ -7822,8 +7822,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ı." #: setup/lib/messages.inc.php:369 #, php-format @@ -8110,17 +8110,19 @@ msgstr "Tabloyu temizle (FLUSH)" #: tbl_operations.php:642 #, fuzzy -#| msgid "Table name" -msgid "Table removal" -msgstr "Tablo adı" +#| msgid "Delete tracking data for this table" +msgid "Delete data or table" +msgstr "Bu tabloyu izleme verisini sil" #: tbl_operations.php:657 msgid "Empty the table (TRUNCATE)" msgstr "" #: tbl_operations.php:675 -msgid "Drop the table (DROP)" -msgstr "" +#, fuzzy +#| msgid "Go to database" +msgid "Delete the table (DROP)" +msgstr "Veritabanına git" #: tbl_operations.php:696 msgid "Partition maintenance" @@ -8496,6 +8498,11 @@ msgstr "GÖRÜNÜM adı" msgid "Rename view to" msgstr "Görünümü yeniden şuna adlandır" +#, fuzzy +#~| msgid "Table name" +#~ msgid "Table removal" +#~ msgstr "Tablo adı" + #~ msgid "BLOB Repository" #~ msgstr "BLOB Havuzu" diff --git a/po/tt.po b/po/tt.po index 53239f094..b2a65db51 100644 --- a/po/tt.po +++ b/po/tt.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-27 10:12+0200\n" +"POT-Creation-Date: 2010-07-28 05:45-0400\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" @@ -615,8 +615,8 @@ msgstr "" #: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, 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:419 db_structure.php:433 libraries/header.inc.php:125 @@ -821,8 +821,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:277 import.php:330 libraries/File.class.php:566 @@ -1525,8 +1525,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 @@ -2063,8 +2063,8 @@ msgstr "tüşämä adı" #, 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." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is." msgstr "" #: libraries/display_export.lib.php:196 @@ -3819,8 +3819,8 @@ 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." +"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:106 libraries/tbl_links.inc.php:107 msgid "Table seems to be empty!" @@ -4908,8 +4908,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 " @@ -7874,16 +7874,18 @@ msgstr "Tüşäwne awdar (\"FLUSH\")" #: tbl_operations.php:642 #, fuzzy -msgid "Table removal" -msgstr "tüşämä adı" +#| msgid "Dumping data for table" +msgid "Delete data or table" +msgstr "Tüşämä eçtälegen çığaru" #: tbl_operations.php:657 msgid "Empty the table (TRUNCATE)" msgstr "" #: tbl_operations.php:675 -msgid "Drop the table (DROP)" -msgstr "" +#, fuzzy +msgid "Delete the table (DROP)" +msgstr "Biremleklär yuq" #: tbl_operations.php:696 #, fuzzy @@ -8272,6 +8274,10 @@ msgstr "" msgid "Rename view to" msgstr "Tüşämä adın üzgärtü" +#, fuzzy +#~ msgid "Table removal" +#~ msgstr "tüşämä adı" + #, fuzzy #~| msgid "Enabled" #~ msgctxt "BLOB repository" diff --git a/po/ug.po b/po/ug.po index 6cdc2c3b5..63d41529b 100644 --- a/po/ug.po +++ b/po/ug.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-27 10:12+0200\n" +"POT-Creation-Date: 2010-07-28 05:45-0400\n" "PO-Revision-Date: 2010-07-27 12:45+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.1\n" @@ -96,7 +96,6 @@ msgid "No blob streaming server configured!" msgstr "No blob streaming server configured!" #: bs_disp_as_mime_type.php:35 -#| msgid "Failed to write file to disk." msgid "Failed to fetch headers" msgstr "ھۆججەتنى دېسكىغا يىزىشتا خاتالىق كۆرۈلدى." @@ -250,7 +249,6 @@ msgid "and then" msgstr "كېيىن" #: db_operations.php:379 -#| msgid "Rename database to" msgid "Remove database" msgstr "ئۆزگەرتىلگەن ساندان ئىسمى" @@ -260,7 +258,6 @@ msgid "Database %s has been dropped." msgstr "ساندان %s ئۆچۈرۈلدى." #: db_operations.php:396 -#| msgid "Copy database to" msgid "Drop the database (DROP)" msgstr "كۆچۈرۈلگەن ساندان" @@ -315,9 +312,6 @@ msgstr "تاسقاش" #: db_operations.php:498 pdf_schema.php:32 #, php-format -#| msgid "" -#| "The additional features for working with linked tables have been " -#| "deactivated. To find out why click %shere%s." msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." @@ -606,8 +600,8 @@ msgstr "ئىزلاش ئاكتىپ ئەمەس" #: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, 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:419 db_structure.php:433 libraries/header.inc.php:125 @@ -803,8 +797,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 ھۆججىتىدىن ھەل قىلىش " "چارىسىنى كۆرۈڭ." @@ -1465,11 +1459,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 "" @@ -1989,8 +1983,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." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is." msgstr "" #: libraries/display_export.lib.php:196 @@ -3982,8 +3976,8 @@ msgid "" "The additional features for working with linked tables have been " "deactivated. To find out why click %shere%s." msgstr "" -"ئالاقىدار جەدۋەللەرنىڭ قوشۇمچە ئىقتىدارى پائالسىز. سەۋەبىنى ئېنىقلاش ئۈچۈن " -"%sبۇ يەرنى كۆرۈڭ%s." +"ئالاقىدار جەدۋەللەرنىڭ قوشۇمچە ئىقتىدارى پائالسىز. سەۋەبىنى ئېنىقلاش ئۈچۈن %" +"sبۇ يەرنى كۆرۈڭ%s." #: main.php:329 msgid "" @@ -4640,8 +4634,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:1680 @@ -7506,16 +7500,20 @@ msgid "Flush the table (FLUSH)" msgstr "" #: tbl_operations.php:642 -msgid "Table removal" -msgstr "" +#, fuzzy +#| msgid "Delete tracking data for this table" +msgid "Delete data or table" +msgstr "سانلىق مەلۇماتنى ئىزقوغلاپ ئۈچۈرۈش" #: tbl_operations.php:657 msgid "Empty the table (TRUNCATE)" msgstr "" #: tbl_operations.php:675 -msgid "Drop the table (DROP)" -msgstr "" +#, fuzzy +#| msgid "Drop the database (DROP)" +msgid "Delete the table (DROP)" +msgstr "كۆچۈرۈلگەن ساندان" #: tbl_operations.php:696 msgid "Partition maintenance" diff --git a/po/uk.po b/po/uk.po index 5899bbc83..d206f3332 100644 --- a/po/uk.po +++ b/po/uk.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-27 10:12+0200\n" +"POT-Creation-Date: 2010-07-28 05:45-0400\n" "PO-Revision-Date: 2010-03-12 09:19+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: ukrainian \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:36 browse_foreigners.php:57 @@ -615,8 +615,8 @@ msgstr "" #: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, 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:419 db_structure.php:433 libraries/header.inc.php:125 @@ -812,8 +812,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:277 import.php:330 libraries/File.class.php:566 @@ -1511,8 +1511,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 @@ -2042,8 +2042,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." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is." msgstr "" #: libraries/display_export.lib.php:196 @@ -3819,8 +3819,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:143 msgid "Transformation options" @@ -4831,8 +4831,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. Зміст цієї таблиці може відрізнятися від прав, які використовуються " @@ -7725,16 +7725,20 @@ msgid "Flush the table (FLUSH)" msgstr "Очистити кеш таблиці (\"FLUSH\")" #: tbl_operations.php:642 -msgid "Table removal" -msgstr "" +#, fuzzy +#| msgid "Dumping data for table" +msgid "Delete data or table" +msgstr "Дамп даних таблиці" #: tbl_operations.php:657 msgid "Empty the table (TRUNCATE)" msgstr "" #: tbl_operations.php:675 -msgid "Drop the table (DROP)" -msgstr "" +#, fuzzy +#| msgid "No databases" +msgid "Delete the table (DROP)" +msgstr "БД відсутні" #: tbl_operations.php:696 msgid "Partition maintenance" diff --git a/po/ur.po b/po/ur.po index e1a172e91..743537360 100644 --- a/po/ur.po +++ b/po/ur.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-27 10:12+0200\n" +"POT-Creation-Date: 2010-07-28 05:45-0400\n" "PO-Revision-Date: 2010-05-14 12:35+0200\n" "Last-Translator: \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.1\n" @@ -622,11 +622,11 @@ msgstr "ٹریکنگ ایکٹو نہیں ہے" #: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, 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:419 db_structure.php:433 libraries/header.inc.php:125 #: libraries/tbl_info.inc.php:60 tbl_structure.php:183 test/theme.php:73 @@ -820,11 +820,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:277 import.php:330 libraries/File.class.php:566 #: libraries/File.class.php:676 @@ -1478,8 +1478,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 @@ -1993,8 +1993,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." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is." msgstr "" #: libraries/display_export.lib.php:196 @@ -4652,8 +4652,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:1680 @@ -7518,16 +7518,20 @@ msgid "Flush the table (FLUSH)" msgstr "" #: tbl_operations.php:642 -msgid "Table removal" -msgstr "" +#, fuzzy +#| msgid "Delete tracking data for this table" +msgid "Delete data or table" +msgstr "اس ٹیبل کیلئے ٹریکنگ ڈیٹا حذف کریں " #: tbl_operations.php:657 msgid "Empty the table (TRUNCATE)" msgstr "" #: tbl_operations.php:675 -msgid "Drop the table (DROP)" -msgstr "" +#, fuzzy +#| msgid "Copy database to" +msgid "Delete the table (DROP)" +msgstr "ڈیٹا بیس کاپی کریں" #: tbl_operations.php:696 msgid "Partition maintenance" diff --git a/po/uz.po b/po/uz.po index bdb63c65b..8ea732c5b 100644 --- a/po/uz.po +++ b/po/uz.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-27 10:12+0200\n" +"POT-Creation-Date: 2010-07-28 05:45-0400\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" @@ -620,8 +620,8 @@ msgstr "Кузатиш фаол эмас." #: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, 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 қаранг." @@ -819,11 +819,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:277 import.php:330 libraries/File.class.php:566 #: libraries/File.class.php:676 @@ -1549,8 +1549,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 фойдаланишингиз мумкин." @@ -2104,12 +2104,12 @@ 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." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is." msgstr "" "Қиймат %1$sstrftime%2$s функцияси билан қайта ишланган, шунинг учун ҳозирги " -"вақт ва санани қўйиш мумкин. Қўшимча равишда қуйидагилар ишлатилиши мумкин: " -"%3$s. Матннинг бошқа қисмлари ўзгаришсиз қолади." +"вақт ва санани қўйиш мумкин. Қўшимча равишда қуйидагилар ишлатилиши мумкин: %" +"3$s. Матннинг бошқа қисмлари ўзгаришсиз қолади." #: libraries/display_export.lib.php:196 msgid "remember template" @@ -5068,8 +5068,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 привилегиялари жадвалидан олади. Ушбу жадвалдаги " @@ -5823,8 +5823,8 @@ msgstr "Очиқ файллар сони." #: server_status.php:114 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -"Очиқ оқимлар сони (журнал файлларида кўлланилади). Оқим деб \"fopen" -"()\" функцияси ёрдамида очилган файлга айтилади." +"Очиқ оқимлар сони (журнал файлларида кўлланилади). Оқим деб \"fopen()" +"\" функцияси ёрдамида очилган файлга айтилади." #: server_status.php:115 msgid "The number of tables that are open." @@ -7698,8 +7698,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]" #: setup/lib/messages.inc.php:288 msgid "PDF schema: pages table" @@ -7839,8 +7839,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]" #: setup/lib/messages.inc.php:316 msgid "PDF schema: table coordinates" @@ -8383,17 +8383,19 @@ msgstr "Жадвал кешини янгилаш (\"FLUSH\")" #: tbl_operations.php:642 #, fuzzy -#| msgid "Table name" -msgid "Table removal" -msgstr "Жадвал номи" +#| msgid "Delete tracking data for this table" +msgid "Delete data or table" +msgstr "Ушбу жадвал учун кузатув маълумотлари ўчириш" #: tbl_operations.php:657 msgid "Empty the table (TRUNCATE)" msgstr "" #: tbl_operations.php:675 -msgid "Drop the table (DROP)" -msgstr "" +#, fuzzy +#| msgid "Go to database" +msgid "Delete the table (DROP)" +msgstr "Ушбу базага ўтиш" #: tbl_operations.php:696 msgid "Partition maintenance" @@ -8781,6 +8783,11 @@ msgstr "Ном кўриниши" msgid "Rename view to" msgstr "Кўриниш номини ўзгартириш" +#, fuzzy +#~| msgid "Table name" +#~ msgid "Table removal" +#~ msgstr "Жадвал номи" + #~ msgid "BLOB Repository" #~ msgstr "BLOB омбори" diff --git a/po/uz@latin.po b/po/uz@latin.po index 4eae94ca3..48bc613b6 100644 --- a/po/uz@latin.po +++ b/po/uz@latin.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-27 10:12+0200\n" +"POT-Creation-Date: 2010-07-28 05:45-0400\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" @@ -622,8 +622,8 @@ msgstr "Kuzatish faol emas." #: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, 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." @@ -821,8 +821,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." @@ -1554,8 +1554,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." @@ -1969,8 +1969,8 @@ 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/db_structure.lib.php:60 server_databases.php:139 #: tbl_printview.php:333 tbl_structure.php:679 @@ -2111,8 +2111,8 @@ msgstr "jadval nomi" #, 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." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is." msgstr "" "Qiymat %1$sstrftime%2$s funksiyasi bilan qayta ishlangan, shuning uchun " "hozirgi vaqt va sanani qo‘yish mumkin. Qo‘shimcha ravishda quyidagilar " @@ -5099,8 +5099,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 " @@ -7483,9 +7483,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/messages.inc.php:236 msgid "You should use mysqli for performance reasons" @@ -7633,9 +7633,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" #: setup/lib/messages.inc.php:267 msgid "Disable use of INFORMATION_SCHEMA" @@ -7754,8 +7754,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]" #: setup/lib/messages.inc.php:288 msgid "PDF schema: pages table" @@ -7769,8 +7769,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]" #: setup/lib/messages.inc.php:291 msgid "Port on which MySQL server is listening, leave empty for default" @@ -7895,8 +7895,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]" #: setup/lib/messages.inc.php:316 msgid "PDF schema: table coordinates" @@ -8446,17 +8446,19 @@ msgstr "Jadval keshini yangilash (\"FLUSH\")" #: tbl_operations.php:642 #, fuzzy -#| msgid "Table name" -msgid "Table removal" -msgstr "Jadval nomi" +#| msgid "Delete tracking data for this table" +msgid "Delete data or table" +msgstr "Ushbu jadval uchun kuzatuv ma’lumotlari o‘chirish" #: tbl_operations.php:657 msgid "Empty the table (TRUNCATE)" msgstr "" #: tbl_operations.php:675 -msgid "Drop the table (DROP)" -msgstr "" +#, fuzzy +#| msgid "Go to database" +msgid "Delete the table (DROP)" +msgstr "Ushbu bazaga o‘tish" #: tbl_operations.php:696 msgid "Partition maintenance" @@ -8846,6 +8848,11 @@ msgstr "Nom ko‘rinishi" msgid "Rename view to" msgstr "Ko‘rinish nomini o‘zgartirish" +#, fuzzy +#~| msgid "Table name" +#~ msgid "Table removal" +#~ msgstr "Jadval nomi" + #~ msgid "BLOB Repository" #~ msgstr "BLOB ombori" diff --git a/po/zh_CN.po b/po/zh_CN.po index 6d027fcf9..65e77b2e6 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-27 10:12+0200\n" +"POT-Creation-Date: 2010-07-28 05:45-0400\n" "PO-Revision-Date: 2010-06-04 14:09+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.1\n" @@ -610,8 +610,8 @@ msgstr "追踪已禁用。" #: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, 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:419 db_structure.php:433 libraries/header.inc.php:125 @@ -805,8 +805,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:277 import.php:330 libraries/File.class.php:566 @@ -1458,8 +1458,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 来创建一个配置文件。" @@ -1981,8 +1981,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." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is." msgstr "" "这个值是使用 %1$sstrftime%2$s 来解析的,所以你能用时间格式的字符串。另外,下" "列内容也将被转换:%3$s。其他文本将保持原样。" @@ -4745,12 +4745,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:1680 msgid "The selected user was not found in the privilege table." @@ -6908,9 +6908,9 @@ msgid "" msgstr "" "您设置了 [kbd]config[/kbd] 认证方式,且为了能够自动登录而保存了用户名和密码," "但在常用主机上不建议这样设置。如果有人知道 phpMyAdmin 的地址,他们就能够进入 " -"phpMyAdmin 的管理界面。建议将[a@?page=servers&mode=edit&id=" -"%1$d#tab_Server]登录认证方式[/a]设置为 [kbd]cookie 认证[/kbd]或 [kbd]HTTP 认" -"证[/kbd]。" +"phpMyAdmin 的管理界面。建议将[a@?page=servers&mode=edit&id=%1" +"$d#tab_Server]登录认证方式[/a]设置为 [kbd]cookie 认证[/kbd]或 [kbd]HTTP 认证" +"[/kbd]。" #: setup/lib/messages.inc.php:236 msgid "You should use mysqli for performance reasons" @@ -7786,17 +7786,19 @@ msgstr "刷新表 (FLUSH)" #: tbl_operations.php:642 #, fuzzy -#| msgid "Table name" -msgid "Table removal" -msgstr "数据表名" +#| msgid "Delete tracking data for this table" +msgid "Delete data or table" +msgstr "删除追踪数据" #: tbl_operations.php:657 msgid "Empty the table (TRUNCATE)" msgstr "" #: tbl_operations.php:675 -msgid "Drop the table (DROP)" -msgstr "" +#, fuzzy +#| msgid "Go to database" +msgid "Delete the table (DROP)" +msgstr "转到数据库" #: tbl_operations.php:696 msgid "Partition maintenance" @@ -8163,6 +8165,11 @@ msgstr "视图名" msgid "Rename view to" msgstr "将视图改名为" +#, fuzzy +#~| msgid "Table name" +#~ msgid "Table removal" +#~ msgstr "数据表名" + #~ msgid "BLOB Repository" #~ msgstr "BLOB 容器" diff --git a/po/zh_TW.po b/po/zh_TW.po index 39e1975be..d222d219c 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-07-27 10:12+0200\n" +"POT-Creation-Date: 2010-07-28 05:45-0400\n" "PO-Revision-Date: 2010-03-12 09:15+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: chinese_traditional \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:36 browse_foreigners.php:57 @@ -614,8 +614,8 @@ msgstr "" #: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, 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:419 db_structure.php:433 libraries/header.inc.php:125 @@ -814,8 +814,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:277 import.php:330 libraries/File.class.php:566 @@ -1519,8 +1519,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 建立設定檔." #: libraries/auth/config.auth.lib.php:115 @@ -2053,8 +2053,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." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is." msgstr "" #: libraries/display_export.lib.php:196 @@ -4855,8 +4855,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重新載" @@ -7783,16 +7783,18 @@ msgstr "強迫更新資料表 (\"FLUSH\")" #: tbl_operations.php:642 #, fuzzy -msgid "Table removal" -msgstr "資料表名稱" +#| msgid "Dumping data for table" +msgid "Delete data or table" +msgstr "列出以下資料庫的數據:" #: tbl_operations.php:657 msgid "Empty the table (TRUNCATE)" msgstr "" #: tbl_operations.php:675 -msgid "Drop the table (DROP)" -msgstr "" +#, fuzzy +msgid "Delete the table (DROP)" +msgstr "沒有資料庫" #: tbl_operations.php:696 #, fuzzy @@ -8177,6 +8179,10 @@ msgstr "" msgid "Rename view to" msgstr "將資料表改名為" +#, fuzzy +#~ msgid "Table removal" +#~ msgstr "資料表名稱" + #, fuzzy #~| msgid "Enabled" #~ msgctxt "BLOB repository" From a752849adf6a9370dea858b07d00ad262856dd6c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Wed, 28 Jul 2010 17:54:39 +0200 Subject: [PATCH 210/212] Fix format string. --- po/uk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/uk.po b/po/uk.po index 3fa91d785..793634aa1 100644 --- a/po/uk.po +++ b/po/uk.po @@ -105,7 +105,7 @@ msgstr "Відкривання зовнішнього посилання URL н #: db_create.php:44 #, php-format msgid "Database %1$s has been created." -msgstr "Базу даних %1$ створено." +msgstr "Базу даних %1$s створено." #: db_datadict.php:48 db_operations.php:313 msgid "Database comment: " From 3e2af13bf54c141abebfe168e2601b76b149fd43 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Wed, 28 Jul 2010 17:55:42 +0200 Subject: [PATCH 211/212] Czech translation update. --- po/cs.po | 39 +++++++++++++++++++-------------------- 1 file changed, 19 insertions(+), 20 deletions(-) diff --git a/po/cs.po b/po/cs.po index 752fd3170..00656cedc 100644 --- a/po/cs.po +++ b/po/cs.po @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-07-28 05:45-0400\n" -"PO-Revision-Date: 2010-07-27 10:22+0200\n" +"PO-Revision-Date: 2010-07-28 17:55+0200\n" "Last-Translator: Michal \n" "Language-Team: czech \n" "MIME-Version: 1.0\n" @@ -606,8 +606,8 @@ msgstr "Sledování není zapnuté." #: db_structure.php:405 libraries/display_tbl.lib.php:1902 #, 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." @@ -804,8 +804,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." @@ -1474,8 +1474,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." @@ -2007,8 +2007,8 @@ msgstr "jméno 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." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is." 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 " @@ -3840,8 +3840,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:143 msgid "Transformation options" @@ -3874,8 +3874,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:724 server_engines.php:56 #: tbl_operations.php:352 @@ -4845,8 +4845,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 " @@ -7108,8 +7108,9 @@ msgstr "" "Nastavil jste typ autentizace [kbd]config[/kbd] a zadal jste uživatelské " "jméno a heslo pro automatické přihlášení, což není doporučená volba pro " "produkční servery. Kdokoli kdo zná URL phpMyAdminu může přímo přistoupit k " -"Vašemu phpMyAdmin panelu. Nastavte [a@?page=servers&mode=edit&id=%1" -"$d#tab_Server]typ autentizace[/a] na [kbd]cookie[/kbd] nebo [kbd]http[/kbd]." +"Vašemu phpMyAdmin panelu. Nastavte [a@?page=servers&mode=edit&id=" +"%1$d#tab_Server]typ autentizace[/a] na [kbd]cookie[/kbd] nebo [kbd]http[/" +"kbd]." #: setup/lib/messages.inc.php:236 msgid "You should use mysqli for performance reasons" @@ -8029,17 +8030,15 @@ msgid "Flush the table (FLUSH)" msgstr "Vyprázdnit vyrovnávací paměť pro tabulku („FLUSH“)" #: tbl_operations.php:642 -#, fuzzy #| msgid "Delete tracking data for this table" msgid "Delete data or table" -msgstr "Odstranit všechny informace o sledování této tabulky" +msgstr "Odstranit data nebo tabulku" #: tbl_operations.php:657 msgid "Empty the table (TRUNCATE)" msgstr "Vyprázdnit tabulku (TRUNCATE)" #: tbl_operations.php:675 -#, fuzzy #| msgid "Drop the table (DROP)" msgid "Delete the table (DROP)" msgstr "Odstranit tabulku (DROP)" From d0fc397fe1c474150883e85a791a012a7ae03380 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Wed, 28 Jul 2010 13:05:24 -0400 Subject: [PATCH 212/212] new database format string --- libraries/config.default.php | 2 +- libraries/display_export.lib.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/libraries/config.default.php b/libraries/config.default.php index 19b0cf033..0162c7fd6 100644 --- a/libraries/config.default.php +++ b/libraries/config.default.php @@ -1117,7 +1117,7 @@ $cfg['Export']['file_template_table'] = '@TABLE@'; * * @global string $cfg['Export']['file_template_database'] */ -$cfg['Export']['file_template_database'] = '@DB@'; +$cfg['Export']['file_template_database'] = '@DATABASE@'; /** * diff --git a/libraries/display_export.lib.php b/libraries/display_export.lib.php index c7952812f..303902b1a 100644 --- a/libraries/display_export.lib.php +++ b/libraries/display_export.lib.php @@ -144,7 +144,7 @@ echo PMA_pluginGetJavascript($export_list); $trans->addMessage('@SERVER@/'); $trans->addString(__('server name')); if ($export_type == 'database' || $export_type == 'table') { - $trans->addMessage('@DB@/'); + $trans->addMessage('@DATABASE@/'); $trans->addString(__('database name')); if ($export_type == 'table') { $trans->addMessage('@TABLE@/');